
    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_9cf43a3fb4b3ca1348ce286e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.904785;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_26d2d1e11c85ee76f793d995.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.931000;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_ed54a88a6100225933bc7073.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.734000;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_bc1285b5768f4c1c58db5e82.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951000;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_1940df5491cb7db6ef749cac.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.931000;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_aa76aef62fd75433f73a7437.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.700000;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_affc928dc4f0637a2d032c64.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.960000;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_161d59682059223549a5125b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.158000;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_b4e517724bdd9b7e34296013.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.960000;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_63c59040b164f7b9c5047689.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.888672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ef5e1058e74dad3e35966b26.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.956000;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);}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:-19.926000px;}
.ls8{letter-spacing:-18.306000px;}
.ls5{letter-spacing:-0.480000px;}
.ls4{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.066000px;}
.lsb{letter-spacing:0.132000px;}
.ls2{letter-spacing:0.198000px;}
.lsd{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.330000px;}
.ls1{letter-spacing:0.396000px;}
.lsf{letter-spacing:0.462000px;}
.lsc{letter-spacing:0.594000px;}
.ls10{letter-spacing:0.858000px;}
.ls6{letter-spacing:10.656000px;}
.lse{letter-spacing:2135.318400px;}
.ls9{letter-spacing:2192.518800px;}
.ls3{letter-spacing:2848.575000px;}
.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:-22.680000px;}
.ws4{word-spacing:-16.500000px;}
.ws6{word-spacing:-13.860000px;}
.ws5{word-spacing:-12.750000px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:19.602000px;}
.ws1{word-spacing:22.842000px;}
._4{margin-left:-24.000000px;}
._2{margin-left:-1.026000px;}
._5{width:1.122000px;}
._9{width:2.574000px;}
._1{width:3.695400px;}
._7{width:4.818000px;}
._8{width:5.874000px;}
._6{width:6.930000px;}
._a{width:8.578200px;}
._0{width:13.344000px;}
._3{width:380.214600px;}
.fc2{color:rgb(91,136,153);}
.fc1{color:rgb(147,189,232);}
.fc0{color:rgb(35,31,32);}
.fs1{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs0{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs9{font-size:78.000000px;}
.fs3{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y83{bottom:85.039200px;}
.y1{bottom:85.039350px;}
.y28{bottom:85.039500px;}
.y81{bottom:138.965850px;}
.y57{bottom:138.966600px;}
.y7{bottom:140.314950px;}
.yb1{bottom:149.359500px;}
.y6{bottom:153.108450px;}
.y80{bottom:159.752850px;}
.y56{bottom:159.753600px;}
.yb0{bottom:170.146500px;}
.y5{bottom:172.279950px;}
.y7f{bottom:180.539850px;}
.y55{bottom:180.540600px;}
.yaf{bottom:190.933500px;}
.y4{bottom:191.451300px;}
.y7e{bottom:201.326850px;}
.y54{bottom:201.327600px;}
.y3{bottom:204.244800px;}
.yae{bottom:211.720350px;}
.y7d{bottom:222.113850px;}
.y53{bottom:222.114600px;}
.yad{bottom:232.507350px;}
.y52{bottom:242.901600px;}
.yac{bottom:253.294350px;}
.y7c{bottom:253.294800px;}
.y26{bottom:257.677500px;}
.y51{bottom:263.688600px;}
.yab{bottom:274.081350px;}
.y7b{bottom:274.081800px;}
.y25{bottom:278.464650px;}
.y50{bottom:284.475600px;}
.yaa{bottom:294.868350px;}
.y7a{bottom:294.868800px;}
.y24{bottom:299.251650px;}
.y4f{bottom:305.262600px;}
.ya9{bottom:315.655500px;}
.y79{bottom:315.655800px;}
.y23{bottom:320.038650px;}
.y4e{bottom:326.049600px;}
.ya8{bottom:336.442500px;}
.y78{bottom:336.442800px;}
.y22{bottom:340.825500px;}
.y4d{bottom:346.836600px;}
.ya7{bottom:357.229500px;}
.y77{bottom:357.229800px;}
.y21{bottom:361.612500px;}
.y4c{bottom:367.623600px;}
.ya6{bottom:378.016500px;}
.y76{bottom:378.016800px;}
.y20{bottom:382.399500px;}
.y4b{bottom:388.410600px;}
.ya5{bottom:398.803500px;}
.y75{bottom:398.803800px;}
.y1f{bottom:403.186500px;}
.y4a{bottom:409.197600px;}
.y74{bottom:419.590800px;}
.y1e{bottom:423.973500px;}
.ya4{bottom:429.984300px;}
.y49{bottom:429.984600px;}
.y73{bottom:440.377800px;}
.ya3{bottom:450.771450px;}
.y48{bottom:450.771600px;}
.y1d{bottom:455.154450px;}
.y72{bottom:461.164800px;}
.ya2{bottom:471.558450px;}
.y47{bottom:471.558600px;}
.y1c{bottom:475.941450px;}
.y71{bottom:481.951800px;}
.ya1{bottom:492.345300px;}
.y46{bottom:492.345450px;}
.yc2{bottom:496.281600px;}
.y1b{bottom:496.728450px;}
.y70{bottom:502.738800px;}
.ya0{bottom:513.132300px;}
.y45{bottom:513.132450px;}
.yc1{bottom:517.068600px;}
.y1a{bottom:517.515450px;}
.y6f{bottom:523.525800px;}
.y9f{bottom:533.919300px;}
.y44{bottom:533.919600px;}
.yc0{bottom:537.855600px;}
.y19{bottom:538.302450px;}
.y6e{bottom:544.312800px;}
.y9e{bottom:554.706300px;}
.y43{bottom:554.706600px;}
.y18{bottom:559.089450px;}
.y6d{bottom:565.099800px;}
.ybf{bottom:569.036550px;}
.y9d{bottom:575.493300px;}
.y17{bottom:579.876600px;}
.y6c{bottom:585.886800px;}
.y42{bottom:585.887400px;}
.ybe{bottom:589.823550px;}
.y9c{bottom:596.280300px;}
.y16{bottom:600.663600px;}
.y6b{bottom:606.673800px;}
.y41{bottom:606.674400px;}
.ybd{bottom:610.610550px;}
.y9b{bottom:617.067300px;}
.y15{bottom:621.450600px;}
.y6a{bottom:627.460800px;}
.y40{bottom:627.461400px;}
.y9a{bottom:637.854300px;}
.ybc{bottom:641.791500px;}
.y14{bottom:642.237450px;}
.y69{bottom:648.247800px;}
.y3f{bottom:648.248400px;}
.y99{bottom:658.641300px;}
.ybb{bottom:662.578500px;}
.y68{bottom:669.034800px;}
.y3e{bottom:669.035550px;}
.y98{bottom:679.428300px;}
.y67{bottom:689.821800px;}
.y3d{bottom:689.822550px;}
.yba{bottom:693.759450px;}
.y97{bottom:700.215300px;}
.y66{bottom:710.608800px;}
.y3c{bottom:710.609550px;}
.yb9{bottom:714.546450px;}
.y96{bottom:721.002300px;}
.y13{bottom:726.946050px;}
.y65{bottom:731.395800px;}
.y3b{bottom:731.396550px;}
.yb8{bottom:735.333300px;}
.y95{bottom:741.789300px;}
.y12{bottom:747.733050px;}
.y64{bottom:752.182800px;}
.y3a{bottom:752.183550px;}
.y94{bottom:762.576300px;}
.yb7{bottom:766.514250px;}
.y11{bottom:768.520050px;}
.y63{bottom:772.969800px;}
.y39{bottom:772.970550px;}
.yb6{bottom:787.301400px;}
.y10{bottom:789.307050px;}
.y62{bottom:793.756800px;}
.y93{bottom:793.757250px;}
.y38{bottom:793.757400px;}
.yb5{bottom:808.088250px;}
.yf{bottom:810.094050px;}
.y61{bottom:814.543800px;}
.y92{bottom:814.544250px;}
.y37{bottom:814.544550px;}
.ye{bottom:830.881050px;}
.y91{bottom:835.331250px;}
.y36{bottom:835.331400px;}
.yb4{bottom:839.269200px;}
.y60{bottom:845.724750px;}
.y90{bottom:856.118250px;}
.y35{bottom:856.118550px;}
.y5f{bottom:866.511750px;}
.yd{bottom:870.062100px;}
.yb3{bottom:870.450150px;}
.y8f{bottom:876.905400px;}
.y34{bottom:876.905550px;}
.y5e{bottom:887.298750px;}
.y8e{bottom:897.692250px;}
.y33{bottom:897.692550px;}
.y5d{bottom:908.085750px;}
.yb2{bottom:916.513050px;}
.y8d{bottom:918.479400px;}
.y32{bottom:918.479550px;}
.y5c{bottom:928.872750px;}
.y8c{bottom:939.266400px;}
.y31{bottom:939.266550px;}
.y5b{bottom:949.659900px;}
.y8b{bottom:960.053400px;}
.y30{bottom:960.053700px;}
.y5a{bottom:970.446900px;}
.y8a{bottom:980.840550px;}
.y2f{bottom:980.840700px;}
.yc{bottom:987.921150px;}
.y59{bottom:991.233900px;}
.y89{bottom:1001.627550px;}
.y2e{bottom:1001.627700px;}
.yb{bottom:1008.708150px;}
.y58{bottom:1012.020900px;}
.y88{bottom:1022.414550px;}
.y2d{bottom:1022.414850px;}
.y87{bottom:1043.201700px;}
.y2c{bottom:1043.201850px;}
.y86{bottom:1063.988700px;}
.y2b{bottom:1063.988850px;}
.y85{bottom:1084.775700px;}
.y2a{bottom:1084.776000px;}
.ya{bottom:1097.478000px;}
.y84{bottom:1105.562850px;}
.y29{bottom:1105.563000px;}
.y2{bottom:1162.729350px;}
.y82{bottom:1172.229900px;}
.y27{bottom:1172.230050px;}
.y9{bottom:1193.874900px;}
.y8{bottom:1207.374900px;}
.h3{height:35.328000px;}
.h2{height:39.159668px;}
.ha{height:45.342773px;}
.h9{height:48.042000px;}
.h6{height:56.520000px;}
.h8{height:62.172000px;}
.h7{height:67.968000px;}
.hb{height:73.632000px;}
.h5{height:79.128000px;}
.h4{height:101.952000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:85.039350px;}
.x9{left:106.299150px;}
.xb{left:136.063050px;}
.x4{left:145.195650px;}
.x5{left:151.195650px;}
.x3{left:227.127150px;}
.x8{left:550.282050px;}
.x7{left:555.582750px;}
.x6{left:612.241950px;}
.xa{left:659.542200px;}
.x2{left:733.917900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:-17.712000pt;}
.ls8{letter-spacing:-16.272000pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.058667pt;}
.lsb{letter-spacing:0.117333pt;}
.ls2{letter-spacing:0.176000pt;}
.lsd{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.293333pt;}
.ls1{letter-spacing:0.352000pt;}
.lsf{letter-spacing:0.410667pt;}
.lsc{letter-spacing:0.528000pt;}
.ls10{letter-spacing:0.762667pt;}
.ls6{letter-spacing:9.472000pt;}
.lse{letter-spacing:1898.060800pt;}
.ls9{letter-spacing:1948.905600pt;}
.ls3{letter-spacing:2532.066667pt;}
.ws0{word-spacing:-20.160000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws6{word-spacing:-12.320000pt;}
.ws5{word-spacing:-11.333333pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:17.424000pt;}
.ws1{word-spacing:20.304000pt;}
._4{margin-left:-21.333333pt;}
._2{margin-left:-0.912000pt;}
._5{width:0.997333pt;}
._9{width:2.288000pt;}
._1{width:3.284800pt;}
._7{width:4.282667pt;}
._8{width:5.221333pt;}
._6{width:6.160000pt;}
._a{width:7.625067pt;}
._0{width:11.861333pt;}
._3{width:337.968533pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs0{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs9{font-size:69.333333pt;}
.fs3{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y83{bottom:75.590400pt;}
.y1{bottom:75.590533pt;}
.y28{bottom:75.590667pt;}
.y81{bottom:123.525200pt;}
.y57{bottom:123.525867pt;}
.y7{bottom:124.724400pt;}
.yb1{bottom:132.764000pt;}
.y6{bottom:136.096400pt;}
.y80{bottom:142.002533pt;}
.y56{bottom:142.003200pt;}
.yb0{bottom:151.241333pt;}
.y5{bottom:153.137733pt;}
.y7f{bottom:160.479867pt;}
.y55{bottom:160.480533pt;}
.yaf{bottom:169.718667pt;}
.y4{bottom:170.178933pt;}
.y7e{bottom:178.957200pt;}
.y54{bottom:178.957867pt;}
.y3{bottom:181.550933pt;}
.yae{bottom:188.195867pt;}
.y7d{bottom:197.434533pt;}
.y53{bottom:197.435200pt;}
.yad{bottom:206.673200pt;}
.y52{bottom:215.912533pt;}
.yac{bottom:225.150533pt;}
.y7c{bottom:225.150933pt;}
.y26{bottom:229.046667pt;}
.y51{bottom:234.389867pt;}
.yab{bottom:243.627867pt;}
.y7b{bottom:243.628267pt;}
.y25{bottom:247.524133pt;}
.y50{bottom:252.867200pt;}
.yaa{bottom:262.105200pt;}
.y7a{bottom:262.105600pt;}
.y24{bottom:266.001467pt;}
.y4f{bottom:271.344533pt;}
.ya9{bottom:280.582667pt;}
.y79{bottom:280.582933pt;}
.y23{bottom:284.478800pt;}
.y4e{bottom:289.821867pt;}
.ya8{bottom:299.060000pt;}
.y78{bottom:299.060267pt;}
.y22{bottom:302.956000pt;}
.y4d{bottom:308.299200pt;}
.ya7{bottom:317.537333pt;}
.y77{bottom:317.537600pt;}
.y21{bottom:321.433333pt;}
.y4c{bottom:326.776533pt;}
.ya6{bottom:336.014667pt;}
.y76{bottom:336.014933pt;}
.y20{bottom:339.910667pt;}
.y4b{bottom:345.253867pt;}
.ya5{bottom:354.492000pt;}
.y75{bottom:354.492267pt;}
.y1f{bottom:358.388000pt;}
.y4a{bottom:363.731200pt;}
.y74{bottom:372.969600pt;}
.y1e{bottom:376.865333pt;}
.ya4{bottom:382.208267pt;}
.y49{bottom:382.208533pt;}
.y73{bottom:391.446933pt;}
.ya3{bottom:400.685733pt;}
.y48{bottom:400.685867pt;}
.y1d{bottom:404.581733pt;}
.y72{bottom:409.924267pt;}
.ya2{bottom:419.163067pt;}
.y47{bottom:419.163200pt;}
.y1c{bottom:423.059067pt;}
.y71{bottom:428.401600pt;}
.ya1{bottom:437.640267pt;}
.y46{bottom:437.640400pt;}
.yc2{bottom:441.139200pt;}
.y1b{bottom:441.536400pt;}
.y70{bottom:446.878933pt;}
.ya0{bottom:456.117600pt;}
.y45{bottom:456.117733pt;}
.yc1{bottom:459.616533pt;}
.y1a{bottom:460.013733pt;}
.y6f{bottom:465.356267pt;}
.y9f{bottom:474.594933pt;}
.y44{bottom:474.595200pt;}
.yc0{bottom:478.093867pt;}
.y19{bottom:478.491067pt;}
.y6e{bottom:483.833600pt;}
.y9e{bottom:493.072267pt;}
.y43{bottom:493.072533pt;}
.y18{bottom:496.968400pt;}
.y6d{bottom:502.310933pt;}
.ybf{bottom:505.810267pt;}
.y9d{bottom:511.549600pt;}
.y17{bottom:515.445867pt;}
.y6c{bottom:520.788267pt;}
.y42{bottom:520.788800pt;}
.ybe{bottom:524.287600pt;}
.y9c{bottom:530.026933pt;}
.y16{bottom:533.923200pt;}
.y6b{bottom:539.265600pt;}
.y41{bottom:539.266133pt;}
.ybd{bottom:542.764933pt;}
.y9b{bottom:548.504267pt;}
.y15{bottom:552.400533pt;}
.y6a{bottom:557.742933pt;}
.y40{bottom:557.743467pt;}
.y9a{bottom:566.981600pt;}
.ybc{bottom:570.481333pt;}
.y14{bottom:570.877733pt;}
.y69{bottom:576.220267pt;}
.y3f{bottom:576.220800pt;}
.y99{bottom:585.458933pt;}
.ybb{bottom:588.958667pt;}
.y68{bottom:594.697600pt;}
.y3e{bottom:594.698267pt;}
.y98{bottom:603.936267pt;}
.y67{bottom:613.174933pt;}
.y3d{bottom:613.175600pt;}
.yba{bottom:616.675067pt;}
.y97{bottom:622.413600pt;}
.y66{bottom:631.652267pt;}
.y3c{bottom:631.652933pt;}
.yb9{bottom:635.152400pt;}
.y96{bottom:640.890933pt;}
.y13{bottom:646.174267pt;}
.y65{bottom:650.129600pt;}
.y3b{bottom:650.130267pt;}
.yb8{bottom:653.629600pt;}
.y95{bottom:659.368267pt;}
.y12{bottom:664.651600pt;}
.y64{bottom:668.606933pt;}
.y3a{bottom:668.607600pt;}
.y94{bottom:677.845600pt;}
.yb7{bottom:681.346000pt;}
.y11{bottom:683.128933pt;}
.y63{bottom:687.084267pt;}
.y39{bottom:687.084933pt;}
.yb6{bottom:699.823467pt;}
.y10{bottom:701.606267pt;}
.y62{bottom:705.561600pt;}
.y93{bottom:705.562000pt;}
.y38{bottom:705.562133pt;}
.yb5{bottom:718.300667pt;}
.yf{bottom:720.083600pt;}
.y61{bottom:724.038933pt;}
.y92{bottom:724.039333pt;}
.y37{bottom:724.039600pt;}
.ye{bottom:738.560933pt;}
.y91{bottom:742.516667pt;}
.y36{bottom:742.516800pt;}
.yb4{bottom:746.017067pt;}
.y60{bottom:751.755333pt;}
.y90{bottom:760.994000pt;}
.y35{bottom:760.994267pt;}
.y5f{bottom:770.232667pt;}
.yd{bottom:773.388533pt;}
.yb3{bottom:773.733467pt;}
.y8f{bottom:779.471467pt;}
.y34{bottom:779.471600pt;}
.y5e{bottom:788.710000pt;}
.y8e{bottom:797.948667pt;}
.y33{bottom:797.948933pt;}
.y5d{bottom:807.187333pt;}
.yb2{bottom:814.678267pt;}
.y8d{bottom:816.426133pt;}
.y32{bottom:816.426267pt;}
.y5c{bottom:825.664667pt;}
.y8c{bottom:834.903467pt;}
.y31{bottom:834.903600pt;}
.y5b{bottom:844.142133pt;}
.y8b{bottom:853.380800pt;}
.y30{bottom:853.381067pt;}
.y5a{bottom:862.619467pt;}
.y8a{bottom:871.858267pt;}
.y2f{bottom:871.858400pt;}
.yc{bottom:878.152133pt;}
.y59{bottom:881.096800pt;}
.y89{bottom:890.335600pt;}
.y2e{bottom:890.335733pt;}
.yb{bottom:896.629467pt;}
.y58{bottom:899.574133pt;}
.y88{bottom:908.812933pt;}
.y2d{bottom:908.813200pt;}
.y87{bottom:927.290400pt;}
.y2c{bottom:927.290533pt;}
.y86{bottom:945.767733pt;}
.y2b{bottom:945.767867pt;}
.y85{bottom:964.245067pt;}
.y2a{bottom:964.245333pt;}
.ya{bottom:975.536000pt;}
.y84{bottom:982.722533pt;}
.y29{bottom:982.722667pt;}
.y2{bottom:1033.537200pt;}
.y82{bottom:1041.982133pt;}
.y27{bottom:1041.982267pt;}
.y9{bottom:1061.222133pt;}
.y8{bottom:1073.222133pt;}
.h3{height:31.402667pt;}
.h2{height:34.808594pt;}
.ha{height:40.304688pt;}
.h9{height:42.704000pt;}
.h6{height:50.240000pt;}
.h8{height:55.264000pt;}
.h7{height:60.416000pt;}
.hb{height:65.450667pt;}
.h5{height:70.336000pt;}
.h4{height:90.624000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.590533pt;}
.x9{left:94.488133pt;}
.xb{left:120.944933pt;}
.x4{left:129.062800pt;}
.x5{left:134.396133pt;}
.x3{left:201.890800pt;}
.x8{left:489.139600pt;}
.x7{left:493.851333pt;}
.x6{left:544.215067pt;}
.xa{left:586.259733pt;}
.x2{left:652.371467pt;}
}




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