
    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_ed362d732ffec0222e8393f3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.992000;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_7cc70009e23dade4964a696d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.992000;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_d4bc1a25ce5b814ad3d99f70.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.861816;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_1fd64d6d34ec4583fb9ec222.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.980000;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_f27e2654aae05c2df4d0c1f3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.992000;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_cf269d80794d1874e6b2d18f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.857910;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_1cc5d699d882af11c2408e8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.858398;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_a4da88d6c7faf2599ce2eeb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;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:ff9;src:url('chunks/assets/font_e8073ce616665850ccfeb4f1.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9411cc06fedccc06d638ee02.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.992000;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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.070572px;}
.ls1{letter-spacing:0.070707px;}
.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;}
}
.ws3{word-spacing:-77.880005px;}
.ws0{word-spacing:-59.472002px;}
.ws5{word-spacing:-48.449337px;}
.ws2{word-spacing:-47.108341px;}
.ws1{word-spacing:-45.312003px;}
.ws6{word-spacing:-42.480001px;}
.ws4{word-spacing:-38.756921px;}
.ws7{word-spacing:0.000000px;}
._d{margin-left:-19.914000px;}
._5{margin-left:-15.264000px;}
._e{margin-left:-13.436590px;}
._15{margin-left:-12.288001px;}
._12{margin-left:-10.933258px;}
._6{margin-left:-9.144000px;}
._0{margin-left:-7.308000px;}
._a{margin-left:-5.910000px;}
._7{margin-left:-4.881410px;}
._4{margin-left:-3.690000px;}
._1{margin-left:-2.268000px;}
._3{margin-left:-1.008000px;}
._2{width:1.008000px;}
._8{width:2.629730px;}
._c{width:3.864000px;}
._11{width:25.536000px;}
._9{width:27.264002px;}
._10{width:31.247999px;}
._f{width:32.844000px;}
._b{width:107.980052px;}
._14{width:784.706605px;}
._13{width:1012.111767px;}
.fc2{color:rgb(112,115,114);}
.fc5{color:rgb(15,127,60);}
.fc4{color:rgb(62,62,62);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(67,67,67);}
.fc0{color:rgb(0,159,77);}
.fsc{font-size:12.000001px;}
.fs10{font-size:96.000006px;}
.fs2{font-size:120.000001px;}
.fs9{font-size:167.999999px;}
.fsb{font-size:171.490802px;}
.fse{font-size:177.000000px;}
.fsd{font-size:180.000006px;}
.fs4{font-size:186.000000px;}
.fs3{font-size:192.000012px;}
.fs1{font-size:198.000006px;}
.fs7{font-size:199.611614px;}
.fsa{font-size:214.377599px;}
.fs0{font-size:252.000008px;}
.fs6{font-size:269.901009px;}
.fs8{font-size:330.000023px;}
.fsf{font-size:360.000012px;}
.fs5{font-size:480.000003px;}
.y0{bottom:0.000000px;}
.y6{bottom:72.762178px;}
.y5{bottom:108.762179px;}
.y4{bottom:144.762180px;}
.y1{bottom:148.163534px;}
.y3{bottom:180.762184px;}
.y1b{bottom:299.537503px;}
.y57{bottom:315.745806px;}
.y1a{bottom:357.497493px;}
.y56{bottom:369.745808px;}
.y19{bottom:415.457484px;}
.y55{bottom:423.745809px;}
.y18{bottom:473.417475px;}
.y54{bottom:477.745811px;}
.y17{bottom:531.377460px;}
.y53{bottom:547.465798px;}
.y16{bottom:589.337449px;}
.y52{bottom:599.305789px;}
.y51{bottom:648.145786px;}
.y15{bottom:659.845022px;}
.y50{bottom:702.145777px;}
.y4f{bottom:756.145774px;}
.y1f{bottom:798.140973px;}
.y4e{bottom:825.865777px;}
.y1e{bottom:856.100958px;}
.y1d{bottom:914.060947px;}
.y4d{bottom:914.623780px;}
.y1c{bottom:987.624582px;}
.y38{bottom:1062.874642px;}
.y63{bottom:1237.538053px;}
.y62{bottom:1299.638032px;}
.y61{bottom:1361.738023px;}
.y37{bottom:1389.847341px;}
.y60{bottom:1440.098022px;}
.y67{bottom:1563.823501px;}
.y5f{bottom:1563.824851px;}
.y36{bottom:1619.011041px;}
.y66{bottom:1625.923480px;}
.y5e{bottom:1625.924830px;}
.y35{bottom:1670.458283px;}
.y65{bottom:1688.023471px;}
.y5d{bottom:1688.024821px;}
.y34{bottom:1724.478729px;}
.y64{bottom:1766.383470px;}
.y5c{bottom:1766.384820px;}
.y33{bottom:1878.108787px;}
.y5b{bottom:1887.575224px;}
.y32{bottom:1932.129230px;}
.y5a{bottom:1955.885237px;}
.y59{bottom:2024.195230px;}
.y31{bottom:2085.759449px;}
.y58{bottom:2109.060281px;}
.y30{bottom:2137.206690px;}
.y2f{bottom:2191.227122px;}
.y2e{bottom:2333.080919px;}
.y40{bottom:2341.081402px;}
.y2d{bottom:2384.528150px;}
.y3f{bottom:2402.146381px;}
.y2c{bottom:2438.548593px;}
.y3e{bottom:2471.146380px;}
.y3d{bottom:2518.486382px;}
.y4c{bottom:2593.504972px;}
.y2b{bottom:2594.345325px;}
.y2a{bottom:2645.792571px;}
.y4b{bottom:2654.569952px;}
.y29{bottom:2699.813010px;}
.y4a{bottom:2723.569950px;}
.y49{bottom:2770.909953px;}
.y25{bottom:2835.641621px;}
.y48{bottom:2845.688907px;}
.y24{bottom:2887.088863px;}
.y47{bottom:2907.788898px;}
.y23{bottom:2941.109309px;}
.y46{bottom:2977.508896px;}
.y45{bottom:3024.848899px;}
.y44{bottom:3101.515490px;}
.y28{bottom:3131.329003px;}
.y43{bottom:3163.615481px;}
.y27{bottom:3198.850426px;}
.y42{bottom:3233.335479px;}
.y26{bottom:3252.870869px;}
.y41{bottom:3280.675482px;}
.y3c{bottom:3339.724145px;}
.y22{bottom:3402.343346px;}
.y3b{bottom:3408.034159px;}
.y21{bottom:3468.583337px;}
.y3a{bottom:3476.344152px;}
.y20{bottom:3562.966452px;}
.y39{bottom:3565.648790px;}
.y14{bottom:3768.622455px;}
.y11{bottom:3769.025813px;}
.ye{bottom:3772.114568px;}
.y13{bottom:3828.505948px;}
.y10{bottom:3828.909306px;}
.yd{bottom:3831.998061px;}
.y12{bottom:3892.606785px;}
.yf{bottom:3893.010143px;}
.yc{bottom:3896.098898px;}
.y9{bottom:4071.255902px;}
.y8{bottom:4137.495882px;}
.y7{bottom:4203.735873px;}
.y2{bottom:4375.211575px;}
.yb{bottom:4478.228490px;}
.ya{bottom:4622.228502px;}
.hd{height:9.360000px;}
.h11{height:74.880005px;}
.h3{height:93.600001px;}
.hb{height:116.643891px;}
.hc{height:117.230041px;}
.h9{height:131.040000px;}
.he{height:138.060000px;}
.hf{height:140.400004px;}
.ha{height:146.547187px;}
.h4{height:149.760009px;}
.h2{height:154.440005px;}
.h7{height:155.697059px;}
.h6{height:184.502643px;}
.h1{height:196.560006px;}
.h8{height:257.400018px;}
.h10{height:280.800009px;}
.h5{height:374.400003px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x2{left:90.000003px;}
.x1{left:94.139879px;}
.x4{left:100.125003px;}
.xd{left:119.046266px;}
.x27{left:120.391535px;}
.x28{left:178.886818px;}
.x6{left:336.769886px;}
.x22{left:379.700810px;}
.xf{left:410.689239px;}
.x1d{left:518.355507px;}
.x13{left:537.258032px;}
.x1b{left:565.050078px;}
.x19{left:587.691323px;}
.x12{left:595.148498px;}
.x16{left:659.957950px;}
.x15{left:683.362912px;}
.x1f{left:700.270886px;}
.x18{left:723.686446px;}
.x20{left:733.040371px;}
.x11{left:736.633902px;}
.xe{left:750.197724px;}
.x10{left:756.943562px;}
.x1a{left:761.649471px;}
.x21{left:781.819692px;}
.x17{left:790.610043px;}
.x14{left:801.061563px;}
.x1e{left:803.939077px;}
.x1c{left:813.108952px;}
.x5{left:993.776376px;}
.x7{left:1650.783315px;}
.xa{left:1845.345547px;}
.xb{left:1854.506048px;}
.x23{left:1864.123597px;}
.x26{left:1895.675236px;}
.x25{left:1906.655346px;}
.x29{left:1908.209761px;}
.x24{left:1909.355349px;}
.xc{left:1918.125061px;}
.x2a{left:2069.740416px;}
.x8{left:2332.187400px;}
.x3{left:2728.495550px;}
.x2b{left:2746.494200px;}
.x9{left:2996.715808px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.062730pt;}
.ls1{letter-spacing:0.062850pt;}
.ws3{word-spacing:-69.226671pt;}
.ws0{word-spacing:-52.864002pt;}
.ws5{word-spacing:-43.066078pt;}
.ws2{word-spacing:-41.874081pt;}
.ws1{word-spacing:-40.277336pt;}
.ws6{word-spacing:-37.760001pt;}
.ws4{word-spacing:-34.450597pt;}
.ws7{word-spacing:0.000000pt;}
._d{margin-left:-17.701333pt;}
._5{margin-left:-13.568000pt;}
._e{margin-left:-11.943635pt;}
._15{margin-left:-10.922667pt;}
._12{margin-left:-9.718451pt;}
._6{margin-left:-8.128000pt;}
._0{margin-left:-6.496000pt;}
._a{margin-left:-5.253333pt;}
._7{margin-left:-4.339031pt;}
._4{margin-left:-3.280000pt;}
._1{margin-left:-2.016000pt;}
._3{margin-left:-0.896000pt;}
._2{width:0.896000pt;}
._8{width:2.337537pt;}
._c{width:3.434667pt;}
._11{width:22.698667pt;}
._9{width:24.234668pt;}
._10{width:27.775999pt;}
._f{width:29.194667pt;}
._b{width:95.982269pt;}
._14{width:697.516982pt;}
._13{width:899.654904pt;}
.fsc{font-size:10.666667pt;}
.fs10{font-size:85.333339pt;}
.fs2{font-size:106.666667pt;}
.fs9{font-size:149.333333pt;}
.fsb{font-size:152.436269pt;}
.fse{font-size:157.333333pt;}
.fsd{font-size:160.000005pt;}
.fs4{font-size:165.333333pt;}
.fs3{font-size:170.666677pt;}
.fs1{font-size:176.000006pt;}
.fs7{font-size:177.432546pt;}
.fsa{font-size:190.557866pt;}
.fs0{font-size:224.000007pt;}
.fs6{font-size:239.912008pt;}
.fs8{font-size:293.333353pt;}
.fsf{font-size:320.000010pt;}
.fs5{font-size:426.666670pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:64.677492pt;}
.y5{bottom:96.677493pt;}
.y4{bottom:128.677494pt;}
.y1{bottom:131.700919pt;}
.y3{bottom:160.677497pt;}
.y1b{bottom:266.255558pt;}
.y57{bottom:280.662939pt;}
.y1a{bottom:317.775550pt;}
.y56{bottom:328.662940pt;}
.y19{bottom:369.295541pt;}
.y55{bottom:376.662942pt;}
.y18{bottom:420.815533pt;}
.y54{bottom:424.662943pt;}
.y17{bottom:472.335520pt;}
.y53{bottom:486.636265pt;}
.y16{bottom:523.855510pt;}
.y52{bottom:532.716257pt;}
.y51{bottom:576.129588pt;}
.y15{bottom:586.528908pt;}
.y50{bottom:624.129580pt;}
.y4f{bottom:672.129577pt;}
.y1f{bottom:709.458642pt;}
.y4e{bottom:734.102913pt;}
.y1e{bottom:760.978629pt;}
.y1d{bottom:812.498620pt;}
.y4d{bottom:812.998916pt;}
.y1c{bottom:877.888518pt;}
.y38{bottom:944.777460pt;}
.y63{bottom:1100.033825pt;}
.y62{bottom:1155.233807pt;}
.y61{bottom:1210.433798pt;}
.y37{bottom:1235.419859pt;}
.y60{bottom:1280.087131pt;}
.y67{bottom:1390.065334pt;}
.y5f{bottom:1390.066534pt;}
.y36{bottom:1439.120926pt;}
.y66{bottom:1445.265316pt;}
.y5e{bottom:1445.266516pt;}
.y35{bottom:1484.851807pt;}
.y65{bottom:1500.465308pt;}
.y5d{bottom:1500.466508pt;}
.y34{bottom:1532.869982pt;}
.y64{bottom:1570.118640pt;}
.y5c{bottom:1570.119840pt;}
.y33{bottom:1669.430033pt;}
.y5b{bottom:1677.844643pt;}
.y32{bottom:1717.448205pt;}
.y5a{bottom:1738.564655pt;}
.y59{bottom:1799.284649pt;}
.y31{bottom:1854.008399pt;}
.y58{bottom:1874.720250pt;}
.y30{bottom:1899.739280pt;}
.y2f{bottom:1947.757442pt;}
.y2e{bottom:2073.849706pt;}
.y40{bottom:2080.961246pt;}
.y2d{bottom:2119.580577pt;}
.y3f{bottom:2135.241228pt;}
.y2c{bottom:2167.598749pt;}
.y3e{bottom:2196.574560pt;}
.y3d{bottom:2238.654562pt;}
.y4c{bottom:2305.337753pt;}
.y2b{bottom:2306.084733pt;}
.y2a{bottom:2351.815619pt;}
.y4b{bottom:2359.617735pt;}
.y29{bottom:2399.833786pt;}
.y4a{bottom:2420.951067pt;}
.y49{bottom:2463.031069pt;}
.y25{bottom:2520.570330pt;}
.y48{bottom:2529.501250pt;}
.y24{bottom:2566.301212pt;}
.y47{bottom:2584.701242pt;}
.y23{bottom:2614.319386pt;}
.y46{bottom:2646.674574pt;}
.y45{bottom:2688.754577pt;}
.y44{bottom:2756.902658pt;}
.y28{bottom:2783.403559pt;}
.y43{bottom:2812.102650pt;}
.y27{bottom:2843.422601pt;}
.y42{bottom:2874.075982pt;}
.y26{bottom:2891.440772pt;}
.y41{bottom:2916.155984pt;}
.y3c{bottom:2968.643685pt;}
.y22{bottom:3024.305196pt;}
.y3b{bottom:3029.363696pt;}
.y21{bottom:3083.185188pt;}
.y3a{bottom:3090.083690pt;}
.y20{bottom:3167.081291pt;}
.y39{bottom:3169.465591pt;}
.y14{bottom:3349.886627pt;}
.y11{bottom:3350.245167pt;}
.ye{bottom:3352.990727pt;}
.y13{bottom:3403.116398pt;}
.y10{bottom:3403.474938pt;}
.yd{bottom:3406.220499pt;}
.y12{bottom:3460.094920pt;}
.yf{bottom:3460.453460pt;}
.yc{bottom:3463.199020pt;}
.y9{bottom:3618.894135pt;}
.y8{bottom:3677.774117pt;}
.y7{bottom:3736.654109pt;}
.y2{bottom:3889.076956pt;}
.yb{bottom:3980.647547pt;}
.ya{bottom:4108.647557pt;}
.hd{height:8.320000pt;}
.h11{height:66.560004pt;}
.h3{height:83.200001pt;}
.hb{height:103.683458pt;}
.hc{height:104.204481pt;}
.h9{height:116.480000pt;}
.he{height:122.720000pt;}
.hf{height:124.800004pt;}
.ha{height:130.264166pt;}
.h4{height:133.120008pt;}
.h2{height:137.280004pt;}
.h7{height:138.397386pt;}
.h6{height:164.002349pt;}
.h1{height:174.720006pt;}
.h8{height:228.800016pt;}
.h10{height:249.600008pt;}
.h5{height:332.800002pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x2{left:80.000003pt;}
.x1{left:83.679893pt;}
.x4{left:89.000003pt;}
.xd{left:105.818903pt;}
.x27{left:107.014697pt;}
.x28{left:159.010505pt;}
.x6{left:299.351010pt;}
.x22{left:337.511831pt;}
.xf{left:365.057102pt;}
.x1d{left:460.760451pt;}
.x13{left:477.562695pt;}
.x1b{left:502.266736pt;}
.x19{left:522.392287pt;}
.x12{left:529.020887pt;}
.x16{left:586.629289pt;}
.x15{left:607.433699pt;}
.x1f{left:622.463010pt;}
.x18{left:643.276841pt;}
.x20{left:651.591441pt;}
.x11{left:654.785691pt;}
.xe{left:666.842421pt;}
.x10{left:672.838722pt;}
.x1a{left:677.021752pt;}
.x21{left:694.950837pt;}
.x17{left:702.764482pt;}
.x14{left:712.054723pt;}
.x1e{left:714.612513pt;}
.x1c{left:722.763513pt;}
.x5{left:883.356778pt;}
.x7{left:1467.362947pt;}
.xa{left:1640.307152pt;}
.xb{left:1648.449821pt;}
.x23{left:1656.998753pt;}
.x26{left:1685.044654pt;}
.x25{left:1694.804752pt;}
.x29{left:1696.186454pt;}
.x24{left:1697.204754pt;}
.xc{left:1705.000055pt;}
.x2a{left:1839.769259pt;}
.x8{left:2073.055466pt;}
.x3{left:2425.329378pt;}
.x2b{left:2441.328178pt;}
.x9{left:2663.747385pt;}
}




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