
    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_91876f44b3b49fa2122d932c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8dee81f59f70d3c23261f065.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_731114ba400e0d7fdabe95a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.837891;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_e0e32fe62c5cf87a02cea31f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_540221e51aba02549f3bfb20.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_feda1a94cb879c8eccf8ec2a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.911133;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_316c3f290ef28a385d6a0970.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945312;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249974,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);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-1.650000px;}
.ls3{letter-spacing:-1.440000px;}
.ls4{letter-spacing:-0.330000px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.354000px;}
.ls9{letter-spacing:1.385400px;}
.ls1{letter-spacing:2.099955px;}
.ls0{letter-spacing:3.600075px;}
.ls7{letter-spacing:5.646600px;}
.ls8{letter-spacing:6.637200px;}
.ls6{letter-spacing:12.810600px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws10{word-spacing:-7.560000px;}
.ws1a{word-spacing:-3.096000px;}
.ws20{word-spacing:-2.664000px;}
.ws11{word-spacing:-2.508000px;}
.wsa{word-spacing:-2.112000px;}
.ws19{word-spacing:-2.088000px;}
.ws14{word-spacing:-1.368000px;}
.ws2{word-spacing:-1.296000px;}
.ws16{word-spacing:-0.864000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.144000px;}
.wsb{word-spacing:0.330000px;}
.wsf{word-spacing:0.360000px;}
.ws3{word-spacing:0.504000px;}
.ws5{word-spacing:1.440000px;}
.ws12{word-spacing:1.650000px;}
.ws1b{word-spacing:1.872000px;}
.wsd{word-spacing:2.016000px;}
.ws13{word-spacing:2.088000px;}
.ws15{word-spacing:2.592000px;}
.ws17{word-spacing:2.736000px;}
.ws18{word-spacing:3.024000px;}
.ws1e{word-spacing:3.240000px;}
.wsc{word-spacing:3.312000px;}
.ws9{word-spacing:3.600000px;}
.ws6{word-spacing:3.744000px;}
.ws23{word-spacing:5.544000px;}
.ws22{word-spacing:5.616000px;}
.ws4{word-spacing:8.064000px;}
.ws1c{word-spacing:8.208000px;}
.ws7{word-spacing:8.424000px;}
.wse{word-spacing:8.496000px;}
.ws21{word-spacing:11.376000px;}
.ws1d{word-spacing:11.952000px;}
.ws1f{word-spacing:18.792000px;}
._2{margin-left:-9.333000px;}
._5{margin-left:-7.970400px;}
._d{margin-left:-6.807600px;}
._1{margin-left:-5.650800px;}
._6{margin-left:-4.518600px;}
._4{margin-left:-3.459000px;}
._0{margin-left:-1.876200px;}
._3{width:1.362600px;}
._b{width:2.635200px;}
._a{width:3.722400px;}
._9{width:5.420400px;}
._c{width:6.940800px;}
._7{width:8.043000px;}
._8{width:9.849000px;}
._f{width:10.930800px;}
._e{width:12.777600px;}
._10{width:16.228800px;}
._11{width:19.562400px;}
.fc1{color:transparent;}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:83.998200px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:102.000000px;}
.fs4{font-size:144.003000px;}
.y0{bottom:0.000000px;}
.y1{bottom:31.876650px;}
.y2{bottom:36.412350px;}
.y22{bottom:39.623850px;}
.y53{bottom:50.209650px;}
.y6b{bottom:56.819550px;}
.y80{bottom:59.744550px;}
.y52{bottom:71.809500px;}
.y6a{bottom:78.419550px;}
.y7f{bottom:81.344550px;}
.ybf{bottom:84.702000px;}
.y51{bottom:93.409650px;}
.y1e{bottom:99.419550px;}
.y69{bottom:100.019550px;}
.y21{bottom:101.726850px;}
.y7e{bottom:102.944550px;}
.ybe{bottom:105.702000px;}
.y50{bottom:115.009650px;}
.y68{bottom:121.619550px;}
.y7d{bottom:124.544550px;}
.ybd{bottom:126.702000px;}
.y1d{bottom:136.019550px;}
.y4f{bottom:136.609650px;}
.y67{bottom:143.219550px;}
.y20{bottom:144.927750px;}
.y7c{bottom:146.144550px;}
.ybc{bottom:147.702000px;}
.y1c{bottom:157.619550px;}
.y4e{bottom:158.209650px;}
.y66{bottom:164.819550px;}
.y7b{bottom:167.744550px;}
.ybb{bottom:168.702000px;}
.y4d{bottom:179.809500px;}
.y65{bottom:186.419550px;}
.y7a{bottom:189.344550px;}
.yba{bottom:189.702000px;}
.y1b{bottom:195.119550px;}
.y4c{bottom:201.409650px;}
.y64{bottom:208.019550px;}
.yb9{bottom:210.702000px;}
.y79{bottom:210.944550px;}
.y1a{bottom:216.719550px;}
.y4b{bottom:223.009650px;}
.y63{bottom:229.619550px;}
.yb8{bottom:231.702000px;}
.y78{bottom:232.544550px;}
.y4a{bottom:244.609650px;}
.y62{bottom:251.219550px;}
.yb7{bottom:252.702000px;}
.y77{bottom:254.144550px;}
.y19{bottom:256.319550px;}
.y49{bottom:266.209650px;}
.y61{bottom:272.819550px;}
.yb6{bottom:273.702000px;}
.y76{bottom:275.744550px;}
.y18{bottom:277.919550px;}
.y48{bottom:287.809500px;}
.y60{bottom:294.419550px;}
.yb5{bottom:294.702000px;}
.y75{bottom:297.344550px;}
.y47{bottom:309.409650px;}
.yb4{bottom:315.702000px;}
.y5f{bottom:316.019550px;}
.y74{bottom:318.944550px;}
.y17{bottom:319.919550px;}
.y46{bottom:331.009650px;}
.yb3{bottom:336.702000px;}
.y5e{bottom:337.619550px;}
.y73{bottom:340.544550px;}
.y16{bottom:340.919550px;}
.y45{bottom:352.609650px;}
.yb2{bottom:357.702000px;}
.y5d{bottom:359.219550px;}
.y15{bottom:361.919550px;}
.y72{bottom:362.144550px;}
.y44{bottom:374.209650px;}
.yb1{bottom:378.702000px;}
.y5c{bottom:380.219550px;}
.y14{bottom:382.919550px;}
.y71{bottom:383.744550px;}
.y43{bottom:395.809650px;}
.yb0{bottom:399.702000px;}
.y5b{bottom:401.819550px;}
.y70{bottom:405.344550px;}
.y42{bottom:417.409650px;}
.yaf{bottom:420.702000px;}
.y5a{bottom:423.419550px;}
.y13{bottom:425.519550px;}
.y6f{bottom:426.944550px;}
.y41{bottom:439.009650px;}
.yae{bottom:441.702000px;}
.y59{bottom:445.019550px;}
.y6e{bottom:448.544550px;}
.y40{bottom:460.609650px;}
.yad{bottom:462.702000px;}
.y58{bottom:466.619550px;}
.y6d{bottom:470.144550px;}
.yac{bottom:483.702000px;}
.y3f{bottom:497.209650px;}
.y12{bottom:501.119550px;}
.yab{bottom:504.702000px;}
.y57{bottom:506.219550px;}
.y90{bottom:510.168450px;}
.y11{bottom:522.719550px;}
.yaa{bottom:525.702000px;}
.y3e{bottom:527.209650px;}
.y10{bottom:544.319550px;}
.ya9{bottom:546.702000px;}
.y3d{bottom:548.809650px;}
.y56{bottom:549.419550px;}
.ya8{bottom:567.702000px;}
.y3c{bottom:570.409650px;}
.yf{bottom:587.519550px;}
.ya7{bottom:588.702000px;}
.y3b{bottom:592.009650px;}
.y55{bottom:592.619550px;}
.ye{bottom:609.119550px;}
.ya6{bottom:609.702000px;}
.y3a{bottom:613.609650px;}
.ya5{bottom:630.702000px;}
.yd{bottom:630.719550px;}
.y39{bottom:635.209650px;}
.ya4{bottom:651.702000px;}
.yc{bottom:652.319550px;}
.y54{bottom:653.819550px;}
.y38{bottom:656.809650px;}
.ya3{bottom:672.702000px;}
.yb{bottom:673.919550px;}
.y37{bottom:678.409650px;}
.ya2{bottom:693.702000px;}
.ya{bottom:695.519550px;}
.y36{bottom:700.009650px;}
.y35{bottom:721.609650px;}
.ya1{bottom:732.702000px;}
.y9{bottom:738.719550px;}
.y34{bottom:743.209650px;}
.y8{bottom:760.319550px;}
.y33{bottom:764.809650px;}
.y6c{bottom:765.543450px;}
.ya0{bottom:768.702000px;}
.y7{bottom:781.919550px;}
.y32{bottom:786.409650px;}
.y9f{bottom:790.302000px;}
.y6{bottom:803.519550px;}
.y31{bottom:808.009650px;}
.y9e{bottom:811.901850px;}
.y8f{bottom:819.119550px;}
.y5{bottom:825.119550px;}
.y30{bottom:829.609650px;}
.y9d{bottom:833.502000px;}
.y8e{bottom:840.719550px;}
.y2f{bottom:851.209650px;}
.y9c{bottom:855.102000px;}
.y8d{bottom:862.319550px;}
.y2e{bottom:872.809500px;}
.y9b{bottom:876.702000px;}
.y8c{bottom:883.919550px;}
.y4{bottom:889.919550px;}
.y2d{bottom:894.409650px;}
.y9a{bottom:898.302000px;}
.y8b{bottom:905.519550px;}
.y2c{bottom:916.009650px;}
.y3{bottom:920.519550px;}
.y8a{bottom:927.119550px;}
.y2b{bottom:937.609650px;}
.y99{bottom:937.901850px;}
.y89{bottom:948.719550px;}
.y1f{bottom:952.789500px;}
.y2a{bottom:959.209650px;}
.y88{bottom:970.319550px;}
.y98{bottom:973.901850px;}
.y29{bottom:980.809500px;}
.y97{bottom:991.901850px;}
.y87{bottom:991.919550px;}
.y28{bottom:1002.409650px;}
.y96{bottom:1013.502000px;}
.y86{bottom:1013.519550px;}
.y27{bottom:1024.009650px;}
.y95{bottom:1035.102000px;}
.y85{bottom:1035.119550px;}
.y26{bottom:1045.609650px;}
.y94{bottom:1056.702000px;}
.y84{bottom:1056.719550px;}
.y25{bottom:1067.209650px;}
.y93{bottom:1078.302000px;}
.y83{bottom:1078.319550px;}
.y24{bottom:1088.809500px;}
.y92{bottom:1099.901850px;}
.y82{bottom:1099.919550px;}
.y91{bottom:1121.502000px;}
.y81{bottom:1121.519550px;}
.y23{bottom:1125.409650px;}
.ha{height:45.890625px;}
.h8{height:48.796875px;}
.h1{height:49.992188px;}
.h4{height:50.062500px;}
.h3{height:56.929688px;}
.h9{height:58.324219px;}
.h7{height:64.229092px;}
.h2{height:69.128906px;}
.h6{height:110.111669px;}
.h5{height:196.210500px;}
.h0{height:1188.000000px;}
.w1{width:808.920000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:28.077600px;}
.x12{left:30.245550px;}
.x13{left:31.500000px;}
.x15{left:52.920000px;}
.x10{left:54.000000px;}
.x16{left:79.920000px;}
.x14{left:81.000000px;}
.x7{left:134.964900px;}
.x3{left:166.310250px;}
.xe{left:190.270050px;}
.x8{left:197.682000px;}
.xc{left:209.182500px;}
.xb{left:227.944350px;}
.x4{left:251.563500px;}
.x6{left:284.923800px;}
.xa{left:306.593250px;}
.xf{left:315.830550px;}
.x9{left:361.415100px;}
.x5{left:374.567850px;}
.xd{left:385.246650px;}
.x2{left:459.000000px;}
.x1{left:872.002050px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-1.466667pt;}
.ls3{letter-spacing:-1.280000pt;}
.ls4{letter-spacing:-0.293333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.314667pt;}
.ls9{letter-spacing:1.231467pt;}
.ls1{letter-spacing:1.866627pt;}
.ls0{letter-spacing:3.200067pt;}
.ls7{letter-spacing:5.019200pt;}
.ls8{letter-spacing:5.899733pt;}
.ls6{letter-spacing:11.387200pt;}
.ws0{word-spacing:-16.000000pt;}
.ws10{word-spacing:-6.720000pt;}
.ws1a{word-spacing:-2.752000pt;}
.ws20{word-spacing:-2.368000pt;}
.ws11{word-spacing:-2.229333pt;}
.wsa{word-spacing:-1.877333pt;}
.ws19{word-spacing:-1.856000pt;}
.ws14{word-spacing:-1.216000pt;}
.ws2{word-spacing:-1.152000pt;}
.ws16{word-spacing:-0.768000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.128000pt;}
.wsb{word-spacing:0.293333pt;}
.wsf{word-spacing:0.320000pt;}
.ws3{word-spacing:0.448000pt;}
.ws5{word-spacing:1.280000pt;}
.ws12{word-spacing:1.466667pt;}
.ws1b{word-spacing:1.664000pt;}
.wsd{word-spacing:1.792000pt;}
.ws13{word-spacing:1.856000pt;}
.ws15{word-spacing:2.304000pt;}
.ws17{word-spacing:2.432000pt;}
.ws18{word-spacing:2.688000pt;}
.ws1e{word-spacing:2.880000pt;}
.wsc{word-spacing:2.944000pt;}
.ws9{word-spacing:3.200000pt;}
.ws6{word-spacing:3.328000pt;}
.ws23{word-spacing:4.928000pt;}
.ws22{word-spacing:4.992000pt;}
.ws4{word-spacing:7.168000pt;}
.ws1c{word-spacing:7.296000pt;}
.ws7{word-spacing:7.488000pt;}
.wse{word-spacing:7.552000pt;}
.ws21{word-spacing:10.112000pt;}
.ws1d{word-spacing:10.624000pt;}
.ws1f{word-spacing:16.704000pt;}
._2{margin-left:-8.296000pt;}
._5{margin-left:-7.084800pt;}
._d{margin-left:-6.051200pt;}
._1{margin-left:-5.022933pt;}
._6{margin-left:-4.016533pt;}
._4{margin-left:-3.074667pt;}
._0{margin-left:-1.667733pt;}
._3{width:1.211200pt;}
._b{width:2.342400pt;}
._a{width:3.308800pt;}
._9{width:4.818133pt;}
._c{width:6.169600pt;}
._7{width:7.149333pt;}
._8{width:8.754667pt;}
._f{width:9.716267pt;}
._e{width:11.357867pt;}
._10{width:14.425600pt;}
._11{width:17.388800pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.665067pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:90.666667pt;}
.fs4{font-size:128.002667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:28.334800pt;}
.y2{bottom:32.366533pt;}
.y22{bottom:35.221200pt;}
.y53{bottom:44.630800pt;}
.y6b{bottom:50.506267pt;}
.y80{bottom:53.106267pt;}
.y52{bottom:63.830667pt;}
.y6a{bottom:69.706267pt;}
.y7f{bottom:72.306267pt;}
.ybf{bottom:75.290667pt;}
.y51{bottom:83.030800pt;}
.y1e{bottom:88.372933pt;}
.y69{bottom:88.906267pt;}
.y21{bottom:90.423867pt;}
.y7e{bottom:91.506267pt;}
.ybe{bottom:93.957333pt;}
.y50{bottom:102.230800pt;}
.y68{bottom:108.106267pt;}
.y7d{bottom:110.706267pt;}
.ybd{bottom:112.624000pt;}
.y1d{bottom:120.906267pt;}
.y4f{bottom:121.430800pt;}
.y67{bottom:127.306267pt;}
.y20{bottom:128.824667pt;}
.y7c{bottom:129.906267pt;}
.ybc{bottom:131.290667pt;}
.y1c{bottom:140.106267pt;}
.y4e{bottom:140.630800pt;}
.y66{bottom:146.506267pt;}
.y7b{bottom:149.106267pt;}
.ybb{bottom:149.957333pt;}
.y4d{bottom:159.830667pt;}
.y65{bottom:165.706267pt;}
.y7a{bottom:168.306267pt;}
.yba{bottom:168.624000pt;}
.y1b{bottom:173.439600pt;}
.y4c{bottom:179.030800pt;}
.y64{bottom:184.906267pt;}
.yb9{bottom:187.290667pt;}
.y79{bottom:187.506267pt;}
.y1a{bottom:192.639600pt;}
.y4b{bottom:198.230800pt;}
.y63{bottom:204.106267pt;}
.yb8{bottom:205.957333pt;}
.y78{bottom:206.706267pt;}
.y4a{bottom:217.430800pt;}
.y62{bottom:223.306267pt;}
.yb7{bottom:224.624000pt;}
.y77{bottom:225.906267pt;}
.y19{bottom:227.839600pt;}
.y49{bottom:236.630800pt;}
.y61{bottom:242.506267pt;}
.yb6{bottom:243.290667pt;}
.y76{bottom:245.106267pt;}
.y18{bottom:247.039600pt;}
.y48{bottom:255.830667pt;}
.y60{bottom:261.706267pt;}
.yb5{bottom:261.957333pt;}
.y75{bottom:264.306267pt;}
.y47{bottom:275.030800pt;}
.yb4{bottom:280.624000pt;}
.y5f{bottom:280.906267pt;}
.y74{bottom:283.506267pt;}
.y17{bottom:284.372933pt;}
.y46{bottom:294.230800pt;}
.yb3{bottom:299.290667pt;}
.y5e{bottom:300.106267pt;}
.y73{bottom:302.706267pt;}
.y16{bottom:303.039600pt;}
.y45{bottom:313.430800pt;}
.yb2{bottom:317.957333pt;}
.y5d{bottom:319.306267pt;}
.y15{bottom:321.706267pt;}
.y72{bottom:321.906267pt;}
.y44{bottom:332.630800pt;}
.yb1{bottom:336.624000pt;}
.y5c{bottom:337.972933pt;}
.y14{bottom:340.372933pt;}
.y71{bottom:341.106267pt;}
.y43{bottom:351.830800pt;}
.yb0{bottom:355.290667pt;}
.y5b{bottom:357.172933pt;}
.y70{bottom:360.306267pt;}
.y42{bottom:371.030800pt;}
.yaf{bottom:373.957333pt;}
.y5a{bottom:376.372933pt;}
.y13{bottom:378.239600pt;}
.y6f{bottom:379.506267pt;}
.y41{bottom:390.230800pt;}
.yae{bottom:392.624000pt;}
.y59{bottom:395.572933pt;}
.y6e{bottom:398.706267pt;}
.y40{bottom:409.430800pt;}
.yad{bottom:411.290667pt;}
.y58{bottom:414.772933pt;}
.y6d{bottom:417.906267pt;}
.yac{bottom:429.957333pt;}
.y3f{bottom:441.964133pt;}
.y12{bottom:445.439600pt;}
.yab{bottom:448.624000pt;}
.y57{bottom:449.972933pt;}
.y90{bottom:453.483067pt;}
.y11{bottom:464.639600pt;}
.yaa{bottom:467.290667pt;}
.y3e{bottom:468.630800pt;}
.y10{bottom:483.839600pt;}
.ya9{bottom:485.957333pt;}
.y3d{bottom:487.830800pt;}
.y56{bottom:488.372933pt;}
.ya8{bottom:504.624000pt;}
.y3c{bottom:507.030800pt;}
.yf{bottom:522.239600pt;}
.ya7{bottom:523.290667pt;}
.y3b{bottom:526.230800pt;}
.y55{bottom:526.772933pt;}
.ye{bottom:541.439600pt;}
.ya6{bottom:541.957333pt;}
.y3a{bottom:545.430800pt;}
.ya5{bottom:560.624000pt;}
.yd{bottom:560.639600pt;}
.y39{bottom:564.630800pt;}
.ya4{bottom:579.290667pt;}
.yc{bottom:579.839600pt;}
.y54{bottom:581.172933pt;}
.y38{bottom:583.830800pt;}
.ya3{bottom:597.957333pt;}
.yb{bottom:599.039600pt;}
.y37{bottom:603.030800pt;}
.ya2{bottom:616.624000pt;}
.ya{bottom:618.239600pt;}
.y36{bottom:622.230800pt;}
.y35{bottom:641.430800pt;}
.ya1{bottom:651.290667pt;}
.y9{bottom:656.639600pt;}
.y34{bottom:660.630800pt;}
.y8{bottom:675.839600pt;}
.y33{bottom:679.830800pt;}
.y6c{bottom:680.483067pt;}
.ya0{bottom:683.290667pt;}
.y7{bottom:695.039600pt;}
.y32{bottom:699.030800pt;}
.y9f{bottom:702.490667pt;}
.y6{bottom:714.239600pt;}
.y31{bottom:718.230800pt;}
.y9e{bottom:721.690533pt;}
.y8f{bottom:728.106267pt;}
.y5{bottom:733.439600pt;}
.y30{bottom:737.430800pt;}
.y9d{bottom:740.890667pt;}
.y8e{bottom:747.306267pt;}
.y2f{bottom:756.630800pt;}
.y9c{bottom:760.090667pt;}
.y8d{bottom:766.506267pt;}
.y2e{bottom:775.830667pt;}
.y9b{bottom:779.290667pt;}
.y8c{bottom:785.706267pt;}
.y4{bottom:791.039600pt;}
.y2d{bottom:795.030800pt;}
.y9a{bottom:798.490667pt;}
.y8b{bottom:804.906267pt;}
.y2c{bottom:814.230800pt;}
.y3{bottom:818.239600pt;}
.y8a{bottom:824.106267pt;}
.y2b{bottom:833.430800pt;}
.y99{bottom:833.690533pt;}
.y89{bottom:843.306267pt;}
.y1f{bottom:846.924000pt;}
.y2a{bottom:852.630800pt;}
.y88{bottom:862.506267pt;}
.y98{bottom:865.690533pt;}
.y29{bottom:871.830667pt;}
.y97{bottom:881.690533pt;}
.y87{bottom:881.706267pt;}
.y28{bottom:891.030800pt;}
.y96{bottom:900.890667pt;}
.y86{bottom:900.906267pt;}
.y27{bottom:910.230800pt;}
.y95{bottom:920.090667pt;}
.y85{bottom:920.106267pt;}
.y26{bottom:929.430800pt;}
.y94{bottom:939.290667pt;}
.y84{bottom:939.306267pt;}
.y25{bottom:948.630800pt;}
.y93{bottom:958.490667pt;}
.y83{bottom:958.506267pt;}
.y24{bottom:967.830667pt;}
.y92{bottom:977.690533pt;}
.y82{bottom:977.706267pt;}
.y91{bottom:996.890667pt;}
.y81{bottom:996.906267pt;}
.y23{bottom:1000.364133pt;}
.ha{height:40.791667pt;}
.h8{height:43.375000pt;}
.h1{height:44.437500pt;}
.h4{height:44.500000pt;}
.h3{height:50.604167pt;}
.h9{height:51.843750pt;}
.h7{height:57.092527pt;}
.h2{height:61.447917pt;}
.h6{height:97.877039pt;}
.h5{height:174.409333pt;}
.h0{height:1056.000000pt;}
.w1{width:719.040000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:24.957867pt;}
.x12{left:26.884933pt;}
.x13{left:28.000000pt;}
.x15{left:47.040000pt;}
.x10{left:48.000000pt;}
.x16{left:71.040000pt;}
.x14{left:72.000000pt;}
.x7{left:119.968800pt;}
.x3{left:147.831333pt;}
.xe{left:169.128933pt;}
.x8{left:175.717333pt;}
.xc{left:185.940000pt;}
.xb{left:202.617200pt;}
.x4{left:223.612000pt;}
.x6{left:253.265600pt;}
.xa{left:272.527333pt;}
.xf{left:280.738267pt;}
.x9{left:321.257867pt;}
.x5{left:332.949200pt;}
.xd{left:342.441467pt;}
.x2{left:408.000000pt;}
.x1{left:775.112933pt;}
}




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