
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_cb4b0ac4cff0560775617873.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ae9bbdac8ebacc7fb30a9ae2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_2f626039ab13fda18b231a7d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.323730;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9681aa57c862c48a4089a658.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.122074;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-0.993600px;}
.ls9{letter-spacing:-0.794880px;}
.ls1a{letter-spacing:-0.728640px;}
.lsb{letter-spacing:-0.662400px;}
.ls19{letter-spacing:-0.596160px;}
.ls5{letter-spacing:-0.331200px;}
.ls6{letter-spacing:-0.264960px;}
.ls1c{letter-spacing:-0.198720px;}
.ls8{letter-spacing:-0.132480px;}
.lsc{letter-spacing:-0.066240px;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.066240px;}
.ls3{letter-spacing:0.125856px;}
.ls7{letter-spacing:0.132480px;}
.ls13{letter-spacing:0.198720px;}
.ls1{letter-spacing:0.331200px;}
.ls12{letter-spacing:0.397440px;}
.ls11{letter-spacing:0.463680px;}
.ls2{letter-spacing:0.529920px;}
.lsa{letter-spacing:0.596160px;}
.ls1d{letter-spacing:2.185920px;}
.ls14{letter-spacing:2.517120px;}
.ls15{letter-spacing:3.245760px;}
.ls18{letter-spacing:3.928032px;}
.lse{letter-spacing:3.974400px;}
.ls10{letter-spacing:4.703040px;}
.lsf{letter-spacing:5.365440px;}
.ls16{letter-spacing:6.094080px;}
.ls17{letter-spacing:6.822720px;}
.lsd{letter-spacing:21.263040px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws21{word-spacing:-28.880640px;}
.ws3{word-spacing:-28.748160px;}
.ws1{word-spacing:-28.615680px;}
.ws2{word-spacing:-28.483200px;}
.ws0{word-spacing:-28.416960px;}
.ws4{word-spacing:-27.953280px;}
.ws5{word-spacing:-20.401920px;}
.ws22{word-spacing:-19.938240px;}
.ws7{word-spacing:-19.805760px;}
.ws30{word-spacing:-19.673280px;}
.ws8{word-spacing:-19.540800px;}
.ws31{word-spacing:-19.474560px;}
.ws2f{word-spacing:-19.209600px;}
.ws49{word-spacing:-19.143360px;}
.ws6{word-spacing:-19.010880px;}
.ws2d{word-spacing:-0.529920px;}
.ws27{word-spacing:-0.463680px;}
.ws28{word-spacing:-0.397440px;}
.ws20{word-spacing:-0.264960px;}
.wsf{word-spacing:-0.198720px;}
.ws42{word-spacing:-0.132480px;}
.wsd{word-spacing:-0.066240px;}
.ws9{word-spacing:0.000000px;}
.ws14{word-spacing:0.132480px;}
.ws47{word-spacing:0.198720px;}
.ws12{word-spacing:0.264960px;}
.ws26{word-spacing:0.331200px;}
.wsa{word-spacing:0.397440px;}
.ws10{word-spacing:0.529920px;}
.ws37{word-spacing:0.596160px;}
.ws11{word-spacing:0.662400px;}
.ws3a{word-spacing:0.993600px;}
.wsb{word-spacing:1.126080px;}
.ws2e{word-spacing:1.192320px;}
.ws38{word-spacing:1.656000px;}
.ws39{word-spacing:2.053440px;}
.ws4a{word-spacing:2.119680px;}
.ws35{word-spacing:2.384640px;}
.ws3d{word-spacing:2.583360px;}
.ws46{word-spacing:2.649600px;}
.ws34{word-spacing:2.782080px;}
.ws36{word-spacing:3.113280px;}
.ws41{word-spacing:3.312000px;}
.ws2b{word-spacing:3.510720px;}
.wse{word-spacing:3.576960px;}
.ws48{word-spacing:4.106880px;}
.ws2a{word-spacing:4.239360px;}
.ws16{word-spacing:4.570560px;}
.ws15{word-spacing:4.968000px;}
.ws1e{word-spacing:5.166720px;}
.ws1f{word-spacing:5.299200px;}
.ws2c{word-spacing:5.762880px;}
.ws3c{word-spacing:6.027840px;}
.ws3b{word-spacing:6.425280px;}
.ws23{word-spacing:6.690240px;}
.ws25{word-spacing:6.888960px;}
.ws13{word-spacing:7.087680px;}
.ws24{word-spacing:7.816320px;}
.ws1c{word-spacing:9.604800px;}
.wsc{word-spacing:10.399680px;}
.ws3f{word-spacing:10.532160px;}
.ws3e{word-spacing:10.598400px;}
.ws19{word-spacing:11.062080px;}
.ws1a{word-spacing:11.260800px;}
.ws40{word-spacing:11.459520px;}
.ws44{word-spacing:12.718080px;}
.ws43{word-spacing:12.850560px;}
.ws4e{word-spacing:13.446720px;}
.ws32{word-spacing:16.758720px;}
.ws33{word-spacing:16.957440px;}
.ws1d{word-spacing:18.613440px;}
.ws4d{word-spacing:20.666880px;}
.ws4b{word-spacing:20.799360px;}
.ws29{word-spacing:21.130560px;}
.ws17{word-spacing:21.528000px;}
.ws1b{word-spacing:21.859200px;}
.ws4c{word-spacing:22.521600px;}
.ws45{word-spacing:22.985280px;}
.ws18{word-spacing:23.647680px;}
._8{margin-left:-2.556864px;}
._1{margin-left:-1.192320px;}
._0{width:1.053216px;}
._2{width:3.047040px;}
._7{width:4.325472px;}
._4{width:5.584032px;}
._3{width:6.888960px;}
._6{width:8.028288px;}
._9{width:13.274496px;}
._5{width:23.607936px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:57.240000px;}
.y1{bottom:78.300000px;}
.y64{bottom:123.982560px;}
.y41{bottom:126.720000px;}
.y23{bottom:139.351680px;}
.y63{bottom:161.954640px;}
.y22{bottom:162.568800px;}
.y40{bottom:164.700000px;}
.y62{bottom:185.171760px;}
.y21{bottom:200.375280px;}
.y3f{bottom:202.984560px;}
.y61{bottom:208.024560px;}
.y20{bottom:223.410240px;}
.y60{bottom:231.059520px;}
.y3e{bottom:240.956640px;}
.y1f{bottom:246.445200px;}
.yf{bottom:247.860000px;}
.y5f{bottom:254.094480px;}
.y3d{bottom:278.928720px;}
.y1e{bottom:284.251680px;}
.y5e{bottom:291.900960px;}
.y1d{bottom:307.468800px;}
.y3c{bottom:316.900800px;}
.y5d{bottom:329.873040px;}
.y1c{bottom:330.503760px;}
.y5c{bottom:353.090160px;}
.y1b{bottom:353.538720px;}
.y3b{bottom:354.872880px;}
.y5b{bottom:376.125120px;}
.y1a{bottom:376.391520px;}
.y3a{bottom:392.844960px;}
.y19{bottom:399.426480px;}
.y5a{bottom:413.931600px;}
.y18{bottom:422.461440px;}
.y39{bottom:430.817040px;}
.y59{bottom:436.966560px;}
.y58{bottom:460.001520px;}
.y17{bottom:460.267920px;}
.y38{bottom:468.789120px;}
.y57{bottom:497.808000px;}
.y16{bottom:498.240000px;}
.y37{bottom:506.761200px;}
.ye{bottom:517.140000px;}
.y56{bottom:521.025120px;}
.y15{bottom:536.977440px;}
.y55{bottom:544.060080px;}
.y36{bottom:544.733280px;}
.y54{bottom:566.912880px;}
.y14{bottom:574.949520px;}
.y35{bottom:582.705360px;}
.y53{bottom:604.884960px;}
.y13{bottom:612.921600px;}
.y34{bottom:620.677440px;}
.y52{bottom:627.919920px;}
.y12{bottom:650.893680px;}
.y51{bottom:650.954880px;}
.y33{bottom:658.649520px;}
.y50{bottom:673.989840px;}
.y11{bottom:688.865760px;}
.y32{bottom:696.803760px;}
.y4f{bottom:711.796320px;}
.y10{bottom:727.020000px;}
.y72{bottom:730.393200px;}
.y31{bottom:734.775840px;}
.y4e{bottom:749.768400px;}
.y71{bottom:757.038240px;}
.y30{bottom:772.747920px;}
.y4d{bottom:772.985520px;}
.y70{bottom:783.501120px;}
.y4c{bottom:795.838320px;}
.yd{bottom:803.737440px;}
.y6f{bottom:809.964000px;}
.y2f{bottom:810.720000px;}
.y4b{bottom:818.873280px;}
.y6e{bottom:836.244720px;}
.yc{bottom:841.709520px;}
.y4a{bottom:841.908240px;}
.y2e{bottom:848.700000px;}
.y6d{bottom:862.707600px;}
.y49{bottom:864.943200px;}
.yb{bottom:879.681600px;}
.y2d{bottom:886.717440px;}
.y48{bottom:887.796000px;}
.y6c{bottom:889.170480px;}
.y2c{bottom:909.934560px;}
.y47{bottom:910.830960px;}
.y6b{bottom:915.633360px;}
.ya{bottom:917.653680px;}
.y2b{bottom:932.787360px;}
.y6a{bottom:942.096240px;}
.y46{bottom:948.637440px;}
.y9{bottom:955.625760px;}
.y2a{bottom:955.822320px;}
.y69{bottom:968.559120px;}
.y8{bottom:978.842880px;}
.y29{bottom:978.857280px;}
.y45{bottom:986.609520px;}
.y68{bottom:995.022000px;}
.y28{bottom:1001.892240px;}
.y7{bottom:1016.649360px;}
.y67{bottom:1021.484880px;}
.y44{bottom:1024.581600px;}
.y27{bottom:1039.698720px;}
.y66{bottom:1047.947760px;}
.y6{bottom:1054.621440px;}
.y43{bottom:1062.553680px;}
.y65{bottom:1074.410640px;}
.y26{bottom:1077.670800px;}
.y5{bottom:1077.838560px;}
.y42{bottom:1100.707920px;}
.y4{bottom:1100.873520px;}
.y25{bottom:1115.642880px;}
.y3{bottom:1138.680000px;}
.y24{bottom:1138.860000px;}
.h2{height:48.550781px;}
.h4{height:55.016963px;}
.h3{height:68.374687px;}
.h5{height:266.038500px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w2{width:392.580000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x4{left:8.640000px;}
.x2{left:127.620000px;}
.x3{left:138.600000px;}
.x5{left:147.240000px;}
.x1{left:441.360000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.883200pt;}
.ls9{letter-spacing:-0.706560pt;}
.ls1a{letter-spacing:-0.647680pt;}
.lsb{letter-spacing:-0.588800pt;}
.ls19{letter-spacing:-0.529920pt;}
.ls5{letter-spacing:-0.294400pt;}
.ls6{letter-spacing:-0.235520pt;}
.ls1c{letter-spacing:-0.176640pt;}
.ls8{letter-spacing:-0.117760pt;}
.lsc{letter-spacing:-0.058880pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.058880pt;}
.ls3{letter-spacing:0.111872pt;}
.ls7{letter-spacing:0.117760pt;}
.ls13{letter-spacing:0.176640pt;}
.ls1{letter-spacing:0.294400pt;}
.ls12{letter-spacing:0.353280pt;}
.ls11{letter-spacing:0.412160pt;}
.ls2{letter-spacing:0.471040pt;}
.lsa{letter-spacing:0.529920pt;}
.ls1d{letter-spacing:1.943040pt;}
.ls14{letter-spacing:2.237440pt;}
.ls15{letter-spacing:2.885120pt;}
.ls18{letter-spacing:3.491584pt;}
.lse{letter-spacing:3.532800pt;}
.ls10{letter-spacing:4.180480pt;}
.lsf{letter-spacing:4.769280pt;}
.ls16{letter-spacing:5.416960pt;}
.ls17{letter-spacing:6.064640pt;}
.lsd{letter-spacing:18.900480pt;}
.ws21{word-spacing:-25.671680pt;}
.ws3{word-spacing:-25.553920pt;}
.ws1{word-spacing:-25.436160pt;}
.ws2{word-spacing:-25.318400pt;}
.ws0{word-spacing:-25.259520pt;}
.ws4{word-spacing:-24.847360pt;}
.ws5{word-spacing:-18.135040pt;}
.ws22{word-spacing:-17.722880pt;}
.ws7{word-spacing:-17.605120pt;}
.ws30{word-spacing:-17.487360pt;}
.ws8{word-spacing:-17.369600pt;}
.ws31{word-spacing:-17.310720pt;}
.ws2f{word-spacing:-17.075200pt;}
.ws49{word-spacing:-17.016320pt;}
.ws6{word-spacing:-16.898560pt;}
.ws2d{word-spacing:-0.471040pt;}
.ws27{word-spacing:-0.412160pt;}
.ws28{word-spacing:-0.353280pt;}
.ws20{word-spacing:-0.235520pt;}
.wsf{word-spacing:-0.176640pt;}
.ws42{word-spacing:-0.117760pt;}
.wsd{word-spacing:-0.058880pt;}
.ws9{word-spacing:0.000000pt;}
.ws14{word-spacing:0.117760pt;}
.ws47{word-spacing:0.176640pt;}
.ws12{word-spacing:0.235520pt;}
.ws26{word-spacing:0.294400pt;}
.wsa{word-spacing:0.353280pt;}
.ws10{word-spacing:0.471040pt;}
.ws37{word-spacing:0.529920pt;}
.ws11{word-spacing:0.588800pt;}
.ws3a{word-spacing:0.883200pt;}
.wsb{word-spacing:1.000960pt;}
.ws2e{word-spacing:1.059840pt;}
.ws38{word-spacing:1.472000pt;}
.ws39{word-spacing:1.825280pt;}
.ws4a{word-spacing:1.884160pt;}
.ws35{word-spacing:2.119680pt;}
.ws3d{word-spacing:2.296320pt;}
.ws46{word-spacing:2.355200pt;}
.ws34{word-spacing:2.472960pt;}
.ws36{word-spacing:2.767360pt;}
.ws41{word-spacing:2.944000pt;}
.ws2b{word-spacing:3.120640pt;}
.wse{word-spacing:3.179520pt;}
.ws48{word-spacing:3.650560pt;}
.ws2a{word-spacing:3.768320pt;}
.ws16{word-spacing:4.062720pt;}
.ws15{word-spacing:4.416000pt;}
.ws1e{word-spacing:4.592640pt;}
.ws1f{word-spacing:4.710400pt;}
.ws2c{word-spacing:5.122560pt;}
.ws3c{word-spacing:5.358080pt;}
.ws3b{word-spacing:5.711360pt;}
.ws23{word-spacing:5.946880pt;}
.ws25{word-spacing:6.123520pt;}
.ws13{word-spacing:6.300160pt;}
.ws24{word-spacing:6.947840pt;}
.ws1c{word-spacing:8.537600pt;}
.wsc{word-spacing:9.244160pt;}
.ws3f{word-spacing:9.361920pt;}
.ws3e{word-spacing:9.420800pt;}
.ws19{word-spacing:9.832960pt;}
.ws1a{word-spacing:10.009600pt;}
.ws40{word-spacing:10.186240pt;}
.ws44{word-spacing:11.304960pt;}
.ws43{word-spacing:11.422720pt;}
.ws4e{word-spacing:11.952640pt;}
.ws32{word-spacing:14.896640pt;}
.ws33{word-spacing:15.073280pt;}
.ws1d{word-spacing:16.545280pt;}
.ws4d{word-spacing:18.370560pt;}
.ws4b{word-spacing:18.488320pt;}
.ws29{word-spacing:18.782720pt;}
.ws17{word-spacing:19.136000pt;}
.ws1b{word-spacing:19.430400pt;}
.ws4c{word-spacing:20.019200pt;}
.ws45{word-spacing:20.431360pt;}
.ws18{word-spacing:21.020160pt;}
._8{margin-left:-2.272768pt;}
._1{margin-left:-1.059840pt;}
._0{width:0.936192pt;}
._2{width:2.708480pt;}
._7{width:3.844864pt;}
._4{width:4.963584pt;}
._3{width:6.123520pt;}
._6{width:7.136256pt;}
._9{width:11.799552pt;}
._5{width:20.984832pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.880000pt;}
.y1{bottom:69.600000pt;}
.y64{bottom:110.206720pt;}
.y41{bottom:112.640000pt;}
.y23{bottom:123.868160pt;}
.y63{bottom:143.959680pt;}
.y22{bottom:144.505600pt;}
.y40{bottom:146.400000pt;}
.y62{bottom:164.597120pt;}
.y21{bottom:178.111360pt;}
.y3f{bottom:180.430720pt;}
.y61{bottom:184.910720pt;}
.y20{bottom:198.586880pt;}
.y60{bottom:205.386240pt;}
.y3e{bottom:214.183680pt;}
.y1f{bottom:219.062400pt;}
.yf{bottom:220.320000pt;}
.y5f{bottom:225.861760pt;}
.y3d{bottom:247.936640pt;}
.y1e{bottom:252.668160pt;}
.y5e{bottom:259.467520pt;}
.y1d{bottom:273.305600pt;}
.y3c{bottom:281.689600pt;}
.y5d{bottom:293.220480pt;}
.y1c{bottom:293.781120pt;}
.y5c{bottom:313.857920pt;}
.y1b{bottom:314.256640pt;}
.y3b{bottom:315.442560pt;}
.y5b{bottom:334.333440pt;}
.y1a{bottom:334.570240pt;}
.y3a{bottom:349.195520pt;}
.y19{bottom:355.045760pt;}
.y5a{bottom:367.939200pt;}
.y18{bottom:375.521280pt;}
.y39{bottom:382.948480pt;}
.y59{bottom:388.414720pt;}
.y58{bottom:408.890240pt;}
.y17{bottom:409.127040pt;}
.y38{bottom:416.701440pt;}
.y57{bottom:442.496000pt;}
.y16{bottom:442.880000pt;}
.y37{bottom:450.454400pt;}
.ye{bottom:459.680000pt;}
.y56{bottom:463.133440pt;}
.y15{bottom:477.313280pt;}
.y55{bottom:483.608960pt;}
.y36{bottom:484.207360pt;}
.y54{bottom:503.922560pt;}
.y14{bottom:511.066240pt;}
.y35{bottom:517.960320pt;}
.y53{bottom:537.675520pt;}
.y13{bottom:544.819200pt;}
.y34{bottom:551.713280pt;}
.y52{bottom:558.151040pt;}
.y12{bottom:578.572160pt;}
.y51{bottom:578.626560pt;}
.y33{bottom:585.466240pt;}
.y50{bottom:599.102080pt;}
.y11{bottom:612.325120pt;}
.y32{bottom:619.381120pt;}
.y4f{bottom:632.707840pt;}
.y10{bottom:646.240000pt;}
.y72{bottom:649.238400pt;}
.y31{bottom:653.134080pt;}
.y4e{bottom:666.460800pt;}
.y71{bottom:672.922880pt;}
.y30{bottom:686.887040pt;}
.y4d{bottom:687.098240pt;}
.y70{bottom:696.445440pt;}
.y4c{bottom:707.411840pt;}
.yd{bottom:714.433280pt;}
.y6f{bottom:719.968000pt;}
.y2f{bottom:720.640000pt;}
.y4b{bottom:727.887360pt;}
.y6e{bottom:743.328640pt;}
.yc{bottom:748.186240pt;}
.y4a{bottom:748.362880pt;}
.y2e{bottom:754.400000pt;}
.y6d{bottom:766.851200pt;}
.y49{bottom:768.838400pt;}
.yb{bottom:781.939200pt;}
.y2d{bottom:788.193280pt;}
.y48{bottom:789.152000pt;}
.y6c{bottom:790.373760pt;}
.y2c{bottom:808.830720pt;}
.y47{bottom:809.627520pt;}
.y6b{bottom:813.896320pt;}
.ya{bottom:815.692160pt;}
.y2b{bottom:829.144320pt;}
.y6a{bottom:837.418880pt;}
.y46{bottom:843.233280pt;}
.y9{bottom:849.445120pt;}
.y2a{bottom:849.619840pt;}
.y69{bottom:860.941440pt;}
.y8{bottom:870.082560pt;}
.y29{bottom:870.095360pt;}
.y45{bottom:876.986240pt;}
.y68{bottom:884.464000pt;}
.y28{bottom:890.570880pt;}
.y7{bottom:903.688320pt;}
.y67{bottom:907.986560pt;}
.y44{bottom:910.739200pt;}
.y27{bottom:924.176640pt;}
.y66{bottom:931.509120pt;}
.y6{bottom:937.441280pt;}
.y43{bottom:944.492160pt;}
.y65{bottom:955.031680pt;}
.y26{bottom:957.929600pt;}
.y5{bottom:958.078720pt;}
.y42{bottom:978.407040pt;}
.y4{bottom:978.554240pt;}
.y25{bottom:991.682560pt;}
.y3{bottom:1012.160000pt;}
.y24{bottom:1012.320000pt;}
.h2{height:43.156250pt;}
.h4{height:48.903967pt;}
.h3{height:60.777500pt;}
.h5{height:236.478667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w2{width:348.960000pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x4{left:7.680000pt;}
.x2{left:113.440000pt;}
.x3{left:123.200000pt;}
.x5{left:130.880000pt;}
.x1{left:392.320000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  