
    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_78aaecb3c6f38955031ce62e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_7b5de36bbddc182e688a3478.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_43c81f9d99983685ba3f0dbd.woff')format("woff");}.ff3{font-family:ff3;line-height:0.679688;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_3cbf3d4315d20dea0bcf2ec3.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899414;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_d88a2703193752a41356a608.woff')format("woff");}.ff5{font-family:ff5;line-height:0.907715;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{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:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.982000px;}
.v4{vertical-align:23.228400px;}
.v1{vertical-align:26.640000px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006000px;}
.ls4{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.441000px;}
.lsa{letter-spacing:0.504000px;}
.ls8{letter-spacing:0.570000px;}
.ls0{letter-spacing:4.200000px;}
.ls1{letter-spacing:6.600000px;}
.ls2{letter-spacing:10.200000px;}
.lsb{letter-spacing:38.923200px;}
.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:-20.304000px;}
.ws5{word-spacing:-17.703000px;}
.ws3{word-spacing:-16.860000px;}
.ws1{word-spacing:-12.139200px;}
.ws4{word-spacing:-10.621800px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-16.983000px;}
._8{margin-left:-12.600000px;}
._5{margin-left:-10.302000px;}
._14{margin-left:-9.072000px;}
._0{margin-left:-7.350000px;}
._11{margin-left:-6.015000px;}
._2{margin-left:-4.736667px;}
._a{margin-left:-2.538000px;}
._1{margin-left:-1.218000px;}
._b{width:1.080000px;}
._6{width:2.094000px;}
._7{width:3.228000px;}
._3{width:4.640000px;}
._9{width:5.862000px;}
._4{width:7.242000px;}
._e{width:8.328000px;}
._c{width:9.576000px;}
._d{width:10.680000px;}
._10{width:11.694000px;}
._12{width:28.224000px;}
._f{width:56.923200px;}
._13{width:198.324000px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fsa{font-size:37.800000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.343400px;}
.y20{bottom:140.317500px;}
.y44{bottom:145.869000px;}
.y61{bottom:156.817500px;}
.y1f{bottom:162.369000px;}
.y43{bottom:173.317500px;}
.y60{bottom:178.869000px;}
.y5f{bottom:189.816000px;}
.y42{bottom:195.369000px;}
.y1e{bottom:205.954500px;}
.y41{bottom:206.317500px;}
.y1d{bottom:227.554500px;}
.y40{bottom:228.369000px;}
.y5e{bottom:239.314500px;}
.y3f{bottom:239.316000px;}
.y1c{bottom:249.154500px;}
.y5d{bottom:255.816000px;}
.y3e{bottom:255.817500px;}
.y1b{bottom:270.754500px;}
.y5c{bottom:272.317500px;}
.y3d{bottom:277.869000px;}
.y1a{bottom:292.354500px;}
.y3c{bottom:294.369000px;}
.y19{bottom:313.954500px;}
.y3b{bottom:334.331100px;}
.y18{bottom:335.554500px;}
.y17{bottom:357.154500px;}
.y3a{bottom:361.578600px;}
.y16{bottom:378.754500px;}
.y39{bottom:388.826100px;}
.y15{bottom:400.354500px;}
.y5b{bottom:411.211350px;}
.y38{bottom:416.073600px;}
.y14{bottom:421.954500px;}
.y5a{bottom:429.953850px;}
.y37{bottom:434.816100px;}
.y13{bottom:443.554500px;}
.y36{bottom:462.063600px;}
.y12{bottom:465.154500px;}
.y35{bottom:480.806100px;}
.y59{bottom:486.197100px;}
.y11{bottom:486.754500px;}
.y34{bottom:499.584000px;}
.y58{bottom:504.939600px;}
.y10{bottom:508.354500px;}
.y33{bottom:526.831500px;}
.yf{bottom:529.954500px;}
.y57{bottom:532.201050px;}
.y56{bottom:550.943550px;}
.ye{bottom:551.554500px;}
.y32{bottom:554.079000px;}
.y31{bottom:572.821500px;}
.yd{bottom:573.154500px;}
.y55{bottom:578.256450px;}
.y30{bottom:591.564000px;}
.yc{bottom:594.754500px;}
.y54{bottom:596.998950px;}
.y2f{bottom:610.314000px;}
.y53{bottom:615.741450px;}
.yb{bottom:616.354500px;}
.y2e{bottom:629.085450px;}
.ya{bottom:637.954500px;}
.y52{bottom:642.988950px;}
.y2d{bottom:656.332950px;}
.y9{bottom:659.554500px;}
.y51{bottom:661.731450px;}
.y2c{bottom:675.075450px;}
.y8{bottom:681.154500px;}
.y50{bottom:688.978950px;}
.y2b{bottom:693.817950px;}
.y7{bottom:702.754500px;}
.y4f{bottom:707.721450px;}
.y2a{bottom:712.567950px;}
.y6{bottom:724.354500px;}
.y4e{bottom:726.463950px;}
.y29{bottom:731.330850px;}
.y4d{bottom:745.206450px;}
.y28{bottom:758.578350px;}
.y4c{bottom:763.956450px;}
.y27{bottom:777.320850px;}
.y4b{bottom:782.739600px;}
.y26{bottom:804.568350px;}
.y4a{bottom:809.987100px;}
.y5{bottom:810.754500px;}
.y49{bottom:828.729600px;}
.y25{bottom:841.318350px;}
.y4{bottom:841.354500px;}
.y48{bottom:847.472100px;}
.y24{bottom:862.918350px;}
.y3{bottom:871.954500px;}
.y47{bottom:874.719600px;}
.y23{bottom:884.518350px;}
.y46{bottom:901.967100px;}
.y22{bottom:906.118350px;}
.y21{bottom:927.718350px;}
.y2{bottom:928.715850px;}
.y45{bottom:929.214600px;}
.h8{height:30.568359px;}
.ha{height:38.645086px;}
.h2{height:40.757812px;}
.h4{height:43.989258px;}
.h9{height:48.399902px;}
.h3{height:50.947266px;}
.hb{height:53.494629px;}
.h11{height:55.145177px;}
.h10{height:55.244177px;}
.hf{height:55.265177px;}
.he{height:55.290977px;}
.hc{height:55.325177px;}
.h12{height:55.350977px;}
.hd{height:55.376777px;}
.h6{height:61.136719px;}
.h7{height:63.322031px;}
.h5{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x4{left:97.793400px;}
.x6{left:119.053350px;}
.x7{left:140.314950px;}
.x5{left:143.170350px;}
.x1{left:249.268050px;}
.x8{left:518.206050px;}
.x9{left:551.057400px;}
.x2{left:583.039350px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.650667pt;}
.v4{vertical-align:20.647467pt;}
.v1{vertical-align:23.680000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005333pt;}
.ls4{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.392000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls8{letter-spacing:0.506667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls2{letter-spacing:9.066667pt;}
.lsb{letter-spacing:34.598400pt;}
.ws0{word-spacing:-18.048000pt;}
.ws5{word-spacing:-15.736000pt;}
.ws3{word-spacing:-14.986667pt;}
.ws1{word-spacing:-10.790400pt;}
.ws4{word-spacing:-9.441600pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-15.096000pt;}
._8{margin-left:-11.200000pt;}
._5{margin-left:-9.157333pt;}
._14{margin-left:-8.064000pt;}
._0{margin-left:-6.533333pt;}
._11{margin-left:-5.346667pt;}
._2{margin-left:-4.210370pt;}
._a{margin-left:-2.256000pt;}
._1{margin-left:-1.082667pt;}
._b{width:0.960000pt;}
._6{width:1.861333pt;}
._7{width:2.869333pt;}
._3{width:4.124444pt;}
._9{width:5.210667pt;}
._4{width:6.437333pt;}
._e{width:7.402667pt;}
._c{width:8.512000pt;}
._d{width:9.493333pt;}
._10{width:10.394667pt;}
._12{width:25.088000pt;}
._f{width:50.598400pt;}
._13{width:176.288000pt;}
.fs7{font-size:32.000000pt;}
.fsa{font-size:33.600000pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.860800pt;}
.y20{bottom:124.726667pt;}
.y44{bottom:129.661333pt;}
.y61{bottom:139.393333pt;}
.y1f{bottom:144.328000pt;}
.y43{bottom:154.060000pt;}
.y60{bottom:158.994667pt;}
.y5f{bottom:168.725333pt;}
.y42{bottom:173.661333pt;}
.y1e{bottom:183.070667pt;}
.y41{bottom:183.393333pt;}
.y1d{bottom:202.270667pt;}
.y40{bottom:202.994667pt;}
.y5e{bottom:212.724000pt;}
.y3f{bottom:212.725333pt;}
.y1c{bottom:221.470667pt;}
.y5d{bottom:227.392000pt;}
.y3e{bottom:227.393333pt;}
.y1b{bottom:240.670667pt;}
.y5c{bottom:242.060000pt;}
.y3d{bottom:246.994667pt;}
.y1a{bottom:259.870667pt;}
.y3c{bottom:261.661333pt;}
.y19{bottom:279.070667pt;}
.y3b{bottom:297.183200pt;}
.y18{bottom:298.270667pt;}
.y17{bottom:317.470667pt;}
.y3a{bottom:321.403200pt;}
.y16{bottom:336.670667pt;}
.y39{bottom:345.623200pt;}
.y15{bottom:355.870667pt;}
.y5b{bottom:365.521200pt;}
.y38{bottom:369.843200pt;}
.y14{bottom:375.070667pt;}
.y5a{bottom:382.181200pt;}
.y37{bottom:386.503200pt;}
.y13{bottom:394.270667pt;}
.y36{bottom:410.723200pt;}
.y12{bottom:413.470667pt;}
.y35{bottom:427.383200pt;}
.y59{bottom:432.175200pt;}
.y11{bottom:432.670667pt;}
.y34{bottom:444.074667pt;}
.y58{bottom:448.835200pt;}
.y10{bottom:451.870667pt;}
.y33{bottom:468.294667pt;}
.yf{bottom:471.070667pt;}
.y57{bottom:473.067600pt;}
.y56{bottom:489.727600pt;}
.ye{bottom:490.270667pt;}
.y32{bottom:492.514667pt;}
.y31{bottom:509.174667pt;}
.yd{bottom:509.470667pt;}
.y55{bottom:514.005733pt;}
.y30{bottom:525.834667pt;}
.yc{bottom:528.670667pt;}
.y54{bottom:530.665733pt;}
.y2f{bottom:542.501333pt;}
.y53{bottom:547.325733pt;}
.yb{bottom:547.870667pt;}
.y2e{bottom:559.187067pt;}
.ya{bottom:567.070667pt;}
.y52{bottom:571.545733pt;}
.y2d{bottom:583.407067pt;}
.y9{bottom:586.270667pt;}
.y51{bottom:588.205733pt;}
.y2c{bottom:600.067067pt;}
.y8{bottom:605.470667pt;}
.y50{bottom:612.425733pt;}
.y2b{bottom:616.727067pt;}
.y7{bottom:624.670667pt;}
.y4f{bottom:629.085733pt;}
.y2a{bottom:633.393733pt;}
.y6{bottom:643.870667pt;}
.y4e{bottom:645.745733pt;}
.y29{bottom:650.071867pt;}
.y4d{bottom:662.405733pt;}
.y28{bottom:674.291867pt;}
.y4c{bottom:679.072400pt;}
.y27{bottom:690.951867pt;}
.y4b{bottom:695.768533pt;}
.y26{bottom:715.171867pt;}
.y4a{bottom:719.988533pt;}
.y5{bottom:720.670667pt;}
.y49{bottom:736.648533pt;}
.y25{bottom:747.838533pt;}
.y4{bottom:747.870667pt;}
.y48{bottom:753.308533pt;}
.y24{bottom:767.038533pt;}
.y3{bottom:775.070667pt;}
.y47{bottom:777.528533pt;}
.y23{bottom:786.238533pt;}
.y46{bottom:801.748533pt;}
.y22{bottom:805.438533pt;}
.y21{bottom:824.638533pt;}
.y2{bottom:825.525200pt;}
.y45{bottom:825.968533pt;}
.h8{height:27.171875pt;}
.ha{height:34.351188pt;}
.h2{height:36.229167pt;}
.h4{height:39.101562pt;}
.h9{height:43.022135pt;}
.h3{height:45.286458pt;}
.hb{height:47.550781pt;}
.h11{height:49.017935pt;}
.h10{height:49.105935pt;}
.hf{height:49.124602pt;}
.he{height:49.147535pt;}
.hc{height:49.177935pt;}
.h12{height:49.200869pt;}
.hd{height:49.223802pt;}
.h6{height:54.343750pt;}
.h7{height:56.286250pt;}
.h5{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x4{left:86.927467pt;}
.x6{left:105.825200pt;}
.x7{left:124.724400pt;}
.x5{left:127.262533pt;}
.x1{left:221.571600pt;}
.x8{left:460.627600pt;}
.x9{left:489.828800pt;}
.x2{left:518.257200pt;}
}




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