
    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_3101a74667db84099815b55c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.016113;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_7f29818cc3005aaa0dc76f85.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_5f56247d00113d065686014e.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3dc5ed752ba72e8eaf4f74cd.woff')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_0156d46f603d00eb903bc37d.woff')format("woff");}.ff5{font-family:ff5;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-17.187000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:82.200000px;}
.ls1b{letter-spacing:-1.932000px;}
.ls20{letter-spacing:-0.897000px;}
.ls33{letter-spacing:-0.882000px;}
.ls16{letter-spacing:-0.828000px;}
.ls32{letter-spacing:-0.819000px;}
.ls1f{letter-spacing:-0.759000px;}
.ls1a{letter-spacing:-0.690000px;}
.ls2e{letter-spacing:-0.630000px;}
.ls23{letter-spacing:-0.621000px;}
.ls9{letter-spacing:-0.483000px;}
.ls11{letter-spacing:-0.414000px;}
.ls14{letter-spacing:-0.345000px;}
.ls2c{letter-spacing:-0.315000px;}
.ls15{letter-spacing:-0.276000px;}
.ls2a{letter-spacing:-0.252000px;}
.ls7{letter-spacing:-0.207000px;}
.lsa{letter-spacing:-0.138000px;}
.ls10{letter-spacing:-0.069000px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.013998px;}
.ls1e{letter-spacing:0.060158px;}
.ls13{letter-spacing:0.069000px;}
.ls26{letter-spacing:0.126000px;}
.lsc{letter-spacing:0.138000px;}
.lse{letter-spacing:0.207000px;}
.ls25{letter-spacing:0.252000px;}
.ls19{letter-spacing:0.276000px;}
.ls2b{letter-spacing:0.315000px;}
.ls18{letter-spacing:0.345000px;}
.ls2d{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.414000px;}
.ls30{letter-spacing:0.441000px;}
.ls17{letter-spacing:0.483000px;}
.ls27{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.552000px;}
.ls24{letter-spacing:0.567000px;}
.ls8{letter-spacing:0.690000px;}
.ls29{letter-spacing:0.756000px;}
.ls4{letter-spacing:0.759000px;}
.lsd{letter-spacing:0.828000px;}
.ls1d{letter-spacing:0.897000px;}
.ls28{letter-spacing:0.945000px;}
.ls1c{letter-spacing:1.035000px;}
.ls6{letter-spacing:2.730000px;}
.ls0{letter-spacing:3.900000px;}
.ls2{letter-spacing:5.400000px;}
.ls12{letter-spacing:6.240000px;}
.ls21{letter-spacing:6.300000px;}
.ls1{letter-spacing:7.731000px;}
.ls31{letter-spacing:8.568000px;}
.ls22{letter-spacing:9.450000px;}
.ls2f{letter-spacing:9.891000px;}
.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;}
}
.wsc{word-spacing:-24.003000px;}
.ws2{word-spacing:-21.075000px;}
.ws8{word-spacing:-20.286000px;}
.ws9{word-spacing:-19.251000px;}
.wsb{word-spacing:-17.871000px;}
.ws7{word-spacing:-17.802000px;}
.ws3{word-spacing:-17.043000px;}
.wsa{word-spacing:-16.905000px;}
.ws5{word-spacing:-16.698000px;}
.ws4{word-spacing:-16.284000px;}
.wsd{word-spacing:-15.813000px;}
.wse{word-spacing:-15.561000px;}
.ws6{word-spacing:-10.225800px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:461.697600px;}
._10{margin-left:-1615.752000px;}
._17{margin-left:-15.948000px;}
._13{margin-left:-14.934000px;}
._12{margin-left:-11.901000px;}
._f{margin-left:-10.833000px;}
._a{margin-left:-9.504000px;}
._c{margin-left:-8.220000px;}
._d{margin-left:-6.372000px;}
._7{margin-left:-5.100000px;}
._b{margin-left:-4.092000px;}
._11{margin-left:-3.036000px;}
._1{margin-left:-1.980000px;}
._2{width:1.200000px;}
._9{width:2.760000px;}
._0{width:4.260000px;}
._5{width:5.280000px;}
._3{width:6.480000px;}
._6{width:7.680000px;}
._8{width:9.060000px;}
._e{width:10.473000px;}
._18{width:11.721000px;}
._16{width:13.674000px;}
._4{width:14.700000px;}
._14{width:16.233000px;}
._15{width:19.281000px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:41.400000px;}
.fs3{font-size:42.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs2{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs0{font-size:75.000000px;}
.fs5{font-size:84.000000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:201.139200px;}
.y0{bottom:0.000000px;}
.y1{bottom:56.691000px;}
.y4c{bottom:110.200500px;}
.y6f{bottom:110.300250px;}
.ydb{bottom:110.527500px;}
.y22{bottom:110.765250px;}
.y92{bottom:110.870250px;}
.yb7{bottom:111.031500px;}
.yda{bottom:130.026000px;}
.yb6{bottom:130.388250px;}
.y91{bottom:130.526250px;}
.y4b{bottom:131.055750px;}
.y6e{bottom:131.155500px;}
.y21{bottom:131.310000px;}
.y90{bottom:150.182250px;}
.y20{bottom:151.854750px;}
.y4a{bottom:151.911000px;}
.y6d{bottom:152.010750px;}
.yd9{bottom:158.029500px;}
.yb5{bottom:158.250000px;}
.y1f{bottom:172.399500px;}
.y49{bottom:172.766250px;}
.y6c{bottom:172.866000px;}
.yd8{bottom:177.528000px;}
.yb4{bottom:177.606750px;}
.y8f{bottom:178.343250px;}
.y1e{bottom:192.944250px;}
.y48{bottom:193.621500px;}
.y6b{bottom:193.721250px;}
.yb3{bottom:196.963500px;}
.yd7{bottom:197.026500px;}
.y8e{bottom:213.450000px;}
.y1d{bottom:213.489000px;}
.y47{bottom:214.476750px;}
.y6a{bottom:214.576500px;}
.yb2{bottom:224.825250px;}
.yd6{bottom:225.030000px;}
.y1c{bottom:234.033750px;}
.y46{bottom:235.332000px;}
.y69{bottom:235.431750px;}
.yb1{bottom:244.182000px;}
.yd5{bottom:244.528500px;}
.y1b{bottom:254.578500px;}
.y45{bottom:256.187250px;}
.y68{bottom:256.287000px;}
.yb0{bottom:263.538750px;}
.y8d{bottom:263.587500px;}
.yd4{bottom:272.532000px;}
.y1a{bottom:275.123250px;}
.y44{bottom:277.042500px;}
.y67{bottom:277.142250px;}
.yaf{bottom:282.895500px;}
.y8c{bottom:284.891250px;}
.yd3{bottom:291.888750px;}
.y19{bottom:295.668000px;}
.y43{bottom:297.897750px;}
.y66{bottom:297.997500px;}
.y8b{bottom:306.195000px;}
.yae{bottom:310.741500px;}
.yd2{bottom:311.245500px;}
.y18{bottom:316.212750px;}
.y42{bottom:318.753000px;}
.y65{bottom:318.852750px;}
.y8a{bottom:327.498750px;}
.yad{bottom:330.098250px;}
.y17{bottom:336.757500px;}
.yd1{bottom:339.107250px;}
.y41{bottom:339.608250px;}
.y64{bottom:339.708000px;}
.y89{bottom:348.802500px;}
.yac{bottom:349.455000px;}
.y16{bottom:357.302250px;}
.yd0{bottom:358.464000px;}
.y40{bottom:360.463500px;}
.y63{bottom:360.563250px;}
.yab{bottom:368.811750px;}
.y88{bottom:370.106250px;}
.ycf{bottom:377.820750px;}
.y15{bottom:377.847000px;}
.y3f{bottom:381.318750px;}
.y62{bottom:381.418500px;}
.yaa{bottom:388.168500px;}
.y87{bottom:391.410000px;}
.y13{bottom:398.386500px;}
.y14{bottom:398.391750px;}
.y3e{bottom:402.174000px;}
.y61{bottom:402.273750px;}
.yce{bottom:405.666750px;}
.ya9{bottom:407.525250px;}
.yef{bottom:411.939000px;}
.y86{bottom:412.713750px;}
.y3d{bottom:423.029250px;}
.y60{bottom:423.129000px;}
.ycd{bottom:425.023500px;}
.ya8{bottom:426.882000px;}
.yee{bottom:432.189000px;}
.y85{bottom:434.017500px;}
.y3c{bottom:443.884500px;}
.y5f{bottom:443.984250px;}
.ya7{bottom:446.238750px;}
.yed{bottom:452.439000px;}
.ycc{bottom:452.885250px;}
.y84{bottom:455.321250px;}
.y12{bottom:460.036500px;}
.y3b{bottom:464.739750px;}
.y5e{bottom:464.839500px;}
.ycb{bottom:472.242000px;}
.yec{bottom:472.689000px;}
.ya6{bottom:474.084750px;}
.y83{bottom:476.625000px;}
.y11{bottom:479.236500px;}
.y3a{bottom:485.595000px;}
.y5d{bottom:485.694750px;}
.ya5{bottom:493.441500px;}
.y82{bottom:497.928750px;}
.y10{bottom:498.436500px;}
.yca{bottom:500.088000px;}
.y39{bottom:506.450250px;}
.y5c{bottom:506.466000px;}
.yeb{bottom:507.939000px;}
.ya4{bottom:512.798250px;}
.y81{bottom:519.232500px;}
.yc9{bottom:519.444750px;}
.y38{bottom:527.305500px;}
.y5b{bottom:527.321250px;}
.yea{bottom:528.189000px;}
.yf{bottom:528.261000px;}
.ya3{bottom:532.155000px;}
.yc8{bottom:538.801500px;}
.y80{bottom:540.536250px;}
.y37{bottom:548.160750px;}
.y5a{bottom:548.176500px;}
.ye9{bottom:548.439000px;}
.ye{bottom:553.167000px;}
.ya2{bottom:560.016750px;}
.y7f{bottom:561.840000px;}
.yc7{bottom:566.647500px;}
.ye8{bottom:568.689000px;}
.y36{bottom:569.016000px;}
.y59{bottom:569.031750px;}
.yd{bottom:578.055000px;}
.ya1{bottom:579.373500px;}
.y7e{bottom:583.143750px;}
.yc6{bottom:586.146000px;}
.y35{bottom:589.871250px;}
.y58{bottom:589.887000px;}
.ya0{bottom:598.730250px;}
.ye7{bottom:603.939000px;}
.y7d{bottom:604.447500px;}
.yc{bottom:610.158000px;}
.y34{bottom:610.726500px;}
.y57{bottom:610.742250px;}
.yc5{bottom:614.149500px;}
.ye6{bottom:624.189000px;}
.y7c{bottom:625.751250px;}
.y9f{bottom:626.576250px;}
.y33{bottom:631.581750px;}
.y56{bottom:631.597500px;}
.yc4{bottom:633.648000px;}
.yb{bottom:642.261000px;}
.ye5{bottom:644.439000px;}
.y9e{bottom:645.933000px;}
.y7b{bottom:647.055000px;}
.y32{bottom:652.437000px;}
.y55{bottom:652.452750px;}
.yc3{bottom:653.146500px;}
.ye4{bottom:664.689000px;}
.y9d{bottom:665.289750px;}
.y7a{bottom:668.358750px;}
.yc2{bottom:672.645000px;}
.y31{bottom:673.292250px;}
.y54{bottom:673.308000px;}
.ya{bottom:674.364000px;}
.ye3{bottom:684.939000px;}
.y79{bottom:689.662500px;}
.yc1{bottom:692.143500px;}
.y9c{bottom:693.135750px;}
.y30{bottom:694.147500px;}
.y53{bottom:694.163250px;}
.ye2{bottom:705.189000px;}
.y9{bottom:706.467000px;}
.y78{bottom:710.966250px;}
.yc0{bottom:711.642000px;}
.y9b{bottom:712.492500px;}
.y2f{bottom:715.002750px;}
.y52{bottom:715.018500px;}
.ybf{bottom:731.140500px;}
.y77{bottom:732.270000px;}
.y2e{bottom:735.858000px;}
.y51{bottom:735.873750px;}
.y8{bottom:738.567000px;}
.y9a{bottom:740.354250px;}
.ye1{bottom:740.439000px;}
.ybe{bottom:750.639000px;}
.y76{bottom:753.573750px;}
.y2d{bottom:756.713250px;}
.y50{bottom:756.729000px;}
.y99{bottom:759.711000px;}
.ybd{bottom:770.137500px;}
.y75{bottom:774.877500px;}
.y2c{bottom:777.568500px;}
.y4f{bottom:777.584250px;}
.y98{bottom:779.067750px;}
.ye0{bottom:790.691250px;}
.y74{bottom:796.181250px;}
.ybc{bottom:798.141000px;}
.y2b{bottom:798.423750px;}
.y97{bottom:798.424500px;}
.y4e{bottom:798.439500px;}
.y7{bottom:804.562500px;}
.ydf{bottom:809.890500px;}
.y73{bottom:817.485000px;}
.ybb{bottom:817.497750px;}
.y96{bottom:817.781250px;}
.y2a{bottom:819.279000px;}
.y4d{bottom:819.294750px;}
.y6{bottom:822.262500px;}
.yba{bottom:836.854500px;}
.yde{bottom:837.594750px;}
.y72{bottom:838.788750px;}
.y29{bottom:840.134250px;}
.y95{bottom:845.627250px;}
.y5{bottom:850.597500px;}
.ydd{bottom:856.794000px;}
.y71{bottom:860.092500px;}
.y28{bottom:860.989500px;}
.yb9{bottom:864.700500px;}
.y94{bottom:864.984000px;}
.y4{bottom:868.297500px;}
.y70{bottom:881.396250px;}
.y27{bottom:881.844750px;}
.yb8{bottom:884.199000px;}
.y93{bottom:884.340750px;}
.ydc{bottom:884.498250px;}
.y3{bottom:885.997500px;}
.y26{bottom:902.700000px;}
.y2{bottom:903.697500px;}
.y25{bottom:948.406500px;}
.y24{bottom:966.406500px;}
.y23{bottom:984.406500px;}
.hc{height:40.757812px;}
.h11{height:45.852539px;}
.hf{height:49.341797px;}
.h4{height:50.947266px;}
.ha{height:52.265625px;}
.h3{height:53.494629px;}
.h10{height:54.878906px;}
.h8{height:58.589355px;}
.h2{height:58.740234px;}
.h9{height:60.105469px;}
.hd{height:60.168469px;}
.he{height:60.441469px;}
.hb{height:63.684082px;}
.h5{height:71.326172px;}
.h6{height:91.705078px;}
.h7{height:157.532850px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x5{left:106.343100px;}
.x3{left:120.727350px;}
.x2{left:233.857500px;}
.x4{left:609.670500px;}
@media print{
.v2{vertical-align:-15.277333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:73.066667pt;}
.ls1b{letter-spacing:-1.717333pt;}
.ls20{letter-spacing:-0.797333pt;}
.ls33{letter-spacing:-0.784000pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls32{letter-spacing:-0.728000pt;}
.ls1f{letter-spacing:-0.674667pt;}
.ls1a{letter-spacing:-0.613333pt;}
.ls2e{letter-spacing:-0.560000pt;}
.ls23{letter-spacing:-0.552000pt;}
.ls9{letter-spacing:-0.429333pt;}
.ls11{letter-spacing:-0.368000pt;}
.ls14{letter-spacing:-0.306667pt;}
.ls2c{letter-spacing:-0.280000pt;}
.ls15{letter-spacing:-0.245333pt;}
.ls2a{letter-spacing:-0.224000pt;}
.ls7{letter-spacing:-0.184000pt;}
.lsa{letter-spacing:-0.122667pt;}
.ls10{letter-spacing:-0.061333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.012442pt;}
.ls1e{letter-spacing:0.053474pt;}
.ls13{letter-spacing:0.061333pt;}
.ls26{letter-spacing:0.112000pt;}
.lsc{letter-spacing:0.122667pt;}
.lse{letter-spacing:0.184000pt;}
.ls25{letter-spacing:0.224000pt;}
.ls19{letter-spacing:0.245333pt;}
.ls2b{letter-spacing:0.280000pt;}
.ls18{letter-spacing:0.306667pt;}
.ls2d{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.368000pt;}
.ls30{letter-spacing:0.392000pt;}
.ls17{letter-spacing:0.429333pt;}
.ls27{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.490667pt;}
.ls24{letter-spacing:0.504000pt;}
.ls8{letter-spacing:0.613333pt;}
.ls29{letter-spacing:0.672000pt;}
.ls4{letter-spacing:0.674667pt;}
.lsd{letter-spacing:0.736000pt;}
.ls1d{letter-spacing:0.797333pt;}
.ls28{letter-spacing:0.840000pt;}
.ls1c{letter-spacing:0.920000pt;}
.ls6{letter-spacing:2.426667pt;}
.ls0{letter-spacing:3.466667pt;}
.ls2{letter-spacing:4.800000pt;}
.ls12{letter-spacing:5.546667pt;}
.ls21{letter-spacing:5.600000pt;}
.ls1{letter-spacing:6.872000pt;}
.ls31{letter-spacing:7.616000pt;}
.ls22{letter-spacing:8.400000pt;}
.ls2f{letter-spacing:8.792000pt;}
.wsc{word-spacing:-21.336000pt;}
.ws2{word-spacing:-18.733333pt;}
.ws8{word-spacing:-18.032000pt;}
.ws9{word-spacing:-17.112000pt;}
.wsb{word-spacing:-15.885333pt;}
.ws7{word-spacing:-15.824000pt;}
.ws3{word-spacing:-15.149333pt;}
.wsa{word-spacing:-15.026667pt;}
.ws5{word-spacing:-14.842667pt;}
.ws4{word-spacing:-14.474667pt;}
.wsd{word-spacing:-14.056000pt;}
.wse{word-spacing:-13.832000pt;}
.ws6{word-spacing:-9.089600pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:410.397867pt;}
._10{margin-left:-1436.224000pt;}
._17{margin-left:-14.176000pt;}
._13{margin-left:-13.274667pt;}
._12{margin-left:-10.578667pt;}
._f{margin-left:-9.629333pt;}
._a{margin-left:-8.448000pt;}
._c{margin-left:-7.306667pt;}
._d{margin-left:-5.664000pt;}
._7{margin-left:-4.533333pt;}
._b{margin-left:-3.637333pt;}
._11{margin-left:-2.698667pt;}
._1{margin-left:-1.760000pt;}
._2{width:1.066667pt;}
._9{width:2.453333pt;}
._0{width:3.786667pt;}
._5{width:4.693333pt;}
._3{width:5.760000pt;}
._6{width:6.826667pt;}
._8{width:8.053333pt;}
._e{width:9.309333pt;}
._18{width:10.418667pt;}
._16{width:12.154667pt;}
._4{width:13.066667pt;}
._14{width:14.429333pt;}
._15{width:17.138667pt;}
.fsa{font-size:36.800000pt;}
.fs3{font-size:37.333333pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs2{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs0{font-size:66.666667pt;}
.fs5{font-size:74.666667pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:178.790400pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:50.392000pt;}
.y4c{bottom:97.956000pt;}
.y6f{bottom:98.044667pt;}
.ydb{bottom:98.246667pt;}
.y22{bottom:98.458000pt;}
.y92{bottom:98.551333pt;}
.yb7{bottom:98.694667pt;}
.yda{bottom:115.578667pt;}
.yb6{bottom:115.900667pt;}
.y91{bottom:116.023333pt;}
.y4b{bottom:116.494000pt;}
.y6e{bottom:116.582667pt;}
.y21{bottom:116.720000pt;}
.y90{bottom:133.495333pt;}
.y20{bottom:134.982000pt;}
.y4a{bottom:135.032000pt;}
.y6d{bottom:135.120667pt;}
.yd9{bottom:140.470667pt;}
.yb5{bottom:140.666667pt;}
.y1f{bottom:153.244000pt;}
.y49{bottom:153.570000pt;}
.y6c{bottom:153.658667pt;}
.yd8{bottom:157.802667pt;}
.yb4{bottom:157.872667pt;}
.y8f{bottom:158.527333pt;}
.y1e{bottom:171.506000pt;}
.y48{bottom:172.108000pt;}
.y6b{bottom:172.196667pt;}
.yb3{bottom:175.078667pt;}
.yd7{bottom:175.134667pt;}
.y8e{bottom:189.733333pt;}
.y1d{bottom:189.768000pt;}
.y47{bottom:190.646000pt;}
.y6a{bottom:190.734667pt;}
.yb2{bottom:199.844667pt;}
.yd6{bottom:200.026667pt;}
.y1c{bottom:208.030000pt;}
.y46{bottom:209.184000pt;}
.y69{bottom:209.272667pt;}
.yb1{bottom:217.050667pt;}
.yd5{bottom:217.358667pt;}
.y1b{bottom:226.292000pt;}
.y45{bottom:227.722000pt;}
.y68{bottom:227.810667pt;}
.yb0{bottom:234.256667pt;}
.y8d{bottom:234.300000pt;}
.yd4{bottom:242.250667pt;}
.y1a{bottom:244.554000pt;}
.y44{bottom:246.260000pt;}
.y67{bottom:246.348667pt;}
.yaf{bottom:251.462667pt;}
.y8c{bottom:253.236667pt;}
.yd3{bottom:259.456667pt;}
.y19{bottom:262.816000pt;}
.y43{bottom:264.798000pt;}
.y66{bottom:264.886667pt;}
.y8b{bottom:272.173333pt;}
.yae{bottom:276.214667pt;}
.yd2{bottom:276.662667pt;}
.y18{bottom:281.078000pt;}
.y42{bottom:283.336000pt;}
.y65{bottom:283.424667pt;}
.y8a{bottom:291.110000pt;}
.yad{bottom:293.420667pt;}
.y17{bottom:299.340000pt;}
.yd1{bottom:301.428667pt;}
.y41{bottom:301.874000pt;}
.y64{bottom:301.962667pt;}
.y89{bottom:310.046667pt;}
.yac{bottom:310.626667pt;}
.y16{bottom:317.602000pt;}
.yd0{bottom:318.634667pt;}
.y40{bottom:320.412000pt;}
.y63{bottom:320.500667pt;}
.yab{bottom:327.832667pt;}
.y88{bottom:328.983333pt;}
.ycf{bottom:335.840667pt;}
.y15{bottom:335.864000pt;}
.y3f{bottom:338.950000pt;}
.y62{bottom:339.038667pt;}
.yaa{bottom:345.038667pt;}
.y87{bottom:347.920000pt;}
.y13{bottom:354.121333pt;}
.y14{bottom:354.126000pt;}
.y3e{bottom:357.488000pt;}
.y61{bottom:357.576667pt;}
.yce{bottom:360.592667pt;}
.ya9{bottom:362.244667pt;}
.yef{bottom:366.168000pt;}
.y86{bottom:366.856667pt;}
.y3d{bottom:376.026000pt;}
.y60{bottom:376.114667pt;}
.ycd{bottom:377.798667pt;}
.ya8{bottom:379.450667pt;}
.yee{bottom:384.168000pt;}
.y85{bottom:385.793333pt;}
.y3c{bottom:394.564000pt;}
.y5f{bottom:394.652667pt;}
.ya7{bottom:396.656667pt;}
.yed{bottom:402.168000pt;}
.ycc{bottom:402.564667pt;}
.y84{bottom:404.730000pt;}
.y12{bottom:408.921333pt;}
.y3b{bottom:413.102000pt;}
.y5e{bottom:413.190667pt;}
.ycb{bottom:419.770667pt;}
.yec{bottom:420.168000pt;}
.ya6{bottom:421.408667pt;}
.y83{bottom:423.666667pt;}
.y11{bottom:425.988000pt;}
.y3a{bottom:431.640000pt;}
.y5d{bottom:431.728667pt;}
.ya5{bottom:438.614667pt;}
.y82{bottom:442.603333pt;}
.y10{bottom:443.054667pt;}
.yca{bottom:444.522667pt;}
.y39{bottom:450.178000pt;}
.y5c{bottom:450.192000pt;}
.yeb{bottom:451.501333pt;}
.ya4{bottom:455.820667pt;}
.y81{bottom:461.540000pt;}
.yc9{bottom:461.728667pt;}
.y38{bottom:468.716000pt;}
.y5b{bottom:468.730000pt;}
.yea{bottom:469.501333pt;}
.yf{bottom:469.565333pt;}
.ya3{bottom:473.026667pt;}
.yc8{bottom:478.934667pt;}
.y80{bottom:480.476667pt;}
.y37{bottom:487.254000pt;}
.y5a{bottom:487.268000pt;}
.ye9{bottom:487.501333pt;}
.ye{bottom:491.704000pt;}
.ya2{bottom:497.792667pt;}
.y7f{bottom:499.413333pt;}
.yc7{bottom:503.686667pt;}
.ye8{bottom:505.501333pt;}
.y36{bottom:505.792000pt;}
.y59{bottom:505.806000pt;}
.yd{bottom:513.826667pt;}
.ya1{bottom:514.998667pt;}
.y7e{bottom:518.350000pt;}
.yc6{bottom:521.018667pt;}
.y35{bottom:524.330000pt;}
.y58{bottom:524.344000pt;}
.ya0{bottom:532.204667pt;}
.ye7{bottom:536.834667pt;}
.y7d{bottom:537.286667pt;}
.yc{bottom:542.362667pt;}
.y34{bottom:542.868000pt;}
.y57{bottom:542.882000pt;}
.yc5{bottom:545.910667pt;}
.ye6{bottom:554.834667pt;}
.y7c{bottom:556.223333pt;}
.y9f{bottom:556.956667pt;}
.y33{bottom:561.406000pt;}
.y56{bottom:561.420000pt;}
.yc4{bottom:563.242667pt;}
.yb{bottom:570.898667pt;}
.ye5{bottom:572.834667pt;}
.y9e{bottom:574.162667pt;}
.y7b{bottom:575.160000pt;}
.y32{bottom:579.944000pt;}
.y55{bottom:579.958000pt;}
.yc3{bottom:580.574667pt;}
.ye4{bottom:590.834667pt;}
.y9d{bottom:591.368667pt;}
.y7a{bottom:594.096667pt;}
.yc2{bottom:597.906667pt;}
.y31{bottom:598.482000pt;}
.y54{bottom:598.496000pt;}
.ya{bottom:599.434667pt;}
.ye3{bottom:608.834667pt;}
.y79{bottom:613.033333pt;}
.yc1{bottom:615.238667pt;}
.y9c{bottom:616.120667pt;}
.y30{bottom:617.020000pt;}
.y53{bottom:617.034000pt;}
.ye2{bottom:626.834667pt;}
.y9{bottom:627.970667pt;}
.y78{bottom:631.970000pt;}
.yc0{bottom:632.570667pt;}
.y9b{bottom:633.326667pt;}
.y2f{bottom:635.558000pt;}
.y52{bottom:635.572000pt;}
.ybf{bottom:649.902667pt;}
.y77{bottom:650.906667pt;}
.y2e{bottom:654.096000pt;}
.y51{bottom:654.110000pt;}
.y8{bottom:656.504000pt;}
.y9a{bottom:658.092667pt;}
.ye1{bottom:658.168000pt;}
.ybe{bottom:667.234667pt;}
.y76{bottom:669.843333pt;}
.y2d{bottom:672.634000pt;}
.y50{bottom:672.648000pt;}
.y99{bottom:675.298667pt;}
.ybd{bottom:684.566667pt;}
.y75{bottom:688.780000pt;}
.y2c{bottom:691.172000pt;}
.y4f{bottom:691.186000pt;}
.y98{bottom:692.504667pt;}
.ye0{bottom:702.836667pt;}
.y74{bottom:707.716667pt;}
.ybc{bottom:709.458667pt;}
.y2b{bottom:709.710000pt;}
.y97{bottom:709.710667pt;}
.y4e{bottom:709.724000pt;}
.y7{bottom:715.166667pt;}
.ydf{bottom:719.902667pt;}
.y73{bottom:726.653333pt;}
.ybb{bottom:726.664667pt;}
.y96{bottom:726.916667pt;}
.y2a{bottom:728.248000pt;}
.y4d{bottom:728.262000pt;}
.y6{bottom:730.900000pt;}
.yba{bottom:743.870667pt;}
.yde{bottom:744.528667pt;}
.y72{bottom:745.590000pt;}
.y29{bottom:746.786000pt;}
.y95{bottom:751.668667pt;}
.y5{bottom:756.086667pt;}
.ydd{bottom:761.594667pt;}
.y71{bottom:764.526667pt;}
.y28{bottom:765.324000pt;}
.yb9{bottom:768.622667pt;}
.y94{bottom:768.874667pt;}
.y4{bottom:771.820000pt;}
.y70{bottom:783.463333pt;}
.y27{bottom:783.862000pt;}
.yb8{bottom:785.954667pt;}
.y93{bottom:786.080667pt;}
.ydc{bottom:786.220667pt;}
.y3{bottom:787.553333pt;}
.y26{bottom:802.400000pt;}
.y2{bottom:803.286667pt;}
.y25{bottom:843.028000pt;}
.y24{bottom:859.028000pt;}
.y23{bottom:875.028000pt;}
.hc{height:36.229167pt;}
.h11{height:40.757812pt;}
.hf{height:43.859375pt;}
.h4{height:45.286458pt;}
.ha{height:46.458333pt;}
.h3{height:47.550781pt;}
.h10{height:48.781250pt;}
.h8{height:52.079427pt;}
.h2{height:52.213542pt;}
.h9{height:53.427083pt;}
.hd{height:53.483083pt;}
.he{height:53.725750pt;}
.hb{height:56.608073pt;}
.h5{height:63.401042pt;}
.h6{height:81.515625pt;}
.h7{height:140.029200pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x5{left:94.527200pt;}
.x3{left:107.313200pt;}
.x2{left:207.873333pt;}
.x4{left:541.929333pt;}
}




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