
    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_670324d0ce84132fed0272ba.woff')format("woff");}.ff1{font-family:ff1;line-height:1.030273;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_82e5b78855fc49e0845a1a30.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_05ae3046676a955bfbc0a170.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090332;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_8dc347c166da5f078e838ba3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.022949;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_bbf2e0e28ec3e665ddc6a75e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.030273;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_9a91869ab8dbc00fde500c8c.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f71c61a2715438e619871d4a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.030273;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:ff8;src:url('chunks/assets/font_6198568dc98930503043e3a4.woff')format("woff");}.ff8{font-family:ff8;line-height:1.030273;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:ff9;src:url('chunks/assets/font_1ef1047396ac5ec3996f4e6f.woff')format("woff");}.ff9{font-family:ff9;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-47.460000px;}
.ls6{letter-spacing:-0.276000px;}
.ls12{letter-spacing:-0.144000px;}
.lsb{letter-spacing:-0.069000px;}
.ls0{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.067200px;}
.ls9{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150600px;}
.ls8{letter-spacing:0.182400px;}
.ls5{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.211200px;}
.ls4{letter-spacing:0.302400px;}
.ls7{letter-spacing:0.415200px;}
.lsa{letter-spacing:21.600000px;}
.ls1{letter-spacing:49.284000px;}
.lsf{letter-spacing:57.549600px;}
.lse{letter-spacing:57.600000px;}
.ls2{letter-spacing:83.390400px;}
.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;}
}
.ws19{word-spacing:-396.000000px;}
.ws16{word-spacing:-168.144900px;}
.ws14{word-spacing:-116.957232px;}
.ws1b{word-spacing:-83.376000px;}
.ws1{word-spacing:-50.998320px;}
.ws11{word-spacing:-34.084512px;}
.ws1e{word-spacing:-29.472432px;}
.ws1f{word-spacing:-29.328432px;}
.ws3{word-spacing:-29.261232px;}
.ws2{word-spacing:-29.232000px;}
.wse{word-spacing:-13.446720px;}
.ws17{word-spacing:-1.980000px;}
.ws18{word-spacing:-1.961712px;}
.ws12{word-spacing:-1.002576px;}
.ws10{word-spacing:-0.947904px;}
.wsb{word-spacing:-0.276000px;}
.ws1a{word-spacing:-0.273336px;}
.ws1d{word-spacing:-0.144144px;}
.ws1c{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.200280px;}
.wsf{word-spacing:0.273024px;}
.wsa{word-spacing:0.368640px;}
.ws13{word-spacing:0.428688px;}
.ws9{word-spacing:1.194960px;}
.wsc{word-spacing:1.256400px;}
.wsd{word-spacing:1.620720px;}
.ws6{word-spacing:49.344120px;}
.ws7{word-spacing:49.409280px;}
.ws5{word-spacing:49.457280px;}
.ws8{word-spacing:49.687920px;}
.ws4{word-spacing:49.819440px;}
._5{margin-left:-4537.608000px;}
._e{margin-left:-67.077720px;}
._b{margin-left:-13.531440px;}
._f{margin-left:-10.130280px;}
._3{margin-left:-8.532000px;}
._c{margin-left:-6.913728px;}
._6{margin-left:-5.604000px;}
._9{margin-left:-4.539840px;}
._4{margin-left:-3.528000px;}
._0{margin-left:-2.520000px;}
._2{margin-left:-1.440000px;}
._1{width:1.440000px;}
._7{width:2.684160px;}
._11{width:7.428000px;}
._10{width:20.964000px;}
._a{width:36.450000px;}
._12{width:82.056000px;}
._8{width:85.309920px;}
._d{width:118.138992px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.fs3{font-size:108.144000px;}
.fs1{font-size:144.000000px;}
.fs7{font-size:144.144000px;}
.fs8{font-size:167.760000px;}
.fs9{font-size:167.904000px;}
.fs5{font-size:264.240000px;}
.fs0{font-size:360.000000px;}
.fsd{font-size:396.000000px;}
.fse{font-size:396.144000px;}
.fsf{font-size:432.000000px;}
.fsa{font-size:576.144000px;}
.fsb{font-size:828.120000px;}
.fsc{font-size:828.300000px;}
.y0{bottom:0.000000px;}
.y19{bottom:117.180000px;}
.y12{bottom:119.952000px;}
.yd{bottom:149.292000px;}
.y1b{bottom:201.345000px;}
.y24{bottom:208.800000px;}
.y6{bottom:230.010000px;}
.y1a{bottom:233.745000px;}
.y23{bottom:262.620000px;}
.y18{bottom:265.140000px;}
.yf{bottom:266.370000px;}
.y1e{bottom:270.435000px;}
.y5{bottom:274.110000px;}
.yc{bottom:299.985000px;}
.y4{bottom:303.270000px;}
.y22{bottom:316.440000px;}
.y16{bottom:316.695000px;}
.y3{bottom:349.890000px;}
.y14{bottom:352.545000px;}
.y21{bottom:370.470000px;}
.y1d{bottom:401.685000px;}
.y20{bottom:424.290000px;}
.y2{bottom:471.240000px;}
.y15{bottom:472.245000px;}
.y17{bottom:488.730000px;}
.yb{bottom:503.820000px;}
.y1c{bottom:508.605000px;}
.y11{bottom:509.505000px;}
.ye{bottom:514.470000px;}
.y13{bottom:550.950000px;}
.y10{bottom:554.910000px;}
.y1f{bottom:562.140000px;}
.y1{bottom:568.470000px;}
.y8{bottom:670.965000px;}
.y7{bottom:752.580000px;}
.y9{bottom:753.330000px;}
.ya{bottom:753.840000px;}
.h7{height:57.410156px;}
.h5{height:62.402344px;}
.h3{height:93.603516px;}
.h4{height:93.728320px;}
.h8{height:121.710938px;}
.h2{height:124.804688px;}
.h9{height:124.929492px;}
.hb{height:141.914953px;}
.ha{height:145.397461px;}
.h6{height:223.339570px;}
.h1{height:304.277344px;}
.h10{height:334.705078px;}
.h11{height:334.826789px;}
.h12{height:365.132812px;}
.hc{height:486.965461px;}
.hd{height:499.343555px;}
.he{height:717.730957px;}
.hf{height:717.886963px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x6{left:39.887979px;}
.x4{left:109.799979px;}
.xf{left:114.227979px;}
.x17{left:133.199979px;}
.xb{left:136.799979px;}
.x18{left:144.755979px;}
.x1{left:168.584979px;}
.x11{left:232.844979px;}
.x19{left:236.009979px;}
.x13{left:240.764979px;}
.x16{left:280.364979px;}
.x12{left:422.789979px;}
.x15{left:472.469979px;}
.x10{left:478.049979px;}
.x1a{left:496.949979px;}
.x14{left:539.639979px;}
.x2{left:549.179979px;}
.x1b{left:646.529979px;}
.xc{left:665.309979px;}
.xe{left:682.919979px;}
.xd{left:686.519979px;}
.x9{left:944.924979px;}
.xa{left:947.984979px;}
.x8{left:955.514979px;}
.x7{left:968.114979px;}
.x3{left:1222.709979px;}
.x5{left:1233.209979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-42.186667pt;}
.ls6{letter-spacing:-0.245333pt;}
.ls12{letter-spacing:-0.128000pt;}
.lsb{letter-spacing:-0.061333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.059733pt;}
.ls9{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133867pt;}
.ls8{letter-spacing:0.162133pt;}
.ls5{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.187733pt;}
.ls4{letter-spacing:0.268800pt;}
.ls7{letter-spacing:0.369067pt;}
.lsa{letter-spacing:19.200000pt;}
.ls1{letter-spacing:43.808000pt;}
.lsf{letter-spacing:51.155200pt;}
.lse{letter-spacing:51.200000pt;}
.ls2{letter-spacing:74.124800pt;}
.ws19{word-spacing:-352.000000pt;}
.ws16{word-spacing:-149.462133pt;}
.ws14{word-spacing:-103.961984pt;}
.ws1b{word-spacing:-74.112000pt;}
.ws1{word-spacing:-45.331840pt;}
.ws11{word-spacing:-30.297344pt;}
.ws1e{word-spacing:-26.197717pt;}
.ws1f{word-spacing:-26.069717pt;}
.ws3{word-spacing:-26.009984pt;}
.ws2{word-spacing:-25.984000pt;}
.wse{word-spacing:-11.952640pt;}
.ws17{word-spacing:-1.760000pt;}
.ws18{word-spacing:-1.743744pt;}
.ws12{word-spacing:-0.891179pt;}
.ws10{word-spacing:-0.842581pt;}
.wsb{word-spacing:-0.245333pt;}
.ws1a{word-spacing:-0.242965pt;}
.ws1d{word-spacing:-0.128128pt;}
.ws1c{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.178027pt;}
.wsf{word-spacing:0.242688pt;}
.wsa{word-spacing:0.327680pt;}
.ws13{word-spacing:0.381056pt;}
.ws9{word-spacing:1.062187pt;}
.wsc{word-spacing:1.116800pt;}
.wsd{word-spacing:1.440640pt;}
.ws6{word-spacing:43.861440pt;}
.ws7{word-spacing:43.919360pt;}
.ws5{word-spacing:43.962027pt;}
.ws8{word-spacing:44.167040pt;}
.ws4{word-spacing:44.283947pt;}
._5{margin-left:-4033.429333pt;}
._e{margin-left:-59.624640pt;}
._b{margin-left:-12.027947pt;}
._f{margin-left:-9.004693pt;}
._3{margin-left:-7.584000pt;}
._c{margin-left:-6.145536pt;}
._6{margin-left:-4.981333pt;}
._9{margin-left:-4.035413pt;}
._4{margin-left:-3.136000pt;}
._0{margin-left:-2.240000pt;}
._2{margin-left:-1.280000pt;}
._1{width:1.280000pt;}
._7{width:2.385920pt;}
._11{width:6.602667pt;}
._10{width:18.634667pt;}
._a{width:32.400000pt;}
._12{width:72.938667pt;}
._8{width:75.831040pt;}
._d{width:105.012437pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.fs3{font-size:96.128000pt;}
.fs1{font-size:128.000000pt;}
.fs7{font-size:128.128000pt;}
.fs8{font-size:149.120000pt;}
.fs9{font-size:149.248000pt;}
.fs5{font-size:234.880000pt;}
.fs0{font-size:320.000000pt;}
.fsd{font-size:352.000000pt;}
.fse{font-size:352.128000pt;}
.fsf{font-size:384.000000pt;}
.fsa{font-size:512.128000pt;}
.fsb{font-size:736.106667pt;}
.fsc{font-size:736.266667pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:104.160000pt;}
.y12{bottom:106.624000pt;}
.yd{bottom:132.704000pt;}
.y1b{bottom:178.973333pt;}
.y24{bottom:185.600000pt;}
.y6{bottom:204.453333pt;}
.y1a{bottom:207.773333pt;}
.y23{bottom:233.440000pt;}
.y18{bottom:235.680000pt;}
.yf{bottom:236.773333pt;}
.y1e{bottom:240.386667pt;}
.y5{bottom:243.653333pt;}
.yc{bottom:266.653333pt;}
.y4{bottom:269.573333pt;}
.y22{bottom:281.280000pt;}
.y16{bottom:281.506667pt;}
.y3{bottom:311.013333pt;}
.y14{bottom:313.373333pt;}
.y21{bottom:329.306667pt;}
.y1d{bottom:357.053333pt;}
.y20{bottom:377.146667pt;}
.y2{bottom:418.880000pt;}
.y15{bottom:419.773333pt;}
.y17{bottom:434.426667pt;}
.yb{bottom:447.840000pt;}
.y1c{bottom:452.093333pt;}
.y11{bottom:452.893333pt;}
.ye{bottom:457.306667pt;}
.y13{bottom:489.733333pt;}
.y10{bottom:493.253333pt;}
.y1f{bottom:499.680000pt;}
.y1{bottom:505.306667pt;}
.y8{bottom:596.413333pt;}
.y7{bottom:668.960000pt;}
.y9{bottom:669.626667pt;}
.ya{bottom:670.080000pt;}
.h7{height:51.031250pt;}
.h5{height:55.468750pt;}
.h3{height:83.203125pt;}
.h4{height:83.314062pt;}
.h8{height:108.187500pt;}
.h2{height:110.937500pt;}
.h9{height:111.048437pt;}
.hb{height:126.146625pt;}
.ha{height:129.242188pt;}
.h6{height:198.524062pt;}
.h1{height:270.468750pt;}
.h10{height:297.515625pt;}
.h11{height:297.623812pt;}
.h12{height:324.562500pt;}
.hc{height:432.858187pt;}
.hd{height:443.860937pt;}
.he{height:637.983073pt;}
.hf{height:638.121745pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x6{left:35.455981pt;}
.x4{left:97.599981pt;}
.xf{left:101.535981pt;}
.x17{left:118.399981pt;}
.xb{left:121.599981pt;}
.x18{left:128.671981pt;}
.x1{left:149.853314pt;}
.x11{left:206.973314pt;}
.x19{left:209.786648pt;}
.x13{left:214.013314pt;}
.x16{left:249.213314pt;}
.x12{left:375.813314pt;}
.x15{left:419.973314pt;}
.x10{left:424.933314pt;}
.x1a{left:441.733314pt;}
.x14{left:479.679981pt;}
.x2{left:488.159981pt;}
.x1b{left:574.693314pt;}
.xc{left:591.386648pt;}
.xe{left:607.039981pt;}
.xd{left:610.239981pt;}
.x9{left:839.933314pt;}
.xa{left:842.653314pt;}
.x8{left:849.346648pt;}
.x7{left:860.546648pt;}
.x3{left:1086.853314pt;}
.x5{left:1096.186648pt;}
}




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