
    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_0870dd4f0b35c54b15b7915a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_9e5c3030ed2e06133b085638.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_88fe8cd986bd408a0da8a1d9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_7d3204c78adf9acb55183cad.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_8685e1cc4eb4e83940a4836b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_0c276646d0e575fa3fcca5b6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_4901bdd38a5d8c39ce561d36.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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);}
.v1{vertical-align:-84.240000px;}
.v2{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.000003px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.106800px;}
.ls5{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls4{letter-spacing:0.720000px;}
.lsb{letter-spacing:21.024000px;}
.ls8{letter-spacing:33.120000px;}
.lsa{letter-spacing:57.024000px;}
.ls0{letter-spacing:128.136000px;}
.ls1{letter-spacing:514.260000px;}
.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;}
}
.ws1{word-spacing:-18.288000px;}
.ws9{word-spacing:-18.216000px;}
.ws6{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.999997px;}
.wsa{word-spacing:-17.784000px;}
.ws4{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.046800px;}
.ws2{word-spacing:-14.940000px;}
.ws3{word-spacing:0.000000px;}
._1b{margin-left:-2.160000px;}
._6{margin-left:-1.104000px;}
._5{width:1.116000px;}
._10{width:2.160000px;}
._13{width:3.552000px;}
._f{width:4.584000px;}
._9{width:5.760000px;}
._12{width:7.656000px;}
._7{width:9.144000px;}
._15{width:10.200000px;}
._c{width:11.760000px;}
._b{width:13.320000px;}
._4{width:14.400000px;}
._8{width:15.912000px;}
._11{width:16.992000px;}
._16{width:18.160080px;}
._1a{width:19.356000px;}
._18{width:20.388000px;}
._17{width:21.528000px;}
._19{width:23.088000px;}
._1e{width:24.456000px;}
._a{width:26.136000px;}
._14{width:27.156000px;}
._d{width:28.224000px;}
._e{width:29.520000px;}
._1d{width:30.636000px;}
._1c{width:42.984000px;}
._3{width:190.200000px;}
._0{width:774.228000px;}
._2{width:906.132000px;}
._1{width:1008.300000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:57.420000px;}
.y39{bottom:109.800000px;}
.y38{bottom:115.020000px;}
.y43{bottom:126.000000px;}
.y70{bottom:126.540000px;}
.y37{bottom:127.080000px;}
.y41{bottom:132.300000px;}
.y36{bottom:144.360000px;}
.y40{bottom:145.080000px;}
.y74{bottom:146.340000px;}
.y42{bottom:146.700000px;}
.y6f{bottom:147.240000px;}
.y35{bottom:161.670000px;}
.y34{bottom:166.890000px;}
.y3f{bottom:167.430000px;}
.y6e{bottom:167.970000px;}
.y33{bottom:179.670000px;}
.y71{bottom:187.770000px;}
.y3e{bottom:188.130000px;}
.y6d{bottom:188.670000px;}
.y73{bottom:208.470000px;}
.y32{bottom:208.830000px;}
.y6c{bottom:209.370000px;}
.y31{bottom:229.530000px;}
.y6b{bottom:230.070000px;}
.y30{bottom:250.230000px;}
.y6a{bottom:250.770000px;}
.y2f{bottom:270.930000px;}
.y69{bottom:271.470000px;}
.y2e{bottom:291.630000px;}
.y68{bottom:292.170000px;}
.y2d{bottom:312.330000px;}
.y67{bottom:312.870000px;}
.y2c{bottom:333.030000px;}
.y66{bottom:333.570000px;}
.y2b{bottom:353.730000px;}
.y65{bottom:354.270000px;}
.y3c{bottom:360.570000px;}
.y2a{bottom:374.430000px;}
.y64{bottom:374.970000px;}
.y29{bottom:395.130000px;}
.y63{bottom:395.670000px;}
.y27{bottom:415.875000px;}
.y62{bottom:416.415000px;}
.y28{bottom:422.715000px;}
.y72{bottom:436.215000px;}
.y26{bottom:436.575000px;}
.y61{bottom:437.115000px;}
.y25{bottom:457.275000px;}
.y60{bottom:457.815000px;}
.y24{bottom:477.975000px;}
.y5f{bottom:478.515000px;}
.y23{bottom:498.675000px;}
.y5e{bottom:499.215000px;}
.y22{bottom:519.375000px;}
.y5d{bottom:519.915000px;}
.y21{bottom:540.075000px;}
.y5c{bottom:540.615000px;}
.y20{bottom:560.775000px;}
.y5b{bottom:561.315000px;}
.y1f{bottom:581.475000px;}
.y5a{bottom:582.015000px;}
.y1e{bottom:602.175000px;}
.y59{bottom:602.715000px;}
.y1d{bottom:622.875000px;}
.y58{bottom:623.415000px;}
.y1c{bottom:643.575000px;}
.y57{bottom:644.115000px;}
.y1b{bottom:664.305000px;}
.y56{bottom:664.845000px;}
.y1a{bottom:685.005000px;}
.y55{bottom:685.365000px;}
.y19{bottom:705.705000px;}
.y54{bottom:706.065000px;}
.y18{bottom:726.405000px;}
.y53{bottom:726.765000px;}
.y17{bottom:747.105000px;}
.y52{bottom:747.465000px;}
.y16{bottom:767.805000px;}
.y51{bottom:768.165000px;}
.y15{bottom:788.505000px;}
.y50{bottom:788.865000px;}
.y14{bottom:809.205000px;}
.y4f{bottom:809.565000px;}
.y77{bottom:829.545000px;}
.y13{bottom:829.905000px;}
.y4e{bottom:830.265000px;}
.y76{bottom:850.245000px;}
.y12{bottom:850.605000px;}
.y4d{bottom:850.965000px;}
.y75{bottom:870.945000px;}
.y11{bottom:871.305000px;}
.y4c{bottom:871.665000px;}
.y10{bottom:892.005000px;}
.y4b{bottom:892.365000px;}
.yf{bottom:912.750000px;}
.y4a{bottom:913.110000px;}
.ye{bottom:933.450000px;}
.y49{bottom:933.810000px;}
.yd{bottom:954.150000px;}
.y48{bottom:954.510000px;}
.yc{bottom:974.850000px;}
.y47{bottom:975.210000px;}
.yb{bottom:995.550000px;}
.y46{bottom:995.910000px;}
.y3d{bottom:1002.390000px;}
.ya{bottom:1016.250000px;}
.y45{bottom:1016.610000px;}
.y9{bottom:1023.090000px;}
.y44{bottom:1032.990000px;}
.y8{bottom:1036.950000px;}
.y7{bottom:1057.290000px;}
.y3b{bottom:1057.650000px;}
.y3a{bottom:1078.350000px;}
.y6{bottom:1099.050000px;}
.y79{bottom:1119.390000px;}
.y5{bottom:1119.750000px;}
.y78{bottom:1140.090000px;}
.y4{bottom:1140.480000px;}
.y2{bottom:1172.880000px;}
.y1{bottom:1193.580000px;}
.h8{height:38.158594px;}
.h7{height:47.321367px;}
.h5{height:47.344922px;}
.h9{height:58.651172px;}
.h6{height:64.546875px;}
.ha{height:70.628906px;}
.h2{height:70.664062px;}
.h3{height:72.562500px;}
.hb{height:74.004654px;}
.h4{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.656000px;}
.xb{left:132.516000px;}
.x7{left:136.116000px;}
.x10{left:148.896000px;}
.x12{left:180.750000px;}
.xe{left:194.047500px;}
.xf{left:200.190000px;}
.xc{left:210.067500px;}
.xd{left:216.210000px;}
.x3{left:233.850000px;}
.xa{left:343.695000px;}
.x6{left:345.495000px;}
.x8{left:350.152500px;}
.x9{left:356.295000px;}
.x11{left:371.055000px;}
.x2{left:375.555000px;}
.x4{left:519.922500px;}
.x5{left:526.065000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v2{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.000003pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.094933pt;}
.ls5{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsb{letter-spacing:18.688000pt;}
.ls8{letter-spacing:29.440000pt;}
.lsa{letter-spacing:50.688000pt;}
.ls0{letter-spacing:113.898667pt;}
.ls1{letter-spacing:457.120000pt;}
.ws1{word-spacing:-16.256000pt;}
.ws9{word-spacing:-16.192000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.999997pt;}
.wsa{word-spacing:-15.808000pt;}
.ws4{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.374933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws3{word-spacing:0.000000pt;}
._1b{margin-left:-1.920000pt;}
._6{margin-left:-0.981333pt;}
._5{width:0.992000pt;}
._10{width:1.920000pt;}
._13{width:3.157333pt;}
._f{width:4.074667pt;}
._9{width:5.120000pt;}
._12{width:6.805333pt;}
._7{width:8.128000pt;}
._15{width:9.066667pt;}
._c{width:10.453333pt;}
._b{width:11.840000pt;}
._4{width:12.800000pt;}
._8{width:14.144000pt;}
._11{width:15.104000pt;}
._16{width:16.142293pt;}
._1a{width:17.205333pt;}
._18{width:18.122667pt;}
._17{width:19.136000pt;}
._19{width:20.522667pt;}
._1e{width:21.738667pt;}
._a{width:23.232000pt;}
._14{width:24.138667pt;}
._d{width:25.088000pt;}
._e{width:26.240000pt;}
._1d{width:27.232000pt;}
._1c{width:38.208000pt;}
._3{width:169.066667pt;}
._0{width:688.202667pt;}
._2{width:805.450667pt;}
._1{width:896.266667pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.040000pt;}
.y39{bottom:97.600000pt;}
.y38{bottom:102.240000pt;}
.y43{bottom:112.000000pt;}
.y70{bottom:112.480000pt;}
.y37{bottom:112.960000pt;}
.y41{bottom:117.600000pt;}
.y36{bottom:128.320000pt;}
.y40{bottom:128.960000pt;}
.y74{bottom:130.080000pt;}
.y42{bottom:130.400000pt;}
.y6f{bottom:130.880000pt;}
.y35{bottom:143.706667pt;}
.y34{bottom:148.346667pt;}
.y3f{bottom:148.826667pt;}
.y6e{bottom:149.306667pt;}
.y33{bottom:159.706667pt;}
.y71{bottom:166.906667pt;}
.y3e{bottom:167.226667pt;}
.y6d{bottom:167.706667pt;}
.y73{bottom:185.306667pt;}
.y32{bottom:185.626667pt;}
.y6c{bottom:186.106667pt;}
.y31{bottom:204.026667pt;}
.y6b{bottom:204.506667pt;}
.y30{bottom:222.426667pt;}
.y6a{bottom:222.906667pt;}
.y2f{bottom:240.826667pt;}
.y69{bottom:241.306667pt;}
.y2e{bottom:259.226667pt;}
.y68{bottom:259.706667pt;}
.y2d{bottom:277.626667pt;}
.y67{bottom:278.106667pt;}
.y2c{bottom:296.026667pt;}
.y66{bottom:296.506667pt;}
.y2b{bottom:314.426667pt;}
.y65{bottom:314.906667pt;}
.y3c{bottom:320.506667pt;}
.y2a{bottom:332.826667pt;}
.y64{bottom:333.306667pt;}
.y29{bottom:351.226667pt;}
.y63{bottom:351.706667pt;}
.y27{bottom:369.666667pt;}
.y62{bottom:370.146667pt;}
.y28{bottom:375.746667pt;}
.y72{bottom:387.746667pt;}
.y26{bottom:388.066667pt;}
.y61{bottom:388.546667pt;}
.y25{bottom:406.466667pt;}
.y60{bottom:406.946667pt;}
.y24{bottom:424.866667pt;}
.y5f{bottom:425.346667pt;}
.y23{bottom:443.266667pt;}
.y5e{bottom:443.746667pt;}
.y22{bottom:461.666667pt;}
.y5d{bottom:462.146667pt;}
.y21{bottom:480.066667pt;}
.y5c{bottom:480.546667pt;}
.y20{bottom:498.466667pt;}
.y5b{bottom:498.946667pt;}
.y1f{bottom:516.866667pt;}
.y5a{bottom:517.346667pt;}
.y1e{bottom:535.266667pt;}
.y59{bottom:535.746667pt;}
.y1d{bottom:553.666667pt;}
.y58{bottom:554.146667pt;}
.y1c{bottom:572.066667pt;}
.y57{bottom:572.546667pt;}
.y1b{bottom:590.493333pt;}
.y56{bottom:590.973333pt;}
.y1a{bottom:608.893333pt;}
.y55{bottom:609.213333pt;}
.y19{bottom:627.293333pt;}
.y54{bottom:627.613333pt;}
.y18{bottom:645.693333pt;}
.y53{bottom:646.013333pt;}
.y17{bottom:664.093333pt;}
.y52{bottom:664.413333pt;}
.y16{bottom:682.493333pt;}
.y51{bottom:682.813333pt;}
.y15{bottom:700.893333pt;}
.y50{bottom:701.213333pt;}
.y14{bottom:719.293333pt;}
.y4f{bottom:719.613333pt;}
.y77{bottom:737.373333pt;}
.y13{bottom:737.693333pt;}
.y4e{bottom:738.013333pt;}
.y76{bottom:755.773333pt;}
.y12{bottom:756.093333pt;}
.y4d{bottom:756.413333pt;}
.y75{bottom:774.173333pt;}
.y11{bottom:774.493333pt;}
.y4c{bottom:774.813333pt;}
.y10{bottom:792.893333pt;}
.y4b{bottom:793.213333pt;}
.yf{bottom:811.333333pt;}
.y4a{bottom:811.653333pt;}
.ye{bottom:829.733333pt;}
.y49{bottom:830.053333pt;}
.yd{bottom:848.133333pt;}
.y48{bottom:848.453333pt;}
.yc{bottom:866.533333pt;}
.y47{bottom:866.853333pt;}
.yb{bottom:884.933333pt;}
.y46{bottom:885.253333pt;}
.y3d{bottom:891.013333pt;}
.ya{bottom:903.333333pt;}
.y45{bottom:903.653333pt;}
.y9{bottom:909.413333pt;}
.y44{bottom:918.213333pt;}
.y8{bottom:921.733333pt;}
.y7{bottom:939.813333pt;}
.y3b{bottom:940.133333pt;}
.y3a{bottom:958.533333pt;}
.y6{bottom:976.933333pt;}
.y79{bottom:995.013333pt;}
.y5{bottom:995.333333pt;}
.y78{bottom:1013.413333pt;}
.y4{bottom:1013.760000pt;}
.y2{bottom:1042.560000pt;}
.y1{bottom:1060.960000pt;}
.h8{height:33.918750pt;}
.h7{height:42.063437pt;}
.h5{height:42.084375pt;}
.h9{height:52.134375pt;}
.h6{height:57.375000pt;}
.ha{height:62.781250pt;}
.h2{height:62.812500pt;}
.h3{height:64.500000pt;}
.hb{height:65.781915pt;}
.h4{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.472000pt;}
.xb{left:117.792000pt;}
.x7{left:120.992000pt;}
.x10{left:132.352000pt;}
.x12{left:160.666667pt;}
.xe{left:172.486667pt;}
.xf{left:177.946667pt;}
.xc{left:186.726667pt;}
.xd{left:192.186667pt;}
.x3{left:207.866667pt;}
.xa{left:305.506667pt;}
.x6{left:307.106667pt;}
.x8{left:311.246667pt;}
.x9{left:316.706667pt;}
.x11{left:329.826667pt;}
.x2{left:333.826667pt;}
.x4{left:462.153333pt;}
.x5{left:467.613333pt;}
}




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