
    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_be76610c22b71405d9a723f6.woff')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_f226c59d04630a0465866b1d.woff')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_78dd29b509e4e759795cd96e.woff')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_0dca929d42523a59beda23d3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6dcfeafce980ac7bd3e3d102.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b9d73ba0201288f999c5ff62.woff')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_0361c5c2755bfb92688311c8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.853027;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;}
.m2{transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233333,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.241668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.241668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.241668,0.000000,0.000000,0.250000,0,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:-99.600000px;}
.v1{vertical-align:-97.200000px;}
.v2{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-3.048000px;}
.ls14{letter-spacing:-1.848000px;}
.ls12{letter-spacing:-1.572000px;}
.ls17{letter-spacing:-1.200000px;}
.ls13{letter-spacing:-0.924000px;}
.ls16{letter-spacing:-0.648000px;}
.lsf{letter-spacing:-0.276000px;}
.ls3{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.096000px;}
.ls6{letter-spacing:0.240000px;}
.ls10{letter-spacing:0.552000px;}
.ls9{letter-spacing:0.600000px;}
.lsb{letter-spacing:0.720000px;}
.ls1d{letter-spacing:0.768000px;}
.lsa{letter-spacing:0.780000px;}
.ls1a{letter-spacing:0.828000px;}
.ls1b{letter-spacing:0.888000px;}
.ls7{letter-spacing:0.924000px;}
.ls5{letter-spacing:1.260000px;}
.ls8{letter-spacing:1.296000px;}
.lsc{letter-spacing:1.980000px;}
.lse{letter-spacing:6.600000px;}
.ls2{letter-spacing:16.140000px;}
.ls1{letter-spacing:37.860000px;}
.ls19{letter-spacing:40.218000px;}
.lsd{letter-spacing:66.540000px;}
.ls1c{letter-spacing:82.218000px;}
.ls18{letter-spacing:939.330000px;}
.ls0{letter-spacing:1046.130000px;}
.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;}
}
.ws3{word-spacing:-22.296000px;}
.ws2{word-spacing:-21.924000px;}
.ws5{word-spacing:-21.552000px;}
.ws6{word-spacing:-21.096000px;}
.ws0{word-spacing:-21.000000px;}
.ws4{word-spacing:-20.724000px;}
.wsb{word-spacing:-20.352000px;}
.ws8{word-spacing:-20.076000px;}
.wsc{word-spacing:-19.800000px;}
.ws7{word-spacing:-19.428000px;}
.ws9{word-spacing:-19.152000px;}
.wsa{word-spacing:-17.952000px;}
.wsd{word-spacing:-14.100000px;}
.ws1{word-spacing:0.000000px;}
._2d{margin-left:-18.816000px;}
._1e{margin-left:-2.946000px;}
._1{margin-left:-1.428000px;}
._0{width:1.092000px;}
._2{width:2.778000px;}
._1f{width:4.104000px;}
._14{width:5.460000px;}
._13{width:6.804000px;}
._15{width:8.502000px;}
._1d{width:9.726000px;}
._18{width:10.752000px;}
._17{width:12.516000px;}
._1c{width:14.028000px;}
._19{width:15.420000px;}
._6{width:16.884000px;}
._5{width:18.312000px;}
._16{width:19.590000px;}
._7{width:22.092000px;}
._8{width:23.730000px;}
._1a{width:25.032000px;}
._c{width:26.214000px;}
._d{width:27.294000px;}
._b{width:28.524000px;}
._9{width:29.820000px;}
._a{width:30.846000px;}
._2b{width:31.914000px;}
._20{width:33.432000px;}
._21{width:34.668000px;}
._1b{width:35.892000px;}
._11{width:37.110000px;}
._10{width:38.220000px;}
._12{width:39.348000px;}
._2e{width:40.518000px;}
._2a{width:41.580000px;}
._4{width:42.924000px;}
._3{width:43.932000px;}
._29{width:45.360000px;}
._27{width:46.368000px;}
._28{width:47.460000px;}
._26{width:48.888000px;}
._34{width:50.094000px;}
._32{width:52.752000px;}
._31{width:54.264000px;}
._22{width:56.532000px;}
._23{width:57.960000px;}
._2f{width:59.136000px;}
._30{width:60.900000px;}
._e{width:64.512000px;}
._f{width:65.802000px;}
._33{width:67.278000px;}
._38{width:69.750000px;}
._39{width:71.634000px;}
._2c{width:72.744000px;}
._37{width:75.150000px;}
._35{width:77.142000px;}
._25{width:90.132000px;}
._24{width:91.560000px;}
._36{width:98.784000px;}
._3a{width:843.330000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:4.782000px;}
.y83{bottom:4.785000px;}
.y86{bottom:4.815000px;}
.y4c{bottom:5.082000px;}
.y52{bottom:5.085000px;}
.y8f{bottom:5.370000px;}
.y54{bottom:5.385000px;}
.y46{bottom:16.774500px;}
.y8b{bottom:17.085000px;}
.y8d{bottom:17.415000px;}
.y4d{bottom:28.782000px;}
.y82{bottom:28.785000px;}
.y85{bottom:28.815000px;}
.y48{bottom:28.819500px;}
.y4f{bottom:29.070000px;}
.y4b{bottom:29.382000px;}
.y51{bottom:29.385000px;}
.y8e{bottom:29.415000px;}
.y45{bottom:40.819500px;}
.y81{bottom:53.085000px;}
.y47{bottom:53.119500px;}
.y84{bottom:53.130000px;}
.y2{bottom:53.137500px;}
.y1{bottom:59.137500px;}
.y7e{bottom:65.415000px;}
.y80{bottom:77.085000px;}
.y7c{bottom:77.415000px;}
.y4a{bottom:87.955500px;}
.y7d{bottom:89.715000px;}
.y2e{bottom:96.037500px;}
.yac{bottom:106.537500px;}
.y7a{bottom:117.037500px;}
.y2d{bottom:120.037500px;}
.yab{bottom:130.837500px;}
.y44{bottom:136.855500px;}
.y79{bottom:141.037500px;}
.y2c{bottom:144.337500px;}
.yaa{bottom:154.830000px;}
.y78{bottom:165.375000px;}
.y2b{bottom:168.375000px;}
.ya9{bottom:179.175000px;}
.y77{bottom:189.975000px;}
.y2a{bottom:192.675000px;}
.ya8{bottom:203.175000px;}
.y76{bottom:214.275000px;}
.y43{bottom:214.875000px;}
.y29{bottom:216.675000px;}
.ya7{bottom:227.475000px;}
.y75{bottom:238.275000px;}
.y42{bottom:238.875000px;}
.y28{bottom:240.975000px;}
.ya6{bottom:251.475000px;}
.y74{bottom:262.275000px;}
.y41{bottom:263.175000px;}
.y27{bottom:264.975000px;}
.ya5{bottom:275.775000px;}
.y73{bottom:286.575000px;}
.y40{bottom:287.775000px;}
.y26{bottom:289.275000px;}
.ya4{bottom:299.775000px;}
.y72{bottom:310.575000px;}
.y3f{bottom:312.075000px;}
.y25{bottom:313.275000px;}
.ya3{bottom:324.075000px;}
.y71{bottom:334.905000px;}
.y3e{bottom:336.120000px;}
.y24{bottom:337.620000px;}
.ya2{bottom:348.120000px;}
.y70{bottom:358.905000px;}
.y3d{bottom:360.405000px;}
.y23{bottom:361.620000px;}
.ya1{bottom:372.405000px;}
.y6f{bottom:383.205000px;}
.y3c{bottom:384.405000px;}
.y22{bottom:385.905000px;}
.ya0{bottom:396.405000px;}
.y6e{bottom:407.205000px;}
.y3b{bottom:408.405000px;}
.y21{bottom:409.905000px;}
.y9f{bottom:420.705000px;}
.y6d{bottom:431.505000px;}
.y3a{bottom:432.705000px;}
.y20{bottom:434.205000px;}
.y9e{bottom:444.705000px;}
.y6c{bottom:455.505000px;}
.y39{bottom:456.705000px;}
.yae{bottom:457.620000px;}
.y1f{bottom:458.205000px;}
.y9d{bottom:469.005000px;}
.y6b{bottom:479.820000px;}
.y38{bottom:481.005000px;}
.y1e{bottom:482.505000px;}
.y9c{bottom:493.005000px;}
.y6a{bottom:503.850000px;}
.y37{bottom:505.650000px;}
.y1d{bottom:506.550000px;}
.y9b{bottom:517.350000px;}
.y69{bottom:528.150000px;}
.y36{bottom:530.250000px;}
.y1c{bottom:530.850000px;}
.y9a{bottom:541.350000px;}
.y68{bottom:552.150000px;}
.y1b{bottom:554.250000px;}
.y35{bottom:554.850000px;}
.y99{bottom:561.165000px;}
.y67{bottom:576.450000px;}
.y1a{bottom:579.150000px;}
.y66{bottom:600.450000px;}
.y19{bottom:603.150000px;}
.y98{bottom:610.065000px;}
.y65{bottom:624.750000px;}
.y18{bottom:627.450000px;}
.y97{bottom:634.965000px;}
.y64{bottom:648.750000px;}
.y17{bottom:651.450000px;}
.y96{bottom:659.865000px;}
.y63{bottom:673.080000px;}
.y16{bottom:675.780000px;}
.y95{bottom:684.810000px;}
.y62{bottom:697.080000px;}
.y15{bottom:699.780000px;}
.y94{bottom:709.710000px;}
.y61{bottom:721.380000px;}
.y14{bottom:724.080000px;}
.y93{bottom:734.610000px;}
.y60{bottom:745.380000px;}
.y13{bottom:747.480000px;}
.y34{bottom:748.080000px;}
.y92{bottom:759.510000px;}
.y5f{bottom:769.695000px;}
.yad{bottom:771.795000px;}
.y12{bottom:772.380000px;}
.y91{bottom:784.410000px;}
.y5e{bottom:793.695000px;}
.y11{bottom:796.380000px;}
.y90{bottom:809.310000px;}
.y5d{bottom:817.980000px;}
.y10{bottom:820.695000px;}
.y8c{bottom:834.210000px;}
.y5c{bottom:842.025000px;}
.yf{bottom:844.725000px;}
.y5b{bottom:866.325000px;}
.ye{bottom:869.025000px;}
.y8a{bottom:883.440000px;}
.y5a{bottom:890.325000px;}
.yd{bottom:893.025000px;}
.y59{bottom:914.625000px;}
.yc{bottom:917.325000px;}
.y89{bottom:932.340000px;}
.y58{bottom:938.625000px;}
.yb{bottom:941.325000px;}
.y88{bottom:957.240000px;}
.y57{bottom:962.925000px;}
.ya{bottom:965.025000px;}
.y33{bottom:965.625000px;}
.y87{bottom:982.140000px;}
.y56{bottom:986.925000px;}
.y9{bottom:989.625000px;}
.y7b{bottom:1007.040000px;}
.y55{bottom:1011.255000px;}
.y8{bottom:1013.955000px;}
.y53{bottom:1030.785000px;}
.y7{bottom:1037.955000px;}
.y6{bottom:1062.255000px;}
.y50{bottom:1079.985000px;}
.y7f{bottom:1080.285000px;}
.y32{bottom:1086.255000px;}
.y5{bottom:1109.955000px;}
.y31{bottom:1110.570000px;}
.y4e{bottom:1128.885000px;}
.y4{bottom:1133.955000px;}
.y30{bottom:1134.570000px;}
.y3{bottom:1158.255000px;}
.y2f{bottom:1158.870000px;}
.h11{height:24.270000px;}
.he{height:24.285000px;}
.h12{height:24.322500px;}
.h9{height:47.985000px;}
.ha{height:48.270000px;}
.h8{height:48.282000px;}
.hf{height:48.285000px;}
.h10{height:48.307500px;}
.h6{height:58.652344px;}
.h3{height:61.670545px;}
.h7{height:72.619500px;}
.hd{height:72.622500px;}
.h2{height:82.441406px;}
.h5{height:83.794922px;}
.h4{height:84.656250px;}
.h13{height:86.338763px;}
.hc{height:96.585000px;}
.hb{height:169.815000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:52.182000px;}
.we{width:53.385000px;}
.wc{width:61.522500px;}
.w9{width:68.685000px;}
.w8{width:68.719500px;}
.wf{width:72.622500px;}
.w11{width:78.885000px;}
.w10{width:78.907500px;}
.wd{width:84.307500px;}
.wa{width:84.322500px;}
.w6{width:91.507500px;}
.w5{width:104.422500px;}
.w3{width:116.122500px;}
.w2{width:126.919500px;}
.w4{width:131.707500px;}
.wb{width:158.415000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:2.700000px;}
.x1e{left:4.500000px;}
.x2c{left:6.300000px;}
.xe{left:8.100000px;}
.x1b{left:10.200000px;}
.x33{left:11.392500px;}
.x26{left:12.600000px;}
.x2f{left:14.100000px;}
.x14{left:15.300000px;}
.x21{left:17.100000px;}
.x30{left:18.300000px;}
.x20{left:21.300000px;}
.xb{left:22.500000px;}
.x16{left:23.985000px;}
.x32{left:25.545000px;}
.x19{left:28.500000px;}
.x18{left:29.700000px;}
.x29{left:32.985000px;}
.xd{left:34.500000px;}
.x2a{left:36.300000px;}
.x28{left:38.985000px;}
.xa{left:40.200000px;}
.x1f{left:45.600000px;}
.x1d{left:52.200000px;}
.x12{left:54.600000px;}
.x1a{left:57.900000px;}
.x1c{left:65.700000px;}
.xf{left:81.930000px;}
.x2{left:84.937500px;}
.x22{left:91.537500px;}
.x9{left:101.437500px;}
.x4{left:105.937500px;}
.x3{left:109.537500px;}
.x34{left:114.337500px;}
.x5{left:127.537500px;}
.x23{left:144.637500px;}
.x35{left:198.375000px;}
.x24{left:213.975000px;}
.xc{left:228.975000px;}
.x8{left:262.575000px;}
.x6{left:275.175000px;}
.x25{left:283.275000px;}
.x10{left:346.020000px;}
.x27{left:368.520000px;}
.x7{left:369.720000px;}
.x1{left:430.650000px;}
.x31{left:448.050000px;}
.x13{left:478.350000px;}
.x2b{left:527.550000px;}
.x15{left:583.395000px;}
.x2d{left:589.995000px;}
.x17{left:675.825000px;}
.x2e{left:728.925000px;}
@media print{
.v3{vertical-align:-88.533333pt;}
.v1{vertical-align:-86.400000pt;}
.v2{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-2.709333pt;}
.ls14{letter-spacing:-1.642667pt;}
.ls12{letter-spacing:-1.397333pt;}
.ls17{letter-spacing:-1.066667pt;}
.ls13{letter-spacing:-0.821333pt;}
.ls16{letter-spacing:-0.576000pt;}
.lsf{letter-spacing:-0.245333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.085333pt;}
.ls6{letter-spacing:0.213333pt;}
.ls10{letter-spacing:0.490667pt;}
.ls9{letter-spacing:0.533333pt;}
.lsb{letter-spacing:0.640000pt;}
.ls1d{letter-spacing:0.682667pt;}
.lsa{letter-spacing:0.693333pt;}
.ls1a{letter-spacing:0.736000pt;}
.ls1b{letter-spacing:0.789333pt;}
.ls7{letter-spacing:0.821333pt;}
.ls5{letter-spacing:1.120000pt;}
.ls8{letter-spacing:1.152000pt;}
.lsc{letter-spacing:1.760000pt;}
.lse{letter-spacing:5.866667pt;}
.ls2{letter-spacing:14.346667pt;}
.ls1{letter-spacing:33.653333pt;}
.ls19{letter-spacing:35.749333pt;}
.lsd{letter-spacing:59.146667pt;}
.ls1c{letter-spacing:73.082667pt;}
.ls18{letter-spacing:834.960000pt;}
.ls0{letter-spacing:929.893333pt;}
.ws3{word-spacing:-19.818667pt;}
.ws2{word-spacing:-19.488000pt;}
.ws5{word-spacing:-19.157333pt;}
.ws6{word-spacing:-18.752000pt;}
.ws0{word-spacing:-18.666667pt;}
.ws4{word-spacing:-18.421333pt;}
.wsb{word-spacing:-18.090667pt;}
.ws8{word-spacing:-17.845333pt;}
.wsc{word-spacing:-17.600000pt;}
.ws7{word-spacing:-17.269333pt;}
.ws9{word-spacing:-17.024000pt;}
.wsa{word-spacing:-15.957333pt;}
.wsd{word-spacing:-12.533333pt;}
.ws1{word-spacing:0.000000pt;}
._2d{margin-left:-16.725333pt;}
._1e{margin-left:-2.618667pt;}
._1{margin-left:-1.269333pt;}
._0{width:0.970667pt;}
._2{width:2.469333pt;}
._1f{width:3.648000pt;}
._14{width:4.853333pt;}
._13{width:6.048000pt;}
._15{width:7.557333pt;}
._1d{width:8.645333pt;}
._18{width:9.557333pt;}
._17{width:11.125333pt;}
._1c{width:12.469333pt;}
._19{width:13.706667pt;}
._6{width:15.008000pt;}
._5{width:16.277333pt;}
._16{width:17.413333pt;}
._7{width:19.637333pt;}
._8{width:21.093333pt;}
._1a{width:22.250667pt;}
._c{width:23.301333pt;}
._d{width:24.261333pt;}
._b{width:25.354667pt;}
._9{width:26.506667pt;}
._a{width:27.418667pt;}
._2b{width:28.368000pt;}
._20{width:29.717333pt;}
._21{width:30.816000pt;}
._1b{width:31.904000pt;}
._11{width:32.986667pt;}
._10{width:33.973333pt;}
._12{width:34.976000pt;}
._2e{width:36.016000pt;}
._2a{width:36.960000pt;}
._4{width:38.154667pt;}
._3{width:39.050667pt;}
._29{width:40.320000pt;}
._27{width:41.216000pt;}
._28{width:42.186667pt;}
._26{width:43.456000pt;}
._34{width:44.528000pt;}
._32{width:46.890667pt;}
._31{width:48.234667pt;}
._22{width:50.250667pt;}
._23{width:51.520000pt;}
._2f{width:52.565333pt;}
._30{width:54.133333pt;}
._e{width:57.344000pt;}
._f{width:58.490667pt;}
._33{width:59.802667pt;}
._38{width:62.000000pt;}
._39{width:63.674667pt;}
._2c{width:64.661333pt;}
._37{width:66.800000pt;}
._35{width:68.570667pt;}
._25{width:80.117333pt;}
._24{width:81.386667pt;}
._36{width:87.808000pt;}
._3a{width:749.626667pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:4.250667pt;}
.y83{bottom:4.253333pt;}
.y86{bottom:4.280000pt;}
.y4c{bottom:4.517333pt;}
.y52{bottom:4.520000pt;}
.y8f{bottom:4.773333pt;}
.y54{bottom:4.786667pt;}
.y46{bottom:14.910667pt;}
.y8b{bottom:15.186667pt;}
.y8d{bottom:15.480000pt;}
.y4d{bottom:25.584000pt;}
.y82{bottom:25.586667pt;}
.y85{bottom:25.613333pt;}
.y48{bottom:25.617333pt;}
.y4f{bottom:25.840000pt;}
.y4b{bottom:26.117333pt;}
.y51{bottom:26.120000pt;}
.y8e{bottom:26.146667pt;}
.y45{bottom:36.284000pt;}
.y81{bottom:47.186667pt;}
.y47{bottom:47.217333pt;}
.y84{bottom:47.226667pt;}
.y2{bottom:47.233333pt;}
.y1{bottom:52.566667pt;}
.y7e{bottom:58.146667pt;}
.y80{bottom:68.520000pt;}
.y7c{bottom:68.813333pt;}
.y4a{bottom:78.182667pt;}
.y7d{bottom:79.746667pt;}
.y2e{bottom:85.366667pt;}
.yac{bottom:94.700000pt;}
.y7a{bottom:104.033333pt;}
.y2d{bottom:106.700000pt;}
.yab{bottom:116.300000pt;}
.y44{bottom:121.649333pt;}
.y79{bottom:125.366667pt;}
.y2c{bottom:128.300000pt;}
.yaa{bottom:137.626667pt;}
.y78{bottom:147.000000pt;}
.y2b{bottom:149.666667pt;}
.ya9{bottom:159.266667pt;}
.y77{bottom:168.866667pt;}
.y2a{bottom:171.266667pt;}
.ya8{bottom:180.600000pt;}
.y76{bottom:190.466667pt;}
.y43{bottom:191.000000pt;}
.y29{bottom:192.600000pt;}
.ya7{bottom:202.200000pt;}
.y75{bottom:211.800000pt;}
.y42{bottom:212.333333pt;}
.y28{bottom:214.200000pt;}
.ya6{bottom:223.533333pt;}
.y74{bottom:233.133333pt;}
.y41{bottom:233.933333pt;}
.y27{bottom:235.533333pt;}
.ya5{bottom:245.133333pt;}
.y73{bottom:254.733333pt;}
.y40{bottom:255.800000pt;}
.y26{bottom:257.133333pt;}
.ya4{bottom:266.466667pt;}
.y72{bottom:276.066667pt;}
.y3f{bottom:277.400000pt;}
.y25{bottom:278.466667pt;}
.ya3{bottom:288.066667pt;}
.y71{bottom:297.693333pt;}
.y3e{bottom:298.773333pt;}
.y24{bottom:300.106667pt;}
.ya2{bottom:309.440000pt;}
.y70{bottom:319.026667pt;}
.y3d{bottom:320.360000pt;}
.y23{bottom:321.440000pt;}
.ya1{bottom:331.026667pt;}
.y6f{bottom:340.626667pt;}
.y3c{bottom:341.693333pt;}
.y22{bottom:343.026667pt;}
.ya0{bottom:352.360000pt;}
.y6e{bottom:361.960000pt;}
.y3b{bottom:363.026667pt;}
.y21{bottom:364.360000pt;}
.y9f{bottom:373.960000pt;}
.y6d{bottom:383.560000pt;}
.y3a{bottom:384.626667pt;}
.y20{bottom:385.960000pt;}
.y9e{bottom:395.293333pt;}
.y6c{bottom:404.893333pt;}
.y39{bottom:405.960000pt;}
.yae{bottom:406.773333pt;}
.y1f{bottom:407.293333pt;}
.y9d{bottom:416.893333pt;}
.y6b{bottom:426.506667pt;}
.y38{bottom:427.560000pt;}
.y1e{bottom:428.893333pt;}
.y9c{bottom:438.226667pt;}
.y6a{bottom:447.866667pt;}
.y37{bottom:449.466667pt;}
.y1d{bottom:450.266667pt;}
.y9b{bottom:459.866667pt;}
.y69{bottom:469.466667pt;}
.y36{bottom:471.333333pt;}
.y1c{bottom:471.866667pt;}
.y9a{bottom:481.200000pt;}
.y68{bottom:490.800000pt;}
.y1b{bottom:492.666667pt;}
.y35{bottom:493.200000pt;}
.y99{bottom:498.813333pt;}
.y67{bottom:512.400000pt;}
.y1a{bottom:514.800000pt;}
.y66{bottom:533.733333pt;}
.y19{bottom:536.133333pt;}
.y98{bottom:542.280000pt;}
.y65{bottom:555.333333pt;}
.y18{bottom:557.733333pt;}
.y97{bottom:564.413333pt;}
.y64{bottom:576.666667pt;}
.y17{bottom:579.066667pt;}
.y96{bottom:586.546667pt;}
.y63{bottom:598.293333pt;}
.y16{bottom:600.693333pt;}
.y95{bottom:608.720000pt;}
.y62{bottom:619.626667pt;}
.y15{bottom:622.026667pt;}
.y94{bottom:630.853333pt;}
.y61{bottom:641.226667pt;}
.y14{bottom:643.626667pt;}
.y93{bottom:652.986667pt;}
.y60{bottom:662.560000pt;}
.y13{bottom:664.426667pt;}
.y34{bottom:664.960000pt;}
.y92{bottom:675.120000pt;}
.y5f{bottom:684.173333pt;}
.yad{bottom:686.040000pt;}
.y12{bottom:686.560000pt;}
.y91{bottom:697.253333pt;}
.y5e{bottom:705.506667pt;}
.y11{bottom:707.893333pt;}
.y90{bottom:719.386667pt;}
.y5d{bottom:727.093333pt;}
.y10{bottom:729.506667pt;}
.y8c{bottom:741.520000pt;}
.y5c{bottom:748.466667pt;}
.yf{bottom:750.866667pt;}
.y5b{bottom:770.066667pt;}
.ye{bottom:772.466667pt;}
.y8a{bottom:785.280000pt;}
.y5a{bottom:791.400000pt;}
.yd{bottom:793.800000pt;}
.y59{bottom:813.000000pt;}
.yc{bottom:815.400000pt;}
.y89{bottom:828.746667pt;}
.y58{bottom:834.333333pt;}
.yb{bottom:836.733333pt;}
.y88{bottom:850.880000pt;}
.y57{bottom:855.933333pt;}
.ya{bottom:857.800000pt;}
.y33{bottom:858.333333pt;}
.y87{bottom:873.013333pt;}
.y56{bottom:877.266667pt;}
.y9{bottom:879.666667pt;}
.y7b{bottom:895.146667pt;}
.y55{bottom:898.893333pt;}
.y8{bottom:901.293333pt;}
.y53{bottom:916.253333pt;}
.y7{bottom:922.626667pt;}
.y6{bottom:944.226667pt;}
.y50{bottom:959.986667pt;}
.y7f{bottom:960.253333pt;}
.y32{bottom:965.560000pt;}
.y5{bottom:986.626667pt;}
.y31{bottom:987.173333pt;}
.y4e{bottom:1003.453333pt;}
.y4{bottom:1007.960000pt;}
.y30{bottom:1008.506667pt;}
.y3{bottom:1029.560000pt;}
.y2f{bottom:1030.106667pt;}
.h11{height:21.573333pt;}
.he{height:21.586667pt;}
.h12{height:21.620000pt;}
.h9{height:42.653333pt;}
.ha{height:42.906667pt;}
.h8{height:42.917333pt;}
.hf{height:42.920000pt;}
.h10{height:42.940000pt;}
.h6{height:52.135417pt;}
.h3{height:54.818262pt;}
.h7{height:64.550667pt;}
.hd{height:64.553333pt;}
.h2{height:73.281250pt;}
.h5{height:74.484375pt;}
.h4{height:75.250000pt;}
.h13{height:76.745567pt;}
.hc{height:85.853333pt;}
.hb{height:150.946667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:46.384000pt;}
.we{width:47.453333pt;}
.wc{width:54.686667pt;}
.w9{width:61.053333pt;}
.w8{width:61.084000pt;}
.wf{width:64.553333pt;}
.w11{width:70.120000pt;}
.w10{width:70.140000pt;}
.wd{width:74.940000pt;}
.wa{width:74.953333pt;}
.w6{width:81.340000pt;}
.w5{width:92.820000pt;}
.w3{width:103.220000pt;}
.w2{width:112.817333pt;}
.w4{width:117.073333pt;}
.wb{width:140.813333pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:2.400000pt;}
.x1e{left:4.000000pt;}
.x2c{left:5.600000pt;}
.xe{left:7.200000pt;}
.x1b{left:9.066667pt;}
.x33{left:10.126667pt;}
.x26{left:11.200000pt;}
.x2f{left:12.533333pt;}
.x14{left:13.600000pt;}
.x21{left:15.200000pt;}
.x30{left:16.266667pt;}
.x20{left:18.933333pt;}
.xb{left:20.000000pt;}
.x16{left:21.320000pt;}
.x32{left:22.706667pt;}
.x19{left:25.333333pt;}
.x18{left:26.400000pt;}
.x29{left:29.320000pt;}
.xd{left:30.666667pt;}
.x2a{left:32.266667pt;}
.x28{left:34.653333pt;}
.xa{left:35.733333pt;}
.x1f{left:40.533333pt;}
.x1d{left:46.400000pt;}
.x12{left:48.533333pt;}
.x1a{left:51.466667pt;}
.x1c{left:58.400000pt;}
.xf{left:72.826667pt;}
.x2{left:75.500000pt;}
.x22{left:81.366667pt;}
.x9{left:90.166667pt;}
.x4{left:94.166667pt;}
.x3{left:97.366667pt;}
.x34{left:101.633333pt;}
.x5{left:113.366667pt;}
.x23{left:128.566667pt;}
.x35{left:176.333333pt;}
.x24{left:190.200000pt;}
.xc{left:203.533333pt;}
.x8{left:233.400000pt;}
.x6{left:244.600000pt;}
.x25{left:251.800000pt;}
.x10{left:307.573333pt;}
.x27{left:327.573333pt;}
.x7{left:328.640000pt;}
.x1{left:382.800000pt;}
.x31{left:398.266667pt;}
.x13{left:425.200000pt;}
.x2b{left:468.933333pt;}
.x15{left:518.573333pt;}
.x2d{left:524.440000pt;}
.x17{left:600.733333pt;}
.x2e{left:647.933333pt;}
}




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