
    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_d77260b3cf4486a738dde23f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_64541aa1aaa5d2a4bd4ed043.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_859ac32324c34c90f608c924.woff')format("woff");}.ff3{font-family:ff3;line-height:0.704000;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_ed7420fe4f8a9e7e3e2b46b5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_7c8ce1e811f6164b0f044b42.woff')format("woff");}.ff5{font-family:ff5;line-height:0.918000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:23.384371px;}
.ls2{letter-spacing:23.456102px;}
.ls3{letter-spacing:32.350771px;}
.ls0{letter-spacing:33.139814px;}
.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;}
}
.ws1b{word-spacing:-35.119596px;}
.ws0{word-spacing:-24.237112px;}
.ws1{word-spacing:-23.245313px;}
.ws17{word-spacing:-19.367325px;}
.ws1f{word-spacing:-18.549688px;}
.ws30{word-spacing:-16.612946px;}
.ws32{word-spacing:-15.608709px;}
.ws31{word-spacing:-15.278746px;}
.ws19{word-spacing:-14.747935px;}
.ws33{word-spacing:-14.346240px;}
.ws21{word-spacing:-14.245816px;}
.ws7{word-spacing:-14.203648px;}
.ws2{word-spacing:-14.082230px;}
.ws20{word-spacing:-14.030623px;}
.ws29{word-spacing:-12.165612px;}
.ws14{word-spacing:-11.735224px;}
.ws34{word-spacing:-11.376568px;}
.wsa{word-spacing:-10.930918px;}
.ws2f{word-spacing:-10.759680px;}
.ws35{word-spacing:-10.472755px;}
.ws16{word-spacing:-10.013676px;}
.ws8{word-spacing:-9.883645px;}
.ws1c{word-spacing:-9.798482px;}
.ws26{word-spacing:-9.655020px;}
.ws25{word-spacing:-9.583288px;}
.ws23{word-spacing:-9.296364px;}
.ws24{word-spacing:-8.865976px;}
.ws4{word-spacing:-8.770916px;}
.ws11{word-spacing:-8.220396px;}
.wse{word-spacing:-8.005202px;}
.ws28{word-spacing:-7.861740px;}
.ws9{word-spacing:-7.723643px;}
.wsc{word-spacing:-7.287890px;}
.ws2d{word-spacing:-6.570578px;}
.ws2e{word-spacing:-6.025421px;}
.ws3{word-spacing:-5.367277px;}
.ws6{word-spacing:-5.236368px;}
.ws27{word-spacing:-5.064223px;}
.ws5{word-spacing:-4.581822px;}
.ws18{word-spacing:-4.562104px;}
.ws1e{word-spacing:-3.988255px;}
.ws15{word-spacing:-3.557868px;}
.ws13{word-spacing:-3.486136px;}
.ws1d{word-spacing:-3.199212px;}
.ws1a{word-spacing:-2.768824px;}
.ws22{word-spacing:-2.410168px;}
.wsf{word-spacing:-1.979781px;}
.ws2c{word-spacing:-1.262469px;}
.ws2a{word-spacing:-1.190738px;}
.wsb{word-spacing:-0.251059px;}
.ws12{word-spacing:0.000000px;}
.ws2b{word-spacing:1.219430px;}
.ws10{word-spacing:25.206344px;}
.wsd{word-spacing:58.101975px;}
._2{margin-left:-11.653650px;}
._3{margin-left:-6.972253px;}
._c{margin-left:-5.432732px;}
._0{margin-left:-3.843225px;}
._1c{margin-left:-2.841198px;}
._5{margin-left:-1.832729px;}
._13{width:1.177959px;}
._4{width:2.324084px;}
._d{width:3.843225px;}
._1a{width:5.615006px;}
._1e{width:9.755443px;}
._14{width:17.803670px;}
._a{width:19.570925px;}
._15{width:22.144347px;}
._1d{width:26.449765px;}
._6{width:28.669115px;}
._8{width:30.631861px;}
._b{width:31.777762px;}
._f{width:33.547108px;}
._7{width:35.410939px;}
._12{width:36.460949px;}
._17{width:39.100670px;}
._18{width:40.375905px;}
._1b{width:41.540938px;}
._9{width:45.883675px;}
._19{width:51.216077px;}
._e{width:55.846322px;}
._11{width:57.783065px;}
._16{width:58.932671px;}
._1{width:61.987500px;}
._10{width:116.203950px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs4{font-size:103.292400px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y15{bottom:63.168000px;}
.y42{bottom:108.000000px;}
.y14{bottom:137.074500px;}
.y41{bottom:143.862000px;}
.y13{bottom:172.936500px;}
.y40{bottom:192.171000px;}
.y12{bottom:208.798500px;}
.y3f{bottom:228.033000px;}
.y2b{bottom:257.143500px;}
.y11{bottom:262.419000px;}
.y3e{bottom:276.343500px;}
.y2a{bottom:293.004000px;}
.y3d{bottom:312.204000px;}
.y29{bottom:328.866000px;}
.y10{bottom:343.852500px;}
.y3c{bottom:360.514500px;}
.y28{bottom:364.728000px;}
.yf{bottom:379.714500px;}
.y27{bottom:400.590000px;}
.y3b{bottom:408.823500px;}
.ye{bottom:433.509000px;}
.y26{bottom:436.452000px;}
.y3a{bottom:444.685500px;}
.yd{bottom:467.145000px;}
.y25{bottom:472.312500px;}
.y39{bottom:492.996000px;}
.yc{bottom:500.781000px;}
.y24{bottom:525.933000px;}
.y38{bottom:528.858000px;}
.yb{bottom:534.417000px;}
.ya{bottom:568.053000px;}
.y37{bottom:582.477000px;}
.y9{bottom:601.689000px;}
.y23{bottom:607.368000px;}
.y8{bottom:635.323500px;}
.y22{bottom:643.230000px;}
.y36{bottom:662.622000px;}
.y7{bottom:668.959500px;}
.y21{bottom:679.092000px;}
.y35{bottom:698.484000px;}
.y6{bottom:712.614000px;}
.y20{bottom:714.952500px;}
.y34{bottom:734.346000px;}
.y1f{bottom:750.814500px;}
.y33{bottom:770.208000px;}
.y1e{bottom:786.676500px;}
.y5{bottom:792.015000px;}
.y1d{bottom:822.538500px;}
.y32{bottom:823.828500px;}
.y4{bottom:845.436000px;}
.y1c{bottom:858.400500px;}
.y31{bottom:903.973500px;}
.y1b{bottom:912.021000px;}
.y3{bottom:916.293000px;}
.y30{bottom:939.835500px;}
.y2f{bottom:975.696000px;}
.y2{bottom:978.123000px;}
.y1a{bottom:993.454500px;}
.y2e{bottom:1011.558000px;}
.y19{bottom:1029.316500px;}
.y1{bottom:1039.953000px;}
.y2d{bottom:1047.420000px;}
.y18{bottom:1065.178500px;}
.y2c{bottom:1083.282000px;}
.y17{bottom:1101.040500px;}
.y16{bottom:1136.902500px;}
.h4{height:45.687311px;}
.h5{height:49.090950px;}
.h6{height:53.798400px;}
.h3{height:64.557900px;}
.h7{height:72.304680px;}
.h2{height:86.782500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x2{left:124.134000px;}
.xa{left:125.554500px;}
.x8{left:134.338500px;}
.x3{left:151.185000px;}
.x7{left:176.443500px;}
.x4{left:349.681500px;}
.x5{left:384.708000px;}
.x6{left:410.457000px;}
.x9{left:442.066500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:20.786108pt;}
.ls2{letter-spacing:20.849869pt;}
.ls3{letter-spacing:28.756241pt;}
.ls0{letter-spacing:29.457613pt;}
.ws1b{word-spacing:-31.217418pt;}
.ws0{word-spacing:-21.544100pt;}
.ws1{word-spacing:-20.662500pt;}
.ws17{word-spacing:-17.215400pt;}
.ws1f{word-spacing:-16.488612pt;}
.ws30{word-spacing:-14.767063pt;}
.ws32{word-spacing:-13.874408pt;}
.ws31{word-spacing:-13.581107pt;}
.ws19{word-spacing:-13.109275pt;}
.ws33{word-spacing:-12.752213pt;}
.ws21{word-spacing:-12.662948pt;}
.ws7{word-spacing:-12.625465pt;}
.ws2{word-spacing:-12.517538pt;}
.ws20{word-spacing:-12.471665pt;}
.ws29{word-spacing:-10.813877pt;}
.ws14{word-spacing:-10.431311pt;}
.ws34{word-spacing:-10.112505pt;}
.wsa{word-spacing:-9.716372pt;}
.ws2f{word-spacing:-9.564160pt;}
.ws35{word-spacing:-9.309116pt;}
.ws16{word-spacing:-8.901045pt;}
.ws8{word-spacing:-8.785462pt;}
.ws1c{word-spacing:-8.709762pt;}
.ws26{word-spacing:-8.582240pt;}
.ws25{word-spacing:-8.518479pt;}
.ws23{word-spacing:-8.263434pt;}
.ws24{word-spacing:-7.880868pt;}
.ws4{word-spacing:-7.796370pt;}
.ws11{word-spacing:-7.307018pt;}
.wse{word-spacing:-7.115735pt;}
.ws28{word-spacing:-6.988213pt;}
.ws9{word-spacing:-6.865460pt;}
.wsc{word-spacing:-6.478124pt;}
.ws2d{word-spacing:-5.840514pt;}
.ws2e{word-spacing:-5.355930pt;}
.ws3{word-spacing:-4.770913pt;}
.ws6{word-spacing:-4.654549pt;}
.ws27{word-spacing:-4.501531pt;}
.ws5{word-spacing:-4.072731pt;}
.ws18{word-spacing:-4.055204pt;}
.ws1e{word-spacing:-3.545115pt;}
.ws15{word-spacing:-3.162549pt;}
.ws13{word-spacing:-3.098788pt;}
.ws1d{word-spacing:-2.843744pt;}
.ws1a{word-spacing:-2.461177pt;}
.ws22{word-spacing:-2.142372pt;}
.wsf{word-spacing:-1.759805pt;}
.ws2c{word-spacing:-1.122195pt;}
.ws2a{word-spacing:-1.058434pt;}
.wsb{word-spacing:-0.223164pt;}
.ws12{word-spacing:0.000000pt;}
.ws2b{word-spacing:1.083938pt;}
.ws10{word-spacing:22.405639pt;}
.wsd{word-spacing:51.646200pt;}
._2{margin-left:-10.358800pt;}
._3{margin-left:-6.197558pt;}
._c{margin-left:-4.829095pt;}
._0{margin-left:-3.416200pt;}
._1c{margin-left:-2.525509pt;}
._5{margin-left:-1.629092pt;}
._13{width:1.047075pt;}
._4{width:2.065853pt;}
._d{width:3.416200pt;}
._1a{width:4.991116pt;}
._1e{width:8.671505pt;}
._14{width:15.825485pt;}
._a{width:17.396378pt;}
._15{width:19.683864pt;}
._1d{width:23.510902pt;}
._6{width:25.483658pt;}
._8{width:27.228321pt;}
._b{width:28.246900pt;}
._f{width:29.819652pt;}
._7{width:31.476390pt;}
._12{width:32.409732pt;}
._17{width:34.756151pt;}
._18{width:35.889693pt;}
._1b{width:36.925278pt;}
._9{width:40.785489pt;}
._19{width:45.525402pt;}
._e{width:49.641175pt;}
._11{width:51.362724pt;}
._16{width:52.384596pt;}
._1{width:55.100000pt;}
._10{width:103.292400pt;}
.fs2{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs4{font-size:91.815467pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:56.149333pt;}
.y42{bottom:96.000000pt;}
.y14{bottom:121.844000pt;}
.y41{bottom:127.877333pt;}
.y13{bottom:153.721333pt;}
.y40{bottom:170.818667pt;}
.y12{bottom:185.598667pt;}
.y3f{bottom:202.696000pt;}
.y2b{bottom:228.572000pt;}
.y11{bottom:233.261333pt;}
.y3e{bottom:245.638667pt;}
.y2a{bottom:260.448000pt;}
.y3d{bottom:277.514667pt;}
.y29{bottom:292.325333pt;}
.y10{bottom:305.646667pt;}
.y3c{bottom:320.457333pt;}
.y28{bottom:324.202667pt;}
.yf{bottom:337.524000pt;}
.y27{bottom:356.080000pt;}
.y3b{bottom:363.398667pt;}
.ye{bottom:385.341333pt;}
.y26{bottom:387.957333pt;}
.y3a{bottom:395.276000pt;}
.yd{bottom:415.240000pt;}
.y25{bottom:419.833333pt;}
.y39{bottom:438.218667pt;}
.yc{bottom:445.138667pt;}
.y24{bottom:467.496000pt;}
.y38{bottom:470.096000pt;}
.yb{bottom:475.037333pt;}
.ya{bottom:504.936000pt;}
.y37{bottom:517.757333pt;}
.y9{bottom:534.834667pt;}
.y23{bottom:539.882667pt;}
.y8{bottom:564.732000pt;}
.y22{bottom:571.760000pt;}
.y36{bottom:588.997333pt;}
.y7{bottom:594.630667pt;}
.y21{bottom:603.637333pt;}
.y35{bottom:620.874667pt;}
.y6{bottom:633.434667pt;}
.y20{bottom:635.513333pt;}
.y34{bottom:652.752000pt;}
.y1f{bottom:667.390667pt;}
.y33{bottom:684.629333pt;}
.y1e{bottom:699.268000pt;}
.y5{bottom:704.013333pt;}
.y1d{bottom:731.145333pt;}
.y32{bottom:732.292000pt;}
.y4{bottom:751.498667pt;}
.y1c{bottom:763.022667pt;}
.y31{bottom:803.532000pt;}
.y1b{bottom:810.685333pt;}
.y3{bottom:814.482667pt;}
.y30{bottom:835.409333pt;}
.y2f{bottom:867.285333pt;}
.y2{bottom:869.442667pt;}
.y1a{bottom:883.070667pt;}
.y2e{bottom:899.162667pt;}
.y19{bottom:914.948000pt;}
.y1{bottom:924.402667pt;}
.y2d{bottom:931.040000pt;}
.y18{bottom:946.825333pt;}
.y2c{bottom:962.917333pt;}
.y17{bottom:978.702667pt;}
.y16{bottom:1010.580000pt;}
.h4{height:40.610943pt;}
.h5{height:43.636400pt;}
.h6{height:47.820800pt;}
.h3{height:57.384800pt;}
.h7{height:64.270827pt;}
.h2{height:77.140000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x2{left:110.341333pt;}
.xa{left:111.604000pt;}
.x8{left:119.412000pt;}
.x3{left:134.386667pt;}
.x7{left:156.838667pt;}
.x4{left:310.828000pt;}
.x5{left:341.962667pt;}
.x6{left:364.850667pt;}
.x9{left:392.948000pt;}
}




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