
    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_3500d24d9d29ffb4a28b132d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_5851481207d1a0193b73e4b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_e3e68ef2b77ed825714073df.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2a375b1aacd164ad011c41f8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_41767b3cd1b4e957c2210355.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_85d6308cf66bc8eb574b25ca.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_decfac601a2f7b8a927d9958.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_2847847089d1e1042c1e57c0.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_dd71388a1f142a813b325b30.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.052734;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_86c8b364fff70563f16bb37f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.lsb{letter-spacing:-0.720000px;}
.ls0{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.144000px;}
.ls2{letter-spacing:1.920000px;}
.ls6{letter-spacing:2.081520px;}
.ls7{letter-spacing:2.160000px;}
.ls8{letter-spacing:2.520000px;}
.ls4{letter-spacing:2.801520px;}
.ls3{letter-spacing:4.376880px;}
.ls5{letter-spacing:17.921520px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.ws4{word-spacing:-55.944000px;}
.ws5{word-spacing:-55.764000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws0{word-spacing:-14.328000px;}
.ws3{word-spacing:0.000000px;}
._1e{margin-left:-5.472000px;}
._21{margin-left:-4.344000px;}
._1c{margin-left:-2.544000px;}
._1{margin-left:-1.152000px;}
._0{width:1.308000px;}
._3{width:2.472000px;}
._b{width:3.480000px;}
._c{width:5.208000px;}
._11{width:6.384000px;}
._12{width:7.608000px;}
._13{width:8.784000px;}
._14{width:9.984000px;}
._e{width:11.664000px;}
._6{width:12.672000px;}
._7{width:13.752000px;}
._15{width:14.760000px;}
._8{width:15.840000px;}
._9{width:16.968000px;}
._1d{width:18.360000px;}
._2{width:19.800000px;}
._d{width:21.600000px;}
._16{width:23.544000px;}
._a{width:24.696000px;}
._4{width:26.064000px;}
._5{width:27.288000px;}
._19{width:28.296000px;}
._18{width:29.952000px;}
._f{width:31.224000px;}
._17{width:32.304000px;}
._1a{width:34.128000px;}
._1b{width:35.568000px;}
._2e{width:36.648000px;}
._32{width:37.656000px;}
._2c{width:38.664000px;}
._2d{width:39.672000px;}
._2a{width:41.832000px;}
._2b{width:43.416000px;}
._31{width:44.424000px;}
._2f{width:46.296000px;}
._30{width:47.580000px;}
._34{width:48.816000px;}
._33{width:50.196000px;}
._22{width:56.952000px;}
._23{width:57.960000px;}
._27{width:63.792000px;}
._26{width:70.632000px;}
._28{width:84.600000px;}
._29{width:85.824000px;}
._24{width:87.048000px;}
._25{width:88.920000px;}
._20{width:197.220000px;}
._1f{width:198.780000px;}
._10{width:1051.356000px;}
.fc1{color:rgb(21,96,130);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:51.120000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:7.020000px;}
.y8c{bottom:7.065000px;}
.y5e{bottom:7.200000px;}
.y91{bottom:14.220000px;}
.y93{bottom:14.400000px;}
.y63{bottom:30.774000px;}
.y60{bottom:30.780000px;}
.y5b{bottom:30.825000px;}
.y5d{bottom:30.960000px;}
.y2{bottom:58.860000px;}
.y1{bottom:80.856000px;}
.y64{bottom:103.896000px;}
.y29{bottom:110.376000px;}
.yaf{bottom:122.076000px;}
.y85{bottom:124.596000px;}
.y62{bottom:127.656000px;}
.yc0{bottom:127.836000px;}
.y4c{bottom:128.916000px;}
.y28{bottom:141.336000px;}
.ybf{bottom:151.590000px;}
.yae{bottom:153.210000px;}
.y84{bottom:155.550000px;}
.y4b{bottom:159.870000px;}
.y27{bottom:172.470000px;}
.y61{bottom:175.170000px;}
.ybe{bottom:175.530000px;}
.yad{bottom:184.170000px;}
.y83{bottom:186.690000px;}
.y4a{bottom:191.010000px;}
.y8f{bottom:193.170000px;}
.ybd{bottom:199.290000px;}
.y26{bottom:203.430000px;}
.y8e{bottom:210.810000px;}
.yac{bottom:215.310000px;}
.y82{bottom:217.650000px;}
.y49{bottom:221.970000px;}
.y5f{bottom:222.870000px;}
.ybc{bottom:223.050000px;}
.y25{bottom:234.570000px;}
.yab{bottom:246.270000px;}
.ybb{bottom:246.810000px;}
.y81{bottom:248.790000px;}
.y48{bottom:253.110000px;}
.y24{bottom:258.330000px;}
.y5c{bottom:270.390000px;}
.yba{bottom:270.750000px;}
.yaa{bottom:277.410000px;}
.y80{bottom:279.750000px;}
.y23{bottom:282.090000px;}
.y47{bottom:284.070000px;}
.yb9{bottom:294.510000px;}
.y22{bottom:305.850000px;}
.y8d{bottom:306.030000px;}
.ya9{bottom:308.370000px;}
.y7f{bottom:310.890000px;}
.y46{bottom:315.210000px;}
.y5a{bottom:318.090000px;}
.yb8{bottom:318.270000px;}
.y21{bottom:329.790000px;}
.ya8{bottom:339.555000px;}
.y7e{bottom:341.895000px;}
.yb7{bottom:342.075000px;}
.y45{bottom:346.215000px;}
.y20{bottom:353.595000px;}
.yb6{bottom:366.015000px;}
.y58{bottom:366.555000px;}
.ya7{bottom:370.515000px;}
.y7d{bottom:373.035000px;}
.y1f{bottom:377.355000px;}
.yb5{bottom:389.775000px;}
.y1e{bottom:401.115000px;}
.ya6{bottom:401.655000px;}
.y7c{bottom:403.995000px;}
.y57{bottom:405.255000px;}
.y44{bottom:408.315000px;}
.yb4{bottom:413.535000px;}
.ya5{bottom:419.115000px;}
.y1d{bottom:425.055000px;}
.ydc{bottom:432.255000px;}
.y7b{bottom:435.135000px;}
.y56{bottom:436.395000px;}
.yb3{bottom:437.295000px;}
.y43{bottom:439.455000px;}
.y1c{bottom:448.815000px;}
.ya4{bottom:450.075000px;}
.ydb{bottom:456.015000px;}
.yb2{bottom:461.235000px;}
.y7a{bottom:466.095000px;}
.y55{bottom:467.355000px;}
.y42{bottom:470.415000px;}
.y1b{bottom:472.575000px;}
.yda{bottom:479.775000px;}
.ya3{bottom:481.215000px;}
.yb1{bottom:484.995000px;}
.y1a{bottom:496.335000px;}
.y79{bottom:497.235000px;}
.y54{bottom:498.495000px;}
.y41{bottom:501.555000px;}
.yd9{bottom:503.535000px;}
.yb0{bottom:508.755000px;}
.ya2{bottom:512.175000px;}
.y19{bottom:520.275000px;}
.yd8{bottom:527.295000px;}
.y78{bottom:528.195000px;}
.y53{bottom:529.455000px;}
.y40{bottom:532.515000px;}
.y18{bottom:544.035000px;}
.yd7{bottom:551.235000px;}
.y77{bottom:559.335000px;}
.y52{bottom:560.595000px;}
.y3f{bottom:563.655000px;}
.y17{bottom:567.795000px;}
.yd6{bottom:574.995000px;}
.ya1{bottom:590.115000px;}
.y76{bottom:590.295000px;}
.y16{bottom:591.555000px;}
.y51{bottom:591.915000px;}
.y3e{bottom:594.615000px;}
.yd5{bottom:598.755000px;}
.y15{bottom:615.345000px;}
.y8b{bottom:615.525000px;}
.ya0{bottom:621.285000px;}
.y75{bottom:621.465000px;}
.yd4{bottom:622.545000px;}
.y50{bottom:623.625000px;}
.y3d{bottom:625.785000px;}
.y8a{bottom:640.005000px;}
.y14{bottom:646.485000px;}
.y9f{bottom:652.245000px;}
.y74{bottom:652.425000px;}
.y4f{bottom:655.125000px;}
.y3c{bottom:656.745000px;}
.y9e{bottom:669.705000px;}
.yd3{bottom:670.245000px;}
.y13{bottom:677.445000px;}
.y89{bottom:678.885000px;}
.y73{bottom:683.565000px;}
.y4e{bottom:686.805000px;}
.y3b{bottom:687.885000px;}
.yd2{bottom:694.005000px;}
.y9d{bottom:700.845000px;}
.y12{bottom:708.585000px;}
.y88{bottom:709.845000px;}
.y72{bottom:714.525000px;}
.yd1{bottom:717.765000px;}
.y4d{bottom:718.485000px;}
.y3a{bottom:718.845000px;}
.y9c{bottom:731.805000px;}
.y11{bottom:739.545000px;}
.y87{bottom:740.985000px;}
.yd0{bottom:741.705000px;}
.y71{bottom:745.665000px;}
.y39{bottom:749.985000px;}
.y9b{bottom:762.945000px;}
.ycf{bottom:765.465000px;}
.y86{bottom:767.985000px;}
.y10{bottom:770.685000px;}
.y70{bottom:776.625000px;}
.y38{bottom:780.945000px;}
.yce{bottom:789.225000px;}
.y9a{bottom:794.625000px;}
.yf{bottom:801.645000px;}
.y6f{bottom:807.765000px;}
.y37{bottom:812.085000px;}
.ycd{bottom:812.985000px;}
.ye{bottom:832.785000px;}
.ycc{bottom:836.925000px;}
.y6e{bottom:838.725000px;}
.y99{bottom:840.885000px;}
.y36{bottom:843.045000px;}
.ycb{bottom:860.685000px;}
.yd{bottom:863.745000px;}
.y6d{bottom:869.865000px;}
.y98{bottom:871.890000px;}
.y35{bottom:874.230000px;}
.yca{bottom:884.490000px;}
.yc{bottom:894.930000px;}
.y6c{bottom:900.870000px;}
.y97{bottom:903.030000px;}
.y34{bottom:905.190000px;}
.yc9{bottom:908.250000px;}
.y96{bottom:920.490000px;}
.yb{bottom:925.890000px;}
.y6b{bottom:932.010000px;}
.yc8{bottom:932.190000px;}
.y33{bottom:936.330000px;}
.y95{bottom:951.450000px;}
.yc7{bottom:955.950000px;}
.ya{bottom:957.030000px;}
.y6a{bottom:962.970000px;}
.y32{bottom:967.290000px;}
.yc6{bottom:979.710000px;}
.y94{bottom:982.590000px;}
.y9{bottom:987.990000px;}
.y69{bottom:994.110000px;}
.y31{bottom:998.430000px;}
.yc5{bottom:1003.470000px;}
.y92{bottom:1013.550000px;}
.y8{bottom:1019.130000px;}
.y68{bottom:1025.070000px;}
.yc4{bottom:1027.230000px;}
.y30{bottom:1029.390000px;}
.y67{bottom:1042.530000px;}
.y7{bottom:1042.890000px;}
.y90{bottom:1045.410000px;}
.yc3{bottom:1051.170000px;}
.y2f{bottom:1060.350000px;}
.y6{bottom:1066.650000px;}
.yc2{bottom:1074.930000px;}
.y66{bottom:1090.230000px;}
.y5{bottom:1090.590000px;}
.y2e{bottom:1091.490000px;}
.yc1{bottom:1098.690000px;}
.y4{bottom:1114.350000px;}
.y65{bottom:1114.710000px;}
.y2d{bottom:1122.450000px;}
.y3{bottom:1138.140000px;}
.y2c{bottom:1144.440000px;}
.y2b{bottom:1168.380000px;}
.y2a{bottom:1192.140000px;}
.h8{height:23.760000px;}
.hc{height:23.796000px;}
.he{height:23.940000px;}
.hd{height:23.976000px;}
.hf{height:30.960000px;}
.h10{height:31.140000px;}
.hb{height:47.520000px;}
.h9{height:47.556000px;}
.ha{height:47.700000px;}
.h3{height:50.800781px;}
.h4{height:52.066406px;}
.h6{height:58.429688px;}
.h5{height:59.343750px;}
.h7{height:60.679688px;}
.h2{height:62.402344px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:79.056000px;}
.wa{width:83.880000px;}
.we{width:92.880000px;}
.w7{width:98.856000px;}
.w8{width:140.400000px;}
.w3{width:151.560000px;}
.wd{width:173.190000px;}
.wc{width:209.190000px;}
.wb{width:218.010000px;}
.w5{width:224.130000px;}
.w6{width:291.270000px;}
.w4{width:317.595000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:8.100000px;}
.x14{left:99.936000px;}
.x2{left:108.035987px;}
.x24{left:116.855987px;}
.x23{left:141.875987px;}
.x9{left:153.389987px;}
.x12{left:162.029987px;}
.x10{left:179.129987px;}
.xa{left:227.369987px;}
.x13{left:239.789987px;}
.x16{left:251.490000px;}
.xb{left:255.629987px;}
.xe{left:273.269987px;}
.x1b{left:288.974987px;}
.x20{left:317.955000px;}
.xd{left:321.374987px;}
.xf{left:330.014987px;}
.x3{left:332.354987px;}
.x1a{left:338.294987px;}
.x11{left:346.934987px;}
.xc{left:355.214987px;}
.x18{left:365.474987px;}
.x1c{left:391.035000px;}
.x1{left:432.074987px;}
.x8{left:446.474987px;}
.x1d{left:489.885000px;}
.x21{left:527.145000px;}
.x7{left:545.504987px;}
.x17{left:569.085000px;}
.x6{left:576.464987px;}
.x5{left:592.484987px;}
.x4{left:618.944987px;}
.x1e{left:630.285000px;}
.x22{left:700.350000px;}
.x19{left:701.609987px;}
.x1f{left:709.350000px;}
@media print{
.v1{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls2{letter-spacing:1.706667pt;}
.ls6{letter-spacing:1.850240pt;}
.ls7{letter-spacing:1.920000pt;}
.ls8{letter-spacing:2.240000pt;}
.ls4{letter-spacing:2.490240pt;}
.ls3{letter-spacing:3.890560pt;}
.ls5{letter-spacing:15.930240pt;}
.ws1{word-spacing:-64.000000pt;}
.ws4{word-spacing:-49.728000pt;}
.ws5{word-spacing:-49.568000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws0{word-spacing:-12.736000pt;}
.ws3{word-spacing:0.000000pt;}
._1e{margin-left:-4.864000pt;}
._21{margin-left:-3.861333pt;}
._1c{margin-left:-2.261333pt;}
._1{margin-left:-1.024000pt;}
._0{width:1.162667pt;}
._3{width:2.197333pt;}
._b{width:3.093333pt;}
._c{width:4.629333pt;}
._11{width:5.674667pt;}
._12{width:6.762667pt;}
._13{width:7.808000pt;}
._14{width:8.874667pt;}
._e{width:10.368000pt;}
._6{width:11.264000pt;}
._7{width:12.224000pt;}
._15{width:13.120000pt;}
._8{width:14.080000pt;}
._9{width:15.082667pt;}
._1d{width:16.320000pt;}
._2{width:17.600000pt;}
._d{width:19.200000pt;}
._16{width:20.928000pt;}
._a{width:21.952000pt;}
._4{width:23.168000pt;}
._5{width:24.256000pt;}
._19{width:25.152000pt;}
._18{width:26.624000pt;}
._f{width:27.754667pt;}
._17{width:28.714667pt;}
._1a{width:30.336000pt;}
._1b{width:31.616000pt;}
._2e{width:32.576000pt;}
._32{width:33.472000pt;}
._2c{width:34.368000pt;}
._2d{width:35.264000pt;}
._2a{width:37.184000pt;}
._2b{width:38.592000pt;}
._31{width:39.488000pt;}
._2f{width:41.152000pt;}
._30{width:42.293333pt;}
._34{width:43.392000pt;}
._33{width:44.618667pt;}
._22{width:50.624000pt;}
._23{width:51.520000pt;}
._27{width:56.704000pt;}
._26{width:62.784000pt;}
._28{width:75.200000pt;}
._29{width:76.288000pt;}
._24{width:77.376000pt;}
._25{width:79.040000pt;}
._20{width:175.306667pt;}
._1f{width:176.693333pt;}
._10{width:934.538667pt;}
.fs1{font-size:45.440000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:6.240000pt;}
.y8c{bottom:6.280000pt;}
.y5e{bottom:6.400000pt;}
.y91{bottom:12.640000pt;}
.y93{bottom:12.800000pt;}
.y63{bottom:27.354667pt;}
.y60{bottom:27.360000pt;}
.y5b{bottom:27.400000pt;}
.y5d{bottom:27.520000pt;}
.y2{bottom:52.320000pt;}
.y1{bottom:71.872000pt;}
.y64{bottom:92.352000pt;}
.y29{bottom:98.112000pt;}
.yaf{bottom:108.512000pt;}
.y85{bottom:110.752000pt;}
.y62{bottom:113.472000pt;}
.yc0{bottom:113.632000pt;}
.y4c{bottom:114.592000pt;}
.y28{bottom:125.632000pt;}
.ybf{bottom:134.746667pt;}
.yae{bottom:136.186667pt;}
.y84{bottom:138.266667pt;}
.y4b{bottom:142.106667pt;}
.y27{bottom:153.306667pt;}
.y61{bottom:155.706667pt;}
.ybe{bottom:156.026667pt;}
.yad{bottom:163.706667pt;}
.y83{bottom:165.946667pt;}
.y4a{bottom:169.786667pt;}
.y8f{bottom:171.706667pt;}
.ybd{bottom:177.146667pt;}
.y26{bottom:180.826667pt;}
.y8e{bottom:187.386667pt;}
.yac{bottom:191.386667pt;}
.y82{bottom:193.466667pt;}
.y49{bottom:197.306667pt;}
.y5f{bottom:198.106667pt;}
.ybc{bottom:198.266667pt;}
.y25{bottom:208.506667pt;}
.yab{bottom:218.906667pt;}
.ybb{bottom:219.386667pt;}
.y81{bottom:221.146667pt;}
.y48{bottom:224.986667pt;}
.y24{bottom:229.626667pt;}
.y5c{bottom:240.346667pt;}
.yba{bottom:240.666667pt;}
.yaa{bottom:246.586667pt;}
.y80{bottom:248.666667pt;}
.y23{bottom:250.746667pt;}
.y47{bottom:252.506667pt;}
.yb9{bottom:261.786667pt;}
.y22{bottom:271.866667pt;}
.y8d{bottom:272.026667pt;}
.ya9{bottom:274.106667pt;}
.y7f{bottom:276.346667pt;}
.y46{bottom:280.186667pt;}
.y5a{bottom:282.746667pt;}
.yb8{bottom:282.906667pt;}
.y21{bottom:293.146667pt;}
.ya8{bottom:301.826667pt;}
.y7e{bottom:303.906667pt;}
.yb7{bottom:304.066667pt;}
.y45{bottom:307.746667pt;}
.y20{bottom:314.306667pt;}
.yb6{bottom:325.346667pt;}
.y58{bottom:325.826667pt;}
.ya7{bottom:329.346667pt;}
.y7d{bottom:331.586667pt;}
.y1f{bottom:335.426667pt;}
.yb5{bottom:346.466667pt;}
.y1e{bottom:356.546667pt;}
.ya6{bottom:357.026667pt;}
.y7c{bottom:359.106667pt;}
.y57{bottom:360.226667pt;}
.y44{bottom:362.946667pt;}
.yb4{bottom:367.586667pt;}
.ya5{bottom:372.546667pt;}
.y1d{bottom:377.826667pt;}
.ydc{bottom:384.226667pt;}
.y7b{bottom:386.786667pt;}
.y56{bottom:387.906667pt;}
.yb3{bottom:388.706667pt;}
.y43{bottom:390.626667pt;}
.y1c{bottom:398.946667pt;}
.ya4{bottom:400.066667pt;}
.ydb{bottom:405.346667pt;}
.yb2{bottom:409.986667pt;}
.y7a{bottom:414.306667pt;}
.y55{bottom:415.426667pt;}
.y42{bottom:418.146667pt;}
.y1b{bottom:420.066667pt;}
.yda{bottom:426.466667pt;}
.ya3{bottom:427.746667pt;}
.yb1{bottom:431.106667pt;}
.y1a{bottom:441.186667pt;}
.y79{bottom:441.986667pt;}
.y54{bottom:443.106667pt;}
.y41{bottom:445.826667pt;}
.yd9{bottom:447.586667pt;}
.yb0{bottom:452.226667pt;}
.ya2{bottom:455.266667pt;}
.y19{bottom:462.466667pt;}
.yd8{bottom:468.706667pt;}
.y78{bottom:469.506667pt;}
.y53{bottom:470.626667pt;}
.y40{bottom:473.346667pt;}
.y18{bottom:483.586667pt;}
.yd7{bottom:489.986667pt;}
.y77{bottom:497.186667pt;}
.y52{bottom:498.306667pt;}
.y3f{bottom:501.026667pt;}
.y17{bottom:504.706667pt;}
.yd6{bottom:511.106667pt;}
.ya1{bottom:524.546667pt;}
.y76{bottom:524.706667pt;}
.y16{bottom:525.826667pt;}
.y51{bottom:526.146667pt;}
.y3e{bottom:528.546667pt;}
.yd5{bottom:532.226667pt;}
.y15{bottom:546.973333pt;}
.y8b{bottom:547.133333pt;}
.ya0{bottom:552.253333pt;}
.y75{bottom:552.413333pt;}
.yd4{bottom:553.373333pt;}
.y50{bottom:554.333333pt;}
.y3d{bottom:556.253333pt;}
.y8a{bottom:568.893333pt;}
.y14{bottom:574.653333pt;}
.y9f{bottom:579.773333pt;}
.y74{bottom:579.933333pt;}
.y4f{bottom:582.333333pt;}
.y3c{bottom:583.773333pt;}
.y9e{bottom:595.293333pt;}
.yd3{bottom:595.773333pt;}
.y13{bottom:602.173333pt;}
.y89{bottom:603.453333pt;}
.y73{bottom:607.613333pt;}
.y4e{bottom:610.493333pt;}
.y3b{bottom:611.453333pt;}
.yd2{bottom:616.893333pt;}
.y9d{bottom:622.973333pt;}
.y12{bottom:629.853333pt;}
.y88{bottom:630.973333pt;}
.y72{bottom:635.133333pt;}
.yd1{bottom:638.013333pt;}
.y4d{bottom:638.653333pt;}
.y3a{bottom:638.973333pt;}
.y9c{bottom:650.493333pt;}
.y11{bottom:657.373333pt;}
.y87{bottom:658.653333pt;}
.yd0{bottom:659.293333pt;}
.y71{bottom:662.813333pt;}
.y39{bottom:666.653333pt;}
.y9b{bottom:678.173333pt;}
.ycf{bottom:680.413333pt;}
.y86{bottom:682.653333pt;}
.y10{bottom:685.053333pt;}
.y70{bottom:690.333333pt;}
.y38{bottom:694.173333pt;}
.yce{bottom:701.533333pt;}
.y9a{bottom:706.333333pt;}
.yf{bottom:712.573333pt;}
.y6f{bottom:718.013333pt;}
.y37{bottom:721.853333pt;}
.ycd{bottom:722.653333pt;}
.ye{bottom:740.253333pt;}
.ycc{bottom:743.933333pt;}
.y6e{bottom:745.533333pt;}
.y99{bottom:747.453333pt;}
.y36{bottom:749.373333pt;}
.ycb{bottom:765.053333pt;}
.yd{bottom:767.773333pt;}
.y6d{bottom:773.213333pt;}
.y98{bottom:775.013333pt;}
.y35{bottom:777.093333pt;}
.yca{bottom:786.213333pt;}
.yc{bottom:795.493333pt;}
.y6c{bottom:800.773333pt;}
.y97{bottom:802.693333pt;}
.y34{bottom:804.613333pt;}
.yc9{bottom:807.333333pt;}
.y96{bottom:818.213333pt;}
.yb{bottom:823.013333pt;}
.y6b{bottom:828.453333pt;}
.yc8{bottom:828.613333pt;}
.y33{bottom:832.293333pt;}
.y95{bottom:845.733333pt;}
.yc7{bottom:849.733333pt;}
.ya{bottom:850.693333pt;}
.y6a{bottom:855.973333pt;}
.y32{bottom:859.813333pt;}
.yc6{bottom:870.853333pt;}
.y94{bottom:873.413333pt;}
.y9{bottom:878.213333pt;}
.y69{bottom:883.653333pt;}
.y31{bottom:887.493333pt;}
.yc5{bottom:891.973333pt;}
.y92{bottom:900.933333pt;}
.y8{bottom:905.893333pt;}
.y68{bottom:911.173333pt;}
.yc4{bottom:913.093333pt;}
.y30{bottom:915.013333pt;}
.y67{bottom:926.693333pt;}
.y7{bottom:927.013333pt;}
.y90{bottom:929.253333pt;}
.yc3{bottom:934.373333pt;}
.y2f{bottom:942.533333pt;}
.y6{bottom:948.133333pt;}
.yc2{bottom:955.493333pt;}
.y66{bottom:969.093333pt;}
.y5{bottom:969.413333pt;}
.y2e{bottom:970.213333pt;}
.yc1{bottom:976.613333pt;}
.y4{bottom:990.533333pt;}
.y65{bottom:990.853333pt;}
.y2d{bottom:997.733333pt;}
.y3{bottom:1011.680000pt;}
.y2c{bottom:1017.280000pt;}
.y2b{bottom:1038.560000pt;}
.y2a{bottom:1059.680000pt;}
.h8{height:21.120000pt;}
.hc{height:21.152000pt;}
.he{height:21.280000pt;}
.hd{height:21.312000pt;}
.hf{height:27.520000pt;}
.h10{height:27.680000pt;}
.hb{height:42.240000pt;}
.h9{height:42.272000pt;}
.ha{height:42.400000pt;}
.h3{height:45.156250pt;}
.h4{height:46.281250pt;}
.h6{height:51.937500pt;}
.h5{height:52.750000pt;}
.h7{height:53.937500pt;}
.h2{height:55.468750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:70.272000pt;}
.wa{width:74.560000pt;}
.we{width:82.560000pt;}
.w7{width:87.872000pt;}
.w8{width:124.800000pt;}
.w3{width:134.720000pt;}
.wd{width:153.946667pt;}
.wc{width:185.946667pt;}
.wb{width:193.786667pt;}
.w5{width:199.226667pt;}
.w6{width:258.906667pt;}
.w4{width:282.306667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:7.200000pt;}
.x14{left:88.832000pt;}
.x2{left:96.031988pt;}
.x24{left:103.871988pt;}
.x23{left:126.111988pt;}
.x9{left:136.346655pt;}
.x12{left:144.026655pt;}
.x10{left:159.226655pt;}
.xa{left:202.106655pt;}
.x13{left:213.146655pt;}
.x16{left:223.546667pt;}
.xb{left:227.226655pt;}
.xe{left:242.906655pt;}
.x1b{left:256.866655pt;}
.x20{left:282.626667pt;}
.xd{left:285.666655pt;}
.xf{left:293.346655pt;}
.x3{left:295.426655pt;}
.x1a{left:300.706655pt;}
.x11{left:308.386655pt;}
.xc{left:315.746655pt;}
.x18{left:324.866655pt;}
.x1c{left:347.586667pt;}
.x1{left:384.066655pt;}
.x8{left:396.866655pt;}
.x1d{left:435.453333pt;}
.x21{left:468.573333pt;}
.x7{left:484.893322pt;}
.x17{left:505.853333pt;}
.x6{left:512.413322pt;}
.x5{left:526.653322pt;}
.x4{left:550.173322pt;}
.x1e{left:560.253333pt;}
.x22{left:622.533333pt;}
.x19{left:623.653322pt;}
.x1f{left:630.533333pt;}
}




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