
    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_b3729512870359ffaa3e5d1c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_63c2ffbc2f0a90aacea50735.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.877930;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_5d7f1dd434ba1ff95922e68c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4656eadbf0377a5ec5c19eae.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0d66f182e96bde25df82dfa5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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_40855edd90619cc597fe5d13.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_8f5b106f8aa3be6aef864a3c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120605;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_e889dabaed049b0a5c1e0409.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;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_261c29ec7c29c709bc184fa9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938965;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_70f9c67dfcac609b129289c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.946777;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_813663e552e3762c0c0f51d0.woff2')format("woff");}.ffc{font-family:ffc;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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-4.536000px;}
.ls5{letter-spacing:-1.008000px;}
.ls3{letter-spacing:-0.180000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls4{letter-spacing:0.720000px;}
.ls8{letter-spacing:10.080000px;}
.lsc{letter-spacing:17.424000px;}
.ls9{letter-spacing:19.440000px;}
.ls1{letter-spacing:29.520000px;}
.lsb{letter-spacing:53.424000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-72.000000px;}
.ws1{word-spacing:-23.940000px;}
.ws6{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-16.488000px;}
.ws4{word-spacing:-13.464000px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-10.008000px;}
._2c{margin-left:-8.064000px;}
._13{margin-left:-6.963360px;}
._2{margin-left:-5.832000px;}
._3{margin-left:-4.464000px;}
._9{margin-left:-3.443760px;}
._4{margin-left:-2.172240px;}
._1{margin-left:-1.067760px;}
._0{width:1.347840px;}
._1b{width:2.455200px;}
._7{width:3.960000px;}
._8{width:5.112000px;}
._10{width:6.624000px;}
._26{width:8.051760px;}
._1e{width:9.144000px;}
._28{width:10.144800px;}
._1d{width:11.160000px;}
._16{width:12.200400px;}
._17{width:13.699440px;}
._18{width:15.564240px;}
._21{width:16.592160px;}
._e{width:19.848000px;}
._f{width:21.180000px;}
._23{width:22.536000px;}
._6{width:23.616000px;}
._5{width:24.780240px;}
._b{width:26.699760px;}
._a{width:27.720000px;}
._c{width:28.800000px;}
._d{width:29.867760px;}
._20{width:31.836240px;}
._14{width:33.192000px;}
._22{width:34.560000px;}
._27{width:36.576000px;}
._19{width:38.003760px;}
._1a{width:39.020400px;}
._24{width:40.712400px;}
._25{width:42.554400px;}
._29{width:44.555760px;}
._15{width:45.576000px;}
._12{width:46.592640px;}
._11{width:47.952000px;}
._1c{width:49.144800px;}
._2b{width:56.664000px;}
._2a{width:57.936000px;}
.fc6{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fc3{color:rgb(192,0,0);}
.fc4{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,0);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:38.880000px;}
.fs5{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y7d{bottom:4.140000px;}
.y80{bottom:4.500000px;}
.y56{bottom:7.200000px;}
.y58{bottom:7.380000px;}
.y5c{bottom:7.425000px;}
.y5a{bottom:7.560000px;}
.yd{bottom:16.020000px;}
.yb{bottom:16.920000px;}
.yc{bottom:17.640000px;}
.y7{bottom:20.700000px;}
.y7c{bottom:24.840000px;}
.y7f{bottom:25.200000px;}
.y82{bottom:25.230000px;}
.y4{bottom:27.900000px;}
.y55{bottom:30.960000px;}
.y6{bottom:45.360000px;}
.y84{bottom:45.900000px;}
.y3{bottom:48.600000px;}
.y8{bottom:48.960000px;}
.y2{bottom:69.300000px;}
.ye{bottom:74.916000px;}
.y5{bottom:75.960000px;}
.ya{bottom:91.116000px;}
.y4e{bottom:128.736000px;}
.y7a{bottom:134.676000px;}
.y4d{bottom:145.836000px;}
.y4c{bottom:151.050000px;}
.y91{bottom:151.230000px;}
.y79{bottom:158.430000px;}
.y4b{bottom:163.110000px;}
.y37{bottom:163.650000px;}
.y53{bottom:163.830000px;}
.y90{bottom:174.990000px;}
.yab{bottom:178.410000px;}
.y4a{bottom:180.390000px;}
.y78{bottom:182.190000px;}
.y49{bottom:185.610000px;}
.y36{bottom:187.410000px;}
.y48{bottom:197.670000px;}
.y8f{bottom:198.750000px;}
.yaa{bottom:202.170000px;}
.y47{bottom:202.890000px;}
.y77{bottom:205.950000px;}
.y35{bottom:211.350000px;}
.y46{bottom:214.950000px;}
.y45{bottom:220.170000px;}
.y8e{bottom:222.510000px;}
.ya9{bottom:226.110000px;}
.y76{bottom:229.890000px;}
.y44{bottom:232.950000px;}
.y34{bottom:235.110000px;}
.y8d{bottom:246.450000px;}
.ya8{bottom:249.870000px;}
.y75{bottom:253.650000px;}
.y33{bottom:258.870000px;}
.y8c{bottom:270.210000px;}
.ya7{bottom:273.630000px;}
.y74{bottom:277.410000px;}
.y32{bottom:282.675000px;}
.y43{bottom:289.515000px;}
.y8b{bottom:294.015000px;}
.ya6{bottom:297.435000px;}
.y73{bottom:301.215000px;}
.y31{bottom:306.075000px;}
.y42{bottom:306.435000px;}
.y8a{bottom:317.775000px;}
.ya5{bottom:321.195000px;}
.y72{bottom:325.155000px;}
.y30{bottom:330.375000px;}
.y41{bottom:337.215000px;}
.y89{bottom:341.715000px;}
.ya4{bottom:345.135000px;}
.y71{bottom:348.915000px;}
.y52{bottom:353.775000px;}
.y2f{bottom:354.135000px;}
.y88{bottom:365.475000px;}
.ya3{bottom:368.895000px;}
.y70{bottom:372.675000px;}
.y2e{bottom:377.895000px;}
.y40{bottom:384.735000px;}
.y87{bottom:389.235000px;}
.ya2{bottom:392.295000px;}
.y6f{bottom:396.435000px;}
.y2d{bottom:401.655000px;}
.y86{bottom:406.335000px;}
.ya1{bottom:416.415000px;}
.y6e{bottom:420.375000px;}
.y2c{bottom:425.595000px;}
.ya0{bottom:440.355000px;}
.y6d{bottom:444.135000px;}
.y85{bottom:448.455000px;}
.y2b{bottom:449.355000px;}
.y3f{bottom:456.195000px;}
.y9f{bottom:464.115000px;}
.y6c{bottom:467.895000px;}
.y2a{bottom:473.115000px;}
.y9e{bottom:487.875000px;}
.y83{bottom:490.575000px;}
.y6b{bottom:491.655000px;}
.y29{bottom:496.875000px;}
.y9d{bottom:511.635000px;}
.y6a{bottom:515.415000px;}
.y28{bottom:520.815000px;}
.y9c{bottom:535.575000px;}
.y69{bottom:539.355000px;}
.y3e{bottom:544.215000px;}
.y27{bottom:544.575000px;}
.y81{bottom:553.575000px;}
.y9b{bottom:560.595000px;}
.y68{bottom:563.115000px;}
.y26{bottom:568.365000px;}
.y9a{bottom:585.825000px;}
.y67{bottom:586.905000px;}
.y25{bottom:592.125000px;}
.y7e{bottom:595.725000px;}
.y66{bottom:610.665000px;}
.y99{bottom:610.845000px;}
.y24{bottom:616.065000px;}
.y65{bottom:634.605000px;}
.y7b{bottom:637.845000px;}
.y23{bottom:639.825000px;}
.y64{bottom:658.365000px;}
.y98{bottom:659.805000px;}
.y22{bottom:663.225000px;}
.y3d{bottom:663.585000px;}
.y63{bottom:682.125000px;}
.y97{bottom:683.565000px;}
.y21{bottom:686.985000px;}
.y3c{bottom:687.345000px;}
.yac{bottom:687.525000px;}
.y62{bottom:705.885000px;}
.y96{bottom:707.325000px;}
.y20{bottom:711.285000px;}
.y61{bottom:729.825000px;}
.y95{bottom:731.085000px;}
.y1f{bottom:735.045000px;}
.y60{bottom:753.585000px;}
.y94{bottom:756.285000px;}
.y1e{bottom:758.805000px;}
.y5f{bottom:776.985000px;}
.y93{bottom:781.305000px;}
.y1d{bottom:782.565000px;}
.y5e{bottom:794.445000px;}
.y92{bottom:805.065000px;}
.y1c{bottom:806.325000px;}
.y5d{bottom:819.105000px;}
.y1b{bottom:830.265000px;}
.y5b{bottom:843.585000px;}
.y51{bottom:853.710000px;}
.y1a{bottom:854.070000px;}
.y59{bottom:868.110000px;}
.y19{bottom:877.830000px;}
.y57{bottom:892.770000px;}
.y18{bottom:901.590000px;}
.y54{bottom:917.250000px;}
.y17{bottom:925.530000px;}
.y16{bottom:949.290000px;}
.y15{bottom:972.690000px;}
.y50{bottom:973.050000px;}
.y3b{bottom:996.450000px;}
.y14{bottom:996.810000px;}
.y4f{bottom:1003.650000px;}
.y13{bottom:1020.390000px;}
.y3a{bottom:1020.750000px;}
.y12{bottom:1044.510000px;}
.y11{bottom:1068.270000px;}
.y10{bottom:1091.670000px;}
.y39{bottom:1092.030000px;}
.yf{bottom:1115.610000px;}
.y38{bottom:1115.970000px;}
.y9{bottom:1136.880000px;}
.y1{bottom:1153.080000px;}
.h13{height:23.760000px;}
.h15{height:23.796000px;}
.h14{height:23.940000px;}
.h8{height:33.120000px;}
.h10{height:38.158594px;}
.h16{height:41.400000px;}
.h17{height:41.436000px;}
.hf{height:47.344922px;}
.h12{height:47.700000px;}
.hc{height:50.800781px;}
.he{height:52.066406px;}
.hb{height:52.628906px;}
.hd{height:58.429688px;}
.h11{height:58.651172px;}
.h18{height:62.100000px;}
.h9{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.ha{height:71.613281px;}
.h3{height:72.562500px;}
.h19{height:74.004654px;}
.h4{height:82.635820px;}
.h2{height:109.800000px;}
.h5{height:129.250898px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:17.100000px;}
.w9{width:17.280000px;}
.w8{width:17.496000px;}
.w6{width:50.400000px;}
.w4{width:61.590000px;}
.wa{width:92.340000px;}
.w11{width:95.040000px;}
.wc{width:105.660000px;}
.w2{width:125.856000px;}
.wf{width:136.440000px;}
.w10{width:180.030000px;}
.we{width:202.530000px;}
.w12{width:213.150000px;}
.w13{width:221.250000px;}
.wd{width:230.475000px;}
.w3{width:705.525000px;}
.wb{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.800000px;}
.x9{left:8.100000px;}
.x2{left:9.179973px;}
.x2d{left:12.780000px;}
.x7{left:14.580000px;}
.x3b{left:16.380000px;}
.x30{left:17.460000px;}
.x41{left:18.540000px;}
.x46{left:19.980000px;}
.x38{left:23.760000px;}
.x1{left:25.199970px;}
.x6{left:27.354000px;}
.x3{left:30.239973px;}
.x45{left:32.220000px;}
.x43{left:33.480000px;}
.x35{left:42.120000px;}
.x49{left:43.920000px;}
.x3a{left:46.620000px;}
.x2f{left:52.605000px;}
.x3f{left:53.994000px;}
.x34{left:56.160000px;}
.x47{left:60.300000px;}
.x37{left:65.160000px;}
.x31{left:69.300000px;}
.x5{left:71.994000px;}
.x3c{left:74.745000px;}
.x48{left:77.394000px;}
.x33{left:79.245000px;}
.x44{left:81.000000px;}
.x36{left:83.745000px;}
.x39{left:88.245000px;}
.x4a{left:106.590000px;}
.x4{left:125.856000px;}
.xa{left:127.655987px;}
.x26{left:132.515987px;}
.x27{left:133.775987px;}
.x29{left:135.215987px;}
.x1c{left:149.435987px;}
.x12{left:150.869987px;}
.x1a{left:156.989987px;}
.x2a{left:159.509987px;}
.x2c{left:170.490000px;}
.x19{left:180.749987px;}
.x3e{left:207.389987px;}
.x2e{left:276.870000px;}
.x28{left:292.934973px;}
.x1d{left:298.154973px;}
.x1e{left:304.454987px;}
.x40{left:308.775000px;}
.x18{left:333.074987px;}
.x17{left:342.614987px;}
.x25{left:343.694987px;}
.x15{left:364.214987px;}
.x13{left:374.834987px;}
.x14{left:385.814987px;}
.x16{left:387.074987px;}
.x2b{left:403.274987px;}
.x42{left:404.535000px;}
.x1b{left:421.634987px;}
.x3d{left:483.734987px;}
.x21{left:502.124973px;}
.x22{left:508.244987px;}
.xb{left:619.305000px;}
.x1f{left:622.364973px;}
.x20{left:631.364987px;}
.xc{left:669.705000px;}
.xd{left:686.805000px;}
.xe{left:704.310000px;}
.x32{left:711.330000px;}
.xf{left:721.590000px;}
.x10{left:738.870000px;}
.x23{left:785.129973px;}
.x24{left:791.249987px;}
.x8{left:831.390000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-4.032000pt;}
.ls5{letter-spacing:-0.896000pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls8{letter-spacing:8.960000pt;}
.lsc{letter-spacing:15.488000pt;}
.ls9{letter-spacing:17.280000pt;}
.ls1{letter-spacing:26.240000pt;}
.lsb{letter-spacing:47.488000pt;}
.ws5{word-spacing:-64.000000pt;}
.ws1{word-spacing:-21.280000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-14.656000pt;}
.ws4{word-spacing:-11.968000pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-8.896000pt;}
._2c{margin-left:-7.168000pt;}
._13{margin-left:-6.189653pt;}
._2{margin-left:-5.184000pt;}
._3{margin-left:-3.968000pt;}
._9{margin-left:-3.061120pt;}
._4{margin-left:-1.930880pt;}
._1{margin-left:-0.949120pt;}
._0{width:1.198080pt;}
._1b{width:2.182400pt;}
._7{width:3.520000pt;}
._8{width:4.544000pt;}
._10{width:5.888000pt;}
._26{width:7.157120pt;}
._1e{width:8.128000pt;}
._28{width:9.017600pt;}
._1d{width:9.920000pt;}
._16{width:10.844800pt;}
._17{width:12.177280pt;}
._18{width:13.834880pt;}
._21{width:14.748587pt;}
._e{width:17.642667pt;}
._f{width:18.826667pt;}
._23{width:20.032000pt;}
._6{width:20.992000pt;}
._5{width:22.026880pt;}
._b{width:23.733120pt;}
._a{width:24.640000pt;}
._c{width:25.600000pt;}
._d{width:26.549120pt;}
._20{width:28.298880pt;}
._14{width:29.504000pt;}
._22{width:30.720000pt;}
._27{width:32.512000pt;}
._19{width:33.781120pt;}
._1a{width:34.684800pt;}
._24{width:36.188800pt;}
._25{width:37.826133pt;}
._29{width:39.605120pt;}
._15{width:40.512000pt;}
._12{width:41.415680pt;}
._11{width:42.624000pt;}
._1c{width:43.684267pt;}
._2b{width:50.368000pt;}
._2a{width:51.498667pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:3.680000pt;}
.y80{bottom:4.000000pt;}
.y56{bottom:6.400000pt;}
.y58{bottom:6.560000pt;}
.y5c{bottom:6.600000pt;}
.y5a{bottom:6.720000pt;}
.yd{bottom:14.240000pt;}
.yb{bottom:15.040000pt;}
.yc{bottom:15.680000pt;}
.y7{bottom:18.400000pt;}
.y7c{bottom:22.080000pt;}
.y7f{bottom:22.400000pt;}
.y82{bottom:22.426667pt;}
.y4{bottom:24.800000pt;}
.y55{bottom:27.520000pt;}
.y6{bottom:40.320000pt;}
.y84{bottom:40.800000pt;}
.y3{bottom:43.200000pt;}
.y8{bottom:43.520000pt;}
.y2{bottom:61.600000pt;}
.ye{bottom:66.592000pt;}
.y5{bottom:67.520000pt;}
.ya{bottom:80.992000pt;}
.y4e{bottom:114.432000pt;}
.y7a{bottom:119.712000pt;}
.y4d{bottom:129.632000pt;}
.y4c{bottom:134.266667pt;}
.y91{bottom:134.426667pt;}
.y79{bottom:140.826667pt;}
.y4b{bottom:144.986667pt;}
.y37{bottom:145.466667pt;}
.y53{bottom:145.626667pt;}
.y90{bottom:155.546667pt;}
.yab{bottom:158.586667pt;}
.y4a{bottom:160.346667pt;}
.y78{bottom:161.946667pt;}
.y49{bottom:164.986667pt;}
.y36{bottom:166.586667pt;}
.y48{bottom:175.706667pt;}
.y8f{bottom:176.666667pt;}
.yaa{bottom:179.706667pt;}
.y47{bottom:180.346667pt;}
.y77{bottom:183.066667pt;}
.y35{bottom:187.866667pt;}
.y46{bottom:191.066667pt;}
.y45{bottom:195.706667pt;}
.y8e{bottom:197.786667pt;}
.ya9{bottom:200.986667pt;}
.y76{bottom:204.346667pt;}
.y44{bottom:207.066667pt;}
.y34{bottom:208.986667pt;}
.y8d{bottom:219.066667pt;}
.ya8{bottom:222.106667pt;}
.y75{bottom:225.466667pt;}
.y33{bottom:230.106667pt;}
.y8c{bottom:240.186667pt;}
.ya7{bottom:243.226667pt;}
.y74{bottom:246.586667pt;}
.y32{bottom:251.266667pt;}
.y43{bottom:257.346667pt;}
.y8b{bottom:261.346667pt;}
.ya6{bottom:264.386667pt;}
.y73{bottom:267.746667pt;}
.y31{bottom:272.066667pt;}
.y42{bottom:272.386667pt;}
.y8a{bottom:282.466667pt;}
.ya5{bottom:285.506667pt;}
.y72{bottom:289.026667pt;}
.y30{bottom:293.666667pt;}
.y41{bottom:299.746667pt;}
.y89{bottom:303.746667pt;}
.ya4{bottom:306.786667pt;}
.y71{bottom:310.146667pt;}
.y52{bottom:314.466667pt;}
.y2f{bottom:314.786667pt;}
.y88{bottom:324.866667pt;}
.ya3{bottom:327.906667pt;}
.y70{bottom:331.266667pt;}
.y2e{bottom:335.906667pt;}
.y40{bottom:341.986667pt;}
.y87{bottom:345.986667pt;}
.ya2{bottom:348.706667pt;}
.y6f{bottom:352.386667pt;}
.y2d{bottom:357.026667pt;}
.y86{bottom:361.186667pt;}
.ya1{bottom:370.146667pt;}
.y6e{bottom:373.666667pt;}
.y2c{bottom:378.306667pt;}
.ya0{bottom:391.426667pt;}
.y6d{bottom:394.786667pt;}
.y85{bottom:398.626667pt;}
.y2b{bottom:399.426667pt;}
.y3f{bottom:405.506667pt;}
.y9f{bottom:412.546667pt;}
.y6c{bottom:415.906667pt;}
.y2a{bottom:420.546667pt;}
.y9e{bottom:433.666667pt;}
.y83{bottom:436.066667pt;}
.y6b{bottom:437.026667pt;}
.y29{bottom:441.666667pt;}
.y9d{bottom:454.786667pt;}
.y6a{bottom:458.146667pt;}
.y28{bottom:462.946667pt;}
.y9c{bottom:476.066667pt;}
.y69{bottom:479.426667pt;}
.y3e{bottom:483.746667pt;}
.y27{bottom:484.066667pt;}
.y81{bottom:492.066667pt;}
.y9b{bottom:498.306667pt;}
.y68{bottom:500.546667pt;}
.y26{bottom:505.213333pt;}
.y9a{bottom:520.733333pt;}
.y67{bottom:521.693333pt;}
.y25{bottom:526.333333pt;}
.y7e{bottom:529.533333pt;}
.y66{bottom:542.813333pt;}
.y99{bottom:542.973333pt;}
.y24{bottom:547.613333pt;}
.y65{bottom:564.093333pt;}
.y7b{bottom:566.973333pt;}
.y23{bottom:568.733333pt;}
.y64{bottom:585.213333pt;}
.y98{bottom:586.493333pt;}
.y22{bottom:589.533333pt;}
.y3d{bottom:589.853333pt;}
.y63{bottom:606.333333pt;}
.y97{bottom:607.613333pt;}
.y21{bottom:610.653333pt;}
.y3c{bottom:610.973333pt;}
.yac{bottom:611.133333pt;}
.y62{bottom:627.453333pt;}
.y96{bottom:628.733333pt;}
.y20{bottom:632.253333pt;}
.y61{bottom:648.733333pt;}
.y95{bottom:649.853333pt;}
.y1f{bottom:653.373333pt;}
.y60{bottom:669.853333pt;}
.y94{bottom:672.253333pt;}
.y1e{bottom:674.493333pt;}
.y5f{bottom:690.653333pt;}
.y93{bottom:694.493333pt;}
.y1d{bottom:695.613333pt;}
.y5e{bottom:706.173333pt;}
.y92{bottom:715.613333pt;}
.y1c{bottom:716.733333pt;}
.y5d{bottom:728.093333pt;}
.y1b{bottom:738.013333pt;}
.y5b{bottom:749.853333pt;}
.y51{bottom:758.853333pt;}
.y1a{bottom:759.173333pt;}
.y59{bottom:771.653333pt;}
.y19{bottom:780.293333pt;}
.y57{bottom:793.573333pt;}
.y18{bottom:801.413333pt;}
.y54{bottom:815.333333pt;}
.y17{bottom:822.693333pt;}
.y16{bottom:843.813333pt;}
.y15{bottom:864.613333pt;}
.y50{bottom:864.933333pt;}
.y3b{bottom:885.733333pt;}
.y14{bottom:886.053333pt;}
.y4f{bottom:892.133333pt;}
.y13{bottom:907.013333pt;}
.y3a{bottom:907.333333pt;}
.y12{bottom:928.453333pt;}
.y11{bottom:949.573333pt;}
.y10{bottom:970.373333pt;}
.y39{bottom:970.693333pt;}
.yf{bottom:991.653333pt;}
.y38{bottom:991.973333pt;}
.y9{bottom:1010.560000pt;}
.y1{bottom:1024.960000pt;}
.h13{height:21.120000pt;}
.h15{height:21.152000pt;}
.h14{height:21.280000pt;}
.h8{height:29.440000pt;}
.h10{height:33.918750pt;}
.h16{height:36.800000pt;}
.h17{height:36.832000pt;}
.hf{height:42.084375pt;}
.h12{height:42.400000pt;}
.hc{height:45.156250pt;}
.he{height:46.281250pt;}
.hb{height:46.781250pt;}
.hd{height:51.937500pt;}
.h11{height:52.134375pt;}
.h18{height:55.200000pt;}
.h9{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.ha{height:63.656250pt;}
.h3{height:64.500000pt;}
.h19{height:65.781915pt;}
.h4{height:73.454062pt;}
.h2{height:97.600000pt;}
.h5{height:114.889687pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:15.200000pt;}
.w9{width:15.360000pt;}
.w8{width:15.552000pt;}
.w6{width:44.800000pt;}
.w4{width:54.746667pt;}
.wa{width:82.080000pt;}
.w11{width:84.480000pt;}
.wc{width:93.920000pt;}
.w2{width:111.872000pt;}
.wf{width:121.280000pt;}
.w10{width:160.026667pt;}
.we{width:180.026667pt;}
.w12{width:189.466667pt;}
.w13{width:196.666667pt;}
.wd{width:204.866667pt;}
.w3{width:627.133333pt;}
.wb{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:1.600000pt;}
.x9{left:7.200000pt;}
.x2{left:8.159976pt;}
.x2d{left:11.360000pt;}
.x7{left:12.960000pt;}
.x3b{left:14.560000pt;}
.x30{left:15.520000pt;}
.x41{left:16.480000pt;}
.x46{left:17.760000pt;}
.x38{left:21.120000pt;}
.x1{left:22.399973pt;}
.x6{left:24.314667pt;}
.x3{left:26.879976pt;}
.x45{left:28.640000pt;}
.x43{left:29.760000pt;}
.x35{left:37.440000pt;}
.x49{left:39.040000pt;}
.x3a{left:41.440000pt;}
.x2f{left:46.760000pt;}
.x3f{left:47.994667pt;}
.x34{left:49.920000pt;}
.x47{left:53.600000pt;}
.x37{left:57.920000pt;}
.x31{left:61.600000pt;}
.x5{left:63.994667pt;}
.x3c{left:66.440000pt;}
.x48{left:68.794667pt;}
.x33{left:70.440000pt;}
.x44{left:72.000000pt;}
.x36{left:74.440000pt;}
.x39{left:78.440000pt;}
.x4a{left:94.746667pt;}
.x4{left:111.872000pt;}
.xa{left:113.471988pt;}
.x26{left:117.791988pt;}
.x27{left:118.911988pt;}
.x29{left:120.191988pt;}
.x1c{left:132.831988pt;}
.x12{left:134.106655pt;}
.x1a{left:139.546655pt;}
.x2a{left:141.786655pt;}
.x2c{left:151.546667pt;}
.x19{left:160.666655pt;}
.x3e{left:184.346655pt;}
.x2e{left:246.106667pt;}
.x28{left:260.386643pt;}
.x1d{left:265.026643pt;}
.x1e{left:270.626655pt;}
.x40{left:274.466667pt;}
.x18{left:296.066655pt;}
.x17{left:304.546655pt;}
.x25{left:305.506655pt;}
.x15{left:323.746655pt;}
.x13{left:333.186655pt;}
.x14{left:342.946655pt;}
.x16{left:344.066655pt;}
.x2b{left:358.466655pt;}
.x42{left:359.586667pt;}
.x1b{left:374.786655pt;}
.x3d{left:429.986655pt;}
.x21{left:446.333310pt;}
.x22{left:451.773322pt;}
.xb{left:550.493333pt;}
.x1f{left:553.213310pt;}
.x20{left:561.213322pt;}
.xc{left:595.293333pt;}
.xd{left:610.493333pt;}
.xe{left:626.053333pt;}
.x32{left:632.293333pt;}
.xf{left:641.413333pt;}
.x10{left:656.773333pt;}
.x23{left:697.893310pt;}
.x24{left:703.333322pt;}
.x8{left:739.013333pt;}
}




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