
    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_972992dd3bd423905a986bdd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.965332;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_b02c226608d72dbcf3c073c2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.677734;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_a6d1607f106ef33483c3fa78.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136230;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_3f6c7a5fd1c66f2da2c55abd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693359;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_450e45c9e7b841515b6af9b3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.958008;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_d97e2bcf80c4678744e33c78.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls1f{letter-spacing:-0.727200px;}
.ls1c{letter-spacing:-0.446400px;}
.lse{letter-spacing:-0.334080px;}
.ls1d{letter-spacing:-0.302400px;}
.ls1e{letter-spacing:-0.093600px;}
.ls1a{letter-spacing:-0.014400px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.014400px;}
.ls7{letter-spacing:0.036000px;}
.ls0{letter-spacing:0.119040px;}
.ls27{letter-spacing:0.253872px;}
.ls21{letter-spacing:0.265680px;}
.lsb{letter-spacing:0.290820px;}
.ls9{letter-spacing:0.290880px;}
.ls18{letter-spacing:0.317376px;}
.ls23{letter-spacing:0.318816px;}
.ls5{letter-spacing:0.322200px;}
.ls1{letter-spacing:0.322500px;}
.ls3{letter-spacing:0.324000px;}
.ls2a{letter-spacing:0.336528px;}
.ls2{letter-spacing:0.349920px;}
.ls19{letter-spacing:0.359136px;}
.ls12{letter-spacing:0.401760px;}
.ls11{letter-spacing:0.427680px;}
.ls16{letter-spacing:0.453600px;}
.ls25{letter-spacing:0.454608px;}
.ls22{letter-spacing:0.478224px;}
.ls28{letter-spacing:0.495936px;}
.lsd{letter-spacing:0.526176px;}
.lsa{letter-spacing:0.543168px;}
.ls26{letter-spacing:0.602208px;}
.ls17{letter-spacing:0.602640px;}
.ls29{letter-spacing:0.637632px;}
.ls24{letter-spacing:0.696672px;}
.ls14{letter-spacing:0.725760px;}
.lsf{letter-spacing:0.810000px;}
.ls20{letter-spacing:0.844272px;}
.ls1b{letter-spacing:0.874800px;}
.ls10{letter-spacing:1.062720px;}
.ls13{letter-spacing:1.075680px;}
.ls8{letter-spacing:1.131300px;}
.ls15{letter-spacing:1.185840px;}
.ls4{letter-spacing:74.557800px;}
.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:-23.744736px;}
.wsb{word-spacing:-20.052000px;}
.ws9{word-spacing:-20.030400px;}
.wsc{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.713600px;}
.ws8{word-spacing:-19.569600px;}
.ws5{word-spacing:-19.200240px;}
.ws4{word-spacing:-19.090080px;}
.ws6{word-spacing:-19.077120px;}
.ws7{word-spacing:-18.740160px;}
.ws2{word-spacing:-18.442080px;}
.ws3{word-spacing:-18.014400px;}
.wsd{word-spacing:-17.257392px;}
.wse{word-spacing:-16.956288px;}
.wsf{word-spacing:-16.678800px;}
.ws1{word-spacing:-0.072000px;}
.ws10{word-spacing:0.000000px;}
._0{margin-left:-1.760400px;}
._1{width:1.015200px;}
._2{width:2.526240px;}
._f{width:4.119420px;}
._b{width:5.214660px;}
._c{width:6.528540px;}
._e{width:8.051460px;}
._d{width:9.576720px;}
._9{width:10.879200px;}
._a{width:11.966400px;}
._11{width:13.125600px;}
._10{width:14.716800px;}
._8{width:16.120800px;}
._12{width:17.740800px;}
._6{width:24.069600px;}
._7{width:25.524000px;}
._13{width:39.153600px;}
._3{width:40.288800px;}
._4{width:54.525900px;}
._5{width:194.385000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:59.040000px;}
.fs3{font-size:64.800000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.520000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:4.680000px;}
.y1{bottom:18.000000px;}
.y30{bottom:25.560000px;}
.y2f{bottom:43.560000px;}
.y2e{bottom:61.560000px;}
.y2d{bottom:79.560000px;}
.y2c{bottom:97.560000px;}
.y34{bottom:109.560030px;}
.y2b{bottom:115.560000px;}
.y33{bottom:131.520030px;}
.y2a{bottom:133.920000px;}
.y29{bottom:155.520000px;}
.y32{bottom:167.520000px;}
.y28{bottom:177.120000px;}
.ya{bottom:192.360000px;}
.y27{bottom:198.720000px;}
.y26{bottom:220.680000px;}
.y25{bottom:242.280000px;}
.y24{bottom:263.880000px;}
.y23{bottom:285.480000px;}
.y22{bottom:307.080000px;}
.y21{bottom:328.680000px;}
.y20{bottom:350.280000px;}
.y1f{bottom:371.880000px;}
.y1e{bottom:393.480000px;}
.y1d{bottom:415.080000px;}
.y1c{bottom:436.680000px;}
.y1b{bottom:458.280000px;}
.y1a{bottom:479.880000px;}
.y19{bottom:501.480000px;}
.y18{bottom:523.080000px;}
.y17{bottom:544.680000px;}
.y16{bottom:566.280000px;}
.y15{bottom:587.880000px;}
.y14{bottom:609.480000px;}
.y13{bottom:631.080000px;}
.y12{bottom:652.680000px;}
.y11{bottom:674.280000px;}
.y10{bottom:694.080000px;}
.yf{bottom:722.880000px;}
.ye{bottom:744.480000px;}
.yd{bottom:766.800000px;}
.yc{bottom:790.920000px;}
.yb{bottom:815.400000px;}
.y9{bottom:1013.880000px;}
.y8{bottom:1033.680000px;}
.y7{bottom:1053.480000px;}
.y6{bottom:1073.280000px;}
.y5{bottom:1093.080000px;}
.y4{bottom:1113.600000px;}
.y3{bottom:1135.560000px;}
.y2{bottom:1180.200000px;}
.he{height:24.120000px;}
.hb{height:47.745703px;}
.h4{height:47.988281px;}
.hc{height:53.050781px;}
.hd{height:54.023906px;}
.h8{height:56.604375px;}
.h6{height:59.294531px;}
.h5{height:61.256250px;}
.ha{height:65.882813px;}
.h9{height:68.062500px;}
.h3{height:78.952500px;}
.h2{height:102.093750px;}
.h7{height:834.840150px;}
.h1{height:1227.000000px;}
.h0{height:1263.000000px;}
.w2{width:783.000000px;}
.w1{width:856.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:7.560000px;}
.x9{left:8.786445px;}
.x1{left:18.000000px;}
.x6{left:20.850885px;}
.x4{left:36.000000px;}
.x5{left:46.440000px;}
.x2{left:69.471675px;}
.x3{left:154.737300px;}
.xb{left:242.295000px;}
.x7{left:294.773700px;}
.xa{left:371.818650px;}
.x8{left:391.334700px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-0.646400pt;}
.ls1c{letter-spacing:-0.396800pt;}
.lse{letter-spacing:-0.296960pt;}
.ls1d{letter-spacing:-0.268800pt;}
.ls1e{letter-spacing:-0.083200pt;}
.ls1a{letter-spacing:-0.012800pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.012800pt;}
.ls7{letter-spacing:0.032000pt;}
.ls0{letter-spacing:0.105813pt;}
.ls27{letter-spacing:0.225664pt;}
.ls21{letter-spacing:0.236160pt;}
.lsb{letter-spacing:0.258507pt;}
.ls9{letter-spacing:0.258560pt;}
.ls18{letter-spacing:0.282112pt;}
.ls23{letter-spacing:0.283392pt;}
.ls5{letter-spacing:0.286400pt;}
.ls1{letter-spacing:0.286667pt;}
.ls3{letter-spacing:0.288000pt;}
.ls2a{letter-spacing:0.299136pt;}
.ls2{letter-spacing:0.311040pt;}
.ls19{letter-spacing:0.319232pt;}
.ls12{letter-spacing:0.357120pt;}
.ls11{letter-spacing:0.380160pt;}
.ls16{letter-spacing:0.403200pt;}
.ls25{letter-spacing:0.404096pt;}
.ls22{letter-spacing:0.425088pt;}
.ls28{letter-spacing:0.440832pt;}
.lsd{letter-spacing:0.467712pt;}
.lsa{letter-spacing:0.482816pt;}
.ls26{letter-spacing:0.535296pt;}
.ls17{letter-spacing:0.535680pt;}
.ls29{letter-spacing:0.566784pt;}
.ls24{letter-spacing:0.619264pt;}
.ls14{letter-spacing:0.645120pt;}
.lsf{letter-spacing:0.720000pt;}
.ls20{letter-spacing:0.750464pt;}
.ls1b{letter-spacing:0.777600pt;}
.ls10{letter-spacing:0.944640pt;}
.ls13{letter-spacing:0.956160pt;}
.ls8{letter-spacing:1.005600pt;}
.ls15{letter-spacing:1.054080pt;}
.ls4{letter-spacing:66.273600pt;}
.ws0{word-spacing:-21.106432pt;}
.wsb{word-spacing:-17.824000pt;}
.ws9{word-spacing:-17.804800pt;}
.wsc{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.523200pt;}
.ws8{word-spacing:-17.395200pt;}
.ws5{word-spacing:-17.066880pt;}
.ws4{word-spacing:-16.968960pt;}
.ws6{word-spacing:-16.957440pt;}
.ws7{word-spacing:-16.657920pt;}
.ws2{word-spacing:-16.392960pt;}
.ws3{word-spacing:-16.012800pt;}
.wsd{word-spacing:-15.339904pt;}
.wse{word-spacing:-15.072256pt;}
.wsf{word-spacing:-14.825600pt;}
.ws1{word-spacing:-0.064000pt;}
.ws10{word-spacing:0.000000pt;}
._0{margin-left:-1.564800pt;}
._1{width:0.902400pt;}
._2{width:2.245547pt;}
._f{width:3.661707pt;}
._b{width:4.635253pt;}
._c{width:5.803147pt;}
._e{width:7.156853pt;}
._d{width:8.512640pt;}
._9{width:9.670400pt;}
._a{width:10.636800pt;}
._11{width:11.667200pt;}
._10{width:13.081600pt;}
._8{width:14.329600pt;}
._12{width:15.769600pt;}
._6{width:21.395200pt;}
._7{width:22.688000pt;}
._13{width:34.803200pt;}
._3{width:35.812267pt;}
._4{width:48.467467pt;}
._5{width:172.786667pt;}
.fs4{font-size:52.480000pt;}
.fs3{font-size:57.600000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.240000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:4.160000pt;}
.y1{bottom:16.000000pt;}
.y30{bottom:22.720000pt;}
.y2f{bottom:38.720000pt;}
.y2e{bottom:54.720000pt;}
.y2d{bottom:70.720000pt;}
.y2c{bottom:86.720000pt;}
.y34{bottom:97.386693pt;}
.y2b{bottom:102.720000pt;}
.y33{bottom:116.906693pt;}
.y2a{bottom:119.040000pt;}
.y29{bottom:138.240000pt;}
.y32{bottom:148.906667pt;}
.y28{bottom:157.440000pt;}
.ya{bottom:170.986667pt;}
.y27{bottom:176.640000pt;}
.y26{bottom:196.160000pt;}
.y25{bottom:215.360000pt;}
.y24{bottom:234.560000pt;}
.y23{bottom:253.760000pt;}
.y22{bottom:272.960000pt;}
.y21{bottom:292.160000pt;}
.y20{bottom:311.360000pt;}
.y1f{bottom:330.560000pt;}
.y1e{bottom:349.760000pt;}
.y1d{bottom:368.960000pt;}
.y1c{bottom:388.160000pt;}
.y1b{bottom:407.360000pt;}
.y1a{bottom:426.560000pt;}
.y19{bottom:445.760000pt;}
.y18{bottom:464.960000pt;}
.y17{bottom:484.160000pt;}
.y16{bottom:503.360000pt;}
.y15{bottom:522.560000pt;}
.y14{bottom:541.760000pt;}
.y13{bottom:560.960000pt;}
.y12{bottom:580.160000pt;}
.y11{bottom:599.360000pt;}
.y10{bottom:616.960000pt;}
.yf{bottom:642.560000pt;}
.ye{bottom:661.760000pt;}
.yd{bottom:681.600000pt;}
.yc{bottom:703.040000pt;}
.yb{bottom:724.800000pt;}
.y9{bottom:901.226667pt;}
.y8{bottom:918.826667pt;}
.y7{bottom:936.426667pt;}
.y6{bottom:954.026667pt;}
.y5{bottom:971.626667pt;}
.y4{bottom:989.866667pt;}
.y3{bottom:1009.386667pt;}
.y2{bottom:1049.066667pt;}
.he{height:21.440000pt;}
.hb{height:42.440625pt;}
.h4{height:42.656250pt;}
.hc{height:47.156250pt;}
.hd{height:48.021250pt;}
.h8{height:50.315000pt;}
.h6{height:52.706250pt;}
.h5{height:54.450000pt;}
.ha{height:58.562500pt;}
.h9{height:60.500000pt;}
.h3{height:70.180000pt;}
.h2{height:90.750000pt;}
.h7{height:742.080133pt;}
.h1{height:1090.666667pt;}
.h0{height:1122.666667pt;}
.w2{width:696.000000pt;}
.w1{width:761.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:6.720000pt;}
.x9{left:7.810173pt;}
.x1{left:16.000000pt;}
.x6{left:18.534120pt;}
.x4{left:32.000000pt;}
.x5{left:41.280000pt;}
.x2{left:61.752600pt;}
.x3{left:137.544267pt;}
.xb{left:215.373333pt;}
.x7{left:262.021067pt;}
.xa{left:330.505467pt;}
.x8{left:347.853067pt;}
}




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