
    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_d189a0e60d4d51868aadf0ab.woff2')format("woff");}.ff1{font-family:ff1;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;}
@font-face{font-family:ff2;src:url('chunks/assets/font_fb3fa2f0f0edfec94958912a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_a537a0f11b5fd0dc8092a9fa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_73fcc10c20966d6cf47ba95c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706055;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_e72563f6b407313da36d59ab.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_b42cfbfa3ff78aa7f9a0d8e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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);}
.v3{vertical-align:-69.135840px;}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.375840px;}
.ls1e{letter-spacing:-3.340656px;}
.ls28{letter-spacing:-0.360144px;}
.ls25{letter-spacing:-0.342432px;}
.ls29{letter-spacing:-0.218448px;}
.ls27{letter-spacing:-0.183024px;}
.ls26{letter-spacing:-0.118080px;}
.ls24{letter-spacing:-0.023616px;}
.ls10{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.159840px;}
.ls1f{letter-spacing:0.181152px;}
.ls20{letter-spacing:0.191808px;}
.lsa{letter-spacing:0.213120px;}
.ls4{letter-spacing:0.236160px;}
.ls21{letter-spacing:0.239760px;}
.ls13{letter-spacing:0.242064px;}
.ls16{letter-spacing:0.253872px;}
.lsc{letter-spacing:0.266400px;}
.ls5{letter-spacing:0.295200px;}
.ls1b{letter-spacing:0.309024px;}
.ls14{letter-spacing:0.318816px;}
.ls22{letter-spacing:0.324720px;}
.lse{letter-spacing:0.362304px;}
.lsb{letter-spacing:0.367632px;}
.ls17{letter-spacing:0.383760px;}
.ls15{letter-spacing:0.419184px;}
.ls0{letter-spacing:0.478224px;}
.ls1c{letter-spacing:0.479520px;}
.ls1a{letter-spacing:0.527472px;}
.ls12{letter-spacing:0.543168px;}
.ls18{letter-spacing:0.578592px;}
.ls2a{letter-spacing:0.637632px;}
.ls1d{letter-spacing:0.650016px;}
.ls11{letter-spacing:0.702576px;}
.ls2{letter-spacing:0.712200px;}
.ls7{letter-spacing:0.735000px;}
.ls19{letter-spacing:0.738000px;}
.ls1{letter-spacing:0.840600px;}
.ls23{letter-spacing:0.861984px;}
.ls8{letter-spacing:0.960600px;}
.ls2b{letter-spacing:1.298880px;}
.ls3{letter-spacing:1.653120px;}
.ls6{letter-spacing:1.853856px;}
.lsd{letter-spacing:4.901760px;}
.ls9{letter-spacing:5.114880px;}
.ls2c{letter-spacing:984.019680px;}
.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;}
}
.ws6{word-spacing:-15.498000px;}
.ws7{word-spacing:-15.303168px;}
.ws0{word-spacing:-15.238224px;}
.ws8{word-spacing:-15.179184px;}
.ws5{word-spacing:-15.143760px;}
.ws1{word-spacing:-13.687632px;}
.ws2{word-spacing:-13.682304px;}
.ws3{word-spacing:-9.979344px;}
.ws4{word-spacing:0.000000px;}
._9{margin-left:-5.499360px;}
._6{margin-left:-3.247200px;}
._5{margin-left:-2.184480px;}
._0{margin-left:-1.062720px;}
._2{width:1.228032px;}
._4{width:2.255328px;}
._8{width:3.883680px;}
._a{width:4.900320px;}
._1{width:5.904000px;}
._3{width:7.084800px;}
._7{width:8.206560px;}
._b{width:9.222048px;}
._f{width:17.712000px;}
._e{width:19.069920px;}
._c{width:22.317120px;}
._d{width:24.076512px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:38.880000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:53.280000px;}
.fs2{font-size:59.040000px;}
.fs0{font-size:64.800000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.600000px;}
.y34{bottom:10.205899px;}
.y33{bottom:24.605899px;}
.y32{bottom:39.005899px;}
.y2{bottom:95.999100px;}
.y1{bottom:96.359100px;}
.y31{bottom:124.083780px;}
.y5f{bottom:135.100860px;}
.y30{bottom:139.921260px;}
.y5e{bottom:152.384820px;}
.y2f{bottom:161.519100px;}
.y5d{bottom:169.668780px;}
.y2e{bottom:170.881260px;}
.y5c{bottom:186.952740px;}
.y2d{bottom:192.479100px;}
.y2c{bottom:201.845580px;}
.y5b{bottom:204.236700px;}
.y2b{bottom:217.323420px;}
.y5a{bottom:221.520660px;}
.y2a{bottom:232.801260px;}
.y59{bottom:238.804620px;}
.y29{bottom:254.399100px;}
.y58{bottom:256.088580px;}
.y28{bottom:265.559100px;}
.y57{bottom:273.372540px;}
.y56{bottom:290.287500px;}
.y27{bottom:290.391180px;}
.y55{bottom:307.571460px;}
.y26{bottom:307.675140px;}
.y54{bottom:324.855420px;}
.y25{bottom:324.858300px;}
.y53{bottom:342.139380px;}
.y24{bottom:342.142260px;}
.y52{bottom:359.423340px;}
.y23{bottom:359.426220px;}
.y51{bottom:376.707300px;}
.y22{bottom:376.710180px;}
.y50{bottom:393.991260px;}
.y21{bottom:393.994140px;}
.y4f{bottom:411.275220px;}
.y20{bottom:411.278100px;}
.y4e{bottom:428.559180px;}
.y1f{bottom:428.562060px;}
.y4d{bottom:445.843140px;}
.y1e{bottom:445.846020px;}
.y4c{bottom:463.127100px;}
.y1d{bottom:463.129980px;}
.y4b{bottom:480.042060px;}
.y1c{bottom:480.044940px;}
.y4a{bottom:497.326020px;}
.y1b{bottom:497.328900px;}
.y49{bottom:514.609980px;}
.y1a{bottom:514.612860px;}
.y48{bottom:531.893940px;}
.y19{bottom:531.896820px;}
.y47{bottom:549.177900px;}
.y18{bottom:549.180780px;}
.y46{bottom:566.461860px;}
.y17{bottom:566.464740px;}
.y45{bottom:583.745820px;}
.y16{bottom:583.748700px;}
.y44{bottom:601.029780px;}
.y15{bottom:601.032660px;}
.y43{bottom:618.313740px;}
.y14{bottom:618.316620px;}
.y42{bottom:635.597700px;}
.y13{bottom:635.600580px;}
.y41{bottom:652.881660px;}
.y12{bottom:652.884540px;}
.y40{bottom:670.165620px;}
.y11{bottom:670.168500px;}
.y3f{bottom:687.080580px;}
.y10{bottom:687.083460px;}
.y3e{bottom:704.364540px;}
.yf{bottom:704.367420px;}
.y3d{bottom:721.648500px;}
.ye{bottom:721.651380px;}
.y3c{bottom:738.932460px;}
.yd{bottom:738.935340px;}
.y60{bottom:739.655700px;}
.y3b{bottom:756.216420px;}
.yc{bottom:756.219300px;}
.y3a{bottom:773.500380px;}
.yb{bottom:773.503260px;}
.y39{bottom:790.784340px;}
.ya{bottom:790.787220px;}
.y38{bottom:808.068300px;}
.y9{bottom:808.071180px;}
.y37{bottom:825.352260px;}
.y8{bottom:825.355140px;}
.y36{bottom:842.636220px;}
.y7{bottom:842.640180px;}
.y35{bottom:859.920180px;}
.y6{bottom:859.924140px;}
.y5{bottom:876.835140px;}
.y4{bottom:894.119100px;}
.h3{height:15.840000px;}
.h9{height:35.332031px;}
.h2{height:43.189453px;}
.hc{height:50.062500px;}
.h4{height:52.265391px;}
.ha{height:52.291406px;}
.hb{height:54.000229px;}
.he{height:57.915703px;}
.h5{height:57.944531px;}
.hd{height:59.501250px;}
.h7{height:65.514274px;}
.h6{height:65.534434px;}
.h8{height:65.921794px;}
.h1{height:978.000000px;}
.h0{height:978.117600px;}
.w2{width:23.400000px;}
.w3{width:512.965500px;}
.w1{width:658.500000px;}
.w0{width:658.641300px;}
.x0{left:0.000000px;}
.x7{left:7.351500px;}
.x5{left:72.838058px;}
.x1{left:78.550800px;}
.x4{left:99.854790px;}
.x3{left:131.647830px;}
.x6{left:187.696500px;}
.x2{left:317.950800px;}
.x8{left:580.272720px;}
@media print{
.v3{vertical-align:-61.454080pt;}
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.334080pt;}
.ls1e{letter-spacing:-2.969472pt;}
.ls28{letter-spacing:-0.320128pt;}
.ls25{letter-spacing:-0.304384pt;}
.ls29{letter-spacing:-0.194176pt;}
.ls27{letter-spacing:-0.162688pt;}
.ls26{letter-spacing:-0.104960pt;}
.ls24{letter-spacing:-0.020992pt;}
.ls10{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.142080pt;}
.ls1f{letter-spacing:0.161024pt;}
.ls20{letter-spacing:0.170496pt;}
.lsa{letter-spacing:0.189440pt;}
.ls4{letter-spacing:0.209920pt;}
.ls21{letter-spacing:0.213120pt;}
.ls13{letter-spacing:0.215168pt;}
.ls16{letter-spacing:0.225664pt;}
.lsc{letter-spacing:0.236800pt;}
.ls5{letter-spacing:0.262400pt;}
.ls1b{letter-spacing:0.274688pt;}
.ls14{letter-spacing:0.283392pt;}
.ls22{letter-spacing:0.288640pt;}
.lse{letter-spacing:0.322048pt;}
.lsb{letter-spacing:0.326784pt;}
.ls17{letter-spacing:0.341120pt;}
.ls15{letter-spacing:0.372608pt;}
.ls0{letter-spacing:0.425088pt;}
.ls1c{letter-spacing:0.426240pt;}
.ls1a{letter-spacing:0.468864pt;}
.ls12{letter-spacing:0.482816pt;}
.ls18{letter-spacing:0.514304pt;}
.ls2a{letter-spacing:0.566784pt;}
.ls1d{letter-spacing:0.577792pt;}
.ls11{letter-spacing:0.624512pt;}
.ls2{letter-spacing:0.633067pt;}
.ls7{letter-spacing:0.653333pt;}
.ls19{letter-spacing:0.656000pt;}
.ls1{letter-spacing:0.747200pt;}
.ls23{letter-spacing:0.766208pt;}
.ls8{letter-spacing:0.853867pt;}
.ls2b{letter-spacing:1.154560pt;}
.ls3{letter-spacing:1.469440pt;}
.ls6{letter-spacing:1.647872pt;}
.lsd{letter-spacing:4.357120pt;}
.ls9{letter-spacing:4.546560pt;}
.ls2c{letter-spacing:874.684160pt;}
.ws6{word-spacing:-13.776000pt;}
.ws7{word-spacing:-13.602816pt;}
.ws0{word-spacing:-13.545088pt;}
.ws8{word-spacing:-13.492608pt;}
.ws5{word-spacing:-13.461120pt;}
.ws1{word-spacing:-12.166784pt;}
.ws2{word-spacing:-12.162048pt;}
.ws3{word-spacing:-8.870528pt;}
.ws4{word-spacing:0.000000pt;}
._9{margin-left:-4.888320pt;}
._6{margin-left:-2.886400pt;}
._5{margin-left:-1.941760pt;}
._0{margin-left:-0.944640pt;}
._2{width:1.091584pt;}
._4{width:2.004736pt;}
._8{width:3.452160pt;}
._a{width:4.355840pt;}
._1{width:5.248000pt;}
._3{width:6.297600pt;}
._7{width:7.294720pt;}
._b{width:8.197376pt;}
._f{width:15.744000pt;}
._e{width:16.951040pt;}
._c{width:19.837440pt;}
._d{width:21.401344pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:34.560000pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:47.360000pt;}
.fs2{font-size:52.480000pt;}
.fs0{font-size:57.600000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.200000pt;}
.y34{bottom:9.071910pt;}
.y33{bottom:21.871910pt;}
.y32{bottom:34.671910pt;}
.y2{bottom:85.332533pt;}
.y1{bottom:85.652533pt;}
.y31{bottom:110.296693pt;}
.y5f{bottom:120.089653pt;}
.y30{bottom:124.374453pt;}
.y5e{bottom:135.453173pt;}
.y2f{bottom:143.572533pt;}
.y5d{bottom:150.816693pt;}
.y2e{bottom:151.894453pt;}
.y5c{bottom:166.180213pt;}
.y2d{bottom:171.092533pt;}
.y2c{bottom:179.418293pt;}
.y5b{bottom:181.543733pt;}
.y2b{bottom:193.176373pt;}
.y5a{bottom:196.907253pt;}
.y2a{bottom:206.934453pt;}
.y59{bottom:212.270773pt;}
.y29{bottom:226.132533pt;}
.y58{bottom:227.634293pt;}
.y28{bottom:236.052533pt;}
.y57{bottom:242.997813pt;}
.y56{bottom:258.033333pt;}
.y27{bottom:258.125493pt;}
.y55{bottom:273.396853pt;}
.y26{bottom:273.489013pt;}
.y54{bottom:288.760373pt;}
.y25{bottom:288.762933pt;}
.y53{bottom:304.123893pt;}
.y24{bottom:304.126453pt;}
.y52{bottom:319.487413pt;}
.y23{bottom:319.489973pt;}
.y51{bottom:334.850933pt;}
.y22{bottom:334.853493pt;}
.y50{bottom:350.214453pt;}
.y21{bottom:350.217013pt;}
.y4f{bottom:365.577973pt;}
.y20{bottom:365.580533pt;}
.y4e{bottom:380.941493pt;}
.y1f{bottom:380.944053pt;}
.y4d{bottom:396.305013pt;}
.y1e{bottom:396.307573pt;}
.y4c{bottom:411.668533pt;}
.y1d{bottom:411.671093pt;}
.y4b{bottom:426.704053pt;}
.y1c{bottom:426.706613pt;}
.y4a{bottom:442.067573pt;}
.y1b{bottom:442.070133pt;}
.y49{bottom:457.431093pt;}
.y1a{bottom:457.433653pt;}
.y48{bottom:472.794613pt;}
.y19{bottom:472.797173pt;}
.y47{bottom:488.158133pt;}
.y18{bottom:488.160693pt;}
.y46{bottom:503.521653pt;}
.y17{bottom:503.524213pt;}
.y45{bottom:518.885173pt;}
.y16{bottom:518.887733pt;}
.y44{bottom:534.248693pt;}
.y15{bottom:534.251253pt;}
.y43{bottom:549.612213pt;}
.y14{bottom:549.614773pt;}
.y42{bottom:564.975733pt;}
.y13{bottom:564.978293pt;}
.y41{bottom:580.339253pt;}
.y12{bottom:580.341813pt;}
.y40{bottom:595.702773pt;}
.y11{bottom:595.705333pt;}
.y3f{bottom:610.738293pt;}
.y10{bottom:610.740853pt;}
.y3e{bottom:626.101813pt;}
.yf{bottom:626.104373pt;}
.y3d{bottom:641.465333pt;}
.ye{bottom:641.467893pt;}
.y3c{bottom:656.828853pt;}
.yd{bottom:656.831413pt;}
.y60{bottom:657.471733pt;}
.y3b{bottom:672.192373pt;}
.yc{bottom:672.194933pt;}
.y3a{bottom:687.555893pt;}
.yb{bottom:687.558453pt;}
.y39{bottom:702.919413pt;}
.ya{bottom:702.921973pt;}
.y38{bottom:718.282933pt;}
.y9{bottom:718.285493pt;}
.y37{bottom:733.646453pt;}
.y8{bottom:733.649013pt;}
.y36{bottom:749.009973pt;}
.y7{bottom:749.013493pt;}
.y35{bottom:764.373493pt;}
.y6{bottom:764.377013pt;}
.y5{bottom:779.409013pt;}
.y4{bottom:794.772533pt;}
.h3{height:14.080000pt;}
.h9{height:31.406250pt;}
.h2{height:38.390625pt;}
.hc{height:44.500000pt;}
.h4{height:46.458125pt;}
.ha{height:46.481250pt;}
.hb{height:48.000204pt;}
.he{height:51.480625pt;}
.h5{height:51.506250pt;}
.hd{height:52.890000pt;}
.h7{height:58.234910pt;}
.h6{height:58.252830pt;}
.h8{height:58.597150pt;}
.h1{height:869.333333pt;}
.h0{height:869.437867pt;}
.w2{width:20.800000pt;}
.w3{width:455.969333pt;}
.w1{width:585.333333pt;}
.w0{width:585.458933pt;}
.x0{left:0.000000pt;}
.x7{left:6.534667pt;}
.x5{left:64.744940pt;}
.x1{left:69.822933pt;}
.x4{left:88.759813pt;}
.x3{left:117.020293pt;}
.x6{left:166.841333pt;}
.x2{left:282.622933pt;}
.x8{left:515.797973pt;}
}




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