
    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_36eafc4ccef4b3c241c6ff2f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_f8e1538abaadd0d1ae09ff50.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_45a98b83399cb5c0dd09c7b0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.738770;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_d0f7d1eea43a84c532640c7b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_bd59cd829958248b95e5c8f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_1d9e57fb23fd864225e49573.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976562;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_46452e926aaba98a22464d34.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.976562;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_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.854004;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;}
.lsc{letter-spacing:-3.168000px;}
.lsa{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.792000px;}
.ls0{letter-spacing:0.864000px;}
.ls9{letter-spacing:9.360000px;}
.lse{letter-spacing:19.440000px;}
.ls7{letter-spacing:20.880000px;}
.ls8{letter-spacing:23.040000px;}
.ls6{letter-spacing:197.976000px;}
.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:-23.940000px;}
.ws5{word-spacing:-18.792000px;}
.ws8{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws6{word-spacing:-17.784000px;}
.ws9{word-spacing:-17.712000px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-14.832000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-7.948800px;}
._19{margin-left:-6.942240px;}
._4{margin-left:-4.841280px;}
._5{margin-left:-3.467520px;}
._0{margin-left:-1.457280px;}
._3{width:1.149120px;}
._6{width:2.238720px;}
._a{width:3.832320px;}
._f{width:5.107200px;}
._9{width:6.252000px;}
._7{width:7.464000px;}
._8{width:9.240000px;}
._d{width:10.577280px;}
._15{width:11.874720px;}
._10{width:12.936000px;}
._12{width:14.184000px;}
._e{width:16.139520px;}
._1a{width:19.632000px;}
._13{width:21.528000px;}
._1c{width:22.543200px;}
._14{width:23.630880px;}
._16{width:24.981600px;}
._18{width:28.793280px;}
._17{width:29.808000px;}
._1b{width:30.828000px;}
._2{width:32.175360px;}
._1e{width:40.204800px;}
._1d{width:46.008000px;}
._b{width:54.552000px;}
._c{width:61.416000px;}
._20{width:63.576000px;}
._1f{width:816.036000px;}
._11{width:2311.656000px;}
._21{width:2416.841280px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.860000px;}
.y4{bottom:26.820000px;}
.y3{bottom:47.520000px;}
.y2{bottom:66.420000px;}
.y1{bottom:85.536000px;}
.y72{bottom:107.676000px;}
.y32{bottom:117.936000px;}
.y8c{bottom:124.956000px;}
.y95{bottom:126.216000px;}
.y71{bottom:138.816000px;}
.y51{bottom:147.096000px;}
.yb2{bottom:147.456000px;}
.y31{bottom:153.930000px;}
.y8b{bottom:155.910000px;}
.y94{bottom:157.170000px;}
.y70{bottom:169.770000px;}
.y50{bottom:178.050000px;}
.yb1{bottom:178.590000px;}
.y30{bottom:186.510000px;}
.y8a{bottom:187.050000px;}
.y93{bottom:196.230000px;}
.y6f{bottom:200.910000px;}
.y2f{bottom:207.210000px;}
.y4f{bottom:209.190000px;}
.yb0{bottom:209.550000px;}
.y89{bottom:218.010000px;}
.y2e{bottom:227.910000px;}
.y6e{bottom:231.870000px;}
.y4e{bottom:240.150000px;}
.yaf{bottom:240.690000px;}
.y2d{bottom:248.610000px;}
.y88{bottom:249.150000px;}
.y6d{bottom:263.010000px;}
.y2c{bottom:269.310000px;}
.y4d{bottom:271.290000px;}
.yae{bottom:271.650000px;}
.y87{bottom:280.110000px;}
.y2b{bottom:290.010000px;}
.y6c{bottom:293.970000px;}
.y4c{bottom:302.250000px;}
.y2a{bottom:310.710000px;}
.y86{bottom:311.250000px;}
.yad{bottom:317.010000px;}
.y6b{bottom:325.110000px;}
.y29{bottom:331.410000px;}
.y4b{bottom:333.390000px;}
.y85{bottom:342.255000px;}
.y28{bottom:352.155000px;}
.y6a{bottom:356.115000px;}
.yac{bottom:362.955000px;}
.y4a{bottom:364.395000px;}
.y27{bottom:372.855000px;}
.y84{bottom:373.395000px;}
.y69{bottom:387.255000px;}
.y26{bottom:393.555000px;}
.yab{bottom:394.095000px;}
.y49{bottom:395.535000px;}
.y83{bottom:404.355000px;}
.y25{bottom:414.255000px;}
.y68{bottom:418.215000px;}
.yaa{bottom:425.055000px;}
.y48{bottom:426.495000px;}
.y24{bottom:434.955000px;}
.y82{bottom:435.495000px;}
.y67{bottom:449.355000px;}
.y23{bottom:455.655000px;}
.ya9{bottom:456.195000px;}
.y47{bottom:457.455000px;}
.y81{bottom:466.455000px;}
.y22{bottom:476.355000px;}
.y66{bottom:480.315000px;}
.ya8{bottom:487.155000px;}
.y46{bottom:488.595000px;}
.y21{bottom:497.055000px;}
.y80{bottom:497.595000px;}
.y65{bottom:511.455000px;}
.y20{bottom:517.755000px;}
.ya7{bottom:518.295000px;}
.y45{bottom:519.555000px;}
.y7f{bottom:528.555000px;}
.y1f{bottom:538.455000px;}
.y64{bottom:542.415000px;}
.y92{bottom:548.895000px;}
.ya6{bottom:549.255000px;}
.y44{bottom:550.695000px;}
.y1e{bottom:559.155000px;}
.y7e{bottom:559.695000px;}
.y63{bottom:573.555000px;}
.y1d{bottom:579.855000px;}
.ya5{bottom:580.395000px;}
.y43{bottom:581.655000px;}
.y7d{bottom:590.655000px;}
.y91{bottom:591.915000px;}
.yc6{bottom:592.455000px;}
.y1c{bottom:600.555000px;}
.y62{bottom:604.545000px;}
.ya4{bottom:611.385000px;}
.y42{bottom:612.825000px;}
.yc5{bottom:613.185000px;}
.y1b{bottom:621.285000px;}
.y7c{bottom:621.645000px;}
.y90{bottom:623.085000px;}
.yc4{bottom:633.885000px;}
.y61{bottom:635.685000px;}
.y1a{bottom:641.985000px;}
.ya3{bottom:642.345000px;}
.y41{bottom:643.785000px;}
.y7b{bottom:652.785000px;}
.yc3{bottom:654.585000px;}
.y19{bottom:662.685000px;}
.y60{bottom:666.645000px;}
.ya2{bottom:673.485000px;}
.y40{bottom:674.925000px;}
.yc2{bottom:675.285000px;}
.y18{bottom:683.385000px;}
.y7a{bottom:683.745000px;}
.yc1{bottom:695.985000px;}
.y5f{bottom:697.785000px;}
.y17{bottom:704.085000px;}
.ya1{bottom:704.445000px;}
.y3f{bottom:705.885000px;}
.y79{bottom:714.885000px;}
.yc0{bottom:716.685000px;}
.y16{bottom:724.785000px;}
.y5e{bottom:728.745000px;}
.ya0{bottom:735.585000px;}
.y3e{bottom:737.025000px;}
.ybf{bottom:737.385000px;}
.y15{bottom:745.485000px;}
.y78{bottom:745.845000px;}
.ybe{bottom:758.085000px;}
.y5d{bottom:759.705000px;}
.y14{bottom:766.185000px;}
.y9f{bottom:766.545000px;}
.y3d{bottom:767.985000px;}
.y77{bottom:776.985000px;}
.ybd{bottom:778.785000px;}
.y13{bottom:786.885000px;}
.y5c{bottom:790.845000px;}
.y9e{bottom:797.685000px;}
.y3c{bottom:799.125000px;}
.ybc{bottom:799.485000px;}
.y12{bottom:807.585000px;}
.y76{bottom:807.945000px;}
.ybb{bottom:820.185000px;}
.y5b{bottom:821.805000px;}
.y11{bottom:828.285000px;}
.y9d{bottom:828.645000px;}
.y3b{bottom:830.085000px;}
.y75{bottom:839.085000px;}
.yba{bottom:840.885000px;}
.y5a{bottom:852.945000px;}
.y9c{bottom:859.785000px;}
.y10{bottom:861.045000px;}
.y3a{bottom:861.225000px;}
.yb9{bottom:861.585000px;}
.y74{bottom:870.045000px;}
.yf{bottom:881.790000px;}
.yb8{bottom:882.330000px;}
.y9b{bottom:890.790000px;}
.y39{bottom:892.230000px;}
.y59{bottom:898.350000px;}
.y73{bottom:901.230000px;}
.ye{bottom:902.490000px;}
.yb7{bottom:903.030000px;}
.y9a{bottom:921.930000px;}
.yd{bottom:923.190000px;}
.y38{bottom:923.370000px;}
.yb6{bottom:923.730000px;}
.y58{bottom:932.190000px;}
.yc{bottom:943.890000px;}
.yb5{bottom:944.430000px;}
.y99{bottom:952.890000px;}
.y37{bottom:954.330000px;}
.y57{bottom:963.330000px;}
.yb4{bottom:965.130000px;}
.yb{bottom:965.850000px;}
.y98{bottom:984.030000px;}
.y36{bottom:985.470000px;}
.ya{bottom:993.390000px;}
.y56{bottom:994.290000px;}
.yb3{bottom:1010.490000px;}
.y35{bottom:1016.430000px;}
.y97{bottom:1017.330000px;}
.y9{bottom:1021.110000px;}
.y55{bottom:1025.430000px;}
.y8f{bottom:1035.690000px;}
.y34{bottom:1047.570000px;}
.y8{bottom:1052.790000px;}
.y96{bottom:1053.510000px;}
.y54{bottom:1056.390000px;}
.y8e{bottom:1077.090000px;}
.y33{bottom:1078.530000px;}
.y7{bottom:1084.830000px;}
.y53{bottom:1087.530000px;}
.y8d{bottom:1097.790000px;}
.y6{bottom:1115.610000px;}
.y52{bottom:1118.490000px;}
.h9{height:54.773438px;}
.h4{height:57.051211px;}
.h2{height:59.383125px;}
.h3{height:60.855469px;}
.h7{height:63.949219px;}
.h8{height:64.546875px;}
.h6{height:64.853086px;}
.ha{height:74.820586px;}
.h5{height:85.052461px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:127.655987px;}
.x9{left:129.635987px;}
.x3{left:132.695987px;}
.x6{left:135.935987px;}
.xc{left:142.775987px;}
.x4{left:150.689987px;}
.x8{left:158.969987px;}
.xa{left:180.749987px;}
.x5{left:209.369987px;}
.xb{left:297.794987px;}
.xd{left:359.894987px;}
.x7{left:467.924987px;}
.xf{left:651.164987px;}
.xe{left:667.049987px;}
.x2{left:808.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-2.816000pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.704000pt;}
.ls0{letter-spacing:0.768000pt;}
.ls9{letter-spacing:8.320000pt;}
.lse{letter-spacing:17.280000pt;}
.ls7{letter-spacing:18.560000pt;}
.ls8{letter-spacing:20.480000pt;}
.ls6{letter-spacing:175.978667pt;}
.ws1{word-spacing:-21.280000pt;}
.ws5{word-spacing:-16.704000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws6{word-spacing:-15.808000pt;}
.ws9{word-spacing:-15.744000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.184000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-7.065600pt;}
._19{margin-left:-6.170880pt;}
._4{margin-left:-4.303360pt;}
._5{margin-left:-3.082240pt;}
._0{margin-left:-1.295360pt;}
._3{width:1.021440pt;}
._6{width:1.989973pt;}
._a{width:3.406507pt;}
._f{width:4.539733pt;}
._9{width:5.557333pt;}
._7{width:6.634667pt;}
._8{width:8.213333pt;}
._d{width:9.402027pt;}
._15{width:10.555307pt;}
._10{width:11.498667pt;}
._12{width:12.608000pt;}
._e{width:14.346240pt;}
._1a{width:17.450667pt;}
._13{width:19.136000pt;}
._1c{width:20.038400pt;}
._14{width:21.005227pt;}
._16{width:22.205867pt;}
._18{width:25.594027pt;}
._17{width:26.496000pt;}
._1b{width:27.402667pt;}
._2{width:28.600320pt;}
._1e{width:35.737600pt;}
._1d{width:40.896000pt;}
._b{width:48.490667pt;}
._c{width:54.592000pt;}
._20{width:56.512000pt;}
._1f{width:725.365333pt;}
._11{width:2054.805333pt;}
._21{width:2148.303360pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.320000pt;}
.y4{bottom:23.840000pt;}
.y3{bottom:42.240000pt;}
.y2{bottom:59.040000pt;}
.y1{bottom:76.032000pt;}
.y72{bottom:95.712000pt;}
.y32{bottom:104.832000pt;}
.y8c{bottom:111.072000pt;}
.y95{bottom:112.192000pt;}
.y71{bottom:123.392000pt;}
.y51{bottom:130.752000pt;}
.yb2{bottom:131.072000pt;}
.y31{bottom:136.826667pt;}
.y8b{bottom:138.586667pt;}
.y94{bottom:139.706667pt;}
.y70{bottom:150.906667pt;}
.y50{bottom:158.266667pt;}
.yb1{bottom:158.746667pt;}
.y30{bottom:165.786667pt;}
.y8a{bottom:166.266667pt;}
.y93{bottom:174.426667pt;}
.y6f{bottom:178.586667pt;}
.y2f{bottom:184.186667pt;}
.y4f{bottom:185.946667pt;}
.yb0{bottom:186.266667pt;}
.y89{bottom:193.786667pt;}
.y2e{bottom:202.586667pt;}
.y6e{bottom:206.106667pt;}
.y4e{bottom:213.466667pt;}
.yaf{bottom:213.946667pt;}
.y2d{bottom:220.986667pt;}
.y88{bottom:221.466667pt;}
.y6d{bottom:233.786667pt;}
.y2c{bottom:239.386667pt;}
.y4d{bottom:241.146667pt;}
.yae{bottom:241.466667pt;}
.y87{bottom:248.986667pt;}
.y2b{bottom:257.786667pt;}
.y6c{bottom:261.306667pt;}
.y4c{bottom:268.666667pt;}
.y2a{bottom:276.186667pt;}
.y86{bottom:276.666667pt;}
.yad{bottom:281.786667pt;}
.y6b{bottom:288.986667pt;}
.y29{bottom:294.586667pt;}
.y4b{bottom:296.346667pt;}
.y85{bottom:304.226667pt;}
.y28{bottom:313.026667pt;}
.y6a{bottom:316.546667pt;}
.yac{bottom:322.626667pt;}
.y4a{bottom:323.906667pt;}
.y27{bottom:331.426667pt;}
.y84{bottom:331.906667pt;}
.y69{bottom:344.226667pt;}
.y26{bottom:349.826667pt;}
.yab{bottom:350.306667pt;}
.y49{bottom:351.586667pt;}
.y83{bottom:359.426667pt;}
.y25{bottom:368.226667pt;}
.y68{bottom:371.746667pt;}
.yaa{bottom:377.826667pt;}
.y48{bottom:379.106667pt;}
.y24{bottom:386.626667pt;}
.y82{bottom:387.106667pt;}
.y67{bottom:399.426667pt;}
.y23{bottom:405.026667pt;}
.ya9{bottom:405.506667pt;}
.y47{bottom:406.626667pt;}
.y81{bottom:414.626667pt;}
.y22{bottom:423.426667pt;}
.y66{bottom:426.946667pt;}
.ya8{bottom:433.026667pt;}
.y46{bottom:434.306667pt;}
.y21{bottom:441.826667pt;}
.y80{bottom:442.306667pt;}
.y65{bottom:454.626667pt;}
.y20{bottom:460.226667pt;}
.ya7{bottom:460.706667pt;}
.y45{bottom:461.826667pt;}
.y7f{bottom:469.826667pt;}
.y1f{bottom:478.626667pt;}
.y64{bottom:482.146667pt;}
.y92{bottom:487.906667pt;}
.ya6{bottom:488.226667pt;}
.y44{bottom:489.506667pt;}
.y1e{bottom:497.026667pt;}
.y7e{bottom:497.506667pt;}
.y63{bottom:509.826667pt;}
.y1d{bottom:515.426667pt;}
.ya5{bottom:515.906667pt;}
.y43{bottom:517.026667pt;}
.y7d{bottom:525.026667pt;}
.y91{bottom:526.146667pt;}
.yc6{bottom:526.626667pt;}
.y1c{bottom:533.826667pt;}
.y62{bottom:537.373333pt;}
.ya4{bottom:543.453333pt;}
.y42{bottom:544.733333pt;}
.yc5{bottom:545.053333pt;}
.y1b{bottom:552.253333pt;}
.y7c{bottom:552.573333pt;}
.y90{bottom:553.853333pt;}
.yc4{bottom:563.453333pt;}
.y61{bottom:565.053333pt;}
.y1a{bottom:570.653333pt;}
.ya3{bottom:570.973333pt;}
.y41{bottom:572.253333pt;}
.y7b{bottom:580.253333pt;}
.yc3{bottom:581.853333pt;}
.y19{bottom:589.053333pt;}
.y60{bottom:592.573333pt;}
.ya2{bottom:598.653333pt;}
.y40{bottom:599.933333pt;}
.yc2{bottom:600.253333pt;}
.y18{bottom:607.453333pt;}
.y7a{bottom:607.773333pt;}
.yc1{bottom:618.653333pt;}
.y5f{bottom:620.253333pt;}
.y17{bottom:625.853333pt;}
.ya1{bottom:626.173333pt;}
.y3f{bottom:627.453333pt;}
.y79{bottom:635.453333pt;}
.yc0{bottom:637.053333pt;}
.y16{bottom:644.253333pt;}
.y5e{bottom:647.773333pt;}
.ya0{bottom:653.853333pt;}
.y3e{bottom:655.133333pt;}
.ybf{bottom:655.453333pt;}
.y15{bottom:662.653333pt;}
.y78{bottom:662.973333pt;}
.ybe{bottom:673.853333pt;}
.y5d{bottom:675.293333pt;}
.y14{bottom:681.053333pt;}
.y9f{bottom:681.373333pt;}
.y3d{bottom:682.653333pt;}
.y77{bottom:690.653333pt;}
.ybd{bottom:692.253333pt;}
.y13{bottom:699.453333pt;}
.y5c{bottom:702.973333pt;}
.y9e{bottom:709.053333pt;}
.y3c{bottom:710.333333pt;}
.ybc{bottom:710.653333pt;}
.y12{bottom:717.853333pt;}
.y76{bottom:718.173333pt;}
.ybb{bottom:729.053333pt;}
.y5b{bottom:730.493333pt;}
.y11{bottom:736.253333pt;}
.y9d{bottom:736.573333pt;}
.y3b{bottom:737.853333pt;}
.y75{bottom:745.853333pt;}
.yba{bottom:747.453333pt;}
.y5a{bottom:758.173333pt;}
.y9c{bottom:764.253333pt;}
.y10{bottom:765.373333pt;}
.y3a{bottom:765.533333pt;}
.yb9{bottom:765.853333pt;}
.y74{bottom:773.373333pt;}
.yf{bottom:783.813333pt;}
.yb8{bottom:784.293333pt;}
.y9b{bottom:791.813333pt;}
.y39{bottom:793.093333pt;}
.y59{bottom:798.533333pt;}
.y73{bottom:801.093333pt;}
.ye{bottom:802.213333pt;}
.yb7{bottom:802.693333pt;}
.y9a{bottom:819.493333pt;}
.yd{bottom:820.613333pt;}
.y38{bottom:820.773333pt;}
.yb6{bottom:821.093333pt;}
.y58{bottom:828.613333pt;}
.yc{bottom:839.013333pt;}
.yb5{bottom:839.493333pt;}
.y99{bottom:847.013333pt;}
.y37{bottom:848.293333pt;}
.y57{bottom:856.293333pt;}
.yb4{bottom:857.893333pt;}
.yb{bottom:858.533333pt;}
.y98{bottom:874.693333pt;}
.y36{bottom:875.973333pt;}
.ya{bottom:883.013333pt;}
.y56{bottom:883.813333pt;}
.yb3{bottom:898.213333pt;}
.y35{bottom:903.493333pt;}
.y97{bottom:904.293333pt;}
.y9{bottom:907.653333pt;}
.y55{bottom:911.493333pt;}
.y8f{bottom:920.613333pt;}
.y34{bottom:931.173333pt;}
.y8{bottom:935.813333pt;}
.y96{bottom:936.453333pt;}
.y54{bottom:939.013333pt;}
.y8e{bottom:957.413333pt;}
.y33{bottom:958.693333pt;}
.y7{bottom:964.293333pt;}
.y53{bottom:966.693333pt;}
.y8d{bottom:975.813333pt;}
.y6{bottom:991.653333pt;}
.y52{bottom:994.213333pt;}
.h9{height:48.687500pt;}
.h4{height:50.712187pt;}
.h2{height:52.785000pt;}
.h3{height:54.093750pt;}
.h7{height:56.843750pt;}
.h8{height:57.375000pt;}
.h6{height:57.647187pt;}
.ha{height:66.507188pt;}
.h5{height:75.602187pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:113.471988pt;}
.x9{left:115.231988pt;}
.x3{left:117.951988pt;}
.x6{left:120.831988pt;}
.xc{left:126.911988pt;}
.x4{left:133.946655pt;}
.x8{left:141.306655pt;}
.xa{left:160.666655pt;}
.x5{left:186.106655pt;}
.xb{left:264.706655pt;}
.xd{left:319.906655pt;}
.x7{left:415.933322pt;}
.xf{left:578.813322pt;}
.xe{left:592.933322pt;}
.x2{left:718.373322pt;}
}




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