
    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_5fec72cc2768d0d4dcbd6b99.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854004;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_8ddcd8588f155a553ef351c9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919434;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_4ea3590222ad27820614b09a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919434;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_0d0d40ff712921d029a79c57.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f7d077caf096dd10574e7b9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.853516;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_54390cbc81758c13bc0750ee.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_486cac071492fd375113decb.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_60ae155b68ac6f0baaf858e5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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_a595280510ba714a0d8cd7ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.763672;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_35f37894ee93ade929ba4e76.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.763672;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_c8e84d4c8faa87da8b63923a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls17{letter-spacing:-6.120000px;}
.lsc{letter-spacing:-2.880000px;}
.ls18{letter-spacing:-0.738000px;}
.ls8{letter-spacing:-0.684000px;}
.lsa{letter-spacing:-0.378600px;}
.ls19{letter-spacing:-0.369600px;}
.ls15{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.341400px;}
.ls1c{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.216000px;}
.ls14{letter-spacing:-0.212400px;}
.ls7{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.037440px;}
.ls1b{letter-spacing:-0.028080px;}
.ls10{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.005040px;}
.ls11{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.037440px;}
.ls0{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.222480px;}
.ls1a{letter-spacing:0.232800px;}
.ls12{letter-spacing:0.252720px;}
.ls13{letter-spacing:0.341400px;}
.ls6{letter-spacing:0.360000px;}
.lsb{letter-spacing:834.096000px;}
.ls3{letter-spacing:844.104000px;}
.ls2{letter-spacing:844.140000px;}
.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;}
}
.ws17{word-spacing:-43.519200px;}
.ws8{word-spacing:-43.286400px;}
.wsf{word-spacing:-43.074000px;}
.ws7{word-spacing:-21.420000px;}
.ws12{word-spacing:-21.401400px;}
.wsa{word-spacing:-21.097440px;}
.ws13{word-spacing:-21.088080px;}
.ws6{word-spacing:-21.060000px;}
.wse{word-spacing:-21.041280px;}
.ws18{word-spacing:-21.031920px;}
.wsd{word-spacing:-21.022560px;}
.ws5{word-spacing:-20.880000px;}
.ws11{word-spacing:-20.718600px;}
.ws10{word-spacing:-20.700000px;}
.ws16{word-spacing:-20.690400px;}
.wsb{word-spacing:-20.681400px;}
.ws9{word-spacing:-20.376000px;}
.ws15{word-spacing:-20.322000px;}
.ws3{word-spacing:-18.216000px;}
.ws2{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.928000px;}
.ws19{word-spacing:-17.712000px;}
.wsc{word-spacing:-15.120000px;}
.ws14{word-spacing:-14.940000px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-20.226480px;}
._a{margin-left:-17.993040px;}
._d{margin-left:-16.771440px;}
._c{margin-left:-15.709920px;}
._8{margin-left:-13.860000px;}
._9{margin-left:-11.520000px;}
._6{margin-left:-9.566160px;}
._4{margin-left:-8.280000px;}
._7{margin-left:-7.260000px;}
._11{margin-left:-6.187440px;}
._3{margin-left:-5.112000px;}
._5{margin-left:-3.240000px;}
._10{margin-left:-2.229840px;}
._1{margin-left:-1.224000px;}
._2{width:1.128000px;}
._f{width:2.915520px;}
._12{width:6.489360px;}
._e{width:843.096000px;}
._0{width:846.156000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y2{bottom:58.140000px;}
.y1{bottom:79.020000px;}
.yf2{bottom:117.900000px;}
.yd9{bottom:119.880000px;}
.y84{bottom:120.420000px;}
.yb8{bottom:120.600000px;}
.y5d{bottom:120.960000px;}
.ya7{bottom:125.460000px;}
.yab{bottom:130.320000px;}
.ycd{bottom:136.800000px;}
.ya6{bottom:138.420000px;}
.ya0{bottom:138.600000px;}
.yaf{bottom:138.780000px;}
.y7b{bottom:139.140000px;}
.y111{bottom:145.980000px;}
.y10d{bottom:148.860000px;}
.yd8{bottom:156.270000px;}
.y83{bottom:156.630000px;}
.y93{bottom:156.810000px;}
.y5c{bottom:157.170000px;}
.y4b{bottom:157.890000px;}
.yf1{bottom:159.330000px;}
.y100{bottom:166.890000px;}
.y70{bottom:168.690000px;}
.y6f{bottom:174.630000px;}
.y9f{bottom:174.810000px;}
.yae{bottom:174.990000px;}
.y7a{bottom:175.350000px;}
.y4a{bottom:179.310000px;}
.y10c{bottom:190.290000px;}
.yd7{bottom:192.450000px;}
.ye4{bottom:192.630000px;}
.y82{bottom:192.810000px;}
.yb5{bottom:192.990000px;}
.y92{bottom:193.170000px;}
.y5b{bottom:193.350000px;}
.y49{bottom:203.430000px;}
.yff{bottom:208.290000px;}
.y6e{bottom:210.810000px;}
.y9e{bottom:210.990000px;}
.yaa{bottom:211.170000px;}
.yf0{bottom:218.730000px;}
.y48{bottom:227.550000px;}
.yd6{bottom:228.630000px;}
.ye3{bottom:228.810000px;}
.yb7{bottom:228.990000px;}
.y81{bottom:229.170000px;}
.ye2{bottom:229.350000px;}
.y79{bottom:229.530000px;}
.y10b{bottom:231.690000px;}
.y2f{bottom:239.070000px;}
.yb4{bottom:246.990000px;}
.y6d{bottom:247.170000px;}
.y91{bottom:247.350000px;}
.y5a{bottom:247.530000px;}
.yfe{bottom:249.690000px;}
.y47{bottom:251.670000px;}
.yef{bottom:260.130000px;}
.yd5{bottom:264.810000px;}
.y9d{bottom:265.170000px;}
.yb2{bottom:265.350000px;}
.yad{bottom:265.530000px;}
.y78{bottom:265.890000px;}
.y10a{bottom:273.090000px;}
.y2e{bottom:273.450000px;}
.y46{bottom:275.790000px;}
.yb3{bottom:283.170000px;}
.y6c{bottom:283.350000px;}
.y90{bottom:283.530000px;}
.yfd{bottom:291.090000px;}
.y45{bottom:299.910000px;}
.yd4{bottom:301.170000px;}
.ya5{bottom:301.350000px;}
.y9c{bottom:301.530000px;}
.yc2{bottom:301.710000px;}
.y59{bottom:301.890000px;}
.y2d{bottom:307.830000px;}
.y109{bottom:314.490000px;}
.ycc{bottom:319.350000px;}
.y6b{bottom:319.530000px;}
.y8f{bottom:319.710000px;}
.ye1{bottom:319.890000px;}
.y77{bottom:320.070000px;}
.y44{bottom:324.210000px;}
.y2c{bottom:330.150000px;}
.yfc{bottom:332.490000px;}
.yd3{bottom:337.350000px;}
.ya4{bottom:337.530000px;}
.y9b{bottom:337.710000px;}
.y58{bottom:338.070000px;}
.yee{bottom:342.975000px;}
.y43{bottom:348.375000px;}
.ycb{bottom:355.575000px;}
.y80{bottom:355.755000px;}
.yac{bottom:355.935000px;}
.ye0{bottom:356.115000px;}
.y76{bottom:356.295000px;}
.y2b{bottom:364.575000px;}
.y42{bottom:372.495000px;}
.yd2{bottom:373.575000px;}
.y6a{bottom:373.755000px;}
.y8e{bottom:373.935000px;}
.y57{bottom:374.295000px;}
.yed{bottom:384.375000px;}
.y2a{bottom:386.895000px;}
.yca{bottom:391.755000px;}
.y7f{bottom:391.935000px;}
.yc1{bottom:392.115000px;}
.ydf{bottom:392.295000px;}
.y41{bottom:396.615000px;}
.y110{bottom:397.335000px;}
.y29{bottom:409.215000px;}
.yd1{bottom:409.755000px;}
.y69{bottom:409.935000px;}
.y9a{bottom:410.115000px;}
.y8d{bottom:410.295000px;}
.y75{bottom:410.475000px;}
.y108{bottom:415.335000px;}
.y40{bottom:420.735000px;}
.yec{bottom:425.775000px;}
.yc9{bottom:427.935000px;}
.ya8{bottom:428.115000px;}
.yb1{bottom:428.295000px;}
.y56{bottom:428.475000px;}
.y28{bottom:431.535000px;}
.yfb{bottom:433.335000px;}
.y10f{bottom:438.735000px;}
.y16{bottom:439.635000px;}
.y3f{bottom:444.855000px;}
.yd0{bottom:445.935000px;}
.yb6{bottom:446.115000px;}
.y68{bottom:446.295000px;}
.y8c{bottom:446.475000px;}
.y74{bottom:446.835000px;}
.y27{bottom:453.855000px;}
.y107{bottom:456.735000px;}
.y15{bottom:461.595000px;}
.yc8{bottom:464.295000px;}
.y99{bottom:464.475000px;}
.y55{bottom:464.835000px;}
.yeb{bottom:467.175000px;}
.y3e{bottom:468.975000px;}
.yfa{bottom:474.735000px;}
.y26{bottom:476.355000px;}
.y10e{bottom:480.135000px;}
.ycf{bottom:482.295000px;}
.y67{bottom:482.475000px;}
.yc0{bottom:482.655000px;}
.yde{bottom:482.835000px;}
.y73{bottom:483.015000px;}
.y14{bottom:483.555000px;}
.y3d{bottom:493.275000px;}
.y106{bottom:498.135000px;}
.y25{bottom:498.675000px;}
.yc7{bottom:500.475000px;}
.y8b{bottom:500.655000px;}
.y54{bottom:501.015000px;}
.y13{bottom:505.515000px;}
.yea{bottom:508.575000px;}
.yf9{bottom:516.135000px;}
.y3c{bottom:517.395000px;}
.yce{bottom:518.475000px;}
.y66{bottom:518.655000px;}
.ybf{bottom:518.835000px;}
.ydd{bottom:519.015000px;}
.y24{bottom:520.995000px;}
.y12{bottom:527.505000px;}
.ya9{bottom:536.685000px;}
.y8a{bottom:536.865000px;}
.y53{bottom:537.225000px;}
.y105{bottom:539.565000px;}
.y3b{bottom:541.545000px;}
.y23{bottom:543.345000px;}
.y11{bottom:549.645000px;}
.ye9{bottom:550.005000px;}
.yc6{bottom:554.685000px;}
.y7e{bottom:554.865000px;}
.ybe{bottom:555.045000px;}
.ydc{bottom:555.225000px;}
.yf8{bottom:557.565000px;}
.y22{bottom:565.665000px;}
.y10{bottom:571.605000px;}
.y65{bottom:572.865000px;}
.yb0{bottom:573.045000px;}
.y89{bottom:573.225000px;}
.y52{bottom:573.405000px;}
.y104{bottom:580.965000px;}
.y21{bottom:587.985000px;}
.y3a{bottom:589.785000px;}
.yc5{bottom:590.865000px;}
.y98{bottom:591.045000px;}
.ya1{bottom:591.225000px;}
.ybd{bottom:591.405000px;}
.yf{bottom:592.485000px;}
.yf7{bottom:598.965000px;}
.yb9{bottom:609.045000px;}
.y64{bottom:609.225000px;}
.y88{bottom:609.405000px;}
.y51{bottom:609.765000px;}
.ye{bottom:613.185000px;}
.y39{bottom:613.905000px;}
.y20{bottom:622.365000px;}
.yc4{bottom:627.225000px;}
.y97{bottom:627.405000px;}
.ye8{bottom:632.805000px;}
.yd{bottom:633.885000px;}
.y38{bottom:638.205000px;}
.yf6{bottom:640.365000px;}
.y1f{bottom:644.685000px;}
.y63{bottom:645.405000px;}
.ybc{bottom:645.585000px;}
.ydb{bottom:645.765000px;}
.y72{bottom:645.945000px;}
.yc{bottom:654.585000px;}
.y37{bottom:662.325000px;}
.yc3{bottom:663.405000px;}
.y87{bottom:663.585000px;}
.y103{bottom:663.765000px;}
.y50{bottom:663.945000px;}
.y1e{bottom:667.005000px;}
.ye7{bottom:674.205000px;}
.yb{bottom:675.285000px;}
.y62{bottom:681.585000px;}
.ybb{bottom:681.765000px;}
.yda{bottom:681.945000px;}
.y36{bottom:686.445000px;}
.ya{bottom:695.985000px;}
.ya3{bottom:699.585000px;}
.y86{bottom:699.765000px;}
.y71{bottom:700.125000px;}
.y1d{bottom:701.385000px;}
.y102{bottom:705.210000px;}
.y35{bottom:710.610000px;}
.ye6{bottom:715.650000px;}
.y9{bottom:716.730000px;}
.y61{bottom:717.810000px;}
.yba{bottom:717.990000px;}
.y4f{bottom:718.170000px;}
.yf5{bottom:723.210000px;}
.y1c{bottom:723.750000px;}
.y34{bottom:734.730000px;}
.ya2{bottom:735.810000px;}
.y85{bottom:736.170000px;}
.y8{bottom:737.430000px;}
.y1b{bottom:746.070000px;}
.y101{bottom:746.610000px;}
.y96{bottom:753.990000px;}
.y60{bottom:754.170000px;}
.y4e{bottom:754.350000px;}
.ye5{bottom:757.050000px;}
.y7{bottom:757.950000px;}
.y33{bottom:758.850000px;}
.yf4{bottom:764.610000px;}
.y1a{bottom:768.390000px;}
.y7d{bottom:772.170000px;}
.y5{bottom:778.470000px;}
.y6{bottom:778.650000px;}
.y32{bottom:782.970000px;}
.y17{bottom:789.090000px;}
.y95{bottom:790.170000px;}
.y5f{bottom:790.350000px;}
.y4d{bottom:790.530000px;}
.y19{bottom:790.710000px;}
.yf3{bottom:806.010000px;}
.y31{bottom:807.270000px;}
.y7c{bottom:808.350000px;}
.y4{bottom:811.410000px;}
.y18{bottom:813.030000px;}
.y4c{bottom:836.070000px;}
.y94{bottom:836.250000px;}
.y5e{bottom:844.530000px;}
.y30{bottom:844.710000px;}
.y3{bottom:847.410000px;}
.h4{height:50.273438px;}
.h3{height:50.800781px;}
.h7{height:58.819922px;}
.h5{height:59.343750px;}
.h2{height:60.855469px;}
.h6{height:61.987148px;}
.h9{height:69.432187px;}
.h8{height:88.477383px;}
.h1{height:972.000000px;}
.h0{height:972.180000px;}
.w1{width:647.999990px;}
.w0{width:648.000000px;}
.x0{left:0.000000px;}
.x2{left:108.035990px;}
.x9{left:162.029990px;}
.x5{left:221.114990px;}
.x8{left:249.194990px;}
.x4{left:298.514990px;}
.xc{left:310.574990px;}
.xb{left:315.074990px;}
.x6{left:316.514990px;}
.x3{left:319.034990px;}
.x1{left:321.554990px;}
.x7{left:324.074990px;}
.xa{left:571.649990px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls17{letter-spacing:-5.440000pt;}
.lsc{letter-spacing:-2.560000pt;}
.ls18{letter-spacing:-0.656000pt;}
.ls8{letter-spacing:-0.608000pt;}
.lsa{letter-spacing:-0.336533pt;}
.ls19{letter-spacing:-0.328533pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.303467pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls14{letter-spacing:-0.188800pt;}
.ls7{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.033280pt;}
.ls1b{letter-spacing:-0.024960pt;}
.ls10{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.004480pt;}
.ls11{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.033280pt;}
.ls0{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.197760pt;}
.ls1a{letter-spacing:0.206933pt;}
.ls12{letter-spacing:0.224640pt;}
.ls13{letter-spacing:0.303467pt;}
.ls6{letter-spacing:0.320000pt;}
.lsb{letter-spacing:741.418667pt;}
.ls3{letter-spacing:750.314667pt;}
.ls2{letter-spacing:750.346667pt;}
.ws17{word-spacing:-38.683733pt;}
.ws8{word-spacing:-38.476800pt;}
.wsf{word-spacing:-38.288000pt;}
.ws7{word-spacing:-19.040000pt;}
.ws12{word-spacing:-19.023467pt;}
.wsa{word-spacing:-18.753280pt;}
.ws13{word-spacing:-18.744960pt;}
.ws6{word-spacing:-18.720000pt;}
.wse{word-spacing:-18.703360pt;}
.ws18{word-spacing:-18.695040pt;}
.wsd{word-spacing:-18.686720pt;}
.ws5{word-spacing:-18.560000pt;}
.ws11{word-spacing:-18.416533pt;}
.ws10{word-spacing:-18.400000pt;}
.ws16{word-spacing:-18.391467pt;}
.wsb{word-spacing:-18.383467pt;}
.ws9{word-spacing:-18.112000pt;}
.ws15{word-spacing:-18.064000pt;}
.ws3{word-spacing:-16.192000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.936000pt;}
.ws19{word-spacing:-15.744000pt;}
.wsc{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.280000pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-17.979093pt;}
._a{margin-left:-15.993813pt;}
._d{margin-left:-14.907947pt;}
._c{margin-left:-13.964373pt;}
._8{margin-left:-12.320000pt;}
._9{margin-left:-10.240000pt;}
._6{margin-left:-8.503253pt;}
._4{margin-left:-7.360000pt;}
._7{margin-left:-6.453333pt;}
._11{margin-left:-5.499947pt;}
._3{margin-left:-4.544000pt;}
._5{margin-left:-2.880000pt;}
._10{margin-left:-1.982080pt;}
._1{margin-left:-1.088000pt;}
._2{width:1.002667pt;}
._f{width:2.591573pt;}
._12{width:5.768320pt;}
._e{width:749.418667pt;}
._0{width:752.138667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:51.680000pt;}
.y1{bottom:70.240000pt;}
.yf2{bottom:104.800000pt;}
.yd9{bottom:106.560000pt;}
.y84{bottom:107.040000pt;}
.yb8{bottom:107.200000pt;}
.y5d{bottom:107.520000pt;}
.ya7{bottom:111.520000pt;}
.yab{bottom:115.840000pt;}
.ycd{bottom:121.600000pt;}
.ya6{bottom:123.040000pt;}
.ya0{bottom:123.200000pt;}
.yaf{bottom:123.360000pt;}
.y7b{bottom:123.680000pt;}
.y111{bottom:129.760000pt;}
.y10d{bottom:132.320000pt;}
.yd8{bottom:138.906667pt;}
.y83{bottom:139.226667pt;}
.y93{bottom:139.386667pt;}
.y5c{bottom:139.706667pt;}
.y4b{bottom:140.346667pt;}
.yf1{bottom:141.626667pt;}
.y100{bottom:148.346667pt;}
.y70{bottom:149.946667pt;}
.y6f{bottom:155.226667pt;}
.y9f{bottom:155.386667pt;}
.yae{bottom:155.546667pt;}
.y7a{bottom:155.866667pt;}
.y4a{bottom:159.386667pt;}
.y10c{bottom:169.146667pt;}
.yd7{bottom:171.066667pt;}
.ye4{bottom:171.226667pt;}
.y82{bottom:171.386667pt;}
.yb5{bottom:171.546667pt;}
.y92{bottom:171.706667pt;}
.y5b{bottom:171.866667pt;}
.y49{bottom:180.826667pt;}
.yff{bottom:185.146667pt;}
.y6e{bottom:187.386667pt;}
.y9e{bottom:187.546667pt;}
.yaa{bottom:187.706667pt;}
.yf0{bottom:194.426667pt;}
.y48{bottom:202.266667pt;}
.yd6{bottom:203.226667pt;}
.ye3{bottom:203.386667pt;}
.yb7{bottom:203.546667pt;}
.y81{bottom:203.706667pt;}
.ye2{bottom:203.866667pt;}
.y79{bottom:204.026667pt;}
.y10b{bottom:205.946667pt;}
.y2f{bottom:212.506667pt;}
.yb4{bottom:219.546667pt;}
.y6d{bottom:219.706667pt;}
.y91{bottom:219.866667pt;}
.y5a{bottom:220.026667pt;}
.yfe{bottom:221.946667pt;}
.y47{bottom:223.706667pt;}
.yef{bottom:231.226667pt;}
.yd5{bottom:235.386667pt;}
.y9d{bottom:235.706667pt;}
.yb2{bottom:235.866667pt;}
.yad{bottom:236.026667pt;}
.y78{bottom:236.346667pt;}
.y10a{bottom:242.746667pt;}
.y2e{bottom:243.066667pt;}
.y46{bottom:245.146667pt;}
.yb3{bottom:251.706667pt;}
.y6c{bottom:251.866667pt;}
.y90{bottom:252.026667pt;}
.yfd{bottom:258.746667pt;}
.y45{bottom:266.586667pt;}
.yd4{bottom:267.706667pt;}
.ya5{bottom:267.866667pt;}
.y9c{bottom:268.026667pt;}
.yc2{bottom:268.186667pt;}
.y59{bottom:268.346667pt;}
.y2d{bottom:273.626667pt;}
.y109{bottom:279.546667pt;}
.ycc{bottom:283.866667pt;}
.y6b{bottom:284.026667pt;}
.y8f{bottom:284.186667pt;}
.ye1{bottom:284.346667pt;}
.y77{bottom:284.506667pt;}
.y44{bottom:288.186667pt;}
.y2c{bottom:293.466667pt;}
.yfc{bottom:295.546667pt;}
.yd3{bottom:299.866667pt;}
.ya4{bottom:300.026667pt;}
.y9b{bottom:300.186667pt;}
.y58{bottom:300.506667pt;}
.yee{bottom:304.866667pt;}
.y43{bottom:309.666667pt;}
.ycb{bottom:316.066667pt;}
.y80{bottom:316.226667pt;}
.yac{bottom:316.386667pt;}
.ye0{bottom:316.546667pt;}
.y76{bottom:316.706667pt;}
.y2b{bottom:324.066667pt;}
.y42{bottom:331.106667pt;}
.yd2{bottom:332.066667pt;}
.y6a{bottom:332.226667pt;}
.y8e{bottom:332.386667pt;}
.y57{bottom:332.706667pt;}
.yed{bottom:341.666667pt;}
.y2a{bottom:343.906667pt;}
.yca{bottom:348.226667pt;}
.y7f{bottom:348.386667pt;}
.yc1{bottom:348.546667pt;}
.ydf{bottom:348.706667pt;}
.y41{bottom:352.546667pt;}
.y110{bottom:353.186667pt;}
.y29{bottom:363.746667pt;}
.yd1{bottom:364.226667pt;}
.y69{bottom:364.386667pt;}
.y9a{bottom:364.546667pt;}
.y8d{bottom:364.706667pt;}
.y75{bottom:364.866667pt;}
.y108{bottom:369.186667pt;}
.y40{bottom:373.986667pt;}
.yec{bottom:378.466667pt;}
.yc9{bottom:380.386667pt;}
.ya8{bottom:380.546667pt;}
.yb1{bottom:380.706667pt;}
.y56{bottom:380.866667pt;}
.y28{bottom:383.586667pt;}
.yfb{bottom:385.186667pt;}
.y10f{bottom:389.986667pt;}
.y16{bottom:390.786667pt;}
.y3f{bottom:395.426667pt;}
.yd0{bottom:396.386667pt;}
.yb6{bottom:396.546667pt;}
.y68{bottom:396.706667pt;}
.y8c{bottom:396.866667pt;}
.y74{bottom:397.186667pt;}
.y27{bottom:403.426667pt;}
.y107{bottom:405.986667pt;}
.y15{bottom:410.306667pt;}
.yc8{bottom:412.706667pt;}
.y99{bottom:412.866667pt;}
.y55{bottom:413.186667pt;}
.yeb{bottom:415.266667pt;}
.y3e{bottom:416.866667pt;}
.yfa{bottom:421.986667pt;}
.y26{bottom:423.426667pt;}
.y10e{bottom:426.786667pt;}
.ycf{bottom:428.706667pt;}
.y67{bottom:428.866667pt;}
.yc0{bottom:429.026667pt;}
.yde{bottom:429.186667pt;}
.y73{bottom:429.346667pt;}
.y14{bottom:429.826667pt;}
.y3d{bottom:438.466667pt;}
.y106{bottom:442.786667pt;}
.y25{bottom:443.266667pt;}
.yc7{bottom:444.866667pt;}
.y8b{bottom:445.026667pt;}
.y54{bottom:445.346667pt;}
.y13{bottom:449.346667pt;}
.yea{bottom:452.066667pt;}
.yf9{bottom:458.786667pt;}
.y3c{bottom:459.906667pt;}
.yce{bottom:460.866667pt;}
.y66{bottom:461.026667pt;}
.ybf{bottom:461.186667pt;}
.ydd{bottom:461.346667pt;}
.y24{bottom:463.106667pt;}
.y12{bottom:468.893333pt;}
.ya9{bottom:477.053333pt;}
.y8a{bottom:477.213333pt;}
.y53{bottom:477.533333pt;}
.y105{bottom:479.613333pt;}
.y3b{bottom:481.373333pt;}
.y23{bottom:482.973333pt;}
.y11{bottom:488.573333pt;}
.ye9{bottom:488.893333pt;}
.yc6{bottom:493.053333pt;}
.y7e{bottom:493.213333pt;}
.ybe{bottom:493.373333pt;}
.ydc{bottom:493.533333pt;}
.yf8{bottom:495.613333pt;}
.y22{bottom:502.813333pt;}
.y10{bottom:508.093333pt;}
.y65{bottom:509.213333pt;}
.yb0{bottom:509.373333pt;}
.y89{bottom:509.533333pt;}
.y52{bottom:509.693333pt;}
.y104{bottom:516.413333pt;}
.y21{bottom:522.653333pt;}
.y3a{bottom:524.253333pt;}
.yc5{bottom:525.213333pt;}
.y98{bottom:525.373333pt;}
.ya1{bottom:525.533333pt;}
.ybd{bottom:525.693333pt;}
.yf{bottom:526.653333pt;}
.yf7{bottom:532.413333pt;}
.yb9{bottom:541.373333pt;}
.y64{bottom:541.533333pt;}
.y88{bottom:541.693333pt;}
.y51{bottom:542.013333pt;}
.ye{bottom:545.053333pt;}
.y39{bottom:545.693333pt;}
.y20{bottom:553.213333pt;}
.yc4{bottom:557.533333pt;}
.y97{bottom:557.693333pt;}
.ye8{bottom:562.493333pt;}
.yd{bottom:563.453333pt;}
.y38{bottom:567.293333pt;}
.yf6{bottom:569.213333pt;}
.y1f{bottom:573.053333pt;}
.y63{bottom:573.693333pt;}
.ybc{bottom:573.853333pt;}
.ydb{bottom:574.013333pt;}
.y72{bottom:574.173333pt;}
.yc{bottom:581.853333pt;}
.y37{bottom:588.733333pt;}
.yc3{bottom:589.693333pt;}
.y87{bottom:589.853333pt;}
.y103{bottom:590.013333pt;}
.y50{bottom:590.173333pt;}
.y1e{bottom:592.893333pt;}
.ye7{bottom:599.293333pt;}
.yb{bottom:600.253333pt;}
.y62{bottom:605.853333pt;}
.ybb{bottom:606.013333pt;}
.yda{bottom:606.173333pt;}
.y36{bottom:610.173333pt;}
.ya{bottom:618.653333pt;}
.ya3{bottom:621.853333pt;}
.y86{bottom:622.013333pt;}
.y71{bottom:622.333333pt;}
.y1d{bottom:623.453333pt;}
.y102{bottom:626.853333pt;}
.y35{bottom:631.653333pt;}
.ye6{bottom:636.133333pt;}
.y9{bottom:637.093333pt;}
.y61{bottom:638.053333pt;}
.yba{bottom:638.213333pt;}
.y4f{bottom:638.373333pt;}
.yf5{bottom:642.853333pt;}
.y1c{bottom:643.333333pt;}
.y34{bottom:653.093333pt;}
.ya2{bottom:654.053333pt;}
.y85{bottom:654.373333pt;}
.y8{bottom:655.493333pt;}
.y1b{bottom:663.173333pt;}
.y101{bottom:663.653333pt;}
.y96{bottom:670.213333pt;}
.y60{bottom:670.373333pt;}
.y4e{bottom:670.533333pt;}
.ye5{bottom:672.933333pt;}
.y7{bottom:673.733333pt;}
.y33{bottom:674.533333pt;}
.yf4{bottom:679.653333pt;}
.y1a{bottom:683.013333pt;}
.y7d{bottom:686.373333pt;}
.y5{bottom:691.973333pt;}
.y6{bottom:692.133333pt;}
.y32{bottom:695.973333pt;}
.y17{bottom:701.413333pt;}
.y95{bottom:702.373333pt;}
.y5f{bottom:702.533333pt;}
.y4d{bottom:702.693333pt;}
.y19{bottom:702.853333pt;}
.yf3{bottom:716.453333pt;}
.y31{bottom:717.573333pt;}
.y7c{bottom:718.533333pt;}
.y4{bottom:721.253333pt;}
.y18{bottom:722.693333pt;}
.y4c{bottom:743.173333pt;}
.y94{bottom:743.333333pt;}
.y5e{bottom:750.693333pt;}
.y30{bottom:750.853333pt;}
.y3{bottom:753.253333pt;}
.h4{height:44.687500pt;}
.h3{height:45.156250pt;}
.h7{height:52.284375pt;}
.h5{height:52.750000pt;}
.h2{height:54.093750pt;}
.h6{height:55.099687pt;}
.h9{height:61.717500pt;}
.h8{height:78.646562pt;}
.h1{height:864.000000pt;}
.h0{height:864.160000pt;}
.w1{width:575.999991pt;}
.w0{width:576.000000pt;}
.x0{left:0.000000pt;}
.x2{left:96.031991pt;}
.x9{left:144.026658pt;}
.x5{left:196.546658pt;}
.x8{left:221.506658pt;}
.x4{left:265.346658pt;}
.xc{left:276.066658pt;}
.xb{left:280.066658pt;}
.x6{left:281.346658pt;}
.x3{left:283.586658pt;}
.x1{left:285.826658pt;}
.x7{left:288.066658pt;}
.xa{left:508.133325pt;}
}




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