
    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_311aae8df997aad224b2a0ca.woff')format("woff");}.ff1{font-family:ff1;line-height:0.863770;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_a6d90a61c3f3aa0e3cab169a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856934;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_de95e934c9f5bdd9bbdfc82b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.689453;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_bf470b654937817bdc9a751c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895996;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_33a7f275b72213c7b4d6c4cf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942000;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_5372de6ffbb8612d3a5608e8.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_226d2c4d33343de2493cd135.woff')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m2{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(0.250578,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250578,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:6.989642px;}
.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;}
}
.ws2{word-spacing:-54.540000px;}
.ws0{word-spacing:-24.408000px;}
.ws15{word-spacing:-5.544000px;}
.wsb{word-spacing:-3.927000px;}
.wsc{word-spacing:-3.696000px;}
.ws1{word-spacing:-0.231000px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:1.386000px;}
.ws13{word-spacing:2.541000px;}
.ws5{word-spacing:3.003000px;}
.ws4{word-spacing:3.234000px;}
.ws19{word-spacing:4.620000px;}
.ws7{word-spacing:4.851000px;}
.ws18{word-spacing:5.313000px;}
.wsa{word-spacing:7.623000px;}
.ws9{word-spacing:8.085000px;}
.ws12{word-spacing:10.626000px;}
.ws11{word-spacing:11.088000px;}
.ws14{word-spacing:12.705000px;}
.ws16{word-spacing:25.410000px;}
.wsf{word-spacing:31.185000px;}
.ws8{word-spacing:32.340000px;}
.ws6{word-spacing:37.884000px;}
.wse{word-spacing:44.814000px;}
.wsd{word-spacing:57.519000px;}
.ws17{word-spacing:71.379000px;}
._3{margin-left:-32.913964px;}
._2{margin-left:-23.562026px;}
._0{margin-left:-21.011497px;}
._12{margin-left:-18.154370px;}
._11{margin-left:-16.945865px;}
._10{margin-left:-15.767104px;}
._1{margin-left:-12.145374px;}
._d{margin-left:-9.660000px;}
._c{margin-left:-8.016000px;}
._7{margin-left:-6.989642px;}
._4{margin-left:-4.933865px;}
._a{margin-left:-3.289243px;}
._e{margin-left:-2.255295px;}
._b{margin-left:-1.233466px;}
._8{width:1.233466px;}
._f{width:3.289243px;}
._9{width:4.933865px;}
._5{width:6.989642px;}
._6{width:9.045419px;}
.fc1{color:transparent;}
.fc0{color:rgb(4,6,6);}
.fs5{font-size:108.000000px;}
.fs4{font-size:120.000000px;}
.fs7{font-size:231.000000px;}
.fs3{font-size:236.784000px;}
.fs8{font-size:270.000000px;}
.fs9{font-size:330.000000px;}
.fs1{font-size:411.155400px;}
.fs6{font-size:420.000000px;}
.fs2{font-size:480.000000px;}
.fs0{font-size:1214.537400px;}
.y34{bottom:-0.001650px;}
.y0{bottom:0.000000px;}
.y12{bottom:9.375600px;}
.yf{bottom:9.375750px;}
.yb{bottom:18.499350px;}
.y9{bottom:20.666400px;}
.y7{bottom:37.500150px;}
.y13{bottom:86.403150px;}
.y2{bottom:106.004250px;}
.y5{bottom:113.673450px;}
.y11{bottom:122.403150px;}
.y4{bottom:137.855850px;}
.y10{bottom:158.403000px;}
.ye{bottom:194.403000px;}
.yc{bottom:243.796500px;}
.yd{bottom:253.572000px;}
.y8{bottom:315.796500px;}
.ya{bottom:325.572000px;}
.y6{bottom:405.931500px;}
.y14{bottom:676.560000px;}
.y29{bottom:699.274200px;}
.y2d{bottom:711.385200px;}
.y28{bottom:768.574200px;}
.y2c{bottom:810.385200px;}
.y27{bottom:849.574500px;}
.y2b{bottom:909.385200px;}
.y26{bottom:918.874500px;}
.y2a{bottom:1008.385200px;}
.y32{bottom:1155.480150px;}
.y31{bottom:1224.780150px;}
.y30{bottom:1294.080150px;}
.y2f{bottom:1363.380150px;}
.y2e{bottom:1432.680150px;}
.y25{bottom:1609.403250px;}
.y33{bottom:1908.885000px;}
.y24{bottom:2420.041050px;}
.y23{bottom:2489.341050px;}
.y22{bottom:2558.641050px;}
.y21{bottom:2627.941050px;}
.y20{bottom:2697.241050px;}
.y1f{bottom:2766.541050px;}
.y1e{bottom:2835.841050px;}
.y1d{bottom:2905.141050px;}
.y1c{bottom:3043.740900px;}
.y1b{bottom:3248.234550px;}
.y1a{bottom:3317.534550px;}
.y19{bottom:3386.834550px;}
.y18{bottom:3456.134550px;}
.y17{bottom:3525.434550px;}
.y16{bottom:3594.734550px;}
.y15{bottom:3664.034850px;}
.y3{bottom:3690.432000px;}
.y1{bottom:3860.280000px;}
.hd{height:33.852000px;}
.h10{height:33.852600px;}
.hf{height:33.853350px;}
.ha{height:66.798000px;}
.h8{height:68.964000px;}
.h12{height:77.519531px;}
.he{height:86.132812px;}
.h6{height:135.409500px;}
.h9{height:160.939125px;}
.hb{height:161.054742px;}
.hc{height:162.326531px;}
.h14{height:166.551000px;}
.h16{height:194.670000px;}
.h4{height:210.987000px;}
.h17{height:237.930000px;}
.h18{height:270.675000px;}
.h5{height:281.866300px;}
.h15{height:285.468750px;}
.h13{height:302.820000px;}
.h7{height:326.484375px;}
.h2{height:353.745000px;}
.h11{height:413.595000px;}
.h3{height:832.622319px;}
.h1{height:4251.750000px;}
.h0{height:4251.975000px;}
.w8{width:15.261000px;}
.w6{width:30.003000px;}
.wf{width:30.466500px;}
.we{width:218.202750px;}
.wc{width:342.099750px;}
.w5{width:346.880250px;}
.wa{width:361.881000px;}
.w4{width:439.980000px;}
.w7{width:448.651500px;}
.w9{width:450.068250px;}
.wb{width:694.526250px;}
.wd{width:983.202750px;}
.w2{width:2784.036150px;}
.w3{width:2946.070500px;}
.w0{width:2976.375000px;}
.w1{width:2976.750000px;}
.x0{left:0.000000px;}
.x10{left:22.029600px;}
.x2{left:30.304500px;}
.x1{left:99.413850px;}
.x3{left:111.271950px;}
.x12{left:115.243650px;}
.x11{left:128.365050px;}
.x6{left:133.187250px;}
.xe{left:137.279250px;}
.x5{left:305.808000px;}
.x7{left:480.504000px;}
.x8{left:510.504000px;}
.x19{left:544.477500px;}
.xf{left:548.319000px;}
.xb{left:583.296000px;}
.xc{left:613.296000px;}
.x16{left:703.699800px;}
.x15{left:721.519800px;}
.x18{left:735.297300px;}
.x17{left:871.092300px;}
.x9{left:959.184000px;}
.xd{left:975.204000px;}
.xa{left:989.196000px;}
.x14{left:1662.914850px;}
.x13{left:1687.723350px;}
.x4{left:2418.423600px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:6.213015pt;}
.ws2{word-spacing:-48.480000pt;}
.ws0{word-spacing:-21.696000pt;}
.ws15{word-spacing:-4.928000pt;}
.wsb{word-spacing:-3.490667pt;}
.wsc{word-spacing:-3.285333pt;}
.ws1{word-spacing:-0.205333pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:1.232000pt;}
.ws13{word-spacing:2.258667pt;}
.ws5{word-spacing:2.669333pt;}
.ws4{word-spacing:2.874667pt;}
.ws19{word-spacing:4.106667pt;}
.ws7{word-spacing:4.312000pt;}
.ws18{word-spacing:4.722667pt;}
.wsa{word-spacing:6.776000pt;}
.ws9{word-spacing:7.186667pt;}
.ws12{word-spacing:9.445333pt;}
.ws11{word-spacing:9.856000pt;}
.ws14{word-spacing:11.293333pt;}
.ws16{word-spacing:22.586667pt;}
.wsf{word-spacing:27.720000pt;}
.ws8{word-spacing:28.746667pt;}
.ws6{word-spacing:33.674667pt;}
.wse{word-spacing:39.834667pt;}
.wsd{word-spacing:51.128000pt;}
.ws17{word-spacing:63.448000pt;}
._3{margin-left:-29.256856pt;}
._2{margin-left:-20.944023pt;}
._0{margin-left:-18.676886pt;}
._12{margin-left:-16.137218pt;}
._11{margin-left:-15.062991pt;}
._10{margin-left:-14.015203pt;}
._1{margin-left:-10.795888pt;}
._d{margin-left:-8.586667pt;}
._c{margin-left:-7.125333pt;}
._7{margin-left:-6.213015pt;}
._4{margin-left:-4.385658pt;}
._a{margin-left:-2.923772pt;}
._e{margin-left:-2.004707pt;}
._b{margin-left:-1.096414pt;}
._8{width:1.096414pt;}
._f{width:2.923772pt;}
._9{width:4.385658pt;}
._5{width:6.213015pt;}
._6{width:8.040372pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.666667pt;}
.fs7{font-size:205.333333pt;}
.fs3{font-size:210.474667pt;}
.fs8{font-size:240.000000pt;}
.fs9{font-size:293.333333pt;}
.fs1{font-size:365.471467pt;}
.fs6{font-size:373.333333pt;}
.fs2{font-size:426.666667pt;}
.fs0{font-size:1079.588800pt;}
.y34{bottom:-0.001467pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:8.333867pt;}
.yf{bottom:8.334000pt;}
.yb{bottom:16.443867pt;}
.y9{bottom:18.370133pt;}
.y7{bottom:33.333467pt;}
.y13{bottom:76.802800pt;}
.y2{bottom:94.226000pt;}
.y5{bottom:101.043067pt;}
.y11{bottom:108.802800pt;}
.y4{bottom:122.538533pt;}
.y10{bottom:140.802667pt;}
.ye{bottom:172.802667pt;}
.yc{bottom:216.708000pt;}
.yd{bottom:225.397333pt;}
.y8{bottom:280.708000pt;}
.ya{bottom:289.397333pt;}
.y6{bottom:360.828000pt;}
.y14{bottom:601.386667pt;}
.y29{bottom:621.577067pt;}
.y2d{bottom:632.342400pt;}
.y28{bottom:683.177067pt;}
.y2c{bottom:720.342400pt;}
.y27{bottom:755.177333pt;}
.y2b{bottom:808.342400pt;}
.y26{bottom:816.777333pt;}
.y2a{bottom:896.342400pt;}
.y32{bottom:1027.093467pt;}
.y31{bottom:1088.693467pt;}
.y30{bottom:1150.293467pt;}
.y2f{bottom:1211.893467pt;}
.y2e{bottom:1273.493467pt;}
.y25{bottom:1430.580667pt;}
.y33{bottom:1696.786667pt;}
.y24{bottom:2151.147600pt;}
.y23{bottom:2212.747600pt;}
.y22{bottom:2274.347600pt;}
.y21{bottom:2335.947600pt;}
.y20{bottom:2397.547600pt;}
.y1f{bottom:2459.147600pt;}
.y1e{bottom:2520.747600pt;}
.y1d{bottom:2582.347600pt;}
.y1c{bottom:2705.547467pt;}
.y1b{bottom:2887.319600pt;}
.y1a{bottom:2948.919600pt;}
.y19{bottom:3010.519600pt;}
.y18{bottom:3072.119600pt;}
.y17{bottom:3133.719600pt;}
.y16{bottom:3195.319600pt;}
.y15{bottom:3256.919867pt;}
.y3{bottom:3280.384000pt;}
.y1{bottom:3431.360000pt;}
.hd{height:30.090667pt;}
.h10{height:30.091200pt;}
.hf{height:30.091867pt;}
.ha{height:59.376000pt;}
.h8{height:61.301333pt;}
.h12{height:68.906250pt;}
.he{height:76.562500pt;}
.h6{height:120.364000pt;}
.h9{height:143.057000pt;}
.hb{height:143.159771pt;}
.hc{height:144.290250pt;}
.h14{height:148.045333pt;}
.h16{height:173.040000pt;}
.h4{height:187.544000pt;}
.h17{height:211.493333pt;}
.h18{height:240.600000pt;}
.h5{height:250.547822pt;}
.h15{height:253.750000pt;}
.h13{height:269.173333pt;}
.h7{height:290.208333pt;}
.h2{height:314.440000pt;}
.h11{height:367.640000pt;}
.h3{height:740.108728pt;}
.h1{height:3779.333333pt;}
.h0{height:3779.533333pt;}
.w8{width:13.565333pt;}
.w6{width:26.669333pt;}
.wf{width:27.081333pt;}
.we{width:193.958000pt;}
.wc{width:304.088667pt;}
.w5{width:308.338000pt;}
.wa{width:321.672000pt;}
.w4{width:391.093333pt;}
.w7{width:398.801333pt;}
.w9{width:400.060667pt;}
.wb{width:617.356667pt;}
.wd{width:873.958000pt;}
.w2{width:2474.698800pt;}
.w3{width:2618.729333pt;}
.w0{width:2645.666667pt;}
.w1{width:2646.000000pt;}
.x0{left:0.000000pt;}
.x10{left:19.581867pt;}
.x2{left:26.937333pt;}
.x1{left:88.367867pt;}
.x3{left:98.908400pt;}
.x12{left:102.438800pt;}
.x11{left:114.102267pt;}
.x6{left:118.388667pt;}
.xe{left:122.026000pt;}
.x5{left:271.829333pt;}
.x7{left:427.114667pt;}
.x8{left:453.781333pt;}
.x19{left:483.980000pt;}
.xf{left:487.394667pt;}
.xb{left:518.485333pt;}
.xc{left:545.152000pt;}
.x16{left:625.510933pt;}
.x15{left:641.350933pt;}
.x18{left:653.597600pt;}
.x17{left:774.304267pt;}
.x9{left:852.608000pt;}
.xd{left:866.848000pt;}
.xa{left:879.285333pt;}
.x14{left:1478.146533pt;}
.x13{left:1500.198533pt;}
.x4{left:2149.709867pt;}
}




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