
    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_f314a13ddfc4367d077f7755.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.866211;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_04fa4b7f8ee6a802d4616759.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.967773;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_75ea1336e83ddea32365fb8f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967773;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_042fe3da7d48fcd48d403892.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_59efbd1db45bbee74447ec12.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967773;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:ff6;src:url('chunks/assets/font_68b3e67b47133deb36c30e70.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.950000;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:ff7;src:url('chunks/assets/font_be5f78d9e3d2687c092b73f7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.687988;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v4{vertical-align:-25.854000px;}
.v6{vertical-align:-22.794000px;}
.v3{vertical-align:-15.648000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:13.098000px;}
.v1{vertical-align:22.794000px;}
.v5{vertical-align:59.358000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.186648px;}
.ls6{letter-spacing:0.915042px;}
.ls3{letter-spacing:17.976660px;}
.ls8{letter-spacing:19.051980px;}
.ls4{letter-spacing:19.756710px;}
.lsa{letter-spacing:23.156640px;}
.ls2{letter-spacing:39.814260px;}
.ls7{letter-spacing:40.926780px;}
.ls1{letter-spacing:43.772310px;}
.ls9{letter-spacing:45.947040px;}
.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;}
}
.ws4{word-spacing:-60.869706px;}
.ws6{word-spacing:-38.064726px;}
.ws8{word-spacing:-35.746188px;}
.ws5{word-spacing:-34.612596px;}
.ws7{word-spacing:-34.236000px;}
.ws1{word-spacing:-24.208272px;}
.ws2{word-spacing:-18.169776px;}
.ws0{word-spacing:-13.968720px;}
.ws3{word-spacing:0.000000px;}
._c{margin-left:-1366.267872px;}
._d{margin-left:-956.798736px;}
._a{margin-left:-32.067006px;}
._f{margin-left:-23.033364px;}
._1{margin-left:-18.360000px;}
._5{margin-left:-15.705858px;}
._9{margin-left:-14.648814px;}
._e{margin-left:-11.713098px;}
._10{margin-left:-10.560990px;}
._11{margin-left:-9.021120px;}
._7{margin-left:-7.872738px;}
._6{margin-left:-6.203154px;}
._2{margin-left:-4.968000px;}
._8{margin-left:-3.814452px;}
._0{margin-left:-2.592000px;}
._4{margin-left:-1.296000px;}
._3{width:1.080000px;}
._b{width:3.103716px;}
._12{width:49.599972px;}
.fc6{color:rgb(201,33,30);}
.fc5{color:rgb(255,215,0);}
.fc4{color:rgb(0,153,0);}
.fc3{color:rgb(31,73,125);}
.fc2{color:rgb(0,176,0);}
.fc1{color:rgb(53,82,105);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:40.140000px;}
.fs4{font-size:52.212000px;}
.fs2{font-size:69.564000px;}
.fs9{font-size:72.624000px;}
.fsb{font-size:78.066000px;}
.fsa{font-size:89.970000px;}
.fs5{font-size:108.000000px;}
.fs8{font-size:109.188000px;}
.fsd{font-size:112.764000px;}
.fse{font-size:113.952000px;}
.fs7{font-size:120.078000px;}
.fs1{font-size:131.982000px;}
.fsc{font-size:144.054000px;}
.fsf{font-size:155.964000px;}
.fs6{font-size:192.018000px;}
.fs0{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y8{bottom:11.395500px;}
.y30{bottom:30.105000px;}
.y31{bottom:31.294500px;}
.y50{bottom:37.461000px;}
.y4f{bottom:37.588500px;}
.y3b{bottom:44.944500px;}
.y34{bottom:58.890000px;}
.y2c{bottom:62.971500px;}
.y2d{bottom:64.290000px;}
.y2f{bottom:80.661000px;}
.y2e{bottom:84.274500px;}
.y10{bottom:87.250500px;}
.y4a{bottom:92.821500px;}
.y3a{bottom:93.841500px;}
.y25{bottom:119.523000px;}
.y36{bottom:133.894500px;}
.y32{bottom:135.127500px;}
.y49{bottom:135.723000px;}
.y5{bottom:138.870000px;}
.y39{bottom:142.738500px;}
.y24{bottom:168.421500px;}
.y41{bottom:181.771500px;}
.y38{bottom:188.065500px;}
.y1f{bottom:200.353500px;}
.y33{bottom:208.899000px;}
.y23{bottom:213.874500px;}
.y54{bottom:217.744500px;}
.y57{bottom:224.802000px;}
.y40{bottom:227.226000px;}
.y48{bottom:227.821500px;}
.y37{bottom:233.518500px;}
.yf{bottom:246.402000px;}
.y4{bottom:254.821500px;}
.y22{bottom:259.158000px;}
.y53{bottom:263.197500px;}
.y56{bottom:270.127500px;}
.y47{bottom:270.553500px;}
.y3f{bottom:271.617000px;}
.y35{bottom:276.718500px;}
.y4b{bottom:287.518500px;}
.ye{bottom:287.817000px;}
.y27{bottom:292.621500px;}
.y1b{bottom:295.002000px;}
.y1e{bottom:298.021500px;}
.y2b{bottom:298.318500px;}
.y21{bottom:308.055000px;}
.y52{bottom:312.094500px;}
.y46{bottom:313.327500px;}
.y3e{bottom:315.538500px;}
.y14{bottom:319.026000px;}
.y3{bottom:319.621500px;}
.y29{bottom:323.362500px;}
.y18{bottom:335.949000px;}
.y4e{bottom:339.861000px;}
.y1d{bottom:346.918500px;}
.y2a{bottom:350.362500px;}
.y51{bottom:353.977500px;}
.y5c{bottom:354.571500px;}
.y45{bottom:356.061000px;}
.y20{bottom:356.826000px;}
.y3d{bottom:357.421500px;}
.y55{bottom:360.397500px;}
.y13{bottom:364.309500px;}
.y5b{bottom:374.344500px;}
.y28{bottom:379.318500px;}
.y2{bottom:384.421500px;}
.y17{bottom:384.718500px;}
.y4d{bottom:388.758000px;}
.y1c{bottom:395.646000px;}
.y3c{bottom:399.261000px;}
.y44{bottom:402.109500px;}
.y1a{bottom:405.723000px;}
.y12{bottom:409.762500px;}
.y26{bottom:420.265500px;}
.y5a{bottom:421.626000px;}
.y16{bottom:433.617000px;}
.yb{bottom:437.655000px;}
.y19{bottom:441.099000px;}
.y43{bottom:444.841500px;}
.yd{bottom:446.967000px;}
.y11{bottom:451.177500px;}
.y4c{bottom:464.188500px;}
.y59{bottom:465.421500px;}
.y15{bottom:482.514000px;}
.ya{bottom:486.426000px;}
.y42{bottom:487.617000px;}
.yc{bottom:488.338500px;}
.y58{bottom:509.217000px;}
.y9{bottom:586.602000px;}
.y7{bottom:620.362500px;}
.y6{bottom:640.602000px;}
.h5{height:52.852336px;}
.hc{height:53.160768px;}
.h6{height:53.290992px;}
.he{height:68.356113px;}
.ha{height:72.774229px;}
.h10{height:75.157646px;}
.h11{height:75.949453px;}
.h9{height:80.032456px;}
.h7{height:82.054688px;}
.hb{height:91.231137px;}
.h4{height:100.275387px;}
.hd{height:101.860113px;}
.h12{height:118.496086px;}
.hf{height:119.347863px;}
.h8{height:145.888676px;}
.h3{height:149.976562px;}
.h2{height:669.556500px;}
.h0{height:669.600000px;}
.h1{height:669.750000px;}
.w3{width:1172.565000px;}
.w2{width:1190.125500px;}
.w0{width:1190.168504px;}
.w1{width:1190.250000px;}
.x0{left:0.000000px;}
.x5{left:17.263500px;}
.x1{left:75.132000px;}
.x2{left:79.341000px;}
.x1d{left:100.347000px;}
.x6{left:107.532000px;}
.xb{left:112.039500px;}
.x7{left:124.200000px;}
.x10{left:129.600000px;}
.x8{left:143.844000px;}
.x9{left:145.800000px;}
.x11{left:151.200000px;}
.xa{left:167.400000px;}
.x16{left:181.516500px;}
.x13{left:269.532000px;}
.x17{left:294.151500px;}
.xf{left:313.497000px;}
.x12{left:406.360500px;}
.xe{left:416.268000px;}
.x15{left:433.488000px;}
.x1e{left:487.360500px;}
.x14{left:556.369500px;}
.x4{left:563.683500px;}
.x1b{left:582.136500px;}
.xd{left:588.004500px;}
.x3{left:601.356000px;}
.x1c{left:609.903000px;}
.x18{left:614.112000px;}
.x19{left:631.800000px;}
.x1a{left:676.488000px;}
.xc{left:873.013500px;}
@media print{
.v4{vertical-align:-22.981333pt;}
.v6{vertical-align:-20.261333pt;}
.v3{vertical-align:-13.909333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.642667pt;}
.v1{vertical-align:20.261333pt;}
.v5{vertical-align:52.762667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.165909pt;}
.ls6{letter-spacing:0.813371pt;}
.ls3{letter-spacing:15.979253pt;}
.ls8{letter-spacing:16.935093pt;}
.ls4{letter-spacing:17.561520pt;}
.lsa{letter-spacing:20.583680pt;}
.ls2{letter-spacing:35.390453pt;}
.ls7{letter-spacing:36.379360pt;}
.ls1{letter-spacing:38.908720pt;}
.ls9{letter-spacing:40.841813pt;}
.ws4{word-spacing:-54.106405pt;}
.ws6{word-spacing:-33.835312pt;}
.ws8{word-spacing:-31.774389pt;}
.ws5{word-spacing:-30.766752pt;}
.ws7{word-spacing:-30.432000pt;}
.ws1{word-spacing:-21.518464pt;}
.ws2{word-spacing:-16.150912pt;}
.ws0{word-spacing:-12.416640pt;}
.ws3{word-spacing:0.000000pt;}
._c{margin-left:-1214.460331pt;}
._d{margin-left:-850.487765pt;}
._a{margin-left:-28.504005pt;}
._f{margin-left:-20.474101pt;}
._1{margin-left:-16.320000pt;}
._5{margin-left:-13.960763pt;}
._9{margin-left:-13.021168pt;}
._e{margin-left:-10.411643pt;}
._10{margin-left:-9.387547pt;}
._11{margin-left:-8.018773pt;}
._7{margin-left:-6.997989pt;}
._6{margin-left:-5.513915pt;}
._2{margin-left:-4.416000pt;}
._8{margin-left:-3.390624pt;}
._0{margin-left:-2.304000pt;}
._4{margin-left:-1.152000pt;}
._3{width:0.960000pt;}
._b{width:2.758859pt;}
._12{width:44.088864pt;}
.fs3{font-size:35.680000pt;}
.fs4{font-size:46.410667pt;}
.fs2{font-size:61.834667pt;}
.fs9{font-size:64.554667pt;}
.fsb{font-size:69.392000pt;}
.fsa{font-size:79.973333pt;}
.fs5{font-size:96.000000pt;}
.fs8{font-size:97.056000pt;}
.fsd{font-size:100.234667pt;}
.fse{font-size:101.290667pt;}
.fs7{font-size:106.736000pt;}
.fs1{font-size:117.317333pt;}
.fsc{font-size:128.048000pt;}
.fsf{font-size:138.634667pt;}
.fs6{font-size:170.682667pt;}
.fs0{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y8{bottom:10.129333pt;}
.y30{bottom:26.760000pt;}
.y31{bottom:27.817333pt;}
.y50{bottom:33.298667pt;}
.y4f{bottom:33.412000pt;}
.y3b{bottom:39.950667pt;}
.y34{bottom:52.346667pt;}
.y2c{bottom:55.974667pt;}
.y2d{bottom:57.146667pt;}
.y2f{bottom:71.698667pt;}
.y2e{bottom:74.910667pt;}
.y10{bottom:77.556000pt;}
.y4a{bottom:82.508000pt;}
.y3a{bottom:83.414667pt;}
.y25{bottom:106.242667pt;}
.y36{bottom:119.017333pt;}
.y32{bottom:120.113333pt;}
.y49{bottom:120.642667pt;}
.y5{bottom:123.440000pt;}
.y39{bottom:126.878667pt;}
.y24{bottom:149.708000pt;}
.y41{bottom:161.574667pt;}
.y38{bottom:167.169333pt;}
.y1f{bottom:178.092000pt;}
.y33{bottom:185.688000pt;}
.y23{bottom:190.110667pt;}
.y54{bottom:193.550667pt;}
.y57{bottom:199.824000pt;}
.y40{bottom:201.978667pt;}
.y48{bottom:202.508000pt;}
.y37{bottom:207.572000pt;}
.yf{bottom:219.024000pt;}
.y4{bottom:226.508000pt;}
.y22{bottom:230.362667pt;}
.y53{bottom:233.953333pt;}
.y56{bottom:240.113333pt;}
.y47{bottom:240.492000pt;}
.y3f{bottom:241.437333pt;}
.y35{bottom:245.972000pt;}
.y4b{bottom:255.572000pt;}
.ye{bottom:255.837333pt;}
.y27{bottom:260.108000pt;}
.y1b{bottom:262.224000pt;}
.y1e{bottom:264.908000pt;}
.y2b{bottom:265.172000pt;}
.y21{bottom:273.826667pt;}
.y52{bottom:277.417333pt;}
.y46{bottom:278.513333pt;}
.y3e{bottom:280.478667pt;}
.y14{bottom:283.578667pt;}
.y3{bottom:284.108000pt;}
.y29{bottom:287.433333pt;}
.y18{bottom:298.621333pt;}
.y4e{bottom:302.098667pt;}
.y1d{bottom:308.372000pt;}
.y2a{bottom:311.433333pt;}
.y51{bottom:314.646667pt;}
.y5c{bottom:315.174667pt;}
.y45{bottom:316.498667pt;}
.y20{bottom:317.178667pt;}
.y3d{bottom:317.708000pt;}
.y55{bottom:320.353333pt;}
.y13{bottom:323.830667pt;}
.y5b{bottom:332.750667pt;}
.y28{bottom:337.172000pt;}
.y2{bottom:341.708000pt;}
.y17{bottom:341.972000pt;}
.y4d{bottom:345.562667pt;}
.y1c{bottom:351.685333pt;}
.y3c{bottom:354.898667pt;}
.y44{bottom:357.430667pt;}
.y1a{bottom:360.642667pt;}
.y12{bottom:364.233333pt;}
.y26{bottom:373.569333pt;}
.y5a{bottom:374.778667pt;}
.y16{bottom:385.437333pt;}
.yb{bottom:389.026667pt;}
.y19{bottom:392.088000pt;}
.y43{bottom:395.414667pt;}
.yd{bottom:397.304000pt;}
.y11{bottom:401.046667pt;}
.y4c{bottom:412.612000pt;}
.y59{bottom:413.708000pt;}
.y15{bottom:428.901333pt;}
.ya{bottom:432.378667pt;}
.y42{bottom:433.437333pt;}
.yc{bottom:434.078667pt;}
.y58{bottom:452.637333pt;}
.y9{bottom:521.424000pt;}
.y7{bottom:551.433333pt;}
.y6{bottom:569.424000pt;}
.h5{height:46.979854pt;}
.hc{height:47.254016pt;}
.h6{height:47.369771pt;}
.he{height:60.760990pt;}
.ha{height:64.688203pt;}
.h10{height:66.806797pt;}
.h11{height:67.510625pt;}
.h9{height:71.139961pt;}
.h7{height:72.937500pt;}
.hb{height:81.094344pt;}
.h4{height:89.133677pt;}
.hd{height:90.542323pt;}
.h12{height:105.329854pt;}
.hf{height:106.086990pt;}
.h8{height:129.678823pt;}
.h3{height:133.312500pt;}
.h2{height:595.161333pt;}
.h0{height:595.200000pt;}
.h1{height:595.333333pt;}
.w3{width:1042.280000pt;}
.w2{width:1057.889333pt;}
.w0{width:1057.927559pt;}
.w1{width:1058.000000pt;}
.x0{left:0.000000pt;}
.x5{left:15.345333pt;}
.x1{left:66.784000pt;}
.x2{left:70.525333pt;}
.x1d{left:89.197333pt;}
.x6{left:95.584000pt;}
.xb{left:99.590667pt;}
.x7{left:110.400000pt;}
.x10{left:115.200000pt;}
.x8{left:127.861333pt;}
.x9{left:129.600000pt;}
.x11{left:134.400000pt;}
.xa{left:148.800000pt;}
.x16{left:161.348000pt;}
.x13{left:239.584000pt;}
.x17{left:261.468000pt;}
.xf{left:278.664000pt;}
.x12{left:361.209333pt;}
.xe{left:370.016000pt;}
.x15{left:385.322667pt;}
.x1e{left:433.209333pt;}
.x14{left:494.550667pt;}
.x4{left:501.052000pt;}
.x1b{left:517.454667pt;}
.xd{left:522.670667pt;}
.x3{left:534.538667pt;}
.x1c{left:542.136000pt;}
.x18{left:545.877333pt;}
.x19{left:561.600000pt;}
.x1a{left:601.322667pt;}
.xc{left:776.012000pt;}
}




    .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; }
  