
    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_7f22f2a30f120d84550b996e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;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_5f4c57b12b6b07667ca072d2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952000;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_5b50395b7d3f4ae268301463.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.888000;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_938852b8a6a194a225a96f2c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.686000;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);}
.v1{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:14.942100px;}
.ls0{letter-spacing:14.948100px;}
.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;}
}
.ws2{word-spacing:-14.943900px;}
.ws33{word-spacing:-11.955150px;}
.ws13{word-spacing:-3.526760px;}
.ws1f{word-spacing:-3.227882px;}
.wsf{word-spacing:-2.809453px;}
.ws20{word-spacing:-2.630126px;}
.ws2c{word-spacing:-1.673717px;}
.ws0{word-spacing:-1.434614px;}
.wsd{word-spacing:-0.956410px;}
.ws1c{word-spacing:-0.478205px;}
.ws24{word-spacing:-0.418429px;}
.ws1b{word-spacing:-0.179327px;}
.ws28{word-spacing:-0.053798px;}
.ws1{word-spacing:0.000000px;}
.ws16{word-spacing:0.239102px;}
.ws4{word-spacing:0.358654px;}
.ws32{word-spacing:0.478206px;}
.ws30{word-spacing:0.812950px;}
.ws18{word-spacing:1.315063px;}
.ws7{word-spacing:1.554166px;}
.ws19{word-spacing:1.613941px;}
.ws27{word-spacing:1.775347px;}
.ws15{word-spacing:1.853044px;}
.ws26{word-spacing:1.972595px;}
.ws14{word-spacing:2.151922px;}
.ws35{word-spacing:2.247568px;}
.ws34{word-spacing:2.534492px;}
.ws1e{word-spacing:2.749678px;}
.ws31{word-spacing:2.869236px;}
.ws2b{word-spacing:3.168107px;}
.wse{word-spacing:3.407209px;}
.ws3{word-spacing:3.586536px;}
.ws5{word-spacing:3.706087px;}
.ws1a{word-spacing:3.885414px;}
.ws22{word-spacing:3.945190px;}
.ws6{word-spacing:4.184292px;}
.ws23{word-spacing:4.483170px;}
.ws9{word-spacing:4.542946px;}
.ws8{word-spacing:4.602721px;}
.ws17{word-spacing:4.722272px;}
.ws2f{word-spacing:4.973342px;}
.ws2e{word-spacing:5.260253px;}
.wsa{word-spacing:5.320028px;}
.wsb{word-spacing:5.499355px;}
.ws10{word-spacing:5.858009px;}
.ws1d{word-spacing:5.917784px;}
.ws2d{word-spacing:6.336214px;}
.ws25{word-spacing:6.754643px;}
.ws2a{word-spacing:7.173072px;}
.ws12{word-spacing:7.531726px;}
.wsc{word-spacing:7.651277px;}
.ws21{word-spacing:12.253998px;}
.ws29{word-spacing:13.395802px;}
.ws11{word-spacing:20.752424px;}
._2{margin-left:-7.173072px;}
._3{margin-left:-4.782048px;}
._1{margin-left:-2.988780px;}
._0{margin-left:-1.075961px;}
._6{width:3.070872px;}
._11{width:4.213738px;}
._4{width:5.590589px;}
._5{width:7.315660px;}
._10{width:13.318139px;}
._e{width:15.780758px;}
._f{width:16.796944px;}
._d{width:18.528592px;}
._8{width:20.263928px;}
._b{width:21.818094px;}
._c{width:24.029791px;}
._7{width:30.067127px;}
._9{width:31.740844px;}
._a{width:34.012316px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs0{font-size:59.775600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:125.247000px;}
.y29{bottom:170.079000px;}
.y28{bottom:188.011500px;}
.y27{bottom:205.944000px;}
.y4e{bottom:208.330500px;}
.y26{bottom:223.876500px;}
.y4d{bottom:226.263000px;}
.y4c{bottom:249.372000px;}
.y25{bottom:250.776000px;}
.y24{bottom:268.708500px;}
.y23{bottom:286.641000px;}
.y4b{bottom:290.467500px;}
.y22{bottom:304.575000px;}
.y4a{bottom:304.665000px;}
.y21{bottom:322.507500px;}
.y49{bottom:327.828000px;}
.y20{bottom:340.440000px;}
.y48{bottom:342.024000px;}
.y1f{bottom:358.372500px;}
.y47{bottom:365.188500px;}
.y46{bottom:379.384500px;}
.y1e{bottom:385.272000px;}
.y45{bottom:402.547500px;}
.y1d{bottom:403.204500px;}
.y44{bottom:416.745000px;}
.y1c{bottom:421.137000px;}
.y1b{bottom:439.069500px;}
.y43{bottom:439.908000px;}
.y42{bottom:454.104000px;}
.y1a{bottom:465.969000px;}
.y19{bottom:483.901500px;}
.y41{bottom:486.234000px;}
.y18{bottom:501.834000px;}
.y40{bottom:504.166500px;}
.y17{bottom:519.768000px;}
.y3f{bottom:531.066000px;}
.y3e{bottom:548.998500px;}
.y16{bottom:552.945000px;}
.y3d{bottom:566.931000px;}
.y3c{bottom:584.863500px;}
.y3b{bottom:602.797500px;}
.y3a{bottom:620.730000px;}
.y39{bottom:656.137500px;}
.y38{bottom:672.576000px;}
.y15{bottom:688.785000px;}
.y14{bottom:706.717500px;}
.y13{bottom:724.650000px;}
.y12{bottom:754.138500px;}
.y11{bottom:798.970500px;}
.y10{bottom:816.903000px;}
.yf{bottom:834.835500px;}
.ye{bottom:861.735000px;}
.yd{bottom:879.667500px;}
.yc{bottom:897.600000px;}
.yb{bottom:915.532500px;}
.y37{bottom:933.514500px;}
.ya{bottom:942.432000px;}
.y36{bottom:951.448500px;}
.y9{bottom:960.364500px;}
.y35{bottom:969.381000px;}
.y8{bottom:978.297000px;}
.y34{bottom:987.313500px;}
.y7{bottom:996.229500px;}
.y33{bottom:1005.246000px;}
.y32{bottom:1023.178500px;}
.y6{bottom:1025.718000px;}
.y31{bottom:1041.111000px;}
.y5{bottom:1066.020000px;}
.y30{bottom:1068.010500px;}
.y4{bottom:1083.952500px;}
.y2f{bottom:1085.943000px;}
.y2e{bottom:1103.877000px;}
.y3{bottom:1110.852000px;}
.y2d{bottom:1121.809500px;}
.y2c{bottom:1139.742000px;}
.y2{bottom:1149.565500px;}
.y2b{bottom:1162.851000px;}
.y1{bottom:1167.499500px;}
.h7{height:35.100320px;}
.h6{height:36.744307px;}
.h2{height:42.620003px;}
.h3{height:43.334003px;}
.h4{height:43.875290px;}
.h5{height:44.175290px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:178.582500px;}
.x2{left:243.768000px;}
.x7{left:276.687000px;}
.x8{left:442.720500px;}
.x3{left:462.246000px;}
.x6{left:468.133500px;}
.x9{left:568.483500px;}
.x4{left:586.251000px;}
.x5{left:663.046500px;}
@media print{
.v1{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:13.281867pt;}
.ls0{letter-spacing:13.287200pt;}
.ws2{word-spacing:-13.283467pt;}
.ws33{word-spacing:-10.626800pt;}
.ws13{word-spacing:-3.134898pt;}
.ws1f{word-spacing:-2.869229pt;}
.wsf{word-spacing:-2.497292pt;}
.ws20{word-spacing:-2.337890pt;}
.ws2c{word-spacing:-1.487748pt;}
.ws0{word-spacing:-1.275213pt;}
.wsd{word-spacing:-0.850142pt;}
.ws1c{word-spacing:-0.425071pt;}
.ws24{word-spacing:-0.371937pt;}
.ws1b{word-spacing:-0.159402pt;}
.ws28{word-spacing:-0.047821pt;}
.ws1{word-spacing:0.000000pt;}
.ws16{word-spacing:0.212535pt;}
.ws4{word-spacing:0.318803pt;}
.ws32{word-spacing:0.425072pt;}
.ws30{word-spacing:0.722622pt;}
.ws18{word-spacing:1.168945pt;}
.ws7{word-spacing:1.381481pt;}
.ws19{word-spacing:1.434614pt;}
.ws27{word-spacing:1.578086pt;}
.ws15{word-spacing:1.647150pt;}
.ws26{word-spacing:1.753418pt;}
.ws14{word-spacing:1.912819pt;}
.ws35{word-spacing:1.997838pt;}
.ws34{word-spacing:2.252882pt;}
.ws1e{word-spacing:2.444158pt;}
.ws31{word-spacing:2.550432pt;}
.ws2b{word-spacing:2.816095pt;}
.wse{word-spacing:3.028630pt;}
.ws3{word-spacing:3.188032pt;}
.ws5{word-spacing:3.294300pt;}
.ws1a{word-spacing:3.453701pt;}
.ws22{word-spacing:3.506835pt;}
.ws6{word-spacing:3.719371pt;}
.ws23{word-spacing:3.985040pt;}
.ws9{word-spacing:4.038174pt;}
.ws8{word-spacing:4.091308pt;}
.ws17{word-spacing:4.197575pt;}
.ws2f{word-spacing:4.420749pt;}
.ws2e{word-spacing:4.675780pt;}
.wsa{word-spacing:4.728914pt;}
.wsb{word-spacing:4.888316pt;}
.ws10{word-spacing:5.207119pt;}
.ws1d{word-spacing:5.260253pt;}
.ws2d{word-spacing:5.632190pt;}
.ws25{word-spacing:6.004127pt;}
.ws2a{word-spacing:6.376064pt;}
.ws12{word-spacing:6.694867pt;}
.wsc{word-spacing:6.801135pt;}
.ws21{word-spacing:10.892443pt;}
.ws29{word-spacing:11.907379pt;}
.ws11{word-spacing:18.446599pt;}
._2{margin-left:-6.376064pt;}
._3{margin-left:-4.250709pt;}
._1{margin-left:-2.656693pt;}
._0{margin-left:-0.956410pt;}
._6{width:2.729664pt;}
._11{width:3.745545pt;}
._4{width:4.969412pt;}
._5{width:6.502809pt;}
._10{width:11.838346pt;}
._e{width:14.027341pt;}
._f{width:14.930617pt;}
._d{width:16.469859pt;}
._8{width:18.012381pt;}
._b{width:19.393861pt;}
._c{width:21.359814pt;}
._7{width:26.726335pt;}
._9{width:28.214083pt;}
._a{width:30.233170pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs0{font-size:53.133867pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:111.330667pt;}
.y29{bottom:151.181333pt;}
.y28{bottom:167.121333pt;}
.y27{bottom:183.061333pt;}
.y4e{bottom:185.182667pt;}
.y26{bottom:199.001333pt;}
.y4d{bottom:201.122667pt;}
.y4c{bottom:221.664000pt;}
.y25{bottom:222.912000pt;}
.y24{bottom:238.852000pt;}
.y23{bottom:254.792000pt;}
.y4b{bottom:258.193333pt;}
.y22{bottom:270.733333pt;}
.y4a{bottom:270.813333pt;}
.y21{bottom:286.673333pt;}
.y49{bottom:291.402667pt;}
.y20{bottom:302.613333pt;}
.y48{bottom:304.021333pt;}
.y1f{bottom:318.553333pt;}
.y47{bottom:324.612000pt;}
.y46{bottom:337.230667pt;}
.y1e{bottom:342.464000pt;}
.y45{bottom:357.820000pt;}
.y1d{bottom:358.404000pt;}
.y44{bottom:370.440000pt;}
.y1c{bottom:374.344000pt;}
.y1b{bottom:390.284000pt;}
.y43{bottom:391.029333pt;}
.y42{bottom:403.648000pt;}
.y1a{bottom:414.194667pt;}
.y19{bottom:430.134667pt;}
.y41{bottom:432.208000pt;}
.y18{bottom:446.074667pt;}
.y40{bottom:448.148000pt;}
.y17{bottom:462.016000pt;}
.y3f{bottom:472.058667pt;}
.y3e{bottom:487.998667pt;}
.y16{bottom:491.506667pt;}
.y3d{bottom:503.938667pt;}
.y3c{bottom:519.878667pt;}
.y3b{bottom:535.820000pt;}
.y3a{bottom:551.760000pt;}
.y39{bottom:583.233333pt;}
.y38{bottom:597.845333pt;}
.y15{bottom:612.253333pt;}
.y14{bottom:628.193333pt;}
.y13{bottom:644.133333pt;}
.y12{bottom:670.345333pt;}
.y11{bottom:710.196000pt;}
.y10{bottom:726.136000pt;}
.yf{bottom:742.076000pt;}
.ye{bottom:765.986667pt;}
.yd{bottom:781.926667pt;}
.yc{bottom:797.866667pt;}
.yb{bottom:813.806667pt;}
.y37{bottom:829.790667pt;}
.ya{bottom:837.717333pt;}
.y36{bottom:845.732000pt;}
.y9{bottom:853.657333pt;}
.y35{bottom:861.672000pt;}
.y8{bottom:869.597333pt;}
.y34{bottom:877.612000pt;}
.y7{bottom:885.537333pt;}
.y33{bottom:893.552000pt;}
.y32{bottom:909.492000pt;}
.y6{bottom:911.749333pt;}
.y31{bottom:925.432000pt;}
.y5{bottom:947.573333pt;}
.y30{bottom:949.342667pt;}
.y4{bottom:963.513333pt;}
.y2f{bottom:965.282667pt;}
.y2e{bottom:981.224000pt;}
.y3{bottom:987.424000pt;}
.y2d{bottom:997.164000pt;}
.y2c{bottom:1013.104000pt;}
.y2{bottom:1021.836000pt;}
.y2b{bottom:1033.645333pt;}
.y1{bottom:1037.777333pt;}
.h7{height:31.200285pt;}
.h6{height:32.661606pt;}
.h2{height:37.884447pt;}
.h3{height:38.519114pt;}
.h4{height:39.000258pt;}
.h5{height:39.266925pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:158.740000pt;}
.x2{left:216.682667pt;}
.x7{left:245.944000pt;}
.x8{left:393.529333pt;}
.x3{left:410.885333pt;}
.x6{left:416.118667pt;}
.x9{left:505.318667pt;}
.x4{left:521.112000pt;}
.x5{left:589.374667pt;}
}




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