
    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_d6e31bca753ceed3bce57418.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_cf3bf44e7101d821ee844bdf.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.201172;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_34559f9638dc08944ce03e79.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.789000;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_c85d69e41a8c22d78d2f0423.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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(0.250206,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250206,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:157.284000px;}
.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:-37.913760px;}
.ws1{word-spacing:0.000000px;}
._2f{margin-left:-296.689920px;}
._53{margin-left:-241.977744px;}
._31{margin-left:-136.895040px;}
._52{margin-left:-127.167120px;}
._35{margin-left:-111.257856px;}
._25{margin-left:-109.922928px;}
._3f{margin-left:-108.892080px;}
._4c{margin-left:-107.497968px;}
._3b{margin-left:-105.740640px;}
._16{margin-left:-104.104224px;}
._34{margin-left:-102.046368px;}
._2d{margin-left:-100.568208px;}
._4e{margin-left:-98.458416px;}
._39{margin-left:-97.045584px;}
._44{margin-left:-95.962608px;}
._3c{margin-left:-93.584640px;}
._1e{margin-left:-91.770480px;}
._48{margin-left:-89.138400px;}
._1d{margin-left:-87.813552px;}
._4b{margin-left:-85.486128px;}
._2b{margin-left:-83.752704px;}
._30{margin-left:-81.130080px;}
._9{margin-left:-80.027280px;}
._29{margin-left:-78.108720px;}
._f{margin-left:-76.587840px;}
._7{margin-left:-74.831040px;}
._6{margin-left:-73.728960px;}
._17{margin-left:-72.285696px;}
._e{margin-left:-70.943760px;}
._27{margin-left:-68.952960px;}
._12{margin-left:-66.830208px;}
._1f{margin-left:-65.342880px;}
._18{margin-left:-62.637120px;}
._14{margin-left:-61.330176px;}
._41{margin-left:-60.307440px;}
._36{margin-left:-59.230752px;}
._1b{margin-left:-53.136960px;}
._2{margin-left:-52.028640px;}
._23{margin-left:-50.727648px;}
._37{margin-left:-46.604208px;}
._38{margin-left:-44.432064px;}
._20{margin-left:-43.426800px;}
._40{margin-left:-40.779120px;}
._32{margin-left:-39.707040px;}
._3d{margin-left:-37.359072px;}
._8{margin-left:-36.020880px;}
._d{margin-left:-34.176960px;}
._b{margin-left:-31.798080px;}
._21{margin-left:-30.778080px;}
._51{margin-left:-29.069712px;}
._4{margin-left:-27.548640px;}
._15{margin-left:-25.605216px;}
._10{margin-left:-23.480160px;}
._49{margin-left:-22.089264px;}
._19{margin-left:-20.259888px;}
._4a{margin-left:-18.847968px;}
._24{margin-left:-17.839248px;}
._a{margin-left:-15.596640px;}
._2c{margin-left:-14.338800px;}
._11{margin-left:-12.178800px;}
._c{margin-left:-10.914480px;}
._28{margin-left:-8.435520px;}
._43{margin-left:-5.733408px;}
._2e{margin-left:-4.511760px;}
._3{margin-left:-1.654560px;}
._22{width:2.349168px;}
._26{width:3.604704px;}
._45{width:5.060160px;}
._13{width:8.853696px;}
._2a{width:10.326240px;}
._3a{width:12.031200px;}
._1a{width:16.626240px;}
._1c{width:17.693520px;}
._4f{width:18.752160px;}
._50{width:20.217744px;}
._33{width:23.253696px;}
._5{width:24.726240px;}
._42{width:39.925248px;}
._3e{width:40.967760px;}
._4d{width:44.729760px;}
._47{width:94.785840px;}
._46{width:96.006240px;}
._1{width:335.479440px;}
._0{width:379.324800px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.654136px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:144.000000px;}
.fs3{font-size:167.760000px;}
.fs5{font-size:167.904000px;}
.fs4{font-size:216.000000px;}
.fs2{font-size:324.000000px;}
.fs1{font-size:324.144000px;}
.fs0{font-size:527.760000px;}
.y31{bottom:-174.684569px;}
.y0{bottom:0.000000px;}
.y23{bottom:133.416000px;}
.y22{bottom:234.210000px;}
.y21{bottom:284.610000px;}
.y20{bottom:335.010000px;}
.y2f{bottom:388.950000px;}
.y2d{bottom:515.670000px;}
.y2c{bottom:566.100000px;}
.y2b{bottom:616.500000px;}
.y2a{bottom:666.900000px;}
.y29{bottom:717.300000px;}
.y28{bottom:767.700000px;}
.y27{bottom:818.100000px;}
.y26{bottom:868.500000px;}
.y25{bottom:918.900000px;}
.y32{bottom:1025.130000px;}
.y24{bottom:1030.290000px;}
.y18{bottom:1189.365000px;}
.y17{bottom:1239.765000px;}
.y16{bottom:1290.165000px;}
.y15{bottom:1340.565000px;}
.y14{bottom:1391.010000px;}
.y13{bottom:1441.410000px;}
.y12{bottom:1491.810000px;}
.y11{bottom:1542.210000px;}
.y10{bottom:1592.610000px;}
.y1a{bottom:1672.050000px;}
.y19{bottom:1736.850000px;}
.y7{bottom:1987.275000px;}
.y2e{bottom:1998.975000px;}
.y6{bottom:2037.675000px;}
.y5{bottom:2088.075000px;}
.y4{bottom:2138.475000px;}
.yf{bottom:2253.450000px;}
.ye{bottom:2303.850000px;}
.y34{bottom:2315.625000px;}
.yd{bottom:2354.250000px;}
.yc{bottom:2404.650000px;}
.y33{bottom:2413.725000px;}
.yb{bottom:2455.095000px;}
.ya{bottom:2505.495000px;}
.y35{bottom:2528.175000px;}
.y9{bottom:2555.715000px;}
.y36{bottom:2591.640000px;}
.y8{bottom:2678.010000px;}
.y1f{bottom:2759.325000px;}
.y1e{bottom:2809.725000px;}
.y1d{bottom:2860.125000px;}
.y1c{bottom:2910.570000px;}
.y1b{bottom:2960.790000px;}
.y3{bottom:3152.370000px;}
.y30{bottom:3226.625862px;}
.y2{bottom:3249.615000px;}
.y1{bottom:3359.055000px;}
.hb{height:9.819610px;}
.hc{height:91.283203px;}
.h9{height:107.419922px;}
.ha{height:156.095755px;}
.h5{height:166.858945px;}
.h8{height:167.002172px;}
.h7{height:171.773789px;}
.h6{height:214.839844px;}
.h4{height:322.259766px;}
.h3{height:322.402992px;}
.h2{height:524.925352px;}
.h0{height:3575.880000px;}
.h1{height:3576.000000px;}
.w3{width:425.970272px;}
.w1{width:2525.250000px;}
.w2{width:2525.579962px;}
.w0{width:2525.580000px;}
.xa{left:-63.053385px;}
.x0{left:0.000000px;}
.x5{left:96.947962px;}
.xb{left:99.431962px;}
.x1{left:107.747962px;}
.xf{left:639.149962px;}
.x4{left:894.239962px;}
.xe{left:998.279962px;}
.xc{left:1106.069962px;}
.xd{left:1134.329962px;}
.x3{left:1265.759962px;}
.x2{left:1267.019962px;}
.x6{left:1688.189962px;}
.x8{left:1691.174962px;}
.x7{left:1692.329962px;}
.x9{left:2029.812467px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:139.808000pt;}
.ws0{word-spacing:-33.701120pt;}
.ws1{word-spacing:0.000000pt;}
._2f{margin-left:-263.724373pt;}
._53{margin-left:-215.091328pt;}
._31{margin-left:-121.684480pt;}
._52{margin-left:-113.037440pt;}
._35{margin-left:-98.895872pt;}
._25{margin-left:-97.709269pt;}
._3f{margin-left:-96.792960pt;}
._4c{margin-left:-95.553749pt;}
._3b{margin-left:-93.991680pt;}
._16{margin-left:-92.537088pt;}
._34{margin-left:-90.707883pt;}
._2d{margin-left:-89.393963pt;}
._4e{margin-left:-87.518592pt;}
._39{margin-left:-86.262741pt;}
._44{margin-left:-85.300096pt;}
._3c{margin-left:-83.186347pt;}
._1e{margin-left:-81.573760pt;}
._48{margin-left:-79.234133pt;}
._1d{margin-left:-78.056491pt;}
._4b{margin-left:-75.987669pt;}
._2b{margin-left:-74.446848pt;}
._30{margin-left:-72.115627pt;}
._9{margin-left:-71.135360pt;}
._29{margin-left:-69.429973pt;}
._f{margin-left:-68.078080pt;}
._7{margin-left:-66.516480pt;}
._6{margin-left:-65.536853pt;}
._17{margin-left:-64.253952pt;}
._e{margin-left:-63.061120pt;}
._27{margin-left:-61.291520pt;}
._12{margin-left:-59.404629pt;}
._1f{margin-left:-58.082560pt;}
._18{margin-left:-55.677440pt;}
._14{margin-left:-54.515712pt;}
._41{margin-left:-53.606613pt;}
._36{margin-left:-52.649557pt;}
._1b{margin-left:-47.232853pt;}
._2{margin-left:-46.247680pt;}
._23{margin-left:-45.091243pt;}
._37{margin-left:-41.425963pt;}
._38{margin-left:-39.495168pt;}
._20{margin-left:-38.601600pt;}
._40{margin-left:-36.248107pt;}
._32{margin-left:-35.295147pt;}
._3d{margin-left:-33.208064pt;}
._8{margin-left:-32.018560pt;}
._d{margin-left:-30.379520pt;}
._b{margin-left:-28.264960pt;}
._21{margin-left:-27.358293pt;}
._51{margin-left:-25.839744pt;}
._4{margin-left:-24.487680pt;}
._15{margin-left:-22.760192pt;}
._10{margin-left:-20.871253pt;}
._49{margin-left:-19.634901pt;}
._19{margin-left:-18.008789pt;}
._4a{margin-left:-16.753749pt;}
._24{margin-left:-15.857109pt;}
._a{margin-left:-13.863680pt;}
._2c{margin-left:-12.745600pt;}
._11{margin-left:-10.825600pt;}
._c{margin-left:-9.701760pt;}
._28{margin-left:-7.498240pt;}
._43{margin-left:-5.096363pt;}
._2e{margin-left:-4.010453pt;}
._3{margin-left:-1.470720pt;}
._22{width:2.088149pt;}
._26{width:3.204181pt;}
._45{width:4.497920pt;}
._13{width:7.869952pt;}
._2a{width:9.178880pt;}
._3a{width:10.694400pt;}
._1a{width:14.778880pt;}
._1c{width:15.727573pt;}
._4f{width:16.668587pt;}
._50{width:17.971328pt;}
._33{width:20.669952pt;}
._5{width:21.978880pt;}
._42{width:35.489109pt;}
._3e{width:36.415787pt;}
._4d{width:39.759787pt;}
._47{width:84.254080pt;}
._46{width:85.338880pt;}
._1{width:298.203947pt;}
._0{width:337.177600pt;}
.fs8{font-size:11.248121pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:128.000000pt;}
.fs3{font-size:149.120000pt;}
.fs5{font-size:149.248000pt;}
.fs4{font-size:192.000000pt;}
.fs2{font-size:288.000000pt;}
.fs1{font-size:288.128000pt;}
.fs0{font-size:469.120000pt;}
.y31{bottom:-155.275172pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:118.592000pt;}
.y22{bottom:208.186667pt;}
.y21{bottom:252.986667pt;}
.y20{bottom:297.786667pt;}
.y2f{bottom:345.733333pt;}
.y2d{bottom:458.373333pt;}
.y2c{bottom:503.200000pt;}
.y2b{bottom:548.000000pt;}
.y2a{bottom:592.800000pt;}
.y29{bottom:637.600000pt;}
.y28{bottom:682.400000pt;}
.y27{bottom:727.200000pt;}
.y26{bottom:772.000000pt;}
.y25{bottom:816.800000pt;}
.y32{bottom:911.226667pt;}
.y24{bottom:915.813333pt;}
.y18{bottom:1057.213333pt;}
.y17{bottom:1102.013333pt;}
.y16{bottom:1146.813333pt;}
.y15{bottom:1191.613333pt;}
.y14{bottom:1236.453333pt;}
.y13{bottom:1281.253333pt;}
.y12{bottom:1326.053333pt;}
.y11{bottom:1370.853333pt;}
.y10{bottom:1415.653333pt;}
.y1a{bottom:1486.266667pt;}
.y19{bottom:1543.866667pt;}
.y7{bottom:1766.466667pt;}
.y2e{bottom:1776.866667pt;}
.y6{bottom:1811.266667pt;}
.y5{bottom:1856.066667pt;}
.y4{bottom:1900.866667pt;}
.yf{bottom:2003.066667pt;}
.ye{bottom:2047.866667pt;}
.y34{bottom:2058.333333pt;}
.yd{bottom:2092.666667pt;}
.yc{bottom:2137.466667pt;}
.y33{bottom:2145.533333pt;}
.yb{bottom:2182.306667pt;}
.ya{bottom:2227.106667pt;}
.y35{bottom:2247.266667pt;}
.y9{bottom:2271.746667pt;}
.y36{bottom:2303.680000pt;}
.y8{bottom:2380.453333pt;}
.y1f{bottom:2452.733333pt;}
.y1e{bottom:2497.533333pt;}
.y1d{bottom:2542.333333pt;}
.y1c{bottom:2587.173333pt;}
.y1b{bottom:2631.813333pt;}
.y3{bottom:2802.106667pt;}
.y30{bottom:2868.111878pt;}
.y2{bottom:2888.546667pt;}
.y1{bottom:2985.826667pt;}
.hb{height:8.728542pt;}
.hc{height:81.140625pt;}
.h9{height:95.484375pt;}
.ha{height:138.751782pt;}
.h5{height:148.319063pt;}
.h8{height:148.446375pt;}
.h7{height:152.687812pt;}
.h6{height:190.968750pt;}
.h4{height:286.453125pt;}
.h3{height:286.580437pt;}
.h2{height:466.600312pt;}
.h0{height:3178.560000pt;}
.h1{height:3178.666667pt;}
.w3{width:378.640242pt;}
.w1{width:2244.666667pt;}
.w2{width:2244.959967pt;}
.w0{width:2244.960000pt;}
.xa{left:-56.047453pt;}
.x0{left:0.000000pt;}
.x5{left:86.175967pt;}
.xb{left:88.383967pt;}
.x1{left:95.775967pt;}
.xf{left:568.133300pt;}
.x4{left:794.879967pt;}
.xe{left:887.359967pt;}
.xc{left:983.173300pt;}
.xd{left:1008.293300pt;}
.x3{left:1125.119967pt;}
.x2{left:1126.239967pt;}
.x6{left:1500.613300pt;}
.x8{left:1503.266633pt;}
.x7{left:1504.293300pt;}
.x9{left:1804.277749pt;}
}




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