
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_a4958f1d6671d7680dbc9a72.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_837509acf7b2856e79fbdf4d.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5ef409911765ae87afb7fa4a.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_436eab73a76ee026c9329ace.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_8265416ff2427c728ac67354.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_448e0ddcbc262abd10f97383.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_2708fd9fd160649447b04223.woff')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_2e0ab32a023ad2f1044dd7d1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;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_5fb62c209cca0bdde7bc854e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_8f6ffbfe7b5990afb1d8974a.woff')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-77.760000px;}
.v4{vertical-align:-60.480000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls8{letter-spacing:-1.440000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.466800px;}
.ls2{letter-spacing:-0.089400px;}
.ls4{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.720000px;}
.ls7{letter-spacing:46.546560px;}
.lsa{letter-spacing:48.787200px;}
.ls6{letter-spacing:63.826560px;}
.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;}
}
.wsa{word-spacing:-60.480000px;}
.ws8{word-spacing:-54.720000px;}
.ws0{word-spacing:-16.560000px;}
.ws2{word-spacing:-15.120000px;}
.wsc{word-spacing:-14.653200px;}
.wsd{word-spacing:-14.400000px;}
.wsb{word-spacing:-13.680000px;}
.ws7{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws6{word-spacing:-9.000000px;}
.ws5{word-spacing:-8.928000px;}
.ws9{word-spacing:0.000000px;}
._1c{margin-left:-3.334080px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:4.469280px;}
._f{width:6.292800px;}
._e{width:7.536960px;}
._b{width:8.576640px;}
._c{width:10.161600px;}
._14{width:11.456640px;}
._17{width:12.493440px;}
._16{width:13.592640px;}
._9{width:14.697120px;}
._d{width:15.935040px;}
._8{width:17.026560px;}
._15{width:18.201600px;}
._13{width:19.552320px;}
._1b{width:21.444960px;}
._1a{width:22.953600px;}
._19{width:24.554880px;}
._18{width:25.773120px;}
._1d{width:26.876160px;}
._11{width:29.194560px;}
._10{width:30.355200px;}
._12{width:31.872960px;}
._6{width:69.989760px;}
._7{width:77.033760px;}
._5{width:980.525760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.720000px;}
.fsc{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y49{bottom:2.869500px;}
.yb0{bottom:3.585000px;}
.ya9{bottom:3.600000px;}
.yab{bottom:3.945000px;}
.yb3{bottom:3.946500px;}
.yb5{bottom:3.955500px;}
.y3f{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y58{bottom:5.370000px;}
.y56{bottom:6.829500px;}
.y2{bottom:10.080000px;}
.y48{bottom:10.789500px;}
.y3e{bottom:21.240000px;}
.y55{bottom:22.309500px;}
.y4{bottom:23.400000px;}
.y3d{bottom:38.520000px;}
.y54{bottom:39.589500px;}
.y47{bottom:40.309500px;}
.y3{bottom:47.880000px;}
.y46{bottom:52.189500px;}
.y53{bottom:55.789500px;}
.y3c{bottom:55.800000px;}
.y45{bottom:65.149500px;}
.y52{bottom:71.269500px;}
.y8{bottom:71.676000px;}
.y3b{bottom:73.125000px;}
.y44{bottom:78.109500px;}
.y51{bottom:86.749500px;}
.y3a{bottom:90.405000px;}
.y7{bottom:91.476000px;}
.y43{bottom:97.909500px;}
.y50{bottom:99.709500px;}
.y4f{bottom:105.829500px;}
.yb6{bottom:105.880500px;}
.y39{bottom:107.685000px;}
.yd3{bottom:120.996000px;}
.y4e{bottom:121.669500px;}
.yb4{bottom:123.880500px;}
.y38{bottom:124.965000px;}
.y8d{bottom:126.396000px;}
.y4d{bottom:137.179500px;}
.yd2{bottom:138.276000px;}
.y37{bottom:141.885000px;}
.yb2{bottom:141.925500px;}
.y8c{bottom:143.712000px;}
.y40{bottom:148.405500px;}
.y4c{bottom:152.659500px;}
.yd1{bottom:154.515000px;}
.y36{bottom:159.165000px;}
.y42{bottom:159.859500px;}
.yb1{bottom:159.930000px;}
.y8b{bottom:160.995000px;}
.y4b{bottom:168.139500px;}
.y41{bottom:170.659500px;}
.yd0{bottom:171.075000px;}
.y35{bottom:176.445000px;}
.yaf{bottom:177.930000px;}
.y8a{bottom:178.275000px;}
.y4a{bottom:183.619500px;}
.ycf{bottom:187.275000px;}
.y34{bottom:193.755000px;}
.y89{bottom:195.195000px;}
.yae{bottom:199.515000px;}
.yce{bottom:203.835000px;}
.y33{bottom:211.035000px;}
.ycd{bottom:220.035000px;}
.y88{bottom:221.475000px;}
.yad{bottom:222.930000px;}
.y32{bottom:228.315000px;}
.y20{bottom:234.435000px;}
.ycc{bottom:236.235000px;}
.y87{bottom:238.755000px;}
.yac{bottom:240.930000px;}
.y31{bottom:245.595000px;}
.y86{bottom:256.035000px;}
.y1f{bottom:258.555000px;}
.yaa{bottom:258.930000px;}
.ycb{bottom:262.155000px;}
.y30{bottom:262.875000px;}
.y85{bottom:273.345000px;}
.ya8{bottom:276.945000px;}
.yca{bottom:278.385000px;}
.y2f{bottom:280.155000px;}
.y1e{bottom:282.675000px;}
.y84{bottom:290.625000px;}
.yc9{bottom:294.945000px;}
.y2e{bottom:297.435000px;}
.ya7{bottom:298.545000px;}
.y1d{bottom:306.795000px;}
.y83{bottom:307.545000px;}
.yc8{bottom:311.145000px;}
.y2d{bottom:314.715000px;}
.ya6{bottom:325.185000px;}
.yc7{bottom:327.705000px;}
.y1c{bottom:330.945000px;}
.y2c{bottom:332.025000px;}
.y82{bottom:334.185000px;}
.ya5{bottom:342.465000px;}
.yc6{bottom:343.905000px;}
.y12{bottom:348.585000px;}
.y81{bottom:351.465000px;}
.y1b{bottom:355.065000px;}
.ya4{bottom:359.385000px;}
.yc5{bottom:360.465000px;}
.y80{bottom:368.745000px;}
.y2b{bottom:374.865000px;}
.yc4{bottom:376.305000px;}
.y1a{bottom:379.185000px;}
.y7f{bottom:386.025000px;}
.y2a{bottom:390.345000px;}
.yc3{bottom:402.225000px;}
.y19{bottom:403.305000px;}
.y29{bottom:405.825000px;}
.yc2{bottom:418.470000px;}
.y7e{bottom:420.270000px;}
.y28{bottom:421.305000px;}
.y18{bottom:427.425000px;}
.yc1{bottom:431.430000px;}
.y27{bottom:436.785000px;}
.y7d{bottom:437.550000px;}
.y17{bottom:451.905000px;}
.y26{bottom:452.310000px;}
.y7c{bottom:454.830000px;}
.y25{bottom:467.790000px;}
.y7b{bottom:472.110000px;}
.y16{bottom:476.070000px;}
.y24{bottom:483.270000px;}
.y7a{bottom:489.390000px;}
.y23{bottom:499.110000px;}
.y15{bottom:500.190000px;}
.y79{bottom:506.670000px;}
.y22{bottom:514.590000px;}
.y78{bottom:523.950000px;}
.y14{bottom:524.310000px;}
.y77{bottom:541.260000px;}
.y21{bottom:545.190000px;}
.y13{bottom:548.430000px;}
.ya3{bottom:558.180000px;}
.y76{bottom:558.540000px;}
.y75{bottom:575.820000px;}
.y74{bottom:593.100000px;}
.y73{bottom:610.380000px;}
.y72{bottom:626.940000px;}
.ya2{bottom:627.300000px;}
.y71{bottom:644.220000px;}
.ya1{bottom:661.500000px;}
.y70{bottom:670.890000px;}
.y6f{bottom:688.170000px;}
.yc0{bottom:697.170000px;}
.y6e{bottom:705.450000px;}
.ybf{bottom:714.090000px;}
.y6d{bottom:722.730000px;}
.ya0{bottom:723.810000px;}
.ybe{bottom:731.370000px;}
.y6c{bottom:740.010000px;}
.y9f{bottom:741.090000px;}
.ybd{bottom:745.050000px;}
.y6b{bottom:757.290000px;}
.y9e{bottom:759.450000px;}
.y6a{bottom:774.570000px;}
.y9d{bottom:776.730000px;}
.y69{bottom:791.850000px;}
.y9c{bottom:795.090000px;}
.y68{bottom:808.815000px;}
.y9b{bottom:812.415000px;}
.y9a{bottom:830.055000px;}
.y67{bottom:835.095000px;}
.y99{bottom:847.335000px;}
.y66{bottom:852.375000px;}
.y65{bottom:870.735000px;}
.y98{bottom:873.975000px;}
.y64{bottom:888.015000px;}
.y97{bottom:891.255000px;}
.y63{bottom:906.375000px;}
.y96{bottom:908.535000px;}
.y11{bottom:909.255000px;}
.y10{bottom:914.655000px;}
.y62{bottom:923.655000px;}
.y95{bottom:925.815000px;}
.yf{bottom:931.935000px;}
.y61{bottom:942.045000px;}
.y94{bottom:943.125000px;}
.ybc{bottom:952.125000px;}
.ye{bottom:955.725000px;}
.y60{bottom:959.325000px;}
.y93{bottom:960.405000px;}
.yd{bottom:966.165000px;}
.ybb{bottom:969.045000px;}
.y5f{bottom:977.325000px;}
.y92{bottom:977.685000px;}
.yba{bottom:986.685000px;}
.yc{bottom:990.285000px;}
.y5e{bottom:994.605000px;}
.y91{bottom:994.965000px;}
.yb9{bottom:1003.965000px;}
.y5d{bottom:1011.885000px;}
.y90{bottom:1012.245000px;}
.yb{bottom:1019.805000px;}
.yb8{bottom:1021.245000px;}
.y8f{bottom:1029.165000px;}
.y5c{bottom:1038.165000px;}
.ya{bottom:1044.285000px;}
.y8e{bottom:1046.085000px;}
.y5b{bottom:1055.445000px;}
.y9{bottom:1072.050000px;}
.y5a{bottom:1072.770000px;}
.y57{bottom:1075.320000px;}
.yb7{bottom:1089.690000px;}
.y59{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.ha{height:4.165313px;}
.h16{height:5.650313px;}
.h1b{height:17.265000px;}
.h1d{height:17.266500px;}
.h1e{height:17.275500px;}
.h1c{height:17.280000px;}
.h18{height:27.720000px;}
.h14{height:29.678906px;}
.h9{height:38.158594px;}
.hd{height:40.985156px;}
.hc{height:42.086250px;}
.h10{height:42.229688px;}
.he{height:53.677969px;}
.h15{height:55.147500px;}
.h1f{height:56.531250px;}
.h20{height:58.050000px;}
.h21{height:59.203723px;}
.h17{height:59.328281px;}
.h6{height:59.357813px;}
.hf{height:60.952500px;}
.h11{height:61.927031px;}
.h1a{height:62.163910px;}
.h19{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h13{height:70.664062px;}
.h7{height:84.172500px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h12{height:199.440000px;}
.hb{height:557.790000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w9{width:120.960000px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w8{width:185.835000px;}
.wb{width:195.195000px;}
.w7{width:215.010000px;}
.wa{width:226.515000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.876000px;}
.x1c{left:8.295000px;}
.x4{left:13.305000px;}
.x2a{left:15.120000px;}
.x1a{left:16.546500px;}
.x17{left:17.626500px;}
.x19{left:19.786500px;}
.x2c{left:24.825000px;}
.x18{left:26.266500px;}
.x20{left:29.146500px;}
.x32{left:30.630000px;}
.x6{left:35.265000px;}
.x34{left:42.120000px;}
.x11{left:43.906500px;}
.x33{left:45.000000px;}
.x1f{left:47.542500px;}
.x12{left:50.782500px;}
.x10{left:55.102500px;}
.x22{left:57.262500px;}
.x1d{left:62.295000px;}
.x21{left:66.265500px;}
.x15{left:73.105500px;}
.x28{left:77.415000px;}
.x1{left:78.529500px;}
.x16{left:80.305500px;}
.x2d{left:85.320000px;}
.x7{left:86.436000px;}
.x30{left:87.525000px;}
.x2e{left:88.950000px;}
.xa{left:90.756000px;}
.x14{left:92.905500px;}
.x2{left:95.425500px;}
.x23{left:102.985500px;}
.x1e{left:106.945500px;}
.x25{left:113.436000px;}
.x13{left:124.585500px;}
.x26{left:140.472000px;}
.x5{left:141.540000px;}
.x3{left:182.250000px;}
.xc{left:184.035000px;}
.x27{left:185.130000px;}
.x1b{left:218.970000px;}
.x2f{left:235.545000px;}
.xd{left:268.665000px;}
.x29{left:401.220000px;}
.xb{left:432.540000px;}
.x31{left:462.780000px;}
.x2b{left:587.790000px;}
.xe{left:596.055000px;}
.x36{left:629.895000px;}
.x35{left:672.765000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.xf{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v4{vertical-align:-53.760000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls8{letter-spacing:-1.280000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.414933pt;}
.ls2{letter-spacing:-0.079467pt;}
.ls4{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls7{letter-spacing:41.374720pt;}
.lsa{letter-spacing:43.366400pt;}
.ls6{letter-spacing:56.734720pt;}
.wsa{word-spacing:-53.760000pt;}
.ws8{word-spacing:-48.640000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-13.440000pt;}
.wsc{word-spacing:-13.025067pt;}
.wsd{word-spacing:-12.800000pt;}
.wsb{word-spacing:-12.160000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws6{word-spacing:-8.000000pt;}
.ws5{word-spacing:-7.936000pt;}
.ws9{word-spacing:0.000000pt;}
._1c{margin-left:-2.963627pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:3.972693pt;}
._f{width:5.593600pt;}
._e{width:6.699520pt;}
._b{width:7.623680pt;}
._c{width:9.032533pt;}
._14{width:10.183680pt;}
._17{width:11.105280pt;}
._16{width:12.082347pt;}
._9{width:13.064107pt;}
._d{width:14.164480pt;}
._8{width:15.134720pt;}
._15{width:16.179200pt;}
._13{width:17.379840pt;}
._1b{width:19.062187pt;}
._1a{width:20.403200pt;}
._19{width:21.826560pt;}
._18{width:22.909440pt;}
._1d{width:23.889920pt;}
._11{width:25.950720pt;}
._10{width:26.982400pt;}
._12{width:28.331520pt;}
._6{width:62.213120pt;}
._7{width:68.474453pt;}
._5{width:871.578453pt;}
.fs5{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.640000pt;}
.fsc{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:2.550667pt;}
.yb0{bottom:3.186667pt;}
.ya9{bottom:3.200000pt;}
.yab{bottom:3.506667pt;}
.yb3{bottom:3.508000pt;}
.yb5{bottom:3.516000pt;}
.y3f{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y58{bottom:4.773333pt;}
.y56{bottom:6.070667pt;}
.y2{bottom:8.960000pt;}
.y48{bottom:9.590667pt;}
.y3e{bottom:18.880000pt;}
.y55{bottom:19.830667pt;}
.y4{bottom:20.800000pt;}
.y3d{bottom:34.240000pt;}
.y54{bottom:35.190667pt;}
.y47{bottom:35.830667pt;}
.y3{bottom:42.560000pt;}
.y46{bottom:46.390667pt;}
.y53{bottom:49.590667pt;}
.y3c{bottom:49.600000pt;}
.y45{bottom:57.910667pt;}
.y52{bottom:63.350667pt;}
.y8{bottom:63.712000pt;}
.y3b{bottom:65.000000pt;}
.y44{bottom:69.430667pt;}
.y51{bottom:77.110667pt;}
.y3a{bottom:80.360000pt;}
.y7{bottom:81.312000pt;}
.y43{bottom:87.030667pt;}
.y50{bottom:88.630667pt;}
.y4f{bottom:94.070667pt;}
.yb6{bottom:94.116000pt;}
.y39{bottom:95.720000pt;}
.yd3{bottom:107.552000pt;}
.y4e{bottom:108.150667pt;}
.yb4{bottom:110.116000pt;}
.y38{bottom:111.080000pt;}
.y8d{bottom:112.352000pt;}
.y4d{bottom:121.937333pt;}
.yd2{bottom:122.912000pt;}
.y37{bottom:126.120000pt;}
.yb2{bottom:126.156000pt;}
.y8c{bottom:127.744000pt;}
.y40{bottom:131.916000pt;}
.y4c{bottom:135.697333pt;}
.yd1{bottom:137.346667pt;}
.y36{bottom:141.480000pt;}
.y42{bottom:142.097333pt;}
.yb1{bottom:142.160000pt;}
.y8b{bottom:143.106667pt;}
.y4b{bottom:149.457333pt;}
.y41{bottom:151.697333pt;}
.yd0{bottom:152.066667pt;}
.y35{bottom:156.840000pt;}
.yaf{bottom:158.160000pt;}
.y8a{bottom:158.466667pt;}
.y4a{bottom:163.217333pt;}
.ycf{bottom:166.466667pt;}
.y34{bottom:172.226667pt;}
.y89{bottom:173.506667pt;}
.yae{bottom:177.346667pt;}
.yce{bottom:181.186667pt;}
.y33{bottom:187.586667pt;}
.ycd{bottom:195.586667pt;}
.y88{bottom:196.866667pt;}
.yad{bottom:198.160000pt;}
.y32{bottom:202.946667pt;}
.y20{bottom:208.386667pt;}
.ycc{bottom:209.986667pt;}
.y87{bottom:212.226667pt;}
.yac{bottom:214.160000pt;}
.y31{bottom:218.306667pt;}
.y86{bottom:227.586667pt;}
.y1f{bottom:229.826667pt;}
.yaa{bottom:230.160000pt;}
.ycb{bottom:233.026667pt;}
.y30{bottom:233.666667pt;}
.y85{bottom:242.973333pt;}
.ya8{bottom:246.173333pt;}
.yca{bottom:247.453333pt;}
.y2f{bottom:249.026667pt;}
.y1e{bottom:251.266667pt;}
.y84{bottom:258.333333pt;}
.yc9{bottom:262.173333pt;}
.y2e{bottom:264.386667pt;}
.ya7{bottom:265.373333pt;}
.y1d{bottom:272.706667pt;}
.y83{bottom:273.373333pt;}
.yc8{bottom:276.573333pt;}
.y2d{bottom:279.746667pt;}
.ya6{bottom:289.053333pt;}
.yc7{bottom:291.293333pt;}
.y1c{bottom:294.173333pt;}
.y2c{bottom:295.133333pt;}
.y82{bottom:297.053333pt;}
.ya5{bottom:304.413333pt;}
.yc6{bottom:305.693333pt;}
.y12{bottom:309.853333pt;}
.y81{bottom:312.413333pt;}
.y1b{bottom:315.613333pt;}
.ya4{bottom:319.453333pt;}
.yc5{bottom:320.413333pt;}
.y80{bottom:327.773333pt;}
.y2b{bottom:333.213333pt;}
.yc4{bottom:334.493333pt;}
.y1a{bottom:337.053333pt;}
.y7f{bottom:343.133333pt;}
.y2a{bottom:346.973333pt;}
.yc3{bottom:357.533333pt;}
.y19{bottom:358.493333pt;}
.y29{bottom:360.733333pt;}
.yc2{bottom:371.973333pt;}
.y7e{bottom:373.573333pt;}
.y28{bottom:374.493333pt;}
.y18{bottom:379.933333pt;}
.yc1{bottom:383.493333pt;}
.y27{bottom:388.253333pt;}
.y7d{bottom:388.933333pt;}
.y17{bottom:401.693333pt;}
.y26{bottom:402.053333pt;}
.y7c{bottom:404.293333pt;}
.y25{bottom:415.813333pt;}
.y7b{bottom:419.653333pt;}
.y16{bottom:423.173333pt;}
.y24{bottom:429.573333pt;}
.y7a{bottom:435.013333pt;}
.y23{bottom:443.653333pt;}
.y15{bottom:444.613333pt;}
.y79{bottom:450.373333pt;}
.y22{bottom:457.413333pt;}
.y78{bottom:465.733333pt;}
.y14{bottom:466.053333pt;}
.y77{bottom:481.120000pt;}
.y21{bottom:484.613333pt;}
.y13{bottom:487.493333pt;}
.ya3{bottom:496.160000pt;}
.y76{bottom:496.480000pt;}
.y75{bottom:511.840000pt;}
.y74{bottom:527.200000pt;}
.y73{bottom:542.560000pt;}
.y72{bottom:557.280000pt;}
.ya2{bottom:557.600000pt;}
.y71{bottom:572.640000pt;}
.ya1{bottom:588.000000pt;}
.y70{bottom:596.346667pt;}
.y6f{bottom:611.706667pt;}
.yc0{bottom:619.706667pt;}
.y6e{bottom:627.066667pt;}
.ybf{bottom:634.746667pt;}
.y6d{bottom:642.426667pt;}
.ya0{bottom:643.386667pt;}
.ybe{bottom:650.106667pt;}
.y6c{bottom:657.786667pt;}
.y9f{bottom:658.746667pt;}
.ybd{bottom:662.266667pt;}
.y6b{bottom:673.146667pt;}
.y9e{bottom:675.066667pt;}
.y6a{bottom:688.506667pt;}
.y9d{bottom:690.426667pt;}
.y69{bottom:703.866667pt;}
.y9c{bottom:706.746667pt;}
.y68{bottom:718.946667pt;}
.y9b{bottom:722.146667pt;}
.y9a{bottom:737.826667pt;}
.y67{bottom:742.306667pt;}
.y99{bottom:753.186667pt;}
.y66{bottom:757.666667pt;}
.y65{bottom:773.986667pt;}
.y98{bottom:776.866667pt;}
.y64{bottom:789.346667pt;}
.y97{bottom:792.226667pt;}
.y63{bottom:805.666667pt;}
.y96{bottom:807.586667pt;}
.y11{bottom:808.226667pt;}
.y10{bottom:813.026667pt;}
.y62{bottom:821.026667pt;}
.y95{bottom:822.946667pt;}
.yf{bottom:828.386667pt;}
.y61{bottom:837.373333pt;}
.y94{bottom:838.333333pt;}
.ybc{bottom:846.333333pt;}
.ye{bottom:849.533333pt;}
.y60{bottom:852.733333pt;}
.y93{bottom:853.693333pt;}
.yd{bottom:858.813333pt;}
.ybb{bottom:861.373333pt;}
.y5f{bottom:868.733333pt;}
.y92{bottom:869.053333pt;}
.yba{bottom:877.053333pt;}
.yc{bottom:880.253333pt;}
.y5e{bottom:884.093333pt;}
.y91{bottom:884.413333pt;}
.yb9{bottom:892.413333pt;}
.y5d{bottom:899.453333pt;}
.y90{bottom:899.773333pt;}
.yb{bottom:906.493333pt;}
.yb8{bottom:907.773333pt;}
.y8f{bottom:914.813333pt;}
.y5c{bottom:922.813333pt;}
.ya{bottom:928.253333pt;}
.y8e{bottom:929.853333pt;}
.y5b{bottom:938.173333pt;}
.y9{bottom:952.933333pt;}
.y5a{bottom:953.573333pt;}
.y57{bottom:955.840000pt;}
.yb7{bottom:968.613333pt;}
.y59{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.ha{height:3.702500pt;}
.h16{height:5.022500pt;}
.h1b{height:15.346667pt;}
.h1d{height:15.348000pt;}
.h1e{height:15.356000pt;}
.h1c{height:15.360000pt;}
.h18{height:24.640000pt;}
.h14{height:26.381250pt;}
.h9{height:33.918750pt;}
.hd{height:36.431250pt;}
.hc{height:37.410000pt;}
.h10{height:37.537500pt;}
.he{height:47.713750pt;}
.h15{height:49.020000pt;}
.h1f{height:50.250000pt;}
.h20{height:51.600000pt;}
.h21{height:52.625532pt;}
.h17{height:52.736250pt;}
.h6{height:52.762500pt;}
.hf{height:54.180000pt;}
.h11{height:55.046250pt;}
.h1a{height:55.256809pt;}
.h19{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h13{height:62.812500pt;}
.h7{height:74.820000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h12{height:177.280000pt;}
.hb{height:495.813333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w9{width:107.520000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w8{width:165.186667pt;}
.wb{width:173.506667pt;}
.w7{width:191.120000pt;}
.wa{width:201.346667pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.112000pt;}
.x1c{left:7.373333pt;}
.x4{left:11.826667pt;}
.x2a{left:13.440000pt;}
.x1a{left:14.708000pt;}
.x17{left:15.668000pt;}
.x19{left:17.588000pt;}
.x2c{left:22.066667pt;}
.x18{left:23.348000pt;}
.x20{left:25.908000pt;}
.x32{left:27.226667pt;}
.x6{left:31.346667pt;}
.x34{left:37.440000pt;}
.x11{left:39.028000pt;}
.x33{left:40.000000pt;}
.x1f{left:42.260000pt;}
.x12{left:45.140000pt;}
.x10{left:48.980000pt;}
.x22{left:50.900000pt;}
.x1d{left:55.373333pt;}
.x21{left:58.902667pt;}
.x15{left:64.982667pt;}
.x28{left:68.813333pt;}
.x1{left:69.804000pt;}
.x16{left:71.382667pt;}
.x2d{left:75.840000pt;}
.x7{left:76.832000pt;}
.x30{left:77.800000pt;}
.x2e{left:79.066667pt;}
.xa{left:80.672000pt;}
.x14{left:82.582667pt;}
.x2{left:84.822667pt;}
.x23{left:91.542667pt;}
.x1e{left:95.062667pt;}
.x25{left:100.832000pt;}
.x13{left:110.742667pt;}
.x26{left:124.864000pt;}
.x5{left:125.813333pt;}
.x3{left:162.000000pt;}
.xc{left:163.586667pt;}
.x27{left:164.560000pt;}
.x1b{left:194.640000pt;}
.x2f{left:209.373333pt;}
.xd{left:238.813333pt;}
.x29{left:356.640000pt;}
.xb{left:384.480000pt;}
.x31{left:411.360000pt;}
.x2b{left:522.480000pt;}
.xe{left:529.826667pt;}
.x36{left:559.906667pt;}
.x35{left:598.013333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.xf{left:717.413333pt;}
}




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