
    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_1c77e68e434d3b1fe3430650.woff')format("woff");}.ff1{font-family:ff1;line-height:1.005371;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_cb85eca04e4fa1a10960f705.woff')format("woff");}.ff2{font-family:ff2;line-height:1.005371;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_15dbf06ffdc20dce84ad3ee0.woff')format("woff");}.ff3{font-family:ff3;line-height:0.850000;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);}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-2.640000px;}
.ls9{letter-spacing:-1.950000px;}
.ls16{letter-spacing:-1.926000px;}
.ls13{letter-spacing:-0.660000px;}
.lse{letter-spacing:-0.387600px;}
.ls15{letter-spacing:-0.303600px;}
.ls8{letter-spacing:-0.273000px;}
.ls17{letter-spacing:-0.268800px;}
.ls7{letter-spacing:-0.238800px;}
.ls12{letter-spacing:-0.180600px;}
.lsb{letter-spacing:-0.036000px;}
.lsc{letter-spacing:-0.000011px;}
.ls6{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.035280px;}
.ls14{letter-spacing:0.061200px;}
.lsf{letter-spacing:0.094800px;}
.ls10{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.126720px;}
.ls0{letter-spacing:0.162720px;}
.ls2{letter-spacing:0.166800px;}
.ls19{letter-spacing:0.178800px;}
.ls1{letter-spacing:0.228000px;}
.ls4{letter-spacing:0.245400px;}
.ls5{letter-spacing:0.278400px;}
.ls11{letter-spacing:0.288000px;}
.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:-71.735040px;}
.wsa{word-spacing:-62.337600px;}
.ws7{word-spacing:-46.800000px;}
.ws6{word-spacing:-39.104400px;}
.ws9{word-spacing:-38.975040px;}
.ws8{word-spacing:-38.937600px;}
.ws1a{word-spacing:-31.262400px;}
.ws18{word-spacing:-31.081800px;}
.ws2{word-spacing:-30.989400px;}
.ws25{word-spacing:-18.720000px;}
.ws4{word-spacing:-14.058000px;}
.ws5{word-spacing:-14.004000px;}
.ws12{word-spacing:-1.712160px;}
.wsd{word-spacing:-1.497840px;}
.ws1c{word-spacing:-1.439520px;}
.ws14{word-spacing:-1.406160px;}
.ws3{word-spacing:-1.351200px;}
.ws1b{word-spacing:-1.251600px;}
.ws22{word-spacing:-1.239840px;}
.ws1d{word-spacing:-1.222560px;}
.ws23{word-spacing:-1.020240px;}
.ws28{word-spacing:-0.997440px;}
.ws15{word-spacing:-0.990720px;}
.ws17{word-spacing:-0.616320px;}
.ws10{word-spacing:-0.593280px;}
.ws20{word-spacing:-0.429120px;}
.ws1e{word-spacing:-0.415800px;}
.wse{word-spacing:-0.309120px;}
.ws24{word-spacing:-0.277920px;}
.ws13{word-spacing:-0.270720px;}
.ws26{word-spacing:-0.267840px;}
.ws11{word-spacing:-0.213120px;}
.wsc{word-spacing:-0.179966px;}
.ws2b{word-spacing:-0.052560px;}
.ws2c{word-spacing:0.000000px;}
.ws19{word-spacing:0.130320px;}
.wsb{word-spacing:0.180000px;}
.ws1f{word-spacing:0.350640px;}
.ws29{word-spacing:0.368640px;}
.ws16{word-spacing:0.442080px;}
.ws27{word-spacing:0.502560px;}
.wsf{word-spacing:0.925920px;}
.ws1{word-spacing:1.724160px;}
.ws21{word-spacing:3.420000px;}
.ws2a{word-spacing:3.450240px;}
._0{margin-left:-5.793984px;}
._6{margin-left:-4.555440px;}
._4{margin-left:-2.995200px;}
._3{margin-left:-1.044000px;}
._1{width:1.654560px;}
._5{width:2.845440px;}
._8{width:28.554240px;}
._7{width:29.763360px;}
._2{width:74.024784px;}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs8{font-size:72.000000px;}
.fs2{font-size:120.240000px;}
.fs9{font-size:120.384000px;}
.fs4{font-size:149.760000px;}
.fs6{font-size:149.904000px;}
.fs5{font-size:180.000000px;}
.fs7{font-size:239.760000px;}
.fs1{font-size:275.760000px;}
.fs0{font-size:275.904000px;}
.y0{bottom:0.000000px;}
.ya{bottom:54.648000px;}
.y9{bottom:126.504000px;}
.y8{bottom:319.425000px;}
.y50{bottom:467.100000px;}
.y4f{bottom:512.100000px;}
.y37{bottom:524.955000px;}
.y4e{bottom:557.100000px;}
.y36{bottom:582.045000px;}
.y4d{bottom:602.100000px;}
.y35{bottom:618.045000px;}
.y4c{bottom:647.130000px;}
.y34{bottom:654.045000px;}
.y33{bottom:690.045000px;}
.y32{bottom:726.045000px;}
.y4b{bottom:741.420000px;}
.y31{bottom:762.045000px;}
.y55{bottom:763.125000px;}
.y4a{bottom:786.420000px;}
.y54{bottom:808.125000px;}
.y49{bottom:831.420000px;}
.y30{bottom:836.025000px;}
.y53{bottom:853.125000px;}
.y48{bottom:876.420000px;}
.y52{bottom:898.125000px;}
.y47{bottom:921.420000px;}
.y51{bottom:943.125000px;}
.y2f{bottom:953.385000px;}
.y2e{bottom:1010.445000px;}
.y2d{bottom:1046.445000px;}
.y2c{bottom:1082.445000px;}
.y2b{bottom:1118.445000px;}
.y2a{bottom:1154.445000px;}
.y29{bottom:1190.445000px;}
.y46{bottom:1194.915000px;}
.y41{bottom:1194.990000px;}
.y45{bottom:1239.915000px;}
.y40{bottom:1239.990000px;}
.y28{bottom:1264.470000px;}
.y44{bottom:1284.915000px;}
.y3f{bottom:1284.990000px;}
.y43{bottom:1329.915000px;}
.y3e{bottom:1329.990000px;}
.y27{bottom:1343.850000px;}
.y42{bottom:1374.915000px;}
.y3d{bottom:1374.990000px;}
.y26{bottom:1455.630000px;}
.y3c{bottom:1681.380000px;}
.y1c{bottom:1955.670000px;}
.y25{bottom:1986.330000px;}
.y1b{bottom:2000.670000px;}
.y24{bottom:2031.330000px;}
.y1a{bottom:2045.670000px;}
.y23{bottom:2076.330000px;}
.y19{bottom:2090.670000px;}
.y22{bottom:2121.330000px;}
.y7{bottom:2132.850000px;}
.y18{bottom:2135.670000px;}
.y12{bottom:2203.230000px;}
.y6{bottom:2215.650000px;}
.y11{bottom:2257.230000px;}
.y5{bottom:2298.450000px;}
.y4{bottom:2381.250000px;}
.y3{bottom:2464.050000px;}
.y2{bottom:2546.850000px;}
.y21{bottom:2601.900000px;}
.y1{bottom:2629.695000px;}
.y20{bottom:2646.900000px;}
.y17{bottom:2658.210000px;}
.y1f{bottom:2691.900000px;}
.y16{bottom:2703.210000px;}
.y1e{bottom:2736.900000px;}
.y15{bottom:2748.210000px;}
.y1d{bottom:2781.900000px;}
.y14{bottom:2793.210000px;}
.y13{bottom:2838.240000px;}
.y10{bottom:2849.730000px;}
.yd{bottom:2903.010000px;}
.yf{bottom:2903.730000px;}
.yc{bottom:2957.010000px;}
.ye{bottom:2957.730000px;}
.yb{bottom:3168.870000px;}
.y3b{bottom:3310.305000px;}
.y3a{bottom:3382.305000px;}
.y39{bottom:3418.305000px;}
.y38{bottom:3454.305000px;}
.h5{height:41.317383px;}
.hb{height:55.089844px;}
.h4{height:92.000039px;}
.hc{height:92.110219px;}
.h9{height:114.586875px;}
.h8{height:114.697055px;}
.h6{height:125.498880px;}
.h7{height:137.724609px;}
.ha{height:183.449180px;}
.h3{height:210.994102px;}
.h2{height:211.104281px;}
.h0{height:3575.880000px;}
.h1{height:3576.000000px;}
.w1{width:2525.250000px;}
.w2{width:2525.579962px;}
.w0{width:2525.580000px;}
.x0{left:0.000000px;}
.x7{left:84.203962px;}
.x8{left:90.359962px;}
.xd{left:109.619962px;}
.xb{left:111.995962px;}
.x24{left:167.654962px;}
.x26{left:173.594962px;}
.xf{left:188.999962px;}
.xe{left:194.654962px;}
.x25{left:211.934962px;}
.x27{left:220.214962px;}
.x21{left:329.504962px;}
.x20{left:331.304962px;}
.x22{left:332.384962px;}
.x1f{left:343.364962px;}
.x19{left:362.264962px;}
.x23{left:396.284962px;}
.x29{left:584.609962px;}
.x28{left:600.809962px;}
.x2a{left:624.929962px;}
.x2c{left:628.709962px;}
.x2b{left:634.469962px;}
.x1d{left:802.049962px;}
.x1e{left:819.869962px;}
.x1c{left:845.429962px;}
.x1b{left:856.589962px;}
.x1a{left:886.829962px;}
.x5{left:899.819962px;}
.x2f{left:947.804962px;}
.x2e{left:964.004962px;}
.x30{left:966.884962px;}
.x3{left:981.029962px;}
.x4{left:987.509962px;}
.x31{left:1007.204962px;}
.x2{left:1031.969962px;}
.x2d{left:1034.204962px;}
.x6{left:1060.229962px;}
.x1{left:1117.289962px;}
.x14{left:1521.824962px;}
.x16{left:1581.374962px;}
.x13{left:1624.064962px;}
.xa{left:1719.719962px;}
.x18{left:1725.374962px;}
.x12{left:1836.329962px;}
.x15{left:1860.374962px;}
.x9{left:1888.709962px;}
.x17{left:1924.994962px;}
.x10{left:1965.164962px;}
.x11{left:1967.249962px;}
.xc{left:2047.139962px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-2.346667pt;}
.ls9{letter-spacing:-1.733333pt;}
.ls16{letter-spacing:-1.712000pt;}
.ls13{letter-spacing:-0.586667pt;}
.lse{letter-spacing:-0.344533pt;}
.ls15{letter-spacing:-0.269867pt;}
.ls8{letter-spacing:-0.242667pt;}
.ls17{letter-spacing:-0.238933pt;}
.ls7{letter-spacing:-0.212267pt;}
.ls12{letter-spacing:-0.160533pt;}
.lsb{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:-0.000010pt;}
.ls6{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.031360pt;}
.ls14{letter-spacing:0.054400pt;}
.lsf{letter-spacing:0.084267pt;}
.ls10{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.112640pt;}
.ls0{letter-spacing:0.144640pt;}
.ls2{letter-spacing:0.148267pt;}
.ls19{letter-spacing:0.158933pt;}
.ls1{letter-spacing:0.202667pt;}
.ls4{letter-spacing:0.218133pt;}
.ls5{letter-spacing:0.247467pt;}
.ls11{letter-spacing:0.256000pt;}
.ws0{word-spacing:-63.764480pt;}
.wsa{word-spacing:-55.411200pt;}
.ws7{word-spacing:-41.600000pt;}
.ws6{word-spacing:-34.759467pt;}
.ws9{word-spacing:-34.644480pt;}
.ws8{word-spacing:-34.611200pt;}
.ws1a{word-spacing:-27.788800pt;}
.ws18{word-spacing:-27.628267pt;}
.ws2{word-spacing:-27.546133pt;}
.ws25{word-spacing:-16.640000pt;}
.ws4{word-spacing:-12.496000pt;}
.ws5{word-spacing:-12.448000pt;}
.ws12{word-spacing:-1.521920pt;}
.wsd{word-spacing:-1.331413pt;}
.ws1c{word-spacing:-1.279573pt;}
.ws14{word-spacing:-1.249920pt;}
.ws3{word-spacing:-1.201067pt;}
.ws1b{word-spacing:-1.112533pt;}
.ws22{word-spacing:-1.102080pt;}
.ws1d{word-spacing:-1.086720pt;}
.ws23{word-spacing:-0.906880pt;}
.ws28{word-spacing:-0.886613pt;}
.ws15{word-spacing:-0.880640pt;}
.ws17{word-spacing:-0.547840pt;}
.ws10{word-spacing:-0.527360pt;}
.ws20{word-spacing:-0.381440pt;}
.ws1e{word-spacing:-0.369600pt;}
.wse{word-spacing:-0.274773pt;}
.ws24{word-spacing:-0.247040pt;}
.ws13{word-spacing:-0.240640pt;}
.ws26{word-spacing:-0.238080pt;}
.ws11{word-spacing:-0.189440pt;}
.wsc{word-spacing:-0.159969pt;}
.ws2b{word-spacing:-0.046720pt;}
.ws2c{word-spacing:0.000000pt;}
.ws19{word-spacing:0.115840pt;}
.wsb{word-spacing:0.160000pt;}
.ws1f{word-spacing:0.311680pt;}
.ws29{word-spacing:0.327680pt;}
.ws16{word-spacing:0.392960pt;}
.ws27{word-spacing:0.446720pt;}
.wsf{word-spacing:0.823040pt;}
.ws1{word-spacing:1.532587pt;}
.ws21{word-spacing:3.040000pt;}
.ws2a{word-spacing:3.066880pt;}
._0{margin-left:-5.150208pt;}
._6{margin-left:-4.049280pt;}
._4{margin-left:-2.662400pt;}
._3{margin-left:-0.928000pt;}
._1{width:1.470720pt;}
._5{width:2.529280pt;}
._8{width:25.381547pt;}
._7{width:26.456320pt;}
._2{width:65.799808pt;}
.fs3{font-size:48.000000pt;}
.fs8{font-size:64.000000pt;}
.fs2{font-size:106.880000pt;}
.fs9{font-size:107.008000pt;}
.fs4{font-size:133.120000pt;}
.fs6{font-size:133.248000pt;}
.fs5{font-size:160.000000pt;}
.fs7{font-size:213.120000pt;}
.fs1{font-size:245.120000pt;}
.fs0{font-size:245.248000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:48.576000pt;}
.y9{bottom:112.448000pt;}
.y8{bottom:283.933333pt;}
.y50{bottom:415.200000pt;}
.y4f{bottom:455.200000pt;}
.y37{bottom:466.626667pt;}
.y4e{bottom:495.200000pt;}
.y36{bottom:517.373333pt;}
.y4d{bottom:535.200000pt;}
.y35{bottom:549.373333pt;}
.y4c{bottom:575.226667pt;}
.y34{bottom:581.373333pt;}
.y33{bottom:613.373333pt;}
.y32{bottom:645.373333pt;}
.y4b{bottom:659.040000pt;}
.y31{bottom:677.373333pt;}
.y55{bottom:678.333333pt;}
.y4a{bottom:699.040000pt;}
.y54{bottom:718.333333pt;}
.y49{bottom:739.040000pt;}
.y30{bottom:743.133333pt;}
.y53{bottom:758.333333pt;}
.y48{bottom:779.040000pt;}
.y52{bottom:798.333333pt;}
.y47{bottom:819.040000pt;}
.y51{bottom:838.333333pt;}
.y2f{bottom:847.453333pt;}
.y2e{bottom:898.173333pt;}
.y2d{bottom:930.173333pt;}
.y2c{bottom:962.173333pt;}
.y2b{bottom:994.173333pt;}
.y2a{bottom:1026.173333pt;}
.y29{bottom:1058.173333pt;}
.y46{bottom:1062.146667pt;}
.y41{bottom:1062.213333pt;}
.y45{bottom:1102.146667pt;}
.y40{bottom:1102.213333pt;}
.y28{bottom:1123.973333pt;}
.y44{bottom:1142.146667pt;}
.y3f{bottom:1142.213333pt;}
.y43{bottom:1182.146667pt;}
.y3e{bottom:1182.213333pt;}
.y27{bottom:1194.533333pt;}
.y42{bottom:1222.146667pt;}
.y3d{bottom:1222.213333pt;}
.y26{bottom:1293.893333pt;}
.y3c{bottom:1494.560000pt;}
.y1c{bottom:1738.373333pt;}
.y25{bottom:1765.626667pt;}
.y1b{bottom:1778.373333pt;}
.y24{bottom:1805.626667pt;}
.y1a{bottom:1818.373333pt;}
.y23{bottom:1845.626667pt;}
.y19{bottom:1858.373333pt;}
.y22{bottom:1885.626667pt;}
.y7{bottom:1895.866667pt;}
.y18{bottom:1898.373333pt;}
.y12{bottom:1958.426667pt;}
.y6{bottom:1969.466667pt;}
.y11{bottom:2006.426667pt;}
.y5{bottom:2043.066667pt;}
.y4{bottom:2116.666667pt;}
.y3{bottom:2190.266667pt;}
.y2{bottom:2263.866667pt;}
.y21{bottom:2312.800000pt;}
.y1{bottom:2337.506667pt;}
.y20{bottom:2352.800000pt;}
.y17{bottom:2362.853333pt;}
.y1f{bottom:2392.800000pt;}
.y16{bottom:2402.853333pt;}
.y1e{bottom:2432.800000pt;}
.y15{bottom:2442.853333pt;}
.y1d{bottom:2472.800000pt;}
.y14{bottom:2482.853333pt;}
.y13{bottom:2522.880000pt;}
.y10{bottom:2533.093333pt;}
.yd{bottom:2580.453333pt;}
.yf{bottom:2581.093333pt;}
.yc{bottom:2628.453333pt;}
.ye{bottom:2629.093333pt;}
.yb{bottom:2816.773333pt;}
.y3b{bottom:2942.493333pt;}
.y3a{bottom:3006.493333pt;}
.y39{bottom:3038.493333pt;}
.y38{bottom:3070.493333pt;}
.h5{height:36.726562pt;}
.hb{height:48.968750pt;}
.h4{height:81.777812pt;}
.hc{height:81.875750pt;}
.h9{height:101.855000pt;}
.h8{height:101.952937pt;}
.h6{height:111.554560pt;}
.h7{height:122.421875pt;}
.ha{height:163.065937pt;}
.h3{height:187.550312pt;}
.h2{height:187.648250pt;}
.h0{height:3178.560000pt;}
.h1{height:3178.666667pt;}
.w1{width:2244.666667pt;}
.w2{width:2244.959967pt;}
.w0{width:2244.960000pt;}
.x0{left:0.000000pt;}
.x7{left:74.847967pt;}
.x8{left:80.319967pt;}
.xd{left:97.439967pt;}
.xb{left:99.551967pt;}
.x24{left:149.026633pt;}
.x26{left:154.306633pt;}
.xf{left:167.999967pt;}
.xe{left:173.026633pt;}
.x25{left:188.386633pt;}
.x27{left:195.746633pt;}
.x21{left:292.893300pt;}
.x20{left:294.493300pt;}
.x22{left:295.453300pt;}
.x1f{left:305.213300pt;}
.x19{left:322.013300pt;}
.x23{left:352.253300pt;}
.x29{left:519.653300pt;}
.x28{left:534.053300pt;}
.x2a{left:555.493300pt;}
.x2c{left:558.853300pt;}
.x2b{left:563.973300pt;}
.x1d{left:712.933300pt;}
.x1e{left:728.773300pt;}
.x1c{left:751.493300pt;}
.x1b{left:761.413300pt;}
.x1a{left:788.293300pt;}
.x5{left:799.839967pt;}
.x2f{left:842.493300pt;}
.x2e{left:856.893300pt;}
.x30{left:859.453300pt;}
.x3{left:872.026633pt;}
.x4{left:877.786633pt;}
.x31{left:895.293300pt;}
.x2{left:917.306633pt;}
.x2d{left:919.293300pt;}
.x6{left:942.426633pt;}
.x1{left:993.146633pt;}
.x14{left:1352.733300pt;}
.x16{left:1405.666633pt;}
.x13{left:1443.613300pt;}
.xa{left:1528.639967pt;}
.x18{left:1533.666633pt;}
.x12{left:1632.293300pt;}
.x15{left:1653.666633pt;}
.x9{left:1678.853300pt;}
.x17{left:1711.106633pt;}
.x10{left:1746.813300pt;}
.x11{left:1748.666633pt;}
.xc{left:1819.679967pt;}
}




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