
    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_69b44740e004f6935ff5a3e6.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.721680;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_44741dd9c6cc3cfb8624546b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962891;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_1b7e7651207cb98d647a567b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_63ba4ce3be4e11e5da6e8412.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_c7b66905ffe0ce6ce57eedcb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_6b562dd15463881d31bc901c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.860840;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_b65c3d8380371dcdf46465c0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f1e1b36252d10e694b192d3a.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0e41201dcf708db0aca42b7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.956543;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_c83073ad8e864f56f2f7584e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.694824;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;}
.m1{transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249532,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-54.000000px;}
.v6{vertical-align:-29.521377px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:43.200000px;}
.v1{vertical-align:54.000000px;}
.v3{vertical-align:57.600000px;}
.v5{vertical-align:89.914185px;}
.lse{letter-spacing:-3.024000px;}
.lsd{letter-spacing:-0.882000px;}
.lsc{letter-spacing:-0.325200px;}
.ls9{letter-spacing:-0.324000px;}
.ls10{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.162600px;}
.lsf{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.111000px;}
.lsb{letter-spacing:-0.098400px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.023040px;}
.ls4{letter-spacing:0.037440px;}
.ls11{letter-spacing:0.047726px;}
.ls1{letter-spacing:0.064080px;}
.ls3{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.396000px;}
.ls5{letter-spacing:88.957419px;}
.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;}
}
.ws2{word-spacing:-53.802720px;}
.ws3{word-spacing:-53.442720px;}
.ws4{word-spacing:-53.344320px;}
.ws5{word-spacing:-53.117520px;}
.ws6{word-spacing:-40.032000px;}
.ws7{word-spacing:-39.888000px;}
.ws0{word-spacing:-26.092080px;}
.ws1{word-spacing:-25.981080px;}
.wsb{word-spacing:-0.174925px;}
.wsa{word-spacing:-0.127199px;}
.ws8{word-spacing:-0.074204px;}
.wsc{word-spacing:0.000000px;}
.ws9{word-spacing:391.354220px;}
._1a{margin-left:-1502.412480px;}
._13{margin-left:-1319.658850px;}
._10{margin-left:-1276.687937px;}
._12{margin-left:-705.184015px;}
._18{margin-left:-677.609512px;}
._17{margin-left:-639.104300px;}
._15{margin-left:-614.162773px;}
._16{margin-left:-426.680145px;}
._11{margin-left:-254.793905px;}
._19{margin-left:-188.548784px;}
._14{margin-left:-174.990408px;}
._e{margin-left:-16.242720px;}
._5{margin-left:-12.401280px;}
._4{margin-left:-10.528560px;}
._3{margin-left:-7.676640px;}
._a{margin-left:-3.844800px;}
._1{margin-left:-2.580000px;}
._0{margin-left:-1.440000px;}
._2{width:1.008000px;}
._d{width:2.424000px;}
._c{width:3.456000px;}
._6{width:31.697040px;}
._7{width:189.917280px;}
._8{width:623.477280px;}
._9{width:865.997280px;}
._b{width:867.557280px;}
._1b{width:2852.104080px;}
._f{width:4916.160000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,61,175);}
.fc2{color:rgb(0,84,159);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs9{font-size:48.240000px;}
.fsb{font-size:72.000000px;}
.fsc{font-size:74.203883px;}
.fsf{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs4{font-size:112.320000px;}
.fs3{font-size:120.240000px;}
.fsd{font-size:127.199184px;}
.fs8{font-size:128.160000px;}
.fs1{font-size:144.000000px;}
.fs2{font-size:180.000000px;}
.fse{font-size:190.798777px;}
.fs7{font-size:192.240000px;}
.fs5{font-size:360.000000px;}
.fsa{font-size:360.144000px;}
.fs0{font-size:432.000000px;}
.y92{bottom:-31.032000px;}
.y0{bottom:0.000000px;}
.y89{bottom:6.368377px;}
.y8b{bottom:14.331646px;}
.y91{bottom:24.984000px;}
.y8a{bottom:54.890443px;}
.y8c{bottom:85.330379px;}
.y7b{bottom:109.044000px;}
.y8d{bottom:117.680167px;}
.y7a{bottom:150.630000px;}
.y79{bottom:192.030000px;}
.y78{bottom:233.430000px;}
.y77{bottom:276.090000px;}
.y76{bottom:317.490000px;}
.y75{bottom:357.990000px;}
.y74{bottom:417.390000px;}
.y83{bottom:442.950000px;}
.y82{bottom:486.150000px;}
.y81{bottom:529.350000px;}
.y80{bottom:572.550000px;}
.y3d{bottom:585.075000px;}
.y7f{bottom:615.750000px;}
.y3c{bottom:642.675000px;}
.y7e{bottom:658.950000px;}
.y3b{bottom:700.275000px;}
.y7d{bottom:702.150000px;}
.y7c{bottom:745.350000px;}
.y3a{bottom:757.875000px;}
.y39{bottom:815.475000px;}
.y38{bottom:873.075000px;}
.y73{bottom:908.250000px;}
.y37{bottom:930.675000px;}
.y72{bottom:965.850000px;}
.y36{bottom:988.275000px;}
.y71{bottom:1023.450000px;}
.y35{bottom:1045.875000px;}
.y70{bottom:1081.050000px;}
.y34{bottom:1103.475000px;}
.y88{bottom:1127.970000px;}
.y6f{bottom:1138.650000px;}
.y33{bottom:1161.075000px;}
.y6e{bottom:1196.250000px;}
.y32{bottom:1218.675000px;}
.y6d{bottom:1253.850000px;}
.y31{bottom:1276.275000px;}
.y6c{bottom:1311.450000px;}
.y30{bottom:1333.875000px;}
.y87{bottom:1337.760000px;}
.y6b{bottom:1363.470000px;}
.y86{bottom:1378.260000px;}
.y2f{bottom:1391.475000px;}
.y2e{bottom:1449.105000px;}
.y2d{bottom:1506.705000px;}
.y2c{bottom:1564.305000px;}
.y6a{bottom:1584.435000px;}
.y2b{bottom:1621.905000px;}
.y69{bottom:1642.035000px;}
.y2a{bottom:1679.505000px;}
.y68{bottom:1699.635000px;}
.y29{bottom:1737.105000px;}
.y67{bottom:1757.235000px;}
.y28{bottom:1794.705000px;}
.y66{bottom:1814.835000px;}
.y27{bottom:1852.305000px;}
.y65{bottom:1872.435000px;}
.y26{bottom:1909.905000px;}
.y64{bottom:1930.065000px;}
.y25{bottom:1967.505000px;}
.y63{bottom:1987.665000px;}
.y24{bottom:2025.105000px;}
.y62{bottom:2045.265000px;}
.y23{bottom:2082.705000px;}
.y61{bottom:2102.865000px;}
.y22{bottom:2140.305000px;}
.y60{bottom:2160.465000px;}
.y21{bottom:2197.905000px;}
.y5f{bottom:2218.065000px;}
.y90{bottom:2220.045000px;}
.y20{bottom:2255.505000px;}
.y5e{bottom:2275.665000px;}
.y8f{bottom:2304.285000px;}
.y1f{bottom:2313.105000px;}
.y5d{bottom:2333.265000px;}
.y1e{bottom:2370.705000px;}
.y5c{bottom:2390.865000px;}
.y1d{bottom:2428.305000px;}
.y5b{bottom:2448.465000px;}
.y1c{bottom:2485.905000px;}
.y5a{bottom:2506.065000px;}
.y1b{bottom:2537.925000px;}
.y84{bottom:2556.870000px;}
.y59{bottom:2563.665000px;}
.y58{bottom:2621.265000px;}
.y57{bottom:2678.865000px;}
.y56{bottom:2736.465000px;}
.y55{bottom:2794.065000px;}
.y54{bottom:2851.665000px;}
.y53{bottom:2909.265000px;}
.y52{bottom:2966.865000px;}
.y51{bottom:3024.465000px;}
.y50{bottom:3082.110000px;}
.y4f{bottom:3134.130000px;}
.y4e{bottom:3162.930000px;}
.y4d{bottom:3197.310000px;}
.y1a{bottom:3207.135000px;}
.y4c{bottom:3254.910000px;}
.y19{bottom:3264.765000px;}
.y4b{bottom:3312.510000px;}
.y18{bottom:3322.365000px;}
.y4a{bottom:3361.830000px;}
.y17{bottom:3379.965000px;}
.y49{bottom:3384.510000px;}
.y16{bottom:3437.565000px;}
.y48{bottom:3442.110000px;}
.y15{bottom:3495.165000px;}
.y47{bottom:3499.710000px;}
.y14{bottom:3552.765000px;}
.y46{bottom:3557.310000px;}
.y13{bottom:3610.365000px;}
.y45{bottom:3614.910000px;}
.y12{bottom:3667.965000px;}
.y44{bottom:3672.510000px;}
.y11{bottom:3725.565000px;}
.y43{bottom:3730.110000px;}
.y10{bottom:3783.165000px;}
.y42{bottom:3787.710000px;}
.yf{bottom:3840.765000px;}
.y41{bottom:3845.310000px;}
.ye{bottom:3898.365000px;}
.y40{bottom:3902.910000px;}
.yd{bottom:3955.965000px;}
.y3f{bottom:3960.510000px;}
.y8e{bottom:3991.710000px;}
.yc{bottom:4007.985000px;}
.y3e{bottom:4012.530000px;}
.y85{bottom:4022.820000px;}
.yb{bottom:4179.495000px;}
.ya{bottom:4276.155000px;}
.y9{bottom:4312.875000px;}
.y8{bottom:4364.715000px;}
.y7{bottom:4416.555000px;}
.y6{bottom:4468.395000px;}
.y5{bottom:4516.275000px;}
.y4{bottom:4540.215000px;}
.y3{bottom:4587.915000px;}
.y2{bottom:4647.135000px;}
.y1{bottom:4767.735000px;}
.hd{height:49.183594px;}
.ha{height:50.312812px;}
.h16{height:54.964497px;}
.h18{height:57.544805px;}
.h19{height:57.585938px;}
.h17{height:65.414180px;}
.hf{height:72.790821px;}
.h13{height:72.827053px;}
.h6{height:79.797656px;}
.h5{height:85.424414px;}
.h14{height:94.219318px;}
.h8{height:99.874688px;}
.h3{height:102.304688px;}
.h15{height:111.807599px;}
.h11{height:124.776934px;}
.h12{height:124.839043px;}
.h1a{height:131.320195px;}
.he{height:138.001243px;}
.h4{height:139.424414px;}
.hb{height:150.187500px;}
.h10{height:162.705006px;}
.h9{height:200.500313px;}
.h7{height:255.761719px;}
.hc{height:255.864023px;}
.h2{height:306.914062px;}
.h0{height:5056.200000px;}
.h1{height:5056.500000px;}
.w3{width:378.564092px;}
.w2{width:3576.419999px;}
.w0{width:3576.420000px;}
.w1{width:3576.750000px;}
.x0{left:0.000000px;}
.x8{left:26.243999px;}
.x16{left:66.425314px;}
.x15{left:81.479783px;}
.x17{left:97.526952px;}
.x10{left:108.198691px;}
.x1{left:157.424999px;}
.x2{left:160.664999px;}
.x5{left:165.599999px;}
.x3{left:169.949999px;}
.x12{left:178.014850px;}
.x4{left:186.869999px;}
.x14{left:203.077897px;}
.x6{left:226.439999px;}
.x13{left:276.534503px;}
.xb{left:292.934999px;}
.xa{left:301.214999px;}
.x11{left:351.976511px;}
.xf{left:367.693324px;}
.xd{left:1322.534999px;}
.xe{left:1342.710000px;}
.x7{left:1861.889999px;}
.xc{left:1986.689999px;}
.x1a{left:2144.489999px;}
.x9{left:2508.734999px;}
.x1b{left:2681.174999px;}
.x19{left:2733.149999px;}
.x18{left:2804.039999px;}
@media print{
.v2{vertical-align:-48.000000pt;}
.v6{vertical-align:-26.241224pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:38.400000pt;}
.v1{vertical-align:48.000000pt;}
.v3{vertical-align:51.200000pt;}
.v5{vertical-align:79.923720pt;}
.lse{letter-spacing:-2.688000pt;}
.lsd{letter-spacing:-0.784000pt;}
.lsc{letter-spacing:-0.289067pt;}
.ls9{letter-spacing:-0.288000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.144533pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.098667pt;}
.lsb{letter-spacing:-0.087467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.020480pt;}
.ls4{letter-spacing:0.033280pt;}
.ls11{letter-spacing:0.042423pt;}
.ls1{letter-spacing:0.056960pt;}
.ls3{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.352000pt;}
.ls5{letter-spacing:79.073261pt;}
.ws2{word-spacing:-47.824640pt;}
.ws3{word-spacing:-47.504640pt;}
.ws4{word-spacing:-47.417173pt;}
.ws5{word-spacing:-47.215573pt;}
.ws6{word-spacing:-35.584000pt;}
.ws7{word-spacing:-35.456000pt;}
.ws0{word-spacing:-23.192960pt;}
.ws1{word-spacing:-23.094293pt;}
.wsb{word-spacing:-0.155489pt;}
.wsa{word-spacing:-0.113066pt;}
.ws8{word-spacing:-0.065959pt;}
.wsc{word-spacing:0.000000pt;}
.ws9{word-spacing:347.870418pt;}
._1a{margin-left:-1335.477760pt;}
._13{margin-left:-1173.030089pt;}
._10{margin-left:-1134.833722pt;}
._12{margin-left:-626.830236pt;}
._18{margin-left:-602.319566pt;}
._17{margin-left:-568.092711pt;}
._15{margin-left:-545.922465pt;}
._16{margin-left:-379.271240pt;}
._11{margin-left:-226.483471pt;}
._19{margin-left:-167.598919pt;}
._14{margin-left:-155.547029pt;}
._e{margin-left:-14.437973pt;}
._5{margin-left:-11.023360pt;}
._4{margin-left:-9.358720pt;}
._3{margin-left:-6.823680pt;}
._a{margin-left:-3.417600pt;}
._1{margin-left:-2.293333pt;}
._0{margin-left:-1.280000pt;}
._2{width:0.896000pt;}
._d{width:2.154667pt;}
._c{width:3.072000pt;}
._6{width:28.175147pt;}
._7{width:168.815360pt;}
._8{width:554.202027pt;}
._9{width:769.775360pt;}
._b{width:771.162027pt;}
._1b{width:2535.203627pt;}
._f{width:4369.920000pt;}
.fs9{font-size:42.880000pt;}
.fsb{font-size:64.000000pt;}
.fsc{font-size:65.959007pt;}
.fsf{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs4{font-size:99.840000pt;}
.fs3{font-size:106.880000pt;}
.fsd{font-size:113.065942pt;}
.fs8{font-size:113.920000pt;}
.fs1{font-size:128.000000pt;}
.fs2{font-size:160.000000pt;}
.fse{font-size:169.598913pt;}
.fs7{font-size:170.880000pt;}
.fs5{font-size:320.000000pt;}
.fsa{font-size:320.128000pt;}
.fs0{font-size:384.000000pt;}
.y92{bottom:-27.584000pt;}
.y0{bottom:0.000000pt;}
.y89{bottom:5.660779pt;}
.y8b{bottom:12.739241pt;}
.y91{bottom:22.208000pt;}
.y8a{bottom:48.791505pt;}
.y8c{bottom:75.849226pt;}
.y7b{bottom:96.928000pt;}
.y8d{bottom:104.604593pt;}
.y7a{bottom:133.893333pt;}
.y79{bottom:170.693333pt;}
.y78{bottom:207.493333pt;}
.y77{bottom:245.413333pt;}
.y76{bottom:282.213333pt;}
.y75{bottom:318.213333pt;}
.y74{bottom:371.013333pt;}
.y83{bottom:393.733333pt;}
.y82{bottom:432.133333pt;}
.y81{bottom:470.533333pt;}
.y80{bottom:508.933333pt;}
.y3d{bottom:520.066667pt;}
.y7f{bottom:547.333333pt;}
.y3c{bottom:571.266667pt;}
.y7e{bottom:585.733333pt;}
.y3b{bottom:622.466667pt;}
.y7d{bottom:624.133333pt;}
.y7c{bottom:662.533333pt;}
.y3a{bottom:673.666667pt;}
.y39{bottom:724.866667pt;}
.y38{bottom:776.066667pt;}
.y73{bottom:807.333333pt;}
.y37{bottom:827.266667pt;}
.y72{bottom:858.533333pt;}
.y36{bottom:878.466667pt;}
.y71{bottom:909.733333pt;}
.y35{bottom:929.666667pt;}
.y70{bottom:960.933333pt;}
.y34{bottom:980.866667pt;}
.y88{bottom:1002.640000pt;}
.y6f{bottom:1012.133333pt;}
.y33{bottom:1032.066667pt;}
.y6e{bottom:1063.333333pt;}
.y32{bottom:1083.266667pt;}
.y6d{bottom:1114.533333pt;}
.y31{bottom:1134.466667pt;}
.y6c{bottom:1165.733333pt;}
.y30{bottom:1185.666667pt;}
.y87{bottom:1189.120000pt;}
.y6b{bottom:1211.973333pt;}
.y86{bottom:1225.120000pt;}
.y2f{bottom:1236.866667pt;}
.y2e{bottom:1288.093333pt;}
.y2d{bottom:1339.293333pt;}
.y2c{bottom:1390.493333pt;}
.y6a{bottom:1408.386667pt;}
.y2b{bottom:1441.693333pt;}
.y69{bottom:1459.586667pt;}
.y2a{bottom:1492.893333pt;}
.y68{bottom:1510.786667pt;}
.y29{bottom:1544.093333pt;}
.y67{bottom:1561.986667pt;}
.y28{bottom:1595.293333pt;}
.y66{bottom:1613.186667pt;}
.y27{bottom:1646.493333pt;}
.y65{bottom:1664.386667pt;}
.y26{bottom:1697.693333pt;}
.y64{bottom:1715.613333pt;}
.y25{bottom:1748.893333pt;}
.y63{bottom:1766.813333pt;}
.y24{bottom:1800.093333pt;}
.y62{bottom:1818.013333pt;}
.y23{bottom:1851.293333pt;}
.y61{bottom:1869.213333pt;}
.y22{bottom:1902.493333pt;}
.y60{bottom:1920.413333pt;}
.y21{bottom:1953.693333pt;}
.y5f{bottom:1971.613333pt;}
.y90{bottom:1973.373333pt;}
.y20{bottom:2004.893333pt;}
.y5e{bottom:2022.813333pt;}
.y8f{bottom:2048.253333pt;}
.y1f{bottom:2056.093333pt;}
.y5d{bottom:2074.013333pt;}
.y1e{bottom:2107.293333pt;}
.y5c{bottom:2125.213333pt;}
.y1d{bottom:2158.493333pt;}
.y5b{bottom:2176.413333pt;}
.y1c{bottom:2209.693333pt;}
.y5a{bottom:2227.613333pt;}
.y1b{bottom:2255.933333pt;}
.y84{bottom:2272.773333pt;}
.y59{bottom:2278.813333pt;}
.y58{bottom:2330.013333pt;}
.y57{bottom:2381.213333pt;}
.y56{bottom:2432.413333pt;}
.y55{bottom:2483.613333pt;}
.y54{bottom:2534.813333pt;}
.y53{bottom:2586.013333pt;}
.y52{bottom:2637.213333pt;}
.y51{bottom:2688.413333pt;}
.y50{bottom:2739.653333pt;}
.y4f{bottom:2785.893333pt;}
.y4e{bottom:2811.493333pt;}
.y4d{bottom:2842.053333pt;}
.y1a{bottom:2850.786667pt;}
.y4c{bottom:2893.253333pt;}
.y19{bottom:2902.013333pt;}
.y4b{bottom:2944.453333pt;}
.y18{bottom:2953.213333pt;}
.y4a{bottom:2988.293333pt;}
.y17{bottom:3004.413333pt;}
.y49{bottom:3008.453333pt;}
.y16{bottom:3055.613333pt;}
.y48{bottom:3059.653333pt;}
.y15{bottom:3106.813333pt;}
.y47{bottom:3110.853333pt;}
.y14{bottom:3158.013333pt;}
.y46{bottom:3162.053333pt;}
.y13{bottom:3209.213333pt;}
.y45{bottom:3213.253333pt;}
.y12{bottom:3260.413333pt;}
.y44{bottom:3264.453333pt;}
.y11{bottom:3311.613333pt;}
.y43{bottom:3315.653333pt;}
.y10{bottom:3362.813333pt;}
.y42{bottom:3366.853333pt;}
.yf{bottom:3414.013333pt;}
.y41{bottom:3418.053333pt;}
.ye{bottom:3465.213333pt;}
.y40{bottom:3469.253333pt;}
.yd{bottom:3516.413333pt;}
.y3f{bottom:3520.453333pt;}
.y8e{bottom:3548.186667pt;}
.yc{bottom:3562.653333pt;}
.y3e{bottom:3566.693333pt;}
.y85{bottom:3575.840000pt;}
.yb{bottom:3715.106667pt;}
.ya{bottom:3801.026667pt;}
.y9{bottom:3833.666667pt;}
.y8{bottom:3879.746667pt;}
.y7{bottom:3925.826667pt;}
.y6{bottom:3971.906667pt;}
.y5{bottom:4014.466667pt;}
.y4{bottom:4035.746667pt;}
.y3{bottom:4078.146667pt;}
.y2{bottom:4130.786667pt;}
.y1{bottom:4237.986667pt;}
.hd{height:43.718750pt;}
.ha{height:44.722500pt;}
.h16{height:48.857331pt;}
.h18{height:51.150937pt;}
.h19{height:51.187500pt;}
.h17{height:58.145938pt;}
.hf{height:64.702952pt;}
.h13{height:64.735158pt;}
.h6{height:70.931250pt;}
.h5{height:75.932812pt;}
.h14{height:83.750505pt;}
.h8{height:88.777500pt;}
.h3{height:90.937500pt;}
.h15{height:99.384533pt;}
.h11{height:110.912831pt;}
.h12{height:110.968039pt;}
.h1a{height:116.729062pt;}
.he{height:122.667772pt;}
.h4{height:123.932812pt;}
.hb{height:133.500000pt;}
.h10{height:144.626672pt;}
.h9{height:178.222500pt;}
.h7{height:227.343750pt;}
.hc{height:227.434687pt;}
.h2{height:272.812500pt;}
.h0{height:4494.400000pt;}
.h1{height:4494.666667pt;}
.w3{width:336.501415pt;}
.w2{width:3179.039999pt;}
.w0{width:3179.040000pt;}
.w1{width:3179.333333pt;}
.x0{left:0.000000pt;}
.x8{left:23.327999pt;}
.x16{left:59.044724pt;}
.x15{left:72.426474pt;}
.x17{left:86.690624pt;}
.x10{left:96.176614pt;}
.x1{left:139.933332pt;}
.x2{left:142.813332pt;}
.x5{left:147.199999pt;}
.x3{left:151.066665pt;}
.x12{left:158.235422pt;}
.x4{left:166.106665pt;}
.x14{left:180.513686pt;}
.x6{left:201.279999pt;}
.x13{left:245.808447pt;}
.xb{left:260.386665pt;}
.xa{left:267.746665pt;}
.x11{left:312.868009pt;}
.xf{left:326.838510pt;}
.xd{left:1175.586665pt;}
.xe{left:1193.520000pt;}
.x7{left:1655.013332pt;}
.xc{left:1765.946665pt;}
.x1a{left:1906.213332pt;}
.x9{left:2229.986665pt;}
.x1b{left:2383.266665pt;}
.x19{left:2429.466665pt;}
.x18{left:2492.479999pt;}
}




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