
    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_b5e974c6223b46bc3ef59d11.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.941406;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_472b79437295ee3f32bab37d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_54b132b002e953f9acf85b2f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.962402;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_e37353b873a98c90ec93c051.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1484f350404f565875c9ffcc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941406;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_69d85e82accab8a759095b70.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.949219;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_210a84951946ea35a91b5dc9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f9c8072d843a2512932ae121.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3658021e84e0ff9338da6907.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.130371;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_1340c6f6463d4178279198da.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.130371;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_9399e5d8365e8dffafc8e1f8.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_51fe37100ef4fd51e5663eb3.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_19a371dcb95e765bae46516a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_29996a330dfb30dc21e8ed2d.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_eb2070ad4a477c9f6acd154e.woff2')format("woff");}.fff{font-family:fff;line-height:0.976562;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:ff10;src:url('chunks/assets/font_63d1372fe8171f4ff3b6a278.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.976562;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;}
.ls8{letter-spacing:-5.148000px;}
.lsa{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.181200px;}
.ls4{letter-spacing:-0.109200px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.269280px;}
.ls1{letter-spacing:0.269400px;}
.ls9{letter-spacing:0.720000px;}
.ls2{letter-spacing:11.520000px;}
.ls6{letter-spacing:33.960000px;}
.ls7{letter-spacing:64.002720px;}
.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;}
}
.ws6{word-spacing:-63.360000px;}
.wsb{word-spacing:-59.760000px;}
.ws3{word-spacing:-48.240000px;}
.ws0{word-spacing:-20.016000px;}
.ws2{word-spacing:-18.414720px;}
.ws1{word-spacing:-18.305520px;}
.ws8{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.614080px;}
.ws5{word-spacing:-13.410720px;}
.wsa{word-spacing:-13.266720px;}
.ws4{word-spacing:-13.229520px;}
.ws9{word-spacing:0.000000px;}
._a{margin-left:-8.208000px;}
._2{margin-left:-5.760000px;}
._0{margin-left:-4.464000px;}
._3{margin-left:-3.443040px;}
._6{margin-left:-2.168640px;}
._1{margin-left:-1.152000px;}
._7{width:1.088640px;}
._13{width:2.142720px;}
._9{width:3.168000px;}
._b{width:4.595040px;}
._10{width:5.832000px;}
._c{width:6.984000px;}
._d{width:7.992000px;}
._4{width:9.418080px;}
._5{width:11.364000px;}
._8{width:12.972000px;}
._12{width:14.379360px;}
._16{width:19.224000px;}
._f{width:20.736000px;}
._e{width:21.744000px;}
._11{width:23.367360px;}
._17{width:24.422400px;}
._18{width:26.124960px;}
._1d{width:31.478400px;}
._1e{width:33.249600px;}
._1c{width:34.790400px;}
._1f{width:36.413760px;}
._14{width:38.808000px;}
._15{width:40.239360px;}
._1b{width:47.577600px;}
._19{width:48.614400px;}
._1a{width:49.775040px;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y8{bottom:4.500000px;}
.y3{bottom:27.360000px;}
.y5{bottom:33.480000px;}
.y7{bottom:36.720000px;}
.ye{bottom:57.960000px;}
.y4{bottom:67.500000px;}
.y6{bottom:68.940000px;}
.yd{bottom:76.356000px;}
.yc{bottom:90.216000px;}
.yb{bottom:104.076000px;}
.ya{bottom:118.836000px;}
.y7c{bottom:142.236000px;}
.y30{bottom:157.890000px;}
.y7b{bottom:165.990000px;}
.y64{bottom:168.690000px;}
.y4d{bottom:172.110000px;}
.y2f{bottom:181.830000px;}
.y7a{bottom:189.750000px;}
.y2e{bottom:205.590000px;}
.y63{bottom:207.390000px;}
.y4c{bottom:210.990000px;}
.y79{bottom:228.630000px;}
.y2d{bottom:229.350000px;}
.y62{bottom:246.270000px;}
.y4b{bottom:249.870000px;}
.y78{bottom:252.390000px;}
.y2c{bottom:253.110000px;}
.y4a{bottom:273.630000px;}
.y77{bottom:276.150000px;}
.y2b{bottom:277.050000px;}
.y61{bottom:284.970000px;}
.y2a{bottom:300.810000px;}
.y49{bottom:312.510000px;}
.y76{bottom:315.075000px;}
.y60{bottom:323.895000px;}
.y29{bottom:324.615000px;}
.y48{bottom:336.315000px;}
.y75{bottom:338.835000px;}
.y28{bottom:348.375000px;}
.y5f{bottom:362.595000px;}
.y47{bottom:375.015000px;}
.y27{bottom:384.195000px;}
.y5e{bottom:401.475000px;}
.y46{bottom:413.895000px;}
.y26{bottom:420.015000px;}
.y74{bottom:425.235000px;}
.y45{bottom:437.655000px;}
.y5d{bottom:440.355000px;}
.y25{bottom:455.835000px;}
.y44{bottom:461.415000px;}
.y73{bottom:464.115000px;}
.y8c{bottom:468.975000px;}
.y5c{bottom:479.055000px;}
.y72{bottom:487.875000px;}
.y24{bottom:491.655000px;}
.y43{bottom:500.295000px;}
.y5b{bottom:517.935000px;}
.y42{bottom:524.055000px;}
.y71{bottom:526.755000px;}
.y23{bottom:527.475000px;}
.y8b{bottom:538.995000px;}
.y5a{bottom:541.695000px;}
.y22{bottom:551.235000px;}
.y41{bottom:562.935000px;}
.y70{bottom:565.455000px;}
.y8a{bottom:577.905000px;}
.y59{bottom:580.605000px;}
.y40{bottom:586.725000px;}
.y21{bottom:587.085000px;}
.y58{bottom:604.365000px;}
.y3f{bottom:610.485000px;}
.y20{bottom:610.845000px;}
.y89{bottom:616.785000px;}
.y6f{bottom:628.125000px;}
.y1f{bottom:634.605000px;}
.y88{bottom:640.545000px;}
.y57{bottom:643.245000px;}
.y3e{bottom:649.365000px;}
.y6e{bottom:652.065000px;}
.y1e{bottom:658.545000px;}
.y56{bottom:667.005000px;}
.y6d{bottom:675.825000px;}
.y87{bottom:679.425000px;}
.y1d{bottom:682.305000px;}
.y3d{bottom:688.245000px;}
.y6c{bottom:699.585000px;}
.y86{bottom:703.185000px;}
.y55{bottom:705.705000px;}
.y1c{bottom:706.065000px;}
.y3c{bottom:712.005000px;}
.y1b{bottom:729.825000px;}
.y6b{bottom:738.285000px;}
.y85{bottom:742.065000px;}
.y54{bottom:744.585000px;}
.y3b{bottom:750.705000px;}
.y1a{bottom:753.765000px;}
.y84{bottom:765.645000px;}
.y6a{bottom:777.165000px;}
.y19{bottom:777.525000px;}
.y53{bottom:783.465000px;}
.y3a{bottom:789.585000px;}
.y18{bottom:801.285000px;}
.y83{bottom:804.525000px;}
.y52{bottom:807.045000px;}
.y39{bottom:813.345000px;}
.y69{bottom:815.865000px;}
.y82{bottom:828.510000px;}
.y17{bottom:837.150000px;}
.y51{bottom:845.970000px;}
.y81{bottom:852.090000px;}
.y38{bottom:852.270000px;}
.y68{bottom:854.790000px;}
.y16{bottom:872.970000px;}
.y37{bottom:876.030000px;}
.y50{bottom:884.850000px;}
.y80{bottom:890.970000px;}
.y67{bottom:893.670000px;}
.y36{bottom:899.790000px;}
.y15{bottom:908.790000px;}
.y7f{bottom:914.910000px;}
.y4f{bottom:923.730000px;}
.y14{bottom:929.490000px;}
.y66{bottom:932.370000px;}
.y35{bottom:938.670000px;}
.y4e{bottom:947.310000px;}
.y13{bottom:950.190000px;}
.y34{bottom:962.430000px;}
.y12{bottom:970.890000px;}
.y65{bottom:971.250000px;}
.y33{bottom:986.190000px;}
.y11{bottom:991.590000px;}
.y7e{bottom:1001.310000px;}
.y32{bottom:1009.950000px;}
.y10{bottom:1012.290000px;}
.y7d{bottom:1025.070000px;}
.yf{bottom:1037.130000px;}
.y31{bottom:1048.830000px;}
.y9{bottom:1069.170000px;}
.y2{bottom:1084.680000px;}
.y1{bottom:1172.520000px;}
.h5{height:36.250664px;}
.h6{height:46.313437px;}
.h1{height:48.418594px;}
.h3{height:49.809375px;}
.h8{height:50.800781px;}
.h9{height:52.066406px;}
.hb{height:52.628906px;}
.h4{height:54.140625px;}
.ha{height:54.773438px;}
.h2{height:84.420000px;}
.h7{height:114.486328px;}
.h0{height:1188.000000px;}
.w2{width:113.580000px;}
.w4{width:156.450000px;}
.w3{width:425.415000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:8.100000px;}
.x8{left:16.740000px;}
.x9{left:41.085000px;}
.x3{left:97.734000px;}
.x2{left:108.036000px;}
.xb{left:119.195986px;}
.x6{left:121.005000px;}
.x12{left:135.035986px;}
.x13{left:162.029986px;}
.xe{left:217.289986px;}
.x4{left:221.610000px;}
.xf{left:266.069986px;}
.xd{left:291.674986px;}
.x10{left:313.994986px;}
.xc{left:348.914986px;}
.x1{left:459.074986px;}
.x7{left:647.025000px;}
.xa{left:791.789986px;}
.x11{left:793.049986px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-4.576000pt;}
.lsa{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.161067pt;}
.ls4{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.239360pt;}
.ls1{letter-spacing:0.239467pt;}
.ls9{letter-spacing:0.640000pt;}
.ls2{letter-spacing:10.240000pt;}
.ls6{letter-spacing:30.186667pt;}
.ls7{letter-spacing:56.891307pt;}
.ws6{word-spacing:-56.320000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws3{word-spacing:-42.880000pt;}
.ws0{word-spacing:-17.792000pt;}
.ws2{word-spacing:-16.368640pt;}
.ws1{word-spacing:-16.271573pt;}
.ws8{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.656960pt;}
.ws5{word-spacing:-11.920640pt;}
.wsa{word-spacing:-11.792640pt;}
.ws4{word-spacing:-11.759573pt;}
.ws9{word-spacing:0.000000pt;}
._a{margin-left:-7.296000pt;}
._2{margin-left:-5.120000pt;}
._0{margin-left:-3.968000pt;}
._3{margin-left:-3.060480pt;}
._6{margin-left:-1.927680pt;}
._1{margin-left:-1.024000pt;}
._7{width:0.967680pt;}
._13{width:1.904640pt;}
._9{width:2.816000pt;}
._b{width:4.084480pt;}
._10{width:5.184000pt;}
._c{width:6.208000pt;}
._d{width:7.104000pt;}
._4{width:8.371627pt;}
._5{width:10.101333pt;}
._8{width:11.530667pt;}
._12{width:12.781653pt;}
._16{width:17.088000pt;}
._f{width:18.432000pt;}
._e{width:19.328000pt;}
._11{width:20.770987pt;}
._17{width:21.708800pt;}
._18{width:23.222187pt;}
._1d{width:27.980800pt;}
._1e{width:29.555200pt;}
._1c{width:30.924800pt;}
._1f{width:32.367787pt;}
._14{width:34.496000pt;}
._15{width:35.768320pt;}
._1b{width:42.291200pt;}
._19{width:43.212800pt;}
._1a{width:44.244480pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:4.000000pt;}
.y3{bottom:24.320000pt;}
.y5{bottom:29.760000pt;}
.y7{bottom:32.640000pt;}
.ye{bottom:51.520000pt;}
.y4{bottom:60.000000pt;}
.y6{bottom:61.280000pt;}
.yd{bottom:67.872000pt;}
.yc{bottom:80.192000pt;}
.yb{bottom:92.512000pt;}
.ya{bottom:105.632000pt;}
.y7c{bottom:126.432000pt;}
.y30{bottom:140.346667pt;}
.y7b{bottom:147.546667pt;}
.y64{bottom:149.946667pt;}
.y4d{bottom:152.986667pt;}
.y2f{bottom:161.626667pt;}
.y7a{bottom:168.666667pt;}
.y2e{bottom:182.746667pt;}
.y63{bottom:184.346667pt;}
.y4c{bottom:187.546667pt;}
.y79{bottom:203.226667pt;}
.y2d{bottom:203.866667pt;}
.y62{bottom:218.906667pt;}
.y4b{bottom:222.106667pt;}
.y78{bottom:224.346667pt;}
.y2c{bottom:224.986667pt;}
.y4a{bottom:243.226667pt;}
.y77{bottom:245.466667pt;}
.y2b{bottom:246.266667pt;}
.y61{bottom:253.306667pt;}
.y2a{bottom:267.386667pt;}
.y49{bottom:277.786667pt;}
.y76{bottom:280.066667pt;}
.y60{bottom:287.906667pt;}
.y29{bottom:288.546667pt;}
.y48{bottom:298.946667pt;}
.y75{bottom:301.186667pt;}
.y28{bottom:309.666667pt;}
.y5f{bottom:322.306667pt;}
.y47{bottom:333.346667pt;}
.y27{bottom:341.506667pt;}
.y5e{bottom:356.866667pt;}
.y46{bottom:367.906667pt;}
.y26{bottom:373.346667pt;}
.y74{bottom:377.986667pt;}
.y45{bottom:389.026667pt;}
.y5d{bottom:391.426667pt;}
.y25{bottom:405.186667pt;}
.y44{bottom:410.146667pt;}
.y73{bottom:412.546667pt;}
.y8c{bottom:416.866667pt;}
.y5c{bottom:425.826667pt;}
.y72{bottom:433.666667pt;}
.y24{bottom:437.026667pt;}
.y43{bottom:444.706667pt;}
.y5b{bottom:460.386667pt;}
.y42{bottom:465.826667pt;}
.y71{bottom:468.226667pt;}
.y23{bottom:468.866667pt;}
.y8b{bottom:479.106667pt;}
.y5a{bottom:481.506667pt;}
.y22{bottom:489.986667pt;}
.y41{bottom:500.386667pt;}
.y70{bottom:502.626667pt;}
.y8a{bottom:513.693333pt;}
.y59{bottom:516.093333pt;}
.y40{bottom:521.533333pt;}
.y21{bottom:521.853333pt;}
.y58{bottom:537.213333pt;}
.y3f{bottom:542.653333pt;}
.y20{bottom:542.973333pt;}
.y89{bottom:548.253333pt;}
.y6f{bottom:558.333333pt;}
.y1f{bottom:564.093333pt;}
.y88{bottom:569.373333pt;}
.y57{bottom:571.773333pt;}
.y3e{bottom:577.213333pt;}
.y6e{bottom:579.613333pt;}
.y1e{bottom:585.373333pt;}
.y56{bottom:592.893333pt;}
.y6d{bottom:600.733333pt;}
.y87{bottom:603.933333pt;}
.y1d{bottom:606.493333pt;}
.y3d{bottom:611.773333pt;}
.y6c{bottom:621.853333pt;}
.y86{bottom:625.053333pt;}
.y55{bottom:627.293333pt;}
.y1c{bottom:627.613333pt;}
.y3c{bottom:632.893333pt;}
.y1b{bottom:648.733333pt;}
.y6b{bottom:656.253333pt;}
.y85{bottom:659.613333pt;}
.y54{bottom:661.853333pt;}
.y3b{bottom:667.293333pt;}
.y1a{bottom:670.013333pt;}
.y84{bottom:680.573333pt;}
.y6a{bottom:690.813333pt;}
.y19{bottom:691.133333pt;}
.y53{bottom:696.413333pt;}
.y3a{bottom:701.853333pt;}
.y18{bottom:712.253333pt;}
.y83{bottom:715.133333pt;}
.y52{bottom:717.373333pt;}
.y39{bottom:722.973333pt;}
.y69{bottom:725.213333pt;}
.y82{bottom:736.453333pt;}
.y17{bottom:744.133333pt;}
.y51{bottom:751.973333pt;}
.y81{bottom:757.413333pt;}
.y38{bottom:757.573333pt;}
.y68{bottom:759.813333pt;}
.y16{bottom:775.973333pt;}
.y37{bottom:778.693333pt;}
.y50{bottom:786.533333pt;}
.y80{bottom:791.973333pt;}
.y67{bottom:794.373333pt;}
.y36{bottom:799.813333pt;}
.y15{bottom:807.813333pt;}
.y7f{bottom:813.253333pt;}
.y4f{bottom:821.093333pt;}
.y14{bottom:826.213333pt;}
.y66{bottom:828.773333pt;}
.y35{bottom:834.373333pt;}
.y4e{bottom:842.053333pt;}
.y13{bottom:844.613333pt;}
.y34{bottom:855.493333pt;}
.y12{bottom:863.013333pt;}
.y65{bottom:863.333333pt;}
.y33{bottom:876.613333pt;}
.y11{bottom:881.413333pt;}
.y7e{bottom:890.053333pt;}
.y32{bottom:897.733333pt;}
.y10{bottom:899.813333pt;}
.y7d{bottom:911.173333pt;}
.yf{bottom:921.893333pt;}
.y31{bottom:932.293333pt;}
.y9{bottom:950.373333pt;}
.y2{bottom:964.160000pt;}
.y1{bottom:1042.240000pt;}
.h5{height:32.222812pt;}
.h6{height:41.167500pt;}
.h1{height:43.038750pt;}
.h3{height:44.275000pt;}
.h8{height:45.156250pt;}
.h9{height:46.281250pt;}
.hb{height:46.781250pt;}
.h4{height:48.125000pt;}
.ha{height:48.687500pt;}
.h2{height:75.040000pt;}
.h7{height:101.765625pt;}
.h0{height:1056.000000pt;}
.w2{width:100.960000pt;}
.w4{width:139.066667pt;}
.w3{width:378.146667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:7.200000pt;}
.x8{left:14.880000pt;}
.x9{left:36.520000pt;}
.x3{left:86.874667pt;}
.x2{left:96.032000pt;}
.xb{left:105.951988pt;}
.x6{left:107.560000pt;}
.x12{left:120.031988pt;}
.x13{left:144.026655pt;}
.xe{left:193.146655pt;}
.x4{left:196.986667pt;}
.xf{left:236.506655pt;}
.xd{left:259.266655pt;}
.x10{left:279.106655pt;}
.xc{left:310.146655pt;}
.x1{left:408.066655pt;}
.x7{left:575.133333pt;}
.xa{left:703.813321pt;}
.x11{left:704.933321pt;}
}




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