
    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_677107bc0f7cd727f3f9e63a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c2215d363a50a107fdc8eec8.woff2')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_38265af402b2df24dafe9a5c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904785;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_2ab7a174294c0e05191cbc15.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1e0a4fa418396b901b336ae7.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5853360690272bb65c7f856b.woff2')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_c57a8fab6b9a32518e36f3f5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.937988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_854bdf713f2eac459e4172f3.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.916992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a4cd954ef3808cc78a9d2568.woff2')format("woff");}.ffa{font-family:ffa;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);}
.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);}
.v1{vertical-align:-82.800000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.449400px;}
.lsc{letter-spacing:-0.428400px;}
.lsf{letter-spacing:-0.341400px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.028080px;}
.ls5{letter-spacing:0.129600px;}
.ls17{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.291600px;}
.ls10{letter-spacing:0.378600px;}
.lsd{letter-spacing:5.580000px;}
.ls3{letter-spacing:14.940000px;}
.ls12{letter-spacing:16.380000px;}
.ls9{letter-spacing:22.860000px;}
.ls11{letter-spacing:23.580000px;}
.ls4{letter-spacing:27.180000px;}
.ls1{letter-spacing:30.240000px;}
.ls8{letter-spacing:32.400000px;}
.ls2{letter-spacing:32.580000px;}
.ls16{letter-spacing:33.984000px;}
.lsb{letter-spacing:39.420000px;}
.lse{letter-spacing:41.580000px;}
.ls13{letter-spacing:42.300000px;}
.ls0{letter-spacing:43.200000px;}
.ls15{letter-spacing:49.500000px;}
.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;}
}
.ws5{word-spacing:-21.438600px;}
.ws2{word-spacing:-21.060000px;}
.ws4{word-spacing:-20.718600px;}
.ws6{word-spacing:-20.610600px;}
.ws7{word-spacing:-18.216000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-19.818720px;}
._0{margin-left:-1.263600px;}
._1{width:1.020000px;}
._14{width:2.807520px;}
._22{width:4.717440px;}
._23{width:5.812560px;}
._2b{width:7.160400px;}
._21{width:8.255520px;}
._a{width:9.350640px;}
._b{width:10.433280px;}
._1a{width:11.729040px;}
._11{width:13.121760px;}
._10{width:14.573520px;}
._27{width:15.752880px;}
._e{width:17.016480px;}
._d{width:18.111600px;}
._1b{width:20.049120px;}
._16{width:22.217520px;}
._2e{width:23.334480px;}
._6{width:24.447600px;}
._5{width:25.488000px;}
._13{width:26.689680px;}
._12{width:27.897840px;}
._2c{width:29.147040px;}
._2{width:30.648000px;}
._4{width:31.932000px;}
._8{width:33.438240px;}
._f{width:35.047920px;}
._1d{width:36.812880px;}
._1c{width:37.823760px;}
._30{width:38.918880px;}
._2f{width:40.014000px;}
._31{width:41.215200px;}
._7{width:43.344000px;}
._3a{width:44.899920px;}
._17{width:46.163520px;}
._18{width:47.418000px;}
._3f{width:48.513120px;}
._c{width:49.533120px;}
._3{width:52.200000px;}
._28{width:54.587520px;}
._35{width:55.851120px;}
._38{width:56.946240px;}
._1f{width:59.136480px;}
._1e{width:60.147360px;}
._39{width:62.927280px;}
._36{width:64.527840px;}
._9{width:65.959920px;}
._24{width:68.234400px;}
._29{width:72.025200px;}
._2a{width:73.036080px;}
._25{width:74.552400px;}
._20{width:78.174720px;}
._34{width:79.178640px;}
._3e{width:80.870400px;}
._3d{width:95.528160px;}
._26{width:106.984800px;}
._3b{width:109.933200px;}
._37{width:115.914240px;}
._19{width:117.009360px;}
._3c{width:126.696960px;}
._2d{width:128.381760px;}
._33{width:135.289440px;}
._32{width:136.300320px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(7,57,118);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y4{bottom:12.240000px;}
.y3{bottom:28.296000px;}
.y2{bottom:31.176000px;}
.y52{bottom:71.316000px;}
.y8c{bottom:72.936000px;}
.yab{bottom:77.436000px;}
.y51{bottom:99.216000px;}
.y2d{bottom:99.936000px;}
.y8b{bottom:100.656000px;}
.yaa{bottom:105.156000px;}
.y67{bottom:116.316000px;}
.y50{bottom:126.936000px;}
.y2c{bottom:127.656000px;}
.y8a{bottom:128.376000px;}
.ya9{bottom:132.876000px;}
.y66{bottom:144.036000px;}
.y4f{bottom:154.650000px;}
.y89{bottom:156.090000px;}
.y2b{bottom:156.990000px;}
.ya8{bottom:160.770000px;}
.y65{bottom:173.370000px;}
.y4e{bottom:182.370000px;}
.y88{bottom:183.990000px;}
.y2a{bottom:186.330000px;}
.ya7{bottom:188.490000px;}
.y64{bottom:201.090000px;}
.y4d{bottom:210.270000px;}
.y87{bottom:211.710000px;}
.y29{bottom:214.050000px;}
.ya6{bottom:216.210000px;}
.y63{bottom:230.430000px;}
.y4c{bottom:237.990000px;}
.y86{bottom:239.430000px;}
.y28{bottom:243.390000px;}
.ya5{bottom:243.930000px;}
.y62{bottom:258.150000px;}
.y4b{bottom:265.710000px;}
.y85{bottom:267.330000px;}
.y27{bottom:271.110000px;}
.ya4{bottom:271.830000px;}
.y61{bottom:286.095000px;}
.y4a{bottom:293.655000px;}
.y84{bottom:295.095000px;}
.y26{bottom:298.875000px;}
.ya3{bottom:299.595000px;}
.y60{bottom:313.815000px;}
.y49{bottom:321.375000px;}
.y83{bottom:322.815000px;}
.ya2{bottom:327.315000px;}
.y25{bottom:328.215000px;}
.y5f{bottom:341.535000px;}
.y48{bottom:349.095000px;}
.y82{bottom:350.535000px;}
.ya1{bottom:355.215000px;}
.y24{bottom:355.935000px;}
.y5e{bottom:369.255000px;}
.y47{bottom:376.815000px;}
.y81{bottom:378.435000px;}
.ya0{bottom:382.935000px;}
.y23{bottom:383.835000px;}
.y5d{bottom:398.595000px;}
.y46{bottom:404.715000px;}
.y80{bottom:406.155000px;}
.y9f{bottom:410.655000px;}
.y22{bottom:411.555000px;}
.y5c{bottom:426.315000px;}
.y45{bottom:432.435000px;}
.y7f{bottom:433.875000px;}
.y9e{bottom:438.375000px;}
.y21{bottom:439.275000px;}
.y5b{bottom:455.655000px;}
.y44{bottom:460.155000px;}
.y7e{bottom:461.775000px;}
.y9d{bottom:466.275000px;}
.y20{bottom:466.995000px;}
.y5a{bottom:483.375000px;}
.y43{bottom:487.875000px;}
.y7d{bottom:489.495000px;}
.y9c{bottom:493.995000px;}
.y1f{bottom:494.895000px;}
.y59{bottom:511.095000px;}
.y42{bottom:515.775000px;}
.y7c{bottom:517.215000px;}
.y9b{bottom:521.715000px;}
.y1e{bottom:522.615000px;}
.y58{bottom:540.435000px;}
.y41{bottom:543.495000px;}
.y7b{bottom:544.935000px;}
.y9a{bottom:549.615000px;}
.y1d{bottom:550.335000px;}
.y57{bottom:569.805000px;}
.y40{bottom:571.245000px;}
.y7a{bottom:572.865000px;}
.y99{bottom:577.365000px;}
.y1c{bottom:578.265000px;}
.y56{bottom:597.525000px;}
.y3f{bottom:599.145000px;}
.y79{bottom:600.585000px;}
.y98{bottom:605.085000px;}
.y1b{bottom:605.985000px;}
.y55{bottom:625.245000px;}
.yb5{bottom:626.325000px;}
.y3e{bottom:626.865000px;}
.y78{bottom:628.305000px;}
.y97{bottom:632.805000px;}
.y1a{bottom:633.705000px;}
.y54{bottom:653.145000px;}
.y3d{bottom:654.585000px;}
.y77{bottom:656.205000px;}
.y96{bottom:660.705000px;}
.y19{bottom:661.425000px;}
.yb4{bottom:662.505000px;}
.y53{bottom:680.685000px;}
.y3c{bottom:682.305000px;}
.y76{bottom:683.925000px;}
.yb3{bottom:686.085000px;}
.y95{bottom:688.425000px;}
.y18{bottom:689.325000px;}
.yb2{bottom:706.785000px;}
.y3b{bottom:710.205000px;}
.y75{bottom:711.645000px;}
.y17{bottom:712.905000px;}
.y94{bottom:716.145000px;}
.yb1{bottom:727.485000px;}
.y16{bottom:733.605000px;}
.y3a{bottom:737.745000px;}
.y74{bottom:739.365000px;}
.y93{bottom:743.865000px;}
.yb0{bottom:748.185000px;}
.y15{bottom:754.305000px;}
.y39{bottom:767.265000px;}
.yaf{bottom:768.885000px;}
.y92{bottom:771.765000px;}
.y14{bottom:775.005000px;}
.yae{bottom:789.585000px;}
.y38{bottom:794.805000px;}
.y73{bottom:794.985000px;}
.y13{bottom:795.705000px;}
.y91{bottom:799.485000px;}
.yad{bottom:810.285000px;}
.y12{bottom:816.405000px;}
.y72{bottom:822.705000px;}
.y37{bottom:824.325000px;}
.y90{bottom:827.205000px;}
.yac{bottom:832.785000px;}
.y11{bottom:837.105000px;}
.y71{bottom:850.470000px;}
.y36{bottom:851.910000px;}
.y8f{bottom:855.150000px;}
.y10{bottom:857.850000px;}
.y70{bottom:878.370000px;}
.yf{bottom:878.550000px;}
.y35{bottom:881.250000px;}
.y8e{bottom:882.870000px;}
.ye{bottom:899.250000px;}
.y6f{bottom:906.090000px;}
.y34{bottom:908.970000px;}
.y8d{bottom:910.590000px;}
.y6e{bottom:933.810000px;}
.y33{bottom:938.310000px;}
.yd{bottom:940.650000px;}
.yc{bottom:961.350000px;}
.y6d{bottom:963.150000px;}
.y32{bottom:966.210000px;}
.yb{bottom:982.050000px;}
.y6c{bottom:990.870000px;}
.y31{bottom:993.930000px;}
.ya{bottom:1002.750000px;}
.y6b{bottom:1018.590000px;}
.y30{bottom:1021.650000px;}
.y9{bottom:1023.450000px;}
.y8{bottom:1044.150000px;}
.y6a{bottom:1047.930000px;}
.y2f{bottom:1049.550000px;}
.y7{bottom:1063.770000px;}
.y69{bottom:1075.650000px;}
.y2e{bottom:1077.270000px;}
.y6{bottom:1080.870000px;}
.y68{bottom:1103.370000px;}
.y5{bottom:1104.990000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h6{height:54.421875px;}
.h5{height:58.038398px;}
.hc{height:58.651172px;}
.ha{height:59.066719px;}
.h9{height:59.343750px;}
.h8{height:70.628906px;}
.he{height:70.664062px;}
.h7{height:72.562500px;}
.hd{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.hb{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.996000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:22.140000px;}
.x1{left:84.959987px;}
.xf{left:90.035987px;}
.x4{left:109.115987px;}
.x10{left:117.035987px;}
.xd{left:127.475987px;}
.x9{left:162.209987px;}
.x5{left:168.509987px;}
.x8{left:236.549987px;}
.xb{left:342.434987px;}
.xa{left:373.034987px;}
.x7{left:380.594987px;}
.x2{left:409.215000px;}
.xe{left:419.474987px;}
.x6{left:446.474987px;}
.xc{left:467.714987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.399467pt;}
.lsc{letter-spacing:-0.380800pt;}
.lsf{letter-spacing:-0.303467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.024960pt;}
.ls5{letter-spacing:0.115200pt;}
.ls17{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.259200pt;}
.ls10{letter-spacing:0.336533pt;}
.lsd{letter-spacing:4.960000pt;}
.ls3{letter-spacing:13.280000pt;}
.ls12{letter-spacing:14.560000pt;}
.ls9{letter-spacing:20.320000pt;}
.ls11{letter-spacing:20.960000pt;}
.ls4{letter-spacing:24.160000pt;}
.ls1{letter-spacing:26.880000pt;}
.ls8{letter-spacing:28.800000pt;}
.ls2{letter-spacing:28.960000pt;}
.ls16{letter-spacing:30.208000pt;}
.lsb{letter-spacing:35.040000pt;}
.lse{letter-spacing:36.960000pt;}
.ls13{letter-spacing:37.600000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls15{letter-spacing:44.000000pt;}
.ws5{word-spacing:-19.056533pt;}
.ws2{word-spacing:-18.720000pt;}
.ws4{word-spacing:-18.416533pt;}
.ws6{word-spacing:-18.320533pt;}
.ws7{word-spacing:-16.192000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-17.616640pt;}
._0{margin-left:-1.123200pt;}
._1{width:0.906667pt;}
._14{width:2.495573pt;}
._22{width:4.193280pt;}
._23{width:5.166720pt;}
._2b{width:6.364800pt;}
._21{width:7.338240pt;}
._a{width:8.311680pt;}
._b{width:9.274027pt;}
._1a{width:10.425813pt;}
._11{width:11.663787pt;}
._10{width:12.954240pt;}
._27{width:14.002560pt;}
._e{width:15.125760pt;}
._d{width:16.099200pt;}
._1b{width:17.821440pt;}
._16{width:19.748907pt;}
._2e{width:20.741760pt;}
._6{width:21.731200pt;}
._5{width:22.656000pt;}
._13{width:23.724160pt;}
._12{width:24.798080pt;}
._2c{width:25.908480pt;}
._2{width:27.242667pt;}
._4{width:28.384000pt;}
._8{width:29.722880pt;}
._f{width:31.153707pt;}
._1d{width:32.722560pt;}
._1c{width:33.621120pt;}
._30{width:34.594560pt;}
._2f{width:35.568000pt;}
._31{width:36.635733pt;}
._7{width:38.528000pt;}
._3a{width:39.911040pt;}
._17{width:41.034240pt;}
._18{width:42.149333pt;}
._3f{width:43.122773pt;}
._c{width:44.029440pt;}
._3{width:46.400000pt;}
._28{width:48.522240pt;}
._35{width:49.645440pt;}
._38{width:50.618880pt;}
._1f{width:52.565760pt;}
._1e{width:53.464320pt;}
._39{width:55.935360pt;}
._36{width:57.358080pt;}
._9{width:58.631040pt;}
._24{width:60.652800pt;}
._29{width:64.022400pt;}
._2a{width:64.920960pt;}
._25{width:66.268800pt;}
._20{width:69.488640pt;}
._34{width:70.381013pt;}
._3e{width:71.884800pt;}
._3d{width:84.913920pt;}
._26{width:95.097600pt;}
._3b{width:97.718400pt;}
._37{width:103.034880pt;}
._19{width:104.008320pt;}
._3c{width:112.619520pt;}
._2d{width:114.117120pt;}
._33{width:120.257280pt;}
._32{width:121.155840pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:10.880000pt;}
.y3{bottom:25.152000pt;}
.y2{bottom:27.712000pt;}
.y52{bottom:63.392000pt;}
.y8c{bottom:64.832000pt;}
.yab{bottom:68.832000pt;}
.y51{bottom:88.192000pt;}
.y2d{bottom:88.832000pt;}
.y8b{bottom:89.472000pt;}
.yaa{bottom:93.472000pt;}
.y67{bottom:103.392000pt;}
.y50{bottom:112.832000pt;}
.y2c{bottom:113.472000pt;}
.y8a{bottom:114.112000pt;}
.ya9{bottom:118.112000pt;}
.y66{bottom:128.032000pt;}
.y4f{bottom:137.466667pt;}
.y89{bottom:138.746667pt;}
.y2b{bottom:139.546667pt;}
.ya8{bottom:142.906667pt;}
.y65{bottom:154.106667pt;}
.y4e{bottom:162.106667pt;}
.y88{bottom:163.546667pt;}
.y2a{bottom:165.626667pt;}
.ya7{bottom:167.546667pt;}
.y64{bottom:178.746667pt;}
.y4d{bottom:186.906667pt;}
.y87{bottom:188.186667pt;}
.y29{bottom:190.266667pt;}
.ya6{bottom:192.186667pt;}
.y63{bottom:204.826667pt;}
.y4c{bottom:211.546667pt;}
.y86{bottom:212.826667pt;}
.y28{bottom:216.346667pt;}
.ya5{bottom:216.826667pt;}
.y62{bottom:229.466667pt;}
.y4b{bottom:236.186667pt;}
.y85{bottom:237.626667pt;}
.y27{bottom:240.986667pt;}
.ya4{bottom:241.626667pt;}
.y61{bottom:254.306667pt;}
.y4a{bottom:261.026667pt;}
.y84{bottom:262.306667pt;}
.y26{bottom:265.666667pt;}
.ya3{bottom:266.306667pt;}
.y60{bottom:278.946667pt;}
.y49{bottom:285.666667pt;}
.y83{bottom:286.946667pt;}
.ya2{bottom:290.946667pt;}
.y25{bottom:291.746667pt;}
.y5f{bottom:303.586667pt;}
.y48{bottom:310.306667pt;}
.y82{bottom:311.586667pt;}
.ya1{bottom:315.746667pt;}
.y24{bottom:316.386667pt;}
.y5e{bottom:328.226667pt;}
.y47{bottom:334.946667pt;}
.y81{bottom:336.386667pt;}
.ya0{bottom:340.386667pt;}
.y23{bottom:341.186667pt;}
.y5d{bottom:354.306667pt;}
.y46{bottom:359.746667pt;}
.y80{bottom:361.026667pt;}
.y9f{bottom:365.026667pt;}
.y22{bottom:365.826667pt;}
.y5c{bottom:378.946667pt;}
.y45{bottom:384.386667pt;}
.y7f{bottom:385.666667pt;}
.y9e{bottom:389.666667pt;}
.y21{bottom:390.466667pt;}
.y5b{bottom:405.026667pt;}
.y44{bottom:409.026667pt;}
.y7e{bottom:410.466667pt;}
.y9d{bottom:414.466667pt;}
.y20{bottom:415.106667pt;}
.y5a{bottom:429.666667pt;}
.y43{bottom:433.666667pt;}
.y7d{bottom:435.106667pt;}
.y9c{bottom:439.106667pt;}
.y1f{bottom:439.906667pt;}
.y59{bottom:454.306667pt;}
.y42{bottom:458.466667pt;}
.y7c{bottom:459.746667pt;}
.y9b{bottom:463.746667pt;}
.y1e{bottom:464.546667pt;}
.y58{bottom:480.386667pt;}
.y41{bottom:483.106667pt;}
.y7b{bottom:484.386667pt;}
.y9a{bottom:488.546667pt;}
.y1d{bottom:489.186667pt;}
.y57{bottom:506.493333pt;}
.y40{bottom:507.773333pt;}
.y7a{bottom:509.213333pt;}
.y99{bottom:513.213333pt;}
.y1c{bottom:514.013333pt;}
.y56{bottom:531.133333pt;}
.y3f{bottom:532.573333pt;}
.y79{bottom:533.853333pt;}
.y98{bottom:537.853333pt;}
.y1b{bottom:538.653333pt;}
.y55{bottom:555.773333pt;}
.yb5{bottom:556.733333pt;}
.y3e{bottom:557.213333pt;}
.y78{bottom:558.493333pt;}
.y97{bottom:562.493333pt;}
.y1a{bottom:563.293333pt;}
.y54{bottom:580.573333pt;}
.y3d{bottom:581.853333pt;}
.y77{bottom:583.293333pt;}
.y96{bottom:587.293333pt;}
.y19{bottom:587.933333pt;}
.yb4{bottom:588.893333pt;}
.y53{bottom:605.053333pt;}
.y3c{bottom:606.493333pt;}
.y76{bottom:607.933333pt;}
.yb3{bottom:609.853333pt;}
.y95{bottom:611.933333pt;}
.y18{bottom:612.733333pt;}
.yb2{bottom:628.253333pt;}
.y3b{bottom:631.293333pt;}
.y75{bottom:632.573333pt;}
.y17{bottom:633.693333pt;}
.y94{bottom:636.573333pt;}
.yb1{bottom:646.653333pt;}
.y16{bottom:652.093333pt;}
.y3a{bottom:655.773333pt;}
.y74{bottom:657.213333pt;}
.y93{bottom:661.213333pt;}
.yb0{bottom:665.053333pt;}
.y15{bottom:670.493333pt;}
.y39{bottom:682.013333pt;}
.yaf{bottom:683.453333pt;}
.y92{bottom:686.013333pt;}
.y14{bottom:688.893333pt;}
.yae{bottom:701.853333pt;}
.y38{bottom:706.493333pt;}
.y73{bottom:706.653333pt;}
.y13{bottom:707.293333pt;}
.y91{bottom:710.653333pt;}
.yad{bottom:720.253333pt;}
.y12{bottom:725.693333pt;}
.y72{bottom:731.293333pt;}
.y37{bottom:732.733333pt;}
.y90{bottom:735.293333pt;}
.yac{bottom:740.253333pt;}
.y11{bottom:744.093333pt;}
.y71{bottom:755.973333pt;}
.y36{bottom:757.253333pt;}
.y8f{bottom:760.133333pt;}
.y10{bottom:762.533333pt;}
.y70{bottom:780.773333pt;}
.yf{bottom:780.933333pt;}
.y35{bottom:783.333333pt;}
.y8e{bottom:784.773333pt;}
.ye{bottom:799.333333pt;}
.y6f{bottom:805.413333pt;}
.y34{bottom:807.973333pt;}
.y8d{bottom:809.413333pt;}
.y6e{bottom:830.053333pt;}
.y33{bottom:834.053333pt;}
.yd{bottom:836.133333pt;}
.yc{bottom:854.533333pt;}
.y6d{bottom:856.133333pt;}
.y32{bottom:858.853333pt;}
.yb{bottom:872.933333pt;}
.y6c{bottom:880.773333pt;}
.y31{bottom:883.493333pt;}
.ya{bottom:891.333333pt;}
.y6b{bottom:905.413333pt;}
.y30{bottom:908.133333pt;}
.y9{bottom:909.733333pt;}
.y8{bottom:928.133333pt;}
.y6a{bottom:931.493333pt;}
.y2f{bottom:932.933333pt;}
.y7{bottom:945.573333pt;}
.y69{bottom:956.133333pt;}
.y2e{bottom:957.573333pt;}
.y6{bottom:960.773333pt;}
.y68{bottom:980.773333pt;}
.y5{bottom:982.213333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h6{height:48.375000pt;}
.h5{height:51.589687pt;}
.hc{height:52.134375pt;}
.ha{height:52.503750pt;}
.h9{height:52.750000pt;}
.h8{height:62.781250pt;}
.he{height:62.812500pt;}
.h7{height:64.500000pt;}
.hd{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.hb{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.552000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:19.680000pt;}
.x1{left:75.519988pt;}
.xf{left:80.031988pt;}
.x4{left:96.991988pt;}
.x10{left:104.031988pt;}
.xd{left:113.311988pt;}
.x9{left:144.186655pt;}
.x5{left:149.786655pt;}
.x8{left:210.266655pt;}
.xb{left:304.386655pt;}
.xa{left:331.586655pt;}
.x7{left:338.306655pt;}
.x2{left:363.746667pt;}
.xe{left:372.866655pt;}
.x6{left:396.866655pt;}
.xc{left:415.746655pt;}
}




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