
    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_2da3b63c22fa8f603cd0517c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.983398;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_43f818e23acb72dab7d4c5b1.woff')format("woff");}.ff2{font-family:ff2;line-height:0.923340;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_5053117fd28e31a01d33401a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.941406;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_55833c24b626a020c063610e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.966797;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_a22baddf5a61df2d55566b37.woff')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_3fafd33bb9bc13eebb46a9af.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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;}
.m1{transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.223405,0.000000,0.000000,0.250000,0,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);}
.m2{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:23.760000px;}
.ls14{letter-spacing:-1.704000px;}
.ls13{letter-spacing:-1.590000px;}
.ls1a{letter-spacing:-1.548000px;}
.ls4{letter-spacing:-1.470000px;}
.ls19{letter-spacing:-1.386000px;}
.ls2{letter-spacing:-1.152000px;}
.ls5{letter-spacing:-1.098000px;}
.lsc{letter-spacing:-0.828000px;}
.ls1{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.306600px;}
.ls11{letter-spacing:-0.262200px;}
.ls1c{letter-spacing:-0.259800px;}
.ls21{letter-spacing:-0.253200px;}
.ls6{letter-spacing:-0.216000px;}
.ls18{letter-spacing:-0.152400px;}
.lse{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.109200px;}
.ls7{letter-spacing:-0.106800px;}
.ls1b{letter-spacing:-0.100200px;}
.ls9{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.013440px;}
.ls1f{letter-spacing:0.053280px;}
.ls1e{letter-spacing:0.206400px;}
.ls1d{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.262200px;}
.lsb{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.305400px;}
.ls20{letter-spacing:0.306600px;}
.lsd{letter-spacing:0.413400px;}
.lsf{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.613440px;}
.lsa{letter-spacing:0.666000px;}
.ls22{letter-spacing:0.793440px;}
.ls3{letter-spacing:3.888000px;}
.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;}
}
.ws3{word-spacing:-25.560000px;}
.ws6{word-spacing:-23.418720px;}
.ws5{word-spacing:-22.320720px;}
.ws4{word-spacing:-21.948720px;}
.ws2{word-spacing:-21.672000px;}
.ws0{word-spacing:-21.240000px;}
.ws1{word-spacing:-20.520000px;}
.wsd{word-spacing:-20.304000px;}
.ws11{word-spacing:-19.872000px;}
.ws7{word-spacing:-19.800000px;}
.ws14{word-spacing:-18.720120px;}
.ws1a{word-spacing:-18.676920px;}
.ws13{word-spacing:-18.414720px;}
.ws16{word-spacing:-18.305520px;}
.ws1b{word-spacing:-18.262320px;}
.ws17{word-spacing:-18.152520px;}
.ws15{word-spacing:-17.586720px;}
.wsc{word-spacing:-17.279280px;}
.ws12{word-spacing:-17.225280px;}
.wsf{word-spacing:-17.026680px;}
.ws23{word-spacing:-16.919880px;}
.ws20{word-spacing:-16.873080px;}
.ws18{word-spacing:-16.824720px;}
.ws21{word-spacing:-16.819680px;}
.ws19{word-spacing:-16.710720px;}
.ws22{word-spacing:-16.666560px;}
.ws9{word-spacing:-16.613280px;}
.wsb{word-spacing:-16.560000px;}
.ws1e{word-spacing:-16.513080px;}
.ws8{word-spacing:-16.506480px;}
.ws24{word-spacing:-16.360080px;}
.ws1f{word-spacing:-16.353480px;}
.wsa{word-spacing:-16.306680px;}
.wse{word-spacing:-15.785280px;}
.ws1c{word-spacing:-15.227280px;}
.ws1d{word-spacing:-15.065280px;}
.ws10{word-spacing:0.000000px;}
._6{margin-left:-8.208000px;}
._5{margin-left:-6.984000px;}
._3{margin-left:-5.352000px;}
._2{margin-left:-4.020000px;}
._1{margin-left:-2.304000px;}
._0{margin-left:-1.296000px;}
._4{width:1.212000px;}
._9{width:2.520000px;}
._7{width:3.528000px;}
._8{width:4.536000px;}
._a{width:5.623200px;}
._d{width:7.709040px;}
._e{width:9.382320px;}
._10{width:10.577520px;}
._1a{width:11.944560px;}
._b{width:13.027680px;}
._f{width:14.258400px;}
._c{width:26.616000px;}
._1b{width:78.405120px;}
._11{width:629.743200px;}
._17{width:803.254080px;}
._16{width:853.140960px;}
._14{width:860.650320px;}
._18{width:899.587200px;}
._15{width:960.918000px;}
._13{width:997.431360px;}
._12{width:1086.123120px;}
._19{width:2185.576320px;}
.fc3{color:rgb(14,70,96);}
.fc2{color:rgb(70,120,133);}
.fc1{color:rgb(21,60,98);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fs4{font-size:12.240000px;}
.fs3{font-size:27.360000px;}
.fs5{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:4.500000px;}
.y74{bottom:4.680000px;}
.y65{bottom:4.860000px;}
.y67{bottom:5.040000px;}
.y7e{bottom:5.580000px;}
.y7b{bottom:5.940000px;}
.y6{bottom:6.300000px;}
.y5{bottom:28.440000px;}
.y4{bottom:50.430000px;}
.y3{bottom:72.390000px;}
.y7{bottom:73.440000px;}
.y9{bottom:81.900000px;}
.y2{bottom:94.350000px;}
.y39{bottom:121.320000px;}
.y6e{bottom:128.700000px;}
.ya3{bottom:135.180000px;}
.y38{bottom:138.600000px;}
.y6d{bottom:147.780000px;}
.ya2{bottom:152.460000px;}
.y37{bottom:155.700000px;}
.y6c{bottom:167.070000px;}
.ya1{bottom:169.770000px;}
.y36{bottom:173.010000px;}
.y6b{bottom:185.610000px;}
.y35{bottom:190.290000px;}
.ya0{bottom:204.150000px;}
.y34{bottom:207.570000px;}
.y9f{bottom:221.430000px;}
.y6a{bottom:223.230000px;}
.y33{bottom:224.850000px;}
.y9e{bottom:238.710000px;}
.y69{bottom:239.430000px;}
.y32{bottom:242.130000px;}
.y9d{bottom:255.990000px;}
.y68{bottom:258.150000px;}
.y31{bottom:259.230000px;}
.y9c{bottom:273.270000px;}
.y30{bottom:276.510000px;}
.y66{bottom:277.230000px;}
.y9b{bottom:290.550000px;}
.y2f{bottom:293.790000px;}
.y64{bottom:297.210000px;}
.y2e{bottom:311.070000px;}
.y63{bottom:320.070000px;}
.y9a{bottom:325.110000px;}
.y2d{bottom:328.350000px;}
.y62{bottom:339.510000px;}
.y99{bottom:342.210000px;}
.y2c{bottom:345.630000px;}
.y61{bottom:358.410000px;}
.y98{bottom:359.490000px;}
.y2b{bottom:362.730000px;}
.y60{bottom:377.670000px;}
.y2a{bottom:380.010000px;}
.y97{bottom:393.870000px;}
.y5f{bottom:396.570000px;}
.y29{bottom:397.290000px;}
.y96{bottom:411.195000px;}
.y28{bottom:414.615000px;}
.y5e{bottom:415.515000px;}
.y95{bottom:428.475000px;}
.y27{bottom:431.895000px;}
.y5d{bottom:434.775000px;}
.y94{bottom:445.935000px;}
.y26{bottom:449.535000px;}
.y93{bottom:463.215000px;}
.y25{bottom:470.415000px;}
.y5c{bottom:472.395000px;}
.y92{bottom:480.315000px;}
.y24{bottom:490.755000px;}
.y5b{bottom:491.295000px;}
.y91{bottom:498.315000px;}
.y5a{bottom:510.375000px;}
.y23{bottom:511.815000px;}
.y90{bottom:519.015000px;}
.y22{bottom:529.095000px;}
.y8f{bottom:539.175000px;}
.y59{bottom:544.215000px;}
.y21{bottom:546.195000px;}
.y58{bottom:548.715000px;}
.y8e{bottom:556.455000px;}
.y57{bottom:565.995000px;}
.y20{bottom:567.255000px;}
.y8d{bottom:573.735000px;}
.y56{bottom:583.275000px;}
.y1f{bottom:584.535000px;}
.y8c{bottom:591.735000px;}
.y55{bottom:600.555000px;}
.y1e{bottom:601.815000px;}
.y8b{bottom:612.435000px;}
.y54{bottom:617.835000px;}
.y1d{bottom:619.095000px;}
.y8a{bottom:632.775000px;}
.y53{bottom:635.475000px;}
.y1c{bottom:636.195000px;}
.y89{bottom:649.875000px;}
.y52{bottom:652.395000px;}
.y1b{bottom:653.475000px;}
.y51{bottom:665.745000px;}
.y88{bottom:667.185000px;}
.y50{bottom:670.245000px;}
.y1a{bottom:670.785000px;}
.y87{bottom:684.465000px;}
.y19{bottom:688.065000px;}
.y4f{bottom:689.685000px;}
.y86{bottom:701.745000px;}
.y18{bottom:705.345000px;}
.y4e{bottom:705.705000px;}
.y85{bottom:719.025000px;}
.y17{bottom:723.345000px;}
.y84{bottom:736.305000px;}
.y4d{bottom:740.085000px;}
.y16{bottom:745.485000px;}
.y83{bottom:753.585000px;}
.y4c{bottom:757.365000px;}
.y82{bottom:770.865000px;}
.y4b{bottom:774.465000px;}
.y15{bottom:778.425000px;}
.y81{bottom:787.965000px;}
.y4a{bottom:791.745000px;}
.y14{bottom:795.705000px;}
.y80{bottom:805.245000px;}
.y49{bottom:809.565000px;}
.y13{bottom:821.625000px;}
.y48{bottom:830.625000px;}
.y12{bottom:839.445000px;}
.y7f{bottom:841.245000px;}
.y47{bottom:850.785000px;}
.y7c{bottom:857.625000px;}
.y11{bottom:865.725000px;}
.y46{bottom:868.065000px;}
.y7a{bottom:874.545000px;}
.yaa{bottom:875.445000px;}
.y45{bottom:885.345000px;}
.y10{bottom:890.925000px;}
.y79{bottom:891.825000px;}
.ya9{bottom:892.725000px;}
.y44{bottom:902.670000px;}
.y78{bottom:910.050000px;}
.yf{bottom:912.030000px;}
.y43{bottom:919.950000px;}
.ya8{bottom:927.150000px;}
.y77{bottom:932.010000px;}
.y42{bottom:937.230000px;}
.ye{bottom:941.910000px;}
.ya7{bottom:944.430000px;}
.y76{bottom:950.910000px;}
.y41{bottom:954.510000px;}
.ya6{bottom:961.710000px;}
.yd{bottom:967.470000px;}
.y40{bottom:971.790000px;}
.y75{bottom:986.010000px;}
.y3f{bottom:989.610000px;}
.ya5{bottom:996.090000px;}
.yc{bottom:998.430000px;}
.y73{bottom:1004.010000px;}
.y3e{bottom:1010.310000px;}
.ya4{bottom:1013.370000px;}
.y72{bottom:1025.610000px;}
.y3d{bottom:1030.650000px;}
.yb{bottom:1032.990000px;}
.y71{bottom:1044.690000px;}
.y3c{bottom:1047.930000px;}
.ya{bottom:1058.550000px;}
.y3b{bottom:1065.210000px;}
.y70{bottom:1066.650000px;}
.y3a{bottom:1082.310000px;}
.y6f{bottom:1085.550000px;}
.y1{bottom:1098.690000px;}
.y8{bottom:1209.060000px;}
.hf{height:4.210313px;}
.h9{height:8.946914px;}
.h15{height:16.740000px;}
.h19{height:16.920000px;}
.h16{height:17.280000px;}
.h17{height:17.496000px;}
.h12{height:18.720000px;}
.h14{height:19.080000px;}
.h13{height:19.260000px;}
.h8{height:19.998984px;}
.h4{height:24.840000px;}
.h18{height:33.494766px;}
.hd{height:39.471680px;}
.h6{height:43.681992px;}
.he{height:44.936719px;}
.h11{height:48.418594px;}
.h10{height:49.809375px;}
.ha{height:52.628906px;}
.h5{height:53.085938px;}
.hc{height:54.140625px;}
.h3{height:54.808594px;}
.hb{height:60.034219px;}
.h7{height:61.575820px;}
.h2{height:112.716000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:19.980000px;}
.we{width:71.496000px;}
.w10{width:90.756000px;}
.wc{width:103.500000px;}
.w6{width:113.796000px;}
.w9{width:125.316000px;}
.wf{width:130.320000px;}
.w11{width:138.996000px;}
.wd{width:143.496000px;}
.w7{width:152.490000px;}
.wa{width:171.030000px;}
.w5{width:191.010000px;}
.w8{width:193.530000px;}
.wb{width:201.990000px;}
.w2{width:651.210000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x2{left:3.420000px;}
.x9{left:4.500000px;}
.x18{left:8.640000px;}
.x1a{left:10.260000px;}
.x24{left:18.360000px;}
.x27{left:28.800000px;}
.x2a{left:33.120000px;}
.x1c{left:48.960000px;}
.x21{left:57.420000px;}
.x1f{left:75.960000px;}
.xa{left:95.615987px;}
.xb{left:108.035987px;}
.x12{left:134.135987px;}
.x1{left:135.576000px;}
.x2b{left:139.715987px;}
.x15{left:143.135987px;}
.x11{left:144.935987px;}
.x13{left:150.509987px;}
.x10{left:162.029987px;}
.xe{left:180.389987px;}
.xf{left:183.989987px;}
.x23{left:210.990000px;}
.x1e{left:260.355000px;}
.xc{left:266.654987px;}
.x19{left:326.055000px;}
.x17{left:340.454987px;}
.xd{left:352.514987px;}
.x25{left:354.495000px;}
.x14{left:359.354987px;}
.x7{left:403.989000px;}
.x5{left:410.469000px;}
.x26{left:425.985000px;}
.x20{left:431.385000px;}
.x1b{left:439.845000px;}
.x6{left:465.054000px;}
.x4{left:537.234000px;}
.x28{left:556.305000px;}
.x3{left:558.654000px;}
.x22{left:583.890000px;}
.x1d{left:592.350000px;}
.x29{left:647.070000px;}
.x16{left:714.209987px;}
.x8{left:771.300000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls14{letter-spacing:-1.514667pt;}
.ls13{letter-spacing:-1.413333pt;}
.ls1a{letter-spacing:-1.376000pt;}
.ls4{letter-spacing:-1.306667pt;}
.ls19{letter-spacing:-1.232000pt;}
.ls2{letter-spacing:-1.024000pt;}
.ls5{letter-spacing:-0.976000pt;}
.lsc{letter-spacing:-0.736000pt;}
.ls1{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.272533pt;}
.ls11{letter-spacing:-0.233067pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls21{letter-spacing:-0.225067pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls18{letter-spacing:-0.135467pt;}
.lse{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.097067pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls1b{letter-spacing:-0.089067pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.011947pt;}
.ls1f{letter-spacing:0.047360pt;}
.ls1e{letter-spacing:0.183467pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.233067pt;}
.lsb{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.271467pt;}
.ls20{letter-spacing:0.272533pt;}
.lsd{letter-spacing:0.367467pt;}
.lsf{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.545280pt;}
.lsa{letter-spacing:0.592000pt;}
.ls22{letter-spacing:0.705280pt;}
.ls3{letter-spacing:3.456000pt;}
.ws3{word-spacing:-22.720000pt;}
.ws6{word-spacing:-20.816640pt;}
.ws5{word-spacing:-19.840640pt;}
.ws4{word-spacing:-19.509973pt;}
.ws2{word-spacing:-19.264000pt;}
.ws0{word-spacing:-18.880000pt;}
.ws1{word-spacing:-18.240000pt;}
.wsd{word-spacing:-18.048000pt;}
.ws11{word-spacing:-17.664000pt;}
.ws7{word-spacing:-17.600000pt;}
.ws14{word-spacing:-16.640107pt;}
.ws1a{word-spacing:-16.601707pt;}
.ws13{word-spacing:-16.368640pt;}
.ws16{word-spacing:-16.271573pt;}
.ws1b{word-spacing:-16.233173pt;}
.ws17{word-spacing:-16.135573pt;}
.ws15{word-spacing:-15.632640pt;}
.wsc{word-spacing:-15.359360pt;}
.ws12{word-spacing:-15.311360pt;}
.wsf{word-spacing:-15.134827pt;}
.ws23{word-spacing:-15.039893pt;}
.ws20{word-spacing:-14.998293pt;}
.ws18{word-spacing:-14.955307pt;}
.ws21{word-spacing:-14.950827pt;}
.ws19{word-spacing:-14.853973pt;}
.ws22{word-spacing:-14.814720pt;}
.ws9{word-spacing:-14.767360pt;}
.wsb{word-spacing:-14.720000pt;}
.ws1e{word-spacing:-14.678293pt;}
.ws8{word-spacing:-14.672427pt;}
.ws24{word-spacing:-14.542293pt;}
.ws1f{word-spacing:-14.536427pt;}
.wsa{word-spacing:-14.494827pt;}
.wse{word-spacing:-14.031360pt;}
.ws1c{word-spacing:-13.535360pt;}
.ws1d{word-spacing:-13.391360pt;}
.ws10{word-spacing:0.000000pt;}
._6{margin-left:-7.296000pt;}
._5{margin-left:-6.208000pt;}
._3{margin-left:-4.757333pt;}
._2{margin-left:-3.573333pt;}
._1{margin-left:-2.048000pt;}
._0{margin-left:-1.152000pt;}
._4{width:1.077333pt;}
._9{width:2.240000pt;}
._7{width:3.136000pt;}
._8{width:4.032000pt;}
._a{width:4.998400pt;}
._d{width:6.852480pt;}
._e{width:8.339840pt;}
._10{width:9.402240pt;}
._1a{width:10.617387pt;}
._b{width:11.580160pt;}
._f{width:12.674133pt;}
._c{width:23.658667pt;}
._1b{width:69.693440pt;}
._11{width:559.771733pt;}
._17{width:714.003627pt;}
._16{width:758.347520pt;}
._14{width:765.022507pt;}
._18{width:799.633067pt;}
._15{width:854.149333pt;}
._13{width:886.605653pt;}
._12{width:965.442773pt;}
._19{width:1942.734507pt;}
.fs7{font-size:5.120000pt;}
.fs4{font-size:10.880000pt;}
.fs3{font-size:24.320000pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:4.000000pt;}
.y74{bottom:4.160000pt;}
.y65{bottom:4.320000pt;}
.y67{bottom:4.480000pt;}
.y7e{bottom:4.960000pt;}
.y7b{bottom:5.280000pt;}
.y6{bottom:5.600000pt;}
.y5{bottom:25.280000pt;}
.y4{bottom:44.826667pt;}
.y3{bottom:64.346667pt;}
.y7{bottom:65.280000pt;}
.y9{bottom:72.800000pt;}
.y2{bottom:83.866667pt;}
.y39{bottom:107.840000pt;}
.y6e{bottom:114.400000pt;}
.ya3{bottom:120.160000pt;}
.y38{bottom:123.200000pt;}
.y6d{bottom:131.360000pt;}
.ya2{bottom:135.520000pt;}
.y37{bottom:138.400000pt;}
.y6c{bottom:148.506667pt;}
.ya1{bottom:150.906667pt;}
.y36{bottom:153.786667pt;}
.y6b{bottom:164.986667pt;}
.y35{bottom:169.146667pt;}
.ya0{bottom:181.466667pt;}
.y34{bottom:184.506667pt;}
.y9f{bottom:196.826667pt;}
.y6a{bottom:198.426667pt;}
.y33{bottom:199.866667pt;}
.y9e{bottom:212.186667pt;}
.y69{bottom:212.826667pt;}
.y32{bottom:215.226667pt;}
.y9d{bottom:227.546667pt;}
.y68{bottom:229.466667pt;}
.y31{bottom:230.426667pt;}
.y9c{bottom:242.906667pt;}
.y30{bottom:245.786667pt;}
.y66{bottom:246.426667pt;}
.y9b{bottom:258.266667pt;}
.y2f{bottom:261.146667pt;}
.y64{bottom:264.186667pt;}
.y2e{bottom:276.506667pt;}
.y63{bottom:284.506667pt;}
.y9a{bottom:288.986667pt;}
.y2d{bottom:291.866667pt;}
.y62{bottom:301.786667pt;}
.y99{bottom:304.186667pt;}
.y2c{bottom:307.226667pt;}
.y61{bottom:318.586667pt;}
.y98{bottom:319.546667pt;}
.y2b{bottom:322.426667pt;}
.y60{bottom:335.706667pt;}
.y2a{bottom:337.786667pt;}
.y97{bottom:350.106667pt;}
.y5f{bottom:352.506667pt;}
.y29{bottom:353.146667pt;}
.y96{bottom:365.506667pt;}
.y28{bottom:368.546667pt;}
.y5e{bottom:369.346667pt;}
.y95{bottom:380.866667pt;}
.y27{bottom:383.906667pt;}
.y5d{bottom:386.466667pt;}
.y94{bottom:396.386667pt;}
.y26{bottom:399.586667pt;}
.y93{bottom:411.746667pt;}
.y25{bottom:418.146667pt;}
.y5c{bottom:419.906667pt;}
.y92{bottom:426.946667pt;}
.y24{bottom:436.226667pt;}
.y5b{bottom:436.706667pt;}
.y91{bottom:442.946667pt;}
.y5a{bottom:453.666667pt;}
.y23{bottom:454.946667pt;}
.y90{bottom:461.346667pt;}
.y22{bottom:470.306667pt;}
.y8f{bottom:479.266667pt;}
.y59{bottom:483.746667pt;}
.y21{bottom:485.506667pt;}
.y58{bottom:487.746667pt;}
.y8e{bottom:494.626667pt;}
.y57{bottom:503.106667pt;}
.y20{bottom:504.226667pt;}
.y8d{bottom:509.986667pt;}
.y56{bottom:518.466667pt;}
.y1f{bottom:519.586667pt;}
.y8c{bottom:525.986667pt;}
.y55{bottom:533.826667pt;}
.y1e{bottom:534.946667pt;}
.y8b{bottom:544.386667pt;}
.y54{bottom:549.186667pt;}
.y1d{bottom:550.306667pt;}
.y8a{bottom:562.466667pt;}
.y53{bottom:564.866667pt;}
.y1c{bottom:565.506667pt;}
.y89{bottom:577.666667pt;}
.y52{bottom:579.906667pt;}
.y1b{bottom:580.866667pt;}
.y51{bottom:591.773333pt;}
.y88{bottom:593.053333pt;}
.y50{bottom:595.773333pt;}
.y1a{bottom:596.253333pt;}
.y87{bottom:608.413333pt;}
.y19{bottom:611.613333pt;}
.y4f{bottom:613.053333pt;}
.y86{bottom:623.773333pt;}
.y18{bottom:626.973333pt;}
.y4e{bottom:627.293333pt;}
.y85{bottom:639.133333pt;}
.y17{bottom:642.973333pt;}
.y84{bottom:654.493333pt;}
.y4d{bottom:657.853333pt;}
.y16{bottom:662.653333pt;}
.y83{bottom:669.853333pt;}
.y4c{bottom:673.213333pt;}
.y82{bottom:685.213333pt;}
.y4b{bottom:688.413333pt;}
.y15{bottom:691.933333pt;}
.y81{bottom:700.413333pt;}
.y4a{bottom:703.773333pt;}
.y14{bottom:707.293333pt;}
.y80{bottom:715.773333pt;}
.y49{bottom:719.613333pt;}
.y13{bottom:730.333333pt;}
.y48{bottom:738.333333pt;}
.y12{bottom:746.173333pt;}
.y7f{bottom:747.773333pt;}
.y47{bottom:756.253333pt;}
.y7c{bottom:762.333333pt;}
.y11{bottom:769.533333pt;}
.y46{bottom:771.613333pt;}
.y7a{bottom:777.373333pt;}
.yaa{bottom:778.173333pt;}
.y45{bottom:786.973333pt;}
.y10{bottom:791.933333pt;}
.y79{bottom:792.733333pt;}
.ya9{bottom:793.533333pt;}
.y44{bottom:802.373333pt;}
.y78{bottom:808.933333pt;}
.yf{bottom:810.693333pt;}
.y43{bottom:817.733333pt;}
.ya8{bottom:824.133333pt;}
.y77{bottom:828.453333pt;}
.y42{bottom:833.093333pt;}
.ye{bottom:837.253333pt;}
.ya7{bottom:839.493333pt;}
.y76{bottom:845.253333pt;}
.y41{bottom:848.453333pt;}
.ya6{bottom:854.853333pt;}
.yd{bottom:859.973333pt;}
.y40{bottom:863.813333pt;}
.y75{bottom:876.453333pt;}
.y3f{bottom:879.653333pt;}
.ya5{bottom:885.413333pt;}
.yc{bottom:887.493333pt;}
.y73{bottom:892.453333pt;}
.y3e{bottom:898.053333pt;}
.ya4{bottom:900.773333pt;}
.y72{bottom:911.653333pt;}
.y3d{bottom:916.133333pt;}
.yb{bottom:918.213333pt;}
.y71{bottom:928.613333pt;}
.y3c{bottom:931.493333pt;}
.ya{bottom:940.933333pt;}
.y3b{bottom:946.853333pt;}
.y70{bottom:948.133333pt;}
.y3a{bottom:962.053333pt;}
.y6f{bottom:964.933333pt;}
.y1{bottom:976.613333pt;}
.y8{bottom:1074.720000pt;}
.hf{height:3.742500pt;}
.h9{height:7.952812pt;}
.h15{height:14.880000pt;}
.h19{height:15.040000pt;}
.h16{height:15.360000pt;}
.h17{height:15.552000pt;}
.h12{height:16.640000pt;}
.h14{height:16.960000pt;}
.h13{height:17.120000pt;}
.h8{height:17.776875pt;}
.h4{height:22.080000pt;}
.h18{height:29.773125pt;}
.hd{height:35.085938pt;}
.h6{height:38.828437pt;}
.he{height:39.943750pt;}
.h11{height:43.038750pt;}
.h10{height:44.275000pt;}
.ha{height:46.781250pt;}
.h5{height:47.187500pt;}
.hc{height:48.125000pt;}
.h3{height:48.718750pt;}
.hb{height:53.363750pt;}
.h7{height:54.734062pt;}
.h2{height:100.192000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:17.760000pt;}
.we{width:63.552000pt;}
.w10{width:80.672000pt;}
.wc{width:92.000000pt;}
.w6{width:101.152000pt;}
.w9{width:111.392000pt;}
.wf{width:115.840000pt;}
.w11{width:123.552000pt;}
.wd{width:127.552000pt;}
.w7{width:135.546667pt;}
.wa{width:152.026667pt;}
.w5{width:169.786667pt;}
.w8{width:172.026667pt;}
.wb{width:179.546667pt;}
.w2{width:578.853333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x2{left:3.040000pt;}
.x9{left:4.000000pt;}
.x18{left:7.680000pt;}
.x1a{left:9.120000pt;}
.x24{left:16.320000pt;}
.x27{left:25.600000pt;}
.x2a{left:29.440000pt;}
.x1c{left:43.520000pt;}
.x21{left:51.040000pt;}
.x1f{left:67.520000pt;}
.xa{left:84.991988pt;}
.xb{left:96.031988pt;}
.x12{left:119.231988pt;}
.x1{left:120.512000pt;}
.x2b{left:124.191988pt;}
.x15{left:127.231988pt;}
.x11{left:128.831988pt;}
.x13{left:133.786655pt;}
.x10{left:144.026655pt;}
.xe{left:160.346655pt;}
.xf{left:163.546655pt;}
.x23{left:187.546667pt;}
.x1e{left:231.426667pt;}
.xc{left:237.026655pt;}
.x19{left:289.826667pt;}
.x17{left:302.626655pt;}
.xd{left:313.346655pt;}
.x25{left:315.106667pt;}
.x14{left:319.426655pt;}
.x7{left:359.101333pt;}
.x5{left:364.861333pt;}
.x26{left:378.653333pt;}
.x20{left:383.453333pt;}
.x1b{left:390.973333pt;}
.x6{left:413.381333pt;}
.x4{left:477.541333pt;}
.x28{left:494.493333pt;}
.x3{left:496.581333pt;}
.x22{left:519.013333pt;}
.x1d{left:526.533333pt;}
.x29{left:575.173333pt;}
.x16{left:634.853321pt;}
.x8{left:685.600000pt;}
}




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