
    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_efa070b4e841865e32685671.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d3d4b7c87c11d81694f88b4a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5e5a8f62f103821585cafc8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.883301;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_2267c615852619aa84b04b6f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_81606ce035549b305f169f2d.woff2')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_84b68496ea69f1059d615923.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;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_ce79544a6ca1e779b911e2fe.woff2')format("woff");}.ff7{font-family:ff7;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-1.584000px;}
.lsc{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.152000px;}
.ls3{letter-spacing:-0.538800px;}
.ls2{letter-spacing:-0.463800px;}
.lse{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000001px;}
.lsb{letter-spacing:0.504000px;}
.ls0{letter-spacing:0.720000px;}
.ls6{letter-spacing:1.440000px;}
.ls4{letter-spacing:1.584000px;}
.ls9{letter-spacing:1.944000px;}
.lsd{letter-spacing:53.424000px;}
.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.581200px;}
.ws8{word-spacing:-19.944000px;}
.ws3{word-spacing:-19.584000px;}
.ws9{word-spacing:-18.000001px;}
.ws4{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.856000px;}
.wsb{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.848000px;}
.wsa{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws2{word-spacing:-11.880000px;}
.ws6{word-spacing:0.000000px;}
._10{margin-left:-5.129760px;}
._6{margin-left:-3.600000px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.526880px;}
._3{width:3.044160px;}
._9{width:4.498080px;}
._e{width:5.552640px;}
._5{width:6.793440px;}
._4{width:7.966560px;}
._7{width:9.826080px;}
._8{width:11.335200px;}
._c{width:12.782400px;}
._a{width:14.146080px;}
._b{width:15.924000px;}
._d{width:16.966080px;}
._11{width:19.295520px;}
._16{width:20.323680px;}
._15{width:21.526560px;}
._12{width:22.764000px;}
._f{width:24.062400px;}
._14{width:25.092000px;}
._13{width:26.112960px;}
._18{width:28.656000px;}
._17{width:30.475200px;}
._19{width:91.258560px;}
._1a{width:93.102240px;}
._1b{width:313.547520px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc4{color:rgb(33,33,33);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y4b{bottom:7.560000px;}
.y5a{bottom:7.920000px;}
.y4d{bottom:8.280000px;}
.y5f{bottom:8.325000px;}
.y6d{bottom:8.640000px;}
.y72{bottom:9.000000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y69{bottom:30.600000px;}
.y4f{bottom:31.320000px;}
.y93{bottom:31.350000px;}
.y8c{bottom:31.365000px;}
.y53{bottom:31.680000px;}
.y9c{bottom:31.710000px;}
.y4c{bottom:32.040000px;}
.y5e{bottom:32.085000px;}
.y6c{bottom:32.400000px;}
.y9b{bottom:32.430000px;}
.y71{bottom:32.760000px;}
.y58{bottom:33.150000px;}
.y67{bottom:55.080000px;}
.y55{bottom:55.125000px;}
.y52{bottom:55.440000px;}
.y91{bottom:55.830000px;}
.y8a{bottom:55.845000px;}
.y9a{bottom:56.190000px;}
.y5d{bottom:56.205000px;}
.y49{bottom:56.520000px;}
.y63{bottom:56.565000px;}
.y8{bottom:57.240000px;}
.y5{bottom:73.476000px;}
.y51{bottom:79.200000px;}
.y86{bottom:79.590000px;}
.y89{bottom:79.605000px;}
.y90{bottom:79.950000px;}
.y96{bottom:79.965000px;}
.y33{bottom:115.596000px;}
.y32{bottom:139.716000px;}
.yb2{bottom:144.756000px;}
.yca{bottom:155.550000px;}
.y31{bottom:163.470000px;}
.yb1{bottom:168.870000px;}
.yc9{bottom:179.310000px;}
.y88{bottom:181.110000px;}
.y5c{bottom:185.790000px;}
.y30{bottom:187.230000px;}
.yb0{bottom:192.630000px;}
.yc8{bottom:203.115000px;}
.y60{bottom:210.315000px;}
.y2f{bottom:211.035000px;}
.yaf{bottom:216.435000px;}
.yc7{bottom:226.875000px;}
.y8b{bottom:229.395000px;}
.y2e{bottom:234.795000px;}
.yae{bottom:240.195000px;}
.yc6{bottom:250.635000px;}
.y2d{bottom:258.555000px;}
.y5b{bottom:258.915000px;}
.yad{bottom:263.955000px;}
.yc5{bottom:274.395000px;}
.y85{bottom:277.995000px;}
.y2c{bottom:282.315000px;}
.yac{bottom:287.715000px;}
.yc4{bottom:298.155000px;}
.y2b{bottom:306.075000px;}
.y57{bottom:307.155000px;}
.yab{bottom:311.475000px;}
.yc3{bottom:321.945000px;}
.y87{bottom:326.265000px;}
.y2a{bottom:330.225000px;}
.y59{bottom:332.385000px;}
.yaa{bottom:335.265000px;}
.yc2{bottom:346.065000px;}
.y29{bottom:353.985000px;}
.y56{bottom:357.225000px;}
.ya9{bottom:359.385000px;}
.yc1{bottom:369.825000px;}
.y28{bottom:377.745000px;}
.y84{bottom:381.705000px;}
.ya8{bottom:383.145000px;}
.yc0{bottom:393.585000px;}
.y27{bottom:401.505000px;}
.y54{bottom:405.465000px;}
.ya7{bottom:406.905000px;}
.ybf{bottom:417.345000px;}
.y26{bottom:425.265000px;}
.y83{bottom:429.585000px;}
.ya6{bottom:430.665000px;}
.ybe{bottom:441.105000px;}
.y25{bottom:449.070000px;}
.y82{bottom:453.750000px;}
.ya5{bottom:454.470000px;}
.ybd{bottom:464.910000px;}
.y24{bottom:472.830000px;}
.y50{bottom:477.510000px;}
.ya4{bottom:478.230000px;}
.ybc{bottom:488.670000px;}
.y23{bottom:496.590000px;}
.y81{bottom:501.270000px;}
.ya3{bottom:501.990000px;}
.ybb{bottom:512.430000px;}
.y22{bottom:520.350000px;}
.y80{bottom:525.030000px;}
.ya2{bottom:525.750000px;}
.yba{bottom:536.550000px;}
.y21{bottom:544.470000px;}
.y7f{bottom:548.790000px;}
.ya1{bottom:549.870000px;}
.yb9{bottom:560.310000px;}
.y20{bottom:568.230000px;}
.y7e{bottom:572.580000px;}
.y4e{bottom:573.660000px;}
.yb8{bottom:584.100000px;}
.y1f{bottom:592.020000px;}
.y7d{bottom:596.340000px;}
.ya0{bottom:597.420000px;}
.yb7{bottom:607.860000px;}
.y1e{bottom:615.780000px;}
.y7c{bottom:620.460000px;}
.y9f{bottom:621.180000px;}
.y48{bottom:621.900000px;}
.yb6{bottom:631.620000px;}
.y1d{bottom:639.540000px;}
.y7b{bottom:644.220000px;}
.y9e{bottom:644.940000px;}
.yb5{bottom:655.380000px;}
.y9d{bottom:661.860000px;}
.y1c{bottom:663.300000px;}
.y7a{bottom:667.980000px;}
.y4a{bottom:670.860000px;}
.yb4{bottom:679.140000px;}
.y99{bottom:686.340000px;}
.y1b{bottom:686.700000px;}
.y79{bottom:691.740000px;}
.y47{bottom:702.570000px;}
.yb3{bottom:702.930000px;}
.y1a{bottom:710.850000px;}
.y78{bottom:715.530000px;}
.y46{bottom:726.690000px;}
.y19{bottom:734.970000px;}
.y77{bottom:739.290000px;}
.y45{bottom:750.450000px;}
.y18{bottom:758.730000px;}
.y76{bottom:763.050000px;}
.y44{bottom:774.570000px;}
.y17{bottom:782.490000px;}
.y98{bottom:783.210000px;}
.y75{bottom:786.810000px;}
.y43{bottom:798.330000px;}
.y74{bottom:803.730000px;}
.y16{bottom:806.250000px;}
.y95{bottom:807.690000px;}
.y42{bottom:822.090000px;}
.y70{bottom:828.615000px;}
.y15{bottom:829.695000px;}
.y41{bottom:845.895000px;}
.y14{bottom:853.455000px;}
.y73{bottom:853.815000px;}
.y97{bottom:855.975000px;}
.y40{bottom:869.655000px;}
.y13{bottom:877.575000px;}
.y6f{bottom:878.295000px;}
.y3f{bottom:893.415000px;}
.y12{bottom:901.335000px;}
.y6b{bottom:902.775000px;}
.y94{bottom:904.575000px;}
.y3e{bottom:917.175000px;}
.y11{bottom:925.455000px;}
.y6e{bottom:927.615000px;}
.y8f{bottom:929.055000px;}
.y3d{bottom:941.295000px;}
.y10{bottom:949.215000px;}
.y6a{bottom:952.125000px;}
.y3c{bottom:965.085000px;}
.yf{bottom:972.645000px;}
.y66{bottom:976.605000px;}
.y92{bottom:977.325000px;}
.y3b{bottom:988.845000px;}
.ye{bottom:996.765000px;}
.y3a{bottom:1012.605000px;}
.yd{bottom:1022.325000px;}
.y68{bottom:1024.125000px;}
.y8e{bottom:1025.925000px;}
.y39{bottom:1036.365000px;}
.y65{bottom:1048.965000px;}
.y8d{bottom:1050.405000px;}
.yc{bottom:1054.005000px;}
.y38{bottom:1060.125000px;}
.y62{bottom:1073.445000px;}
.y37{bottom:1083.930000px;}
.yb{bottom:1085.730000px;}
.y64{bottom:1098.690000px;}
.y36{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y35{bottom:1131.810000px;}
.y61{bottom:1146.930000px;}
.y9{bottom:1149.450000px;}
.y34{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.he{height:23.760000px;}
.h18{height:23.796000px;}
.h14{height:24.120000px;}
.h1f{height:24.156000px;}
.h1e{height:24.480000px;}
.h15{height:24.516000px;}
.h5{height:27.000000px;}
.h1b{height:46.800000px;}
.h10{height:47.520000px;}
.h21{height:47.556000px;}
.h17{height:47.880000px;}
.h23{height:47.916000px;}
.hf{height:48.240000px;}
.h1c{height:48.636000px;}
.h1d{height:48.960000px;}
.h13{height:49.356000px;}
.h7{height:50.229844px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.hc{height:70.628906px;}
.h6{height:70.664062px;}
.h1a{height:71.280000px;}
.h12{height:71.316000px;}
.h16{height:72.396000px;}
.h2{height:72.562500px;}
.hd{height:72.720000px;}
.h19{height:72.756000px;}
.hb{height:73.998281px;}
.h24{height:74.004654px;}
.ha{height:74.118281px;}
.h9{height:75.251250px;}
.h11{height:95.436000px;}
.h20{height:95.796000px;}
.h22{height:96.156000px;}
.h8{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:66.960000px;}
.w4{width:104.076000px;}
.w8{width:123.876000px;}
.w5{width:129.996000px;}
.wc{width:137.196000px;}
.w14{width:137.556000px;}
.w11{width:137.916000px;}
.wa{width:141.516000px;}
.w6{width:144.432000px;}
.w9{width:149.472000px;}
.wb{width:158.835000px;}
.w10{width:165.315000px;}
.w15{width:165.675000px;}
.w13{width:166.035000px;}
.wf{width:169.635000px;}
.w12{width:170.355000px;}
.w7{width:291.705000px;}
.w3{width:298.905000px;}
.wd{width:335.670000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x24{left:7.920000px;}
.x29{left:10.080000px;}
.x21{left:11.880000px;}
.x45{left:12.960000px;}
.x28{left:14.040000px;}
.x47{left:15.120000px;}
.x2b{left:16.920000px;}
.x2e{left:19.080000px;}
.x2f{left:20.910000px;}
.x18{left:21.960000px;}
.x1f{left:23.430000px;}
.x34{left:24.840000px;}
.x27{left:25.920000px;}
.x38{left:27.030000px;}
.x35{left:28.440000px;}
.x20{left:29.550000px;}
.x25{left:31.320000px;}
.x32{left:32.760000px;}
.x2d{left:34.200000px;}
.x22{left:35.280000px;}
.x39{left:37.110000px;}
.x2c{left:38.160000px;}
.x31{left:40.710000px;}
.x8{left:43.590000px;}
.x30{left:44.676000px;}
.x42{left:45.750000px;}
.x2a{left:48.636000px;}
.x26{left:50.790000px;}
.x46{left:52.950000px;}
.x44{left:57.630000px;}
.x36{left:60.159000px;}
.x1e{left:61.590000px;}
.x37{left:64.839000px;}
.x1c{left:66.990000px;}
.x3e{left:68.400000px;}
.x33{left:70.560000px;}
.x1a{left:72.030000px;}
.x40{left:82.470000px;}
.x5{left:95.796000px;}
.xc{left:100.475987px;}
.x10{left:102.275987px;}
.x3a{left:104.435987px;}
.x12{left:106.235987px;}
.x3b{left:108.755987px;}
.xa{left:110.915987px;}
.x16{left:119.555987px;}
.xb{left:124.955987px;}
.x48{left:127.835987px;}
.x15{left:138.635987px;}
.xf{left:149.111987px;}
.xd{left:169.634987px;}
.x3{left:190.874987px;}
.x19{left:231.195000px;}
.x3d{left:255.705000px;}
.x6{left:290.634000px;}
.xe{left:307.544987px;}
.x14{left:322.664987px;}
.x2{left:333.509987px;}
.x11{left:334.949987px;}
.x13{left:336.389987px;}
.x17{left:339.269987px;}
.x4{left:342.869987px;}
.x1b{left:376.710000px;}
.x3f{left:393.630000px;}
.x7{left:394.710000px;}
.x3c{left:415.589987px;}
.x9{left:498.780000px;}
.x23{left:526.890000px;}
.x43{left:563.970000px;}
.x1d{left:669.135000px;}
.x41{left:730.005000px;}
.x1{left:797.684987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-1.408000pt;}
.lsc{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.024000pt;}
.ls3{letter-spacing:-0.478933pt;}
.ls2{letter-spacing:-0.412267pt;}
.lse{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000001pt;}
.lsb{letter-spacing:0.448000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls6{letter-spacing:1.280000pt;}
.ls4{letter-spacing:1.408000pt;}
.ls9{letter-spacing:1.728000pt;}
.lsd{letter-spacing:47.488000pt;}
.ws1{word-spacing:-20.961067pt;}
.ws8{word-spacing:-17.728000pt;}
.ws3{word-spacing:-17.408000pt;}
.ws9{word-spacing:-16.000001pt;}
.ws4{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.872000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.976000pt;}
.wsa{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws2{word-spacing:-10.560000pt;}
.ws6{word-spacing:0.000000pt;}
._10{margin-left:-4.559787pt;}
._6{margin-left:-3.200000pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.357227pt;}
._3{width:2.705920pt;}
._9{width:3.998293pt;}
._e{width:4.935680pt;}
._5{width:6.038613pt;}
._4{width:7.081387pt;}
._7{width:8.734293pt;}
._8{width:10.075733pt;}
._c{width:11.362133pt;}
._a{width:12.574293pt;}
._b{width:14.154667pt;}
._d{width:15.080960pt;}
._11{width:17.151573pt;}
._16{width:18.065493pt;}
._15{width:19.134720pt;}
._12{width:20.234667pt;}
._f{width:21.388800pt;}
._14{width:22.304000pt;}
._13{width:23.211520pt;}
._18{width:25.472000pt;}
._17{width:27.089067pt;}
._19{width:81.118720pt;}
._1a{width:82.757547pt;}
._1b{width:278.708907pt;}
.fs4{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y4b{bottom:6.720000pt;}
.y5a{bottom:7.040000pt;}
.y4d{bottom:7.360000pt;}
.y5f{bottom:7.400000pt;}
.y6d{bottom:7.680000pt;}
.y72{bottom:8.000000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y69{bottom:27.200000pt;}
.y4f{bottom:27.840000pt;}
.y93{bottom:27.866667pt;}
.y8c{bottom:27.880000pt;}
.y53{bottom:28.160000pt;}
.y9c{bottom:28.186667pt;}
.y4c{bottom:28.480000pt;}
.y5e{bottom:28.520000pt;}
.y6c{bottom:28.800000pt;}
.y9b{bottom:28.826667pt;}
.y71{bottom:29.120000pt;}
.y58{bottom:29.466667pt;}
.y67{bottom:48.960000pt;}
.y55{bottom:49.000000pt;}
.y52{bottom:49.280000pt;}
.y91{bottom:49.626667pt;}
.y8a{bottom:49.640000pt;}
.y9a{bottom:49.946667pt;}
.y5d{bottom:49.960000pt;}
.y49{bottom:50.240000pt;}
.y63{bottom:50.280000pt;}
.y8{bottom:50.880000pt;}
.y5{bottom:65.312000pt;}
.y51{bottom:70.400000pt;}
.y86{bottom:70.746667pt;}
.y89{bottom:70.760000pt;}
.y90{bottom:71.066667pt;}
.y96{bottom:71.080000pt;}
.y33{bottom:102.752000pt;}
.y32{bottom:124.192000pt;}
.yb2{bottom:128.672000pt;}
.yca{bottom:138.266667pt;}
.y31{bottom:145.306667pt;}
.yb1{bottom:150.106667pt;}
.yc9{bottom:159.386667pt;}
.y88{bottom:160.986667pt;}
.y5c{bottom:165.146667pt;}
.y30{bottom:166.426667pt;}
.yb0{bottom:171.226667pt;}
.yc8{bottom:180.546667pt;}
.y60{bottom:186.946667pt;}
.y2f{bottom:187.586667pt;}
.yaf{bottom:192.386667pt;}
.yc7{bottom:201.666667pt;}
.y8b{bottom:203.906667pt;}
.y2e{bottom:208.706667pt;}
.yae{bottom:213.506667pt;}
.yc6{bottom:222.786667pt;}
.y2d{bottom:229.826667pt;}
.y5b{bottom:230.146667pt;}
.yad{bottom:234.626667pt;}
.yc5{bottom:243.906667pt;}
.y85{bottom:247.106667pt;}
.y2c{bottom:250.946667pt;}
.yac{bottom:255.746667pt;}
.yc4{bottom:265.026667pt;}
.y2b{bottom:272.066667pt;}
.y57{bottom:273.026667pt;}
.yab{bottom:276.866667pt;}
.yc3{bottom:286.173333pt;}
.y87{bottom:290.013333pt;}
.y2a{bottom:293.533333pt;}
.y59{bottom:295.453333pt;}
.yaa{bottom:298.013333pt;}
.yc2{bottom:307.613333pt;}
.y29{bottom:314.653333pt;}
.y56{bottom:317.533333pt;}
.ya9{bottom:319.453333pt;}
.yc1{bottom:328.733333pt;}
.y28{bottom:335.773333pt;}
.y84{bottom:339.293333pt;}
.ya8{bottom:340.573333pt;}
.yc0{bottom:349.853333pt;}
.y27{bottom:356.893333pt;}
.y54{bottom:360.413333pt;}
.ya7{bottom:361.693333pt;}
.ybf{bottom:370.973333pt;}
.y26{bottom:378.013333pt;}
.y83{bottom:381.853333pt;}
.ya6{bottom:382.813333pt;}
.ybe{bottom:392.093333pt;}
.y25{bottom:399.173333pt;}
.y82{bottom:403.333333pt;}
.ya5{bottom:403.973333pt;}
.ybd{bottom:413.253333pt;}
.y24{bottom:420.293333pt;}
.y50{bottom:424.453333pt;}
.ya4{bottom:425.093333pt;}
.ybc{bottom:434.373333pt;}
.y23{bottom:441.413333pt;}
.y81{bottom:445.573333pt;}
.ya3{bottom:446.213333pt;}
.ybb{bottom:455.493333pt;}
.y22{bottom:462.533333pt;}
.y80{bottom:466.693333pt;}
.ya2{bottom:467.333333pt;}
.yba{bottom:476.933333pt;}
.y21{bottom:483.973333pt;}
.y7f{bottom:487.813333pt;}
.ya1{bottom:488.773333pt;}
.yb9{bottom:498.053333pt;}
.y20{bottom:505.093333pt;}
.y7e{bottom:508.960000pt;}
.y4e{bottom:509.920000pt;}
.yb8{bottom:519.200000pt;}
.y1f{bottom:526.240000pt;}
.y7d{bottom:530.080000pt;}
.ya0{bottom:531.040000pt;}
.yb7{bottom:540.320000pt;}
.y1e{bottom:547.360000pt;}
.y7c{bottom:551.520000pt;}
.y9f{bottom:552.160000pt;}
.y48{bottom:552.800000pt;}
.yb6{bottom:561.440000pt;}
.y1d{bottom:568.480000pt;}
.y7b{bottom:572.640000pt;}
.y9e{bottom:573.280000pt;}
.yb5{bottom:582.560000pt;}
.y9d{bottom:588.320000pt;}
.y1c{bottom:589.600000pt;}
.y7a{bottom:593.760000pt;}
.y4a{bottom:596.320000pt;}
.yb4{bottom:603.680000pt;}
.y99{bottom:610.080000pt;}
.y1b{bottom:610.400000pt;}
.y79{bottom:614.880000pt;}
.y47{bottom:624.506667pt;}
.yb3{bottom:624.826667pt;}
.y1a{bottom:631.866667pt;}
.y78{bottom:636.026667pt;}
.y46{bottom:645.946667pt;}
.y19{bottom:653.306667pt;}
.y77{bottom:657.146667pt;}
.y45{bottom:667.066667pt;}
.y18{bottom:674.426667pt;}
.y76{bottom:678.266667pt;}
.y44{bottom:688.506667pt;}
.y17{bottom:695.546667pt;}
.y98{bottom:696.186667pt;}
.y75{bottom:699.386667pt;}
.y43{bottom:709.626667pt;}
.y74{bottom:714.426667pt;}
.y16{bottom:716.666667pt;}
.y95{bottom:717.946667pt;}
.y42{bottom:730.746667pt;}
.y70{bottom:736.546667pt;}
.y15{bottom:737.506667pt;}
.y41{bottom:751.906667pt;}
.y14{bottom:758.626667pt;}
.y73{bottom:758.946667pt;}
.y97{bottom:760.866667pt;}
.y40{bottom:773.026667pt;}
.y13{bottom:780.066667pt;}
.y6f{bottom:780.706667pt;}
.y3f{bottom:794.146667pt;}
.y12{bottom:801.186667pt;}
.y6b{bottom:802.466667pt;}
.y94{bottom:804.066667pt;}
.y3e{bottom:815.266667pt;}
.y11{bottom:822.626667pt;}
.y6e{bottom:824.546667pt;}
.y8f{bottom:825.826667pt;}
.y3d{bottom:836.706667pt;}
.y10{bottom:843.746667pt;}
.y6a{bottom:846.333333pt;}
.y3c{bottom:857.853333pt;}
.yf{bottom:864.573333pt;}
.y66{bottom:868.093333pt;}
.y92{bottom:868.733333pt;}
.y3b{bottom:878.973333pt;}
.ye{bottom:886.013333pt;}
.y3a{bottom:900.093333pt;}
.yd{bottom:908.733333pt;}
.y68{bottom:910.333333pt;}
.y8e{bottom:911.933333pt;}
.y39{bottom:921.213333pt;}
.y65{bottom:932.413333pt;}
.y8d{bottom:933.693333pt;}
.yc{bottom:936.893333pt;}
.y38{bottom:942.333333pt;}
.y62{bottom:954.173333pt;}
.y37{bottom:963.493333pt;}
.yb{bottom:965.093333pt;}
.y64{bottom:976.613333pt;}
.y36{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y35{bottom:1006.053333pt;}
.y61{bottom:1019.493333pt;}
.y9{bottom:1021.733333pt;}
.y34{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.he{height:21.120000pt;}
.h18{height:21.152000pt;}
.h14{height:21.440000pt;}
.h1f{height:21.472000pt;}
.h1e{height:21.760000pt;}
.h15{height:21.792000pt;}
.h5{height:24.000000pt;}
.h1b{height:41.600000pt;}
.h10{height:42.240000pt;}
.h21{height:42.272000pt;}
.h17{height:42.560000pt;}
.h23{height:42.592000pt;}
.hf{height:42.880000pt;}
.h1c{height:43.232000pt;}
.h1d{height:43.520000pt;}
.h13{height:43.872000pt;}
.h7{height:44.648750pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.hc{height:62.781250pt;}
.h6{height:62.812500pt;}
.h1a{height:63.360000pt;}
.h12{height:63.392000pt;}
.h16{height:64.352000pt;}
.h2{height:64.500000pt;}
.hd{height:64.640000pt;}
.h19{height:64.672000pt;}
.hb{height:65.776250pt;}
.h24{height:65.781915pt;}
.ha{height:65.882917pt;}
.h9{height:66.890000pt;}
.h11{height:84.832000pt;}
.h20{height:85.152000pt;}
.h22{height:85.472000pt;}
.h8{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:59.520000pt;}
.w4{width:92.512000pt;}
.w8{width:110.112000pt;}
.w5{width:115.552000pt;}
.wc{width:121.952000pt;}
.w14{width:122.272000pt;}
.w11{width:122.592000pt;}
.wa{width:125.792000pt;}
.w6{width:128.384000pt;}
.w9{width:132.864000pt;}
.wb{width:141.186667pt;}
.w10{width:146.946667pt;}
.w15{width:147.266667pt;}
.w13{width:147.586667pt;}
.wf{width:150.786667pt;}
.w12{width:151.426667pt;}
.w7{width:259.293333pt;}
.w3{width:265.693333pt;}
.wd{width:298.373333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x24{left:7.040000pt;}
.x29{left:8.960000pt;}
.x21{left:10.560000pt;}
.x45{left:11.520000pt;}
.x28{left:12.480000pt;}
.x47{left:13.440000pt;}
.x2b{left:15.040000pt;}
.x2e{left:16.960000pt;}
.x2f{left:18.586667pt;}
.x18{left:19.520000pt;}
.x1f{left:20.826667pt;}
.x34{left:22.080000pt;}
.x27{left:23.040000pt;}
.x38{left:24.026667pt;}
.x35{left:25.280000pt;}
.x20{left:26.266667pt;}
.x25{left:27.840000pt;}
.x32{left:29.120000pt;}
.x2d{left:30.400000pt;}
.x22{left:31.360000pt;}
.x39{left:32.986667pt;}
.x2c{left:33.920000pt;}
.x31{left:36.186667pt;}
.x8{left:38.746667pt;}
.x30{left:39.712000pt;}
.x42{left:40.666667pt;}
.x2a{left:43.232000pt;}
.x26{left:45.146667pt;}
.x46{left:47.066667pt;}
.x44{left:51.226667pt;}
.x36{left:53.474667pt;}
.x1e{left:54.746667pt;}
.x37{left:57.634667pt;}
.x1c{left:59.546667pt;}
.x3e{left:60.800000pt;}
.x33{left:62.720000pt;}
.x1a{left:64.026667pt;}
.x40{left:73.306667pt;}
.x5{left:85.152000pt;}
.xc{left:89.311988pt;}
.x10{left:90.911988pt;}
.x3a{left:92.831988pt;}
.x12{left:94.431988pt;}
.x3b{left:96.671988pt;}
.xa{left:98.591988pt;}
.x16{left:106.271988pt;}
.xb{left:111.071988pt;}
.x48{left:113.631988pt;}
.x15{left:123.231988pt;}
.xf{left:132.543988pt;}
.xd{left:150.786655pt;}
.x3{left:169.666655pt;}
.x19{left:205.506667pt;}
.x3d{left:227.293333pt;}
.x6{left:258.341333pt;}
.xe{left:273.373322pt;}
.x14{left:286.813322pt;}
.x2{left:296.453322pt;}
.x11{left:297.733322pt;}
.x13{left:299.013322pt;}
.x17{left:301.573322pt;}
.x4{left:304.773322pt;}
.x1b{left:334.853333pt;}
.x3f{left:349.893333pt;}
.x7{left:350.853333pt;}
.x3c{left:369.413322pt;}
.x9{left:443.360000pt;}
.x23{left:468.346667pt;}
.x43{left:501.306667pt;}
.x1d{left:594.786667pt;}
.x41{left:648.893333pt;}
.x1{left:709.053322pt;}
}




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