
    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_2c87d70034de48282d0a8740.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_05d9b149717d02a915952fde.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_63c7cdb95c50e24614035ab2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.034000;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_9c6273b19e030ad375dc38da.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_0126bc836866cd8f0c410ab3.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_89aa40884e5c988763fe0e19.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b38f592f741a5bc858e27081.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.331331;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_7b403a30d8d7642b3bdaaa7a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.331331;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_b0a48f1b4f22c4d341c4f78e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_20ad301425d30e9a74c2187f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_8a031eff0799f7e13daa9c7b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.933594;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v0{vertical-align:0.000000px;}
.ls12{letter-spacing:-9.107269px;}
.ls20{letter-spacing:-1.908000px;}
.ls11{letter-spacing:-0.853806px;}
.lsa{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.630000px;}
.ls18{letter-spacing:-0.576000px;}
.lsd{letter-spacing:-0.466800px;}
.lsc{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.021250px;}
.ls8{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.021250px;}
.ls3{letter-spacing:0.072000px;}
.ls15{letter-spacing:0.423360px;}
.ls5{letter-spacing:0.491793px;}
.ls10{letter-spacing:0.492045px;}
.ls1d{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.599040px;}
.ls4{letter-spacing:0.661795px;}
.ls1c{letter-spacing:0.684000px;}
.ls1{letter-spacing:0.720000px;}
.ls6{letter-spacing:2.009671px;}
.ls1f{letter-spacing:3.118080px;}
.ls1e{letter-spacing:8.758080px;}
.ls17{letter-spacing:11.818080px;}
.ls22{letter-spacing:16.306560px;}
.ls21{letter-spacing:46.546560px;}
.ls16{letter-spacing:54.864000px;}
.ls2{letter-spacing:1509.912000px;}
.ls0{letter-spacing:1697.112000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wse{word-spacing:-72.000000px;}
.ws11{word-spacing:-60.480000px;}
.wsf{word-spacing:-27.072000px;}
.wsb{word-spacing:-26.712000px;}
.ws8{word-spacing:-20.336531px;}
.wsc{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.034864px;}
.wsd{word-spacing:-15.543360px;}
.ws0{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.653200px;}
.ws4{word-spacing:-13.680000px;}
.ws10{word-spacing:-13.212000px;}
.ws7{word-spacing:-13.050000px;}
.ws1{word-spacing:-11.160000px;}
.ws3{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-2.453760px;}
._3{margin-left:-1.391040px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._a{width:4.427826px;}
._7{width:5.655614px;}
._8{width:6.772772px;}
._9{width:7.821935px;}
._c{width:8.826637px;}
._b{width:9.903890px;}
._f{width:11.917920px;}
._e{width:12.960000px;}
._d{width:14.239791px;}
._10{width:16.504412px;}
._11{width:188.856000px;}
._6{width:201.219028px;}
._5{width:1218.744000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs7{font-size:41.760000px;}
.fs9{font-size:54.720000px;}
.fsc{font-size:57.679368px;}
.fs2{font-size:60.480000px;}
.fsb{font-size:63.750880px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:69.822393px;}
.fs5{font-size:72.000000px;}
.fsd{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4d{bottom:1.075500px;}
.y5{bottom:3.960000px;}
.y44{bottom:4.320000px;}
.y5b{bottom:5.370000px;}
.y58{bottom:7.915500px;}
.y2{bottom:7.920000px;}
.y4{bottom:21.240000px;}
.y43{bottom:23.400000px;}
.y57{bottom:28.075500px;}
.y4c{bottom:30.595500px;}
.y42{bottom:42.120000px;}
.y4b{bottom:42.514500px;}
.y3{bottom:44.280000px;}
.y56{bottom:52.594500px;}
.y4a{bottom:55.834500px;}
.y7{bottom:57.636000px;}
.y41{bottom:61.200000px;}
.y49{bottom:68.794500px;}
.y55{bottom:72.034500px;}
.y40{bottom:79.920000px;}
.y48{bottom:90.394500px;}
.y54{bottom:91.834500px;}
.y59{bottom:95.436000px;}
.y53{bottom:98.314500px;}
.y3f{bottom:99.000000px;}
.y8a{bottom:108.756000px;}
.y45{bottom:109.480500px;}
.y52{bottom:114.154500px;}
.y3e{bottom:117.765000px;}
.y89{bottom:127.476000px;}
.y51{bottom:129.634500px;}
.y3d{bottom:136.845000px;}
.y50{bottom:145.114500px;}
.yb2{bottom:146.232000px;}
.y88{bottom:146.592000px;}
.y47{bottom:152.674500px;}
.y3c{bottom:155.565000px;}
.y4f{bottom:160.594500px;}
.y46{bottom:163.474500px;}
.yb1{bottom:164.955000px;}
.y87{bottom:165.315000px;}
.y3b{bottom:174.645000px;}
.y4e{bottom:175.744500px;}
.yb0{bottom:184.035000px;}
.y86{bottom:184.395000px;}
.y3a{bottom:193.365000px;}
.y85{bottom:203.115000px;}
.yaf{bottom:211.755000px;}
.y39{bottom:212.085000px;}
.ydc{bottom:221.115000px;}
.yae{bottom:230.835000px;}
.y38{bottom:231.165000px;}
.y84{bottom:231.195000px;}
.ydb{bottom:238.035000px;}
.yad{bottom:249.555000px;}
.y37{bottom:249.915000px;}
.yda{bottom:255.315000px;}
.yac{bottom:268.635000px;}
.y36{bottom:268.995000px;}
.yd9{bottom:272.595000px;}
.yab{bottom:287.385000px;}
.y35{bottom:287.715000px;}
.y83{bottom:287.745000px;}
.yd8{bottom:289.905000px;}
.y1f{bottom:301.035000px;}
.ye{bottom:302.505000px;}
.yaa{bottom:306.465000px;}
.y34{bottom:306.795000px;}
.y82{bottom:306.825000px;}
.yd7{bottom:307.185000px;}
.yd6{bottom:324.465000px;}
.y1e{bottom:325.155000px;}
.ya9{bottom:325.185000px;}
.y33{bottom:325.515000px;}
.y81{bottom:325.545000px;}
.yd5{bottom:341.745000px;}
.ya8{bottom:343.905000px;}
.y80{bottom:344.265000px;}
.y32{bottom:344.595000px;}
.y1d{bottom:349.275000px;}
.yd4{bottom:359.025000px;}
.ya7{bottom:362.985000px;}
.y31{bottom:363.315000px;}
.y7f{bottom:363.345000px;}
.y1c{bottom:373.785000px;}
.yd3{bottom:376.305000px;}
.ya6{bottom:381.705000px;}
.y30{bottom:382.065000px;}
.yd2{bottom:393.585000px;}
.y1b{bottom:397.905000px;}
.ya5{bottom:400.785000px;}
.y2f{bottom:401.145000px;}
.yd1{bottom:410.910000px;}
.ya4{bottom:419.550000px;}
.y2e{bottom:419.865000px;}
.y7e{bottom:419.910000px;}
.y1a{bottom:422.025000px;}
.yd0{bottom:428.190000px;}
.ya3{bottom:438.270000px;}
.y7d{bottom:438.990000px;}
.ycf{bottom:445.110000px;}
.y19{bottom:446.145000px;}
.y2d{bottom:447.225000px;}
.y7c{bottom:457.710000px;}
.ya2{bottom:459.870000px;}
.yce{bottom:463.110000px;}
.y2c{bottom:464.865000px;}
.y18{bottom:470.265000px;}
.y7b{bottom:476.790000px;}
.ya1{bottom:478.590000px;}
.y2b{bottom:482.145000px;}
.ycd{bottom:490.830000px;}
.y17{bottom:494.385000px;}
.y7a{bottom:499.110000px;}
.y2a{bottom:501.630000px;}
.ya0{bottom:506.670000px;}
.ycc{bottom:509.910000px;}
.y16{bottom:518.550000px;}
.y29{bottom:518.910000px;}
.y79{bottom:521.790000px;}
.y9f{bottom:525.390000px;}
.ycb{bottom:528.630000px;}
.y28{bottom:536.190000px;}
.y15{bottom:542.670000px;}
.y78{bottom:544.500000px;}
.yca{bottom:547.740000px;}
.y27{bottom:553.470000px;}
.y77{bottom:563.220000px;}
.yc9{bottom:566.460000px;}
.y14{bottom:566.790000px;}
.y26{bottom:570.750000px;}
.y76{bottom:582.300000px;}
.yc8{bottom:585.540000px;}
.y25{bottom:588.030000px;}
.y13{bottom:590.910000px;}
.y75{bottom:601.020000px;}
.yc7{bottom:604.260000px;}
.y24{bottom:605.310000px;}
.y12{bottom:615.030000px;}
.y74{bottom:619.740000px;}
.y23{bottom:622.590000px;}
.yc6{bottom:622.980000px;}
.y73{bottom:638.820000px;}
.y11{bottom:639.180000px;}
.y22{bottom:639.900000px;}
.yc5{bottom:642.060000px;}
.y21{bottom:657.180000px;}
.y72{bottom:657.540000px;}
.yc4{bottom:660.780000px;}
.y10{bottom:663.300000px;}
.y20{bottom:674.820000px;}
.y71{bottom:676.650000px;}
.yc3{bottom:679.890000px;}
.yf{bottom:687.780000px;}
.y70{bottom:695.370000px;}
.yc2{bottom:698.610000px;}
.y6f{bottom:714.450000px;}
.yc1{bottom:717.690000px;}
.y9e{bottom:723.450000px;}
.y6e{bottom:733.170000px;}
.y9d{bottom:742.170000px;}
.yc0{bottom:745.410000px;}
.y6d{bottom:752.250000px;}
.y9c{bottom:761.250000px;}
.ybf{bottom:764.490000px;}
.y6c{bottom:770.970000px;}
.y9b{bottom:779.970000px;}
.ybe{bottom:783.210000px;}
.y6b{bottom:789.690000px;}
.y9a{bottom:798.690000px;}
.ybd{bottom:802.335000px;}
.y6a{bottom:811.335000px;}
.y99{bottom:817.815000px;}
.ybc{bottom:821.055000px;}
.y69{bottom:830.055000px;}
.y98{bottom:836.535000px;}
.ybb{bottom:839.775000px;}
.y68{bottom:848.775000px;}
.y97{bottom:855.615000px;}
.yba{bottom:867.855000px;}
.y96{bottom:874.335000px;}
.y67{bottom:876.855000px;}
.yb9{bottom:886.575000px;}
.y95{bottom:893.415000px;}
.y66{bottom:895.575000px;}
.yb8{bottom:905.655000px;}
.y94{bottom:912.135000px;}
.y65{bottom:914.655000px;}
.yb7{bottom:924.375000px;}
.y93{bottom:931.215000px;}
.y64{bottom:933.405000px;}
.yb6{bottom:943.485000px;}
.y92{bottom:949.965000px;}
.y63{bottom:952.485000px;}
.yb5{bottom:962.205000px;}
.y91{bottom:969.045000px;}
.y62{bottom:971.205000px;}
.yb4{bottom:981.285000px;}
.y90{bottom:987.765000px;}
.y61{bottom:990.285000px;}
.yb3{bottom:1000.005000px;}
.yd{bottom:1002.165000px;}
.y8f{bottom:1006.485000px;}
.yc{bottom:1007.565000px;}
.y60{bottom:1009.005000px;}
.yb{bottom:1025.205000px;}
.y8e{bottom:1025.565000px;}
.y5f{bottom:1027.725000px;}
.y8d{bottom:1044.285000px;}
.ya{bottom:1046.805000px;}
.y8c{bottom:1063.365000px;}
.y5e{bottom:1065.570000px;}
.y9{bottom:1067.730000px;}
.y8b{bottom:1082.130000px;}
.y5d{bottom:1084.650000px;}
.y8{bottom:1086.450000px;}
.y5a{bottom:1089.720000px;}
.y5c{bottom:1103.370000px;}
.y6{bottom:1120.290000px;}
.y1{bottom:1127.130000px;}
.hb{height:4.165313px;}
.h17{height:5.650313px;}
.h1a{height:27.720000px;}
.h15{height:29.678906px;}
.h6{height:30.077578px;}
.h14{height:35.332031px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h10{height:53.677969px;}
.h16{height:55.147500px;}
.hf{height:55.927736px;}
.h8{height:57.672000px;}
.h19{height:59.328281px;}
.h5{height:59.357813px;}
.h12{height:60.155156px;}
.ha{height:60.952500px;}
.h1d{height:62.163910px;}
.h1b{height:63.455625px;}
.h11{height:64.978594px;}
.h3{height:65.884219px;}
.h18{height:67.579668px;}
.h9{height:70.664062px;}
.h1c{height:74.004654px;}
.h7{height:77.280480px;}
.h2{height:81.390000px;}
.h4{height:116.640000px;}
.h13{height:192.285000px;}
.hc{height:697.125000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:103.702500px;}
.w4{width:132.502500px;}
.w6{width:163.080000px;}
.w5{width:596.745000px;}
.w3{width:622.665000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:6.876000px;}
.x17{left:8.266500px;}
.x4{left:13.305000px;}
.x15{left:14.746500px;}
.x1e{left:18.346500px;}
.x5{left:19.425000px;}
.x16{left:26.626500px;}
.x20{left:29.146500px;}
.x6{left:38.145000px;}
.xf{left:43.906500px;}
.x1f{left:47.542500px;}
.x10{left:50.782500px;}
.x14{left:54.022500px;}
.xe{left:55.102500px;}
.x21{left:57.262500px;}
.x1a{left:66.255000px;}
.x13{left:73.105500px;}
.x12{left:75.265500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.x2{left:95.425500px;}
.x22{left:102.985500px;}
.x1d{left:106.945500px;}
.x28{left:113.436000px;}
.x23{left:120.660000px;}
.x11{left:124.585500px;}
.xb{left:146.232000px;}
.x24{left:168.180000px;}
.x3{left:182.250000px;}
.xc{left:218.955000px;}
.xa{left:265.785000px;}
.x1b{left:473.955000px;}
.x1c{left:514.995000px;}
.x25{left:542.040000px;}
.x18{left:551.040000px;}
.x19{left:588.840000px;}
.x9{left:766.050000px;}
.x27{left:771.810000px;}
.x8{left:784.770000px;}
.xd{left:807.090000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls12{letter-spacing:-8.095350pt;}
.ls20{letter-spacing:-1.696000pt;}
.ls11{letter-spacing:-0.758939pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.560000pt;}
.ls18{letter-spacing:-0.512000pt;}
.lsd{letter-spacing:-0.414933pt;}
.lsc{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.018889pt;}
.ls8{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.018889pt;}
.ls3{letter-spacing:0.064000pt;}
.ls15{letter-spacing:0.376320pt;}
.ls5{letter-spacing:0.437149pt;}
.ls10{letter-spacing:0.437374pt;}
.ls1d{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.532480pt;}
.ls4{letter-spacing:0.588262pt;}
.ls1c{letter-spacing:0.608000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls6{letter-spacing:1.786374pt;}
.ls1f{letter-spacing:2.771627pt;}
.ls1e{letter-spacing:7.784960pt;}
.ls17{letter-spacing:10.504960pt;}
.ls22{letter-spacing:14.494720pt;}
.ls21{letter-spacing:41.374720pt;}
.ls16{letter-spacing:48.768000pt;}
.ls2{letter-spacing:1342.144000pt;}
.ls0{letter-spacing:1508.544000pt;}
.wse{word-spacing:-64.000000pt;}
.ws11{word-spacing:-53.760000pt;}
.wsf{word-spacing:-24.064000pt;}
.wsb{word-spacing:-23.744000pt;}
.ws8{word-spacing:-18.076916pt;}
.wsc{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.253213pt;}
.wsd{word-spacing:-13.816320pt;}
.ws0{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.025067pt;}
.ws4{word-spacing:-12.160000pt;}
.ws10{word-spacing:-11.744000pt;}
.ws7{word-spacing:-11.600000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-2.181120pt;}
._3{margin-left:-1.236480pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._a{width:3.935845pt;}
._7{width:5.027212pt;}
._8{width:6.020242pt;}
._9{width:6.952831pt;}
._c{width:7.845899pt;}
._b{width:8.803458pt;}
._f{width:10.593707pt;}
._e{width:11.520000pt;}
._d{width:12.657592pt;}
._10{width:14.670589pt;}
._11{width:167.872000pt;}
._6{width:178.861358pt;}
._5{width:1083.328000pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs7{font-size:37.120000pt;}
.fs9{font-size:48.640000pt;}
.fsc{font-size:51.270549pt;}
.fs2{font-size:53.760000pt;}
.fsb{font-size:56.667449pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:62.064349pt;}
.fs5{font-size:64.000000pt;}
.fsd{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:0.956000pt;}
.y5{bottom:3.520000pt;}
.y44{bottom:3.840000pt;}
.y5b{bottom:4.773333pt;}
.y58{bottom:7.036000pt;}
.y2{bottom:7.040000pt;}
.y4{bottom:18.880000pt;}
.y43{bottom:20.800000pt;}
.y57{bottom:24.956000pt;}
.y4c{bottom:27.196000pt;}
.y42{bottom:37.440000pt;}
.y4b{bottom:37.790667pt;}
.y3{bottom:39.360000pt;}
.y56{bottom:46.750667pt;}
.y4a{bottom:49.630667pt;}
.y7{bottom:51.232000pt;}
.y41{bottom:54.400000pt;}
.y49{bottom:61.150667pt;}
.y55{bottom:64.030667pt;}
.y40{bottom:71.040000pt;}
.y48{bottom:80.350667pt;}
.y54{bottom:81.630667pt;}
.y59{bottom:84.832000pt;}
.y53{bottom:87.390667pt;}
.y3f{bottom:88.000000pt;}
.y8a{bottom:96.672000pt;}
.y45{bottom:97.316000pt;}
.y52{bottom:101.470667pt;}
.y3e{bottom:104.680000pt;}
.y89{bottom:113.312000pt;}
.y51{bottom:115.230667pt;}
.y3d{bottom:121.640000pt;}
.y50{bottom:128.990667pt;}
.yb2{bottom:129.984000pt;}
.y88{bottom:130.304000pt;}
.y47{bottom:135.710667pt;}
.y3c{bottom:138.280000pt;}
.y4f{bottom:142.750667pt;}
.y46{bottom:145.310667pt;}
.yb1{bottom:146.626667pt;}
.y87{bottom:146.946667pt;}
.y3b{bottom:155.240000pt;}
.y4e{bottom:156.217333pt;}
.yb0{bottom:163.586667pt;}
.y86{bottom:163.906667pt;}
.y3a{bottom:171.880000pt;}
.y85{bottom:180.546667pt;}
.yaf{bottom:188.226667pt;}
.y39{bottom:188.520000pt;}
.ydc{bottom:196.546667pt;}
.yae{bottom:205.186667pt;}
.y38{bottom:205.480000pt;}
.y84{bottom:205.506667pt;}
.ydb{bottom:211.586667pt;}
.yad{bottom:221.826667pt;}
.y37{bottom:222.146667pt;}
.yda{bottom:226.946667pt;}
.yac{bottom:238.786667pt;}
.y36{bottom:239.106667pt;}
.yd9{bottom:242.306667pt;}
.yab{bottom:255.453333pt;}
.y35{bottom:255.746667pt;}
.y83{bottom:255.773333pt;}
.yd8{bottom:257.693333pt;}
.y1f{bottom:267.586667pt;}
.ye{bottom:268.893333pt;}
.yaa{bottom:272.413333pt;}
.y34{bottom:272.706667pt;}
.y82{bottom:272.733333pt;}
.yd7{bottom:273.053333pt;}
.yd6{bottom:288.413333pt;}
.y1e{bottom:289.026667pt;}
.ya9{bottom:289.053333pt;}
.y33{bottom:289.346667pt;}
.y81{bottom:289.373333pt;}
.yd5{bottom:303.773333pt;}
.ya8{bottom:305.693333pt;}
.y80{bottom:306.013333pt;}
.y32{bottom:306.306667pt;}
.y1d{bottom:310.466667pt;}
.yd4{bottom:319.133333pt;}
.ya7{bottom:322.653333pt;}
.y31{bottom:322.946667pt;}
.y7f{bottom:322.973333pt;}
.y1c{bottom:332.253333pt;}
.yd3{bottom:334.493333pt;}
.ya6{bottom:339.293333pt;}
.y30{bottom:339.613333pt;}
.yd2{bottom:349.853333pt;}
.y1b{bottom:353.693333pt;}
.ya5{bottom:356.253333pt;}
.y2f{bottom:356.573333pt;}
.yd1{bottom:365.253333pt;}
.ya4{bottom:372.933333pt;}
.y2e{bottom:373.213333pt;}
.y7e{bottom:373.253333pt;}
.y1a{bottom:375.133333pt;}
.yd0{bottom:380.613333pt;}
.ya3{bottom:389.573333pt;}
.y7d{bottom:390.213333pt;}
.ycf{bottom:395.653333pt;}
.y19{bottom:396.573333pt;}
.y2d{bottom:397.533333pt;}
.y7c{bottom:406.853333pt;}
.ya2{bottom:408.773333pt;}
.yce{bottom:411.653333pt;}
.y2c{bottom:413.213333pt;}
.y18{bottom:418.013333pt;}
.y7b{bottom:423.813333pt;}
.ya1{bottom:425.413333pt;}
.y2b{bottom:428.573333pt;}
.ycd{bottom:436.293333pt;}
.y17{bottom:439.453333pt;}
.y7a{bottom:443.653333pt;}
.y2a{bottom:445.893333pt;}
.ya0{bottom:450.373333pt;}
.ycc{bottom:453.253333pt;}
.y16{bottom:460.933333pt;}
.y29{bottom:461.253333pt;}
.y79{bottom:463.813333pt;}
.y9f{bottom:467.013333pt;}
.ycb{bottom:469.893333pt;}
.y28{bottom:476.613333pt;}
.y15{bottom:482.373333pt;}
.y78{bottom:484.000000pt;}
.yca{bottom:486.880000pt;}
.y27{bottom:491.973333pt;}
.y77{bottom:500.640000pt;}
.yc9{bottom:503.520000pt;}
.y14{bottom:503.813333pt;}
.y26{bottom:507.333333pt;}
.y76{bottom:517.600000pt;}
.yc8{bottom:520.480000pt;}
.y25{bottom:522.693333pt;}
.y13{bottom:525.253333pt;}
.y75{bottom:534.240000pt;}
.yc7{bottom:537.120000pt;}
.y24{bottom:538.053333pt;}
.y12{bottom:546.693333pt;}
.y74{bottom:550.880000pt;}
.y23{bottom:553.413333pt;}
.yc6{bottom:553.760000pt;}
.y73{bottom:567.840000pt;}
.y11{bottom:568.160000pt;}
.y22{bottom:568.800000pt;}
.yc5{bottom:570.720000pt;}
.y21{bottom:584.160000pt;}
.y72{bottom:584.480000pt;}
.yc4{bottom:587.360000pt;}
.y10{bottom:589.600000pt;}
.y20{bottom:599.840000pt;}
.y71{bottom:601.466667pt;}
.yc3{bottom:604.346667pt;}
.yf{bottom:611.360000pt;}
.y70{bottom:618.106667pt;}
.yc2{bottom:620.986667pt;}
.y6f{bottom:635.066667pt;}
.yc1{bottom:637.946667pt;}
.y9e{bottom:643.066667pt;}
.y6e{bottom:651.706667pt;}
.y9d{bottom:659.706667pt;}
.yc0{bottom:662.586667pt;}
.y6d{bottom:668.666667pt;}
.y9c{bottom:676.666667pt;}
.ybf{bottom:679.546667pt;}
.y6c{bottom:685.306667pt;}
.y9b{bottom:693.306667pt;}
.ybe{bottom:696.186667pt;}
.y6b{bottom:701.946667pt;}
.y9a{bottom:709.946667pt;}
.ybd{bottom:713.186667pt;}
.y6a{bottom:721.186667pt;}
.y99{bottom:726.946667pt;}
.ybc{bottom:729.826667pt;}
.y69{bottom:737.826667pt;}
.y98{bottom:743.586667pt;}
.ybb{bottom:746.466667pt;}
.y68{bottom:754.466667pt;}
.y97{bottom:760.546667pt;}
.yba{bottom:771.426667pt;}
.y96{bottom:777.186667pt;}
.y67{bottom:779.426667pt;}
.yb9{bottom:788.066667pt;}
.y95{bottom:794.146667pt;}
.y66{bottom:796.066667pt;}
.yb8{bottom:805.026667pt;}
.y94{bottom:810.786667pt;}
.y65{bottom:813.026667pt;}
.yb7{bottom:821.666667pt;}
.y93{bottom:827.746667pt;}
.y64{bottom:829.693333pt;}
.yb6{bottom:838.653333pt;}
.y92{bottom:844.413333pt;}
.y63{bottom:846.653333pt;}
.yb5{bottom:855.293333pt;}
.y91{bottom:861.373333pt;}
.y62{bottom:863.293333pt;}
.yb4{bottom:872.253333pt;}
.y90{bottom:878.013333pt;}
.y61{bottom:880.253333pt;}
.yb3{bottom:888.893333pt;}
.yd{bottom:890.813333pt;}
.y8f{bottom:894.653333pt;}
.yc{bottom:895.613333pt;}
.y60{bottom:896.893333pt;}
.yb{bottom:911.293333pt;}
.y8e{bottom:911.613333pt;}
.y5f{bottom:913.533333pt;}
.y8d{bottom:928.253333pt;}
.ya{bottom:930.493333pt;}
.y8c{bottom:945.213333pt;}
.y5e{bottom:947.173333pt;}
.y9{bottom:949.093333pt;}
.y8b{bottom:961.893333pt;}
.y5d{bottom:964.133333pt;}
.y8{bottom:965.733333pt;}
.y5a{bottom:968.640000pt;}
.y5c{bottom:980.773333pt;}
.y6{bottom:995.813333pt;}
.y1{bottom:1001.893333pt;}
.hb{height:3.702500pt;}
.h17{height:5.022500pt;}
.h1a{height:24.640000pt;}
.h15{height:26.381250pt;}
.h6{height:26.735625pt;}
.h14{height:31.406250pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h10{height:47.713750pt;}
.h16{height:49.020000pt;}
.hf{height:49.713543pt;}
.h8{height:51.264000pt;}
.h19{height:52.736250pt;}
.h5{height:52.762500pt;}
.h12{height:53.471250pt;}
.ha{height:54.180000pt;}
.h1d{height:55.256809pt;}
.h1b{height:56.405000pt;}
.h11{height:57.758750pt;}
.h3{height:58.563750pt;}
.h18{height:60.070816pt;}
.h9{height:62.812500pt;}
.h1c{height:65.781915pt;}
.h7{height:68.693760pt;}
.h2{height:72.346667pt;}
.h4{height:103.680000pt;}
.h13{height:170.920000pt;}
.hc{height:619.666667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.180000pt;}
.w4{width:117.780000pt;}
.w6{width:144.960000pt;}
.w5{width:530.440000pt;}
.w3{width:553.480000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:6.112000pt;}
.x17{left:7.348000pt;}
.x4{left:11.826667pt;}
.x15{left:13.108000pt;}
.x1e{left:16.308000pt;}
.x5{left:17.266667pt;}
.x16{left:23.668000pt;}
.x20{left:25.908000pt;}
.x6{left:33.906667pt;}
.xf{left:39.028000pt;}
.x1f{left:42.260000pt;}
.x10{left:45.140000pt;}
.x14{left:48.020000pt;}
.xe{left:48.980000pt;}
.x21{left:50.900000pt;}
.x1a{left:58.893333pt;}
.x13{left:64.982667pt;}
.x12{left:66.902667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.x2{left:84.822667pt;}
.x22{left:91.542667pt;}
.x1d{left:95.062667pt;}
.x28{left:100.832000pt;}
.x23{left:107.253333pt;}
.x11{left:110.742667pt;}
.xb{left:129.984000pt;}
.x24{left:149.493333pt;}
.x3{left:162.000000pt;}
.xc{left:194.626667pt;}
.xa{left:236.253333pt;}
.x1b{left:421.293333pt;}
.x1c{left:457.773333pt;}
.x25{left:481.813333pt;}
.x18{left:489.813333pt;}
.x19{left:523.413333pt;}
.x9{left:680.933333pt;}
.x27{left:686.053333pt;}
.x8{left:697.573333pt;}
.xd{left:717.413333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  