
    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_cd12706a4295e2877abd6a5b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.739746;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_05ca86f394b68a9fed922262.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.758789;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_f121e566f5e424953ac797b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.950195;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-79.200000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.560000px;}
.v3{vertical-align:78.780000px;}
.v1{vertical-align:108.000000px;}
.v4{vertical-align:159.420000px;}
.v6{vertical-align:165.780000px;}
.lsd{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.234000px;}
.lsb{letter-spacing:-0.186000px;}
.ls9{letter-spacing:0.000000px;}
.lse{letter-spacing:0.024180px;}
.ls0{letter-spacing:0.121680px;}
.ls6{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.210240px;}
.ls1{letter-spacing:0.330240px;}
.lsa{letter-spacing:0.612000px;}
.ls5{letter-spacing:35.274960px;}
.ls7{letter-spacing:186.033600px;}
.ls4{letter-spacing:186.060000px;}
.ls3{letter-spacing:186.084000px;}
.ls8{letter-spacing:186.204000px;}
.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;}
}
.ws2{word-spacing:-239.904000px;}
.ws4{word-spacing:-239.760000px;}
.ws3{word-spacing:-131.868000px;}
.ws0{word-spacing:-65.088000px;}
.ws1{word-spacing:-59.718240px;}
.ws8{word-spacing:-54.185760px;}
.ws5{word-spacing:-37.913760px;}
.ws7{word-spacing:-32.544000px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:5045.616000px;}
._0{margin-left:-42.261120px;}
._9{margin-left:-29.276880px;}
._c{margin-left:-14.762880px;}
._4{margin-left:-11.052000px;}
._a{margin-left:-8.784000px;}
._3{margin-left:-5.999760px;}
._2{margin-left:-4.802400px;}
._5{margin-left:-3.361680px;}
._1{margin-left:-1.920960px;}
._6{width:1.562400px;}
._7{width:3.488400px;}
._d{width:341.678880px;}
._e{width:345.248304px;}
._14{width:705.039600px;}
._b{width:754.850880px;}
._12{width:797.076000px;}
._13{width:1041.084960px;}
._11{width:1398.532560px;}
._10{width:2123.892720px;}
._8{width:2144.356320px;}
._f{width:2440.255680px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:144.000000px;}
.fsa{font-size:144.144000px;}
.fs7{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs3{font-size:175.680000px;}
.fsb{font-size:216.000000px;}
.fs2{font-size:239.760000px;}
.fs6{font-size:239.904000px;}
.fs4{font-size:264.240000px;}
.fs5{font-size:288.000000px;}
.fs1{font-size:360.000000px;}
.fs0{font-size:480.240000px;}
.y0{bottom:0.000000px;}
.y51{bottom:34.308000px;}
.y41{bottom:41.472000px;}
.y42{bottom:257.220000px;}
.y3e{bottom:375.270000px;}
.y4e{bottom:674.355000px;}
.y4d{bottom:746.355000px;}
.y3f{bottom:764.070000px;}
.y3d{bottom:810.360000px;}
.y4c{bottom:818.355000px;}
.y4b{bottom:890.355000px;}
.y3c{bottom:947.880000px;}
.y4a{bottom:962.355000px;}
.y49{bottom:1034.355000px;}
.y48{bottom:1106.355000px;}
.y47{bottom:1178.355000px;}
.y46{bottom:1250.355000px;}
.y45{bottom:1322.355000px;}
.y44{bottom:1394.355000px;}
.y43{bottom:1466.355000px;}
.y40{bottom:1484.130000px;}
.y11{bottom:1562.475000px;}
.y7{bottom:1564.455000px;}
.y3a{bottom:1721.130000px;}
.y39{bottom:1764.330000px;}
.y30{bottom:1820.235000px;}
.y3b{bottom:1918.155000px;}
.y2e{bottom:1943.745000px;}
.y32{bottom:2038.785000px;}
.y31{bottom:2040.765000px;}
.y2f{bottom:2256.480000px;}
.y2d{bottom:2392.995000px;}
.y38{bottom:2410.995000px;}
.y37{bottom:2483.565000px;}
.y2c{bottom:2483.745000px;}
.y36{bottom:2555.565000px;}
.y2b{bottom:2555.745000px;}
.y6{bottom:2651.430000px;}
.y35{bottom:2782.830000px;}
.y27{bottom:2782.905000px;}
.y25{bottom:2783.085000px;}
.y24{bottom:2786.430000px;}
.y1c{bottom:2804.145000px;}
.y26{bottom:2826.105000px;}
.y34{bottom:2826.390000px;}
.y23{bottom:2829.630000px;}
.y33{bottom:2869.590000px;}
.y22{bottom:2872.830000px;}
.y1b{bottom:2876.145000px;}
.y21{bottom:2916.030000px;}
.y20{bottom:2959.230000px;}
.y1a{bottom:2991.165000px;}
.y1e{bottom:3035.910000px;}
.y1d{bottom:3036.090000px;}
.y19{bottom:3063.165000px;}
.y18{bottom:3135.165000px;}
.y17{bottom:3207.345000px;}
.y16{bottom:3322.005000px;}
.y15{bottom:3394.005000px;}
.y14{bottom:3466.365000px;}
.y13{bottom:3538.365000px;}
.y2a{bottom:3538.440000px;}
.y29{bottom:3581.250000px;}
.y12{bottom:3610.545000px;}
.y28{bottom:3624.450000px;}
.y1f{bottom:3634.845000px;}
.y5{bottom:3715.740000px;}
.y50{bottom:3839.730000px;}
.yf{bottom:3849.870000px;}
.y4f{bottom:3911.730000px;}
.ye{bottom:3921.870000px;}
.yd{bottom:3993.870000px;}
.yc{bottom:4065.870000px;}
.yb{bottom:4181.070000px;}
.ya{bottom:4252.575000px;}
.y9{bottom:4325.115000px;}
.y8{bottom:4397.115000px;}
.y10{bottom:4500.690000px;}
.y4{bottom:4500.750000px;}
.y3{bottom:4672.335000px;}
.y2{bottom:4769.925000px;}
.y1{bottom:4907.235000px;}
.ha{height:143.226562px;}
.hf{height:143.406563px;}
.hc{height:144.786562px;}
.h9{height:166.858945px;}
.he{height:167.578945px;}
.h4{height:183.620742px;}
.h10{height:214.839844px;}
.h7{height:238.472227px;}
.h8{height:238.615453px;}
.h6{height:262.820742px;}
.h5{height:286.453125px;}
.hb{height:302.646563px;}
.hd{height:308.429789px;}
.h3{height:358.066406px;}
.h2{height:477.660586px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x18{left:46.979947px;}
.x7{left:57.995947px;}
.x4{left:64.655947px;}
.x19{left:70.523947px;}
.x21{left:77.471947px;}
.x23{left:103.391947px;}
.x8{left:111.995947px;}
.xc{left:125.495947px;}
.x22{left:127.871947px;}
.x1{left:166.529947px;}
.x9{left:233.489947px;}
.x24{left:332.894947px;}
.x2{left:410.504947px;}
.x16{left:462.809947px;}
.x25{left:553.649947px;}
.x26{left:596.234947px;}
.x17{left:636.329947px;}
.x3{left:737.819947px;}
.x1a{left:1090.874947px;}
.xf{left:1181.339947px;}
.xe{left:1348.559947px;}
.x2a{left:1396.154947px;}
.xa{left:1403.249947px;}
.x10{left:1494.389947px;}
.x1e{left:1793.129947px;}
.xb{left:1799.969947px;}
.xd{left:1866.029947px;}
.x20{left:1891.439947px;}
.x1b{left:2159.174947px;}
.x5{left:2160.974947px;}
.x1c{left:2191.574947px;}
.x1d{left:2209.574947px;}
.x27{left:2326.889947px;}
.x14{left:2571.734947px;}
.x13{left:2598.374947px;}
.x2b{left:2826.614947px;}
.x28{left:2849.114947px;}
.x6{left:2853.254947px;}
.x1f{left:2863.334947px;}
.x29{left:2916.644947px;}
.x15{left:3097.154947px;}
.x11{left:3298.679947px;}
.x12{left:3362.219947px;}
@media print{
.v2{vertical-align:-70.400000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.386667pt;}
.v3{vertical-align:70.026667pt;}
.v1{vertical-align:96.000000pt;}
.v4{vertical-align:141.706667pt;}
.v6{vertical-align:147.360000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.208000pt;}
.lsb{letter-spacing:-0.165333pt;}
.ls9{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.021493pt;}
.ls0{letter-spacing:0.108160pt;}
.ls6{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.186880pt;}
.ls1{letter-spacing:0.293547pt;}
.lsa{letter-spacing:0.544000pt;}
.ls5{letter-spacing:31.355520pt;}
.ls7{letter-spacing:165.363200pt;}
.ls4{letter-spacing:165.386667pt;}
.ls3{letter-spacing:165.408000pt;}
.ls8{letter-spacing:165.514667pt;}
.ws2{word-spacing:-213.248000pt;}
.ws4{word-spacing:-213.120000pt;}
.ws3{word-spacing:-117.216000pt;}
.ws0{word-spacing:-57.856000pt;}
.ws1{word-spacing:-53.082880pt;}
.ws8{word-spacing:-48.165120pt;}
.ws5{word-spacing:-33.701120pt;}
.ws7{word-spacing:-28.928000pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:4484.992000pt;}
._0{margin-left:-37.565440pt;}
._9{margin-left:-26.023893pt;}
._c{margin-left:-13.122560pt;}
._4{margin-left:-9.824000pt;}
._a{margin-left:-7.808000pt;}
._3{margin-left:-5.333120pt;}
._2{margin-left:-4.268800pt;}
._5{margin-left:-2.988160pt;}
._1{margin-left:-1.707520pt;}
._6{width:1.388800pt;}
._7{width:3.100800pt;}
._d{width:303.714560pt;}
._e{width:306.887381pt;}
._14{width:626.701867pt;}
._b{width:670.978560pt;}
._12{width:708.512000pt;}
._13{width:925.408853pt;}
._11{width:1243.140053pt;}
._10{width:1887.904640pt;}
._8{width:1906.094507pt;}
._f{width:2169.116160pt;}
.fs8{font-size:128.000000pt;}
.fsa{font-size:128.128000pt;}
.fs7{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs3{font-size:156.160000pt;}
.fsb{font-size:192.000000pt;}
.fs2{font-size:213.120000pt;}
.fs6{font-size:213.248000pt;}
.fs4{font-size:234.880000pt;}
.fs5{font-size:256.000000pt;}
.fs1{font-size:320.000000pt;}
.fs0{font-size:426.880000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:30.496000pt;}
.y41{bottom:36.864000pt;}
.y42{bottom:228.640000pt;}
.y3e{bottom:333.573333pt;}
.y4e{bottom:599.426667pt;}
.y4d{bottom:663.426667pt;}
.y3f{bottom:679.173333pt;}
.y3d{bottom:720.320000pt;}
.y4c{bottom:727.426667pt;}
.y4b{bottom:791.426667pt;}
.y3c{bottom:842.560000pt;}
.y4a{bottom:855.426667pt;}
.y49{bottom:919.426667pt;}
.y48{bottom:983.426667pt;}
.y47{bottom:1047.426667pt;}
.y46{bottom:1111.426667pt;}
.y45{bottom:1175.426667pt;}
.y44{bottom:1239.426667pt;}
.y43{bottom:1303.426667pt;}
.y40{bottom:1319.226667pt;}
.y11{bottom:1388.866667pt;}
.y7{bottom:1390.626667pt;}
.y3a{bottom:1529.893333pt;}
.y39{bottom:1568.293333pt;}
.y30{bottom:1617.986667pt;}
.y3b{bottom:1705.026667pt;}
.y2e{bottom:1727.773333pt;}
.y32{bottom:1812.253333pt;}
.y31{bottom:1814.013333pt;}
.y2f{bottom:2005.760000pt;}
.y2d{bottom:2127.106667pt;}
.y38{bottom:2143.106667pt;}
.y37{bottom:2207.613333pt;}
.y2c{bottom:2207.773333pt;}
.y36{bottom:2271.613333pt;}
.y2b{bottom:2271.773333pt;}
.y6{bottom:2356.826667pt;}
.y35{bottom:2473.626667pt;}
.y27{bottom:2473.693333pt;}
.y25{bottom:2473.853333pt;}
.y24{bottom:2476.826667pt;}
.y1c{bottom:2492.573333pt;}
.y26{bottom:2512.093333pt;}
.y34{bottom:2512.346667pt;}
.y23{bottom:2515.226667pt;}
.y33{bottom:2550.746667pt;}
.y22{bottom:2553.626667pt;}
.y1b{bottom:2556.573333pt;}
.y21{bottom:2592.026667pt;}
.y20{bottom:2630.426667pt;}
.y1a{bottom:2658.813333pt;}
.y1e{bottom:2698.586667pt;}
.y1d{bottom:2698.746667pt;}
.y19{bottom:2722.813333pt;}
.y18{bottom:2786.813333pt;}
.y17{bottom:2850.973333pt;}
.y16{bottom:2952.893333pt;}
.y15{bottom:3016.893333pt;}
.y14{bottom:3081.213333pt;}
.y13{bottom:3145.213333pt;}
.y2a{bottom:3145.280000pt;}
.y29{bottom:3183.333333pt;}
.y12{bottom:3209.373333pt;}
.y28{bottom:3221.733333pt;}
.y1f{bottom:3230.973333pt;}
.y5{bottom:3302.880000pt;}
.y50{bottom:3413.093333pt;}
.yf{bottom:3422.106667pt;}
.y4f{bottom:3477.093333pt;}
.ye{bottom:3486.106667pt;}
.yd{bottom:3550.106667pt;}
.yc{bottom:3614.106667pt;}
.yb{bottom:3716.506667pt;}
.ya{bottom:3780.066667pt;}
.y9{bottom:3844.546667pt;}
.y8{bottom:3908.546667pt;}
.y10{bottom:4000.613333pt;}
.y4{bottom:4000.666667pt;}
.y3{bottom:4153.186667pt;}
.y2{bottom:4239.933333pt;}
.y1{bottom:4361.986667pt;}
.ha{height:127.312500pt;}
.hf{height:127.472500pt;}
.hc{height:128.699167pt;}
.h9{height:148.319063pt;}
.he{height:148.959063pt;}
.h4{height:163.218437pt;}
.h10{height:190.968750pt;}
.h7{height:211.975312pt;}
.h8{height:212.102625pt;}
.h6{height:233.618437pt;}
.h5{height:254.625000pt;}
.hb{height:269.019167pt;}
.hd{height:274.159812pt;}
.h3{height:318.281250pt;}
.h2{height:424.587187pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x18{left:41.759953pt;}
.x7{left:51.551953pt;}
.x4{left:57.471953pt;}
.x19{left:62.687953pt;}
.x21{left:68.863953pt;}
.x23{left:91.903953pt;}
.x8{left:99.551953pt;}
.xc{left:111.551953pt;}
.x22{left:113.663953pt;}
.x1{left:148.026619pt;}
.x9{left:207.546619pt;}
.x24{left:295.906619pt;}
.x2{left:364.893286pt;}
.x16{left:411.386619pt;}
.x25{left:492.133286pt;}
.x26{left:529.986619pt;}
.x17{left:565.626619pt;}
.x3{left:655.839953pt;}
.x1a{left:969.666619pt;}
.xf{left:1050.079953pt;}
.xe{left:1198.719953pt;}
.x2a{left:1241.026619pt;}
.xa{left:1247.333286pt;}
.x10{left:1328.346619pt;}
.x1e{left:1593.893286pt;}
.xb{left:1599.973286pt;}
.xd{left:1658.693286pt;}
.x20{left:1681.279953pt;}
.x1b{left:1919.266619pt;}
.x5{left:1920.866619pt;}
.x1c{left:1948.066619pt;}
.x1d{left:1964.066619pt;}
.x27{left:2068.346619pt;}
.x14{left:2285.986619pt;}
.x13{left:2309.666619pt;}
.x2b{left:2512.546619pt;}
.x28{left:2532.546619pt;}
.x6{left:2536.226619pt;}
.x1f{left:2545.186619pt;}
.x29{left:2592.573286pt;}
.x15{left:2753.026619pt;}
.x11{left:2932.159953pt;}
.x12{left:2988.639953pt;}
}




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