
    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_dcbace1cbaf019d71f1d545d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8a71f12a2597f60a8aba5777.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9d3292fc1d6cec7308bba86c.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8c0cec189bd5748084a4401c.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8ff2f45693f5741046583e90.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_813595566586c7581b0a6d04.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064453;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_afced36d0140b16781d5d775.woff')format("woff");}.ff7{font-family:ff7;line-height:0.767578;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_a9bf7cc1d92af12968f94bb7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.942383;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_8698160a4ed42eeb04384a64.woff')format("woff");}.ff9{font-family:ff9;line-height:0.916992;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_74b136f9d54f80276f09bc15.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-72.000000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-0.900000px;}
.lsb{letter-spacing:-0.180000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.174240px;}
.lsc{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.504000px;}
.ls3{letter-spacing:7.380000px;}
.ls4{letter-spacing:15.120000px;}
.lsa{letter-spacing:20.700000px;}
.ls8{letter-spacing:25.740000px;}
.ls5{letter-spacing:27.180000px;}
.lsd{letter-spacing:33.984000px;}
.ls0{letter-spacing:43.200000px;}
.ls2{letter-spacing:45.360000px;}
.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;}
}
.ws4{word-spacing:-21.401400px;}
.ws2{word-spacing:-21.060000px;}
.ws3{word-spacing:-20.160000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-7.416000px;}
._0{margin-left:-1.263600px;}
._1{width:1.505040px;}
._3{width:3.168000px;}
._4{width:4.536000px;}
._17{width:5.590080px;}
._b{width:6.600000px;}
._a{width:7.920000px;}
._9{width:9.216000px;}
._12{width:10.866960px;}
._16{width:12.130560px;}
._18{width:14.118720px;}
._e{width:15.168000px;}
._1b{width:16.679520px;}
._14{width:17.799840px;}
._5{width:19.152000px;}
._22{width:20.649600px;}
._13{width:22.154400px;}
._1f{width:23.462400px;}
._c{width:24.624000px;}
._d{width:25.678560px;}
._2{width:26.688000px;}
._10{width:28.589520px;}
._15{width:30.494880px;}
._1a{width:33.780240px;}
._19{width:35.212320px;}
._24{width:36.897120px;}
._25{width:38.329200px;}
._f{width:39.424320px;}
._1d{width:40.603680px;}
._8{width:44.496000px;}
._7{width:45.552000px;}
._21{width:46.728000px;}
._26{width:48.707280px;}
._1e{width:54.671760px;}
._29{width:55.778160px;}
._11{width:61.242480px;}
._27{width:63.806160px;}
._28{width:65.033280px;}
._1c{width:66.212640px;}
._23{width:92.160000px;}
._20{width:158.256000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:7.020000px;}
.y65{bottom:7.200000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y59{bottom:30.780000px;}
.y64{bottom:30.954000px;}
.y2{bottom:31.176000px;}
.y5c{bottom:42.660000px;}
.y61{bottom:42.834000px;}
.y5d{bottom:54.540000px;}
.y63{bottom:54.714000px;}
.y58{bottom:54.720000px;}
.y62{bottom:78.474000px;}
.y57{bottom:78.480000px;}
.y5f{bottom:78.525000px;}
.y50{bottom:79.776000px;}
.y89{bottom:86.256000px;}
.y2d{bottom:90.036000px;}
.y52{bottom:90.360000px;}
.y66{bottom:95.616000px;}
.y56{bottom:102.240000px;}
.y4f{bottom:107.496000px;}
.y88{bottom:113.976000px;}
.y2c{bottom:117.936000px;}
.y60{bottom:120.096000px;}
.y55{bottom:126.000000px;}
.y4e{bottom:135.216000px;}
.y87{bottom:141.696000px;}
.y2b{bottom:145.656000px;}
.y54{bottom:149.940000px;}
.y4d{bottom:163.110000px;}
.y86{bottom:169.410000px;}
.y2a{bottom:173.370000px;}
.y53{bottom:173.730000px;}
.y4c{bottom:190.830000px;}
.y85{bottom:197.310000px;}
.y29{bottom:201.270000px;}
.y5e{bottom:216.210000px;}
.y4b{bottom:218.550000px;}
.y84{bottom:225.030000px;}
.y28{bottom:228.990000px;}
.y4a{bottom:246.450000px;}
.y83{bottom:252.750000px;}
.y27{bottom:256.710000px;}
.y49{bottom:274.170000px;}
.y82{bottom:280.650000px;}
.y26{bottom:284.475000px;}
.y48{bottom:301.935000px;}
.y81{bottom:308.415000px;}
.y5b{bottom:312.195000px;}
.y25{bottom:312.375000px;}
.y47{bottom:329.655000px;}
.y80{bottom:336.135000px;}
.y24{bottom:340.095000px;}
.y46{bottom:357.555000px;}
.y7f{bottom:363.855000px;}
.y23{bottom:367.815000px;}
.y45{bottom:385.275000px;}
.y7e{bottom:391.755000px;}
.y22{bottom:395.535000px;}
.y51{bottom:408.135000px;}
.y44{bottom:412.995000px;}
.y7d{bottom:419.475000px;}
.y21{bottom:423.435000px;}
.y43{bottom:440.895000px;}
.y7c{bottom:447.195000px;}
.y20{bottom:451.155000px;}
.y42{bottom:468.615000px;}
.y7b{bottom:475.095000px;}
.y1f{bottom:478.875000px;}
.y41{bottom:496.335000px;}
.y7a{bottom:502.815000px;}
.y1e{bottom:506.775000px;}
.y40{bottom:524.055000px;}
.y1d{bottom:529.635000px;}
.y79{bottom:530.535000px;}
.y1c{bottom:547.455000px;}
.y3f{bottom:551.955000px;}
.y78{bottom:558.255000px;}
.y1b{bottom:568.185000px;}
.y3e{bottom:579.705000px;}
.y77{bottom:586.185000px;}
.y1a{bottom:588.885000px;}
.y3d{bottom:607.425000px;}
.y19{bottom:609.585000px;}
.y76{bottom:613.905000px;}
.y18{bottom:630.285000px;}
.y3c{bottom:635.145000px;}
.y75{bottom:641.625000px;}
.y17{bottom:650.985000px;}
.y3b{bottom:663.045000px;}
.y74{bottom:669.525000px;}
.y16{bottom:670.965000px;}
.y15{bottom:688.965000px;}
.y3a{bottom:690.765000px;}
.y73{bottom:697.245000px;}
.y14{bottom:709.665000px;}
.y39{bottom:718.485000px;}
.y72{bottom:724.965000px;}
.y13{bottom:730.365000px;}
.y38{bottom:746.385000px;}
.y12{bottom:751.065000px;}
.y71{bottom:752.685000px;}
.y11{bottom:771.765000px;}
.y37{bottom:774.105000px;}
.y70{bottom:780.585000px;}
.y10{bottom:792.465000px;}
.y91{bottom:796.605000px;}
.y36{bottom:801.825000px;}
.y6f{bottom:808.305000px;}
.y90{bottom:820.185000px;}
.y35{bottom:829.545000px;}
.yf{bottom:830.445000px;}
.y6e{bottom:836.025000px;}
.y8f{bottom:840.885000px;}
.ye{bottom:851.190000px;}
.y34{bottom:857.490000px;}
.y8e{bottom:861.630000px;}
.y6d{bottom:863.790000px;}
.yd{bottom:871.890000px;}
.y8d{bottom:882.330000px;}
.y33{bottom:885.210000px;}
.y6c{bottom:891.690000px;}
.yc{bottom:892.590000px;}
.y8c{bottom:903.030000px;}
.y32{bottom:912.930000px;}
.yb{bottom:913.290000px;}
.y6b{bottom:919.410000px;}
.y8b{bottom:923.730000px;}
.ya{bottom:933.270000px;}
.y31{bottom:940.830000px;}
.y8a{bottom:946.410000px;}
.y6a{bottom:947.130000px;}
.y30{bottom:968.550000px;}
.y9{bottom:971.970000px;}
.y69{bottom:975.030000px;}
.y8{bottom:992.670000px;}
.y2f{bottom:996.270000px;}
.y68{bottom:1002.750000px;}
.y7{bottom:1013.370000px;}
.y67{bottom:1023.090000px;}
.y2e{bottom:1023.990000px;}
.y6{bottom:1033.350000px;}
.y5{bottom:1051.890000px;}
.y1{bottom:1190.160000px;}
.h11{height:23.760000px;}
.h3{height:31.860000px;}
.h12{height:47.520000px;}
.he{height:50.484375px;}
.hb{height:58.621992px;}
.h9{height:58.651172px;}
.hc{height:59.066719px;}
.h5{height:60.226875px;}
.ha{height:61.101562px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.h6{height:72.562500px;}
.h13{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hf{height:95.220000px;}
.h10{height:95.256000px;}
.hd{height:190.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w4{width:145.476000px;}
.w5{width:570.885000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.x3{left:22.140000px;}
.x11{left:27.396000px;}
.xa{left:31.356000px;}
.xe{left:33.876000px;}
.xf{left:36.396000px;}
.x10{left:39.816000px;}
.xc{left:60.885000px;}
.x9{left:77.400000px;}
.x1{left:84.959987px;}
.x13{left:90.035987px;}
.x4{left:99.035987px;}
.x14{left:117.035987px;}
.x8{left:138.095987px;}
.xb{left:223.590000px;}
.x7{left:268.949987px;}
.x6{left:294.014987px;}
.x12{left:368.174987px;}
.x2{left:409.035000px;}
.x5{left:446.474987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-64.000000pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.800000pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.154880pt;}
.lsc{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.448000pt;}
.ls3{letter-spacing:6.560000pt;}
.ls4{letter-spacing:13.440000pt;}
.lsa{letter-spacing:18.400000pt;}
.ls8{letter-spacing:22.880000pt;}
.ls5{letter-spacing:24.160000pt;}
.lsd{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls2{letter-spacing:40.320000pt;}
.ws4{word-spacing:-19.023467pt;}
.ws2{word-spacing:-18.720000pt;}
.ws3{word-spacing:-17.920000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-6.592000pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.337813pt;}
._3{width:2.816000pt;}
._4{width:4.032000pt;}
._17{width:4.968960pt;}
._b{width:5.866667pt;}
._a{width:7.040000pt;}
._9{width:8.192000pt;}
._12{width:9.659520pt;}
._16{width:10.782720pt;}
._18{width:12.549973pt;}
._e{width:13.482667pt;}
._1b{width:14.826240pt;}
._14{width:15.822080pt;}
._5{width:17.024000pt;}
._22{width:18.355200pt;}
._13{width:19.692800pt;}
._1f{width:20.855467pt;}
._c{width:21.888000pt;}
._d{width:22.825387pt;}
._2{width:23.722667pt;}
._10{width:25.412907pt;}
._15{width:27.106560pt;}
._1a{width:30.026880pt;}
._19{width:31.299840pt;}
._24{width:32.797440pt;}
._25{width:34.070400pt;}
._f{width:35.043840pt;}
._1d{width:36.092160pt;}
._8{width:39.552000pt;}
._7{width:40.490667pt;}
._21{width:41.536000pt;}
._26{width:43.295360pt;}
._1e{width:48.597120pt;}
._29{width:49.580587pt;}
._11{width:54.437760pt;}
._27{width:56.716587pt;}
._28{width:57.807360pt;}
._1c{width:58.855680pt;}
._23{width:81.920000pt;}
._20{width:140.672000pt;}
.fs1{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:6.240000pt;}
.y65{bottom:6.400000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y59{bottom:27.360000pt;}
.y64{bottom:27.514667pt;}
.y2{bottom:27.712000pt;}
.y5c{bottom:37.920000pt;}
.y61{bottom:38.074667pt;}
.y5d{bottom:48.480000pt;}
.y63{bottom:48.634667pt;}
.y58{bottom:48.640000pt;}
.y62{bottom:69.754667pt;}
.y57{bottom:69.760000pt;}
.y5f{bottom:69.800000pt;}
.y50{bottom:70.912000pt;}
.y89{bottom:76.672000pt;}
.y2d{bottom:80.032000pt;}
.y52{bottom:80.320000pt;}
.y66{bottom:84.992000pt;}
.y56{bottom:90.880000pt;}
.y4f{bottom:95.552000pt;}
.y88{bottom:101.312000pt;}
.y2c{bottom:104.832000pt;}
.y60{bottom:106.752000pt;}
.y55{bottom:112.000000pt;}
.y4e{bottom:120.192000pt;}
.y87{bottom:125.952000pt;}
.y2b{bottom:129.472000pt;}
.y54{bottom:133.280000pt;}
.y4d{bottom:144.986667pt;}
.y86{bottom:150.586667pt;}
.y2a{bottom:154.106667pt;}
.y53{bottom:154.426667pt;}
.y4c{bottom:169.626667pt;}
.y85{bottom:175.386667pt;}
.y29{bottom:178.906667pt;}
.y5e{bottom:192.186667pt;}
.y4b{bottom:194.266667pt;}
.y84{bottom:200.026667pt;}
.y28{bottom:203.546667pt;}
.y4a{bottom:219.066667pt;}
.y83{bottom:224.666667pt;}
.y27{bottom:228.186667pt;}
.y49{bottom:243.706667pt;}
.y82{bottom:249.466667pt;}
.y26{bottom:252.866667pt;}
.y48{bottom:268.386667pt;}
.y81{bottom:274.146667pt;}
.y5b{bottom:277.506667pt;}
.y25{bottom:277.666667pt;}
.y47{bottom:293.026667pt;}
.y80{bottom:298.786667pt;}
.y24{bottom:302.306667pt;}
.y46{bottom:317.826667pt;}
.y7f{bottom:323.426667pt;}
.y23{bottom:326.946667pt;}
.y45{bottom:342.466667pt;}
.y7e{bottom:348.226667pt;}
.y22{bottom:351.586667pt;}
.y51{bottom:362.786667pt;}
.y44{bottom:367.106667pt;}
.y7d{bottom:372.866667pt;}
.y21{bottom:376.386667pt;}
.y43{bottom:391.906667pt;}
.y7c{bottom:397.506667pt;}
.y20{bottom:401.026667pt;}
.y42{bottom:416.546667pt;}
.y7b{bottom:422.306667pt;}
.y1f{bottom:425.666667pt;}
.y41{bottom:441.186667pt;}
.y7a{bottom:446.946667pt;}
.y1e{bottom:450.466667pt;}
.y40{bottom:465.826667pt;}
.y1d{bottom:470.786667pt;}
.y79{bottom:471.586667pt;}
.y1c{bottom:486.626667pt;}
.y3f{bottom:490.626667pt;}
.y78{bottom:496.226667pt;}
.y1b{bottom:505.053333pt;}
.y3e{bottom:515.293333pt;}
.y77{bottom:521.053333pt;}
.y1a{bottom:523.453333pt;}
.y3d{bottom:539.933333pt;}
.y19{bottom:541.853333pt;}
.y76{bottom:545.693333pt;}
.y18{bottom:560.253333pt;}
.y3c{bottom:564.573333pt;}
.y75{bottom:570.333333pt;}
.y17{bottom:578.653333pt;}
.y3b{bottom:589.373333pt;}
.y74{bottom:595.133333pt;}
.y16{bottom:596.413333pt;}
.y15{bottom:612.413333pt;}
.y3a{bottom:614.013333pt;}
.y73{bottom:619.773333pt;}
.y14{bottom:630.813333pt;}
.y39{bottom:638.653333pt;}
.y72{bottom:644.413333pt;}
.y13{bottom:649.213333pt;}
.y38{bottom:663.453333pt;}
.y12{bottom:667.613333pt;}
.y71{bottom:669.053333pt;}
.y11{bottom:686.013333pt;}
.y37{bottom:688.093333pt;}
.y70{bottom:693.853333pt;}
.y10{bottom:704.413333pt;}
.y91{bottom:708.093333pt;}
.y36{bottom:712.733333pt;}
.y6f{bottom:718.493333pt;}
.y90{bottom:729.053333pt;}
.y35{bottom:737.373333pt;}
.yf{bottom:738.173333pt;}
.y6e{bottom:743.133333pt;}
.y8f{bottom:747.453333pt;}
.ye{bottom:756.613333pt;}
.y34{bottom:762.213333pt;}
.y8e{bottom:765.893333pt;}
.y6d{bottom:767.813333pt;}
.yd{bottom:775.013333pt;}
.y8d{bottom:784.293333pt;}
.y33{bottom:786.853333pt;}
.y6c{bottom:792.613333pt;}
.yc{bottom:793.413333pt;}
.y8c{bottom:802.693333pt;}
.y32{bottom:811.493333pt;}
.yb{bottom:811.813333pt;}
.y6b{bottom:817.253333pt;}
.y8b{bottom:821.093333pt;}
.ya{bottom:829.573333pt;}
.y31{bottom:836.293333pt;}
.y8a{bottom:841.253333pt;}
.y6a{bottom:841.893333pt;}
.y30{bottom:860.933333pt;}
.y9{bottom:863.973333pt;}
.y69{bottom:866.693333pt;}
.y8{bottom:882.373333pt;}
.y2f{bottom:885.573333pt;}
.y68{bottom:891.333333pt;}
.y7{bottom:900.773333pt;}
.y67{bottom:909.413333pt;}
.y2e{bottom:910.213333pt;}
.y6{bottom:918.533333pt;}
.y5{bottom:935.013333pt;}
.y1{bottom:1057.920000pt;}
.h11{height:21.120000pt;}
.h3{height:28.320000pt;}
.h12{height:42.240000pt;}
.he{height:44.875000pt;}
.hb{height:52.108438pt;}
.h9{height:52.134375pt;}
.hc{height:52.503750pt;}
.h5{height:53.535000pt;}
.ha{height:54.312500pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.h6{height:64.500000pt;}
.h13{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hf{height:84.640000pt;}
.h10{height:84.672000pt;}
.hd{height:169.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w4{width:129.312000pt;}
.w5{width:507.453333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.x3{left:19.680000pt;}
.x11{left:24.352000pt;}
.xa{left:27.872000pt;}
.xe{left:30.112000pt;}
.xf{left:32.352000pt;}
.x10{left:35.392000pt;}
.xc{left:54.120000pt;}
.x9{left:68.800000pt;}
.x1{left:75.519988pt;}
.x13{left:80.031988pt;}
.x4{left:88.031988pt;}
.x14{left:104.031988pt;}
.x8{left:122.751988pt;}
.xb{left:198.746667pt;}
.x7{left:239.066655pt;}
.x6{left:261.346655pt;}
.x12{left:327.266655pt;}
.x2{left:363.586667pt;}
.x5{left:396.866655pt;}
}




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