
    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_9ac7929bc4359023fbab6163.woff')format("woff");}.ff1{font-family:ff1;line-height:0.982000;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_2b7d23538aa90f5a366ab4db.woff')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_4c5e966e9ab628769783b123.woff')format("woff");}.ff3{font-family:ff3;line-height:1.029000;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_e6efd85d835a4243dca13df8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_e0810bb8a625be62c20df7d6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_fa571e5763286e0c5b03ce01.woff')format("woff");}.ff6{font-family:ff6;line-height:0.681641;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:-2.189311px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.695702px;}
.v1{vertical-align:17.823571px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws0{word-spacing:-74.591998px;}
.ws1{word-spacing:-46.619851px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:1988.883656px;}
._1f{margin-left:-20.550347px;}
._5{margin-left:-14.023761px;}
._6{margin-left:-12.861156px;}
._3{margin-left:-10.532665px;}
._4{margin-left:-9.483694px;}
._7{margin-left:-8.293767px;}
._2{margin-left:-7.200000px;}
._8{margin-left:-5.909568px;}
._1{margin-left:-4.500000px;}
._c{margin-left:-3.357700px;}
._0{margin-left:-1.080000px;}
._9{width:1.296000px;}
._e{width:2.304000px;}
._d{width:3.384000px;}
._1d{width:4.392001px;}
._1b{width:6.660000px;}
._1c{width:10.007997px;}
._11{width:44.100000px;}
._10{width:45.180000px;}
._f{width:48.600000px;}
._15{width:92.340000px;}
._14{width:93.420000px;}
._16{width:95.220000px;}
._13{width:192.420000px;}
._12{width:193.680000px;}
._b{width:709.343985px;}
._19{width:1023.701279px;}
._1a{width:1165.963057px;}
._1e{width:1287.021343px;}
._a{width:1624.354814px;}
._17{width:1870.580900px;}
._18{width:2546.059537px;}
.fc5{color:transparent;}
.fc4{color:rgb(38,87,167);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(107,162,220);}
.fc0{color:rgb(0,80,155);}
.fs1{font-size:100.890366px;}
.fs6{font-size:179.999424px;}
.fs9{font-size:179.999994px;}
.fs0{font-size:180.000000px;}
.fs8{font-size:192.000198px;}
.fs7{font-size:215.999994px;}
.fs2{font-size:216.000000px;}
.fs5{font-size:287.999994px;}
.fs3{font-size:359.999994px;}
.fs4{font-size:401.999832px;}
.y0{bottom:0.000000px;}
.y27{bottom:42.297402px;}
.y1{bottom:47.540700px;}
.y2{bottom:204.980796px;}
.y28{bottom:336.607299px;}
.y2e{bottom:421.691953px;}
.y3{bottom:442.187960px;}
.y2f{bottom:474.708669px;}
.y2d{bottom:529.692058px;}
.y2c{bottom:583.663805px;}
.y2b{bottom:641.487855px;}
.y2a{bottom:699.032681px;}
.y29{bottom:756.301658px;}
.y9{bottom:850.507556px;}
.y1e{bottom:948.008466px;}
.y1d{bottom:1015.381564px;}
.y1c{bottom:1082.312186px;}
.y3c{bottom:1121.874953px;}
.ya{bottom:1170.590089px;}
.y3b{bottom:1186.606912px;}
.y1a{bottom:1254.554577px;}
.y3a{bottom:1712.750389px;}
.y36{bottom:1769.931419px;}
.y35{bottom:1823.931418px;}
.y37{bottom:1883.173520px;}
.y1b{bottom:1965.859784px;}
.y42{bottom:2017.485602px;}
.y39{bottom:2035.911220px;}
.y19{bottom:2066.285579px;}
.y41{bottom:2071.485600px;}
.y38{bottom:2089.911219px;}
.y33{bottom:2165.216484px;}
.y3d{bottom:2170.445304px;}
.y40{bottom:2228.447936px;}
.y30{bottom:2237.209552px;}
.y32{bottom:2237.360320px;}
.y3f{bottom:2299.981626px;}
.y31{bottom:2305.118817px;}
.y34{bottom:2305.269585px;}
.y18{bottom:2480.724298px;}
.y8{bottom:2574.646472px;}
.y7{bottom:2691.849432px;}
.y44{bottom:2766.868989px;}
.y16{bottom:2788.400036px;}
.y43{bottom:2821.881174px;}
.y23{bottom:2904.092532px;}
.y22{bottom:3105.574302px;}
.y21{bottom:3280.972129px;}
.y20{bottom:3468.258812px;}
.y17{bottom:3551.123500px;}
.y3e{bottom:3566.746305px;}
.y25{bottom:3643.407162px;}
.y15{bottom:3648.768717px;}
.y24{bottom:3700.972384px;}
.y14{bottom:3705.018717px;}
.y13{bottom:3761.268717px;}
.y26{bottom:3765.494820px;}
.y12{bottom:3817.518717px;}
.y11{bottom:3873.768717px;}
.y1f{bottom:3928.587739px;}
.y10{bottom:3930.018717px;}
.yf{bottom:3986.268717px;}
.y6{bottom:4031.152965px;}
.ye{bottom:4042.518717px;}
.yd{bottom:4149.253671px;}
.y4{bottom:4176.414706px;}
.yc{bottom:4198.633363px;}
.yb{bottom:4248.013055px;}
.y5{bottom:4338.328078px;}
.h3{height:77.145661px;}
.ha{height:137.636719px;}
.h11{height:138.239558px;}
.h2{height:138.240000px;}
.h9{height:139.139555px;}
.hf{height:139.139995px;}
.h10{height:141.293572px;}
.hd{height:147.456152px;}
.hc{height:149.151854px;}
.h4{height:165.164062px;}
.hb{height:165.887995px;}
.h7{height:222.623995px;}
.h8{height:240.447566px;}
.h5{height:278.279995px;}
.h6{height:310.745870px;}
.he{height:5040.491698px;}
.h0{height:5055.590699px;}
.h1{height:5055.750000px;}
.w2{width:3528.462018px;}
.w0{width:3575.905518px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.xf{left:47.443500px;}
.x10{left:117.099696px;}
.x4{left:156.522549px;}
.x1{left:157.735555px;}
.x8{left:159.798894px;}
.x3{left:161.574804px;}
.x13{left:201.700220px;}
.x11{left:206.135594px;}
.x15{left:1313.541913px;}
.x16{left:1367.550282px;}
.x5{left:1888.491981px;}
.x7{left:1891.453310px;}
.xb{left:1892.528339px;}
.x14{left:1950.801540px;}
.xe{left:2062.019686px;}
.xc{left:2064.462545px;}
.xd{left:2065.726674px;}
.x6{left:2467.037053px;}
.x9{left:2468.955913px;}
.xa{left:2470.795909px;}
.x17{left:2508.354665px;}
.x12{left:2523.028377px;}
.x18{left:2986.455366px;}
.x2{left:3119.763964px;}
@media print{
.v2{vertical-align:-1.946054pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.507290pt;}
.v1{vertical-align:15.843174pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-66.303999pt;}
.ws1{word-spacing:-41.439867pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:1767.896583pt;}
._1f{margin-left:-18.266975pt;}
._5{margin-left:-12.465565pt;}
._6{margin-left:-11.432139pt;}
._3{margin-left:-9.362368pt;}
._4{margin-left:-8.429951pt;}
._7{margin-left:-7.372238pt;}
._2{margin-left:-6.400000pt;}
._8{margin-left:-5.252950pt;}
._1{margin-left:-4.000000pt;}
._c{margin-left:-2.984622pt;}
._0{margin-left:-0.960000pt;}
._9{width:1.152000pt;}
._e{width:2.048000pt;}
._d{width:3.008000pt;}
._1d{width:3.904001pt;}
._1b{width:5.920000pt;}
._1c{width:8.895997pt;}
._11{width:39.200000pt;}
._10{width:40.160000pt;}
._f{width:43.200000pt;}
._15{width:82.080000pt;}
._14{width:83.040000pt;}
._16{width:84.640000pt;}
._13{width:171.040000pt;}
._12{width:172.160000pt;}
._b{width:630.527987pt;}
._19{width:909.956692pt;}
._1a{width:1036.411606pt;}
._1e{width:1144.018972pt;}
._a{width:1443.870946pt;}
._17{width:1662.738578pt;}
._18{width:2263.164033pt;}
.fs1{font-size:89.680325pt;}
.fs6{font-size:159.999488pt;}
.fs9{font-size:159.999995pt;}
.fs0{font-size:160.000000pt;}
.fs8{font-size:170.666843pt;}
.fs7{font-size:191.999995pt;}
.fs2{font-size:192.000000pt;}
.fs5{font-size:255.999995pt;}
.fs3{font-size:319.999995pt;}
.fs4{font-size:357.333184pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:37.597691pt;}
.y1{bottom:42.258400pt;}
.y2{bottom:182.205152pt;}
.y28{bottom:299.206488pt;}
.y2e{bottom:374.837292pt;}
.y3{bottom:393.055964pt;}
.y2f{bottom:421.963261pt;}
.y2d{bottom:470.837385pt;}
.y2c{bottom:518.812271pt;}
.y2b{bottom:570.211427pt;}
.y2a{bottom:621.362383pt;}
.y29{bottom:672.268140pt;}
.y9{bottom:756.006716pt;}
.y1e{bottom:842.674192pt;}
.y1d{bottom:902.561390pt;}
.y1c{bottom:962.055277pt;}
.y3c{bottom:997.222181pt;}
.ya{bottom:1040.524524pt;}
.y3b{bottom:1054.761699pt;}
.y1a{bottom:1115.159624pt;}
.y3a{bottom:1522.444790pt;}
.y36{bottom:1573.272373pt;}
.y35{bottom:1621.272372pt;}
.y37{bottom:1673.932018pt;}
.y1b{bottom:1747.430919pt;}
.y42{bottom:1793.320535pt;}
.y39{bottom:1809.698862pt;}
.y19{bottom:1836.698292pt;}
.y41{bottom:1841.320534pt;}
.y38{bottom:1857.698861pt;}
.y33{bottom:1924.636875pt;}
.y3d{bottom:1929.284715pt;}
.y40{bottom:1980.842610pt;}
.y30{bottom:1988.630713pt;}
.y32{bottom:1988.764729pt;}
.y3f{bottom:2044.428112pt;}
.y31{bottom:2048.994504pt;}
.y34{bottom:2049.128520pt;}
.y18{bottom:2205.088265pt;}
.y8{bottom:2288.574641pt;}
.y7{bottom:2392.755051pt;}
.y44{bottom:2459.439102pt;}
.y16{bottom:2478.577809pt;}
.y43{bottom:2508.338821pt;}
.y23{bottom:2581.415584pt;}
.y22{bottom:2760.510491pt;}
.y21{bottom:2916.419670pt;}
.y20{bottom:3082.896722pt;}
.y17{bottom:3156.554223pt;}
.y3e{bottom:3170.441160pt;}
.y25{bottom:3238.584144pt;}
.y15{bottom:3243.349971pt;}
.y24{bottom:3289.753231pt;}
.y14{bottom:3293.349971pt;}
.y13{bottom:3343.349971pt;}
.y26{bottom:3347.106507pt;}
.y12{bottom:3393.349971pt;}
.y11{bottom:3443.349971pt;}
.y1f{bottom:3492.077990pt;}
.y10{bottom:3493.349971pt;}
.yf{bottom:3543.349971pt;}
.y6{bottom:3583.247080pt;}
.ye{bottom:3593.349971pt;}
.yd{bottom:3688.225485pt;}
.y4{bottom:3712.368628pt;}
.yc{bottom:3732.118544pt;}
.yb{bottom:3776.011604pt;}
.y5{bottom:3856.291625pt;}
.h3{height:68.573921pt;}
.ha{height:122.343750pt;}
.h11{height:122.879607pt;}
.h2{height:122.880000pt;}
.h9{height:123.679604pt;}
.hf{height:123.679996pt;}
.h10{height:125.594286pt;}
.hd{height:131.072135pt;}
.hc{height:132.579425pt;}
.h4{height:146.812500pt;}
.hb{height:147.455996pt;}
.h7{height:197.887996pt;}
.h8{height:213.731170pt;}
.h5{height:247.359996pt;}
.h6{height:276.218551pt;}
.he{height:4480.437065pt;}
.h0{height:4493.858399pt;}
.h1{height:4494.000000pt;}
.w2{width:3136.410683pt;}
.w0{width:3178.582683pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.xf{left:42.172000pt;}
.x10{left:104.088619pt;}
.x4{left:139.131155pt;}
.x1{left:140.209383pt;}
.x8{left:142.043461pt;}
.x3{left:143.622048pt;}
.x13{left:179.289085pt;}
.x11{left:183.231639pt;}
.x15{left:1167.592812pt;}
.x16{left:1215.600251pt;}
.x5{left:1678.659539pt;}
.x7{left:1681.291831pt;}
.xb{left:1682.247412pt;}
.x14{left:1734.045813pt;}
.xe{left:1832.906388pt;}
.xc{left:1835.077817pt;}
.xd{left:1836.201488pt;}
.x6{left:2192.921825pt;}
.x9{left:2194.627478pt;}
.xa{left:2196.263030pt;}
.x17{left:2229.648591pt;}
.x12{left:2242.691890pt;}
.x18{left:2654.626992pt;}
.x2{left:2773.123524pt;}
}




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