
    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_2e7c73a5f82a962c7cf8111d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.705000;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_88d0618d9ffe9e148b7ba8b7.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.883000;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_acbcb91dc67ae4e85008e38c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.705000;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_76b65dcea3e7410b07b9ed92.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.705000;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_dd2bc8f7193b299f19a4412c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.883000;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_068d95705f69281a47a9bf7f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.878000;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_b471ce5dbde1008383583256.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.827133;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_97b05f5436ce187cadbf7e7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.705000;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_3edecac493f1a6705bba95d8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.878000;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_dd42afae760cca2f5db00e7e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.705000;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_ea8416d09495f0ce6be2f5eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.878000;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:ffc;src:url('chunks/assets/font_3f40a66fa9459ba3b9d3ea02.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.878000;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:ffd;src:url('chunks/assets/font_64e0a3d7916510e5763bcdd7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.705000;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:ffe;src:url('chunks/assets/font_dbe67348f327c45700958e47.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.705000;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:fff;src:url('chunks/assets/font_413d5a9bdd84d2b8e26e077f.woff2')format("woff");}.fff{font-family:fff;line-height:0.878000;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:ff10;src:url('chunks/assets/font_ec591fccb5c6d0eb5c2cdfde.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.705000;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:ff11;src:url('chunks/assets/font_962019c703d1f0d177b22c07.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.835163;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:ff12;src:url('chunks/assets/font_648c7360ea98b5c88ccb96bd.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.705000;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:ff13;src:url('chunks/assets/font_7a1ec3fdf310f56239e639db.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.878000;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-185.381449px;}
.ws3{word-spacing:-118.880998px;}
.ws1{word-spacing:-27.747226px;}
.wsa{word-spacing:-25.524449px;}
.wsb{word-spacing:-19.979999px;}
.ws4{word-spacing:-18.864449px;}
.ws6{word-spacing:-16.649999px;}
.ws5{word-spacing:-15.534449px;}
.ws9{word-spacing:-14.427224px;}
.ws0{word-spacing:0.000000px;}
.ws7{word-spacing:882.145184px;}
.ws8{word-spacing:1025.902207px;}
._a{width:1.817908px;}
._6{width:3.029081px;}
._0{width:4.173252px;}
._5{width:6.142202px;}
._7{width:12.553043px;}
._1{width:15.103004px;}
._2{width:25.153803px;}
._4{width:34.185912px;}
._9{width:43.025555px;}
._3{width:44.383294px;}
._8{width:67.541323px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,179,148);}
.fc3{color:rgb(112,112,112);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:62.999997px;}
.fsa{font-size:77.984997px;}
.fs12{font-size:83.969997px;}
.fs16{font-size:86.984996px;}
.fs11{font-size:89.999996px;}
.fs8{font-size:101.969996px;}
.fs9{font-size:101.973392px;}
.fs13{font-size:107.819991px;}
.fse{font-size:107.999996px;}
.fs6{font-size:113.984995px;}
.fs14{font-size:119.969995px;}
.fs0{font-size:137.969994px;}
.fs4{font-size:149.985003px;}
.fs1{font-size:161.955002px;}
.fs17{font-size:221.985000px;}
.fs2{font-size:245.969990px;}
.fsf{font-size:275.984998px;}
.fs10{font-size:317.970005px;}
.fs15{font-size:329.984995px;}
.fsd{font-size:335.970004px;}
.fs7{font-size:341.954977px;}
.fs5{font-size:449.954972px;}
.fsc{font-size:642.599987px;}
.fsb{font-size:2603.633565px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y20{bottom:10.199952px;}
.y1f{bottom:25.664096px;}
.y2{bottom:40.454566px;}
.y24{bottom:40.605643px;}
.y6{bottom:50.361046px;}
.yb2{bottom:53.664946px;}
.y5{bottom:71.736045px;}
.yb1{bottom:76.164945px;}
.y87{bottom:85.512740px;}
.y5c{bottom:87.368108px;}
.y32{bottom:98.531708px;}
.yb0{bottom:99.789944px;}
.y47{bottom:103.944272px;}
.y5b{bottom:122.243107px;}
.y7f{bottom:128.288407px;}
.y46{bottom:128.694271px;}
.y86{bottom:131.637739px;}
.y31{bottom:133.406706px;}
.yad{bottom:148.630062px;}
.y7c{bottom:154.039206px;}
.y5a{bottom:157.118105px;}
.y7e{bottom:157.538405px;}
.y22{bottom:163.630792px;}
.y28{bottom:171.822305px;}
.y85{bottom:177.762737px;}
.y1e{bottom:185.863724px;}
.y7d{bottom:186.788404px;}
.yae{bottom:198.096832px;}
.y45{bottom:214.406703px;}
.y49{bottom:214.894323px;}
.y1d{bottom:221.114894px;}
.y29{bottom:223.482303px;}
.y84{bottom:223.887735px;}
.y44{bottom:239.156702px;}
.y48{bottom:239.644322px;}
.y59{bottom:239.768162px;}
.yaf{bottom:250.020062px;}
.y1c{bottom:256.366065px;}
.y7b{bottom:257.232661px;}
.y83{bottom:270.012733px;}
.y58{bottom:274.643161px;}
.y39{bottom:276.204552px;}
.y77{bottom:284.539200px;}
.y7a{bottom:286.482660px;}
.y1b{bottom:291.617235px;}
.y57{bottom:309.518159px;}
.y79{bottom:315.732659px;}
.y76{bottom:316.039199px;}
.y82{bottom:316.137731px;}
.y43{bottom:325.256638px;}
.y1a{bottom:326.868406px;}
.y38{bottom:329.304550px;}
.y78{bottom:344.982658px;}
.y42{bottom:350.006637px;}
.y90{bottom:358.622841px;}
.y26{bottom:358.857309px;}
.y19{bottom:362.119576px;}
.y81{bottom:376.395788px;}
.y8f{bottom:388.997840px;}
.y56{bottom:397.910719px;}
.y30{bottom:403.009075px;}
.yac{bottom:408.122839px;}
.y75{bottom:415.377739px;}
.y8e{bottom:419.372839px;}
.y55{bottom:432.785718px;}
.y41{bottom:435.406878px;}
.y74{bottom:444.627737px;}
.y8d{bottom:449.747837px;}
.yab{bottom:455.372837px;}
.y71{bottom:458.127665px;}
.y40{bottom:460.156877px;}
.y18{bottom:461.122864px;}
.y54{bottom:467.660717px;}
.y73{bottom:473.877736px;}
.y37{bottom:474.743212px;}
.y8c{bottom:480.122836px;}
.y27{bottom:495.217383px;}
.y17{bottom:496.374034px;}
.y72{bottom:503.127735px;}
.y8b{bottom:510.497835px;}
.y36{bottom:527.543186px;}
.yaa{bottom:532.270875px;}
.y89{bottom:540.306157px;}
.y3f{bottom:545.131921px;}
.y53{bottom:549.857317px;}
.ya9{bottom:562.645874px;}
.y3e{bottom:569.881920px;}
.y70{bottom:573.686652px;}
.y21{bottom:579.014997px;}
.y35{bottom:580.343232px;}
.y6d{bottom:581.332656px;}
.y52{bottom:584.732316px;}
.ya2{bottom:586.285597px;}
.ya8{bottom:593.020872px;}
.y6f{bottom:602.936651px;}
.y6c{bottom:612.832654px;}
.y51{bottom:619.607314px;}
.ya7{bottom:623.395871px;}
.y25{bottom:630.592401px;}
.y6e{bottom:632.186650px;}
.y34{bottom:633.443230px;}
.ya1{bottom:633.535595px;}
.y4{bottom:639.226820px;}
.ya6{bottom:653.770870px;}
.y3d{bottom:656.489417px;}
.ya0{bottom:680.785593px;}
.y3c{bottom:681.239416px;}
.ya5{bottom:684.145869px;}
.y6b{bottom:703.268805px;}
.y3{bottom:704.356934px;}
.y16{bottom:706.640245px;}
.y33{bottom:707.508341px;}
.ya4{bottom:714.520867px;}
.y50{bottom:721.194976px;}
.ya{bottom:725.556635px;}
.y6a{bottom:732.518804px;}
.y15{bottom:741.515243px;}
.y66{bottom:742.207645px;}
.ya3{bottom:744.895866px;}
.yf{bottom:750.081677px;}
.y69{bottom:761.768803px;}
.y9f{bottom:766.383412px;}
.y65{bottom:773.707644px;}
.y2f{bottom:774.408309px;}
.y14{bottom:776.390242px;}
.y68{bottom:791.018801px;}
.y23{bottom:793.934988px;}
.y9{bottom:796.658169px;}
.y9e{bottom:796.758411px;}
.y2e{bottom:809.283307px;}
.y13{bottom:811.265240px;}
.y9a{bottom:818.415185px;}
.y67{bottom:820.268800px;}
.ye{bottom:820.920595px;}
.y9d{bottom:827.133410px;}
.y12{bottom:846.140239px;}
.y88{bottom:850.444021px;}
.y9c{bottom:857.508408px;}
.y8{bottom:867.759681px;}
.y11{bottom:881.015237px;}
.y64{bottom:885.373887px;}
.y9b{bottom:887.883407px;}
.yd{bottom:892.284749px;}
.y4e{bottom:895.687454px;}
.y99{bottom:897.559483px;}
.y60{bottom:912.373864px;}
.y63{bottom:914.623885px;}
.y2d{bottom:919.026372px;}
.y98{bottom:927.934482px;}
.y4d{bottom:930.562453px;}
.y7{bottom:939.619538px;}
.y5f{bottom:943.873863px;}
.y62{bottom:943.873884px;}
.y2c{bottom:956.151371px;}
.y97{bottom:958.309480px;}
.y92{bottom:963.258447px;}
.yc{bottom:964.144537px;}
.y4c{bottom:965.437451px;}
.y61{bottom:973.123883px;}
.y96{bottom:988.684479px;}
.y2b{bottom:993.276369px;}
.y4b{bottom:1000.312450px;}
.y91{bottom:1010.508445px;}
.y95{bottom:1019.059478px;}
.y4a{bottom:1035.187448px;}
.yb{bottom:1047.064561px;}
.y94{bottom:1049.434477px;}
.y2a{bottom:1051.828340px;}
.y10{bottom:1066.807936px;}
.y3b{bottom:1075.328952px;}
.y93{bottom:1079.809475px;}
.y5e{bottom:1087.183938px;}
.y4f{bottom:1113.237962px;}
.y3a{bottom:1134.953949px;}
.y80{bottom:1136.682035px;}
.y8a{bottom:1142.378203px;}
.y5d{bottom:1146.808936px;}
.he{height:33.749999px;}
.h6{height:44.855998px;}
.h14{height:54.589498px;}
.hf{height:55.525318px;}
.h1b{height:59.450758px;}
.h1f{height:61.585377px;}
.h1a{height:62.999997px;}
.h23{height:63.719997px;}
.h22{height:71.378997px;}
.h17{height:72.194757px;}
.hd{height:72.197162px;}
.hb{height:72.602637px;}
.hc{height:72.605055px;}
.h1c{height:75.473994px;}
.h16{height:76.463997px;}
.h9{height:79.789497px;}
.h1d{height:83.978997px;}
.h3{height:96.578996px;}
.h20{height:97.682756px;}
.h7{height:104.989502px;}
.h4{height:115.311962px;}
.h21{height:155.389500px;}
.h12{height:161.279993px;}
.h5{height:175.130633px;}
.h18{height:193.189498px;}
.h19{height:222.579003px;}
.h1e{height:230.989497px;}
.h15{height:235.179003px;}
.ha{height:243.471943px;}
.h8{height:314.968481px;}
.h13{height:449.819991px;}
.h10{height:650.879973px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.h11{height:1822.543495px;}
.w2{width:33.749999px;}
.w3{width:336.239986px;}
.w4{width:357.839985px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:1.080090px;}
.x2f{left:8.279297px;}
.xc{left:12.339843px;}
.x3{left:44.509093px;}
.x1d{left:89.291333px;}
.xd{left:96.119996px;}
.x9{left:99.680666px;}
.x8{left:105.375316px;}
.x2{left:109.307238px;}
.x2b{left:110.674781px;}
.x30{left:113.078202px;}
.x15{left:116.239258px;}
.x19{left:118.550166px;}
.x26{left:120.423666px;}
.x29{left:122.112089px;}
.x32{left:131.693435px;}
.x6{left:134.366687px;}
.x16{left:137.578231px;}
.x18{left:139.005423px;}
.x2c{left:142.262879px;}
.x7{left:143.459983px;}
.x31{left:148.586013px;}
.x24{left:150.785930px;}
.x37{left:152.277419px;}
.xa{left:154.100460px;}
.x1a{left:156.386441px;}
.x2d{left:158.923843px;}
.x3a{left:163.189778px;}
.x38{left:165.127028px;}
.x1e{left:172.177970px;}
.x1{left:177.162191px;}
.x21{left:182.668726px;}
.x27{left:185.269367px;}
.x17{left:188.719491px;}
.x25{left:192.955851px;}
.x28{left:200.774195px;}
.x22{left:212.182397px;}
.x2e{left:215.869912px;}
.x1f{left:219.826483px;}
.x39{left:238.761790px;}
.x20{left:242.941717px;}
.x35{left:256.243790px;}
.x2a{left:259.309346px;}
.x33{left:276.396554px;}
.x34{left:279.833632px;}
.x3c{left:297.686500px;}
.x3d{left:298.713174px;}
.x3b{left:341.915019px;}
.x13{left:361.954078px;}
.x10{left:387.582962px;}
.x23{left:394.147161px;}
.x14{left:399.773831px;}
.x11{left:425.956009px;}
.xf{left:452.879981px;}
.x36{left:471.769170px;}
.x1c{left:485.947157px;}
.x1b{left:487.816241px;}
.x12{left:559.532174px;}
.x4{left:763.522528px;}
.x5{left:765.613012px;}
.xb{left:832.516489px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-164.783510pt;}
.ws3{word-spacing:-105.671998pt;}
.ws1{word-spacing:-24.664200pt;}
.wsa{word-spacing:-22.688399pt;}
.wsb{word-spacing:-17.759999pt;}
.ws4{word-spacing:-16.768399pt;}
.ws6{word-spacing:-14.799999pt;}
.ws5{word-spacing:-13.808399pt;}
.ws9{word-spacing:-12.824199pt;}
.ws0{word-spacing:0.000000pt;}
.ws7{word-spacing:784.129052pt;}
.ws8{word-spacing:911.913073pt;}
._a{width:1.615918pt;}
._6{width:2.692517pt;}
._0{width:3.709557pt;}
._5{width:5.459735pt;}
._7{width:11.158260pt;}
._1{width:13.424892pt;}
._2{width:22.358936pt;}
._4{width:30.387477pt;}
._9{width:38.244938pt;}
._3{width:39.451817pt;}
._8{width:60.036731pt;}
.fs3{font-size:55.999998pt;}
.fsa{font-size:69.319997pt;}
.fs12{font-size:74.639997pt;}
.fs16{font-size:77.319997pt;}
.fs11{font-size:79.999997pt;}
.fs8{font-size:90.639996pt;}
.fs9{font-size:90.643015pt;}
.fs13{font-size:95.839992pt;}
.fse{font-size:95.999996pt;}
.fs6{font-size:101.319996pt;}
.fs14{font-size:106.639996pt;}
.fs0{font-size:122.639995pt;}
.fs4{font-size:133.320002pt;}
.fs1{font-size:143.960002pt;}
.fs17{font-size:197.320000pt;}
.fs2{font-size:218.639991pt;}
.fsf{font-size:245.319998pt;}
.fs10{font-size:282.640004pt;}
.fs15{font-size:293.319996pt;}
.fsd{font-size:298.640004pt;}
.fs7{font-size:303.959979pt;}
.fs5{font-size:399.959975pt;}
.fsc{font-size:571.199988pt;}
.fsb{font-size:2314.340946pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y20{bottom:9.066624pt;}
.y1f{bottom:22.812529pt;}
.y2{bottom:35.959615pt;}
.y24{bottom:36.093905pt;}
.y6{bottom:44.765374pt;}
.yb2{bottom:47.702174pt;}
.y5{bottom:63.765373pt;}
.yb1{bottom:67.702173pt;}
.y87{bottom:76.011325pt;}
.y5c{bottom:77.660541pt;}
.y32{bottom:87.583740pt;}
.yb0{bottom:88.702172pt;}
.y47{bottom:92.394908pt;}
.y5b{bottom:108.660539pt;}
.y7f{bottom:114.034139pt;}
.y46{bottom:114.394907pt;}
.y86{bottom:117.011323pt;}
.y31{bottom:118.583739pt;}
.yad{bottom:132.115610pt;}
.y7c{bottom:136.923738pt;}
.y5a{bottom:139.660538pt;}
.y7e{bottom:140.034138pt;}
.y22{bottom:145.449593pt;}
.y28{bottom:152.730938pt;}
.y85{bottom:158.011321pt;}
.y1e{bottom:165.212199pt;}
.y7d{bottom:166.034137pt;}
.yae{bottom:176.086073pt;}
.y45{bottom:190.583736pt;}
.y49{bottom:191.017176pt;}
.y1d{bottom:196.546573pt;}
.y29{bottom:198.650936pt;}
.y84{bottom:199.011320pt;}
.y44{bottom:212.583735pt;}
.y48{bottom:213.017175pt;}
.y59{bottom:213.127255pt;}
.yaf{bottom:222.240055pt;}
.y1c{bottom:227.880946pt;}
.y7b{bottom:228.651254pt;}
.y83{bottom:240.011318pt;}
.y58{bottom:244.127254pt;}
.y39{bottom:245.515158pt;}
.y77{bottom:252.923733pt;}
.y7a{bottom:254.651253pt;}
.y1b{bottom:259.215320pt;}
.y57{bottom:275.127253pt;}
.y79{bottom:280.651252pt;}
.y76{bottom:280.923732pt;}
.y82{bottom:281.011316pt;}
.y43{bottom:289.117012pt;}
.y1a{bottom:290.549694pt;}
.y38{bottom:292.715156pt;}
.y78{bottom:306.651251pt;}
.y42{bottom:311.117011pt;}
.y90{bottom:318.775859pt;}
.y26{bottom:318.984275pt;}
.y19{bottom:321.884068pt;}
.y81{bottom:334.574034pt;}
.y8f{bottom:345.775858pt;}
.y56{bottom:353.698417pt;}
.y30{bottom:358.230289pt;}
.yac{bottom:362.775857pt;}
.y75{bottom:369.224657pt;}
.y8e{bottom:372.775856pt;}
.y55{bottom:384.698416pt;}
.y41{bottom:387.028336pt;}
.y74{bottom:395.224656pt;}
.y8d{bottom:399.775855pt;}
.yab{bottom:404.775855pt;}
.y71{bottom:407.224591pt;}
.y40{bottom:409.028335pt;}
.y18{bottom:409.886990pt;}
.y54{bottom:415.698415pt;}
.y73{bottom:421.224654pt;}
.y37{bottom:421.993966pt;}
.y8c{bottom:426.775854pt;}
.y27{bottom:440.193230pt;}
.y17{bottom:441.221364pt;}
.y72{bottom:447.224653pt;}
.y8b{bottom:453.775853pt;}
.y36{bottom:468.927276pt;}
.yaa{bottom:473.129667pt;}
.y89{bottom:480.272140pt;}
.y3f{bottom:484.561708pt;}
.y53{bottom:488.762060pt;}
.ya9{bottom:500.129666pt;}
.y3e{bottom:506.561707pt;}
.y70{bottom:509.943691pt;}
.y21{bottom:514.679997pt;}
.y35{bottom:515.860651pt;}
.y6d{bottom:516.740138pt;}
.y52{bottom:519.762058pt;}
.ya2{bottom:521.142753pt;}
.ya8{bottom:527.129664pt;}
.y6f{bottom:535.943690pt;}
.y6c{bottom:544.740137pt;}
.y51{bottom:550.762057pt;}
.ya7{bottom:554.129663pt;}
.y25{bottom:560.526578pt;}
.y6e{bottom:561.943689pt;}
.y34{bottom:563.060649pt;}
.ya1{bottom:563.142751pt;}
.y4{bottom:568.201618pt;}
.ya6{bottom:581.129662pt;}
.y3d{bottom:583.546148pt;}
.ya0{bottom:605.142749pt;}
.y3c{bottom:605.546148pt;}
.ya5{bottom:608.129661pt;}
.y6b{bottom:625.127827pt;}
.y3{bottom:626.095052pt;}
.y16{bottom:628.124662pt;}
.y33{bottom:628.896303pt;}
.ya4{bottom:635.129660pt;}
.y50{bottom:641.062200pt;}
.ya{bottom:644.939231pt;}
.y6a{bottom:651.127826pt;}
.y15{bottom:659.124661pt;}
.y66{bottom:659.740129pt;}
.ya3{bottom:662.129659pt;}
.yf{bottom:666.739268pt;}
.y69{bottom:677.127825pt;}
.y9f{bottom:681.229700pt;}
.y65{bottom:687.740128pt;}
.y2f{bottom:688.362941pt;}
.y14{bottom:690.124659pt;}
.y68{bottom:703.127824pt;}
.y23{bottom:705.719989pt;}
.y9{bottom:708.140594pt;}
.y9e{bottom:708.229698pt;}
.y2e{bottom:719.362940pt;}
.y13{bottom:721.124658pt;}
.y9a{bottom:727.480165pt;}
.y67{bottom:729.127822pt;}
.ye{bottom:729.707195pt;}
.y9d{bottom:735.229697pt;}
.y12{bottom:752.124657pt;}
.y88{bottom:755.950241pt;}
.y9c{bottom:762.229696pt;}
.y8{bottom:771.341939pt;}
.y11{bottom:783.124655pt;}
.y64{bottom:786.999010pt;}
.y9b{bottom:789.229695pt;}
.yd{bottom:793.141999pt;}
.y4e{bottom:796.166626pt;}
.y99{bottom:797.830652pt;}
.y60{bottom:810.998990pt;}
.y63{bottom:812.999009pt;}
.y2d{bottom:816.912331pt;}
.y98{bottom:824.830650pt;}
.y4d{bottom:827.166625pt;}
.y7{bottom:835.217367pt;}
.y5f{bottom:838.998989pt;}
.y62{bottom:838.999008pt;}
.y2c{bottom:849.912329pt;}
.y97{bottom:851.830649pt;}
.y92{bottom:856.229731pt;}
.yc{bottom:857.017366pt;}
.y4c{bottom:858.166623pt;}
.y61{bottom:864.999007pt;}
.y96{bottom:878.830648pt;}
.y2b{bottom:882.912328pt;}
.y4b{bottom:889.166622pt;}
.y91{bottom:898.229729pt;}
.y95{bottom:905.830647pt;}
.y4a{bottom:920.166621pt;}
.yb{bottom:930.724054pt;}
.y94{bottom:932.830646pt;}
.y2a{bottom:934.958524pt;}
.y10{bottom:948.273720pt;}
.y3b{bottom:955.847957pt;}
.y93{bottom:959.830645pt;}
.y5e{bottom:966.385723pt;}
.y4f{bottom:989.544855pt;}
.y3a{bottom:1008.847955pt;}
.y80{bottom:1010.384032pt;}
.y8a{bottom:1015.447292pt;}
.y5d{bottom:1019.385721pt;}
.he{height:29.999999pt;}
.h6{height:39.871998pt;}
.h14{height:48.523998pt;}
.hf{height:49.355838pt;}
.h1b{height:52.845118pt;}
.h1f{height:54.742558pt;}
.h1a{height:55.999998pt;}
.h23{height:56.639998pt;}
.h22{height:63.447997pt;}
.h17{height:64.173117pt;}
.hd{height:64.175255pt;}
.hb{height:64.535677pt;}
.hc{height:64.537827pt;}
.h1c{height:67.087994pt;}
.h16{height:67.967997pt;}
.h9{height:70.923997pt;}
.h1d{height:74.647997pt;}
.h3{height:85.847996pt;}
.h20{height:86.829116pt;}
.h7{height:93.324002pt;}
.h4{height:102.499521pt;}
.h21{height:138.124000pt;}
.h12{height:143.359994pt;}
.h5{height:155.671674pt;}
.h18{height:171.723998pt;}
.h19{height:197.848003pt;}
.h1e{height:205.323997pt;}
.h15{height:209.048002pt;}
.ha{height:216.419505pt;}
.h8{height:279.971983pt;}
.h13{height:399.839992pt;}
.h10{height:578.559976pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.h11{height:1620.038663pt;}
.w2{width:29.999999pt;}
.w3{width:298.879988pt;}
.w4{width:318.079987pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:0.960080pt;}
.x2f{left:7.359375pt;}
.xc{left:10.968750pt;}
.x3{left:39.563638pt;}
.x1d{left:79.370073pt;}
.xd{left:85.439996pt;}
.x9{left:88.605036pt;}
.x8{left:93.666948pt;}
.x2{left:97.161990pt;}
.x2b{left:98.377583pt;}
.x30{left:100.513957pt;}
.x15{left:103.323784pt;}
.x19{left:105.377925pt;}
.x26{left:107.043259pt;}
.x29{left:108.544079pt;}
.x32{left:117.060832pt;}
.x6{left:119.437055pt;}
.x16{left:122.291761pt;}
.x18{left:123.560376pt;}
.x2c{left:126.455892pt;}
.x7{left:127.519985pt;}
.x31{left:132.076456pt;}
.x24{left:134.031938pt;}
.x37{left:135.357706pt;}
.xa{left:136.978186pt;}
.x1a{left:139.010170pt;}
.x2d{left:141.265638pt;}
.x3a{left:145.057581pt;}
.x38{left:146.779580pt;}
.x1e{left:153.047085pt;}
.x1{left:157.477503pt;}
.x21{left:162.372201pt;}
.x27{left:164.683881pt;}
.x17{left:167.750659pt;}
.x25{left:171.516312pt;}
.x28{left:178.465951pt;}
.x22{left:188.606575pt;}
.x2e{left:191.884366pt;}
.x1f{left:195.401319pt;}
.x39{left:212.232703pt;}
.x20{left:215.948193pt;}
.x35{left:227.772258pt;}
.x2a{left:230.497197pt;}
.x33{left:245.685826pt;}
.x34{left:248.741007pt;}
.x3c{left:264.610223pt;}
.x3d{left:265.522821pt;}
.x3b{left:303.924461pt;}
.x13{left:321.736958pt;}
.x10{left:344.518189pt;}
.x23{left:350.353032pt;}
.x14{left:355.354517pt;}
.x11{left:378.627563pt;}
.xf{left:402.559983pt;}
.x36{left:419.350373pt;}
.x1c{left:431.953028pt;}
.x1b{left:433.614436pt;}
.x12{left:497.361932pt;}
.x4{left:678.686692pt;}
.x5{left:680.544900pt;}
.xb{left:740.014657pt;}
}




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