
    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_83fb97f870ac6c0889e051b4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_e56811b739c68e744b2aadce.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fcd8f8d71b3b445de8e4bd69.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.949219;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_a26105566cda01f2e0994226.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_b6607b04dfe0a39fc48feba7.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_95cf0eeaadcd7100484b4154.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_9ad9af23049efd4ef05422d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_1e2cf7a2f80e475819feb776.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;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_7dd8541f6733fe035971f728.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921387;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_171fb3ee8099bcb09a2cfc0f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.946777;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:ffc;src:url('chunks/assets/font_6ce70cef608ec90de1bfaf02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.946777;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;}
.ls9{letter-spacing:-18.000000px;}
.ls8{letter-spacing:-0.612000px;}
.ls7{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.036000px;}
.ls5{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.378000px;}
.lsa{letter-spacing:0.720000px;}
.ls0{letter-spacing:53.585280px;}
.ls1{letter-spacing:197.765280px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws6{word-spacing:-18.000000px;}
.ws1{word-spacing:-15.228000px;}
.ws2{word-spacing:-15.012000px;}
.ws5{word-spacing:-12.240000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-9.437760px;}
.ws0{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
._1{margin-left:-1.201920px;}
._0{width:1.627920px;}
._3{width:2.892240px;}
._11{width:3.960960px;}
._e{width:5.472000px;}
._f{width:6.552000px;}
._13{width:7.566000px;}
._8{width:8.640000px;}
._6{width:10.368000px;}
._7{width:11.448000px;}
._4{width:12.888000px;}
._5{width:14.068080px;}
._9{width:15.095760px;}
._10{width:16.803840px;}
._a{width:19.368000px;}
._b{width:20.524080px;}
._19{width:21.600000px;}
._12{width:22.608000px;}
._d{width:24.214080px;}
._c{width:25.969920px;}
._14{width:27.066240px;}
._15{width:30.312000px;}
._1b{width:31.824000px;}
._1a{width:35.568000px;}
._16{width:36.792000px;}
._17{width:38.064000px;}
._18{width:39.384240px;}
._2{width:66.139920px;}
.fc3{color:rgb(98,0,195);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:3.780000px;}
.y8{bottom:11.160000px;}
.y7{bottom:31.170000px;}
.yd{bottom:32.580000px;}
.y4{bottom:37.650000px;}
.yc{bottom:48.960000px;}
.y6{bottom:50.970000px;}
.y3{bottom:62.310000px;}
.yb{bottom:64.656000px;}
.y5{bottom:70.770000px;}
.ya{bottom:80.136000px;}
.y4a{bottom:113.076000px;}
.y2d{bottom:124.956000px;}
.y49{bottom:144.036000px;}
.y2c{bottom:155.910000px;}
.y48{bottom:175.170000px;}
.y2b{bottom:187.050000px;}
.y47{bottom:206.130000px;}
.y2a{bottom:218.010000px;}
.y46{bottom:237.270000px;}
.y29{bottom:249.150000px;}
.y45{bottom:268.230000px;}
.y28{bottom:280.110000px;}
.y44{bottom:299.370000px;}
.y27{bottom:311.250000px;}
.y43{bottom:330.375000px;}
.y26{bottom:342.255000px;}
.y42{bottom:361.515000px;}
.y25{bottom:373.395000px;}
.y41{bottom:392.475000px;}
.y24{bottom:404.355000px;}
.y40{bottom:423.615000px;}
.y23{bottom:435.495000px;}
.y3f{bottom:454.575000px;}
.y22{bottom:466.455000px;}
.y3e{bottom:485.715000px;}
.y21{bottom:497.595000px;}
.y3d{bottom:516.675000px;}
.y20{bottom:528.555000px;}
.y3c{bottom:547.635000px;}
.y1f{bottom:559.695000px;}
.y3b{bottom:578.805000px;}
.y1e{bottom:590.685000px;}
.y3a{bottom:609.765000px;}
.y1d{bottom:621.825000px;}
.y39{bottom:640.905000px;}
.y1c{bottom:652.785000px;}
.y38{bottom:671.865000px;}
.y1b{bottom:683.925000px;}
.y37{bottom:703.005000px;}
.y1a{bottom:714.885000px;}
.y36{bottom:733.965000px;}
.y19{bottom:746.025000px;}
.y35{bottom:765.105000px;}
.y18{bottom:766.725000px;}
.y17{bottom:787.425000px;}
.y34{bottom:796.065000px;}
.y16{bottom:808.125000px;}
.y33{bottom:827.250000px;}
.y15{bottom:828.870000px;}
.y14{bottom:858.210000px;}
.y13{bottom:887.550000px;}
.y32{bottom:889.350000px;}
.y12{bottom:908.250000px;}
.y31{bottom:920.310000px;}
.y11{bottom:928.950000px;}
.y30{bottom:951.450000px;}
.y10{bottom:962.250000px;}
.y2f{bottom:982.410000px;}
.yf{bottom:986.550000px;}
.ye{bottom:1010.670000px;}
.y2e{bottom:1013.550000px;}
.y9{bottom:1033.710000px;}
.y1{bottom:1049.190000px;}
.h6{height:40.579102px;}
.h5{height:46.251562px;}
.h4{height:48.224531px;}
.h2{height:48.418594px;}
.h7{height:50.273438px;}
.ha{height:50.800781px;}
.hb{height:52.628906px;}
.h8{height:53.709961px;}
.h9{height:59.436914px;}
.h3{height:69.996445px;}
.h1{height:84.816000px;}
.h0{height:1188.000000px;}
.w1{width:124.200000px;}
.w3{width:159.690000px;}
.w2{width:428.475000px;}
.w4{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x7{left:21.420000px;}
.x6{left:23.220000px;}
.x8{left:43.965000px;}
.x9{left:60.705000px;}
.x2{left:98.094000px;}
.x1{left:99.936000px;}
.xa{left:108.035986px;}
.xb{left:118.475986px;}
.x16{left:150.509986px;}
.x15{left:162.029986px;}
.x13{left:201.089986px;}
.x3{left:224.130000px;}
.x10{left:247.889986px;}
.x12{left:261.569986px;}
.xc{left:294.734986px;}
.xe{left:357.914986px;}
.x11{left:366.734986px;}
.x14{left:381.854986px;}
.xf{left:393.734986px;}
.xd{left:459.074986px;}
.x5{left:652.605000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-16.000000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.032000pt;}
.ls5{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.336000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls0{letter-spacing:47.631360pt;}
.ls1{letter-spacing:175.791360pt;}
.ws8{word-spacing:-64.000000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws1{word-spacing:-13.536000pt;}
.ws2{word-spacing:-13.344000pt;}
.ws5{word-spacing:-10.880000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws0{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
._1{margin-left:-1.068373pt;}
._0{width:1.447040pt;}
._3{width:2.570880pt;}
._11{width:3.520853pt;}
._e{width:4.864000pt;}
._f{width:5.824000pt;}
._13{width:6.725333pt;}
._8{width:7.680000pt;}
._6{width:9.216000pt;}
._7{width:10.176000pt;}
._4{width:11.456000pt;}
._5{width:12.504960pt;}
._9{width:13.418453pt;}
._10{width:14.936747pt;}
._a{width:17.216000pt;}
._b{width:18.243627pt;}
._19{width:19.200000pt;}
._12{width:20.096000pt;}
._d{width:21.523627pt;}
._c{width:23.084373pt;}
._14{width:24.058880pt;}
._15{width:26.944000pt;}
._1b{width:28.288000pt;}
._1a{width:31.616000pt;}
._16{width:32.704000pt;}
._17{width:33.834667pt;}
._18{width:35.008213pt;}
._2{width:58.791040pt;}
.fs5{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.360000pt;}
.y8{bottom:9.920000pt;}
.y7{bottom:27.706667pt;}
.yd{bottom:28.960000pt;}
.y4{bottom:33.466667pt;}
.yc{bottom:43.520000pt;}
.y6{bottom:45.306667pt;}
.y3{bottom:55.386667pt;}
.yb{bottom:57.472000pt;}
.y5{bottom:62.906667pt;}
.ya{bottom:71.232000pt;}
.y4a{bottom:100.512000pt;}
.y2d{bottom:111.072000pt;}
.y49{bottom:128.032000pt;}
.y2c{bottom:138.586667pt;}
.y48{bottom:155.706667pt;}
.y2b{bottom:166.266667pt;}
.y47{bottom:183.226667pt;}
.y2a{bottom:193.786667pt;}
.y46{bottom:210.906667pt;}
.y29{bottom:221.466667pt;}
.y45{bottom:238.426667pt;}
.y28{bottom:248.986667pt;}
.y44{bottom:266.106667pt;}
.y27{bottom:276.666667pt;}
.y43{bottom:293.666667pt;}
.y26{bottom:304.226667pt;}
.y42{bottom:321.346667pt;}
.y25{bottom:331.906667pt;}
.y41{bottom:348.866667pt;}
.y24{bottom:359.426667pt;}
.y40{bottom:376.546667pt;}
.y23{bottom:387.106667pt;}
.y3f{bottom:404.066667pt;}
.y22{bottom:414.626667pt;}
.y3e{bottom:431.746667pt;}
.y21{bottom:442.306667pt;}
.y3d{bottom:459.266667pt;}
.y20{bottom:469.826667pt;}
.y3c{bottom:486.786667pt;}
.y1f{bottom:497.506667pt;}
.y3b{bottom:514.493333pt;}
.y1e{bottom:525.053333pt;}
.y3a{bottom:542.013333pt;}
.y1d{bottom:552.733333pt;}
.y39{bottom:569.693333pt;}
.y1c{bottom:580.253333pt;}
.y38{bottom:597.213333pt;}
.y1b{bottom:607.933333pt;}
.y37{bottom:624.893333pt;}
.y1a{bottom:635.453333pt;}
.y36{bottom:652.413333pt;}
.y19{bottom:663.133333pt;}
.y35{bottom:680.093333pt;}
.y18{bottom:681.533333pt;}
.y17{bottom:699.933333pt;}
.y34{bottom:707.613333pt;}
.y16{bottom:718.333333pt;}
.y33{bottom:735.333333pt;}
.y15{bottom:736.773333pt;}
.y14{bottom:762.853333pt;}
.y13{bottom:788.933333pt;}
.y32{bottom:790.533333pt;}
.y12{bottom:807.333333pt;}
.y31{bottom:818.053333pt;}
.y11{bottom:825.733333pt;}
.y30{bottom:845.733333pt;}
.y10{bottom:855.333333pt;}
.y2f{bottom:873.253333pt;}
.yf{bottom:876.933333pt;}
.ye{bottom:898.373333pt;}
.y2e{bottom:900.933333pt;}
.y9{bottom:918.853333pt;}
.y1{bottom:932.613333pt;}
.h6{height:36.070312pt;}
.h5{height:41.112500pt;}
.h4{height:42.866250pt;}
.h2{height:43.038750pt;}
.h7{height:44.687500pt;}
.ha{height:45.156250pt;}
.hb{height:46.781250pt;}
.h8{height:47.742188pt;}
.h9{height:52.832812pt;}
.h3{height:62.219062pt;}
.h1{height:75.392000pt;}
.h0{height:1056.000000pt;}
.w1{width:110.400000pt;}
.w3{width:141.946667pt;}
.w2{width:380.866667pt;}
.w4{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x7{left:19.040000pt;}
.x6{left:20.640000pt;}
.x8{left:39.080000pt;}
.x9{left:53.960000pt;}
.x2{left:87.194667pt;}
.x1{left:88.832000pt;}
.xa{left:96.031988pt;}
.xb{left:105.311988pt;}
.x16{left:133.786655pt;}
.x15{left:144.026655pt;}
.x13{left:178.746655pt;}
.x3{left:199.226667pt;}
.x10{left:220.346655pt;}
.x12{left:232.506655pt;}
.xc{left:261.986655pt;}
.xe{left:318.146655pt;}
.x11{left:325.986655pt;}
.x14{left:339.426655pt;}
.xf{left:349.986655pt;}
.xd{left:408.066655pt;}
.x5{left:580.093333pt;}
}




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