
    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_f6f8308fb0eda2605e9abaf8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_eb590d4b6572543cb4a617b3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.900391;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_3ed467df0675becde6e7c457.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.678223;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_af49aa960c54a407ef237a55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_9e4943b40ad59948ce27a471.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_322b3ed51ef3c8cf2ee30a58.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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:ff7;src:url('chunks/assets/font_5402f023868d5e42756cecb1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.676270;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:ff8;src:url('chunks/assets/font_5c6d9a254d420fb452f6ba2c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.690918;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;}
.v1{vertical-align:28.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.300000px;}
.ls2{letter-spacing:5.100000px;}
.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;}
}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-15.000000px;}
.ws4{word-spacing:-10.500000px;}
.ws2{word-spacing:-0.072000px;}
.ws0{word-spacing:0.000000px;}
._20{margin-left:-9.492000px;}
._22{margin-left:-7.536000px;}
._1{margin-left:-4.956000px;}
._f{margin-left:-3.816000px;}
._0{margin-left:-2.604000px;}
._2{margin-left:-1.224000px;}
._5{width:1.164000px;}
._1a{width:2.952000px;}
._18{width:4.752000px;}
._19{width:5.904000px;}
._1b{width:7.488000px;}
._1c{width:8.496000px;}
._1e{width:10.224000px;}
._1f{width:11.664000px;}
._23{width:13.464000px;}
._24{width:14.688000px;}
._1d{width:15.840000px;}
._21{width:16.920000px;}
._25{width:19.152000px;}
._26{width:20.412000px;}
._27{width:22.320000px;}
._28{width:23.532000px;}
._29{width:30.600000px;}
._2a{width:34.416000px;}
._10{width:868.104000px;}
._b{width:884.376000px;}
._8{width:1168.488000px;}
._14{width:1172.376000px;}
._a{width:1232.136000px;}
._16{width:1243.944000px;}
._11{width:1309.968000px;}
._15{width:1460.016000px;}
._6{width:1502.700000px;}
._13{width:1520.136000px;}
._d{width:1615.680000px;}
._12{width:1648.872000px;}
._c{width:1677.600000px;}
._7{width:1821.312000px;}
._4{width:1875.384000px;}
._e{width:2098.584000px;}
._17{width:2112.624000px;}
._3{width:2117.880000px;}
._9{width:2126.880000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y5f{bottom:88.291500px;}
.y63{bottom:105.241500px;}
.y5e{bottom:105.616500px;}
.y3d{bottom:115.591500px;}
.y5d{bottom:122.941500px;}
.y6d{bottom:131.116500px;}
.y62{bottom:136.291500px;}
.y3c{bottom:146.641500px;}
.y6c{bottom:162.166500px;}
.y61{bottom:167.341500px;}
.y3b{bottom:177.691500px;}
.y5c{bottom:198.391500px;}
.y3a{bottom:208.741500px;}
.y6b{bottom:224.266500px;}
.y5b{bottom:229.441500px;}
.y39{bottom:239.791500px;}
.y6a{bottom:255.316500px;}
.y5a{bottom:260.491500px;}
.y38{bottom:270.841500px;}
.y59{bottom:291.541500px;}
.y37{bottom:301.891500px;}
.y69{bottom:317.416500px;}
.y60{bottom:322.591500px;}
.y36{bottom:332.941500px;}
.y68{bottom:348.466500px;}
.y58{bottom:353.641500px;}
.y35{bottom:363.991500px;}
.y57{bottom:384.691500px;}
.y34{bottom:395.041500px;}
.y67{bottom:410.566500px;}
.y56{bottom:415.741500px;}
.y33{bottom:426.091500px;}
.y1c{bottom:441.616500px;}
.y55{bottom:446.791500px;}
.y32{bottom:457.141500px;}
.y1b{bottom:472.666500px;}
.y54{bottom:477.841500px;}
.y31{bottom:488.191500px;}
.y1a{bottom:503.716500px;}
.y53{bottom:508.891500px;}
.y30{bottom:519.241500px;}
.y19{bottom:534.766500px;}
.y52{bottom:539.941500px;}
.y2f{bottom:550.291500px;}
.y18{bottom:565.816500px;}
.y51{bottom:570.991500px;}
.y17{bottom:596.866500px;}
.y50{bottom:602.041500px;}
.y2e{bottom:612.391500px;}
.y16{bottom:627.916500px;}
.y4f{bottom:633.091500px;}
.y2d{bottom:643.441500px;}
.y15{bottom:658.966500px;}
.y4e{bottom:664.141500px;}
.y2c{bottom:674.491500px;}
.y14{bottom:690.016500px;}
.y4d{bottom:695.191500px;}
.y2b{bottom:705.541500px;}
.y13{bottom:721.066500px;}
.y4c{bottom:726.241500px;}
.y2a{bottom:736.591500px;}
.y12{bottom:752.116500px;}
.y4b{bottom:757.291500px;}
.y29{bottom:767.641500px;}
.y11{bottom:783.166500px;}
.y4a{bottom:788.341500px;}
.y28{bottom:798.691500px;}
.y10{bottom:814.216500px;}
.y49{bottom:819.391500px;}
.y27{bottom:829.741500px;}
.y7{bottom:842.491500px;}
.yf{bottom:845.266500px;}
.y48{bottom:850.441500px;}
.y26{bottom:860.791500px;}
.ye{bottom:876.316500px;}
.y6{bottom:878.716500px;}
.y47{bottom:881.491500px;}
.y25{bottom:891.841500px;}
.yd{bottom:907.366500px;}
.y46{bottom:912.541500px;}
.y5{bottom:914.941500px;}
.y24{bottom:922.891500px;}
.yc{bottom:938.416500px;}
.y45{bottom:943.591500px;}
.y4{bottom:951.166500px;}
.y23{bottom:953.941500px;}
.yb{bottom:969.466500px;}
.y44{bottom:974.641500px;}
.y22{bottom:984.991500px;}
.y3{bottom:987.391500px;}
.ya{bottom:1000.516500px;}
.y43{bottom:1005.691500px;}
.y21{bottom:1016.041500px;}
.y9{bottom:1031.566500px;}
.y42{bottom:1036.741500px;}
.y20{bottom:1047.091500px;}
.y66{bottom:1062.616500px;}
.y41{bottom:1067.791500px;}
.y1f{bottom:1078.141500px;}
.y8{bottom:1085.641500px;}
.y65{bottom:1093.666500px;}
.y40{bottom:1098.841500px;}
.y2{bottom:1101.316500px;}
.y1e{bottom:1109.191500px;}
.y3f{bottom:1129.891500px;}
.y1d{bottom:1140.241500px;}
.y64{bottom:1158.091500px;}
.y3e{bottom:1160.941500px;}
.h6{height:49.289062px;}
.ha{height:49.992188px;}
.h5{height:50.027344px;}
.h9{height:52.646484px;}
.h4{height:58.365234px;}
.h7{height:63.175781px;}
.h8{height:65.052539px;}
.hb{height:73.705078px;}
.h3{height:104.223633px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:85.200000px;}
.x9{left:138.375000px;}
.x3{left:235.200000px;}
.x1{left:279.525000px;}
.x5{left:302.850000px;}
.x6{left:310.575000px;}
.x4{left:325.875000px;}
.x2{left:354.825000px;}
.xa{left:393.300000px;}
.x7{left:420.375000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.266667pt;}
.ls2{letter-spacing:4.533333pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws4{word-spacing:-9.333333pt;}
.ws2{word-spacing:-0.064000pt;}
.ws0{word-spacing:0.000000pt;}
._20{margin-left:-8.437333pt;}
._22{margin-left:-6.698667pt;}
._1{margin-left:-4.405333pt;}
._f{margin-left:-3.392000pt;}
._0{margin-left:-2.314667pt;}
._2{margin-left:-1.088000pt;}
._5{width:1.034667pt;}
._1a{width:2.624000pt;}
._18{width:4.224000pt;}
._19{width:5.248000pt;}
._1b{width:6.656000pt;}
._1c{width:7.552000pt;}
._1e{width:9.088000pt;}
._1f{width:10.368000pt;}
._23{width:11.968000pt;}
._24{width:13.056000pt;}
._1d{width:14.080000pt;}
._21{width:15.040000pt;}
._25{width:17.024000pt;}
._26{width:18.144000pt;}
._27{width:19.840000pt;}
._28{width:20.917333pt;}
._29{width:27.200000pt;}
._2a{width:30.592000pt;}
._10{width:771.648000pt;}
._b{width:786.112000pt;}
._8{width:1038.656000pt;}
._14{width:1042.112000pt;}
._a{width:1095.232000pt;}
._16{width:1105.728000pt;}
._11{width:1164.416000pt;}
._15{width:1297.792000pt;}
._6{width:1335.733333pt;}
._13{width:1351.232000pt;}
._d{width:1436.160000pt;}
._12{width:1465.664000pt;}
._c{width:1491.200000pt;}
._7{width:1618.944000pt;}
._4{width:1667.008000pt;}
._e{width:1865.408000pt;}
._17{width:1877.888000pt;}
._3{width:1882.560000pt;}
._9{width:1890.560000pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y5f{bottom:78.481333pt;}
.y63{bottom:93.548000pt;}
.y5e{bottom:93.881333pt;}
.y3d{bottom:102.748000pt;}
.y5d{bottom:109.281333pt;}
.y6d{bottom:116.548000pt;}
.y62{bottom:121.148000pt;}
.y3c{bottom:130.348000pt;}
.y6c{bottom:144.148000pt;}
.y61{bottom:148.748000pt;}
.y3b{bottom:157.948000pt;}
.y5c{bottom:176.348000pt;}
.y3a{bottom:185.548000pt;}
.y6b{bottom:199.348000pt;}
.y5b{bottom:203.948000pt;}
.y39{bottom:213.148000pt;}
.y6a{bottom:226.948000pt;}
.y5a{bottom:231.548000pt;}
.y38{bottom:240.748000pt;}
.y59{bottom:259.148000pt;}
.y37{bottom:268.348000pt;}
.y69{bottom:282.148000pt;}
.y60{bottom:286.748000pt;}
.y36{bottom:295.948000pt;}
.y68{bottom:309.748000pt;}
.y58{bottom:314.348000pt;}
.y35{bottom:323.548000pt;}
.y57{bottom:341.948000pt;}
.y34{bottom:351.148000pt;}
.y67{bottom:364.948000pt;}
.y56{bottom:369.548000pt;}
.y33{bottom:378.748000pt;}
.y1c{bottom:392.548000pt;}
.y55{bottom:397.148000pt;}
.y32{bottom:406.348000pt;}
.y1b{bottom:420.148000pt;}
.y54{bottom:424.748000pt;}
.y31{bottom:433.948000pt;}
.y1a{bottom:447.748000pt;}
.y53{bottom:452.348000pt;}
.y30{bottom:461.548000pt;}
.y19{bottom:475.348000pt;}
.y52{bottom:479.948000pt;}
.y2f{bottom:489.148000pt;}
.y18{bottom:502.948000pt;}
.y51{bottom:507.548000pt;}
.y17{bottom:530.548000pt;}
.y50{bottom:535.148000pt;}
.y2e{bottom:544.348000pt;}
.y16{bottom:558.148000pt;}
.y4f{bottom:562.748000pt;}
.y2d{bottom:571.948000pt;}
.y15{bottom:585.748000pt;}
.y4e{bottom:590.348000pt;}
.y2c{bottom:599.548000pt;}
.y14{bottom:613.348000pt;}
.y4d{bottom:617.948000pt;}
.y2b{bottom:627.148000pt;}
.y13{bottom:640.948000pt;}
.y4c{bottom:645.548000pt;}
.y2a{bottom:654.748000pt;}
.y12{bottom:668.548000pt;}
.y4b{bottom:673.148000pt;}
.y29{bottom:682.348000pt;}
.y11{bottom:696.148000pt;}
.y4a{bottom:700.748000pt;}
.y28{bottom:709.948000pt;}
.y10{bottom:723.748000pt;}
.y49{bottom:728.348000pt;}
.y27{bottom:737.548000pt;}
.y7{bottom:748.881333pt;}
.yf{bottom:751.348000pt;}
.y48{bottom:755.948000pt;}
.y26{bottom:765.148000pt;}
.ye{bottom:778.948000pt;}
.y6{bottom:781.081333pt;}
.y47{bottom:783.548000pt;}
.y25{bottom:792.748000pt;}
.yd{bottom:806.548000pt;}
.y46{bottom:811.148000pt;}
.y5{bottom:813.281333pt;}
.y24{bottom:820.348000pt;}
.yc{bottom:834.148000pt;}
.y45{bottom:838.748000pt;}
.y4{bottom:845.481333pt;}
.y23{bottom:847.948000pt;}
.yb{bottom:861.748000pt;}
.y44{bottom:866.348000pt;}
.y22{bottom:875.548000pt;}
.y3{bottom:877.681333pt;}
.ya{bottom:889.348000pt;}
.y43{bottom:893.948000pt;}
.y21{bottom:903.148000pt;}
.y9{bottom:916.948000pt;}
.y42{bottom:921.548000pt;}
.y20{bottom:930.748000pt;}
.y66{bottom:944.548000pt;}
.y41{bottom:949.148000pt;}
.y1f{bottom:958.348000pt;}
.y8{bottom:965.014667pt;}
.y65{bottom:972.148000pt;}
.y40{bottom:976.748000pt;}
.y2{bottom:978.948000pt;}
.y1e{bottom:985.948000pt;}
.y3f{bottom:1004.348000pt;}
.y1d{bottom:1013.548000pt;}
.y64{bottom:1029.414667pt;}
.y3e{bottom:1031.948000pt;}
.h6{height:43.812500pt;}
.ha{height:44.437500pt;}
.h5{height:44.468750pt;}
.h9{height:46.796875pt;}
.h4{height:51.880208pt;}
.h7{height:56.156250pt;}
.h8{height:57.824479pt;}
.hb{height:65.515625pt;}
.h3{height:92.643229pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:75.733333pt;}
.x9{left:123.000000pt;}
.x3{left:209.066667pt;}
.x1{left:248.466667pt;}
.x5{left:269.200000pt;}
.x6{left:276.066667pt;}
.x4{left:289.666667pt;}
.x2{left:315.400000pt;}
.xa{left:349.600000pt;}
.x7{left:373.666667pt;}
}




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