
    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_991d9a8097951163851e71b6.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3fe77de6a9e4a634b62011ae.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a26c0425a6092ec99b711681.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_69f0c7fea2db6cb54f32aba3.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ade0e377cb972840f3ce24e4.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_405fb68338fad7b180c8a267.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_162608374fa17b8c5d7539f2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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);}
.v2{vertical-align:-99.600000px;}
.v1{vertical-align:-97.200000px;}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.552000px;}
.ls5{letter-spacing:-0.516000px;}
.ls6{letter-spacing:-0.276000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.600000px;}
.lse{letter-spacing:0.888000px;}
.ls2{letter-spacing:1.104000px;}
.ls9{letter-spacing:4.200000px;}
.lsa{letter-spacing:7.200000px;}
.lsb{letter-spacing:8.400000px;}
.ls8{letter-spacing:15.000000px;}
.lsc{letter-spacing:17.460000px;}
.ls7{letter-spacing:24.600000px;}
.lsd{letter-spacing:31.830000px;}
.ls0{letter-spacing:939.330000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-21.000000px;}
.ws2{word-spacing:-20.724000px;}
.ws1{word-spacing:0.000000px;}
._4e{margin-left:-5.880000px;}
._4b{margin-left:-3.780000px;}
._4{margin-left:-2.520000px;}
._1{margin-left:-1.092000px;}
._0{width:1.260000px;}
._2{width:2.694000px;}
._3{width:4.410000px;}
._d{width:5.628000px;}
._16{width:7.644000px;}
._6{width:9.408000px;}
._5{width:10.584000px;}
._7{width:12.012000px;}
._10{width:13.020000px;}
._11{width:14.616000px;}
._3c{width:15.624000px;}
._3b{width:16.632000px;}
._f{width:18.480000px;}
._e{width:19.740000px;}
._4a{width:21.348000px;}
._c{width:22.458000px;}
._a{width:23.520000px;}
._b{width:24.750000px;}
._40{width:25.818000px;}
._4c{width:26.880000px;}
._44{width:28.140000px;}
._45{width:29.250000px;}
._15{width:30.492000px;}
._12{width:31.500000px;}
._18{width:32.646000px;}
._3f{width:34.446000px;}
._3d{width:35.448000px;}
._3e{width:36.456000px;}
._17{width:39.396000px;}
._14{width:40.404000px;}
._13{width:41.916000px;}
._26{width:43.680000px;}
._9{width:45.780000px;}
._8{width:46.788000px;}
._23{width:50.736000px;}
._31{width:52.332000px;}
._48{width:53.340000px;}
._1d{width:54.348000px;}
._1c{width:55.440000px;}
._49{width:57.414000px;}
._1a{width:71.232000px;}
._2a{width:73.500000px;}
._29{width:75.012000px;}
._1f{width:77.544000px;}
._20{width:79.296000px;}
._2e{width:81.900000px;}
._2f{width:84.000000px;}
._19{width:97.860000px;}
._36{width:101.304000px;}
._4d{width:103.710000px;}
._4f{width:105.396000px;}
._3a{width:112.728000px;}
._30{width:120.204000px;}
._22{width:134.820000px;}
._35{width:136.164000px;}
._42{width:140.448000px;}
._43{width:141.708000px;}
._24{width:145.068000px;}
._2b{width:148.176000px;}
._34{width:152.460000px;}
._33{width:158.004000px;}
._37{width:162.204000px;}
._2d{width:166.572000px;}
._27{width:179.004000px;}
._38{width:188.244000px;}
._25{width:196.224000px;}
._46{width:207.900000px;}
._47{width:209.160000px;}
._2c{width:241.500000px;}
._28{width:243.936000px;}
._1e{width:289.464000px;}
._21{width:301.392000px;}
._1b{width:319.704000px;}
._32{width:504.168000px;}
._39{width:526.092000px;}
._41{width:551.208000px;}
._50{width:843.330000px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:3.600000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y49{bottom:-0.015000px;}
.y0{bottom:0.000000px;}
.y38{bottom:4.515000px;}
.y3d{bottom:5.070000px;}
.y57{bottom:5.082000px;}
.y42{bottom:5.085000px;}
.y50{bottom:5.370000px;}
.y4d{bottom:5.385000px;}
.y37{bottom:28.815000px;}
.y3c{bottom:29.370000px;}
.y48{bottom:29.385000px;}
.y56{bottom:29.389500px;}
.y41{bottom:29.415000px;}
.y5d{bottom:36.915000px;}
.y2{bottom:53.137500px;}
.y3b{bottom:53.370000px;}
.y47{bottom:53.385000px;}
.y40{bottom:53.415000px;}
.y55{bottom:53.419500px;}
.y4c{bottom:53.670000px;}
.y4f{bottom:53.685000px;}
.y1{bottom:59.137500px;}
.y3a{bottom:77.685000px;}
.y3f{bottom:77.715000px;}
.y54{bottom:77.719500px;}
.y4a{bottom:88.785000px;}
.y2e{bottom:89.137500px;}
.y5a{bottom:101.715000px;}
.y53{bottom:101.719500px;}
.y2d{bottom:109.837500px;}
.y44{bottom:113.085000px;}
.y52{bottom:127.855500px;}
.y63{bottom:130.537500px;}
.y2c{bottom:144.337500px;}
.y62{bottom:151.245000px;}
.y2b{bottom:168.375000px;}
.y61{bottom:171.975000px;}
.y2a{bottom:192.675000px;}
.y29{bottom:216.675000px;}
.y28{bottom:240.975000px;}
.y51{bottom:248.490000px;}
.y27{bottom:264.975000px;}
.y60{bottom:288.675000px;}
.y26{bottom:289.275000px;}
.y65{bottom:312.675000px;}
.y25{bottom:313.275000px;}
.y24{bottom:337.620000px;}
.y4e{bottom:345.135000px;}
.y23{bottom:361.620000px;}
.y22{bottom:385.905000px;}
.y21{bottom:409.905000px;}
.y20{bottom:434.205000px;}
.y4b{bottom:441.735000px;}
.y1f{bottom:458.205000px;}
.y1e{bottom:482.505000px;}
.y1d{bottom:506.550000px;}
.y43{bottom:514.365000px;}
.y46{bottom:517.665000px;}
.y1c{bottom:530.850000px;}
.y1b{bottom:554.850000px;}
.y1a{bottom:579.150000px;}
.y19{bottom:603.150000px;}
.y45{bottom:618.765000px;}
.y18{bottom:627.450000px;}
.y3e{bottom:646.365000px;}
.y17{bottom:651.450000px;}
.y16{bottom:675.780000px;}
.y15{bottom:699.780000px;}
.y14{bottom:724.080000px;}
.y39{bottom:743.010000px;}
.y13{bottom:747.480000px;}
.y5f{bottom:748.080000px;}
.y12{bottom:772.380000px;}
.y11{bottom:796.380000px;}
.y10{bottom:820.695000px;}
.y36{bottom:839.610000px;}
.yf{bottom:844.725000px;}
.ye{bottom:869.025000px;}
.y35{bottom:892.425000px;}
.yd{bottom:893.025000px;}
.y5e{bottom:911.940000px;}
.y34{bottom:916.725000px;}
.yc{bottom:917.325000px;}
.y33{bottom:940.725000px;}
.yb{bottom:941.325000px;}
.ya{bottom:965.025000px;}
.y64{bottom:965.625000px;}
.y59{bottom:984.540000px;}
.y9{bottom:989.625000px;}
.y8{bottom:1013.955000px;}
.y5c{bottom:1024.785000px;}
.y7{bottom:1037.955000px;}
.y6{bottom:1062.255000px;}
.y5b{bottom:1077.585000px;}
.y32{bottom:1086.255000px;}
.y58{bottom:1105.185000px;}
.y5{bottom:1109.955000px;}
.y31{bottom:1110.570000px;}
.y4{bottom:1133.955000px;}
.y30{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y2f{bottom:1158.870000px;}
.h10{height:3.533203px;}
.he{height:23.985000px;}
.h15{height:24.285000px;}
.h16{height:48.270000px;}
.ha{height:48.307500px;}
.h5{height:58.652344px;}
.h9{height:59.267578px;}
.h3{height:61.670545px;}
.h7{height:65.645508px;}
.h8{height:70.664062px;}
.h13{height:72.570000px;}
.h17{height:72.585000px;}
.h11{height:72.607500px;}
.h2{height:82.441406px;}
.h18{height:83.794922px;}
.h4{height:84.656250px;}
.hb{height:96.570000px;}
.hf{height:96.585000px;}
.hc{height:96.622500px;}
.h12{height:120.619500px;}
.h14{height:120.622500px;}
.hd{height:131.985000px;}
.h6{height:1262.681100px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:37.182000px;}
.w7{width:177.945000px;}
.w8{width:181.245000px;}
.w5{width:201.945000px;}
.w9{width:219.057000px;}
.wa{width:222.357000px;}
.w6{width:222.945000px;}
.w4{width:243.057000px;}
.w2{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:1.200000px;}
.x10{left:7.800000px;}
.xf{left:77.137500px;}
.x2{left:84.937500px;}
.xc{left:111.937500px;}
.x9{left:114.018750px;}
.x14{left:124.537500px;}
.x5{left:127.537500px;}
.x3{left:135.337500px;}
.xa{left:145.537500px;}
.x6{left:259.875000px;}
.xb{left:301.020000px;}
.x7{left:353.520000px;}
.x11{left:357.420000px;}
.x8{left:367.620000px;}
.x4{left:382.620000px;}
.x1{left:430.650000px;}
.x17{left:527.231250px;}
.x12{left:559.395000px;}
.xd{left:606.761250px;}
.xe{left:638.280000px;}
.x15{left:770.906250px;}
.x16{left:802.455000px;}
@media print{
.v2{vertical-align:-88.533333pt;}
.v1{vertical-align:-86.400000pt;}
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.490667pt;}
.ls5{letter-spacing:-0.458667pt;}
.ls6{letter-spacing:-0.245333pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.533333pt;}
.lse{letter-spacing:0.789333pt;}
.ls2{letter-spacing:0.981333pt;}
.ls9{letter-spacing:3.733333pt;}
.lsa{letter-spacing:6.400000pt;}
.lsb{letter-spacing:7.466667pt;}
.ls8{letter-spacing:13.333333pt;}
.lsc{letter-spacing:15.520000pt;}
.ls7{letter-spacing:21.866667pt;}
.lsd{letter-spacing:28.293333pt;}
.ls0{letter-spacing:834.960000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws2{word-spacing:-18.421333pt;}
.ws1{word-spacing:0.000000pt;}
._4e{margin-left:-5.226667pt;}
._4b{margin-left:-3.360000pt;}
._4{margin-left:-2.240000pt;}
._1{margin-left:-0.970667pt;}
._0{width:1.120000pt;}
._2{width:2.394667pt;}
._3{width:3.920000pt;}
._d{width:5.002667pt;}
._16{width:6.794667pt;}
._6{width:8.362667pt;}
._5{width:9.408000pt;}
._7{width:10.677333pt;}
._10{width:11.573333pt;}
._11{width:12.992000pt;}
._3c{width:13.888000pt;}
._3b{width:14.784000pt;}
._f{width:16.426667pt;}
._e{width:17.546667pt;}
._4a{width:18.976000pt;}
._c{width:19.962667pt;}
._a{width:20.906667pt;}
._b{width:22.000000pt;}
._40{width:22.949333pt;}
._4c{width:23.893333pt;}
._44{width:25.013333pt;}
._45{width:26.000000pt;}
._15{width:27.104000pt;}
._12{width:28.000000pt;}
._18{width:29.018667pt;}
._3f{width:30.618667pt;}
._3d{width:31.509333pt;}
._3e{width:32.405333pt;}
._17{width:35.018667pt;}
._14{width:35.914667pt;}
._13{width:37.258667pt;}
._26{width:38.826667pt;}
._9{width:40.693333pt;}
._8{width:41.589333pt;}
._23{width:45.098667pt;}
._31{width:46.517333pt;}
._48{width:47.413333pt;}
._1d{width:48.309333pt;}
._1c{width:49.280000pt;}
._49{width:51.034667pt;}
._1a{width:63.317333pt;}
._2a{width:65.333333pt;}
._29{width:66.677333pt;}
._1f{width:68.928000pt;}
._20{width:70.485333pt;}
._2e{width:72.800000pt;}
._2f{width:74.666667pt;}
._19{width:86.986667pt;}
._36{width:90.048000pt;}
._4d{width:92.186667pt;}
._4f{width:93.685333pt;}
._3a{width:100.202667pt;}
._30{width:106.848000pt;}
._22{width:119.840000pt;}
._35{width:121.034667pt;}
._42{width:124.842667pt;}
._43{width:125.962667pt;}
._24{width:128.949333pt;}
._2b{width:131.712000pt;}
._34{width:135.520000pt;}
._33{width:140.448000pt;}
._37{width:144.181333pt;}
._2d{width:148.064000pt;}
._27{width:159.114667pt;}
._38{width:167.328000pt;}
._25{width:174.421333pt;}
._46{width:184.800000pt;}
._47{width:185.920000pt;}
._2c{width:214.666667pt;}
._28{width:216.832000pt;}
._1e{width:257.301333pt;}
._21{width:267.904000pt;}
._1b{width:284.181333pt;}
._32{width:448.149333pt;}
._39{width:467.637333pt;}
._41{width:489.962667pt;}
._50{width:749.626667pt;}
.fs4{font-size:3.200000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y49{bottom:-0.013333pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:4.013333pt;}
.y3d{bottom:4.506667pt;}
.y57{bottom:4.517333pt;}
.y42{bottom:4.520000pt;}
.y50{bottom:4.773333pt;}
.y4d{bottom:4.786667pt;}
.y37{bottom:25.613333pt;}
.y3c{bottom:26.106667pt;}
.y48{bottom:26.120000pt;}
.y56{bottom:26.124000pt;}
.y41{bottom:26.146667pt;}
.y5d{bottom:32.813333pt;}
.y2{bottom:47.233333pt;}
.y3b{bottom:47.440000pt;}
.y47{bottom:47.453333pt;}
.y40{bottom:47.480000pt;}
.y55{bottom:47.484000pt;}
.y4c{bottom:47.706667pt;}
.y4f{bottom:47.720000pt;}
.y1{bottom:52.566667pt;}
.y3a{bottom:69.053333pt;}
.y3f{bottom:69.080000pt;}
.y54{bottom:69.084000pt;}
.y4a{bottom:78.920000pt;}
.y2e{bottom:79.233333pt;}
.y5a{bottom:90.413333pt;}
.y53{bottom:90.417333pt;}
.y2d{bottom:97.633333pt;}
.y44{bottom:100.520000pt;}
.y52{bottom:113.649333pt;}
.y63{bottom:116.033333pt;}
.y2c{bottom:128.300000pt;}
.y62{bottom:134.440000pt;}
.y2b{bottom:149.666667pt;}
.y61{bottom:152.866667pt;}
.y2a{bottom:171.266667pt;}
.y29{bottom:192.600000pt;}
.y28{bottom:214.200000pt;}
.y51{bottom:220.880000pt;}
.y27{bottom:235.533333pt;}
.y60{bottom:256.600000pt;}
.y26{bottom:257.133333pt;}
.y65{bottom:277.933333pt;}
.y25{bottom:278.466667pt;}
.y24{bottom:300.106667pt;}
.y4e{bottom:306.786667pt;}
.y23{bottom:321.440000pt;}
.y22{bottom:343.026667pt;}
.y21{bottom:364.360000pt;}
.y20{bottom:385.960000pt;}
.y4b{bottom:392.653333pt;}
.y1f{bottom:407.293333pt;}
.y1e{bottom:428.893333pt;}
.y1d{bottom:450.266667pt;}
.y43{bottom:457.213333pt;}
.y46{bottom:460.146667pt;}
.y1c{bottom:471.866667pt;}
.y1b{bottom:493.200000pt;}
.y1a{bottom:514.800000pt;}
.y19{bottom:536.133333pt;}
.y45{bottom:550.013333pt;}
.y18{bottom:557.733333pt;}
.y3e{bottom:574.546667pt;}
.y17{bottom:579.066667pt;}
.y16{bottom:600.693333pt;}
.y15{bottom:622.026667pt;}
.y14{bottom:643.626667pt;}
.y39{bottom:660.453333pt;}
.y13{bottom:664.426667pt;}
.y5f{bottom:664.960000pt;}
.y12{bottom:686.560000pt;}
.y11{bottom:707.893333pt;}
.y10{bottom:729.506667pt;}
.y36{bottom:746.320000pt;}
.yf{bottom:750.866667pt;}
.ye{bottom:772.466667pt;}
.y35{bottom:793.266667pt;}
.yd{bottom:793.800000pt;}
.y5e{bottom:810.613333pt;}
.y34{bottom:814.866667pt;}
.yc{bottom:815.400000pt;}
.y33{bottom:836.200000pt;}
.yb{bottom:836.733333pt;}
.ya{bottom:857.800000pt;}
.y64{bottom:858.333333pt;}
.y59{bottom:875.146667pt;}
.y9{bottom:879.666667pt;}
.y8{bottom:901.293333pt;}
.y5c{bottom:910.920000pt;}
.y7{bottom:922.626667pt;}
.y6{bottom:944.226667pt;}
.y5b{bottom:957.853333pt;}
.y32{bottom:965.560000pt;}
.y58{bottom:982.386667pt;}
.y5{bottom:986.626667pt;}
.y31{bottom:987.173333pt;}
.y4{bottom:1007.960000pt;}
.y30{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y2f{bottom:1030.106667pt;}
.h10{height:3.140625pt;}
.he{height:21.320000pt;}
.h15{height:21.586667pt;}
.h16{height:42.906667pt;}
.ha{height:42.940000pt;}
.h5{height:52.135417pt;}
.h9{height:52.682292pt;}
.h3{height:54.818262pt;}
.h7{height:58.351562pt;}
.h8{height:62.812500pt;}
.h13{height:64.506667pt;}
.h17{height:64.520000pt;}
.h11{height:64.540000pt;}
.h2{height:73.281250pt;}
.h18{height:74.484375pt;}
.h4{height:75.250000pt;}
.hb{height:85.840000pt;}
.hf{height:85.853333pt;}
.hc{height:85.886667pt;}
.h12{height:107.217333pt;}
.h14{height:107.220000pt;}
.hd{height:117.320000pt;}
.h6{height:1122.383200pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:33.050667pt;}
.w7{width:158.173333pt;}
.w8{width:161.106667pt;}
.w5{width:179.506667pt;}
.w9{width:194.717333pt;}
.wa{width:197.650667pt;}
.w6{width:198.173333pt;}
.w4{width:216.050667pt;}
.w2{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:1.066667pt;}
.x10{left:6.933333pt;}
.xf{left:68.566667pt;}
.x2{left:75.500000pt;}
.xc{left:99.500000pt;}
.x9{left:101.350000pt;}
.x14{left:110.700000pt;}
.x5{left:113.366667pt;}
.x3{left:120.300000pt;}
.xa{left:129.366667pt;}
.x6{left:231.000000pt;}
.xb{left:267.573333pt;}
.x7{left:314.240000pt;}
.x11{left:317.706667pt;}
.x8{left:326.773333pt;}
.x4{left:340.106667pt;}
.x1{left:382.800000pt;}
.x17{left:468.650000pt;}
.x12{left:497.240000pt;}
.xd{left:539.343333pt;}
.xe{left:567.360000pt;}
.x15{left:685.250000pt;}
.x16{left:713.293333pt;}
}




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