
    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_1823b9a2d37d2576834c2e6f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_fb8f428f586eb5657dd60092.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_36900ad3192215e6cb81a850.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bef60a974927ad5970128811.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051758;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_375a1347de05dd008a86e2ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.999023;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_37e397bb6804b7dc7660bd8f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.051758;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_e709d351dee889dd05b579c8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_56e731284935961b6a1643e5.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_edf1377525c070c854dbb69e.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b687f14b6d6a7828006fabc6.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-71.280000px;}
.v1{vertical-align:-69.120000px;}
.v2{vertical-align:-66.960000px;}
.v4{vertical-align:-65.520000px;}
.v5{vertical-align:-64.200000px;}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-2.160000px;}
.lsa{letter-spacing:-1.440000px;}
.lsf{letter-spacing:-1.332000px;}
.ls8{letter-spacing:-1.134000px;}
.ls10{letter-spacing:-1.080000px;}
.ls1a{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.120000px;}
.ls6{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.331800px;}
.ls2{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.540000px;}
.ls9{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.900000px;}
.lsd{letter-spacing:7.920000px;}
.ls5{letter-spacing:12.960000px;}
.ls13{letter-spacing:15.300000px;}
.lsb{letter-spacing:18.000000px;}
.ls15{letter-spacing:42.660000px;}
.lse{letter-spacing:44.796000px;}
.ls12{letter-spacing:44.820000px;}
.ls3{letter-spacing:156.564000px;}
.ls4{letter-spacing:158.004000px;}
.ls19{letter-spacing:159.624000px;}
.ls0{letter-spacing:678.540000px;}
.ls18{letter-spacing:1061.220000px;}
.ls16{letter-spacing:2164.200000px;}
.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;}
}
.ws2{word-spacing:-16.560000px;}
.ws5{word-spacing:-15.426000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.271800px;}
.ws6{word-spacing:-15.120000px;}
.ws0{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.733600px;}
.ws9{word-spacing:-14.400000px;}
.ws3{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.482000px;}
.ws4{word-spacing:0.000000px;}
._12{margin-left:-3.746880px;}
._3{margin-left:-2.679840px;}
._1{margin-left:-1.195200px;}
._0{width:1.135440px;}
._2{width:2.956800px;}
._5{width:4.131840px;}
._b{width:5.943840px;}
._d{width:7.499520px;}
._c{width:8.713440px;}
._6{width:9.892080px;}
._7{width:11.197440px;}
._9{width:13.153440px;}
._a{width:14.398560px;}
._14{width:15.432480px;}
._8{width:16.613280px;}
._f{width:17.737920px;}
._e{width:18.745920px;}
._13{width:20.216640px;}
._16{width:21.619200px;}
._15{width:22.723200px;}
._17{width:23.819040px;}
._11{width:26.032320px;}
._10{width:27.161280px;}
._1b{width:28.666080px;}
._1c{width:29.842560px;}
._1d{width:43.146720px;}
._18{width:44.616000px;}
._19{width:47.496000px;}
._1a{width:116.099760px;}
._4{width:270.899760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:3.600000px;}
.y3d{bottom:56.700000px;}
.y3c{bottom:88.956000px;}
.y7e{bottom:100.836000px;}
.y76{bottom:102.816000px;}
.y3b{bottom:104.616000px;}
.yb8{bottom:105.516000px;}
.y7d{bottom:118.116000px;}
.y3a{bottom:119.736000px;}
.yb7{bottom:120.996000px;}
.y75{bottom:121.716000px;}
.y39{bottom:134.676000px;}
.y7c{bottom:135.216000px;}
.yb6{bottom:135.756000px;}
.y74{bottom:140.796000px;}
.yb5{bottom:149.436000px;}
.y7b{bottom:152.490000px;}
.y38{bottom:153.570000px;}
.y73{bottom:159.690000px;}
.yb4{bottom:168.330000px;}
.y7a{bottom:169.770000px;}
.y37{bottom:172.470000px;}
.y72{bottom:178.590000px;}
.y79{bottom:187.050000px;}
.yb3{bottom:187.230000px;}
.y36{bottom:191.550000px;}
.y71{bottom:197.670000px;}
.y78{bottom:203.970000px;}
.yb2{bottom:206.310000px;}
.y35{bottom:210.450000px;}
.y70{bottom:216.570000px;}
.y77{bottom:220.530000px;}
.yb1{bottom:225.210000px;}
.y34{bottom:229.530000px;}
.y6f{bottom:235.650000px;}
.yb0{bottom:244.290000px;}
.y33{bottom:248.430000px;}
.y6e{bottom:254.550000px;}
.yaf{bottom:263.190000px;}
.y32{bottom:267.510000px;}
.y6d{bottom:273.630000px;}
.y31{bottom:286.410000px;}
.y6c{bottom:292.530000px;}
.yae{bottom:299.730000px;}
.y30{bottom:305.310000px;}
.y6b{bottom:311.430000px;}
.yad{bottom:312.870000px;}
.y2f{bottom:324.390000px;}
.yac{bottom:330.195000px;}
.y6a{bottom:330.555000px;}
.y2e{bottom:343.335000px;}
.yab{bottom:347.475000px;}
.y69{bottom:349.455000px;}
.y2d{bottom:362.415000px;}
.yaa{bottom:364.755000px;}
.y68{bottom:368.535000px;}
.y2c{bottom:381.315000px;}
.ya9{bottom:382.035000px;}
.y67{bottom:387.435000px;}
.ya8{bottom:399.135000px;}
.y2b{bottom:400.215000px;}
.y66{bottom:406.335000px;}
.ya7{bottom:416.415000px;}
.y2a{bottom:419.295000px;}
.y65{bottom:425.415000px;}
.ya6{bottom:433.695000px;}
.y29{bottom:438.195000px;}
.y64{bottom:444.315000px;}
.ya5{bottom:450.975000px;}
.y28{bottom:457.275000px;}
.y63{bottom:463.395000px;}
.ya4{bottom:468.255000px;}
.y27{bottom:476.175000px;}
.y62{bottom:482.295000px;}
.y26{bottom:495.075000px;}
.y61{bottom:501.195000px;}
.ya3{bottom:501.555000px;}
.y25{bottom:514.155000px;}
.ya2{bottom:514.695000px;}
.y60{bottom:520.275000px;}
.ya1{bottom:531.975000px;}
.y24{bottom:533.055000px;}
.y5f{bottom:539.175000px;}
.ya0{bottom:549.255000px;}
.y23{bottom:552.135000px;}
.y5e{bottom:558.255000px;}
.y9f{bottom:566.535000px;}
.y22{bottom:571.035000px;}
.y5d{bottom:577.155000px;}
.y21{bottom:589.935000px;}
.y5c{bottom:596.085000px;}
.y9e{bottom:599.865000px;}
.y20{bottom:609.045000px;}
.y9d{bottom:612.825000px;}
.y5b{bottom:615.165000px;}
.y1f{bottom:627.945000px;}
.y9c{bottom:630.105000px;}
.y5a{bottom:634.065000px;}
.y9b{bottom:646.845000px;}
.y1e{bottom:647.025000px;}
.y59{bottom:653.145000px;}
.y9a{bottom:661.425000px;}
.y1d{bottom:665.925000px;}
.y58{bottom:672.045000px;}
.y99{bottom:678.705000px;}
.y1c{bottom:684.825000px;}
.y57{bottom:690.945000px;}
.y1b{bottom:703.905000px;}
.y56{bottom:710.025000px;}
.y98{bottom:712.365000px;}
.y1a{bottom:722.805000px;}
.y97{bottom:726.945000px;}
.y55{bottom:728.925000px;}
.y96{bottom:744.225000px;}
.y54{bottom:748.005000px;}
.y19{bottom:759.705000px;}
.y95{bottom:761.505000px;}
.y53{bottom:766.905000px;}
.y18{bottom:774.285000px;}
.y94{bottom:778.785000px;}
.y52{bottom:785.985000px;}
.y17{bottom:791.565000px;}
.y93{bottom:795.885000px;}
.y51{bottom:804.885000px;}
.y16{bottom:808.845000px;}
.y92{bottom:813.165000px;}
.y50{bottom:823.785000px;}
.y15{bottom:826.125000px;}
.y91{bottom:830.445000px;}
.y4f{bottom:842.865000px;}
.y14{bottom:843.405000px;}
.y90{bottom:847.725000px;}
.y13{bottom:860.505000px;}
.y4e{bottom:861.765000px;}
.y8f{bottom:865.050000px;}
.y12{bottom:877.830000px;}
.y4d{bottom:880.890000px;}
.y8e{bottom:882.330000px;}
.y11{bottom:895.110000px;}
.y8d{bottom:898.710000px;}
.y4c{bottom:899.790000px;}
.y8c{bottom:913.290000px;}
.y4b{bottom:918.690000px;}
.y10{bottom:929.130000px;}
.y8b{bottom:930.570000px;}
.y4a{bottom:937.770000px;}
.yf{bottom:945.150000px;}
.y8a{bottom:946.950000px;}
.y49{bottom:956.670000px;}
.ye{bottom:962.430000px;}
.y48{bottom:975.750000px;}
.y89{bottom:978.450000px;}
.yd{bottom:979.710000px;}
.y47{bottom:994.650000px;}
.y88{bottom:995.370000px;}
.yc{bottom:996.810000px;}
.y87{bottom:1009.950000px;}
.y46{bottom:1013.550000px;}
.y86{bottom:1027.050000px;}
.yb{bottom:1030.830000px;}
.y45{bottom:1032.630000px;}
.y85{bottom:1044.330000px;}
.y44{bottom:1051.530000px;}
.y84{bottom:1061.610000px;}
.ya{bottom:1063.770000px;}
.y43{bottom:1070.610000px;}
.y83{bottom:1078.890000px;}
.y9{bottom:1081.410000px;}
.y42{bottom:1089.510000px;}
.y82{bottom:1096.170000px;}
.y8{bottom:1098.690000px;}
.y41{bottom:1108.410000px;}
.y81{bottom:1113.450000px;}
.y7{bottom:1116.870000px;}
.y40{bottom:1127.490000px;}
.y80{bottom:1130.580000px;}
.y6{bottom:1141.560000px;}
.y3f{bottom:1146.420000px;}
.y7f{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y3e{bottom:1189.260000px;}
.y4{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h5{height:17.280000px;}
.hf{height:40.985156px;}
.h9{height:47.344922px;}
.hd{height:48.616875px;}
.h4{height:49.583118px;}
.h8{height:52.998047px;}
.he{height:53.252930px;}
.h2{height:58.651172px;}
.hb{height:59.027344px;}
.h7{height:60.226875px;}
.h3{height:61.423863px;}
.ha{height:65.010937px;}
.hc{height:66.757500px;}
.h6{height:73.751133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:7.380000px;}
.w4{width:9.360000px;}
.w5{width:14.940000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:63.900000px;}
.x17{left:75.599987px;}
.x11{left:90.719987px;}
.xb{left:106.415987px;}
.x10{left:133.235987px;}
.xd{left:148.895987px;}
.x5{left:173.549987px;}
.x6{left:233.129987px;}
.x14{left:234.749987px;}
.x1{left:262.109987px;}
.x7{left:335.774987px;}
.x13{left:337.394987px;}
.x18{left:351.794987px;}
.xf{left:432.794987px;}
.x2{left:441.254987px;}
.x12{left:446.474987px;}
.xe{left:467.714987px;}
.x19{left:547.664987px;}
.x8{left:551.444987px;}
.x16{left:586.724987px;}
.x15{left:608.684987px;}
.x1b{left:616.784987px;}
.xa{left:685.769987px;}
.x9{left:698.009987px;}
.x1a{left:702.149987px;}
.x3{left:786.749987px;}
.xc{left:819.150000px;}
@media print{
.v3{vertical-align:-63.360000pt;}
.v1{vertical-align:-61.440000pt;}
.v2{vertical-align:-59.520000pt;}
.v4{vertical-align:-58.240000pt;}
.v5{vertical-align:-57.066667pt;}
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-1.920000pt;}
.lsa{letter-spacing:-1.280000pt;}
.lsf{letter-spacing:-1.184000pt;}
.ls8{letter-spacing:-1.008000pt;}
.ls10{letter-spacing:-0.960000pt;}
.ls1a{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.106667pt;}
.ls6{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.294933pt;}
.ls2{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.480000pt;}
.ls9{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.800000pt;}
.lsd{letter-spacing:7.040000pt;}
.ls5{letter-spacing:11.520000pt;}
.ls13{letter-spacing:13.600000pt;}
.lsb{letter-spacing:16.000000pt;}
.ls15{letter-spacing:37.920000pt;}
.lse{letter-spacing:39.818667pt;}
.ls12{letter-spacing:39.840000pt;}
.ls3{letter-spacing:139.168000pt;}
.ls4{letter-spacing:140.448000pt;}
.ls19{letter-spacing:141.888000pt;}
.ls0{letter-spacing:603.146667pt;}
.ls18{letter-spacing:943.306667pt;}
.ls16{letter-spacing:1923.733333pt;}
.ws2{word-spacing:-14.720000pt;}
.ws5{word-spacing:-13.712000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.574933pt;}
.ws6{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.096533pt;}
.ws9{word-spacing:-12.800000pt;}
.ws3{word-spacing:-12.320000pt;}
.wsa{word-spacing:-11.984000pt;}
.ws4{word-spacing:0.000000pt;}
._12{margin-left:-3.330560pt;}
._3{margin-left:-2.382080pt;}
._1{margin-left:-1.062400pt;}
._0{width:1.009280pt;}
._2{width:2.628267pt;}
._5{width:3.672747pt;}
._b{width:5.283413pt;}
._d{width:6.666240pt;}
._c{width:7.745280pt;}
._6{width:8.792960pt;}
._7{width:9.953280pt;}
._9{width:11.691947pt;}
._a{width:12.798720pt;}
._14{width:13.717760pt;}
._8{width:14.767360pt;}
._f{width:15.767040pt;}
._e{width:16.663040pt;}
._13{width:17.970347pt;}
._16{width:19.217067pt;}
._15{width:20.198400pt;}
._17{width:21.172480pt;}
._11{width:23.139840pt;}
._10{width:24.143360pt;}
._1b{width:25.480960pt;}
._1c{width:26.526720pt;}
._1d{width:38.352640pt;}
._18{width:39.658667pt;}
._19{width:42.218667pt;}
._1a{width:103.199787pt;}
._4{width:240.799787pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:3.200000pt;}
.y3d{bottom:50.400000pt;}
.y3c{bottom:79.072000pt;}
.y7e{bottom:89.632000pt;}
.y76{bottom:91.392000pt;}
.y3b{bottom:92.992000pt;}
.yb8{bottom:93.792000pt;}
.y7d{bottom:104.992000pt;}
.y3a{bottom:106.432000pt;}
.yb7{bottom:107.552000pt;}
.y75{bottom:108.192000pt;}
.y39{bottom:119.712000pt;}
.y7c{bottom:120.192000pt;}
.yb6{bottom:120.672000pt;}
.y74{bottom:125.152000pt;}
.yb5{bottom:132.832000pt;}
.y7b{bottom:135.546667pt;}
.y38{bottom:136.506667pt;}
.y73{bottom:141.946667pt;}
.yb4{bottom:149.626667pt;}
.y7a{bottom:150.906667pt;}
.y37{bottom:153.306667pt;}
.y72{bottom:158.746667pt;}
.y79{bottom:166.266667pt;}
.yb3{bottom:166.426667pt;}
.y36{bottom:170.266667pt;}
.y71{bottom:175.706667pt;}
.y78{bottom:181.306667pt;}
.yb2{bottom:183.386667pt;}
.y35{bottom:187.066667pt;}
.y70{bottom:192.506667pt;}
.y77{bottom:196.026667pt;}
.yb1{bottom:200.186667pt;}
.y34{bottom:204.026667pt;}
.y6f{bottom:209.466667pt;}
.yb0{bottom:217.146667pt;}
.y33{bottom:220.826667pt;}
.y6e{bottom:226.266667pt;}
.yaf{bottom:233.946667pt;}
.y32{bottom:237.786667pt;}
.y6d{bottom:243.226667pt;}
.y31{bottom:254.586667pt;}
.y6c{bottom:260.026667pt;}
.yae{bottom:266.426667pt;}
.y30{bottom:271.386667pt;}
.y6b{bottom:276.826667pt;}
.yad{bottom:278.106667pt;}
.y2f{bottom:288.346667pt;}
.yac{bottom:293.506667pt;}
.y6a{bottom:293.826667pt;}
.y2e{bottom:305.186667pt;}
.yab{bottom:308.866667pt;}
.y69{bottom:310.626667pt;}
.y2d{bottom:322.146667pt;}
.yaa{bottom:324.226667pt;}
.y68{bottom:327.586667pt;}
.y2c{bottom:338.946667pt;}
.ya9{bottom:339.586667pt;}
.y67{bottom:344.386667pt;}
.ya8{bottom:354.786667pt;}
.y2b{bottom:355.746667pt;}
.y66{bottom:361.186667pt;}
.ya7{bottom:370.146667pt;}
.y2a{bottom:372.706667pt;}
.y65{bottom:378.146667pt;}
.ya6{bottom:385.506667pt;}
.y29{bottom:389.506667pt;}
.y64{bottom:394.946667pt;}
.ya5{bottom:400.866667pt;}
.y28{bottom:406.466667pt;}
.y63{bottom:411.906667pt;}
.ya4{bottom:416.226667pt;}
.y27{bottom:423.266667pt;}
.y62{bottom:428.706667pt;}
.y26{bottom:440.066667pt;}
.y61{bottom:445.506667pt;}
.ya3{bottom:445.826667pt;}
.y25{bottom:457.026667pt;}
.ya2{bottom:457.506667pt;}
.y60{bottom:462.466667pt;}
.ya1{bottom:472.866667pt;}
.y24{bottom:473.826667pt;}
.y5f{bottom:479.266667pt;}
.ya0{bottom:488.226667pt;}
.y23{bottom:490.786667pt;}
.y5e{bottom:496.226667pt;}
.y9f{bottom:503.586667pt;}
.y22{bottom:507.586667pt;}
.y5d{bottom:513.026667pt;}
.y21{bottom:524.386667pt;}
.y5c{bottom:529.853333pt;}
.y9e{bottom:533.213333pt;}
.y20{bottom:541.373333pt;}
.y9d{bottom:544.733333pt;}
.y5b{bottom:546.813333pt;}
.y1f{bottom:558.173333pt;}
.y9c{bottom:560.093333pt;}
.y5a{bottom:563.613333pt;}
.y9b{bottom:574.973333pt;}
.y1e{bottom:575.133333pt;}
.y59{bottom:580.573333pt;}
.y9a{bottom:587.933333pt;}
.y1d{bottom:591.933333pt;}
.y58{bottom:597.373333pt;}
.y99{bottom:603.293333pt;}
.y1c{bottom:608.733333pt;}
.y57{bottom:614.173333pt;}
.y1b{bottom:625.693333pt;}
.y56{bottom:631.133333pt;}
.y98{bottom:633.213333pt;}
.y1a{bottom:642.493333pt;}
.y97{bottom:646.173333pt;}
.y55{bottom:647.933333pt;}
.y96{bottom:661.533333pt;}
.y54{bottom:664.893333pt;}
.y19{bottom:675.293333pt;}
.y95{bottom:676.893333pt;}
.y53{bottom:681.693333pt;}
.y18{bottom:688.253333pt;}
.y94{bottom:692.253333pt;}
.y52{bottom:698.653333pt;}
.y17{bottom:703.613333pt;}
.y93{bottom:707.453333pt;}
.y51{bottom:715.453333pt;}
.y16{bottom:718.973333pt;}
.y92{bottom:722.813333pt;}
.y50{bottom:732.253333pt;}
.y15{bottom:734.333333pt;}
.y91{bottom:738.173333pt;}
.y4f{bottom:749.213333pt;}
.y14{bottom:749.693333pt;}
.y90{bottom:753.533333pt;}
.y13{bottom:764.893333pt;}
.y4e{bottom:766.013333pt;}
.y8f{bottom:768.933333pt;}
.y12{bottom:780.293333pt;}
.y4d{bottom:783.013333pt;}
.y8e{bottom:784.293333pt;}
.y11{bottom:795.653333pt;}
.y8d{bottom:798.853333pt;}
.y4c{bottom:799.813333pt;}
.y8c{bottom:811.813333pt;}
.y4b{bottom:816.613333pt;}
.y10{bottom:825.893333pt;}
.y8b{bottom:827.173333pt;}
.y4a{bottom:833.573333pt;}
.yf{bottom:840.133333pt;}
.y8a{bottom:841.733333pt;}
.y49{bottom:850.373333pt;}
.ye{bottom:855.493333pt;}
.y48{bottom:867.333333pt;}
.y89{bottom:869.733333pt;}
.yd{bottom:870.853333pt;}
.y47{bottom:884.133333pt;}
.y88{bottom:884.773333pt;}
.yc{bottom:886.053333pt;}
.y87{bottom:897.733333pt;}
.y46{bottom:900.933333pt;}
.y86{bottom:912.933333pt;}
.yb{bottom:916.293333pt;}
.y45{bottom:917.893333pt;}
.y85{bottom:928.293333pt;}
.y44{bottom:934.693333pt;}
.y84{bottom:943.653333pt;}
.ya{bottom:945.573333pt;}
.y43{bottom:951.653333pt;}
.y83{bottom:959.013333pt;}
.y9{bottom:961.253333pt;}
.y42{bottom:968.453333pt;}
.y82{bottom:974.373333pt;}
.y8{bottom:976.613333pt;}
.y41{bottom:985.253333pt;}
.y81{bottom:989.733333pt;}
.y7{bottom:992.773333pt;}
.y40{bottom:1002.213333pt;}
.y80{bottom:1004.960000pt;}
.y6{bottom:1014.720000pt;}
.y3f{bottom:1019.040000pt;}
.y7f{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y3e{bottom:1057.120000pt;}
.y4{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h5{height:15.360000pt;}
.hf{height:36.431250pt;}
.h9{height:42.084375pt;}
.hd{height:43.215000pt;}
.h4{height:44.073883pt;}
.h8{height:47.109375pt;}
.he{height:47.335938pt;}
.h2{height:52.134375pt;}
.hb{height:52.468750pt;}
.h7{height:53.535000pt;}
.h3{height:54.598989pt;}
.ha{height:57.787500pt;}
.hc{height:59.340000pt;}
.h6{height:65.556562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:6.560000pt;}
.w4{width:8.320000pt;}
.w5{width:13.280000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:56.800000pt;}
.x17{left:67.199988pt;}
.x11{left:80.639988pt;}
.xb{left:94.591988pt;}
.x10{left:118.431988pt;}
.xd{left:132.351988pt;}
.x5{left:154.266655pt;}
.x6{left:207.226655pt;}
.x14{left:208.666655pt;}
.x1{left:232.986655pt;}
.x7{left:298.466655pt;}
.x13{left:299.906655pt;}
.x18{left:312.706655pt;}
.xf{left:384.706655pt;}
.x2{left:392.226655pt;}
.x12{left:396.866655pt;}
.xe{left:415.746655pt;}
.x19{left:486.813322pt;}
.x8{left:490.173322pt;}
.x16{left:521.533322pt;}
.x15{left:541.053322pt;}
.x1b{left:548.253322pt;}
.xa{left:609.573322pt;}
.x9{left:620.453322pt;}
.x1a{left:624.133322pt;}
.x3{left:699.333322pt;}
.xc{left:728.133333pt;}
}




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