
    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_39422a4d0a4f2b3e8fafc56f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a49de698fb2cf6f5f69e5665.woff')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9a8332d7afed48b7fff60e40.woff')format("woff");}.ff3{font-family:ff3;line-height:0.772461;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_658bcef1b50719f1e805886c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_f4e641947dbb159e3e06c832.woff')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.v1{vertical-align:30.000000px;}
.ls3{letter-spacing:-0.606000px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.060000px;}
.lsf{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.552000px;}
.ls2{letter-spacing:0.588000px;}
.ls0{letter-spacing:0.600000px;}
.ls8{letter-spacing:0.828000px;}
.ls5{letter-spacing:0.888000px;}
.ls9{letter-spacing:1.104000px;}
.lsa{letter-spacing:1.200000px;}
.ls7{letter-spacing:1.260000px;}
.lsc{letter-spacing:1.800000px;}
.ls4{letter-spacing:3.000000px;}
.lsb{letter-spacing:6.600000px;}
.lse{letter-spacing:11.340000px;}
.ls6{letter-spacing:17.400000px;}
.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;}
}
.ws4{word-spacing:-21.828000px;}
.ws0{word-spacing:-21.000000px;}
.ws1{word-spacing:-14.088000px;}
.ws3{word-spacing:-12.894000px;}
.ws2{word-spacing:0.000000px;}
._f{margin-left:-2.226000px;}
._0{margin-left:-1.092000px;}
._1{width:1.008000px;}
._b{width:2.070000px;}
._2{width:3.258000px;}
._6{width:4.536000px;}
._7{width:5.586000px;}
._4{width:6.972000px;}
._5{width:8.148000px;}
._3{width:9.156000px;}
._e{width:10.416000px;}
._11{width:12.012000px;}
._14{width:13.110000px;}
._10{width:14.346000px;}
._17{width:15.540000px;}
._18{width:16.674000px;}
._16{width:17.976000px;}
._1b{width:19.278000px;}
._9{width:22.596000px;}
._8{width:24.024000px;}
._a{width:25.218000px;}
._d{width:26.796000px;}
._c{width:28.272000px;}
._13{width:29.820000px;}
._12{width:31.290000px;}
._15{width:32.718000px;}
._21{width:34.902000px;}
._1d{width:36.876000px;}
._1a{width:41.832000px;}
._19{width:42.966000px;}
._1c{width:44.394000px;}
._1e{width:47.628000px;}
._1f{width:49.056000px;}
._20{width:50.190000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:84.000000px;}
.fs1{font-size:96.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:6.000000px;}
.y6{bottom:81.937500px;}
.y3{bottom:85.237500px;}
.y5{bottom:95.437500px;}
.y70{bottom:113.137500px;}
.y3b{bottom:127.537500px;}
.y5d{bottom:137.437500px;}
.y6f{bottom:149.437500px;}
.y3a{bottom:163.830000px;}
.y62{bottom:167.430000px;}
.y5c{bottom:173.775000px;}
.y1e{bottom:178.875000px;}
.y72{bottom:185.775000px;}
.y6e{bottom:191.775000px;}
.y39{bottom:199.875000px;}
.y61{bottom:203.775000px;}
.y38{bottom:207.375000px;}
.y47{bottom:209.775000px;}
.y5b{bottom:215.775000px;}
.y1d{bottom:221.175000px;}
.y6d{bottom:227.775000px;}
.y60{bottom:239.775000px;}
.y37{bottom:242.175000px;}
.y46{bottom:245.775000px;}
.y5a{bottom:252.075000px;}
.y1c{bottom:257.175000px;}
.y6c{bottom:264.075000px;}
.y36{bottom:276.075000px;}
.y45{bottom:282.075000px;}
.y59{bottom:288.375000px;}
.y1b{bottom:299.475000px;}
.y6b{bottom:306.375000px;}
.y35{bottom:312.375000px;}
.y44{bottom:318.375000px;}
.y58{bottom:324.375000px;}
.y1a{bottom:335.775000px;}
.y6a{bottom:342.420000px;}
.y34{bottom:348.420000px;}
.y43{bottom:354.405000px;}
.y57{bottom:360.705000px;}
.y19{bottom:371.805000px;}
.y69{bottom:378.720000px;}
.y71{bottom:384.105000px;}
.y33{bottom:390.705000px;}
.y56{bottom:397.005000px;}
.y18{bottom:408.120000px;}
.y68{bottom:415.005000px;}
.y32{bottom:427.005000px;}
.y42{bottom:433.005000px;}
.y55{bottom:433.320000px;}
.y17{bottom:444.420000px;}
.y67{bottom:457.320000px;}
.y31{bottom:463.320000px;}
.y41{bottom:469.320000px;}
.y16{bottom:480.705000px;}
.y66{bottom:493.320000px;}
.y30{bottom:499.320000px;}
.y40{bottom:505.305000px;}
.y54{bottom:505.605000px;}
.y15{bottom:516.750000px;}
.y2f{bottom:535.650000px;}
.y3f{bottom:541.650000px;}
.y53{bottom:541.950000px;}
.y14{bottom:553.050000px;}
.y2e{bottom:571.950000px;}
.y3e{bottom:577.950000px;}
.y52{bottom:584.250000px;}
.y13{bottom:589.350000px;}
.y5f{bottom:608.250000px;}
.y2d{bottom:614.250000px;}
.y12{bottom:625.650000px;}
.y51{bottom:626.250000px;}
.y5e{bottom:644.250000px;}
.y2c{bottom:650.250000px;}
.y11{bottom:661.650000px;}
.y50{bottom:668.550000px;}
.y2b{bottom:686.595000px;}
.y10{bottom:697.980000px;}
.y4f{bottom:704.880000px;}
.y2a{bottom:722.880000px;}
.yf{bottom:734.280000px;}
.y4e{bottom:747.195000px;}
.y29{bottom:759.195000px;}
.ye{bottom:770.580000px;}
.y4d{bottom:789.195000px;}
.y28{bottom:795.195000px;}
.y3d{bottom:801.195000px;}
.yd{bottom:819.195000px;}
.y4c{bottom:825.480000px;}
.y27{bottom:831.480000px;}
.y3c{bottom:837.480000px;}
.y4b{bottom:861.825000px;}
.y65{bottom:867.825000px;}
.yc{bottom:870.525000px;}
.y26{bottom:873.825000px;}
.y4a{bottom:898.125000px;}
.y64{bottom:904.125000px;}
.y24{bottom:910.125000px;}
.yb{bottom:912.825000px;}
.y25{bottom:917.625000px;}
.y49{bottom:940.125000px;}
.y23{bottom:946.125000px;}
.ya{bottom:954.225000px;}
.y48{bottom:976.425000px;}
.y22{bottom:982.425000px;}
.y9{bottom:1003.725000px;}
.y63{bottom:1012.725000px;}
.y21{bottom:1018.755000px;}
.y8{bottom:1054.455000px;}
.y20{bottom:1055.070000px;}
.y7{bottom:1090.455000px;}
.y1f{bottom:1091.070000px;}
.y2{bottom:1133.355000px;}
.y1{bottom:1190.100000px;}
.h9{height:52.998047px;}
.ha{height:60.744141px;}
.h3{height:82.441406px;}
.h7{height:82.998047px;}
.h5{height:84.656250px;}
.h2{height:96.750000px;}
.h4{height:115.500000px;}
.h6{height:120.937500px;}
.h8{height:1262.662335px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:193.500000px;}
.w3{width:893.062500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:11.025000px;}
.x1{left:127.537500px;}
.x10{left:134.437500px;}
.x11{left:170.130000px;}
.xc{left:191.475000px;}
.x9{left:194.175000px;}
.x5{left:203.775000px;}
.x6{left:237.675000px;}
.xf{left:343.620000px;}
.x8{left:384.720000px;}
.x12{left:436.050000px;}
.xa{left:445.050000px;}
.xb{left:478.350000px;}
.x7{left:510.150000px;}
.xd{left:539.557500px;}
.xe{left:546.495000px;}
.x2{left:699.300000px;}
.x4{left:780.870000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.666667pt;}
.ls3{letter-spacing:-0.538667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.053333pt;}
.lsf{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.490667pt;}
.ls2{letter-spacing:0.522667pt;}
.ls0{letter-spacing:0.533333pt;}
.ls8{letter-spacing:0.736000pt;}
.ls5{letter-spacing:0.789333pt;}
.ls9{letter-spacing:0.981333pt;}
.lsa{letter-spacing:1.066667pt;}
.ls7{letter-spacing:1.120000pt;}
.lsc{letter-spacing:1.600000pt;}
.ls4{letter-spacing:2.666667pt;}
.lsb{letter-spacing:5.866667pt;}
.lse{letter-spacing:10.080000pt;}
.ls6{letter-spacing:15.466667pt;}
.ws4{word-spacing:-19.402667pt;}
.ws0{word-spacing:-18.666667pt;}
.ws1{word-spacing:-12.522667pt;}
.ws3{word-spacing:-11.461333pt;}
.ws2{word-spacing:0.000000pt;}
._f{margin-left:-1.978667pt;}
._0{margin-left:-0.970667pt;}
._1{width:0.896000pt;}
._b{width:1.840000pt;}
._2{width:2.896000pt;}
._6{width:4.032000pt;}
._7{width:4.965333pt;}
._4{width:6.197333pt;}
._5{width:7.242667pt;}
._3{width:8.138667pt;}
._e{width:9.258667pt;}
._11{width:10.677333pt;}
._14{width:11.653333pt;}
._10{width:12.752000pt;}
._17{width:13.813333pt;}
._18{width:14.821333pt;}
._16{width:15.978667pt;}
._1b{width:17.136000pt;}
._9{width:20.085333pt;}
._8{width:21.354667pt;}
._a{width:22.416000pt;}
._d{width:23.818667pt;}
._c{width:25.130667pt;}
._13{width:26.506667pt;}
._12{width:27.813333pt;}
._15{width:29.082667pt;}
._21{width:31.024000pt;}
._1d{width:32.778667pt;}
._1a{width:37.184000pt;}
._19{width:38.192000pt;}
._1c{width:39.461333pt;}
._1e{width:42.336000pt;}
._1f{width:43.605333pt;}
._20{width:44.613333pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:74.666667pt;}
.fs1{font-size:85.333333pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:5.333333pt;}
.y6{bottom:72.833333pt;}
.y3{bottom:75.766667pt;}
.y5{bottom:84.833333pt;}
.y70{bottom:100.566667pt;}
.y3b{bottom:113.366667pt;}
.y5d{bottom:122.166667pt;}
.y6f{bottom:132.833333pt;}
.y3a{bottom:145.626667pt;}
.y62{bottom:148.826667pt;}
.y5c{bottom:154.466667pt;}
.y1e{bottom:159.000000pt;}
.y72{bottom:165.133333pt;}
.y6e{bottom:170.466667pt;}
.y39{bottom:177.666667pt;}
.y61{bottom:181.133333pt;}
.y38{bottom:184.333333pt;}
.y47{bottom:186.466667pt;}
.y5b{bottom:191.800000pt;}
.y1d{bottom:196.600000pt;}
.y6d{bottom:202.466667pt;}
.y60{bottom:213.133333pt;}
.y37{bottom:215.266667pt;}
.y46{bottom:218.466667pt;}
.y5a{bottom:224.066667pt;}
.y1c{bottom:228.600000pt;}
.y6c{bottom:234.733333pt;}
.y36{bottom:245.400000pt;}
.y45{bottom:250.733333pt;}
.y59{bottom:256.333333pt;}
.y1b{bottom:266.200000pt;}
.y6b{bottom:272.333333pt;}
.y35{bottom:277.666667pt;}
.y44{bottom:283.000000pt;}
.y58{bottom:288.333333pt;}
.y1a{bottom:298.466667pt;}
.y6a{bottom:304.373333pt;}
.y34{bottom:309.706667pt;}
.y43{bottom:315.026667pt;}
.y57{bottom:320.626667pt;}
.y19{bottom:330.493333pt;}
.y69{bottom:336.640000pt;}
.y71{bottom:341.426667pt;}
.y33{bottom:347.293333pt;}
.y56{bottom:352.893333pt;}
.y18{bottom:362.773333pt;}
.y68{bottom:368.893333pt;}
.y32{bottom:379.560000pt;}
.y42{bottom:384.893333pt;}
.y55{bottom:385.173333pt;}
.y17{bottom:395.040000pt;}
.y67{bottom:406.506667pt;}
.y31{bottom:411.840000pt;}
.y41{bottom:417.173333pt;}
.y16{bottom:427.293333pt;}
.y66{bottom:438.506667pt;}
.y30{bottom:443.840000pt;}
.y40{bottom:449.160000pt;}
.y54{bottom:449.426667pt;}
.y15{bottom:459.333333pt;}
.y2f{bottom:476.133333pt;}
.y3f{bottom:481.466667pt;}
.y53{bottom:481.733333pt;}
.y14{bottom:491.600000pt;}
.y2e{bottom:508.400000pt;}
.y3e{bottom:513.733333pt;}
.y52{bottom:519.333333pt;}
.y13{bottom:523.866667pt;}
.y5f{bottom:540.666667pt;}
.y2d{bottom:546.000000pt;}
.y12{bottom:556.133333pt;}
.y51{bottom:556.666667pt;}
.y5e{bottom:572.666667pt;}
.y2c{bottom:578.000000pt;}
.y11{bottom:588.133333pt;}
.y50{bottom:594.266667pt;}
.y2b{bottom:610.306667pt;}
.y10{bottom:620.426667pt;}
.y4f{bottom:626.560000pt;}
.y2a{bottom:642.560000pt;}
.yf{bottom:652.693333pt;}
.y4e{bottom:664.173333pt;}
.y29{bottom:674.840000pt;}
.ye{bottom:684.960000pt;}
.y4d{bottom:701.506667pt;}
.y28{bottom:706.840000pt;}
.y3d{bottom:712.173333pt;}
.yd{bottom:728.173333pt;}
.y4c{bottom:733.760000pt;}
.y27{bottom:739.093333pt;}
.y3c{bottom:744.426667pt;}
.y4b{bottom:766.066667pt;}
.y65{bottom:771.400000pt;}
.yc{bottom:773.800000pt;}
.y26{bottom:776.733333pt;}
.y4a{bottom:798.333333pt;}
.y64{bottom:803.666667pt;}
.y24{bottom:809.000000pt;}
.yb{bottom:811.400000pt;}
.y25{bottom:815.666667pt;}
.y49{bottom:835.666667pt;}
.y23{bottom:841.000000pt;}
.ya{bottom:848.200000pt;}
.y48{bottom:867.933333pt;}
.y22{bottom:873.266667pt;}
.y9{bottom:892.200000pt;}
.y63{bottom:900.200000pt;}
.y21{bottom:905.560000pt;}
.y8{bottom:937.293333pt;}
.y20{bottom:937.840000pt;}
.y7{bottom:969.293333pt;}
.y1f{bottom:969.840000pt;}
.y2{bottom:1007.426667pt;}
.y1{bottom:1057.866667pt;}
.h9{height:47.109375pt;}
.ha{height:53.994792pt;}
.h3{height:73.281250pt;}
.h7{height:73.776042pt;}
.h5{height:75.250000pt;}
.h2{height:86.000000pt;}
.h4{height:102.666667pt;}
.h6{height:107.500000pt;}
.h8{height:1122.366520pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:172.000000pt;}
.w3{width:793.833333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:9.800000pt;}
.x1{left:113.366667pt;}
.x10{left:119.500000pt;}
.x11{left:151.226667pt;}
.xc{left:170.200000pt;}
.x9{left:172.600000pt;}
.x5{left:181.133333pt;}
.x6{left:211.266667pt;}
.xf{left:305.440000pt;}
.x8{left:341.973333pt;}
.x12{left:387.600000pt;}
.xa{left:395.600000pt;}
.xb{left:425.200000pt;}
.x7{left:453.466667pt;}
.xd{left:479.606667pt;}
.xe{left:485.773333pt;}
.x2{left:621.600000pt;}
.x4{left:694.106667pt;}
}




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