
    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_16d8a283022cb49aa56ad592.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1f337f27e61a982d32755bdd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2c71dc7e8c26950ddc7145ea.woff')format("woff");}.ff3{font-family:ff3;line-height:1.080566;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b5e48d9f0f3d8b0ccb6b0295.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5b2484095725cad58651fac2.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fec2821b681cf66436f52207.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c8045f230d74725e4a8f0b25.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_7d6b4c206fc8d662a71361a7.woff')format("woff");}.ff8{font-family:ff8;line-height:0.916992;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_b0aa7170c5b6685088d7c5c2.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-82.800000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.ls14{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.093000px;}
.ls3{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.014400px;}
.ls16{letter-spacing:0.021600px;}
.ls5{letter-spacing:0.028080px;}
.lsf{letter-spacing:0.144000px;}
.ls15{letter-spacing:0.291600px;}
.lsd{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.540000px;}
.ls4{letter-spacing:1.980000px;}
.ls10{letter-spacing:3.420000px;}
.ls13{letter-spacing:7.020000px;}
.ls2{letter-spacing:10.260000px;}
.lsc{letter-spacing:14.220000px;}
.ls11{letter-spacing:18.540000px;}
.ls18{letter-spacing:33.984000px;}
.ls1{letter-spacing:37.620000px;}
.lsb{letter-spacing:40.140000px;}
.ls0{letter-spacing:43.200000px;}
.ls12{letter-spacing:53.820000px;}
.lse{letter-spacing:55.980000px;}
.ls6{letter-spacing:90.540000px;}
.ls7{letter-spacing:120.960000px;}
.ls9{letter-spacing:172.026720px;}
.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:-21.420000px;}
.ws5{word-spacing:-21.351600px;}
.ws6{word-spacing:-21.081600px;}
.ws2{word-spacing:-21.060000px;}
.ws7{word-spacing:-20.967000px;}
.ws4{word-spacing:-20.700000px;}
.ws8{word-spacing:-18.360000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._27{margin-left:-2.505600px;}
._0{margin-left:-1.095120px;}
._1{width:1.503120px;}
._4{width:2.880000px;}
._17{width:4.043520px;}
._18{width:5.391360px;}
._5{width:6.696000px;}
._6{width:7.848000px;}
._10{width:9.504000px;}
._d{width:11.304000px;}
._c{width:12.672000px;}
._15{width:13.673760px;}
._13{width:14.688000px;}
._e{width:15.768000px;}
._1a{width:16.932240px;}
._20{width:18.027360px;}
._12{width:19.296000px;}
._11{width:20.952000px;}
._19{width:22.270080px;}
._f{width:23.304000px;}
._a{width:24.480000px;}
._b{width:25.848000px;}
._16{width:27.216000px;}
._3c{width:29.231280px;}
._22{width:30.242160px;}
._23{width:31.350480px;}
._1b{width:32.937840px;}
._1c{width:34.454160px;}
._21{width:35.467680px;}
._8{width:36.576000px;}
._7{width:37.584000px;}
._37{width:38.629680px;}
._9{width:39.660000px;}
._38{width:40.919040px;}
._25{width:42.541200px;}
._3d{width:44.478720px;}
._24{width:45.742320px;}
._1d{width:47.679840px;}
._1e{width:49.364640px;}
._3e{width:52.979520px;}
._3b{width:54.587520px;}
._3a{width:55.766880px;}
._36{width:57.744000px;}
._41{width:58.799520px;}
._1f{width:61.410960px;}
._3f{width:63.601200px;}
._40{width:64.612080px;}
._14{width:66.720000px;}
._3{width:68.280000px;}
._2{width:69.456000px;}
._2a{width:71.435520px;}
._2b{width:72.614880px;}
._39{width:73.738080px;}
._31{width:86.688000px;}
._26{width:90.221040px;}
._42{width:107.352000px;}
._2d{width:116.784000px;}
._28{width:120.715920px;}
._29{width:122.022480px;}
._2f{width:132.336000px;}
._2e{width:163.224000px;}
._35{width:174.888000px;}
._34{width:180.864000px;}
._30{width:197.928000px;}
._2c{width:304.128000px;}
._32{width:324.144000px;}
._33{width:496.296000px;}
.fc4{color:rgb(31,56,100);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y58{bottom:7.020000px;}
.y63{bottom:7.200000px;}
.y4{bottom:12.240000px;}
.y5a{bottom:18.900000px;}
.y5f{bottom:19.080000px;}
.y3{bottom:23.976000px;}
.y56{bottom:30.780000px;}
.y62{bottom:30.960000px;}
.y2{bottom:31.176000px;}
.y59{bottom:42.660000px;}
.y5d{bottom:42.840000px;}
.y57{bottom:54.540000px;}
.y61{bottom:54.720000px;}
.y64{bottom:66.600000px;}
.y5e{bottom:66.645000px;}
.y68{bottom:73.296000px;}
.y65{bottom:78.480000px;}
.y60{bottom:78.525000px;}
.y6a{bottom:80.136000px;}
.y31{bottom:81.396000px;}
.y54{bottom:101.016000px;}
.y69{bottom:103.896000px;}
.y30{bottom:109.116000px;}
.y53{bottom:128.916000px;}
.y2f{bottom:137.016000px;}
.y52{bottom:156.630000px;}
.y2e{bottom:164.730000px;}
.y51{bottom:184.350000px;}
.y2d{bottom:192.450000px;}
.y50{bottom:212.070000px;}
.y2c{bottom:220.170000px;}
.y4f{bottom:239.970000px;}
.y2b{bottom:248.070000px;}
.y4e{bottom:267.690000px;}
.y2a{bottom:275.790000px;}
.y4d{bottom:295.455000px;}
.y29{bottom:303.555000px;}
.y4c{bottom:323.175000px;}
.y67{bottom:323.355000px;}
.y28{bottom:331.455000px;}
.y4b{bottom:351.075000px;}
.y27{bottom:353.955000px;}
.y26{bottom:370.515000px;}
.y4a{bottom:378.795000px;}
.y25{bottom:391.215000px;}
.y49{bottom:406.515000px;}
.y24{bottom:411.915000px;}
.y23{bottom:432.615000px;}
.y48{bottom:434.415000px;}
.y22{bottom:453.315000px;}
.y47{bottom:462.135000px;}
.y21{bottom:474.015000px;}
.y46{bottom:489.855000px;}
.y20{bottom:494.715000px;}
.y1f{bottom:515.415000px;}
.y45{bottom:517.575000px;}
.y66{bottom:517.755000px;}
.y1e{bottom:536.115000px;}
.y44{bottom:545.475000px;}
.y1d{bottom:556.815000px;}
.y43{bottom:573.225000px;}
.y1c{bottom:577.545000px;}
.y82{bottom:596.985000px;}
.y1b{bottom:598.245000px;}
.y42{bottom:600.945000px;}
.y1a{bottom:618.945000px;}
.y81{bottom:620.565000px;}
.y41{bottom:628.845000px;}
.y19{bottom:639.645000px;}
.y80{bottom:641.265000px;}
.y40{bottom:656.565000px;}
.y18{bottom:660.345000px;}
.y7f{bottom:661.965000px;}
.y17{bottom:681.045000px;}
.y7e{bottom:682.665000px;}
.y3f{bottom:684.285000px;}
.y16{bottom:701.745000px;}
.y7d{bottom:703.365000px;}
.y3e{bottom:712.005000px;}
.y15{bottom:722.445000px;}
.y7c{bottom:724.065000px;}
.y3d{bottom:739.905000px;}
.y14{bottom:743.145000px;}
.y7b{bottom:744.765000px;}
.y13{bottom:763.845000px;}
.y7a{bottom:765.465000px;}
.y3c{bottom:767.625000px;}
.y5c{bottom:782.205000px;}
.y12{bottom:784.545000px;}
.y79{bottom:786.165000px;}
.y3b{bottom:795.345000px;}
.y11{bottom:805.245000px;}
.y78{bottom:806.865000px;}
.y3a{bottom:823.065000px;}
.y10{bottom:825.945000px;}
.y77{bottom:827.565000px;}
.yf{bottom:846.645000px;}
.y76{bottom:848.310000px;}
.y39{bottom:851.010000px;}
.ye{bottom:867.390000px;}
.y75{bottom:869.010000px;}
.y38{bottom:878.730000px;}
.y5b{bottom:883.590000px;}
.yd{bottom:888.090000px;}
.y74{bottom:889.710000px;}
.y37{bottom:906.450000px;}
.yc{bottom:908.070000px;}
.y73{bottom:910.410000px;}
.y72{bottom:931.110000px;}
.y36{bottom:934.350000px;}
.yb{bottom:946.590000px;}
.y71{bottom:951.810000px;}
.y55{bottom:960.990000px;}
.y35{bottom:962.070000px;}
.ya{bottom:967.290000px;}
.y70{bottom:972.510000px;}
.y9{bottom:987.990000px;}
.y34{bottom:989.790000px;}
.y6f{bottom:993.210000px;}
.y8{bottom:1007.790000px;}
.y6e{bottom:1013.910000px;}
.y33{bottom:1017.510000px;}
.y7{bottom:1024.890000px;}
.y6d{bottom:1034.610000px;}
.y32{bottom:1045.410000px;}
.y6{bottom:1049.010000px;}
.y6c{bottom:1055.310000px;}
.y5{bottom:1073.130000px;}
.y6b{bottom:1076.010000px;}
.y1{bottom:1190.160000px;}
.h3{height:31.860000px;}
.h10{height:50.484375px;}
.hb{height:52.971680px;}
.h6{height:54.421875px;}
.hc{height:59.066719px;}
.ha{height:59.343750px;}
.h9{height:60.226875px;}
.he{height:62.261719px;}
.h8{height:70.628906px;}
.hf{height:70.664062px;}
.hd{height:71.280000px;}
.h7{height:72.562500px;}
.h5{height:72.846211px;}
.h13{height:74.004654px;}
.h2{height:82.676953px;}
.h4{height:84.898125px;}
.h12{height:95.220000px;}
.h11{height:95.256000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:75.816000px;}
.w5{width:152.670000px;}
.w4{width:168.690000px;}
.w6{width:173.190000px;}
.w7{width:219.630000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.080000px;}
.x3{left:22.140000px;}
.xb{left:83.880000px;}
.x1{left:84.959987px;}
.x11{left:90.035987px;}
.x12{left:117.035987px;}
.xa{left:138.095987px;}
.x5{left:143.315987px;}
.x4{left:144.935987px;}
.x6{left:206.669987px;}
.x9{left:219.449987px;}
.xd{left:256.350000px;}
.x8{left:309.134987px;}
.x10{left:361.514987px;}
.x2{left:409.035000px;}
.xe{left:412.815000px;}
.x7{left:446.474987px;}
.xf{left:589.605000px;}
@media print{
.v1{vertical-align:-73.600000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.082667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.012800pt;}
.ls16{letter-spacing:0.019200pt;}
.ls5{letter-spacing:0.024960pt;}
.lsf{letter-spacing:0.128000pt;}
.ls15{letter-spacing:0.259200pt;}
.lsd{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.480000pt;}
.ls4{letter-spacing:1.760000pt;}
.ls10{letter-spacing:3.040000pt;}
.ls13{letter-spacing:6.240000pt;}
.ls2{letter-spacing:9.120000pt;}
.lsc{letter-spacing:12.640000pt;}
.ls11{letter-spacing:16.480000pt;}
.ls18{letter-spacing:30.208000pt;}
.ls1{letter-spacing:33.440000pt;}
.lsb{letter-spacing:35.680000pt;}
.ls0{letter-spacing:38.400000pt;}
.ls12{letter-spacing:47.840000pt;}
.lse{letter-spacing:49.760000pt;}
.ls6{letter-spacing:80.480000pt;}
.ls7{letter-spacing:107.520000pt;}
.ls9{letter-spacing:152.912640pt;}
.ws3{word-spacing:-19.040000pt;}
.ws5{word-spacing:-18.979200pt;}
.ws6{word-spacing:-18.739200pt;}
.ws2{word-spacing:-18.720000pt;}
.ws7{word-spacing:-18.637333pt;}
.ws4{word-spacing:-18.400000pt;}
.ws8{word-spacing:-16.320000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._27{margin-left:-2.227200pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.336107pt;}
._4{width:2.560000pt;}
._17{width:3.594240pt;}
._18{width:4.792320pt;}
._5{width:5.952000pt;}
._6{width:6.976000pt;}
._10{width:8.448000pt;}
._d{width:10.048000pt;}
._c{width:11.264000pt;}
._15{width:12.154453pt;}
._13{width:13.056000pt;}
._e{width:14.016000pt;}
._1a{width:15.050880pt;}
._20{width:16.024320pt;}
._12{width:17.152000pt;}
._11{width:18.624000pt;}
._19{width:19.795627pt;}
._f{width:20.714667pt;}
._a{width:21.760000pt;}
._b{width:22.976000pt;}
._16{width:24.192000pt;}
._3c{width:25.983360pt;}
._22{width:26.881920pt;}
._23{width:27.867093pt;}
._1b{width:29.278080pt;}
._1c{width:30.625920pt;}
._21{width:31.526827pt;}
._8{width:32.512000pt;}
._7{width:33.408000pt;}
._37{width:34.337493pt;}
._9{width:35.253333pt;}
._38{width:36.372480pt;}
._25{width:37.814400pt;}
._3d{width:39.536640pt;}
._24{width:40.659840pt;}
._1d{width:42.382080pt;}
._1e{width:43.879680pt;}
._3e{width:47.092907pt;}
._3b{width:48.522240pt;}
._3a{width:49.570560pt;}
._36{width:51.328000pt;}
._41{width:52.266240pt;}
._1f{width:54.587520pt;}
._3f{width:56.534400pt;}
._40{width:57.432960pt;}
._14{width:59.306667pt;}
._3{width:60.693333pt;}
._2{width:61.738667pt;}
._2a{width:63.498240pt;}
._2b{width:64.546560pt;}
._39{width:65.544960pt;}
._31{width:77.056000pt;}
._26{width:80.196480pt;}
._42{width:95.424000pt;}
._2d{width:103.808000pt;}
._28{width:107.303040pt;}
._29{width:108.464427pt;}
._2f{width:117.632000pt;}
._2e{width:145.088000pt;}
._35{width:155.456000pt;}
._34{width:160.768000pt;}
._30{width:175.936000pt;}
._2c{width:270.336000pt;}
._32{width:288.128000pt;}
._33{width:441.152000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:6.240000pt;}
.y63{bottom:6.400000pt;}
.y4{bottom:10.880000pt;}
.y5a{bottom:16.800000pt;}
.y5f{bottom:16.960000pt;}
.y3{bottom:21.312000pt;}
.y56{bottom:27.360000pt;}
.y62{bottom:27.520000pt;}
.y2{bottom:27.712000pt;}
.y59{bottom:37.920000pt;}
.y5d{bottom:38.080000pt;}
.y57{bottom:48.480000pt;}
.y61{bottom:48.640000pt;}
.y64{bottom:59.200000pt;}
.y5e{bottom:59.240000pt;}
.y68{bottom:65.152000pt;}
.y65{bottom:69.760000pt;}
.y60{bottom:69.800000pt;}
.y6a{bottom:71.232000pt;}
.y31{bottom:72.352000pt;}
.y54{bottom:89.792000pt;}
.y69{bottom:92.352000pt;}
.y30{bottom:96.992000pt;}
.y53{bottom:114.592000pt;}
.y2f{bottom:121.792000pt;}
.y52{bottom:139.226667pt;}
.y2e{bottom:146.426667pt;}
.y51{bottom:163.866667pt;}
.y2d{bottom:171.066667pt;}
.y50{bottom:188.506667pt;}
.y2c{bottom:195.706667pt;}
.y4f{bottom:213.306667pt;}
.y2b{bottom:220.506667pt;}
.y4e{bottom:237.946667pt;}
.y2a{bottom:245.146667pt;}
.y4d{bottom:262.626667pt;}
.y29{bottom:269.826667pt;}
.y4c{bottom:287.266667pt;}
.y67{bottom:287.426667pt;}
.y28{bottom:294.626667pt;}
.y4b{bottom:312.066667pt;}
.y27{bottom:314.626667pt;}
.y26{bottom:329.346667pt;}
.y4a{bottom:336.706667pt;}
.y25{bottom:347.746667pt;}
.y49{bottom:361.346667pt;}
.y24{bottom:366.146667pt;}
.y23{bottom:384.546667pt;}
.y48{bottom:386.146667pt;}
.y22{bottom:402.946667pt;}
.y47{bottom:410.786667pt;}
.y21{bottom:421.346667pt;}
.y46{bottom:435.426667pt;}
.y20{bottom:439.746667pt;}
.y1f{bottom:458.146667pt;}
.y45{bottom:460.066667pt;}
.y66{bottom:460.226667pt;}
.y1e{bottom:476.546667pt;}
.y44{bottom:484.866667pt;}
.y1d{bottom:494.946667pt;}
.y43{bottom:509.533333pt;}
.y1c{bottom:513.373333pt;}
.y82{bottom:530.653333pt;}
.y1b{bottom:531.773333pt;}
.y42{bottom:534.173333pt;}
.y1a{bottom:550.173333pt;}
.y81{bottom:551.613333pt;}
.y41{bottom:558.973333pt;}
.y19{bottom:568.573333pt;}
.y80{bottom:570.013333pt;}
.y40{bottom:583.613333pt;}
.y18{bottom:586.973333pt;}
.y7f{bottom:588.413333pt;}
.y17{bottom:605.373333pt;}
.y7e{bottom:606.813333pt;}
.y3f{bottom:608.253333pt;}
.y16{bottom:623.773333pt;}
.y7d{bottom:625.213333pt;}
.y3e{bottom:632.893333pt;}
.y15{bottom:642.173333pt;}
.y7c{bottom:643.613333pt;}
.y3d{bottom:657.693333pt;}
.y14{bottom:660.573333pt;}
.y7b{bottom:662.013333pt;}
.y13{bottom:678.973333pt;}
.y7a{bottom:680.413333pt;}
.y3c{bottom:682.333333pt;}
.y5c{bottom:695.293333pt;}
.y12{bottom:697.373333pt;}
.y79{bottom:698.813333pt;}
.y3b{bottom:706.973333pt;}
.y11{bottom:715.773333pt;}
.y78{bottom:717.213333pt;}
.y3a{bottom:731.613333pt;}
.y10{bottom:734.173333pt;}
.y77{bottom:735.613333pt;}
.yf{bottom:752.573333pt;}
.y76{bottom:754.053333pt;}
.y39{bottom:756.453333pt;}
.ye{bottom:771.013333pt;}
.y75{bottom:772.453333pt;}
.y38{bottom:781.093333pt;}
.y5b{bottom:785.413333pt;}
.yd{bottom:789.413333pt;}
.y74{bottom:790.853333pt;}
.y37{bottom:805.733333pt;}
.yc{bottom:807.173333pt;}
.y73{bottom:809.253333pt;}
.y72{bottom:827.653333pt;}
.y36{bottom:830.533333pt;}
.yb{bottom:841.413333pt;}
.y71{bottom:846.053333pt;}
.y55{bottom:854.213333pt;}
.y35{bottom:855.173333pt;}
.ya{bottom:859.813333pt;}
.y70{bottom:864.453333pt;}
.y9{bottom:878.213333pt;}
.y34{bottom:879.813333pt;}
.y6f{bottom:882.853333pt;}
.y8{bottom:895.813333pt;}
.y6e{bottom:901.253333pt;}
.y33{bottom:904.453333pt;}
.y7{bottom:911.013333pt;}
.y6d{bottom:919.653333pt;}
.y32{bottom:929.253333pt;}
.y6{bottom:932.453333pt;}
.y6c{bottom:938.053333pt;}
.y5{bottom:953.893333pt;}
.y6b{bottom:956.453333pt;}
.y1{bottom:1057.920000pt;}
.h3{height:28.320000pt;}
.h10{height:44.875000pt;}
.hb{height:47.085938pt;}
.h6{height:48.375000pt;}
.hc{height:52.503750pt;}
.ha{height:52.750000pt;}
.h9{height:53.535000pt;}
.he{height:55.343750pt;}
.h8{height:62.781250pt;}
.hf{height:62.812500pt;}
.hd{height:63.360000pt;}
.h7{height:64.500000pt;}
.h5{height:64.752187pt;}
.h13{height:65.781915pt;}
.h2{height:73.490625pt;}
.h4{height:75.465000pt;}
.h12{height:84.640000pt;}
.h11{height:84.672000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:67.392000pt;}
.w5{width:135.706667pt;}
.w4{width:149.946667pt;}
.w6{width:153.946667pt;}
.w7{width:195.226667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:0.960000pt;}
.x3{left:19.680000pt;}
.xb{left:74.560000pt;}
.x1{left:75.519988pt;}
.x11{left:80.031988pt;}
.x12{left:104.031988pt;}
.xa{left:122.751988pt;}
.x5{left:127.391988pt;}
.x4{left:128.831988pt;}
.x6{left:183.706655pt;}
.x9{left:195.066655pt;}
.xd{left:227.866667pt;}
.x8{left:274.786655pt;}
.x10{left:321.346655pt;}
.x2{left:363.586667pt;}
.xe{left:366.946667pt;}
.x7{left:396.866655pt;}
.xf{left:524.093333pt;}
}




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