
    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_2d0972bc60ea14f19457197f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_980ab65d8a98d6e7aa49508f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_db54c885be4c8c6653ef66c5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.909000;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_1214abf832fd6052613b45f9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6093d4b0a65e7903b85b3665.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_7e8efd094e01d228bd5c4c0a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_446b162d0ce7c97bdd1b69a9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_4b7f40fceaa19dc76827cf88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_79a3ccdddcc4392563a5f5d7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.727000;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_4e4de6be3a460f642efc6d3d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.389000;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);}
.v2{vertical-align:-23.754000px;}
.v3{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:12.078000px;}
.v1{vertical-align:31.236000px;}
.v5{vertical-align:44.898000px;}
.v7{vertical-align:56.358000px;}
.v6{vertical-align:89.178000px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.004344px;}
.ls2{letter-spacing:0.008221px;}
.ls1d{letter-spacing:0.018031px;}
.ls11{letter-spacing:0.024962px;}
.ls15{letter-spacing:0.030962px;}
.lse{letter-spacing:0.904881px;}
.ls13{letter-spacing:0.910881px;}
.ls0{letter-spacing:2.986053px;}
.lsc{letter-spacing:2.996367px;}
.lsd{letter-spacing:5.344571px;}
.ls6{letter-spacing:9.032735px;}
.ls10{letter-spacing:14.530921px;}
.ls9{letter-spacing:18.916379px;}
.ls4{letter-spacing:20.160017px;}
.lsb{letter-spacing:21.796382px;}
.lsa{letter-spacing:22.123655px;}
.ls5{letter-spacing:24.021838px;}
.ls1b{letter-spacing:25.134566px;}
.ls3{letter-spacing:26.640022px;}
.ls8{letter-spacing:28.341842px;}
.ls1c{letter-spacing:28.865479px;}
.ls1e{letter-spacing:29.912752px;}
.ls18{letter-spacing:31.670367px;}
.ls7{letter-spacing:31.810936px;}
.ls1a{letter-spacing:32.007299px;}
.ls1f{letter-spacing:32.727300px;}
.ls19{letter-spacing:34.030571px;}
.lsf{letter-spacing:106.811412px;}
.ls14{letter-spacing:108.119412px;}
.ls12{letter-spacing:148.988712px;}
.ls16{letter-spacing:678.436929px;}
.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;}
}
.ws1e{word-spacing:-42.637126px;}
.ws8{word-spacing:-22.416000px;}
.ws36{word-spacing:-18.183288px;}
.ws29{word-spacing:-4.029914px;}
.ws16{word-spacing:-3.390548px;}
.ws2a{word-spacing:-2.715914px;}
.ws3d{word-spacing:-2.539638px;}
.ws2f{word-spacing:-2.448002px;}
.wsc{word-spacing:-2.146911px;}
.ws30{word-spacing:-2.081456px;}
.wsf{word-spacing:-1.885092px;}
.ws3c{word-spacing:-1.557819px;}
.ws34{word-spacing:-1.426910px;}
.ws26{word-spacing:-1.165092px;}
.ws10{word-spacing:-0.641455px;}
.ws11{word-spacing:-0.576000px;}
.ws3f{word-spacing:-0.445091px;}
.ws7{word-spacing:0.000000px;}
.ws19{word-spacing:0.144000px;}
.ws27{word-spacing:0.733092px;}
.ws17{word-spacing:0.929455px;}
.ws31{word-spacing:1.584001px;}
.ws1b{word-spacing:1.976729px;}
.ws39{word-spacing:2.304002px;}
.ws3b{word-spacing:2.434911px;}
.ws18{word-spacing:2.500366px;}
.ws5{word-spacing:3.613094px;}
.ws28{word-spacing:3.678549px;}
.wsa{word-spacing:4.162913px;}
.ws24{word-spacing:4.483200px;}
.ws14{word-spacing:4.529458px;}
.ws3a{word-spacing:4.791277px;}
.ws12{word-spacing:5.249459px;}
.ws1a{word-spacing:5.380368px;}
.ws1c{word-spacing:5.838550px;}
.ws23{word-spacing:6.100369px;}
.ws35{word-spacing:6.624006px;}
.ws22{word-spacing:7.082188px;}
.wsd{word-spacing:7.213097px;}
.ws13{word-spacing:7.344006px;}
.ws2e{word-spacing:7.540370px;}
.wsb{word-spacing:7.671279px;}
.ws38{word-spacing:8.194916px;}
.ws21{word-spacing:8.391280px;}
.ws2d{word-spacing:8.679280px;}
.ws3e{word-spacing:9.176735px;}
.ws1d{word-spacing:9.373099px;}
.ws25{word-spacing:10.158554px;}
.ws2b{word-spacing:10.485827px;}
.ws6{word-spacing:10.878555px;}
.ws2c{word-spacing:11.404261px;}
.wse{word-spacing:11.729464px;}
.ws32{word-spacing:12.424046px;}
.ws1f{word-spacing:14.470046px;}
.ws3{word-spacing:26.253619px;}
.ws37{word-spacing:30.370934px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws33{word-spacing:32.661845px;}
.ws20{word-spacing:33.578210px;}
.ws9{word-spacing:39.639306px;}
.ws1{word-spacing:54.283749px;}
.ws2{word-spacing:54.432472px;}
.ws15{word-spacing:58.281600px;}
._7{margin-left:-6.218187px;}
._0{margin-left:-4.610401px;}
._13{margin-left:-3.274519px;}
._2{margin-left:-2.223667px;}
._f{margin-left:-1.050852px;}
._10{width:1.043695px;}
._3{width:2.223667px;}
._1{width:4.610401px;}
._1b{width:18.127346px;}
._11{width:19.247231px;}
._1c{width:21.628597px;}
._15{width:25.633264px;}
._e{width:27.489143px;}
._14{width:28.738148px;}
._19{width:30.054439px;}
._12{width:33.670454px;}
._16{width:35.998241px;}
._1a{width:37.183580px;}
._17{width:39.939830px;}
._5{width:60.545505px;}
._18{width:80.697600px;}
._8{width:1160.117330px;}
._a{width:1213.788313px;}
._9{width:1238.077337px;}
._6{width:1366.759292px;}
._c{width:1474.493985px;}
._b{width:1960.103452px;}
._4{width:2079.361733px;}
._d{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2c{bottom:93.813000px;}
.y2b{bottom:176.005500px;}
.y2a{bottom:196.329000px;}
.y29{bottom:217.180500px;}
.y4b{bottom:227.566500px;}
.y28{bottom:237.504000px;}
.y27{bottom:257.827500px;}
.y4a{bottom:258.802500px;}
.y26{bottom:278.151000px;}
.y49{bottom:279.126000px;}
.y25{bottom:298.476000px;}
.y48{bottom:299.451000px;}
.y24{bottom:319.326000px;}
.y65{bottom:335.641500px;}
.y23{bottom:339.649500px;}
.y47{bottom:340.813500px;}
.y64{bottom:355.965000px;}
.y22{bottom:359.974500px;}
.y63{bottom:376.288500px;}
.y21{bottom:380.824500px;}
.y62{bottom:396.612000px;}
.y46{bottom:398.337000px;}
.y20{bottom:401.149500px;}
.y61{bottom:416.935500px;}
.y45{bottom:418.660500px;}
.y1f{bottom:421.473000px;}
.y60{bottom:437.260500px;}
.y44{bottom:438.985500px;}
.y1e{bottom:459.522000px;}
.y5f{bottom:473.788500px;}
.y43{bottom:487.836000px;}
.y42{bottom:508.159500px;}
.y1d{bottom:508.861500px;}
.y5e{bottom:519.369000px;}
.y1c{bottom:529.185000px;}
.y41{bottom:530.158500px;}
.y7{bottom:532.603500px;}
.y1b{bottom:549.510000px;}
.y40{bottom:550.483500px;}
.y5d{bottom:553.141500px;}
.y6{bottom:569.326500px;}
.y1a{bottom:570.360000px;}
.y5c{bottom:586.915500px;}
.y19{bottom:590.685000px;}
.y3f{bottom:590.958000px;}
.y5{bottom:598.059000px;}
.y18{bottom:611.008500px;}
.y3e{bottom:611.281500px;}
.y5b{bottom:620.689500px;}
.y17{bottom:631.332000px;}
.y16{bottom:651.655500px;}
.y3d{bottom:651.756000px;}
.y5a{bottom:654.462000px;}
.y3c{bottom:672.079500px;}
.y15{bottom:672.507000px;}
.y59{bottom:690.990000px;}
.y14{bottom:692.830500px;}
.y13{bottom:713.154000px;}
.y3b{bottom:713.442000px;}
.y12{bottom:733.477500px;}
.y58{bottom:736.570500px;}
.y11{bottom:753.802500px;}
.y57{bottom:756.895500px;}
.y4{bottom:759.814500px;}
.y3a{bottom:770.967000px;}
.y10{bottom:776.311500px;}
.y56{bottom:777.219000px;}
.y39{bottom:791.290500px;}
.y3{bottom:797.095500px;}
.y55{bottom:797.542500px;}
.yf{bottom:814.053000px;}
.y37{bottom:832.405500px;}
.y54{bottom:834.070500px;}
.y2{bottom:841.927500px;}
.y38{bottom:843.630000px;}
.ye{bottom:851.796000px;}
.y36{bottom:854.700000px;}
.y53{bottom:879.651000px;}
.yd{bottom:889.537500px;}
.y35{bottom:894.789000px;}
.y52{bottom:906.700500px;}
.y34{bottom:916.788000px;}
.y51{bottom:927.024000px;}
.yc{bottom:927.279000px;}
.y33{bottom:937.111500px;}
.y32{bottom:959.110500px;}
.y50{bottom:960.796500px;}
.yb{bottom:965.022000px;}
.y31{bottom:979.434000px;}
.y4f{bottom:994.570500px;}
.ya{bottom:1002.763500px;}
.y30{bottom:1020.798000px;}
.y4e{bottom:1028.343000px;}
.y9{bottom:1040.505000px;}
.y4d{bottom:1062.117000px;}
.y8{bottom:1078.248000px;}
.y2f{bottom:1078.321500px;}
.y4c{bottom:1082.440500px;}
.y1{bottom:1087.587000px;}
.y2e{bottom:1098.645000px;}
.y2d{bottom:1118.968500px;}
.h6{height:34.143908px;}
.h2{height:41.484266px;}
.h9{height:45.818220px;}
.hb{height:46.865494px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.ha{height:61.168950px;}
.h5{height:74.035330px;}
.hd{height:105.448950px;}
.h3{height:106.485382px;}
.hc{height:138.268950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x4{left:139.332000px;}
.x14{left:152.019000px;}
.x5{left:164.010000px;}
.x8{left:258.471000px;}
.x1{left:286.581000px;}
.x9{left:332.469000px;}
.xb{left:335.781000px;}
.x6{left:337.119000px;}
.xa{left:340.986000px;}
.xc{left:382.561500px;}
.xd{left:433.266000px;}
.x7{left:438.466500px;}
.xf{left:478.699500px;}
.xe{left:483.576000px;}
.x10{left:525.807000px;}
.x12{left:527.611500px;}
.x11{left:577.167000px;}
.x13{left:584.487000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v3{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:10.736000pt;}
.v1{vertical-align:27.765333pt;}
.v5{vertical-align:39.909333pt;}
.v7{vertical-align:50.096000pt;}
.v6{vertical-align:79.269333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.003861pt;}
.ls2{letter-spacing:0.007308pt;}
.ls1d{letter-spacing:0.016028pt;}
.ls11{letter-spacing:0.022189pt;}
.ls15{letter-spacing:0.027522pt;}
.lse{letter-spacing:0.804338pt;}
.ls13{letter-spacing:0.809672pt;}
.ls0{letter-spacing:2.654270pt;}
.lsc{letter-spacing:2.663437pt;}
.lsd{letter-spacing:4.750730pt;}
.ls6{letter-spacing:8.029098pt;}
.ls10{letter-spacing:12.916374pt;}
.ls9{letter-spacing:16.814559pt;}
.ls4{letter-spacing:17.920015pt;}
.lsb{letter-spacing:19.374562pt;}
.lsa{letter-spacing:19.665471pt;}
.ls5{letter-spacing:21.352745pt;}
.ls1b{letter-spacing:22.341837pt;}
.ls3{letter-spacing:23.680020pt;}
.ls8{letter-spacing:25.192748pt;}
.ls1c{letter-spacing:25.658203pt;}
.ls1e{letter-spacing:26.589113pt;}
.ls18{letter-spacing:28.151437pt;}
.ls7{letter-spacing:28.276387pt;}
.ls1a{letter-spacing:28.450933pt;}
.ls1f{letter-spacing:29.090933pt;}
.ls19{letter-spacing:30.249397pt;}
.lsf{letter-spacing:94.943477pt;}
.ls14{letter-spacing:96.106144pt;}
.ls12{letter-spacing:132.434411pt;}
.ls16{letter-spacing:603.055048pt;}
.ws1e{word-spacing:-37.899668pt;}
.ws8{word-spacing:-19.925333pt;}
.ws36{word-spacing:-16.162923pt;}
.ws29{word-spacing:-3.582146pt;}
.ws16{word-spacing:-3.013821pt;}
.ws2a{word-spacing:-2.414146pt;}
.ws3d{word-spacing:-2.257456pt;}
.ws2f{word-spacing:-2.176002pt;}
.wsc{word-spacing:-1.908365pt;}
.ws30{word-spacing:-1.850183pt;}
.wsf{word-spacing:-1.675638pt;}
.ws3c{word-spacing:-1.384728pt;}
.ws34{word-spacing:-1.268365pt;}
.ws26{word-spacing:-1.035637pt;}
.ws10{word-spacing:-0.570182pt;}
.ws11{word-spacing:-0.512000pt;}
.ws3f{word-spacing:-0.395637pt;}
.ws7{word-spacing:0.000000pt;}
.ws19{word-spacing:0.128000pt;}
.ws27{word-spacing:0.651637pt;}
.ws17{word-spacing:0.826183pt;}
.ws31{word-spacing:1.408001pt;}
.ws1b{word-spacing:1.757092pt;}
.ws39{word-spacing:2.048002pt;}
.ws3b{word-spacing:2.164365pt;}
.ws18{word-spacing:2.222547pt;}
.ws5{word-spacing:3.211639pt;}
.ws28{word-spacing:3.269821pt;}
.wsa{word-spacing:3.700367pt;}
.ws24{word-spacing:3.985067pt;}
.ws14{word-spacing:4.026185pt;}
.ws3a{word-spacing:4.258913pt;}
.ws12{word-spacing:4.666186pt;}
.ws1a{word-spacing:4.782549pt;}
.ws1c{word-spacing:5.189823pt;}
.ws23{word-spacing:5.422550pt;}
.ws35{word-spacing:5.888005pt;}
.ws22{word-spacing:6.295278pt;}
.wsd{word-spacing:6.411642pt;}
.ws13{word-spacing:6.528005pt;}
.ws2e{word-spacing:6.702551pt;}
.wsb{word-spacing:6.818915pt;}
.ws38{word-spacing:7.284370pt;}
.ws21{word-spacing:7.458915pt;}
.ws2d{word-spacing:7.714916pt;}
.ws3e{word-spacing:8.157098pt;}
.ws1d{word-spacing:8.331643pt;}
.ws25{word-spacing:9.029826pt;}
.ws2b{word-spacing:9.320735pt;}
.ws6{word-spacing:9.669826pt;}
.ws2c{word-spacing:10.137121pt;}
.wse{word-spacing:10.426191pt;}
.ws32{word-spacing:11.043596pt;}
.ws1f{word-spacing:12.862263pt;}
.ws3{word-spacing:23.336550pt;}
.ws37{word-spacing:26.996386pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws33{word-spacing:29.032751pt;}
.ws20{word-spacing:29.847298pt;}
.ws9{word-spacing:35.234938pt;}
.ws1{word-spacing:48.252221pt;}
.ws2{word-spacing:48.384419pt;}
.ws15{word-spacing:51.805867pt;}
._7{margin-left:-5.527277pt;}
._0{margin-left:-4.098134pt;}
._13{margin-left:-2.910684pt;}
._2{margin-left:-1.976593pt;}
._f{margin-left:-0.934091pt;}
._10{width:0.927729pt;}
._3{width:1.976593pt;}
._1{width:4.098134pt;}
._1b{width:16.113196pt;}
._11{width:17.108650pt;}
._1c{width:19.225419pt;}
._15{width:22.785123pt;}
._e{width:24.434794pt;}
._14{width:25.545020pt;}
._19{width:26.715057pt;}
._12{width:29.929292pt;}
._16{width:31.998436pt;}
._1a{width:33.052071pt;}
._17{width:35.502071pt;}
._5{width:53.818227pt;}
._18{width:71.731200pt;}
._8{width:1031.215405pt;}
._a{width:1078.922945pt;}
._9{width:1100.513189pt;}
._6{width:1214.897148pt;}
._c{width:1310.661320pt;}
._b{width:1742.314179pt;}
._4{width:1848.321540pt;}
._d{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:83.389333pt;}
.y2b{bottom:156.449333pt;}
.y2a{bottom:174.514667pt;}
.y29{bottom:193.049333pt;}
.y4b{bottom:202.281333pt;}
.y28{bottom:211.114667pt;}
.y27{bottom:229.180000pt;}
.y4a{bottom:230.046667pt;}
.y26{bottom:247.245333pt;}
.y49{bottom:248.112000pt;}
.y25{bottom:265.312000pt;}
.y48{bottom:266.178667pt;}
.y24{bottom:283.845333pt;}
.y65{bottom:298.348000pt;}
.y23{bottom:301.910667pt;}
.y47{bottom:302.945333pt;}
.y64{bottom:316.413333pt;}
.y22{bottom:319.977333pt;}
.y63{bottom:334.478667pt;}
.y21{bottom:338.510667pt;}
.y62{bottom:352.544000pt;}
.y46{bottom:354.077333pt;}
.y20{bottom:356.577333pt;}
.y61{bottom:370.609333pt;}
.y45{bottom:372.142667pt;}
.y1f{bottom:374.642667pt;}
.y60{bottom:388.676000pt;}
.y44{bottom:390.209333pt;}
.y1e{bottom:408.464000pt;}
.y5f{bottom:421.145333pt;}
.y43{bottom:433.632000pt;}
.y42{bottom:451.697333pt;}
.y1d{bottom:452.321333pt;}
.y5e{bottom:461.661333pt;}
.y1c{bottom:470.386667pt;}
.y41{bottom:471.252000pt;}
.y7{bottom:473.425333pt;}
.y1b{bottom:488.453333pt;}
.y40{bottom:489.318667pt;}
.y5d{bottom:491.681333pt;}
.y6{bottom:506.068000pt;}
.y1a{bottom:506.986667pt;}
.y5c{bottom:521.702667pt;}
.y19{bottom:525.053333pt;}
.y3f{bottom:525.296000pt;}
.y5{bottom:531.608000pt;}
.y18{bottom:543.118667pt;}
.y3e{bottom:543.361333pt;}
.y5b{bottom:551.724000pt;}
.y17{bottom:561.184000pt;}
.y16{bottom:579.249333pt;}
.y3d{bottom:579.338667pt;}
.y5a{bottom:581.744000pt;}
.y3c{bottom:597.404000pt;}
.y15{bottom:597.784000pt;}
.y59{bottom:614.213333pt;}
.y14{bottom:615.849333pt;}
.y13{bottom:633.914667pt;}
.y3b{bottom:634.170667pt;}
.y12{bottom:651.980000pt;}
.y58{bottom:654.729333pt;}
.y11{bottom:670.046667pt;}
.y57{bottom:672.796000pt;}
.y4{bottom:675.390667pt;}
.y3a{bottom:685.304000pt;}
.y10{bottom:690.054667pt;}
.y56{bottom:690.861333pt;}
.y39{bottom:703.369333pt;}
.y3{bottom:708.529333pt;}
.y55{bottom:708.926667pt;}
.yf{bottom:723.602667pt;}
.y37{bottom:739.916000pt;}
.y54{bottom:741.396000pt;}
.y2{bottom:748.380000pt;}
.y38{bottom:749.893333pt;}
.ye{bottom:757.152000pt;}
.y36{bottom:759.733333pt;}
.y53{bottom:781.912000pt;}
.yd{bottom:790.700000pt;}
.y35{bottom:795.368000pt;}
.y52{bottom:805.956000pt;}
.y34{bottom:814.922667pt;}
.y51{bottom:824.021333pt;}
.yc{bottom:824.248000pt;}
.y33{bottom:832.988000pt;}
.y32{bottom:852.542667pt;}
.y50{bottom:854.041333pt;}
.yb{bottom:857.797333pt;}
.y31{bottom:870.608000pt;}
.y4f{bottom:884.062667pt;}
.ya{bottom:891.345333pt;}
.y30{bottom:907.376000pt;}
.y4e{bottom:914.082667pt;}
.y9{bottom:924.893333pt;}
.y4d{bottom:944.104000pt;}
.y8{bottom:958.442667pt;}
.y2f{bottom:958.508000pt;}
.y4c{bottom:962.169333pt;}
.y1{bottom:966.744000pt;}
.y2e{bottom:976.573333pt;}
.y2d{bottom:994.638667pt;}
.h6{height:30.350141pt;}
.h2{height:36.874903pt;}
.h9{height:40.727307pt;}
.hb{height:41.658217pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.ha{height:54.372400pt;}
.h5{height:65.809182pt;}
.hd{height:93.732400pt;}
.h3{height:94.653673pt;}
.hc{height:122.905733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x4{left:123.850667pt;}
.x14{left:135.128000pt;}
.x5{left:145.786667pt;}
.x8{left:229.752000pt;}
.x1{left:254.738667pt;}
.x9{left:295.528000pt;}
.xb{left:298.472000pt;}
.x6{left:299.661333pt;}
.xa{left:303.098667pt;}
.xc{left:340.054667pt;}
.xd{left:385.125333pt;}
.x7{left:389.748000pt;}
.xf{left:425.510667pt;}
.xe{left:429.845333pt;}
.x10{left:467.384000pt;}
.x12{left:468.988000pt;}
.x11{left:513.037333pt;}
.x13{left:519.544000pt;}
}




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