
    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_ed365c384b6be5ddd308ed19.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_d77795993df1c9e13c470dba.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_8a600552007811a85031b761.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_6316e78764b2f9c8744e09cd.woff')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_0842a018dfa31dd9375dc960.woff')format("woff");}.ff5{font-family:ff5;line-height:1.068848;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);}
.v2{vertical-align:-32.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:57.600000px;}
.v3{vertical-align:172.800000px;}
.lsb{letter-spacing:-0.325200px;}
.lsf{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.181200px;}
.ls10{letter-spacing:-0.151800px;}
.ls11{letter-spacing:-0.037440px;}
.lsa{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.216000px;}
.lse{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.295800px;}
.ls5{letter-spacing:0.295920px;}
.lsd{letter-spacing:0.325200px;}
.lsc{letter-spacing:0.469200px;}
.ls6{letter-spacing:29.952000px;}
.ls2{letter-spacing:51.863040px;}
.ls8{letter-spacing:148.716000px;}
.ls9{letter-spacing:161.676000px;}
.ls0{letter-spacing:161.796000px;}
.ls3{letter-spacing:173.865600px;}
.ls1{letter-spacing:173.916000px;}
.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;}
}
.ws6{word-spacing:-73.458720px;}
.ws0{word-spacing:-53.442720px;}
.ws8{word-spacing:-53.261520px;}
.ws2{word-spacing:-46.933080px;}
.ws1{word-spacing:-46.637280px;}
.ws5{word-spacing:-30.240000px;}
.ws4{word-spacing:-30.024000px;}
.ws3{word-spacing:-29.736000px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:309.960000px;}
._11{margin-left:-795.264000px;}
._12{margin-left:-734.064000px;}
._5{margin-left:-31.968000px;}
._f{margin-left:-29.772720px;}
._6{margin-left:-22.281792px;}
._1{margin-left:-20.139840px;}
._10{margin-left:-18.966960px;}
._b{margin-left:-12.078720px;}
._a{margin-left:-10.233360px;}
._c{margin-left:-8.938080px;}
._4{margin-left:-7.488000px;}
._e{margin-left:-4.842720px;}
._7{margin-left:-2.948400px;}
._0{margin-left:-1.088640px;}
._2{width:1.632960px;}
._3{width:2.751552px;}
._d{width:29.376000px;}
._8{width:51.067920px;}
._9{width:52.129920px;}
._13{width:377.207040px;}
._14{width:621.828000px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(163,7,116);}
.fs8{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs9{font-size:108.000000px;}
.fs5{font-size:128.160000px;}
.fsc{font-size:144.000000px;}
.fs7{font-size:167.760000px;}
.fs4{font-size:192.240000px;}
.fs6{font-size:192.384000px;}
.fsa{font-size:264.240000px;}
.fs0{font-size:272.160000px;}
.fs3{font-size:288.000000px;}
.fs2{font-size:527.760000px;}
.fs1{font-size:527.904000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:266.580000px;}
.y1d{bottom:309.960000px;}
.y1c{bottom:353.520000px;}
.y1b{bottom:396.900000px;}
.y1a{bottom:440.460000px;}
.y19{bottom:518.115000px;}
.y27{bottom:663.840000px;}
.y26{bottom:704.340000px;}
.y2c{bottom:710.640000px;}
.y25{bottom:737.640000px;}
.y2b{bottom:751.140000px;}
.y24{bottom:770.040000px;}
.y2a{bottom:792.540000px;}
.y23{bottom:802.440000px;}
.y29{bottom:833.940000px;}
.y22{bottom:842.940000px;}
.y28{bottom:875.340000px;}
.y21{bottom:876.240000px;}
.y20{bottom:908.640000px;}
.y1f{bottom:949.140000px;}
.y1{bottom:1024.815000px;}
.y15{bottom:1316.730000px;}
.y14{bottom:1374.330000px;}
.y13{bottom:1431.930000px;}
.y12{bottom:1489.530000px;}
.y11{bottom:1572.690000px;}
.y10{bottom:1630.290000px;}
.yf{bottom:1687.890000px;}
.ye{bottom:1771.050000px;}
.y18{bottom:1784.670000px;}
.yd{bottom:1828.650000px;}
.y17{bottom:1842.270000px;}
.y16{bottom:1899.900000px;}
.y3{bottom:1986.330000px;}
.y2{bottom:2052.210000px;}
.y3c{bottom:2228.610000px;}
.y3b{bottom:2271.810000px;}
.y32{bottom:2452.110000px;}
.y35{bottom:2491.560000px;}
.y31{bottom:2508.450000px;}
.y30{bottom:2593.650000px;}
.y34{bottom:2600.925000px;}
.y33{bottom:2709.645000px;}
.y38{bottom:2725.920000px;}
.y37{bottom:2758.320000px;}
.y3a{bottom:2858.475000px;}
.y39{bottom:2906.745000px;}
.y36{bottom:2987.565000px;}
.y3d{bottom:3175.455000px;}
.yc{bottom:3233.055000px;}
.yb{bottom:3290.655000px;}
.ya{bottom:3348.255000px;}
.y9{bottom:3405.855000px;}
.y8{bottom:3463.455000px;}
.y4{bottom:3588.765000px;}
.y2f{bottom:3745.620000px;}
.y2e{bottom:3824.820000px;}
.y2d{bottom:3904.020000px;}
.y7{bottom:4153.530000px;}
.y6{bottom:4329.210000px;}
.y5{bottom:4487.655000px;}
.h9{height:80.240625px;}
.hc{height:87.859687px;}
.ha{height:112.640625px;}
.hd{height:150.187500px;}
.h8{height:174.968437px;}
.h6{height:200.500313px;}
.h7{height:200.650500px;}
.hb{height:275.594063px;}
.h2{height:283.854375px;}
.h5{height:300.375000px;}
.he{height:322.987500px;}
.h4{height:550.437187px;}
.h3{height:550.587375px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w2{width:3575.879947px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x6{left:184.034947px;}
.xc{left:210.494947px;}
.x1f{left:238.574947px;}
.x7{left:241.304947px;}
.xd{left:263.729947px;}
.x5{left:270.974947px;}
.xe{left:272.369947px;}
.x21{left:324.614947px;}
.x2{left:561.419947px;}
.x10{left:635.834947px;}
.xf{left:656.354947px;}
.x3{left:675.899947px;}
.x4{left:744.659947px;}
.x12{left:999.329947px;}
.x11{left:1019.849947px;}
.x13{left:1354.169947px;}
.x30{left:1360.724947px;}
.x14{left:1362.809947px;}
.x2c{left:1381.889947px;}
.x31{left:1417.964947px;}
.x1{left:1431.434947px;}
.x15{left:1717.664947px;}
.x16{left:1726.304947px;}
.x20{left:1811.699947px;}
.xa{left:1842.809947px;}
.xb{left:1903.109947px;}
.x8{left:1943.174947px;}
.x9{left:2016.434947px;}
.x17{left:2081.129947px;}
.x18{left:2089.769947px;}
.x19{left:2444.609947px;}
.x1a{left:2453.249947px;}
.x2e{left:2464.349947px;}
.x28{left:2513.699947px;}
.x2f{left:2518.349947px;}
.x2d{left:2535.914947px;}
.x25{left:2537.894947px;}
.x26{left:2716.589947px;}
.x27{left:2723.009947px;}
.x1c{left:2816.744947px;}
.x1b{left:2837.264947px;}
.x29{left:3063.704947px;}
.x24{left:3067.769947px;}
.x2a{left:3072.029947px;}
.x1d{left:3171.599947px;}
.x1e{left:3180.239947px;}
.x22{left:3212.819947px;}
.x23{left:3224.624947px;}
.x2b{left:3254.549947px;}
@media print{
.v2{vertical-align:-28.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:51.200000pt;}
.v3{vertical-align:153.600000pt;}
.lsb{letter-spacing:-0.289067pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.161067pt;}
.ls10{letter-spacing:-0.134933pt;}
.ls11{letter-spacing:-0.033280pt;}
.lsa{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.262933pt;}
.ls5{letter-spacing:0.263040pt;}
.lsd{letter-spacing:0.289067pt;}
.lsc{letter-spacing:0.417067pt;}
.ls6{letter-spacing:26.624000pt;}
.ls2{letter-spacing:46.100480pt;}
.ls8{letter-spacing:132.192000pt;}
.ls9{letter-spacing:143.712000pt;}
.ls0{letter-spacing:143.818667pt;}
.ls3{letter-spacing:154.547200pt;}
.ls1{letter-spacing:154.592000pt;}
.ws6{word-spacing:-65.296640pt;}
.ws0{word-spacing:-47.504640pt;}
.ws8{word-spacing:-47.343573pt;}
.ws2{word-spacing:-41.718293pt;}
.ws1{word-spacing:-41.455360pt;}
.ws5{word-spacing:-26.880000pt;}
.ws4{word-spacing:-26.688000pt;}
.ws3{word-spacing:-26.432000pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:275.520000pt;}
._11{margin-left:-706.901333pt;}
._12{margin-left:-652.501333pt;}
._5{margin-left:-28.416000pt;}
._f{margin-left:-26.464640pt;}
._6{margin-left:-19.806037pt;}
._1{margin-left:-17.902080pt;}
._10{margin-left:-16.859520pt;}
._b{margin-left:-10.736640pt;}
._a{margin-left:-9.096320pt;}
._c{margin-left:-7.944960pt;}
._4{margin-left:-6.656000pt;}
._e{margin-left:-4.304640pt;}
._7{margin-left:-2.620800pt;}
._0{margin-left:-0.967680pt;}
._2{width:1.451520pt;}
._3{width:2.445824pt;}
._d{width:26.112000pt;}
._8{width:45.393707pt;}
._9{width:46.337707pt;}
._13{width:335.295147pt;}
._14{width:552.736000pt;}
.fs8{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs9{font-size:96.000000pt;}
.fs5{font-size:113.920000pt;}
.fsc{font-size:128.000000pt;}
.fs7{font-size:149.120000pt;}
.fs4{font-size:170.880000pt;}
.fs6{font-size:171.008000pt;}
.fsa{font-size:234.880000pt;}
.fs0{font-size:241.920000pt;}
.fs3{font-size:256.000000pt;}
.fs2{font-size:469.120000pt;}
.fs1{font-size:469.248000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:236.960000pt;}
.y1d{bottom:275.520000pt;}
.y1c{bottom:314.240000pt;}
.y1b{bottom:352.800000pt;}
.y1a{bottom:391.520000pt;}
.y19{bottom:460.546667pt;}
.y27{bottom:590.080000pt;}
.y26{bottom:626.080000pt;}
.y2c{bottom:631.680000pt;}
.y25{bottom:655.680000pt;}
.y2b{bottom:667.680000pt;}
.y24{bottom:684.480000pt;}
.y2a{bottom:704.480000pt;}
.y23{bottom:713.280000pt;}
.y29{bottom:741.280000pt;}
.y22{bottom:749.280000pt;}
.y28{bottom:778.080000pt;}
.y21{bottom:778.880000pt;}
.y20{bottom:807.680000pt;}
.y1f{bottom:843.680000pt;}
.y1{bottom:910.946667pt;}
.y15{bottom:1170.426667pt;}
.y14{bottom:1221.626667pt;}
.y13{bottom:1272.826667pt;}
.y12{bottom:1324.026667pt;}
.y11{bottom:1397.946667pt;}
.y10{bottom:1449.146667pt;}
.yf{bottom:1500.346667pt;}
.ye{bottom:1574.266667pt;}
.y18{bottom:1586.373333pt;}
.yd{bottom:1625.466667pt;}
.y17{bottom:1637.573333pt;}
.y16{bottom:1688.800000pt;}
.y3{bottom:1765.626667pt;}
.y2{bottom:1824.186667pt;}
.y3c{bottom:1980.986667pt;}
.y3b{bottom:2019.386667pt;}
.y32{bottom:2179.653333pt;}
.y35{bottom:2214.720000pt;}
.y31{bottom:2229.733333pt;}
.y30{bottom:2305.466667pt;}
.y34{bottom:2311.933333pt;}
.y33{bottom:2408.573333pt;}
.y38{bottom:2423.040000pt;}
.y37{bottom:2451.840000pt;}
.y3a{bottom:2540.866667pt;}
.y39{bottom:2583.773333pt;}
.y36{bottom:2655.613333pt;}
.y3d{bottom:2822.626667pt;}
.yc{bottom:2873.826667pt;}
.yb{bottom:2925.026667pt;}
.ya{bottom:2976.226667pt;}
.y9{bottom:3027.426667pt;}
.y8{bottom:3078.626667pt;}
.y4{bottom:3190.013333pt;}
.y2f{bottom:3329.440000pt;}
.y2e{bottom:3399.840000pt;}
.y2d{bottom:3470.240000pt;}
.y7{bottom:3692.026667pt;}
.y6{bottom:3848.186667pt;}
.y5{bottom:3989.026667pt;}
.h9{height:71.325000pt;}
.hc{height:78.097500pt;}
.ha{height:100.125000pt;}
.hd{height:133.500000pt;}
.h8{height:155.527500pt;}
.h6{height:178.222500pt;}
.h7{height:178.356000pt;}
.hb{height:244.972500pt;}
.h2{height:252.315000pt;}
.h5{height:267.000000pt;}
.he{height:287.100000pt;}
.h4{height:489.277500pt;}
.h3{height:489.411000pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.559953pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x6{left:163.586619pt;}
.xc{left:187.106619pt;}
.x1f{left:212.066619pt;}
.x7{left:214.493286pt;}
.xd{left:234.426619pt;}
.x5{left:240.866619pt;}
.xe{left:242.106619pt;}
.x21{left:288.546619pt;}
.x2{left:499.039953pt;}
.x10{left:565.186619pt;}
.xf{left:583.426619pt;}
.x3{left:600.799953pt;}
.x4{left:661.919953pt;}
.x12{left:888.293286pt;}
.x11{left:906.533286pt;}
.x13{left:1203.706619pt;}
.x30{left:1209.533286pt;}
.x14{left:1211.386619pt;}
.x2c{left:1228.346619pt;}
.x31{left:1260.413286pt;}
.x1{left:1272.386619pt;}
.x15{left:1526.813286pt;}
.x16{left:1534.493286pt;}
.x20{left:1610.399953pt;}
.xa{left:1638.053286pt;}
.xb{left:1691.653286pt;}
.x8{left:1727.266619pt;}
.x9{left:1792.386619pt;}
.x17{left:1849.893286pt;}
.x18{left:1857.573286pt;}
.x19{left:2172.986619pt;}
.x1a{left:2180.666619pt;}
.x2e{left:2190.533286pt;}
.x28{left:2234.399953pt;}
.x2f{left:2238.533286pt;}
.x2d{left:2254.146619pt;}
.x25{left:2255.906619pt;}
.x26{left:2414.746619pt;}
.x27{left:2420.453286pt;}
.x1c{left:2503.773286pt;}
.x1b{left:2522.013286pt;}
.x29{left:2723.293286pt;}
.x24{left:2726.906619pt;}
.x2a{left:2730.693286pt;}
.x1d{left:2819.199953pt;}
.x1e{left:2826.879953pt;}
.x22{left:2855.839953pt;}
.x23{left:2866.333286pt;}
.x2b{left:2892.933286pt;}
}




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