
    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_19babcde575f7f3586823356.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.973000;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_5c640dd90cf2bd8bf879b2fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.182000;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_b48cc0efc0df0d9bea3f8a81.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.167000;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_959b52f581b71737e685332b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951172;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_87e4e923eb9ba0682b5f157e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bfcba594e638496c749fc184.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.186035;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_9d52effbcaa5022e418d9e50.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.024902;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_ca51fa5ab68a285e0676ce03.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.186035;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_76adaaf26582564a37217f10.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.087891;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_054a787fb5c4c44a3117b31c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.024902;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_cdf18daf3c17e5c6fbe0fcf5.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_11d6e75a43d761937e2932d2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_4c44596d65ec660bc4e0c4ef.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4e3e8e86549d216d1fdeb198.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_56cebce1bf5b37580df9adac.woff2')format("woff");}.fff{font-family:fff;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_c5e1cd441066a5a4a7d5a26b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.942383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.806000px;}
.lsf{letter-spacing:-0.596400px;}
.lsd{letter-spacing:-0.504000px;}
.lsa{letter-spacing:-0.414600px;}
.ls3{letter-spacing:-0.368400px;}
.ls8{letter-spacing:-0.169800px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.167040px;}
.ls6{letter-spacing:0.347040px;}
.ls5{letter-spacing:0.423360px;}
.lse{letter-spacing:0.432000px;}
.ls7{letter-spacing:0.492600px;}
.ls4{letter-spacing:201.185760px;}
.lsc{letter-spacing:846.081600px;}
.ls2{letter-spacing:849.485760px;}
.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;}
}
.ws3{word-spacing:-82.597208px;}
.ws10{word-spacing:-72.000000px;}
.ws5{word-spacing:-66.240000px;}
.ws2{word-spacing:-56.867907px;}
.ws0{word-spacing:-31.589840px;}
.ws8{word-spacing:-23.809080px;}
.ws7{word-spacing:-23.316480px;}
.ws9{word-spacing:-23.146680px;}
.ws6{word-spacing:-22.948080px;}
.wsa{word-spacing:-21.510480px;}
.wsc{word-spacing:-20.874360px;}
.wsb{word-spacing:-16.813440px;}
.wsd{word-spacing:-15.984000px;}
.wse{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.336000px;}
.ws1{word-spacing:-12.362698px;}
.ws4{word-spacing:0.000000px;}
._7{margin-left:-19.977951px;}
._8{margin-left:-16.745034px;}
._6{margin-left:-5.651274px;}
._1{margin-left:-3.264116px;}
._0{margin-left:-1.494123px;}
._4{width:1.992258px;}
._9{width:3.240000px;}
._a{width:4.577337px;}
._f{width:5.963988px;}
._12{width:7.158171px;}
._13{width:8.352000px;}
._3{width:9.677887px;}
._2{width:10.849701px;}
._b{width:11.996598px;}
._d{width:13.020670px;}
._e{width:14.040000px;}
._15{width:18.072000px;}
._14{width:19.440000px;}
._16{width:22.752000px;}
._10{width:24.264000px;}
._11{width:25.344000px;}
._c{width:28.422123px;}
._17{width:45.354825px;}
._18{width:46.442799px;}
._5{width:849.485760px;}
.fc6{color:rgb(17,85,204);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(90,94,234);}
.fc2{color:transparent;}
.fc1{color:rgb(72,213,225);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:29.698647px;}
.fs1{font-size:46.129472px;}
.fs0{font-size:49.826245px;}
.fsb{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fsd{font-size:72.000000px;}
.fsa{font-size:83.520000px;}
.fs4{font-size:87.049524px;}
.fs3{font-size:88.986637px;}
.fsc{font-size:90.720000px;}
.fs9{font-size:96.480000px;}
.fs5{font-size:136.142018px;}
.fs2{font-size:212.193683px;}
.fs7{font-size:308.198538px;}
.y0{bottom:0.000000px;}
.yb{bottom:0.000013px;}
.yf{bottom:2.173170px;}
.ya7{bottom:2.880000px;}
.y2{bottom:3.251309px;}
.y4{bottom:3.394142px;}
.yac{bottom:5.040000px;}
.ya{bottom:5.315969px;}
.y3b{bottom:6.120000px;}
.ya9{bottom:7.200000px;}
.y8{bottom:7.632634px;}
.y3e{bottom:12.240000px;}
.y42{bottom:12.270000px;}
.y6{bottom:13.727202px;}
.y1c{bottom:15.120000px;}
.y1e{bottom:15.150000px;}
.y27{bottom:15.165000px;}
.y25{bottom:21.240000px;}
.y40{bottom:23.790000px;}
.y44{bottom:29.160000px;}
.y54{bottom:29.190000px;}
.y3a{bottom:29.205000px;}
.y3d{bottom:35.280000px;}
.y41{bottom:35.310000px;}
.y1b{bottom:38.160000px;}
.y4e{bottom:40.680000px;}
.y51{bottom:40.710000px;}
.y45{bottom:52.200000px;}
.y53{bottom:52.230000px;}
.y39{bottom:52.245000px;}
.y2b{bottom:54.750000px;}
.y1{bottom:56.790010px;}
.y11{bottom:60.120000px;}
.y1a{bottom:61.200000px;}
.y4d{bottom:63.720000px;}
.y3{bottom:74.430010px;}
.y4a{bottom:75.240000px;}
.y52{bottom:75.270000px;}
.y38{bottom:75.285000px;}
.y2a{bottom:77.430000px;}
.y19{bottom:84.240000px;}
.y4c{bottom:86.760000px;}
.ye{bottom:96.750009px;}
.y49{bottom:98.280000px;}
.y37{bottom:98.325000px;}
.y4b{bottom:109.800000px;}
.y48{bottom:121.350000px;}
.y36{bottom:121.365000px;}
.ybe{bottom:124.236000px;}
.y47{bottom:144.390000px;}
.ybd{bottom:158.430000px;}
.y8b{bottom:192.630000px;}
.ybc{bottom:192.990000px;}
.ybb{bottom:223.635000px;}
.y8a{bottom:224.355000px;}
.yd4{bottom:224.715000px;}
.ya5{bottom:226.875000px;}
.y89{bottom:255.675000px;}
.yd3{bottom:256.395000px;}
.ya4{bottom:263.955000px;}
.y2d{bottom:264.675000px;}
.y88{bottom:287.355000px;}
.yd2{bottom:288.075000px;}
.y50{bottom:296.355000px;}
.y2c{bottom:298.155000px;}
.yaa{bottom:302.115000px;}
.y29{bottom:314.715000px;}
.y87{bottom:319.035000px;}
.yd1{bottom:319.755000px;}
.y86{bottom:350.745000px;}
.yd0{bottom:351.465000px;}
.y85{bottom:382.425000px;}
.ycf{bottom:383.145000px;}
.y4f{bottom:390.345000px;}
.yba{bottom:407.625000px;}
.y28{bottom:409.785000px;}
.y84{bottom:414.105000px;}
.yce{bottom:414.825000px;}
.yb9{bottom:431.025000px;}
.y26{bottom:443.265000px;}
.y83{bottom:445.785000px;}
.ycd{bottom:446.550000px;}
.yb8{bottom:449.790000px;}
.y46{bottom:460.950000px;}
.ya3{bottom:468.870000px;}
.y24{bottom:476.790000px;}
.y82{bottom:477.510000px;}
.ycc{bottom:478.230000px;}
.ya2{bottom:490.470000px;}
.y7{bottom:494.549992px;}
.y81{bottom:509.190000px;}
.ycb{bottom:509.910000px;}
.ya1{bottom:514.950000px;}
.y23{bottom:516.390000px;}
.yab{bottom:532.620000px;}
.y9{bottom:534.869990px;}
.ya0{bottom:539.070000px;}
.y80{bottom:540.870000px;}
.yca{bottom:541.230000px;}
.y22{bottom:549.870000px;}
.y9f{bottom:563.190000px;}
.y7f{bottom:572.580000px;}
.yc9{bottom:572.940000px;}
.y21{bottom:583.380000px;}
.y9e{bottom:587.700000px;}
.y7e{bottom:604.260000px;}
.yc8{bottom:604.620000px;}
.yd{bottom:611.246464px;}
.y9d{bottom:611.820000px;}
.y20{bottom:617.220000px;}
.y60{bottom:617.580000px;}
.y43{bottom:624.060000px;}
.y7d{bottom:635.940000px;}
.y9c{bottom:636.300000px;}
.yb7{bottom:636.660000px;}
.y1f{bottom:650.700000px;}
.y9b{bottom:660.420000px;}
.yc{bottom:665.253214px;}
.yb6{bottom:667.260000px;}
.y7c{bottom:667.620000px;}
.yc7{bottom:667.980000px;}
.y6e{bottom:675.900000px;}
.y1d{bottom:684.180000px;}
.y9a{bottom:684.900000px;}
.y3f{bottom:694.620000px;}
.y5{bottom:695.429984px;}
.y7b{bottom:698.970000px;}
.yc6{bottom:699.690000px;}
.y6d{bottom:707.610000px;}
.y99{bottom:709.050000px;}
.y18{bottom:717.690000px;}
.y7a{bottom:730.650000px;}
.yc5{bottom:731.370000px;}
.y98{bottom:733.170000px;}
.y6c{bottom:739.290000px;}
.y3c{bottom:754.050000px;}
.y97{bottom:757.650000px;}
.y79{bottom:762.330000px;}
.yc4{bottom:763.050000px;}
.y6b{bottom:770.970000px;}
.y96{bottom:781.770000px;}
.y78{bottom:794.010000px;}
.yc3{bottom:797.250000px;}
.y6a{bottom:802.650000px;}
.y95{bottom:806.250000px;}
.y35{bottom:813.810000px;}
.y77{bottom:825.735000px;}
.y94{bottom:830.415000px;}
.y69{bottom:834.375000px;}
.y17{bottom:835.455000px;}
.ya8{bottom:850.575000px;}
.yc2{bottom:852.015000px;}
.yb5{bottom:852.735000px;}
.y93{bottom:854.535000px;}
.y10{bottom:855.517332px;}
.y76{bottom:857.415000px;}
.y68{bottom:866.055000px;}
.yb4{bottom:868.215000px;}
.y16{bottom:870.015000px;}
.ya6{bottom:873.615000px;}
.y92{bottom:879.015000px;}
.y5e{bottom:879.375000px;}
.y75{bottom:889.095000px;}
.y67{bottom:897.735000px;}
.yb3{bottom:899.895000px;}
.y91{bottom:903.135000px;}
.y15{bottom:904.575000px;}
.yc1{bottom:907.095000px;}
.y74{bottom:920.775000px;}
.y5d{bottom:924.735000px;}
.yb2{bottom:925.095000px;}
.y90{bottom:927.615000px;}
.y66{bottom:929.415000px;}
.y14{bottom:939.135000px;}
.yc0{bottom:945.255000px;}
.yb1{bottom:950.655000px;}
.y8f{bottom:951.765000px;}
.y73{bottom:952.485000px;}
.y5c{bottom:954.285000px;}
.y65{bottom:961.125000px;}
.y13{bottom:974.085000px;}
.y8e{bottom:975.885000px;}
.y34{bottom:981.285000px;}
.y5b{bottom:983.085000px;}
.y72{bottom:984.165000px;}
.y64{bottom:992.805000px;}
.y12{bottom:996.765000px;}
.y8d{bottom:1000.365000px;}
.yb0{bottom:1001.085000px;}
.y33{bottom:1004.325000px;}
.y5a{bottom:1011.525000px;}
.y71{bottom:1015.845000px;}
.y63{bottom:1024.485000px;}
.yaf{bottom:1026.285000px;}
.y32{bottom:1027.365000px;}
.y59{bottom:1039.965000px;}
.y70{bottom:1047.525000px;}
.y8c{bottom:1048.965000px;}
.y31{bottom:1051.485000px;}
.y62{bottom:1056.165000px;}
.y58{bottom:1068.405000px;}
.yae{bottom:1076.685000px;}
.y30{bottom:1079.610000px;}
.y6f{bottom:1081.410000px;}
.y57{bottom:1088.970000px;}
.y61{bottom:1090.050000px;}
.yad{bottom:1101.930000px;}
.y2f{bottom:1108.050000px;}
.y56{bottom:1112.370000px;}
.y55{bottom:1135.410000px;}
.y2e{bottom:1136.490000px;}
.ybf{bottom:1141.170000px;}
.y5f{bottom:1194.090000px;}
.he{height:9.720000px;}
.h4{height:14.399999px;}
.h2{height:15.839999px;}
.hf{height:22.273986px;}
.h2c{height:23.040000px;}
.h2f{height:24.120000px;}
.ha{height:27.359999px;}
.h27{height:28.080000px;}
.h8{height:29.879999px;}
.h1a{height:32.040000px;}
.h19{height:32.076000px;}
.h3{height:38.017425px;}
.h1b{height:38.160000px;}
.h5{height:44.699458px;}
.h13{height:50.294531px;}
.h31{height:50.585625px;}
.h29{height:52.624688px;}
.h18{height:54.208125px;}
.h2e{height:57.280781px;}
.h30{height:57.636562px;}
.h21{height:57.996000px;}
.h20{height:58.320000px;}
.h1d{height:58.944375px;}
.h28{height:62.648438px;}
.h15{height:63.414844px;}
.h17{height:64.558125px;}
.h6{height:64.799997px;}
.h22{height:69.120000px;}
.h24{height:69.156000px;}
.h14{height:73.255078px;}
.h1e{height:73.324687px;}
.h26{height:79.645781px;}
.hb{height:84.350988px;}
.h2a{height:84.702656px;}
.h9{height:85.872105px;}
.h25{height:92.196000px;}
.h1c{height:93.276000px;}
.h16{height:101.160000px;}
.hd{height:131.921615px;}
.h1f{height:138.312000px;}
.h23{height:161.310000px;}
.h7{height:204.766904px;}
.h2b{height:214.635000px;}
.h10{height:297.411589px;}
.h2d{height:548.460000px;}
.h11{height:1262.880000px;}
.h12{height:1263.000000px;}
.hc{height:1275.749947px;}
.h0{height:1275.749959px;}
.h1{height:1275.750000px;}
.w15{width:17.640000px;}
.w8{width:18.719999px;}
.w7{width:47.519998px;}
.w2{width:65.159997px;}
.w1{width:86.399996px;}
.w12{width:101.592000px;}
.w10{width:166.755000px;}
.w5{width:211.679991px;}
.wc{width:231.225000px;}
.w3{width:264.239989px;}
.w16{width:309.705000px;}
.w14{width:310.830000px;}
.w18{width:318.705000px;}
.w17{width:318.750000px;}
.w4{width:379.799984px;}
.wd{width:467.790000px;}
.w11{width:484.740000px;}
.w13{width:638.175000px;}
.wf{width:652.935000px;}
.we{width:699.735000px;}
.wa{width:892.500000px;}
.wb{width:892.799987px;}
.w9{width:892.800000px;}
.w6{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:7.920000px;}
.x11{left:10.845000px;}
.x3{left:37.630853px;}
.xa{left:96.876000px;}
.x7{left:127.475987px;}
.xd{left:129.276000px;}
.x1{left:148.319994px;}
.x2{left:151.559994px;}
.xf{left:165.314987px;}
.x4{left:194.759992px;}
.xe{left:297.465000px;}
.x13{left:307.584000px;}
.x16{left:310.785000px;}
.x6{left:316.439987px;}
.xc{left:329.190000px;}
.x14{left:438.300000px;}
.x9{left:446.579987px;}
.x8{left:451.619987px;}
.x15{left:455.940000px;}
.x5{left:551.159977px;}
.x12{left:638.529000px;}
.x17{left:768.164987px;}
.x10{left:791.205000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.605333pt;}
.lsf{letter-spacing:-0.530133pt;}
.lsd{letter-spacing:-0.448000pt;}
.lsa{letter-spacing:-0.368533pt;}
.ls3{letter-spacing:-0.327467pt;}
.ls8{letter-spacing:-0.150933pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.148480pt;}
.ls6{letter-spacing:0.308480pt;}
.ls5{letter-spacing:0.376320pt;}
.lse{letter-spacing:0.384000pt;}
.ls7{letter-spacing:0.437867pt;}
.ls4{letter-spacing:178.831787pt;}
.lsc{letter-spacing:752.072533pt;}
.ls2{letter-spacing:755.098453pt;}
.ws3{word-spacing:-73.419741pt;}
.ws10{word-spacing:-64.000000pt;}
.ws5{word-spacing:-58.880000pt;}
.ws2{word-spacing:-50.549251pt;}
.ws0{word-spacing:-28.079857pt;}
.ws8{word-spacing:-21.163627pt;}
.ws7{word-spacing:-20.725760pt;}
.ws9{word-spacing:-20.574827pt;}
.ws6{word-spacing:-20.398293pt;}
.wsa{word-spacing:-19.120427pt;}
.wsc{word-spacing:-18.554987pt;}
.wsb{word-spacing:-14.945280pt;}
.wsd{word-spacing:-14.208000pt;}
.wse{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.632000pt;}
.ws1{word-spacing:-10.989065pt;}
.ws4{word-spacing:0.000000pt;}
._7{margin-left:-17.758179pt;}
._8{margin-left:-14.884475pt;}
._6{margin-left:-5.023355pt;}
._1{margin-left:-2.901437pt;}
._0{margin-left:-1.328109pt;}
._4{width:1.770896pt;}
._9{width:2.880000pt;}
._a{width:4.068744pt;}
._f{width:5.301323pt;}
._12{width:6.362819pt;}
._13{width:7.424000pt;}
._3{width:8.602566pt;}
._2{width:9.644179pt;}
._b{width:10.663642pt;}
._d{width:11.573929pt;}
._e{width:12.480000pt;}
._15{width:16.064000pt;}
._14{width:17.280000pt;}
._16{width:20.224000pt;}
._10{width:21.568000pt;}
._11{width:22.528000pt;}
._c{width:25.264109pt;}
._17{width:40.315400pt;}
._18{width:41.282488pt;}
._5{width:755.098453pt;}
.fs6{font-size:26.398798pt;}
.fs1{font-size:41.003975pt;}
.fs0{font-size:44.289996pt;}
.fsb{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fsd{font-size:64.000000pt;}
.fsa{font-size:74.240000pt;}
.fs4{font-size:77.377354pt;}
.fs3{font-size:79.099233pt;}
.fsc{font-size:80.640000pt;}
.fs9{font-size:85.760000pt;}
.fs5{font-size:121.015127pt;}
.fs2{font-size:188.616607pt;}
.fs7{font-size:273.954256pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:0.000011pt;}
.yf{bottom:1.931706pt;}
.ya7{bottom:2.560000pt;}
.y2{bottom:2.890052pt;}
.y4{bottom:3.017015pt;}
.yac{bottom:4.480000pt;}
.ya{bottom:4.725306pt;}
.y3b{bottom:5.440000pt;}
.ya9{bottom:6.400000pt;}
.y8{bottom:6.784564pt;}
.y3e{bottom:10.880000pt;}
.y42{bottom:10.906667pt;}
.y6{bottom:12.201957pt;}
.y1c{bottom:13.440000pt;}
.y1e{bottom:13.466667pt;}
.y27{bottom:13.480000pt;}
.y25{bottom:18.880000pt;}
.y40{bottom:21.146667pt;}
.y44{bottom:25.920000pt;}
.y54{bottom:25.946667pt;}
.y3a{bottom:25.960000pt;}
.y3d{bottom:31.360000pt;}
.y41{bottom:31.386667pt;}
.y1b{bottom:33.920000pt;}
.y4e{bottom:36.160000pt;}
.y51{bottom:36.186667pt;}
.y45{bottom:46.400000pt;}
.y53{bottom:46.426667pt;}
.y39{bottom:46.440000pt;}
.y2b{bottom:48.666667pt;}
.y1{bottom:50.480009pt;}
.y11{bottom:53.440000pt;}
.y1a{bottom:54.400000pt;}
.y4d{bottom:56.640000pt;}
.y3{bottom:66.160008pt;}
.y4a{bottom:66.880000pt;}
.y52{bottom:66.906667pt;}
.y38{bottom:66.920000pt;}
.y2a{bottom:68.826667pt;}
.y19{bottom:74.880000pt;}
.y4c{bottom:77.120000pt;}
.ye{bottom:86.000008pt;}
.y49{bottom:87.360000pt;}
.y37{bottom:87.400000pt;}
.y4b{bottom:97.600000pt;}
.y48{bottom:107.866667pt;}
.y36{bottom:107.880000pt;}
.ybe{bottom:110.432000pt;}
.y47{bottom:128.346667pt;}
.ybd{bottom:140.826667pt;}
.y8b{bottom:171.226667pt;}
.ybc{bottom:171.546667pt;}
.ybb{bottom:198.786667pt;}
.y8a{bottom:199.426667pt;}
.yd4{bottom:199.746667pt;}
.ya5{bottom:201.666667pt;}
.y89{bottom:227.266667pt;}
.yd3{bottom:227.906667pt;}
.ya4{bottom:234.626667pt;}
.y2d{bottom:235.266667pt;}
.y88{bottom:255.426667pt;}
.yd2{bottom:256.066667pt;}
.y50{bottom:263.426667pt;}
.y2c{bottom:265.026667pt;}
.yaa{bottom:268.546667pt;}
.y29{bottom:279.746667pt;}
.y87{bottom:283.586667pt;}
.yd1{bottom:284.226667pt;}
.y86{bottom:311.773333pt;}
.yd0{bottom:312.413333pt;}
.y85{bottom:339.933333pt;}
.ycf{bottom:340.573333pt;}
.y4f{bottom:346.973333pt;}
.yba{bottom:362.333333pt;}
.y28{bottom:364.253333pt;}
.y84{bottom:368.093333pt;}
.yce{bottom:368.733333pt;}
.yb9{bottom:383.133333pt;}
.y26{bottom:394.013333pt;}
.y83{bottom:396.253333pt;}
.ycd{bottom:396.933333pt;}
.yb8{bottom:399.813333pt;}
.y46{bottom:409.733333pt;}
.ya3{bottom:416.773333pt;}
.y24{bottom:423.813333pt;}
.y82{bottom:424.453333pt;}
.ycc{bottom:425.093333pt;}
.ya2{bottom:435.973333pt;}
.y7{bottom:439.599993pt;}
.y81{bottom:452.613333pt;}
.ycb{bottom:453.253333pt;}
.ya1{bottom:457.733333pt;}
.y23{bottom:459.013333pt;}
.yab{bottom:473.440000pt;}
.y9{bottom:475.439991pt;}
.ya0{bottom:479.173333pt;}
.y80{bottom:480.773333pt;}
.yca{bottom:481.093333pt;}
.y22{bottom:488.773333pt;}
.y9f{bottom:500.613333pt;}
.y7f{bottom:508.960000pt;}
.yc9{bottom:509.280000pt;}
.y21{bottom:518.560000pt;}
.y9e{bottom:522.400000pt;}
.y7e{bottom:537.120000pt;}
.yc8{bottom:537.440000pt;}
.yd{bottom:543.330190pt;}
.y9d{bottom:543.840000pt;}
.y20{bottom:548.640000pt;}
.y60{bottom:548.960000pt;}
.y43{bottom:554.720000pt;}
.y7d{bottom:565.280000pt;}
.y9c{bottom:565.600000pt;}
.yb7{bottom:565.920000pt;}
.y1f{bottom:578.400000pt;}
.y9b{bottom:587.040000pt;}
.yc{bottom:591.336191pt;}
.yb6{bottom:593.120000pt;}
.y7c{bottom:593.440000pt;}
.yc7{bottom:593.760000pt;}
.y6e{bottom:600.800000pt;}
.y1d{bottom:608.160000pt;}
.y9a{bottom:608.800000pt;}
.y3f{bottom:617.440000pt;}
.y5{bottom:618.159985pt;}
.y7b{bottom:621.306667pt;}
.yc6{bottom:621.946667pt;}
.y6d{bottom:628.986667pt;}
.y99{bottom:630.266667pt;}
.y18{bottom:637.946667pt;}
.y7a{bottom:649.466667pt;}
.yc5{bottom:650.106667pt;}
.y98{bottom:651.706667pt;}
.y6c{bottom:657.146667pt;}
.y3c{bottom:670.266667pt;}
.y97{bottom:673.466667pt;}
.y79{bottom:677.626667pt;}
.yc4{bottom:678.266667pt;}
.y6b{bottom:685.306667pt;}
.y96{bottom:694.906667pt;}
.y78{bottom:705.786667pt;}
.yc3{bottom:708.666667pt;}
.y6a{bottom:713.466667pt;}
.y95{bottom:716.666667pt;}
.y35{bottom:723.386667pt;}
.y77{bottom:733.986667pt;}
.y94{bottom:738.146667pt;}
.y69{bottom:741.666667pt;}
.y17{bottom:742.626667pt;}
.ya8{bottom:756.066667pt;}
.yc2{bottom:757.346667pt;}
.yb5{bottom:757.986667pt;}
.y93{bottom:759.586667pt;}
.y10{bottom:760.459851pt;}
.y76{bottom:762.146667pt;}
.y68{bottom:769.826667pt;}
.yb4{bottom:771.746667pt;}
.y16{bottom:773.346667pt;}
.ya6{bottom:776.546667pt;}
.y92{bottom:781.346667pt;}
.y5e{bottom:781.666667pt;}
.y75{bottom:790.306667pt;}
.y67{bottom:797.986667pt;}
.yb3{bottom:799.906667pt;}
.y91{bottom:802.786667pt;}
.y15{bottom:804.066667pt;}
.yc1{bottom:806.306667pt;}
.y74{bottom:818.466667pt;}
.y5d{bottom:821.986667pt;}
.yb2{bottom:822.306667pt;}
.y90{bottom:824.546667pt;}
.y66{bottom:826.146667pt;}
.y14{bottom:834.786667pt;}
.yc0{bottom:840.226667pt;}
.yb1{bottom:845.026667pt;}
.y8f{bottom:846.013333pt;}
.y73{bottom:846.653333pt;}
.y5c{bottom:848.253333pt;}
.y65{bottom:854.333333pt;}
.y13{bottom:865.853333pt;}
.y8e{bottom:867.453333pt;}
.y34{bottom:872.253333pt;}
.y5b{bottom:873.853333pt;}
.y72{bottom:874.813333pt;}
.y64{bottom:882.493333pt;}
.y12{bottom:886.013333pt;}
.y8d{bottom:889.213333pt;}
.yb0{bottom:889.853333pt;}
.y33{bottom:892.733333pt;}
.y5a{bottom:899.133333pt;}
.y71{bottom:902.973333pt;}
.y63{bottom:910.653333pt;}
.yaf{bottom:912.253333pt;}
.y32{bottom:913.213333pt;}
.y59{bottom:924.413333pt;}
.y70{bottom:931.133333pt;}
.y8c{bottom:932.413333pt;}
.y31{bottom:934.653333pt;}
.y62{bottom:938.813333pt;}
.y58{bottom:949.693333pt;}
.yae{bottom:957.053333pt;}
.y30{bottom:959.653333pt;}
.y6f{bottom:961.253333pt;}
.y57{bottom:967.973333pt;}
.y61{bottom:968.933333pt;}
.yad{bottom:979.493333pt;}
.y2f{bottom:984.933333pt;}
.y56{bottom:988.773333pt;}
.y55{bottom:1009.253333pt;}
.y2e{bottom:1010.213333pt;}
.ybf{bottom:1014.373333pt;}
.y5f{bottom:1061.413333pt;}
.he{height:8.640000pt;}
.h4{height:12.799999pt;}
.h2{height:14.079999pt;}
.hf{height:19.799098pt;}
.h2c{height:20.480000pt;}
.h2f{height:21.440000pt;}
.ha{height:24.319999pt;}
.h27{height:24.960000pt;}
.h8{height:26.559999pt;}
.h1a{height:28.480000pt;}
.h19{height:28.512000pt;}
.h3{height:33.793267pt;}
.h1b{height:33.920000pt;}
.h5{height:39.732851pt;}
.h13{height:44.706250pt;}
.h31{height:44.965000pt;}
.h29{height:46.777500pt;}
.h18{height:48.185000pt;}
.h2e{height:50.916250pt;}
.h30{height:51.232500pt;}
.h21{height:51.552000pt;}
.h20{height:51.840000pt;}
.h1d{height:52.395000pt;}
.h28{height:55.687500pt;}
.h15{height:56.368750pt;}
.h17{height:57.385000pt;}
.h6{height:57.599998pt;}
.h22{height:61.440000pt;}
.h24{height:61.472000pt;}
.h14{height:65.115625pt;}
.h1e{height:65.177500pt;}
.h26{height:70.796250pt;}
.hb{height:74.978656pt;}
.h2a{height:75.291250pt;}
.h9{height:76.330760pt;}
.h25{height:81.952000pt;}
.h1c{height:82.912000pt;}
.h16{height:89.920000pt;}
.hd{height:117.263658pt;}
.h1f{height:122.944000pt;}
.h23{height:143.386667pt;}
.h7{height:182.015026pt;}
.h2b{height:190.786667pt;}
.h10{height:264.365857pt;}
.h2d{height:487.520000pt;}
.h11{height:1122.560000pt;}
.h12{height:1122.666667pt;}
.hc{height:1133.999953pt;}
.h0{height:1133.999964pt;}
.h1{height:1134.000000pt;}
.w15{width:15.680000pt;}
.w8{width:16.639999pt;}
.w7{width:42.239998pt;}
.w2{width:57.919998pt;}
.w1{width:76.799997pt;}
.w12{width:90.304000pt;}
.w10{width:148.226667pt;}
.w5{width:188.159992pt;}
.wc{width:205.533333pt;}
.w3{width:234.879990pt;}
.w16{width:275.293333pt;}
.w14{width:276.293333pt;}
.w18{width:283.293333pt;}
.w17{width:283.333333pt;}
.w4{width:337.599986pt;}
.wd{width:415.813333pt;}
.w11{width:430.880000pt;}
.w13{width:567.266667pt;}
.wf{width:580.386667pt;}
.we{width:621.986667pt;}
.wa{width:793.333333pt;}
.wb{width:793.599988pt;}
.w9{width:793.600000pt;}
.w6{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:7.040000pt;}
.x11{left:9.640000pt;}
.x3{left:33.449647pt;}
.xa{left:86.112000pt;}
.x7{left:113.311988pt;}
.xd{left:114.912000pt;}
.x1{left:131.839995pt;}
.x2{left:134.719994pt;}
.xf{left:146.946655pt;}
.x4{left:173.119993pt;}
.xe{left:264.413333pt;}
.x13{left:273.408000pt;}
.x16{left:276.253333pt;}
.x6{left:281.279988pt;}
.xc{left:292.613333pt;}
.x14{left:389.600000pt;}
.x9{left:396.959988pt;}
.x8{left:401.439988pt;}
.x15{left:405.280000pt;}
.x5{left:489.919980pt;}
.x12{left:567.581333pt;}
.x17{left:682.813322pt;}
.x10{left:703.293333pt;}
}




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