
    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_25f07d18dc7756ea9436505b.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_49e98f4145fda1c1a289fa6e.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_30756bec915df2aa8b596b27.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_32315b54aadd1a9000460d78.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_206d762534a1e19d920397cb.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_cdaf7d4315b358af91443feb.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_8f213c1088f25acd43710d59.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_d1cd6992d27f5f89cb295095.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_216a743df309048ba12127b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.091797;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_55261cae681d87d0c9219ed0.woff2')format("woff");}.ffb{font-family:ffb;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;}
.ls10{letter-spacing:-0.690000px;}
.ls12{letter-spacing:-0.216000px;}
.ls13{letter-spacing:-0.145200px;}
.ls1b{letter-spacing:-0.144000px;}
.ls7{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.028080px;}
.ls1d{letter-spacing:0.037440px;}
.ls9{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.107400px;}
.ls1a{letter-spacing:0.129600px;}
.ls8{letter-spacing:0.288000px;}
.lsd{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.504000px;}
.ls17{letter-spacing:1.260000px;}
.lsc{letter-spacing:2.700000px;}
.lsb{letter-spacing:3.420000px;}
.ls3{letter-spacing:7.200000px;}
.lsf{letter-spacing:8.460000px;}
.ls19{letter-spacing:9.180000px;}
.ls1f{letter-spacing:10.080000px;}
.ls16{letter-spacing:13.500000px;}
.ls18{letter-spacing:15.660000px;}
.ls1c{letter-spacing:22.140000px;}
.lsa{letter-spacing:40.140000px;}
.lse{letter-spacing:43.020000px;}
.ls0{letter-spacing:43.200000px;}
.ls6{letter-spacing:44.460000px;}
.ls1{letter-spacing:54.000000px;}
.ls2{letter-spacing:54.120000px;}
.ls1e{letter-spacing:54.144000px;}
.ls5{letter-spacing:54.516000px;}
.ls15{letter-spacing:76.140000px;}
.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;}
}
.ws8{word-spacing:-21.167400px;}
.ws6{word-spacing:-21.088080px;}
.ws4{word-spacing:-21.060000px;}
.wsb{word-spacing:-20.914800px;}
.ws7{word-spacing:-20.370000px;}
.ws9{word-spacing:-18.360000px;}
.ws1{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.wsa{word-spacing:-17.784000px;}
.ws3{word-spacing:-0.072000px;}
.ws5{word-spacing:0.000000px;}
._30{margin-left:-21.818160px;}
._39{margin-left:-19.818720px;}
._3{margin-left:-11.203920px;}
._4{margin-left:-8.508240px;}
._6{margin-left:-6.611040px;}
._2{margin-left:-5.138640px;}
._0{margin-left:-3.285360px;}
._16{margin-left:-2.274480px;}
._1{margin-left:-1.263600px;}
._5{width:1.944000px;}
._1d{width:2.948400px;}
._31{width:3.959280px;}
._1c{width:4.970160px;}
._f{width:6.519600px;}
._10{width:7.669440px;}
._c{width:9.000000px;}
._b{width:10.047600px;}
._2f{width:11.203920px;}
._34{width:12.545280px;}
._26{width:14.118480px;}
._11{width:15.696000px;}
._12{width:16.904400px;}
._17{width:18.106800px;}
._9{width:19.170720px;}
._a{width:20.717280px;}
._24{width:22.155120px;}
._21{width:23.328000px;}
._20{width:24.513840px;}
._25{width:26.367120px;}
._1a{width:27.378000px;}
._18{width:29.056320px;}
._19{width:30.838320px;}
._15{width:31.869840px;}
._27{width:33.436800px;}
._14{width:34.538400px;}
._13{width:35.633520px;}
._1b{width:36.728640px;}
._2b{width:38.581920px;}
._d{width:40.176000px;}
._e{width:41.204160px;}
._28{width:43.046640px;}
._1e{width:44.141760px;}
._1f{width:45.665760px;}
._8{width:47.716560px;}
._22{width:50.116320px;}
._23{width:51.904800px;}
._7{width:54.375600px;}
._2e{width:55.551120px;}
._29{width:57.620160px;}
._2a{width:58.780080px;}
._3a{width:59.855760px;}
._37{width:75.731760px;}
._38{width:76.938960px;}
._2c{width:78.505200px;}
._2d{width:79.606800px;}
._32{width:86.339520px;}
._33{width:87.791040px;}
._35{width:90.136800px;}
._36{width:101.256480px;}
.fc5{color:rgb(0,0,255);}
.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;}
.y55{bottom:3.960000px;}
.y4{bottom:12.240000px;}
.y71{bottom:24.660000px;}
.y3{bottom:28.296000px;}
.y2{bottom:31.176000px;}
.y53{bottom:77.436000px;}
.y6e{bottom:77.796000px;}
.yba{bottom:83.916000px;}
.y2e{bottom:92.376000px;}
.y52{bottom:105.156000px;}
.y6d{bottom:105.516000px;}
.y91{bottom:106.956000px;}
.yb9{bottom:107.496000px;}
.y2d{bottom:120.096000px;}
.yb8{bottom:128.196000px;}
.y51{bottom:132.876000px;}
.y6c{bottom:133.236000px;}
.y90{bottom:134.496000px;}
.y2c{bottom:147.996000px;}
.yb7{bottom:148.896000px;}
.y50{bottom:160.770000px;}
.y6b{bottom:161.130000px;}
.y8f{bottom:164.010000px;}
.yb6{bottom:169.590000px;}
.y2b{bottom:175.710000px;}
.y4f{bottom:188.490000px;}
.y6a{bottom:188.850000px;}
.yb5{bottom:190.290000px;}
.y8e{bottom:191.550000px;}
.y2a{bottom:203.430000px;}
.yb4{bottom:210.990000px;}
.y4e{bottom:216.210000px;}
.y69{bottom:216.570000px;}
.y8d{bottom:220.890000px;}
.y29{bottom:231.330000px;}
.yb3{bottom:231.690000px;}
.y4d{bottom:243.930000px;}
.y68{bottom:244.470000px;}
.y8c{bottom:248.610000px;}
.yb2{bottom:252.390000px;}
.y28{bottom:259.050000px;}
.y4c{bottom:271.830000px;}
.y67{bottom:272.190000px;}
.yb1{bottom:273.090000px;}
.y8b{bottom:277.950000px;}
.y27{bottom:286.815000px;}
.yb0{bottom:293.835000px;}
.y4b{bottom:299.595000px;}
.y66{bottom:299.955000px;}
.y8a{bottom:305.895000px;}
.y26{bottom:314.535000px;}
.y4a{bottom:327.315000px;}
.y65{bottom:327.675000px;}
.y89{bottom:333.615000px;}
.yaf{bottom:335.235000px;}
.y25{bottom:342.435000px;}
.y49{bottom:355.215000px;}
.y64{bottom:355.575000px;}
.yae{bottom:355.935000px;}
.y88{bottom:361.335000px;}
.y24{bottom:370.155000px;}
.yad{bottom:376.635000px;}
.y48{bottom:382.935000px;}
.y63{bottom:383.295000px;}
.y87{bottom:389.235000px;}
.yac{bottom:397.335000px;}
.y23{bottom:397.875000px;}
.y47{bottom:410.655000px;}
.y62{bottom:411.015000px;}
.y86{bottom:416.955000px;}
.yab{bottom:418.035000px;}
.y22{bottom:425.595000px;}
.y46{bottom:438.375000px;}
.yaa{bottom:438.735000px;}
.y61{bottom:438.915000px;}
.y85{bottom:444.675000px;}
.y21{bottom:453.495000px;}
.ya9{bottom:459.435000px;}
.y45{bottom:466.275000px;}
.y60{bottom:466.635000px;}
.y84{bottom:472.395000px;}
.ya8{bottom:480.135000px;}
.y20{bottom:481.215000px;}
.y44{bottom:493.995000px;}
.y5f{bottom:494.355000px;}
.y83{bottom:500.295000px;}
.ya7{bottom:500.835000px;}
.y1f{bottom:508.935000px;}
.ya6{bottom:521.535000px;}
.y43{bottom:521.715000px;}
.y5e{bottom:522.075000px;}
.y82{bottom:528.015000px;}
.y1e{bottom:536.835000px;}
.ya5{bottom:542.235000px;}
.y42{bottom:549.615000px;}
.y5d{bottom:549.975000px;}
.y81{bottom:555.735000px;}
.ya4{bottom:562.935000px;}
.y1d{bottom:564.585000px;}
.y41{bottom:577.365000px;}
.y5c{bottom:577.725000px;}
.y80{bottom:583.485000px;}
.ya3{bottom:583.665000px;}
.y1c{bottom:592.305000px;}
.y40{bottom:605.085000px;}
.y5b{bottom:605.445000px;}
.ya2{bottom:606.165000px;}
.y7f{bottom:611.385000px;}
.y1b{bottom:620.025000px;}
.ya1{bottom:628.305000px;}
.y3f{bottom:632.805000px;}
.y5a{bottom:633.345000px;}
.y7e{bottom:639.105000px;}
.y1a{bottom:647.925000px;}
.ya0{bottom:656.205000px;}
.y59{bottom:657.465000px;}
.y3e{bottom:660.705000px;}
.y7d{bottom:666.825000px;}
.y19{bottom:671.505000px;}
.y58{bottom:677.805000px;}
.y9f{bottom:683.925000px;}
.y3d{bottom:688.425000px;}
.y18{bottom:692.205000px;}
.y7c{bottom:694.725000px;}
.y57{bottom:699.225000px;}
.y9e{bottom:711.645000px;}
.y17{bottom:712.905000px;}
.y3c{bottom:716.145000px;}
.y56{bottom:720.645000px;}
.y7b{bottom:722.445000px;}
.y16{bottom:733.605000px;}
.y9d{bottom:739.365000px;}
.y54{bottom:742.065000px;}
.y3b{bottom:743.865000px;}
.y7a{bottom:750.165000px;}
.y15{bottom:754.305000px;}
.y9c{bottom:767.265000px;}
.y3a{bottom:771.765000px;}
.y14{bottom:775.005000px;}
.y79{bottom:777.885000px;}
.y9b{bottom:794.985000px;}
.y13{bottom:795.705000px;}
.y39{bottom:799.485000px;}
.y78{bottom:805.785000px;}
.y12{bottom:816.405000px;}
.y9a{bottom:822.705000px;}
.y38{bottom:827.205000px;}
.y77{bottom:829.905000px;}
.y11{bottom:837.105000px;}
.y76{bottom:850.290000px;}
.y99{bottom:850.470000px;}
.y37{bottom:855.150000px;}
.y10{bottom:857.850000px;}
.y98{bottom:878.370000px;}
.yf{bottom:878.550000px;}
.y36{bottom:882.870000px;}
.y75{bottom:892.410000px;}
.ye{bottom:899.250000px;}
.y97{bottom:906.090000px;}
.y35{bottom:910.590000px;}
.y96{bottom:933.810000px;}
.y74{bottom:934.530000px;}
.y34{bottom:938.310000px;}
.yd{bottom:940.650000px;}
.yc{bottom:961.350000px;}
.y95{bottom:963.150000px;}
.y33{bottom:966.210000px;}
.y73{bottom:976.650000px;}
.yb{bottom:982.050000px;}
.y94{bottom:990.870000px;}
.y32{bottom:993.930000px;}
.ya{bottom:1002.750000px;}
.y72{bottom:1018.950000px;}
.y93{bottom:1020.210000px;}
.y31{bottom:1021.650000px;}
.y9{bottom:1023.450000px;}
.y8{bottom:1044.150000px;}
.y92{bottom:1047.930000px;}
.y30{bottom:1049.550000px;}
.y70{bottom:1061.070000px;}
.y7{bottom:1063.770000px;}
.y2f{bottom:1077.270000px;}
.y6{bottom:1080.870000px;}
.y6f{bottom:1103.190000px;}
.y5{bottom:1104.990000px;}
.y1{bottom:1190.160000px;}
.hb{height:20.700000px;}
.h3{height:31.860000px;}
.hd{height:41.400000px;}
.he{height:50.484375px;}
.h9{height:50.941406px;}
.h6{height:54.421875px;}
.h5{height:57.997266px;}
.h11{height:58.651172px;}
.ha{height:59.066719px;}
.hf{height:59.601445px;}
.h8{height:70.628906px;}
.hc{height:70.664062px;}
.h7{height:72.562500px;}
.h12{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h10{height:86.585445px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.996000px;}
.w8{width:139.500000px;}
.w7{width:139.536000px;}
.w9{width:145.656000px;}
.w4{width:190.650000px;}
.w6{width:211.890000px;}
.w5{width:297.030000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.560000px;}
.x3{left:22.140000px;}
.xf{left:50.220000px;}
.x13{left:77.400000px;}
.x1{left:84.959987px;}
.xe{left:96.156000px;}
.x1a{left:117.035987px;}
.xc{left:127.475987px;}
.x4{left:169.229987px;}
.x14{left:217.650000px;}
.x12{left:261.389987px;}
.x10{left:287.535000px;}
.x7{left:300.134987px;}
.x8{left:313.274987px;}
.x9{left:353.774987px;}
.x15{left:357.915000px;}
.xa{left:376.454987px;}
.x6{left:391.754987px;}
.x2{left:409.215000px;}
.x19{left:419.834987px;}
.x5{left:446.474987px;}
.xb{left:467.714987px;}
.x16{left:498.165000px;}
.x11{left:585.285000px;}
.x17{left:638.385000px;}
.xd{left:706.469987px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.613333pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls13{letter-spacing:-0.129067pt;}
.ls1b{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.024960pt;}
.ls1d{letter-spacing:0.033280pt;}
.ls9{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.095467pt;}
.ls1a{letter-spacing:0.115200pt;}
.ls8{letter-spacing:0.256000pt;}
.lsd{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls17{letter-spacing:1.120000pt;}
.lsc{letter-spacing:2.400000pt;}
.lsb{letter-spacing:3.040000pt;}
.ls3{letter-spacing:6.400000pt;}
.lsf{letter-spacing:7.520000pt;}
.ls19{letter-spacing:8.160000pt;}
.ls1f{letter-spacing:8.960000pt;}
.ls16{letter-spacing:12.000000pt;}
.ls18{letter-spacing:13.920000pt;}
.ls1c{letter-spacing:19.680000pt;}
.lsa{letter-spacing:35.680000pt;}
.lse{letter-spacing:38.240000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls6{letter-spacing:39.520000pt;}
.ls1{letter-spacing:48.000000pt;}
.ls2{letter-spacing:48.106667pt;}
.ls1e{letter-spacing:48.128000pt;}
.ls5{letter-spacing:48.458667pt;}
.ls15{letter-spacing:67.680000pt;}
.ws8{word-spacing:-18.815467pt;}
.ws6{word-spacing:-18.744960pt;}
.ws4{word-spacing:-18.720000pt;}
.wsb{word-spacing:-18.590933pt;}
.ws7{word-spacing:-18.106667pt;}
.ws9{word-spacing:-16.320000pt;}
.ws1{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws3{word-spacing:-0.064000pt;}
.ws5{word-spacing:0.000000pt;}
._30{margin-left:-19.393920pt;}
._39{margin-left:-17.616640pt;}
._3{margin-left:-9.959040pt;}
._4{margin-left:-7.562880pt;}
._6{margin-left:-5.876480pt;}
._2{margin-left:-4.567680pt;}
._0{margin-left:-2.920320pt;}
._16{margin-left:-2.021760pt;}
._1{margin-left:-1.123200pt;}
._5{width:1.728000pt;}
._1d{width:2.620800pt;}
._31{width:3.519360pt;}
._1c{width:4.417920pt;}
._f{width:5.795200pt;}
._10{width:6.817280pt;}
._c{width:8.000000pt;}
._b{width:8.931200pt;}
._2f{width:9.959040pt;}
._34{width:11.151360pt;}
._26{width:12.549760pt;}
._11{width:13.952000pt;}
._12{width:15.026133pt;}
._17{width:16.094933pt;}
._9{width:17.040640pt;}
._a{width:18.415360pt;}
._24{width:19.693440pt;}
._21{width:20.736000pt;}
._20{width:21.790080pt;}
._25{width:23.437440pt;}
._1a{width:24.336000pt;}
._18{width:25.827840pt;}
._19{width:27.411840pt;}
._15{width:28.328747pt;}
._27{width:29.721600pt;}
._14{width:30.700800pt;}
._13{width:31.674240pt;}
._1b{width:32.647680pt;}
._2b{width:34.295040pt;}
._d{width:35.712000pt;}
._e{width:36.625920pt;}
._28{width:38.263680pt;}
._1e{width:39.237120pt;}
._1f{width:40.591787pt;}
._8{width:42.414720pt;}
._22{width:44.547840pt;}
._23{width:46.137600pt;}
._7{width:48.333867pt;}
._2e{width:49.378773pt;}
._29{width:51.217920pt;}
._2a{width:52.248960pt;}
._3a{width:53.205120pt;}
._37{width:67.317120pt;}
._38{width:68.390187pt;}
._2c{width:69.782400pt;}
._2d{width:70.761600pt;}
._32{width:76.746240pt;}
._33{width:78.036480pt;}
._35{width:80.121600pt;}
._36{width:90.005760pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:3.520000pt;}
.y4{bottom:10.880000pt;}
.y71{bottom:21.920000pt;}
.y3{bottom:25.152000pt;}
.y2{bottom:27.712000pt;}
.y53{bottom:68.832000pt;}
.y6e{bottom:69.152000pt;}
.yba{bottom:74.592000pt;}
.y2e{bottom:82.112000pt;}
.y52{bottom:93.472000pt;}
.y6d{bottom:93.792000pt;}
.y91{bottom:95.072000pt;}
.yb9{bottom:95.552000pt;}
.y2d{bottom:106.752000pt;}
.yb8{bottom:113.952000pt;}
.y51{bottom:118.112000pt;}
.y6c{bottom:118.432000pt;}
.y90{bottom:119.552000pt;}
.y2c{bottom:131.552000pt;}
.yb7{bottom:132.352000pt;}
.y50{bottom:142.906667pt;}
.y6b{bottom:143.226667pt;}
.y8f{bottom:145.786667pt;}
.yb6{bottom:150.746667pt;}
.y2b{bottom:156.186667pt;}
.y4f{bottom:167.546667pt;}
.y6a{bottom:167.866667pt;}
.yb5{bottom:169.146667pt;}
.y8e{bottom:170.266667pt;}
.y2a{bottom:180.826667pt;}
.yb4{bottom:187.546667pt;}
.y4e{bottom:192.186667pt;}
.y69{bottom:192.506667pt;}
.y8d{bottom:196.346667pt;}
.y29{bottom:205.626667pt;}
.yb3{bottom:205.946667pt;}
.y4d{bottom:216.826667pt;}
.y68{bottom:217.306667pt;}
.y8c{bottom:220.986667pt;}
.yb2{bottom:224.346667pt;}
.y28{bottom:230.266667pt;}
.y4c{bottom:241.626667pt;}
.y67{bottom:241.946667pt;}
.yb1{bottom:242.746667pt;}
.y8b{bottom:247.066667pt;}
.y27{bottom:254.946667pt;}
.yb0{bottom:261.186667pt;}
.y4b{bottom:266.306667pt;}
.y66{bottom:266.626667pt;}
.y8a{bottom:271.906667pt;}
.y26{bottom:279.586667pt;}
.y4a{bottom:290.946667pt;}
.y65{bottom:291.266667pt;}
.y89{bottom:296.546667pt;}
.yaf{bottom:297.986667pt;}
.y25{bottom:304.386667pt;}
.y49{bottom:315.746667pt;}
.y64{bottom:316.066667pt;}
.yae{bottom:316.386667pt;}
.y88{bottom:321.186667pt;}
.y24{bottom:329.026667pt;}
.yad{bottom:334.786667pt;}
.y48{bottom:340.386667pt;}
.y63{bottom:340.706667pt;}
.y87{bottom:345.986667pt;}
.yac{bottom:353.186667pt;}
.y23{bottom:353.666667pt;}
.y47{bottom:365.026667pt;}
.y62{bottom:365.346667pt;}
.y86{bottom:370.626667pt;}
.yab{bottom:371.586667pt;}
.y22{bottom:378.306667pt;}
.y46{bottom:389.666667pt;}
.yaa{bottom:389.986667pt;}
.y61{bottom:390.146667pt;}
.y85{bottom:395.266667pt;}
.y21{bottom:403.106667pt;}
.ya9{bottom:408.386667pt;}
.y45{bottom:414.466667pt;}
.y60{bottom:414.786667pt;}
.y84{bottom:419.906667pt;}
.ya8{bottom:426.786667pt;}
.y20{bottom:427.746667pt;}
.y44{bottom:439.106667pt;}
.y5f{bottom:439.426667pt;}
.y83{bottom:444.706667pt;}
.ya7{bottom:445.186667pt;}
.y1f{bottom:452.386667pt;}
.ya6{bottom:463.586667pt;}
.y43{bottom:463.746667pt;}
.y5e{bottom:464.066667pt;}
.y82{bottom:469.346667pt;}
.y1e{bottom:477.186667pt;}
.ya5{bottom:481.986667pt;}
.y42{bottom:488.546667pt;}
.y5d{bottom:488.866667pt;}
.y81{bottom:493.986667pt;}
.ya4{bottom:500.386667pt;}
.y1d{bottom:501.853333pt;}
.y41{bottom:513.213333pt;}
.y5c{bottom:513.533333pt;}
.y80{bottom:518.653333pt;}
.ya3{bottom:518.813333pt;}
.y1c{bottom:526.493333pt;}
.y40{bottom:537.853333pt;}
.y5b{bottom:538.173333pt;}
.ya2{bottom:538.813333pt;}
.y7f{bottom:543.453333pt;}
.y1b{bottom:551.133333pt;}
.ya1{bottom:558.493333pt;}
.y3f{bottom:562.493333pt;}
.y5a{bottom:562.973333pt;}
.y7e{bottom:568.093333pt;}
.y1a{bottom:575.933333pt;}
.ya0{bottom:583.293333pt;}
.y59{bottom:584.413333pt;}
.y3e{bottom:587.293333pt;}
.y7d{bottom:592.733333pt;}
.y19{bottom:596.893333pt;}
.y58{bottom:602.493333pt;}
.y9f{bottom:607.933333pt;}
.y3d{bottom:611.933333pt;}
.y18{bottom:615.293333pt;}
.y7c{bottom:617.533333pt;}
.y57{bottom:621.533333pt;}
.y9e{bottom:632.573333pt;}
.y17{bottom:633.693333pt;}
.y3c{bottom:636.573333pt;}
.y56{bottom:640.573333pt;}
.y7b{bottom:642.173333pt;}
.y16{bottom:652.093333pt;}
.y9d{bottom:657.213333pt;}
.y54{bottom:659.613333pt;}
.y3b{bottom:661.213333pt;}
.y7a{bottom:666.813333pt;}
.y15{bottom:670.493333pt;}
.y9c{bottom:682.013333pt;}
.y3a{bottom:686.013333pt;}
.y14{bottom:688.893333pt;}
.y79{bottom:691.453333pt;}
.y9b{bottom:706.653333pt;}
.y13{bottom:707.293333pt;}
.y39{bottom:710.653333pt;}
.y78{bottom:716.253333pt;}
.y12{bottom:725.693333pt;}
.y9a{bottom:731.293333pt;}
.y38{bottom:735.293333pt;}
.y77{bottom:737.693333pt;}
.y11{bottom:744.093333pt;}
.y76{bottom:755.813333pt;}
.y99{bottom:755.973333pt;}
.y37{bottom:760.133333pt;}
.y10{bottom:762.533333pt;}
.y98{bottom:780.773333pt;}
.yf{bottom:780.933333pt;}
.y36{bottom:784.773333pt;}
.y75{bottom:793.253333pt;}
.ye{bottom:799.333333pt;}
.y97{bottom:805.413333pt;}
.y35{bottom:809.413333pt;}
.y96{bottom:830.053333pt;}
.y74{bottom:830.693333pt;}
.y34{bottom:834.053333pt;}
.yd{bottom:836.133333pt;}
.yc{bottom:854.533333pt;}
.y95{bottom:856.133333pt;}
.y33{bottom:858.853333pt;}
.y73{bottom:868.133333pt;}
.yb{bottom:872.933333pt;}
.y94{bottom:880.773333pt;}
.y32{bottom:883.493333pt;}
.ya{bottom:891.333333pt;}
.y72{bottom:905.733333pt;}
.y93{bottom:906.853333pt;}
.y31{bottom:908.133333pt;}
.y9{bottom:909.733333pt;}
.y8{bottom:928.133333pt;}
.y92{bottom:931.493333pt;}
.y30{bottom:932.933333pt;}
.y70{bottom:943.173333pt;}
.y7{bottom:945.573333pt;}
.y2f{bottom:957.573333pt;}
.y6{bottom:960.773333pt;}
.y6f{bottom:980.613333pt;}
.y5{bottom:982.213333pt;}
.y1{bottom:1057.920000pt;}
.hb{height:18.400000pt;}
.h3{height:28.320000pt;}
.hd{height:36.800000pt;}
.he{height:44.875000pt;}
.h9{height:45.281250pt;}
.h6{height:48.375000pt;}
.h5{height:51.553125pt;}
.h11{height:52.134375pt;}
.ha{height:52.503750pt;}
.hf{height:52.979062pt;}
.h8{height:62.781250pt;}
.hc{height:62.812500pt;}
.h7{height:64.500000pt;}
.h12{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h10{height:76.964840pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.552000pt;}
.w8{width:124.000000pt;}
.w7{width:124.032000pt;}
.w9{width:129.472000pt;}
.w4{width:169.466667pt;}
.w6{width:188.346667pt;}
.w5{width:264.026667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.720000pt;}
.x3{left:19.680000pt;}
.xf{left:44.640000pt;}
.x13{left:68.800000pt;}
.x1{left:75.519988pt;}
.xe{left:85.472000pt;}
.x1a{left:104.031988pt;}
.xc{left:113.311988pt;}
.x4{left:150.426655pt;}
.x14{left:193.466667pt;}
.x12{left:232.346655pt;}
.x10{left:255.586667pt;}
.x7{left:266.786655pt;}
.x8{left:278.466655pt;}
.x9{left:314.466655pt;}
.x15{left:318.146667pt;}
.xa{left:334.626655pt;}
.x6{left:348.226655pt;}
.x2{left:363.746667pt;}
.x19{left:373.186655pt;}
.x5{left:396.866655pt;}
.xb{left:415.746655pt;}
.x16{left:442.813333pt;}
.x11{left:520.253333pt;}
.x17{left:567.453333pt;}
.xd{left:627.973322pt;}
}




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