
    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_f387cec0e2c6b8573b5b7e8a.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_5c9841cad5defa0b8226f648.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_57a8123a9d57d7657bcad135.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6fb497ae7ec0ca471b4df28a.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_37a5e8cb0618c6c813af0007.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_e3d5c5ba7c9dab6909adb774.woff')format("woff");}.ff9{font-family:ff9;line-height:0.991000;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;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.007965px;}
.ls5{letter-spacing:0.024457px;}
.ls3{letter-spacing:0.024998px;}
.ls0{letter-spacing:0.051705px;}
.ls4{letter-spacing:0.052853px;}
.ls2{letter-spacing:0.060930px;}
.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;}
.ws1{word-spacing:-17.975542px;}
.ws4{word-spacing:-16.532819px;}
.ws3{word-spacing:-16.388550px;}
.ws2{word-spacing:-13.826542px;}
.ws5{word-spacing:0.000000px;}
._e{margin-left:-8.343230px;}
._3{margin-left:-6.656722px;}
._2{margin-left:-4.579937px;}
._5{margin-left:-3.053736px;}
._0{margin-left:-1.845353px;}
._1{width:1.058742px;}
._4{width:3.115663px;}
._6{width:4.244077px;}
._13{width:5.249025px;}
._9{width:8.991568px;}
._a{width:9.994913px;}
._7{width:11.263346px;}
._8{width:13.429045px;}
._d{width:14.456822px;}
._c{width:18.094879px;}
._b{width:19.295150px;}
._12{width:30.976543px;}
._11{width:32.401675px;}
._10{width:36.096240px;}
._f{width:37.206682px;}
.fc3{color:transparent;}
.fc2{color:rgb(58,161,126);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:48.720410px;}
.fsb{font-size:58.454997px;}
.fs7{font-size:59.984997px;}
.fs9{font-size:60.188284px;}
.fs4{font-size:65.969996px;}
.fsa{font-size:71.099998px;}
.fs1{font-size:77.984997px;}
.fs3{font-size:95.984996px;}
.fs8{font-size:97.440820px;}
.fsd{font-size:101.969996px;}
.fsc{font-size:107.199522px;}
.fs2{font-size:113.984995px;}
.fs5{font-size:149.985003px;}
.fs0{font-size:160.474485px;}
.y0{bottom:0.000000px;}
.y11{bottom:0.000008px;}
.y24{bottom:2.786307px;}
.y38{bottom:4.651050px;}
.y2a{bottom:5.626754px;}
.y41{bottom:6.609823px;}
.y17{bottom:12.374999px;}
.y10{bottom:13.499999px;}
.y34{bottom:13.860007px;}
.y6{bottom:14.624956px;}
.y21{bottom:19.124999px;}
.y8{bottom:21.374999px;}
.y37{bottom:25.458500px;}
.y14{bottom:26.999999px;}
.y16{bottom:34.874999px;}
.yf{bottom:40.499998px;}
.y5{bottom:41.624955px;}
.y20{bottom:41.624998px;}
.y36{bottom:46.265949px;}
.y1f{bottom:64.124997px;}
.y35{bottom:67.073399px;}
.ye{bottom:67.499997px;}
.y4{bottom:68.624954px;}
.y1e{bottom:86.624996px;}
.yd{bottom:94.499996px;}
.y2{bottom:94.908078px;}
.y1d{bottom:109.124995px;}
.y28{bottom:116.914567px;}
.yc{bottom:121.499995px;}
.y1c{bottom:131.624995px;}
.y27{bottom:137.164566px;}
.yb{bottom:148.499994px;}
.y26{bottom:157.414565px;}
.ya{bottom:175.499993px;}
.y25{bottom:177.664565px;}
.y1a{bottom:202.499992px;}
.y23{bottom:203.939999px;}
.y2e{bottom:253.384621px;}
.y2d{bottom:273.634621px;}
.y2c{bottom:293.884620px;}
.y2b{bottom:314.134619px;}
.y29{bottom:336.419994px;}
.y3e{bottom:405.041131px;}
.y3d{bottom:429.791130px;}
.y3c{bottom:454.541129px;}
.y3b{bottom:504.041127px;}
.y3a{bottom:528.791126px;}
.y39{bottom:553.541125px;}
.y40{bottom:589.859983px;}
.y58{bottom:660.665204px;}
.y57{bottom:687.665203px;}
.y56{bottom:714.665202px;}
.y55{bottom:741.665201px;}
.y54{bottom:768.665200px;}
.y53{bottom:795.665199px;}
.y52{bottom:822.665198px;}
.y51{bottom:849.665197px;}
.y50{bottom:886.790339px;}
.y4f{bottom:945.290193px;}
.y4e{bottom:972.290191px;}
.y4d{bottom:999.290190px;}
.y4c{bottom:1026.290189px;}
.y4b{bottom:1053.290188px;}
.y4a{bottom:1084.486419px;}
.y9{bottom:1135.433984px;}
.y49{bottom:1345.205068px;}
.y19{bottom:1393.843234px;}
.y1b{bottom:1618.494024px;}
.y18{bottom:1767.395418px;}
.y15{bottom:1839.223659px;}
.y13{bottom:1876.581037px;}
.y12{bottom:1957.775102px;}
.y3{bottom:1996.199392px;}
.y42{bottom:2124.970399px;}
.y7{bottom:2174.084082px;}
.y48{bottom:2262.134084px;}
.y47{bottom:2289.134083px;}
.y46{bottom:2316.134081px;}
.y45{bottom:2343.134080px;}
.y44{bottom:2370.134079px;}
.y43{bottom:2397.134078px;}
.y33{bottom:2466.659075px;}
.y32{bottom:2489.159074px;}
.y31{bottom:2511.659073px;}
.y30{bottom:2534.159072px;}
.y2f{bottom:2556.659071px;}
.y3f{bottom:2586.895402px;}
.y1{bottom:2599.739899px;}
.y59{bottom:2669.217484px;}
.y22{bottom:2713.542482px;}
.h12{height:14.759999px;}
.h15{height:28.799999px;}
.h1e{height:32.399999px;}
.h13{height:44.530454px;}
.h1d{height:52.375677px;}
.h1b{height:53.427867px;}
.h14{height:53.746557px;}
.h19{height:53.928703px;}
.he{height:54.491217px;}
.h1c{height:55.532247px;}
.hd{height:57.374998px;}
.h17{height:59.109117px;}
.h7{height:62.999997px;}
.h1a{height:63.705598px;}
.hc{height:67.499997px;}
.h6{height:69.874557px;}
.h5{height:71.278287px;}
.h18{height:80.279997px;}
.h21{height:84.227216px;}
.hb{height:87.730286px;}
.h16{height:89.060910px;}
.h20{height:93.200576px;}
.h4{height:96.749953px;}
.h1f{height:97.980363px;}
.h8{height:104.182286px;}
.h3{height:132.551925px;}
.h11{height:137.086293px;}
.h10{height:160.874993px;}
.h2{height:185.399992px;}
.h9{height:202.499992px;}
.hf{height:229.499990px;}
.ha{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.wa{width:86.039996px;}
.w1{width:190.079992px;}
.w8{width:280.079988px;}
.w7{width:592.559975px;}
.w9{width:691.559971px;}
.w5{width:702.000007px;}
.w6{width:733.499969px;}
.w2{width:836.999965px;}
.w3{width:839.249965px;}
.w4{width:899.999963px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x8{left:4.500000px;}
.x13{left:18.719999px;}
.xc{left:24.839999px;}
.xd{left:26.138863px;}
.x2{left:30.405703px;}
.x1{left:32.039999px;}
.x3{left:37.634764px;}
.x9{left:41.326478px;}
.x5{left:46.628375px;}
.x15{left:74.461242px;}
.xa{left:76.404543px;}
.x14{left:93.397245px;}
.x6{left:96.882841px;}
.x7{left:99.018421px;}
.x4{left:191.320305px;}
.x16{left:281.318610px;}
.xb{left:305.159027px;}
.xe{left:536.596941px;}
.xf{left:643.682874px;}
.x10{left:658.290295px;}
.x11{left:727.302017px;}
.x12{left:741.909432px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007080pt;}
.ls5{letter-spacing:0.021740pt;}
.ls3{letter-spacing:0.022220pt;}
.ls0{letter-spacing:0.045960pt;}
.ls4{letter-spacing:0.046980pt;}
.ls2{letter-spacing:0.054160pt;}
.ws0{word-spacing:-90.008356pt;}
.ws1{word-spacing:-15.978259pt;}
.ws4{word-spacing:-14.695839pt;}
.ws3{word-spacing:-14.567600pt;}
.ws2{word-spacing:-12.290259pt;}
.ws5{word-spacing:0.000000pt;}
._e{margin-left:-7.416204pt;}
._3{margin-left:-5.917086pt;}
._2{margin-left:-4.071055pt;}
._5{margin-left:-2.714432pt;}
._0{margin-left:-1.640314pt;}
._1{width:0.941104pt;}
._4{width:2.769478pt;}
._6{width:3.772513pt;}
._13{width:4.665800pt;}
._9{width:7.992505pt;}
._a{width:8.884367pt;}
._7{width:10.011863pt;}
._8{width:11.936929pt;}
._d{width:12.850508pt;}
._c{width:16.084337pt;}
._b{width:17.151244pt;}
._12{width:27.534705pt;}
._11{width:28.801489pt;}
._10{width:32.085547pt;}
._f{width:33.072606pt;}
.fs6{font-size:43.307031pt;}
.fsb{font-size:51.959997pt;}
.fs7{font-size:53.319997pt;}
.fs9{font-size:53.500697pt;}
.fs4{font-size:58.639997pt;}
.fsa{font-size:63.199998pt;}
.fs1{font-size:69.319997pt;}
.fs3{font-size:85.319996pt;}
.fs8{font-size:86.614062pt;}
.fsd{font-size:90.639996pt;}
.fsc{font-size:95.288464pt;}
.fs2{font-size:101.319996pt;}
.fs5{font-size:133.320002pt;}
.fs0{font-size:142.643987pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:0.000007pt;}
.y24{bottom:2.476717pt;}
.y38{bottom:4.134267pt;}
.y2a{bottom:5.001560pt;}
.y41{bottom:5.875398pt;}
.y17{bottom:11.000000pt;}
.y10{bottom:11.999999pt;}
.y34{bottom:12.320006pt;}
.y6{bottom:12.999961pt;}
.y21{bottom:16.999999pt;}
.y8{bottom:18.999999pt;}
.y37{bottom:22.629778pt;}
.y14{bottom:23.999999pt;}
.y16{bottom:30.999999pt;}
.yf{bottom:35.999998pt;}
.y5{bottom:36.999960pt;}
.y20{bottom:36.999998pt;}
.y36{bottom:41.125288pt;}
.y1f{bottom:56.999998pt;}
.y35{bottom:59.620799pt;}
.ye{bottom:59.999997pt;}
.y4{bottom:60.999959pt;}
.y1e{bottom:76.999997pt;}
.yd{bottom:83.999996pt;}
.y2{bottom:84.362736pt;}
.y1d{bottom:96.999996pt;}
.y28{bottom:103.924060pt;}
.yc{bottom:107.999995pt;}
.y1c{bottom:116.999995pt;}
.y27{bottom:121.924059pt;}
.yb{bottom:131.999994pt;}
.y26{bottom:139.924058pt;}
.ya{bottom:155.999993pt;}
.y25{bottom:157.924057pt;}
.y1a{bottom:179.999993pt;}
.y23{bottom:181.279999pt;}
.y2e{bottom:225.230775pt;}
.y2d{bottom:243.230774pt;}
.y2c{bottom:261.230773pt;}
.y2b{bottom:279.230772pt;}
.y29{bottom:299.039994pt;}
.y3e{bottom:360.036561pt;}
.y3d{bottom:382.036560pt;}
.y3c{bottom:404.036559pt;}
.y3b{bottom:448.036557pt;}
.y3a{bottom:470.036556pt;}
.y39{bottom:492.036555pt;}
.y40{bottom:524.319985pt;}
.y58{bottom:587.257960pt;}
.y57{bottom:611.257959pt;}
.y56{bottom:635.257958pt;}
.y55{bottom:659.257957pt;}
.y54{bottom:683.257956pt;}
.y53{bottom:707.257955pt;}
.y52{bottom:731.257954pt;}
.y51{bottom:755.257953pt;}
.y50{bottom:788.258079pt;}
.y4f{bottom:840.257949pt;}
.y4e{bottom:864.257948pt;}
.y4d{bottom:888.257947pt;}
.y4c{bottom:912.257946pt;}
.y4b{bottom:936.257945pt;}
.y4a{bottom:963.987928pt;}
.y9{bottom:1009.274653pt;}
.y49{bottom:1195.737838pt;}
.y19{bottom:1238.971763pt;}
.y1b{bottom:1438.661355pt;}
.y18{bottom:1571.018149pt;}
.y15{bottom:1634.865475pt;}
.y13{bottom:1668.072033pt;}
.y12{bottom:1740.244535pt;}
.y3{bottom:1774.399459pt;}
.y42{bottom:1888.862577pt;}
.y7{bottom:1932.519184pt;}
.y48{bottom:2010.785852pt;}
.y47{bottom:2034.785851pt;}
.y46{bottom:2058.785850pt;}
.y45{bottom:2082.785849pt;}
.y44{bottom:2106.785848pt;}
.y43{bottom:2130.785847pt;}
.y33{bottom:2192.585845pt;}
.y32{bottom:2212.585844pt;}
.y31{bottom:2232.585843pt;}
.y30{bottom:2252.585842pt;}
.y2f{bottom:2272.585841pt;}
.y3f{bottom:2299.462579pt;}
.y1{bottom:2310.879911pt;}
.y59{bottom:2372.637764pt;}
.y22{bottom:2412.037762pt;}
.h12{height:13.119999pt;}
.h15{height:25.599999pt;}
.h1e{height:28.799999pt;}
.h13{height:39.582626pt;}
.h1d{height:46.556157pt;}
.h1b{height:47.491437pt;}
.h14{height:47.774718pt;}
.h19{height:47.936625pt;}
.he{height:48.436637pt;}
.h1c{height:49.361997pt;}
.hd{height:50.999998pt;}
.h17{height:52.541437pt;}
.h7{height:55.999998pt;}
.h1a{height:56.627198pt;}
.hc{height:59.999998pt;}
.h6{height:62.110717pt;}
.h5{height:63.358477pt;}
.h18{height:71.359997pt;}
.h21{height:74.868637pt;}
.hb{height:77.982477pt;}
.h16{height:79.165253pt;}
.h20{height:82.844957pt;}
.h4{height:85.999958pt;}
.h1f{height:87.093656pt;}
.h8{height:92.606476pt;}
.h3{height:117.823933pt;}
.h11{height:121.854482pt;}
.h10{height:142.999994pt;}
.h2{height:164.799993pt;}
.h9{height:179.999992pt;}
.hf{height:203.999992pt;}
.ha{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.wa{width:76.479997pt;}
.w1{width:168.959993pt;}
.w8{width:248.959990pt;}
.w7{width:526.719978pt;}
.w9{width:614.719974pt;}
.w5{width:624.000006pt;}
.w6{width:651.999973pt;}
.w2{width:743.999969pt;}
.w3{width:745.999969pt;}
.w4{width:799.999967pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x8{left:4.000000pt;}
.x13{left:16.639999pt;}
.xc{left:22.079999pt;}
.xd{left:23.234545pt;}
.x2{left:27.027292pt;}
.x1{left:28.479999pt;}
.x3{left:33.453124pt;}
.x9{left:36.734647pt;}
.x5{left:41.447445pt;}
.x15{left:66.187771pt;}
.xa{left:67.915149pt;}
.x14{left:83.019773pt;}
.x6{left:86.118081pt;}
.x7{left:88.016374pt;}
.x4{left:170.062493pt;}
.x16{left:250.060987pt;}
.xb{left:271.252469pt;}
.xe{left:476.975059pt;}
.xf{left:572.162555pt;}
.x10{left:585.146929pt;}
.x11{left:646.490681pt;}
.x12{left:659.475051pt;}
}




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