
    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_109c182787b1dc54fe83f5b7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.924805;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_be617c8eead8a6417957355e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_a1ca4cf3081d5afa9aeb3697.woff')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-28.200000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:28.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:72.000000px;}
.ls2{letter-spacing:255.600000px;}
.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;}
}
.ws2{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.000000px;}
.ws5{word-spacing:-13.500000px;}
.ws0{word-spacing:-10.500000px;}
.ws3{word-spacing:0.000000px;}
.ws8{word-spacing:27.000000px;}
.ws7{word-spacing:29.340000px;}
.ws4{word-spacing:36.180000px;}
.ws6{word-spacing:386.076000px;}
._33{margin-left:-1553.292000px;}
._25{margin-left:-1514.292000px;}
._14{margin-left:-1461.708000px;}
._12{margin-left:-1359.528000px;}
._27{margin-left:-1315.452000px;}
._1f{margin-left:-1297.536000px;}
._1a{margin-left:-1213.608000px;}
._16{margin-left:-1168.692000px;}
._18{margin-left:-1145.064000px;}
._1d{margin-left:-1103.856000px;}
._30{margin-left:-927.456000px;}
._2e{margin-left:-870.996000px;}
._2c{margin-left:-827.556000px;}
._9{margin-left:-767.736000px;}
._5{margin-left:-404.304000px;}
._7{margin-left:-19.884000px;}
._8{margin-left:-16.200000px;}
._1c{margin-left:-10.080000px;}
._4{margin-left:-7.272000px;}
._0{margin-left:-6.048000px;}
._d{margin-left:-4.896000px;}
._1{margin-left:-3.888000px;}
._2{margin-left:-1.944000px;}
._b{width:1.128000px;}
._3{width:2.424000px;}
._24{width:42.000000px;}
._f{width:64.944000px;}
._c{width:72.000000px;}
._11{width:119.820000px;}
._10{width:144.780000px;}
._21{width:221.808000px;}
._29{width:286.368000px;}
._32{width:299.688000px;}
._2b{width:348.072000px;}
._6{width:368.640000px;}
._23{width:381.840000px;}
._2a{width:411.000000px;}
._e{width:437.196000px;}
._22{width:488.832000px;}
._a{width:731.664000px;}
._2d{width:798.540000px;}
._2f{width:842.040000px;}
._31{width:898.440000px;}
._1e{width:1075.140000px;}
._19{width:1115.340000px;}
._17{width:1139.640000px;}
._1b{width:1183.740000px;}
._20{width:1268.640000px;}
._28{width:1286.340000px;}
._13{width:1330.140000px;}
._15{width:1433.040000px;}
._26{width:1485.240000px;}
._34{width:1524.540000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:42.000000px;}
.fs4{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y29{bottom:67.591500px;}
.y28{bottom:108.916500px;}
.ydb{bottom:114.841500px;}
.y27{bottom:126.241500px;}
.yda{bottom:138.616500px;}
.y26{bottom:143.566500px;}
.y55{bottom:150.316500px;}
.y25{bottom:160.891500px;}
.yd9{bottom:162.391500px;}
.y54{bottom:168.166500px;}
.y24{bottom:178.216500px;}
.y53{bottom:186.016500px;}
.yd8{bottom:186.166500px;}
.y23{bottom:195.541500px;}
.y52{bottom:203.866500px;}
.yd7{bottom:209.941500px;}
.y22{bottom:212.866500px;}
.yb3{bottom:220.366500px;}
.y51{bottom:221.716500px;}
.y21{bottom:230.191500px;}
.yd6{bottom:233.716500px;}
.y50{bottom:239.566500px;}
.yb2{bottom:244.141500px;}
.y20{bottom:247.516500px;}
.yd5{bottom:257.491500px;}
.y1f{bottom:264.841500px;}
.y7b{bottom:267.091500px;}
.yb1{bottom:267.916500px;}
.y4f{bottom:277.891500px;}
.yd4{bottom:281.266500px;}
.ydc{bottom:282.166500px;}
.y7a{bottom:286.966500px;}
.yb0{bottom:291.691500px;}
.y4e{bottom:297.766500px;}
.yd3{bottom:305.041500px;}
.y79{bottom:306.841500px;}
.yaf{bottom:315.466500px;}
.y4d{bottom:317.641500px;}
.y1e{bottom:317.716500px;}
.y78{bottom:326.716500px;}
.yd2{bottom:328.816500px;}
.y1d{bottom:335.041500px;}
.y4c{bottom:337.516500px;}
.yae{bottom:339.241500px;}
.y77{bottom:346.591500px;}
.y1c{bottom:352.366500px;}
.yd1{bottom:352.591500px;}
.y4b{bottom:357.391500px;}
.yad{bottom:363.016500px;}
.y76{bottom:363.916500px;}
.y1b{bottom:369.691500px;}
.yd0{bottom:376.366500px;}
.y75{bottom:381.841500px;}
.yac{bottom:386.791500px;}
.y1a{bottom:387.016500px;}
.y4a{bottom:397.141500px;}
.ycf{bottom:400.141500px;}
.y19{bottom:404.941500px;}
.yab{bottom:410.566500px;}
.y49{bottom:417.016500px;}
.yce{bottom:423.916500px;}
.y74{bottom:424.366500px;}
.y18{bottom:425.641500px;}
.yaa{bottom:434.341500px;}
.y48{bottom:436.891500px;}
.y73{bottom:444.241500px;}
.ycd{bottom:447.691500px;}
.y47{bottom:456.766500px;}
.ya9{bottom:458.116500px;}
.y72{bottom:464.116500px;}
.y92{bottom:464.491500px;}
.y17{bottom:467.041500px;}
.ycc{bottom:471.466500px;}
.y46{bottom:476.641500px;}
.ya8{bottom:481.891500px;}
.y71{bottom:483.991500px;}
.y91{bottom:484.366500px;}
.y16{bottom:487.741500px;}
.ycb{bottom:495.241500px;}
.y45{bottom:496.516500px;}
.y70{bottom:503.866500px;}
.y90{bottom:505.366500px;}
.ya7{bottom:505.666500px;}
.y15{bottom:508.441500px;}
.y44{bottom:516.391500px;}
.yca{bottom:519.016500px;}
.y6f{bottom:521.191500px;}
.y14{bottom:529.141500px;}
.ya6{bottom:529.441500px;}
.y43{bottom:536.266500px;}
.y6e{bottom:538.516500px;}
.yc9{bottom:542.791500px;}
.ya5{bottom:553.216500px;}
.y42{bottom:556.141500px;}
.y6d{bottom:556.441500px;}
.yc8{bottom:566.566500px;}
.y8f{bottom:575.566500px;}
.y41{bottom:576.016500px;}
.ya4{bottom:576.991500px;}
.y6c{bottom:577.141500px;}
.yc7{bottom:590.341500px;}
.y8e{bottom:595.441500px;}
.y40{bottom:595.891500px;}
.ya3{bottom:600.766500px;}
.y13{bottom:611.941500px;}
.yc6{bottom:614.116500px;}
.y8d{bottom:615.316500px;}
.y3f{bottom:615.766500px;}
.y6b{bottom:623.566500px;}
.ya2{bottom:624.541500px;}
.y12{bottom:632.641500px;}
.y8c{bottom:635.191500px;}
.y3e{bottom:635.641500px;}
.yc5{bottom:637.891500px;}
.y6a{bottom:643.441500px;}
.ya1{bottom:648.316500px;}
.y11{bottom:653.341500px;}
.y3d{bottom:655.516500px;}
.y8b{bottom:656.191500px;}
.yc4{bottom:661.666500px;}
.y69{bottom:663.316500px;}
.ya0{bottom:672.091500px;}
.y3c{bottom:675.391500px;}
.y8a{bottom:679.966500px;}
.y68{bottom:683.191500px;}
.yc3{bottom:685.441500px;}
.y9f{bottom:695.866500px;}
.y67{bottom:704.191500px;}
.y10{bottom:704.491500px;}
.yc2{bottom:709.216500px;}
.y3b{bottom:715.141500px;}
.yf{bottom:721.816500px;}
.y89{bottom:726.391500px;}
.y66{bottom:727.966500px;}
.yc1{bottom:732.991500px;}
.y3a{bottom:735.016500px;}
.ye{bottom:739.141500px;}
.y88{bottom:747.391500px;}
.y39{bottom:754.891500px;}
.yd{bottom:756.466500px;}
.yc0{bottom:756.766500px;}
.yc{bottom:773.791500px;}
.y65{bottom:774.391500px;}
.y38{bottom:774.766500px;}
.ybf{bottom:780.541500px;}
.y87{bottom:789.916500px;}
.yb{bottom:791.116500px;}
.y9e{bottom:792.691500px;}
.y64{bottom:794.266500px;}
.y37{bottom:794.641500px;}
.ybe{bottom:804.316500px;}
.ya{bottom:809.041500px;}
.y86{bottom:810.916500px;}
.y63{bottom:814.141500px;}
.y36{bottom:814.516500px;}
.y9d{bottom:816.466500px;}
.ybd{bottom:828.091500px;}
.y62{bottom:834.016500px;}
.y35{bottom:834.391500px;}
.y9c{bottom:840.241500px;}
.ybc{bottom:851.866500px;}
.y85{bottom:853.441500px;}
.y61{bottom:853.891500px;}
.y34{bottom:854.266500px;}
.y9b{bottom:864.016500px;}
.y60{bottom:873.766500px;}
.y33{bottom:874.141500px;}
.y84{bottom:874.441500px;}
.ybb{bottom:875.641500px;}
.y9{bottom:881.491500px;}
.y9a{bottom:887.791500px;}
.y32{bottom:894.016500px;}
.y5f{bottom:894.766500px;}
.y83{bottom:898.216500px;}
.yba{bottom:899.416500px;}
.y99{bottom:911.566500px;}
.y8{bottom:912.541500px;}
.y31{bottom:913.891500px;}
.yb9{bottom:923.191500px;}
.y98{bottom:935.341500px;}
.y7{bottom:943.591500px;}
.y82{bottom:944.641500px;}
.yb8{bottom:946.966500px;}
.y30{bottom:953.641500px;}
.y97{bottom:959.116500px;}
.y5e{bottom:961.066500px;}
.y81{bottom:964.516500px;}
.yb7{bottom:970.741500px;}
.y2f{bottom:973.516500px;}
.y6{bottom:974.641500px;}
.y5d{bottom:980.941500px;}
.y80{bottom:982.441500px;}
.yb6{bottom:994.516500px;}
.y5c{bottom:1000.816500px;}
.y5{bottom:1005.691500px;}
.y2e{bottom:1018.291500px;}
.y7f{bottom:1024.966500px;}
.y4{bottom:1036.741500px;}
.y5b{bottom:1040.566500px;}
.yb5{bottom:1042.066500px;}
.y7e{bottom:1042.291500px;}
.y7d{bottom:1059.616500px;}
.y5a{bottom:1060.441500px;}
.y2d{bottom:1065.841500px;}
.y96{bottom:1067.566500px;}
.y7c{bottom:1077.541500px;}
.y59{bottom:1080.316500px;}
.y95{bottom:1087.441500px;}
.y2c{bottom:1089.616500px;}
.y3{bottom:1090.441500px;}
.y58{bottom:1100.191500px;}
.y94{bottom:1107.316500px;}
.y2b{bottom:1113.391500px;}
.y57{bottom:1120.066500px;}
.y93{bottom:1127.191500px;}
.yb4{bottom:1137.166500px;}
.y56{bottom:1139.941500px;}
.y2{bottom:1152.541500px;}
.y2a{bottom:1160.941500px;}
.h7{height:38.021484px;}
.h6{height:42.246094px;}
.h4{height:50.695312px;}
.h5{height:57.772266px;}
.h3{height:76.042969px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.200000px;}
.x3{left:110.700000px;}
.x2{left:127.725000px;}
.x5{left:170.250000px;}
.x6{left:200.025000px;}
.x7{left:437.625000px;}
.x4{left:442.125000px;}
@media print{
.v2{vertical-align:-25.066667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:64.000000pt;}
.ls2{letter-spacing:227.200000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.333333pt;}
.ws5{word-spacing:-12.000000pt;}
.ws0{word-spacing:-9.333333pt;}
.ws3{word-spacing:0.000000pt;}
.ws8{word-spacing:24.000000pt;}
.ws7{word-spacing:26.080000pt;}
.ws4{word-spacing:32.160000pt;}
.ws6{word-spacing:343.178667pt;}
._33{margin-left:-1380.704000pt;}
._25{margin-left:-1346.037333pt;}
._14{margin-left:-1299.296000pt;}
._12{margin-left:-1208.469333pt;}
._27{margin-left:-1169.290667pt;}
._1f{margin-left:-1153.365333pt;}
._1a{margin-left:-1078.762667pt;}
._16{margin-left:-1038.837333pt;}
._18{margin-left:-1017.834667pt;}
._1d{margin-left:-981.205333pt;}
._30{margin-left:-824.405333pt;}
._2e{margin-left:-774.218667pt;}
._2c{margin-left:-735.605333pt;}
._9{margin-left:-682.432000pt;}
._5{margin-left:-359.381333pt;}
._7{margin-left:-17.674667pt;}
._8{margin-left:-14.400000pt;}
._1c{margin-left:-8.960000pt;}
._4{margin-left:-6.464000pt;}
._0{margin-left:-5.376000pt;}
._d{margin-left:-4.352000pt;}
._1{margin-left:-3.456000pt;}
._2{margin-left:-1.728000pt;}
._b{width:1.002667pt;}
._3{width:2.154667pt;}
._24{width:37.333333pt;}
._f{width:57.728000pt;}
._c{width:64.000000pt;}
._11{width:106.506667pt;}
._10{width:128.693333pt;}
._21{width:197.162667pt;}
._29{width:254.549333pt;}
._32{width:266.389333pt;}
._2b{width:309.397333pt;}
._6{width:327.680000pt;}
._23{width:339.413333pt;}
._2a{width:365.333333pt;}
._e{width:388.618667pt;}
._22{width:434.517333pt;}
._a{width:650.368000pt;}
._2d{width:709.813333pt;}
._2f{width:748.480000pt;}
._31{width:798.613333pt;}
._1e{width:955.680000pt;}
._19{width:991.413333pt;}
._17{width:1013.013333pt;}
._1b{width:1052.213333pt;}
._20{width:1127.680000pt;}
._28{width:1143.413333pt;}
._13{width:1182.346667pt;}
._15{width:1273.813333pt;}
._26{width:1320.213333pt;}
._34{width:1355.146667pt;}
.fs2{font-size:37.333333pt;}
.fs4{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y29{bottom:60.081333pt;}
.y28{bottom:96.814667pt;}
.ydb{bottom:102.081333pt;}
.y27{bottom:112.214667pt;}
.yda{bottom:123.214667pt;}
.y26{bottom:127.614667pt;}
.y55{bottom:133.614667pt;}
.y25{bottom:143.014667pt;}
.yd9{bottom:144.348000pt;}
.y54{bottom:149.481333pt;}
.y24{bottom:158.414667pt;}
.y53{bottom:165.348000pt;}
.yd8{bottom:165.481333pt;}
.y23{bottom:173.814667pt;}
.y52{bottom:181.214667pt;}
.yd7{bottom:186.614667pt;}
.y22{bottom:189.214667pt;}
.yb3{bottom:195.881333pt;}
.y51{bottom:197.081333pt;}
.y21{bottom:204.614667pt;}
.yd6{bottom:207.748000pt;}
.y50{bottom:212.948000pt;}
.yb2{bottom:217.014667pt;}
.y20{bottom:220.014667pt;}
.yd5{bottom:228.881333pt;}
.y1f{bottom:235.414667pt;}
.y7b{bottom:237.414667pt;}
.yb1{bottom:238.148000pt;}
.y4f{bottom:247.014667pt;}
.yd4{bottom:250.014667pt;}
.ydc{bottom:250.814667pt;}
.y7a{bottom:255.081333pt;}
.yb0{bottom:259.281333pt;}
.y4e{bottom:264.681333pt;}
.yd3{bottom:271.148000pt;}
.y79{bottom:272.748000pt;}
.yaf{bottom:280.414667pt;}
.y4d{bottom:282.348000pt;}
.y1e{bottom:282.414667pt;}
.y78{bottom:290.414667pt;}
.yd2{bottom:292.281333pt;}
.y1d{bottom:297.814667pt;}
.y4c{bottom:300.014667pt;}
.yae{bottom:301.548000pt;}
.y77{bottom:308.081333pt;}
.y1c{bottom:313.214667pt;}
.yd1{bottom:313.414667pt;}
.y4b{bottom:317.681333pt;}
.yad{bottom:322.681333pt;}
.y76{bottom:323.481333pt;}
.y1b{bottom:328.614667pt;}
.yd0{bottom:334.548000pt;}
.y75{bottom:339.414667pt;}
.yac{bottom:343.814667pt;}
.y1a{bottom:344.014667pt;}
.y4a{bottom:353.014667pt;}
.ycf{bottom:355.681333pt;}
.y19{bottom:359.948000pt;}
.yab{bottom:364.948000pt;}
.y49{bottom:370.681333pt;}
.yce{bottom:376.814667pt;}
.y74{bottom:377.214667pt;}
.y18{bottom:378.348000pt;}
.yaa{bottom:386.081333pt;}
.y48{bottom:388.348000pt;}
.y73{bottom:394.881333pt;}
.ycd{bottom:397.948000pt;}
.y47{bottom:406.014667pt;}
.ya9{bottom:407.214667pt;}
.y72{bottom:412.548000pt;}
.y92{bottom:412.881333pt;}
.y17{bottom:415.148000pt;}
.ycc{bottom:419.081333pt;}
.y46{bottom:423.681333pt;}
.ya8{bottom:428.348000pt;}
.y71{bottom:430.214667pt;}
.y91{bottom:430.548000pt;}
.y16{bottom:433.548000pt;}
.ycb{bottom:440.214667pt;}
.y45{bottom:441.348000pt;}
.y70{bottom:447.881333pt;}
.y90{bottom:449.214667pt;}
.ya7{bottom:449.481333pt;}
.y15{bottom:451.948000pt;}
.y44{bottom:459.014667pt;}
.yca{bottom:461.348000pt;}
.y6f{bottom:463.281333pt;}
.y14{bottom:470.348000pt;}
.ya6{bottom:470.614667pt;}
.y43{bottom:476.681333pt;}
.y6e{bottom:478.681333pt;}
.yc9{bottom:482.481333pt;}
.ya5{bottom:491.748000pt;}
.y42{bottom:494.348000pt;}
.y6d{bottom:494.614667pt;}
.yc8{bottom:503.614667pt;}
.y8f{bottom:511.614667pt;}
.y41{bottom:512.014667pt;}
.ya4{bottom:512.881333pt;}
.y6c{bottom:513.014667pt;}
.yc7{bottom:524.748000pt;}
.y8e{bottom:529.281333pt;}
.y40{bottom:529.681333pt;}
.ya3{bottom:534.014667pt;}
.y13{bottom:543.948000pt;}
.yc6{bottom:545.881333pt;}
.y8d{bottom:546.948000pt;}
.y3f{bottom:547.348000pt;}
.y6b{bottom:554.281333pt;}
.ya2{bottom:555.148000pt;}
.y12{bottom:562.348000pt;}
.y8c{bottom:564.614667pt;}
.y3e{bottom:565.014667pt;}
.yc5{bottom:567.014667pt;}
.y6a{bottom:571.948000pt;}
.ya1{bottom:576.281333pt;}
.y11{bottom:580.748000pt;}
.y3d{bottom:582.681333pt;}
.y8b{bottom:583.281333pt;}
.yc4{bottom:588.148000pt;}
.y69{bottom:589.614667pt;}
.ya0{bottom:597.414667pt;}
.y3c{bottom:600.348000pt;}
.y8a{bottom:604.414667pt;}
.y68{bottom:607.281333pt;}
.yc3{bottom:609.281333pt;}
.y9f{bottom:618.548000pt;}
.y67{bottom:625.948000pt;}
.y10{bottom:626.214667pt;}
.yc2{bottom:630.414667pt;}
.y3b{bottom:635.681333pt;}
.yf{bottom:641.614667pt;}
.y89{bottom:645.681333pt;}
.y66{bottom:647.081333pt;}
.yc1{bottom:651.548000pt;}
.y3a{bottom:653.348000pt;}
.ye{bottom:657.014667pt;}
.y88{bottom:664.348000pt;}
.y39{bottom:671.014667pt;}
.yd{bottom:672.414667pt;}
.yc0{bottom:672.681333pt;}
.yc{bottom:687.814667pt;}
.y65{bottom:688.348000pt;}
.y38{bottom:688.681333pt;}
.ybf{bottom:693.814667pt;}
.y87{bottom:702.148000pt;}
.yb{bottom:703.214667pt;}
.y9e{bottom:704.614667pt;}
.y64{bottom:706.014667pt;}
.y37{bottom:706.348000pt;}
.ybe{bottom:714.948000pt;}
.ya{bottom:719.148000pt;}
.y86{bottom:720.814667pt;}
.y63{bottom:723.681333pt;}
.y36{bottom:724.014667pt;}
.y9d{bottom:725.748000pt;}
.ybd{bottom:736.081333pt;}
.y62{bottom:741.348000pt;}
.y35{bottom:741.681333pt;}
.y9c{bottom:746.881333pt;}
.ybc{bottom:757.214667pt;}
.y85{bottom:758.614667pt;}
.y61{bottom:759.014667pt;}
.y34{bottom:759.348000pt;}
.y9b{bottom:768.014667pt;}
.y60{bottom:776.681333pt;}
.y33{bottom:777.014667pt;}
.y84{bottom:777.281333pt;}
.ybb{bottom:778.348000pt;}
.y9{bottom:783.548000pt;}
.y9a{bottom:789.148000pt;}
.y32{bottom:794.681333pt;}
.y5f{bottom:795.348000pt;}
.y83{bottom:798.414667pt;}
.yba{bottom:799.481333pt;}
.y99{bottom:810.281333pt;}
.y8{bottom:811.148000pt;}
.y31{bottom:812.348000pt;}
.yb9{bottom:820.614667pt;}
.y98{bottom:831.414667pt;}
.y7{bottom:838.748000pt;}
.y82{bottom:839.681333pt;}
.yb8{bottom:841.748000pt;}
.y30{bottom:847.681333pt;}
.y97{bottom:852.548000pt;}
.y5e{bottom:854.281333pt;}
.y81{bottom:857.348000pt;}
.yb7{bottom:862.881333pt;}
.y2f{bottom:865.348000pt;}
.y6{bottom:866.348000pt;}
.y5d{bottom:871.948000pt;}
.y80{bottom:873.281333pt;}
.yb6{bottom:884.014667pt;}
.y5c{bottom:889.614667pt;}
.y5{bottom:893.948000pt;}
.y2e{bottom:905.148000pt;}
.y7f{bottom:911.081333pt;}
.y4{bottom:921.548000pt;}
.y5b{bottom:924.948000pt;}
.yb5{bottom:926.281333pt;}
.y7e{bottom:926.481333pt;}
.y7d{bottom:941.881333pt;}
.y5a{bottom:942.614667pt;}
.y2d{bottom:947.414667pt;}
.y96{bottom:948.948000pt;}
.y7c{bottom:957.814667pt;}
.y59{bottom:960.281333pt;}
.y95{bottom:966.614667pt;}
.y2c{bottom:968.548000pt;}
.y3{bottom:969.281333pt;}
.y58{bottom:977.948000pt;}
.y94{bottom:984.281333pt;}
.y2b{bottom:989.681333pt;}
.y57{bottom:995.614667pt;}
.y93{bottom:1001.948000pt;}
.yb4{bottom:1010.814667pt;}
.y56{bottom:1013.281333pt;}
.y2{bottom:1024.481333pt;}
.y2a{bottom:1031.948000pt;}
.h7{height:33.796875pt;}
.h6{height:37.552083pt;}
.h4{height:45.062500pt;}
.h5{height:51.353125pt;}
.h3{height:67.593750pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.733333pt;}
.x3{left:98.400000pt;}
.x2{left:113.533333pt;}
.x5{left:151.333333pt;}
.x6{left:177.800000pt;}
.x7{left:389.000000pt;}
.x4{left:393.000000pt;}
}




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