
    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_cb893b086b776684ec399789.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_eaf7f4a47734342b16029836.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_026ad2b074461d4a845f49fc.woff')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_6883bfd2e709bd2337618307.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d2a07ddfd36469fc53dc748b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.916016;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_d08adc93aacac6b2378fac5c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_253644035ae4e65e384d3047.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5b1a3d06016ce6420fe57b4a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.940918;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_900692aa467b3ce8bd41a7ea.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_31f116c3b735a8b552fe8b34.woff')format("woff");}.ffa{font-family:ffa;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_bb27f79f99612f21013123ba.woff')format("woff");}.ffb{font-family:ffb;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_69fe7f00643d6e9863ae531e.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_868fe5a161a130afa077fd85.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_aa2ab31eccae897ebfeee45c.woff')format("woff");}.ffe{font-family:ffe;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;}
.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:-29.520000px;}
.v4{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-2.556000px;}
.lsc{letter-spacing:-1.236000px;}
.ls4{letter-spacing:-1.176000px;}
.ls13{letter-spacing:-0.413400px;}
.lsb{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.206400px;}
.ls6{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls17{letter-spacing:0.153600px;}
.lsa{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls14{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.666000px;}
.lse{letter-spacing:0.826560px;}
.ls2{letter-spacing:0.900000px;}
.ls9{letter-spacing:0.924000px;}
.ls12{letter-spacing:1.620000px;}
.ls11{letter-spacing:4.500000px;}
.ls1{letter-spacing:13.836000px;}
.ls15{letter-spacing:14.490720px;}
.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;}
}
.ws2{word-spacing:-21.384000px;}
.ws1{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.864000px;}
.ws0{word-spacing:-15.384000px;}
.wsd{word-spacing:-15.300000px;}
.wse{word-spacing:-15.093600px;}
.ws6{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.704000px;}
.ws3{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.wsb{word-spacing:0.000000px;}
._1{margin-left:-2541.138480px;}
._2{margin-left:-1580.852880px;}
._6{margin-left:-1572.996000px;}
._4{margin-left:-1013.472000px;}
._7{margin-left:-628.376880px;}
._3{margin-left:-9.504000px;}
._9{margin-left:-6.772800px;}
._13{margin-left:-5.726880px;}
._10{margin-left:-4.651200px;}
._8{margin-left:-3.622080px;}
._5{margin-left:-1.932000px;}
._0{width:1.244880px;}
._a{width:2.344800px;}
._b{width:4.139760px;}
._e{width:5.372160px;}
._f{width:6.517920px;}
._14{width:8.468640px;}
._15{width:9.675600px;}
._17{width:10.747680px;}
._16{width:11.772720px;}
._c{width:13.206960px;}
._d{width:16.318560px;}
._11{width:17.726640px;}
._12{width:19.095600px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ya3{bottom:18.900000px;}
.ya2{bottom:39.960000px;}
.y9f{bottom:47.340000px;}
.y6{bottom:60.156000px;}
.ya1{bottom:61.194000px;}
.ya0{bottom:82.434000px;}
.y34{bottom:90.036000px;}
.y9e{bottom:92.556000px;}
.y6c{bottom:94.176000px;}
.y9d{bottom:104.976000px;}
.y33{bottom:110.016000px;}
.y6b{bottom:113.976000px;}
.y9c{bottom:124.776000px;}
.y32{bottom:129.816000px;}
.y6a{bottom:133.776000px;}
.y9b{bottom:144.576000px;}
.y31{bottom:149.616000px;}
.y69{bottom:153.570000px;}
.y9a{bottom:164.370000px;}
.y30{bottom:169.410000px;}
.y68{bottom:173.370000px;}
.y99{bottom:184.350000px;}
.y2f{bottom:189.210000px;}
.y67{bottom:193.350000px;}
.y98{bottom:204.150000px;}
.y2e{bottom:209.190000px;}
.y66{bottom:213.150000px;}
.y97{bottom:223.950000px;}
.y2d{bottom:228.990000px;}
.y65{bottom:232.950000px;}
.y96{bottom:243.750000px;}
.y2c{bottom:248.790000px;}
.y64{bottom:252.750000px;}
.y95{bottom:263.550000px;}
.y2b{bottom:268.590000px;}
.y63{bottom:272.550000px;}
.y94{bottom:283.575000px;}
.y2a{bottom:288.435000px;}
.y62{bottom:292.575000px;}
.y93{bottom:303.375000px;}
.y29{bottom:308.415000px;}
.y61{bottom:312.375000px;}
.y92{bottom:323.175000px;}
.y28{bottom:328.215000px;}
.y60{bottom:332.175000px;}
.y91{bottom:342.975000px;}
.y27{bottom:348.015000px;}
.y5f{bottom:351.975000px;}
.y90{bottom:362.775000px;}
.y26{bottom:367.815000px;}
.y5e{bottom:371.775000px;}
.y8f{bottom:382.755000px;}
.y25{bottom:387.615000px;}
.y5d{bottom:391.755000px;}
.y8e{bottom:402.555000px;}
.y24{bottom:407.595000px;}
.y5c{bottom:411.555000px;}
.y8d{bottom:422.355000px;}
.y23{bottom:427.395000px;}
.y5b{bottom:431.355000px;}
.y8c{bottom:442.155000px;}
.y22{bottom:447.195000px;}
.y5a{bottom:451.155000px;}
.y8b{bottom:461.955000px;}
.y21{bottom:466.995000px;}
.y59{bottom:470.955000px;}
.y8a{bottom:481.935000px;}
.y20{bottom:486.795000px;}
.y58{bottom:490.935000px;}
.y89{bottom:501.735000px;}
.y1f{bottom:506.775000px;}
.y57{bottom:510.735000px;}
.y88{bottom:521.535000px;}
.y1e{bottom:526.575000px;}
.y56{bottom:530.535000px;}
.y87{bottom:541.335000px;}
.y1d{bottom:546.375000px;}
.y55{bottom:550.335000px;}
.y86{bottom:561.135000px;}
.y1c{bottom:566.205000px;}
.y54{bottom:570.165000px;}
.y85{bottom:581.145000px;}
.y1b{bottom:586.005000px;}
.y53{bottom:590.145000px;}
.y84{bottom:600.945000px;}
.y1a{bottom:608.145000px;}
.y52{bottom:609.945000px;}
.y83{bottom:620.745000px;}
.y19{bottom:627.945000px;}
.y51{bottom:629.745000px;}
.y82{bottom:640.545000px;}
.y50{bottom:649.545000px;}
.y18{bottom:656.745000px;}
.y81{bottom:660.345000px;}
.y4f{bottom:669.345000px;}
.y17{bottom:676.725000px;}
.y80{bottom:680.325000px;}
.y4e{bottom:689.325000px;}
.y16{bottom:696.525000px;}
.y7f{bottom:700.125000px;}
.y4d{bottom:709.125000px;}
.y15{bottom:716.325000px;}
.y7e{bottom:719.925000px;}
.y4c{bottom:728.925000px;}
.y14{bottom:736.125000px;}
.y7d{bottom:739.725000px;}
.y4b{bottom:748.725000px;}
.y13{bottom:755.925000px;}
.y7c{bottom:759.525000px;}
.y4a{bottom:768.525000px;}
.y12{bottom:775.905000px;}
.y7b{bottom:779.505000px;}
.y49{bottom:788.505000px;}
.y11{bottom:795.705000px;}
.y7a{bottom:799.305000px;}
.y48{bottom:808.305000px;}
.y10{bottom:815.505000px;}
.y79{bottom:819.105000px;}
.y47{bottom:828.105000px;}
.yf{bottom:835.305000px;}
.y78{bottom:838.905000px;}
.y46{bottom:847.950000px;}
.ye{bottom:855.150000px;}
.y77{bottom:858.750000px;}
.y45{bottom:867.750000px;}
.yd{bottom:877.290000px;}
.y76{bottom:878.730000px;}
.y44{bottom:887.730000px;}
.y75{bottom:898.530000px;}
.yc{bottom:902.310000px;}
.y43{bottom:907.530000px;}
.y74{bottom:918.330000px;}
.yb{bottom:922.290000px;}
.y42{bottom:927.330000px;}
.ya{bottom:937.410000px;}
.y73{bottom:938.130000px;}
.y41{bottom:947.130000px;}
.y72{bottom:957.930000px;}
.y9{bottom:958.650000px;}
.y40{bottom:966.930000px;}
.y71{bottom:977.910000px;}
.y8{bottom:982.050000px;}
.y3f{bottom:986.910000px;}
.y70{bottom:997.710000px;}
.y3e{bottom:1006.710000px;}
.y7{bottom:1013.910000px;}
.y6f{bottom:1017.510000px;}
.y3d{bottom:1026.510000px;}
.y6e{bottom:1037.310000px;}
.y3c{bottom:1046.310000px;}
.y5{bottom:1052.970000px;}
.y6d{bottom:1057.110000px;}
.y3b{bottom:1066.110000px;}
.y4{bottom:1085.730000px;}
.y3a{bottom:1086.090000px;}
.y39{bottom:1105.890000px;}
.y3{bottom:1118.490000px;}
.y38{bottom:1125.690000px;}
.y37{bottom:1145.520000px;}
.y2{bottom:1151.460000px;}
.y36{bottom:1173.060000px;}
.y1{bottom:1186.560000px;}
.y35{bottom:1193.220000px;}
.h10{height:2.864531px;}
.h9{height:37.771172px;}
.hb{height:53.252930px;}
.hd{height:58.621992px;}
.ha{height:58.651172px;}
.h11{height:59.439023px;}
.h7{height:60.226875px;}
.he{height:61.423863px;}
.h4{height:65.010937px;}
.h8{height:66.757500px;}
.h5{height:67.565039px;}
.hc{height:67.824844px;}
.h3{height:70.664062px;}
.h2{height:72.562500px;}
.h6{height:96.508125px;}
.hf{height:96.840000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:207.930000px;}
.w4{width:573.225000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.740000px;}
.x1{left:54.179987px;}
.x4{left:74.339987px;}
.x5{left:94.535987px;}
.x2{left:96.515987px;}
.x3{left:107.135987px;}
.x6{left:191.370000px;}
.x7{left:261.930000px;}
@media print{
.v2{vertical-align:-26.240000pt;}
.v4{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-2.272000pt;}
.lsc{letter-spacing:-1.098667pt;}
.ls4{letter-spacing:-1.045333pt;}
.ls13{letter-spacing:-0.367467pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.183467pt;}
.ls6{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls17{letter-spacing:0.136533pt;}
.lsa{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls14{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.592000pt;}
.lse{letter-spacing:0.734720pt;}
.ls2{letter-spacing:0.800000pt;}
.ls9{letter-spacing:0.821333pt;}
.ls12{letter-spacing:1.440000pt;}
.ls11{letter-spacing:4.000000pt;}
.ls1{letter-spacing:12.298667pt;}
.ls15{letter-spacing:12.880640pt;}
.ws2{word-spacing:-19.008000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.101333pt;}
.ws0{word-spacing:-13.674667pt;}
.wsd{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.416533pt;}
.ws6{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.181333pt;}
.ws3{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.wsb{word-spacing:0.000000pt;}
._1{margin-left:-2258.789760pt;}
._2{margin-left:-1405.202560pt;}
._6{margin-left:-1398.218667pt;}
._4{margin-left:-900.864000pt;}
._7{margin-left:-558.557227pt;}
._3{margin-left:-8.448000pt;}
._9{margin-left:-6.020267pt;}
._13{margin-left:-5.090560pt;}
._10{margin-left:-4.134400pt;}
._8{margin-left:-3.219627pt;}
._5{margin-left:-1.717333pt;}
._0{width:1.106560pt;}
._a{width:2.084267pt;}
._b{width:3.679787pt;}
._e{width:4.775253pt;}
._f{width:5.793707pt;}
._14{width:7.527680pt;}
._15{width:8.600533pt;}
._17{width:9.553493pt;}
._16{width:10.464640pt;}
._c{width:11.739520pt;}
._d{width:14.505387pt;}
._11{width:15.757013pt;}
._12{width:16.973867pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ya3{bottom:16.800000pt;}
.ya2{bottom:35.520000pt;}
.y9f{bottom:42.080000pt;}
.y6{bottom:53.472000pt;}
.ya1{bottom:54.394667pt;}
.ya0{bottom:73.274667pt;}
.y34{bottom:80.032000pt;}
.y9e{bottom:82.272000pt;}
.y6c{bottom:83.712000pt;}
.y9d{bottom:93.312000pt;}
.y33{bottom:97.792000pt;}
.y6b{bottom:101.312000pt;}
.y9c{bottom:110.912000pt;}
.y32{bottom:115.392000pt;}
.y6a{bottom:118.912000pt;}
.y9b{bottom:128.512000pt;}
.y31{bottom:132.992000pt;}
.y69{bottom:136.506667pt;}
.y9a{bottom:146.106667pt;}
.y30{bottom:150.586667pt;}
.y68{bottom:154.106667pt;}
.y99{bottom:163.866667pt;}
.y2f{bottom:168.186667pt;}
.y67{bottom:171.866667pt;}
.y98{bottom:181.466667pt;}
.y2e{bottom:185.946667pt;}
.y66{bottom:189.466667pt;}
.y97{bottom:199.066667pt;}
.y2d{bottom:203.546667pt;}
.y65{bottom:207.066667pt;}
.y96{bottom:216.666667pt;}
.y2c{bottom:221.146667pt;}
.y64{bottom:224.666667pt;}
.y95{bottom:234.266667pt;}
.y2b{bottom:238.746667pt;}
.y63{bottom:242.266667pt;}
.y94{bottom:252.066667pt;}
.y2a{bottom:256.386667pt;}
.y62{bottom:260.066667pt;}
.y93{bottom:269.666667pt;}
.y29{bottom:274.146667pt;}
.y61{bottom:277.666667pt;}
.y92{bottom:287.266667pt;}
.y28{bottom:291.746667pt;}
.y60{bottom:295.266667pt;}
.y91{bottom:304.866667pt;}
.y27{bottom:309.346667pt;}
.y5f{bottom:312.866667pt;}
.y90{bottom:322.466667pt;}
.y26{bottom:326.946667pt;}
.y5e{bottom:330.466667pt;}
.y8f{bottom:340.226667pt;}
.y25{bottom:344.546667pt;}
.y5d{bottom:348.226667pt;}
.y8e{bottom:357.826667pt;}
.y24{bottom:362.306667pt;}
.y5c{bottom:365.826667pt;}
.y8d{bottom:375.426667pt;}
.y23{bottom:379.906667pt;}
.y5b{bottom:383.426667pt;}
.y8c{bottom:393.026667pt;}
.y22{bottom:397.506667pt;}
.y5a{bottom:401.026667pt;}
.y8b{bottom:410.626667pt;}
.y21{bottom:415.106667pt;}
.y59{bottom:418.626667pt;}
.y8a{bottom:428.386667pt;}
.y20{bottom:432.706667pt;}
.y58{bottom:436.386667pt;}
.y89{bottom:445.986667pt;}
.y1f{bottom:450.466667pt;}
.y57{bottom:453.986667pt;}
.y88{bottom:463.586667pt;}
.y1e{bottom:468.066667pt;}
.y56{bottom:471.586667pt;}
.y87{bottom:481.186667pt;}
.y1d{bottom:485.666667pt;}
.y55{bottom:489.186667pt;}
.y86{bottom:498.786667pt;}
.y1c{bottom:503.293333pt;}
.y54{bottom:506.813333pt;}
.y85{bottom:516.573333pt;}
.y1b{bottom:520.893333pt;}
.y53{bottom:524.573333pt;}
.y84{bottom:534.173333pt;}
.y1a{bottom:540.573333pt;}
.y52{bottom:542.173333pt;}
.y83{bottom:551.773333pt;}
.y19{bottom:558.173333pt;}
.y51{bottom:559.773333pt;}
.y82{bottom:569.373333pt;}
.y50{bottom:577.373333pt;}
.y18{bottom:583.773333pt;}
.y81{bottom:586.973333pt;}
.y4f{bottom:594.973333pt;}
.y17{bottom:601.533333pt;}
.y80{bottom:604.733333pt;}
.y4e{bottom:612.733333pt;}
.y16{bottom:619.133333pt;}
.y7f{bottom:622.333333pt;}
.y4d{bottom:630.333333pt;}
.y15{bottom:636.733333pt;}
.y7e{bottom:639.933333pt;}
.y4c{bottom:647.933333pt;}
.y14{bottom:654.333333pt;}
.y7d{bottom:657.533333pt;}
.y4b{bottom:665.533333pt;}
.y13{bottom:671.933333pt;}
.y7c{bottom:675.133333pt;}
.y4a{bottom:683.133333pt;}
.y12{bottom:689.693333pt;}
.y7b{bottom:692.893333pt;}
.y49{bottom:700.893333pt;}
.y11{bottom:707.293333pt;}
.y7a{bottom:710.493333pt;}
.y48{bottom:718.493333pt;}
.y10{bottom:724.893333pt;}
.y79{bottom:728.093333pt;}
.y47{bottom:736.093333pt;}
.yf{bottom:742.493333pt;}
.y78{bottom:745.693333pt;}
.y46{bottom:753.733333pt;}
.ye{bottom:760.133333pt;}
.y77{bottom:763.333333pt;}
.y45{bottom:771.333333pt;}
.yd{bottom:779.813333pt;}
.y76{bottom:781.093333pt;}
.y44{bottom:789.093333pt;}
.y75{bottom:798.693333pt;}
.yc{bottom:802.053333pt;}
.y43{bottom:806.693333pt;}
.y74{bottom:816.293333pt;}
.yb{bottom:819.813333pt;}
.y42{bottom:824.293333pt;}
.ya{bottom:833.253333pt;}
.y73{bottom:833.893333pt;}
.y41{bottom:841.893333pt;}
.y72{bottom:851.493333pt;}
.y9{bottom:852.133333pt;}
.y40{bottom:859.493333pt;}
.y71{bottom:869.253333pt;}
.y8{bottom:872.933333pt;}
.y3f{bottom:877.253333pt;}
.y70{bottom:886.853333pt;}
.y3e{bottom:894.853333pt;}
.y7{bottom:901.253333pt;}
.y6f{bottom:904.453333pt;}
.y3d{bottom:912.453333pt;}
.y6e{bottom:922.053333pt;}
.y3c{bottom:930.053333pt;}
.y5{bottom:935.973333pt;}
.y6d{bottom:939.653333pt;}
.y3b{bottom:947.653333pt;}
.y4{bottom:965.093333pt;}
.y3a{bottom:965.413333pt;}
.y39{bottom:983.013333pt;}
.y3{bottom:994.213333pt;}
.y38{bottom:1000.613333pt;}
.y37{bottom:1018.240000pt;}
.y2{bottom:1023.520000pt;}
.y36{bottom:1042.720000pt;}
.y1{bottom:1054.720000pt;}
.y35{bottom:1060.640000pt;}
.h10{height:2.546250pt;}
.h9{height:33.574375pt;}
.hb{height:47.335938pt;}
.hd{height:52.108438pt;}
.ha{height:52.134375pt;}
.h11{height:52.834688pt;}
.h7{height:53.535000pt;}
.he{height:54.598989pt;}
.h4{height:57.787500pt;}
.h8{height:59.340000pt;}
.h5{height:60.057813pt;}
.hc{height:60.288750pt;}
.h3{height:62.812500pt;}
.h2{height:64.500000pt;}
.h6{height:85.785000pt;}
.hf{height:86.080000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:184.826667pt;}
.w4{width:509.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:6.880000pt;}
.x1{left:48.159988pt;}
.x4{left:66.079988pt;}
.x5{left:84.031988pt;}
.x2{left:85.791988pt;}
.x3{left:95.231988pt;}
.x6{left:170.106667pt;}
.x7{left:232.826667pt;}
}




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