
    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_1b2e1174ad81c6eeaf4d2e2b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_68cee089de0e0cec10a3a09d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.077000;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_535cfb1f532e5a053b2cd5a2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958000;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_9035295ff4a0f7cd2fdab7d8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_29c56da0e577d8096ffa6e5b.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.ls2{letter-spacing:-0.648000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.620000px;}
.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;}
}
.ws21{word-spacing:-15.120000px;}
.ws23{word-spacing:-13.620000px;}
.ws1{word-spacing:-11.610000px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.060000px;}
.wse{word-spacing:0.180000px;}
.ws7{word-spacing:0.420000px;}
.ws26{word-spacing:0.480000px;}
.ws8{word-spacing:0.540000px;}
.wsf{word-spacing:0.660000px;}
.ws16{word-spacing:0.720000px;}
.wsa{word-spacing:1.020000px;}
.ws4{word-spacing:1.380000px;}
.ws9{word-spacing:1.440000px;}
.ws18{word-spacing:1.860000px;}
.ws2{word-spacing:2.160000px;}
.ws17{word-spacing:2.340000px;}
.ws3{word-spacing:2.376000px;}
.ws1c{word-spacing:2.430000px;}
.wsc{word-spacing:2.460000px;}
.ws10{word-spacing:2.700000px;}
.ws11{word-spacing:2.760000px;}
.wsd{word-spacing:3.060000px;}
.ws6{word-spacing:3.240000px;}
.ws22{word-spacing:3.672000px;}
.ws1d{word-spacing:4.428000px;}
.wsb{word-spacing:4.440000px;}
.ws12{word-spacing:4.860000px;}
.ws28{word-spacing:5.040000px;}
.ws1a{word-spacing:5.460000px;}
.ws15{word-spacing:5.580000px;}
.ws25{word-spacing:5.640000px;}
.ws13{word-spacing:6.960000px;}
.ws24{word-spacing:7.140000px;}
.ws1b{word-spacing:9.180000px;}
.ws19{word-spacing:9.960000px;}
.ws27{word-spacing:10.260000px;}
.ws14{word-spacing:10.920000px;}
.ws1e{word-spacing:13.122000px;}
.ws1f{word-spacing:14.256000px;}
.ws20{word-spacing:15.660000px;}
._1{margin-left:-11.376000px;}
._5{margin-left:-8.508000px;}
._7{margin-left:-6.516000px;}
._4{margin-left:-5.319600px;}
._3{margin-left:-4.158000px;}
._6{margin-left:-2.697600px;}
._0{margin-left:-1.392000px;}
._2{width:1.197600px;}
._8{width:5.562000px;}
._9{width:14.741400px;}
._a{width:17.820000px;}
._b{width:297.756000px;}
.fc2{color:transparent;}
.fc1{color:rgb(191,50,65);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:37.500000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y58{bottom:0.005100px;}
.y4a{bottom:0.005400px;}
.y4b{bottom:8.370000px;}
.y4c{bottom:22.119000px;}
.y4e{bottom:46.771350px;}
.y22{bottom:46.771650px;}
.y5{bottom:66.525004px;}
.y47{bottom:76.535400px;}
.y46{bottom:91.417350px;}
.y4{bottom:97.125005px;}
.y45{bottom:106.299150px;}
.y44{bottom:109.299150px;}
.y43{bottom:123.307050px;}
.y42{bottom:138.189000px;}
.y21{bottom:139.264499px;}
.y41{bottom:141.189000px;}
.y40{bottom:155.196900px;}
.y3f{bottom:170.078700px;}
.y3e{bottom:173.078700px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y3d{bottom:222.070800px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y3c{bottom:240.070800px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y3b{bottom:264.448800px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y3a{bottom:282.448800px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y39{bottom:300.448800px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y38{bottom:318.448800px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y37{bottom:336.448800px;}
.yf{bottom:348.133500px;}
.y36{bottom:354.448800px;}
.y35{bottom:372.448800px;}
.ye{bottom:386.785499px;}
.y34{bottom:390.448800px;}
.yd{bottom:408.044999px;}
.y33{bottom:408.448800px;}
.y32{bottom:426.448800px;}
.y31{bottom:450.826800px;}
.y30{bottom:468.826800px;}
.y2f{bottom:486.826800px;}
.yc{bottom:502.864502px;}
.y2e{bottom:504.826800px;}
.yb{bottom:520.864502px;}
.y2d{bottom:522.826800px;}
.ya{bottom:538.864499px;}
.y2c{bottom:540.826800px;}
.y9{bottom:556.864499px;}
.y2b{bottom:558.826800px;}
.y2a{bottom:576.826800px;}
.y29{bottom:594.826800px;}
.y28{bottom:612.826800px;}
.y27{bottom:630.826800px;}
.y8{bottom:645.510000px;}
.y26{bottom:648.826800px;}
.y7{bottom:666.771000px;}
.y57{bottom:676.354800px;}
.y25{bottom:691.275600px;}
.y56{bottom:694.354800px;}
.y55{bottom:712.354800px;}
.y6{bottom:726.298500px;}
.y24{bottom:727.346400px;}
.y54{bottom:736.732800px;}
.y23{bottom:748.346400px;}
.y3{bottom:752.599495px;}
.y53{bottom:754.732800px;}
.y52{bottom:772.732800px;}
.y51{bottom:790.732800px;}
.y50{bottom:808.732800px;}
.y4f{bottom:826.732800px;}
.y49{bottom:846.839250px;}
.y4d{bottom:861.838950px;}
.y48{bottom:861.839250px;}
.y2{bottom:879.369000px;}
.y1{bottom:966.726000px;}
.hd{height:30.225000px;}
.h7{height:32.130000px;}
.hf{height:37.494141px;}
.ha{height:38.688000px;}
.h11{height:41.220703px;}
.he{height:43.524000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hc{height:48.360000px;}
.hb{height:51.408000px;}
.h2{height:55.080000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:948.000000px;}
.h10{height:948.183000px;}
.h13{height:948.184500px;}
.h8{height:948.188400px;}
.h12{height:948.189600px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:624.750000px;}
.w5{width:625.028310px;}
.w7{width:625.032600px;}
.w3{width:625.038810px;}
.w6{width:625.040100px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:71.220750px;}
.x5{left:72.283710px;}
.x9{left:85.039710px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xa{left:116.025810px;}
.x8{left:123.689460px;}
.x7{left:130.455060px;}
.xb{left:151.494810px;}
.x4{left:203.484001px;}
.x6{left:206.729760px;}
.xd{left:383.895600px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.576000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.440000pt;}
.ws21{word-spacing:-13.440000pt;}
.ws23{word-spacing:-12.106667pt;}
.ws1{word-spacing:-10.320000pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.053333pt;}
.wse{word-spacing:0.160000pt;}
.ws7{word-spacing:0.373333pt;}
.ws26{word-spacing:0.426667pt;}
.ws8{word-spacing:0.480000pt;}
.wsf{word-spacing:0.586667pt;}
.ws16{word-spacing:0.640000pt;}
.wsa{word-spacing:0.906667pt;}
.ws4{word-spacing:1.226667pt;}
.ws9{word-spacing:1.280000pt;}
.ws18{word-spacing:1.653333pt;}
.ws2{word-spacing:1.920000pt;}
.ws17{word-spacing:2.080000pt;}
.ws3{word-spacing:2.112000pt;}
.ws1c{word-spacing:2.160000pt;}
.wsc{word-spacing:2.186667pt;}
.ws10{word-spacing:2.400000pt;}
.ws11{word-spacing:2.453333pt;}
.wsd{word-spacing:2.720000pt;}
.ws6{word-spacing:2.880000pt;}
.ws22{word-spacing:3.264000pt;}
.ws1d{word-spacing:3.936000pt;}
.wsb{word-spacing:3.946667pt;}
.ws12{word-spacing:4.320000pt;}
.ws28{word-spacing:4.480000pt;}
.ws1a{word-spacing:4.853333pt;}
.ws15{word-spacing:4.960000pt;}
.ws25{word-spacing:5.013333pt;}
.ws13{word-spacing:6.186667pt;}
.ws24{word-spacing:6.346667pt;}
.ws1b{word-spacing:8.160000pt;}
.ws19{word-spacing:8.853333pt;}
.ws27{word-spacing:9.120000pt;}
.ws14{word-spacing:9.706667pt;}
.ws1e{word-spacing:11.664000pt;}
.ws1f{word-spacing:12.672000pt;}
.ws20{word-spacing:13.920000pt;}
._1{margin-left:-10.112000pt;}
._5{margin-left:-7.562667pt;}
._7{margin-left:-5.792000pt;}
._4{margin-left:-4.728533pt;}
._3{margin-left:-3.696000pt;}
._6{margin-left:-2.397867pt;}
._0{margin-left:-1.237333pt;}
._2{width:1.064533pt;}
._8{width:4.944000pt;}
._9{width:13.103467pt;}
._a{width:15.840000pt;}
._b{width:264.672000pt;}
.fs6{font-size:33.333333pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:0.004533pt;}
.y4a{bottom:0.004800pt;}
.y4b{bottom:7.440000pt;}
.y4c{bottom:19.661333pt;}
.y4e{bottom:41.574533pt;}
.y22{bottom:41.574800pt;}
.y5{bottom:59.133337pt;}
.y47{bottom:68.031467pt;}
.y46{bottom:81.259867pt;}
.y4{bottom:86.333337pt;}
.y45{bottom:94.488133pt;}
.y44{bottom:97.154800pt;}
.y43{bottom:109.606267pt;}
.y42{bottom:122.834667pt;}
.y21{bottom:123.790666pt;}
.y41{bottom:125.501333pt;}
.y40{bottom:137.952800pt;}
.y3f{bottom:151.181067pt;}
.y3e{bottom:153.847733pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y3d{bottom:197.396267pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y3c{bottom:213.396267pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y3b{bottom:235.065600pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y3a{bottom:251.065600pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y39{bottom:267.065600pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y38{bottom:283.065600pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y37{bottom:299.065600pt;}
.yf{bottom:309.452000pt;}
.y36{bottom:315.065600pt;}
.y35{bottom:331.065600pt;}
.ye{bottom:343.809333pt;}
.y34{bottom:347.065600pt;}
.yd{bottom:362.706666pt;}
.y33{bottom:363.065600pt;}
.y32{bottom:379.065600pt;}
.y31{bottom:400.734933pt;}
.y30{bottom:416.734933pt;}
.y2f{bottom:432.734933pt;}
.yc{bottom:446.990669pt;}
.y2e{bottom:448.734933pt;}
.yb{bottom:462.990669pt;}
.y2d{bottom:464.734933pt;}
.ya{bottom:478.990666pt;}
.y2c{bottom:480.734933pt;}
.y9{bottom:494.990666pt;}
.y2b{bottom:496.734933pt;}
.y2a{bottom:512.734933pt;}
.y29{bottom:528.734933pt;}
.y28{bottom:544.734933pt;}
.y27{bottom:560.734933pt;}
.y8{bottom:573.786667pt;}
.y26{bottom:576.734933pt;}
.y7{bottom:592.685334pt;}
.y57{bottom:601.204267pt;}
.y25{bottom:614.467200pt;}
.y56{bottom:617.204267pt;}
.y55{bottom:633.204267pt;}
.y6{bottom:645.598667pt;}
.y24{bottom:646.530133pt;}
.y54{bottom:654.873600pt;}
.y23{bottom:665.196800pt;}
.y3{bottom:668.977329pt;}
.y53{bottom:670.873600pt;}
.y52{bottom:686.873600pt;}
.y51{bottom:702.873600pt;}
.y50{bottom:718.873600pt;}
.y4f{bottom:734.873600pt;}
.y49{bottom:752.746000pt;}
.y4d{bottom:766.079067pt;}
.y48{bottom:766.079333pt;}
.y2{bottom:781.661334pt;}
.y1{bottom:859.312000pt;}
.hd{height:26.866667pt;}
.h7{height:28.560000pt;}
.hf{height:33.328125pt;}
.ha{height:34.389333pt;}
.h11{height:36.640625pt;}
.he{height:38.688000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hc{height:42.986667pt;}
.hb{height:45.696000pt;}
.h2{height:48.960000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:842.666667pt;}
.h10{height:842.829333pt;}
.h13{height:842.830667pt;}
.h8{height:842.834133pt;}
.h12{height:842.835200pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:555.333333pt;}
.w5{width:555.580720pt;}
.w7{width:555.584533pt;}
.w3{width:555.590053pt;}
.w6{width:555.591200pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:63.307333pt;}
.x5{left:64.252187pt;}
.x9{left:75.590853pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xa{left:103.134053pt;}
.x8{left:109.946187pt;}
.x7{left:115.960053pt;}
.xb{left:134.662053pt;}
.x4{left:180.874667pt;}
.x6{left:183.759787pt;}
.xd{left:341.240533pt;}
.x3{left:404.408000pt;}
}




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