
    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_166519ce96f222ba272abe02.woff')format("woff");}.ff1{font-family:ff1;line-height:1.130371;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_e7e4fc63b55bbfa0761743d3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.130371;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_5fd439bafc600501849cbae9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.916992;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_126e72f5f428f3a0eb07c25c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.859375;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_4834f2a55b28f895eb27ae0d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916992;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_86bb763ce440065fb29099a9.woff')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_ed2266eb59397a39c64a564f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_8455c208f1242d7ee291bab4.woff')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_0e0adf950c9284c405fcbec3.woff')format("woff");}.ff9{font-family:ff9;line-height:0.937988;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:ffa;src:url('chunks/assets/font_e813edc4a61786cfd8dd524e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.937988;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:ffb;src:url('chunks/assets/font_c7b633bd0201d4d0d4a8f867.woff')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.414000px;}
.lsf{letter-spacing:0.720000px;}
.lsb{letter-spacing:5.040000px;}
.lsc{letter-spacing:8.640000px;}
.ls4{letter-spacing:9.360000px;}
.ls8{letter-spacing:11.664000px;}
.ls9{letter-spacing:15.840000px;}
.ls5{letter-spacing:17.280000px;}
.lsa{letter-spacing:18.720000px;}
.lse{letter-spacing:33.840000px;}
.lsd{letter-spacing:54.144000px;}
.ls2{letter-spacing:75.720000px;}
.ls1{letter-spacing:92.880000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(48,88,236),0 0.015em rgb(48,88,236),0.015em 0 rgb(48,88,236),0 -0.015em  rgb(48,88,236);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(48,88,236);text-shadow:none;}
}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.272000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-12.060000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.116000px;}
._0{width:1.092000px;}
._4{width:3.024000px;}
._5{width:4.032000px;}
._1a{width:5.544000px;}
._6{width:7.200000px;}
._10{width:8.568000px;}
._7{width:10.008000px;}
._8{width:11.160000px;}
._15{width:15.120000px;}
._d{width:16.704000px;}
._17{width:19.260000px;}
._14{width:20.736000px;}
._b{width:22.032000px;}
._c{width:23.388000px;}
._12{width:25.140000px;}
._9{width:26.640000px;}
._a{width:27.708000px;}
._20{width:28.728000px;}
._16{width:30.096000px;}
._19{width:31.392000px;}
._11{width:32.472000px;}
._3{width:34.416000px;}
._2{width:35.832000px;}
._18{width:44.568000px;}
._e{width:46.584000px;}
._f{width:47.628000px;}
._13{width:49.032000px;}
._21{width:52.920000px;}
._1c{width:65.016000px;}
._1b{width:66.312000px;}
._1d{width:67.620000px;}
._1f{width:72.792000px;}
._1e{width:74.088000px;}
._22{width:75.168000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(112,48,160);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc6{color:transparent;}
.fc0{color:rgb(48,88,236);}
.fs3{font-size:5.760000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y7a{bottom:-36.180000px;}
.y67{bottom:-29.520000px;}
.y6a{bottom:-26.280000px;}
.y34{bottom:-25.020000px;}
.y64{bottom:-23.790000px;}
.y6f{bottom:-20.700000px;}
.y6d{bottom:-20.520000px;}
.y73{bottom:-17.820000px;}
.y77{bottom:-14.220000px;}
.y79{bottom:-0.540000px;}
.y0{bottom:0.000000px;}
.y72{bottom:1.260000px;}
.y66{bottom:6.120000px;}
.y94{bottom:7.020000px;}
.y91{bottom:7.200000px;}
.yaf{bottom:7.380000px;}
.y76{bottom:7.740000px;}
.y69{bottom:9.360000px;}
.y3{bottom:10.260000px;}
.y63{bottom:11.880000px;}
.y33{bottom:12.096000px;}
.y6c{bottom:15.120000px;}
.y9b{bottom:18.900000px;}
.y71{bottom:23.220000px;}
.y75{bottom:29.700000px;}
.y9a{bottom:30.780000px;}
.y92{bottom:30.960000px;}
.yae{bottom:31.140000px;}
.yb1{bottom:42.840000px;}
.y98{bottom:54.720000px;}
.yad{bottom:54.900000px;}
.y4{bottom:55.440000px;}
.y2{bottom:57.780000px;}
.y32{bottom:62.640000px;}
.y9d{bottom:78.474000px;}
.y97{bottom:78.480000px;}
.yac{bottom:78.840000px;}
.y9c{bottom:90.576000px;}
.y31{bottom:91.116000px;}
.y61{bottom:102.996000px;}
.y30{bottom:114.876000px;}
.y60{bottom:126.756000px;}
.y2f{bottom:138.636000px;}
.y5f{bottom:150.510000px;}
.y2e{bottom:162.390000px;}
.y5e{bottom:174.450000px;}
.y2d{bottom:186.330000px;}
.y99{bottom:186.510000px;}
.y5d{bottom:198.210000px;}
.y2c{bottom:210.090000px;}
.y5c{bottom:221.970000px;}
.y2b{bottom:233.850000px;}
.y8f{bottom:241.950000px;}
.y5b{bottom:245.730000px;}
.y2a{bottom:257.610000px;}
.ycb{bottom:263.550000px;}
.y8e{bottom:265.710000px;}
.y5a{bottom:269.490000px;}
.y29{bottom:281.550000px;}
.yca{bottom:287.310000px;}
.y8d{bottom:289.650000px;}
.y59{bottom:293.430000px;}
.y28{bottom:305.310000px;}
.ya9{bottom:307.110000px;}
.yc9{bottom:311.070000px;}
.y8c{bottom:313.410000px;}
.y58{bottom:317.190000px;}
.y27{bottom:329.070000px;}
.ya8{bottom:331.050000px;}
.yc8{bottom:335.010000px;}
.y8b{bottom:337.215000px;}
.y57{bottom:340.995000px;}
.y26{bottom:352.875000px;}
.ya7{bottom:354.855000px;}
.yc7{bottom:358.815000px;}
.y8a{bottom:360.975000px;}
.y56{bottom:364.755000px;}
.y25{bottom:376.815000px;}
.ya6{bottom:378.615000px;}
.yc6{bottom:382.575000px;}
.y89{bottom:384.915000px;}
.y55{bottom:388.695000px;}
.y24{bottom:400.575000px;}
.ya5{bottom:402.375000px;}
.yc5{bottom:406.335000px;}
.y88{bottom:408.675000px;}
.y54{bottom:412.455000px;}
.y6e{bottom:422.175000px;}
.ya4{bottom:422.355000px;}
.y23{bottom:424.335000px;}
.y6b{bottom:426.855000px;}
.yc4{bottom:430.275000px;}
.y87{bottom:432.435000px;}
.y53{bottom:436.215000px;}
.y78{bottom:441.615000px;}
.y22{bottom:448.095000px;}
.yc3{bottom:454.035000px;}
.y86{bottom:456.195000px;}
.y52{bottom:459.975000px;}
.y21{bottom:472.035000px;}
.yc2{bottom:477.795000px;}
.y85{bottom:480.135000px;}
.y51{bottom:483.915000px;}
.y20{bottom:495.795000px;}
.y74{bottom:501.375000px;}
.yc1{bottom:501.555000px;}
.y84{bottom:503.895000px;}
.y50{bottom:507.675000px;}
.y70{bottom:517.935000px;}
.y1f{bottom:519.555000px;}
.yc0{bottom:525.315000px;}
.y65{bottom:526.215000px;}
.y68{bottom:526.575000px;}
.y83{bottom:527.655000px;}
.y4f{bottom:531.435000px;}
.y1e{bottom:543.315000px;}
.ybf{bottom:549.255000px;}
.y82{bottom:551.415000px;}
.y4e{bottom:555.195000px;}
.y1d{bottom:567.075000px;}
.ybe{bottom:573.015000px;}
.y81{bottom:575.355000px;}
.y4d{bottom:579.135000px;}
.y1c{bottom:591.015000px;}
.ybd{bottom:596.775000px;}
.y80{bottom:599.115000px;}
.y4c{bottom:602.895000px;}
.y1b{bottom:614.805000px;}
.ybc{bottom:620.565000px;}
.y62{bottom:622.725000px;}
.y7f{bottom:622.905000px;}
.y4b{bottom:626.685000px;}
.y1a{bottom:638.565000px;}
.ybb{bottom:644.505000px;}
.y7e{bottom:646.665000px;}
.y4a{bottom:650.445000px;}
.y19{bottom:662.325000px;}
.yba{bottom:668.265000px;}
.y7d{bottom:670.425000px;}
.y49{bottom:674.385000px;}
.y18{bottom:686.265000px;}
.yb9{bottom:692.025000px;}
.y7c{bottom:694.365000px;}
.y48{bottom:698.145000px;}
.y17{bottom:710.025000px;}
.yb8{bottom:715.785000px;}
.y7b{bottom:718.125000px;}
.y47{bottom:721.905000px;}
.y16{bottom:733.785000px;}
.y96{bottom:735.585000px;}
.yb7{bottom:739.725000px;}
.y46{bottom:745.665000px;}
.y15{bottom:757.545000px;}
.ya3{bottom:763.485000px;}
.y45{bottom:769.605000px;}
.y14{bottom:781.485000px;}
.ya2{bottom:787.245000px;}
.y44{bottom:793.365000px;}
.y13{bottom:805.245000px;}
.yb6{bottom:807.045000px;}
.ya1{bottom:811.185000px;}
.y43{bottom:817.125000px;}
.y12{bottom:829.005000px;}
.y95{bottom:831.525000px;}
.ya0{bottom:834.945000px;}
.y42{bottom:840.885000px;}
.y11{bottom:852.765000px;}
.y9f{bottom:858.705000px;}
.y41{bottom:864.645000px;}
.y10{bottom:876.750000px;}
.y93{bottom:879.990000px;}
.y9e{bottom:882.510000px;}
.y40{bottom:888.630000px;}
.yb4{bottom:900.150000px;}
.yf{bottom:900.510000px;}
.y90{bottom:904.470000px;}
.y3f{bottom:912.390000px;}
.ye{bottom:924.270000px;}
.yb5{bottom:924.630000px;}
.y3e{bottom:936.150000px;}
.yd{bottom:948.030000px;}
.y3d{bottom:959.910000px;}
.yb2{bottom:973.050000px;}
.yc{bottom:978.810000px;}
.y3c{bottom:983.850000px;}
.yb{bottom:995.730000px;}
.yb3{bottom:997.530000px;}
.y3b{bottom:1007.610000px;}
.ya{bottom:1026.330000px;}
.y3a{bottom:1031.370000px;}
.y9{bottom:1043.250000px;}
.yab{bottom:1045.950000px;}
.y39{bottom:1055.130000px;}
.y8{bottom:1067.010000px;}
.yb0{bottom:1070.430000px;}
.y38{bottom:1079.070000px;}
.y7{bottom:1093.290000px;}
.y37{bottom:1102.830000px;}
.y6{bottom:1124.970000px;}
.y36{bottom:1126.590000px;}
.yaa{bottom:1142.640000px;}
.y35{bottom:1150.380000px;}
.y5{bottom:1153.080000px;}
.y1{bottom:1211.760000px;}
.h6{height:5.484375px;}
.h13{height:23.220000px;}
.h1a{height:23.760000px;}
.h14{height:26.460000px;}
.h3{height:27.036000px;}
.h11{height:28.980000px;}
.he{height:29.196000px;}
.h15{height:32.220000px;}
.hb{height:33.824531px;}
.h16{height:40.320000px;}
.h7{height:41.902031px;}
.h18{height:46.800000px;}
.h1d{height:47.520000px;}
.h19{height:47.700000px;}
.h1b{height:47.736000px;}
.hd{height:49.992188px;}
.h4{height:50.484375px;}
.h2{height:51.416016px;}
.hc{height:51.996094px;}
.h10{height:52.417969px;}
.h5{height:53.561250px;}
.h17{height:56.900391px;}
.h9{height:62.261719px;}
.ha{height:65.475352px;}
.h12{height:68.554688px;}
.h1f{height:71.496000px;}
.h20{height:72.000000px;}
.hf{height:74.039062px;}
.h8{height:82.808086px;}
.h1c{height:95.220000px;}
.h1e{height:95.976000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:94.860000px;}
.w13{width:94.896000px;}
.w12{width:95.040000px;}
.w11{width:95.076000px;}
.wc{width:99.720000px;}
.w4{width:105.516000px;}
.w9{width:139.356000px;}
.wd{width:147.996000px;}
.w17{width:150.300000px;}
.we{width:152.130000px;}
.w8{width:152.310000px;}
.w16{width:155.730000px;}
.wf{width:166.890000px;}
.w18{width:167.070000px;}
.wa{width:202.350000px;}
.w14{width:225.570000px;}
.wb{width:230.070000px;}
.w5{width:305.310000px;}
.w3{width:305.355000px;}
.w15{width:474.735000px;}
.w7{width:479.445000px;}
.w6{width:496.005000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2b{left:1.080000px;}
.x5{left:7.560000px;}
.x14{left:10.800000px;}
.x1e{left:12.780000px;}
.x1a{left:13.860000px;}
.x1c{left:15.885000px;}
.x20{left:17.100000px;}
.x13{left:18.540000px;}
.x23{left:21.594000px;}
.x22{left:24.834000px;}
.x30{left:27.540000px;}
.x31{left:32.040000px;}
.x27{left:33.120000px;}
.x41{left:36.720000px;}
.x18{left:38.160000px;}
.x3c{left:42.165000px;}
.x43{left:46.485000px;}
.x42{left:47.520000px;}
.x25{left:52.785000px;}
.x45{left:57.060000px;}
.x33{left:59.034000px;}
.x36{left:60.834000px;}
.x37{left:62.820000px;}
.x39{left:63.900000px;}
.x44{left:64.980000px;}
.x3f{left:84.960000px;}
.x2{left:87.660000px;}
.x40{left:93.645000px;}
.x7{left:95.795987px;}
.x3b{left:99.765000px;}
.x32{left:104.934000px;}
.x1{left:107.495987px;}
.xd{left:114.155987px;}
.x29{left:123.876000px;}
.x48{left:127.835987px;}
.x21{left:130.536000px;}
.x1d{left:133.236000px;}
.x9{left:135.035987px;}
.x10{left:148.895987px;}
.xc{left:174.449987px;}
.x35{left:180.210000px;}
.x16{left:194.609987px;}
.x15{left:208.829987px;}
.x12{left:235.110000px;}
.x3d{left:236.369987px;}
.x1b{left:264.450000px;}
.x28{left:270.929987px;}
.x47{left:283.754987px;}
.x2a{left:291.495000px;}
.xf{left:295.814987px;}
.x3{left:297.795000px;}
.x34{left:322.275000px;}
.xe{left:333.974987px;}
.x26{left:352.875000px;}
.xa{left:358.634987px;}
.x2c{left:387.075000px;}
.x4{left:393.915000px;}
.x17{left:428.834987px;}
.x19{left:437.835000px;}
.xb{left:446.474987px;}
.x11{left:473.144987px;}
.x38{left:478.905000px;}
.x2d{left:482.865000px;}
.x6{left:500.145000px;}
.x1f{left:526.605000px;}
.x2e{left:578.625000px;}
.x3a{left:629.925000px;}
.x24{left:633.165000px;}
.x2f{left:674.250000px;}
.x8{left:714.029987px;}
.x3e{left:746.609987px;}
.x46{left:754.889987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.368000pt;}
.lsf{letter-spacing:0.640000pt;}
.lsb{letter-spacing:4.480000pt;}
.lsc{letter-spacing:7.680000pt;}
.ls4{letter-spacing:8.320000pt;}
.ls8{letter-spacing:10.368000pt;}
.ls9{letter-spacing:14.080000pt;}
.ls5{letter-spacing:15.360000pt;}
.lsa{letter-spacing:16.640000pt;}
.lse{letter-spacing:30.080000pt;}
.lsd{letter-spacing:48.128000pt;}
.ls2{letter-spacing:67.306667pt;}
.ls1{letter-spacing:82.560000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.464000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-0.992000pt;}
._0{width:0.970667pt;}
._4{width:2.688000pt;}
._5{width:3.584000pt;}
._1a{width:4.928000pt;}
._6{width:6.400000pt;}
._10{width:7.616000pt;}
._7{width:8.896000pt;}
._8{width:9.920000pt;}
._15{width:13.440000pt;}
._d{width:14.848000pt;}
._17{width:17.120000pt;}
._14{width:18.432000pt;}
._b{width:19.584000pt;}
._c{width:20.789333pt;}
._12{width:22.346667pt;}
._9{width:23.680000pt;}
._a{width:24.629333pt;}
._20{width:25.536000pt;}
._16{width:26.752000pt;}
._19{width:27.904000pt;}
._11{width:28.864000pt;}
._3{width:30.592000pt;}
._2{width:31.850667pt;}
._18{width:39.616000pt;}
._e{width:41.408000pt;}
._f{width:42.336000pt;}
._13{width:43.584000pt;}
._21{width:47.040000pt;}
._1c{width:57.792000pt;}
._1b{width:58.944000pt;}
._1d{width:60.106667pt;}
._1f{width:64.704000pt;}
._1e{width:65.856000pt;}
._22{width:66.816000pt;}
.fs3{font-size:5.120000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y7a{bottom:-32.160000pt;}
.y67{bottom:-26.240000pt;}
.y6a{bottom:-23.360000pt;}
.y34{bottom:-22.240000pt;}
.y64{bottom:-21.146667pt;}
.y6f{bottom:-18.400000pt;}
.y6d{bottom:-18.240000pt;}
.y73{bottom:-15.840000pt;}
.y77{bottom:-12.640000pt;}
.y79{bottom:-0.480000pt;}
.y0{bottom:0.000000pt;}
.y72{bottom:1.120000pt;}
.y66{bottom:5.440000pt;}
.y94{bottom:6.240000pt;}
.y91{bottom:6.400000pt;}
.yaf{bottom:6.560000pt;}
.y76{bottom:6.880000pt;}
.y69{bottom:8.320000pt;}
.y3{bottom:9.120000pt;}
.y63{bottom:10.560000pt;}
.y33{bottom:10.752000pt;}
.y6c{bottom:13.440000pt;}
.y9b{bottom:16.800000pt;}
.y71{bottom:20.640000pt;}
.y75{bottom:26.400000pt;}
.y9a{bottom:27.360000pt;}
.y92{bottom:27.520000pt;}
.yae{bottom:27.680000pt;}
.yb1{bottom:38.080000pt;}
.y98{bottom:48.640000pt;}
.yad{bottom:48.800000pt;}
.y4{bottom:49.280000pt;}
.y2{bottom:51.360000pt;}
.y32{bottom:55.680000pt;}
.y9d{bottom:69.754667pt;}
.y97{bottom:69.760000pt;}
.yac{bottom:70.080000pt;}
.y9c{bottom:80.512000pt;}
.y31{bottom:80.992000pt;}
.y61{bottom:91.552000pt;}
.y30{bottom:102.112000pt;}
.y60{bottom:112.672000pt;}
.y2f{bottom:123.232000pt;}
.y5f{bottom:133.786667pt;}
.y2e{bottom:144.346667pt;}
.y5e{bottom:155.066667pt;}
.y2d{bottom:165.626667pt;}
.y99{bottom:165.786667pt;}
.y5d{bottom:176.186667pt;}
.y2c{bottom:186.746667pt;}
.y5c{bottom:197.306667pt;}
.y2b{bottom:207.866667pt;}
.y8f{bottom:215.066667pt;}
.y5b{bottom:218.426667pt;}
.y2a{bottom:228.986667pt;}
.ycb{bottom:234.266667pt;}
.y8e{bottom:236.186667pt;}
.y5a{bottom:239.546667pt;}
.y29{bottom:250.266667pt;}
.yca{bottom:255.386667pt;}
.y8d{bottom:257.466667pt;}
.y59{bottom:260.826667pt;}
.y28{bottom:271.386667pt;}
.ya9{bottom:272.986667pt;}
.yc9{bottom:276.506667pt;}
.y8c{bottom:278.586667pt;}
.y58{bottom:281.946667pt;}
.y27{bottom:292.506667pt;}
.ya8{bottom:294.266667pt;}
.yc8{bottom:297.786667pt;}
.y8b{bottom:299.746667pt;}
.y57{bottom:303.106667pt;}
.y26{bottom:313.666667pt;}
.ya7{bottom:315.426667pt;}
.yc7{bottom:318.946667pt;}
.y8a{bottom:320.866667pt;}
.y56{bottom:324.226667pt;}
.y25{bottom:334.946667pt;}
.ya6{bottom:336.546667pt;}
.yc6{bottom:340.066667pt;}
.y89{bottom:342.146667pt;}
.y55{bottom:345.506667pt;}
.y24{bottom:356.066667pt;}
.ya5{bottom:357.666667pt;}
.yc5{bottom:361.186667pt;}
.y88{bottom:363.266667pt;}
.y54{bottom:366.626667pt;}
.y6e{bottom:375.266667pt;}
.ya4{bottom:375.426667pt;}
.y23{bottom:377.186667pt;}
.y6b{bottom:379.426667pt;}
.yc4{bottom:382.466667pt;}
.y87{bottom:384.386667pt;}
.y53{bottom:387.746667pt;}
.y78{bottom:392.546667pt;}
.y22{bottom:398.306667pt;}
.yc3{bottom:403.586667pt;}
.y86{bottom:405.506667pt;}
.y52{bottom:408.866667pt;}
.y21{bottom:419.586667pt;}
.yc2{bottom:424.706667pt;}
.y85{bottom:426.786667pt;}
.y51{bottom:430.146667pt;}
.y20{bottom:440.706667pt;}
.y74{bottom:445.666667pt;}
.yc1{bottom:445.826667pt;}
.y84{bottom:447.906667pt;}
.y50{bottom:451.266667pt;}
.y70{bottom:460.386667pt;}
.y1f{bottom:461.826667pt;}
.yc0{bottom:466.946667pt;}
.y65{bottom:467.746667pt;}
.y68{bottom:468.066667pt;}
.y83{bottom:469.026667pt;}
.y4f{bottom:472.386667pt;}
.y1e{bottom:482.946667pt;}
.ybf{bottom:488.226667pt;}
.y82{bottom:490.146667pt;}
.y4e{bottom:493.506667pt;}
.y1d{bottom:504.066667pt;}
.ybe{bottom:509.346667pt;}
.y81{bottom:511.426667pt;}
.y4d{bottom:514.786667pt;}
.y1c{bottom:525.346667pt;}
.ybd{bottom:530.466667pt;}
.y80{bottom:532.546667pt;}
.y4c{bottom:535.906667pt;}
.y1b{bottom:546.493333pt;}
.ybc{bottom:551.613333pt;}
.y62{bottom:553.533333pt;}
.y7f{bottom:553.693333pt;}
.y4b{bottom:557.053333pt;}
.y1a{bottom:567.613333pt;}
.ybb{bottom:572.893333pt;}
.y7e{bottom:574.813333pt;}
.y4a{bottom:578.173333pt;}
.y19{bottom:588.733333pt;}
.yba{bottom:594.013333pt;}
.y7d{bottom:595.933333pt;}
.y49{bottom:599.453333pt;}
.y18{bottom:610.013333pt;}
.yb9{bottom:615.133333pt;}
.y7c{bottom:617.213333pt;}
.y48{bottom:620.573333pt;}
.y17{bottom:631.133333pt;}
.yb8{bottom:636.253333pt;}
.y7b{bottom:638.333333pt;}
.y47{bottom:641.693333pt;}
.y16{bottom:652.253333pt;}
.y96{bottom:653.853333pt;}
.yb7{bottom:657.533333pt;}
.y46{bottom:662.813333pt;}
.y15{bottom:673.373333pt;}
.ya3{bottom:678.653333pt;}
.y45{bottom:684.093333pt;}
.y14{bottom:694.653333pt;}
.ya2{bottom:699.773333pt;}
.y44{bottom:705.213333pt;}
.y13{bottom:715.773333pt;}
.yb6{bottom:717.373333pt;}
.ya1{bottom:721.053333pt;}
.y43{bottom:726.333333pt;}
.y12{bottom:736.893333pt;}
.y95{bottom:739.133333pt;}
.ya0{bottom:742.173333pt;}
.y42{bottom:747.453333pt;}
.y11{bottom:758.013333pt;}
.y9f{bottom:763.293333pt;}
.y41{bottom:768.573333pt;}
.y10{bottom:779.333333pt;}
.y93{bottom:782.213333pt;}
.y9e{bottom:784.453333pt;}
.y40{bottom:789.893333pt;}
.yb4{bottom:800.133333pt;}
.yf{bottom:800.453333pt;}
.y90{bottom:803.973333pt;}
.y3f{bottom:811.013333pt;}
.ye{bottom:821.573333pt;}
.yb5{bottom:821.893333pt;}
.y3e{bottom:832.133333pt;}
.yd{bottom:842.693333pt;}
.y3d{bottom:853.253333pt;}
.yb2{bottom:864.933333pt;}
.yc{bottom:870.053333pt;}
.y3c{bottom:874.533333pt;}
.yb{bottom:885.093333pt;}
.yb3{bottom:886.693333pt;}
.y3b{bottom:895.653333pt;}
.ya{bottom:912.293333pt;}
.y3a{bottom:916.773333pt;}
.y9{bottom:927.333333pt;}
.yab{bottom:929.733333pt;}
.y39{bottom:937.893333pt;}
.y8{bottom:948.453333pt;}
.yb0{bottom:951.493333pt;}
.y38{bottom:959.173333pt;}
.y7{bottom:971.813333pt;}
.y37{bottom:980.293333pt;}
.y6{bottom:999.973333pt;}
.y36{bottom:1001.413333pt;}
.yaa{bottom:1015.680000pt;}
.y35{bottom:1022.560000pt;}
.y5{bottom:1024.960000pt;}
.y1{bottom:1077.120000pt;}
.h6{height:4.875000pt;}
.h13{height:20.640000pt;}
.h1a{height:21.120000pt;}
.h14{height:23.520000pt;}
.h3{height:24.032000pt;}
.h11{height:25.760000pt;}
.he{height:25.952000pt;}
.h15{height:28.640000pt;}
.hb{height:30.066250pt;}
.h16{height:35.840000pt;}
.h7{height:37.246250pt;}
.h18{height:41.600000pt;}
.h1d{height:42.240000pt;}
.h19{height:42.400000pt;}
.h1b{height:42.432000pt;}
.hd{height:44.437500pt;}
.h4{height:44.875000pt;}
.h2{height:45.703125pt;}
.hc{height:46.218750pt;}
.h10{height:46.593750pt;}
.h5{height:47.610000pt;}
.h17{height:50.578125pt;}
.h9{height:55.343750pt;}
.ha{height:58.200312pt;}
.h12{height:60.937500pt;}
.h1f{height:63.552000pt;}
.h20{height:64.000000pt;}
.hf{height:65.812500pt;}
.h8{height:73.607188pt;}
.h1c{height:84.640000pt;}
.h1e{height:85.312000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:84.320000pt;}
.w13{width:84.352000pt;}
.w12{width:84.480000pt;}
.w11{width:84.512000pt;}
.wc{width:88.640000pt;}
.w4{width:93.792000pt;}
.w9{width:123.872000pt;}
.wd{width:131.552000pt;}
.w17{width:133.600000pt;}
.we{width:135.226667pt;}
.w8{width:135.386667pt;}
.w16{width:138.426667pt;}
.wf{width:148.346667pt;}
.w18{width:148.506667pt;}
.wa{width:179.866667pt;}
.w14{width:200.506667pt;}
.wb{width:204.506667pt;}
.w5{width:271.386667pt;}
.w3{width:271.426667pt;}
.w15{width:421.986667pt;}
.w7{width:426.173333pt;}
.w6{width:440.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:0.960000pt;}
.x5{left:6.720000pt;}
.x14{left:9.600000pt;}
.x1e{left:11.360000pt;}
.x1a{left:12.320000pt;}
.x1c{left:14.120000pt;}
.x20{left:15.200000pt;}
.x13{left:16.480000pt;}
.x23{left:19.194667pt;}
.x22{left:22.074667pt;}
.x30{left:24.480000pt;}
.x31{left:28.480000pt;}
.x27{left:29.440000pt;}
.x41{left:32.640000pt;}
.x18{left:33.920000pt;}
.x3c{left:37.480000pt;}
.x43{left:41.320000pt;}
.x42{left:42.240000pt;}
.x25{left:46.920000pt;}
.x45{left:50.720000pt;}
.x33{left:52.474667pt;}
.x36{left:54.074667pt;}
.x37{left:55.840000pt;}
.x39{left:56.800000pt;}
.x44{left:57.760000pt;}
.x3f{left:75.520000pt;}
.x2{left:77.920000pt;}
.x40{left:83.240000pt;}
.x7{left:85.151988pt;}
.x3b{left:88.680000pt;}
.x32{left:93.274667pt;}
.x1{left:95.551988pt;}
.xd{left:101.471988pt;}
.x29{left:110.112000pt;}
.x48{left:113.631988pt;}
.x21{left:116.032000pt;}
.x1d{left:118.432000pt;}
.x9{left:120.031988pt;}
.x10{left:132.351988pt;}
.xc{left:155.066655pt;}
.x35{left:160.186667pt;}
.x16{left:172.986655pt;}
.x15{left:185.626655pt;}
.x12{left:208.986667pt;}
.x3d{left:210.106655pt;}
.x1b{left:235.066667pt;}
.x28{left:240.826655pt;}
.x47{left:252.226655pt;}
.x2a{left:259.106667pt;}
.xf{left:262.946655pt;}
.x3{left:264.706667pt;}
.x34{left:286.466667pt;}
.xe{left:296.866655pt;}
.x26{left:313.666667pt;}
.xa{left:318.786655pt;}
.x2c{left:344.066667pt;}
.x4{left:350.146667pt;}
.x17{left:381.186655pt;}
.x19{left:389.186667pt;}
.xb{left:396.866655pt;}
.x11{left:420.573322pt;}
.x38{left:425.693333pt;}
.x2d{left:429.213333pt;}
.x6{left:444.573333pt;}
.x1f{left:468.093333pt;}
.x2e{left:514.333333pt;}
.x3a{left:559.933333pt;}
.x24{left:562.813333pt;}
.x2f{left:599.333333pt;}
.x8{left:634.693322pt;}
.x3e{left:663.653322pt;}
.x46{left:671.013322pt;}
}




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