
    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_3aa796becf55f6defe1076c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_95bb1988bdd0af7e6cccdc6d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6fd0854bcb4421a1995363f0.woff')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_beddea39a1cb46b76d67cca5.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_41011a803c76220685280813.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_19bd2cc57a0471054ab65df4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_997489179dfdf066abcd9fbf.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_99bfbcbc3b1ade90b85bb177.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;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_3e4adc72be3f8ba46dd5ac18.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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:-82.800000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsd{letter-spacing:-0.360000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.028080px;}
.ls4{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.172080px;}
.ls7{letter-spacing:0.350400px;}
.ls3{letter-spacing:0.360000px;}
.ls6{letter-spacing:7.920000px;}
.ls1{letter-spacing:8.640000px;}
.ls9{letter-spacing:10.620000px;}
.lsb{letter-spacing:11.340000px;}
.ls5{letter-spacing:14.940000px;}
.lsc{letter-spacing:33.984000px;}
.ls0{letter-spacing:43.200000px;}
.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:-21.420000px;}
.ws5{word-spacing:-21.410400px;}
.ws4{word-spacing:-21.060000px;}
.ws6{word-spacing:-20.700000px;}
.ws2{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-1.432080px;}
._1{width:1.072080px;}
._c{width:2.952000px;}
._15{width:4.116960px;}
._f{width:5.559840px;}
._14{width:6.762240px;}
._7{width:7.896000px;}
._6{width:9.072000px;}
._8{width:10.375920px;}
._10{width:11.465040px;}
._4{width:12.528000px;}
._5{width:13.615920px;}
._9{width:14.656080px;}
._b{width:15.824160px;}
._a{width:16.896000px;}
._16{width:17.961120px;}
._1e{width:19.364880px;}
._1d{width:22.070880px;}
._1c{width:23.334480px;}
._1f{width:24.644160px;}
._13{width:26.535600px;}
._12{width:27.546480px;}
._19{width:29.399760px;}
._1b{width:30.410640px;}
._1a{width:32.601120px;}
._21{width:34.191120px;}
._18{width:35.380800px;}
._3{width:38.016000px;}
._d{width:39.508560px;}
._e{width:41.047920px;}
._11{width:42.456960px;}
._25{width:44.394000px;}
._2b{width:45.574320px;}
._17{width:46.837440px;}
._27{width:48.522240px;}
._28{width:49.556160px;}
._2f{width:50.904000px;}
._2c{width:57.114720px;}
._2{width:58.584000px;}
._22{width:59.988720px;}
._26{width:61.448160px;}
._20{width:62.927280px;}
._2d{width:63.938160px;}
._2e{width:65.201760px;}
._29{width:71.772480px;}
._24{width:72.951840px;}
._23{width:74.215440px;}
._2a{width:78.511680px;}
.fc4{color:rgb(24,21,18);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:7.020000px;}
.y4e{bottom:7.200000px;}
.y4{bottom:12.240000px;}
.y3{bottom:23.976000px;}
.y4b{bottom:30.780000px;}
.y2{bottom:31.176000px;}
.y4a{bottom:54.540000px;}
.y54{bottom:86.976000px;}
.y2e{bottom:90.756000px;}
.y7a{bottom:91.656000px;}
.y9f{bottom:99.036000px;}
.yab{bottom:101.016000px;}
.y7b{bottom:101.916000px;}
.y53{bottom:111.456000px;}
.y2d{bottom:118.476000px;}
.y79{bottom:119.376000px;}
.y9e{bottom:126.936000px;}
.yaa{bottom:128.916000px;}
.y52{bottom:135.936000px;}
.y2c{bottom:146.196000px;}
.y78{bottom:147.096000px;}
.y9d{bottom:154.650000px;}
.ya9{bottom:156.630000px;}
.y51{bottom:160.590000px;}
.y2b{bottom:174.090000px;}
.y77{bottom:174.810000px;}
.y9c{bottom:182.370000px;}
.ya8{bottom:184.350000px;}
.y50{bottom:185.070000px;}
.y2a{bottom:201.810000px;}
.y76{bottom:202.710000px;}
.y4f{bottom:209.730000px;}
.y9b{bottom:210.090000px;}
.ya7{bottom:212.070000px;}
.y29{bottom:229.530000px;}
.y75{bottom:230.430000px;}
.y9a{bottom:237.990000px;}
.ya6{bottom:239.970000px;}
.yb4{bottom:245.910000px;}
.y28{bottom:257.250000px;}
.y4d{bottom:257.970000px;}
.y74{bottom:258.150000px;}
.y99{bottom:265.710000px;}
.ya5{bottom:267.690000px;}
.yb3{bottom:272.550000px;}
.y49{bottom:282.675000px;}
.y27{bottom:285.195000px;}
.y73{bottom:286.095000px;}
.y98{bottom:293.475000px;}
.ya4{bottom:295.455000px;}
.yb2{bottom:296.355000px;}
.y26{bottom:312.915000px;}
.y72{bottom:313.815000px;}
.yb1{bottom:320.115000px;}
.y97{bottom:321.195000px;}
.ya3{bottom:323.175000px;}
.y25{bottom:340.635000px;}
.y71{bottom:341.535000px;}
.yb0{bottom:344.055000px;}
.y96{bottom:349.095000px;}
.ya2{bottom:351.075000px;}
.y48{bottom:361.875000px;}
.yaf{bottom:367.815000px;}
.y24{bottom:368.535000px;}
.y70{bottom:369.255000px;}
.y95{bottom:376.815000px;}
.ya1{bottom:378.795000px;}
.y47{bottom:385.635000px;}
.yae{bottom:391.575000px;}
.y23{bottom:396.255000px;}
.y6f{bottom:397.155000px;}
.y94{bottom:404.535000px;}
.ya0{bottom:406.515000px;}
.y46{bottom:409.395000px;}
.yad{bottom:415.335000px;}
.y22{bottom:423.975000px;}
.y6e{bottom:424.875000px;}
.y93{bottom:432.435000px;}
.y45{bottom:434.415000px;}
.yac{bottom:438.555000px;}
.y21{bottom:451.695000px;}
.y6d{bottom:452.595000px;}
.y92{bottom:460.155000px;}
.y44{bottom:462.135000px;}
.y20{bottom:479.595000px;}
.y6c{bottom:480.315000px;}
.y91{bottom:487.875000px;}
.y43{bottom:489.855000px;}
.y1f{bottom:507.315000px;}
.y6b{bottom:508.215000px;}
.y90{bottom:515.595000px;}
.y42{bottom:517.575000px;}
.y1e{bottom:530.895000px;}
.y6a{bottom:535.935000px;}
.y8f{bottom:543.495000px;}
.y41{bottom:545.475000px;}
.y1d{bottom:551.595000px;}
.y69{bottom:563.655000px;}
.y8e{bottom:571.245000px;}
.y1c{bottom:572.325000px;}
.y40{bottom:573.225000px;}
.y68{bottom:591.585000px;}
.y1b{bottom:593.025000px;}
.y8d{bottom:598.965000px;}
.y3f{bottom:600.945000px;}
.y1a{bottom:613.725000px;}
.y67{bottom:619.305000px;}
.y8c{bottom:626.865000px;}
.y3e{bottom:628.845000px;}
.y19{bottom:634.425000px;}
.y66{bottom:647.025000px;}
.y8b{bottom:654.585000px;}
.y18{bottom:655.125000px;}
.y3d{bottom:656.565000px;}
.y65{bottom:674.745000px;}
.y17{bottom:675.825000px;}
.y8a{bottom:682.305000px;}
.y3c{bottom:684.285000px;}
.y16{bottom:696.525000px;}
.y64{bottom:702.645000px;}
.y89{bottom:710.025000px;}
.y3b{bottom:712.005000px;}
.y15{bottom:717.225000px;}
.y63{bottom:730.365000px;}
.y14{bottom:737.925000px;}
.y3a{bottom:739.905000px;}
.y62{bottom:758.085000px;}
.y13{bottom:758.625000px;}
.y88{bottom:765.645000px;}
.y39{bottom:767.625000px;}
.y12{bottom:779.325000px;}
.y61{bottom:785.985000px;}
.y87{bottom:793.365000px;}
.y38{bottom:795.345000px;}
.y11{bottom:800.025000px;}
.y60{bottom:810.825000px;}
.y10{bottom:820.725000px;}
.y86{bottom:821.085000px;}
.y37{bottom:823.065000px;}
.y5f{bottom:830.445000px;}
.yf{bottom:841.425000px;}
.y85{bottom:849.030000px;}
.y36{bottom:851.010000px;}
.y5e{bottom:854.250000px;}
.ye{bottom:862.170000px;}
.y5d{bottom:871.710000px;}
.y84{bottom:876.750000px;}
.y35{bottom:878.730000px;}
.y5c{bottom:896.370000px;}
.yd{bottom:903.570000px;}
.y83{bottom:904.470000px;}
.y34{bottom:906.450000px;}
.y5b{bottom:920.850000px;}
.yc{bottom:924.270000px;}
.y82{bottom:932.370000px;}
.y33{bottom:934.350000px;}
.yb{bottom:944.970000px;}
.y5a{bottom:945.510000px;}
.y81{bottom:960.090000px;}
.y32{bottom:962.070000px;}
.ya{bottom:965.670000px;}
.y59{bottom:969.990000px;}
.y80{bottom:984.930000px;}
.y9{bottom:986.370000px;}
.y31{bottom:989.790000px;}
.y58{bottom:994.470000px;}
.y7f{bottom:1004.550000px;}
.y8{bottom:1007.070000px;}
.y30{bottom:1017.510000px;}
.y57{bottom:1019.130000px;}
.y7{bottom:1027.770000px;}
.y7e{bottom:1028.490000px;}
.y56{bottom:1043.610000px;}
.y2f{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.y7d{bottom:1052.250000px;}
.y55{bottom:1068.270000px;}
.y5{bottom:1073.130000px;}
.y7c{bottom:1076.010000px;}
.y1{bottom:1190.160000px;}
.hf{height:23.760000px;}
.h10{height:23.940000px;}
.hd{height:23.976000px;}
.h3{height:31.860000px;}
.he{height:47.520000px;}
.hb{height:50.273438px;}
.h11{height:52.998047px;}
.h9{height:58.819922px;}
.h5{height:59.436914px;}
.h12{height:66.757500px;}
.h7{height:70.628906px;}
.h8{height:70.664062px;}
.ha{height:71.280000px;}
.h6{height:72.562500px;}
.h13{height:74.004654px;}
.hc{height:74.704922px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w5{width:97.920000px;}
.w6{width:135.576000px;}
.w4{width:206.490000px;}
.w7{width:249.870000px;}
.w8{width:484.995000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:7.740000px;}
.x16{left:9.000000px;}
.x15{left:16.020000px;}
.x12{left:20.520000px;}
.x1f{left:22.140000px;}
.x3{left:27.360000px;}
.x1c{left:30.960000px;}
.x13{left:33.840000px;}
.x18{left:43.560000px;}
.x1d{left:47.520000px;}
.x19{left:52.920000px;}
.x10{left:69.114000px;}
.x1{left:84.959987px;}
.x25{left:90.035987px;}
.xf{left:100.476000px;}
.x22{left:106.235987px;}
.xd{left:107.315987px;}
.x1b{left:109.260000px;}
.x26{left:117.035987px;}
.x4{left:124.055987px;}
.x20{left:127.475987px;}
.xb{left:138.095987px;}
.x1e{left:242.490000px;}
.x8{left:255.089987px;}
.xa{left:287.534987px;}
.x11{left:307.695000px;}
.x5{left:349.094987px;}
.x24{left:368.174987px;}
.x7{left:381.854987px;}
.x9{left:397.514987px;}
.x14{left:406.335000px;}
.x2{left:409.035000px;}
.xe{left:416.414987px;}
.x6{left:446.474987px;}
.x23{left:472.964987px;}
.x17{left:542.625000px;}
.xc{left:748.949987px;}
.x21{left:787.829987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.024960pt;}
.ls4{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.152960pt;}
.ls7{letter-spacing:0.311467pt;}
.ls3{letter-spacing:0.320000pt;}
.ls6{letter-spacing:7.040000pt;}
.ls1{letter-spacing:7.680000pt;}
.ls9{letter-spacing:9.440000pt;}
.lsb{letter-spacing:10.080000pt;}
.ls5{letter-spacing:13.280000pt;}
.lsc{letter-spacing:30.208000pt;}
.ls0{letter-spacing:38.400000pt;}
.ws0{word-spacing:-19.040000pt;}
.ws5{word-spacing:-19.031467pt;}
.ws4{word-spacing:-18.720000pt;}
.ws6{word-spacing:-18.400000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-1.272960pt;}
._1{width:0.952960pt;}
._c{width:2.624000pt;}
._15{width:3.659520pt;}
._f{width:4.942080pt;}
._14{width:6.010880pt;}
._7{width:7.018667pt;}
._6{width:8.064000pt;}
._8{width:9.223040pt;}
._10{width:10.191147pt;}
._4{width:11.136000pt;}
._5{width:12.103040pt;}
._9{width:13.027627pt;}
._b{width:14.065920pt;}
._a{width:15.018667pt;}
._16{width:15.965440pt;}
._1e{width:17.213227pt;}
._1d{width:19.618560pt;}
._1c{width:20.741760pt;}
._1f{width:21.905920pt;}
._13{width:23.587200pt;}
._12{width:24.485760pt;}
._19{width:26.133120pt;}
._1b{width:27.031680pt;}
._1a{width:28.978773pt;}
._21{width:30.392107pt;}
._18{width:31.449600pt;}
._3{width:33.792000pt;}
._d{width:35.118720pt;}
._e{width:36.487040pt;}
._11{width:37.739520pt;}
._25{width:39.461333pt;}
._2b{width:40.510507pt;}
._17{width:41.633280pt;}
._27{width:43.130880pt;}
._28{width:44.049920pt;}
._2f{width:45.248000pt;}
._2c{width:50.768640pt;}
._2{width:52.074667pt;}
._22{width:53.323307pt;}
._26{width:54.620587pt;}
._20{width:55.935360pt;}
._2d{width:56.833920pt;}
._2e{width:57.957120pt;}
._29{width:63.797760pt;}
._24{width:64.846080pt;}
._23{width:65.969280pt;}
._2a{width:69.788160pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:6.240000pt;}
.y4e{bottom:6.400000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:21.312000pt;}
.y4b{bottom:27.360000pt;}
.y2{bottom:27.712000pt;}
.y4a{bottom:48.480000pt;}
.y54{bottom:77.312000pt;}
.y2e{bottom:80.672000pt;}
.y7a{bottom:81.472000pt;}
.y9f{bottom:88.032000pt;}
.yab{bottom:89.792000pt;}
.y7b{bottom:90.592000pt;}
.y53{bottom:99.072000pt;}
.y2d{bottom:105.312000pt;}
.y79{bottom:106.112000pt;}
.y9e{bottom:112.832000pt;}
.yaa{bottom:114.592000pt;}
.y52{bottom:120.832000pt;}
.y2c{bottom:129.952000pt;}
.y78{bottom:130.752000pt;}
.y9d{bottom:137.466667pt;}
.ya9{bottom:139.226667pt;}
.y51{bottom:142.746667pt;}
.y2b{bottom:154.746667pt;}
.y77{bottom:155.386667pt;}
.y9c{bottom:162.106667pt;}
.ya8{bottom:163.866667pt;}
.y50{bottom:164.506667pt;}
.y2a{bottom:179.386667pt;}
.y76{bottom:180.186667pt;}
.y4f{bottom:186.426667pt;}
.y9b{bottom:186.746667pt;}
.ya7{bottom:188.506667pt;}
.y29{bottom:204.026667pt;}
.y75{bottom:204.826667pt;}
.y9a{bottom:211.546667pt;}
.ya6{bottom:213.306667pt;}
.yb4{bottom:218.586667pt;}
.y28{bottom:228.666667pt;}
.y4d{bottom:229.306667pt;}
.y74{bottom:229.466667pt;}
.y99{bottom:236.186667pt;}
.ya5{bottom:237.946667pt;}
.yb3{bottom:242.266667pt;}
.y49{bottom:251.266667pt;}
.y27{bottom:253.506667pt;}
.y73{bottom:254.306667pt;}
.y98{bottom:260.866667pt;}
.ya4{bottom:262.626667pt;}
.yb2{bottom:263.426667pt;}
.y26{bottom:278.146667pt;}
.y72{bottom:278.946667pt;}
.yb1{bottom:284.546667pt;}
.y97{bottom:285.506667pt;}
.ya3{bottom:287.266667pt;}
.y25{bottom:302.786667pt;}
.y71{bottom:303.586667pt;}
.yb0{bottom:305.826667pt;}
.y96{bottom:310.306667pt;}
.ya2{bottom:312.066667pt;}
.y48{bottom:321.666667pt;}
.yaf{bottom:326.946667pt;}
.y24{bottom:327.586667pt;}
.y70{bottom:328.226667pt;}
.y95{bottom:334.946667pt;}
.ya1{bottom:336.706667pt;}
.y47{bottom:342.786667pt;}
.yae{bottom:348.066667pt;}
.y23{bottom:352.226667pt;}
.y6f{bottom:353.026667pt;}
.y94{bottom:359.586667pt;}
.ya0{bottom:361.346667pt;}
.y46{bottom:363.906667pt;}
.yad{bottom:369.186667pt;}
.y22{bottom:376.866667pt;}
.y6e{bottom:377.666667pt;}
.y93{bottom:384.386667pt;}
.y45{bottom:386.146667pt;}
.yac{bottom:389.826667pt;}
.y21{bottom:401.506667pt;}
.y6d{bottom:402.306667pt;}
.y92{bottom:409.026667pt;}
.y44{bottom:410.786667pt;}
.y20{bottom:426.306667pt;}
.y6c{bottom:426.946667pt;}
.y91{bottom:433.666667pt;}
.y43{bottom:435.426667pt;}
.y1f{bottom:450.946667pt;}
.y6b{bottom:451.746667pt;}
.y90{bottom:458.306667pt;}
.y42{bottom:460.066667pt;}
.y1e{bottom:471.906667pt;}
.y6a{bottom:476.386667pt;}
.y8f{bottom:483.106667pt;}
.y41{bottom:484.866667pt;}
.y1d{bottom:490.306667pt;}
.y69{bottom:501.026667pt;}
.y8e{bottom:507.773333pt;}
.y1c{bottom:508.733333pt;}
.y40{bottom:509.533333pt;}
.y68{bottom:525.853333pt;}
.y1b{bottom:527.133333pt;}
.y8d{bottom:532.413333pt;}
.y3f{bottom:534.173333pt;}
.y1a{bottom:545.533333pt;}
.y67{bottom:550.493333pt;}
.y8c{bottom:557.213333pt;}
.y3e{bottom:558.973333pt;}
.y19{bottom:563.933333pt;}
.y66{bottom:575.133333pt;}
.y8b{bottom:581.853333pt;}
.y18{bottom:582.333333pt;}
.y3d{bottom:583.613333pt;}
.y65{bottom:599.773333pt;}
.y17{bottom:600.733333pt;}
.y8a{bottom:606.493333pt;}
.y3c{bottom:608.253333pt;}
.y16{bottom:619.133333pt;}
.y64{bottom:624.573333pt;}
.y89{bottom:631.133333pt;}
.y3b{bottom:632.893333pt;}
.y15{bottom:637.533333pt;}
.y63{bottom:649.213333pt;}
.y14{bottom:655.933333pt;}
.y3a{bottom:657.693333pt;}
.y62{bottom:673.853333pt;}
.y13{bottom:674.333333pt;}
.y88{bottom:680.573333pt;}
.y39{bottom:682.333333pt;}
.y12{bottom:692.733333pt;}
.y61{bottom:698.653333pt;}
.y87{bottom:705.213333pt;}
.y38{bottom:706.973333pt;}
.y11{bottom:711.133333pt;}
.y60{bottom:720.733333pt;}
.y10{bottom:729.533333pt;}
.y86{bottom:729.853333pt;}
.y37{bottom:731.613333pt;}
.y5f{bottom:738.173333pt;}
.yf{bottom:747.933333pt;}
.y85{bottom:754.693333pt;}
.y36{bottom:756.453333pt;}
.y5e{bottom:759.333333pt;}
.ye{bottom:766.373333pt;}
.y5d{bottom:774.853333pt;}
.y84{bottom:779.333333pt;}
.y35{bottom:781.093333pt;}
.y5c{bottom:796.773333pt;}
.yd{bottom:803.173333pt;}
.y83{bottom:803.973333pt;}
.y34{bottom:805.733333pt;}
.y5b{bottom:818.533333pt;}
.yc{bottom:821.573333pt;}
.y82{bottom:828.773333pt;}
.y33{bottom:830.533333pt;}
.yb{bottom:839.973333pt;}
.y5a{bottom:840.453333pt;}
.y81{bottom:853.413333pt;}
.y32{bottom:855.173333pt;}
.ya{bottom:858.373333pt;}
.y59{bottom:862.213333pt;}
.y80{bottom:875.493333pt;}
.y9{bottom:876.773333pt;}
.y31{bottom:879.813333pt;}
.y58{bottom:883.973333pt;}
.y7f{bottom:892.933333pt;}
.y8{bottom:895.173333pt;}
.y30{bottom:904.453333pt;}
.y57{bottom:905.893333pt;}
.y7{bottom:913.573333pt;}
.y7e{bottom:914.213333pt;}
.y56{bottom:927.653333pt;}
.y2f{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.y7d{bottom:935.333333pt;}
.y55{bottom:949.573333pt;}
.y5{bottom:953.893333pt;}
.y7c{bottom:956.453333pt;}
.y1{bottom:1057.920000pt;}
.hf{height:21.120000pt;}
.h10{height:21.280000pt;}
.hd{height:21.312000pt;}
.h3{height:28.320000pt;}
.he{height:42.240000pt;}
.hb{height:44.687500pt;}
.h11{height:47.109375pt;}
.h9{height:52.284375pt;}
.h5{height:52.832812pt;}
.h12{height:59.340000pt;}
.h7{height:62.781250pt;}
.h8{height:62.812500pt;}
.ha{height:63.360000pt;}
.h6{height:64.500000pt;}
.h13{height:65.781915pt;}
.hc{height:66.404375pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w5{width:87.040000pt;}
.w6{width:120.512000pt;}
.w4{width:183.546667pt;}
.w7{width:222.106667pt;}
.w8{width:431.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:6.880000pt;}
.x16{left:8.000000pt;}
.x15{left:14.240000pt;}
.x12{left:18.240000pt;}
.x1f{left:19.680000pt;}
.x3{left:24.320000pt;}
.x1c{left:27.520000pt;}
.x13{left:30.080000pt;}
.x18{left:38.720000pt;}
.x1d{left:42.240000pt;}
.x19{left:47.040000pt;}
.x10{left:61.434667pt;}
.x1{left:75.519988pt;}
.x25{left:80.031988pt;}
.xf{left:89.312000pt;}
.x22{left:94.431988pt;}
.xd{left:95.391988pt;}
.x1b{left:97.120000pt;}
.x26{left:104.031988pt;}
.x4{left:110.271988pt;}
.x20{left:113.311988pt;}
.xb{left:122.751988pt;}
.x1e{left:215.546667pt;}
.x8{left:226.746655pt;}
.xa{left:255.586655pt;}
.x11{left:273.506667pt;}
.x5{left:310.306655pt;}
.x24{left:327.266655pt;}
.x7{left:339.426655pt;}
.x9{left:353.346655pt;}
.x14{left:361.186667pt;}
.x2{left:363.586667pt;}
.xe{left:370.146655pt;}
.x6{left:396.866655pt;}
.x23{left:420.413322pt;}
.x17{left:482.333333pt;}
.xc{left:665.733322pt;}
.x21{left:700.293322pt;}
}




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