
    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_796e5f4091650ab0587932d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.093262;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_2a9f185e6c77df0181fab821.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_e3f84886c7f32a6a84e1d9af.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_99c06b6f720c296f86c4c9ce.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.750000;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:-33.120000px;}
.v3{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120600px;}
.lsa{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.586080px;}
.ls2{letter-spacing:-0.576000px;}
.ls3{letter-spacing:-0.372960px;}
.ls9{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.712800px;}
.ls1{letter-spacing:0.720000px;}
.ls4{letter-spacing:1.080000px;}
.ls8{letter-spacing:1.152000px;}
.ls11{letter-spacing:2.160000px;}
.lsc{letter-spacing:8.017920px;}
.ls6{letter-spacing:13.680000px;}
.lse{letter-spacing:23.760000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-18.648000px;}
.ws9{word-spacing:-18.288000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.424000px;}
.ws2{word-spacing:-13.320000px;}
.ws4{word-spacing:-12.592800px;}
.ws5{word-spacing:-9.720000px;}
.ws0{word-spacing:0.000000px;}
._22{margin-left:-23.693760px;}
._18{margin-left:-3.588480px;}
._9{margin-left:-2.378880px;}
._1{margin-left:-1.212480px;}
._0{width:1.670400px;}
._a{width:2.678400px;}
._8{width:3.948480px;}
._c{width:5.664960px;}
._b{width:6.696000px;}
._4{width:7.992000px;}
._3{width:9.144000px;}
._2{width:10.932480px;}
._1c{width:11.940480px;}
._5{width:12.948480px;}
._f{width:14.184000px;}
._6{width:15.768000px;}
._7{width:16.951680px;}
._13{width:19.944000px;}
._14{width:21.588480px;}
._1d{width:22.605120px;}
._10{width:23.616000px;}
._11{width:24.713280px;}
._12{width:25.750080px;}
._17{width:27.576000px;}
._16{width:28.728000px;}
._15{width:30.024000px;}
._1a{width:31.236480px;}
._1b{width:32.832000px;}
._19{width:34.387200px;}
._e{width:35.389440px;}
._d{width:36.936000px;}
._21{width:38.376000px;}
._23{width:48.096000px;}
._1e{width:140.650560px;}
._20{width:198.360000px;}
._1f{width:199.800000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs2{font-size:47.520000px;}
.fs3{font-size:53.280000px;}
.fs6{font-size:59.040000px;}
.fs5{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.y0{bottom:0.000000px;}
.y1{bottom:18.810090px;}
.y2f{bottom:90.360000px;}
.y2b{bottom:96.840000px;}
.y5e{bottom:99.720000px;}
.y2e{bottom:105.840000px;}
.y5d{bottom:112.320000px;}
.y46{bottom:115.200000px;}
.y66{bottom:120.600000px;}
.y5b{bottom:120.959985px;}
.y2d{bottom:121.320000px;}
.y45{bottom:126.720000px;}
.y2a{bottom:127.800000px;}
.y3c{bottom:131.039985px;}
.y65{bottom:131.760060px;}
.y5a{bottom:136.440060px;}
.y3a{bottom:136.800060px;}
.y44{bottom:142.200060px;}
.y3b{bottom:143.280060px;}
.y2c{bottom:146.520060px;}
.y64{bottom:147.240060px;}
.y59{bottom:151.920060px;}
.y39{bottom:152.280060px;}
.y29{bottom:158.760060px;}
.y63{bottom:162.720060px;}
.y43{bottom:163.800060px;}
.y58{bottom:167.400060px;}
.y41{bottom:168.120060px;}
.y42{bottom:174.240060px;}
.y38{bottom:177.480060px;}
.y62{bottom:178.200060px;}
.y57{bottom:182.880060px;}
.y40{bottom:183.599910px;}
.y37{bottom:188.639910px;}
.y5c{bottom:189.720060px;}
.y28{bottom:190.080060px;}
.y61{bottom:193.679910px;}
.y56{bottom:198.360060px;}
.y3f{bottom:199.080060px;}
.y36{bottom:204.120060px;}
.y47{bottom:208.440060px;}
.y55{bottom:214.200060px;}
.y60{bottom:218.880060px;}
.y27{bottom:221.040060px;}
.y3e{bottom:223.920060px;}
.y35{bottom:229.320060px;}
.y54{bottom:229.679910px;}
.y5f{bottom:231.120060px;}
.y3d{bottom:236.519910px;}
.y34{bottom:240.480060px;}
.y53{bottom:245.160060px;}
.y26{bottom:252.000060px;}
.y33{bottom:255.960060px;}
.y52{bottom:260.639910px;}
.y32{bottom:271.440060px;}
.y51{bottom:276.120060px;}
.y25{bottom:282.960060px;}
.y50{bottom:291.599910px;}
.y31{bottom:296.639910px;}
.y4f{bottom:307.080060px;}
.y30{bottom:308.880060px;}
.y24{bottom:313.920060px;}
.y4e{bottom:322.559910px;}
.y4d{bottom:338.040060px;}
.y23{bottom:345.240060px;}
.y4c{bottom:353.880060px;}
.y4b{bottom:369.360060px;}
.y22{bottom:376.200060px;}
.y4a{bottom:384.840060px;}
.y49{bottom:406.440060px;}
.y21{bottom:407.159910px;}
.y48{bottom:416.880060px;}
.y20{bottom:438.120060px;}
.y1f{bottom:469.440060px;}
.y1e{bottom:500.399910px;}
.y17{bottom:514.800060px;}
.y1d{bottom:531.360060px;}
.y16{bottom:538.919910px;}
.y1c{bottom:562.319910px;}
.y15{bottom:563.040060px;}
.y14{bottom:587.159910px;}
.y1b{bottom:593.639910px;}
.y13{bottom:611.280060px;}
.y1a{bottom:624.600060px;}
.y12{bottom:635.399910px;}
.y19{bottom:655.559910px;}
.y11{bottom:659.520060px;}
.y10{bottom:683.639910px;}
.y18{bottom:686.520060px;}
.yf{bottom:717.839910px;}
.ye{bottom:748.800060px;}
.yd{bottom:779.760060px;}
.yc{bottom:810.719910px;}
.yb{bottom:842.039910px;}
.ya{bottom:872.999910px;}
.y9{bottom:903.960060px;}
.y8{bottom:934.920060px;}
.y7{bottom:966.240060px;}
.y6{bottom:997.199910px;}
.y5{bottom:1028.159910px;}
.y4{bottom:1059.120060px;}
.y3{bottom:1090.440060px;}
.y2{bottom:1121.399910px;}
.hd{height:31.587891px;}
.h6{height:41.696016px;}
.h7{height:46.750078px;}
.hb{height:46.880156px;}
.ha{height:49.289063px;}
.h3{height:57.175313px;}
.h2{height:63.175781px;}
.hc{height:63.351563px;}
.h4{height:73.283906px;}
.h9{height:74.815416px;}
.h8{height:74.816016px;}
.h5{height:74.816616px;}
.h1{height:1225.440000px;}
.h0{height:1263.000000px;}
.w1{width:855.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x1{left:18.750000px;}
.x2{left:108.720000px;}
.x3{left:181.440000px;}
.x5{left:497.880000px;}
.x6{left:538.560000px;}
.x7{left:546.840000px;}
.x8{left:645.480000px;}
.x4{left:745.920000px;}
@media print{
.v2{vertical-align:-29.440000pt;}
.v3{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440533pt;}
.lsa{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.520960pt;}
.ls2{letter-spacing:-0.512000pt;}
.ls3{letter-spacing:-0.331520pt;}
.ls9{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.633600pt;}
.ls1{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls8{letter-spacing:1.024000pt;}
.ls11{letter-spacing:1.920000pt;}
.lsc{letter-spacing:7.127040pt;}
.ls6{letter-spacing:12.160000pt;}
.lse{letter-spacing:21.120000pt;}
.ws8{word-spacing:-16.576000pt;}
.ws9{word-spacing:-16.256000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.488000pt;}
.ws2{word-spacing:-11.840000pt;}
.ws4{word-spacing:-11.193600pt;}
.ws5{word-spacing:-8.640000pt;}
.ws0{word-spacing:0.000000pt;}
._22{margin-left:-21.061120pt;}
._18{margin-left:-3.189760pt;}
._9{margin-left:-2.114560pt;}
._1{margin-left:-1.077760pt;}
._0{width:1.484800pt;}
._a{width:2.380800pt;}
._8{width:3.509760pt;}
._c{width:5.035520pt;}
._b{width:5.952000pt;}
._4{width:7.104000pt;}
._3{width:8.128000pt;}
._2{width:9.717760pt;}
._1c{width:10.613760pt;}
._5{width:11.509760pt;}
._f{width:12.608000pt;}
._6{width:14.016000pt;}
._7{width:15.068160pt;}
._13{width:17.728000pt;}
._14{width:19.189760pt;}
._1d{width:20.093440pt;}
._10{width:20.992000pt;}
._11{width:21.967360pt;}
._12{width:22.888960pt;}
._17{width:24.512000pt;}
._16{width:25.536000pt;}
._15{width:26.688000pt;}
._1a{width:27.765760pt;}
._1b{width:29.184000pt;}
._19{width:30.566400pt;}
._e{width:31.457280pt;}
._d{width:32.832000pt;}
._21{width:34.112000pt;}
._23{width:42.752000pt;}
._1e{width:125.022720pt;}
._20{width:176.320000pt;}
._1f{width:177.600000pt;}
.fs4{font-size:32.000000pt;}
.fs2{font-size:42.240000pt;}
.fs3{font-size:47.360000pt;}
.fs6{font-size:52.480000pt;}
.fs5{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:16.720080pt;}
.y2f{bottom:80.320000pt;}
.y2b{bottom:86.080000pt;}
.y5e{bottom:88.640000pt;}
.y2e{bottom:94.080000pt;}
.y5d{bottom:99.840000pt;}
.y46{bottom:102.400000pt;}
.y66{bottom:107.200000pt;}
.y5b{bottom:107.519987pt;}
.y2d{bottom:107.840000pt;}
.y45{bottom:112.640000pt;}
.y2a{bottom:113.600000pt;}
.y3c{bottom:116.479987pt;}
.y65{bottom:117.120053pt;}
.y5a{bottom:121.280053pt;}
.y3a{bottom:121.600053pt;}
.y44{bottom:126.400053pt;}
.y3b{bottom:127.360053pt;}
.y2c{bottom:130.240053pt;}
.y64{bottom:130.880053pt;}
.y59{bottom:135.040053pt;}
.y39{bottom:135.360053pt;}
.y29{bottom:141.120053pt;}
.y63{bottom:144.640053pt;}
.y43{bottom:145.600053pt;}
.y58{bottom:148.800053pt;}
.y41{bottom:149.440053pt;}
.y42{bottom:154.880053pt;}
.y38{bottom:157.760053pt;}
.y62{bottom:158.400053pt;}
.y57{bottom:162.560053pt;}
.y40{bottom:163.199920pt;}
.y37{bottom:167.679920pt;}
.y5c{bottom:168.640053pt;}
.y28{bottom:168.960053pt;}
.y61{bottom:172.159920pt;}
.y56{bottom:176.320053pt;}
.y3f{bottom:176.960053pt;}
.y36{bottom:181.440053pt;}
.y47{bottom:185.280053pt;}
.y55{bottom:190.400053pt;}
.y60{bottom:194.560053pt;}
.y27{bottom:196.480053pt;}
.y3e{bottom:199.040053pt;}
.y35{bottom:203.840053pt;}
.y54{bottom:204.159920pt;}
.y5f{bottom:205.440053pt;}
.y3d{bottom:210.239920pt;}
.y34{bottom:213.760053pt;}
.y53{bottom:217.920053pt;}
.y26{bottom:224.000053pt;}
.y33{bottom:227.520053pt;}
.y52{bottom:231.679920pt;}
.y32{bottom:241.280053pt;}
.y51{bottom:245.440053pt;}
.y25{bottom:251.520053pt;}
.y50{bottom:259.199920pt;}
.y31{bottom:263.679920pt;}
.y4f{bottom:272.960053pt;}
.y30{bottom:274.560053pt;}
.y24{bottom:279.040053pt;}
.y4e{bottom:286.719920pt;}
.y4d{bottom:300.480053pt;}
.y23{bottom:306.880053pt;}
.y4c{bottom:314.560053pt;}
.y4b{bottom:328.320053pt;}
.y22{bottom:334.400053pt;}
.y4a{bottom:342.080053pt;}
.y49{bottom:361.280053pt;}
.y21{bottom:361.919920pt;}
.y48{bottom:370.560053pt;}
.y20{bottom:389.440053pt;}
.y1f{bottom:417.280053pt;}
.y1e{bottom:444.799920pt;}
.y17{bottom:457.600053pt;}
.y1d{bottom:472.320053pt;}
.y16{bottom:479.039920pt;}
.y1c{bottom:499.839920pt;}
.y15{bottom:500.480053pt;}
.y14{bottom:521.919920pt;}
.y1b{bottom:527.679920pt;}
.y13{bottom:543.360053pt;}
.y1a{bottom:555.200053pt;}
.y12{bottom:564.799920pt;}
.y19{bottom:582.719920pt;}
.y11{bottom:586.240053pt;}
.y10{bottom:607.679920pt;}
.y18{bottom:610.240053pt;}
.yf{bottom:638.079920pt;}
.ye{bottom:665.600053pt;}
.yd{bottom:693.120053pt;}
.yc{bottom:720.639920pt;}
.yb{bottom:748.479920pt;}
.ya{bottom:775.999920pt;}
.y9{bottom:803.520053pt;}
.y8{bottom:831.040053pt;}
.y7{bottom:858.880053pt;}
.y6{bottom:886.399920pt;}
.y5{bottom:913.919920pt;}
.y4{bottom:941.440053pt;}
.y3{bottom:969.280053pt;}
.y2{bottom:996.799920pt;}
.hd{height:28.078125pt;}
.h6{height:37.063125pt;}
.h7{height:41.555625pt;}
.hb{height:41.671250pt;}
.ha{height:43.812500pt;}
.h3{height:50.822500pt;}
.h2{height:56.156250pt;}
.hc{height:56.312500pt;}
.h4{height:65.141250pt;}
.h9{height:66.502592pt;}
.h8{height:66.503125pt;}
.h5{height:66.503658pt;}
.h1{height:1089.280000pt;}
.h0{height:1122.666667pt;}
.w1{width:760.000000pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x1{left:16.666667pt;}
.x2{left:96.640000pt;}
.x3{left:161.280000pt;}
.x5{left:442.560000pt;}
.x6{left:478.720000pt;}
.x7{left:486.080000pt;}
.x8{left:573.760000pt;}
.x4{left:663.040000pt;}
}




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