
    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_e71682ca04960104ef78e854.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_1ed7446caa6b4f18fe0cb5b5.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_3a869db9779a07a194c40103.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_35b416affc98c6bfe8a4cc08.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_014c7e9aad8360bf67fa4078.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_e28ea8b608fba66ac762a553.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff8{font-family:ff8;line-height:0.750000;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_007710a0e7f87eec8e103cec.woff')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_719c5944372dacd1447f72cb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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_92d70335444754d5a09a7e0d.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f29c767c2805ed4ec7cb3af0.woff')format("woff");}.ffc{font-family:ffc;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_17ccb771de3a0dc7fce513d1.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f626a385eab85f51cb02f9cf.woff')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_c28b0b07ef43b053c2876156.woff')format("woff");}.fff{font-family:fff;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_39529994fe2ba1ceb7de059f.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_bf17fcb154c3266717c4ed37.woff')format("woff");}.ff11{font-family:ff11;line-height:0.934082;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:ff12;src:url('chunks/assets/font_cee8f7f41c8c77f22bc6b3d8.woff')format("woff");}.ff12{font-family:ff12;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;}
@font-face{font-family:ff13;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff13{font-family:ff13;line-height:0.739746;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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lse{letter-spacing:-2.724000px;}
.lsf{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.780000px;}
.lsd{letter-spacing:-0.378000px;}
.lsc{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.099000px;}
.ls10{letter-spacing:0.690000px;}
.ls12{letter-spacing:0.994500px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.ls6{letter-spacing:1.737000px;}
.ls2{letter-spacing:1.854000px;}
.ls3{letter-spacing:1.966500px;}
.ls4{letter-spacing:2.026500px;}
.ls15{letter-spacing:2.164500px;}
.lsa{letter-spacing:2.190000px;}
.ls5{letter-spacing:2.250000px;}
.lsb{letter-spacing:2.310000px;}
.ls9{letter-spacing:2.370000px;}
.ls13{letter-spacing:2.400000px;}
.ls7{letter-spacing:4.779000px;}
.ls16{letter-spacing:15.387000px;}
.ls14{letter-spacing:46.887000px;}
.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;}
}
.ws6{word-spacing:-16.875000px;}
.wsb{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.ws9{word-spacing:-15.619500px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.ws7{word-spacing:-13.221000px;}
.ws1{word-spacing:-12.531000px;}
.ws0{word-spacing:-11.826000px;}
.wsa{word-spacing:-10.125000px;}
.ws4{word-spacing:-8.136000px;}
.ws8{word-spacing:0.000000px;}
._6{margin-left:-6.921000px;}
._f{margin-left:-5.715000px;}
._7{margin-left:-4.270500px;}
._2{margin-left:-2.430000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.114000px;}
._3{width:5.076000px;}
._8{width:7.038000px;}
._9{width:8.109000px;}
._5{width:9.834000px;}
._d{width:11.632500px;}
._e{width:12.957000px;}
._b{width:15.853500px;}
._c{width:17.050500px;}
._12{width:20.374500px;}
._a{width:21.393000px;}
._11{width:24.817500px;}
._10{width:25.839000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y48{bottom:4.500000px;}
.y17{bottom:4.515000px;}
.y46{bottom:11.250000px;}
.ye{bottom:11.295000px;}
.y19{bottom:12.375000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.875000px;}
.y2{bottom:19.125000px;}
.y43{bottom:21.390000px;}
.y47{bottom:22.530000px;}
.y45{bottom:25.905000px;}
.y16{bottom:29.265000px;}
.yb{bottom:30.405000px;}
.y42{bottom:38.295000px;}
.y15{bottom:41.670000px;}
.ya{bottom:46.155000px;}
.y14{bottom:55.170000px;}
.y5{bottom:57.412500px;}
.y13{bottom:69.795000px;}
.y9{bottom:73.185000px;}
.y41{bottom:73.200000px;}
.y1{bottom:81.075000px;}
.y12{bottom:88.965000px;}
.y40{bottom:90.075000px;}
.y8{bottom:93.435000px;}
.y3f{bottom:106.950000px;}
.y7{bottom:110.355000px;}
.y11{bottom:114.870000px;}
.y54{bottom:124.987500px;}
.y3e{bottom:124.995000px;}
.ybc{bottom:129.487500px;}
.y8c{bottom:138.487500px;}
.y10{bottom:139.620000px;}
.y3d{bottom:141.870000px;}
.y53{bottom:142.987500px;}
.ybb{bottom:146.362500px;}
.y8b{bottom:156.480000px;}
.y3c{bottom:158.790000px;}
.y52{bottom:159.900000px;}
.yba{bottom:163.275000px;}
.y8a{bottom:174.525000px;}
.y3b{bottom:176.775000px;}
.yb9{bottom:181.275000px;}
.y2a{bottom:184.665000px;}
.y89{bottom:191.400000px;}
.y3a{bottom:193.695000px;}
.y51{bottom:194.775000px;}
.yb8{bottom:198.150000px;}
.y29{bottom:199.320000px;}
.y88{bottom:208.320000px;}
.y39{bottom:210.570000px;}
.y50{bottom:212.820000px;}
.yb7{bottom:215.070000px;}
.y28{bottom:218.445000px;}
.y87{bottom:226.320000px;}
.y38{bottom:228.570000px;}
.y4f{bottom:229.695000px;}
.yb6{bottom:233.070000px;}
.y27{bottom:235.365000px;}
.y86{bottom:243.225000px;}
.y37{bottom:245.490000px;}
.y4e{bottom:247.725000px;}
.yb5{bottom:249.975000px;}
.y26{bottom:252.240000px;}
.y85{bottom:260.100000px;}
.y36{bottom:262.365000px;}
.y4d{bottom:264.600000px;}
.yb4{bottom:266.850000px;}
.y25{bottom:270.240000px;}
.y84{bottom:278.100000px;}
.y35{bottom:280.395000px;}
.y4c{bottom:281.475000px;}
.yb3{bottom:286.005000px;}
.y24{bottom:287.145000px;}
.y83{bottom:296.130000px;}
.y34{bottom:297.270000px;}
.y4b{bottom:299.505000px;}
.yb2{bottom:302.880000px;}
.y23{bottom:305.145000px;}
.y82{bottom:313.005000px;}
.y33{bottom:314.145000px;}
.y4a{bottom:316.380000px;}
.yb1{bottom:319.755000px;}
.y22{bottom:322.050000px;}
.y96{bottom:328.800000px;}
.y81{bottom:331.050000px;}
.y32{bottom:332.175000px;}
.y49{bottom:333.300000px;}
.yb0{bottom:337.800000px;}
.y21{bottom:340.050000px;}
.y95{bottom:342.300000px;}
.y44{bottom:347.925000px;}
.y31{bottom:349.050000px;}
.yaf{bottom:354.675000px;}
.y20{bottom:356.925000px;}
.y80{bottom:364.800000px;}
.y30{bottom:365.970000px;}
.yae{bottom:372.720000px;}
.y1f{bottom:374.970000px;}
.y7f{bottom:382.845000px;}
.y2f{bottom:383.970000px;}
.y1a{bottom:385.080000px;}
.yad{bottom:390.705000px;}
.y1e{bottom:391.845000px;}
.y7e{bottom:399.720000px;}
.y2e{bottom:400.875000px;}
.yac{bottom:407.580000px;}
.y1d{bottom:408.750000px;}
.y2d{bottom:417.750000px;}
.yab{bottom:424.500000px;}
.y2c{bottom:435.750000px;}
.y1c{bottom:436.875000px;}
.yaa{bottom:442.500000px;}
.y2b{bottom:452.670000px;}
.y1b{bottom:454.920000px;}
.ya9{bottom:460.545000px;}
.y7d{bottom:469.545000px;}
.ya8{bottom:477.420000px;}
.y7c{bottom:486.420000px;}
.ya7{bottom:494.325000px;}
.y7b{bottom:504.450000px;}
.ya6{bottom:512.325000px;}
.y7a{bottom:521.325000px;}
.ya5{bottom:529.200000px;}
.y79{bottom:539.370000px;}
.ya4{bottom:547.245000px;}
.y78{bottom:557.370000px;}
.ya3{bottom:565.230000px;}
.y77{bottom:574.245000px;}
.ya2{bottom:582.150000px;}
.y76{bottom:592.275000px;}
.ya1{bottom:599.025000px;}
.y75{bottom:610.275000px;}
.ya0{bottom:617.025000px;}
.y74{bottom:628.320000px;}
.y9f{bottom:633.945000px;}
.y73{bottom:645.195000px;}
.y9e{bottom:651.945000px;}
.y72{bottom:663.225000px;}
.y9d{bottom:669.975000px;}
.y71{bottom:680.100000px;}
.y9c{bottom:686.850000px;}
.y70{bottom:696.975000px;}
.y9b{bottom:703.755000px;}
.y6f{bottom:715.005000px;}
.y9a{bottom:721.755000px;}
.y6e{bottom:733.020000px;}
.y99{bottom:735.255000px;}
.y94{bottom:738.630000px;}
.y6d{bottom:749.925000px;}
.y93{bottom:752.175000px;}
.y6c{bottom:767.925000px;}
.y6b{bottom:785.955000px;}
.y6a{bottom:802.830000px;}
.y69{bottom:820.830000px;}
.ycc{bottom:823.080000px;}
.y68{bottom:837.750000px;}
.ycb{bottom:841.125000px;}
.y18{bottom:851.250000px;}
.y67{bottom:855.750000px;}
.yca{bottom:858.000000px;}
.y66{bottom:872.670000px;}
.yc9{bottom:874.920000px;}
.yf{bottom:880.530000px;}
.y65{bottom:890.670000px;}
.yc8{bottom:892.920000px;}
.y64{bottom:907.545000px;}
.yc7{bottom:909.795000px;}
.y63{bottom:924.450000px;}
.yc6{bottom:926.700000px;}
.y98{bottom:936.825000px;}
.y62{bottom:942.450000px;}
.yc5{bottom:944.700000px;}
.y97{bottom:950.325000px;}
.y61{bottom:959.370000px;}
.yc4{bottom:961.620000px;}
.y60{bottom:976.245000px;}
.yc3{bottom:978.495000px;}
.y5f{bottom:994.275000px;}
.yc2{bottom:996.525000px;}
.y5e{bottom:1011.150000px;}
.y92{bottom:1012.275000px;}
.yc1{bottom:1013.400000px;}
.y5d{bottom:1028.025000px;}
.y91{bottom:1029.150000px;}
.yc0{bottom:1030.275000px;}
.yd{bottom:1034.775000px;}
.y5c{bottom:1046.070000px;}
.y90{bottom:1047.195000px;}
.ybf{bottom:1048.320000px;}
.y6{bottom:1060.695000px;}
.y5b{bottom:1064.070000px;}
.ybe{bottom:1065.195000px;}
.y5a{bottom:1080.975000px;}
.ybd{bottom:1082.100000px;}
.y59{bottom:1098.975000px;}
.y8f{bottom:1100.100000px;}
.y58{bottom:1115.850000px;}
.y8e{bottom:1116.975000px;}
.y57{bottom:1132.755000px;}
.y8d{bottom:1133.880000px;}
.y56{bottom:1151.880000px;}
.y55{bottom:1168.800000px;}
.hb{height:25.912500px;}
.h12{height:29.287500px;}
.h11{height:29.953125px;}
.h2{height:32.625000px;}
.h8{height:37.125000px;}
.h1b{height:37.162500px;}
.h18{height:39.832031px;}
.h1a{height:40.847168px;}
.h19{height:41.275635px;}
.h17{height:41.389893px;}
.h1f{height:42.589600px;}
.hd{height:43.075195px;}
.ha{height:43.875000px;}
.h1e{height:46.218809px;}
.h1d{height:46.278809px;}
.h1c{height:46.398809px;}
.h16{height:47.074219px;}
.h15{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.hf{height:58.185791px;}
.h10{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:154.230000px;}
.h14{height:466.170000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w4{width:152.055000px;}
.w7{width:223.020000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x14{left:12.420000px;}
.xe{left:23.625000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x1a{left:108.149987px;}
.x1b{left:135.187487px;}
.xf{left:175.687500px;}
.x10{left:206.137500px;}
.x12{left:214.012500px;}
.x7{left:225.300000px;}
.x11{left:265.837500px;}
.xb{left:290.625000px;}
.x13{left:296.250000px;}
.x9{left:345.780000px;}
.xa{left:364.950000px;}
.xd{left:373.957500px;}
.x16{left:447.194987px;}
.xc{left:453.945000px;}
.x15{left:593.624987px;}
.x17{left:594.749987px;}
.x18{left:651.074987px;}
.x19{left:725.444987px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lse{letter-spacing:-2.421333pt;}
.lsf{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.693333pt;}
.lsd{letter-spacing:-0.336000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.088000pt;}
.ls10{letter-spacing:0.613333pt;}
.ls12{letter-spacing:0.884000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls6{letter-spacing:1.544000pt;}
.ls2{letter-spacing:1.648000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls4{letter-spacing:1.801333pt;}
.ls15{letter-spacing:1.924000pt;}
.lsa{letter-spacing:1.946667pt;}
.ls5{letter-spacing:2.000000pt;}
.lsb{letter-spacing:2.053333pt;}
.ls9{letter-spacing:2.106667pt;}
.ls13{letter-spacing:2.133333pt;}
.ls7{letter-spacing:4.248000pt;}
.ls16{letter-spacing:13.677333pt;}
.ls14{letter-spacing:41.677333pt;}
.ws6{word-spacing:-15.000000pt;}
.wsb{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws9{word-spacing:-13.884000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.ws7{word-spacing:-11.752000pt;}
.ws1{word-spacing:-11.138667pt;}
.ws0{word-spacing:-10.512000pt;}
.wsa{word-spacing:-9.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws8{word-spacing:0.000000pt;}
._6{margin-left:-6.152000pt;}
._f{margin-left:-5.080000pt;}
._7{margin-left:-3.796000pt;}
._2{margin-left:-2.160000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.768000pt;}
._3{width:4.512000pt;}
._8{width:6.256000pt;}
._9{width:7.208000pt;}
._5{width:8.741333pt;}
._d{width:10.340000pt;}
._e{width:11.517333pt;}
._b{width:14.092000pt;}
._c{width:15.156000pt;}
._12{width:18.110667pt;}
._a{width:19.016000pt;}
._11{width:22.060000pt;}
._10{width:22.968000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y48{bottom:4.000000pt;}
.y17{bottom:4.013333pt;}
.y46{bottom:10.000000pt;}
.ye{bottom:10.040000pt;}
.y19{bottom:11.000000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.000000pt;}
.y2{bottom:17.000000pt;}
.y43{bottom:19.013333pt;}
.y47{bottom:20.026667pt;}
.y45{bottom:23.026667pt;}
.y16{bottom:26.013333pt;}
.yb{bottom:27.026667pt;}
.y42{bottom:34.040000pt;}
.y15{bottom:37.040000pt;}
.ya{bottom:41.026667pt;}
.y14{bottom:49.040000pt;}
.y5{bottom:51.033333pt;}
.y13{bottom:62.040000pt;}
.y9{bottom:65.053333pt;}
.y41{bottom:65.066667pt;}
.y1{bottom:72.066667pt;}
.y12{bottom:79.080000pt;}
.y40{bottom:80.066667pt;}
.y8{bottom:83.053333pt;}
.y3f{bottom:95.066667pt;}
.y7{bottom:98.093333pt;}
.y11{bottom:102.106667pt;}
.y54{bottom:111.100000pt;}
.y3e{bottom:111.106667pt;}
.ybc{bottom:115.100000pt;}
.y8c{bottom:123.100000pt;}
.y10{bottom:124.106667pt;}
.y3d{bottom:126.106667pt;}
.y53{bottom:127.100000pt;}
.ybb{bottom:130.100000pt;}
.y8b{bottom:139.093333pt;}
.y3c{bottom:141.146667pt;}
.y52{bottom:142.133333pt;}
.yba{bottom:145.133333pt;}
.y8a{bottom:155.133333pt;}
.y3b{bottom:157.133333pt;}
.yb9{bottom:161.133333pt;}
.y2a{bottom:164.146667pt;}
.y89{bottom:170.133333pt;}
.y3a{bottom:172.173333pt;}
.y51{bottom:173.133333pt;}
.yb8{bottom:176.133333pt;}
.y29{bottom:177.173333pt;}
.y88{bottom:185.173333pt;}
.y39{bottom:187.173333pt;}
.y50{bottom:189.173333pt;}
.yb7{bottom:191.173333pt;}
.y28{bottom:194.173333pt;}
.y87{bottom:201.173333pt;}
.y38{bottom:203.173333pt;}
.y4f{bottom:204.173333pt;}
.yb6{bottom:207.173333pt;}
.y27{bottom:209.213333pt;}
.y86{bottom:216.200000pt;}
.y37{bottom:218.213333pt;}
.y4e{bottom:220.200000pt;}
.yb5{bottom:222.200000pt;}
.y26{bottom:224.213333pt;}
.y85{bottom:231.200000pt;}
.y36{bottom:233.213333pt;}
.y4d{bottom:235.200000pt;}
.yb4{bottom:237.200000pt;}
.y25{bottom:240.213333pt;}
.y84{bottom:247.200000pt;}
.y35{bottom:249.240000pt;}
.y4c{bottom:250.200000pt;}
.yb3{bottom:254.226667pt;}
.y24{bottom:255.240000pt;}
.y83{bottom:263.226667pt;}
.y34{bottom:264.240000pt;}
.y4b{bottom:266.226667pt;}
.yb2{bottom:269.226667pt;}
.y23{bottom:271.240000pt;}
.y82{bottom:278.226667pt;}
.y33{bottom:279.240000pt;}
.y4a{bottom:281.226667pt;}
.yb1{bottom:284.226667pt;}
.y22{bottom:286.266667pt;}
.y96{bottom:292.266667pt;}
.y81{bottom:294.266667pt;}
.y32{bottom:295.266667pt;}
.y49{bottom:296.266667pt;}
.yb0{bottom:300.266667pt;}
.y21{bottom:302.266667pt;}
.y95{bottom:304.266667pt;}
.y44{bottom:309.266667pt;}
.y31{bottom:310.266667pt;}
.yaf{bottom:315.266667pt;}
.y20{bottom:317.266667pt;}
.y80{bottom:324.266667pt;}
.y30{bottom:325.306667pt;}
.yae{bottom:331.306667pt;}
.y1f{bottom:333.306667pt;}
.y7f{bottom:340.306667pt;}
.y2f{bottom:341.306667pt;}
.y1a{bottom:342.293333pt;}
.yad{bottom:347.293333pt;}
.y1e{bottom:348.306667pt;}
.y7e{bottom:355.306667pt;}
.y2e{bottom:356.333333pt;}
.yac{bottom:362.293333pt;}
.y1d{bottom:363.333333pt;}
.y2d{bottom:371.333333pt;}
.yab{bottom:377.333333pt;}
.y2c{bottom:387.333333pt;}
.y1c{bottom:388.333333pt;}
.yaa{bottom:393.333333pt;}
.y2b{bottom:402.373333pt;}
.y1b{bottom:404.373333pt;}
.ya9{bottom:409.373333pt;}
.y7d{bottom:417.373333pt;}
.ya8{bottom:424.373333pt;}
.y7c{bottom:432.373333pt;}
.ya7{bottom:439.400000pt;}
.y7b{bottom:448.400000pt;}
.ya6{bottom:455.400000pt;}
.y7a{bottom:463.400000pt;}
.ya5{bottom:470.400000pt;}
.y79{bottom:479.440000pt;}
.ya4{bottom:486.440000pt;}
.y78{bottom:495.440000pt;}
.ya3{bottom:502.426667pt;}
.y77{bottom:510.440000pt;}
.ya2{bottom:517.466667pt;}
.y76{bottom:526.466667pt;}
.ya1{bottom:532.466667pt;}
.y75{bottom:542.466667pt;}
.ya0{bottom:548.466667pt;}
.y74{bottom:558.506667pt;}
.y9f{bottom:563.506667pt;}
.y73{bottom:573.506667pt;}
.y9e{bottom:579.506667pt;}
.y72{bottom:589.533333pt;}
.y9d{bottom:595.533333pt;}
.y71{bottom:604.533333pt;}
.y9c{bottom:610.533333pt;}
.y70{bottom:619.533333pt;}
.y9b{bottom:625.560000pt;}
.y6f{bottom:635.560000pt;}
.y9a{bottom:641.560000pt;}
.y6e{bottom:651.573333pt;}
.y99{bottom:653.560000pt;}
.y94{bottom:656.560000pt;}
.y6d{bottom:666.600000pt;}
.y93{bottom:668.600000pt;}
.y6c{bottom:682.600000pt;}
.y6b{bottom:698.626667pt;}
.y6a{bottom:713.626667pt;}
.y69{bottom:729.626667pt;}
.ycc{bottom:731.626667pt;}
.y68{bottom:744.666667pt;}
.ycb{bottom:747.666667pt;}
.y18{bottom:756.666667pt;}
.y67{bottom:760.666667pt;}
.yca{bottom:762.666667pt;}
.y66{bottom:775.706667pt;}
.yc9{bottom:777.706667pt;}
.yf{bottom:782.693333pt;}
.y65{bottom:791.706667pt;}
.yc8{bottom:793.706667pt;}
.y64{bottom:806.706667pt;}
.yc7{bottom:808.706667pt;}
.y63{bottom:821.733333pt;}
.yc6{bottom:823.733333pt;}
.y98{bottom:832.733333pt;}
.y62{bottom:837.733333pt;}
.yc5{bottom:839.733333pt;}
.y97{bottom:844.733333pt;}
.y61{bottom:852.773333pt;}
.yc4{bottom:854.773333pt;}
.y60{bottom:867.773333pt;}
.yc3{bottom:869.773333pt;}
.y5f{bottom:883.800000pt;}
.yc2{bottom:885.800000pt;}
.y5e{bottom:898.800000pt;}
.y92{bottom:899.800000pt;}
.yc1{bottom:900.800000pt;}
.y5d{bottom:913.800000pt;}
.y91{bottom:914.800000pt;}
.yc0{bottom:915.800000pt;}
.yd{bottom:919.800000pt;}
.y5c{bottom:929.840000pt;}
.y90{bottom:930.840000pt;}
.ybf{bottom:931.840000pt;}
.y6{bottom:942.840000pt;}
.y5b{bottom:945.840000pt;}
.ybe{bottom:946.840000pt;}
.y5a{bottom:960.866667pt;}
.ybd{bottom:961.866667pt;}
.y59{bottom:976.866667pt;}
.y8f{bottom:977.866667pt;}
.y58{bottom:991.866667pt;}
.y8e{bottom:992.866667pt;}
.y57{bottom:1006.893333pt;}
.y8d{bottom:1007.893333pt;}
.y56{bottom:1023.893333pt;}
.y55{bottom:1038.933333pt;}
.hb{height:23.033333pt;}
.h12{height:26.033333pt;}
.h11{height:26.625000pt;}
.h2{height:29.000000pt;}
.h8{height:33.000000pt;}
.h1b{height:33.033333pt;}
.h18{height:35.406250pt;}
.h1a{height:36.308594pt;}
.h19{height:36.689453pt;}
.h17{height:36.791016pt;}
.h1f{height:37.857422pt;}
.hd{height:38.289062pt;}
.ha{height:39.000000pt;}
.h1e{height:41.083385pt;}
.h1d{height:41.136719pt;}
.h1c{height:41.243385pt;}
.h16{height:41.843750pt;}
.h15{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.hf{height:51.720703pt;}
.h10{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:137.093333pt;}
.h14{height:414.373333pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w4{width:135.160000pt;}
.w7{width:198.240000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x14{left:11.040000pt;}
.xe{left:21.000000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x1a{left:96.133322pt;}
.x1b{left:120.166655pt;}
.xf{left:156.166667pt;}
.x10{left:183.233333pt;}
.x12{left:190.233333pt;}
.x7{left:200.266667pt;}
.x11{left:236.300000pt;}
.xb{left:258.333333pt;}
.x13{left:263.333333pt;}
.x9{left:307.360000pt;}
.xa{left:324.400000pt;}
.xd{left:332.406667pt;}
.x16{left:397.506655pt;}
.xc{left:403.506667pt;}
.x15{left:527.666655pt;}
.x17{left:528.666655pt;}
.x18{left:578.733322pt;}
.x19{left:644.839988pt;}
.x3{left:663.840000pt;}
}




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