
    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_90122230062a340ff5cedd3c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9ac9dfa9fd070f26222197fc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_33d2a3b01ca9d24fadee6dae.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_7f194e473b70773f8a0c2319.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_62db37c3136eebea02b9c5f6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_de8b3fdd0c82092c79f47576.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_be78ee549d1848bf531401ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d8816f1025c71918d85d132f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_90122230062a340ff5cedd3c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_48583cecc57fc243818ec8e5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_c38a2389af2b3ae407b016be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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;}
.ls3{letter-spacing:-0.720000px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.720000px;}
.ls0{letter-spacing:6.234000px;}
.ls1{letter-spacing:17.511600px;}
.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:-18.000000px;}
.ws1{word-spacing:-17.250000px;}
.ws57{word-spacing:-16.500000px;}
.ws4c{word-spacing:-7.056000px;}
.ws28{word-spacing:-6.192000px;}
.wsa{word-spacing:-5.589000px;}
.ws3f{word-spacing:-5.112000px;}
.ws2e{word-spacing:-4.248000px;}
.ws55{word-spacing:-4.104000px;}
.ws10{word-spacing:-3.816000px;}
.ws26{word-spacing:-3.744000px;}
.ws48{word-spacing:-3.672000px;}
.ws49{word-spacing:-3.600000px;}
.ws47{word-spacing:-3.528000px;}
.ws45{word-spacing:-3.096000px;}
.ws4{word-spacing:-2.622000px;}
.ws11{word-spacing:-2.160000px;}
.ws29{word-spacing:-2.088000px;}
.ws1b{word-spacing:-1.944000px;}
.ws3e{word-spacing:-1.728000px;}
.ws43{word-spacing:-1.584000px;}
.ws39{word-spacing:-1.368000px;}
.ws7{word-spacing:-1.311000px;}
.ws32{word-spacing:-1.296000px;}
.ws52{word-spacing:-1.080000px;}
.ws20{word-spacing:-0.792000px;}
.ws9{word-spacing:-0.759000px;}
.ws56{word-spacing:-0.576000px;}
.wse{word-spacing:-0.432000px;}
.ws34{word-spacing:-0.288000px;}
.ws1f{word-spacing:-0.216000px;}
.ws54{word-spacing:-0.144000px;}
.ws2{word-spacing:0.000000px;}
.ws31{word-spacing:0.216000px;}
.ws2f{word-spacing:0.288000px;}
.ws1e{word-spacing:0.360000px;}
.ws3c{word-spacing:0.504000px;}
.ws40{word-spacing:0.720000px;}
.ws33{word-spacing:1.008000px;}
.ws4d{word-spacing:1.080000px;}
.ws6{word-spacing:1.104000px;}
.ws35{word-spacing:1.152000px;}
.ws13{word-spacing:1.440000px;}
.wsd{word-spacing:1.656000px;}
.ws5a{word-spacing:2.088000px;}
.ws3d{word-spacing:2.160000px;}
.ws5{word-spacing:2.208000px;}
.wsf{word-spacing:2.376000px;}
.ws4f{word-spacing:2.808000px;}
.ws18{word-spacing:2.880000px;}
.ws12{word-spacing:3.024000px;}
.ws1a{word-spacing:3.096000px;}
.ws27{word-spacing:3.168000px;}
.ws46{word-spacing:3.384000px;}
.ws14{word-spacing:3.528000px;}
.ws3b{word-spacing:3.600000px;}
.ws1c{word-spacing:3.744000px;}
.ws8{word-spacing:3.933000px;}
.ws5e{word-spacing:4.158000px;}
.ws36{word-spacing:4.176000px;}
.ws16{word-spacing:4.248000px;}
.ws2a{word-spacing:4.464000px;}
.ws58{word-spacing:4.536000px;}
.ws41{word-spacing:4.680000px;}
.ws53{word-spacing:4.824000px;}
.ws1d{word-spacing:4.968000px;}
.ws38{word-spacing:5.040000px;}
.wsb{word-spacing:5.451000px;}
.ws5c{word-spacing:5.472000px;}
.ws17{word-spacing:5.616000px;}
.ws44{word-spacing:5.976000px;}
.ws3{word-spacing:6.210000px;}
.ws23{word-spacing:6.264000px;}
.ws30{word-spacing:6.480000px;}
.ws22{word-spacing:7.200000px;}
.ws42{word-spacing:7.632000px;}
.ws2b{word-spacing:7.920000px;}
.ws50{word-spacing:8.280000px;}
.ws2d{word-spacing:8.568000px;}
.ws3a{word-spacing:8.784000px;}
.ws51{word-spacing:8.928000px;}
.ws4e{word-spacing:9.000000px;}
.ws15{word-spacing:9.072000px;}
.ws37{word-spacing:9.720000px;}
.ws5b{word-spacing:9.936000px;}
.ws5d{word-spacing:11.088000px;}
.ws19{word-spacing:11.448000px;}
.ws2c{word-spacing:11.952000px;}
.ws21{word-spacing:13.752000px;}
.ws24{word-spacing:14.400000px;}
.ws59{word-spacing:14.760000px;}
.ws25{word-spacing:16.704000px;}
.wsc{word-spacing:17.526000px;}
.ws4a{word-spacing:26.712000px;}
.ws4b{word-spacing:33.408000px;}
._2{margin-left:-10.802400px;}
._c{margin-left:-9.134100px;}
._b{margin-left:-7.163700px;}
._0{margin-left:-5.352000px;}
._5{margin-left:-4.218300px;}
._1{margin-left:-3.082800px;}
._3{margin-left:-1.495200px;}
._9{width:1.800900px;}
._d{width:2.899500px;}
._7{width:3.901800px;}
._8{width:4.950900px;}
._4{width:6.417000px;}
._f{width:7.513200px;}
._11{width:8.863200px;}
._10{width:10.562400px;}
._12{width:11.566500px;}
._6{width:13.724100px;}
._a{width:14.909400px;}
._e{width:66.024000px;}
.fc1{color:rgb(16,15,13);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.y90{bottom:82.300200px;}
.yae{bottom:85.920450px;}
.y4b{bottom:86.041800px;}
.y72{bottom:89.304600px;}
.y77{bottom:93.752550px;}
.y99{bottom:97.317600px;}
.y85{bottom:104.969250px;}
.yad{bottom:106.920450px;}
.y4a{bottom:107.041800px;}
.y71{bottom:110.304600px;}
.y7e{bottom:120.991650px;}
.yac{bottom:127.920450px;}
.y49{bottom:128.041800px;}
.y70{bottom:131.304600px;}
.y84{bottom:131.473050px;}
.y7d{bottom:147.495600px;}
.y48{bottom:149.041800px;}
.y22{bottom:149.154900px;}
.y83{bottom:149.473050px;}
.y6f{bottom:152.304600px;}
.yab{bottom:153.922350px;}
.y47{bottom:170.041800px;}
.y6e{bottom:173.304450px;}
.yaa{bottom:174.922350px;}
.y21{bottom:181.410900px;}
.y46{bottom:191.041800px;}
.y6d{bottom:194.304450px;}
.ya9{bottom:195.922350px;}
.y20{bottom:203.010900px;}
.y45{bottom:212.041800px;}
.y6c{bottom:215.304450px;}
.ya8{bottom:221.924400px;}
.y1f{bottom:222.510900px;}
.y44{bottom:233.041800px;}
.y6b{bottom:236.304450px;}
.ya7{bottom:242.924400px;}
.y1e{bottom:246.262800px;}
.y43{bottom:254.041800px;}
.y6a{bottom:258.054450px;}
.ya6{bottom:263.924400px;}
.y1d{bottom:265.762800px;}
.y42{bottom:275.041800px;}
.y69{bottom:279.804450px;}
.ya5{bottom:284.924400px;}
.y1c{bottom:285.262800px;}
.y41{bottom:296.041800px;}
.y1b{bottom:304.762800px;}
.ya4{bottom:305.924400px;}
.y68{bottom:313.554450px;}
.y40{bottom:317.041800px;}
.y1a{bottom:324.262800px;}
.ya3{bottom:326.924400px;}
.y67{bottom:335.154450px;}
.y3f{bottom:338.041800px;}
.y19{bottom:343.762800px;}
.ya2{bottom:348.674400px;}
.y3e{bottom:359.041800px;}
.y18{bottom:363.262800px;}
.yc6{bottom:368.650650px;}
.y66{bottom:378.354600px;}
.y76{bottom:378.804450px;}
.y3d{bottom:380.041800px;}
.y17{bottom:382.762800px;}
.yc5{bottom:388.150650px;}
.ya1{bottom:392.024400px;}
.y65{bottom:400.104600px;}
.y8f{bottom:400.724400px;}
.y3c{bottom:401.041800px;}
.y16{bottom:402.262800px;}
.yc4{bottom:411.902550px;}
.y98{bottom:412.372350px;}
.y75{bottom:421.404450px;}
.y15{bottom:421.762800px;}
.y64{bottom:421.854600px;}
.y3b{bottom:422.041800px;}
.yc3{bottom:431.402550px;}
.ya0{bottom:435.224400px;}
.y14{bottom:441.262800px;}
.y74{bottom:443.004600px;}
.y3a{bottom:443.041800px;}
.y8e{bottom:443.324400px;}
.y63{bottom:443.604600px;}
.y97{bottom:458.624400px;}
.y13{bottom:460.762800px;}
.y9f{bottom:461.728350px;}
.y39{bottom:464.041800px;}
.y73{bottom:464.604600px;}
.y62{bottom:465.204600px;}
.y8d{bottom:469.828350px;}
.yc2{bottom:472.502550px;}
.y7c{bottom:479.776350px;}
.y12{bottom:480.262800px;}
.y38{bottom:485.041800px;}
.y96{bottom:485.128350px;}
.y61{bottom:486.204600px;}
.y11{bottom:499.762800px;}
.y37{bottom:506.041800px;}
.y60{bottom:507.204600px;}
.y82{bottom:509.083350px;}
.yc1{bottom:515.702550px;}
.y10{bottom:519.262800px;}
.y7b{bottom:526.028400px;}
.y36{bottom:527.041800px;}
.y5f{bottom:528.204600px;}
.y81{bottom:530.083350px;}
.yc0{bottom:537.452550px;}
.yf{bottom:538.762800px;}
.y35{bottom:548.041800px;}
.y5e{bottom:549.204600px;}
.y7a{bottom:552.532350px;}
.ye{bottom:558.262800px;}
.ybf{bottom:559.202550px;}
.y34{bottom:569.041800px;}
.y5d{bottom:570.204600px;}
.y80{bottom:572.683350px;}
.yd{bottom:577.762800px;}
.y79{bottom:579.036300px;}
.ybe{bottom:580.952550px;}
.y33{bottom:590.041800px;}
.y5c{bottom:591.204600px;}
.yc{bottom:597.262800px;}
.y7f{bottom:599.187450px;}
.ybd{bottom:602.702550px;}
.y32{bottom:611.041800px;}
.y5b{bottom:612.204600px;}
.yb{bottom:616.762800px;}
.ybc{bottom:624.452550px;}
.y31{bottom:632.041800px;}
.y5a{bottom:633.204600px;}
.ya{bottom:636.262800px;}
.ybb{bottom:645.452550px;}
.y30{bottom:653.041800px;}
.y59{bottom:654.204600px;}
.y9{bottom:655.762800px;}
.yba{bottom:666.452550px;}
.y2f{bottom:674.041800px;}
.y58{bottom:675.204600px;}
.yb9{bottom:687.452550px;}
.y2e{bottom:695.041800px;}
.y57{bottom:696.204600px;}
.y8{bottom:698.662800px;}
.yb8{bottom:708.452550px;}
.y2d{bottom:716.041800px;}
.y56{bottom:717.204600px;}
.y7{bottom:720.262800px;}
.yb7{bottom:729.452550px;}
.y2c{bottom:737.041800px;}
.y55{bottom:738.204600px;}
.y6{bottom:741.862800px;}
.yb6{bottom:750.452550px;}
.y2b{bottom:758.041800px;}
.y54{bottom:759.204600px;}
.yb5{bottom:771.452550px;}
.y8c{bottom:773.235000px;}
.y2a{bottom:779.041800px;}
.y53{bottom:780.204600px;}
.y5{bottom:790.462800px;}
.yb4{bottom:792.452550px;}
.y9e{bottom:792.742650px;}
.y95{bottom:792.892650px;}
.y8b{bottom:794.235000px;}
.y29{bottom:800.791800px;}
.y52{bottom:801.204600px;}
.y9d{bottom:814.492650px;}
.y94{bottom:814.642650px;}
.y8a{bottom:815.235000px;}
.y4{bottom:817.462800px;}
.yb3{bottom:818.454600px;}
.y51{bottom:822.204600px;}
.y28{bottom:822.541800px;}
.y89{bottom:836.235000px;}
.y9c{bottom:836.242650px;}
.y93{bottom:836.392650px;}
.yb2{bottom:840.204600px;}
.y50{bottom:843.204600px;}
.y27{bottom:844.291800px;}
.y3{bottom:844.462800px;}
.y88{bottom:857.835000px;}
.y9b{bottom:857.992650px;}
.y92{bottom:858.142650px;}
.yb1{bottom:861.954600px;}
.y4f{bottom:864.204600px;}
.y26{bottom:866.041800px;}
.y87{bottom:879.585000px;}
.y9a{bottom:879.742650px;}
.y91{bottom:879.892650px;}
.yb0{bottom:883.704600px;}
.y4e{bottom:885.204600px;}
.y25{bottom:887.791800px;}
.yaf{bottom:905.454600px;}
.y4d{bottom:906.204600px;}
.y24{bottom:921.541800px;}
.y86{bottom:927.186900px;}
.y4c{bottom:927.204600px;}
.y23{bottom:927.477600px;}
.y78{bottom:927.494550px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.h7{height:41.689453px;}
.hc{height:45.826172px;}
.ha{height:45.858398px;}
.hb{height:46.200000px;}
.h6{height:47.909180px;}
.h8{height:48.796875px;}
.h9{height:49.992188px;}
.h5{height:50.027344px;}
.h3{height:50.400000px;}
.h4{height:56.929688px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.787450px;}
.x13{left:83.274300px;}
.x1{left:84.330750px;}
.x4{left:89.119800px;}
.x5{left:92.847000px;}
.x10{left:100.725000px;}
.x15{left:103.076100px;}
.x3{left:105.387600px;}
.xd{left:107.787450px;}
.x16{left:109.733700px;}
.x12{left:111.236700px;}
.x1b{left:123.307050px;}
.x19{left:131.811000px;}
.xc{left:134.787450px;}
.xe{left:141.557850px;}
.x1a{left:144.567000px;}
.x17{left:158.426250px;}
.x7{left:202.792350px;}
.x6{left:204.881250px;}
.x18{left:245.186400px;}
.x14{left:247.199100px;}
.x8{left:264.821100px;}
.xa{left:266.897850px;}
.xf{left:309.347400px;}
.x11{left:311.236500px;}
.xb{left:352.777350px;}
.x2{left:356.388750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls0{letter-spacing:5.541333pt;}
.ls1{letter-spacing:15.565867pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.333333pt;}
.ws57{word-spacing:-14.666667pt;}
.ws4c{word-spacing:-6.272000pt;}
.ws28{word-spacing:-5.504000pt;}
.wsa{word-spacing:-4.968000pt;}
.ws3f{word-spacing:-4.544000pt;}
.ws2e{word-spacing:-3.776000pt;}
.ws55{word-spacing:-3.648000pt;}
.ws10{word-spacing:-3.392000pt;}
.ws26{word-spacing:-3.328000pt;}
.ws48{word-spacing:-3.264000pt;}
.ws49{word-spacing:-3.200000pt;}
.ws47{word-spacing:-3.136000pt;}
.ws45{word-spacing:-2.752000pt;}
.ws4{word-spacing:-2.330667pt;}
.ws11{word-spacing:-1.920000pt;}
.ws29{word-spacing:-1.856000pt;}
.ws1b{word-spacing:-1.728000pt;}
.ws3e{word-spacing:-1.536000pt;}
.ws43{word-spacing:-1.408000pt;}
.ws39{word-spacing:-1.216000pt;}
.ws7{word-spacing:-1.165333pt;}
.ws32{word-spacing:-1.152000pt;}
.ws52{word-spacing:-0.960000pt;}
.ws20{word-spacing:-0.704000pt;}
.ws9{word-spacing:-0.674667pt;}
.ws56{word-spacing:-0.512000pt;}
.wse{word-spacing:-0.384000pt;}
.ws34{word-spacing:-0.256000pt;}
.ws1f{word-spacing:-0.192000pt;}
.ws54{word-spacing:-0.128000pt;}
.ws2{word-spacing:0.000000pt;}
.ws31{word-spacing:0.192000pt;}
.ws2f{word-spacing:0.256000pt;}
.ws1e{word-spacing:0.320000pt;}
.ws3c{word-spacing:0.448000pt;}
.ws40{word-spacing:0.640000pt;}
.ws33{word-spacing:0.896000pt;}
.ws4d{word-spacing:0.960000pt;}
.ws6{word-spacing:0.981333pt;}
.ws35{word-spacing:1.024000pt;}
.ws13{word-spacing:1.280000pt;}
.wsd{word-spacing:1.472000pt;}
.ws5a{word-spacing:1.856000pt;}
.ws3d{word-spacing:1.920000pt;}
.ws5{word-spacing:1.962667pt;}
.wsf{word-spacing:2.112000pt;}
.ws4f{word-spacing:2.496000pt;}
.ws18{word-spacing:2.560000pt;}
.ws12{word-spacing:2.688000pt;}
.ws1a{word-spacing:2.752000pt;}
.ws27{word-spacing:2.816000pt;}
.ws46{word-spacing:3.008000pt;}
.ws14{word-spacing:3.136000pt;}
.ws3b{word-spacing:3.200000pt;}
.ws1c{word-spacing:3.328000pt;}
.ws8{word-spacing:3.496000pt;}
.ws5e{word-spacing:3.696000pt;}
.ws36{word-spacing:3.712000pt;}
.ws16{word-spacing:3.776000pt;}
.ws2a{word-spacing:3.968000pt;}
.ws58{word-spacing:4.032000pt;}
.ws41{word-spacing:4.160000pt;}
.ws53{word-spacing:4.288000pt;}
.ws1d{word-spacing:4.416000pt;}
.ws38{word-spacing:4.480000pt;}
.wsb{word-spacing:4.845333pt;}
.ws5c{word-spacing:4.864000pt;}
.ws17{word-spacing:4.992000pt;}
.ws44{word-spacing:5.312000pt;}
.ws3{word-spacing:5.520000pt;}
.ws23{word-spacing:5.568000pt;}
.ws30{word-spacing:5.760000pt;}
.ws22{word-spacing:6.400000pt;}
.ws42{word-spacing:6.784000pt;}
.ws2b{word-spacing:7.040000pt;}
.ws50{word-spacing:7.360000pt;}
.ws2d{word-spacing:7.616000pt;}
.ws3a{word-spacing:7.808000pt;}
.ws51{word-spacing:7.936000pt;}
.ws4e{word-spacing:8.000000pt;}
.ws15{word-spacing:8.064000pt;}
.ws37{word-spacing:8.640000pt;}
.ws5b{word-spacing:8.832000pt;}
.ws5d{word-spacing:9.856000pt;}
.ws19{word-spacing:10.176000pt;}
.ws2c{word-spacing:10.624000pt;}
.ws21{word-spacing:12.224000pt;}
.ws24{word-spacing:12.800000pt;}
.ws59{word-spacing:13.120000pt;}
.ws25{word-spacing:14.848000pt;}
.wsc{word-spacing:15.578667pt;}
.ws4a{word-spacing:23.744000pt;}
.ws4b{word-spacing:29.696000pt;}
._2{margin-left:-9.602133pt;}
._c{margin-left:-8.119200pt;}
._b{margin-left:-6.367733pt;}
._0{margin-left:-4.757333pt;}
._5{margin-left:-3.749600pt;}
._1{margin-left:-2.740267pt;}
._3{margin-left:-1.329067pt;}
._9{width:1.600800pt;}
._d{width:2.577333pt;}
._7{width:3.468267pt;}
._8{width:4.400800pt;}
._4{width:5.704000pt;}
._f{width:6.678400pt;}
._11{width:7.878400pt;}
._10{width:9.388800pt;}
._12{width:10.281333pt;}
._6{width:12.199200pt;}
._a{width:13.252800pt;}
._e{width:58.688000pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.y90{bottom:73.155733pt;}
.yae{bottom:76.373733pt;}
.y4b{bottom:76.481600pt;}
.y72{bottom:79.381867pt;}
.y77{bottom:83.335600pt;}
.y99{bottom:86.504533pt;}
.y85{bottom:93.306000pt;}
.yad{bottom:95.040400pt;}
.y4a{bottom:95.148267pt;}
.y71{bottom:98.048533pt;}
.y7e{bottom:107.548133pt;}
.yac{bottom:113.707067pt;}
.y49{bottom:113.814933pt;}
.y70{bottom:116.715200pt;}
.y84{bottom:116.864933pt;}
.y7d{bottom:131.107200pt;}
.y48{bottom:132.481600pt;}
.y22{bottom:132.582133pt;}
.y83{bottom:132.864933pt;}
.y6f{bottom:135.381867pt;}
.yab{bottom:136.819867pt;}
.y47{bottom:151.148267pt;}
.y6e{bottom:154.048400pt;}
.yaa{bottom:155.486533pt;}
.y21{bottom:161.254133pt;}
.y46{bottom:169.814933pt;}
.y6d{bottom:172.715067pt;}
.ya9{bottom:174.153200pt;}
.y20{bottom:180.454133pt;}
.y45{bottom:188.481600pt;}
.y6c{bottom:191.381733pt;}
.ya8{bottom:197.266133pt;}
.y1f{bottom:197.787467pt;}
.y44{bottom:207.148267pt;}
.y6b{bottom:210.048400pt;}
.ya7{bottom:215.932800pt;}
.y1e{bottom:218.900267pt;}
.y43{bottom:225.814933pt;}
.y6a{bottom:229.381733pt;}
.ya6{bottom:234.599467pt;}
.y1d{bottom:236.233600pt;}
.y42{bottom:244.481600pt;}
.y69{bottom:248.715067pt;}
.ya5{bottom:253.266133pt;}
.y1c{bottom:253.566933pt;}
.y41{bottom:263.148267pt;}
.y1b{bottom:270.900267pt;}
.ya4{bottom:271.932800pt;}
.y68{bottom:278.715067pt;}
.y40{bottom:281.814933pt;}
.y1a{bottom:288.233600pt;}
.ya3{bottom:290.599467pt;}
.y67{bottom:297.915067pt;}
.y3f{bottom:300.481600pt;}
.y19{bottom:305.566933pt;}
.ya2{bottom:309.932800pt;}
.y3e{bottom:319.148267pt;}
.y18{bottom:322.900267pt;}
.yc6{bottom:327.689467pt;}
.y66{bottom:336.315200pt;}
.y76{bottom:336.715067pt;}
.y3d{bottom:337.814933pt;}
.y17{bottom:340.233600pt;}
.yc5{bottom:345.022800pt;}
.ya1{bottom:348.466133pt;}
.y65{bottom:355.648533pt;}
.y8f{bottom:356.199467pt;}
.y3c{bottom:356.481600pt;}
.y16{bottom:357.566933pt;}
.yc4{bottom:366.135600pt;}
.y98{bottom:366.553200pt;}
.y75{bottom:374.581733pt;}
.y15{bottom:374.900267pt;}
.y64{bottom:374.981867pt;}
.y3b{bottom:375.148267pt;}
.yc3{bottom:383.468933pt;}
.ya0{bottom:386.866133pt;}
.y14{bottom:392.233600pt;}
.y74{bottom:393.781867pt;}
.y3a{bottom:393.814933pt;}
.y8e{bottom:394.066133pt;}
.y63{bottom:394.315200pt;}
.y97{bottom:407.666133pt;}
.y13{bottom:409.566933pt;}
.y9f{bottom:410.425200pt;}
.y39{bottom:412.481600pt;}
.y73{bottom:412.981867pt;}
.y62{bottom:413.515200pt;}
.y8d{bottom:417.625200pt;}
.yc2{bottom:420.002267pt;}
.y7c{bottom:426.467867pt;}
.y12{bottom:426.900267pt;}
.y38{bottom:431.148267pt;}
.y96{bottom:431.225200pt;}
.y61{bottom:432.181867pt;}
.y11{bottom:444.233600pt;}
.y37{bottom:449.814933pt;}
.y60{bottom:450.848533pt;}
.y82{bottom:452.518533pt;}
.yc1{bottom:458.402267pt;}
.y10{bottom:461.566933pt;}
.y7b{bottom:467.580800pt;}
.y36{bottom:468.481600pt;}
.y5f{bottom:469.515200pt;}
.y81{bottom:471.185200pt;}
.yc0{bottom:477.735600pt;}
.yf{bottom:478.900267pt;}
.y35{bottom:487.148267pt;}
.y5e{bottom:488.181867pt;}
.y7a{bottom:491.139867pt;}
.ye{bottom:496.233600pt;}
.ybf{bottom:497.068933pt;}
.y34{bottom:505.814933pt;}
.y5d{bottom:506.848533pt;}
.y80{bottom:509.051867pt;}
.yd{bottom:513.566933pt;}
.y79{bottom:514.698933pt;}
.ybe{bottom:516.402267pt;}
.y33{bottom:524.481600pt;}
.y5c{bottom:525.515200pt;}
.yc{bottom:530.900267pt;}
.y7f{bottom:532.611067pt;}
.ybd{bottom:535.735600pt;}
.y32{bottom:543.148267pt;}
.y5b{bottom:544.181867pt;}
.yb{bottom:548.233600pt;}
.ybc{bottom:555.068933pt;}
.y31{bottom:561.814933pt;}
.y5a{bottom:562.848533pt;}
.ya{bottom:565.566933pt;}
.ybb{bottom:573.735600pt;}
.y30{bottom:580.481600pt;}
.y59{bottom:581.515200pt;}
.y9{bottom:582.900267pt;}
.yba{bottom:592.402267pt;}
.y2f{bottom:599.148267pt;}
.y58{bottom:600.181867pt;}
.yb9{bottom:611.068933pt;}
.y2e{bottom:617.814933pt;}
.y57{bottom:618.848533pt;}
.y8{bottom:621.033600pt;}
.yb8{bottom:629.735600pt;}
.y2d{bottom:636.481600pt;}
.y56{bottom:637.515200pt;}
.y7{bottom:640.233600pt;}
.yb7{bottom:648.402267pt;}
.y2c{bottom:655.148267pt;}
.y55{bottom:656.181867pt;}
.y6{bottom:659.433600pt;}
.yb6{bottom:667.068933pt;}
.y2b{bottom:673.814933pt;}
.y54{bottom:674.848533pt;}
.yb5{bottom:685.735600pt;}
.y8c{bottom:687.320000pt;}
.y2a{bottom:692.481600pt;}
.y53{bottom:693.515200pt;}
.y5{bottom:702.633600pt;}
.yb4{bottom:704.402267pt;}
.y9e{bottom:704.660133pt;}
.y95{bottom:704.793467pt;}
.y8b{bottom:705.986667pt;}
.y29{bottom:711.814933pt;}
.y52{bottom:712.181867pt;}
.y9d{bottom:723.993467pt;}
.y94{bottom:724.126800pt;}
.y8a{bottom:724.653333pt;}
.y4{bottom:726.633600pt;}
.yb3{bottom:727.515200pt;}
.y51{bottom:730.848533pt;}
.y28{bottom:731.148267pt;}
.y89{bottom:743.320000pt;}
.y9c{bottom:743.326800pt;}
.y93{bottom:743.460133pt;}
.yb2{bottom:746.848533pt;}
.y50{bottom:749.515200pt;}
.y27{bottom:750.481600pt;}
.y3{bottom:750.633600pt;}
.y88{bottom:762.520000pt;}
.y9b{bottom:762.660133pt;}
.y92{bottom:762.793467pt;}
.yb1{bottom:766.181867pt;}
.y4f{bottom:768.181867pt;}
.y26{bottom:769.814933pt;}
.y87{bottom:781.853333pt;}
.y9a{bottom:781.993467pt;}
.y91{bottom:782.126800pt;}
.yb0{bottom:785.515200pt;}
.y4e{bottom:786.848533pt;}
.y25{bottom:789.148267pt;}
.yaf{bottom:804.848533pt;}
.y4d{bottom:805.515200pt;}
.y24{bottom:819.148267pt;}
.y86{bottom:824.166133pt;}
.y4c{bottom:824.181867pt;}
.y23{bottom:824.424533pt;}
.y78{bottom:824.439600pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.h7{height:37.057292pt;}
.hc{height:40.734375pt;}
.ha{height:40.763021pt;}
.hb{height:41.066667pt;}
.h6{height:42.585938pt;}
.h8{height:43.375000pt;}
.h9{height:44.437500pt;}
.h5{height:44.468750pt;}
.h3{height:44.800000pt;}
.h4{height:50.604167pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.811067pt;}
.x13{left:74.021600pt;}
.x1{left:74.960667pt;}
.x4{left:79.217600pt;}
.x5{left:82.530667pt;}
.x10{left:89.533333pt;}
.x15{left:91.623200pt;}
.x3{left:93.677867pt;}
.xd{left:95.811067pt;}
.x16{left:97.541067pt;}
.x12{left:98.877067pt;}
.x1b{left:109.606267pt;}
.x19{left:117.165333pt;}
.xc{left:119.811067pt;}
.xe{left:125.829200pt;}
.x1a{left:128.504000pt;}
.x17{left:140.823333pt;}
.x7{left:180.259867pt;}
.x6{left:182.116667pt;}
.x18{left:217.943467pt;}
.x14{left:219.732533pt;}
.x8{left:235.396533pt;}
.xa{left:237.242533pt;}
.xf{left:274.975467pt;}
.x11{left:276.654667pt;}
.xb{left:313.579867pt;}
.x2{left:316.790000pt;}
}




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