
    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_5a71dd5eaf97da059b8a4579.woff')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_91cf9969de4f8bc229cf993d.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_5b9bf7b4052b80b7a27a410e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.402354;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_ed4ed272a891c996d39117fb.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_fad405f295383e492d19e7ca.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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_47d94a17adcc2d5b20e24591.woff')format("woff");}.ff6{font-family:ff6;line-height:1.401855;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_c77455a54cccebbb1a2cbbd6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v2{vertical-align:-98.520000px;}
.v1{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-0.276000px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.660000px;}
.ls9{letter-spacing:1.200000px;}
.ls4{letter-spacing:1.320000px;}
.lsf{letter-spacing:12.600000px;}
.lsd{letter-spacing:13.740000px;}
.lse{letter-spacing:13.800000px;}
.ls2{letter-spacing:22.260000px;}
.ls8{letter-spacing:36.600000px;}
.lsc{letter-spacing:40.218000px;}
.lsa{letter-spacing:55.800000px;}
.ls3{letter-spacing:124.890000px;}
.lsb{letter-spacing:125.598000px;}
.ls0{letter-spacing:878.130000px;}
.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:-60.000000px;}
.ws0{word-spacing:-21.000000px;}
.ws4{word-spacing:-20.724000px;}
.ws2{word-spacing:-0.084000px;}
.ws1{word-spacing:0.000000px;}
._f{margin-left:-2.016000px;}
._0{margin-left:-1.008000px;}
._1{width:1.260000px;}
._11{width:2.352000px;}
._2{width:3.360000px;}
._19{width:4.398000px;}
._14{width:6.132000px;}
._15{width:7.308000px;}
._b{width:8.820000px;}
._10{width:10.080000px;}
._e{width:11.172000px;}
._d{width:12.348000px;}
._2b{width:13.356000px;}
._9{width:14.448000px;}
._a{width:15.792000px;}
._8{width:17.640000px;}
._1a{width:19.992000px;}
._21{width:22.428000px;}
._22{width:23.478000px;}
._7{width:24.780000px;}
._3{width:25.956000px;}
._1b{width:26.964000px;}
._2d{width:28.056000px;}
._17{width:29.652000px;}
._16{width:30.744000px;}
._26{width:32.172000px;}
._1f{width:34.746000px;}
._4{width:35.952000px;}
._5{width:37.212000px;}
._6{width:38.250000px;}
._23{width:43.680000px;}
._1d{width:45.528000px;}
._1e{width:46.956000px;}
._1c{width:48.132000px;}
._13{width:51.912000px;}
._12{width:52.920000px;}
._20{width:54.798000px;}
._2c{width:56.028000px;}
._24{width:68.040000px;}
._25{width:69.552000px;}
._c{width:72.576000px;}
._18{width:83.160000px;}
._29{width:85.680000px;}
._28{width:100.968000px;}
._27{width:290.136000px;}
._2a{width:416.052000px;}
._2e{width:845.718000px;}
.fc1{color:rgb(31,55,99);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y39{bottom:4.785000px;}
.y3c{bottom:5.370000px;}
.y42{bottom:5.415000px;}
.y41{bottom:17.415000px;}
.y3e{bottom:29.370000px;}
.y3b{bottom:29.415000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y33{bottom:96.037500px;}
.y58{bottom:113.137500px;}
.y32{bottom:120.037500px;}
.y57{bottom:134.737500px;}
.y31{bottom:144.337500px;}
.y56{bottom:158.745000px;}
.y30{bottom:168.375000px;}
.y55{bottom:183.075000px;}
.y2f{bottom:192.675000px;}
.y54{bottom:207.075000px;}
.y2e{bottom:216.675000px;}
.y53{bottom:231.375000px;}
.y2d{bottom:240.975000px;}
.y52{bottom:255.375000px;}
.y2c{bottom:264.975000px;}
.y51{bottom:279.675000px;}
.y2b{bottom:289.275000px;}
.y50{bottom:303.675000px;}
.y25{bottom:313.275000px;}
.y24{bottom:337.620000px;}
.y4f{bottom:352.005000px;}
.y23{bottom:361.620000px;}
.y4e{bottom:376.320000px;}
.y22{bottom:385.905000px;}
.y4d{bottom:400.320000px;}
.y21{bottom:409.905000px;}
.y4c{bottom:424.620000px;}
.y20{bottom:434.205000px;}
.y4b{bottom:448.620000px;}
.y1f{bottom:458.205000px;}
.y4a{bottom:472.905000px;}
.y1e{bottom:482.505000px;}
.y49{bottom:496.905000px;}
.y1d{bottom:506.550000px;}
.y48{bottom:521.250000px;}
.y1c{bottom:530.850000px;}
.y47{bottom:545.250000px;}
.y1b{bottom:554.850000px;}
.y46{bottom:569.550000px;}
.y1a{bottom:579.150000px;}
.y45{bottom:593.550000px;}
.y19{bottom:603.150000px;}
.y44{bottom:617.850000px;}
.y18{bottom:627.450000px;}
.y43{bottom:641.850000px;}
.y17{bottom:650.850000px;}
.y2a{bottom:651.450000px;}
.y40{bottom:665.565000px;}
.y16{bottom:675.195000px;}
.y29{bottom:675.780000px;}
.y15{bottom:699.780000px;}
.y3f{bottom:719.910000px;}
.y14{bottom:724.080000px;}
.y13{bottom:748.080000px;}
.y12{bottom:772.380000px;}
.y3d{bottom:774.210000px;}
.y11{bottom:796.380000px;}
.y10{bottom:820.695000px;}
.y3a{bottom:828.510000px;}
.yf{bottom:844.725000px;}
.ye{bottom:869.025000px;}
.y38{bottom:882.840000px;}
.yd{bottom:893.025000px;}
.y37{bottom:916.725000px;}
.yc{bottom:917.325000px;}
.y36{bottom:940.725000px;}
.yb{bottom:941.325000px;}
.ya{bottom:965.625000px;}
.y9{bottom:989.025000px;}
.y28{bottom:989.625000px;}
.y8{bottom:1013.955000px;}
.y7{bottom:1037.955000px;}
.y6{bottom:1062.255000px;}
.y27{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y26{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y35{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y34{bottom:1158.870000px;}
.h7{height:24.285000px;}
.h9{height:48.270000px;}
.ha{height:48.285000px;}
.h8{height:48.307500px;}
.hb{height:48.322500px;}
.h5{height:58.898438px;}
.h6{height:59.267578px;}
.h3{height:61.670545px;}
.hd{height:70.664062px;}
.h2{height:82.441406px;}
.h4{height:84.656250px;}
.hc{height:86.338763px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w2{width:278.157000px;}
.w3{width:443.520000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.200000px;}
.xb{left:6.600000px;}
.x2{left:84.937500px;}
.x8{left:97.837500px;}
.x3{left:119.737500px;}
.x5{left:127.537500px;}
.x6{left:186.375000px;}
.xa{left:190.275000px;}
.x4{left:223.875000px;}
.x9{left:365.820000px;}
.x7{left:372.120000px;}
.x1{left:430.650000px;}
@media print{
.v2{vertical-align:-87.573333pt;}
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-0.245333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.586667pt;}
.ls9{letter-spacing:1.066667pt;}
.ls4{letter-spacing:1.173333pt;}
.lsf{letter-spacing:11.200000pt;}
.lsd{letter-spacing:12.213333pt;}
.lse{letter-spacing:12.266667pt;}
.ls2{letter-spacing:19.786667pt;}
.ls8{letter-spacing:32.533333pt;}
.lsc{letter-spacing:35.749333pt;}
.lsa{letter-spacing:49.600000pt;}
.ls3{letter-spacing:111.013333pt;}
.lsb{letter-spacing:111.642667pt;}
.ls0{letter-spacing:780.560000pt;}
.ws3{word-spacing:-53.333333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws4{word-spacing:-18.421333pt;}
.ws2{word-spacing:-0.074667pt;}
.ws1{word-spacing:0.000000pt;}
._f{margin-left:-1.792000pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.120000pt;}
._11{width:2.090667pt;}
._2{width:2.986667pt;}
._19{width:3.909333pt;}
._14{width:5.450667pt;}
._15{width:6.496000pt;}
._b{width:7.840000pt;}
._10{width:8.960000pt;}
._e{width:9.930667pt;}
._d{width:10.976000pt;}
._2b{width:11.872000pt;}
._9{width:12.842667pt;}
._a{width:14.037333pt;}
._8{width:15.680000pt;}
._1a{width:17.770667pt;}
._21{width:19.936000pt;}
._22{width:20.869333pt;}
._7{width:22.026667pt;}
._3{width:23.072000pt;}
._1b{width:23.968000pt;}
._2d{width:24.938667pt;}
._17{width:26.357333pt;}
._16{width:27.328000pt;}
._26{width:28.597333pt;}
._1f{width:30.885333pt;}
._4{width:31.957333pt;}
._5{width:33.077333pt;}
._6{width:34.000000pt;}
._23{width:38.826667pt;}
._1d{width:40.469333pt;}
._1e{width:41.738667pt;}
._1c{width:42.784000pt;}
._13{width:46.144000pt;}
._12{width:47.040000pt;}
._20{width:48.709333pt;}
._2c{width:49.802667pt;}
._24{width:60.480000pt;}
._25{width:61.824000pt;}
._c{width:64.512000pt;}
._18{width:73.920000pt;}
._29{width:76.160000pt;}
._28{width:89.749333pt;}
._27{width:257.898667pt;}
._2a{width:369.824000pt;}
._2e{width:751.749333pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y39{bottom:4.253333pt;}
.y3c{bottom:4.773333pt;}
.y42{bottom:4.813333pt;}
.y41{bottom:15.480000pt;}
.y3e{bottom:26.106667pt;}
.y3b{bottom:26.146667pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y33{bottom:85.366667pt;}
.y58{bottom:100.566667pt;}
.y32{bottom:106.700000pt;}
.y57{bottom:119.766667pt;}
.y31{bottom:128.300000pt;}
.y56{bottom:141.106667pt;}
.y30{bottom:149.666667pt;}
.y55{bottom:162.733333pt;}
.y2f{bottom:171.266667pt;}
.y54{bottom:184.066667pt;}
.y2e{bottom:192.600000pt;}
.y53{bottom:205.666667pt;}
.y2d{bottom:214.200000pt;}
.y52{bottom:227.000000pt;}
.y2c{bottom:235.533333pt;}
.y51{bottom:248.600000pt;}
.y2b{bottom:257.133333pt;}
.y50{bottom:269.933333pt;}
.y25{bottom:278.466667pt;}
.y24{bottom:300.106667pt;}
.y4f{bottom:312.893333pt;}
.y23{bottom:321.440000pt;}
.y4e{bottom:334.506667pt;}
.y22{bottom:343.026667pt;}
.y4d{bottom:355.840000pt;}
.y21{bottom:364.360000pt;}
.y4c{bottom:377.440000pt;}
.y20{bottom:385.960000pt;}
.y4b{bottom:398.773333pt;}
.y1f{bottom:407.293333pt;}
.y4a{bottom:420.360000pt;}
.y1e{bottom:428.893333pt;}
.y49{bottom:441.693333pt;}
.y1d{bottom:450.266667pt;}
.y48{bottom:463.333333pt;}
.y1c{bottom:471.866667pt;}
.y47{bottom:484.666667pt;}
.y1b{bottom:493.200000pt;}
.y46{bottom:506.266667pt;}
.y1a{bottom:514.800000pt;}
.y45{bottom:527.600000pt;}
.y19{bottom:536.133333pt;}
.y44{bottom:549.200000pt;}
.y18{bottom:557.733333pt;}
.y43{bottom:570.533333pt;}
.y17{bottom:578.533333pt;}
.y2a{bottom:579.066667pt;}
.y40{bottom:591.613333pt;}
.y16{bottom:600.173333pt;}
.y29{bottom:600.693333pt;}
.y15{bottom:622.026667pt;}
.y3f{bottom:639.920000pt;}
.y14{bottom:643.626667pt;}
.y13{bottom:664.960000pt;}
.y12{bottom:686.560000pt;}
.y3d{bottom:688.186667pt;}
.y11{bottom:707.893333pt;}
.y10{bottom:729.506667pt;}
.y3a{bottom:736.453333pt;}
.yf{bottom:750.866667pt;}
.ye{bottom:772.466667pt;}
.y38{bottom:784.746667pt;}
.yd{bottom:793.800000pt;}
.y37{bottom:814.866667pt;}
.yc{bottom:815.400000pt;}
.y36{bottom:836.200000pt;}
.yb{bottom:836.733333pt;}
.ya{bottom:858.333333pt;}
.y9{bottom:879.133333pt;}
.y28{bottom:879.666667pt;}
.y8{bottom:901.293333pt;}
.y7{bottom:922.626667pt;}
.y6{bottom:944.226667pt;}
.y27{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y26{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y35{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y34{bottom:1030.106667pt;}
.h7{height:21.586667pt;}
.h9{height:42.906667pt;}
.ha{height:42.920000pt;}
.h8{height:42.940000pt;}
.hb{height:42.953333pt;}
.h5{height:52.354167pt;}
.h6{height:52.682292pt;}
.h3{height:54.818262pt;}
.hd{height:62.812500pt;}
.h2{height:73.281250pt;}
.h4{height:75.250000pt;}
.hc{height:76.745567pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w2{width:247.250667pt;}
.w3{width:394.240000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:1.066667pt;}
.xb{left:5.866667pt;}
.x2{left:75.500000pt;}
.x8{left:86.966667pt;}
.x3{left:106.433333pt;}
.x5{left:113.366667pt;}
.x6{left:165.666667pt;}
.xa{left:169.133333pt;}
.x4{left:199.000000pt;}
.x9{left:325.173333pt;}
.x7{left:330.773333pt;}
.x1{left:382.800000pt;}
}




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