
    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_906be943497861d4a627aa50.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937500;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_f204f3b4f713b5eb0eb9ba79.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c6c844e4cc93ffdf8716865a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_e0bb8b86b94b9ad3b56d3497.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.214844;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_3564efa35c07dc1c4ada2a76.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_17e0aad3e14cf0d471de7109.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_efb37cba24fb3678ce40bf2f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_461d96195565333b5b86d82e.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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-80.640000px;}
.v0{vertical-align:0.000000px;}
.lsb{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.230400px;}
.ls3{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.149760px;}
.lsd{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.lsa{letter-spacing:7.200000px;}
.lsf{letter-spacing:28.224000px;}
.lse{letter-spacing:31.824000px;}
.ls9{letter-spacing:33.984000px;}
.ls7{letter-spacing:64.224000px;}
.ls11{letter-spacing:65.664000px;}
.ls5{letter-spacing:1230.960000px;}
.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;}
}
.ws6{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.712000px;}
.ws5{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:0.000000px;}
._a{margin-left:-3.780000px;}
._9{margin-left:-2.520000px;}
._2{margin-left:-1.026000px;}
._3{width:1.056000px;}
._5{width:2.112000px;}
._6{width:3.312000px;}
._7{width:4.320000px;}
._8{width:5.448000px;}
._b{width:6.648000px;}
._e{width:7.920000px;}
._c{width:9.264000px;}
._11{width:10.536000px;}
._13{width:11.568000px;}
._d{width:12.600000px;}
._1{width:94.356000px;}
._10{width:194.376000px;}
._4{width:354.638160px;}
._0{width:731.712000px;}
._16{width:774.180000px;}
._12{width:846.156000px;}
._19{width:864.180000px;}
._15{width:1242.300000px;}
._18{width:1566.996000px;}
._1a{width:1728.480000px;}
._1b{width:1763.016000px;}
._17{width:1783.200000px;}
._14{width:2009.256000px;}
._f{width:2567.256000px;}
.fc4{color:rgb(192,0,0);}
.fc3{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs7{font-size:38.880000px;}
.fs6{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5c{bottom:2.700000px;}
.y8{bottom:15.840000px;}
.y6{bottom:80.100000px;}
.y5{bottom:112.860000px;}
.y7{bottom:113.580000px;}
.y4{bottom:145.620000px;}
.y5a{bottom:165.780000px;}
.ye3{bottom:175.890000px;}
.yd4{bottom:176.430000px;}
.y2b{bottom:182.010000px;}
.y59{bottom:183.090000px;}
.yc4{bottom:198.210000px;}
.ye2{bottom:199.650000px;}
.y58{bottom:200.370000px;}
.yb1{bottom:201.450000px;}
.y108{bottom:208.290000px;}
.yd3{bottom:209.370000px;}
.y2a{bottom:214.770000px;}
.y57{bottom:217.650000px;}
.yc3{bottom:222.150000px;}
.y56{bottom:222.870000px;}
.y8d{bottom:223.950000px;}
.yb0{bottom:225.390000px;}
.ye1{bottom:228.270000px;}
.y7c{bottom:230.250000px;}
.y107{bottom:232.050000px;}
.y55{bottom:234.930000px;}
.yd2{bottom:237.810000px;}
.y29{bottom:238.530000px;}
.yc2{bottom:245.910000px;}
.yaf{bottom:249.150000px;}
.y7b{bottom:251.130000px;}
.y54{bottom:252.030000px;}
.y106{bottom:255.990000px;}
.y8c{bottom:256.710000px;}
.y53{bottom:269.310000px;}
.y28{bottom:271.470000px;}
.yae{bottom:272.910000px;}
.y105{bottom:279.750000px;}
.y8b{bottom:280.470000px;}
.yc1{bottom:284.610000px;}
.y52{bottom:286.590000px;}
.y104{bottom:303.510000px;}
.y51{bottom:303.870000px;}
.y27{bottom:304.230000px;}
.yad{bottom:305.670000px;}
.yc0{bottom:313.230000px;}
.y50{bottom:321.150000px;}
.y103{bottom:327.270000px;}
.y26{bottom:327.990000px;}
.yac{bottom:329.610000px;}
.y4f{bottom:338.430000px;}
.y102{bottom:351.210000px;}
.y25{bottom:351.750000px;}
.yab{bottom:353.370000px;}
.y4e{bottom:355.530000px;}
.y4d{bottom:360.750000px;}
.y4c{bottom:372.810000px;}
.y24{bottom:375.690000px;}
.y4b{bottom:378.030000px;}
.yaa{bottom:386.130000px;}
.y101{bottom:389.910000px;}
.y23{bottom:399.450000px;}
.y7a{bottom:399.630000px;}
.y4a{bottom:402.690000px;}
.ya9{bottom:409.890000px;}
.yf2{bottom:412.230000px;}
.y100{bottom:413.715000px;}
.y79{bottom:420.375000px;}
.y22{bottom:423.255000px;}
.y49{bottom:423.615000px;}
.yd1{bottom:427.575000px;}
.ya8{bottom:433.875000px;}
.yf1{bottom:436.035000px;}
.y78{bottom:441.075000px;}
.y8a{bottom:444.135000px;}
.y21{bottom:447.015000px;}
.yd0{bottom:451.335000px;}
.yff{bottom:452.955000px;}
.ya7{bottom:457.635000px;}
.yf0{bottom:459.795000px;}
.y77{bottom:461.775000px;}
.y20{bottom:470.955000px;}
.y47{bottom:473.295000px;}
.ycf{bottom:475.275000px;}
.y89{bottom:476.715000px;}
.y48{bottom:480.135000px;}
.ya6{bottom:481.395000px;}
.y76{bottom:482.475000px;}
.yfe{bottom:492.015000px;}
.y46{bottom:497.235000px;}
.yef{bottom:498.675000px;}
.y88{bottom:500.655000px;}
.y75{bottom:503.175000px;}
.y1f{bottom:503.355000px;}
.ya5{bottom:505.155000px;}
.ye0{bottom:507.855000px;}
.yce{bottom:513.975000px;}
.y45{bottom:520.995000px;}
.yee{bottom:522.435000px;}
.y74{bottom:523.875000px;}
.y87{bottom:524.415000px;}
.yfd{bottom:531.255000px;}
.ydf{bottom:531.615000px;}
.y1e{bottom:536.475000px;}
.ya4{bottom:537.915000px;}
.y73{bottom:544.575000px;}
.y44{bottom:544.755000px;}
.yed{bottom:546.195000px;}
.ycd{bottom:546.735000px;}
.y86{bottom:548.175000px;}
.yde{bottom:555.555000px;}
.ya3{bottom:561.855000px;}
.y72{bottom:565.275000px;}
.y43{bottom:568.515000px;}
.y1d{bottom:569.235000px;}
.yec{bottom:569.955000px;}
.yfc{bottom:570.315000px;}
.ycc{bottom:570.675000px;}
.y85{bottom:571.935000px;}
.ydd{bottom:579.315000px;}
.ya2{bottom:585.615000px;}
.y71{bottom:585.975000px;}
.y42{bottom:592.275000px;}
.y1c{bottom:593.175000px;}
.ycb{bottom:594.435000px;}
.y84{bottom:595.875000px;}
.yeb{bottom:602.895000px;}
.ydc{bottom:603.075000px;}
.ya1{bottom:609.375000px;}
.y1b{bottom:612.795000px;}
.y41{bottom:616.215000px;}
.yca{bottom:618.195000px;}
.y70{bottom:618.555000px;}
.y83{bottom:619.635000px;}
.yea{bottom:626.655000px;}
.ydb{bottom:626.835000px;}
.ya0{bottom:633.135000px;}
.y40{bottom:639.975000px;}
.yc9{bottom:641.955000px;}
.y6f{bottom:642.315000px;}
.y1a{bottom:643.215000px;}
.y82{bottom:643.395000px;}
.yfb{bottom:648.615000px;}
.ye9{bottom:650.415000px;}
.yda{bottom:650.775000px;}
.y9f{bottom:657.075000px;}
.y3f{bottom:663.765000px;}
.yc8{bottom:665.925000px;}
.y6e{bottom:666.105000px;}
.y19{bottom:667.005000px;}
.y81{bottom:667.185000px;}
.yfa{bottom:672.405000px;}
.ye8{bottom:674.205000px;}
.yd9{bottom:674.565000px;}
.y9e{bottom:680.865000px;}
.y3e{bottom:687.525000px;}
.yc7{bottom:689.685000px;}
.y6d{bottom:689.865000px;}
.y18{bottom:690.765000px;}
.y80{bottom:691.125000px;}
.yd8{bottom:695.445000px;}
.ye7{bottom:698.145000px;}
.y9d{bottom:704.625000px;}
.yf9{bottom:705.525000px;}
.ybf{bottom:707.685000px;}
.y3d{bottom:711.465000px;}
.y7f{bottom:712.005000px;}
.y17{bottom:714.525000px;}
.yd7{bottom:716.145000px;}
.ye6{bottom:721.905000px;}
.y6c{bottom:722.805000px;}
.yc6{bottom:728.385000px;}
.yf8{bottom:729.465000px;}
.ybe{bottom:731.445000px;}
.y7e{bottom:732.705000px;}
.y3c{bottom:735.225000px;}
.yd6{bottom:736.845000px;}
.y9c{bottom:737.385000px;}
.y16{bottom:738.465000px;}
.ye5{bottom:745.665000px;}
.y6b{bottom:746.565000px;}
.y7d{bottom:748.905000px;}
.yf7{bottom:753.225000px;}
.ybd{bottom:755.205000px;}
.yd5{bottom:757.545000px;}
.y9b{bottom:761.325000px;}
.y15{bottom:762.225000px;}
.y3a{bottom:767.985000px;}
.y6a{bottom:770.325000px;}
.ye4{bottom:774.105000px;}
.y3b{bottom:774.825000px;}
.ybc{bottom:779.145000px;}
.y9a{bottom:785.085000px;}
.y14{bottom:785.985000px;}
.y39{bottom:791.745000px;}
.yf6{bottom:791.925000px;}
.y69{bottom:794.085000px;}
.y99{bottom:808.845000px;}
.y13{bottom:809.745000px;}
.y38{bottom:815.685000px;}
.yf5{bottom:815.865000px;}
.ybb{bottom:817.845000px;}
.y5b{bottom:820.005000px;}
.y68{bottom:827.025000px;}
.y98{bottom:832.605000px;}
.y12{bottom:833.685000px;}
.y37{bottom:839.445000px;}
.yf4{bottom:839.625000px;}
.y67{bottom:850.785000px;}
.y97{bottom:856.545000px;}
.yba{bottom:856.725000px;}
.y36{bottom:863.205000px;}
.y11{bottom:866.445000px;}
.yf3{bottom:868.065000px;}
.y66{bottom:874.545000px;}
.y96{bottom:880.305000px;}
.yb9{bottom:880.485000px;}
.y10{bottom:886.605000px;}
.y35{bottom:886.965000px;}
.y65{bottom:898.305000px;}
.y95{bottom:904.110000px;}
.yb8{bottom:904.290000px;}
.yf{bottom:905.910000px;}
.y33{bottom:910.950000px;}
.y34{bottom:917.790000px;}
.y64{bottom:922.290000px;}
.y94{bottom:927.870000px;}
.ye{bottom:928.050000px;}
.y32{bottom:934.710000px;}
.y63{bottom:946.050000px;}
.y93{bottom:951.810000px;}
.yb7{bottom:951.990000px;}
.y31{bottom:958.470000px;}
.yd{bottom:966.210000px;}
.y62{bottom:969.810000px;}
.y92{bottom:975.570000px;}
.yb6{bottom:975.750000px;}
.y30{bottom:982.230000px;}
.yc{bottom:995.370000px;}
.y91{bottom:999.330000px;}
.yb5{bottom:999.510000px;}
.y61{bottom:1002.570000px;}
.y2f{bottom:1006.170000px;}
.yc5{bottom:1014.270000px;}
.yb{bottom:1017.870000px;}
.y90{bottom:1023.090000px;}
.yb4{bottom:1023.270000px;}
.y60{bottom:1026.510000px;}
.y2e{bottom:1029.930000px;}
.yb3{bottom:1047.210000px;}
.y5f{bottom:1050.270000px;}
.y2d{bottom:1053.690000px;}
.y8f{bottom:1061.970000px;}
.ya{bottom:1067.550000px;}
.yb2{bottom:1070.970000px;}
.y5e{bottom:1074.030000px;}
.y9{bottom:1091.670000px;}
.y8e{bottom:1094.730000px;}
.y5d{bottom:1094.910000px;}
.y2c{bottom:1097.610000px;}
.y3{bottom:1127.490000px;}
.y2{bottom:1148.580000px;}
.y1{bottom:1199.520000px;}
.h4{height:32.760000px;}
.hf{height:38.158594px;}
.he{height:47.344922px;}
.h2{height:50.294531px;}
.h12{height:53.573906px;}
.ha{height:58.651172px;}
.hc{height:60.226875px;}
.h9{height:60.577031px;}
.hd{height:64.546875px;}
.h13{height:70.628906px;}
.h3{height:70.664062px;}
.hb{height:72.562500px;}
.h8{height:72.984375px;}
.h11{height:74.004654px;}
.h6{height:81.101250px;}
.h7{height:82.676953px;}
.h5{height:87.859687px;}
.h10{height:259.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:38.916000px;}
.w5{width:364.530000px;}
.w4{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:114.156000px;}
.x1{left:127.655987px;}
.x15{left:132.515987px;}
.x4{left:134.675987px;}
.x18{left:154.649987px;}
.x6{left:159.869987px;}
.xc{left:180.749987px;}
.x1a{left:208.649987px;}
.x2{left:297.254987px;}
.x12{left:309.134973px;}
.x13{left:315.254987px;}
.x14{left:343.694987px;}
.x17{left:350.679000px;}
.x19{left:366.194987px;}
.x8{left:465.014987px;}
.x3{left:466.815000px;}
.xd{left:492.224987px;}
.x9{left:544.244987px;}
.x5{left:573.584987px;}
.xa{left:642.524987px;}
.x7{left:643.964987px;}
.xe{left:665.744973px;}
.xf{left:671.864987px;}
.x10{left:766.409973px;}
.x11{left:772.529987px;}
.xb{left:861.269987px;}
@media print{
.v1{vertical-align:-71.680000pt;}
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.204800pt;}
.ls3{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.133120pt;}
.lsd{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.lsa{letter-spacing:6.400000pt;}
.lsf{letter-spacing:25.088000pt;}
.lse{letter-spacing:28.288000pt;}
.ls9{letter-spacing:30.208000pt;}
.ls7{letter-spacing:57.088000pt;}
.ls11{letter-spacing:58.368000pt;}
.ls5{letter-spacing:1094.186667pt;}
.ws6{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws5{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:0.000000pt;}
._a{margin-left:-3.360000pt;}
._9{margin-left:-2.240000pt;}
._2{margin-left:-0.912000pt;}
._3{width:0.938667pt;}
._5{width:1.877333pt;}
._6{width:2.944000pt;}
._7{width:3.840000pt;}
._8{width:4.842667pt;}
._b{width:5.909333pt;}
._e{width:7.040000pt;}
._c{width:8.234667pt;}
._11{width:9.365333pt;}
._13{width:10.282667pt;}
._d{width:11.200000pt;}
._1{width:83.872000pt;}
._10{width:172.778667pt;}
._4{width:315.233920pt;}
._0{width:650.410667pt;}
._16{width:688.160000pt;}
._12{width:752.138667pt;}
._19{width:768.160000pt;}
._15{width:1104.266667pt;}
._18{width:1392.885333pt;}
._1a{width:1536.426667pt;}
._1b{width:1567.125333pt;}
._17{width:1585.066667pt;}
._14{width:1786.005333pt;}
._f{width:2282.005333pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5c{bottom:2.400000pt;}
.y8{bottom:14.080000pt;}
.y6{bottom:71.200000pt;}
.y5{bottom:100.320000pt;}
.y7{bottom:100.960000pt;}
.y4{bottom:129.440000pt;}
.y5a{bottom:147.360000pt;}
.ye3{bottom:156.346667pt;}
.yd4{bottom:156.826667pt;}
.y2b{bottom:161.786667pt;}
.y59{bottom:162.746667pt;}
.yc4{bottom:176.186667pt;}
.ye2{bottom:177.466667pt;}
.y58{bottom:178.106667pt;}
.yb1{bottom:179.066667pt;}
.y108{bottom:185.146667pt;}
.yd3{bottom:186.106667pt;}
.y2a{bottom:190.906667pt;}
.y57{bottom:193.466667pt;}
.yc3{bottom:197.466667pt;}
.y56{bottom:198.106667pt;}
.y8d{bottom:199.066667pt;}
.yb0{bottom:200.346667pt;}
.ye1{bottom:202.906667pt;}
.y7c{bottom:204.666667pt;}
.y107{bottom:206.266667pt;}
.y55{bottom:208.826667pt;}
.yd2{bottom:211.386667pt;}
.y29{bottom:212.026667pt;}
.yc2{bottom:218.586667pt;}
.yaf{bottom:221.466667pt;}
.y7b{bottom:223.226667pt;}
.y54{bottom:224.026667pt;}
.y106{bottom:227.546667pt;}
.y8c{bottom:228.186667pt;}
.y53{bottom:239.386667pt;}
.y28{bottom:241.306667pt;}
.yae{bottom:242.586667pt;}
.y105{bottom:248.666667pt;}
.y8b{bottom:249.306667pt;}
.yc1{bottom:252.986667pt;}
.y52{bottom:254.746667pt;}
.y104{bottom:269.786667pt;}
.y51{bottom:270.106667pt;}
.y27{bottom:270.426667pt;}
.yad{bottom:271.706667pt;}
.yc0{bottom:278.426667pt;}
.y50{bottom:285.466667pt;}
.y103{bottom:290.906667pt;}
.y26{bottom:291.546667pt;}
.yac{bottom:292.986667pt;}
.y4f{bottom:300.826667pt;}
.y102{bottom:312.186667pt;}
.y25{bottom:312.666667pt;}
.yab{bottom:314.106667pt;}
.y4e{bottom:316.026667pt;}
.y4d{bottom:320.666667pt;}
.y4c{bottom:331.386667pt;}
.y24{bottom:333.946667pt;}
.y4b{bottom:336.026667pt;}
.yaa{bottom:343.226667pt;}
.y101{bottom:346.586667pt;}
.y23{bottom:355.066667pt;}
.y7a{bottom:355.226667pt;}
.y4a{bottom:357.946667pt;}
.ya9{bottom:364.346667pt;}
.yf2{bottom:366.426667pt;}
.y100{bottom:367.746667pt;}
.y79{bottom:373.666667pt;}
.y22{bottom:376.226667pt;}
.y49{bottom:376.546667pt;}
.yd1{bottom:380.066667pt;}
.ya8{bottom:385.666667pt;}
.yf1{bottom:387.586667pt;}
.y78{bottom:392.066667pt;}
.y8a{bottom:394.786667pt;}
.y21{bottom:397.346667pt;}
.yd0{bottom:401.186667pt;}
.yff{bottom:402.626667pt;}
.ya7{bottom:406.786667pt;}
.yf0{bottom:408.706667pt;}
.y77{bottom:410.466667pt;}
.y20{bottom:418.626667pt;}
.y47{bottom:420.706667pt;}
.ycf{bottom:422.466667pt;}
.y89{bottom:423.746667pt;}
.y48{bottom:426.786667pt;}
.ya6{bottom:427.906667pt;}
.y76{bottom:428.866667pt;}
.yfe{bottom:437.346667pt;}
.y46{bottom:441.986667pt;}
.yef{bottom:443.266667pt;}
.y88{bottom:445.026667pt;}
.y75{bottom:447.266667pt;}
.y1f{bottom:447.426667pt;}
.ya5{bottom:449.026667pt;}
.ye0{bottom:451.426667pt;}
.yce{bottom:456.866667pt;}
.y45{bottom:463.106667pt;}
.yee{bottom:464.386667pt;}
.y74{bottom:465.666667pt;}
.y87{bottom:466.146667pt;}
.yfd{bottom:472.226667pt;}
.ydf{bottom:472.546667pt;}
.y1e{bottom:476.866667pt;}
.ya4{bottom:478.146667pt;}
.y73{bottom:484.066667pt;}
.y44{bottom:484.226667pt;}
.yed{bottom:485.506667pt;}
.ycd{bottom:485.986667pt;}
.y86{bottom:487.266667pt;}
.yde{bottom:493.826667pt;}
.ya3{bottom:499.426667pt;}
.y72{bottom:502.466667pt;}
.y43{bottom:505.346667pt;}
.y1d{bottom:505.986667pt;}
.yec{bottom:506.626667pt;}
.yfc{bottom:506.946667pt;}
.ycc{bottom:507.266667pt;}
.y85{bottom:508.386667pt;}
.ydd{bottom:514.946667pt;}
.ya2{bottom:520.546667pt;}
.y71{bottom:520.866667pt;}
.y42{bottom:526.466667pt;}
.y1c{bottom:527.266667pt;}
.ycb{bottom:528.386667pt;}
.y84{bottom:529.666667pt;}
.yeb{bottom:535.906667pt;}
.ydc{bottom:536.066667pt;}
.ya1{bottom:541.666667pt;}
.y1b{bottom:544.706667pt;}
.y41{bottom:547.746667pt;}
.yca{bottom:549.506667pt;}
.y70{bottom:549.826667pt;}
.y83{bottom:550.786667pt;}
.yea{bottom:557.026667pt;}
.ydb{bottom:557.186667pt;}
.ya0{bottom:562.786667pt;}
.y40{bottom:568.866667pt;}
.yc9{bottom:570.626667pt;}
.y6f{bottom:570.946667pt;}
.y1a{bottom:571.746667pt;}
.y82{bottom:571.906667pt;}
.yfb{bottom:576.546667pt;}
.ye9{bottom:578.146667pt;}
.yda{bottom:578.466667pt;}
.y9f{bottom:584.066667pt;}
.y3f{bottom:590.013333pt;}
.yc8{bottom:591.933333pt;}
.y6e{bottom:592.093333pt;}
.y19{bottom:592.893333pt;}
.y81{bottom:593.053333pt;}
.yfa{bottom:597.693333pt;}
.ye8{bottom:599.293333pt;}
.yd9{bottom:599.613333pt;}
.y9e{bottom:605.213333pt;}
.y3e{bottom:611.133333pt;}
.yc7{bottom:613.053333pt;}
.y6d{bottom:613.213333pt;}
.y18{bottom:614.013333pt;}
.y80{bottom:614.333333pt;}
.yd8{bottom:618.173333pt;}
.ye7{bottom:620.573333pt;}
.y9d{bottom:626.333333pt;}
.yf9{bottom:627.133333pt;}
.ybf{bottom:629.053333pt;}
.y3d{bottom:632.413333pt;}
.y7f{bottom:632.893333pt;}
.y17{bottom:635.133333pt;}
.yd7{bottom:636.573333pt;}
.ye6{bottom:641.693333pt;}
.y6c{bottom:642.493333pt;}
.yc6{bottom:647.453333pt;}
.yf8{bottom:648.413333pt;}
.ybe{bottom:650.173333pt;}
.y7e{bottom:651.293333pt;}
.y3c{bottom:653.533333pt;}
.yd6{bottom:654.973333pt;}
.y9c{bottom:655.453333pt;}
.y16{bottom:656.413333pt;}
.ye5{bottom:662.813333pt;}
.y6b{bottom:663.613333pt;}
.y7d{bottom:665.693333pt;}
.yf7{bottom:669.533333pt;}
.ybd{bottom:671.293333pt;}
.yd5{bottom:673.373333pt;}
.y9b{bottom:676.733333pt;}
.y15{bottom:677.533333pt;}
.y3a{bottom:682.653333pt;}
.y6a{bottom:684.733333pt;}
.ye4{bottom:688.093333pt;}
.y3b{bottom:688.733333pt;}
.ybc{bottom:692.573333pt;}
.y9a{bottom:697.853333pt;}
.y14{bottom:698.653333pt;}
.y39{bottom:703.773333pt;}
.yf6{bottom:703.933333pt;}
.y69{bottom:705.853333pt;}
.y99{bottom:718.973333pt;}
.y13{bottom:719.773333pt;}
.y38{bottom:725.053333pt;}
.yf5{bottom:725.213333pt;}
.ybb{bottom:726.973333pt;}
.y5b{bottom:728.893333pt;}
.y68{bottom:735.133333pt;}
.y98{bottom:740.093333pt;}
.y12{bottom:741.053333pt;}
.y37{bottom:746.173333pt;}
.yf4{bottom:746.333333pt;}
.y67{bottom:756.253333pt;}
.y97{bottom:761.373333pt;}
.yba{bottom:761.533333pt;}
.y36{bottom:767.293333pt;}
.y11{bottom:770.173333pt;}
.yf3{bottom:771.613333pt;}
.y66{bottom:777.373333pt;}
.y96{bottom:782.493333pt;}
.yb9{bottom:782.653333pt;}
.y10{bottom:788.093333pt;}
.y35{bottom:788.413333pt;}
.y65{bottom:798.493333pt;}
.y95{bottom:803.653333pt;}
.yb8{bottom:803.813333pt;}
.yf{bottom:805.253333pt;}
.y33{bottom:809.733333pt;}
.y34{bottom:815.813333pt;}
.y64{bottom:819.813333pt;}
.y94{bottom:824.773333pt;}
.ye{bottom:824.933333pt;}
.y32{bottom:830.853333pt;}
.y63{bottom:840.933333pt;}
.y93{bottom:846.053333pt;}
.yb7{bottom:846.213333pt;}
.y31{bottom:851.973333pt;}
.yd{bottom:858.853333pt;}
.y62{bottom:862.053333pt;}
.y92{bottom:867.173333pt;}
.yb6{bottom:867.333333pt;}
.y30{bottom:873.093333pt;}
.yc{bottom:884.773333pt;}
.y91{bottom:888.293333pt;}
.yb5{bottom:888.453333pt;}
.y61{bottom:891.173333pt;}
.y2f{bottom:894.373333pt;}
.yc5{bottom:901.573333pt;}
.yb{bottom:904.773333pt;}
.y90{bottom:909.413333pt;}
.yb4{bottom:909.573333pt;}
.y60{bottom:912.453333pt;}
.y2e{bottom:915.493333pt;}
.yb3{bottom:930.853333pt;}
.y5f{bottom:933.573333pt;}
.y2d{bottom:936.613333pt;}
.y8f{bottom:943.973333pt;}
.ya{bottom:948.933333pt;}
.yb2{bottom:951.973333pt;}
.y5e{bottom:954.693333pt;}
.y9{bottom:970.373333pt;}
.y8e{bottom:973.093333pt;}
.y5d{bottom:973.253333pt;}
.y2c{bottom:975.653333pt;}
.y3{bottom:1002.213333pt;}
.y2{bottom:1020.960000pt;}
.y1{bottom:1066.240000pt;}
.h4{height:29.120000pt;}
.hf{height:33.918750pt;}
.he{height:42.084375pt;}
.h2{height:44.706250pt;}
.h12{height:47.621250pt;}
.ha{height:52.134375pt;}
.hc{height:53.535000pt;}
.h9{height:53.846250pt;}
.hd{height:57.375000pt;}
.h13{height:62.781250pt;}
.h3{height:62.812500pt;}
.hb{height:64.500000pt;}
.h8{height:64.875000pt;}
.h11{height:65.781915pt;}
.h6{height:72.090000pt;}
.h7{height:73.490625pt;}
.h5{height:78.097500pt;}
.h10{height:230.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:34.592000pt;}
.w5{width:324.026667pt;}
.w4{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:101.472000pt;}
.x1{left:113.471988pt;}
.x15{left:117.791988pt;}
.x4{left:119.711988pt;}
.x18{left:137.466655pt;}
.x6{left:142.106655pt;}
.xc{left:160.666655pt;}
.x1a{left:185.466655pt;}
.x2{left:264.226655pt;}
.x12{left:274.786643pt;}
.x13{left:280.226655pt;}
.x14{left:305.506655pt;}
.x17{left:311.714667pt;}
.x19{left:325.506655pt;}
.x8{left:413.346655pt;}
.x3{left:414.946667pt;}
.xd{left:437.533322pt;}
.x9{left:483.773322pt;}
.x5{left:509.853322pt;}
.xa{left:571.133322pt;}
.x7{left:572.413322pt;}
.xe{left:591.773310pt;}
.xf{left:597.213322pt;}
.x10{left:681.253310pt;}
.x11{left:686.693322pt;}
.xb{left:765.573322pt;}
}




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