
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_c73d2c20df71ba31d49d94a5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_c24c7cd90a3d10ec7ae9d5ed.woff')format("woff");}.ff3{font-family:ff3;line-height:1.042667;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_ed45c90d1500e530936e69ce.woff')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_cbea437e370776df23b7afe0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_4457ed85115686fb42022134.woff')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_5b83371f8e2a7ef5e021957c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.097168;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_7d238c0e28b43868609e11ec.woff')format("woff");}.ff8{font-family:ff8;line-height:1.097168;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:ff9;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a346dd465bd6b1a96301ebc1.woff')format("woff");}.ffa{font-family:ffa;line-height:1.064453;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:ffb;src:url('chunks/assets/font_121ba54abf4cd05119ca966d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.064453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.180000px;}
.ls7{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.028080px;}
.ls6{letter-spacing:0.148080px;}
.ls0{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.291600px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:21.221280px;}
.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:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws3{word-spacing:-21.031920px;}
.ws4{word-spacing:-20.700000px;}
.ws0{word-spacing:-0.066240px;}
.ws2{word-spacing:0.000000px;}
._3{margin-left:-20.211840px;}
._0{margin-left:-1.442880px;}
._1{width:1.280640px;}
._2{width:2.760000px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:120.240000px;}
.yd{bottom:-1.440000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.356000px;}
.yb{bottom:5.220000px;}
.y7{bottom:5.796000px;}
.y9{bottom:10.260000px;}
.y4{bottom:20.016000px;}
.y6{bottom:23.580000px;}
.y3{bottom:54.936000px;}
.y2{bottom:70.596000px;}
.y7b{bottom:106.596000px;}
.y32{bottom:109.836000px;}
.y7a{bottom:130.716000px;}
.y31{bottom:133.956000px;}
.y52{bottom:151.050000px;}
.y6f{bottom:151.770000px;}
.y6e{bottom:175.890000px;}
.y30{bottom:179.130000px;}
.y51{bottom:196.230000px;}
.y6d{bottom:200.010000px;}
.y2f{bottom:203.250000px;}
.y50{bottom:220.350000px;}
.y6c{bottom:224.310000px;}
.y2e{bottom:227.370000px;}
.y4f{bottom:244.470000px;}
.y4e{bottom:268.770000px;}
.y6b{bottom:269.310000px;}
.y2d{bottom:272.550000px;}
.y4d{bottom:292.935000px;}
.y6a{bottom:293.655000px;}
.y85{bottom:296.355000px;}
.y2c{bottom:296.715000px;}
.y4c{bottom:317.055000px;}
.y69{bottom:317.775000px;}
.y2b{bottom:320.835000px;}
.y4b{bottom:341.175000px;}
.y79{bottom:341.895000px;}
.y68{bottom:362.775000px;}
.y2a{bottom:366.015000px;}
.y4a{bottom:386.355000px;}
.y84{bottom:387.075000px;}
.y29{bottom:390.135000px;}
.y67{bottom:407.955000px;}
.y78{bottom:411.195000px;}
.y28{bottom:414.255000px;}
.y49{bottom:431.535000px;}
.y66{bottom:432.075000px;}
.y77{bottom:435.315000px;}
.y27{bottom:438.375000px;}
.y48{bottom:455.655000px;}
.y65{bottom:456.375000px;}
.y76{bottom:459.435000px;}
.y26{bottom:462.675000px;}
.y47{bottom:479.775000px;}
.y64{bottom:480.495000px;}
.y75{bottom:483.555000px;}
.y25{bottom:486.795000px;}
.y46{bottom:503.895000px;}
.y63{bottom:504.615000px;}
.y74{bottom:507.675000px;}
.y45{bottom:528.015000px;}
.y62{bottom:528.735000px;}
.y24{bottom:531.975000px;}
.y61{bottom:552.855000px;}
.y83{bottom:556.095000px;}
.y44{bottom:573.225000px;}
.y23{bottom:577.005000px;}
.y82{bottom:580.245000px;}
.y43{bottom:597.345000px;}
.y60{bottom:598.065000px;}
.y22{bottom:601.305000px;}
.y81{bottom:604.365000px;}
.y42{bottom:621.465000px;}
.y5f{bottom:622.185000px;}
.y73{bottom:625.425000px;}
.y80{bottom:628.485000px;}
.y41{bottom:645.765000px;}
.y21{bottom:646.305000px;}
.y72{bottom:649.545000px;}
.y7f{bottom:652.605000px;}
.y40{bottom:669.885000px;}
.y20{bottom:670.605000px;}
.y71{bottom:673.665000px;}
.y7e{bottom:676.905000px;}
.y3f{bottom:694.005000px;}
.y1f{bottom:694.725000px;}
.y7d{bottom:701.025000px;}
.y3e{bottom:718.125000px;}
.y1e{bottom:718.845000px;}
.y5e{bottom:739.905000px;}
.y3d{bottom:742.245000px;}
.y1d{bottom:742.965000px;}
.y7c{bottom:746.025000px;}
.y5d{bottom:764.025000px;}
.y3c{bottom:766.365000px;}
.y1c{bottom:767.085000px;}
.y5c{bottom:788.145000px;}
.y1b{bottom:791.205000px;}
.y5b{bottom:812.265000px;}
.y3b{bottom:813.525000px;}
.y1a{bottom:815.325000px;}
.y5a{bottom:836.385000px;}
.y3a{bottom:839.625000px;}
.y19{bottom:860.550000px;}
.y59{bottom:881.610000px;}
.y39{bottom:884.670000px;}
.y18{bottom:905.730000px;}
.y38{bottom:908.970000px;}
.y17{bottom:929.850000px;}
.y37{bottom:933.090000px;}
.y16{bottom:953.970000px;}
.y70{bottom:975.030000px;}
.y15{bottom:978.270000px;}
.y58{bottom:999.150000px;}
.y36{bottom:1002.390000px;}
.y14{bottom:1023.270000px;}
.y35{bottom:1026.510000px;}
.y57{bottom:1044.330000px;}
.y13{bottom:1047.570000px;}
.y34{bottom:1050.630000px;}
.y56{bottom:1068.450000px;}
.y12{bottom:1071.690000px;}
.y55{bottom:1092.570000px;}
.y11{bottom:1095.810000px;}
.y54{bottom:1116.870000px;}
.y10{bottom:1119.930000px;}
.y53{bottom:1141.020000px;}
.y33{bottom:1144.080000px;}
.yf{bottom:1165.140000px;}
.ye{bottom:1189.260000px;}
.y1{bottom:1208.880000px;}
.yc{bottom:1210.140000px;}
.y8{bottom:1217.340000px;}
.ya{bottom:1225.440000px;}
.h3{height:21.780000px;}
.h6{height:23.040000px;}
.h4{height:40.500000px;}
.h8{height:51.480000px;}
.h7{height:53.296875px;}
.h2{height:65.884219px;}
.h9{height:72.846211px;}
.ha{height:74.244727px;}
.h5{height:99.665600px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:49.680000px;}
.w6{width:72.210000px;}
.w4{width:331.634985px;}
.w5{width:385.995000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:20.775000px;}
.xa{left:27.930000px;}
.x8{left:33.839985px;}
.x5{left:63.899987px;}
.xc{left:71.310000px;}
.xd{left:73.979987px;}
.xf{left:90.899987px;}
.x10{left:117.935987px;}
.xe{left:205.409987px;}
.x6{left:401.220000px;}
.x3{left:425.414987px;}
.x11{left:446.654987px;}
.x4{left:459.074987px;}
.x9{left:467.355000px;}
.xb{left:820.770000px;}
.x2{left:872.069987px;}
.x1{left:893.339987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.160000pt;}
.ls7{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.024960pt;}
.ls6{letter-spacing:0.131627pt;}
.ls0{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.259200pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:18.863360pt;}
.ws5{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws3{word-spacing:-18.695040pt;}
.ws4{word-spacing:-18.400000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws2{word-spacing:0.000000pt;}
._3{margin-left:-17.966080pt;}
._0{margin-left:-1.282560pt;}
._1{width:1.138347pt;}
._2{width:2.453333pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:106.880000pt;}
.yd{bottom:-1.280000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.872000pt;}
.yb{bottom:4.640000pt;}
.y7{bottom:5.152000pt;}
.y9{bottom:9.120000pt;}
.y4{bottom:17.792000pt;}
.y6{bottom:20.960000pt;}
.y3{bottom:48.832000pt;}
.y2{bottom:62.752000pt;}
.y7b{bottom:94.752000pt;}
.y32{bottom:97.632000pt;}
.y7a{bottom:116.192000pt;}
.y31{bottom:119.072000pt;}
.y52{bottom:134.266667pt;}
.y6f{bottom:134.906667pt;}
.y6e{bottom:156.346667pt;}
.y30{bottom:159.226667pt;}
.y51{bottom:174.426667pt;}
.y6d{bottom:177.786667pt;}
.y2f{bottom:180.666667pt;}
.y50{bottom:195.866667pt;}
.y6c{bottom:199.386667pt;}
.y2e{bottom:202.106667pt;}
.y4f{bottom:217.306667pt;}
.y4e{bottom:238.906667pt;}
.y6b{bottom:239.386667pt;}
.y2d{bottom:242.266667pt;}
.y4d{bottom:260.386667pt;}
.y6a{bottom:261.026667pt;}
.y85{bottom:263.426667pt;}
.y2c{bottom:263.746667pt;}
.y4c{bottom:281.826667pt;}
.y69{bottom:282.466667pt;}
.y2b{bottom:285.186667pt;}
.y4b{bottom:303.266667pt;}
.y79{bottom:303.906667pt;}
.y68{bottom:322.466667pt;}
.y2a{bottom:325.346667pt;}
.y4a{bottom:343.426667pt;}
.y84{bottom:344.066667pt;}
.y29{bottom:346.786667pt;}
.y67{bottom:362.626667pt;}
.y78{bottom:365.506667pt;}
.y28{bottom:368.226667pt;}
.y49{bottom:383.586667pt;}
.y66{bottom:384.066667pt;}
.y77{bottom:386.946667pt;}
.y27{bottom:389.666667pt;}
.y48{bottom:405.026667pt;}
.y65{bottom:405.666667pt;}
.y76{bottom:408.386667pt;}
.y26{bottom:411.266667pt;}
.y47{bottom:426.466667pt;}
.y64{bottom:427.106667pt;}
.y75{bottom:429.826667pt;}
.y25{bottom:432.706667pt;}
.y46{bottom:447.906667pt;}
.y63{bottom:448.546667pt;}
.y74{bottom:451.266667pt;}
.y45{bottom:469.346667pt;}
.y62{bottom:469.986667pt;}
.y24{bottom:472.866667pt;}
.y61{bottom:491.426667pt;}
.y83{bottom:494.306667pt;}
.y44{bottom:509.533333pt;}
.y23{bottom:512.893333pt;}
.y82{bottom:515.773333pt;}
.y43{bottom:530.973333pt;}
.y60{bottom:531.613333pt;}
.y22{bottom:534.493333pt;}
.y81{bottom:537.213333pt;}
.y42{bottom:552.413333pt;}
.y5f{bottom:553.053333pt;}
.y73{bottom:555.933333pt;}
.y80{bottom:558.653333pt;}
.y41{bottom:574.013333pt;}
.y21{bottom:574.493333pt;}
.y72{bottom:577.373333pt;}
.y7f{bottom:580.093333pt;}
.y40{bottom:595.453333pt;}
.y20{bottom:596.093333pt;}
.y71{bottom:598.813333pt;}
.y7e{bottom:601.693333pt;}
.y3f{bottom:616.893333pt;}
.y1f{bottom:617.533333pt;}
.y7d{bottom:623.133333pt;}
.y3e{bottom:638.333333pt;}
.y1e{bottom:638.973333pt;}
.y5e{bottom:657.693333pt;}
.y3d{bottom:659.773333pt;}
.y1d{bottom:660.413333pt;}
.y7c{bottom:663.133333pt;}
.y5d{bottom:679.133333pt;}
.y3c{bottom:681.213333pt;}
.y1c{bottom:681.853333pt;}
.y5c{bottom:700.573333pt;}
.y1b{bottom:703.293333pt;}
.y5b{bottom:722.013333pt;}
.y3b{bottom:723.133333pt;}
.y1a{bottom:724.733333pt;}
.y5a{bottom:743.453333pt;}
.y3a{bottom:746.333333pt;}
.y19{bottom:764.933333pt;}
.y59{bottom:783.653333pt;}
.y39{bottom:786.373333pt;}
.y18{bottom:805.093333pt;}
.y38{bottom:807.973333pt;}
.y17{bottom:826.533333pt;}
.y37{bottom:829.413333pt;}
.y16{bottom:847.973333pt;}
.y70{bottom:866.693333pt;}
.y15{bottom:869.573333pt;}
.y58{bottom:888.133333pt;}
.y36{bottom:891.013333pt;}
.y14{bottom:909.573333pt;}
.y35{bottom:912.453333pt;}
.y57{bottom:928.293333pt;}
.y13{bottom:931.173333pt;}
.y34{bottom:933.893333pt;}
.y56{bottom:949.733333pt;}
.y12{bottom:952.613333pt;}
.y55{bottom:971.173333pt;}
.y11{bottom:974.053333pt;}
.y54{bottom:992.773333pt;}
.y10{bottom:995.493333pt;}
.y53{bottom:1014.240000pt;}
.y33{bottom:1016.960000pt;}
.yf{bottom:1035.680000pt;}
.ye{bottom:1057.120000pt;}
.y1{bottom:1074.560000pt;}
.yc{bottom:1075.680000pt;}
.y8{bottom:1082.080000pt;}
.ya{bottom:1089.280000pt;}
.h3{height:19.360000pt;}
.h6{height:20.480000pt;}
.h4{height:36.000000pt;}
.h8{height:45.760000pt;}
.h7{height:47.375000pt;}
.h2{height:58.563750pt;}
.h9{height:64.752187pt;}
.ha{height:65.995312pt;}
.h5{height:88.591644pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:44.160000pt;}
.w6{width:64.186667pt;}
.w4{width:294.786653pt;}
.w5{width:343.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:18.466667pt;}
.xa{left:24.826667pt;}
.x8{left:30.079987pt;}
.x5{left:56.799988pt;}
.xc{left:63.386667pt;}
.xd{left:65.759988pt;}
.xf{left:80.799988pt;}
.x10{left:104.831988pt;}
.xe{left:182.586655pt;}
.x6{left:356.640000pt;}
.x3{left:378.146655pt;}
.x11{left:397.026655pt;}
.x4{left:408.066655pt;}
.x9{left:415.426667pt;}
.xb{left:729.573333pt;}
.x2{left:775.173322pt;}
.x1{left:794.079988pt;}
}




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