
    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_ac73fcc5cd55cda238283aae.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_2b6b89e835334fc2ba3ce419.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.189941;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_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d3bda6d5cfe068d38f499e3c.woff2')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_5c706bfac803a773f307f5f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.148926;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_425e6f71657c7682e75dc2c8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_86d0493040b610a30fe219b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.171387;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_8a94c6ab56d5582a4fa33af6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.171387;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:-96.480000px;}
.v11{vertical-align:-16.560000px;}
.v3{vertical-align:-15.120000px;}
.vc{vertical-align:-13.680000px;}
.v12{vertical-align:-11.520000px;}
.v7{vertical-align:-9.360000px;}
.vd{vertical-align:-7.920000px;}
.v6{vertical-align:-4.320000px;}
.v9{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:2.160000px;}
.v5{vertical-align:4.320000px;}
.ve{vertical-align:7.920000px;}
.v8{vertical-align:9.360000px;}
.v10{vertical-align:10.800000px;}
.vb{vertical-align:13.680000px;}
.v4{vertical-align:15.120000px;}
.vf{vertical-align:16.560000px;}
.v2{vertical-align:27.360000px;}
.lsb{letter-spacing:-19.680000px;}
.ls13{letter-spacing:-0.390000px;}
.lsa{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.180000px;}
.lsc{letter-spacing:-0.096600px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.246000px;}
.ls9{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.496080px;}
.lse{letter-spacing:0.496200px;}
.lsd{letter-spacing:0.540000px;}
.ls11{letter-spacing:0.720000px;}
.ls10{letter-spacing:1.440000px;}
.ls12{letter-spacing:5.365440px;}
.lsf{letter-spacing:8.331120px;}
.ls1{letter-spacing:223.020000px;}
.ls2{letter-spacing:421.140000px;}
.ls0{letter-spacing:439.020000px;}
.ls3{letter-spacing:1098.000000px;}
.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;}
}
.ws0{word-spacing:-21.060000px;}
.ws1{word-spacing:-19.189920px;}
.ws7{word-spacing:-18.943920px;}
.ws2{word-spacing:-18.847320px;}
.ws3{word-spacing:-12.324960px;}
.ws5{word-spacing:-0.624240px;}
.ws6{word-spacing:-0.084240px;}
.ws4{word-spacing:0.000000px;}
.ws8{word-spacing:0.305760px;}
._7a{margin-left:-2903.549520px;}
._20{margin-left:-2899.466160px;}
._88{margin-left:-2897.738160px;}
._51{margin-left:-2893.038960px;}
._32{margin-left:-2890.461120px;}
._58{margin-left:-2878.777920px;}
._9a{margin-left:-2875.513440px;}
._3d{margin-left:-2871.664080px;}
._8d{margin-left:-2868.690720px;}
._27{margin-left:-2866.895040px;}
._50{margin-left:-2862.049920px;}
._52{margin-left:-2852.947920px;}
._49{margin-left:-2827.199040px;}
._f{margin-left:-2816.474640px;}
._5a{margin-left:-2807.692320px;}
._4e{margin-left:-2794.980480px;}
._44{margin-left:-2793.523920px;}
._d{margin-left:-2776.392960px;}
._65{margin-left:-2770.119600px;}
._78{margin-left:-2761.857600px;}
._33{margin-left:-2754.426000px;}
._2e{margin-left:-2732.460720px;}
._64{margin-left:-2711.960880px;}
._89{margin-left:-2700.958800px;}
._1e{margin-left:-2662.317120px;}
._3e{margin-left:-2660.494080px;}
._43{margin-left:-2626.557120px;}
._1f{margin-left:-2624.472720px;}
._40{margin-left:-2595.237360px;}
._42{margin-left:-2581.500000px;}
._4f{margin-left:-2552.879520px;}
._3c{margin-left:-2473.183920px;}
._45{margin-left:-2425.440000px;}
._46{margin-left:-2402.597520px;}
._1d{margin-left:-2341.140000px;}
._94{margin-left:-2307.336000px;}
._54{margin-left:-2234.616000px;}
._35{margin-left:-2208.120000px;}
._2f{margin-left:-2182.983840px;}
._6c{margin-left:-2139.794640px;}
._9{margin-left:-2095.386480px;}
._21{margin-left:-2058.729840px;}
._81{margin-left:-2034.480000px;}
._3b{margin-left:-1927.200000px;}
._57{margin-left:-1857.156000px;}
._1a{margin-left:-1831.272960px;}
._7f{margin-left:-1822.571760px;}
._9c{margin-left:-1777.056480px;}
._6e{margin-left:-1732.710960px;}
._68{margin-left:-1730.562480px;}
._8f{margin-left:-1652.398080px;}
._99{margin-left:-1645.101120px;}
._66{margin-left:-1602.732240px;}
._19{margin-left:-1601.580000px;}
._86{margin-left:-1590.240000px;}
._39{margin-left:-1581.600000px;}
._7b{margin-left:-1563.808080px;}
._6{margin-left:-1556.840160px;}
._82{margin-left:-1435.260000px;}
._6b{margin-left:-1387.442640px;}
._8c{margin-left:-1370.239680px;}
._0{margin-left:-1345.863360px;}
._3a{margin-left:-1297.200000px;}
._8a{margin-left:-1263.577440px;}
._75{margin-left:-1079.393040px;}
._61{margin-left:-1073.364720px;}
._7c{margin-left:-1072.260000px;}
._97{margin-left:-1043.265600px;}
._e{margin-left:-1022.971680px;}
._37{margin-left:-980.356800px;}
._8{margin-left:-966.486240px;}
._5{margin-left:-955.619280px;}
._84{margin-left:-935.240640px;}
._95{margin-left:-931.093200px;}
._70{margin-left:-864.156960px;}
._92{margin-left:-857.880000px;}
._18{margin-left:-855.036000px;}
._25{margin-left:-847.080000px;}
._55{margin-left:-809.471520px;}
._56{margin-left:-788.823360px;}
._9d{margin-left:-784.440000px;}
._36{margin-left:-742.680000px;}
._74{margin-left:-726.660000px;}
._22{margin-left:-703.596000px;}
._34{margin-left:-699.348960px;}
._1c{margin-left:-688.240800px;}
._98{margin-left:-680.444400px;}
._30{margin-left:-634.476000px;}
._53{margin-left:-609.633360px;}
._4{margin-left:-597.262320px;}
._5c{margin-left:-555.754320px;}
._60{margin-left:-489.180000px;}
._72{margin-left:-478.848240px;}
._71{margin-left:-473.340000px;}
._93{margin-left:-460.877040px;}
._85{margin-left:-391.704480px;}
._90{margin-left:-370.583280px;}
._7e{margin-left:-329.040000px;}
._5f{margin-left:-314.743680px;}
._5e{margin-left:-293.220000px;}
._6a{margin-left:-265.860000px;}
._c{margin-left:-226.050480px;}
._b{margin-left:-222.760080px;}
._47{margin-left:-203.940000px;}
._8b{margin-left:-188.100000px;}
._3f{margin-left:-121.680000px;}
._91{margin-left:-83.701200px;}
._73{margin-left:-69.811920px;}
._5d{margin-left:-63.000000px;}
._62{margin-left:-61.772880px;}
._9e{margin-left:-59.220000px;}
._24{margin-left:-48.931920px;}
._77{margin-left:-29.359680px;}
._1{margin-left:-21.818160px;}
._4c{margin-left:-19.783920px;}
._4b{margin-left:-15.330000px;}
._76{margin-left:-14.329200px;}
._2b{margin-left:-10.517760px;}
._29{margin-left:-9.297840px;}
._2a{margin-left:-7.826640px;}
._2d{margin-left:-4.650960px;}
._2c{margin-left:-3.466080px;}
._41{margin-left:-2.274480px;}
._2{margin-left:-1.179360px;}
._11{width:1.347840px;}
._10{width:2.527200px;}
._13{width:4.464720px;}
._12{width:5.475600px;}
._14{width:7.413120px;}
._15{width:9.265920px;}
._17{width:10.614240px;}
._16{width:11.877840px;}
._4d{width:19.290480px;}
._28{width:20.934480px;}
._87{width:26.347920px;}
._26{width:49.933440px;}
._59{width:112.628640px;}
._83{width:127.169760px;}
._7d{width:128.170800px;}
._3{width:220.533600px;}
._7{width:321.120000px;}
._80{width:434.957520px;}
._4a{width:444.681600px;}
._79{width:704.549760px;}
._23{width:756.249600px;}
._9b{width:759.293760px;}
._38{width:791.800320px;}
._96{width:910.080000px;}
._8e{width:931.225920px;}
._a{width:1173.600000px;}
._48{width:1288.581600px;}
._31{width:1322.453040px;}
._6f{width:1348.409280px;}
._5b{width:1450.042800px;}
._69{width:1452.223200px;}
._67{width:1491.700800px;}
._6d{width:1680.878640px;}
._1b{width:1769.189280px;}
._63{width:2474.078160px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.376000px;}
.y2{bottom:62.676000px;}
.y2d{bottom:92.376000px;}
.y2c{bottom:97.596000px;}
.y3b{bottom:113.256000px;}
.y44{bottom:114.696000px;}
.y2b{bottom:117.396000px;}
.y2a{bottom:122.616000px;}
.y3a{bottom:134.496000px;}
.y29{bottom:139.536000px;}
.y39{bottom:139.716000px;}
.y42{bottom:142.236000px;}
.y41{bottom:147.456000px;}
.y38{bottom:159.510000px;}
.y40{bottom:164.370000px;}
.y37{bottom:164.730000px;}
.y36{bottom:181.650000px;}
.y28{bottom:183.270000px;}
.y27{bottom:207.390000px;}
.y26{bottom:231.510000px;}
.y25{bottom:255.630000px;}
.y24{bottom:263.190000px;}
.y23{bottom:279.795000px;}
.y22{bottom:303.915000px;}
.y21{bottom:328.215000px;}
.y1f{bottom:352.335000px;}
.y20{bottom:359.895000px;}
.y1e{bottom:376.455000px;}
.y1d{bottom:400.575000px;}
.y35{bottom:408.135000px;}
.y1c{bottom:424.695000px;}
.y1b{bottom:448.815000px;}
.y1a{bottom:473.115000px;}
.y34{bottom:480.675000px;}
.y19{bottom:497.235000px;}
.y18{bottom:521.355000px;}
.y33{bottom:545.475000px;}
.y17{bottom:569.625000px;}
.y3f{bottom:577.185000px;}
.y32{bottom:593.745000px;}
.y16{bottom:618.045000px;}
.y15{bottom:642.165000px;}
.y14{bottom:666.285000px;}
.y13{bottom:690.405000px;}
.y12{bottom:714.525000px;}
.y11{bottom:738.645000px;}
.y3e{bottom:746.205000px;}
.y10{bottom:762.765000px;}
.yf{bottom:787.065000px;}
.y31{bottom:794.625000px;}
.ye{bottom:811.185000px;}
.yd{bottom:835.305000px;}
.yc{bottom:859.470000px;}
.yb{bottom:883.590000px;}
.ya{bottom:907.710000px;}
.y30{bottom:932.010000px;}
.y2f{bottom:956.130000px;}
.y9{bottom:980.250000px;}
.y2e{bottom:1004.370000px;}
.y3d{bottom:1028.490000px;}
.y8{bottom:1052.610000px;}
.y43{bottom:1060.170000px;}
.y7{bottom:1076.730000px;}
.y3c{bottom:1084.290000px;}
.y6{bottom:1101.030000px;}
.y5{bottom:1125.180000px;}
.y4{bottom:1149.300000px;}
.y1{bottom:1190.160000px;}
.h7{height:38.158594px;}
.h6{height:52.998047px;}
.h9{height:58.651172px;}
.h8{height:60.829453px;}
.h5{height:78.604805px;}
.hb{height:79.324805px;}
.h4{height:82.389023px;}
.h2{height:82.676953px;}
.ha{height:82.924805px;}
.h3{height:84.898125px;}
.hd{height:87.244805px;}
.he{height:89.404805px;}
.hf{height:90.124805px;}
.h10{height:93.004805px;}
.hc{height:95.164805px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x40{left:80.639987px;}
.xa{left:83.159987px;}
.x1{left:85.319987px;}
.x14{left:87.299987px;}
.xe{left:90.359987px;}
.x4b{left:91.439987px;}
.x4c{left:93.599987px;}
.x2d{left:96.659987px;}
.x4{left:98.279987px;}
.x15{left:99.359973px;}
.x27{left:101.555987px;}
.x18{left:103.895987px;}
.x3f{left:105.695987px;}
.x52{left:106.775987px;}
.x66{left:111.095987px;}
.x16{left:113.075987px;}
.x50{left:115.775987px;}
.x2b{left:117.935987px;}
.x10{left:120.635987px;}
.x4d{left:121.715987px;}
.x2a{left:123.335987px;}
.x25{left:127.475987px;}
.x6f{left:131.795987px;}
.x34{left:134.675987px;}
.x6e{left:138.275987px;}
.xc{left:139.355987px;}
.x5d{left:146.735987px;}
.x5a{left:148.175987px;}
.x1d{left:152.129987px;}
.x58{left:154.109987px;}
.x60{left:155.549987px;}
.x5f{left:160.229987px;}
.x61{left:163.829987px;}
.x46{left:169.589987px;}
.x59{left:171.569973px;}
.x26{left:174.629987px;}
.x56{left:180.929987px;}
.x6d{left:183.449987px;}
.x8{left:185.429987px;}
.x33{left:190.469987px;}
.x74{left:227.909987px;}
.x42{left:231.689987px;}
.x76{left:234.749973px;}
.x68{left:237.269987px;}
.x77{left:244.469987px;}
.x20{left:256.169973px;}
.x7{left:257.789987px;}
.x9{left:263.189987px;}
.x44{left:264.269973px;}
.x21{left:265.889987px;}
.x45{left:273.989987px;}
.x70{left:278.849987px;}
.x53{left:286.769987px;}
.x55{left:289.109987px;}
.x19{left:297.929987px;}
.x1f{left:301.394987px;}
.x4f{left:302.474987px;}
.x54{left:309.674973px;}
.x22{left:311.474973px;}
.x23{left:321.194987px;}
.x43{left:324.254973px;}
.x6{left:333.074987px;}
.x4e{left:346.214987px;}
.x1e{left:364.214987px;}
.x29{left:367.814987px;}
.x64{left:372.854973px;}
.x13{left:375.554987px;}
.x5{left:377.894987px;}
.x65{left:382.574987px;}
.x35{left:398.594987px;}
.x3e{left:408.674987px;}
.x2{left:430.814987px;}
.x5c{left:434.774987px;}
.x5e{left:444.674987px;}
.x4a{left:460.874987px;}
.x62{left:470.954987px;}
.x69{left:475.454987px;}
.xf{left:490.934987px;}
.x1a{left:494.174973px;}
.x2e{left:499.964987px;}
.x1b{left:507.884987px;}
.x2f{left:512.204973px;}
.x57{left:518.324987px;}
.x30{left:525.884987px;}
.x32{left:553.424987px;}
.x3{left:559.724987px;}
.x48{left:571.064973px;}
.x67{left:574.124987px;}
.x72{left:580.244987px;}
.x37{left:581.684987px;}
.x49{left:584.744987px;}
.x75{left:591.764987px;}
.x38{left:593.924973px;}
.x47{left:599.324987px;}
.x63{left:602.384987px;}
.x11{left:605.804987px;}
.x39{left:607.604987px;}
.x31{left:615.344987px;}
.x73{left:619.124987px;}
.xd{left:636.224987px;}
.x2c{left:638.024987px;}
.x3a{left:639.104987px;}
.x3b{left:656.204987px;}
.x51{left:660.524987px;}
.x6c{left:666.644987px;}
.x24{left:669.884987px;}
.x3c{left:673.844973px;}
.x17{left:676.904987px;}
.x3d{left:687.524987px;}
.x71{left:697.829987px;}
.x41{left:718.529987px;}
.x28{left:759.569987px;}
.x6a{left:780.089987px;}
.x5b{left:786.569987px;}
.xb{left:791.429987px;}
.x36{left:797.369987px;}
.x1c{left:800.789987px;}
.x6b{left:802.589987px;}
.x12{left:807.809987px;}
@media print{
.v1{vertical-align:-85.760000pt;}
.v11{vertical-align:-14.720000pt;}
.v3{vertical-align:-13.440000pt;}
.vc{vertical-align:-12.160000pt;}
.v12{vertical-align:-10.240000pt;}
.v7{vertical-align:-8.320000pt;}
.vd{vertical-align:-7.040000pt;}
.v6{vertical-align:-3.840000pt;}
.v9{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:1.920000pt;}
.v5{vertical-align:3.840000pt;}
.ve{vertical-align:7.040000pt;}
.v8{vertical-align:8.320000pt;}
.v10{vertical-align:9.600000pt;}
.vb{vertical-align:12.160000pt;}
.v4{vertical-align:13.440000pt;}
.vf{vertical-align:14.720000pt;}
.v2{vertical-align:24.320000pt;}
.lsb{letter-spacing:-17.493333pt;}
.ls13{letter-spacing:-0.346667pt;}
.lsa{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.160000pt;}
.lsc{letter-spacing:-0.085867pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.218667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.440960pt;}
.lse{letter-spacing:0.441067pt;}
.lsd{letter-spacing:0.480000pt;}
.ls11{letter-spacing:0.640000pt;}
.ls10{letter-spacing:1.280000pt;}
.ls12{letter-spacing:4.769280pt;}
.lsf{letter-spacing:7.405440pt;}
.ls1{letter-spacing:198.240000pt;}
.ls2{letter-spacing:374.346667pt;}
.ls0{letter-spacing:390.240000pt;}
.ls3{letter-spacing:976.000000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws1{word-spacing:-17.057707pt;}
.ws7{word-spacing:-16.839040pt;}
.ws2{word-spacing:-16.753173pt;}
.ws3{word-spacing:-10.955520pt;}
.ws5{word-spacing:-0.554880pt;}
.ws6{word-spacing:-0.074880pt;}
.ws4{word-spacing:0.000000pt;}
.ws8{word-spacing:0.271787pt;}
._7a{margin-left:-2580.932907pt;}
._20{margin-left:-2577.303253pt;}
._88{margin-left:-2575.767253pt;}
._51{margin-left:-2571.590187pt;}
._32{margin-left:-2569.298773pt;}
._58{margin-left:-2558.913707pt;}
._9a{margin-left:-2556.011947pt;}
._3d{margin-left:-2552.590293pt;}
._8d{margin-left:-2549.947307pt;}
._27{margin-left:-2548.351147pt;}
._50{margin-left:-2544.044373pt;}
._52{margin-left:-2535.953707pt;}
._49{margin-left:-2513.065813pt;}
._f{margin-left:-2503.533013pt;}
._5a{margin-left:-2495.726507pt;}
._4e{margin-left:-2484.427093pt;}
._44{margin-left:-2483.132373pt;}
._d{margin-left:-2467.904853pt;}
._65{margin-left:-2462.328533pt;}
._78{margin-left:-2454.984533pt;}
._33{margin-left:-2448.378667pt;}
._2e{margin-left:-2428.853973pt;}
._64{margin-left:-2410.631893pt;}
._89{margin-left:-2400.852267pt;}
._1e{margin-left:-2366.504107pt;}
._3e{margin-left:-2364.883627pt;}
._43{margin-left:-2334.717440pt;}
._1f{margin-left:-2332.864640pt;}
._40{margin-left:-2306.877653pt;}
._42{margin-left:-2294.666667pt;}
._4f{margin-left:-2269.226240pt;}
._3c{margin-left:-2198.385707pt;}
._45{margin-left:-2155.946667pt;}
._46{margin-left:-2135.642240pt;}
._1d{margin-left:-2081.013333pt;}
._94{margin-left:-2050.965333pt;}
._54{margin-left:-1986.325333pt;}
._35{margin-left:-1962.773333pt;}
._2f{margin-left:-1940.430080pt;}
._6c{margin-left:-1902.039680pt;}
._9{margin-left:-1862.565760pt;}
._21{margin-left:-1829.982080pt;}
._81{margin-left:-1808.426667pt;}
._3b{margin-left:-1713.066667pt;}
._57{margin-left:-1650.805333pt;}
._1a{margin-left:-1627.798187pt;}
._7f{margin-left:-1620.063787pt;}
._9c{margin-left:-1579.605760pt;}
._6e{margin-left:-1540.187520pt;}
._68{margin-left:-1538.277760pt;}
._8f{margin-left:-1468.798293pt;}
._99{margin-left:-1462.312107pt;}
._66{margin-left:-1424.650880pt;}
._19{margin-left:-1423.626667pt;}
._86{margin-left:-1413.546667pt;}
._39{margin-left:-1405.866667pt;}
._7b{margin-left:-1390.051627pt;}
._6{margin-left:-1383.857920pt;}
._82{margin-left:-1275.786667pt;}
._6b{margin-left:-1233.282347pt;}
._8c{margin-left:-1217.990827pt;}
._0{margin-left:-1196.322987pt;}
._3a{margin-left:-1153.066667pt;}
._8a{margin-left:-1123.179947pt;}
._75{margin-left:-959.460480pt;}
._61{margin-left:-954.101973pt;}
._7c{margin-left:-953.120000pt;}
._97{margin-left:-927.347200pt;}
._e{margin-left:-909.308160pt;}
._37{margin-left:-871.428267pt;}
._8{margin-left:-859.098880pt;}
._5{margin-left:-849.439360pt;}
._84{margin-left:-831.325013pt;}
._95{margin-left:-827.638400pt;}
._70{margin-left:-768.139520pt;}
._92{margin-left:-762.560000pt;}
._18{margin-left:-760.032000pt;}
._25{margin-left:-752.960000pt;}
._55{margin-left:-719.530240pt;}
._56{margin-left:-701.176320pt;}
._9d{margin-left:-697.280000pt;}
._36{margin-left:-660.160000pt;}
._74{margin-left:-645.920000pt;}
._22{margin-left:-625.418667pt;}
._34{margin-left:-621.643520pt;}
._1c{margin-left:-611.769600pt;}
._98{margin-left:-604.839467pt;}
._30{margin-left:-563.978667pt;}
._53{margin-left:-541.896320pt;}
._4{margin-left:-530.899840pt;}
._5c{margin-left:-494.003840pt;}
._60{margin-left:-434.826667pt;}
._72{margin-left:-425.642880pt;}
._71{margin-left:-420.746667pt;}
._93{margin-left:-409.668480pt;}
._85{margin-left:-348.181760pt;}
._90{margin-left:-329.407360pt;}
._7e{margin-left:-292.480000pt;}
._5f{margin-left:-279.772160pt;}
._5e{margin-left:-260.640000pt;}
._6a{margin-left:-236.320000pt;}
._c{margin-left:-200.933760pt;}
._b{margin-left:-198.008960pt;}
._47{margin-left:-181.280000pt;}
._8b{margin-left:-167.200000pt;}
._3f{margin-left:-108.160000pt;}
._91{margin-left:-74.401067pt;}
._73{margin-left:-62.055040pt;}
._5d{margin-left:-56.000000pt;}
._62{margin-left:-54.909227pt;}
._9e{margin-left:-52.640000pt;}
._24{margin-left:-43.495040pt;}
._77{margin-left:-26.097493pt;}
._1{margin-left:-19.393920pt;}
._4c{margin-left:-17.585707pt;}
._4b{margin-left:-13.626667pt;}
._76{margin-left:-12.737067pt;}
._2b{margin-left:-9.349120pt;}
._29{margin-left:-8.264747pt;}
._2a{margin-left:-6.957013pt;}
._2d{margin-left:-4.134187pt;}
._2c{margin-left:-3.080960pt;}
._41{margin-left:-2.021760pt;}
._2{margin-left:-1.048320pt;}
._11{width:1.198080pt;}
._10{width:2.246400pt;}
._13{width:3.968640pt;}
._12{width:4.867200pt;}
._14{width:6.589440pt;}
._15{width:8.236373pt;}
._17{width:9.434880pt;}
._16{width:10.558080pt;}
._4d{width:17.147093pt;}
._28{width:18.608427pt;}
._87{width:23.420373pt;}
._26{width:44.385280pt;}
._59{width:100.114347pt;}
._83{width:113.039787pt;}
._7d{width:113.929600pt;}
._3{width:196.029867pt;}
._7{width:285.440000pt;}
._80{width:386.628907pt;}
._4a{width:395.272533pt;}
._79{width:626.266453pt;}
._23{width:672.221867pt;}
._9b{width:674.927787pt;}
._38{width:703.822507pt;}
._96{width:808.960000pt;}
._8e{width:827.756373pt;}
._a{width:1043.200000pt;}
._48{width:1145.405867pt;}
._31{width:1175.513813pt;}
._6f{width:1198.586027pt;}
._5b{width:1288.926933pt;}
._69{width:1290.865067pt;}
._67{width:1325.956267pt;}
._6d{width:1494.114347pt;}
._1b{width:1572.612693pt;}
._63{width:2199.180587pt;}
.fs2{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.112000pt;}
.y2{bottom:55.712000pt;}
.y2d{bottom:82.112000pt;}
.y2c{bottom:86.752000pt;}
.y3b{bottom:100.672000pt;}
.y44{bottom:101.952000pt;}
.y2b{bottom:104.352000pt;}
.y2a{bottom:108.992000pt;}
.y3a{bottom:119.552000pt;}
.y29{bottom:124.032000pt;}
.y39{bottom:124.192000pt;}
.y42{bottom:126.432000pt;}
.y41{bottom:131.072000pt;}
.y38{bottom:141.786667pt;}
.y40{bottom:146.106667pt;}
.y37{bottom:146.426667pt;}
.y36{bottom:161.466667pt;}
.y28{bottom:162.906667pt;}
.y27{bottom:184.346667pt;}
.y26{bottom:205.786667pt;}
.y25{bottom:227.226667pt;}
.y24{bottom:233.946667pt;}
.y23{bottom:248.706667pt;}
.y22{bottom:270.146667pt;}
.y21{bottom:291.746667pt;}
.y1f{bottom:313.186667pt;}
.y20{bottom:319.906667pt;}
.y1e{bottom:334.626667pt;}
.y1d{bottom:356.066667pt;}
.y35{bottom:362.786667pt;}
.y1c{bottom:377.506667pt;}
.y1b{bottom:398.946667pt;}
.y1a{bottom:420.546667pt;}
.y34{bottom:427.266667pt;}
.y19{bottom:441.986667pt;}
.y18{bottom:463.426667pt;}
.y33{bottom:484.866667pt;}
.y17{bottom:506.333333pt;}
.y3f{bottom:513.053333pt;}
.y32{bottom:527.773333pt;}
.y16{bottom:549.373333pt;}
.y15{bottom:570.813333pt;}
.y14{bottom:592.253333pt;}
.y13{bottom:613.693333pt;}
.y12{bottom:635.133333pt;}
.y11{bottom:656.573333pt;}
.y3e{bottom:663.293333pt;}
.y10{bottom:678.013333pt;}
.yf{bottom:699.613333pt;}
.y31{bottom:706.333333pt;}
.ye{bottom:721.053333pt;}
.yd{bottom:742.493333pt;}
.yc{bottom:763.973333pt;}
.yb{bottom:785.413333pt;}
.ya{bottom:806.853333pt;}
.y30{bottom:828.453333pt;}
.y2f{bottom:849.893333pt;}
.y9{bottom:871.333333pt;}
.y2e{bottom:892.773333pt;}
.y3d{bottom:914.213333pt;}
.y8{bottom:935.653333pt;}
.y43{bottom:942.373333pt;}
.y7{bottom:957.093333pt;}
.y3c{bottom:963.813333pt;}
.y6{bottom:978.693333pt;}
.y5{bottom:1000.160000pt;}
.y4{bottom:1021.600000pt;}
.y1{bottom:1057.920000pt;}
.h7{height:33.918750pt;}
.h6{height:47.109375pt;}
.h9{height:52.134375pt;}
.h8{height:54.070625pt;}
.h5{height:69.870937pt;}
.hb{height:70.510937pt;}
.h4{height:73.234687pt;}
.h2{height:73.490625pt;}
.ha{height:73.710938pt;}
.h3{height:75.465000pt;}
.hd{height:77.550937pt;}
.he{height:79.470938pt;}
.hf{height:80.110937pt;}
.h10{height:82.670938pt;}
.hc{height:84.590937pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x40{left:71.679988pt;}
.xa{left:73.919988pt;}
.x1{left:75.839988pt;}
.x14{left:77.599988pt;}
.xe{left:80.319988pt;}
.x4b{left:81.279988pt;}
.x4c{left:83.199988pt;}
.x2d{left:85.919988pt;}
.x4{left:87.359988pt;}
.x15{left:88.319976pt;}
.x27{left:90.271988pt;}
.x18{left:92.351988pt;}
.x3f{left:93.951988pt;}
.x52{left:94.911988pt;}
.x66{left:98.751988pt;}
.x16{left:100.511988pt;}
.x50{left:102.911988pt;}
.x2b{left:104.831988pt;}
.x10{left:107.231988pt;}
.x4d{left:108.191988pt;}
.x2a{left:109.631988pt;}
.x25{left:113.311988pt;}
.x6f{left:117.151988pt;}
.x34{left:119.711988pt;}
.x6e{left:122.911988pt;}
.xc{left:123.871988pt;}
.x5d{left:130.431988pt;}
.x5a{left:131.711988pt;}
.x1d{left:135.226655pt;}
.x58{left:136.986655pt;}
.x60{left:138.266655pt;}
.x5f{left:142.426655pt;}
.x61{left:145.626655pt;}
.x46{left:150.746655pt;}
.x59{left:152.506643pt;}
.x26{left:155.226655pt;}
.x56{left:160.826655pt;}
.x6d{left:163.066655pt;}
.x8{left:164.826655pt;}
.x33{left:169.306655pt;}
.x74{left:202.586655pt;}
.x42{left:205.946655pt;}
.x76{left:208.666643pt;}
.x68{left:210.906655pt;}
.x77{left:217.306655pt;}
.x20{left:227.706643pt;}
.x7{left:229.146655pt;}
.x9{left:233.946655pt;}
.x44{left:234.906643pt;}
.x21{left:236.346655pt;}
.x45{left:243.546655pt;}
.x70{left:247.866655pt;}
.x53{left:254.906655pt;}
.x55{left:256.986655pt;}
.x19{left:264.826655pt;}
.x1f{left:267.906655pt;}
.x4f{left:268.866655pt;}
.x54{left:275.266643pt;}
.x22{left:276.866643pt;}
.x23{left:285.506655pt;}
.x43{left:288.226643pt;}
.x6{left:296.066655pt;}
.x4e{left:307.746655pt;}
.x1e{left:323.746655pt;}
.x29{left:326.946655pt;}
.x64{left:331.426643pt;}
.x13{left:333.826655pt;}
.x5{left:335.906655pt;}
.x65{left:340.066655pt;}
.x35{left:354.306655pt;}
.x3e{left:363.266655pt;}
.x2{left:382.946655pt;}
.x5c{left:386.466655pt;}
.x5e{left:395.266655pt;}
.x4a{left:409.666655pt;}
.x62{left:418.626655pt;}
.x69{left:422.626655pt;}
.xf{left:436.386655pt;}
.x1a{left:439.266643pt;}
.x2e{left:444.413322pt;}
.x1b{left:451.453322pt;}
.x2f{left:455.293310pt;}
.x57{left:460.733322pt;}
.x30{left:467.453322pt;}
.x32{left:491.933322pt;}
.x3{left:497.533322pt;}
.x48{left:507.613310pt;}
.x67{left:510.333322pt;}
.x72{left:515.773322pt;}
.x37{left:517.053322pt;}
.x49{left:519.773322pt;}
.x75{left:526.013322pt;}
.x38{left:527.933310pt;}
.x47{left:532.733322pt;}
.x63{left:535.453322pt;}
.x11{left:538.493322pt;}
.x39{left:540.093322pt;}
.x31{left:546.973322pt;}
.x73{left:550.333322pt;}
.xd{left:565.533322pt;}
.x2c{left:567.133322pt;}
.x3a{left:568.093322pt;}
.x3b{left:583.293322pt;}
.x51{left:587.133322pt;}
.x6c{left:592.573322pt;}
.x24{left:595.453322pt;}
.x3c{left:598.973310pt;}
.x17{left:601.693322pt;}
.x3d{left:611.133322pt;}
.x71{left:620.293322pt;}
.x41{left:638.693322pt;}
.x28{left:675.173322pt;}
.x6a{left:693.413322pt;}
.x5b{left:699.173322pt;}
.xb{left:703.493322pt;}
.x36{left:708.773322pt;}
.x1c{left:711.813322pt;}
.x6b{left:713.413322pt;}
.x12{left:718.053322pt;}
}




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