
    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_83757d6178bdd424f58709ce.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.950684;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_18b7f0c3ab7632156866e8dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6dba8439b9b2702600a25ca4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.761230;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_58409199231f693e46bf8bfc.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_45f67530f897fec9e3c71a7a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752441;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_71ff8e8e078a4f6fc60df547.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.074707;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_2d900e2a68fcf4dcba190f82.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914551;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_0839ca5f68d5d36733877115.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2{letter-spacing:-4.464000px;}
.ls7{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.165000px;}
.ls8{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.720000px;}
.ls4{letter-spacing:0.792000px;}
.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:-24.105000px;}
.ws1{word-spacing:-23.940000px;}
.ws4{word-spacing:-18.792000px;}
.ws7{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws8{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws2{word-spacing:0.000000px;}
._2{margin-left:-8.760960px;}
._28{margin-left:-7.668000px;}
._b{margin-left:-6.220800px;}
._23{margin-left:-5.184000px;}
._3{margin-left:-4.145040px;}
._13{margin-left:-2.938560px;}
._1{margin-left:-1.404000px;}
._0{width:1.532160px;}
._6{width:3.312000px;}
._5{width:5.184000px;}
._4{width:6.192000px;}
._7{width:7.555680px;}
._a{width:9.288000px;}
._8{width:10.776000px;}
._9{width:12.228000px;}
._12{width:14.004000px;}
._c{width:15.192000px;}
._d{width:16.488000px;}
._14{width:19.872000px;}
._15{width:21.620880px;}
._1e{width:22.674960px;}
._e{width:23.760000px;}
._f{width:25.323840px;}
._18{width:26.432640px;}
._19{width:27.747360px;}
._1c{width:29.088000px;}
._1d{width:30.497040px;}
._1b{width:32.364000px;}
._1a{width:33.444000px;}
._20{width:34.755360px;}
._25{width:36.288000px;}
._24{width:37.512000px;}
._10{width:38.808000px;}
._11{width:39.879840px;}
._2e{width:41.156160px;}
._2f{width:42.243840px;}
._1f{width:43.272000px;}
._17{width:44.280000px;}
._16{width:45.684000px;}
._26{width:48.168000px;}
._27{width:49.320000px;}
._29{width:50.724000px;}
._22{width:53.892000px;}
._21{width:55.044000px;}
._2b{width:63.072000px;}
._2a{width:64.080000px;}
._2c{width:111.024000px;}
._2d{width:112.392000px;}
._31{width:238.968000px;}
._30{width:433.044000px;}
.fc6{color:rgb(50,62,79);}
.fc8{color:transparent;}
.fc4{color:rgb(196,89,17);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(50,50,50);}
.fc5{color:rgb(12,12,12);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(13,13,13);}
.fs1{font-size:54.000000px;}
.fs2{font-size:63.360000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs7{font-size:120.240000px;}
.y1e{bottom:-9.075000px;}
.y2f{bottom:-1.770000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.060000px;}
.yb6{bottom:4.125000px;}
.yc9{bottom:4.140000px;}
.y34{bottom:4.320000px;}
.yb8{bottom:4.485000px;}
.ycb{bottom:4.500000px;}
.y31{bottom:17.100000px;}
.y1c{bottom:42.405000px;}
.y6{bottom:53.640000px;}
.y5{bottom:57.060000px;}
.y33{bottom:58.320000px;}
.y2b{bottom:81.030000px;}
.yfc{bottom:109.440000px;}
.y64{bottom:113.760000px;}
.ycd{bottom:117.180000px;}
.yc4{bottom:117.540000px;}
.y95{bottom:119.520000px;}
.ya0{bottom:119.880000px;}
.yfb{bottom:130.140000px;}
.y63{bottom:134.460000px;}
.yc3{bottom:138.240000px;}
.y94{bottom:140.220000px;}
.y9c{bottom:140.580000px;}
.yfa{bottom:150.840000px;}
.y62{bottom:155.160000px;}
.ycc{bottom:155.340000px;}
.yc2{bottom:158.940000px;}
.yac{bottom:160.920000px;}
.y93{bottom:161.280000px;}
.yf9{bottom:172.260000px;}
.y61{bottom:175.860000px;}
.yca{bottom:176.040000px;}
.yc1{bottom:179.640000px;}
.yab{bottom:181.620000px;}
.y92{bottom:181.980000px;}
.y26{bottom:184.575000px;}
.y60{bottom:196.560000px;}
.yc8{bottom:197.460000px;}
.yf8{bottom:197.820000px;}
.yc0{bottom:200.340000px;}
.y91{bottom:202.680000px;}
.y5f{bottom:217.290000px;}
.yf7{bottom:218.550000px;}
.ybf{bottom:221.070000px;}
.yc7{bottom:223.050000px;}
.y90{bottom:223.410000px;}
.y5e{bottom:237.990000px;}
.yf6{bottom:239.610000px;}
.ybe{bottom:241.770000px;}
.yc6{bottom:243.750000px;}
.y8f{bottom:244.110000px;}
.y5d{bottom:258.690000px;}
.yf5{bottom:260.310000px;}
.ybd{bottom:262.470000px;}
.ya4{bottom:264.450000px;}
.y8e{bottom:264.810000px;}
.y5c{bottom:279.390000px;}
.yf4{bottom:280.650000px;}
.ybc{bottom:283.170000px;}
.ya3{bottom:285.150000px;}
.y8d{bottom:285.510000px;}
.y21{bottom:288.075000px;}
.y5b{bottom:300.090000px;}
.ybb{bottom:300.285000px;}
.yf3{bottom:301.350000px;}
.ya7{bottom:305.850000px;}
.y8c{bottom:306.210000px;}
.y20{bottom:308.415000px;}
.y5a{bottom:320.790000px;}
.yba{bottom:320.985000px;}
.yf2{bottom:322.410000px;}
.y101{bottom:326.550000px;}
.y8b{bottom:326.910000px;}
.y1f{bottom:334.260000px;}
.y59{bottom:341.490000px;}
.yb9{bottom:341.685000px;}
.yf1{bottom:343.110000px;}
.y100{bottom:347.250000px;}
.y8a{bottom:347.610000px;}
.y2e{bottom:353.190000px;}
.y58{bottom:362.190000px;}
.yb7{bottom:362.385000px;}
.yf0{bottom:363.810000px;}
.yc5{bottom:367.950000px;}
.y89{bottom:368.310000px;}
.y2d{bottom:373.890000px;}
.y57{bottom:382.890000px;}
.yb5{bottom:383.805000px;}
.yef{bottom:384.510000px;}
.y9f{bottom:388.650000px;}
.y88{bottom:389.010000px;}
.y2c{bottom:394.590000px;}
.y56{bottom:403.590000px;}
.yee{bottom:405.210000px;}
.y9e{bottom:409.350000px;}
.y87{bottom:409.710000px;}
.y55{bottom:424.290000px;}
.yed{bottom:425.910000px;}
.yb4{bottom:430.050000px;}
.y86{bottom:430.410000px;}
.y2a{bottom:435.630000px;}
.y54{bottom:444.675000px;}
.yec{bottom:446.655000px;}
.yb3{bottom:450.795000px;}
.y85{bottom:451.155000px;}
.y29{bottom:456.735000px;}
.y53{bottom:465.735000px;}
.yeb{bottom:466.995000px;}
.ya6{bottom:471.495000px;}
.y84{bottom:471.855000px;}
.y28{bottom:477.435000px;}
.y52{bottom:486.435000px;}
.yea{bottom:488.055000px;}
.y9b{bottom:492.195000px;}
.y83{bottom:492.555000px;}
.y27{bottom:498.135000px;}
.ye9{bottom:504.975000px;}
.y51{bottom:507.135000px;}
.y9a{bottom:512.895000px;}
.y82{bottom:513.255000px;}
.ye8{bottom:525.675000px;}
.y50{bottom:527.475000px;}
.ya2{bottom:533.595000px;}
.y81{bottom:533.955000px;}
.y25{bottom:539.175000px;}
.ye7{bottom:547.095000px;}
.y4f{bottom:548.535000px;}
.yaa{bottom:554.295000px;}
.y80{bottom:554.655000px;}
.y24{bottom:560.235000px;}
.y4e{bottom:569.235000px;}
.ye6{bottom:572.655000px;}
.yb2{bottom:574.995000px;}
.y7f{bottom:575.355000px;}
.y23{bottom:580.935000px;}
.y4d{bottom:589.935000px;}
.ye5{bottom:593.355000px;}
.yff{bottom:595.695000px;}
.y7e{bottom:596.055000px;}
.y22{bottom:601.635000px;}
.y4c{bottom:610.635000px;}
.ye4{bottom:614.415000px;}
.yb1{bottom:616.395000px;}
.y7d{bottom:616.755000px;}
.y4b{bottom:631.335000px;}
.ye3{bottom:635.115000px;}
.y104{bottom:637.095000px;}
.y7c{bottom:637.455000px;}
.y4a{bottom:652.035000px;}
.ye2{bottom:655.815000px;}
.y99{bottom:657.795000px;}
.y7b{bottom:658.155000px;}
.y49{bottom:672.735000px;}
.ye1{bottom:676.545000px;}
.y98{bottom:678.525000px;}
.y7a{bottom:678.885000px;}
.y48{bottom:693.465000px;}
.ye0{bottom:696.885000px;}
.ya5{bottom:699.225000px;}
.y79{bottom:699.585000px;}
.y47{bottom:714.165000px;}
.ydf{bottom:717.585000px;}
.y78{bottom:720.285000px;}
.y46{bottom:734.865000px;}
.yde{bottom:738.645000px;}
.yb0{bottom:740.625000px;}
.y77{bottom:740.985000px;}
.y45{bottom:755.565000px;}
.ydd{bottom:759.345000px;}
.yaf{bottom:761.325000px;}
.y76{bottom:761.685000px;}
.y44{bottom:776.265000px;}
.ydc{bottom:780.045000px;}
.y97{bottom:782.025000px;}
.y75{bottom:782.385000px;}
.y43{bottom:796.965000px;}
.ydb{bottom:800.745000px;}
.y96{bottom:802.725000px;}
.y74{bottom:803.085000px;}
.y42{bottom:817.665000px;}
.yda{bottom:821.445000px;}
.y9d{bottom:823.425000px;}
.y73{bottom:823.785000px;}
.y1b{bottom:838.260000px;}
.y41{bottom:838.365000px;}
.yd9{bottom:842.145000px;}
.y72{bottom:844.485000px;}
.y1d{bottom:856.365000px;}
.y40{bottom:859.065000px;}
.yd8{bottom:862.845000px;}
.y103{bottom:864.825000px;}
.y71{bottom:865.185000px;}
.y14{bottom:868.425000px;}
.y3f{bottom:879.765000px;}
.yd7{bottom:883.545000px;}
.y102{bottom:885.525000px;}
.y70{bottom:885.885000px;}
.y13{bottom:886.605000px;}
.y3e{bottom:900.465000px;}
.yd6{bottom:904.245000px;}
.y12{bottom:904.605000px;}
.yfe{bottom:906.225000px;}
.y6f{bottom:906.585000px;}
.y3d{bottom:921.210000px;}
.y11{bottom:922.830000px;}
.yd5{bottom:924.990000px;}
.ya9{bottom:926.970000px;}
.y6e{bottom:927.330000px;}
.y10{bottom:941.010000px;}
.y3c{bottom:941.910000px;}
.yd4{bottom:945.690000px;}
.ya1{bottom:947.670000px;}
.y6d{bottom:948.030000px;}
.yf{bottom:959.010000px;}
.y3b{bottom:962.610000px;}
.yd3{bottom:966.390000px;}
.yae{bottom:968.370000px;}
.y6c{bottom:968.730000px;}
.ye{bottom:977.190000px;}
.y3a{bottom:983.310000px;}
.yd2{bottom:986.730000px;}
.yad{bottom:989.070000px;}
.y6b{bottom:989.430000px;}
.yd{bottom:995.370000px;}
.y1a{bottom:1001.670000px;}
.y39{bottom:1004.010000px;}
.yd1{bottom:1007.790000px;}
.y6a{bottom:1010.130000px;}
.yc{bottom:1013.370000px;}
.y19{bottom:1021.470000px;}
.yd0{bottom:1024.710000px;}
.y38{bottom:1027.230000px;}
.y69{bottom:1030.830000px;}
.yb{bottom:1031.550000px;}
.y18{bottom:1041.990000px;}
.ycf{bottom:1045.410000px;}
.ya{bottom:1049.550000px;}
.y68{bottom:1051.530000px;}
.y37{bottom:1058.550000px;}
.y65{bottom:1058.730000px;}
.yce{bottom:1066.830000px;}
.y9{bottom:1067.730000px;}
.y17{bottom:1069.890000px;}
.yfd{bottom:1071.870000px;}
.y67{bottom:1072.230000px;}
.y36{bottom:1076.730000px;}
.y8{bottom:1086.990000px;}
.ya8{bottom:1092.570000px;}
.y66{bottom:1092.930000px;}
.y35{bottom:1094.910000px;}
.y16{bottom:1100.310000px;}
.y4{bottom:1113.810000px;}
.y15{bottom:1130.730000px;}
.y3{bottom:1132.530000px;}
.y2{bottom:1159.560000px;}
.y1{bottom:1186.740000px;}
.y30{bottom:1201.860000px;}
.y32{bottom:1218.960000px;}
.h4{height:15.480000px;}
.h15{height:20.685000px;}
.h17{height:20.695500px;}
.h12{height:20.700000px;}
.h16{height:20.736000px;}
.h14{height:50.308594px;}
.hf{height:51.480000px;}
.h3{height:52.998047px;}
.h7{height:53.648438px;}
.h8{height:61.920000px;}
.h5{height:62.184375px;}
.ha{height:62.357344px;}
.h10{height:69.637852px;}
.hd{height:70.664062px;}
.he{height:70.805391px;}
.hc{height:72.562500px;}
.h2{height:76.355508px;}
.h11{height:82.676953px;}
.h9{height:84.898125px;}
.h6{height:86.115234px;}
.h13{height:118.008984px;}
.hb{height:325.080000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:27.000000px;}
.w9{width:34.200000px;}
.w12{width:34.236000px;}
.w6{width:36.000000px;}
.w10{width:47.700000px;}
.wb{width:47.736000px;}
.w14{width:57.960000px;}
.wa{width:60.300000px;}
.wf{width:60.336000px;}
.w13{width:62.445000px;}
.w11{width:66.960000px;}
.w8{width:78.336000px;}
.we{width:82.791000px;}
.wc{width:93.045000px;}
.w16{width:93.096000px;}
.wd{width:96.321000px;}
.w7{width:121.131000px;}
.w17{width:142.581000px;}
.w5{width:248.400000px;}
.w15{width:292.890000px;}
.w4{width:465.480000px;}
.w3{width:692.280000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.440000px;}
.x18{left:8.100000px;}
.x10{left:10.875000px;}
.xa{left:57.600000px;}
.xc{left:64.650000px;}
.xb{left:97.560000px;}
.x17{left:126.936000px;}
.x4{left:135.036000px;}
.x6{left:149.616000px;}
.x1{left:185.970000px;}
.x2c{left:189.030000px;}
.x1f{left:209.730000px;}
.x13{left:225.750000px;}
.xd{left:232.410000px;}
.x20{left:243.930000px;}
.x19{left:248.070000px;}
.x9{left:260.535000px;}
.x26{left:282.315000px;}
.x8{left:303.195000px;}
.x21{left:304.275000px;}
.x7{left:313.635000px;}
.x3{left:322.455000px;}
.x1a{left:326.415000px;}
.x2{left:331.815000px;}
.x27{left:342.615000px;}
.xe{left:346.245000px;}
.x22{left:351.975000px;}
.xf{left:354.060000px;}
.x1b{left:360.615000px;}
.x11{left:364.935000px;}
.x28{left:390.315000px;}
.x16{left:409.395000px;}
.x23{left:418.935000px;}
.x1c{left:420.915000px;}
.x15{left:428.400000px;}
.x5{left:432.900000px;}
.x29{left:438.015000px;}
.x25{left:444.180000px;}
.x14{left:446.505000px;}
.x24{left:453.180000px;}
.x1d{left:468.660000px;}
.x2a{left:472.260000px;}
.x2b{left:512.940000px;}
.x1e{left:561.720000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-3.968000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.146667pt;}
.ls8{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls4{letter-spacing:0.704000pt;}
.ws0{word-spacing:-21.426667pt;}
.ws1{word-spacing:-21.280000pt;}
.ws4{word-spacing:-16.704000pt;}
.ws7{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws8{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws2{word-spacing:0.000000pt;}
._2{margin-left:-7.787520pt;}
._28{margin-left:-6.816000pt;}
._b{margin-left:-5.529600pt;}
._23{margin-left:-4.608000pt;}
._3{margin-left:-3.684480pt;}
._13{margin-left:-2.612053pt;}
._1{margin-left:-1.248000pt;}
._0{width:1.361920pt;}
._6{width:2.944000pt;}
._5{width:4.608000pt;}
._4{width:5.504000pt;}
._7{width:6.716160pt;}
._a{width:8.256000pt;}
._8{width:9.578667pt;}
._9{width:10.869333pt;}
._12{width:12.448000pt;}
._c{width:13.504000pt;}
._d{width:14.656000pt;}
._14{width:17.664000pt;}
._15{width:19.218560pt;}
._1e{width:20.155520pt;}
._e{width:21.120000pt;}
._f{width:22.510080pt;}
._18{width:23.495680pt;}
._19{width:24.664320pt;}
._1c{width:25.856000pt;}
._1d{width:27.108480pt;}
._1b{width:28.768000pt;}
._1a{width:29.728000pt;}
._20{width:30.893653pt;}
._25{width:32.256000pt;}
._24{width:33.344000pt;}
._10{width:34.496000pt;}
._11{width:35.448747pt;}
._2e{width:36.583253pt;}
._2f{width:37.550080pt;}
._1f{width:38.464000pt;}
._17{width:39.360000pt;}
._16{width:40.608000pt;}
._26{width:42.816000pt;}
._27{width:43.840000pt;}
._29{width:45.088000pt;}
._22{width:47.904000pt;}
._21{width:48.928000pt;}
._2b{width:56.064000pt;}
._2a{width:56.960000pt;}
._2c{width:98.688000pt;}
._2d{width:99.904000pt;}
._31{width:212.416000pt;}
._30{width:384.928000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:56.320000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs7{font-size:106.880000pt;}
.y1e{bottom:-8.066667pt;}
.y2f{bottom:-1.573333pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.720000pt;}
.yb6{bottom:3.666667pt;}
.yc9{bottom:3.680000pt;}
.y34{bottom:3.840000pt;}
.yb8{bottom:3.986667pt;}
.ycb{bottom:4.000000pt;}
.y31{bottom:15.200000pt;}
.y1c{bottom:37.693333pt;}
.y6{bottom:47.680000pt;}
.y5{bottom:50.720000pt;}
.y33{bottom:51.840000pt;}
.y2b{bottom:72.026667pt;}
.yfc{bottom:97.280000pt;}
.y64{bottom:101.120000pt;}
.ycd{bottom:104.160000pt;}
.yc4{bottom:104.480000pt;}
.y95{bottom:106.240000pt;}
.ya0{bottom:106.560000pt;}
.yfb{bottom:115.680000pt;}
.y63{bottom:119.520000pt;}
.yc3{bottom:122.880000pt;}
.y94{bottom:124.640000pt;}
.y9c{bottom:124.960000pt;}
.yfa{bottom:134.080000pt;}
.y62{bottom:137.920000pt;}
.ycc{bottom:138.080000pt;}
.yc2{bottom:141.280000pt;}
.yac{bottom:143.040000pt;}
.y93{bottom:143.360000pt;}
.yf9{bottom:153.120000pt;}
.y61{bottom:156.320000pt;}
.yca{bottom:156.480000pt;}
.yc1{bottom:159.680000pt;}
.yab{bottom:161.440000pt;}
.y92{bottom:161.760000pt;}
.y26{bottom:164.066667pt;}
.y60{bottom:174.720000pt;}
.yc8{bottom:175.520000pt;}
.yf8{bottom:175.840000pt;}
.yc0{bottom:178.080000pt;}
.y91{bottom:180.160000pt;}
.y5f{bottom:193.146667pt;}
.yf7{bottom:194.266667pt;}
.ybf{bottom:196.506667pt;}
.yc7{bottom:198.266667pt;}
.y90{bottom:198.586667pt;}
.y5e{bottom:211.546667pt;}
.yf6{bottom:212.986667pt;}
.ybe{bottom:214.906667pt;}
.yc6{bottom:216.666667pt;}
.y8f{bottom:216.986667pt;}
.y5d{bottom:229.946667pt;}
.yf5{bottom:231.386667pt;}
.ybd{bottom:233.306667pt;}
.ya4{bottom:235.066667pt;}
.y8e{bottom:235.386667pt;}
.y5c{bottom:248.346667pt;}
.yf4{bottom:249.466667pt;}
.ybc{bottom:251.706667pt;}
.ya3{bottom:253.466667pt;}
.y8d{bottom:253.786667pt;}
.y21{bottom:256.066667pt;}
.y5b{bottom:266.746667pt;}
.ybb{bottom:266.920000pt;}
.yf3{bottom:267.866667pt;}
.ya7{bottom:271.866667pt;}
.y8c{bottom:272.186667pt;}
.y20{bottom:274.146667pt;}
.y5a{bottom:285.146667pt;}
.yba{bottom:285.320000pt;}
.yf2{bottom:286.586667pt;}
.y101{bottom:290.266667pt;}
.y8b{bottom:290.586667pt;}
.y1f{bottom:297.120000pt;}
.y59{bottom:303.546667pt;}
.yb9{bottom:303.720000pt;}
.yf1{bottom:304.986667pt;}
.y100{bottom:308.666667pt;}
.y8a{bottom:308.986667pt;}
.y2e{bottom:313.946667pt;}
.y58{bottom:321.946667pt;}
.yb7{bottom:322.120000pt;}
.yf0{bottom:323.386667pt;}
.yc5{bottom:327.066667pt;}
.y89{bottom:327.386667pt;}
.y2d{bottom:332.346667pt;}
.y57{bottom:340.346667pt;}
.yb5{bottom:341.160000pt;}
.yef{bottom:341.786667pt;}
.y9f{bottom:345.466667pt;}
.y88{bottom:345.786667pt;}
.y2c{bottom:350.746667pt;}
.y56{bottom:358.746667pt;}
.yee{bottom:360.186667pt;}
.y9e{bottom:363.866667pt;}
.y87{bottom:364.186667pt;}
.y55{bottom:377.146667pt;}
.yed{bottom:378.586667pt;}
.yb4{bottom:382.266667pt;}
.y86{bottom:382.586667pt;}
.y2a{bottom:387.226667pt;}
.y54{bottom:395.266667pt;}
.yec{bottom:397.026667pt;}
.yb3{bottom:400.706667pt;}
.y85{bottom:401.026667pt;}
.y29{bottom:405.986667pt;}
.y53{bottom:413.986667pt;}
.yeb{bottom:415.106667pt;}
.ya6{bottom:419.106667pt;}
.y84{bottom:419.426667pt;}
.y28{bottom:424.386667pt;}
.y52{bottom:432.386667pt;}
.yea{bottom:433.826667pt;}
.y9b{bottom:437.506667pt;}
.y83{bottom:437.826667pt;}
.y27{bottom:442.786667pt;}
.ye9{bottom:448.866667pt;}
.y51{bottom:450.786667pt;}
.y9a{bottom:455.906667pt;}
.y82{bottom:456.226667pt;}
.ye8{bottom:467.266667pt;}
.y50{bottom:468.866667pt;}
.ya2{bottom:474.306667pt;}
.y81{bottom:474.626667pt;}
.y25{bottom:479.266667pt;}
.ye7{bottom:486.306667pt;}
.y4f{bottom:487.586667pt;}
.yaa{bottom:492.706667pt;}
.y80{bottom:493.026667pt;}
.y24{bottom:497.986667pt;}
.y4e{bottom:505.986667pt;}
.ye6{bottom:509.026667pt;}
.yb2{bottom:511.106667pt;}
.y7f{bottom:511.426667pt;}
.y23{bottom:516.386667pt;}
.y4d{bottom:524.386667pt;}
.ye5{bottom:527.426667pt;}
.yff{bottom:529.506667pt;}
.y7e{bottom:529.826667pt;}
.y22{bottom:534.786667pt;}
.y4c{bottom:542.786667pt;}
.ye4{bottom:546.146667pt;}
.yb1{bottom:547.906667pt;}
.y7d{bottom:548.226667pt;}
.y4b{bottom:561.186667pt;}
.ye3{bottom:564.546667pt;}
.y104{bottom:566.306667pt;}
.y7c{bottom:566.626667pt;}
.y4a{bottom:579.586667pt;}
.ye2{bottom:582.946667pt;}
.y99{bottom:584.706667pt;}
.y7b{bottom:585.026667pt;}
.y49{bottom:597.986667pt;}
.ye1{bottom:601.373333pt;}
.y98{bottom:603.133333pt;}
.y7a{bottom:603.453333pt;}
.y48{bottom:616.413333pt;}
.ye0{bottom:619.453333pt;}
.ya5{bottom:621.533333pt;}
.y79{bottom:621.853333pt;}
.y47{bottom:634.813333pt;}
.ydf{bottom:637.853333pt;}
.y78{bottom:640.253333pt;}
.y46{bottom:653.213333pt;}
.yde{bottom:656.573333pt;}
.yb0{bottom:658.333333pt;}
.y77{bottom:658.653333pt;}
.y45{bottom:671.613333pt;}
.ydd{bottom:674.973333pt;}
.yaf{bottom:676.733333pt;}
.y76{bottom:677.053333pt;}
.y44{bottom:690.013333pt;}
.ydc{bottom:693.373333pt;}
.y97{bottom:695.133333pt;}
.y75{bottom:695.453333pt;}
.y43{bottom:708.413333pt;}
.ydb{bottom:711.773333pt;}
.y96{bottom:713.533333pt;}
.y74{bottom:713.853333pt;}
.y42{bottom:726.813333pt;}
.yda{bottom:730.173333pt;}
.y9d{bottom:731.933333pt;}
.y73{bottom:732.253333pt;}
.y1b{bottom:745.120000pt;}
.y41{bottom:745.213333pt;}
.yd9{bottom:748.573333pt;}
.y72{bottom:750.653333pt;}
.y1d{bottom:761.213333pt;}
.y40{bottom:763.613333pt;}
.yd8{bottom:766.973333pt;}
.y103{bottom:768.733333pt;}
.y71{bottom:769.053333pt;}
.y14{bottom:771.933333pt;}
.y3f{bottom:782.013333pt;}
.yd7{bottom:785.373333pt;}
.y102{bottom:787.133333pt;}
.y70{bottom:787.453333pt;}
.y13{bottom:788.093333pt;}
.y3e{bottom:800.413333pt;}
.yd6{bottom:803.773333pt;}
.y12{bottom:804.093333pt;}
.yfe{bottom:805.533333pt;}
.y6f{bottom:805.853333pt;}
.y3d{bottom:818.853333pt;}
.y11{bottom:820.293333pt;}
.yd5{bottom:822.213333pt;}
.ya9{bottom:823.973333pt;}
.y6e{bottom:824.293333pt;}
.y10{bottom:836.453333pt;}
.y3c{bottom:837.253333pt;}
.yd4{bottom:840.613333pt;}
.ya1{bottom:842.373333pt;}
.y6d{bottom:842.693333pt;}
.yf{bottom:852.453333pt;}
.y3b{bottom:855.653333pt;}
.yd3{bottom:859.013333pt;}
.yae{bottom:860.773333pt;}
.y6c{bottom:861.093333pt;}
.ye{bottom:868.613333pt;}
.y3a{bottom:874.053333pt;}
.yd2{bottom:877.093333pt;}
.yad{bottom:879.173333pt;}
.y6b{bottom:879.493333pt;}
.yd{bottom:884.773333pt;}
.y1a{bottom:890.373333pt;}
.y39{bottom:892.453333pt;}
.yd1{bottom:895.813333pt;}
.y6a{bottom:897.893333pt;}
.yc{bottom:900.773333pt;}
.y19{bottom:907.973333pt;}
.yd0{bottom:910.853333pt;}
.y38{bottom:913.093333pt;}
.y69{bottom:916.293333pt;}
.yb{bottom:916.933333pt;}
.y18{bottom:926.213333pt;}
.ycf{bottom:929.253333pt;}
.ya{bottom:932.933333pt;}
.y68{bottom:934.693333pt;}
.y37{bottom:940.933333pt;}
.y65{bottom:941.093333pt;}
.yce{bottom:948.293333pt;}
.y9{bottom:949.093333pt;}
.y17{bottom:951.013333pt;}
.yfd{bottom:952.773333pt;}
.y67{bottom:953.093333pt;}
.y36{bottom:957.093333pt;}
.y8{bottom:966.213333pt;}
.ya8{bottom:971.173333pt;}
.y66{bottom:971.493333pt;}
.y35{bottom:973.253333pt;}
.y16{bottom:978.053333pt;}
.y4{bottom:990.053333pt;}
.y15{bottom:1005.093333pt;}
.y3{bottom:1006.693333pt;}
.y2{bottom:1030.720000pt;}
.y1{bottom:1054.880000pt;}
.y30{bottom:1068.320000pt;}
.y32{bottom:1083.520000pt;}
.h4{height:13.760000pt;}
.h15{height:18.386667pt;}
.h17{height:18.396000pt;}
.h12{height:18.400000pt;}
.h16{height:18.432000pt;}
.h14{height:44.718750pt;}
.hf{height:45.760000pt;}
.h3{height:47.109375pt;}
.h7{height:47.687500pt;}
.h8{height:55.040000pt;}
.h5{height:55.275000pt;}
.ha{height:55.428750pt;}
.h10{height:61.900312pt;}
.hd{height:62.812500pt;}
.he{height:62.938125pt;}
.hc{height:64.500000pt;}
.h2{height:67.871563pt;}
.h11{height:73.490625pt;}
.h9{height:75.465000pt;}
.h6{height:76.546875pt;}
.h13{height:104.896875pt;}
.hb{height:288.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:24.000000pt;}
.w9{width:30.400000pt;}
.w12{width:30.432000pt;}
.w6{width:32.000000pt;}
.w10{width:42.400000pt;}
.wb{width:42.432000pt;}
.w14{width:51.520000pt;}
.wa{width:53.600000pt;}
.wf{width:53.632000pt;}
.w13{width:55.506667pt;}
.w11{width:59.520000pt;}
.w8{width:69.632000pt;}
.we{width:73.592000pt;}
.wc{width:82.706667pt;}
.w16{width:82.752000pt;}
.wd{width:85.618667pt;}
.w7{width:107.672000pt;}
.w17{width:126.738667pt;}
.w5{width:220.800000pt;}
.w15{width:260.346667pt;}
.w4{width:413.760000pt;}
.w3{width:615.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.280000pt;}
.x18{left:7.200000pt;}
.x10{left:9.666667pt;}
.xa{left:51.200000pt;}
.xc{left:57.466667pt;}
.xb{left:86.720000pt;}
.x17{left:112.832000pt;}
.x4{left:120.032000pt;}
.x6{left:132.992000pt;}
.x1{left:165.306667pt;}
.x2c{left:168.026667pt;}
.x1f{left:186.426667pt;}
.x13{left:200.666667pt;}
.xd{left:206.586667pt;}
.x20{left:216.826667pt;}
.x19{left:220.506667pt;}
.x9{left:231.586667pt;}
.x26{left:250.946667pt;}
.x8{left:269.506667pt;}
.x21{left:270.466667pt;}
.x7{left:278.786667pt;}
.x3{left:286.626667pt;}
.x1a{left:290.146667pt;}
.x2{left:294.946667pt;}
.x27{left:304.546667pt;}
.xe{left:307.773333pt;}
.x22{left:312.866667pt;}
.xf{left:314.720000pt;}
.x1b{left:320.546667pt;}
.x11{left:324.386667pt;}
.x28{left:346.946667pt;}
.x16{left:363.906667pt;}
.x23{left:372.386667pt;}
.x1c{left:374.146667pt;}
.x15{left:380.800000pt;}
.x5{left:384.800000pt;}
.x29{left:389.346667pt;}
.x25{left:394.826667pt;}
.x14{left:396.893333pt;}
.x24{left:402.826667pt;}
.x1d{left:416.586667pt;}
.x2a{left:419.786667pt;}
.x2b{left:455.946667pt;}
.x1e{left:499.306667pt;}
}




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