
    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_412404b8d4012ae2acb81aa4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.692383;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_12d3b9f8c2dd9fd244de99bb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.074219;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_aaa138114dcd4246826c6cb8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_108554de9579b71988eb032f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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_6519cad9b9645c865076de1b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.820312;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_b73dfc0be423760baef3236e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_62f09fd2ef7b8c2637d9283f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_c04258a9b1ee4b6b94112605.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919922;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_57946dd4de5213b6ae6ceb70.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.820312;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_bd8a268578dcb2cfabace7d7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.724121;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_08700eef90e1c3feb969af72.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.938477;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);}
.v2{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls7{letter-spacing:-0.540000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.007026px;}
.ls5{letter-spacing:0.007626px;}
.ls4{letter-spacing:0.009150px;}
.ls3{letter-spacing:0.013200px;}
.ls9{letter-spacing:1.857000px;}
.ls1{letter-spacing:2.400000px;}
.ls8{letter-spacing:4.415400px;}
.ls6{letter-spacing:40.500000px;}
.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:-52.500000px;}
.ws16{word-spacing:-16.500000px;}
.ws6{word-spacing:-15.000000px;}
.ws9{word-spacing:-13.650000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-10.500000px;}
.ws3d{word-spacing:-7.870500px;}
.ws23{word-spacing:-5.808000px;}
.ws1f{word-spacing:-4.422000px;}
.ws54{word-spacing:-3.300000px;}
.ws1a{word-spacing:-3.168000px;}
.ws20{word-spacing:-3.036000px;}
.ws25{word-spacing:-2.772000px;}
.ws4a{word-spacing:-2.244000px;}
.ws19{word-spacing:-1.980000px;}
.ws56{word-spacing:-1.848000px;}
.ws57{word-spacing:-1.650000px;}
.ws58{word-spacing:-1.440000px;}
.ws2{word-spacing:-1.188000px;}
.ws22{word-spacing:-1.056000px;}
.ws17{word-spacing:-0.990000px;}
.ws12{word-spacing:-0.924000px;}
.ws50{word-spacing:-0.792000px;}
.ws15{word-spacing:-0.396000px;}
.wsa{word-spacing:-0.300000px;}
.ws4e{word-spacing:-0.264000px;}
.ws26{word-spacing:-0.198000px;}
.ws3e{word-spacing:-0.031482px;}
.ws1{word-spacing:0.000000px;}
.ws52{word-spacing:0.066000px;}
.ws55{word-spacing:0.132000px;}
.ws11{word-spacing:0.396000px;}
.ws30{word-spacing:0.726000px;}
.wse{word-spacing:0.780000px;}
.ws2e{word-spacing:0.792000px;}
.ws10{word-spacing:0.924000px;}
.ws1e{word-spacing:0.990000px;}
.ws13{word-spacing:1.518000px;}
.ws43{word-spacing:1.848000px;}
.ws21{word-spacing:1.980000px;}
.ws2c{word-spacing:2.112000px;}
.ws28{word-spacing:2.178000px;}
.ws2a{word-spacing:2.376000px;}
.wsd{word-spacing:2.400000px;}
.ws4d{word-spacing:2.442000px;}
.ws3c{word-spacing:2.538000px;}
.ws33{word-spacing:2.640000px;}
.ws3a{word-spacing:2.646000px;}
.ws48{word-spacing:2.706000px;}
.ws42{word-spacing:2.838000px;}
.ws31{word-spacing:2.904000px;}
.ws3b{word-spacing:3.186000px;}
.ws32{word-spacing:3.234000px;}
.ws2b{word-spacing:3.366000px;}
.ws34{word-spacing:3.432000px;}
.ws51{word-spacing:3.696000px;}
.ws2f{word-spacing:3.828000px;}
.ws1b{word-spacing:4.026000px;}
.ws49{word-spacing:4.092000px;}
.ws45{word-spacing:4.158000px;}
.ws2d{word-spacing:4.290000px;}
.ws4f{word-spacing:4.422000px;}
.ws1d{word-spacing:4.554000px;}
.ws18{word-spacing:4.752000px;}
.ws36{word-spacing:4.884000px;}
.ws29{word-spacing:5.016000px;}
.ws44{word-spacing:5.280000px;}
.ws1c{word-spacing:5.346000px;}
.ws35{word-spacing:5.412000px;}
.ws14{word-spacing:5.808000px;}
.wsf{word-spacing:5.940000px;}
.ws5a{word-spacing:6.000000px;}
.ws47{word-spacing:6.204000px;}
.ws53{word-spacing:6.270000px;}
.ws5b{word-spacing:6.420000px;}
.ws24{word-spacing:6.996000px;}
.ws4b{word-spacing:7.194000px;}
.wsb{word-spacing:7.200000px;}
.ws4c{word-spacing:7.656000px;}
.ws39{word-spacing:7.722000px;}
.ws3f{word-spacing:7.854000px;}
.ws27{word-spacing:8.052000px;}
.ws46{word-spacing:9.042000px;}
.ws37{word-spacing:9.570000px;}
.ws3{word-spacing:9.636000px;}
.ws40{word-spacing:9.768000px;}
.ws59{word-spacing:9.840000px;}
.ws41{word-spacing:10.362000px;}
.ws38{word-spacing:10.428000px;}
.ws4{word-spacing:10.626000px;}
.ws5{word-spacing:10.956000px;}
.wsc{word-spacing:11.520000px;}
._8{margin-left:-16.981800px;}
._9{margin-left:-15.174600px;}
._1{margin-left:-8.494200px;}
._0{margin-left:-7.372200px;}
._b{margin-left:-5.227200px;}
._2{margin-left:-3.953400px;}
._3{margin-left:-2.686200px;}
._4{margin-left:-1.452000px;}
._c{width:2.068800px;}
._6{width:3.892200px;}
._5{width:4.896000px;}
._7{width:6.246000px;}
._d{width:7.537200px;}
._e{width:17.650800px;}
._10{width:35.154000px;}
._f{width:37.854000px;}
._a{width:40.500000px;}
.fc3{color:rgb(79,76,77);}
.fc1{color:rgb(78,96,104);}
.fc4{color:rgb(34,34,34);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fs6{font-size:42.000000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:54.600000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs7{font-size:78.000000px;}
.fs0{font-size:90.000000px;}
.fs1{font-size:120.000000px;}
.fs2{font-size:210.000000px;}
.fs3{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:53.858250px;}
.y1{bottom:54.000000px;}
.y62{bottom:58.495500px;}
.y76{bottom:58.495650px;}
.y19{bottom:73.358250px;}
.y33{bottom:74.695500px;}
.y75{bottom:78.704250px;}
.y7d{bottom:83.199450px;}
.y18{bottom:92.858250px;}
.y74{bottom:94.904250px;}
.y7c{bottom:107.903400px;}
.y73{bottom:111.104250px;}
.y17{bottom:112.358250px;}
.y61{bottom:120.205200px;}
.y72{bottom:131.799750px;}
.y7b{bottom:132.607350px;}
.y32{bottom:136.130400px;}
.y60{bottom:139.705200px;}
.y16{bottom:151.358250px;}
.y31{bottom:155.630400px;}
.y7a{bottom:156.115650px;}
.y5f{bottom:159.205200px;}
.y15{bottom:170.858250px;}
.y30{bottom:175.130400px;}
.y79{bottom:176.811150px;}
.y14{bottom:190.358250px;}
.y2f{bottom:194.630400px;}
.y5e{bottom:195.713100px;}
.y71{bottom:197.886300px;}
.y78{bottom:201.515100px;}
.y13{bottom:209.858250px;}
.y2e{bottom:214.130400px;}
.y70{bottom:217.386300px;}
.y2d{bottom:233.630400px;}
.y6f{bottom:236.886300px;}
.y12{bottom:248.858250px;}
.y2c{bottom:253.130400px;}
.y6e{bottom:256.386300px;}
.y5d{bottom:259.232700px;}
.y11{bottom:268.358250px;}
.y2b{bottom:272.630400px;}
.y6d{bottom:275.886300px;}
.y5c{bottom:278.732700px;}
.y10{bottom:287.858250px;}
.y6c{bottom:295.386300px;}
.y5b{bottom:298.232700px;}
.yf{bottom:307.358250px;}
.y2a{bottom:309.138300px;}
.y6b{bottom:314.886300px;}
.y5a{bottom:317.732700px;}
.ye{bottom:326.858250px;}
.y6a{bottom:334.386300px;}
.y59{bottom:337.232700px;}
.yd{bottom:346.358250px;}
.y69{bottom:353.886300px;}
.y58{bottom:356.732700px;}
.y3{bottom:359.716500px;}
.yc{bottom:365.858250px;}
.y68{bottom:373.386300px;}
.y57{bottom:376.232700px;}
.y29{bottom:385.413900px;}
.y67{bottom:392.886300px;}
.y56{bottom:395.732700px;}
.yb{bottom:404.858250px;}
.y28{bottom:405.213900px;}
.y66{bottom:412.386300px;}
.y55{bottom:415.232700px;}
.ya{bottom:424.358250px;}
.y27{bottom:424.713900px;}
.y65{bottom:431.886300px;}
.y54{bottom:434.732700px;}
.y2{bottom:434.976300px;}
.y9{bottom:443.858250px;}
.y26{bottom:444.213900px;}
.y64{bottom:451.386300px;}
.y53{bottom:454.232700px;}
.y90{bottom:454.653600px;}
.y8{bottom:463.358250px;}
.y25{bottom:463.713900px;}
.y8f{bottom:471.153600px;}
.y52{bottom:473.732700px;}
.y7{bottom:482.858250px;}
.y24{bottom:483.213900px;}
.y8e{bottom:491.905650px;}
.y77{bottom:492.835500px;}
.y51{bottom:493.232700px;}
.y6{bottom:502.358250px;}
.y23{bottom:502.713900px;}
.y8d{bottom:508.405650px;}
.y50{bottom:512.732700px;}
.y22{bottom:522.213900px;}
.y8c{bottom:529.157550px;}
.y4f{bottom:532.232700px;}
.y5{bottom:541.358250px;}
.y8b{bottom:545.657550px;}
.y4e{bottom:551.732700px;}
.y21{bottom:554.469750px;}
.y4{bottom:560.858250px;}
.y4d{bottom:571.232700px;}
.y20{bottom:573.969750px;}
.y8a{bottom:579.165450px;}
.y4c{bottom:590.732700px;}
.y1f{bottom:593.469750px;}
.y4b{bottom:610.232700px;}
.y1e{bottom:612.969750px;}
.y4a{bottom:629.732700px;}
.y1d{bottom:632.469750px;}
.y89{bottom:646.937100px;}
.y49{bottom:649.232700px;}
.y1c{bottom:651.969750px;}
.y88{bottom:663.437100px;}
.y48{bottom:668.732700px;}
.y1b{bottom:671.469750px;}
.y87{bottom:679.937100px;}
.y47{bottom:688.232700px;}
.y86{bottom:696.437100px;}
.y39{bottom:706.282500px;}
.y46{bottom:707.732700px;}
.y85{bottom:712.937100px;}
.y38{bottom:724.282500px;}
.y45{bottom:727.232700px;}
.y84{bottom:733.689150px;}
.y37{bottom:742.282500px;}
.y44{bottom:746.732700px;}
.y83{bottom:750.189150px;}
.y43{bottom:766.232700px;}
.y82{bottom:766.689150px;}
.y42{bottom:785.732700px;}
.y81{bottom:800.197050px;}
.y41{bottom:805.232700px;}
.y40{bottom:824.732700px;}
.y36{bottom:844.202250px;}
.y3f{bottom:844.232700px;}
.y80{bottom:863.716650px;}
.y3e{bottom:863.732700px;}
.y35{bottom:880.202250px;}
.y7f{bottom:883.216650px;}
.y3d{bottom:883.232700px;}
.y7e{bottom:902.716650px;}
.y3c{bottom:902.732700px;}
.y34{bottom:916.202250px;}
.y3b{bottom:954.158550px;}
.y3a{bottom:970.658550px;}
.y63{bottom:971.117700px;}
.h10{height:22.796780px;}
.hb{height:28.371516px;}
.hf{height:38.021484px;}
.he{height:39.313477px;}
.h8{height:39.990234px;}
.h7{height:42.246094px;}
.hc{height:46.353516px;}
.h5{height:46.470703px;}
.h9{height:51.503906px;}
.hd{height:51.987305px;}
.h6{height:56.654297px;}
.ha{height:56.786133px;}
.h2{height:60.952148px;}
.h3{height:103.007812px;}
.h4{height:206.015625px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x10{left:85.039350px;}
.x5{left:106.511850px;}
.x12{left:127.559100px;}
.x6{left:132.833400px;}
.xa{left:134.376600px;}
.x4{left:144.567000px;}
.x3{left:165.040350px;}
.xb{left:197.291550px;}
.xd{left:207.856800px;}
.xc{left:248.540400px;}
.x2{left:265.027050px;}
.x9{left:266.871600px;}
.x7{left:306.466050px;}
.x1{left:320.806350px;}
.x8{left:435.784950px;}
.xe{left:463.447500px;}
.xf{left:516.722400px;}
.x11{left:630.818700px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls7{letter-spacing:-0.480000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.006245pt;}
.ls5{letter-spacing:0.006779pt;}
.ls4{letter-spacing:0.008133pt;}
.ls3{letter-spacing:0.011733pt;}
.ls9{letter-spacing:1.650667pt;}
.ls1{letter-spacing:2.133333pt;}
.ls8{letter-spacing:3.924800pt;}
.ls6{letter-spacing:36.000000pt;}
.ws0{word-spacing:-46.666667pt;}
.ws16{word-spacing:-14.666667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws9{word-spacing:-12.133333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-9.333333pt;}
.ws3d{word-spacing:-6.996000pt;}
.ws23{word-spacing:-5.162667pt;}
.ws1f{word-spacing:-3.930667pt;}
.ws54{word-spacing:-2.933333pt;}
.ws1a{word-spacing:-2.816000pt;}
.ws20{word-spacing:-2.698667pt;}
.ws25{word-spacing:-2.464000pt;}
.ws4a{word-spacing:-1.994667pt;}
.ws19{word-spacing:-1.760000pt;}
.ws56{word-spacing:-1.642667pt;}
.ws57{word-spacing:-1.466667pt;}
.ws58{word-spacing:-1.280000pt;}
.ws2{word-spacing:-1.056000pt;}
.ws22{word-spacing:-0.938667pt;}
.ws17{word-spacing:-0.880000pt;}
.ws12{word-spacing:-0.821333pt;}
.ws50{word-spacing:-0.704000pt;}
.ws15{word-spacing:-0.352000pt;}
.wsa{word-spacing:-0.266667pt;}
.ws4e{word-spacing:-0.234667pt;}
.ws26{word-spacing:-0.176000pt;}
.ws3e{word-spacing:-0.027984pt;}
.ws1{word-spacing:0.000000pt;}
.ws52{word-spacing:0.058667pt;}
.ws55{word-spacing:0.117333pt;}
.ws11{word-spacing:0.352000pt;}
.ws30{word-spacing:0.645333pt;}
.wse{word-spacing:0.693333pt;}
.ws2e{word-spacing:0.704000pt;}
.ws10{word-spacing:0.821333pt;}
.ws1e{word-spacing:0.880000pt;}
.ws13{word-spacing:1.349333pt;}
.ws43{word-spacing:1.642667pt;}
.ws21{word-spacing:1.760000pt;}
.ws2c{word-spacing:1.877333pt;}
.ws28{word-spacing:1.936000pt;}
.ws2a{word-spacing:2.112000pt;}
.wsd{word-spacing:2.133333pt;}
.ws4d{word-spacing:2.170667pt;}
.ws3c{word-spacing:2.256000pt;}
.ws33{word-spacing:2.346667pt;}
.ws3a{word-spacing:2.352000pt;}
.ws48{word-spacing:2.405333pt;}
.ws42{word-spacing:2.522667pt;}
.ws31{word-spacing:2.581333pt;}
.ws3b{word-spacing:2.832000pt;}
.ws32{word-spacing:2.874667pt;}
.ws2b{word-spacing:2.992000pt;}
.ws34{word-spacing:3.050667pt;}
.ws51{word-spacing:3.285333pt;}
.ws2f{word-spacing:3.402667pt;}
.ws1b{word-spacing:3.578667pt;}
.ws49{word-spacing:3.637333pt;}
.ws45{word-spacing:3.696000pt;}
.ws2d{word-spacing:3.813333pt;}
.ws4f{word-spacing:3.930667pt;}
.ws1d{word-spacing:4.048000pt;}
.ws18{word-spacing:4.224000pt;}
.ws36{word-spacing:4.341333pt;}
.ws29{word-spacing:4.458667pt;}
.ws44{word-spacing:4.693333pt;}
.ws1c{word-spacing:4.752000pt;}
.ws35{word-spacing:4.810667pt;}
.ws14{word-spacing:5.162667pt;}
.wsf{word-spacing:5.280000pt;}
.ws5a{word-spacing:5.333333pt;}
.ws47{word-spacing:5.514667pt;}
.ws53{word-spacing:5.573333pt;}
.ws5b{word-spacing:5.706667pt;}
.ws24{word-spacing:6.218667pt;}
.ws4b{word-spacing:6.394667pt;}
.wsb{word-spacing:6.400000pt;}
.ws4c{word-spacing:6.805333pt;}
.ws39{word-spacing:6.864000pt;}
.ws3f{word-spacing:6.981333pt;}
.ws27{word-spacing:7.157333pt;}
.ws46{word-spacing:8.037333pt;}
.ws37{word-spacing:8.506667pt;}
.ws3{word-spacing:8.565333pt;}
.ws40{word-spacing:8.682667pt;}
.ws59{word-spacing:8.746667pt;}
.ws41{word-spacing:9.210667pt;}
.ws38{word-spacing:9.269333pt;}
.ws4{word-spacing:9.445333pt;}
.ws5{word-spacing:9.738667pt;}
.wsc{word-spacing:10.240000pt;}
._8{margin-left:-15.094933pt;}
._9{margin-left:-13.488533pt;}
._1{margin-left:-7.550400pt;}
._0{margin-left:-6.553067pt;}
._b{margin-left:-4.646400pt;}
._2{margin-left:-3.514133pt;}
._3{margin-left:-2.387733pt;}
._4{margin-left:-1.290667pt;}
._c{width:1.838933pt;}
._6{width:3.459733pt;}
._5{width:4.352000pt;}
._7{width:5.552000pt;}
._d{width:6.699733pt;}
._e{width:15.689600pt;}
._10{width:31.248000pt;}
._f{width:33.648000pt;}
._a{width:36.000000pt;}
.fs8{font-size:27.984000pt;}
.fs6{font-size:37.333333pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:48.533333pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs7{font-size:69.333333pt;}
.fs0{font-size:80.000000pt;}
.fs1{font-size:106.666667pt;}
.fs2{font-size:186.666667pt;}
.fs3{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:47.874000pt;}
.y1{bottom:48.000000pt;}
.y62{bottom:51.996000pt;}
.y76{bottom:51.996133pt;}
.y19{bottom:65.207333pt;}
.y33{bottom:66.396000pt;}
.y75{bottom:69.959333pt;}
.y7d{bottom:73.955067pt;}
.y18{bottom:82.540667pt;}
.y74{bottom:84.359333pt;}
.y7c{bottom:95.914133pt;}
.y73{bottom:98.759333pt;}
.y17{bottom:99.874000pt;}
.y61{bottom:106.849067pt;}
.y72{bottom:117.155333pt;}
.y7b{bottom:117.873200pt;}
.y32{bottom:121.004800pt;}
.y60{bottom:124.182400pt;}
.y16{bottom:134.540667pt;}
.y31{bottom:138.338133pt;}
.y7a{bottom:138.769467pt;}
.y5f{bottom:141.515733pt;}
.y15{bottom:151.874000pt;}
.y30{bottom:155.671467pt;}
.y79{bottom:157.165467pt;}
.y14{bottom:169.207333pt;}
.y2f{bottom:173.004800pt;}
.y5e{bottom:173.967200pt;}
.y71{bottom:175.898933pt;}
.y78{bottom:179.124533pt;}
.y13{bottom:186.540667pt;}
.y2e{bottom:190.338133pt;}
.y70{bottom:193.232267pt;}
.y2d{bottom:207.671467pt;}
.y6f{bottom:210.565600pt;}
.y12{bottom:221.207333pt;}
.y2c{bottom:225.004800pt;}
.y6e{bottom:227.898933pt;}
.y5d{bottom:230.429067pt;}
.y11{bottom:238.540667pt;}
.y2b{bottom:242.338133pt;}
.y6d{bottom:245.232267pt;}
.y5c{bottom:247.762400pt;}
.y10{bottom:255.874000pt;}
.y6c{bottom:262.565600pt;}
.y5b{bottom:265.095733pt;}
.yf{bottom:273.207333pt;}
.y2a{bottom:274.789600pt;}
.y6b{bottom:279.898933pt;}
.y5a{bottom:282.429067pt;}
.ye{bottom:290.540667pt;}
.y6a{bottom:297.232267pt;}
.y59{bottom:299.762400pt;}
.yd{bottom:307.874000pt;}
.y69{bottom:314.565600pt;}
.y58{bottom:317.095733pt;}
.y3{bottom:319.748000pt;}
.yc{bottom:325.207333pt;}
.y68{bottom:331.898933pt;}
.y57{bottom:334.429067pt;}
.y29{bottom:342.590133pt;}
.y67{bottom:349.232267pt;}
.y56{bottom:351.762400pt;}
.yb{bottom:359.874000pt;}
.y28{bottom:360.190133pt;}
.y66{bottom:366.565600pt;}
.y55{bottom:369.095733pt;}
.ya{bottom:377.207333pt;}
.y27{bottom:377.523467pt;}
.y65{bottom:383.898933pt;}
.y54{bottom:386.429067pt;}
.y2{bottom:386.645600pt;}
.y9{bottom:394.540667pt;}
.y26{bottom:394.856800pt;}
.y64{bottom:401.232267pt;}
.y53{bottom:403.762400pt;}
.y90{bottom:404.136533pt;}
.y8{bottom:411.874000pt;}
.y25{bottom:412.190133pt;}
.y8f{bottom:418.803200pt;}
.y52{bottom:421.095733pt;}
.y7{bottom:429.207333pt;}
.y24{bottom:429.523467pt;}
.y8e{bottom:437.249467pt;}
.y77{bottom:438.076000pt;}
.y51{bottom:438.429067pt;}
.y6{bottom:446.540667pt;}
.y23{bottom:446.856800pt;}
.y8d{bottom:451.916133pt;}
.y50{bottom:455.762400pt;}
.y22{bottom:464.190133pt;}
.y8c{bottom:470.362267pt;}
.y4f{bottom:473.095733pt;}
.y5{bottom:481.207333pt;}
.y8b{bottom:485.028933pt;}
.y4e{bottom:490.429067pt;}
.y21{bottom:492.862000pt;}
.y4{bottom:498.540667pt;}
.y4d{bottom:507.762400pt;}
.y20{bottom:510.195333pt;}
.y8a{bottom:514.813733pt;}
.y4c{bottom:525.095733pt;}
.y1f{bottom:527.528667pt;}
.y4b{bottom:542.429067pt;}
.y1e{bottom:544.862000pt;}
.y4a{bottom:559.762400pt;}
.y1d{bottom:562.195333pt;}
.y89{bottom:575.055200pt;}
.y49{bottom:577.095733pt;}
.y1c{bottom:579.528667pt;}
.y88{bottom:589.721867pt;}
.y48{bottom:594.429067pt;}
.y1b{bottom:596.862000pt;}
.y87{bottom:604.388533pt;}
.y47{bottom:611.762400pt;}
.y86{bottom:619.055200pt;}
.y39{bottom:627.806667pt;}
.y46{bottom:629.095733pt;}
.y85{bottom:633.721867pt;}
.y38{bottom:643.806667pt;}
.y45{bottom:646.429067pt;}
.y84{bottom:652.168133pt;}
.y37{bottom:659.806667pt;}
.y44{bottom:663.762400pt;}
.y83{bottom:666.834800pt;}
.y43{bottom:681.095733pt;}
.y82{bottom:681.501467pt;}
.y42{bottom:698.429067pt;}
.y81{bottom:711.286267pt;}
.y41{bottom:715.762400pt;}
.y40{bottom:733.095733pt;}
.y36{bottom:750.402000pt;}
.y3f{bottom:750.429067pt;}
.y80{bottom:767.748133pt;}
.y3e{bottom:767.762400pt;}
.y35{bottom:782.402000pt;}
.y7f{bottom:785.081467pt;}
.y3d{bottom:785.095733pt;}
.y7e{bottom:802.414800pt;}
.y3c{bottom:802.429067pt;}
.y34{bottom:814.402000pt;}
.y3b{bottom:848.140933pt;}
.y3a{bottom:862.807600pt;}
.y63{bottom:863.215733pt;}
.h10{height:20.263805pt;}
.hb{height:25.219125pt;}
.hf{height:33.796875pt;}
.he{height:34.945312pt;}
.h8{height:35.546875pt;}
.h7{height:37.552083pt;}
.hc{height:41.203125pt;}
.h5{height:41.307292pt;}
.h9{height:45.781250pt;}
.hd{height:46.210938pt;}
.h6{height:50.359375pt;}
.ha{height:50.476562pt;}
.h2{height:54.179688pt;}
.h3{height:91.562500pt;}
.h4{height:183.125000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x10{left:75.590533pt;}
.x5{left:94.677200pt;}
.x12{left:113.385867pt;}
.x6{left:118.074133pt;}
.xa{left:119.445867pt;}
.x4{left:128.504000pt;}
.x3{left:146.702533pt;}
.xb{left:175.370267pt;}
.xd{left:184.761600pt;}
.xc{left:220.924800pt;}
.x2{left:235.579600pt;}
.x9{left:237.219200pt;}
.x7{left:272.414267pt;}
.x1{left:285.161200pt;}
.x8{left:387.364400pt;}
.xe{left:411.953333pt;}
.xf{left:459.308800pt;}
.x11{left:560.727733pt;}
}




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