
    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_8580e9301f94765bae87ef3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961000;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_3c6df0c1808610f54b797810.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.965000;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_59c7c6fb77798c65a05b50c8.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9ac87e6eeef6c5de131a0dce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978000;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_ef4665d2866937b2eb11bcce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.052734;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_dc00984be7efe879233ea670.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.907000;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_31eaa621a48f961b5d7572e3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.907000;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);}
.v2{vertical-align:-59.040000px;}
.v1{vertical-align:-43.920000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.276600px;}
.ls16{letter-spacing:-0.251400px;}
.lsf{letter-spacing:-0.209400px;}
.ls10{letter-spacing:-0.162600px;}
.ls17{letter-spacing:-0.139200px;}
.ls14{letter-spacing:-0.087600px;}
.lse{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.048960px;}
.ls11{letter-spacing:0.114600px;}
.ls3{letter-spacing:0.122400px;}
.ls9{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.145440px;}
.ls0{letter-spacing:0.172200px;}
.ls4{letter-spacing:0.187800px;}
.ls6{letter-spacing:0.190800px;}
.ls7{letter-spacing:0.213600px;}
.lsd{letter-spacing:0.251400px;}
.ls2{letter-spacing:11.692800px;}
.lsb{letter-spacing:64.224000px;}
.lsa{letter-spacing:75.988800px;}
.ls13{letter-spacing:113.940000px;}
.ls5{letter-spacing:140.388000px;}
.ls1{letter-spacing:148.704000px;}
.lsc{letter-spacing:148.716000px;}
.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;}
}
.wsd{word-spacing:-216.000000px;}
.ws16{word-spacing:-207.936000px;}
.ws13{word-spacing:-120.240000px;}
.ws0{word-spacing:-84.347400px;}
.wse{word-spacing:-76.456800px;}
.ws12{word-spacing:-69.120000px;}
.ws19{word-spacing:-61.768200px;}
.ws4{word-spacing:-61.704600px;}
.ws1{word-spacing:-61.689000px;}
.wsb{word-spacing:-61.631400px;}
.wsc{word-spacing:-61.565760px;}
.ws18{word-spacing:-61.516800px;}
.ws17{word-spacing:-61.377600px;}
.ws3{word-spacing:-53.949600px;}
.wsa{word-spacing:-53.867520px;}
.ws5{word-spacing:-53.827200px;}
.wsf{word-spacing:-53.739600px;}
.ws2{word-spacing:-53.664600px;}
.ws11{word-spacing:-53.550600px;}
.ws1a{word-spacing:-46.972800px;}
.ws15{word-spacing:-33.880800px;}
.ws14{word-spacing:-33.415800px;}
.ws7{word-spacing:-8.724096px;}
.ws9{word-spacing:-7.878528px;}
.ws6{word-spacing:-0.775008px;}
.ws8{word-spacing:-0.687744px;}
.ws1b{word-spacing:0.000000px;}
.ws10{word-spacing:15.069600px;}
._e{margin-left:-2.817504px;}
._0{margin-left:-1.322640px;}
._1{width:1.266000px;}
._6{width:2.283840px;}
._5{width:3.315360px;}
._2{width:10.720800px;}
._3{width:11.844480px;}
._9{width:13.947120px;}
._8{width:15.268320px;}
._17{width:19.227360px;}
._16{width:20.610000px;}
._15{width:27.230400px;}
._4{width:53.082720px;}
._1c{width:55.800480px;}
._1b{width:56.859600px;}
._b{width:62.713680px;}
._19{width:68.451120px;}
._18{width:78.395520px;}
._7{width:80.987040px;}
._12{width:82.806480px;}
._11{width:83.995680px;}
._c{width:113.523600px;}
._10{width:154.915680px;}
._1a{width:156.853200px;}
._f{width:162.685200px;}
._a{width:168.945120px;}
._14{width:177.640800px;}
._13{width:186.114000px;}
._d{width:204.722400px;}
.fc2{color:rgb(33,95,154);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(38,38,38);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(192,79,21);}
.fs6{font-size:120.240000px;}
.fs5{font-size:144.000000px;}
.fs4{font-size:157.680000px;}
.fs9{font-size:167.760000px;}
.fs2{font-size:192.240000px;}
.fs1{font-size:192.384000px;}
.fs8{font-size:210.240000px;}
.fs3{font-size:216.000000px;}
.fs0{font-size:264.240000px;}
.fs7{font-size:288.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:34.164000px;}
.y2d{bottom:90.036000px;}
.y2c{bottom:187.530000px;}
.y2b{bottom:245.130000px;}
.y2a{bottom:320.730000px;}
.y29{bottom:396.330000px;}
.y28{bottom:453.930000px;}
.y23{bottom:478.110000px;}
.y27{bottom:526.470000px;}
.y26{bottom:584.070000px;}
.y25{bottom:644.730000px;}
.y24{bottom:702.330000px;}
.y1a{bottom:789.990000px;}
.y21{bottom:793.470000px;}
.y19{bottom:847.590000px;}
.y35{bottom:859.065000px;}
.y34{bottom:909.465000px;}
.y18{bottom:914.190000px;}
.y33{bottom:959.865000px;}
.y17{bottom:977.550000px;}
.y32{bottom:1010.265000px;}
.y16{bottom:1051.350000px;}
.y31{bottom:1060.665000px;}
.y15{bottom:1110.210000px;}
.y30{bottom:1111.065000px;}
.y2f{bottom:1161.465000px;}
.y14{bottom:1182.750000px;}
.y13{bottom:1249.350000px;}
.y12{bottom:1315.950000px;}
.y11{bottom:1373.550000px;}
.y10{bottom:1440.180000px;}
.yf{bottom:1497.780000px;}
.ye{bottom:1564.380000px;}
.yd{bottom:1621.980000px;}
.yc{bottom:1681.560000px;}
.y1e{bottom:1768.425000px;}
.y22{bottom:1878.945000px;}
.y20{bottom:2252.775000px;}
.yb{bottom:2594.700000px;}
.ya{bottom:2652.300000px;}
.y9{bottom:2718.900000px;}
.y8{bottom:2776.530000px;}
.y7{bottom:2836.110000px;}
.y6{bottom:2892.630000px;}
.y5{bottom:2959.230000px;}
.y4{bottom:3016.830000px;}
.y3{bottom:3076.410000px;}
.y1d{bottom:3159.825000px;}
.y1f{bottom:3159.930000px;}
.y1c{bottom:3237.480000px;}
.y1b{bottom:3275.100000px;}
.y2{bottom:3332.670000px;}
.y1{bottom:3395.310000px;}
.h9{height:86.212080px;}
.h8{height:109.152000px;}
.hc{height:120.283920px;}
.hd{height:131.859360px;}
.h4{height:145.717920px;}
.h3{height:145.827072px;}
.h5{height:151.100640px;}
.h6{height:151.213824px;}
.ha{height:163.728000px;}
.h7{height:182.039062px;}
.h2{height:200.293920px;}
.hb{height:242.718750px;}
.h1{height:3574.500000px;}
.h0{height:3574.800000px;}
.w2{width:2527.199962px;}
.w0{width:2527.200000px;}
.w1{width:2527.500000px;}
.x0{left:0.000000px;}
.xd{left:136.367962px;}
.xe{left:138.815962px;}
.x1{left:140.363962px;}
.x4{left:142.127962px;}
.x6{left:144.899962px;}
.x2{left:148.247962px;}
.x9{left:166.034962px;}
.x5{left:196.124962px;}
.x3{left:202.244962px;}
.xa{left:780.509962px;}
.xb{left:1326.779962px;}
.x7{left:1328.324962px;}
.x8{left:1330.019962px;}
.xc{left:1380.779962px;}
.xf{left:1794.809962px;}
@media print{
.v2{vertical-align:-52.480000pt;}
.v1{vertical-align:-39.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.245867pt;}
.ls16{letter-spacing:-0.223467pt;}
.lsf{letter-spacing:-0.186133pt;}
.ls10{letter-spacing:-0.144533pt;}
.ls17{letter-spacing:-0.123733pt;}
.ls14{letter-spacing:-0.077867pt;}
.lse{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.043520pt;}
.ls11{letter-spacing:0.101867pt;}
.ls3{letter-spacing:0.108800pt;}
.ls9{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.129280pt;}
.ls0{letter-spacing:0.153067pt;}
.ls4{letter-spacing:0.166933pt;}
.ls6{letter-spacing:0.169600pt;}
.ls7{letter-spacing:0.189867pt;}
.lsd{letter-spacing:0.223467pt;}
.ls2{letter-spacing:10.393600pt;}
.lsb{letter-spacing:57.088000pt;}
.lsa{letter-spacing:67.545600pt;}
.ls13{letter-spacing:101.280000pt;}
.ls5{letter-spacing:124.789333pt;}
.ls1{letter-spacing:132.181333pt;}
.lsc{letter-spacing:132.192000pt;}
.wsd{word-spacing:-192.000000pt;}
.ws16{word-spacing:-184.832000pt;}
.ws13{word-spacing:-106.880000pt;}
.ws0{word-spacing:-74.975467pt;}
.wse{word-spacing:-67.961600pt;}
.ws12{word-spacing:-61.440000pt;}
.ws19{word-spacing:-54.905067pt;}
.ws4{word-spacing:-54.848533pt;}
.ws1{word-spacing:-54.834667pt;}
.wsb{word-spacing:-54.783467pt;}
.wsc{word-spacing:-54.725120pt;}
.ws18{word-spacing:-54.681600pt;}
.ws17{word-spacing:-54.557867pt;}
.ws3{word-spacing:-47.955200pt;}
.wsa{word-spacing:-47.882240pt;}
.ws5{word-spacing:-47.846400pt;}
.wsf{word-spacing:-47.768533pt;}
.ws2{word-spacing:-47.701867pt;}
.ws11{word-spacing:-47.600533pt;}
.ws1a{word-spacing:-41.753600pt;}
.ws15{word-spacing:-30.116267pt;}
.ws14{word-spacing:-29.702933pt;}
.ws7{word-spacing:-7.754752pt;}
.ws9{word-spacing:-7.003136pt;}
.ws6{word-spacing:-0.688896pt;}
.ws8{word-spacing:-0.611328pt;}
.ws1b{word-spacing:0.000000pt;}
.ws10{word-spacing:13.395200pt;}
._e{margin-left:-2.504448pt;}
._0{margin-left:-1.175680pt;}
._1{width:1.125333pt;}
._6{width:2.030080pt;}
._5{width:2.946987pt;}
._2{width:9.529600pt;}
._3{width:10.528427pt;}
._9{width:12.397440pt;}
._8{width:13.571840pt;}
._17{width:17.090987pt;}
._16{width:18.320000pt;}
._15{width:24.204800pt;}
._4{width:47.184640pt;}
._1c{width:49.600427pt;}
._1b{width:50.541867pt;}
._b{width:55.745493pt;}
._19{width:60.845440pt;}
._18{width:69.684907pt;}
._7{width:71.988480pt;}
._12{width:73.605760pt;}
._11{width:74.662827pt;}
._c{width:100.909867pt;}
._10{width:137.702827pt;}
._1a{width:139.425067pt;}
._f{width:144.609067pt;}
._a{width:150.173440pt;}
._14{width:157.902933pt;}
._13{width:165.434667pt;}
._d{width:181.975467pt;}
.fs6{font-size:106.880000pt;}
.fs5{font-size:128.000000pt;}
.fs4{font-size:140.160000pt;}
.fs9{font-size:149.120000pt;}
.fs2{font-size:170.880000pt;}
.fs1{font-size:171.008000pt;}
.fs8{font-size:186.880000pt;}
.fs3{font-size:192.000000pt;}
.fs0{font-size:234.880000pt;}
.fs7{font-size:256.000000pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:30.368000pt;}
.y2d{bottom:80.032000pt;}
.y2c{bottom:166.693333pt;}
.y2b{bottom:217.893333pt;}
.y2a{bottom:285.093333pt;}
.y29{bottom:352.293333pt;}
.y28{bottom:403.493333pt;}
.y23{bottom:424.986667pt;}
.y27{bottom:467.973333pt;}
.y26{bottom:519.173333pt;}
.y25{bottom:573.093333pt;}
.y24{bottom:624.293333pt;}
.y1a{bottom:702.213333pt;}
.y21{bottom:705.306667pt;}
.y19{bottom:753.413333pt;}
.y35{bottom:763.613333pt;}
.y34{bottom:808.413333pt;}
.y18{bottom:812.613333pt;}
.y33{bottom:853.213333pt;}
.y17{bottom:868.933333pt;}
.y32{bottom:898.013333pt;}
.y16{bottom:934.533333pt;}
.y31{bottom:942.813333pt;}
.y15{bottom:986.853333pt;}
.y30{bottom:987.613333pt;}
.y2f{bottom:1032.413333pt;}
.y14{bottom:1051.333333pt;}
.y13{bottom:1110.533333pt;}
.y12{bottom:1169.733333pt;}
.y11{bottom:1220.933333pt;}
.y10{bottom:1280.160000pt;}
.yf{bottom:1331.360000pt;}
.ye{bottom:1390.560000pt;}
.yd{bottom:1441.760000pt;}
.yc{bottom:1494.720000pt;}
.y1e{bottom:1571.933333pt;}
.y22{bottom:1670.173333pt;}
.y20{bottom:2002.466667pt;}
.yb{bottom:2306.400000pt;}
.ya{bottom:2357.600000pt;}
.y9{bottom:2416.800000pt;}
.y8{bottom:2468.026667pt;}
.y7{bottom:2520.986667pt;}
.y6{bottom:2571.226667pt;}
.y5{bottom:2630.426667pt;}
.y4{bottom:2681.626667pt;}
.y3{bottom:2734.586667pt;}
.y1d{bottom:2808.733333pt;}
.y1f{bottom:2808.826667pt;}
.y1c{bottom:2877.760000pt;}
.y1b{bottom:2911.200000pt;}
.y2{bottom:2962.373333pt;}
.y1{bottom:3018.053333pt;}
.h9{height:76.632960pt;}
.h8{height:97.024000pt;}
.hc{height:106.919040pt;}
.hd{height:117.208320pt;}
.h4{height:129.527040pt;}
.h3{height:129.624064pt;}
.h5{height:134.311680pt;}
.h6{height:134.412288pt;}
.ha{height:145.536000pt;}
.h7{height:161.812500pt;}
.h2{height:178.039040pt;}
.hb{height:215.750000pt;}
.h1{height:3177.333333pt;}
.h0{height:3177.600000pt;}
.w2{width:2246.399967pt;}
.w0{width:2246.400000pt;}
.w1{width:2246.666667pt;}
.x0{left:0.000000pt;}
.xd{left:121.215967pt;}
.xe{left:123.391967pt;}
.x1{left:124.767967pt;}
.x4{left:126.335967pt;}
.x6{left:128.799967pt;}
.x2{left:131.775967pt;}
.x9{left:147.586633pt;}
.x5{left:174.333300pt;}
.x3{left:179.773300pt;}
.xa{left:693.786633pt;}
.xb{left:1179.359967pt;}
.x7{left:1180.733300pt;}
.x8{left:1182.239967pt;}
.xc{left:1227.359967pt;}
.xf{left:1595.386633pt;}
}




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