
    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_64b5f751acc54e32b4abedc4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.064453;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_e66ffacba9caef32918b728b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.691406;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_2e30bf2fbdfef6ec38965e45.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d5294d0cfcf06d544a45085a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.080566;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_ef002a8dbed18c20cd794bb2.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_53e42bd6d523b057cbed5ffe.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5fe5fd0daa456cea960576de.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_15e9b3bc886dcb0c238bacdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893555;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_004280673dd9ce84ac21109c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_4ca097ae661f7b851cdd6a1b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.956543;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);}
.v2{vertical-align:-82.980000px;}
.v1{vertical-align:-81.360000px;}
.v0{vertical-align:0.000000px;}
.ls2d{letter-spacing:-2.160000px;}
.ls1e{letter-spacing:-1.008000px;}
.ls1f{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.567600px;}
.ls24{letter-spacing:-0.432000px;}
.ls9{letter-spacing:-0.397200px;}
.ls1a{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.262200px;}
.ls2f{letter-spacing:-0.169800px;}
.ls30{letter-spacing:-0.158400px;}
.ls28{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.025920px;}
.ls8{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.025920px;}
.ls1b{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.109200px;}
.ls31{letter-spacing:0.123600px;}
.ls1c{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.152400px;}
.ls29{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.296640px;}
.ls18{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.432000px;}
.ls2e{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.745920px;}
.ls1{letter-spacing:0.840000px;}
.ls26{letter-spacing:1.080000px;}
.lse{letter-spacing:2.160000px;}
.lsc{letter-spacing:2.880000px;}
.ls11{letter-spacing:3.600000px;}
.ls10{letter-spacing:5.040000px;}
.ls25{letter-spacing:7.200000px;}
.ls21{letter-spacing:7.920000px;}
.lsd{letter-spacing:8.640000px;}
.ls27{letter-spacing:9.360000px;}
.ls2c{letter-spacing:10.080000px;}
.ls5{letter-spacing:11.520000px;}
.ls1d{letter-spacing:15.840000px;}
.ls23{letter-spacing:23.760000px;}
.ls32{letter-spacing:34.841280px;}
.lsb{letter-spacing:50.400000px;}
.ls2a{letter-spacing:56.880000px;}
.lsf{letter-spacing:62.040000px;}
.ls2b{letter-spacing:67.961280px;}
.ls22{letter-spacing:76.440000px;}
.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;}
}
.ws1{word-spacing:-21.060000px;}
.ws4{word-spacing:-19.457280px;}
.ws0{word-spacing:-19.440000px;}
.ws3{word-spacing:-19.422720px;}
.ws2{word-spacing:-19.414080px;}
.ws8{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.000000px;}
.ws9{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.297800px;}
.ws5{word-spacing:0.000000px;}
._10{margin-left:-2.086080px;}
._5{margin-left:-1.008000px;}
._0{width:1.244160px;}
._6{width:2.942880px;}
._b{width:4.106880px;}
._c{width:5.512320px;}
._d{width:6.888960px;}
._9{width:7.963200px;}
._8{width:9.207360px;}
._a{width:10.863360px;}
._e{width:12.003840px;}
._13{width:13.291200px;}
._17{width:14.599680px;}
._16{width:15.768000px;}
._1a{width:16.848000px;}
._14{width:19.080000px;}
._19{width:20.376000px;}
._18{width:21.744000px;}
._7{width:23.713920px;}
._12{width:25.054080px;}
._11{width:26.640000px;}
._15{width:29.160000px;}
._f{width:35.372160px;}
._2{width:465.960000px;}
._1{width:480.335520px;}
._4{width:756.300000px;}
._3{width:831.888480px;}
._1b{width:847.740000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:131.760000px;}
.fs5{font-size:326.880000px;}
.y0{bottom:0.000000px;}
.ye{bottom:0.180000px;}
.y67{bottom:4.320000px;}
.ycf{bottom:4.500000px;}
.yd1{bottom:14.940000px;}
.yc{bottom:21.240000px;}
.yd{bottom:31.140000px;}
.yb{bottom:41.940000px;}
.y5{bottom:57.600000px;}
.ya{bottom:62.640000px;}
.y4{bottom:86.940000px;}
.y3{bottom:119.880000px;}
.ya2{bottom:142.956000px;}
.yac{bottom:143.316000px;}
.y65{bottom:144.216000px;}
.y8e{bottom:146.016000px;}
.yb6{bottom:147.276000px;}
.y34{bottom:150.870000px;}
.ya1{bottom:163.650000px;}
.yab{bottom:164.010000px;}
.y64{bottom:164.910000px;}
.y8d{bottom:166.710000px;}
.yb5{bottom:167.970000px;}
.y33{bottom:169.770000px;}
.ya0{bottom:180.030000px;}
.y8c{bottom:182.910000px;}
.yb4{bottom:184.170000px;}
.yaa{bottom:184.710000px;}
.ycd{bottom:185.250000px;}
.y63{bottom:185.610000px;}
.y32{bottom:188.850000px;}
.ycc{bottom:204.150000px;}
.ya9{bottom:205.410000px;}
.y62{bottom:206.310000px;}
.y31{bottom:207.750000px;}
.ycb{bottom:223.230000px;}
.ya8{bottom:226.110000px;}
.y30{bottom:226.650000px;}
.y61{bottom:227.010000px;}
.yca{bottom:242.130000px;}
.y2f{bottom:245.730000px;}
.ya7{bottom:246.810000px;}
.y60{bottom:247.710000px;}
.yc9{bottom:261.210000px;}
.y2e{bottom:264.630000px;}
.ya6{bottom:267.510000px;}
.y5f{bottom:268.410000px;}
.yc8{bottom:280.110000px;}
.y2d{bottom:283.710000px;}
.ya5{bottom:288.210000px;}
.y5e{bottom:289.110000px;}
.yc7{bottom:299.010000px;}
.y2c{bottom:302.610000px;}
.ya4{bottom:308.910000px;}
.y5d{bottom:309.810000px;}
.yc6{bottom:318.090000px;}
.y2b{bottom:321.690000px;}
.ya3{bottom:325.290000px;}
.y5c{bottom:330.510000px;}
.yc5{bottom:336.990000px;}
.y2a{bottom:340.590000px;}
.y5b{bottom:351.210000px;}
.yc4{bottom:356.070000px;}
.y29{bottom:359.490000px;}
.y5a{bottom:371.910000px;}
.yc3{bottom:374.970000px;}
.y28{bottom:378.930000px;}
.y59{bottom:392.655000px;}
.yc2{bottom:393.915000px;}
.y27{bottom:400.035000px;}
.yc1{bottom:412.995000px;}
.y58{bottom:413.355000px;}
.y8b{bottom:416.415000px;}
.y26{bottom:422.355000px;}
.yc0{bottom:431.895000px;}
.y57{bottom:434.055000px;}
.y8a{bottom:435.855000px;}
.y25{bottom:444.855000px;}
.ybf{bottom:450.975000px;}
.y56{bottom:454.755000px;}
.y89{bottom:456.555000px;}
.y24{bottom:466.815000px;}
.ybe{bottom:469.875000px;}
.y55{bottom:475.455000px;}
.y88{bottom:477.255000px;}
.ybd{bottom:488.775000px;}
.y23{bottom:489.675000px;}
.y54{bottom:496.155000px;}
.y87{bottom:497.955000px;}
.ybc{bottom:507.855000px;}
.y22{bottom:512.175000px;}
.y53{bottom:516.855000px;}
.y86{bottom:518.655000px;}
.ybb{bottom:526.755000px;}
.y21{bottom:534.495000px;}
.y52{bottom:537.555000px;}
.y85{bottom:539.355000px;}
.yba{bottom:545.835000px;}
.yb3{bottom:549.795000px;}
.y20{bottom:556.455000px;}
.y51{bottom:558.255000px;}
.y84{bottom:560.055000px;}
.yb9{bottom:564.735000px;}
.yb2{bottom:570.495000px;}
.y9f{bottom:574.275000px;}
.y50{bottom:578.955000px;}
.y1f{bottom:579.315000px;}
.y83{bottom:580.755000px;}
.yb8{bottom:583.635000px;}
.yb1{bottom:591.195000px;}
.y9e{bottom:594.975000px;}
.y4f{bottom:599.655000px;}
.y82{bottom:601.455000px;}
.y1e{bottom:601.815000px;}
.yb7{bottom:602.715000px;}
.yb0{bottom:611.895000px;}
.y9d{bottom:615.675000px;}
.y4e{bottom:620.355000px;}
.y81{bottom:622.155000px;}
.y1d{bottom:624.315000px;}
.yaf{bottom:632.625000px;}
.y9c{bottom:636.405000px;}
.y4d{bottom:641.085000px;}
.y80{bottom:642.885000px;}
.y1c{bottom:646.665000px;}
.yae{bottom:653.325000px;}
.y9b{bottom:657.105000px;}
.y4c{bottom:661.785000px;}
.y7f{bottom:663.585000px;}
.y1b{bottom:669.165000px;}
.yad{bottom:669.705000px;}
.y9a{bottom:677.805000px;}
.y4b{bottom:682.485000px;}
.y7e{bottom:684.285000px;}
.y1a{bottom:690.945000px;}
.y99{bottom:698.505000px;}
.y4a{bottom:703.185000px;}
.y7d{bottom:704.985000px;}
.y19{bottom:713.985000px;}
.y98{bottom:719.205000px;}
.y49{bottom:723.885000px;}
.y7c{bottom:725.685000px;}
.y18{bottom:736.305000px;}
.y97{bottom:739.905000px;}
.y48{bottom:744.585000px;}
.y7b{bottom:746.385000px;}
.y17{bottom:758.805000px;}
.y96{bottom:760.605000px;}
.y47{bottom:765.285000px;}
.y7a{bottom:767.085000px;}
.y16{bottom:780.765000px;}
.y95{bottom:781.305000px;}
.y46{bottom:785.985000px;}
.y79{bottom:787.785000px;}
.y94{bottom:802.005000px;}
.y15{bottom:803.085000px;}
.y45{bottom:806.685000px;}
.y78{bottom:808.485000px;}
.y93{bottom:822.525000px;}
.y14{bottom:824.325000px;}
.y44{bottom:827.385000px;}
.y77{bottom:829.185000px;}
.y92{bottom:844.485000px;}
.y43{bottom:848.085000px;}
.y13{bottom:848.445000px;}
.y76{bottom:849.885000px;}
.y91{bottom:866.445000px;}
.y42{bottom:868.785000px;}
.y75{bottom:870.585000px;}
.y12{bottom:872.565000px;}
.y66{bottom:885.030000px;}
.y90{bottom:888.630000px;}
.y41{bottom:889.530000px;}
.y74{bottom:891.330000px;}
.y11{bottom:896.730000px;}
.y40{bottom:910.230000px;}
.y8f{bottom:910.590000px;}
.y73{bottom:912.030000px;}
.y10{bottom:920.850000px;}
.y72{bottom:932.730000px;}
.yf{bottom:944.790000px;}
.y3f{bottom:951.270000px;}
.y71{bottom:953.430000px;}
.y9{bottom:960.990000px;}
.yd3{bottom:966.750000px;}
.y3e{bottom:970.170000px;}
.y70{bottom:974.130000px;}
.yd2{bottom:985.650000px;}
.y3d{bottom:989.070000px;}
.y6f{bottom:994.830000px;}
.yd0{bottom:1000.590000px;}
.y3c{bottom:1008.150000px;}
.y6e{bottom:1015.530000px;}
.yce{bottom:1021.290000px;}
.y3b{bottom:1027.050000px;}
.y6d{bottom:1036.230000px;}
.y8{bottom:1044.150000px;}
.y3a{bottom:1046.130000px;}
.y6c{bottom:1056.930000px;}
.y39{bottom:1065.030000px;}
.y6b{bottom:1077.630000px;}
.y38{bottom:1083.930000px;}
.y7{bottom:1087.350000px;}
.y6a{bottom:1098.330000px;}
.y37{bottom:1103.010000px;}
.y69{bottom:1119.030000px;}
.y36{bottom:1121.910000px;}
.y6{bottom:1139.580000px;}
.y68{bottom:1139.760000px;}
.y35{bottom:1141.020000px;}
.y2{bottom:1160.460000px;}
.y1{bottom:1192.140000px;}
.h16{height:20.685000px;}
.h17{height:41.385000px;}
.h3{height:45.184219px;}
.he{height:56.213437px;}
.h15{height:59.383125px;}
.h12{height:62.085000px;}
.h10{height:64.546875px;}
.hf{height:64.978594px;}
.h4{height:65.010937px;}
.h14{height:68.084282px;}
.hd{height:70.628906px;}
.h6{height:70.664062px;}
.hb{height:72.562500px;}
.h9{height:72.846211px;}
.h11{height:74.004654px;}
.h2{height:76.279219px;}
.h5{height:76.317188px;}
.hc{height:78.367500px;}
.h8{height:78.825000px;}
.ha{height:84.898125px;}
.h7{height:132.789375px;}
.h13{height:320.814844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:59.254500px;}
.w4{width:82.470000px;}
.w3{width:180.735000px;}
.w6{width:337.753500px;}
.w7{width:401.325000px;}
.w2{width:475.843500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.918500px;}
.x3{left:77.041500px;}
.x1{left:84.960000px;}
.x8{left:86.790000px;}
.x2b{left:98.310000px;}
.xd{left:119.916000px;}
.x1f{left:127.476000px;}
.x2{left:139.716000px;}
.x20{left:144.216000px;}
.xa{left:156.450000px;}
.xb{left:160.410000px;}
.x29{left:171.390000px;}
.x6{left:172.650000px;}
.x22{left:180.930000px;}
.x16{left:221.070000px;}
.x26{left:250.230000px;}
.x27{left:282.675000px;}
.x24{left:285.015000px;}
.x1e{left:335.595000px;}
.x15{left:346.395000px;}
.x13{left:357.015000px;}
.xe{left:384.555000px;}
.x1c{left:390.315000px;}
.x2a{left:414.795000px;}
.x1d{left:418.935000px;}
.x14{left:441.975000px;}
.xc{left:446.505000px;}
.xf{left:467.745000px;}
.x18{left:484.485000px;}
.x12{left:493.845000px;}
.x10{left:497.625000px;}
.x5{left:552.900000px;}
.x1b{left:557.745000px;}
.x1a{left:573.405000px;}
.x21{left:619.485000px;}
.x17{left:702.510000px;}
.x19{left:721.950000px;}
.x7{left:733.650000px;}
.x11{left:743.190000px;}
.x9{left:808.020000px;}
.x23{left:820.800000px;}
.x28{left:821.880000px;}
.x25{left:858.960000px;}
@media print{
.v2{vertical-align:-73.760000pt;}
.v1{vertical-align:-72.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls2d{letter-spacing:-1.920000pt;}
.ls1e{letter-spacing:-0.896000pt;}
.ls1f{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.504533pt;}
.ls24{letter-spacing:-0.384000pt;}
.ls9{letter-spacing:-0.353067pt;}
.ls1a{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.233067pt;}
.ls2f{letter-spacing:-0.150933pt;}
.ls30{letter-spacing:-0.140800pt;}
.ls28{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.023040pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.023040pt;}
.ls1b{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.097067pt;}
.ls31{letter-spacing:0.109867pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.135467pt;}
.ls29{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.263680pt;}
.ls18{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.384000pt;}
.ls2e{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.663040pt;}
.ls1{letter-spacing:0.746667pt;}
.ls26{letter-spacing:0.960000pt;}
.lse{letter-spacing:1.920000pt;}
.lsc{letter-spacing:2.560000pt;}
.ls11{letter-spacing:3.200000pt;}
.ls10{letter-spacing:4.480000pt;}
.ls25{letter-spacing:6.400000pt;}
.ls21{letter-spacing:7.040000pt;}
.lsd{letter-spacing:7.680000pt;}
.ls27{letter-spacing:8.320000pt;}
.ls2c{letter-spacing:8.960000pt;}
.ls5{letter-spacing:10.240000pt;}
.ls1d{letter-spacing:14.080000pt;}
.ls23{letter-spacing:21.120000pt;}
.ls32{letter-spacing:30.970027pt;}
.lsb{letter-spacing:44.800000pt;}
.ls2a{letter-spacing:50.560000pt;}
.lsf{letter-spacing:55.146667pt;}
.ls2b{letter-spacing:60.410027pt;}
.ls22{letter-spacing:67.946667pt;}
.ws1{word-spacing:-18.720000pt;}
.ws4{word-spacing:-17.295360pt;}
.ws0{word-spacing:-17.280000pt;}
.ws3{word-spacing:-17.264640pt;}
.ws2{word-spacing:-17.256960pt;}
.ws8{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.486933pt;}
.ws5{word-spacing:0.000000pt;}
._10{margin-left:-1.854293pt;}
._5{margin-left:-0.896000pt;}
._0{width:1.105920pt;}
._6{width:2.615893pt;}
._b{width:3.650560pt;}
._c{width:4.899840pt;}
._d{width:6.123520pt;}
._9{width:7.078400pt;}
._8{width:8.184320pt;}
._a{width:9.656320pt;}
._e{width:10.670080pt;}
._13{width:11.814400pt;}
._17{width:12.977493pt;}
._16{width:14.016000pt;}
._1a{width:14.976000pt;}
._14{width:16.960000pt;}
._19{width:18.112000pt;}
._18{width:19.328000pt;}
._7{width:21.079040pt;}
._12{width:22.270293pt;}
._11{width:23.680000pt;}
._15{width:25.920000pt;}
._f{width:31.441920pt;}
._2{width:414.186667pt;}
._1{width:426.964907pt;}
._4{width:672.266667pt;}
._3{width:739.456427pt;}
._1b{width:753.546667pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:117.120000pt;}
.fs5{font-size:290.560000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:0.160000pt;}
.y67{bottom:3.840000pt;}
.ycf{bottom:4.000000pt;}
.yd1{bottom:13.280000pt;}
.yc{bottom:18.880000pt;}
.yd{bottom:27.680000pt;}
.yb{bottom:37.280000pt;}
.y5{bottom:51.200000pt;}
.ya{bottom:55.680000pt;}
.y4{bottom:77.280000pt;}
.y3{bottom:106.560000pt;}
.ya2{bottom:127.072000pt;}
.yac{bottom:127.392000pt;}
.y65{bottom:128.192000pt;}
.y8e{bottom:129.792000pt;}
.yb6{bottom:130.912000pt;}
.y34{bottom:134.106667pt;}
.ya1{bottom:145.466667pt;}
.yab{bottom:145.786667pt;}
.y64{bottom:146.586667pt;}
.y8d{bottom:148.186667pt;}
.yb5{bottom:149.306667pt;}
.y33{bottom:150.906667pt;}
.ya0{bottom:160.026667pt;}
.y8c{bottom:162.586667pt;}
.yb4{bottom:163.706667pt;}
.yaa{bottom:164.186667pt;}
.ycd{bottom:164.666667pt;}
.y63{bottom:164.986667pt;}
.y32{bottom:167.866667pt;}
.ycc{bottom:181.466667pt;}
.ya9{bottom:182.586667pt;}
.y62{bottom:183.386667pt;}
.y31{bottom:184.666667pt;}
.ycb{bottom:198.426667pt;}
.ya8{bottom:200.986667pt;}
.y30{bottom:201.466667pt;}
.y61{bottom:201.786667pt;}
.yca{bottom:215.226667pt;}
.y2f{bottom:218.426667pt;}
.ya7{bottom:219.386667pt;}
.y60{bottom:220.186667pt;}
.yc9{bottom:232.186667pt;}
.y2e{bottom:235.226667pt;}
.ya6{bottom:237.786667pt;}
.y5f{bottom:238.586667pt;}
.yc8{bottom:248.986667pt;}
.y2d{bottom:252.186667pt;}
.ya5{bottom:256.186667pt;}
.y5e{bottom:256.986667pt;}
.yc7{bottom:265.786667pt;}
.y2c{bottom:268.986667pt;}
.ya4{bottom:274.586667pt;}
.y5d{bottom:275.386667pt;}
.yc6{bottom:282.746667pt;}
.y2b{bottom:285.946667pt;}
.ya3{bottom:289.146667pt;}
.y5c{bottom:293.786667pt;}
.yc5{bottom:299.546667pt;}
.y2a{bottom:302.746667pt;}
.y5b{bottom:312.186667pt;}
.yc4{bottom:316.506667pt;}
.y29{bottom:319.546667pt;}
.y5a{bottom:330.586667pt;}
.yc3{bottom:333.306667pt;}
.y28{bottom:336.826667pt;}
.y59{bottom:349.026667pt;}
.yc2{bottom:350.146667pt;}
.y27{bottom:355.586667pt;}
.yc1{bottom:367.106667pt;}
.y58{bottom:367.426667pt;}
.y8b{bottom:370.146667pt;}
.y26{bottom:375.426667pt;}
.yc0{bottom:383.906667pt;}
.y57{bottom:385.826667pt;}
.y8a{bottom:387.426667pt;}
.y25{bottom:395.426667pt;}
.ybf{bottom:400.866667pt;}
.y56{bottom:404.226667pt;}
.y89{bottom:405.826667pt;}
.y24{bottom:414.946667pt;}
.ybe{bottom:417.666667pt;}
.y55{bottom:422.626667pt;}
.y88{bottom:424.226667pt;}
.ybd{bottom:434.466667pt;}
.y23{bottom:435.266667pt;}
.y54{bottom:441.026667pt;}
.y87{bottom:442.626667pt;}
.ybc{bottom:451.426667pt;}
.y22{bottom:455.266667pt;}
.y53{bottom:459.426667pt;}
.y86{bottom:461.026667pt;}
.ybb{bottom:468.226667pt;}
.y21{bottom:475.106667pt;}
.y52{bottom:477.826667pt;}
.y85{bottom:479.426667pt;}
.yba{bottom:485.186667pt;}
.yb3{bottom:488.706667pt;}
.y20{bottom:494.626667pt;}
.y51{bottom:496.226667pt;}
.y84{bottom:497.826667pt;}
.yb9{bottom:501.986667pt;}
.yb2{bottom:507.106667pt;}
.y9f{bottom:510.466667pt;}
.y50{bottom:514.626667pt;}
.y1f{bottom:514.946667pt;}
.y83{bottom:516.226667pt;}
.yb8{bottom:518.786667pt;}
.yb1{bottom:525.506667pt;}
.y9e{bottom:528.866667pt;}
.y4f{bottom:533.026667pt;}
.y82{bottom:534.626667pt;}
.y1e{bottom:534.946667pt;}
.yb7{bottom:535.746667pt;}
.yb0{bottom:543.906667pt;}
.y9d{bottom:547.266667pt;}
.y4e{bottom:551.426667pt;}
.y81{bottom:553.026667pt;}
.y1d{bottom:554.946667pt;}
.yaf{bottom:562.333333pt;}
.y9c{bottom:565.693333pt;}
.y4d{bottom:569.853333pt;}
.y80{bottom:571.453333pt;}
.y1c{bottom:574.813333pt;}
.yae{bottom:580.733333pt;}
.y9b{bottom:584.093333pt;}
.y4c{bottom:588.253333pt;}
.y7f{bottom:589.853333pt;}
.y1b{bottom:594.813333pt;}
.yad{bottom:595.293333pt;}
.y9a{bottom:602.493333pt;}
.y4b{bottom:606.653333pt;}
.y7e{bottom:608.253333pt;}
.y1a{bottom:614.173333pt;}
.y99{bottom:620.893333pt;}
.y4a{bottom:625.053333pt;}
.y7d{bottom:626.653333pt;}
.y19{bottom:634.653333pt;}
.y98{bottom:639.293333pt;}
.y49{bottom:643.453333pt;}
.y7c{bottom:645.053333pt;}
.y18{bottom:654.493333pt;}
.y97{bottom:657.693333pt;}
.y48{bottom:661.853333pt;}
.y7b{bottom:663.453333pt;}
.y17{bottom:674.493333pt;}
.y96{bottom:676.093333pt;}
.y47{bottom:680.253333pt;}
.y7a{bottom:681.853333pt;}
.y16{bottom:694.013333pt;}
.y95{bottom:694.493333pt;}
.y46{bottom:698.653333pt;}
.y79{bottom:700.253333pt;}
.y94{bottom:712.893333pt;}
.y15{bottom:713.853333pt;}
.y45{bottom:717.053333pt;}
.y78{bottom:718.653333pt;}
.y93{bottom:731.133333pt;}
.y14{bottom:732.733333pt;}
.y44{bottom:735.453333pt;}
.y77{bottom:737.053333pt;}
.y92{bottom:750.653333pt;}
.y43{bottom:753.853333pt;}
.y13{bottom:754.173333pt;}
.y76{bottom:755.453333pt;}
.y91{bottom:770.173333pt;}
.y42{bottom:772.253333pt;}
.y75{bottom:773.853333pt;}
.y12{bottom:775.613333pt;}
.y66{bottom:786.693333pt;}
.y90{bottom:789.893333pt;}
.y41{bottom:790.693333pt;}
.y74{bottom:792.293333pt;}
.y11{bottom:797.093333pt;}
.y40{bottom:809.093333pt;}
.y8f{bottom:809.413333pt;}
.y73{bottom:810.693333pt;}
.y10{bottom:818.533333pt;}
.y72{bottom:829.093333pt;}
.yf{bottom:839.813333pt;}
.y3f{bottom:845.573333pt;}
.y71{bottom:847.493333pt;}
.y9{bottom:854.213333pt;}
.yd3{bottom:859.333333pt;}
.y3e{bottom:862.373333pt;}
.y70{bottom:865.893333pt;}
.yd2{bottom:876.133333pt;}
.y3d{bottom:879.173333pt;}
.y6f{bottom:884.293333pt;}
.yd0{bottom:889.413333pt;}
.y3c{bottom:896.133333pt;}
.y6e{bottom:902.693333pt;}
.yce{bottom:907.813333pt;}
.y3b{bottom:912.933333pt;}
.y6d{bottom:921.093333pt;}
.y8{bottom:928.133333pt;}
.y3a{bottom:929.893333pt;}
.y6c{bottom:939.493333pt;}
.y39{bottom:946.693333pt;}
.y6b{bottom:957.893333pt;}
.y38{bottom:963.493333pt;}
.y7{bottom:966.533333pt;}
.y6a{bottom:976.293333pt;}
.y37{bottom:980.453333pt;}
.y69{bottom:994.693333pt;}
.y36{bottom:997.253333pt;}
.y6{bottom:1012.960000pt;}
.y68{bottom:1013.120000pt;}
.y35{bottom:1014.240000pt;}
.y2{bottom:1031.520000pt;}
.y1{bottom:1059.680000pt;}
.h16{height:18.386667pt;}
.h17{height:36.786667pt;}
.h3{height:40.163750pt;}
.he{height:49.967500pt;}
.h15{height:52.785000pt;}
.h12{height:55.186667pt;}
.h10{height:57.375000pt;}
.hf{height:57.758750pt;}
.h4{height:57.787500pt;}
.h14{height:60.519362pt;}
.hd{height:62.781250pt;}
.h6{height:62.812500pt;}
.hb{height:64.500000pt;}
.h9{height:64.752187pt;}
.h11{height:65.781915pt;}
.h2{height:67.803750pt;}
.h5{height:67.837500pt;}
.hc{height:69.660000pt;}
.h8{height:70.066667pt;}
.ha{height:75.465000pt;}
.h7{height:118.035000pt;}
.h13{height:285.168750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:52.670667pt;}
.w4{width:73.306667pt;}
.w3{width:160.653333pt;}
.w6{width:300.225333pt;}
.w7{width:356.733333pt;}
.w2{width:422.972000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.038667pt;}
.x3{left:68.481333pt;}
.x1{left:75.520000pt;}
.x8{left:77.146667pt;}
.x2b{left:87.386667pt;}
.xd{left:106.592000pt;}
.x1f{left:113.312000pt;}
.x2{left:124.192000pt;}
.x20{left:128.192000pt;}
.xa{left:139.066667pt;}
.xb{left:142.586667pt;}
.x29{left:152.346667pt;}
.x6{left:153.466667pt;}
.x22{left:160.826667pt;}
.x16{left:196.506667pt;}
.x26{left:222.426667pt;}
.x27{left:251.266667pt;}
.x24{left:253.346667pt;}
.x1e{left:298.306667pt;}
.x15{left:307.906667pt;}
.x13{left:317.346667pt;}
.xe{left:341.826667pt;}
.x1c{left:346.946667pt;}
.x2a{left:368.706667pt;}
.x1d{left:372.386667pt;}
.x14{left:392.866667pt;}
.xc{left:396.893333pt;}
.xf{left:415.773333pt;}
.x18{left:430.653333pt;}
.x12{left:438.973333pt;}
.x10{left:442.333333pt;}
.x5{left:491.466667pt;}
.x1b{left:495.773333pt;}
.x1a{left:509.693333pt;}
.x21{left:550.653333pt;}
.x17{left:624.453333pt;}
.x19{left:641.733333pt;}
.x7{left:652.133333pt;}
.x11{left:660.613333pt;}
.x9{left:718.240000pt;}
.x23{left:729.600000pt;}
.x28{left:730.560000pt;}
.x25{left:763.520000pt;}
}




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