
    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_1acb0dcbc45bae58ab9bc2c8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.800293;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_69a0828e052c57da38b9941f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.851562;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_afced36d0140b16781d5d775.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b881a4dc12372bc3b6c9902f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_d2512d13b130e00b799ec9d3.woff')format("woff");}.ff5{font-family:ff5;line-height:0.752000;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_8c93008fbbec2df39af8fe09.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_294145163bac5f5482cf4534.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a564d35f2d2302549d9b8973.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a2895359bb5a8d5c69163f58.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.783691;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_67230900a08b67421d5d76d2.woff')format("woff");}.ffc{font-family:ffc;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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-1.098000px;}
.lsd{letter-spacing:-0.684000px;}
.lse{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.276000px;}
.ls1a{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.129600px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.028080px;}
.ls1{letter-spacing:0.034560px;}
.lsb{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.106560px;}
.lsf{letter-spacing:0.125280px;}
.ls10{letter-spacing:0.157440px;}
.ls16{letter-spacing:0.171360px;}
.ls13{letter-spacing:0.181440px;}
.ls0{letter-spacing:0.217440px;}
.ls2{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.349200px;}
.ls8{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.540000px;}
.ls9{letter-spacing:5.580000px;}
.ls19{letter-spacing:7.020000px;}
.lsa{letter-spacing:12.780000px;}
.ls18{letter-spacing:14.220000px;}
.ls17{letter-spacing:36.341280px;}
.ls4{letter-spacing:81.900000px;}
.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;}
}
.ws5{word-spacing:-21.420000px;}
.ws7{word-spacing:-21.088080px;}
.ws3{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.075760px;}
.ws0{word-spacing:-19.596960px;}
.ws2{word-spacing:-14.904000px;}
.ws1{word-spacing:-14.832000px;}
.ws4{word-spacing:0.000000px;}
._6{margin-left:-7.047120px;}
._5{margin-left:-5.873040px;}
._f{margin-left:-4.548960px;}
._10{margin-left:-2.779920px;}
._2{margin-left:-1.432080px;}
._3{width:1.018800px;}
._4{width:3.006240px;}
._12{width:4.187040px;}
._7{width:5.598960px;}
._11{width:7.328880px;}
._13{width:8.508240px;}
._14{width:9.519120px;}
._21{width:11.119680px;}
._1e{width:12.497520px;}
._17{width:13.815360px;}
._18{width:14.910480px;}
._23{width:16.024080px;}
._36{width:17.184960px;}
._34{width:18.532800px;}
._1f{width:19.543680px;}
._c{width:22.660560px;}
._19{width:23.839920px;}
._2b{width:25.608960px;}
._3b{width:27.581520px;}
._16{width:29.231280px;}
._15{width:30.410640px;}
._9{width:31.842720px;}
._8{width:32.937840px;}
._37{width:34.285680px;}
._a{width:35.549280px;}
._1a{width:38.160720px;}
._24{width:39.677040px;}
._25{width:40.940640px;}
._22{width:43.934880px;}
._3a{width:45.068400px;}
._b{width:48.438000px;}
._35{width:50.030640px;}
._44{width:51.639120px;}
._45{width:53.571840px;}
._d{width:55.177200px;}
._46{width:58.053120px;}
._1d{width:60.063120px;}
._20{width:64.780560px;}
._3d{width:66.802320px;}
._1b{width:68.908320px;}
._1c{width:70.248240px;}
._3c{width:75.005280px;}
._e{width:81.628560px;}
._3e{width:86.177520px;}
._3f{width:88.426320px;}
._33{width:93.000960px;}
._32{width:94.312080px;}
._2a{width:113.080320px;}
._29{width:114.472080px;}
._2f{width:128.550240px;}
._2e{width:129.592080px;}
._47{width:133.688880px;}
._48{width:135.250800px;}
._38{width:141.930480px;}
._39{width:143.123760px;}
._2c{width:172.186560px;}
._2d{width:173.534400px;}
._28{width:178.167600px;}
._27{width:179.272080px;}
._40{width:184.148640px;}
._41{width:185.553600px;}
._42{width:192.741120px;}
._43{width:194.732880px;}
._0{width:292.222560px;}
._26{width:300.208080px;}
._31{width:443.607840px;}
._30{width:444.928080px;}
._1{width:1213.426560px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(192,0,0);}
.fc6{color:rgb(46,116,181);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,128,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.fs5{font-size:120.240000px;}
.fs2{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y6{bottom:10.475850px;}
.y5{bottom:31.176000px;}
.y4a{bottom:104.076000px;}
.y6c{bottom:109.296000px;}
.y49{bottom:131.976000px;}
.y6b{bottom:137.196000px;}
.y29{bottom:137.916000px;}
.y92{bottom:143.136000px;}
.y48{bottom:159.690000px;}
.y6a{bottom:164.910000px;}
.y28{bottom:165.810000px;}
.y91{bottom:170.850000px;}
.y47{bottom:187.410000px;}
.y69{bottom:192.630000px;}
.y27{bottom:193.530000px;}
.y90{bottom:198.570000px;}
.y46{bottom:215.130000px;}
.y68{bottom:220.350000px;}
.y26{bottom:221.250000px;}
.y8f{bottom:226.470000px;}
.y45{bottom:243.030000px;}
.y67{bottom:248.070000px;}
.y88{bottom:248.250000px;}
.y25{bottom:249.150000px;}
.y8e{bottom:254.190000px;}
.y44{bottom:270.750000px;}
.y87{bottom:275.970000px;}
.y24{bottom:276.870000px;}
.y66{bottom:279.030000px;}
.y8d{bottom:281.955000px;}
.y43{bottom:298.515000px;}
.y86{bottom:303.735000px;}
.y23{bottom:304.635000px;}
.y65{bottom:306.795000px;}
.y8c{bottom:309.855000px;}
.y42{bottom:326.235000px;}
.y85{bottom:331.635000px;}
.y64{bottom:334.515000px;}
.y22{bottom:335.415000px;}
.y8b{bottom:337.575000px;}
.y41{bottom:354.135000px;}
.y84{bottom:359.355000px;}
.y63{bottom:362.235000px;}
.y21{bottom:363.135000px;}
.y8a{bottom:365.295000px;}
.y40{bottom:381.855000px;}
.y83{bottom:387.075000px;}
.y62{bottom:389.955000px;}
.y20{bottom:390.855000px;}
.y89{bottom:393.015000px;}
.y3f{bottom:409.575000px;}
.y82{bottom:414.795000px;}
.y61{bottom:420.915000px;}
.y1f{bottom:421.815000px;}
.y3e{bottom:437.475000px;}
.y81{bottom:442.695000px;}
.y60{bottom:448.635000px;}
.y1e{bottom:449.535000px;}
.y3d{bottom:465.195000px;}
.y80{bottom:470.415000px;}
.y5f{bottom:476.355000px;}
.y1d{bottom:477.255000px;}
.y3c{bottom:492.915000px;}
.y7f{bottom:498.135000px;}
.y5e{bottom:504.255000px;}
.y1c{bottom:504.975000px;}
.y3b{bottom:520.635000px;}
.y7e{bottom:525.855000px;}
.y5d{bottom:531.975000px;}
.y1b{bottom:532.875000px;}
.y3a{bottom:548.535000px;}
.y7d{bottom:553.755000px;}
.y5c{bottom:559.695000px;}
.y1a{bottom:560.595000px;}
.y39{bottom:576.285000px;}
.y7c{bottom:581.505000px;}
.y5b{bottom:587.445000px;}
.y19{bottom:588.345000px;}
.y38{bottom:604.005000px;}
.y7b{bottom:609.225000px;}
.y5a{bottom:615.345000px;}
.y18{bottom:616.065000px;}
.y37{bottom:631.725000px;}
.y7a{bottom:637.125000px;}
.y59{bottom:643.065000px;}
.y17{bottom:646.845000px;}
.y36{bottom:662.505000px;}
.y79{bottom:664.845000px;}
.y58{bottom:670.785000px;}
.y16{bottom:674.745000px;}
.y78{bottom:692.565000px;}
.y57{bottom:698.505000px;}
.y15{bottom:702.465000px;}
.y35{bottom:708.405000px;}
.y77{bottom:720.285000px;}
.y56{bottom:726.405000px;}
.y14{bottom:733.245000px;}
.y34{bottom:736.125000px;}
.y76{bottom:748.185000px;}
.y55{bottom:754.125000px;}
.y13{bottom:760.965000px;}
.y33{bottom:763.845000px;}
.y75{bottom:775.905000px;}
.y54{bottom:781.845000px;}
.y12{bottom:788.865000px;}
.y32{bottom:791.745000px;}
.y74{bottom:803.625000px;}
.y53{bottom:809.745000px;}
.y11{bottom:816.585000px;}
.y31{bottom:819.465000px;}
.y73{bottom:831.345000px;}
.y52{bottom:837.465000px;}
.y10{bottom:844.305000px;}
.y30{bottom:847.185000px;}
.y72{bottom:862.170000px;}
.y51{bottom:865.230000px;}
.yf{bottom:872.070000px;}
.y2f{bottom:874.950000px;}
.y71{bottom:890.070000px;}
.y50{bottom:892.950000px;}
.ye{bottom:899.970000px;}
.y2e{bottom:902.850000px;}
.y70{bottom:917.790000px;}
.y4f{bottom:920.850000px;}
.yd{bottom:927.690000px;}
.y2d{bottom:930.570000px;}
.y6f{bottom:945.510000px;}
.y4e{bottom:948.570000px;}
.y2c{bottom:958.290000px;}
.yc{bottom:958.470000px;}
.y6e{bottom:973.410000px;}
.y4d{bottom:976.290000px;}
.yb{bottom:986.190000px;}
.y6d{bottom:1001.130000px;}
.y4c{bottom:1004.190000px;}
.ya{bottom:1013.910000px;}
.y4b{bottom:1031.910000px;}
.y93{bottom:1041.630000px;}
.y9{bottom:1056.030000px;}
.y2b{bottom:1059.630000px;}
.y8{bottom:1087.350000px;}
.y2a{bottom:1115.070000px;}
.y7{bottom:1115.250000px;}
.y4{bottom:1139.400000px;}
.y3{bottom:1159.200000px;}
.y2{bottom:1183.320000px;}
.y1{bottom:1210.680000px;}
.h7{height:49.150080px;}
.h5{height:50.229844px;}
.hc{height:59.066719px;}
.h8{height:59.436914px;}
.ha{height:65.884219px;}
.h4{height:67.169883px;}
.h2{height:76.355508px;}
.hb{height:82.676953px;}
.h9{height:84.898125px;}
.hd{height:86.585445px;}
.h6{height:95.874961px;}
.h3{height:105.060586px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:42.479987px;}
.x4{left:84.959987px;}
.xd{left:95.435987px;}
.x1{left:106.415987px;}
.xe{left:116.495987px;}
.x6{left:156.809987px;}
.x7{left:205.049987px;}
.x8{left:273.989987px;}
.x9{left:281.774987px;}
.xa{left:322.634987px;}
.xb{left:333.254987px;}
.xc{left:428.294987px;}
.x2{left:521.564987px;}
.x3{left:632.084987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.976000pt;}
.lsd{letter-spacing:-0.608000pt;}
.lse{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.245333pt;}
.ls1a{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.115200pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.024960pt;}
.ls1{letter-spacing:0.030720pt;}
.lsb{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.094720pt;}
.lsf{letter-spacing:0.111360pt;}
.ls10{letter-spacing:0.139947pt;}
.ls16{letter-spacing:0.152320pt;}
.ls13{letter-spacing:0.161280pt;}
.ls0{letter-spacing:0.193280pt;}
.ls2{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.310400pt;}
.ls8{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.480000pt;}
.ls9{letter-spacing:4.960000pt;}
.ls19{letter-spacing:6.240000pt;}
.lsa{letter-spacing:11.360000pt;}
.ls18{letter-spacing:12.640000pt;}
.ls17{letter-spacing:32.303360pt;}
.ls4{letter-spacing:72.800000pt;}
.ws5{word-spacing:-19.040000pt;}
.ws7{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.720000pt;}
.ws6{word-spacing:-17.845120pt;}
.ws0{word-spacing:-17.419520pt;}
.ws2{word-spacing:-13.248000pt;}
.ws1{word-spacing:-13.184000pt;}
.ws4{word-spacing:0.000000pt;}
._6{margin-left:-6.264107pt;}
._5{margin-left:-5.220480pt;}
._f{margin-left:-4.043520pt;}
._10{margin-left:-2.471040pt;}
._2{margin-left:-1.272960pt;}
._3{width:0.905600pt;}
._4{width:2.672213pt;}
._12{width:3.721813pt;}
._7{width:4.976853pt;}
._11{width:6.514560pt;}
._13{width:7.562880pt;}
._14{width:8.461440pt;}
._21{width:9.884160pt;}
._1e{width:11.108907pt;}
._17{width:12.280320pt;}
._18{width:13.253760pt;}
._23{width:14.243627pt;}
._36{width:15.275520pt;}
._34{width:16.473600pt;}
._1f{width:17.372160pt;}
._c{width:20.142720pt;}
._19{width:21.191040pt;}
._2b{width:22.763520pt;}
._3b{width:24.516907pt;}
._16{width:25.983360pt;}
._15{width:27.031680pt;}
._9{width:28.304640pt;}
._8{width:29.278080pt;}
._37{width:30.476160pt;}
._a{width:31.599360pt;}
._1a{width:33.920640pt;}
._24{width:35.268480pt;}
._25{width:36.391680pt;}
._22{width:39.053227pt;}
._3a{width:40.060800pt;}
._b{width:43.056000pt;}
._35{width:44.471680pt;}
._44{width:45.901440pt;}
._45{width:47.619413pt;}
._d{width:49.046400pt;}
._46{width:51.602773pt;}
._1d{width:53.389440pt;}
._20{width:57.582720pt;}
._3d{width:59.379840pt;}
._1b{width:61.251840pt;}
._1c{width:62.442880pt;}
._3c{width:66.671360pt;}
._e{width:72.558720pt;}
._3e{width:76.602240pt;}
._3f{width:78.601173pt;}
._33{width:82.667520pt;}
._32{width:83.832960pt;}
._2a{width:100.515840pt;}
._29{width:101.752960pt;}
._2f{width:114.266880pt;}
._2e{width:115.192960pt;}
._47{width:118.834560pt;}
._48{width:120.222933pt;}
._38{width:126.160427pt;}
._39{width:127.221120pt;}
._2c{width:153.054720pt;}
._2d{width:154.252800pt;}
._28{width:158.371200pt;}
._27{width:159.352960pt;}
._40{width:163.687680pt;}
._41{width:164.936533pt;}
._42{width:171.325440pt;}
._43{width:173.095893pt;}
._0{width:259.753387pt;}
._26{width:266.851627pt;}
._31{width:394.318080pt;}
._30{width:395.491627pt;}
._1{width:1078.601387pt;}
.fs6{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.fs5{font-size:106.880000pt;}
.fs2{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:9.311867pt;}
.y5{bottom:27.712000pt;}
.y4a{bottom:92.512000pt;}
.y6c{bottom:97.152000pt;}
.y49{bottom:117.312000pt;}
.y6b{bottom:121.952000pt;}
.y29{bottom:122.592000pt;}
.y92{bottom:127.232000pt;}
.y48{bottom:141.946667pt;}
.y6a{bottom:146.586667pt;}
.y28{bottom:147.386667pt;}
.y91{bottom:151.866667pt;}
.y47{bottom:166.586667pt;}
.y69{bottom:171.226667pt;}
.y27{bottom:172.026667pt;}
.y90{bottom:176.506667pt;}
.y46{bottom:191.226667pt;}
.y68{bottom:195.866667pt;}
.y26{bottom:196.666667pt;}
.y8f{bottom:201.306667pt;}
.y45{bottom:216.026667pt;}
.y67{bottom:220.506667pt;}
.y88{bottom:220.666667pt;}
.y25{bottom:221.466667pt;}
.y8e{bottom:225.946667pt;}
.y44{bottom:240.666667pt;}
.y87{bottom:245.306667pt;}
.y24{bottom:246.106667pt;}
.y66{bottom:248.026667pt;}
.y8d{bottom:250.626667pt;}
.y43{bottom:265.346667pt;}
.y86{bottom:269.986667pt;}
.y23{bottom:270.786667pt;}
.y65{bottom:272.706667pt;}
.y8c{bottom:275.426667pt;}
.y42{bottom:289.986667pt;}
.y85{bottom:294.786667pt;}
.y64{bottom:297.346667pt;}
.y22{bottom:298.146667pt;}
.y8b{bottom:300.066667pt;}
.y41{bottom:314.786667pt;}
.y84{bottom:319.426667pt;}
.y63{bottom:321.986667pt;}
.y21{bottom:322.786667pt;}
.y8a{bottom:324.706667pt;}
.y40{bottom:339.426667pt;}
.y83{bottom:344.066667pt;}
.y62{bottom:346.626667pt;}
.y20{bottom:347.426667pt;}
.y89{bottom:349.346667pt;}
.y3f{bottom:364.066667pt;}
.y82{bottom:368.706667pt;}
.y61{bottom:374.146667pt;}
.y1f{bottom:374.946667pt;}
.y3e{bottom:388.866667pt;}
.y81{bottom:393.506667pt;}
.y60{bottom:398.786667pt;}
.y1e{bottom:399.586667pt;}
.y3d{bottom:413.506667pt;}
.y80{bottom:418.146667pt;}
.y5f{bottom:423.426667pt;}
.y1d{bottom:424.226667pt;}
.y3c{bottom:438.146667pt;}
.y7f{bottom:442.786667pt;}
.y5e{bottom:448.226667pt;}
.y1c{bottom:448.866667pt;}
.y3b{bottom:462.786667pt;}
.y7e{bottom:467.426667pt;}
.y5d{bottom:472.866667pt;}
.y1b{bottom:473.666667pt;}
.y3a{bottom:487.586667pt;}
.y7d{bottom:492.226667pt;}
.y5c{bottom:497.506667pt;}
.y1a{bottom:498.306667pt;}
.y39{bottom:512.253333pt;}
.y7c{bottom:516.893333pt;}
.y5b{bottom:522.173333pt;}
.y19{bottom:522.973333pt;}
.y38{bottom:536.893333pt;}
.y7b{bottom:541.533333pt;}
.y5a{bottom:546.973333pt;}
.y18{bottom:547.613333pt;}
.y37{bottom:561.533333pt;}
.y7a{bottom:566.333333pt;}
.y59{bottom:571.613333pt;}
.y17{bottom:574.973333pt;}
.y36{bottom:588.893333pt;}
.y79{bottom:590.973333pt;}
.y58{bottom:596.253333pt;}
.y16{bottom:599.773333pt;}
.y78{bottom:615.613333pt;}
.y57{bottom:620.893333pt;}
.y15{bottom:624.413333pt;}
.y35{bottom:629.693333pt;}
.y77{bottom:640.253333pt;}
.y56{bottom:645.693333pt;}
.y14{bottom:651.773333pt;}
.y34{bottom:654.333333pt;}
.y76{bottom:665.053333pt;}
.y55{bottom:670.333333pt;}
.y13{bottom:676.413333pt;}
.y33{bottom:678.973333pt;}
.y75{bottom:689.693333pt;}
.y54{bottom:694.973333pt;}
.y12{bottom:701.213333pt;}
.y32{bottom:703.773333pt;}
.y74{bottom:714.333333pt;}
.y53{bottom:719.773333pt;}
.y11{bottom:725.853333pt;}
.y31{bottom:728.413333pt;}
.y73{bottom:738.973333pt;}
.y52{bottom:744.413333pt;}
.y10{bottom:750.493333pt;}
.y30{bottom:753.053333pt;}
.y72{bottom:766.373333pt;}
.y51{bottom:769.093333pt;}
.yf{bottom:775.173333pt;}
.y2f{bottom:777.733333pt;}
.y71{bottom:791.173333pt;}
.y50{bottom:793.733333pt;}
.ye{bottom:799.973333pt;}
.y2e{bottom:802.533333pt;}
.y70{bottom:815.813333pt;}
.y4f{bottom:818.533333pt;}
.yd{bottom:824.613333pt;}
.y2d{bottom:827.173333pt;}
.y6f{bottom:840.453333pt;}
.y4e{bottom:843.173333pt;}
.y2c{bottom:851.813333pt;}
.yc{bottom:851.973333pt;}
.y6e{bottom:865.253333pt;}
.y4d{bottom:867.813333pt;}
.yb{bottom:876.613333pt;}
.y6d{bottom:889.893333pt;}
.y4c{bottom:892.613333pt;}
.ya{bottom:901.253333pt;}
.y4b{bottom:917.253333pt;}
.y93{bottom:925.893333pt;}
.y9{bottom:938.693333pt;}
.y2b{bottom:941.893333pt;}
.y8{bottom:966.533333pt;}
.y2a{bottom:991.173333pt;}
.y7{bottom:991.333333pt;}
.y4{bottom:1012.800000pt;}
.y3{bottom:1030.400000pt;}
.y2{bottom:1051.840000pt;}
.y1{bottom:1076.160000pt;}
.h7{height:43.688960pt;}
.h5{height:44.648750pt;}
.hc{height:52.503750pt;}
.h8{height:52.832812pt;}
.ha{height:58.563750pt;}
.h4{height:59.706562pt;}
.h2{height:67.871563pt;}
.hb{height:73.490625pt;}
.h9{height:75.465000pt;}
.hd{height:76.964840pt;}
.h6{height:85.222187pt;}
.h3{height:93.387187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:37.759988pt;}
.x4{left:75.519988pt;}
.xd{left:84.831988pt;}
.x1{left:94.591988pt;}
.xe{left:103.551988pt;}
.x6{left:139.386655pt;}
.x7{left:182.266655pt;}
.x8{left:243.546655pt;}
.x9{left:250.466655pt;}
.xa{left:286.786655pt;}
.xb{left:296.226655pt;}
.xc{left:380.706655pt;}
.x2{left:463.613322pt;}
.x3{left:561.853322pt;}
}




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