
    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_72fda2facd1d94678b94ea89.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_7bff85be000a64e6c0aeb321.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_02f769034c28f5a22ad9af53.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_41b75a4bb061697199c2f772.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_f2f58b381daeede027ac33db.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_39722ae25dfc9bbc61e26d87.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_6458d4fbba5f1546d7fe90fe.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_0114e91c5c6157331607a869.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_6250b5a634e4d8c70eb18169.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_fbb5540f69ee1c2629c451ae.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_040fe3d6239d11907b1031c0.woff')format("woff");}.ffd{font-family:ffd;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5ad0eb12e51bcf1a407ec448.woff')format("woff");}.ffe{font-family:ffe;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_e4247e13101bdcc3c308fbde.woff')format("woff");}.fff{font-family:fff;line-height:0.934082;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:ff10;src:url('chunks/assets/font_b4665c3d1f9e048df4142ba8.woff')format("woff");}.ff10{font-family:ff10;line-height:1.172852;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:ff11;src:url('chunks/assets/font_08dbf37526193d649393f4e8.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_9d6fea71b3bce61fc239fdd6.woff')format("woff");}.ff12{font-family:ff12;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.066240px;}
.ls1{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.lsa{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.lsb{letter-spacing:10.260000px;}
.lsd{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.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:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws9{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:0.000000px;}
._13{margin-left:-7.197360px;}
._10{margin-left:-5.892000px;}
._4{margin-left:-4.259280px;}
._2{margin-left:-3.162240px;}
._3{margin-left:-2.151360px;}
._0{margin-left:-1.134000px;}
._1{width:1.056000px;}
._c{width:2.894640px;}
._a{width:3.996240px;}
._b{width:5.562720px;}
._7{width:6.707760px;}
._8{width:7.774320px;}
._9{width:9.809280px;}
._f{width:11.166480px;}
._12{width:12.307920px;}
._11{width:13.417920px;}
._19{width:16.936320px;}
._18{width:18.012240px;}
._6{width:19.202640px;}
._5{width:20.278320px;}
._e{width:21.591600px;}
._d{width:22.770000px;}
._17{width:28.852560px;}
._16{width:30.023280px;}
._15{width:35.318160px;}
._14{width:36.357840px;}
._1d{width:37.608720px;}
._1e{width:38.784240px;}
._1b{width:53.923200px;}
._1c{width:54.979920px;}
._1a{width:63.126240px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y2c{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.y3f{bottom:3.960000px;}
.y19{bottom:5.040000px;}
.ye{bottom:9.540000px;}
.y3d{bottom:10.620000px;}
.y1b{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y2b{bottom:17.820000px;}
.y2{bottom:20.196000px;}
.y3e{bottom:22.320000px;}
.y3c{bottom:25.380000px;}
.y18{bottom:29.520000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y2a{bottom:33.120000px;}
.y3a{bottom:40.140000px;}
.y17{bottom:45.900000px;}
.ya{bottom:46.440000px;}
.y29{bottom:50.760000px;}
.y1{bottom:52.380000px;}
.y39{bottom:57.420000px;}
.y16{bottom:62.505000px;}
.y28{bottom:68.040000px;}
.y9{bottom:73.440000px;}
.y38{bottom:74.520000px;}
.y15{bottom:78.165000px;}
.y27{bottom:85.320000px;}
.y14{bottom:88.605000px;}
.y37{bottom:91.800000px;}
.y8{bottom:93.060000px;}
.y26{bottom:102.990000px;}
.y13{bottom:106.965000px;}
.y36{bottom:109.110000px;}
.y7{bottom:111.270000px;}
.y25{bottom:120.450000px;}
.y51{bottom:120.996000px;}
.y12{bottom:126.045000px;}
.y35{bottom:126.390000px;}
.y75{bottom:128.376000px;}
.y24{bottom:137.190000px;}
.y50{bottom:140.796000px;}
.y34{bottom:143.670000px;}
.y74{bottom:148.356000px;}
.y96{bottom:149.616000px;}
.y11{bottom:151.785000px;}
.y23{bottom:153.570000px;}
.y4f{bottom:160.590000px;}
.y33{bottom:160.950000px;}
.y73{bottom:168.150000px;}
.yb4{bottom:168.690000px;}
.y95{bottom:169.590000px;}
.y22{bottom:169.950000px;}
.y10{bottom:176.085000px;}
.y32{bottom:178.050000px;}
.y4e{bottom:180.390000px;}
.y21{bottom:186.330000px;}
.y72{bottom:187.950000px;}
.yb3{bottom:188.490000px;}
.y94{bottom:189.390000px;}
.y31{bottom:195.330000px;}
.y4d{bottom:200.190000px;}
.y20{bottom:203.610000px;}
.y71{bottom:207.750000px;}
.yb2{bottom:208.470000px;}
.y93{bottom:209.190000px;}
.y30{bottom:212.610000px;}
.y4c{bottom:220.170000px;}
.y1f{bottom:221.970000px;}
.y70{bottom:227.550000px;}
.yb1{bottom:228.270000px;}
.y92{bottom:228.990000px;}
.y2f{bottom:229.890000px;}
.y4b{bottom:239.970000px;}
.y2e{bottom:247.170000px;}
.y6f{bottom:247.530000px;}
.yb0{bottom:248.070000px;}
.y91{bottom:248.790000px;}
.y1e{bottom:249.330000px;}
.y4a{bottom:259.770000px;}
.y2d{bottom:264.270000px;}
.y1d{bottom:266.970000px;}
.y6e{bottom:267.330000px;}
.yaf{bottom:267.870000px;}
.y90{bottom:268.770000px;}
.y49{bottom:279.570000px;}
.y6d{bottom:287.130000px;}
.yae{bottom:287.670000px;}
.y8f{bottom:288.570000px;}
.y48{bottom:299.370000px;}
.y6c{bottom:306.930000px;}
.yad{bottom:307.650000px;}
.y8e{bottom:308.370000px;}
.y47{bottom:319.350000px;}
.y6b{bottom:326.730000px;}
.yac{bottom:327.450000px;}
.y8d{bottom:328.170000px;}
.y46{bottom:339.195000px;}
.y6a{bottom:346.755000px;}
.yab{bottom:347.295000px;}
.y8c{bottom:348.015000px;}
.y45{bottom:358.995000px;}
.y69{bottom:366.555000px;}
.yaa{bottom:367.095000px;}
.y8b{bottom:367.995000px;}
.y44{bottom:378.795000px;}
.y68{bottom:386.355000px;}
.ya9{bottom:386.895000px;}
.y8a{bottom:387.795000px;}
.y43{bottom:398.595000px;}
.y67{bottom:406.155000px;}
.ya8{bottom:406.875000px;}
.y89{bottom:407.595000px;}
.y42{bottom:418.575000px;}
.y66{bottom:422.715000px;}
.ya7{bottom:426.675000px;}
.y88{bottom:427.395000px;}
.y41{bottom:438.375000px;}
.ya6{bottom:446.475000px;}
.y87{bottom:447.195000px;}
.y40{bottom:458.175000px;}
.ya5{bottom:466.275000px;}
.y86{bottom:467.175000px;}
.y3b{bottom:472.215000px;}
.ya4{bottom:486.075000px;}
.y85{bottom:486.975000px;}
.ya3{bottom:506.055000px;}
.y84{bottom:506.775000px;}
.y1c{bottom:508.935000px;}
.ya2{bottom:525.855000px;}
.y83{bottom:526.575000px;}
.ya1{bottom:545.655000px;}
.y82{bottom:546.375000px;}
.ya0{bottom:565.455000px;}
.y81{bottom:566.355000px;}
.y9f{bottom:585.255000px;}
.y80{bottom:586.155000px;}
.y9e{bottom:605.265000px;}
.y7f{bottom:605.985000px;}
.y9d{bottom:625.065000px;}
.y7e{bottom:625.785000px;}
.y9c{bottom:644.865000px;}
.y7d{bottom:645.585000px;}
.y9b{bottom:664.665000px;}
.y7c{bottom:665.565000px;}
.y9a{bottom:684.465000px;}
.y7b{bottom:685.365000px;}
.y99{bottom:704.445000px;}
.y7a{bottom:705.165000px;}
.y98{bottom:724.245000px;}
.y79{bottom:724.965000px;}
.y97{bottom:744.045000px;}
.y78{bottom:744.765000px;}
.y65{bottom:763.845000px;}
.y77{bottom:764.745000px;}
.y76{bottom:781.305000px;}
.y64{bottom:783.645000px;}
.y1a{bottom:787.245000px;}
.y63{bottom:803.625000px;}
.yf{bottom:816.765000px;}
.y62{bottom:823.425000px;}
.y61{bottom:843.225000px;}
.y60{bottom:863.025000px;}
.y5f{bottom:882.870000px;}
.y5e{bottom:902.850000px;}
.y5d{bottom:922.650000px;}
.y5c{bottom:942.450000px;}
.y5b{bottom:962.250000px;}
.y5a{bottom:982.050000px;}
.y59{bottom:1002.030000px;}
.yd{bottom:1007.970000px;}
.y58{bottom:1021.830000px;}
.y6{bottom:1033.350000px;}
.y57{bottom:1041.630000px;}
.y56{bottom:1061.430000px;}
.y55{bottom:1081.230000px;}
.y54{bottom:1101.210000px;}
.y53{bottom:1121.010000px;}
.y52{bottom:1140.840000px;}
.hc{height:25.020000px;}
.h13{height:28.968750px;}
.h14{height:29.520000px;}
.h2{height:32.976000px;}
.h12{height:35.806641px;}
.h9{height:36.180000px;}
.h1e{height:36.720000px;}
.h1c{height:38.818125px;}
.h19{height:40.243711px;}
.h1d{height:41.726953px;}
.h1f{height:42.164648px;}
.h1b{height:42.281367px;}
.h4{height:43.453125px;}
.h20{height:43.506914px;}
.he{height:44.002969px;}
.hb{height:44.820000px;}
.h1a{height:45.770625px;}
.h17{height:47.980898px;}
.h18{height:48.088125px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h10{height:59.439023px;}
.h11{height:61.189805px;}
.hf{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.h8{height:71.613281px;}
.h15{height:73.722656px;}
.h7{height:121.536000px;}
.hd{height:191.190000px;}
.h16{height:278.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w5{width:142.236000px;}
.w8{width:209.235000px;}
.w9{width:521.715000px;}
.w6{width:588.705000px;}
.w2{width:658.050000px;}
.w7{width:730.950000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.xc{left:14.976000px;}
.x13{left:20.520000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x18{left:108.035987px;}
.x10{left:130.890000px;}
.xf{left:140.610000px;}
.xe{left:211.395000px;}
.x11{left:215.175000px;}
.x5{left:223.230000px;}
.x15{left:258.689987px;}
.xd{left:267.555000px;}
.x8{left:281.775000px;}
.x12{left:290.235000px;}
.x6{left:341.535000px;}
.x7{left:360.795000px;}
.xb{left:365.475000px;}
.x17{left:396.074987px;}
.xa{left:425.775000px;}
.x9{left:449.040000px;}
.x14{left:614.084987px;}
.x16{left:633.344987px;}
.x3{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.058880pt;}
.ls1{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.lsa{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.lsb{letter-spacing:9.120000pt;}
.lsd{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws9{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:0.000000pt;}
._13{margin-left:-6.397653pt;}
._10{margin-left:-5.237333pt;}
._4{margin-left:-3.786027pt;}
._2{margin-left:-2.810880pt;}
._3{margin-left:-1.912320pt;}
._0{margin-left:-1.008000pt;}
._1{width:0.938667pt;}
._c{width:2.573013pt;}
._a{width:3.552213pt;}
._b{width:4.944640pt;}
._7{width:5.962453pt;}
._8{width:6.910507pt;}
._9{width:8.719360pt;}
._f{width:9.925760pt;}
._12{width:10.940373pt;}
._11{width:11.927040pt;}
._19{width:15.054507pt;}
._18{width:16.010880pt;}
._6{width:17.069013pt;}
._5{width:18.025173pt;}
._e{width:19.192533pt;}
._d{width:20.240000pt;}
._17{width:25.646720pt;}
._16{width:26.687360pt;}
._15{width:31.393920pt;}
._14{width:32.318080pt;}
._1d{width:33.429973pt;}
._1e{width:34.474880pt;}
._1b{width:47.931733pt;}
._1c{width:48.871040pt;}
._1a{width:56.112213pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.y3f{bottom:3.520000pt;}
.y19{bottom:4.480000pt;}
.ye{bottom:8.480000pt;}
.y3d{bottom:9.440000pt;}
.y1b{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y2b{bottom:15.840000pt;}
.y2{bottom:17.952000pt;}
.y3e{bottom:19.840000pt;}
.y3c{bottom:22.560000pt;}
.y18{bottom:26.240000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y2a{bottom:29.440000pt;}
.y3a{bottom:35.680000pt;}
.y17{bottom:40.800000pt;}
.ya{bottom:41.280000pt;}
.y29{bottom:45.120000pt;}
.y1{bottom:46.560000pt;}
.y39{bottom:51.040000pt;}
.y16{bottom:55.560000pt;}
.y28{bottom:60.480000pt;}
.y9{bottom:65.280000pt;}
.y38{bottom:66.240000pt;}
.y15{bottom:69.480000pt;}
.y27{bottom:75.840000pt;}
.y14{bottom:78.760000pt;}
.y37{bottom:81.600000pt;}
.y8{bottom:82.720000pt;}
.y26{bottom:91.546667pt;}
.y13{bottom:95.080000pt;}
.y36{bottom:96.986667pt;}
.y7{bottom:98.906667pt;}
.y25{bottom:107.066667pt;}
.y51{bottom:107.552000pt;}
.y12{bottom:112.040000pt;}
.y35{bottom:112.346667pt;}
.y75{bottom:114.112000pt;}
.y24{bottom:121.946667pt;}
.y50{bottom:125.152000pt;}
.y34{bottom:127.706667pt;}
.y74{bottom:131.872000pt;}
.y96{bottom:132.992000pt;}
.y11{bottom:134.920000pt;}
.y23{bottom:136.506667pt;}
.y4f{bottom:142.746667pt;}
.y33{bottom:143.066667pt;}
.y73{bottom:149.466667pt;}
.yb4{bottom:149.946667pt;}
.y95{bottom:150.746667pt;}
.y22{bottom:151.066667pt;}
.y10{bottom:156.520000pt;}
.y32{bottom:158.266667pt;}
.y4e{bottom:160.346667pt;}
.y21{bottom:165.626667pt;}
.y72{bottom:167.066667pt;}
.yb3{bottom:167.546667pt;}
.y94{bottom:168.346667pt;}
.y31{bottom:173.626667pt;}
.y4d{bottom:177.946667pt;}
.y20{bottom:180.986667pt;}
.y71{bottom:184.666667pt;}
.yb2{bottom:185.306667pt;}
.y93{bottom:185.946667pt;}
.y30{bottom:188.986667pt;}
.y4c{bottom:195.706667pt;}
.y1f{bottom:197.306667pt;}
.y70{bottom:202.266667pt;}
.yb1{bottom:202.906667pt;}
.y92{bottom:203.546667pt;}
.y2f{bottom:204.346667pt;}
.y4b{bottom:213.306667pt;}
.y2e{bottom:219.706667pt;}
.y6f{bottom:220.026667pt;}
.yb0{bottom:220.506667pt;}
.y91{bottom:221.146667pt;}
.y1e{bottom:221.626667pt;}
.y4a{bottom:230.906667pt;}
.y2d{bottom:234.906667pt;}
.y1d{bottom:237.306667pt;}
.y6e{bottom:237.626667pt;}
.yaf{bottom:238.106667pt;}
.y90{bottom:238.906667pt;}
.y49{bottom:248.506667pt;}
.y6d{bottom:255.226667pt;}
.yae{bottom:255.706667pt;}
.y8f{bottom:256.506667pt;}
.y48{bottom:266.106667pt;}
.y6c{bottom:272.826667pt;}
.yad{bottom:273.466667pt;}
.y8e{bottom:274.106667pt;}
.y47{bottom:283.866667pt;}
.y6b{bottom:290.426667pt;}
.yac{bottom:291.066667pt;}
.y8d{bottom:291.706667pt;}
.y46{bottom:301.506667pt;}
.y6a{bottom:308.226667pt;}
.yab{bottom:308.706667pt;}
.y8c{bottom:309.346667pt;}
.y45{bottom:319.106667pt;}
.y69{bottom:325.826667pt;}
.yaa{bottom:326.306667pt;}
.y8b{bottom:327.106667pt;}
.y44{bottom:336.706667pt;}
.y68{bottom:343.426667pt;}
.ya9{bottom:343.906667pt;}
.y8a{bottom:344.706667pt;}
.y43{bottom:354.306667pt;}
.y67{bottom:361.026667pt;}
.ya8{bottom:361.666667pt;}
.y89{bottom:362.306667pt;}
.y42{bottom:372.066667pt;}
.y66{bottom:375.746667pt;}
.ya7{bottom:379.266667pt;}
.y88{bottom:379.906667pt;}
.y41{bottom:389.666667pt;}
.ya6{bottom:396.866667pt;}
.y87{bottom:397.506667pt;}
.y40{bottom:407.266667pt;}
.ya5{bottom:414.466667pt;}
.y86{bottom:415.266667pt;}
.y3b{bottom:419.746667pt;}
.ya4{bottom:432.066667pt;}
.y85{bottom:432.866667pt;}
.ya3{bottom:449.826667pt;}
.y84{bottom:450.466667pt;}
.y1c{bottom:452.386667pt;}
.ya2{bottom:467.426667pt;}
.y83{bottom:468.066667pt;}
.ya1{bottom:485.026667pt;}
.y82{bottom:485.666667pt;}
.ya0{bottom:502.626667pt;}
.y81{bottom:503.426667pt;}
.y9f{bottom:520.226667pt;}
.y80{bottom:521.026667pt;}
.y9e{bottom:538.013333pt;}
.y7f{bottom:538.653333pt;}
.y9d{bottom:555.613333pt;}
.y7e{bottom:556.253333pt;}
.y9c{bottom:573.213333pt;}
.y7d{bottom:573.853333pt;}
.y9b{bottom:590.813333pt;}
.y7c{bottom:591.613333pt;}
.y9a{bottom:608.413333pt;}
.y7b{bottom:609.213333pt;}
.y99{bottom:626.173333pt;}
.y7a{bottom:626.813333pt;}
.y98{bottom:643.773333pt;}
.y79{bottom:644.413333pt;}
.y97{bottom:661.373333pt;}
.y78{bottom:662.013333pt;}
.y65{bottom:678.973333pt;}
.y77{bottom:679.773333pt;}
.y76{bottom:694.493333pt;}
.y64{bottom:696.573333pt;}
.y1a{bottom:699.773333pt;}
.y63{bottom:714.333333pt;}
.yf{bottom:726.013333pt;}
.y62{bottom:731.933333pt;}
.y61{bottom:749.533333pt;}
.y60{bottom:767.133333pt;}
.y5f{bottom:784.773333pt;}
.y5e{bottom:802.533333pt;}
.y5d{bottom:820.133333pt;}
.y5c{bottom:837.733333pt;}
.y5b{bottom:855.333333pt;}
.y5a{bottom:872.933333pt;}
.y59{bottom:890.693333pt;}
.yd{bottom:895.973333pt;}
.y58{bottom:908.293333pt;}
.y6{bottom:918.533333pt;}
.y57{bottom:925.893333pt;}
.y56{bottom:943.493333pt;}
.y55{bottom:961.093333pt;}
.y54{bottom:978.853333pt;}
.y53{bottom:996.453333pt;}
.y52{bottom:1014.080000pt;}
.hc{height:22.240000pt;}
.h13{height:25.750000pt;}
.h14{height:26.240000pt;}
.h2{height:29.312000pt;}
.h12{height:31.828125pt;}
.h9{height:32.160000pt;}
.h1e{height:32.640000pt;}
.h1c{height:34.505000pt;}
.h19{height:35.772188pt;}
.h1d{height:37.090625pt;}
.h1f{height:37.479688pt;}
.h1b{height:37.583438pt;}
.h4{height:38.625000pt;}
.h20{height:38.672812pt;}
.he{height:39.113750pt;}
.hb{height:39.840000pt;}
.h1a{height:40.685000pt;}
.h17{height:42.649687pt;}
.h18{height:42.745000pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h10{height:52.834688pt;}
.h11{height:54.390938pt;}
.hf{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.h8{height:63.656250pt;}
.h15{height:65.531250pt;}
.h7{height:108.032000pt;}
.hd{height:169.946667pt;}
.h16{height:247.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w5{width:126.432000pt;}
.w8{width:185.986667pt;}
.w9{width:463.746667pt;}
.w6{width:523.293333pt;}
.w2{width:584.933333pt;}
.w7{width:649.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.xc{left:13.312000pt;}
.x13{left:18.240000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x18{left:96.031988pt;}
.x10{left:116.346667pt;}
.xf{left:124.986667pt;}
.xe{left:187.906667pt;}
.x11{left:191.266667pt;}
.x5{left:198.426667pt;}
.x15{left:229.946655pt;}
.xd{left:237.826667pt;}
.x8{left:250.466667pt;}
.x12{left:257.986667pt;}
.x6{left:303.586667pt;}
.x7{left:320.706667pt;}
.xb{left:324.866667pt;}
.x17{left:352.066655pt;}
.xa{left:378.466667pt;}
.x9{left:399.146667pt;}
.x14{left:545.853322pt;}
.x16{left:562.973322pt;}
.x3{left:656.933333pt;}
}




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