
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_77a070dd8c56b1bb9115f4ba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.085000;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_ac7301106a1bbe99bd4d27a6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.067000;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_552e8a2b7e9439f0f21dbcfd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.085000;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_e84d3a4bda69a2f7bb1afe42.woff')format("woff");}.ff5{font-family:ff5;line-height:0.997000;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_d279ae4fe9434e4631a618b4.woff')format("woff");}.ff6{font-family:ff6;line-height:0.997000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
.ff8{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7af795d3875614252fa18ea6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.992000;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;}
.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:-101.259400px;}
.ws5{word-spacing:-22.726299px;}
.ws2{word-spacing:-21.627180px;}
.ws7{word-spacing:-16.532819px;}
.ws6{word-spacing:-16.409294px;}
.ws1{word-spacing:-15.206084px;}
.ws4{word-spacing:-13.868032px;}
.ws3{word-spacing:-13.826542px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-8.145213px;}
._4{margin-left:-5.156156px;}
._3{margin-left:-4.115620px;}
._2{margin-left:-2.818353px;}
._0{margin-left:-1.693524px;}
._1{width:1.143433px;}
._6{width:3.190023px;}
._7{width:4.244212px;}
._13{width:7.116272px;}
._12{width:8.646573px;}
._b{width:10.921476px;}
._a{width:12.295413px;}
._9{width:14.066111px;}
._8{width:16.316582px;}
._11{width:17.881766px;}
._10{width:19.058773px;}
._d{width:44.207904px;}
._c{width:45.361783px;}
._f{width:66.874450px;}
._e{width:68.293862px;}
.fc3{color:transparent;}
.fc2{color:rgb(58,161,126);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:54.899997px;}
.fsd{font-size:58.454997px;}
.fsc{font-size:59.895139px;}
.fs6{font-size:59.984997px;}
.fs9{font-size:60.164997px;}
.fs8{font-size:60.188649px;}
.fs3{font-size:65.969996px;}
.fsf{font-size:71.189996px;}
.fs1{font-size:71.999997px;}
.fs5{font-size:77.984997px;}
.fsa{font-size:97.440820px;}
.fs2{font-size:101.969996px;}
.fs4{font-size:102.015002px;}
.fse{font-size:107.199522px;}
.fs7{font-size:149.985003px;}
.fs0{font-size:160.474485px;}
.y0{bottom:0.000000px;}
.y2c{bottom:0.000008px;}
.y41{bottom:4.418454px;}
.y2f{bottom:4.609281px;}
.y35{bottom:5.671754px;}
.y49{bottom:6.446523px;}
.y13{bottom:6.907496px;}
.y1a{bottom:12.374999px;}
.y1c{bottom:13.499999px;}
.y16{bottom:15.749999px;}
.y9{bottom:21.374999px;}
.y40{bottom:25.124561px;}
.y3e{bottom:31.500006px;}
.y19{bottom:34.874999px;}
.y15{bottom:40.499998px;}
.y7{bottom:41.624998px;}
.y12{bottom:41.782497px;}
.y3f{bottom:45.830669px;}
.y18{bottom:57.374998px;}
.y6{bottom:66.374997px;}
.y2b{bottom:79.874997px;}
.y10{bottom:80.850057px;}
.y25{bottom:84.225056px;}
.y5{bottom:91.124996px;}
.y2{bottom:94.908078px;}
.y2a{bottom:102.374996px;}
.yf{bottom:103.350056px;}
.y24{bottom:104.475056px;}
.y33{bottom:109.996699px;}
.y4{bottom:115.874995px;}
.y23{bottom:124.725055px;}
.y29{bottom:124.874995px;}
.ye{bottom:125.850055px;}
.y32{bottom:130.246699px;}
.y22{bottom:144.975054px;}
.y28{bottom:147.374994px;}
.yd{bottom:148.350054px;}
.y31{bottom:150.496698px;}
.y21{bottom:165.225053px;}
.y27{bottom:169.874993px;}
.y30{bottom:170.746697px;}
.yc{bottom:170.850053px;}
.y20{bottom:185.475052px;}
.yb{bottom:193.350052px;}
.y2e{bottom:203.579999px;}
.y1f{bottom:205.725051px;}
.y1e{bottom:225.975051px;}
.y38{bottom:264.094621px;}
.y37{bottom:283.219620px;}
.y36{bottom:302.344619px;}
.y34{bottom:328.499994px;}
.y46{bottom:403.069555px;}
.y45{bottom:423.319554px;}
.y44{bottom:463.819553px;}
.y43{bottom:484.069552px;}
.y42{bottom:504.319551px;}
.y48{bottom:527.579986px;}
.y60{bottom:611.722055px;}
.y5f{bottom:638.722053px;}
.y5e{bottom:665.722052px;}
.y5d{bottom:692.722051px;}
.y5c{bottom:719.722050px;}
.y5b{bottom:746.722049px;}
.y5a{bottom:773.722048px;}
.y59{bottom:800.722047px;}
.y58{bottom:834.472225px;}
.y57{bottom:903.381118px;}
.y56{bottom:928.131117px;}
.y55{bottom:952.881116px;}
.y54{bottom:977.631115px;}
.y53{bottom:1002.381114px;}
.y52{bottom:1040.915333px;}
.ya{bottom:1042.280136px;}
.y1d{bottom:1257.768603px;}
.y51{bottom:1279.636471px;}
.y26{bottom:1484.914950px;}
.y1b{bottom:1679.317750px;}
.y17{bottom:1755.825307px;}
.y14{bottom:1821.712180px;}
.y11{bottom:1905.299928px;}
.y3{bottom:1964.106574px;}
.y4a{bottom:2124.970399px;}
.y8{bottom:2178.584082px;}
.y50{bottom:2262.134084px;}
.y4f{bottom:2289.134083px;}
.y4e{bottom:2316.134081px;}
.y4d{bottom:2343.134080px;}
.y4c{bottom:2370.134079px;}
.y4b{bottom:2397.134078px;}
.y3d{bottom:2466.659075px;}
.y3c{bottom:2489.159074px;}
.y3b{bottom:2511.659073px;}
.y3a{bottom:2534.159072px;}
.y39{bottom:2556.659071px;}
.y47{bottom:2586.895402px;}
.y1{bottom:2599.739899px;}
.y61{bottom:2669.217484px;}
.y2d{bottom:2713.308410px;}
.h18{height:17.999999px;}
.h1b{height:28.799999px;}
.h23{height:32.039999px;}
.h1d{height:49.190397px;}
.h22{height:52.375677px;}
.h20{height:53.427867px;}
.h1f{height:53.666045px;}
.h14{height:53.746557px;}
.h1a{height:53.907837px;}
.h10{height:54.491217px;}
.h13{height:54.826287px;}
.h19{height:55.012425px;}
.h21{height:55.532247px;}
.h7{height:58.499998px;}
.h1e{height:59.039998px;}
.hb{height:59.109117px;}
.ha{height:60.296577px;}
.h26{height:63.786236px;}
.h6{height:64.511997px;}
.h25{height:65.067656px;}
.hc{height:65.519997px;}
.h5{height:65.807997px;}
.he{height:67.499997px;}
.h27{height:69.874557px;}
.h11{height:71.278287px;}
.hf{height:79.874997px;}
.h28{height:84.227216px;}
.h1c{height:89.060910px;}
.h8{height:93.200576px;}
.hd{height:93.241712px;}
.h24{height:97.980363px;}
.h3{height:132.551925px;}
.h17{height:137.086293px;}
.h4{height:168.749993px;}
.h2{height:185.399992px;}
.h15{height:192.374992px;}
.h9{height:256.499989px;}
.h12{height:296.999988px;}
.h16{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.we{width:169.559993px;}
.w1{width:190.079992px;}
.w5{width:296.279988px;}
.wc{width:372.239984px;}
.w7{width:702.000007px;}
.wd{width:702.359971px;}
.w9{width:717.750006px;}
.wb{width:731.159970px;}
.w8{width:809.999966px;}
.w6{width:836.999965px;}
.w3{width:839.249965px;}
.w4{width:841.499965px;}
.w2{width:848.249965px;}
.wa{width:899.999963px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x9{left:4.500000px;}
.x15{left:21.599999px;}
.xf{left:25.132266px;}
.xe{left:26.639999px;}
.x2{left:30.405703px;}
.x1{left:32.039999px;}
.x3{left:35.085936px;}
.x5{left:36.131675px;}
.xa{left:37.634764px;}
.xb{left:45.913657px;}
.x19{left:49.951756px;}
.x17{left:51.373200px;}
.x18{left:64.117340px;}
.x1a{left:67.000152px;}
.x7{left:90.704568px;}
.xc{left:92.608117px;}
.x8{left:99.018421px;}
.x16{left:111.555447px;}
.x6{left:122.399995px;}
.x4{left:197.138669px;}
.x1b{left:256.057901px;}
.xd{left:259.400491px;}
.x10{left:538.771312px;}
.x11{left:629.861152px;}
.x12{left:644.468573px;}
.x13{left:739.443179px;}
.x14{left:754.050605px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-90.008356pt;}
.ws5{word-spacing:-20.201154pt;}
.ws2{word-spacing:-19.224160pt;}
.ws7{word-spacing:-14.695839pt;}
.ws6{word-spacing:-14.586039pt;}
.ws1{word-spacing:-13.516519pt;}
.ws4{word-spacing:-12.327139pt;}
.ws3{word-spacing:-12.290259pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-7.240189pt;}
._4{margin-left:-4.583250pt;}
._3{margin-left:-3.658329pt;}
._2{margin-left:-2.505202pt;}
._0{margin-left:-1.505354pt;}
._1{width:1.016385pt;}
._6{width:2.835576pt;}
._7{width:3.772633pt;}
._13{width:6.325575pt;}
._12{width:7.685842pt;}
._b{width:9.707979pt;}
._a{width:10.929256pt;}
._9{width:12.503210pt;}
._8{width:14.503628pt;}
._11{width:15.894903pt;}
._10{width:16.941132pt;}
._d{width:39.295915pt;}
._c{width:40.321585pt;}
._f{width:59.443956pt;}
._e{width:60.705655pt;}
.fsb{font-size:48.799997pt;}
.fsd{font-size:51.959997pt;}
.fsc{font-size:53.240124pt;}
.fs6{font-size:53.319997pt;}
.fs9{font-size:53.479997pt;}
.fs8{font-size:53.501021pt;}
.fs3{font-size:58.639997pt;}
.fsf{font-size:63.279996pt;}
.fs1{font-size:63.999997pt;}
.fs5{font-size:69.319997pt;}
.fsa{font-size:86.614062pt;}
.fs2{font-size:90.639996pt;}
.fs4{font-size:90.680002pt;}
.fse{font-size:95.288464pt;}
.fs7{font-size:133.320002pt;}
.fs0{font-size:142.643987pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:0.000007pt;}
.y41{bottom:3.927515pt;}
.y2f{bottom:4.097138pt;}
.y35{bottom:5.041560pt;}
.y49{bottom:5.730242pt;}
.y13{bottom:6.139996pt;}
.y1a{bottom:11.000000pt;}
.y1c{bottom:12.000000pt;}
.y16{bottom:13.999999pt;}
.y9{bottom:18.999999pt;}
.y40{bottom:22.332943pt;}
.y3e{bottom:28.000006pt;}
.y19{bottom:30.999999pt;}
.y15{bottom:35.999998pt;}
.y7{bottom:36.999998pt;}
.y12{bottom:37.139997pt;}
.y3f{bottom:40.738372pt;}
.y18{bottom:50.999998pt;}
.y6{bottom:58.999998pt;}
.y2b{bottom:70.999997pt;}
.y10{bottom:71.866717pt;}
.y25{bottom:74.866717pt;}
.y5{bottom:80.999997pt;}
.y2{bottom:84.362736pt;}
.y2a{bottom:90.999996pt;}
.yf{bottom:91.866716pt;}
.y24{bottom:92.866716pt;}
.y33{bottom:97.774844pt;}
.y4{bottom:102.999996pt;}
.y23{bottom:110.866715pt;}
.y29{bottom:110.999995pt;}
.ye{bottom:111.866715pt;}
.y32{bottom:115.774843pt;}
.y22{bottom:128.866715pt;}
.y28{bottom:130.999995pt;}
.yd{bottom:131.866715pt;}
.y31{bottom:133.774842pt;}
.y21{bottom:146.866714pt;}
.y27{bottom:150.999994pt;}
.y30{bottom:151.774842pt;}
.yc{bottom:151.866714pt;}
.y20{bottom:164.866713pt;}
.yb{bottom:171.866713pt;}
.y2e{bottom:180.959999pt;}
.y1f{bottom:182.866712pt;}
.y1e{bottom:200.866712pt;}
.y38{bottom:234.750774pt;}
.y37{bottom:251.750774pt;}
.y36{bottom:268.750773pt;}
.y34{bottom:291.999995pt;}
.y46{bottom:358.284049pt;}
.y45{bottom:376.284048pt;}
.y44{bottom:412.284047pt;}
.y43{bottom:430.284046pt;}
.y42{bottom:448.284045pt;}
.y48{bottom:468.959987pt;}
.y60{bottom:543.752937pt;}
.y5f{bottom:567.752936pt;}
.y5e{bottom:591.752935pt;}
.y5d{bottom:615.752934pt;}
.y5c{bottom:639.752933pt;}
.y5b{bottom:663.752932pt;}
.y5a{bottom:687.752931pt;}
.y59{bottom:711.752930pt;}
.y58{bottom:741.753089pt;}
.y57{bottom:803.005439pt;}
.y56{bottom:825.005438pt;}
.y55{bottom:847.005437pt;}
.y54{bottom:869.005436pt;}
.y53{bottom:891.005435pt;}
.y52{bottom:925.258073pt;}
.ya{bottom:926.471232pt;}
.y1d{bottom:1118.016536pt;}
.y51{bottom:1137.454641pt;}
.y26{bottom:1319.924400pt;}
.y1b{bottom:1492.726889pt;}
.y17{bottom:1560.733606pt;}
.y14{bottom:1619.299715pt;}
.y11{bottom:1693.599936pt;}
.y3{bottom:1745.872510pt;}
.y4a{bottom:1888.862577pt;}
.y8{bottom:1936.519184pt;}
.y50{bottom:2010.785852pt;}
.y4f{bottom:2034.785851pt;}
.y4e{bottom:2058.785850pt;}
.y4d{bottom:2082.785849pt;}
.y4c{bottom:2106.785848pt;}
.y4b{bottom:2130.785847pt;}
.y3d{bottom:2192.585845pt;}
.y3c{bottom:2212.585844pt;}
.y3b{bottom:2232.585843pt;}
.y3a{bottom:2252.585842pt;}
.y39{bottom:2272.585841pt;}
.y47{bottom:2299.462579pt;}
.y1{bottom:2310.879911pt;}
.y61{bottom:2372.637764pt;}
.y2d{bottom:2411.829698pt;}
.h18{height:15.999999pt;}
.h1b{height:25.599999pt;}
.h23{height:28.479999pt;}
.h1d{height:43.724797pt;}
.h22{height:46.556157pt;}
.h20{height:47.491437pt;}
.h1f{height:47.703151pt;}
.h14{height:47.774718pt;}
.h1a{height:47.918078pt;}
.h10{height:48.436637pt;}
.h13{height:48.734478pt;}
.h19{height:48.899933pt;}
.h21{height:49.361997pt;}
.h7{height:51.999998pt;}
.h1e{height:52.479998pt;}
.hb{height:52.541437pt;}
.ha{height:53.596957pt;}
.h26{height:56.698877pt;}
.h6{height:57.343998pt;}
.h25{height:57.837916pt;}
.hc{height:58.239998pt;}
.h5{height:58.495998pt;}
.he{height:59.999997pt;}
.h27{height:62.110717pt;}
.h11{height:63.358477pt;}
.hf{height:70.999997pt;}
.h28{height:74.868637pt;}
.h1c{height:79.165253pt;}
.h8{height:82.844957pt;}
.hd{height:82.881522pt;}
.h24{height:87.093656pt;}
.h3{height:117.823933pt;}
.h17{height:121.854482pt;}
.h4{height:149.999994pt;}
.h2{height:164.799993pt;}
.h15{height:170.999993pt;}
.h9{height:227.999990pt;}
.h12{height:263.999989pt;}
.h16{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.we{width:150.719994pt;}
.w1{width:168.959993pt;}
.w5{width:263.359989pt;}
.wc{width:330.879986pt;}
.w7{width:624.000006pt;}
.wd{width:624.319974pt;}
.w9{width:638.000005pt;}
.wb{width:649.919973pt;}
.w8{width:719.999970pt;}
.w6{width:743.999969pt;}
.w3{width:745.999969pt;}
.w4{width:747.999969pt;}
.w2{width:753.999969pt;}
.wa{width:799.999967pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x9{left:4.000000pt;}
.x15{left:19.199999pt;}
.xf{left:22.339792pt;}
.xe{left:23.679999pt;}
.x2{left:27.027292pt;}
.x1{left:28.479999pt;}
.x3{left:31.187499pt;}
.x5{left:32.117044pt;}
.xa{left:33.453124pt;}
.xb{left:40.812139pt;}
.x19{left:44.401561pt;}
.x17{left:45.665066pt;}
.x18{left:56.993191pt;}
.x1a{left:59.555691pt;}
.x7{left:80.626283pt;}
.xc{left:82.318326pt;}
.x8{left:88.016374pt;}
.x16{left:99.160398pt;}
.x6{left:108.799995pt;}
.x4{left:175.234373pt;}
.x1b{left:227.607023pt;}
.xd{left:230.578214pt;}
.x10{left:478.907833pt;}
.x11{left:559.876579pt;}
.x12{left:572.860954pt;}
.x13{left:657.282825pt;}
.x14{left:670.267205pt;}
}




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