
    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_859375dd1b44f89d7475f545.woff')format("woff");}.ff1{font-family:ff1;line-height:1.157715;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_0a7f5dde51361f2464d1c49c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_71ba2b00d44e27ccd359d626.woff')format("woff");}.ff3{font-family:ff3;line-height:1.160645;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_479e618f2212a17ff639a0b3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.140137;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_3a797d15ba1c526972f53063.woff')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_64bdcad1b1c5e85516616f72.woff')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_d8ba60afbc22520db5b1995e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_889212f3724556cba5769e69.woff')format("woff");}.ff8{font-family:ff8;line-height:1.147461;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);}
.v1{vertical-align:-95.040000px;}
.v0{vertical-align:0.000000px;}
.ls11{letter-spacing:-0.828000px;}
.ls7{letter-spacing:-0.414600px;}
.ls9{letter-spacing:-0.262200px;}
.lsa{letter-spacing:-0.109200px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.195600px;}
.ls3{letter-spacing:0.262080px;}
.ls0{letter-spacing:0.305280px;}
.ls12{letter-spacing:0.305400px;}
.lsb{letter-spacing:1.745280px;}
.ls5{letter-spacing:3.185280px;}
.lsf{letter-spacing:4.625280px;}
.lsd{letter-spacing:6.065280px;}
.ls2{letter-spacing:9.785280px;}
.ls8{letter-spacing:11.825280px;}
.lsc{letter-spacing:12.545280px;}
.ls4{letter-spacing:13.265280px;}
.ls1{letter-spacing:13.985280px;}
.ls10{letter-spacing:47.105280px;}
.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:-20.016000px;}
.ws2{word-spacing:-18.720000px;}
.ws0{word-spacing:-18.414720px;}
.ws5{word-spacing:-18.305520px;}
.ws4{word-spacing:-18.152520px;}
.ws6{word-spacing:-17.586720px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-2.868480px;}
._0{margin-left:-1.347840px;}
._1{width:1.179360px;}
._2{width:2.308800px;}
._c{width:3.505920px;}
._b{width:4.570560px;}
._8{width:5.696640px;}
._4{width:7.617600px;}
._5{width:9.110880px;}
._3{width:10.797120px;}
._12{width:12.386880px;}
._a{width:13.645440px;}
._1a{width:14.834880px;}
._e{width:16.056000px;}
._d{width:17.089920px;}
._14{width:18.169920px;}
._f{width:19.673280px;}
._10{width:21.219840px;}
._11{width:22.935840px;}
._13{width:26.032320px;}
._6{width:28.416960px;}
._7{width:29.920320px;}
._19{width:31.000320px;}
._17{width:36.576000px;}
._16{width:37.656000px;}
._18{width:38.880000px;}
._1b{width:46.765440px;}
._15{width:958.332000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y47{bottom:3.600000px;}
.y51{bottom:3.780000px;}
.y71{bottom:6.660000px;}
.y6a{bottom:9.360000px;}
.y46{bottom:22.500000px;}
.y50{bottom:22.680000px;}
.y6e{bottom:22.725000px;}
.y68{bottom:25.560000px;}
.y69{bottom:28.440000px;}
.y72{bottom:31.320000px;}
.y6c{bottom:38.925000px;}
.y58{bottom:41.580000px;}
.y4f{bottom:41.760000px;}
.y6d{bottom:41.805000px;}
.y67{bottom:47.340000px;}
.y70{bottom:50.220000px;}
.y77{bottom:52.200000px;}
.y81{bottom:60.480000px;}
.y4e{bottom:60.660000px;}
.y7a{bottom:60.690000px;}
.y57{bottom:60.705000px;}
.y76{bottom:73.980000px;}
.y4d{bottom:79.560000px;}
.y79{bottom:79.590000px;}
.y56{bottom:79.605000px;}
.y4b{bottom:80.460000px;}
.y75{bottom:95.760000px;}
.y80{bottom:98.460000px;}
.y78{bottom:98.640000px;}
.y4a{bottom:99.360000px;}
.y2d{bottom:111.600000px;}
.ydc{bottom:115.200000px;}
.yc8{bottom:117.000000px;}
.y5d{bottom:117.360000px;}
.y74{bottom:117.540000px;}
.y49{bottom:118.260000px;}
.ya3{bottom:123.300000px;}
.y2c{bottom:133.560000px;}
.y7e{bottom:137.160000px;}
.yb8{bottom:137.700000px;}
.yc7{bottom:138.780000px;}
.y5c{bottom:139.320000px;}
.ya2{bottom:145.260000px;}
.y2b{bottom:155.370000px;}
.y7d{bottom:156.240000px;}
.y85{bottom:156.960000px;}
.yc6{bottom:160.770000px;}
.y5b{bottom:161.130000px;}
.ya1{bottom:167.070000px;}
.y88{bottom:173.010000px;}
.ydb{bottom:174.090000px;}
.y7c{bottom:175.140000px;}
.y84{bottom:175.860000px;}
.y2a{bottom:177.150000px;}
.y82{bottom:188.850000px;}
.y83{bottom:194.940000px;}
.yda{bottom:195.690000px;}
.y29{bottom:198.930000px;}
.yc5{bottom:201.270000px;}
.ya0{bottom:207.750000px;}
.y54{bottom:214.560000px;}
.y5a{bottom:215.850000px;}
.yd9{bottom:217.650000px;}
.y28{bottom:220.710000px;}
.yc4{bottom:229.530000px;}
.y53{bottom:233.685000px;}
.y27{bottom:242.670000px;}
.yd8{bottom:247.170000px;}
.y9f{bottom:248.070000px;}
.y52{bottom:252.585000px;}
.y26{bottom:264.450000px;}
.y87{bottom:265.530000px;}
.yc3{bottom:266.430000px;}
.y59{bottom:273.450000px;}
.y9e{bottom:281.910000px;}
.yd7{bottom:282.630000px;}
.y25{bottom:286.230000px;}
.y9d{bottom:303.510000px;}
.yd6{bottom:304.230000px;}
.y24{bottom:308.010000px;}
.y9c{bottom:325.470000px;}
.yd5{bottom:326.010000px;}
.y23{bottom:329.970000px;}
.yd4{bottom:347.970000px;}
.y55{bottom:350.130000px;}
.y22{bottom:351.750000px;}
.y86{bottom:361.110000px;}
.y9b{bottom:365.970000px;}
.yd3{bottom:377.490000px;}
.y21{bottom:380.190000px;}
.y7b{bottom:399.855000px;}
.y65{bottom:400.575000px;}
.y9a{bottom:402.915000px;}
.y20{bottom:409.395000px;}
.yd2{bottom:412.995000px;}
.y64{bottom:419.475000px;}
.yb7{bottom:433.155000px;}
.yd1{bottom:434.595000px;}
.y1f{bottom:437.475000px;}
.y48{bottom:445.755000px;}
.yb6{bottom:454.755000px;}
.y1e{bottom:456.375000px;}
.yb5{bottom:476.715000px;}
.yd0{bottom:478.335000px;}
.y1d{bottom:484.275000px;}
.yb4{bottom:498.495000px;}
.ycf{bottom:500.115000px;}
.y1c{bottom:512.355000px;}
.yb3{bottom:520.275000px;}
.yce{bottom:521.895000px;}
.y1b{bottom:531.255000px;}
.y7f{bottom:533.415000px;}
.y4c{bottom:541.515000px;}
.yb2{bottom:542.055000px;}
.y1a{bottom:550.335000px;}
.ycd{bottom:551.595000px;}
.yb1{bottom:564.015000px;}
.y19{bottom:569.235000px;}
.y45{bottom:580.215000px;}
.yb0{bottom:585.795000px;}
.ycc{bottom:586.875000px;}
.y18{bottom:588.135000px;}
.y63{bottom:591.015000px;}
.y17{bottom:607.215000px;}
.yaf{bottom:607.575000px;}
.ycb{bottom:623.775000px;}
.y44{bottom:625.935000px;}
.y16{bottom:626.115000px;}
.yae{bottom:629.355000px;}
.y15{bottom:645.225000px;}
.y43{bottom:649.365000px;}
.yad{bottom:651.165000px;}
.y42{bottom:671.145000px;}
.y14{bottom:673.125000px;}
.y73{bottom:686.625000px;}
.y41{bottom:693.105000px;}
.y13{bottom:701.025000px;}
.yac{bottom:713.625000px;}
.y40{bottom:715.245000px;}
.y12{bottom:729.105000px;}
.y99{bottom:737.925000px;}
.y3f{bottom:739.005000px;}
.y11{bottom:748.005000px;}
.yab{bottom:750.525000px;}
.y98{bottom:759.525000px;}
.y3e{bottom:762.225000px;}
.y10{bottom:776.085000px;}
.y97{bottom:781.485000px;}
.y3d{bottom:784.005000px;}
.yf{bottom:794.985000px;}
.y96{bottom:803.265000px;}
.y3c{bottom:805.965000px;}
.ye{bottom:813.885000px;}
.y6f{bottom:820.185000px;}
.y95{bottom:825.045000px;}
.y3b{bottom:827.745000px;}
.yd{bottom:832.965000px;}
.y94{bottom:846.825000px;}
.y3a{bottom:849.525000px;}
.yc{bottom:851.865000px;}
.y93{bottom:868.605000px;}
.yb{bottom:870.945000px;}
.y39{bottom:871.305000px;}
.y6b{bottom:886.425000px;}
.ya{bottom:889.845000px;}
.yc2{bottom:890.385000px;}
.y92{bottom:890.565000px;}
.y38{bottom:893.310000px;}
.y9{bottom:908.790000px;}
.yc1{bottom:912.210000px;}
.y91{bottom:912.390000px;}
.y37{bottom:915.090000px;}
.y8{bottom:927.870000px;}
.yc0{bottom:933.990000px;}
.y90{bottom:934.170000px;}
.y36{bottom:936.870000px;}
.ybf{bottom:955.770000px;}
.y8f{bottom:955.950000px;}
.y7{bottom:956.310000px;}
.y35{bottom:958.650000px;}
.y66{bottom:963.150000px;}
.ybe{bottom:977.550000px;}
.y8e{bottom:977.730000px;}
.y34{bottom:980.610000px;}
.y6{bottom:986.190000px;}
.yca{bottom:986.550000px;}
.ybd{bottom:999.510000px;}
.y8d{bottom:999.690000px;}
.y33{bottom:1002.570000px;}
.yc9{bottom:1008.330000px;}
.yaa{bottom:1008.510000px;}
.y5{bottom:1015.890000px;}
.ybc{bottom:1021.290000px;}
.y8c{bottom:1021.470000px;}
.y32{bottom:1024.170000px;}
.y62{bottom:1026.510000px;}
.ya9{bottom:1030.110000px;}
.ybb{bottom:1043.070000px;}
.y8b{bottom:1043.250000px;}
.y4{bottom:1045.590000px;}
.y31{bottom:1045.950000px;}
.ya8{bottom:1051.890000px;}
.yba{bottom:1064.850000px;}
.y8a{bottom:1065.030000px;}
.y30{bottom:1067.730000px;}
.y61{bottom:1072.230000px;}
.ya7{bottom:1073.670000px;}
.y3{bottom:1075.290000px;}
.ya6{bottom:1095.630000px;}
.y60{bottom:1095.810000px;}
.yb9{bottom:1098.870000px;}
.y2{bottom:1104.990000px;}
.y89{bottom:1106.790000px;}
.y2f{bottom:1113.990000px;}
.ya5{bottom:1117.410000px;}
.y5f{bottom:1117.590000px;}
.y1{bottom:1135.050000px;}
.y2e{bottom:1137.750000px;}
.ya4{bottom:1139.220000px;}
.y5e{bottom:1139.400000px;}
.h9{height:37.800000px;}
.h10{height:37.980000px;}
.h18{height:38.016000px;}
.hf{height:56.880000px;}
.h4{height:61.582500px;}
.h6{height:62.067656px;}
.h12{height:62.640000px;}
.h8{height:62.746875px;}
.h1a{height:62.940937px;}
.h14{height:65.520000px;}
.h7{height:68.203125px;}
.h5{height:69.086250px;}
.h3{height:75.093750px;}
.h19{height:75.780000px;}
.he{height:75.960000px;}
.h13{height:75.996000px;}
.h2{height:87.859687px;}
.hb{height:94.860000px;}
.hd{height:94.896000px;}
.h15{height:132.840000px;}
.ha{height:133.560000px;}
.h16{height:190.440000px;}
.h17{height:210.270000px;}
.hc{height:267.870000px;}
.h11{height:434.775000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:94.140000px;}
.w5{width:100.080000px;}
.w6{width:190.830000px;}
.w3{width:196.950000px;}
.w7{width:366.015000px;}
.w4{width:390.855000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:7.740000px;}
.xc{left:100.296000px;}
.x8{left:108.036000px;}
.x9{left:119.736000px;}
.x1{left:121.536000px;}
.x7{left:129.276000px;}
.x3{left:136.656000px;}
.x10{left:139.716000px;}
.x4{left:146.196000px;}
.x16{left:153.570000px;}
.xa{left:158.970000px;}
.x2{left:169.950000px;}
.x5{left:190.290000px;}
.xe{left:195.150000px;}
.x11{left:199.830000px;}
.x12{left:201.270000px;}
.x18{left:207.210000px;}
.xb{left:222.330000px;}
.x14{left:263.550000px;}
.xf{left:392.835000px;}
.x6{left:446.655000px;}
.x17{left:741.390000px;}
.x15{left:785.310000px;}
.x13{left:806.190000px;}
@media print{
.v1{vertical-align:-84.480000pt;}
.v0{vertical-align:0.000000pt;}
.ls11{letter-spacing:-0.736000pt;}
.ls7{letter-spacing:-0.368533pt;}
.ls9{letter-spacing:-0.233067pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.173867pt;}
.ls3{letter-spacing:0.232960pt;}
.ls0{letter-spacing:0.271360pt;}
.ls12{letter-spacing:0.271467pt;}
.lsb{letter-spacing:1.551360pt;}
.ls5{letter-spacing:2.831360pt;}
.lsf{letter-spacing:4.111360pt;}
.lsd{letter-spacing:5.391360pt;}
.ls2{letter-spacing:8.698027pt;}
.ls8{letter-spacing:10.511360pt;}
.lsc{letter-spacing:11.151360pt;}
.ls4{letter-spacing:11.791360pt;}
.ls1{letter-spacing:12.431360pt;}
.ls10{letter-spacing:41.871360pt;}
.ws1{word-spacing:-17.792000pt;}
.ws2{word-spacing:-16.640000pt;}
.ws0{word-spacing:-16.368640pt;}
.ws5{word-spacing:-16.271573pt;}
.ws4{word-spacing:-16.135573pt;}
.ws6{word-spacing:-15.632640pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-2.549760pt;}
._0{margin-left:-1.198080pt;}
._1{width:1.048320pt;}
._2{width:2.052267pt;}
._c{width:3.116373pt;}
._b{width:4.062720pt;}
._8{width:5.063680pt;}
._4{width:6.771200pt;}
._5{width:8.098560pt;}
._3{width:9.597440pt;}
._12{width:11.010560pt;}
._a{width:12.129280pt;}
._1a{width:13.186560pt;}
._e{width:14.272000pt;}
._d{width:15.191040pt;}
._14{width:16.151040pt;}
._f{width:17.487360pt;}
._10{width:18.862080pt;}
._11{width:20.387413pt;}
._13{width:23.139840pt;}
._6{width:25.259520pt;}
._7{width:26.595840pt;}
._19{width:27.555840pt;}
._17{width:32.512000pt;}
._16{width:33.472000pt;}
._18{width:34.560000pt;}
._1b{width:41.569280pt;}
._15{width:851.850667pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:3.200000pt;}
.y51{bottom:3.360000pt;}
.y71{bottom:5.920000pt;}
.y6a{bottom:8.320000pt;}
.y46{bottom:20.000000pt;}
.y50{bottom:20.160000pt;}
.y6e{bottom:20.200000pt;}
.y68{bottom:22.720000pt;}
.y69{bottom:25.280000pt;}
.y72{bottom:27.840000pt;}
.y6c{bottom:34.600000pt;}
.y58{bottom:36.960000pt;}
.y4f{bottom:37.120000pt;}
.y6d{bottom:37.160000pt;}
.y67{bottom:42.080000pt;}
.y70{bottom:44.640000pt;}
.y77{bottom:46.400000pt;}
.y81{bottom:53.760000pt;}
.y4e{bottom:53.920000pt;}
.y7a{bottom:53.946667pt;}
.y57{bottom:53.960000pt;}
.y76{bottom:65.760000pt;}
.y4d{bottom:70.720000pt;}
.y79{bottom:70.746667pt;}
.y56{bottom:70.760000pt;}
.y4b{bottom:71.520000pt;}
.y75{bottom:85.120000pt;}
.y80{bottom:87.520000pt;}
.y78{bottom:87.680000pt;}
.y4a{bottom:88.320000pt;}
.y2d{bottom:99.200000pt;}
.ydc{bottom:102.400000pt;}
.yc8{bottom:104.000000pt;}
.y5d{bottom:104.320000pt;}
.y74{bottom:104.480000pt;}
.y49{bottom:105.120000pt;}
.ya3{bottom:109.600000pt;}
.y2c{bottom:118.720000pt;}
.y7e{bottom:121.920000pt;}
.yb8{bottom:122.400000pt;}
.yc7{bottom:123.360000pt;}
.y5c{bottom:123.840000pt;}
.ya2{bottom:129.120000pt;}
.y2b{bottom:138.106667pt;}
.y7d{bottom:138.880000pt;}
.y85{bottom:139.520000pt;}
.yc6{bottom:142.906667pt;}
.y5b{bottom:143.226667pt;}
.ya1{bottom:148.506667pt;}
.y88{bottom:153.786667pt;}
.ydb{bottom:154.746667pt;}
.y7c{bottom:155.680000pt;}
.y84{bottom:156.320000pt;}
.y2a{bottom:157.466667pt;}
.y82{bottom:167.866667pt;}
.y83{bottom:173.280000pt;}
.yda{bottom:173.946667pt;}
.y29{bottom:176.826667pt;}
.yc5{bottom:178.906667pt;}
.ya0{bottom:184.666667pt;}
.y54{bottom:190.720000pt;}
.y5a{bottom:191.866667pt;}
.yd9{bottom:193.466667pt;}
.y28{bottom:196.186667pt;}
.yc4{bottom:204.026667pt;}
.y53{bottom:207.720000pt;}
.y27{bottom:215.706667pt;}
.yd8{bottom:219.706667pt;}
.y9f{bottom:220.506667pt;}
.y52{bottom:224.520000pt;}
.y26{bottom:235.066667pt;}
.y87{bottom:236.026667pt;}
.yc3{bottom:236.826667pt;}
.y59{bottom:243.066667pt;}
.y9e{bottom:250.586667pt;}
.yd7{bottom:251.226667pt;}
.y25{bottom:254.426667pt;}
.y9d{bottom:269.786667pt;}
.yd6{bottom:270.426667pt;}
.y24{bottom:273.786667pt;}
.y9c{bottom:289.306667pt;}
.yd5{bottom:289.786667pt;}
.y23{bottom:293.306667pt;}
.yd4{bottom:309.306667pt;}
.y55{bottom:311.226667pt;}
.y22{bottom:312.666667pt;}
.y86{bottom:320.986667pt;}
.y9b{bottom:325.306667pt;}
.yd3{bottom:335.546667pt;}
.y21{bottom:337.946667pt;}
.y7b{bottom:355.426667pt;}
.y65{bottom:356.066667pt;}
.y9a{bottom:358.146667pt;}
.y20{bottom:363.906667pt;}
.yd2{bottom:367.106667pt;}
.y64{bottom:372.866667pt;}
.yb7{bottom:385.026667pt;}
.yd1{bottom:386.306667pt;}
.y1f{bottom:388.866667pt;}
.y48{bottom:396.226667pt;}
.yb6{bottom:404.226667pt;}
.y1e{bottom:405.666667pt;}
.yb5{bottom:423.746667pt;}
.yd0{bottom:425.186667pt;}
.y1d{bottom:430.466667pt;}
.yb4{bottom:443.106667pt;}
.ycf{bottom:444.546667pt;}
.y1c{bottom:455.426667pt;}
.yb3{bottom:462.466667pt;}
.yce{bottom:463.906667pt;}
.y1b{bottom:472.226667pt;}
.y7f{bottom:474.146667pt;}
.y4c{bottom:481.346667pt;}
.yb2{bottom:481.826667pt;}
.y1a{bottom:489.186667pt;}
.ycd{bottom:490.306667pt;}
.yb1{bottom:501.346667pt;}
.y19{bottom:505.986667pt;}
.y45{bottom:515.746667pt;}
.yb0{bottom:520.706667pt;}
.ycc{bottom:521.666667pt;}
.y18{bottom:522.786667pt;}
.y63{bottom:525.346667pt;}
.y17{bottom:539.746667pt;}
.yaf{bottom:540.066667pt;}
.ycb{bottom:554.466667pt;}
.y44{bottom:556.386667pt;}
.y16{bottom:556.546667pt;}
.yae{bottom:559.426667pt;}
.y15{bottom:573.533333pt;}
.y43{bottom:577.213333pt;}
.yad{bottom:578.813333pt;}
.y42{bottom:596.573333pt;}
.y14{bottom:598.333333pt;}
.y73{bottom:610.333333pt;}
.y41{bottom:616.093333pt;}
.y13{bottom:623.133333pt;}
.yac{bottom:634.333333pt;}
.y40{bottom:635.773333pt;}
.y12{bottom:648.093333pt;}
.y99{bottom:655.933333pt;}
.y3f{bottom:656.893333pt;}
.y11{bottom:664.893333pt;}
.yab{bottom:667.133333pt;}
.y98{bottom:675.133333pt;}
.y3e{bottom:677.533333pt;}
.y10{bottom:689.853333pt;}
.y97{bottom:694.653333pt;}
.y3d{bottom:696.893333pt;}
.yf{bottom:706.653333pt;}
.y96{bottom:714.013333pt;}
.y3c{bottom:716.413333pt;}
.ye{bottom:723.453333pt;}
.y6f{bottom:729.053333pt;}
.y95{bottom:733.373333pt;}
.y3b{bottom:735.773333pt;}
.yd{bottom:740.413333pt;}
.y94{bottom:752.733333pt;}
.y3a{bottom:755.133333pt;}
.yc{bottom:757.213333pt;}
.y93{bottom:772.093333pt;}
.yb{bottom:774.173333pt;}
.y39{bottom:774.493333pt;}
.y6b{bottom:787.933333pt;}
.ya{bottom:790.973333pt;}
.yc2{bottom:791.453333pt;}
.y92{bottom:791.613333pt;}
.y38{bottom:794.053333pt;}
.y9{bottom:807.813333pt;}
.yc1{bottom:810.853333pt;}
.y91{bottom:811.013333pt;}
.y37{bottom:813.413333pt;}
.y8{bottom:824.773333pt;}
.yc0{bottom:830.213333pt;}
.y90{bottom:830.373333pt;}
.y36{bottom:832.773333pt;}
.ybf{bottom:849.573333pt;}
.y8f{bottom:849.733333pt;}
.y7{bottom:850.053333pt;}
.y35{bottom:852.133333pt;}
.y66{bottom:856.133333pt;}
.ybe{bottom:868.933333pt;}
.y8e{bottom:869.093333pt;}
.y34{bottom:871.653333pt;}
.y6{bottom:876.613333pt;}
.yca{bottom:876.933333pt;}
.ybd{bottom:888.453333pt;}
.y8d{bottom:888.613333pt;}
.y33{bottom:891.173333pt;}
.yc9{bottom:896.293333pt;}
.yaa{bottom:896.453333pt;}
.y5{bottom:903.013333pt;}
.ybc{bottom:907.813333pt;}
.y8c{bottom:907.973333pt;}
.y32{bottom:910.373333pt;}
.y62{bottom:912.453333pt;}
.ya9{bottom:915.653333pt;}
.ybb{bottom:927.173333pt;}
.y8b{bottom:927.333333pt;}
.y4{bottom:929.413333pt;}
.y31{bottom:929.733333pt;}
.ya8{bottom:935.013333pt;}
.yba{bottom:946.533333pt;}
.y8a{bottom:946.693333pt;}
.y30{bottom:949.093333pt;}
.y61{bottom:953.093333pt;}
.ya7{bottom:954.373333pt;}
.y3{bottom:955.813333pt;}
.ya6{bottom:973.893333pt;}
.y60{bottom:974.053333pt;}
.yb9{bottom:976.773333pt;}
.y2{bottom:982.213333pt;}
.y89{bottom:983.813333pt;}
.y2f{bottom:990.213333pt;}
.ya5{bottom:993.253333pt;}
.y5f{bottom:993.413333pt;}
.y1{bottom:1008.933333pt;}
.y2e{bottom:1011.333333pt;}
.ya4{bottom:1012.640000pt;}
.y5e{bottom:1012.800000pt;}
.h9{height:33.600000pt;}
.h10{height:33.760000pt;}
.h18{height:33.792000pt;}
.hf{height:50.560000pt;}
.h4{height:54.740000pt;}
.h6{height:55.171250pt;}
.h12{height:55.680000pt;}
.h8{height:55.775000pt;}
.h1a{height:55.947500pt;}
.h14{height:58.240000pt;}
.h7{height:60.625000pt;}
.h5{height:61.410000pt;}
.h3{height:66.750000pt;}
.h19{height:67.360000pt;}
.he{height:67.520000pt;}
.h13{height:67.552000pt;}
.h2{height:78.097500pt;}
.hb{height:84.320000pt;}
.hd{height:84.352000pt;}
.h15{height:118.080000pt;}
.ha{height:118.720000pt;}
.h16{height:169.280000pt;}
.h17{height:186.906667pt;}
.hc{height:238.106667pt;}
.h11{height:386.466667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:83.680000pt;}
.w5{width:88.960000pt;}
.w6{width:169.626667pt;}
.w3{width:175.066667pt;}
.w7{width:325.346667pt;}
.w4{width:347.426667pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:6.880000pt;}
.xc{left:89.152000pt;}
.x8{left:96.032000pt;}
.x9{left:106.432000pt;}
.x1{left:108.032000pt;}
.x7{left:114.912000pt;}
.x3{left:121.472000pt;}
.x10{left:124.192000pt;}
.x4{left:129.952000pt;}
.x16{left:136.506667pt;}
.xa{left:141.306667pt;}
.x2{left:151.066667pt;}
.x5{left:169.146667pt;}
.xe{left:173.466667pt;}
.x11{left:177.626667pt;}
.x12{left:178.906667pt;}
.x18{left:184.186667pt;}
.xb{left:197.626667pt;}
.x14{left:234.266667pt;}
.xf{left:349.186667pt;}
.x6{left:397.026667pt;}
.x17{left:659.013333pt;}
.x15{left:698.053333pt;}
.x13{left:716.613333pt;}
}




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