
    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_27e5e13fec145d460ae2bd39.woff')format("woff");}.ff1{font-family:ff1;line-height:1.365723;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_0713450a23e6c49d4084c676.woff')format("woff");}.ff2{font-family:ff2;line-height:1.099609;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_c504795632a84959b623a845.woff')format("woff");}.ff3{font-family:ff3;line-height:1.365723;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_3c874b8140ce66cb4e79a7cb.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_cf9f6d16430008c58f469fb1.woff')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_ca6c8d84ff2f8819c45b16f8.woff')format("woff");}.ff6{font-family:ff6;line-height:1.099609;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_a35ac1d82fa4aa05b7ca7b47.woff')format("woff");}.ff7{font-family:ff7;line-height:1.125000;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_58b7cd30f3cd4a66f1378757.woff')format("woff");}.ff8{font-family:ff8;line-height:1.125000;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_8f86c3d9cf82254e61ef464d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.851562;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ffa{font-family:ffa;line-height:1.003906;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v0{vertical-align:0.000000px;}
.ls32{letter-spacing:-14.640000px;}
.ls17{letter-spacing:-11.760000px;}
.ls16{letter-spacing:-1.008000px;}
.ls2a{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.340800px;}
.lsd{letter-spacing:-0.325200px;}
.ls21{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.207600px;}
.ls29{letter-spacing:-0.144000px;}
.lsf{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.015840px;}
.ls5{letter-spacing:0.063360px;}
.lsa{letter-spacing:0.063600px;}
.lsc{letter-spacing:0.072000px;}
.ls23{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.154800px;}
.ls22{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.265680px;}
.ls6{letter-spacing:0.272160px;}
.ls11{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.295200px;}
.ls0{letter-spacing:0.298800px;}
.ls39{letter-spacing:0.359280px;}
.ls1{letter-spacing:0.360000px;}
.ls31{letter-spacing:0.432000px;}
.ls1c{letter-spacing:0.545040px;}
.ls25{letter-spacing:0.648000px;}
.ls20{letter-spacing:1.207440px;}
.ls19{letter-spacing:1.368000px;}
.ls27{letter-spacing:2.088000px;}
.ls26{letter-spacing:2.268000px;}
.ls14{letter-spacing:2.808000px;}
.ls1a{letter-spacing:3.528000px;}
.ls2e{letter-spacing:4.248000px;}
.ls3a{letter-spacing:5.688000px;}
.ls10{letter-spacing:6.408000px;}
.ls33{letter-spacing:6.696000px;}
.ls35{letter-spacing:7.128000px;}
.ls15{letter-spacing:7.848000px;}
.ls4{letter-spacing:8.407440px;}
.ls30{letter-spacing:8.568000px;}
.ls24{letter-spacing:10.008000px;}
.ls2d{letter-spacing:10.728000px;}
.ls12{letter-spacing:12.348000px;}
.ls1d{letter-spacing:12.664800px;}
.ls2f{letter-spacing:12.888000px;}
.ls1b{letter-spacing:13.384800px;}
.ls1e{letter-spacing:13.447440px;}
.ls36{letter-spacing:13.608000px;}
.ls8{letter-spacing:15.048000px;}
.ls13{letter-spacing:15.768000px;}
.ls37{letter-spacing:17.928000px;}
.ls34{letter-spacing:19.368000px;}
.ls2c{letter-spacing:21.528000px;}
.ls28{letter-spacing:23.688000px;}
.ls38{letter-spacing:29.448000px;}
.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.744800px;}
.ws8{word-spacing:-20.232000px;}
.ws5{word-spacing:-19.512000px;}
.ws4{word-spacing:-19.440000px;}
.ws6{word-spacing:-18.613440px;}
.ws7{word-spacing:-18.288240px;}
.wse{word-spacing:-18.072000px;}
.wsc{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.784000px;}
.wsd{word-spacing:-17.280000px;}
.ws0{word-spacing:-17.152560px;}
.ws1{word-spacing:-16.792560px;}
.wsb{word-spacing:-16.451760px;}
.ws2{word-spacing:-16.432560px;}
.wsf{word-spacing:-14.328000px;}
.ws9{word-spacing:0.000000px;}
._f{margin-left:-6.072000px;}
._b{margin-left:-5.040000px;}
._a{margin-left:-3.888000px;}
._2{margin-left:-2.808720px;}
._1{margin-left:-1.284240px;}
._0{width:1.314720px;}
._9{width:3.312000px;}
._4{width:5.049120px;}
._3{width:6.095520px;}
._14{width:7.200000px;}
._7{width:8.270400px;}
._5{width:9.740880px;}
._6{width:11.095680px;}
._8{width:12.184800px;}
._e{width:14.160000px;}
._c{width:15.480000px;}
._d{width:16.666560px;}
._13{width:17.677440px;}
._17{width:19.140240px;}
._1c{width:21.600000px;}
._10{width:23.184000px;}
._1b{width:24.672000px;}
._21{width:25.815840px;}
._1e{width:26.928000px;}
._11{width:28.512000px;}
._12{width:29.758560px;}
._22{width:30.900480px;}
._16{width:32.040000px;}
._15{width:33.120000px;}
._1f{width:37.937280px;}
._20{width:39.252000px;}
._19{width:42.120000px;}
._18{width:43.128000px;}
._1a{width:44.189280px;}
._1d{width:52.560000px;}
.fc2{color:rgb(15,71,97);}
.fc1{color:rgb(70,120,134);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:75.893905px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.990000px;}
.y2{bottom:4.350000px;}
.y5{bottom:25.410000px;}
.y4{bottom:47.010000px;}
.y3{bottom:68.430000px;}
.y11{bottom:76.176000px;}
.y10{bottom:95.256000px;}
.yf{bottom:116.136000px;}
.y72{bottom:116.316000px;}
.y6a{bottom:122.076000px;}
.y74{bottom:128.196000px;}
.y71{bottom:134.496000px;}
.ye{bottom:137.736000px;}
.y69{bottom:138.816000px;}
.y70{bottom:140.436000px;}
.y6d{bottom:143.676000px;}
.y73{bottom:154.110000px;}
.y6f{bottom:157.170000px;}
.yd{bottom:159.150000px;}
.y6c{bottom:160.230000px;}
.y58{bottom:165.090000px;}
.y68{bottom:179.850000px;}
.yc{bottom:180.750000px;}
.y57{bottom:186.690000px;}
.yb{bottom:202.350000px;}
.y56{bottom:203.430000px;}
.y67{bottom:205.770000px;}
.ya{bottom:223.770000px;}
.y66{bottom:231.510000px;}
.y9{bottom:245.370000px;}
.y55{bottom:257.430000px;}
.y64{bottom:266.790000px;}
.y54{bottom:283.170000px;}
.y8{bottom:284.070000px;}
.y63{bottom:288.390000px;}
.y52{bottom:309.090000px;}
.y62{bottom:309.810000px;}
.y53{bottom:316.650000px;}
.y2f{bottom:318.450000px;}
.y61{bottom:331.410000px;}
.y51{bottom:334.830000px;}
.y2e{bottom:344.235000px;}
.y60{bottom:352.875000px;}
.y5f{bottom:358.815000px;}
.y50{bottom:360.615000px;}
.y2d{bottom:370.155000px;}
.y5e{bottom:374.475000px;}
.y4f{bottom:386.535000px;}
.y2c{bottom:395.895000px;}
.y5d{bottom:401.835000px;}
.y4e{bottom:412.275000px;}
.y5c{bottom:418.575000px;}
.y2b{bottom:421.815000px;}
.y4d{bottom:438.195000px;}
.y2a{bottom:447.555000px;}
.y4c{bottom:463.935000px;}
.y29{bottom:473.475000px;}
.y4b{bottom:489.855000px;}
.y28{bottom:499.215000px;}
.y4a{bottom:515.595000px;}
.y27{bottom:525.135000px;}
.y49{bottom:541.515000px;}
.y65{bottom:549.075000px;}
.y26{bottom:550.875000px;}
.y48{bottom:567.255000px;}
.y25{bottom:588.675000px;}
.y47{bottom:593.175000px;}
.y46{bottom:618.945000px;}
.y24{bottom:625.785000px;}
.y45{bottom:644.685000px;}
.y23{bottom:649.725000px;}
.y6b{bottom:652.245000px;}
.y44{bottom:670.605000px;}
.y22{bottom:671.685000px;}
.y5b{bottom:678.165000px;}
.y21{bottom:695.805000px;}
.y43{bottom:696.345000px;}
.y20{bottom:721.725000px;}
.y42{bottom:722.265000px;}
.y1f{bottom:747.105000px;}
.y41{bottom:748.005000px;}
.y1e{bottom:770.685000px;}
.y40{bottom:773.925000px;}
.y6e{bottom:781.485000px;}
.y1d{bottom:794.445000px;}
.y3f{bottom:799.665000px;}
.y7d{bottom:805.425000px;}
.y1c{bottom:818.025000px;}
.y3d{bottom:825.585000px;}
.y7c{bottom:832.245000px;}
.y3e{bottom:833.145000px;}
.y1b{bottom:841.785000px;}
.y3c{bottom:851.325000px;}
.y7b{bottom:857.985000px;}
.y1a{bottom:865.365000px;}
.y3b{bottom:877.290000px;}
.y7a{bottom:883.950000px;}
.y5a{bottom:884.850000px;}
.y19{bottom:888.810000px;}
.y3a{bottom:903.030000px;}
.y79{bottom:914.190000px;}
.y18{bottom:924.090000px;}
.y39{bottom:928.950000px;}
.y78{bottom:939.930000px;}
.y17{bottom:949.830000px;}
.y38{bottom:954.690000px;}
.y77{bottom:970.350000px;}
.y16{bottom:975.750000px;}
.y37{bottom:980.430000px;}
.y76{bottom:996.090000px;}
.y15{bottom:1002.210000px;}
.y36{bottom:1006.350000px;}
.y35{bottom:1032.090000px;}
.y14{bottom:1032.270000px;}
.y75{bottom:1034.070000px;}
.y34{bottom:1058.010000px;}
.y13{bottom:1062.510000px;}
.y33{bottom:1083.750000px;}
.y12{bottom:1091.490000px;}
.y32{bottom:1109.670000px;}
.y7{bottom:1115.790000px;}
.y1{bottom:1134.330000px;}
.y31{bottom:1135.410000px;}
.y59{bottom:1143.000000px;}
.y30{bottom:1203.480000px;}
.hd{height:40.781250px;}
.h7{height:43.506914px;}
.hc{height:47.306250px;}
.h4{height:51.618867px;}
.hf{height:51.793945px;}
.h6{height:61.171875px;}
.he{height:61.367337px;}
.ha{height:62.191406px;}
.h5{height:62.402344px;}
.h3{height:67.696875px;}
.h9{height:72.763945px;}
.h8{height:75.037500px;}
.hb{height:81.562500px;}
.h2{height:86.076000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:50.796000px;}
.w4{width:329.610000px;}
.w2{width:331.950000px;}
.w6{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x8{left:104.615987px;}
.x1{left:106.416000px;}
.xe{left:110.915987px;}
.x15{left:112.535987px;}
.x20{left:148.895987px;}
.xc{left:155.369973px;}
.x9{left:160.409987px;}
.x2{left:176.799000px;}
.x1c{left:215.849987px;}
.x11{left:249.869973px;}
.x12{left:255.089987px;}
.x18{left:314.714973px;}
.x19{left:320.294987px;}
.xd{left:322.454987px;}
.x1d{left:394.994973px;}
.x1e{left:400.214987px;}
.x3{left:438.375000px;}
.x7{left:446.474987px;}
.x5{left:489.165000px;}
.xf{left:523.724973px;}
.x10{left:529.304987px;}
.x13{left:532.724973px;}
.x14{left:538.484987px;}
.x16{left:608.864973px;}
.x17{left:614.084987px;}
.x1a{left:681.449973px;}
.x1b{left:686.669987px;}
.xa{left:765.149973px;}
.x1f{left:767.489987px;}
.xb{left:770.729987px;}
.x6{left:777.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls32{letter-spacing:-13.013333pt;}
.ls17{letter-spacing:-10.453333pt;}
.ls16{letter-spacing:-0.896000pt;}
.ls2a{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.302933pt;}
.lsd{letter-spacing:-0.289067pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.184533pt;}
.ls29{letter-spacing:-0.128000pt;}
.lsf{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.014080pt;}
.ls5{letter-spacing:0.056320pt;}
.lsa{letter-spacing:0.056533pt;}
.lsc{letter-spacing:0.064000pt;}
.ls23{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.137600pt;}
.ls22{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.236160pt;}
.ls6{letter-spacing:0.241920pt;}
.ls11{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.262400pt;}
.ls0{letter-spacing:0.265600pt;}
.ls39{letter-spacing:0.319360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls31{letter-spacing:0.384000pt;}
.ls1c{letter-spacing:0.484480pt;}
.ls25{letter-spacing:0.576000pt;}
.ls20{letter-spacing:1.073280pt;}
.ls19{letter-spacing:1.216000pt;}
.ls27{letter-spacing:1.856000pt;}
.ls26{letter-spacing:2.016000pt;}
.ls14{letter-spacing:2.496000pt;}
.ls1a{letter-spacing:3.136000pt;}
.ls2e{letter-spacing:3.776000pt;}
.ls3a{letter-spacing:5.056000pt;}
.ls10{letter-spacing:5.696000pt;}
.ls33{letter-spacing:5.952000pt;}
.ls35{letter-spacing:6.336000pt;}
.ls15{letter-spacing:6.976000pt;}
.ls4{letter-spacing:7.473280pt;}
.ls30{letter-spacing:7.616000pt;}
.ls24{letter-spacing:8.896000pt;}
.ls2d{letter-spacing:9.536000pt;}
.ls12{letter-spacing:10.976000pt;}
.ls1d{letter-spacing:11.257600pt;}
.ls2f{letter-spacing:11.456000pt;}
.ls1b{letter-spacing:11.897600pt;}
.ls1e{letter-spacing:11.953280pt;}
.ls36{letter-spacing:12.096000pt;}
.ls8{letter-spacing:13.376000pt;}
.ls13{letter-spacing:14.016000pt;}
.ls37{letter-spacing:15.936000pt;}
.ls34{letter-spacing:17.216000pt;}
.ls2c{letter-spacing:19.136000pt;}
.ls28{letter-spacing:21.056000pt;}
.ls38{letter-spacing:26.176000pt;}
.ws3{word-spacing:-20.217600pt;}
.ws8{word-spacing:-17.984000pt;}
.ws5{word-spacing:-17.344000pt;}
.ws4{word-spacing:-17.280000pt;}
.ws6{word-spacing:-16.545280pt;}
.ws7{word-spacing:-16.256213pt;}
.wse{word-spacing:-16.064000pt;}
.wsc{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.808000pt;}
.wsd{word-spacing:-15.360000pt;}
.ws0{word-spacing:-15.246720pt;}
.ws1{word-spacing:-14.926720pt;}
.wsb{word-spacing:-14.623787pt;}
.ws2{word-spacing:-14.606720pt;}
.wsf{word-spacing:-12.736000pt;}
.ws9{word-spacing:0.000000pt;}
._f{margin-left:-5.397333pt;}
._b{margin-left:-4.480000pt;}
._a{margin-left:-3.456000pt;}
._2{margin-left:-2.496640pt;}
._1{margin-left:-1.141547pt;}
._0{width:1.168640pt;}
._9{width:2.944000pt;}
._4{width:4.488107pt;}
._3{width:5.418240pt;}
._14{width:6.400000pt;}
._7{width:7.351467pt;}
._5{width:8.658560pt;}
._6{width:9.862827pt;}
._8{width:10.830933pt;}
._e{width:12.586667pt;}
._c{width:13.760000pt;}
._d{width:14.814720pt;}
._13{width:15.713280pt;}
._17{width:17.013547pt;}
._1c{width:19.200000pt;}
._10{width:20.608000pt;}
._1b{width:21.930667pt;}
._21{width:22.947413pt;}
._1e{width:23.936000pt;}
._11{width:25.344000pt;}
._12{width:26.452053pt;}
._22{width:27.467093pt;}
._16{width:28.480000pt;}
._15{width:29.440000pt;}
._1f{width:33.722027pt;}
._20{width:34.890667pt;}
._19{width:37.440000pt;}
._18{width:38.336000pt;}
._1a{width:39.279360pt;}
._1d{width:46.720000pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:67.461249pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.546667pt;}
.y2{bottom:3.866667pt;}
.y5{bottom:22.586667pt;}
.y4{bottom:41.786667pt;}
.y3{bottom:60.826667pt;}
.y11{bottom:67.712000pt;}
.y10{bottom:84.672000pt;}
.yf{bottom:103.232000pt;}
.y72{bottom:103.392000pt;}
.y6a{bottom:108.512000pt;}
.y74{bottom:113.952000pt;}
.y71{bottom:119.552000pt;}
.ye{bottom:122.432000pt;}
.y69{bottom:123.392000pt;}
.y70{bottom:124.832000pt;}
.y6d{bottom:127.712000pt;}
.y73{bottom:136.986667pt;}
.y6f{bottom:139.706667pt;}
.yd{bottom:141.466667pt;}
.y6c{bottom:142.426667pt;}
.y58{bottom:146.746667pt;}
.y68{bottom:159.866667pt;}
.yc{bottom:160.666667pt;}
.y57{bottom:165.946667pt;}
.yb{bottom:179.866667pt;}
.y56{bottom:180.826667pt;}
.y67{bottom:182.906667pt;}
.ya{bottom:198.906667pt;}
.y66{bottom:205.786667pt;}
.y9{bottom:218.106667pt;}
.y55{bottom:228.826667pt;}
.y64{bottom:237.146667pt;}
.y54{bottom:251.706667pt;}
.y8{bottom:252.506667pt;}
.y63{bottom:256.346667pt;}
.y52{bottom:274.746667pt;}
.y62{bottom:275.386667pt;}
.y53{bottom:281.466667pt;}
.y2f{bottom:283.066667pt;}
.y61{bottom:294.586667pt;}
.y51{bottom:297.626667pt;}
.y2e{bottom:305.986667pt;}
.y60{bottom:313.666667pt;}
.y5f{bottom:318.946667pt;}
.y50{bottom:320.546667pt;}
.y2d{bottom:329.026667pt;}
.y5e{bottom:332.866667pt;}
.y4f{bottom:343.586667pt;}
.y2c{bottom:351.906667pt;}
.y5d{bottom:357.186667pt;}
.y4e{bottom:366.466667pt;}
.y5c{bottom:372.066667pt;}
.y2b{bottom:374.946667pt;}
.y4d{bottom:389.506667pt;}
.y2a{bottom:397.826667pt;}
.y4c{bottom:412.386667pt;}
.y29{bottom:420.866667pt;}
.y4b{bottom:435.426667pt;}
.y28{bottom:443.746667pt;}
.y4a{bottom:458.306667pt;}
.y27{bottom:466.786667pt;}
.y49{bottom:481.346667pt;}
.y65{bottom:488.066667pt;}
.y26{bottom:489.666667pt;}
.y48{bottom:504.226667pt;}
.y25{bottom:523.266667pt;}
.y47{bottom:527.266667pt;}
.y46{bottom:550.173333pt;}
.y24{bottom:556.253333pt;}
.y45{bottom:573.053333pt;}
.y23{bottom:577.533333pt;}
.y6b{bottom:579.773333pt;}
.y44{bottom:596.093333pt;}
.y22{bottom:597.053333pt;}
.y5b{bottom:602.813333pt;}
.y21{bottom:618.493333pt;}
.y43{bottom:618.973333pt;}
.y20{bottom:641.533333pt;}
.y42{bottom:642.013333pt;}
.y1f{bottom:664.093333pt;}
.y41{bottom:664.893333pt;}
.y1e{bottom:685.053333pt;}
.y40{bottom:687.933333pt;}
.y6e{bottom:694.653333pt;}
.y1d{bottom:706.173333pt;}
.y3f{bottom:710.813333pt;}
.y7d{bottom:715.933333pt;}
.y1c{bottom:727.133333pt;}
.y3d{bottom:733.853333pt;}
.y7c{bottom:739.773333pt;}
.y3e{bottom:740.573333pt;}
.y1b{bottom:748.253333pt;}
.y3c{bottom:756.733333pt;}
.y7b{bottom:762.653333pt;}
.y1a{bottom:769.213333pt;}
.y3b{bottom:779.813333pt;}
.y7a{bottom:785.733333pt;}
.y5a{bottom:786.533333pt;}
.y19{bottom:790.053333pt;}
.y3a{bottom:802.693333pt;}
.y79{bottom:812.613333pt;}
.y18{bottom:821.413333pt;}
.y39{bottom:825.733333pt;}
.y78{bottom:835.493333pt;}
.y17{bottom:844.293333pt;}
.y38{bottom:848.613333pt;}
.y77{bottom:862.533333pt;}
.y16{bottom:867.333333pt;}
.y37{bottom:871.493333pt;}
.y76{bottom:885.413333pt;}
.y15{bottom:890.853333pt;}
.y36{bottom:894.533333pt;}
.y35{bottom:917.413333pt;}
.y14{bottom:917.573333pt;}
.y75{bottom:919.173333pt;}
.y34{bottom:940.453333pt;}
.y13{bottom:944.453333pt;}
.y33{bottom:963.333333pt;}
.y12{bottom:970.213333pt;}
.y32{bottom:986.373333pt;}
.y7{bottom:991.813333pt;}
.y1{bottom:1008.293333pt;}
.y31{bottom:1009.253333pt;}
.y59{bottom:1016.000000pt;}
.y30{bottom:1069.760000pt;}
.hd{height:36.250000pt;}
.h7{height:38.672812pt;}
.hc{height:42.050000pt;}
.h4{height:45.883437pt;}
.hf{height:46.039063pt;}
.h6{height:54.375000pt;}
.he{height:54.548744pt;}
.ha{height:55.281250pt;}
.h5{height:55.468750pt;}
.h3{height:60.175000pt;}
.h9{height:64.679063pt;}
.h8{height:66.700000pt;}
.hb{height:72.500000pt;}
.h2{height:76.512000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.152000pt;}
.w4{width:292.986667pt;}
.w2{width:295.066667pt;}
.w6{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x8{left:92.991988pt;}
.x1{left:94.592000pt;}
.xe{left:98.591988pt;}
.x15{left:100.031988pt;}
.x20{left:132.351988pt;}
.xc{left:138.106643pt;}
.x9{left:142.586655pt;}
.x2{left:157.154667pt;}
.x1c{left:191.866655pt;}
.x11{left:222.106643pt;}
.x12{left:226.746655pt;}
.x18{left:279.746643pt;}
.x19{left:284.706655pt;}
.xd{left:286.626655pt;}
.x1d{left:351.106643pt;}
.x1e{left:355.746655pt;}
.x3{left:389.666667pt;}
.x7{left:396.866655pt;}
.x5{left:434.813333pt;}
.xf{left:465.533310pt;}
.x10{left:470.493322pt;}
.x13{left:473.533310pt;}
.x14{left:478.653322pt;}
.x16{left:541.213310pt;}
.x17{left:545.853322pt;}
.x1a{left:605.733310pt;}
.x1b{left:610.373322pt;}
.xa{left:680.133310pt;}
.x1f{left:682.213322pt;}
.xb{left:685.093322pt;}
.x6{left:690.853322pt;}
}




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