
    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_7aeabb5de1efd4b2152b9320.woff')format("woff");}.ff1{font-family:ff1;line-height:0.946000;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_091bc818d410263d62fc4069.woff')format("woff");}.ff2{font-family:ff2;line-height:0.924000;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_e660ccfb9b8acf233aa4a873.woff')format("woff");}.ff3{font-family:ff3;line-height:0.701000;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_977fa06134d98787120a6763.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_e6930b820815e4244f8b8274.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921213;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);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.014400px;}
.ls1{letter-spacing:-0.013200px;}
.ls3{letter-spacing:-0.011635px;}
.ls4{letter-spacing:-0.008400px;}
.ls9{letter-spacing:-0.007200px;}
.ls0{letter-spacing:-0.006600px;}
.ls7{letter-spacing:-0.006000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.042000px;}
.ls6{letter-spacing:0.108000px;}
.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:-50.040000px;}
.ws17{word-spacing:-20.016000px;}
.ws15{word-spacing:-4.338000px;}
.ws16{word-spacing:-4.332000px;}
.ws3{word-spacing:-1.795200px;}
.ws1d{word-spacing:-1.116000px;}
.ws5{word-spacing:-0.864600px;}
.wsa{word-spacing:-0.607200px;}
.ws2{word-spacing:-0.290400px;}
.ws1c{word-spacing:0.000000px;}
.wse{word-spacing:0.165000px;}
.wsc{word-spacing:0.930600px;}
.ws1a{word-spacing:1.044000px;}
.ws1f{word-spacing:1.108800px;}
.ws11{word-spacing:1.202400px;}
.ws9{word-spacing:1.234200px;}
.ws21{word-spacing:1.626000px;}
.ws20{word-spacing:1.668000px;}
.ws6{word-spacing:1.834800px;}
.ws12{word-spacing:2.001600px;}
.ws14{word-spacing:2.335200px;}
.ws1{word-spacing:2.890800px;}
.ws13{word-spacing:3.851053px;}
.ws1e{word-spacing:4.046400px;}
.ws22{word-spacing:4.082400px;}
.ws24{word-spacing:4.413600px;}
.ws4{word-spacing:4.672800px;}
.ws10{word-spacing:5.004000px;}
.ws23{word-spacing:5.112000px;}
.wsd{word-spacing:5.227200px;}
.ws19{word-spacing:5.702400px;}
.wsf{word-spacing:6.004800px;}
.ws8{word-spacing:6.454800px;}
.ws18{word-spacing:7.660800px;}
.ws1b{word-spacing:8.100000px;}
.ws7{word-spacing:15.503400px;}
.wsb{word-spacing:24.901800px;}
._11{margin-left:-25.987800px;}
._8{margin-left:-9.880200px;}
._b{margin-left:-7.748400px;}
._6{margin-left:-5.887200px;}
._e{margin-left:-4.408800px;}
._1{margin-left:-2.963400px;}
._0{margin-left:-1.940400px;}
._4{width:1.320000px;}
._10{width:2.605800px;}
._f{width:3.656400px;}
._16{width:5.035200px;}
._7{width:6.540600px;}
._3{width:9.325800px;}
._2{width:10.546800px;}
._9{width:11.860200px;}
._c{width:13.398000px;}
._12{width:15.372600px;}
._5{width:16.434000px;}
._a{width:17.569200px;}
._14{width:19.498800px;}
._15{width:20.908800px;}
._d{width:26.195400px;}
._13{width:59.551200px;}
.fc2{color:rgb(248,152,40);}
.fc1{color:rgb(158,28,32);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:116.346000px;}
.fs2{font-size:180.000000px;}
.fs1{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.082500px;}
.y2d{bottom:26.067750px;}
.y12{bottom:30.184950px;}
.y52{bottom:90.998850px;}
.y51{bottom:112.598250px;}
.y2b{bottom:124.304400px;}
.y50{bottom:132.671250px;}
.y2a{bottom:145.904400px;}
.y4f{bottom:150.671250px;}
.y29{bottom:167.504400px;}
.y4e{bottom:168.671250px;}
.y4d{bottom:186.671250px;}
.y28{bottom:189.104400px;}
.y27{bottom:210.704400px;}
.y4c{bottom:217.674750px;}
.y26{bottom:232.304400px;}
.y25{bottom:253.904400px;}
.y4b{bottom:275.275050px;}
.y24{bottom:275.504400px;}
.y4a{bottom:296.875050px;}
.y23{bottom:297.104400px;}
.y49{bottom:318.475050px;}
.y48{bottom:340.075050px;}
.y22{bottom:340.304400px;}
.y21{bottom:361.904400px;}
.y47{bottom:376.150650px;}
.y20{bottom:383.504400px;}
.y46{bottom:397.750650px;}
.y1f{bottom:405.104400px;}
.y45{bottom:419.350650px;}
.y1e{bottom:426.704400px;}
.y44{bottom:440.950650px;}
.y1d{bottom:448.304400px;}
.y43{bottom:462.550650px;}
.y1c{bottom:469.904400px;}
.y42{bottom:484.150650px;}
.y1b{bottom:491.504400px;}
.y1a{bottom:513.104400px;}
.y41{bottom:515.726250px;}
.y19{bottom:534.704400px;}
.y40{bottom:537.326250px;}
.y18{bottom:556.304400px;}
.y3f{bottom:558.926250px;}
.y17{bottom:577.904400px;}
.y3e{bottom:580.526250px;}
.y16{bottom:599.504400px;}
.y3d{bottom:602.126250px;}
.y3c{bottom:623.726250px;}
.y15{bottom:625.080600px;}
.y3b{bottom:645.326250px;}
.y14{bottom:646.680600px;}
.y3a{bottom:666.926250px;}
.y13{bottom:685.758450px;}
.y39{bottom:698.501850px;}
.y38{bottom:720.101850px;}
.y37{bottom:741.701850px;}
.y36{bottom:763.301850px;}
.y10{bottom:763.341000px;}
.yf{bottom:782.840700px;}
.y35{bottom:784.901850px;}
.ye{bottom:802.340400px;}
.y34{bottom:806.501850px;}
.yd{bottom:821.840100px;}
.y33{bottom:828.101850px;}
.yc{bottom:841.339800px;}
.y32{bottom:849.701850px;}
.yb{bottom:860.839500px;}
.y31{bottom:871.301850px;}
.ya{bottom:880.339200px;}
.y30{bottom:892.901850px;}
.y9{bottom:899.838900px;}
.y2f{bottom:914.501850px;}
.y8{bottom:919.338600px;}
.y7{bottom:938.838300px;}
.y2e{bottom:946.079250px;}
.y6{bottom:958.338000px;}
.y5{bottom:977.837700px;}
.y4{bottom:997.337400px;}
.y59{bottom:1002.114900px;}
.y3{bottom:1016.837100px;}
.y58{bottom:1029.190500px;}
.y2{bottom:1036.336800px;}
.y57{bottom:1050.628500px;}
.y56{bottom:1072.228500px;}
.y11{bottom:1090.959750px;}
.y55{bottom:1093.828500px;}
.y54{bottom:1115.428500px;}
.y53{bottom:1151.714100px;}
.y2c{bottom:1210.098300px;}
.h8{height:41.640000px;}
.h7{height:42.960000px;}
.h2{height:47.256000px;}
.h5{height:49.968000px;}
.h9{height:51.552000px;}
.h6{height:80.511432px;}
.h4{height:124.920000px;}
.h3{height:149.904000px;}
.h1{height:1262.835000px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w2{width:892.707000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:42.313050px;}
.x4{left:63.572850px;}
.x2{left:96.312600px;}
.x5{left:546.412800px;}
.x3{left:579.110400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.012800pt;}
.ls1{letter-spacing:-0.011733pt;}
.ls3{letter-spacing:-0.010342pt;}
.ls4{letter-spacing:-0.007467pt;}
.ls9{letter-spacing:-0.006400pt;}
.ls0{letter-spacing:-0.005867pt;}
.ls7{letter-spacing:-0.005333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.037333pt;}
.ls6{letter-spacing:0.096000pt;}
.ws0{word-spacing:-44.480000pt;}
.ws17{word-spacing:-17.792000pt;}
.ws15{word-spacing:-3.856000pt;}
.ws16{word-spacing:-3.850667pt;}
.ws3{word-spacing:-1.595733pt;}
.ws1d{word-spacing:-0.992000pt;}
.ws5{word-spacing:-0.768533pt;}
.wsa{word-spacing:-0.539733pt;}
.ws2{word-spacing:-0.258133pt;}
.ws1c{word-spacing:0.000000pt;}
.wse{word-spacing:0.146667pt;}
.wsc{word-spacing:0.827200pt;}
.ws1a{word-spacing:0.928000pt;}
.ws1f{word-spacing:0.985600pt;}
.ws11{word-spacing:1.068800pt;}
.ws9{word-spacing:1.097067pt;}
.ws21{word-spacing:1.445333pt;}
.ws20{word-spacing:1.482667pt;}
.ws6{word-spacing:1.630933pt;}
.ws12{word-spacing:1.779200pt;}
.ws14{word-spacing:2.075733pt;}
.ws1{word-spacing:2.569600pt;}
.ws13{word-spacing:3.423158pt;}
.ws1e{word-spacing:3.596800pt;}
.ws22{word-spacing:3.628800pt;}
.ws24{word-spacing:3.923200pt;}
.ws4{word-spacing:4.153600pt;}
.ws10{word-spacing:4.448000pt;}
.ws23{word-spacing:4.544000pt;}
.wsd{word-spacing:4.646400pt;}
.ws19{word-spacing:5.068800pt;}
.wsf{word-spacing:5.337600pt;}
.ws8{word-spacing:5.737600pt;}
.ws18{word-spacing:6.809600pt;}
.ws1b{word-spacing:7.200000pt;}
.ws7{word-spacing:13.780800pt;}
.wsb{word-spacing:22.134933pt;}
._11{margin-left:-23.100267pt;}
._8{margin-left:-8.782400pt;}
._b{margin-left:-6.887467pt;}
._6{margin-left:-5.233067pt;}
._e{margin-left:-3.918933pt;}
._1{margin-left:-2.634133pt;}
._0{margin-left:-1.724800pt;}
._4{width:1.173333pt;}
._10{width:2.316267pt;}
._f{width:3.250133pt;}
._16{width:4.475733pt;}
._7{width:5.813867pt;}
._3{width:8.289600pt;}
._2{width:9.374933pt;}
._9{width:10.542400pt;}
._c{width:11.909333pt;}
._12{width:13.664533pt;}
._5{width:14.608000pt;}
._a{width:15.617067pt;}
._14{width:17.332267pt;}
._15{width:18.585600pt;}
._d{width:23.284800pt;}
._13{width:52.934400pt;}
.fs6{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:103.418667pt;}
.fs2{font-size:160.000000pt;}
.fs1{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.073333pt;}
.y2d{bottom:23.171333pt;}
.y12{bottom:26.831067pt;}
.y52{bottom:80.887867pt;}
.y51{bottom:100.087333pt;}
.y2b{bottom:110.492800pt;}
.y50{bottom:117.930000pt;}
.y2a{bottom:129.692800pt;}
.y4f{bottom:133.930000pt;}
.y29{bottom:148.892800pt;}
.y4e{bottom:149.930000pt;}
.y4d{bottom:165.930000pt;}
.y28{bottom:168.092800pt;}
.y27{bottom:187.292800pt;}
.y4c{bottom:193.488667pt;}
.y26{bottom:206.492800pt;}
.y25{bottom:225.692800pt;}
.y4b{bottom:244.688933pt;}
.y24{bottom:244.892800pt;}
.y4a{bottom:263.888933pt;}
.y23{bottom:264.092800pt;}
.y49{bottom:283.088933pt;}
.y48{bottom:302.288933pt;}
.y22{bottom:302.492800pt;}
.y21{bottom:321.692800pt;}
.y47{bottom:334.356133pt;}
.y20{bottom:340.892800pt;}
.y46{bottom:353.556133pt;}
.y1f{bottom:360.092800pt;}
.y45{bottom:372.756133pt;}
.y1e{bottom:379.292800pt;}
.y44{bottom:391.956133pt;}
.y1d{bottom:398.492800pt;}
.y43{bottom:411.156133pt;}
.y1c{bottom:417.692800pt;}
.y42{bottom:430.356133pt;}
.y1b{bottom:436.892800pt;}
.y1a{bottom:456.092800pt;}
.y41{bottom:458.423333pt;}
.y19{bottom:475.292800pt;}
.y40{bottom:477.623333pt;}
.y18{bottom:494.492800pt;}
.y3f{bottom:496.823333pt;}
.y17{bottom:513.692800pt;}
.y3e{bottom:516.023333pt;}
.y16{bottom:532.892800pt;}
.y3d{bottom:535.223333pt;}
.y3c{bottom:554.423333pt;}
.y15{bottom:555.627200pt;}
.y3b{bottom:573.623333pt;}
.y14{bottom:574.827200pt;}
.y3a{bottom:592.823333pt;}
.y13{bottom:609.563067pt;}
.y39{bottom:620.890533pt;}
.y38{bottom:640.090533pt;}
.y37{bottom:659.290533pt;}
.y36{bottom:678.490533pt;}
.y10{bottom:678.525333pt;}
.yf{bottom:695.858400pt;}
.y35{bottom:697.690533pt;}
.ye{bottom:713.191467pt;}
.y34{bottom:716.890533pt;}
.yd{bottom:730.524533pt;}
.y33{bottom:736.090533pt;}
.yc{bottom:747.857600pt;}
.y32{bottom:755.290533pt;}
.yb{bottom:765.190667pt;}
.y31{bottom:774.490533pt;}
.ya{bottom:782.523733pt;}
.y30{bottom:793.690533pt;}
.y9{bottom:799.856800pt;}
.y2f{bottom:812.890533pt;}
.y8{bottom:817.189867pt;}
.y7{bottom:834.522933pt;}
.y2e{bottom:840.959333pt;}
.y6{bottom:851.856000pt;}
.y5{bottom:869.189067pt;}
.y4{bottom:886.522133pt;}
.y59{bottom:890.768800pt;}
.y3{bottom:903.855200pt;}
.y58{bottom:914.836000pt;}
.y2{bottom:921.188267pt;}
.y57{bottom:933.892000pt;}
.y56{bottom:953.092000pt;}
.y11{bottom:969.742000pt;}
.y55{bottom:972.292000pt;}
.y54{bottom:991.492000pt;}
.y53{bottom:1023.745867pt;}
.y2c{bottom:1075.642933pt;}
.h8{height:37.013333pt;}
.h7{height:38.186667pt;}
.h2{height:42.005333pt;}
.h5{height:44.416000pt;}
.h9{height:45.824000pt;}
.h6{height:71.565717pt;}
.h4{height:111.040000pt;}
.h3{height:133.248000pt;}
.h1{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w2{width:793.517333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:37.611600pt;}
.x4{left:56.509200pt;}
.x2{left:85.611200pt;}
.x5{left:485.700267pt;}
.x3{left:514.764800pt;}
}




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