
    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_1f7a7245c4043f3f2b24bb33.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_aabb1bbdbfb53a37d1663d32.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;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_94a150ad76e368d92435b958.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_4d27ba45b9fab1ed9d5d7d26.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_f801879d31488c1d573fb97c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_4fabcc3276725ad899a837f8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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:ff8;src:url('chunks/assets/font_195c8ba4b89d1d648a4a8805.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_46e0d11e98436e387ba067dc.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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:ffa;src:url('chunks/assets/font_834b068105f85d49fefded79.woff')format("woff");}.ffa{font-family:ffa;line-height:0.966797;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:-99.600000px;}
.v1{vertical-align:-98.340000px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.752000px;}
.ls9{letter-spacing:-0.516000px;}
.lsa{letter-spacing:-0.408000px;}
.ls4{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.024000px;}
.ls8{letter-spacing:0.432000px;}
.ls1{letter-spacing:0.600000px;}
.ls2{letter-spacing:1.104000px;}
.lsb{letter-spacing:16.248000px;}
.ls3{letter-spacing:67.800000px;}
.ls5{letter-spacing:118.218000px;}
.ls6{letter-spacing:147.570000px;}
.lsf{letter-spacing:167.598000px;}
.lsc{letter-spacing:185.598000px;}
.ls0{letter-spacing:782.130000px;}
.lse{letter-spacing:939.330000px;}
.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;}
}
.ws6{word-spacing:-84.000000px;}
.ws0{word-spacing:-21.000000px;}
.ws5{word-spacing:-19.248000px;}
.ws3{word-spacing:-18.432000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.592000px;}
.ws1{word-spacing:0.000000px;}
._28{margin-left:-5.724000px;}
._18{margin-left:-2.196000px;}
._0{margin-left:-1.008000px;}
._1{width:1.008000px;}
._2{width:2.952000px;}
._11{width:4.530000px;}
._19{width:6.228000px;}
._b{width:7.392000px;}
._c{width:8.652000px;}
._1a{width:10.176000px;}
._26{width:11.928000px;}
._15{width:12.936000px;}
._1c{width:14.040000px;}
._e{width:15.372000px;}
._f{width:16.800000px;}
._14{width:17.976000px;}
._6{width:19.992000px;}
._1e{width:22.512000px;}
._21{width:24.072000px;}
._10{width:25.872000px;}
._2a{width:27.456000px;}
._7{width:28.560000px;}
._8{width:30.324000px;}
._1b{width:31.356000px;}
._9{width:33.348000px;}
._a{width:35.112000px;}
._1d{width:36.204000px;}
._27{width:37.404000px;}
._2c{width:38.940000px;}
._20{width:40.602000px;}
._1f{width:41.916000px;}
._29{width:43.104000px;}
._22{width:44.130000px;}
._16{width:45.192000px;}
._17{width:46.452000px;}
._31{width:48.018000px;}
._4{width:51.576000px;}
._5{width:52.794000px;}
._2b{width:54.108000px;}
._25{width:58.506000px;}
._24{width:59.694000px;}
._23{width:60.756000px;}
._12{width:62.328000px;}
._13{width:64.596000px;}
._3{width:66.780000px;}
._d{width:68.190000px;}
._2e{width:72.324000px;}
._2d{width:73.332000px;}
._30{width:75.096000px;}
._2f{width:102.492000px;}
._32{width:843.330000px;}
.fc4{color:rgb(31,55,99);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(19,19,19);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y3e{bottom:89.137500px;}
.y2e{bottom:96.037500px;}
.y3d{bottom:109.837500px;}
.y2d{bottom:120.037500px;}
.y3c{bottom:130.537500px;}
.y3b{bottom:138.937500px;}
.y2c{bottom:144.337500px;}
.y3a{bottom:151.245000px;}
.y54{bottom:159.330000px;}
.y2b{bottom:168.375000px;}
.y39{bottom:171.975000px;}
.y38{bottom:180.375000px;}
.y53{bottom:183.675000px;}
.y2a{bottom:192.675000px;}
.y52{bottom:207.675000px;}
.y37{bottom:213.375000px;}
.y29{bottom:216.675000px;}
.y51{bottom:231.975000px;}
.y36{bottom:234.075000px;}
.y28{bottom:240.975000px;}
.y50{bottom:257.475000px;}
.y27{bottom:264.975000px;}
.y4f{bottom:281.775000px;}
.y26{bottom:289.275000px;}
.y4e{bottom:307.275000px;}
.y25{bottom:313.275000px;}
.y4d{bottom:331.575000px;}
.y24{bottom:337.620000px;}
.y4c{bottom:355.620000px;}
.y23{bottom:361.620000px;}
.y4b{bottom:379.905000px;}
.y22{bottom:385.905000px;}
.y4a{bottom:405.405000px;}
.y21{bottom:409.905000px;}
.y49{bottom:429.705000px;}
.y20{bottom:434.205000px;}
.y48{bottom:453.705000px;}
.y1f{bottom:458.205000px;}
.y47{bottom:478.005000px;}
.y1e{bottom:482.505000px;}
.y46{bottom:503.550000px;}
.y1d{bottom:506.550000px;}
.y45{bottom:527.850000px;}
.y1c{bottom:530.850000px;}
.y44{bottom:551.850000px;}
.y1b{bottom:554.850000px;}
.y43{bottom:576.150000px;}
.y1a{bottom:579.150000px;}
.y42{bottom:600.150000px;}
.y19{bottom:603.150000px;}
.y41{bottom:625.950000px;}
.y18{bottom:626.850000px;}
.y35{bottom:627.450000px;}
.y40{bottom:649.950000px;}
.y17{bottom:651.450000px;}
.y3f{bottom:674.280000px;}
.y16{bottom:675.780000px;}
.y15{bottom:699.780000px;}
.y14{bottom:724.080000px;}
.y13{bottom:748.080000px;}
.y12{bottom:772.380000px;}
.y11{bottom:796.380000px;}
.y10{bottom:820.695000px;}
.yf{bottom:844.725000px;}
.ye{bottom:869.025000px;}
.yd{bottom:893.025000px;}
.yc{bottom:916.725000px;}
.y34{bottom:917.325000px;}
.yb{bottom:940.725000px;}
.y33{bottom:941.325000px;}
.ya{bottom:965.625000px;}
.y9{bottom:989.625000px;}
.y8{bottom:1013.955000px;}
.y7{bottom:1037.955000px;}
.y32{bottom:1062.255000px;}
.y6{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y31{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y30{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y2f{bottom:1158.870000px;}
.hb{height:47.109375px;}
.h6{height:58.652344px;}
.h3{height:61.670545px;}
.h9{height:65.645508px;}
.ha{height:70.664062px;}
.h2{height:82.441406px;}
.h5{height:83.794922px;}
.h4{height:84.656250px;}
.h8{height:86.338763px;}
.h7{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:84.937500px;}
.x4{left:90.637500px;}
.x14{left:102.937500px;}
.x13{left:111.937500px;}
.x3{left:117.937500px;}
.x6{left:127.537500px;}
.x9{left:182.775000px;}
.xf{left:214.575000px;}
.xb{left:231.356250px;}
.x5{left:246.075000px;}
.x7{left:259.875000px;}
.xc{left:262.875000px;}
.x12{left:301.020000px;}
.x8{left:348.405000px;}
.xa{left:367.620000px;}
.x10{left:411.701250px;}
.x1{left:430.650000px;}
.x11{left:443.250000px;}
.xd{left:476.831250px;}
.xe{left:508.350000px;}
.x15{left:715.406250px;}
.x16{left:746.925000px;}
@media print{
.v2{vertical-align:-88.533333pt;}
.v1{vertical-align:-87.413333pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.557333pt;}
.ls9{letter-spacing:-0.458667pt;}
.lsa{letter-spacing:-0.362667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.021333pt;}
.ls8{letter-spacing:0.384000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls2{letter-spacing:0.981333pt;}
.lsb{letter-spacing:14.442667pt;}
.ls3{letter-spacing:60.266667pt;}
.ls5{letter-spacing:105.082667pt;}
.ls6{letter-spacing:131.173333pt;}
.lsf{letter-spacing:148.976000pt;}
.lsc{letter-spacing:164.976000pt;}
.ls0{letter-spacing:695.226667pt;}
.lse{letter-spacing:834.960000pt;}
.ws6{word-spacing:-74.666667pt;}
.ws0{word-spacing:-18.666667pt;}
.ws5{word-spacing:-17.109333pt;}
.ws3{word-spacing:-16.384000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.637333pt;}
.ws1{word-spacing:0.000000pt;}
._28{margin-left:-5.088000pt;}
._18{margin-left:-1.952000pt;}
._0{margin-left:-0.896000pt;}
._1{width:0.896000pt;}
._2{width:2.624000pt;}
._11{width:4.026667pt;}
._19{width:5.536000pt;}
._b{width:6.570667pt;}
._c{width:7.690667pt;}
._1a{width:9.045333pt;}
._26{width:10.602667pt;}
._15{width:11.498667pt;}
._1c{width:12.480000pt;}
._e{width:13.664000pt;}
._f{width:14.933333pt;}
._14{width:15.978667pt;}
._6{width:17.770667pt;}
._1e{width:20.010667pt;}
._21{width:21.397333pt;}
._10{width:22.997333pt;}
._2a{width:24.405333pt;}
._7{width:25.386667pt;}
._8{width:26.954667pt;}
._1b{width:27.872000pt;}
._9{width:29.642667pt;}
._a{width:31.210667pt;}
._1d{width:32.181333pt;}
._27{width:33.248000pt;}
._2c{width:34.613333pt;}
._20{width:36.090667pt;}
._1f{width:37.258667pt;}
._29{width:38.314667pt;}
._22{width:39.226667pt;}
._16{width:40.170667pt;}
._17{width:41.290667pt;}
._31{width:42.682667pt;}
._4{width:45.845333pt;}
._5{width:46.928000pt;}
._2b{width:48.096000pt;}
._25{width:52.005333pt;}
._24{width:53.061333pt;}
._23{width:54.005333pt;}
._12{width:55.402667pt;}
._13{width:57.418667pt;}
._3{width:59.360000pt;}
._d{width:60.613333pt;}
._2e{width:64.288000pt;}
._2d{width:65.184000pt;}
._30{width:66.752000pt;}
._2f{width:91.104000pt;}
._32{width:749.626667pt;}
.fs4{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y3e{bottom:79.233333pt;}
.y2e{bottom:85.366667pt;}
.y3d{bottom:97.633333pt;}
.y2d{bottom:106.700000pt;}
.y3c{bottom:116.033333pt;}
.y3b{bottom:123.500000pt;}
.y2c{bottom:128.300000pt;}
.y3a{bottom:134.440000pt;}
.y54{bottom:141.626667pt;}
.y2b{bottom:149.666667pt;}
.y39{bottom:152.866667pt;}
.y38{bottom:160.333333pt;}
.y53{bottom:163.266667pt;}
.y2a{bottom:171.266667pt;}
.y52{bottom:184.600000pt;}
.y37{bottom:189.666667pt;}
.y29{bottom:192.600000pt;}
.y51{bottom:206.200000pt;}
.y36{bottom:208.066667pt;}
.y28{bottom:214.200000pt;}
.y50{bottom:228.866667pt;}
.y27{bottom:235.533333pt;}
.y4f{bottom:250.466667pt;}
.y26{bottom:257.133333pt;}
.y4e{bottom:273.133333pt;}
.y25{bottom:278.466667pt;}
.y4d{bottom:294.733333pt;}
.y24{bottom:300.106667pt;}
.y4c{bottom:316.106667pt;}
.y23{bottom:321.440000pt;}
.y4b{bottom:337.693333pt;}
.y22{bottom:343.026667pt;}
.y4a{bottom:360.360000pt;}
.y21{bottom:364.360000pt;}
.y49{bottom:381.960000pt;}
.y20{bottom:385.960000pt;}
.y48{bottom:403.293333pt;}
.y1f{bottom:407.293333pt;}
.y47{bottom:424.893333pt;}
.y1e{bottom:428.893333pt;}
.y46{bottom:447.600000pt;}
.y1d{bottom:450.266667pt;}
.y45{bottom:469.200000pt;}
.y1c{bottom:471.866667pt;}
.y44{bottom:490.533333pt;}
.y1b{bottom:493.200000pt;}
.y43{bottom:512.133333pt;}
.y1a{bottom:514.800000pt;}
.y42{bottom:533.466667pt;}
.y19{bottom:536.133333pt;}
.y41{bottom:556.400000pt;}
.y18{bottom:557.200000pt;}
.y35{bottom:557.733333pt;}
.y40{bottom:577.733333pt;}
.y17{bottom:579.066667pt;}
.y3f{bottom:599.360000pt;}
.y16{bottom:600.693333pt;}
.y15{bottom:622.026667pt;}
.y14{bottom:643.626667pt;}
.y13{bottom:664.960000pt;}
.y12{bottom:686.560000pt;}
.y11{bottom:707.893333pt;}
.y10{bottom:729.506667pt;}
.yf{bottom:750.866667pt;}
.ye{bottom:772.466667pt;}
.yd{bottom:793.800000pt;}
.yc{bottom:814.866667pt;}
.y34{bottom:815.400000pt;}
.yb{bottom:836.200000pt;}
.y33{bottom:836.733333pt;}
.ya{bottom:858.333333pt;}
.y9{bottom:879.666667pt;}
.y8{bottom:901.293333pt;}
.y7{bottom:922.626667pt;}
.y32{bottom:944.226667pt;}
.y6{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y31{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y30{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y2f{bottom:1030.106667pt;}
.hb{height:41.875000pt;}
.h6{height:52.135417pt;}
.h3{height:54.818262pt;}
.h9{height:58.351562pt;}
.ha{height:62.812500pt;}
.h2{height:73.281250pt;}
.h5{height:74.484375pt;}
.h4{height:75.250000pt;}
.h8{height:76.745567pt;}
.h7{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:75.500000pt;}
.x4{left:80.566667pt;}
.x14{left:91.500000pt;}
.x13{left:99.500000pt;}
.x3{left:104.833333pt;}
.x6{left:113.366667pt;}
.x9{left:162.466667pt;}
.xf{left:190.733333pt;}
.xb{left:205.650000pt;}
.x5{left:218.733333pt;}
.x7{left:231.000000pt;}
.xc{left:233.666667pt;}
.x12{left:267.573333pt;}
.x8{left:309.693333pt;}
.xa{left:326.773333pt;}
.x10{left:365.956667pt;}
.x1{left:382.800000pt;}
.x11{left:394.000000pt;}
.xd{left:423.850000pt;}
.xe{left:451.866667pt;}
.x15{left:635.916667pt;}
.x16{left:663.933333pt;}
}




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