
    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_0761cef159a1799ef99d8b3f.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fcd1aafd16607157afbaea14.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0b9fcc11d1ce980ab310b292.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_caf1695c7e4cfe43289d4129.woff')format("woff");}.ff4{font-family:ff4;line-height:1.575000;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);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.324000px;}
.ls1{letter-spacing:3.000000px;}
.ls0{letter-spacing:6.000000px;}
.ls3{letter-spacing:6.618000px;}
.ls4{letter-spacing:7.503000px;}
.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;}
}
.ws3{word-spacing:-21.753000px;}
.ws0{word-spacing:-19.500000px;}
.ws2{word-spacing:-17.250000px;}
.ws4{word-spacing:-13.500000px;}
.ws5{word-spacing:-10.500000px;}
.ws1{word-spacing:0.000000px;}
._2a{margin-left:-16.335000px;}
._13{margin-left:-13.176000px;}
._2c{margin-left:-10.476000px;}
._16{margin-left:-9.018000px;}
._b{margin-left:-7.236000px;}
._a{margin-left:-5.424000px;}
._4{margin-left:-4.164000px;}
._6{margin-left:-2.430000px;}
._0{margin-left:-1.188000px;}
._2{width:1.242000px;}
._7{width:2.754000px;}
._17{width:4.056000px;}
._8{width:5.664000px;}
._9{width:7.620000px;}
._5{width:8.646000px;}
._1{width:9.882000px;}
._3{width:11.286000px;}
._10{width:12.882000px;}
._c{width:13.938000px;}
._e{width:15.876000px;}
._d{width:17.172000px;}
._f{width:18.252000px;}
._19{width:19.926000px;}
._1a{width:21.762000px;}
._12{width:23.256000px;}
._1f{width:24.414000px;}
._1b{width:25.422000px;}
._26{width:26.832000px;}
._11{width:28.254000px;}
._1d{width:29.754000px;}
._1c{width:30.888000px;}
._1e{width:32.400000px;}
._20{width:33.912000px;}
._27{width:35.424000px;}
._21{width:37.908000px;}
._14{width:39.587994px;}
._15{width:40.829994px;}
._23{width:41.958000px;}
._22{width:43.038006px;}
._25{width:44.466000px;}
._24{width:46.872000px;}
._28{width:48.090000px;}
._18{width:53.580000px;}
._2b{width:54.936000px;}
._29{width:58.590000px;}
._2d{width:1011.174000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs4{font-size:39.000000px;}
.fs2{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:57.000000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:87.000000px;}
.fs5{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y2d{bottom:33.750000px;}
.y69{bottom:38.550000px;}
.y2c{bottom:74.550000px;}
.y23{bottom:75.300000px;}
.y68{bottom:83.250000px;}
.y5c{bottom:84.300000px;}
.y2b{bottom:94.050000px;}
.y67{bottom:95.400000px;}
.y22{bottom:95.700000px;}
.y5b{bottom:103.350000px;}
.y2a{bottom:112.950000px;}
.y21{bottom:114.450000px;}
.y66{bottom:115.950000px;}
.y5a{bottom:121.950000px;}
.y65{bottom:127.800000px;}
.y29{bottom:132.150000px;}
.y20{bottom:133.950000px;}
.y59{bottom:141.450000px;}
.y64{bottom:148.050000px;}
.y28{bottom:151.200000px;}
.y1f{bottom:152.550000px;}
.y63{bottom:159.750000px;}
.y58{bottom:160.500000px;}
.y27{bottom:169.950000px;}
.y1e{bottom:171.750000px;}
.y57{bottom:180.000000px;}
.y26{bottom:189.000000px;}
.y1d{bottom:190.500000px;}
.y62{bottom:192.600000px;}
.y56{bottom:199.500000px;}
.y61{bottom:203.700000px;}
.y25{bottom:210.300000px;}
.y60{bottom:215.700000px;}
.y1c{bottom:218.550000px;}
.y24{bottom:224.250000px;}
.y5f{bottom:236.550000px;}
.y1b{bottom:237.600000px;}
.y5e{bottom:248.400000px;}
.y1a{bottom:256.650000px;}
.y5d{bottom:268.950000px;}
.y19{bottom:275.700000px;}
.y55{bottom:291.300000px;}
.y18{bottom:294.750000px;}
.y17{bottom:313.950000px;}
.y16{bottom:336.600000px;}
.y15{bottom:527.850000px;}
.y14{bottom:546.450000px;}
.y13{bottom:565.500000px;}
.y12{bottom:584.700000px;}
.y11{bottom:603.750000px;}
.y10{bottom:622.800000px;}
.yf{bottom:645.150000px;}
.yd{bottom:664.950000px;}
.yc{bottom:684.450000px;}
.yb{bottom:702.450000px;}
.ya{bottom:722.550000px;}
.y9{bottom:740.550000px;}
.y43{bottom:746.250000px;}
.y8{bottom:761.100000px;}
.y42{bottom:764.700000px;}
.y54{bottom:770.700000px;}
.y7{bottom:780.450000px;}
.y41{bottom:783.450000px;}
.y53{bottom:789.750000px;}
.y40{bottom:802.800000px;}
.y52{bottom:808.950000px;}
.y6{bottom:817.200000px;}
.y3f{bottom:822.300000px;}
.y5{bottom:836.550000px;}
.y3e{bottom:841.350000px;}
.y4{bottom:855.750000px;}
.y3d{bottom:861.150000px;}
.y51{bottom:873.000000px;}
.y3{bottom:875.100000px;}
.y3c{bottom:880.200000px;}
.y50{bottom:892.350000px;}
.y2{bottom:894.150000px;}
.y3b{bottom:899.700000px;}
.y4f{bottom:911.550000px;}
.y1{bottom:913.350000px;}
.y3a{bottom:927.450000px;}
.y4e{bottom:931.050000px;}
.y39{bottom:946.950000px;}
.y4d{bottom:949.950000px;}
.y38{bottom:966.300000px;}
.ye{bottom:977.400000px;}
.y37{bottom:985.650000px;}
.y4c{bottom:988.500000px;}
.y36{bottom:1004.850000px;}
.y4b{bottom:1008.000000px;}
.y35{bottom:1024.200000px;}
.y4a{bottom:1027.500000px;}
.y34{bottom:1043.250000px;}
.y49{bottom:1046.850000px;}
.y33{bottom:1062.900000px;}
.y48{bottom:1066.350000px;}
.y32{bottom:1082.250000px;}
.y47{bottom:1085.400000px;}
.y31{bottom:1101.600000px;}
.y46{bottom:1104.750000px;}
.y30{bottom:1120.650000px;}
.y45{bottom:1136.100000px;}
.y2f{bottom:1139.700000px;}
.y44{bottom:1156.050000px;}
.y2e{bottom:1159.200000px;}
.h4{height:38.257324px;}
.h3{height:41.220703px;}
.h1{height:52.998047px;}
.h7{height:55.914551px;}
.h6{height:55.942383px;}
.h8{height:57.445312px;}
.h2{height:72.562500px;}
.h5{height:90.703125px;}
.h9{height:92.829000px;}
.h0{height:1242.000000px;}
.w0{width:884.175000px;}
.w1{width:884.250000px;}
.w2{width:884.550000px;}
.x0{left:0.000000px;}
.x18{left:47.850000px;}
.x16{left:49.350000px;}
.x17{left:50.400000px;}
.x11{left:53.550000px;}
.x10{left:55.050000px;}
.xf{left:56.250000px;}
.xb{left:85.650000px;}
.xa{left:87.450000px;}
.x1{left:89.250000px;}
.x2{left:90.450000px;}
.x3{left:91.500000px;}
.xe{left:96.150000px;}
.x9{left:99.000000px;}
.x4{left:111.600000px;}
.x15{left:250.950000px;}
.x14{left:443.850000px;}
.x13{left:444.900000px;}
.x12{left:446.850000px;}
.xd{left:476.550000px;}
.xc{left:477.750000px;}
.x8{left:479.250000px;}
.x7{left:480.600000px;}
.x19{left:481.950000px;}
.x1a{left:483.150000px;}
.x6{left:490.350000px;}
.x5{left:700.500000px;}
.x1b{left:784.800000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.288000pt;}
.ls1{letter-spacing:2.666667pt;}
.ls0{letter-spacing:5.333333pt;}
.ls3{letter-spacing:5.882667pt;}
.ls4{letter-spacing:6.669333pt;}
.ws3{word-spacing:-19.336000pt;}
.ws0{word-spacing:-17.333333pt;}
.ws2{word-spacing:-15.333333pt;}
.ws4{word-spacing:-12.000000pt;}
.ws5{word-spacing:-9.333333pt;}
.ws1{word-spacing:0.000000pt;}
._2a{margin-left:-14.520000pt;}
._13{margin-left:-11.712000pt;}
._2c{margin-left:-9.312000pt;}
._16{margin-left:-8.016000pt;}
._b{margin-left:-6.432000pt;}
._a{margin-left:-4.821333pt;}
._4{margin-left:-3.701333pt;}
._6{margin-left:-2.160000pt;}
._0{margin-left:-1.056000pt;}
._2{width:1.104000pt;}
._7{width:2.448000pt;}
._17{width:3.605333pt;}
._8{width:5.034667pt;}
._9{width:6.773333pt;}
._5{width:7.685333pt;}
._1{width:8.784000pt;}
._3{width:10.032000pt;}
._10{width:11.450667pt;}
._c{width:12.389333pt;}
._e{width:14.112000pt;}
._d{width:15.264000pt;}
._f{width:16.224000pt;}
._19{width:17.712000pt;}
._1a{width:19.344000pt;}
._12{width:20.672000pt;}
._1f{width:21.701333pt;}
._1b{width:22.597333pt;}
._26{width:23.850667pt;}
._11{width:25.114667pt;}
._1d{width:26.448000pt;}
._1c{width:27.456000pt;}
._1e{width:28.800000pt;}
._20{width:30.144000pt;}
._27{width:31.488000pt;}
._21{width:33.696000pt;}
._14{width:35.189328pt;}
._15{width:36.293328pt;}
._23{width:37.296000pt;}
._22{width:38.256005pt;}
._25{width:39.525333pt;}
._24{width:41.664000pt;}
._28{width:42.746667pt;}
._18{width:47.626667pt;}
._2b{width:48.832000pt;}
._29{width:52.080000pt;}
._2d{width:898.821333pt;}
.fs3{font-size:32.000000pt;}
.fs4{font-size:34.666667pt;}
.fs2{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:50.666667pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:77.333333pt;}
.fs5{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y2d{bottom:30.000000pt;}
.y69{bottom:34.266667pt;}
.y2c{bottom:66.266667pt;}
.y23{bottom:66.933333pt;}
.y68{bottom:74.000000pt;}
.y5c{bottom:74.933333pt;}
.y2b{bottom:83.600000pt;}
.y67{bottom:84.800000pt;}
.y22{bottom:85.066667pt;}
.y5b{bottom:91.866667pt;}
.y2a{bottom:100.400000pt;}
.y21{bottom:101.733333pt;}
.y66{bottom:103.066667pt;}
.y5a{bottom:108.400000pt;}
.y65{bottom:113.600000pt;}
.y29{bottom:117.466667pt;}
.y20{bottom:119.066667pt;}
.y59{bottom:125.733333pt;}
.y64{bottom:131.600000pt;}
.y28{bottom:134.400000pt;}
.y1f{bottom:135.600000pt;}
.y63{bottom:142.000000pt;}
.y58{bottom:142.666667pt;}
.y27{bottom:151.066667pt;}
.y1e{bottom:152.666667pt;}
.y57{bottom:160.000000pt;}
.y26{bottom:168.000000pt;}
.y1d{bottom:169.333333pt;}
.y62{bottom:171.200000pt;}
.y56{bottom:177.333333pt;}
.y61{bottom:181.066667pt;}
.y25{bottom:186.933333pt;}
.y60{bottom:191.733333pt;}
.y1c{bottom:194.266667pt;}
.y24{bottom:199.333333pt;}
.y5f{bottom:210.266667pt;}
.y1b{bottom:211.200000pt;}
.y5e{bottom:220.800000pt;}
.y1a{bottom:228.133333pt;}
.y5d{bottom:239.066667pt;}
.y19{bottom:245.066667pt;}
.y55{bottom:258.933333pt;}
.y18{bottom:262.000000pt;}
.y17{bottom:279.066667pt;}
.y16{bottom:299.200000pt;}
.y15{bottom:469.200000pt;}
.y14{bottom:485.733333pt;}
.y13{bottom:502.666667pt;}
.y12{bottom:519.733333pt;}
.y11{bottom:536.666667pt;}
.y10{bottom:553.600000pt;}
.yf{bottom:573.466667pt;}
.yd{bottom:591.066667pt;}
.yc{bottom:608.400000pt;}
.yb{bottom:624.400000pt;}
.ya{bottom:642.266667pt;}
.y9{bottom:658.266667pt;}
.y43{bottom:663.333333pt;}
.y8{bottom:676.533333pt;}
.y42{bottom:679.733333pt;}
.y54{bottom:685.066667pt;}
.y7{bottom:693.733333pt;}
.y41{bottom:696.400000pt;}
.y53{bottom:702.000000pt;}
.y40{bottom:713.600000pt;}
.y52{bottom:719.066667pt;}
.y6{bottom:726.400000pt;}
.y3f{bottom:730.933333pt;}
.y5{bottom:743.600000pt;}
.y3e{bottom:747.866667pt;}
.y4{bottom:760.666667pt;}
.y3d{bottom:765.466667pt;}
.y51{bottom:776.000000pt;}
.y3{bottom:777.866667pt;}
.y3c{bottom:782.400000pt;}
.y50{bottom:793.200000pt;}
.y2{bottom:794.800000pt;}
.y3b{bottom:799.733333pt;}
.y4f{bottom:810.266667pt;}
.y1{bottom:811.866667pt;}
.y3a{bottom:824.400000pt;}
.y4e{bottom:827.600000pt;}
.y39{bottom:841.733333pt;}
.y4d{bottom:844.400000pt;}
.y38{bottom:858.933333pt;}
.ye{bottom:868.800000pt;}
.y37{bottom:876.133333pt;}
.y4c{bottom:878.666667pt;}
.y36{bottom:893.200000pt;}
.y4b{bottom:896.000000pt;}
.y35{bottom:910.400000pt;}
.y4a{bottom:913.333333pt;}
.y34{bottom:927.333333pt;}
.y49{bottom:930.533333pt;}
.y33{bottom:944.800000pt;}
.y48{bottom:947.866667pt;}
.y32{bottom:962.000000pt;}
.y47{bottom:964.800000pt;}
.y31{bottom:979.200000pt;}
.y46{bottom:982.000000pt;}
.y30{bottom:996.133333pt;}
.y45{bottom:1009.866667pt;}
.y2f{bottom:1013.066667pt;}
.y44{bottom:1027.600000pt;}
.y2e{bottom:1030.400000pt;}
.h4{height:34.006510pt;}
.h3{height:36.640625pt;}
.h1{height:47.109375pt;}
.h7{height:49.701823pt;}
.h6{height:49.726562pt;}
.h8{height:51.062500pt;}
.h2{height:64.500000pt;}
.h5{height:80.625000pt;}
.h9{height:82.514667pt;}
.h0{height:1104.000000pt;}
.w0{width:785.933333pt;}
.w1{width:786.000000pt;}
.w2{width:786.266667pt;}
.x0{left:0.000000pt;}
.x18{left:42.533333pt;}
.x16{left:43.866667pt;}
.x17{left:44.800000pt;}
.x11{left:47.600000pt;}
.x10{left:48.933333pt;}
.xf{left:50.000000pt;}
.xb{left:76.133333pt;}
.xa{left:77.733333pt;}
.x1{left:79.333333pt;}
.x2{left:80.400000pt;}
.x3{left:81.333333pt;}
.xe{left:85.466667pt;}
.x9{left:88.000000pt;}
.x4{left:99.200000pt;}
.x15{left:223.066667pt;}
.x14{left:394.533333pt;}
.x13{left:395.466667pt;}
.x12{left:397.200000pt;}
.xd{left:423.600000pt;}
.xc{left:424.666667pt;}
.x8{left:426.000000pt;}
.x7{left:427.200000pt;}
.x19{left:428.400000pt;}
.x1a{left:429.466667pt;}
.x6{left:435.866667pt;}
.x5{left:622.666667pt;}
.x1b{left:697.600000pt;}
}




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