
    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_400abe7e77a0710433acf2ef.woff')format("woff");}.ff1{font-family:ff1;line-height:1.469727;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_ae4dce51094cc7f70a940ed6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.947266;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_df8d7b0e8dd4ecbd16cb6e4f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.469727;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_3f8b31b6a794f47dbd41d7dd.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_997ff7acd2cf2ace279dc189.woff')format("woff");}.ff5{font-family:ff5;line-height:0.947266;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_0a1a40d8c3c6e1010c125829.woff')format("woff");}.ff6{font-family:ff6;line-height:1.537598;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_2c9a0c731079246c37e74444.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8b31fb4a0e2068c04975a966.woff')format("woff");}.ff8{font-family:ff8;line-height:1.537598;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);}
.v2{vertical-align:-103.080000px;}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000001px;}
.ls0{letter-spacing:0.015840px;}
.lsa{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.108000px;}
.lsd{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.648000px;}
.lsf{letter-spacing:0.720000px;}
.lsb{letter-spacing:7.128000px;}
.lsc{letter-spacing:149.688000px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws6{word-spacing:-20.448000px;}
.ws0{word-spacing:-20.232001px;}
.ws1{word-spacing:-20.232000px;}
.ws2{word-spacing:-20.160000px;}
.ws7{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.440000px;}
.ws8{word-spacing:-18.792000px;}
.ws3{word-spacing:-17.784000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:8.424000px;}
._8{margin-left:-6.404640px;}
._2{margin-left:-4.680000px;}
._4{margin-left:-3.012480px;}
._1{margin-left:-1.684800px;}
._0{width:1.314720px;}
._5{width:2.479680px;}
._6{width:3.859200px;}
._7{width:5.472000px;}
._10{width:6.734880px;}
._f{width:8.136000px;}
._e{width:9.144000px;}
._3{width:10.690560px;}
._c{width:12.178080px;}
._1f{width:13.723200px;}
._15{width:15.884640px;}
._1d{width:17.520000px;}
._d{width:18.795360px;}
._12{width:21.816000px;}
._13{width:22.816800px;}
._1a{width:24.133920px;}
._14{width:26.064000px;}
._1e{width:28.232640px;}
._16{width:30.024000px;}
._9{width:32.184000px;}
._a{width:34.282080px;}
._11{width:35.462880px;}
._b{width:36.577920px;}
._17{width:38.160000px;}
._21{width:61.782720px;}
._20{width:63.000000px;}
._18{width:66.765600px;}
._19{width:68.234400px;}
._1c{width:81.558720px;}
._1b{width:82.774080px;}
.fc2{color:transparent;}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.960000px;}
.y2{bottom:4.320000px;}
.y5{bottom:25.380000px;}
.y4{bottom:47.010000px;}
.y2f{bottom:58.500000px;}
.y3{bottom:68.430000px;}
.y2e{bottom:78.660000px;}
.y2d{bottom:119.880000px;}
.y7b{bottom:127.800000px;}
.y56{bottom:129.960000px;}
.y2c{bottom:145.620000px;}
.y7a{bottom:153.720000px;}
.y55{bottom:155.880000px;}
.y2b{bottom:171.540000px;}
.y79{bottom:179.460000px;}
.y54{bottom:181.620000px;}
.y2a{bottom:197.280000px;}
.y78{bottom:205.380000px;}
.y53{bottom:207.540000px;}
.y29{bottom:223.230000px;}
.y77{bottom:231.150000px;}
.y52{bottom:233.310000px;}
.y28{bottom:248.970000px;}
.y76{bottom:257.070000px;}
.y51{bottom:259.230000px;}
.y27{bottom:274.890000px;}
.y75{bottom:282.810000px;}
.y50{bottom:284.970000px;}
.y26{bottom:300.630000px;}
.y74{bottom:308.730000px;}
.y4f{bottom:310.710000px;}
.y25{bottom:326.370000px;}
.y73{bottom:334.470000px;}
.y4e{bottom:336.630000px;}
.y24{bottom:352.290000px;}
.y72{bottom:360.210000px;}
.y4d{bottom:362.370000px;}
.y23{bottom:378.030000px;}
.y71{bottom:386.130000px;}
.y4c{bottom:388.290000px;}
.y22{bottom:403.950000px;}
.y70{bottom:411.870000px;}
.y4b{bottom:414.030000px;}
.y21{bottom:429.690000px;}
.y6f{bottom:437.790000px;}
.y4a{bottom:439.950000px;}
.y20{bottom:455.655000px;}
.y6e{bottom:463.575000px;}
.y49{bottom:465.735000px;}
.y1f{bottom:481.395000px;}
.y6d{bottom:489.495000px;}
.y7d{bottom:491.115000px;}
.y48{bottom:491.655000px;}
.y1e{bottom:507.315000px;}
.y7c{bottom:515.235000px;}
.y47{bottom:517.395000px;}
.y1d{bottom:533.055000px;}
.y6c{bottom:541.155000px;}
.y46{bottom:543.315000px;}
.y1c{bottom:558.975000px;}
.y6b{bottom:566.895000px;}
.y45{bottom:569.055000px;}
.y1b{bottom:584.715000px;}
.y6a{bottom:592.815000px;}
.y44{bottom:594.975000px;}
.y1a{bottom:610.455000px;}
.y69{bottom:618.555000px;}
.y43{bottom:620.715000px;}
.y19{bottom:636.375000px;}
.y68{bottom:644.295000px;}
.y42{bottom:646.455000px;}
.y18{bottom:662.115000px;}
.y67{bottom:670.215000px;}
.y17{bottom:688.065000px;}
.y66{bottom:695.985000px;}
.y41{bottom:698.145000px;}
.y16{bottom:713.805000px;}
.y65{bottom:721.905000px;}
.y40{bottom:724.065000px;}
.y15{bottom:739.725000px;}
.y64{bottom:747.645000px;}
.y3f{bottom:749.805000px;}
.y14{bottom:765.465000px;}
.y63{bottom:773.565000px;}
.y3e{bottom:775.725000px;}
.y13{bottom:791.385000px;}
.y62{bottom:799.305000px;}
.y3d{bottom:801.465000px;}
.y12{bottom:817.125000px;}
.y61{bottom:825.225000px;}
.y3c{bottom:827.385000px;}
.y11{bottom:843.045000px;}
.y60{bottom:850.965000px;}
.y3b{bottom:853.125000px;}
.y10{bottom:868.785000px;}
.y5f{bottom:876.885000px;}
.y3a{bottom:879.045000px;}
.yf{bottom:894.525000px;}
.y5e{bottom:902.625000px;}
.y39{bottom:904.785000px;}
.ye{bottom:920.490000px;}
.y5d{bottom:928.590000px;}
.y38{bottom:930.570000px;}
.yd{bottom:946.230000px;}
.y5c{bottom:954.330000px;}
.y37{bottom:956.490000px;}
.yc{bottom:972.150000px;}
.y5b{bottom:980.070000px;}
.y36{bottom:982.230000px;}
.yb{bottom:997.890000px;}
.y5a{bottom:1005.990000px;}
.y35{bottom:1008.150000px;}
.ya{bottom:1023.810000px;}
.y59{bottom:1031.730000px;}
.y34{bottom:1033.890000px;}
.y9{bottom:1049.550000px;}
.y58{bottom:1057.650000px;}
.y33{bottom:1059.810000px;}
.y8{bottom:1076.190000px;}
.y57{bottom:1083.390000px;}
.y32{bottom:1085.190000px;}
.y7{bottom:1105.530000px;}
.y31{bottom:1109.310000px;}
.y1{bottom:1122.450000px;}
.y30{bottom:1135.050000px;}
.h4{height:42.514805px;}
.hc{height:47.124844px;}
.h9{height:51.222656px;}
.h6{height:57.410156px;}
.h7{height:59.930508px;}
.h3{height:61.131445px;}
.h5{height:62.402344px;}
.hb{height:67.760156px;}
.h8{height:73.652344px;}
.ha{height:76.324219px;}
.h2{height:86.076000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:50.796000px;}
.w4{width:329.655000px;}
.w2{width:331.950000px;}
.w5{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.130000px;}
.x1{left:106.416000px;}
.x6{left:148.895987px;}
.x2{left:176.799000px;}
.x8{left:191.369987px;}
.x3{left:438.375000px;}
.x5{left:489.165000px;}
.x7{left:778.109987px;}
@media print{
.v2{vertical-align:-91.626667pt;}
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000001pt;}
.ls0{letter-spacing:0.014080pt;}
.lsa{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.096000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.576000pt;}
.lsf{letter-spacing:0.640000pt;}
.lsb{letter-spacing:6.336000pt;}
.lsc{letter-spacing:133.056000pt;}
.ws5{word-spacing:-58.880000pt;}
.ws6{word-spacing:-18.176000pt;}
.ws0{word-spacing:-17.984001pt;}
.ws1{word-spacing:-17.984000pt;}
.ws2{word-spacing:-17.920000pt;}
.ws7{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.280000pt;}
.ws8{word-spacing:-16.704000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:7.488000pt;}
._8{margin-left:-5.693013pt;}
._2{margin-left:-4.160000pt;}
._4{margin-left:-2.677760pt;}
._1{margin-left:-1.497600pt;}
._0{width:1.168640pt;}
._5{width:2.204160pt;}
._6{width:3.430400pt;}
._7{width:4.864000pt;}
._10{width:5.986560pt;}
._f{width:7.232000pt;}
._e{width:8.128000pt;}
._3{width:9.502720pt;}
._c{width:10.824960pt;}
._1f{width:12.198400pt;}
._15{width:14.119680pt;}
._1d{width:15.573333pt;}
._d{width:16.706987pt;}
._12{width:19.392000pt;}
._13{width:20.281600pt;}
._1a{width:21.452373pt;}
._14{width:23.168000pt;}
._1e{width:25.095680pt;}
._16{width:26.688000pt;}
._9{width:28.608000pt;}
._a{width:30.472960pt;}
._11{width:31.522560pt;}
._b{width:32.513707pt;}
._17{width:33.920000pt;}
._21{width:54.917973pt;}
._20{width:56.000000pt;}
._18{width:59.347200pt;}
._19{width:60.652800pt;}
._1c{width:72.496640pt;}
._1b{width:73.576960pt;}
.fs4{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.520000pt;}
.y2{bottom:3.840000pt;}
.y5{bottom:22.560000pt;}
.y4{bottom:41.786667pt;}
.y2f{bottom:52.000000pt;}
.y3{bottom:60.826667pt;}
.y2e{bottom:69.920000pt;}
.y2d{bottom:106.560000pt;}
.y7b{bottom:113.600000pt;}
.y56{bottom:115.520000pt;}
.y2c{bottom:129.440000pt;}
.y7a{bottom:136.640000pt;}
.y55{bottom:138.560000pt;}
.y2b{bottom:152.480000pt;}
.y79{bottom:159.520000pt;}
.y54{bottom:161.440000pt;}
.y2a{bottom:175.360000pt;}
.y78{bottom:182.560000pt;}
.y53{bottom:184.480000pt;}
.y29{bottom:198.426667pt;}
.y77{bottom:205.466667pt;}
.y52{bottom:207.386667pt;}
.y28{bottom:221.306667pt;}
.y76{bottom:228.506667pt;}
.y51{bottom:230.426667pt;}
.y27{bottom:244.346667pt;}
.y75{bottom:251.386667pt;}
.y50{bottom:253.306667pt;}
.y26{bottom:267.226667pt;}
.y74{bottom:274.426667pt;}
.y4f{bottom:276.186667pt;}
.y25{bottom:290.106667pt;}
.y73{bottom:297.306667pt;}
.y4e{bottom:299.226667pt;}
.y24{bottom:313.146667pt;}
.y72{bottom:320.186667pt;}
.y4d{bottom:322.106667pt;}
.y23{bottom:336.026667pt;}
.y71{bottom:343.226667pt;}
.y4c{bottom:345.146667pt;}
.y22{bottom:359.066667pt;}
.y70{bottom:366.106667pt;}
.y4b{bottom:368.026667pt;}
.y21{bottom:381.946667pt;}
.y6f{bottom:389.146667pt;}
.y4a{bottom:391.066667pt;}
.y20{bottom:405.026667pt;}
.y6e{bottom:412.066667pt;}
.y49{bottom:413.986667pt;}
.y1f{bottom:427.906667pt;}
.y6d{bottom:435.106667pt;}
.y7d{bottom:436.546667pt;}
.y48{bottom:437.026667pt;}
.y1e{bottom:450.946667pt;}
.y7c{bottom:457.986667pt;}
.y47{bottom:459.906667pt;}
.y1d{bottom:473.826667pt;}
.y6c{bottom:481.026667pt;}
.y46{bottom:482.946667pt;}
.y1c{bottom:496.866667pt;}
.y6b{bottom:503.906667pt;}
.y45{bottom:505.826667pt;}
.y1b{bottom:519.746667pt;}
.y6a{bottom:526.946667pt;}
.y44{bottom:528.866667pt;}
.y1a{bottom:542.626667pt;}
.y69{bottom:549.826667pt;}
.y43{bottom:551.746667pt;}
.y19{bottom:565.666667pt;}
.y68{bottom:572.706667pt;}
.y42{bottom:574.626667pt;}
.y18{bottom:588.546667pt;}
.y67{bottom:595.746667pt;}
.y17{bottom:611.613333pt;}
.y66{bottom:618.653333pt;}
.y41{bottom:620.573333pt;}
.y16{bottom:634.493333pt;}
.y65{bottom:641.693333pt;}
.y40{bottom:643.613333pt;}
.y15{bottom:657.533333pt;}
.y64{bottom:664.573333pt;}
.y3f{bottom:666.493333pt;}
.y14{bottom:680.413333pt;}
.y63{bottom:687.613333pt;}
.y3e{bottom:689.533333pt;}
.y13{bottom:703.453333pt;}
.y62{bottom:710.493333pt;}
.y3d{bottom:712.413333pt;}
.y12{bottom:726.333333pt;}
.y61{bottom:733.533333pt;}
.y3c{bottom:735.453333pt;}
.y11{bottom:749.373333pt;}
.y60{bottom:756.413333pt;}
.y3b{bottom:758.333333pt;}
.y10{bottom:772.253333pt;}
.y5f{bottom:779.453333pt;}
.y3a{bottom:781.373333pt;}
.yf{bottom:795.133333pt;}
.y5e{bottom:802.333333pt;}
.y39{bottom:804.253333pt;}
.ye{bottom:818.213333pt;}
.y5d{bottom:825.413333pt;}
.y38{bottom:827.173333pt;}
.yd{bottom:841.093333pt;}
.y5c{bottom:848.293333pt;}
.y37{bottom:850.213333pt;}
.yc{bottom:864.133333pt;}
.y5b{bottom:871.173333pt;}
.y36{bottom:873.093333pt;}
.yb{bottom:887.013333pt;}
.y5a{bottom:894.213333pt;}
.y35{bottom:896.133333pt;}
.ya{bottom:910.053333pt;}
.y59{bottom:917.093333pt;}
.y34{bottom:919.013333pt;}
.y9{bottom:932.933333pt;}
.y58{bottom:940.133333pt;}
.y33{bottom:942.053333pt;}
.y8{bottom:956.613333pt;}
.y57{bottom:963.013333pt;}
.y32{bottom:964.613333pt;}
.y7{bottom:982.693333pt;}
.y31{bottom:986.053333pt;}
.y1{bottom:997.733333pt;}
.y30{bottom:1008.933333pt;}
.h4{height:37.790937pt;}
.hc{height:41.888750pt;}
.h9{height:45.531250pt;}
.h6{height:51.031250pt;}
.h7{height:53.271562pt;}
.h3{height:54.339063pt;}
.h5{height:55.468750pt;}
.hb{height:60.231250pt;}
.h8{height:65.468750pt;}
.ha{height:67.843750pt;}
.h2{height:76.512000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:45.152000pt;}
.w4{width:293.026667pt;}
.w2{width:295.066667pt;}
.w5{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.226667pt;}
.x1{left:94.592000pt;}
.x6{left:132.351988pt;}
.x2{left:157.154667pt;}
.x8{left:170.106655pt;}
.x3{left:389.666667pt;}
.x5{left:434.813333pt;}
.x7{left:691.653322pt;}
}




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