
    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_2fc50a56df095aa932bb8c73.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d80bbc3309e1d4a44e22e00a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_408aacf81912fdafe4b3a546.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4f43ef7eefb8bba0f5d8300f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_13cb41d5b9fbdd5f73cd9351.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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_5074ee1d3cd5d914578f2c73.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.081055;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_fc34b8df07f6efccabe142dc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.957031;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:48.420000px;}
.v1{vertical-align:54.720000px;}
.ls10{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.216000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.288000px;}
.lse{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.792000px;}
.lsf{letter-spacing:0.840000px;}
.ls7{letter-spacing:1.061280px;}
.ls0{letter-spacing:6.480000px;}
.ls1{letter-spacing:8.640000px;}
.lsb{letter-spacing:16.272000px;}
.ls9{letter-spacing:54.840000px;}
.ls4{letter-spacing:64.421280px;}
.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;}
}
.ws0{word-spacing:-72.000000px;}
.ws3{word-spacing:-21.060000px;}
.ws4{word-spacing:-18.792000px;}
.ws1{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.784000px;}
.ws7{word-spacing:-16.128000px;}
.ws8{word-spacing:-15.552000px;}
.ws2{word-spacing:0.000000px;}
.ws6{word-spacing:6.912000px;}
._16{margin-left:-5.272560px;}
._a{margin-left:-4.176000px;}
._8{margin-left:-3.168000px;}
._0{margin-left:-1.324800px;}
._2{width:1.053360px;}
._4{width:2.778000px;}
._d{width:3.990000px;}
._6{width:5.444400px;}
._5{width:6.511680px;}
._10{width:8.292240px;}
._b{width:9.504000px;}
._14{width:10.574400px;}
._9{width:11.764800px;}
._13{width:13.449600px;}
._11{width:14.544000px;}
._c{width:16.464000px;}
._18{width:18.235440px;}
._12{width:19.349280px;}
._15{width:22.680000px;}
._19{width:24.984000px;}
._e{width:26.064000px;}
._f{width:27.300000px;}
._7{width:30.168000px;}
._17{width:35.676000px;}
._1a{width:39.576000px;}
._3{width:46.539360px;}
._1{width:47.688480px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,0,10);}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y8c{bottom:-21.240000px;}
.y0{bottom:0.000000px;}
.yac{bottom:6.660000px;}
.yb4{bottom:6.840000px;}
.y8b{bottom:9.945000px;}
.yae{bottom:12.960000px;}
.ybe{bottom:13.005000px;}
.yb7{bottom:13.170000px;}
.yc8{bottom:28.440000px;}
.yab{bottom:28.620000px;}
.yaa{bottom:50.400000px;}
.ya9{bottom:72.180000px;}
.y5{bottom:82.116000px;}
.ya8{bottom:93.960000px;}
.ybc{bottom:94.140000px;}
.y4{bottom:108.396000px;}
.yc7{bottom:115.740000px;}
.ya7{bottom:115.920000px;}
.y3{bottom:127.476000px;}
.y2{bottom:146.736000px;}
.yc4{bottom:169.950000px;}
.yf1{bottom:172.830000px;}
.y89{bottom:174.090000px;}
.yce{bottom:175.890000px;}
.y30{bottom:178.950000px;}
.ya5{bottom:185.430000px;}
.y115{bottom:186.690000px;}
.yc3{bottom:196.590000px;}
.y69{bottom:199.470000px;}
.y2f{bottom:199.650000px;}
.y88{bottom:205.230000px;}
.y114{bottom:207.390000px;}
.yf0{bottom:209.910000px;}
.ycd{bottom:212.970000px;}
.ya4{bottom:216.570000px;}
.y4e{bottom:217.470000px;}
.y2e{bottom:220.350000px;}
.ydb{bottom:220.890000px;}
.yc2{bottom:223.230000px;}
.y68{bottom:230.610000px;}
.y87{bottom:236.190000px;}
.y113{bottom:238.530000px;}
.yef{bottom:240.870000px;}
.y2d{bottom:241.050000px;}
.ya3{bottom:247.530000px;}
.y4d{bottom:248.610000px;}
.ycc{bottom:250.050000px;}
.y112{bottom:259.230000px;}
.yc1{bottom:260.310000px;}
.y67{bottom:261.570000px;}
.y2c{bottom:261.750000px;}
.y86{bottom:267.330000px;}
.ycb{bottom:267.510000px;}
.yee{bottom:272.010000px;}
.ya2{bottom:274.710000px;}
.yc0{bottom:277.770000px;}
.y4c{bottom:279.570000px;}
.y111{bottom:279.930000px;}
.y2b{bottom:282.450000px;}
.yca{bottom:296.670000px;}
.y85{bottom:298.290000px;}
.y66{bottom:298.650000px;}
.yed{bottom:302.970000px;}
.y2a{bottom:303.150000px;}
.ybf{bottom:307.110000px;}
.ya1{bottom:307.470000px;}
.y4b{bottom:310.710000px;}
.y110{bottom:310.890000px;}
.y29{bottom:323.850000px;}
.yc9{bottom:325.830000px;}
.y84{bottom:329.430000px;}
.y65{bottom:329.790000px;}
.y10f{bottom:331.590000px;}
.yec{bottom:334.110000px;}
.ya0{bottom:334.830000px;}
.y8a{bottom:335.010000px;}
.ybd{bottom:336.270000px;}
.y28{bottom:344.595000px;}
.y9f{bottom:346.935000px;}
.y4a{bottom:347.835000px;}
.y10e{bottom:352.335000px;}
.yc6{bottom:355.215000px;}
.y83{bottom:360.435000px;}
.y64{bottom:360.795000px;}
.yeb{bottom:361.335000px;}
.y27{bottom:365.295000px;}
.ybb{bottom:365.475000px;}
.y49{bottom:378.795000px;}
.y10d{bottom:383.475000px;}
.y26{bottom:385.995000px;}
.y82{bottom:387.255000px;}
.y9e{bottom:390.135000px;}
.y63{bottom:391.755000px;}
.yea{bottom:393.915000px;}
.y10c{bottom:404.175000px;}
.y25{bottom:406.695000px;}
.y48{bottom:409.755000px;}
.y81{bottom:413.895000px;}
.y10b{bottom:424.875000px;}
.y9d{bottom:427.035000px;}
.y24{bottom:427.395000px;}
.y62{bottom:428.835000px;}
.ye9{bottom:430.995000px;}
.y80{bottom:440.535000px;}
.y47{bottom:440.895000px;}
.y10a{bottom:445.575000px;}
.y23{bottom:448.095000px;}
.y9c{bottom:458.175000px;}
.y61{bottom:459.975000px;}
.ye8{bottom:461.955000px;}
.y7f{bottom:467.355000px;}
.y22{bottom:468.795000px;}
.y46{bottom:471.855000px;}
.y109{bottom:476.535000px;}
.y9b{bottom:489.135000px;}
.y21{bottom:489.495000px;}
.y60{bottom:490.935000px;}
.ye7{bottom:493.095000px;}
.y7e{bottom:493.995000px;}
.y108{bottom:497.235000px;}
.y45{bottom:502.995000px;}
.yba{bottom:507.495000px;}
.yc5{bottom:507.675000px;}
.y20{bottom:510.195000px;}
.y107{bottom:517.935000px;}
.y9a{bottom:520.275000px;}
.y7d{bottom:520.635000px;}
.y5f{bottom:522.075000px;}
.ye6{bottom:524.055000px;}
.y1f{bottom:530.895000px;}
.y44{bottom:533.955000px;}
.yb9{bottom:544.575000px;}
.y7c{bottom:547.455000px;}
.y106{bottom:549.075000px;}
.y1e{bottom:551.595000px;}
.y99{bottom:557.355000px;}
.y5e{bottom:559.155000px;}
.ye5{bottom:561.135000px;}
.yb8{bottom:562.035000px;}
.y43{bottom:565.095000px;}
.y105{bottom:569.775000px;}
.y1d{bottom:572.295000px;}
.y7b{bottom:574.095000px;}
.y98{bottom:588.315000px;}
.yda{bottom:589.035000px;}
.y5d{bottom:590.115000px;}
.y104{bottom:590.475000px;}
.yb6{bottom:591.195000px;}
.ye4{bottom:592.275000px;}
.y1c{bottom:592.995000px;}
.y42{bottom:596.055000px;}
.y7a{bottom:600.735000px;}
.y1b{bottom:613.725000px;}
.y97{bottom:619.305000px;}
.yb5{bottom:620.565000px;}
.y5c{bottom:621.285000px;}
.y103{bottom:621.465000px;}
.ye3{bottom:623.265000px;}
.yd9{bottom:626.145000px;}
.y79{bottom:627.585000px;}
.y41{bottom:633.165000px;}
.y1a{bottom:634.425000px;}
.y102{bottom:642.165000px;}
.yb3{bottom:649.725000px;}
.y96{bottom:651.705000px;}
.y5b{bottom:652.245000px;}
.y78{bottom:654.225000px;}
.ye2{bottom:654.405000px;}
.y19{bottom:655.125000px;}
.yd8{bottom:657.285000px;}
.y101{bottom:662.865000px;}
.y40{bottom:664.305000px;}
.y18{bottom:675.825000px;}
.y77{bottom:680.865000px;}
.y95{bottom:682.845000px;}
.y5a{bottom:683.385000px;}
.y100{bottom:683.565000px;}
.yd7{bottom:688.245000px;}
.ye1{bottom:691.485000px;}
.y3f{bottom:695.265000px;}
.y17{bottom:696.525000px;}
.y76{bottom:707.505000px;}
.y94{bottom:713.625000px;}
.y59{bottom:714.345000px;}
.yff{bottom:714.705000px;}
.y16{bottom:717.225000px;}
.yd6{bottom:719.385000px;}
.ye0{bottom:722.445000px;}
.y3e{bottom:726.405000px;}
.y75{bottom:734.325000px;}
.yfe{bottom:735.405000px;}
.y15{bottom:737.925000px;}
.y58{bottom:745.305000px;}
.y93{bottom:746.205000px;}
.yd5{bottom:750.345000px;}
.ydf{bottom:753.405000px;}
.yfd{bottom:756.105000px;}
.y3d{bottom:757.365000px;}
.y14{bottom:758.625000px;}
.y74{bottom:761.505000px;}
.y57{bottom:776.445000px;}
.y92{bottom:777.165000px;}
.y13{bottom:779.325000px;}
.yd4{bottom:781.485000px;}
.yde{bottom:784.545000px;}
.yfc{bottom:787.065000px;}
.y3c{bottom:788.505000px;}
.yb2{bottom:791.565000px;}
.y73{bottom:794.085000px;}
.yd3{bottom:798.945000px;}
.y12{bottom:800.025000px;}
.y56{bottom:807.405000px;}
.yfb{bottom:807.765000px;}
.y91{bottom:808.125000px;}
.y3b{bottom:819.465000px;}
.y11{bottom:820.725000px;}
.y72{bottom:820.905000px;}
.ydd{bottom:821.625000px;}
.yd2{bottom:828.105000px;}
.yfa{bottom:828.465000px;}
.yb1{bottom:828.825000px;}
.y55{bottom:838.545000px;}
.y10{bottom:841.425000px;}
.yb0{bottom:846.285000px;}
.y90{bottom:846.645000px;}
.y71{bottom:847.545000px;}
.y3a{bottom:850.605000px;}
.ydc{bottom:852.585000px;}
.yd1{bottom:857.265000px;}
.yf9{bottom:859.605000px;}
.yf{bottom:862.125000px;}
.y54{bottom:865.725000px;}
.yaf{bottom:875.490000px;}
.y39{bottom:877.830000px;}
.yf8{bottom:880.350000px;}
.ye{bottom:882.870000px;}
.y8f{bottom:883.770000px;}
.y70{bottom:884.670000px;}
.yd0{bottom:886.650000px;}
.yf7{bottom:901.050000px;}
.yd{bottom:903.570000px;}
.yad{bottom:904.830000px;}
.y53{bottom:908.790000px;}
.y38{bottom:910.410000px;}
.y8e{bottom:914.730000px;}
.y6f{bottom:915.630000px;}
.yc{bottom:924.270000px;}
.y118{bottom:930.930000px;}
.y37{bottom:931.110000px;}
.yf6{bottom:932.010000px;}
.ya6{bottom:933.990000px;}
.y52{bottom:945.870000px;}
.yb{bottom:946.230000px;}
.y6e{bottom:946.770000px;}
.y36{bottom:951.810000px;}
.yf5{bottom:952.710000px;}
.y35{bottom:972.510000px;}
.yf4{bottom:973.410000px;}
.ya{bottom:973.770000px;}
.y51{bottom:976.830000px;}
.y6d{bottom:977.730000px;}
.y8d{bottom:982.950000px;}
.y34{bottom:993.210000px;}
.y9{bottom:1000.050000px;}
.y117{bottom:1003.470000px;}
.yf3{bottom:1004.550000px;}
.y50{bottom:1007.970000px;}
.y33{bottom:1013.910000px;}
.y6c{bottom:1014.810000px;}
.y8{bottom:1022.190000px;}
.y116{bottom:1024.350000px;}
.yf2{bottom:1025.250000px;}
.y32{bottom:1034.610000px;}
.ycf{bottom:1038.930000px;}
.y4f{bottom:1045.050000px;}
.y6b{bottom:1045.950000px;}
.y7{bottom:1049.730000px;}
.y31{bottom:1055.310000px;}
.y6a{bottom:1073.130000px;}
.y6{bottom:1076.010000px;}
.y1{bottom:1233.900000px;}
.h8{height:26.676000px;}
.hd{height:28.440000px;}
.he{height:28.476000px;}
.hf{height:28.656000px;}
.h11{height:52.417969px;}
.h5{height:52.628906px;}
.hc{height:58.833281px;}
.h3{height:59.383125px;}
.h2{height:64.546875px;}
.h6{height:74.820586px;}
.h7{height:75.519844px;}
.h4{height:85.052461px;}
.ha{height:111.068438px;}
.h9{height:117.368438px;}
.h10{height:131.220000px;}
.hb{height:131.400000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:45.900000px;}
.w6{width:77.580000px;}
.w5{width:90.936000px;}
.w4{width:95.400000px;}
.w8{width:104.760000px;}
.w7{width:106.416000px;}
.w9{width:126.936000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:7.740000px;}
.x13{left:9.000000px;}
.xc{left:10.800000px;}
.x1f{left:12.420000px;}
.x19{left:14.760000px;}
.x1d{left:16.020000px;}
.x18{left:18.000000px;}
.x1a{left:19.260000px;}
.x28{left:21.420000px;}
.x14{left:23.400000px;}
.x1b{left:27.540000px;}
.x20{left:28.980000px;}
.x25{left:32.580000px;}
.x2a{left:34.560000px;}
.x27{left:36.360000px;}
.x15{left:38.160000px;}
.x29{left:42.660000px;}
.x17{left:45.540000px;}
.x12{left:47.880000px;}
.x2c{left:48.960000px;}
.x2d{left:50.400000px;}
.xd{left:53.280000px;}
.x2b{left:60.660000px;}
.x24{left:63.360000px;}
.x11{left:95.616000px;}
.x2{left:106.415987px;}
.x10{left:130.175987px;}
.xa{left:138.815987px;}
.x5{left:139.895987px;}
.x4{left:148.895987px;}
.x2f{left:159.509987px;}
.xe{left:165.089987px;}
.x2e{left:170.309987px;}
.x16{left:191.730000px;}
.x8{left:251.309987px;}
.x6{left:261.029987px;}
.x1c{left:283.575000px;}
.xf{left:295.274987px;}
.x21{left:361.875000px;}
.x7{left:446.474987px;}
.x1{left:467.744987px;}
.x22{left:469.005000px;}
.x23{left:574.485000px;}
.x26{left:702.150000px;}
.xb{left:740.310000px;}
.x9{left:785.669987px;}
.x3{left:786.749987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:43.040000pt;}
.v1{vertical-align:48.640000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.704000pt;}
.lsf{letter-spacing:0.746667pt;}
.ls7{letter-spacing:0.943360pt;}
.ls0{letter-spacing:5.760000pt;}
.ls1{letter-spacing:7.680000pt;}
.lsb{letter-spacing:14.464000pt;}
.ls9{letter-spacing:48.746667pt;}
.ls4{letter-spacing:57.263360pt;}
.ws0{word-spacing:-64.000000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws4{word-spacing:-16.704000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws7{word-spacing:-14.336000pt;}
.ws8{word-spacing:-13.824000pt;}
.ws2{word-spacing:0.000000pt;}
.ws6{word-spacing:6.144000pt;}
._16{margin-left:-4.686720pt;}
._a{margin-left:-3.712000pt;}
._8{margin-left:-2.816000pt;}
._0{margin-left:-1.177600pt;}
._2{width:0.936320pt;}
._4{width:2.469333pt;}
._d{width:3.546667pt;}
._6{width:4.839467pt;}
._5{width:5.788160pt;}
._10{width:7.370880pt;}
._b{width:8.448000pt;}
._14{width:9.399467pt;}
._9{width:10.457600pt;}
._13{width:11.955200pt;}
._11{width:12.928000pt;}
._c{width:14.634667pt;}
._18{width:16.209280pt;}
._12{width:17.199360pt;}
._15{width:20.160000pt;}
._19{width:22.208000pt;}
._e{width:23.168000pt;}
._f{width:24.266667pt;}
._7{width:26.816000pt;}
._17{width:31.712000pt;}
._1a{width:35.178667pt;}
._3{width:41.368320pt;}
._1{width:42.389760pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y8c{bottom:-18.880000pt;}
.y0{bottom:0.000000pt;}
.yac{bottom:5.920000pt;}
.yb4{bottom:6.080000pt;}
.y8b{bottom:8.840000pt;}
.yae{bottom:11.520000pt;}
.ybe{bottom:11.560000pt;}
.yb7{bottom:11.706667pt;}
.yc8{bottom:25.280000pt;}
.yab{bottom:25.440000pt;}
.yaa{bottom:44.800000pt;}
.ya9{bottom:64.160000pt;}
.y5{bottom:72.992000pt;}
.ya8{bottom:83.520000pt;}
.ybc{bottom:83.680000pt;}
.y4{bottom:96.352000pt;}
.yc7{bottom:102.880000pt;}
.ya7{bottom:103.040000pt;}
.y3{bottom:113.312000pt;}
.y2{bottom:130.432000pt;}
.yc4{bottom:151.066667pt;}
.yf1{bottom:153.626667pt;}
.y89{bottom:154.746667pt;}
.yce{bottom:156.346667pt;}
.y30{bottom:159.066667pt;}
.ya5{bottom:164.826667pt;}
.y115{bottom:165.946667pt;}
.yc3{bottom:174.746667pt;}
.y69{bottom:177.306667pt;}
.y2f{bottom:177.466667pt;}
.y88{bottom:182.426667pt;}
.y114{bottom:184.346667pt;}
.yf0{bottom:186.586667pt;}
.ycd{bottom:189.306667pt;}
.ya4{bottom:192.506667pt;}
.y4e{bottom:193.306667pt;}
.y2e{bottom:195.866667pt;}
.ydb{bottom:196.346667pt;}
.yc2{bottom:198.426667pt;}
.y68{bottom:204.986667pt;}
.y87{bottom:209.946667pt;}
.y113{bottom:212.026667pt;}
.yef{bottom:214.106667pt;}
.y2d{bottom:214.266667pt;}
.ya3{bottom:220.026667pt;}
.y4d{bottom:220.986667pt;}
.ycc{bottom:222.266667pt;}
.y112{bottom:230.426667pt;}
.yc1{bottom:231.386667pt;}
.y67{bottom:232.506667pt;}
.y2c{bottom:232.666667pt;}
.y86{bottom:237.626667pt;}
.ycb{bottom:237.786667pt;}
.yee{bottom:241.786667pt;}
.ya2{bottom:244.186667pt;}
.yc0{bottom:246.906667pt;}
.y4c{bottom:248.506667pt;}
.y111{bottom:248.826667pt;}
.y2b{bottom:251.066667pt;}
.yca{bottom:263.706667pt;}
.y85{bottom:265.146667pt;}
.y66{bottom:265.466667pt;}
.yed{bottom:269.306667pt;}
.y2a{bottom:269.466667pt;}
.ybf{bottom:272.986667pt;}
.ya1{bottom:273.306667pt;}
.y4b{bottom:276.186667pt;}
.y110{bottom:276.346667pt;}
.y29{bottom:287.866667pt;}
.yc9{bottom:289.626667pt;}
.y84{bottom:292.826667pt;}
.y65{bottom:293.146667pt;}
.y10f{bottom:294.746667pt;}
.yec{bottom:296.986667pt;}
.ya0{bottom:297.626667pt;}
.y8a{bottom:297.786667pt;}
.ybd{bottom:298.906667pt;}
.y28{bottom:306.306667pt;}
.y9f{bottom:308.386667pt;}
.y4a{bottom:309.186667pt;}
.y10e{bottom:313.186667pt;}
.yc6{bottom:315.746667pt;}
.y83{bottom:320.386667pt;}
.y64{bottom:320.706667pt;}
.yeb{bottom:321.186667pt;}
.y27{bottom:324.706667pt;}
.ybb{bottom:324.866667pt;}
.y49{bottom:336.706667pt;}
.y10d{bottom:340.866667pt;}
.y26{bottom:343.106667pt;}
.y82{bottom:344.226667pt;}
.y9e{bottom:346.786667pt;}
.y63{bottom:348.226667pt;}
.yea{bottom:350.146667pt;}
.y10c{bottom:359.266667pt;}
.y25{bottom:361.506667pt;}
.y48{bottom:364.226667pt;}
.y81{bottom:367.906667pt;}
.y10b{bottom:377.666667pt;}
.y9d{bottom:379.586667pt;}
.y24{bottom:379.906667pt;}
.y62{bottom:381.186667pt;}
.ye9{bottom:383.106667pt;}
.y80{bottom:391.586667pt;}
.y47{bottom:391.906667pt;}
.y10a{bottom:396.066667pt;}
.y23{bottom:398.306667pt;}
.y9c{bottom:407.266667pt;}
.y61{bottom:408.866667pt;}
.ye8{bottom:410.626667pt;}
.y7f{bottom:415.426667pt;}
.y22{bottom:416.706667pt;}
.y46{bottom:419.426667pt;}
.y109{bottom:423.586667pt;}
.y9b{bottom:434.786667pt;}
.y21{bottom:435.106667pt;}
.y60{bottom:436.386667pt;}
.ye7{bottom:438.306667pt;}
.y7e{bottom:439.106667pt;}
.y108{bottom:441.986667pt;}
.y45{bottom:447.106667pt;}
.yba{bottom:451.106667pt;}
.yc5{bottom:451.266667pt;}
.y20{bottom:453.506667pt;}
.y107{bottom:460.386667pt;}
.y9a{bottom:462.466667pt;}
.y7d{bottom:462.786667pt;}
.y5f{bottom:464.066667pt;}
.ye6{bottom:465.826667pt;}
.y1f{bottom:471.906667pt;}
.y44{bottom:474.626667pt;}
.yb9{bottom:484.066667pt;}
.y7c{bottom:486.626667pt;}
.y106{bottom:488.066667pt;}
.y1e{bottom:490.306667pt;}
.y99{bottom:495.426667pt;}
.y5e{bottom:497.026667pt;}
.ye5{bottom:498.786667pt;}
.yb8{bottom:499.586667pt;}
.y43{bottom:502.306667pt;}
.y105{bottom:506.466667pt;}
.y1d{bottom:508.706667pt;}
.y7b{bottom:510.306667pt;}
.y98{bottom:522.946667pt;}
.yda{bottom:523.586667pt;}
.y5d{bottom:524.546667pt;}
.y104{bottom:524.866667pt;}
.yb6{bottom:525.506667pt;}
.ye4{bottom:526.466667pt;}
.y1c{bottom:527.106667pt;}
.y42{bottom:529.826667pt;}
.y7a{bottom:533.986667pt;}
.y1b{bottom:545.533333pt;}
.y97{bottom:550.493333pt;}
.yb5{bottom:551.613333pt;}
.y5c{bottom:552.253333pt;}
.y103{bottom:552.413333pt;}
.ye3{bottom:554.013333pt;}
.yd9{bottom:556.573333pt;}
.y79{bottom:557.853333pt;}
.y41{bottom:562.813333pt;}
.y1a{bottom:563.933333pt;}
.y102{bottom:570.813333pt;}
.yb3{bottom:577.533333pt;}
.y96{bottom:579.293333pt;}
.y5b{bottom:579.773333pt;}
.y78{bottom:581.533333pt;}
.ye2{bottom:581.693333pt;}
.y19{bottom:582.333333pt;}
.yd8{bottom:584.253333pt;}
.y101{bottom:589.213333pt;}
.y40{bottom:590.493333pt;}
.y18{bottom:600.733333pt;}
.y77{bottom:605.213333pt;}
.y95{bottom:606.973333pt;}
.y5a{bottom:607.453333pt;}
.y100{bottom:607.613333pt;}
.yd7{bottom:611.773333pt;}
.ye1{bottom:614.653333pt;}
.y3f{bottom:618.013333pt;}
.y17{bottom:619.133333pt;}
.y76{bottom:628.893333pt;}
.y94{bottom:634.333333pt;}
.y59{bottom:634.973333pt;}
.yff{bottom:635.293333pt;}
.y16{bottom:637.533333pt;}
.yd6{bottom:639.453333pt;}
.ye0{bottom:642.173333pt;}
.y3e{bottom:645.693333pt;}
.y75{bottom:652.733333pt;}
.yfe{bottom:653.693333pt;}
.y15{bottom:655.933333pt;}
.y58{bottom:662.493333pt;}
.y93{bottom:663.293333pt;}
.yd5{bottom:666.973333pt;}
.ydf{bottom:669.693333pt;}
.yfd{bottom:672.093333pt;}
.y3d{bottom:673.213333pt;}
.y14{bottom:674.333333pt;}
.y74{bottom:676.893333pt;}
.y57{bottom:690.173333pt;}
.y92{bottom:690.813333pt;}
.y13{bottom:692.733333pt;}
.yd4{bottom:694.653333pt;}
.yde{bottom:697.373333pt;}
.yfc{bottom:699.613333pt;}
.y3c{bottom:700.893333pt;}
.yb2{bottom:703.613333pt;}
.y73{bottom:705.853333pt;}
.yd3{bottom:710.173333pt;}
.y12{bottom:711.133333pt;}
.y56{bottom:717.693333pt;}
.yfb{bottom:718.013333pt;}
.y91{bottom:718.333333pt;}
.y3b{bottom:728.413333pt;}
.y11{bottom:729.533333pt;}
.y72{bottom:729.693333pt;}
.ydd{bottom:730.333333pt;}
.yd2{bottom:736.093333pt;}
.yfa{bottom:736.413333pt;}
.yb1{bottom:736.733333pt;}
.y55{bottom:745.373333pt;}
.y10{bottom:747.933333pt;}
.yb0{bottom:752.253333pt;}
.y90{bottom:752.573333pt;}
.y71{bottom:753.373333pt;}
.y3a{bottom:756.093333pt;}
.ydc{bottom:757.853333pt;}
.yd1{bottom:762.013333pt;}
.yf9{bottom:764.093333pt;}
.yf{bottom:766.333333pt;}
.y54{bottom:769.533333pt;}
.yaf{bottom:778.213333pt;}
.y39{bottom:780.293333pt;}
.yf8{bottom:782.533333pt;}
.ye{bottom:784.773333pt;}
.y8f{bottom:785.573333pt;}
.y70{bottom:786.373333pt;}
.yd0{bottom:788.133333pt;}
.yf7{bottom:800.933333pt;}
.yd{bottom:803.173333pt;}
.yad{bottom:804.293333pt;}
.y53{bottom:807.813333pt;}
.y38{bottom:809.253333pt;}
.y8e{bottom:813.093333pt;}
.y6f{bottom:813.893333pt;}
.yc{bottom:821.573333pt;}
.y118{bottom:827.493333pt;}
.y37{bottom:827.653333pt;}
.yf6{bottom:828.453333pt;}
.ya6{bottom:830.213333pt;}
.y52{bottom:840.773333pt;}
.yb{bottom:841.093333pt;}
.y6e{bottom:841.573333pt;}
.y36{bottom:846.053333pt;}
.yf5{bottom:846.853333pt;}
.y35{bottom:864.453333pt;}
.yf4{bottom:865.253333pt;}
.ya{bottom:865.573333pt;}
.y51{bottom:868.293333pt;}
.y6d{bottom:869.093333pt;}
.y8d{bottom:873.733333pt;}
.y34{bottom:882.853333pt;}
.y9{bottom:888.933333pt;}
.y117{bottom:891.973333pt;}
.yf3{bottom:892.933333pt;}
.y50{bottom:895.973333pt;}
.y33{bottom:901.253333pt;}
.y6c{bottom:902.053333pt;}
.y8{bottom:908.613333pt;}
.y116{bottom:910.533333pt;}
.yf2{bottom:911.333333pt;}
.y32{bottom:919.653333pt;}
.ycf{bottom:923.493333pt;}
.y4f{bottom:928.933333pt;}
.y6b{bottom:929.733333pt;}
.y7{bottom:933.093333pt;}
.y31{bottom:938.053333pt;}
.y6a{bottom:953.893333pt;}
.y6{bottom:956.453333pt;}
.y1{bottom:1096.800000pt;}
.h8{height:23.712000pt;}
.hd{height:25.280000pt;}
.he{height:25.312000pt;}
.hf{height:25.472000pt;}
.h11{height:46.593750pt;}
.h5{height:46.781250pt;}
.hc{height:52.296250pt;}
.h3{height:52.785000pt;}
.h2{height:57.375000pt;}
.h6{height:66.507188pt;}
.h7{height:67.128750pt;}
.h4{height:75.602187pt;}
.ha{height:98.727500pt;}
.h9{height:104.327500pt;}
.h10{height:116.640000pt;}
.hb{height:116.800000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:40.800000pt;}
.w6{width:68.960000pt;}
.w5{width:80.832000pt;}
.w4{width:84.800000pt;}
.w8{width:93.120000pt;}
.w7{width:94.592000pt;}
.w9{width:112.832000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:6.880000pt;}
.x13{left:8.000000pt;}
.xc{left:9.600000pt;}
.x1f{left:11.040000pt;}
.x19{left:13.120000pt;}
.x1d{left:14.240000pt;}
.x18{left:16.000000pt;}
.x1a{left:17.120000pt;}
.x28{left:19.040000pt;}
.x14{left:20.800000pt;}
.x1b{left:24.480000pt;}
.x20{left:25.760000pt;}
.x25{left:28.960000pt;}
.x2a{left:30.720000pt;}
.x27{left:32.320000pt;}
.x15{left:33.920000pt;}
.x29{left:37.920000pt;}
.x17{left:40.480000pt;}
.x12{left:42.560000pt;}
.x2c{left:43.520000pt;}
.x2d{left:44.800000pt;}
.xd{left:47.360000pt;}
.x2b{left:53.920000pt;}
.x24{left:56.320000pt;}
.x11{left:84.992000pt;}
.x2{left:94.591988pt;}
.x10{left:115.711988pt;}
.xa{left:123.391988pt;}
.x5{left:124.351988pt;}
.x4{left:132.351988pt;}
.x2f{left:141.786655pt;}
.xe{left:146.746655pt;}
.x2e{left:151.386655pt;}
.x16{left:170.426667pt;}
.x8{left:223.386655pt;}
.x6{left:232.026655pt;}
.x1c{left:252.066667pt;}
.xf{left:262.466655pt;}
.x21{left:321.666667pt;}
.x7{left:396.866655pt;}
.x1{left:415.773322pt;}
.x22{left:416.893333pt;}
.x23{left:510.653333pt;}
.x26{left:624.133333pt;}
.xb{left:658.053333pt;}
.x9{left:698.373322pt;}
.x3{left:699.333322pt;}
}




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