
    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_c881dbbb506b30f1fa88de3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_0b37513dd74b7f43f06cd3f2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939476;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_4a220cb3e96a40062c4a80f9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104492;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.243636px;}
.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;}
}
.ws3{word-spacing:-17.922669px;}
.ws1{word-spacing:-17.679033px;}
.ws0{word-spacing:-15.153457px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-9.957610px;}
._4{margin-left:-8.838945px;}
._5{margin-left:-5.048293px;}
._1{margin-left:-3.841552px;}
._2{margin-left:-1.128388px;}
._0{width:1.248490px;}
._8{width:3.286223px;}
._9{width:4.343694px;}
._a{width:5.854121px;}
._7{width:9.346233px;}
._b{width:10.930437px;}
._6{width:14.057668px;}
.fc1{color:rgb(8,0,0);}
.fc0{color:rgb(2,106,217);}
.fs0{font-size:54.903830px;}
.fs2{font-size:64.054468px;}
.fs1{font-size:105.232341px;}
.y0{bottom:0.000000px;}
.y2f{bottom:8.006811px;}
.y5f{bottom:12.582132px;}
.y91{bottom:17.157453px;}
.y2e{bottom:29.739577px;}
.yc0{bottom:33.171072px;}
.y5e{bottom:34.314898px;}
.y90{bottom:38.890219px;}
.y1{bottom:43.519141px;}
.ybf{bottom:54.903838px;}
.y8f{bottom:60.622985px;}
.y2d{bottom:67.485960px;}
.y5d{bottom:72.061281px;}
.ybe{bottom:76.636604px;}
.y8e{bottom:82.355751px;}
.y2c{bottom:89.218726px;}
.y5c{bottom:93.794047px;}
.y8d{bottom:104.088517px;}
.y2b{bottom:110.951492px;}
.ybd{bottom:114.382987px;}
.y5b{bottom:115.526813px;}
.y8c{bottom:125.821283px;}
.y2a{bottom:132.684258px;}
.ybc{bottom:136.115753px;}
.y5a{bottom:137.259579px;}
.y29{bottom:154.417024px;}
.y8b{bottom:163.567666px;}
.y59{bottom:175.005962px;}
.y28{bottom:176.149790px;}
.y8a{bottom:185.300432px;}
.ybb{bottom:191.019583px;}
.y58{bottom:196.738728px;}
.y27{bottom:197.882556px;}
.y89{bottom:207.033198px;}
.yba{bottom:212.752349px;}
.y57{bottom:218.471494px;}
.y26{bottom:219.615322px;}
.y88{bottom:228.765964px;}
.yb9{bottom:234.485115px;}
.y56{bottom:240.204260px;}
.y25{bottom:241.348088px;}
.y87{bottom:250.498730px;}
.yb8{bottom:256.217881px;}
.y55{bottom:261.937026px;}
.y86{bottom:272.231496px;}
.yb7{bottom:277.950647px;}
.y24{bottom:279.094471px;}
.y54{bottom:283.669792px;}
.y85{bottom:293.964262px;}
.yb6{bottom:299.683413px;}
.y23{bottom:300.827237px;}
.y84{bottom:315.697028px;}
.y53{bottom:321.416175px;}
.yb5{bottom:321.416180px;}
.y22{bottom:322.560003px;}
.y83{bottom:337.429795px;}
.y52{bottom:343.148941px;}
.yb4{bottom:343.148946px;}
.y21{bottom:344.292769px;}
.y82{bottom:359.162561px;}
.y51{bottom:364.881707px;}
.yb3{bottom:364.881712px;}
.y20{bottom:366.025535px;}
.y81{bottom:380.895327px;}
.y50{bottom:386.614473px;}
.yb2{bottom:386.614478px;}
.y1f{bottom:387.758301px;}
.y80{bottom:402.628093px;}
.y4f{bottom:408.347240px;}
.yb1{bottom:408.347244px;}
.y1e{bottom:409.491067px;}
.y7f{bottom:424.360859px;}
.y4e{bottom:430.080006px;}
.yb0{bottom:430.080010px;}
.y1d{bottom:431.223833px;}
.y7e{bottom:446.093625px;}
.y4d{bottom:451.812772px;}
.yaf{bottom:451.812776px;}
.y1c{bottom:468.970216px;}
.y4c{bottom:473.545538px;}
.yae{bottom:473.545542px;}
.y7d{bottom:483.840008px;}
.y1b{bottom:490.702982px;}
.y4b{bottom:495.278304px;}
.yad{bottom:495.278308px;}
.y7c{bottom:505.572774px;}
.y1a{bottom:512.435748px;}
.y4a{bottom:517.011070px;}
.yac{bottom:517.011074px;}
.y7b{bottom:527.305540px;}
.y19{bottom:534.168514px;}
.y49{bottom:538.743836px;}
.yab{bottom:538.743840px;}
.y7a{bottom:549.038306px;}
.y18{bottom:555.901280px;}
.yaa{bottom:560.476606px;}
.y79{bottom:570.771072px;}
.y48{bottom:576.490219px;}
.y17{bottom:577.634047px;}
.ya9{bottom:582.209372px;}
.y78{bottom:592.503838px;}
.y47{bottom:614.236602px;}
.y16{bottom:615.380430px;}
.ya8{bottom:619.955755px;}
.y77{bottom:630.250221px;}
.y46{bottom:635.969368px;}
.y15{bottom:637.113196px;}
.ya7{bottom:641.688521px;}
.y76{bottom:651.982987px;}
.y45{bottom:657.702134px;}
.y14{bottom:658.845962px;}
.ya6{bottom:663.421287px;}
.y75{bottom:673.715753px;}
.y13{bottom:680.578728px;}
.ya5{bottom:685.154053px;}
.y44{bottom:695.448517px;}
.y74{bottom:695.448519px;}
.y12{bottom:702.311494px;}
.y43{bottom:717.181283px;}
.y73{bottom:717.181285px;}
.ya4{bottom:722.900436px;}
.y11{bottom:724.044260px;}
.y42{bottom:738.914049px;}
.y72{bottom:738.914051px;}
.ya3{bottom:744.633202px;}
.y10{bottom:745.777026px;}
.y41{bottom:760.646815px;}
.y71{bottom:760.646817px;}
.ya2{bottom:766.365968px;}
.yf{bottom:767.509792px;}
.y70{bottom:782.379583px;}
.ya1{bottom:788.098734px;}
.ye{bottom:789.242558px;}
.y40{bottom:798.393198px;}
.ya0{bottom:809.831500px;}
.yd{bottom:810.975324px;}
.y3f{bottom:820.125964px;}
.y6f{bottom:820.125966px;}
.y9f{bottom:831.564266px;}
.yc{bottom:832.708090px;}
.y3e{bottom:841.858730px;}
.y6e{bottom:841.858732px;}
.y9e{bottom:853.297032px;}
.y3d{bottom:863.591496px;}
.y6d{bottom:863.591498px;}
.yb{bottom:870.454473px;}
.y3c{bottom:885.324262px;}
.y6c{bottom:885.324264px;}
.y9d{bottom:891.043415px;}
.y3b{bottom:907.057028px;}
.y6b{bottom:907.057030px;}
.ya{bottom:908.200856px;}
.y9c{bottom:912.776181px;}
.y3a{bottom:928.789794px;}
.y6a{bottom:928.789796px;}
.y9{bottom:929.933622px;}
.y9b{bottom:934.508947px;}
.yc7{bottom:948.234907px;}
.y39{bottom:950.522560px;}
.y69{bottom:950.522563px;}
.y8{bottom:951.666388px;}
.y9a{bottom:956.241714px;}
.yc6{bottom:969.967673px;}
.y38{bottom:972.255326px;}
.y68{bottom:972.255329px;}
.y7{bottom:973.399154px;}
.y99{bottom:977.974480px;}
.yc5{bottom:991.700439px;}
.y67{bottom:993.988095px;}
.y98{bottom:999.707246px;}
.y37{bottom:1010.001710px;}
.y66{bottom:1015.720861px;}
.y6{bottom:1024.871495px;}
.y36{bottom:1031.734476px;}
.y97{bottom:1037.453629px;}
.yc4{bottom:1047.748099px;}
.y35{bottom:1053.467242px;}
.y65{bottom:1053.467244px;}
.y96{bottom:1059.186395px;}
.y5{bottom:1060.330218px;}
.y34{bottom:1075.200008px;}
.y64{bottom:1075.200010px;}
.y95{bottom:1080.919161px;}
.yc3{bottom:1085.494482px;}
.y33{bottom:1096.932774px;}
.y63{bottom:1096.932776px;}
.y94{bottom:1102.651927px;}
.y32{bottom:1118.665540px;}
.y62{bottom:1118.665542px;}
.yc2{bottom:1123.240865px;}
.y93{bottom:1124.384693px;}
.y4{bottom:1126.672346px;}
.y31{bottom:1140.398306px;}
.y61{bottom:1140.398308px;}
.y3{bottom:1144.973623px;}
.yc1{bottom:1160.987248px;}
.y30{bottom:1162.131072px;}
.y60{bottom:1162.131074px;}
.y92{bottom:1162.131076px;}
.y2{bottom:1163.274900px;}
.h3{height:40.025107px;}
.h6{height:46.695958px;}
.h2{height:49.568936px;}
.h7{height:57.267447px;}
.h5{height:57.830426px;}
.h4{height:95.007128px;}
.h1{height:1177.000857px;}
.h0{height:1263.000000px;}
.w1{width:806.400005px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:25.164255px;}
.x1{left:42.480000px;}
.x4{left:240.776171px;}
.x3{left:316.840852px;}
.x5{left:323.703831px;}
.x6{left:351.727661px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.216565pt;}
.ws3{word-spacing:-15.931261pt;}
.ws1{word-spacing:-15.714696pt;}
.ws0{word-spacing:-13.469740pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-8.851209pt;}
._4{margin-left:-7.856840pt;}
._5{margin-left:-4.487371pt;}
._1{margin-left:-3.414713pt;}
._2{margin-left:-1.003012pt;}
._0{width:1.109769pt;}
._8{width:2.921087pt;}
._9{width:3.861061pt;}
._a{width:5.203663pt;}
._7{width:8.307763pt;}
._b{width:9.715944pt;}
._6{width:12.495705pt;}
.fs0{font-size:48.803404pt;}
.fs2{font-size:56.937305pt;}
.fs1{font-size:93.539858pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:7.117165pt;}
.y5f{bottom:11.184117pt;}
.y91{bottom:15.251069pt;}
.y2e{bottom:26.435179pt;}
.yc0{bottom:29.485397pt;}
.y5e{bottom:30.502131pt;}
.y90{bottom:34.569084pt;}
.y1{bottom:38.683681pt;}
.ybf{bottom:48.803412pt;}
.y8f{bottom:53.887098pt;}
.y2d{bottom:59.987520pt;}
.y5d{bottom:64.054472pt;}
.ybe{bottom:68.121426pt;}
.y8e{bottom:73.205112pt;}
.y2c{bottom:79.305534pt;}
.y5c{bottom:83.372486pt;}
.y8d{bottom:92.523126pt;}
.y2b{bottom:98.623548pt;}
.ybd{bottom:101.673767pt;}
.y5b{bottom:102.690500pt;}
.y8c{bottom:111.841141pt;}
.y2a{bottom:117.941563pt;}
.ybc{bottom:120.991781pt;}
.y5a{bottom:122.008515pt;}
.y29{bottom:137.259577pt;}
.y8b{bottom:145.393481pt;}
.y59{bottom:155.560855pt;}
.y28{bottom:156.577591pt;}
.y8a{bottom:164.711495pt;}
.ybb{bottom:169.795185pt;}
.y58{bottom:174.878869pt;}
.y27{bottom:175.895605pt;}
.y89{bottom:184.029510pt;}
.yba{bottom:189.113199pt;}
.y57{bottom:194.196884pt;}
.y26{bottom:195.213619pt;}
.y88{bottom:203.347524pt;}
.yb9{bottom:208.431214pt;}
.y56{bottom:213.514898pt;}
.y25{bottom:214.531634pt;}
.y87{bottom:222.665538pt;}
.yb8{bottom:227.749228pt;}
.y55{bottom:232.832912pt;}
.y86{bottom:241.983552pt;}
.yb7{bottom:247.067242pt;}
.y24{bottom:248.083974pt;}
.y54{bottom:252.150926pt;}
.y85{bottom:261.301567pt;}
.yb6{bottom:266.385256pt;}
.y23{bottom:267.401989pt;}
.y84{bottom:280.619581pt;}
.y53{bottom:285.703267pt;}
.yb5{bottom:285.703271pt;}
.y22{bottom:286.720003pt;}
.y83{bottom:299.937595pt;}
.y52{bottom:305.021281pt;}
.yb4{bottom:305.021285pt;}
.y21{bottom:306.038017pt;}
.y82{bottom:319.255609pt;}
.y51{bottom:324.339296pt;}
.yb3{bottom:324.339299pt;}
.y20{bottom:325.356031pt;}
.y81{bottom:338.573624pt;}
.y50{bottom:343.657310pt;}
.yb2{bottom:343.657313pt;}
.y1f{bottom:344.674046pt;}
.y80{bottom:357.891638pt;}
.y4f{bottom:362.975324pt;}
.yb1{bottom:362.975328pt;}
.y1e{bottom:363.992060pt;}
.y7f{bottom:377.209652pt;}
.y4e{bottom:382.293338pt;}
.yb0{bottom:382.293342pt;}
.y1d{bottom:383.310074pt;}
.y7e{bottom:396.527666pt;}
.y4d{bottom:401.611353pt;}
.yaf{bottom:401.611356pt;}
.y1c{bottom:416.862415pt;}
.y4c{bottom:420.929367pt;}
.yae{bottom:420.929370pt;}
.y7d{bottom:430.080007pt;}
.y1b{bottom:436.180429pt;}
.y4b{bottom:440.247381pt;}
.yad{bottom:440.247385pt;}
.y7c{bottom:449.398021pt;}
.y1a{bottom:455.498443pt;}
.y4a{bottom:459.565395pt;}
.yac{bottom:459.565399pt;}
.y7b{bottom:468.716035pt;}
.y19{bottom:474.816457pt;}
.y49{bottom:478.883409pt;}
.yab{bottom:478.883413pt;}
.y7a{bottom:488.034050pt;}
.y18{bottom:494.134472pt;}
.yaa{bottom:498.201427pt;}
.y79{bottom:507.352064pt;}
.y48{bottom:512.435750pt;}
.y17{bottom:513.452486pt;}
.ya9{bottom:517.519442pt;}
.y78{bottom:526.670078pt;}
.y47{bottom:545.988091pt;}
.y16{bottom:547.004826pt;}
.ya8{bottom:551.071782pt;}
.y77{bottom:560.222419pt;}
.y46{bottom:565.306105pt;}
.y15{bottom:566.322841pt;}
.ya7{bottom:570.389796pt;}
.y76{bottom:579.540433pt;}
.y45{bottom:584.624119pt;}
.y14{bottom:585.640855pt;}
.ya6{bottom:589.707811pt;}
.y75{bottom:598.858447pt;}
.y13{bottom:604.958869pt;}
.ya5{bottom:609.025825pt;}
.y44{bottom:618.176460pt;}
.y74{bottom:618.176461pt;}
.y12{bottom:624.276883pt;}
.y43{bottom:637.494474pt;}
.y73{bottom:637.494476pt;}
.ya4{bottom:642.578165pt;}
.y11{bottom:643.594898pt;}
.y42{bottom:656.812488pt;}
.y72{bottom:656.812490pt;}
.ya3{bottom:661.896180pt;}
.y10{bottom:662.912912pt;}
.y41{bottom:676.130502pt;}
.y71{bottom:676.130504pt;}
.ya2{bottom:681.214194pt;}
.yf{bottom:682.230926pt;}
.y70{bottom:695.448518pt;}
.ya1{bottom:700.532208pt;}
.ye{bottom:701.548940pt;}
.y40{bottom:709.682843pt;}
.ya0{bottom:719.850222pt;}
.yd{bottom:720.866955pt;}
.y3f{bottom:729.000857pt;}
.y6f{bottom:729.000859pt;}
.y9f{bottom:739.168237pt;}
.yc{bottom:740.184969pt;}
.y3e{bottom:748.318871pt;}
.y6e{bottom:748.318873pt;}
.y9e{bottom:758.486251pt;}
.y3d{bottom:767.636886pt;}
.y6d{bottom:767.636887pt;}
.yb{bottom:773.737309pt;}
.y3c{bottom:786.954900pt;}
.y6c{bottom:786.954902pt;}
.y9d{bottom:792.038591pt;}
.y3b{bottom:806.272914pt;}
.y6b{bottom:806.272916pt;}
.ya{bottom:807.289650pt;}
.y9c{bottom:811.356606pt;}
.y3a{bottom:825.590928pt;}
.y6a{bottom:825.590930pt;}
.y9{bottom:826.607664pt;}
.y9b{bottom:830.674620pt;}
.yc7{bottom:842.875473pt;}
.y39{bottom:844.908943pt;}
.y69{bottom:844.908944pt;}
.y8{bottom:845.925678pt;}
.y9a{bottom:849.992634pt;}
.yc6{bottom:862.193487pt;}
.y38{bottom:864.226957pt;}
.y68{bottom:864.226959pt;}
.y7{bottom:865.243693pt;}
.y99{bottom:869.310648pt;}
.yc5{bottom:881.511501pt;}
.y67{bottom:883.544973pt;}
.y98{bottom:888.628663pt;}
.y37{bottom:897.779297pt;}
.y66{bottom:902.862987pt;}
.y6{bottom:910.996884pt;}
.y36{bottom:917.097312pt;}
.y97{bottom:922.181003pt;}
.yc4{bottom:931.331643pt;}
.y35{bottom:936.415326pt;}
.y65{bottom:936.415328pt;}
.y96{bottom:941.499018pt;}
.y5{bottom:942.515750pt;}
.y34{bottom:955.733340pt;}
.y64{bottom:955.733342pt;}
.y95{bottom:960.817032pt;}
.yc3{bottom:964.883984pt;}
.y33{bottom:975.051354pt;}
.y63{bottom:975.051356pt;}
.y94{bottom:980.135046pt;}
.y32{bottom:994.369369pt;}
.y62{bottom:994.369370pt;}
.yc2{bottom:998.436325pt;}
.y93{bottom:999.453060pt;}
.y4{bottom:1001.486530pt;}
.y31{bottom:1013.687383pt;}
.y61{bottom:1013.687385pt;}
.y3{bottom:1017.754331pt;}
.yc1{bottom:1031.988665pt;}
.y30{bottom:1033.005397pt;}
.y60{bottom:1033.005399pt;}
.y92{bottom:1033.005401pt;}
.y2{bottom:1034.022133pt;}
.h3{height:35.577872pt;}
.h6{height:41.507518pt;}
.h2{height:44.061277pt;}
.h7{height:50.904397pt;}
.h5{height:51.404823pt;}
.h4{height:84.450780pt;}
.h1{height:1046.222984pt;}
.h0{height:1122.666667pt;}
.w1{width:716.800004pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:22.368227pt;}
.x1{left:37.760000pt;}
.x4{left:214.023263pt;}
.x3{left:281.636313pt;}
.x5{left:287.736739pt;}
.x6{left:312.646810pt;}
}




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