
    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_3e59ba6297120461520dcb6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.204000;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_bc570edb530aec8f27cd7616.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.176270;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_fda76945091eb912a9e271c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666504;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_87e81e81eec3e5ffdaf87f40.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008789;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_1f5f0fc0fe550c3fec3adf1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.889648;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_68005089dfef0a3d960e27ff.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_475312cb366727a94fd9c936.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;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_f9fa53b92c3e98f6c63c0adf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_8ab3a5176b30d3e2ecd7e9ea.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.984375;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_5a4ee719eb2f1d8c4171ca5d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.003418;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.017600px;}
.ls4{letter-spacing:-0.013200px;}
.ls7{letter-spacing:-0.006600px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.633600px;}
.ls2{letter-spacing:12.934800px;}
.ls1{letter-spacing:12.982200px;}
.ls6{letter-spacing:191.535444px;}
.ls3{letter-spacing:197.652000px;}
.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:-16.500000px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-7.216080px;}
._4{margin-left:-6.078600px;}
._7{margin-left:-4.824600px;}
._0{margin-left:-2.736000px;}
._1{margin-left:-1.224000px;}
._2{width:1.728000px;}
._3{width:2.808000px;}
._d{width:3.892200px;}
._a{width:4.992600px;}
._8{width:6.032400px;}
._5{width:7.108200px;}
._e{width:8.557200px;}
._c{width:10.173600px;}
._6{width:11.470800px;}
._9{width:12.962400px;}
._14{width:14.437200px;}
._b{width:17.766000px;}
._f{width:19.266600px;}
._13{width:21.211200px;}
._17{width:22.263000px;}
._16{width:23.522400px;}
._19{width:25.251600px;}
._10{width:26.426400px;}
._12{width:32.304000px;}
._11{width:33.741600px;}
._15{width:34.769400px;}
._18{width:191.535444px;}
.fc1{color:rgb(33,37,41);}
.fc2{color:rgb(146,146,146);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:88.002000px;}
.y0{bottom:0.000000px;}
.yc{bottom:11.550030px;}
.y3c{bottom:15.496575px;}
.y64{bottom:19.040760px;}
.y3b{bottom:36.496575px;}
.y63{bottom:38.540775px;}
.yb{bottom:56.354505px;}
.y3a{bottom:57.496575px;}
.y62{bottom:58.040775px;}
.yad{bottom:63.921000px;}
.y10{bottom:73.662600px;}
.y61{bottom:77.540775px;}
.y39{bottom:78.496575px;}
.yac{bottom:84.921000px;}
.y38{bottom:99.496575px;}
.yab{bottom:105.921000px;}
.y60{bottom:113.956725px;}
.y37{bottom:120.496575px;}
.y65{bottom:122.631300px;}
.yaa{bottom:126.921000px;}
.yd{bottom:127.275975px;}
.y1{bottom:127.559055px;}
.y5f{bottom:134.956725px;}
.y36{bottom:141.496575px;}
.y8d{bottom:145.447050px;}
.ya9{bottom:147.921000px;}
.y5e{bottom:155.956725px;}
.y35{bottom:162.496575px;}
.y8c{bottom:168.641250px;}
.ya8{bottom:168.921000px;}
.y5d{bottom:176.956725px;}
.y34{bottom:183.496575px;}
.y8b{bottom:189.641250px;}
.y5c{bottom:198.496575px;}
.y33{bottom:204.496575px;}
.y8a{bottom:210.641250px;}
.y5b{bottom:219.496575px;}
.y32{bottom:226.036425px;}
.y89{bottom:231.641250px;}
.y5a{bottom:240.496575px;}
.y31{bottom:247.036425px;}
.ya6{bottom:250.576125px;}
.y88{bottom:252.641250px;}
.y59{bottom:261.496575px;}
.y30{bottom:268.036425px;}
.ya5{bottom:271.576125px;}
.y87{bottom:273.641250px;}
.y58{bottom:282.496575px;}
.y2f{bottom:289.036425px;}
.ya4{bottom:292.576125px;}
.y86{bottom:294.641250px;}
.y57{bottom:303.496575px;}
.y2e{bottom:310.036425px;}
.ya3{bottom:313.576125px;}
.y85{bottom:315.641250px;}
.y56{bottom:324.496575px;}
.y2d{bottom:331.036425px;}
.ya2{bottom:334.576125px;}
.y84{bottom:336.641250px;}
.y2c{bottom:352.036425px;}
.ya1{bottom:355.576125px;}
.y83{bottom:358.181100px;}
.y55{bottom:363.496575px;}
.y2b{bottom:373.036425px;}
.ya0{bottom:376.576125px;}
.y82{bottom:379.181100px;}
.y2a{bottom:394.036425px;}
.y9f{bottom:397.576125px;}
.y81{bottom:400.181100px;}
.y54{bottom:402.496575px;}
.y29{bottom:415.576125px;}
.y9e{bottom:418.576125px;}
.y80{bottom:421.181100px;}
.y53{bottom:423.496575px;}
.y28{bottom:436.576125px;}
.y9d{bottom:439.576125px;}
.y7f{bottom:442.181100px;}
.y52{bottom:444.496575px;}
.yf{bottom:446.442300px;}
.y27{bottom:457.576125px;}
.y7e{bottom:463.986900px;}
.y51{bottom:465.496575px;}
.ya{bottom:474.841845px;}
.y26{bottom:478.576125px;}
.y9c{bottom:481.576125px;}
.y50{bottom:487.036425px;}
.y9{bottom:495.841845px;}
.y25{bottom:499.576125px;}
.y4f{bottom:508.036425px;}
.y7d{bottom:510.765000px;}
.y8{bottom:516.841845px;}
.y24{bottom:520.576125px;}
.y4e{bottom:529.036425px;}
.y7c{bottom:530.265000px;}
.y7{bottom:537.841845px;}
.y23{bottom:541.576125px;}
.y7b{bottom:549.765000px;}
.y4d{bottom:550.036425px;}
.y6{bottom:558.841845px;}
.y22{bottom:562.576125px;}
.y7a{bottom:569.265000px;}
.y4c{bottom:571.842225px;}
.y5{bottom:579.841845px;}
.y21{bottom:583.576125px;}
.y79{bottom:588.765000px;}
.y4b{bottom:595.036425px;}
.y4{bottom:600.841845px;}
.y9b{bottom:601.036425px;}
.y20{bottom:604.576125px;}
.y78{bottom:608.265000px;}
.y4a{bottom:616.036425px;}
.y1f{bottom:625.576125px;}
.y77{bottom:627.765000px;}
.y49{bottom:637.036425px;}
.y1e{bottom:646.576125px;}
.y76{bottom:647.265000px;}
.y48{bottom:658.036425px;}
.y75{bottom:666.765000px;}
.y1d{bottom:667.576125px;}
.y9a{bottom:673.576125px;}
.y47{bottom:679.036425px;}
.y74{bottom:686.265000px;}
.y1c{bottom:688.576125px;}
.y99{bottom:694.576125px;}
.y46{bottom:700.036425px;}
.y3{bottom:709.365795px;}
.y98{bottom:715.576125px;}
.y45{bottom:721.576125px;}
.y73{bottom:724.181100px;}
.y1b{bottom:727.576125px;}
.y2{bottom:730.365795px;}
.y97{bottom:736.576125px;}
.y44{bottom:742.576125px;}
.y72{bottom:745.181100px;}
.y96{bottom:757.576125px;}
.y43{bottom:763.576125px;}
.y71{bottom:766.181100px;}
.y95{bottom:778.576125px;}
.y1a{bottom:784.576125px;}
.y70{bottom:787.720800px;}
.y94{bottom:799.576125px;}
.y19{bottom:805.576125px;}
.y6f{bottom:808.720800px;}
.y93{bottom:820.576125px;}
.ye{bottom:823.576125px;}
.y18{bottom:826.576125px;}
.y6e{bottom:829.720800px;}
.y92{bottom:841.576125px;}
.y42{bottom:844.576125px;}
.y17{bottom:847.576125px;}
.y6d{bottom:850.720800px;}
.y91{bottom:862.576125px;}
.y16{bottom:868.576125px;}
.y6c{bottom:872.526600px;}
.y90{bottom:883.576125px;}
.y41{bottom:886.576125px;}
.y15{bottom:889.576125px;}
.y6b{bottom:896.526600px;}
.y8f{bottom:904.576125px;}
.y40{bottom:907.576125px;}
.ya7{bottom:908.681100px;}
.y14{bottom:910.576125px;}
.y6a{bottom:919.304850px;}
.y8e{bottom:926.381925px;}
.y3f{bottom:928.576125px;}
.y13{bottom:931.576125px;}
.y69{bottom:938.804850px;}
.y3e{bottom:949.576125px;}
.y12{bottom:952.576125px;}
.y68{bottom:958.304850px;}
.y3d{bottom:970.576125px;}
.y67{bottom:977.804850px;}
.y11{bottom:991.576125px;}
.y66{bottom:997.304850px;}
.h5{height:27.750015px;}
.ha{height:36.861328px;}
.hb{height:43.989258px;}
.hf{height:47.791992px;}
.h8{height:48.307617px;}
.hc{height:53.935547px;}
.he{height:58.653677px;}
.h4{height:59.329102px;}
.h6{height:62.964000px;}
.h3{height:68.688000px;}
.h9{height:92.787645px;}
.h10{height:224.344800px;}
.h2{height:1012.254750px;}
.h7{height:1012.537950px;}
.hd{height:1016.770050px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w6{width:383.130000px;}
.wb{width:525.474000px;}
.w8{width:525.573000px;}
.w3{width:525.853500px;}
.wd{width:526.051500px;}
.wc{width:526.299000px;}
.wa{width:526.464000px;}
.w5{width:526.530000px;}
.we{width:560.080200px;}
.w4{width:561.838350px;}
.w9{width:565.051950px;}
.w7{width:572.933700px;}
.w2{width:573.082800px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:4.125000px;}
.x10{left:6.144600px;}
.x3{left:9.734550px;}
.x13{left:27.404550px;}
.x15{left:37.500000px;}
.x11{left:60.144600px;}
.x2{left:113.063550px;}
.x12{left:114.144600px;}
.xf{left:163.934100px;}
.x1{left:165.051450px;}
.x14{left:166.419900px;}
.xb{left:183.533250px;}
.xe{left:237.625500px;}
.x9{left:254.964900px;}
.x7{left:281.471250px;}
.x6{left:295.578450px;}
.xd{left:328.853550px;}
.xa{left:380.882100px;}
.x5{left:400.169700px;}
.x8{left:430.535250px;}
.x4{left:453.770550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.015645pt;}
.ls4{letter-spacing:-0.011733pt;}
.ls7{letter-spacing:-0.005867pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.563200pt;}
.ls2{letter-spacing:11.497600pt;}
.ls1{letter-spacing:11.539733pt;}
.ls6{letter-spacing:170.253728pt;}
.ls3{letter-spacing:175.690667pt;}
.ws0{word-spacing:-14.666667pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-6.414293pt;}
._4{margin-left:-5.403200pt;}
._7{margin-left:-4.288533pt;}
._0{margin-left:-2.432000pt;}
._1{margin-left:-1.088000pt;}
._2{width:1.536000pt;}
._3{width:2.496000pt;}
._d{width:3.459733pt;}
._a{width:4.437867pt;}
._8{width:5.362133pt;}
._5{width:6.318400pt;}
._e{width:7.606400pt;}
._c{width:9.043200pt;}
._6{width:10.196267pt;}
._9{width:11.522133pt;}
._14{width:12.833067pt;}
._b{width:15.792000pt;}
._f{width:17.125867pt;}
._13{width:18.854400pt;}
._17{width:19.789333pt;}
._16{width:20.908800pt;}
._19{width:22.445867pt;}
._10{width:23.490133pt;}
._12{width:28.714667pt;}
._11{width:29.992533pt;}
._15{width:30.906133pt;}
._18{width:170.253728pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:78.224000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:10.266693pt;}
.y3c{bottom:13.774733pt;}
.y64{bottom:16.925120pt;}
.y3b{bottom:32.441400pt;}
.y63{bottom:34.258467pt;}
.yb{bottom:50.092893pt;}
.y3a{bottom:51.108067pt;}
.y62{bottom:51.591800pt;}
.yad{bottom:56.818667pt;}
.y10{bottom:65.477867pt;}
.y61{bottom:68.925133pt;}
.y39{bottom:69.774733pt;}
.yac{bottom:75.485333pt;}
.y38{bottom:88.441400pt;}
.yab{bottom:94.152000pt;}
.y60{bottom:101.294867pt;}
.y37{bottom:107.108067pt;}
.y65{bottom:109.005600pt;}
.yaa{bottom:112.818667pt;}
.yd{bottom:113.134200pt;}
.y1{bottom:113.385827pt;}
.y5f{bottom:119.961533pt;}
.y36{bottom:125.774733pt;}
.y8d{bottom:129.286267pt;}
.ya9{bottom:131.485333pt;}
.y5e{bottom:138.628200pt;}
.y35{bottom:144.441400pt;}
.y8c{bottom:149.903333pt;}
.ya8{bottom:150.152000pt;}
.y5d{bottom:157.294867pt;}
.y34{bottom:163.108067pt;}
.y8b{bottom:168.570000pt;}
.y5c{bottom:176.441400pt;}
.y33{bottom:181.774733pt;}
.y8a{bottom:187.236667pt;}
.y5b{bottom:195.108067pt;}
.y32{bottom:200.921267pt;}
.y89{bottom:205.903333pt;}
.y5a{bottom:213.774733pt;}
.y31{bottom:219.587933pt;}
.ya6{bottom:222.734333pt;}
.y88{bottom:224.570000pt;}
.y59{bottom:232.441400pt;}
.y30{bottom:238.254600pt;}
.ya5{bottom:241.401000pt;}
.y87{bottom:243.236667pt;}
.y58{bottom:251.108067pt;}
.y2f{bottom:256.921267pt;}
.ya4{bottom:260.067667pt;}
.y86{bottom:261.903333pt;}
.y57{bottom:269.774733pt;}
.y2e{bottom:275.587933pt;}
.ya3{bottom:278.734333pt;}
.y85{bottom:280.570000pt;}
.y56{bottom:288.441400pt;}
.y2d{bottom:294.254600pt;}
.ya2{bottom:297.401000pt;}
.y84{bottom:299.236667pt;}
.y2c{bottom:312.921267pt;}
.ya1{bottom:316.067667pt;}
.y83{bottom:318.383200pt;}
.y55{bottom:323.108067pt;}
.y2b{bottom:331.587933pt;}
.ya0{bottom:334.734333pt;}
.y82{bottom:337.049867pt;}
.y2a{bottom:350.254600pt;}
.y9f{bottom:353.401000pt;}
.y81{bottom:355.716533pt;}
.y54{bottom:357.774733pt;}
.y29{bottom:369.401000pt;}
.y9e{bottom:372.067667pt;}
.y80{bottom:374.383200pt;}
.y53{bottom:376.441400pt;}
.y28{bottom:388.067667pt;}
.y9d{bottom:390.734333pt;}
.y7f{bottom:393.049867pt;}
.y52{bottom:395.108067pt;}
.yf{bottom:396.837600pt;}
.y27{bottom:406.734333pt;}
.y7e{bottom:412.432800pt;}
.y51{bottom:413.774733pt;}
.ya{bottom:422.081640pt;}
.y26{bottom:425.401000pt;}
.y9c{bottom:428.067667pt;}
.y50{bottom:432.921267pt;}
.y9{bottom:440.748307pt;}
.y25{bottom:444.067667pt;}
.y4f{bottom:451.587933pt;}
.y7d{bottom:454.013333pt;}
.y8{bottom:459.414973pt;}
.y24{bottom:462.734333pt;}
.y4e{bottom:470.254600pt;}
.y7c{bottom:471.346667pt;}
.y7{bottom:478.081640pt;}
.y23{bottom:481.401000pt;}
.y7b{bottom:488.680000pt;}
.y4d{bottom:488.921267pt;}
.y6{bottom:496.748307pt;}
.y22{bottom:500.067667pt;}
.y7a{bottom:506.013333pt;}
.y4c{bottom:508.304200pt;}
.y5{bottom:515.414973pt;}
.y21{bottom:518.734333pt;}
.y79{bottom:523.346667pt;}
.y4b{bottom:528.921267pt;}
.y4{bottom:534.081640pt;}
.y9b{bottom:534.254600pt;}
.y20{bottom:537.401000pt;}
.y78{bottom:540.680000pt;}
.y4a{bottom:547.587933pt;}
.y1f{bottom:556.067667pt;}
.y77{bottom:558.013333pt;}
.y49{bottom:566.254600pt;}
.y1e{bottom:574.734333pt;}
.y76{bottom:575.346667pt;}
.y48{bottom:584.921267pt;}
.y75{bottom:592.680000pt;}
.y1d{bottom:593.401000pt;}
.y9a{bottom:598.734333pt;}
.y47{bottom:603.587933pt;}
.y74{bottom:610.013333pt;}
.y1c{bottom:612.067667pt;}
.y99{bottom:617.401000pt;}
.y46{bottom:622.254600pt;}
.y3{bottom:630.547373pt;}
.y98{bottom:636.067667pt;}
.y45{bottom:641.401000pt;}
.y73{bottom:643.716533pt;}
.y1b{bottom:646.734333pt;}
.y2{bottom:649.214040pt;}
.y97{bottom:654.734333pt;}
.y44{bottom:660.067667pt;}
.y72{bottom:662.383200pt;}
.y96{bottom:673.401000pt;}
.y43{bottom:678.734333pt;}
.y71{bottom:681.049867pt;}
.y95{bottom:692.067667pt;}
.y1a{bottom:697.401000pt;}
.y70{bottom:700.196267pt;}
.y94{bottom:710.734333pt;}
.y19{bottom:716.067667pt;}
.y6f{bottom:718.862933pt;}
.y93{bottom:729.401000pt;}
.ye{bottom:732.067667pt;}
.y18{bottom:734.734333pt;}
.y6e{bottom:737.529600pt;}
.y92{bottom:748.067667pt;}
.y42{bottom:750.734333pt;}
.y17{bottom:753.401000pt;}
.y6d{bottom:756.196267pt;}
.y91{bottom:766.734333pt;}
.y16{bottom:772.067667pt;}
.y6c{bottom:775.579200pt;}
.y90{bottom:785.401000pt;}
.y41{bottom:788.067667pt;}
.y15{bottom:790.734333pt;}
.y6b{bottom:796.912533pt;}
.y8f{bottom:804.067667pt;}
.y40{bottom:806.734333pt;}
.ya7{bottom:807.716533pt;}
.y14{bottom:809.401000pt;}
.y6a{bottom:817.159867pt;}
.y8e{bottom:823.450600pt;}
.y3f{bottom:825.401000pt;}
.y13{bottom:828.067667pt;}
.y69{bottom:834.493200pt;}
.y3e{bottom:844.067667pt;}
.y12{bottom:846.734333pt;}
.y68{bottom:851.826533pt;}
.y3d{bottom:862.734333pt;}
.y67{bottom:869.159867pt;}
.y11{bottom:881.401000pt;}
.y66{bottom:886.493200pt;}
.h5{height:24.666680pt;}
.ha{height:32.765625pt;}
.hb{height:39.101562pt;}
.hf{height:42.481771pt;}
.h8{height:42.940104pt;}
.hc{height:47.942708pt;}
.he{height:52.136602pt;}
.h4{height:52.736979pt;}
.h6{height:55.968000pt;}
.h3{height:61.056000pt;}
.h9{height:82.477907pt;}
.h10{height:199.417600pt;}
.h2{height:899.782000pt;}
.h7{height:900.033733pt;}
.hd{height:903.795600pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w6{width:340.560000pt;}
.wb{width:467.088000pt;}
.w8{width:467.176000pt;}
.w3{width:467.425333pt;}
.wd{width:467.601333pt;}
.wc{width:467.821333pt;}
.wa{width:467.968000pt;}
.w5{width:468.026667pt;}
.we{width:497.849067pt;}
.w4{width:499.411867pt;}
.w9{width:502.268400pt;}
.w7{width:509.274400pt;}
.w2{width:509.406933pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:3.666667pt;}
.x10{left:5.461867pt;}
.x3{left:8.652933pt;}
.x13{left:24.359600pt;}
.x15{left:33.333333pt;}
.x11{left:53.461867pt;}
.x2{left:100.500933pt;}
.x12{left:101.461867pt;}
.xf{left:145.719200pt;}
.x1{left:146.712400pt;}
.x14{left:147.928800pt;}
.xb{left:163.140667pt;}
.xe{left:211.222667pt;}
.x9{left:226.635467pt;}
.x7{left:250.196667pt;}
.x6{left:262.736400pt;}
.xd{left:292.314267pt;}
.xa{left:338.561867pt;}
.x5{left:355.706400pt;}
.x8{left:382.698000pt;}
.x4{left:403.351600pt;}
}




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