
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_44c77e4d2385ce58ff6d5eea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.934082;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_2cd78404944587f910e5d962.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b4ab84d582a0543683d33337.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_845fdaee1aafbe891530f3de.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_af39f4f8e22386876a504cbc.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6aca48ce6428432e33a1af95.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.919434;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_4ba66ccab3a045767b6801f1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_b2fbfdfa8fc7e345a3ac3442.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;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_acfaba0c330b2f55a29dfa62.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929688;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:ffb;src:url('chunks/assets/font_eb10a8d407a81167522cb590.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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:ffc;src:url('chunks/assets/font_1916820393475cd59db2323c.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f058912b73a7647ecc75b613.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.lse{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.750000px;}
.ls7{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.028080px;}
.ls5{letter-spacing:-0.018720px;}
.lsd{letter-spacing:-0.009360px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.037440px;}
.ls8{letter-spacing:0.341400px;}
.ls3{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.480000px;}
.ls9{letter-spacing:0.720000px;}
.ls6{letter-spacing:21.221280px;}
.ls0{letter-spacing:197.429760px;}
.ls1{letter-spacing:1083.329760px;}
.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;}
}
.ws8{word-spacing:-84.240000px;}
.ws5{word-spacing:-21.420000px;}
.ws6{word-spacing:-21.401400px;}
.ws3{word-spacing:-21.060000px;}
.wsa{word-spacing:-21.050640px;}
.ws2{word-spacing:-21.041280px;}
.ws7{word-spacing:-21.031920px;}
.ws9{word-spacing:-20.310000px;}
.wsb{word-spacing:-19.980000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-0.066240px;}
.ws4{word-spacing:0.000000px;}
._0{margin-left:-196.973760px;}
._27{margin-left:-19.617120px;}
._8{margin-left:-2.181600px;}
._1{margin-left:-1.126080px;}
._3{width:1.003440px;}
._9{width:2.243760px;}
._14{width:3.653280px;}
._13{width:4.795440px;}
._12{width:6.402240px;}
._7{width:7.581600px;}
._18{width:8.794560px;}
._5{width:9.802800px;}
._4{width:10.866960px;}
._6{width:12.319440px;}
._15{width:13.446960px;}
._19{width:14.453520px;}
._16{width:15.706800px;}
._17{width:17.100240px;}
._20{width:18.195840px;}
._f{width:19.264080px;}
._d{width:22.153920px;}
._e{width:23.317680px;}
._1b{width:24.763920px;}
._1a{width:25.860480px;}
._23{width:26.982240px;}
._22{width:28.015680px;}
._21{width:29.206080px;}
._24{width:30.271920px;}
._1e{width:31.505760px;}
._1c{width:32.769360px;}
._1d{width:33.802560px;}
._1f{width:35.329440px;}
._c{width:47.035680px;}
._a{width:48.101040px;}
._b{width:50.832720px;}
._10{width:62.506080px;}
._11{width:63.845280px;}
._2{width:638.842080px;}
._25{width:1206.876000px;}
._26{width:1305.660000px;}
.fc4{color:rgb(32,33,34);}
.fc3{color:transparent;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:5.760000px;}
.y3{bottom:6.120000px;}
.y2{bottom:26.100000px;}
.y4{bottom:28.980000px;}
.yb2{bottom:79.560000px;}
.y3f{bottom:82.800000px;}
.y25{bottom:96.840000px;}
.y68{bottom:106.380000px;}
.y3e{bottom:108.900000px;}
.y93{bottom:110.520000px;}
.y24{bottom:120.960000px;}
.yb1{bottom:121.860000px;}
.y67{bottom:130.536000px;}
.y23{bottom:145.116000px;}
.y3d{bottom:151.590000px;}
.y66{bottom:154.650000px;}
.yb0{bottom:164.730000px;}
.y22{bottom:169.230000px;}
.y3c{bottom:179.310000px;}
.y21{bottom:193.350000px;}
.y65{bottom:203.430000px;}
.y3b{bottom:207.030000px;}
.y81{bottom:219.990000px;}
.y54{bottom:223.590000px;}
.yaf{bottom:229.350000px;}
.y20{bottom:242.130000px;}
.y80{bottom:243.930000px;}
.y53{bottom:249.690000px;}
.y3a{bottom:252.390000px;}
.yae{bottom:255.450000px;}
.y64{bottom:258.150000px;}
.y7f{bottom:268.050000px;}
.y1f{bottom:269.850000px;}
.y52{bottom:275.610000px;}
.yad{bottom:281.550000px;}
.y63{bottom:285.870000px;}
.y7e{bottom:292.350000px;}
.y39{bottom:301.170000px;}
.yac{bottom:307.650000px;}
.y1e{bottom:312.330000px;}
.y62{bottom:313.770000px;}
.y7d{bottom:316.470000px;}
.y51{bottom:320.790000px;}
.yab{bottom:333.570000px;}
.y61{bottom:341.490000px;}
.y92{bottom:343.470000px;}
.y50{bottom:344.730000px;}
.y1d{bottom:355.350000px;}
.y38{bottom:355.710000px;}
.yaa{bottom:359.670000px;}
.y7c{bottom:365.250000px;}
.y4f{bottom:369.030000px;}
.y60{bottom:369.210000px;}
.y1c{bottom:383.295000px;}
.ya9{bottom:385.815000px;}
.y4e{bottom:393.195000px;}
.y37{bottom:398.595000px;}
.y7b{bottom:402.915000px;}
.y1b{bottom:411.015000px;}
.ya8{bottom:411.915000px;}
.y5f{bottom:412.095000px;}
.y36{bottom:436.215000px;}
.ya7{bottom:437.835000px;}
.y1a{bottom:438.735000px;}
.y4d{bottom:441.975000px;}
.y5e{bottom:449.895000px;}
.ya6{bottom:463.935000px;}
.y19{bottom:466.635000px;}
.ya5{bottom:490.035000px;}
.y18{bottom:494.355000px;}
.y4c{bottom:496.695000px;}
.ya4{bottom:516.135000px;}
.y17{bottom:536.835000px;}
.y4b{bottom:539.535000px;}
.ya3{bottom:542.235000px;}
.ya2{bottom:568.155000px;}
.y4a{bottom:577.155000px;}
.y16{bottom:579.855000px;}
.y91{bottom:582.195000px;}
.ya1{bottom:594.255000px;}
.y90{bottom:606.135000px;}
.y15{bottom:607.575000px;}
.ya0{bottom:620.355000px;}
.y7a{bottom:624.675000px;}
.y8f{bottom:630.255000px;}
.y9f{bottom:646.485000px;}
.y14{bottom:650.085000px;}
.y79{bottom:652.425000px;}
.y8e{bottom:654.405000px;}
.y9e{bottom:672.405000px;}
.y35{bottom:677.265000px;}
.y8d{bottom:678.525000px;}
.y78{bottom:680.145000px;}
.y13{bottom:695.805000px;}
.y9d{bottom:698.505000px;}
.y34{bottom:701.205000px;}
.y8c{bottom:702.645000px;}
.y77{bottom:708.045000px;}
.y12{bottom:719.745000px;}
.y5d{bottom:723.165000px;}
.y8b{bottom:726.765000px;}
.y9c{bottom:740.805000px;}
.y11{bottom:743.865000px;}
.y33{bottom:746.565000px;}
.y5c{bottom:749.265000px;}
.y76{bottom:750.705000px;}
.y8a{bottom:751.065000px;}
.y10{bottom:767.985000px;}
.y32{bottom:770.505000px;}
.y89{bottom:775.185000px;}
.y5b{bottom:775.365000px;}
.y75{bottom:778.425000px;}
.y9b{bottom:785.445000px;}
.yf{bottom:792.285000px;}
.y5a{bottom:799.305000px;}
.y49{bottom:812.445000px;}
.y9a{bottom:815.145000px;}
.y31{bottom:819.285000px;}
.y88{bottom:820.545000px;}
.y74{bottom:821.265000px;}
.y59{bottom:823.605000px;}
.y48{bottom:840.165000px;}
.ye{bottom:840.525000px;}
.y99{bottom:843.045000px;}
.y87{bottom:844.485000px;}
.y73{bottom:848.985000px;}
.y30{bottom:857.445000px;}
.y86{bottom:868.605000px;}
.y58{bottom:872.385000px;}
.y72{bottom:876.885000px;}
.y2f{bottom:883.545000px;}
.yd{bottom:883.725000px;}
.y47{bottom:885.390000px;}
.y98{bottom:885.750000px;}
.y85{bottom:892.770000px;}
.y2e{bottom:909.690000px;}
.y97{bottom:913.650000px;}
.y84{bottom:917.070000px;}
.y71{bottom:922.110000px;}
.yc{bottom:926.610000px;}
.y57{bottom:926.970000px;}
.y46{bottom:934.170000px;}
.y96{bottom:943.170000px;}
.y70{bottom:946.230000px;}
.y2d{bottom:954.870000px;}
.y45{bottom:961.890000px;}
.y83{bottom:965.670000px;}
.yb{bottom:968.910000px;}
.y56{bottom:969.810000px;}
.y6f{bottom:970.350000px;}
.y95{bottom:972.690000px;}
.y2c{bottom:978.810000px;}
.y6e{bottom:994.470000px;}
.y94{bottom:1000.410000px;}
.y82{bottom:1003.290000px;}
.y44{bottom:1004.730000px;}
.y55{bottom:1007.430000px;}
.ya{bottom:1014.450000px;}
.y2b{bottom:1024.170000px;}
.y6d{bottom:1043.250000px;}
.y2a{bottom:1048.110000px;}
.y43{bottom:1049.910000px;}
.y9{bottom:1063.230000px;}
.y6c{bottom:1070.970000px;}
.y29{bottom:1072.230000px;}
.y42{bottom:1073.850000px;}
.y28{bottom:1096.350000px;}
.y41{bottom:1098.150000px;}
.y6b{bottom:1098.690000px;}
.y8{bottom:1105.710000px;}
.y27{bottom:1120.650000px;}
.y40{bottom:1122.270000px;}
.y6a{bottom:1141.560000px;}
.y7{bottom:1144.800000px;}
.y6{bottom:1168.920000px;}
.y69{bottom:1169.280000px;}
.y26{bottom:1169.460000px;}
.y1{bottom:1226.160000px;}
.h4{height:21.420000px;}
.h7{height:58.819922px;}
.h2{height:65.884219px;}
.h3{height:70.628906px;}
.h6{height:82.676953px;}
.h5{height:84.898125px;}
.h8{height:86.585445px;}
.h9{height:87.695156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:49.536000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:20.550000px;}
.x1{left:95.796000px;}
.x2{left:111.636000px;}
.xd{left:122.796000px;}
.x20{left:136.476000px;}
.xe{left:149.796000px;}
.x16{left:220.710000px;}
.x1e{left:227.730000px;}
.x13{left:237.630000px;}
.x1c{left:283.215000px;}
.x1a{left:292.215000px;}
.x5{left:329.295000px;}
.x10{left:342.255000px;}
.x1b{left:343.515000px;}
.x6{left:361.695000px;}
.x11{left:396.255000px;}
.x17{left:398.055000px;}
.xc{left:402.195000px;}
.x14{left:403.275000px;}
.x22{left:410.115000px;}
.x18{left:416.415000px;}
.x21{left:421.455000px;}
.x19{left:424.335000px;}
.x3{left:438.915000px;}
.xb{left:503.745000px;}
.x9{left:506.265000px;}
.x7{left:513.825000px;}
.x15{left:596.625000px;}
.x12{left:599.865000px;}
.xa{left:603.105000px;}
.x1f{left:612.465000px;}
.x8{left:624.165000px;}
.x1d{left:627.990000px;}
.xf{left:681.270000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.666667pt;}
.ls7{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.024960pt;}
.ls5{letter-spacing:-0.016640pt;}
.lsd{letter-spacing:-0.008320pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.033280pt;}
.ls8{letter-spacing:0.303467pt;}
.ls3{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.426667pt;}
.ls9{letter-spacing:0.640000pt;}
.ls6{letter-spacing:18.863360pt;}
.ls0{letter-spacing:175.493120pt;}
.ls1{letter-spacing:962.959787pt;}
.ws8{word-spacing:-74.880000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws6{word-spacing:-19.023467pt;}
.ws3{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.711680pt;}
.ws2{word-spacing:-18.703360pt;}
.ws7{word-spacing:-18.695040pt;}
.ws9{word-spacing:-18.053333pt;}
.wsb{word-spacing:-17.760000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-0.058880pt;}
.ws4{word-spacing:0.000000pt;}
._0{margin-left:-175.087787pt;}
._27{margin-left:-17.437440pt;}
._8{margin-left:-1.939200pt;}
._1{margin-left:-1.000960pt;}
._3{width:0.891947pt;}
._9{width:1.994453pt;}
._14{width:3.247360pt;}
._13{width:4.262613pt;}
._12{width:5.690880pt;}
._7{width:6.739200pt;}
._18{width:7.817387pt;}
._5{width:8.713600pt;}
._4{width:9.659520pt;}
._6{width:10.950613pt;}
._15{width:11.952853pt;}
._19{width:12.847573pt;}
._16{width:13.961600pt;}
._17{width:15.200213pt;}
._20{width:16.174080pt;}
._f{width:17.123627pt;}
._d{width:19.692373pt;}
._e{width:20.726827pt;}
._1b{width:22.012373pt;}
._1a{width:22.987093pt;}
._23{width:23.984213pt;}
._22{width:24.902827pt;}
._21{width:25.960960pt;}
._24{width:26.908373pt;}
._1e{width:28.005120pt;}
._1c{width:29.128320pt;}
._1d{width:30.046720pt;}
._1f{width:31.403947pt;}
._c{width:41.809493pt;}
._a{width:42.756480pt;}
._b{width:45.184640pt;}
._10{width:55.560960pt;}
._11{width:56.751360pt;}
._2{width:567.859627pt;}
._25{width:1072.778667pt;}
._26{width:1160.586667pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:5.120000pt;}
.y3{bottom:5.440000pt;}
.y2{bottom:23.200000pt;}
.y4{bottom:25.760000pt;}
.yb2{bottom:70.720000pt;}
.y3f{bottom:73.600000pt;}
.y25{bottom:86.080000pt;}
.y68{bottom:94.560000pt;}
.y3e{bottom:96.800000pt;}
.y93{bottom:98.240000pt;}
.y24{bottom:107.520000pt;}
.yb1{bottom:108.320000pt;}
.y67{bottom:116.032000pt;}
.y23{bottom:128.992000pt;}
.y3d{bottom:134.746667pt;}
.y66{bottom:137.466667pt;}
.yb0{bottom:146.426667pt;}
.y22{bottom:150.426667pt;}
.y3c{bottom:159.386667pt;}
.y21{bottom:171.866667pt;}
.y65{bottom:180.826667pt;}
.y3b{bottom:184.026667pt;}
.y81{bottom:195.546667pt;}
.y54{bottom:198.746667pt;}
.yaf{bottom:203.866667pt;}
.y20{bottom:215.226667pt;}
.y80{bottom:216.826667pt;}
.y53{bottom:221.946667pt;}
.y3a{bottom:224.346667pt;}
.yae{bottom:227.066667pt;}
.y64{bottom:229.466667pt;}
.y7f{bottom:238.266667pt;}
.y1f{bottom:239.866667pt;}
.y52{bottom:244.986667pt;}
.yad{bottom:250.266667pt;}
.y63{bottom:254.106667pt;}
.y7e{bottom:259.866667pt;}
.y39{bottom:267.706667pt;}
.yac{bottom:273.466667pt;}
.y1e{bottom:277.626667pt;}
.y62{bottom:278.906667pt;}
.y7d{bottom:281.306667pt;}
.y51{bottom:285.146667pt;}
.yab{bottom:296.506667pt;}
.y61{bottom:303.546667pt;}
.y92{bottom:305.306667pt;}
.y50{bottom:306.426667pt;}
.y1d{bottom:315.866667pt;}
.y38{bottom:316.186667pt;}
.yaa{bottom:319.706667pt;}
.y7c{bottom:324.666667pt;}
.y4f{bottom:328.026667pt;}
.y60{bottom:328.186667pt;}
.y1c{bottom:340.706667pt;}
.ya9{bottom:342.946667pt;}
.y4e{bottom:349.506667pt;}
.y37{bottom:354.306667pt;}
.y7b{bottom:358.146667pt;}
.y1b{bottom:365.346667pt;}
.ya8{bottom:366.146667pt;}
.y5f{bottom:366.306667pt;}
.y36{bottom:387.746667pt;}
.ya7{bottom:389.186667pt;}
.y1a{bottom:389.986667pt;}
.y4d{bottom:392.866667pt;}
.y5e{bottom:399.906667pt;}
.ya6{bottom:412.386667pt;}
.y19{bottom:414.786667pt;}
.ya5{bottom:435.586667pt;}
.y18{bottom:439.426667pt;}
.y4c{bottom:441.506667pt;}
.ya4{bottom:458.786667pt;}
.y17{bottom:477.186667pt;}
.y4b{bottom:479.586667pt;}
.ya3{bottom:481.986667pt;}
.ya2{bottom:505.026667pt;}
.y4a{bottom:513.026667pt;}
.y16{bottom:515.426667pt;}
.y91{bottom:517.506667pt;}
.ya1{bottom:528.226667pt;}
.y90{bottom:538.786667pt;}
.y15{bottom:540.066667pt;}
.ya0{bottom:551.426667pt;}
.y7a{bottom:555.266667pt;}
.y8f{bottom:560.226667pt;}
.y9f{bottom:574.653333pt;}
.y14{bottom:577.853333pt;}
.y79{bottom:579.933333pt;}
.y8e{bottom:581.693333pt;}
.y9e{bottom:597.693333pt;}
.y35{bottom:602.013333pt;}
.y8d{bottom:603.133333pt;}
.y78{bottom:604.573333pt;}
.y13{bottom:618.493333pt;}
.y9d{bottom:620.893333pt;}
.y34{bottom:623.293333pt;}
.y8c{bottom:624.573333pt;}
.y77{bottom:629.373333pt;}
.y12{bottom:639.773333pt;}
.y5d{bottom:642.813333pt;}
.y8b{bottom:646.013333pt;}
.y9c{bottom:658.493333pt;}
.y11{bottom:661.213333pt;}
.y33{bottom:663.613333pt;}
.y5c{bottom:666.013333pt;}
.y76{bottom:667.293333pt;}
.y8a{bottom:667.613333pt;}
.y10{bottom:682.653333pt;}
.y32{bottom:684.893333pt;}
.y89{bottom:689.053333pt;}
.y5b{bottom:689.213333pt;}
.y75{bottom:691.933333pt;}
.y9b{bottom:698.173333pt;}
.yf{bottom:704.253333pt;}
.y5a{bottom:710.493333pt;}
.y49{bottom:722.173333pt;}
.y9a{bottom:724.573333pt;}
.y31{bottom:728.253333pt;}
.y88{bottom:729.373333pt;}
.y74{bottom:730.013333pt;}
.y59{bottom:732.093333pt;}
.y48{bottom:746.813333pt;}
.ye{bottom:747.133333pt;}
.y99{bottom:749.373333pt;}
.y87{bottom:750.653333pt;}
.y73{bottom:754.653333pt;}
.y30{bottom:762.173333pt;}
.y86{bottom:772.093333pt;}
.y58{bottom:775.453333pt;}
.y72{bottom:779.453333pt;}
.y2f{bottom:785.373333pt;}
.yd{bottom:785.533333pt;}
.y47{bottom:787.013333pt;}
.y98{bottom:787.333333pt;}
.y85{bottom:793.573333pt;}
.y2e{bottom:808.613333pt;}
.y97{bottom:812.133333pt;}
.y84{bottom:815.173333pt;}
.y71{bottom:819.653333pt;}
.yc{bottom:823.653333pt;}
.y57{bottom:823.973333pt;}
.y46{bottom:830.373333pt;}
.y96{bottom:838.373333pt;}
.y70{bottom:841.093333pt;}
.y2d{bottom:848.773333pt;}
.y45{bottom:855.013333pt;}
.y83{bottom:858.373333pt;}
.yb{bottom:861.253333pt;}
.y56{bottom:862.053333pt;}
.y6f{bottom:862.533333pt;}
.y95{bottom:864.613333pt;}
.y2c{bottom:870.053333pt;}
.y6e{bottom:883.973333pt;}
.y94{bottom:889.253333pt;}
.y82{bottom:891.813333pt;}
.y44{bottom:893.093333pt;}
.y55{bottom:895.493333pt;}
.ya{bottom:901.733333pt;}
.y2b{bottom:910.373333pt;}
.y6d{bottom:927.333333pt;}
.y2a{bottom:931.653333pt;}
.y43{bottom:933.253333pt;}
.y9{bottom:945.093333pt;}
.y6c{bottom:951.973333pt;}
.y29{bottom:953.093333pt;}
.y42{bottom:954.533333pt;}
.y28{bottom:974.533333pt;}
.y41{bottom:976.133333pt;}
.y6b{bottom:976.613333pt;}
.y8{bottom:982.853333pt;}
.y27{bottom:996.133333pt;}
.y40{bottom:997.573333pt;}
.y6a{bottom:1014.720000pt;}
.y7{bottom:1017.600000pt;}
.y6{bottom:1039.040000pt;}
.y69{bottom:1039.360000pt;}
.y26{bottom:1039.520000pt;}
.y1{bottom:1089.920000pt;}
.h4{height:19.040000pt;}
.h7{height:52.284375pt;}
.h2{height:58.563750pt;}
.h3{height:62.781250pt;}
.h6{height:73.490625pt;}
.h5{height:75.465000pt;}
.h8{height:76.964840pt;}
.h9{height:77.951250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:44.032000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:18.266667pt;}
.x1{left:85.152000pt;}
.x2{left:99.232000pt;}
.xd{left:109.152000pt;}
.x20{left:121.312000pt;}
.xe{left:133.152000pt;}
.x16{left:196.186667pt;}
.x1e{left:202.426667pt;}
.x13{left:211.226667pt;}
.x1c{left:251.746667pt;}
.x1a{left:259.746667pt;}
.x5{left:292.706667pt;}
.x10{left:304.226667pt;}
.x1b{left:305.346667pt;}
.x6{left:321.506667pt;}
.x11{left:352.226667pt;}
.x17{left:353.826667pt;}
.xc{left:357.506667pt;}
.x14{left:358.466667pt;}
.x22{left:364.546667pt;}
.x18{left:370.146667pt;}
.x21{left:374.626667pt;}
.x19{left:377.186667pt;}
.x3{left:390.146667pt;}
.xb{left:447.773333pt;}
.x9{left:450.013333pt;}
.x7{left:456.733333pt;}
.x15{left:530.333333pt;}
.x12{left:533.213333pt;}
.xa{left:536.093333pt;}
.x1f{left:544.413333pt;}
.x8{left:554.813333pt;}
.x1d{left:558.213333pt;}
.xf{left:605.573333pt;}
}




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