
    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_82cc37c7b01d7e617e6de576.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_6d9804ad97371a8b2020c86c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.725000;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_bca0e4c3eceac30c1d4c65dc.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_b9d3a0eaf436e4fdb6a424a9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;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_f193eec28cd9d0a38febe17d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_1532eb0d60a9617a72151a0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_a5b2b29da6d7ad5d07762758.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_ce59af5261648571a72f9961.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900000;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_d75910daa220b5c8b30019f1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910000;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_20579823f7f91282e7dda340.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684000;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_33fa1e8becd08ea63b267e44.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932000;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_8649fcf0f8f8a339059b433e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910000;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_06fac01da751a8f5fdb9b095.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-8.970000px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.003269px;}
.lse{letter-spacing:1.176961px;}
.ls5{letter-spacing:1.606648px;}
.ls16{letter-spacing:2.144023px;}
.ls19{letter-spacing:2.624368px;}
.lsb{letter-spacing:2.984525px;}
.ls9{letter-spacing:2.990525px;}
.ls4{letter-spacing:6.433866px;}
.ls13{letter-spacing:13.278538px;}
.ls15{letter-spacing:13.284538px;}
.ls12{letter-spacing:13.286245px;}
.ls18{letter-spacing:15.422023px;}
.ls14{letter-spacing:15.428023px;}
.ls6{letter-spacing:16.283249px;}
.ls7{letter-spacing:16.514338px;}
.ls3{letter-spacing:16.602538px;}
.lsd{letter-spacing:18.214648px;}
.ls2{letter-spacing:18.263249px;}
.ls10{letter-spacing:18.592618px;}
.ls11{letter-spacing:18.592896px;}
.ls17{letter-spacing:19.232368px;}
.ls8{letter-spacing:19.592525px;}
.lsc{letter-spacing:19.694525px;}
.lsf{letter-spacing:20.206648px;}
.lsa{letter-spacing:23.150525px;}
.ls0{letter-spacing:27.652378px;}
.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;}
}
.ws6{word-spacing:-24.827962px;}
.ws19{word-spacing:-16.605662px;}
.ws7{word-spacing:-14.122080px;}
.ws25{word-spacing:-3.335478px;}
.ws1c{word-spacing:-2.020415px;}
.ws2f{word-spacing:-1.900864px;}
.wsf{word-spacing:-1.425658px;}
.ws37{word-spacing:-1.243332px;}
.ws1d{word-spacing:-0.944454px;}
.ws36{word-spacing:-0.645576px;}
.ws2b{word-spacing:-0.167372px;}
.ws2{word-spacing:-0.086077px;}
.ws16{word-spacing:-0.059776px;}
.wsa{word-spacing:-0.053798px;}
.ws13{word-spacing:0.000000px;}
.ws1b{word-spacing:0.071731px;}
.ws22{word-spacing:0.079931px;}
.ws21{word-spacing:0.131506px;}
.ws40{word-spacing:0.609711px;}
.ws2d{word-spacing:0.729262px;}
.ws4d{word-spacing:0.968365px;}
.ws34{word-spacing:1.267243px;}
.ws31{word-spacing:1.864999px;}
.ws24{word-spacing:1.984550px;}
.ws23{word-spacing:1.992421px;}
.ws4b{word-spacing:2.044326px;}
.ws10{word-spacing:2.125037px;}
.ws32{word-spacing:2.761633px;}
.wse{word-spacing:2.824416px;}
.wsd{word-spacing:3.039610px;}
.ws8{word-spacing:3.054492px;}
.ws12{word-spacing:3.093408px;}
.ws18{word-spacing:3.299613px;}
.ws39{word-spacing:3.359389px;}
.ws20{word-spacing:3.538716px;}
.ws1f{word-spacing:3.598491px;}
.ws51{word-spacing:3.777818px;}
.ws3b{word-spacing:3.897369px;}
.ws29{word-spacing:4.076696px;}
.ws3d{word-spacing:4.136472px;}
.ws3a{word-spacing:4.375574px;}
.ws47{word-spacing:4.734228px;}
.ws4c{word-spacing:4.913554px;}
.ws50{word-spacing:5.212432px;}
.ws3c{word-spacing:5.331984px;}
.ws44{word-spacing:5.451535px;}
.ws2e{word-spacing:5.511310px;}
.ws28{word-spacing:5.750413px;}
.ws49{word-spacing:5.989515px;}
.ws9{word-spacing:6.159917px;}
.ws3f{word-spacing:6.647047px;}
.ws15{word-spacing:7.244803px;}
.ws3e{word-spacing:7.364354px;}
.ws11{word-spacing:7.666272px;}
.ws33{word-spacing:7.842559px;}
.ws38{word-spacing:8.559866px;}
.ws46{word-spacing:9.038071px;}
.ws30{word-spacing:9.277173px;}
.ws2c{word-spacing:9.755378px;}
.ws1e{word-spacing:9.862974px;}
.ws1a{word-spacing:9.922750px;}
.ws42{word-spacing:10.412910px;}
.ws45{word-spacing:11.189992px;}
.ws35{word-spacing:11.608422px;}
.ws27{word-spacing:12.086626px;}
.ws5{word-spacing:12.292934px;}
.ws43{word-spacing:12.325729px;}
.wsb{word-spacing:13.745491px;}
.ws41{word-spacing:17.163602px;}
.wsc{word-spacing:18.396250px;}
.ws4e{word-spacing:18.590212px;}
.ws17{word-spacing:19.877153px;}
.ws4a{word-spacing:20.144377px;}
.ws4{word-spacing:21.142771px;}
.ws4f{word-spacing:23.073382px;}
.ws1{word-spacing:23.384371px;}
.ws2a{word-spacing:26.827469px;}
.ws0{word-spacing:31.091012px;}
.ws26{word-spacing:32.192873px;}
.ws48{word-spacing:32.922670px;}
.ws3{word-spacing:51.054682px;}
.ws14{word-spacing:96.750773px;}
._10{margin-left:-32.225242px;}
._d{margin-left:-27.652378px;}
._f{margin-left:-9.253325px;}
._0{margin-left:-8.056807px;}
._24{margin-left:-6.742733px;}
._1b{margin-left:-4.961375px;}
._2{margin-left:-3.945216px;}
._1{margin-left:-2.788895px;}
._3{margin-left:-1.775347px;}
._4{width:1.775347px;}
._17{width:3.012710px;}
._1a{width:15.882389px;}
._9{width:18.668045px;}
._27{width:19.777513px;}
._c{width:21.411763px;}
._1f{width:23.653243px;}
._19{width:25.016256px;}
._22{width:26.095847px;}
._21{width:27.351135px;}
._e{width:28.889741px;}
._16{width:29.911910px;}
._1e{width:31.386455px;}
._25{width:36.496802px;}
._a{width:37.927872px;}
._23{width:39.306255px;}
._26{width:42.082022px;}
._1d{width:44.925161px;}
._18{width:46.771586px;}
._6{width:51.108480px;}
._13{width:54.712973px;}
._8{width:56.542118px;}
._20{width:80.697600px;}
._11{width:85.324262px;}
._1c{width:96.836850px;}
._b{width:113.084237px;}
._7{width:1057.407552px;}
._15{width:1498.984819px;}
._5{width:1596.628915px;}
._14{width:1617.879283px;}
._12{width:1736.397158px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs3{font-size:53.798400px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1f{bottom:134.047500px;}
.y42{bottom:178.879500px;}
.y7d{bottom:182.127000px;}
.y61{bottom:183.684000px;}
.y41{bottom:196.812000px;}
.y7c{bottom:200.061000px;}
.y60{bottom:201.616500px;}
.y40{bottom:214.744500px;}
.y7b{bottom:217.993500px;}
.y5f{bottom:231.505500px;}
.y3f{bottom:232.677000px;}
.y1e{bottom:233.331000px;}
.y7a{bottom:235.926000px;}
.y1d{bottom:249.769500px;}
.y3e{bottom:260.260500px;}
.y5e{bottom:261.393000px;}
.y1c{bottom:266.208000px;}
.y79{bottom:268.657500px;}
.y1b{bottom:282.646500px;}
.y5d{bottom:291.280500px;}
.y1a{bottom:299.085000px;}
.y3d{bottom:301.549500px;}
.y5c{bottom:309.213000px;}
.y78{bottom:318.076500px;}
.y3c{bottom:319.482000px;}
.y19{bottom:322.509000px;}
.y77{bottom:336.009000px;}
.y3b{bottom:337.416000px;}
.y5b{bottom:342.090000px;}
.y18{bottom:353.892000px;}
.y3a{bottom:355.348500px;}
.y5a{bottom:360.022500px;}
.y76{bottom:368.886000px;}
.y17{bottom:370.330500px;}
.y39{bottom:382.932000px;}
.y75{bottom:386.818500px;}
.y59{bottom:387.607500px;}
.y16{bottom:392.746500px;}
.y74{bottom:404.751000px;}
.y15{bottom:409.185000px;}
.y38{bottom:424.221000px;}
.y58{bottom:429.439500px;}
.y14{bottom:431.601000px;}
.y73{bottom:437.482500px;}
.y37{bottom:442.153500px;}
.y57{bottom:447.372000px;}
.y36{bottom:460.086000px;}
.y13{bottom:461.358000px;}
.y56{bottom:474.957000px;}
.y35{bottom:478.018500px;}
.y72{bottom:486.901500px;}
.y34{bottom:495.951000px;}
.y12{bottom:503.145000px;}
.y71{bottom:504.834000px;}
.y55{bottom:516.789000px;}
.y33{bottom:528.682500px;}
.y11{bottom:530.118000px;}
.y54{bottom:534.721500px;}
.y70{bottom:552.655500px;}
.y10{bottom:557.092500px;}
.y53{bottom:567.453000px;}
.y6f{bottom:570.588000px;}
.yf{bottom:573.531000px;}
.y32{bottom:577.558500px;}
.ye{bottom:589.969500px;}
.y31{bottom:595.491000px;}
.y6e{bottom:600.475500px;}
.yd{bottom:606.408000px;}
.y30{bottom:613.423500px;}
.y52{bottom:616.872000px;}
.y6d{bottom:618.408000px;}
.yc{bottom:622.845000px;}
.y51{bottom:634.804500px;}
.y6c{bottom:636.340500px;}
.y2f{bottom:643.140000px;}
.yb{bottom:649.819500px;}
.y50{bottom:652.737000px;}
.y6b{bottom:666.229500px;}
.ya{bottom:666.258000px;}
.y4f{bottom:670.671000px;}
.y2e{bottom:672.858000px;}
.y9{bottom:682.696500px;}
.y6a{bottom:684.162000px;}
.y4e{bottom:688.603500px;}
.y2d{bottom:690.790500px;}
.y8{bottom:699.135000px;}
.y69{bottom:702.094500px;}
.y4d{bottom:706.536000px;}
.y2c{bottom:708.723000px;}
.y7{bottom:715.573500px;}
.y68{bottom:720.027000px;}
.y2b{bottom:726.655500px;}
.y4c{bottom:734.119500px;}
.y6{bottom:742.546500px;}
.y67{bottom:752.904000px;}
.y2a{bottom:756.373500px;}
.y5{bottom:769.521000px;}
.y4b{bottom:775.953000px;}
.y66{bottom:785.635500px;}
.y29{bottom:786.090000px;}
.y4a{bottom:802.852500px;}
.y28{bottom:804.024000px;}
.y49{bottom:820.785000px;}
.y27{bottom:821.956500px;}
.y4{bottom:826.719000px;}
.y65{bottom:835.054500px;}
.y26{bottom:839.889000px;}
.y64{bottom:852.987000px;}
.y48{bottom:853.660500px;}
.y25{bottom:857.821500px;}
.y3{bottom:858.613500px;}
.y63{bottom:870.919500px;}
.y47{bottom:886.537500px;}
.y24{bottom:887.539500px;}
.y62{bottom:898.503000px;}
.y46{bottom:904.470000px;}
.y2{bottom:905.604000px;}
.y23{bottom:917.256000px;}
.y45{bottom:922.404000px;}
.y1{bottom:931.905000px;}
.y80{bottom:932.055000px;}
.y22{bottom:935.188500px;}
.y44{bottom:940.336500px;}
.y7f{bottom:949.987500px;}
.y21{bottom:953.121000px;}
.y43{bottom:958.269000px;}
.y7e{bottom:967.920000px;}
.y20{bottom:985.852500px;}
.h6{height:37.336090px;}
.h4{height:37.658880px;}
.h5{height:40.348800px;}
.h9{height:41.484266px;}
.h7{height:44.831700px;}
.h8{height:50.211840px;}
.h2{height:50.498765px;}
.h3{height:60.254040px;}
.h1{height:72.511265px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:200.652000px;}
.x1{left:216.697500px;}
.x7{left:219.789000px;}
.x6{left:221.386500px;}
.x10{left:223.068000px;}
.x8{left:238.012500px;}
.xa{left:258.747000px;}
.xf{left:374.235000px;}
.x2{left:393.448500px;}
.x3{left:398.469000px;}
.xd{left:408.612000px;}
.x4{left:417.465000px;}
.xc{left:421.800000px;}
.xe{left:423.705000px;}
.x9{left:427.995000px;}
.xb{left:454.699500px;}
@media print{
.v1{vertical-align:-7.973333pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.002906pt;}
.lse{letter-spacing:1.046188pt;}
.ls5{letter-spacing:1.428132pt;}
.ls16{letter-spacing:1.905799pt;}
.ls19{letter-spacing:2.332772pt;}
.lsb{letter-spacing:2.652911pt;}
.ls9{letter-spacing:2.658245pt;}
.ls4{letter-spacing:5.718992pt;}
.ls13{letter-spacing:11.803145pt;}
.ls15{letter-spacing:11.808479pt;}
.ls12{letter-spacing:11.809995pt;}
.ls18{letter-spacing:13.708465pt;}
.ls14{letter-spacing:13.713799pt;}
.ls6{letter-spacing:14.473999pt;}
.ls7{letter-spacing:14.679412pt;}
.ls3{letter-spacing:14.757812pt;}
.lsd{letter-spacing:16.190798pt;}
.ls2{letter-spacing:16.233999pt;}
.ls10{letter-spacing:16.526771pt;}
.ls11{letter-spacing:16.527018pt;}
.ls17{letter-spacing:17.095439pt;}
.ls8{letter-spacing:17.415578pt;}
.lsc{letter-spacing:17.506245pt;}
.lsf{letter-spacing:17.961465pt;}
.lsa{letter-spacing:20.578245pt;}
.ls0{letter-spacing:24.579891pt;}
.ws6{word-spacing:-22.069299pt;}
.ws19{word-spacing:-14.760588pt;}
.ws7{word-spacing:-12.552960pt;}
.ws25{word-spacing:-2.964870pt;}
.ws1c{word-spacing:-1.795925pt;}
.ws2f{word-spacing:-1.689657pt;}
.wsf{word-spacing:-1.267251pt;}
.ws37{word-spacing:-1.105184pt;}
.ws1d{word-spacing:-0.839515pt;}
.ws36{word-spacing:-0.573846pt;}
.ws2b{word-spacing:-0.148775pt;}
.ws2{word-spacing:-0.076513pt;}
.ws16{word-spacing:-0.053134pt;}
.wsa{word-spacing:-0.047821pt;}
.ws13{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.063761pt;}
.ws22{word-spacing:0.071050pt;}
.ws21{word-spacing:0.116895pt;}
.ws40{word-spacing:0.541965pt;}
.ws2d{word-spacing:0.648233pt;}
.ws4d{word-spacing:0.860769pt;}
.ws34{word-spacing:1.126438pt;}
.ws31{word-spacing:1.657777pt;}
.ws24{word-spacing:1.764044pt;}
.ws23{word-spacing:1.771041pt;}
.ws4b{word-spacing:1.817178pt;}
.ws10{word-spacing:1.888922pt;}
.ws32{word-spacing:2.454785pt;}
.wse{word-spacing:2.510592pt;}
.wsd{word-spacing:2.701875pt;}
.ws8{word-spacing:2.715104pt;}
.ws12{word-spacing:2.749696pt;}
.ws18{word-spacing:2.932989pt;}
.ws39{word-spacing:2.986123pt;}
.ws20{word-spacing:3.145525pt;}
.ws1f{word-spacing:3.198659pt;}
.ws51{word-spacing:3.358060pt;}
.ws3b{word-spacing:3.464328pt;}
.ws29{word-spacing:3.623730pt;}
.ws3d{word-spacing:3.676864pt;}
.ws3a{word-spacing:3.889399pt;}
.ws47{word-spacing:4.208202pt;}
.ws4c{word-spacing:4.367604pt;}
.ws50{word-spacing:4.633273pt;}
.ws3c{word-spacing:4.739541pt;}
.ws44{word-spacing:4.845809pt;}
.ws2e{word-spacing:4.898943pt;}
.ws28{word-spacing:5.111478pt;}
.ws49{word-spacing:5.324013pt;}
.ws9{word-spacing:5.475482pt;}
.ws3f{word-spacing:5.908486pt;}
.ws15{word-spacing:6.439825pt;}
.ws3e{word-spacing:6.546092pt;}
.ws11{word-spacing:6.814464pt;}
.ws33{word-spacing:6.971163pt;}
.ws38{word-spacing:7.608770pt;}
.ws46{word-spacing:8.033841pt;}
.ws30{word-spacing:8.246376pt;}
.ws2c{word-spacing:8.671447pt;}
.ws1e{word-spacing:8.767088pt;}
.ws1a{word-spacing:8.820222pt;}
.ws42{word-spacing:9.255920pt;}
.ws45{word-spacing:9.946660pt;}
.ws35{word-spacing:10.318597pt;}
.ws27{word-spacing:10.743668pt;}
.ws5{word-spacing:10.927053pt;}
.ws43{word-spacing:10.956203pt;}
.wsb{word-spacing:12.218214pt;}
.ws41{word-spacing:15.256535pt;}
.wsc{word-spacing:16.352222pt;}
.ws4e{word-spacing:16.524633pt;}
.ws17{word-spacing:17.668581pt;}
.ws4a{word-spacing:17.906113pt;}
.ws4{word-spacing:18.793574pt;}
.ws4f{word-spacing:20.509673pt;}
.ws1{word-spacing:20.786108pt;}
.ws2a{word-spacing:23.846639pt;}
.ws0{word-spacing:27.636455pt;}
.ws26{word-spacing:28.615887pt;}
.ws48{word-spacing:29.264596pt;}
.ws3{word-spacing:45.381939pt;}
.ws14{word-spacing:86.000687pt;}
._10{margin-left:-28.644659pt;}
._d{margin-left:-24.579891pt;}
._f{margin-left:-8.225178pt;}
._0{margin-left:-7.161606pt;}
._24{margin-left:-5.993540pt;}
._1b{margin-left:-4.410111pt;}
._2{margin-left:-3.506859pt;}
._1{margin-left:-2.479018pt;}
._3{margin-left:-1.578086pt;}
._4{width:1.578086pt;}
._17{width:2.677965pt;}
._1a{width:14.117679pt;}
._9{width:16.593818pt;}
._27{width:17.580012pt;}
._c{width:19.032678pt;}
._1f{width:21.025105pt;}
._19{width:22.236672pt;}
._22{width:23.196309pt;}
._21{width:24.312120pt;}
._e{width:25.679770pt;}
._16{width:26.588365pt;}
._1e{width:27.899071pt;}
._25{width:32.441601pt;}
._a{width:33.713664pt;}
._23{width:34.938893pt;}
._26{width:37.406242pt;}
._1d{width:39.933477pt;}
._18{width:41.574743pt;}
._6{width:45.429760pt;}
._13{width:48.633754pt;}
._8{width:50.259661pt;}
._20{width:71.731200pt;}
._11{width:75.843789pt;}
._1c{width:86.077200pt;}
._b{width:100.519322pt;}
._7{width:939.917824pt;}
._15{width:1332.430950pt;}
._5{width:1419.225702pt;}
._14{width:1438.114918pt;}
._12{width:1543.464141pt;}
.fs5{font-size:37.193600pt;}
.fs3{font-size:47.820800pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:119.153333pt;}
.y42{bottom:159.004000pt;}
.y7d{bottom:161.890667pt;}
.y61{bottom:163.274667pt;}
.y41{bottom:174.944000pt;}
.y7c{bottom:177.832000pt;}
.y60{bottom:179.214667pt;}
.y40{bottom:190.884000pt;}
.y7b{bottom:193.772000pt;}
.y5f{bottom:205.782667pt;}
.y3f{bottom:206.824000pt;}
.y1e{bottom:207.405333pt;}
.y7a{bottom:209.712000pt;}
.y1d{bottom:222.017333pt;}
.y3e{bottom:231.342667pt;}
.y5e{bottom:232.349333pt;}
.y1c{bottom:236.629333pt;}
.y79{bottom:238.806667pt;}
.y1b{bottom:251.241333pt;}
.y5d{bottom:258.916000pt;}
.y1a{bottom:265.853333pt;}
.y3d{bottom:268.044000pt;}
.y5c{bottom:274.856000pt;}
.y78{bottom:282.734667pt;}
.y3c{bottom:283.984000pt;}
.y19{bottom:286.674667pt;}
.y77{bottom:298.674667pt;}
.y3b{bottom:299.925333pt;}
.y5b{bottom:304.080000pt;}
.y18{bottom:314.570667pt;}
.y3a{bottom:315.865333pt;}
.y5a{bottom:320.020000pt;}
.y76{bottom:327.898667pt;}
.y17{bottom:329.182667pt;}
.y39{bottom:340.384000pt;}
.y75{bottom:343.838667pt;}
.y59{bottom:344.540000pt;}
.y16{bottom:349.108000pt;}
.y74{bottom:359.778667pt;}
.y15{bottom:363.720000pt;}
.y38{bottom:377.085333pt;}
.y58{bottom:381.724000pt;}
.y14{bottom:383.645333pt;}
.y73{bottom:388.873333pt;}
.y37{bottom:393.025333pt;}
.y57{bottom:397.664000pt;}
.y36{bottom:408.965333pt;}
.y13{bottom:410.096000pt;}
.y56{bottom:422.184000pt;}
.y35{bottom:424.905333pt;}
.y72{bottom:432.801333pt;}
.y34{bottom:440.845333pt;}
.y12{bottom:447.240000pt;}
.y71{bottom:448.741333pt;}
.y55{bottom:459.368000pt;}
.y33{bottom:469.940000pt;}
.y11{bottom:471.216000pt;}
.y54{bottom:475.308000pt;}
.y70{bottom:491.249333pt;}
.y10{bottom:495.193333pt;}
.y53{bottom:504.402667pt;}
.y6f{bottom:507.189333pt;}
.yf{bottom:509.805333pt;}
.y32{bottom:513.385333pt;}
.ye{bottom:524.417333pt;}
.y31{bottom:529.325333pt;}
.y6e{bottom:533.756000pt;}
.yd{bottom:539.029333pt;}
.y30{bottom:545.265333pt;}
.y52{bottom:548.330667pt;}
.y6d{bottom:549.696000pt;}
.yc{bottom:553.640000pt;}
.y51{bottom:564.270667pt;}
.y6c{bottom:565.636000pt;}
.y2f{bottom:571.680000pt;}
.yb{bottom:577.617333pt;}
.y50{bottom:580.210667pt;}
.y6b{bottom:592.204000pt;}
.ya{bottom:592.229333pt;}
.y4f{bottom:596.152000pt;}
.y2e{bottom:598.096000pt;}
.y9{bottom:606.841333pt;}
.y6a{bottom:608.144000pt;}
.y4e{bottom:612.092000pt;}
.y2d{bottom:614.036000pt;}
.y8{bottom:621.453333pt;}
.y69{bottom:624.084000pt;}
.y4d{bottom:628.032000pt;}
.y2c{bottom:629.976000pt;}
.y7{bottom:636.065333pt;}
.y68{bottom:640.024000pt;}
.y2b{bottom:645.916000pt;}
.y4c{bottom:652.550667pt;}
.y6{bottom:660.041333pt;}
.y67{bottom:669.248000pt;}
.y2a{bottom:672.332000pt;}
.y5{bottom:684.018667pt;}
.y4b{bottom:689.736000pt;}
.y66{bottom:698.342667pt;}
.y29{bottom:698.746667pt;}
.y4a{bottom:713.646667pt;}
.y28{bottom:714.688000pt;}
.y49{bottom:729.586667pt;}
.y27{bottom:730.628000pt;}
.y4{bottom:734.861333pt;}
.y65{bottom:742.270667pt;}
.y26{bottom:746.568000pt;}
.y64{bottom:758.210667pt;}
.y48{bottom:758.809333pt;}
.y25{bottom:762.508000pt;}
.y3{bottom:763.212000pt;}
.y63{bottom:774.150667pt;}
.y47{bottom:788.033333pt;}
.y24{bottom:788.924000pt;}
.y62{bottom:798.669333pt;}
.y46{bottom:803.973333pt;}
.y2{bottom:804.981333pt;}
.y23{bottom:815.338667pt;}
.y45{bottom:819.914667pt;}
.y1{bottom:828.360000pt;}
.y80{bottom:828.493333pt;}
.y22{bottom:831.278667pt;}
.y44{bottom:835.854667pt;}
.y7f{bottom:844.433333pt;}
.y21{bottom:847.218667pt;}
.y43{bottom:851.794667pt;}
.y7e{bottom:860.373333pt;}
.y20{bottom:876.313333pt;}
.h6{height:33.187635pt;}
.h4{height:33.474560pt;}
.h5{height:35.865600pt;}
.h9{height:36.874903pt;}
.h7{height:39.850400pt;}
.h8{height:44.632747pt;}
.h2{height:44.887791pt;}
.h3{height:53.559147pt;}
.h1{height:64.454458pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:178.357333pt;}
.x1{left:192.620000pt;}
.x7{left:195.368000pt;}
.x6{left:196.788000pt;}
.x10{left:198.282667pt;}
.x8{left:211.566667pt;}
.xa{left:229.997333pt;}
.xf{left:332.653333pt;}
.x2{left:349.732000pt;}
.x3{left:354.194667pt;}
.xd{left:363.210667pt;}
.x4{left:371.080000pt;}
.xc{left:374.933333pt;}
.xe{left:376.626667pt;}
.x9{left:380.440000pt;}
.xb{left:404.177333pt;}
}




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