
    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_2f81928501b921382ea44684.woff')format("woff");}.ff1{font-family:ff1;line-height:0.987000;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_453154cfc026c02151d4331e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.987000;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_ec00d43389c3dc783004121e.woff')format("woff");}.ff3{font-family:ff3;line-height:1.154000;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_53242fbe710f4ce27f5222d2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.194000;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_a41acb9948793f64ac70e571.woff')format("woff");}.ff5{font-family:ff5;line-height:0.947000;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_56fb37e06e805887f2668e83.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758000;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_626040a97faafaf0aee3c67c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.061000;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_ed9790b9cdee058aca5be64b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.719000;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_d03a92a721857141fb9a2df6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.160000;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_075b925cc12aa8b00a023412.woff')format("woff");}.ffa{font-family:ffa;line-height:1.067000;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_02a5e15ad4f4b26c18238eee.woff')format("woff");}.ffb{font-family:ffb;line-height:0.997000;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_9b4ebeabe34d33cefa5948cd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.724000;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_45cbf809580ebfce95cb5262.woff')format("woff");}.ffd{font-family:ffd;line-height:0.991000;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_f7f7bf1c4654df321e64ad9a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.987000;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;}
.fff{font-family:sans-serif;visibility:hidden;}
.ff10{font-family:sans-serif;visibility:hidden;}
.ff11{font-family:sans-serif;visibility:hidden;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws1{word-spacing:-179.164845px;}
.ws0{word-spacing:-124.671461px;}
.ws4{word-spacing:-47.193974px;}
.ws7{word-spacing:-36.881638px;}
.ws6{word-spacing:-35.364597px;}
.ws9{word-spacing:-34.071478px;}
.wse{word-spacing:-29.042999px;}
.wsb{word-spacing:-27.980819px;}
.ws2{word-spacing:-23.188948px;}
.wsc{word-spacing:-22.895999px;}
.ws8{word-spacing:-19.355084px;}
.wsd{word-spacing:-16.595999px;}
.ws3{word-spacing:-15.235380px;}
.wsa{word-spacing:-13.826542px;}
.ws5{word-spacing:-11.064030px;}
.wsf{word-spacing:0.000000px;}
._f{margin-left:-11.808495px;}
._b{margin-left:-10.437117px;}
._e{margin-left:-9.021343px;}
._10{margin-left:-8.001728px;}
._2{margin-left:-5.845976px;}
._a{margin-left:-3.705765px;}
._3{margin-left:-2.664254px;}
._1{margin-left:-1.359245px;}
._4{width:1.369709px;}
._11{width:2.397411px;}
._5{width:3.617803px;}
._c{width:7.194375px;}
._d{width:8.412412px;}
._0{width:12.306706px;}
._9{width:13.497903px;}
._8{width:22.507171px;}
._6{width:23.678245px;}
._7{width:24.703966px;}
.fc4{color:transparent;}
.fc2{color:rgb(254,230,224);}
.fc1{color:rgb(58,161,126);}
.fc3{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs14{font-size:44.400009px;}
.fsa{font-size:44.603174px;}
.fs8{font-size:48.000131px;}
.fs3{font-size:49.772646px;}
.fse{font-size:53.999998px;}
.fs4{font-size:54.090000px;}
.fsd{font-size:59.984997px;}
.fs5{font-size:71.864998px;}
.fs11{font-size:71.999997px;}
.fsf{font-size:83.969997px;}
.fs12{font-size:86.579996px;}
.fs2{font-size:86.849992px;}
.fs15{font-size:107.999996px;}
.fs9{font-size:119.879991px;}
.fs18{font-size:119.969995px;}
.fs7{font-size:121.948253px;}
.fs6{font-size:121.951016px;}
.fs13{font-size:122.579995px;}
.fs17{font-size:125.999995px;}
.fs10{font-size:131.984995px;}
.fs16{font-size:143.999994px;}
.fsb{font-size:149.985003px;}
.fsc{font-size:173.969993px;}
.fs0{font-size:197.577592px;}
.fs1{font-size:283.937947px;}
.y0{bottom:0.000000px;}
.y5{bottom:0.000008px;}
.y25{bottom:2.833132px;}
.y42{bottom:2.924001px;}
.y22{bottom:3.241591px;}
.y1d{bottom:3.281552px;}
.y17{bottom:3.321513px;}
.y9{bottom:5.204613px;}
.y4{bottom:16.450921px;}
.y21{bottom:17.241629px;}
.y1c{bottom:17.281590px;}
.y16{bottom:17.321551px;}
.y8a{bottom:18.911591px;}
.y8{bottom:19.721635px;}
.y20{bottom:31.241667px;}
.y1b{bottom:31.281629px;}
.y15{bottom:31.321590px;}
.y89{bottom:39.161590px;}
.y1f{bottom:45.241706px;}
.y1a{bottom:45.281667px;}
.y14{bottom:45.321628px;}
.y19{bottom:59.281705px;}
.y13{bottom:59.321666px;}
.y88{bottom:59.411590px;}
.ye{bottom:62.808107px;}
.y10{bottom:63.232972px;}
.y12{bottom:73.321705px;}
.y2d{bottom:82.596777px;}
.y2c{bottom:100.596776px;}
.y2{bottom:116.714789px;}
.y2b{bottom:118.596775px;}
.y2a{bottom:136.596774px;}
.y29{bottom:160.746689px;}
.y86{bottom:205.146891px;}
.y85{bottom:223.146891px;}
.y84{bottom:241.146890px;}
.y87{bottom:269.891701px;}
.y38{bottom:309.266519px;}
.y37{bottom:329.516518px;}
.y36{bottom:349.766517px;}
.y35{bottom:370.016517px;}
.y34{bottom:390.266516px;}
.y33{bottom:410.516515px;}
.y32{bottom:430.766514px;}
.y3e{bottom:460.841633px;}
.y3d{bottom:508.796691px;}
.y3c{bottom:538.046690px;}
.y3b{bottom:567.296688px;}
.y3a{bottom:596.546687px;}
.y39{bottom:629.068510px;}
.y7{bottom:728.459977px;}
.y3{bottom:796.859974px;}
.y6f{bottom:844.150321px;}
.ya{bottom:856.199664px;}
.y6e{bottom:871.150320px;}
.yc{bottom:874.502532px;}
.y6{bottom:891.975887px;}
.y6d{bottom:898.150319px;}
.yb{bottom:899.252531px;}
.y6c{bottom:925.150317px;}
.y41{bottom:932.219969px;}
.y6b{bottom:952.150316px;}
.y24{bottom:958.859968px;}
.y6a{bottom:979.150315px;}
.y11{bottom:989.459966px;}
.y18{bottom:1003.499966px;}
.y69{bottom:1006.150314px;}
.y1e{bottom:1017.539965px;}
.y68{bottom:1033.150313px;}
.y67{bottom:1060.150312px;}
.y66{bottom:1087.150311px;}
.yf{bottom:1088.819962px;}
.yd{bottom:1089.179962px;}
.y65{bottom:1114.150310px;}
.y64{bottom:1141.150308px;}
.y63{bottom:1168.150307px;}
.y62{bottom:1195.150306px;}
.y61{bottom:1222.150305px;}
.y60{bottom:1249.150304px;}
.y23{bottom:1272.281779px;}
.y5f{bottom:1276.150303px;}
.y5e{bottom:1303.150302px;}
.y40{bottom:1313.469701px;}
.y5d{bottom:1330.150301px;}
.y5c{bottom:1357.150299px;}
.y5b{bottom:1384.150298px;}
.y4e{bottom:1410.550249px;}
.y5a{bottom:1411.150297px;}
.y4d{bottom:1433.050248px;}
.y59{bottom:1438.150296px;}
.y4c{bottom:1455.550247px;}
.y58{bottom:1465.150295px;}
.y4b{bottom:1478.050246px;}
.y57{bottom:1492.150294px;}
.y4a{bottom:1500.550245px;}
.y56{bottom:1519.150293px;}
.y49{bottom:1523.050245px;}
.y48{bottom:1545.550244px;}
.y55{bottom:1546.150292px;}
.y47{bottom:1568.050243px;}
.y54{bottom:1573.150290px;}
.y46{bottom:1590.550242px;}
.y45{bottom:1613.050241px;}
.y72{bottom:1614.175241px;}
.y71{bottom:1641.175240px;}
.y44{bottom:1644.100239px;}
.y70{bottom:1668.175238px;}
.y43{bottom:1671.100238px;}
.y3f{bottom:1746.383651px;}
.y53{bottom:1806.608769px;}
.y52{bottom:1856.108767px;}
.y80{bottom:1941.359427px;}
.y7f{bottom:1966.109426px;}
.y78{bottom:1985.234425px;}
.y7e{bottom:1990.859425px;}
.y77{bottom:2009.984424px;}
.y7d{bottom:2015.609424px;}
.y76{bottom:2034.734423px;}
.y7c{bottom:2040.359423px;}
.y75{bottom:2059.484422px;}
.y7b{bottom:2065.109422px;}
.y74{bottom:2084.234421px;}
.y7a{bottom:2089.859421px;}
.y73{bottom:2113.484492px;}
.y79{bottom:2118.503072px;}
.y51{bottom:2177.609457px;}
.y50{bottom:2202.359456px;}
.y4f{bottom:2227.109455px;}
.y26{bottom:2287.605447px;}
.y8b{bottom:2353.107732px;}
.y31{bottom:2396.589247px;}
.y30{bottom:2425.839246px;}
.y2f{bottom:2455.089245px;}
.y2e{bottom:2484.339243px;}
.y83{bottom:2524.089225px;}
.y1{bottom:2557.979901px;}
.y82{bottom:2567.964223px;}
.y81{bottom:2611.839221px;}
.y28{bottom:2657.214211px;}
.y27{bottom:2717.964209px;}
.h15{height:13.319999px;}
.h8{height:32.399999px;}
.h11{height:43.008118px;}
.h22{height:43.911609px;}
.h16{height:44.112539px;}
.h9{height:44.596291px;}
.h1a{height:48.383998px;}
.ha{height:50.520060px;}
.h1c{height:53.746557px;}
.h13{height:56.519998px;}
.h19{height:59.325162px;}
.h1e{height:64.511997px;}
.hb{height:67.481233px;}
.h24{height:68.399997px;}
.h12{height:70.559997px;}
.h25{height:71.207997px;}
.h20{height:71.515077px;}
.h1b{height:75.237117px;}
.h7{height:77.817593px;}
.h4{height:83.879997px;}
.h10{height:84.599996px;}
.h14{height:85.354553px;}
.hf{height:91.095345px;}
.hd{height:91.097409px;}
.h27{height:104.075996px;}
.h23{height:106.811996px;}
.h1d{height:109.019605px;}
.h28{height:118.650325px;}
.h21{height:121.231615px;}
.h1f{height:130.533160px;}
.h26{height:142.415994px;}
.hc{height:146.879994px;}
.he{height:147.599994px;}
.h17{height:148.335168px;}
.h3{height:163.199091px;}
.h18{height:172.056323px;}
.h2{height:228.239990px;}
.h5{height:234.532744px;}
.h6{height:2812.499883px;}
.h0{height:2812.499891px;}
.h1{height:2812.500000px;}
.wc{width:105.839996px;}
.w9{width:123.119995px;}
.wb{width:124.199995px;}
.w8{width:132.479994px;}
.wa{width:134.279994px;}
.w5{width:146.879994px;}
.w7{width:147.239994px;}
.w6{width:147.599994px;}
.w2{width:151.559994px;}
.w4{width:176.759993px;}
.w1{width:233.999990px;}
.w3{width:1012.499958px;}
.w0{width:1012.500000px;}
.x0{left:0.000000px;}
.x6{left:1.054807px;}
.x7{left:3.873961px;}
.x14{left:13.890267px;}
.x11{left:15.562915px;}
.x10{left:16.969169px;}
.x1b{left:25.015868px;}
.x1a{left:26.683246px;}
.x1{left:28.079999px;}
.x1c{left:30.411361px;}
.x2{left:37.478862px;}
.x38{left:43.878926px;}
.xd{left:45.364327px;}
.xb{left:49.626055px;}
.x25{left:51.156269px;}
.x22{left:54.566425px;}
.x1d{left:55.601804px;}
.x5{left:56.879998px;}
.x2b{left:62.390384px;}
.x35{left:63.572232px;}
.xa{left:64.799997px;}
.xf{left:68.399997px;}
.x3{left:78.119997px;}
.x4{left:89.394253px;}
.x28{left:98.353533px;}
.x29{left:102.478520px;}
.x20{left:108.359995px;}
.x2a{left:114.790773px;}
.x1f{left:149.132343px;}
.x34{left:153.737929px;}
.x39{left:180.109389px;}
.x3a{left:198.109388px;}
.x15{left:224.286759px;}
.x26{left:227.867007px;}
.x17{left:232.010278px;}
.x21{left:242.173230px;}
.x27{left:245.867040px;}
.xc{left:249.479990px;}
.x12{left:254.519989px;}
.x23{left:266.764479px;}
.x3b{left:283.345718px;}
.x24{left:284.764512px;}
.x3c{left:301.345717px;}
.x8{left:359.550755px;}
.x9{left:366.879864px;}
.x18{left:402.469327px;}
.x36{left:419.740119px;}
.x19{left:432.211513px;}
.xe{left:440.639982px;}
.x13{left:445.679981px;}
.x16{left:464.759981px;}
.x33{left:542.389459px;}
.x32{left:550.093732px;}
.x1e{left:559.716481px;}
.x37{left:572.212769px;}
.x31{left:668.229317px;}
.x2e{left:675.068778px;}
.x2c{left:679.041434px;}
.x30{left:692.803535px;}
.x2d{left:694.422293px;}
.x2f{left:715.989081px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-159.257640pt;}
.ws0{word-spacing:-110.819076pt;}
.ws4{word-spacing:-41.950199pt;}
.ws7{word-spacing:-32.783679pt;}
.ws6{word-spacing:-31.435198pt;}
.ws9{word-spacing:-30.285759pt;}
.wse{word-spacing:-25.815999pt;}
.wsb{word-spacing:-24.871839pt;}
.ws2{word-spacing:-20.612398pt;}
.wsc{word-spacing:-20.351999pt;}
.ws8{word-spacing:-17.204519pt;}
.wsd{word-spacing:-14.751999pt;}
.ws3{word-spacing:-13.542560pt;}
.wsa{word-spacing:-12.290259pt;}
.ws5{word-spacing:-9.834694pt;}
.wsf{word-spacing:0.000000pt;}
._f{margin-left:-10.496440pt;}
._b{margin-left:-9.277438pt;}
._e{margin-left:-8.018972pt;}
._10{margin-left:-7.112647pt;}
._2{margin-left:-5.196423pt;}
._a{margin-left:-3.294013pt;}
._3{margin-left:-2.368226pt;}
._1{margin-left:-1.208217pt;}
._4{width:1.217519pt;}
._11{width:2.131032pt;}
._5{width:3.215825pt;}
._c{width:6.395000pt;}
._d{width:7.477700pt;}
._0{width:10.939294pt;}
._9{width:11.998136pt;}
._8{width:20.006374pt;}
._6{width:21.047329pt;}
._7{width:21.959081pt;}
.fs14{font-size:39.466675pt;}
.fsa{font-size:39.647266pt;}
.fs8{font-size:42.666784pt;}
.fs3{font-size:44.242352pt;}
.fse{font-size:47.999998pt;}
.fs4{font-size:48.080000pt;}
.fsd{font-size:53.319997pt;}
.fs5{font-size:63.879999pt;}
.fs11{font-size:63.999997pt;}
.fsf{font-size:74.639997pt;}
.fs12{font-size:76.959997pt;}
.fs2{font-size:77.199993pt;}
.fs15{font-size:95.999996pt;}
.fs9{font-size:106.559992pt;}
.fs18{font-size:106.639996pt;}
.fs7{font-size:108.398447pt;}
.fs6{font-size:108.400903pt;}
.fs13{font-size:108.959995pt;}
.fs17{font-size:111.999995pt;}
.fs10{font-size:117.319995pt;}
.fs16{font-size:127.999995pt;}
.fsb{font-size:133.320002pt;}
.fsc{font-size:154.639994pt;}
.fs0{font-size:175.624526pt;}
.fs1{font-size:252.389286pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:0.000007pt;}
.y25{bottom:2.518339pt;}
.y42{bottom:2.599112pt;}
.y22{bottom:2.881414pt;}
.y1d{bottom:2.916935pt;}
.y17{bottom:2.952456pt;}
.y9{bottom:4.626323pt;}
.y4{bottom:14.623041pt;}
.y21{bottom:15.325893pt;}
.y1c{bottom:15.361414pt;}
.y16{bottom:15.396934pt;}
.y8a{bottom:16.810303pt;}
.y8{bottom:17.530342pt;}
.y20{bottom:27.770371pt;}
.y1b{bottom:27.805892pt;}
.y15{bottom:27.841413pt;}
.y89{bottom:34.810303pt;}
.y1f{bottom:40.214850pt;}
.y1a{bottom:40.250371pt;}
.y14{bottom:40.285892pt;}
.y19{bottom:52.694849pt;}
.y13{bottom:52.730370pt;}
.y88{bottom:52.810302pt;}
.ye{bottom:55.829429pt;}
.y10{bottom:56.207087pt;}
.y12{bottom:65.174849pt;}
.y2d{bottom:73.419357pt;}
.y2c{bottom:89.419356pt;}
.y2{bottom:103.746479pt;}
.y2b{bottom:105.419356pt;}
.y2a{bottom:121.419355pt;}
.y29{bottom:142.885946pt;}
.y86{bottom:182.352792pt;}
.y85{bottom:198.352792pt;}
.y84{bottom:214.352791pt;}
.y87{bottom:239.903734pt;}
.y38{bottom:274.903573pt;}
.y37{bottom:292.903572pt;}
.y36{bottom:310.903571pt;}
.y35{bottom:328.903570pt;}
.y34{bottom:346.903570pt;}
.y33{bottom:364.903569pt;}
.y32{bottom:382.903568pt;}
.y3e{bottom:409.637007pt;}
.y3d{bottom:452.263725pt;}
.y3c{bottom:478.263724pt;}
.y3b{bottom:504.263723pt;}
.y3a{bottom:530.263722pt;}
.y39{bottom:559.172009pt;}
.y7{bottom:647.519980pt;}
.y3{bottom:708.319977pt;}
.y6f{bottom:750.355841pt;}
.ya{bottom:761.066368pt;}
.y6e{bottom:774.355840pt;}
.yc{bottom:777.335584pt;}
.y6{bottom:792.867455pt;}
.y6d{bottom:798.355839pt;}
.yb{bottom:799.335583pt;}
.y6c{bottom:822.355838pt;}
.y41{bottom:828.639972pt;}
.y6b{bottom:846.355837pt;}
.y24{bottom:852.319971pt;}
.y6a{bottom:870.355836pt;}
.y11{bottom:879.519970pt;}
.y18{bottom:891.999970pt;}
.y69{bottom:894.355835pt;}
.y1e{bottom:904.479969pt;}
.y68{bottom:918.355834pt;}
.y67{bottom:942.355833pt;}
.y66{bottom:966.355832pt;}
.yf{bottom:967.839967pt;}
.yd{bottom:968.159966pt;}
.y65{bottom:990.355831pt;}
.y64{bottom:1014.355830pt;}
.y63{bottom:1038.355829pt;}
.y62{bottom:1062.355828pt;}
.y61{bottom:1086.355827pt;}
.y60{bottom:1110.355826pt;}
.y23{bottom:1130.917137pt;}
.y5f{bottom:1134.355825pt;}
.y5e{bottom:1158.355824pt;}
.y40{bottom:1167.528623pt;}
.y5d{bottom:1182.355823pt;}
.y5c{bottom:1206.355822pt;}
.y5b{bottom:1230.355821pt;}
.y4e{bottom:1253.822444pt;}
.y5a{bottom:1254.355820pt;}
.y4d{bottom:1273.822443pt;}
.y59{bottom:1278.355819pt;}
.y4c{bottom:1293.822442pt;}
.y58{bottom:1302.355818pt;}
.y4b{bottom:1313.822441pt;}
.y57{bottom:1326.355817pt;}
.y4a{bottom:1333.822440pt;}
.y56{bottom:1350.355816pt;}
.y49{bottom:1353.822440pt;}
.y48{bottom:1373.822439pt;}
.y55{bottom:1374.355815pt;}
.y47{bottom:1393.822438pt;}
.y54{bottom:1398.355814pt;}
.y46{bottom:1413.822437pt;}
.y45{bottom:1433.822436pt;}
.y72{bottom:1434.822436pt;}
.y71{bottom:1458.822435pt;}
.y44{bottom:1461.422435pt;}
.y70{bottom:1482.822434pt;}
.y43{bottom:1485.422434pt;}
.y3f{bottom:1552.341023pt;}
.y53{bottom:1605.874461pt;}
.y52{bottom:1649.874459pt;}
.y80{bottom:1725.652824pt;}
.y7f{bottom:1747.652823pt;}
.y78{bottom:1764.652822pt;}
.y7e{bottom:1769.652822pt;}
.y77{bottom:1786.652822pt;}
.y7d{bottom:1791.652821pt;}
.y76{bottom:1808.652821pt;}
.y7c{bottom:1813.652820pt;}
.y75{bottom:1830.652820pt;}
.y7b{bottom:1835.652820pt;}
.y74{bottom:1852.652819pt;}
.y7a{bottom:1857.652819pt;}
.y73{bottom:1878.652882pt;}
.y79{bottom:1883.113842pt;}
.y51{bottom:1935.652851pt;}
.y50{bottom:1957.652850pt;}
.y4f{bottom:1979.652849pt;}
.y26{bottom:2033.427064pt;}
.y8b{bottom:2091.651318pt;}
.y31{bottom:2130.301553pt;}
.y30{bottom:2156.301552pt;}
.y2f{bottom:2182.301551pt;}
.y2e{bottom:2208.301550pt;}
.y83{bottom:2243.634867pt;}
.y1{bottom:2273.759912pt;}
.y82{bottom:2282.634865pt;}
.y81{bottom:2321.634863pt;}
.y28{bottom:2361.968188pt;}
.y27{bottom:2415.968185pt;}
.h15{height:11.840000pt;}
.h8{height:28.799999pt;}
.h11{height:38.229438pt;}
.h22{height:39.032542pt;}
.h16{height:39.211146pt;}
.h9{height:39.641148pt;}
.h1a{height:43.007998pt;}
.ha{height:44.906720pt;}
.h1c{height:47.774718pt;}
.h13{height:50.239998pt;}
.h19{height:52.733477pt;}
.h1e{height:57.343998pt;}
.hb{height:59.983319pt;}
.h24{height:60.799997pt;}
.h12{height:62.719997pt;}
.h25{height:63.295997pt;}
.h20{height:63.568957pt;}
.h1b{height:66.877437pt;}
.h7{height:69.171194pt;}
.h4{height:74.559997pt;}
.h10{height:75.199997pt;}
.h14{height:75.870714pt;}
.hf{height:80.973640pt;}
.hd{height:80.975474pt;}
.h27{height:92.511996pt;}
.h23{height:94.943996pt;}
.h1d{height:96.906316pt;}
.h28{height:105.466956pt;}
.h21{height:107.761436pt;}
.h1f{height:116.029475pt;}
.h26{height:126.591995pt;}
.hc{height:130.559995pt;}
.he{height:131.199995pt;}
.h17{height:131.853482pt;}
.h3{height:145.065859pt;}
.h18{height:152.938954pt;}
.h2{height:202.879992pt;}
.h5{height:208.473551pt;}
.h6{height:2499.999896pt;}
.h0{height:2499.999903pt;}
.h1{height:2500.000000pt;}
.wc{width:94.079996pt;}
.w9{width:109.439995pt;}
.wb{width:110.399995pt;}
.w8{width:117.759995pt;}
.wa{width:119.359995pt;}
.w5{width:130.559995pt;}
.w7{width:130.879995pt;}
.w6{width:131.199995pt;}
.w2{width:134.719994pt;}
.w4{width:157.119993pt;}
.w1{width:207.999991pt;}
.w3{width:899.999963pt;}
.w0{width:900.000000pt;}
.x0{left:0.000000pt;}
.x6{left:0.937606pt;}
.x7{left:3.443521pt;}
.x14{left:12.346904pt;}
.x11{left:13.833702pt;}
.x10{left:15.083706pt;}
.x1b{left:22.236327pt;}
.x1a{left:23.718441pt;}
.x1{left:24.959999pt;}
.x1c{left:27.032321pt;}
.x2{left:33.314544pt;}
.x38{left:39.003489pt;}
.xd{left:40.323846pt;}
.xb{left:44.112049pt;}
.x25{left:45.472239pt;}
.x22{left:48.503489pt;}
.x1d{left:49.423826pt;}
.x5{left:50.559998pt;}
.x2b{left:55.458119pt;}
.x35{left:56.508650pt;}
.xa{left:57.599998pt;}
.xf{left:60.799997pt;}
.x3{left:69.439997pt;}
.x4{left:79.461558pt;}
.x28{left:87.425362pt;}
.x29{left:91.092018pt;}
.x20{left:96.319996pt;}
.x2a{left:102.036242pt;}
.x1f{left:132.562083pt;}
.x34{left:136.655937pt;}
.x39{left:160.097234pt;}
.x3a{left:176.097234pt;}
.x15{left:199.366008pt;}
.x26{left:202.548451pt;}
.x17{left:206.231358pt;}
.x21{left:215.265094pt;}
.x27{left:218.548480pt;}
.xc{left:221.759991pt;}
.x12{left:226.239991pt;}
.x23{left:237.123981pt;}
.x3b{left:251.862861pt;}
.x24{left:253.124011pt;}
.x3c{left:267.862860pt;}
.x8{left:319.600671pt;}
.x9{left:326.115435pt;}
.x18{left:357.750513pt;}
.x36{left:373.102328pt;}
.x19{left:384.188012pt;}
.xe{left:391.679984pt;}
.x13{left:396.159983pt;}
.x16{left:413.119983pt;}
.x33{left:482.123964pt;}
.x32{left:488.972206pt;}
.x1e{left:497.525760pt;}
.x37{left:508.633572pt;}
.x31{left:593.981615pt;}
.x2e{left:600.061136pt;}
.x2c{left:603.592386pt;}
.x30{left:615.825364pt;}
.x2d{left:617.264260pt;}
.x2f{left:636.434738pt;}
}




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