
    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_5705668b0c5c12d68a3e0a20.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.996000;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_caa6dec8957503c6f07984ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.996000;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_5cdfd34cd71acfc149a302f7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909180;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_d967bcfddfb4ba75c5cfa92c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.713000;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_fa1c42ca27f3c9b22bf6201a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.680000;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_bb7d266e44e706f283342c78.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.992000;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.236239,0.000000,-0.081799,0.236239,0,0);-ms-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);-webkit-transform:matrix(0.236239,0.000000,-0.081799,0.236239,0,0);}
.m2{transform:matrix(0.244537,0.051978,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.051978,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.051978,-0.051978,0.244537,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:-73.824000px;}
.v4{vertical-align:-33.504000px;}
.v3{vertical-align:-16.500000px;}
.v5{vertical-align:-11.052000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:59.358000px;}
.v1{vertical-align:86.418000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.024396px;}
.ls2{letter-spacing:0.084000px;}
.ls5{letter-spacing:0.356802px;}
.ls4{letter-spacing:0.458544px;}
.ls1{letter-spacing:29.942802px;}
.ls3{letter-spacing:94.002000px;}
.ls6{letter-spacing:98.525544px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc2{text-shadow:-0.015em 0 rgb(56,118,29),0 0.015em rgb(56,118,29),0.015em 0 rgb(56,118,29),0 -0.015em  rgb(56,118,29);}
.sc1{text-shadow:-0.015em 0 rgb(204,0,0),0 0.015em rgb(204,0,0),0.015em 0 rgb(204,0,0),0 -0.015em  rgb(204,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(56,118,29);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(204,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-54.000000px;}
.ws3{word-spacing:-43.200000px;}
.ws1{word-spacing:-29.819178px;}
.ws0{word-spacing:-28.562400px;}
.ws5{word-spacing:-0.216000px;}
.ws4{word-spacing:-0.144054px;}
.ws6{word-spacing:0.000000px;}
._2{margin-left:-150.743178px;}
._0{margin-left:-1.439730px;}
._1{width:1.251108px;}
._3{width:1576.619460px;}
._4{width:5028.645900px;}
.fc2{color:rgb(56,118,29);}
.fc1{color:rgb(204,0,0);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:142.812000px;}
.fs6{font-size:144.054000px;}
.fs1{font-size:166.836000px;}
.fs5{font-size:216.000000px;}
.fs7{font-size:228.581843px;}
.fs3{font-size:245.934000px;}
.fs0{font-size:287.946000px;}
.fs4{font-size:540.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y56{bottom:157.876500px;}
.y55{bottom:186.237000px;}
.y40{bottom:231.562500px;}
.y54{bottom:232.200000px;}
.y42{bottom:236.367000px;}
.y53{bottom:272.637000px;}
.y3f{bottom:274.762500px;}
.y41{bottom:279.567000px;}
.y3e{bottom:317.962500px;}
.y52{bottom:318.600000px;}
.y51{bottom:427.450500px;}
.y50{bottom:492.250500px;}
.y31{bottom:547.483500px;}
.y4f{bottom:621.850500px;}
.y4e{bottom:686.650500px;}
.y4d{bottom:816.250500px;}
.y4c{bottom:881.050500px;}
.y30{bottom:908.646000px;}
.y38{bottom:961.030500px;}
.y37{bottom:1004.230500px;}
.y39{bottom:1010.949000px;}
.y34{bottom:1021.663500px;}
.y36{bottom:1050.492000px;}
.y33{bottom:1064.821500px;}
.y45{bottom:1070.094000px;}
.y2e{bottom:1071.283500px;}
.y35{bottom:1093.692000px;}
.y32{bottom:1108.021500px;}
.y44{bottom:1116.907500px;}
.y2d{bottom:1118.098500px;}
.y20{bottom:1119.969000px;}
.y1f{bottom:1163.169000px;}
.y43{bottom:1181.707500px;}
.y2c{bottom:1182.898500px;}
.y13{bottom:1321.938000px;}
.y12{bottom:1365.138000px;}
.y21{bottom:1382.740500px;}
.y11{bottom:1451.538000px;}
.y10{bottom:1494.738000px;}
.y16{bottom:1497.033000px;}
.yf{bottom:1537.938000px;}
.y15{bottom:1561.833000px;}
.y14{bottom:1626.633000px;}
.y3d{bottom:1650.487500px;}
.y3c{bottom:1715.287500px;}
.y3b{bottom:1780.087500px;}
.y3a{bottom:1844.887500px;}
.y1e{bottom:1871.802000px;}
.y1c{bottom:1874.778000px;}
.y1d{bottom:1936.602000px;}
.y1b{bottom:1939.578000px;}
.y48{bottom:1945.956000px;}
.y47{bottom:1989.156000px;}
.y2f{bottom:2018.367000px;}
.y46{bottom:2032.356000px;}
.yc{bottom:2264.301000px;}
.yb{bottom:2329.101000px;}
.ya{bottom:2393.901000px;}
.y9{bottom:2458.701000px;}
.y2b{bottom:2584.219500px;}
.y2a{bottom:2649.019500px;}
.y29{bottom:2713.819500px;}
.y28{bottom:2782.744500px;}
.y25{bottom:2832.322500px;}
.y27{bottom:2843.419500px;}
.y24{bottom:2897.122500px;}
.y26{bottom:2912.344500px;}
.y23{bottom:2961.922500px;}
.y22{bottom:3026.722500px;}
.y1a{bottom:3116.439000px;}
.ye{bottom:3156.109500px;}
.y19{bottom:3181.239000px;}
.yd{bottom:3199.309500px;}
.y18{bottom:3246.039000px;}
.y17{bottom:3310.839000px;}
.y49{bottom:3375.681000px;}
.y6{bottom:3475.546500px;}
.y5{bottom:3549.333000px;}
.y8{bottom:3559.450500px;}
.y58{bottom:3604.138500px;}
.y4{bottom:3606.775500px;}
.y57{bottom:3647.338500px;}
.y3{bottom:3693.175500px;}
.y7{bottom:3721.450500px;}
.y4b{bottom:3774.771000px;}
.y2{bottom:3779.575500px;}
.y4a{bottom:3817.971000px;}
.he{height:100.549692px;}
.hc{height:100.571088px;}
.h5{height:100.825272px;}
.h8{height:104.151042px;}
.h9{height:105.508301px;}
.hb{height:150.768000px;}
.h7{height:152.496000px;}
.ha{height:159.550127px;}
.hf{height:163.509042px;}
.hd{height:203.289876px;}
.h2{height:204.204216px;}
.h3{height:204.228216px;}
.h4{height:204.246216px;}
.h6{height:381.240000px;}
.h1{height:3887.956500px;}
.h0{height:3888.000000px;}
.w1{width:5183.956500px;}
.w0{width:5184.000000px;}
.x0{left:0.000000px;}
.x2{left:83.466000px;}
.x1b{left:240.789000px;}
.x1c{left:295.044000px;}
.x1a{left:308.565000px;}
.x2b{left:334.714500px;}
.x1e{left:338.116500px;}
.x1d{left:374.725500px;}
.x22{left:668.791500px;}
.x20{left:676.615500px;}
.x21{left:703.446000px;}
.x4{left:706.252500px;}
.x3{left:763.525500px;}
.x2f{left:1061.035500px;}
.x30{left:1096.582500px;}
.x2e{left:1128.813000px;}
.x36{left:1165.804500px;}
.x8{left:1245.997500px;}
.x29{left:1248.463500px;}
.x28{left:1257.817500px;}
.x7{left:1276.228500px;}
.x27{left:1301.272500px;}
.x2c{left:1437.165000px;}
.x23{left:1443.459000px;}
.x2a{left:1460.508000px;}
.x24{left:1510.257000px;}
.x2d{left:1543.804500px;}
.x5{left:1702.318500px;}
.x34{left:1714.564500px;}
.x6{left:1751.088000px;}
.x32{left:1760.953500px;}
.x33{left:1763.716500px;}
.x26{left:1789.824000px;}
.x31{left:1828.729500px;}
.x1f{left:1874.353500px;}
.x35{left:1881.070500px;}
.x25{left:2141.419500px;}
.x17{left:2564.149500px;}
.x9{left:2670.066000px;}
.x39{left:2697.534000px;}
.x3a{left:2706.591000px;}
.x3b{left:2751.534000px;}
.x1{left:2766.714000px;}
.x12{left:2849.712000px;}
.xe{left:3002.868000px;}
.xf{left:3050.745000px;}
.x14{left:3060.226500px;}
.xc{left:3228.094500px;}
.xa{left:3276.439500px;}
.xb{left:3350.934000px;}
.xd{left:3552.817500px;}
.x13{left:3938.173500px;}
.x15{left:4087.119000px;}
.x16{left:4113.397500px;}
.x10{left:4263.024000px;}
.x18{left:4426.597500px;}
.x3d{left:4440.288000px;}
.x11{left:4451.002500px;}
.x19{left:4480.554000px;}
.x38{left:4550.329500px;}
.x3c{left:4569.336000px;}
.x37{left:4620.954000px;}
@media print{
.v2{vertical-align:-65.621333pt;}
.v4{vertical-align:-29.781333pt;}
.v3{vertical-align:-14.666667pt;}
.v5{vertical-align:-9.824000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:52.762667pt;}
.v1{vertical-align:76.816000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.021685pt;}
.ls2{letter-spacing:0.074667pt;}
.ls5{letter-spacing:0.317157pt;}
.ls4{letter-spacing:0.407595pt;}
.ls1{letter-spacing:26.615824pt;}
.ls3{letter-spacing:83.557333pt;}
.ls6{letter-spacing:87.578261pt;}
.ws2{word-spacing:-48.000000pt;}
.ws3{word-spacing:-38.400000pt;}
.ws1{word-spacing:-26.505936pt;}
.ws0{word-spacing:-25.388800pt;}
.ws5{word-spacing:-0.192000pt;}
.ws4{word-spacing:-0.128048pt;}
.ws6{word-spacing:0.000000pt;}
._2{margin-left:-133.993936pt;}
._0{margin-left:-1.279760pt;}
._1{width:1.112096pt;}
._3{width:1401.439520pt;}
._4{width:4469.907467pt;}
.fs2{font-size:126.944000pt;}
.fs6{font-size:128.048000pt;}
.fs1{font-size:148.298667pt;}
.fs5{font-size:192.000000pt;}
.fs7{font-size:203.183861pt;}
.fs3{font-size:218.608000pt;}
.fs0{font-size:255.952000pt;}
.fs4{font-size:480.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y56{bottom:140.334667pt;}
.y55{bottom:165.544000pt;}
.y40{bottom:205.833333pt;}
.y54{bottom:206.400000pt;}
.y42{bottom:210.104000pt;}
.y53{bottom:242.344000pt;}
.y3f{bottom:244.233333pt;}
.y41{bottom:248.504000pt;}
.y3e{bottom:282.633333pt;}
.y52{bottom:283.200000pt;}
.y51{bottom:379.956000pt;}
.y50{bottom:437.556000pt;}
.y31{bottom:486.652000pt;}
.y4f{bottom:552.756000pt;}
.y4e{bottom:610.356000pt;}
.y4d{bottom:725.556000pt;}
.y4c{bottom:783.156000pt;}
.y30{bottom:807.685333pt;}
.y38{bottom:854.249333pt;}
.y37{bottom:892.649333pt;}
.y39{bottom:898.621333pt;}
.y34{bottom:908.145333pt;}
.y36{bottom:933.770667pt;}
.y33{bottom:946.508000pt;}
.y45{bottom:951.194667pt;}
.y2e{bottom:952.252000pt;}
.y35{bottom:972.170667pt;}
.y32{bottom:984.908000pt;}
.y44{bottom:992.806667pt;}
.y2d{bottom:993.865333pt;}
.y20{bottom:995.528000pt;}
.y1f{bottom:1033.928000pt;}
.y43{bottom:1050.406667pt;}
.y2c{bottom:1051.465333pt;}
.y13{bottom:1175.056000pt;}
.y12{bottom:1213.456000pt;}
.y21{bottom:1229.102667pt;}
.y11{bottom:1290.256000pt;}
.y10{bottom:1328.656000pt;}
.y16{bottom:1330.696000pt;}
.yf{bottom:1367.056000pt;}
.y15{bottom:1388.296000pt;}
.y14{bottom:1445.896000pt;}
.y3d{bottom:1467.100000pt;}
.y3c{bottom:1524.700000pt;}
.y3b{bottom:1582.300000pt;}
.y3a{bottom:1639.900000pt;}
.y1e{bottom:1663.824000pt;}
.y1c{bottom:1666.469333pt;}
.y1d{bottom:1721.424000pt;}
.y1b{bottom:1724.069333pt;}
.y48{bottom:1729.738667pt;}
.y47{bottom:1768.138667pt;}
.y2f{bottom:1794.104000pt;}
.y46{bottom:1806.538667pt;}
.yc{bottom:2012.712000pt;}
.yb{bottom:2070.312000pt;}
.ya{bottom:2127.912000pt;}
.y9{bottom:2185.512000pt;}
.y2b{bottom:2297.084000pt;}
.y2a{bottom:2354.684000pt;}
.y29{bottom:2412.284000pt;}
.y28{bottom:2473.550667pt;}
.y25{bottom:2517.620000pt;}
.y27{bottom:2527.484000pt;}
.y24{bottom:2575.220000pt;}
.y26{bottom:2588.750667pt;}
.y23{bottom:2632.820000pt;}
.y22{bottom:2690.420000pt;}
.y1a{bottom:2770.168000pt;}
.ye{bottom:2805.430667pt;}
.y19{bottom:2827.768000pt;}
.yd{bottom:2843.830667pt;}
.y18{bottom:2885.368000pt;}
.y17{bottom:2942.968000pt;}
.y49{bottom:3000.605333pt;}
.y6{bottom:3089.374667pt;}
.y5{bottom:3154.962667pt;}
.y8{bottom:3163.956000pt;}
.y58{bottom:3203.678667pt;}
.y4{bottom:3206.022667pt;}
.y57{bottom:3242.078667pt;}
.y3{bottom:3282.822667pt;}
.y7{bottom:3307.956000pt;}
.y4b{bottom:3355.352000pt;}
.y2{bottom:3359.622667pt;}
.y4a{bottom:3393.752000pt;}
.he{height:89.377504pt;}
.hc{height:89.396523pt;}
.h5{height:89.622464pt;}
.h8{height:92.578704pt;}
.h9{height:93.785156pt;}
.hb{height:134.016000pt;}
.h7{height:135.552000pt;}
.ha{height:141.822335pt;}
.hf{height:145.341371pt;}
.hd{height:180.702112pt;}
.h2{height:181.514859pt;}
.h3{height:181.536192pt;}
.h4{height:181.552192pt;}
.h6{height:338.880000pt;}
.h1{height:3455.961333pt;}
.h0{height:3456.000000pt;}
.w1{width:4607.961333pt;}
.w0{width:4608.000000pt;}
.x0{left:0.000000pt;}
.x2{left:74.192000pt;}
.x1b{left:214.034667pt;}
.x1c{left:262.261333pt;}
.x1a{left:274.280000pt;}
.x2b{left:297.524000pt;}
.x1e{left:300.548000pt;}
.x1d{left:333.089333pt;}
.x22{left:594.481333pt;}
.x20{left:601.436000pt;}
.x21{left:625.285333pt;}
.x4{left:627.780000pt;}
.x3{left:678.689333pt;}
.x2f{left:943.142667pt;}
.x30{left:974.740000pt;}
.x2e{left:1003.389333pt;}
.x36{left:1036.270667pt;}
.x8{left:1107.553333pt;}
.x29{left:1109.745333pt;}
.x28{left:1118.060000pt;}
.x7{left:1134.425333pt;}
.x27{left:1156.686667pt;}
.x2c{left:1277.480000pt;}
.x23{left:1283.074667pt;}
.x2a{left:1298.229333pt;}
.x24{left:1342.450667pt;}
.x2d{left:1372.270667pt;}
.x5{left:1513.172000pt;}
.x34{left:1524.057333pt;}
.x6{left:1556.522667pt;}
.x32{left:1565.292000pt;}
.x33{left:1567.748000pt;}
.x26{left:1590.954667pt;}
.x31{left:1625.537333pt;}
.x1f{left:1666.092000pt;}
.x35{left:1672.062667pt;}
.x25{left:1903.484000pt;}
.x17{left:2279.244000pt;}
.x9{left:2373.392000pt;}
.x39{left:2397.808000pt;}
.x3a{left:2405.858667pt;}
.x3b{left:2445.808000pt;}
.x1{left:2459.301333pt;}
.x12{left:2533.077333pt;}
.xe{left:2669.216000pt;}
.xf{left:2711.773333pt;}
.x14{left:2720.201333pt;}
.xc{left:2869.417333pt;}
.xa{left:2912.390667pt;}
.xb{left:2978.608000pt;}
.xd{left:3158.060000pt;}
.x13{left:3500.598667pt;}
.x15{left:3632.994667pt;}
.x16{left:3656.353333pt;}
.x10{left:3789.354667pt;}
.x18{left:3934.753333pt;}
.x3d{left:3946.922667pt;}
.x11{left:3956.446667pt;}
.x19{left:3982.714667pt;}
.x38{left:4044.737333pt;}
.x3c{left:4061.632000pt;}
.x37{left:4107.514667pt;}
}




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