
    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_cb68edde2226304fe9feb9e3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.893555;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_e26f8544f96b99bd376ea772.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1c2bcffae338c9752903b7a9.woff')format("woff");}.ff3{font-family:ff3;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;}
.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);}
.v1{vertical-align:-12.418947px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-20.999999px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:-10.800000px;}
.ws2{word-spacing:0.000000px;}
._a{margin-left:-9.281244px;}
._b{margin-left:-7.980625px;}
._5{margin-left:-5.765625px;}
._8{margin-left:-4.675759px;}
._7{margin-left:-3.146358px;}
._0{margin-left:-2.126971px;}
._3{width:3.673779px;}
._2{width:5.326198px;}
._1{width:9.000000px;}
._4{width:13.500021px;}
._6{width:22.499999px;}
._9{width:27.000002px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:43.200002px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2d{bottom:0.750000px;}
.yad{bottom:11.768544px;}
.y95{bottom:11.768547px;}
.y99{bottom:11.768548px;}
.ya8{bottom:11.768550px;}
.y8a{bottom:11.768551px;}
.y7d{bottom:11.768555px;}
.y91{bottom:11.768556px;}
.ycd{bottom:11.768557px;}
.yb2{bottom:11.768559px;}
.y85{bottom:11.768561px;}
.y9c{bottom:11.768562px;}
.yb4{bottom:11.768563px;}
.y5e{bottom:15.143555px;}
.y61{bottom:20.622069px;}
.yac{bottom:32.466789px;}
.y84{bottom:32.466791px;}
.y94{bottom:32.466792px;}
.y98{bottom:32.466793px;}
.ya7{bottom:32.466795px;}
.y89{bottom:32.466796px;}
.yc2{bottom:32.466798px;}
.yc7{bottom:32.466799px;}
.y90{bottom:32.466801px;}
.ycc{bottom:32.466802px;}
.yb1{bottom:32.466804px;}
.yb9{bottom:32.466807px;}
.y60{bottom:49.599609px;}
.y8f{bottom:53.165031px;}
.yab{bottom:53.165034px;}
.y83{bottom:53.165035px;}
.y93{bottom:53.165037px;}
.y97{bottom:53.165038px;}
.y88{bottom:53.165040px;}
.yc6{bottom:53.165044px;}
.ybd{bottom:53.165046px;}
.yb0{bottom:53.165049px;}
.ya6{bottom:73.863270px;}
.y8e{bottom:73.863276px;}
.yaa{bottom:73.863279px;}
.y82{bottom:73.863280px;}
.y87{bottom:73.863282px;}
.yca{bottom:73.863285px;}
.y2e{bottom:89.395200px;}
.y9{bottom:89.859742px;}
.ya5{bottom:94.561515px;}
.y8d{bottom:94.561521px;}
.y81{bottom:94.561524px;}
.yc9{bottom:94.561530px;}
.y78{bottom:95.743658px;}
.ybc{bottom:99.109861px;}
.y8{bottom:110.557975px;}
.ya4{bottom:115.259760px;}
.y80{bottom:115.259766px;}
.y77{bottom:119.546632px;}
.y7{bottom:131.256213px;}
.ya3{bottom:135.958005px;}
.y2c{bottom:139.029968px;}
.ybe{bottom:140.506345px;}
.y76{bottom:143.349607px;}
.y6{bottom:151.954452px;}
.ya2{bottom:156.656250px;}
.y2b{bottom:159.728213px;}
.y75{bottom:167.152583px;}
.y5{bottom:172.652616px;}
.y2a{bottom:180.426457px;}
.y74{bottom:190.955573px;}
.y29{bottom:201.124687px;}
.ybb{bottom:202.601073px;}
.y5c{bottom:214.200440px;}
.y73{bottom:214.758539px;}
.y28{bottom:221.822933px;}
.y5b{bottom:238.003418px;}
.yb7{bottom:240.174314px;}
.y27{bottom:242.521357px;}
.yb8{bottom:260.872555px;}
.y5a{bottom:261.806397px;}
.y26{bottom:263.219603px;}
.yba{bottom:281.570799px;}
.y25{bottom:283.917847px;}
.y59{bottom:285.609375px;}
.y24{bottom:304.616092px;}
.y58{bottom:309.412354px;}
.yb6{bottom:322.967283px;}
.y23{bottom:325.314338px;}
.y57{bottom:333.215332px;}
.y22{bottom:346.012578px;}
.y56{bottom:353.913578px;}
.yaf{bottom:360.540524px;}
.y21{bottom:366.710821px;}
.y55{bottom:374.611823px;}
.y20{bottom:387.409063px;}
.y54{bottom:395.310052px;}
.yb3{bottom:401.937009px;}
.y1f{bottom:408.107305px;}
.y53{bottom:416.008293px;}
.y72{bottom:416.381842px;}
.yb5{bottom:422.635251px;}
.y1e{bottom:428.805548px;}
.y52{bottom:436.706536px;}
.y71{bottom:440.184818px;}
.yae{bottom:443.333493px;}
.y1d{bottom:449.503778px;}
.y51{bottom:457.404778px;}
.y70{bottom:463.987793px;}
.y1c{bottom:470.202023px;}
.y50{bottom:478.103020px;}
.ya1{bottom:480.906742px;}
.y6f{bottom:487.790768px;}
.y1b{bottom:490.900276px;}
.y4f{bottom:498.801263px;}
.y6e{bottom:511.593742px;}
.y1a{bottom:511.598518px;}
.y4e{bottom:519.499508px;}
.y19{bottom:532.296760px;}
.y6d{bottom:535.396732px;}
.y4d{bottom:540.197752px;}
.ya9{bottom:543.001468px;}
.y6b{bottom:545.198732px;}
.y18{bottom:552.995003px;}
.y6c{bottom:559.199705px;}
.y4c{bottom:560.895998px;}
.ya0{bottom:563.699710px;}
.y69{bottom:572.062502px;}
.y17{bottom:573.693233px;}
.y4b{bottom:581.594242px;}
.y16{bottom:594.391478px;}
.y6a{bottom:598.926271px;}
.y4a{bottom:602.292488px;}
.y15{bottom:615.089720px;}
.y49{bottom:622.990718px;}
.y9f{bottom:625.794438px;}
.y48{bottom:643.688963px;}
.y68{bottom:652.653812px;}
.y9b{bottom:663.367676px;}
.y47{bottom:664.387207px;}
.y66{bottom:679.517582px;}
.y9d{bottom:684.065919px;}
.y46{bottom:685.085452px;}
.y9e{bottom:704.764161px;}
.y45{bottom:705.783698px;}
.y67{bottom:706.381352px;}
.y9a{bottom:725.462403px;}
.y44{bottom:726.481928px;}
.y43{bottom:747.180173px;}
.y65{bottom:760.108892px;}
.y8c{bottom:763.035646px;}
.y42{bottom:767.878418px;}
.y63{bottom:786.972662px;}
.y41{bottom:788.576662px;}
.y92{bottom:804.432131px;}
.y40{bottom:809.274908px;}
.y64{bottom:813.836432px;}
.yd1{bottom:816.514898px;}
.y96{bottom:825.130374px;}
.y3f{bottom:829.973138px;}
.yd0{bottom:837.213127px;}
.y3e{bottom:850.671382px;}
.ycf{bottom:857.911372px;}
.y8b{bottom:866.526858px;}
.y5f{bottom:867.563971px;}
.y3d{bottom:871.369627px;}
.yce{bottom:881.714362px;}
.y62{bottom:882.052742px;}
.y5d{bottom:886.192383px;}
.y3c{bottom:892.067873px;}
.yc8{bottom:899.644043px;}
.y7f{bottom:904.100097px;}
.y3b{bottom:912.766117px;}
.y3a{bottom:933.464362px;}
.yc5{bottom:941.040528px;}
.y86{bottom:945.496581px;}
.y39{bottom:954.162592px;}
.y14{bottom:954.162967px;}
.ycb{bottom:961.738770px;}
.y38{bottom:974.860840px;}
.y13{bottom:974.861206px;}
.yc4{bottom:982.437012px;}
.y37{bottom:995.559082px;}
.y12{bottom:995.559448px;}
.y7e{bottom:1007.591309px;}
.y36{bottom:1016.257324px;}
.y11{bottom:1016.257691px;}
.yc1{bottom:1020.010252px;}
.y35{bottom:1036.955567px;}
.y10{bottom:1036.955933px;}
.y7c{bottom:1045.164550px;}
.y34{bottom:1057.653808px;}
.yf{bottom:1057.654175px;}
.yc3{bottom:1061.406738px;}
.y33{bottom:1078.352050px;}
.ye{bottom:1078.352417px;}
.yc0{bottom:1082.104980px;}
.y7b{bottom:1089.736085px;}
.y4{bottom:1095.600870px;}
.y32{bottom:1099.050293px;}
.yd{bottom:1099.050660px;}
.y7a{bottom:1113.539062px;}
.y3{bottom:1116.299125px;}
.ybf{bottom:1119.678224px;}
.y31{bottom:1119.748535px;}
.yc{bottom:1119.748902px;}
.y2{bottom:1136.997368px;}
.y79{bottom:1137.342040px;}
.y30{bottom:1140.446778px;}
.yb{bottom:1140.447144px;}
.y1{bottom:1158.344535px;}
.y2f{bottom:1161.145020px;}
.ya{bottom:1161.145386px;}
.h8{height:36.448242px;}
.h5{height:43.198242px;}
.h9{height:48.796875px;}
.h2{height:49.992188px;}
.h7{height:51.477538px;}
.hd{height:57.146484px;}
.h1{height:58.324217px;}
.hc{height:77.844726px;}
.h6{height:80.455078px;}
.hb{height:98.542970px;}
.hf{height:119.241211px;}
.ha{height:139.939454px;}
.he{height:181.335938px;}
.h4{height:893.250000px;}
.h3{height:894.000000px;}
.h0{height:1263.000000px;}
.w3{width:64.125000px;}
.w2{width:112.500000px;}
.wa{width:130.499954px;}
.w5{width:138.374954px;}
.w6{width:142.875000px;}
.w8{width:183.375000px;}
.w4{width:185.624954px;}
.wb{width:232.875000px;}
.w9{width:255.374955px;}
.w7{width:893.250000px;}
.w0{width:894.000000px;}
.w1{width:1263.000000px;}
.x0{left:0.000000px;}
.x16{left:6.750000px;}
.x3{left:9.000000px;}
.xc{left:14.288810px;}
.xd{left:20.979089px;}
.x6{left:23.160716px;}
.x10{left:31.238998px;}
.xb{left:45.781171px;}
.x9{left:47.599700px;}
.xf{left:50.822754px;}
.x12{left:59.780190px;}
.x7{left:61.909101px;}
.x13{left:63.953613px;}
.x11{left:69.200684px;}
.xe{left:74.447754px;}
.x1{left:85.050018px;}
.x2{left:103.050018px;}
.x17{left:207.675018px;}
.x4{left:215.550018px;}
.x5{left:279.675015px;}
.x18{left:464.174970px;}
.x8{left:465.299970px;}
.x19{left:595.799925px;}
.xa{left:603.674925px;}
.x14{left:689.175018px;}
.x15{left:766.800018px;}
@media print{
.v1{vertical-align:-11.039064pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-18.666666pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:-9.600000pt;}
.ws2{word-spacing:0.000000pt;}
._a{margin-left:-8.249995pt;}
._b{margin-left:-7.093889pt;}
._5{margin-left:-5.125000pt;}
._8{margin-left:-4.156231pt;}
._7{margin-left:-2.796762pt;}
._0{margin-left:-1.890641pt;}
._3{width:3.265581pt;}
._2{width:4.734399pt;}
._1{width:8.000000pt;}
._4{width:12.000018pt;}
._6{width:19.999999pt;}
._9{width:24.000002pt;}
.fs2{font-size:38.400002pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:0.666667pt;}
.yad{bottom:10.460928pt;}
.y95{bottom:10.460931pt;}
.y99{bottom:10.460932pt;}
.ya8{bottom:10.460933pt;}
.y8a{bottom:10.460935pt;}
.y7d{bottom:10.460937pt;}
.y91{bottom:10.460939pt;}
.ycd{bottom:10.460940pt;}
.yb2{bottom:10.460941pt;}
.y85{bottom:10.460943pt;}
.y9c{bottom:10.460944pt;}
.yb4{bottom:10.460945pt;}
.y5e{bottom:13.460937pt;}
.y61{bottom:18.330728pt;}
.yac{bottom:28.859368pt;}
.y84{bottom:28.859369pt;}
.y94{bottom:28.859371pt;}
.y98{bottom:28.859372pt;}
.ya7{bottom:28.859373pt;}
.y89{bottom:28.859375pt;}
.yc2{bottom:28.859376pt;}
.yc7{bottom:28.859377pt;}
.y90{bottom:28.859379pt;}
.ycc{bottom:28.859380pt;}
.yb1{bottom:28.859381pt;}
.yb9{bottom:28.859384pt;}
.y60{bottom:44.088541pt;}
.y8f{bottom:47.257805pt;}
.yab{bottom:47.257808pt;}
.y83{bottom:47.257809pt;}
.y93{bottom:47.257811pt;}
.y97{bottom:47.257812pt;}
.y88{bottom:47.257813pt;}
.yc6{bottom:47.257817pt;}
.ybd{bottom:47.257819pt;}
.yb0{bottom:47.257821pt;}
.ya6{bottom:65.656240pt;}
.y8e{bottom:65.656245pt;}
.yaa{bottom:65.656248pt;}
.y82{bottom:65.656249pt;}
.y87{bottom:65.656251pt;}
.yca{bottom:65.656253pt;}
.y2e{bottom:79.462400pt;}
.y9{bottom:79.875327pt;}
.ya5{bottom:84.054680pt;}
.y8d{bottom:84.054685pt;}
.y81{bottom:84.054688pt;}
.yc9{bottom:84.054693pt;}
.y78{bottom:85.105473pt;}
.ybc{bottom:88.097655pt;}
.y8{bottom:98.273756pt;}
.ya4{bottom:102.453120pt;}
.y80{bottom:102.453125pt;}
.y77{bottom:106.263673pt;}
.y7{bottom:116.672190pt;}
.ya3{bottom:120.851560pt;}
.y2c{bottom:123.582193pt;}
.ybe{bottom:124.894529pt;}
.y76{bottom:127.421873pt;}
.y6{bottom:135.070624pt;}
.ya2{bottom:139.250000pt;}
.y2b{bottom:141.980633pt;}
.y75{bottom:148.580073pt;}
.y5{bottom:153.468992pt;}
.y2a{bottom:160.379073pt;}
.y74{bottom:169.738287pt;}
.y29{bottom:178.777500pt;}
.ybb{bottom:180.089843pt;}
.y5c{bottom:190.400391pt;}
.y73{bottom:190.896479pt;}
.y28{bottom:197.175940pt;}
.y5b{bottom:211.558594pt;}
.yb7{bottom:213.488279pt;}
.y27{bottom:215.574540pt;}
.yb8{bottom:231.886716pt;}
.y5a{bottom:232.716797pt;}
.y26{bottom:233.972980pt;}
.yba{bottom:250.285155pt;}
.y25{bottom:252.371420pt;}
.y59{bottom:253.875000pt;}
.y24{bottom:270.769860pt;}
.y58{bottom:275.033203pt;}
.yb6{bottom:287.082029pt;}
.y23{bottom:289.168300pt;}
.y57{bottom:296.191407pt;}
.y22{bottom:307.566736pt;}
.y56{bottom:314.589847pt;}
.yaf{bottom:320.480465pt;}
.y21{bottom:325.965174pt;}
.y55{bottom:332.988287pt;}
.y20{bottom:344.363611pt;}
.y54{bottom:351.386713pt;}
.yb3{bottom:357.277341pt;}
.y1f{bottom:362.762049pt;}
.y53{bottom:369.785149pt;}
.y72{bottom:370.117193pt;}
.yb5{bottom:375.675779pt;}
.y1e{bottom:381.160487pt;}
.y52{bottom:388.183587pt;}
.y71{bottom:391.275393pt;}
.yae{bottom:394.074216pt;}
.y1d{bottom:399.558913pt;}
.y51{bottom:406.582024pt;}
.y70{bottom:412.433593pt;}
.y1c{bottom:417.957353pt;}
.y50{bottom:424.980462pt;}
.ya1{bottom:427.472660pt;}
.y6f{bottom:433.591793pt;}
.y1b{bottom:436.355801pt;}
.y4f{bottom:443.378900pt;}
.y6e{bottom:454.749993pt;}
.y1a{bottom:454.754238pt;}
.y4e{bottom:461.777340pt;}
.y19{bottom:473.152676pt;}
.y6d{bottom:475.908207pt;}
.y4d{bottom:480.175780pt;}
.ya9{bottom:482.667972pt;}
.y6b{bottom:484.621095pt;}
.y18{bottom:491.551113pt;}
.y6c{bottom:497.066404pt;}
.y4c{bottom:498.574220pt;}
.ya0{bottom:501.066409pt;}
.y69{bottom:508.500001pt;}
.y17{bottom:509.949540pt;}
.y4b{bottom:516.972660pt;}
.y16{bottom:528.347980pt;}
.y6a{bottom:532.378908pt;}
.y4a{bottom:535.371100pt;}
.y15{bottom:546.746417pt;}
.y49{bottom:553.769527pt;}
.y9f{bottom:556.261723pt;}
.y48{bottom:572.167967pt;}
.y68{bottom:580.136721pt;}
.y9b{bottom:589.660156pt;}
.y47{bottom:590.566407pt;}
.y66{bottom:604.015628pt;}
.y9d{bottom:608.058595pt;}
.y46{bottom:608.964847pt;}
.y9e{bottom:626.457032pt;}
.y45{bottom:627.363287pt;}
.y67{bottom:627.894535pt;}
.y9a{bottom:644.855469pt;}
.y44{bottom:645.761713pt;}
.y43{bottom:664.160153pt;}
.y65{bottom:675.652348pt;}
.y8c{bottom:678.253908pt;}
.y42{bottom:682.558593pt;}
.y63{bottom:699.531255pt;}
.y41{bottom:700.957033pt;}
.y92{bottom:715.050783pt;}
.y40{bottom:719.355473pt;}
.y64{bottom:723.410161pt;}
.yd1{bottom:725.791020pt;}
.y96{bottom:733.449221pt;}
.y3f{bottom:737.753900pt;}
.yd0{bottom:744.189447pt;}
.y3e{bottom:756.152340pt;}
.ycf{bottom:762.587887pt;}
.y8b{bottom:770.246096pt;}
.y5f{bottom:771.167975pt;}
.y3d{bottom:774.550780pt;}
.yce{bottom:783.746100pt;}
.y62{bottom:784.046881pt;}
.y5d{bottom:787.726563pt;}
.y3c{bottom:792.949220pt;}
.yc8{bottom:799.683593pt;}
.y7f{bottom:803.644531pt;}
.y3b{bottom:811.347660pt;}
.y3a{bottom:829.746100pt;}
.yc5{bottom:836.480469pt;}
.y86{bottom:840.441405pt;}
.y39{bottom:848.144527pt;}
.y14{bottom:848.144860pt;}
.ycb{bottom:854.878907pt;}
.y38{bottom:866.542969pt;}
.y13{bottom:866.543294pt;}
.yc4{bottom:873.277344pt;}
.y37{bottom:884.941406pt;}
.y12{bottom:884.941732pt;}
.y7e{bottom:895.636719pt;}
.y36{bottom:903.339844pt;}
.y11{bottom:903.340169pt;}
.yc1{bottom:906.675780pt;}
.y35{bottom:921.738281pt;}
.y10{bottom:921.738607pt;}
.y7c{bottom:929.035156pt;}
.y34{bottom:940.136718pt;}
.yf{bottom:940.137045pt;}
.yc3{bottom:943.472656pt;}
.y33{bottom:958.535156pt;}
.ye{bottom:958.535482pt;}
.yc0{bottom:961.871093pt;}
.y7b{bottom:968.654297pt;}
.y4{bottom:973.867440pt;}
.y32{bottom:976.933593pt;}
.yd{bottom:976.933920pt;}
.y7a{bottom:989.812500pt;}
.y3{bottom:992.265889pt;}
.ybf{bottom:995.269532pt;}
.y31{bottom:995.332031pt;}
.yc{bottom:995.332357pt;}
.y2{bottom:1010.664327pt;}
.y79{bottom:1010.970703pt;}
.y30{bottom:1013.730469pt;}
.yb{bottom:1013.730795pt;}
.y1{bottom:1029.639587pt;}
.y2f{bottom:1032.128907pt;}
.ya{bottom:1032.129232pt;}
.h8{height:32.398437pt;}
.h5{height:38.398437pt;}
.h9{height:43.375000pt;}
.h2{height:44.437500pt;}
.h7{height:45.757812pt;}
.hd{height:50.796875pt;}
.h1{height:51.843748pt;}
.hc{height:69.195312pt;}
.h6{height:71.515625pt;}
.hb{height:87.593751pt;}
.hf{height:105.992188pt;}
.ha{height:124.390625pt;}
.he{height:161.187500pt;}
.h4{height:794.000000pt;}
.h3{height:794.666667pt;}
.h0{height:1122.666667pt;}
.w3{width:57.000000pt;}
.w2{width:100.000000pt;}
.wa{width:115.999959pt;}
.w5{width:122.999959pt;}
.w6{width:127.000000pt;}
.w8{width:163.000000pt;}
.w4{width:164.999959pt;}
.wb{width:207.000000pt;}
.w9{width:226.999960pt;}
.w7{width:794.000000pt;}
.w0{width:794.666667pt;}
.w1{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x16{left:6.000000pt;}
.x3{left:8.000000pt;}
.xc{left:12.701164pt;}
.xd{left:18.648079pt;}
.x6{left:20.587303pt;}
.x10{left:27.767998pt;}
.xb{left:40.694374pt;}
.x9{left:42.310844pt;}
.xf{left:45.175781pt;}
.x12{left:53.137947pt;}
.x7{left:55.030312pt;}
.x13{left:56.847656pt;}
.x11{left:61.511719pt;}
.xe{left:66.175781pt;}
.x1{left:75.600016pt;}
.x2{left:91.600016pt;}
.x17{left:184.600016pt;}
.x4{left:191.600016pt;}
.x5{left:248.600013pt;}
.x18{left:412.599973pt;}
.x8{left:413.599973pt;}
.x19{left:529.599933pt;}
.xa{left:536.599933pt;}
.x14{left:612.600016pt;}
.x15{left:681.600016pt;}
}




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