
    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_28a2dff0e7efc522f93d4b7b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_a8e2e5bc586a95bcbbf73941.woff')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_2d36a9ad12fb79fbde2d070b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_fd940b26c3a018e470948bf5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.123047;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_d36cef8a1f086aba288396dd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_4a47f13330bdb57c5ca80224.woff')format("woff");}.ff6{font-family:ff6;line-height:1.129395;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_54e0fe259d4615de27d7681e.woff')format("woff");}.ff7{font-family:ff7;line-height:1.110840;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_3a370ac08ba4a0d21b8ae843.woff')format("woff");}.ff8{font-family:ff8;line-height:1.151855;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_33e57a7928f52de2dcbc0c8f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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:-48.240000px;}
.v2{vertical-align:-46.980000px;}
.v0{vertical-align:0.000000px;}
.ls2a{letter-spacing:-10.010880px;}
.ls25{letter-spacing:-9.538560px;}
.ls2f{letter-spacing:-8.236800px;}
.ls32{letter-spacing:-7.286400px;}
.ls27{letter-spacing:-7.032960px;}
.ls26{letter-spacing:-5.696640px;}
.ls34{letter-spacing:-5.512320px;}
.ls2e{letter-spacing:-4.942080px;}
.ls30{letter-spacing:-4.878720px;}
.ls2b{letter-spacing:-4.308480px;}
.ls24{letter-spacing:-3.643200px;}
.ls23{letter-spacing:-3.240000px;}
.ls2c{letter-spacing:-2.280960px;}
.ls18{letter-spacing:-0.888000px;}
.ls17{letter-spacing:-0.876000px;}
.ls16{letter-spacing:-0.864000px;}
.lsb{letter-spacing:-0.720000px;}
.ls29{letter-spacing:-0.633600px;}
.ls31{letter-spacing:-0.570240px;}
.ls1b{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.334200px;}
.ls7{letter-spacing:-0.305400px;}
.ls1e{letter-spacing:-0.169800px;}
.ls9{letter-spacing:-0.158400px;}
.ls1c{letter-spacing:-0.147000px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.051840px;}
.ls21{letter-spacing:0.066000px;}
.ls1f{letter-spacing:0.123600px;}
.ls1d{letter-spacing:0.207600px;}
.ls2{letter-spacing:0.262080px;}
.ls20{letter-spacing:0.276600px;}
.ls1a{letter-spacing:0.308400px;}
.ls0{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.900000px;}
.ls11{letter-spacing:1.440000px;}
.ls28{letter-spacing:2.217600px;}
.ls33{letter-spacing:2.344320px;}
.ls2d{letter-spacing:2.661120px;}
.ls19{letter-spacing:2.880000px;}
.ls12{letter-spacing:4.320000px;}
.lse{letter-spacing:5.760000px;}
.lsa{letter-spacing:7.200000px;}
.ls14{letter-spacing:7.920000px;}
.ls13{letter-spacing:8.640000px;}
.ls4{letter-spacing:9.360000px;}
.ls5{letter-spacing:10.080000px;}
.lsd{letter-spacing:12.960000px;}
.lsc{letter-spacing:20.880000px;}
.ls22{letter-spacing:24.480000px;}
.ls1{letter-spacing:33.505920px;}
.ls3{letter-spacing:751.260000px;}
.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;}
}
.wsb{word-spacing:-16.868400px;}
.ws10{word-spacing:-16.836600px;}
.wse{word-spacing:-16.767600px;}
.wsf{word-spacing:-16.683600px;}
.ws11{word-spacing:-16.626000px;}
.ws7{word-spacing:-16.611840px;}
.ws2{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.413000px;}
.ws5{word-spacing:-16.401600px;}
.ws3{word-spacing:-16.254600px;}
.wsc{word-spacing:-16.145400px;}
.ws1{word-spacing:-15.840000px;}
.ws8{word-spacing:-15.696000px;}
.ws9{word-spacing:-15.684000px;}
.wsa{word-spacing:-15.672000px;}
.ws4{word-spacing:-15.505800px;}
.ws16{word-spacing:-15.269760px;}
.ws13{word-spacing:-15.206400px;}
.ws0{word-spacing:-13.860000px;}
.ws14{word-spacing:-13.559040px;}
.ws15{word-spacing:-7.603200px;}
.ws6{word-spacing:0.000000px;}
.ws12{word-spacing:22.320000px;}
._c{margin-left:-4.435200px;}
._5{margin-left:-2.598720px;}
._0{margin-left:-1.164480px;}
._2{width:1.044960px;}
._9{width:2.648640px;}
._4{width:3.840960px;}
._b{width:5.354880px;}
._a{width:6.399360px;}
._8{width:7.802880px;}
._7{width:8.884800px;}
._d{width:9.933120px;}
._13{width:11.081280px;}
._12{width:12.430080px;}
._11{width:13.680000px;}
._f{width:15.439680px;}
._1{width:17.930880px;}
._15{width:19.077120px;}
._14{width:20.389920px;}
._17{width:23.823120px;}
._18{width:25.070400px;}
._10{width:26.231040px;}
._16{width:27.526080px;}
._19{width:34.911600px;}
._1a{width:38.160000px;}
._3{width:52.462080px;}
._6{width:161.114760px;}
._e{width:1317.132480px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:63.360000px;}
.fs2{font-size:66.240000px;}
.y0{bottom:0.000000px;}
.y1{bottom:207.316500px;}
.y32{bottom:208.650000px;}
.y6c{bottom:229.890000px;}
.y78{bottom:230.250000px;}
.y31{bottom:234.856500px;}
.y61{bottom:247.170000px;}
.y6b{bottom:248.790000px;}
.y77{bottom:249.150000px;}
.y30{bottom:253.936500px;}
.y60{bottom:266.250000px;}
.y6a{bottom:267.510000px;}
.y76{bottom:267.870000px;}
.y2f{bottom:272.836500px;}
.y5f{bottom:285.150000px;}
.y69{bottom:286.410000px;}
.y75{bottom:286.770000px;}
.y2e{bottom:291.736500px;}
.y5e{bottom:304.230000px;}
.y68{bottom:305.130000px;}
.y74{bottom:305.490000px;}
.y2d{bottom:310.816500px;}
.y5d{bottom:323.130000px;}
.y67{bottom:324.030000px;}
.y73{bottom:324.390000px;}
.y2c{bottom:329.716500px;}
.y5c{bottom:342.210000px;}
.y66{bottom:342.930000px;}
.y72{bottom:343.110000px;}
.y2b{bottom:348.796500px;}
.y5b{bottom:361.110000px;}
.y65{bottom:361.650000px;}
.y71{bottom:362.010000px;}
.y2a{bottom:367.696500px;}
.y5a{bottom:380.010000px;}
.y64{bottom:380.550000px;}
.y70{bottom:380.730000px;}
.y29{bottom:396.721500px;}
.y59{bottom:399.135000px;}
.y63{bottom:399.315000px;}
.y6f{bottom:399.675000px;}
.y28{bottom:414.901500px;}
.y58{bottom:418.035000px;}
.y62{bottom:418.215000px;}
.y6e{bottom:418.395000px;}
.y27{bottom:433.081500px;}
.y57{bottom:437.115000px;}
.y6d{bottom:437.295000px;}
.y26{bottom:451.081500px;}
.y56{bottom:456.015000px;}
.y25{bottom:469.261500px;}
.y55{bottom:474.915000px;}
.y24{bottom:487.441500px;}
.y54{bottom:493.995000px;}
.y23{bottom:505.441500px;}
.y53{bottom:512.895000px;}
.y22{bottom:523.621500px;}
.y52{bottom:531.975000px;}
.y21{bottom:541.621500px;}
.y51{bottom:550.875000px;}
.y20{bottom:559.801500px;}
.y50{bottom:569.775000px;}
.y1f{bottom:577.981500px;}
.y4f{bottom:588.855000px;}
.y1e{bottom:595.981500px;}
.y4e{bottom:607.755000px;}
.y1d{bottom:614.161500px;}
.y4d{bottom:626.835000px;}
.y1c{bottom:632.161500px;}
.y4c{bottom:645.765000px;}
.y1b{bottom:650.371500px;}
.y4b{bottom:664.665000px;}
.y1a{bottom:668.551500px;}
.y4a{bottom:683.745000px;}
.y19{bottom:686.551500px;}
.y49{bottom:702.645000px;}
.y18{bottom:703.291500px;}
.y17{bottom:714.991500px;}
.y48{bottom:721.725000px;}
.y16{bottom:733.171500px;}
.y47{bottom:740.625000px;}
.y15{bottom:751.351500px;}
.y46{bottom:759.705000px;}
.y45{bottom:778.605000px;}
.y14{bottom:779.971500px;}
.y44{bottom:797.505000px;}
.y13{bottom:799.051500px;}
.y43{bottom:816.585000px;}
.y12{bottom:817.951500px;}
.y42{bottom:835.485000px;}
.y11{bottom:847.291500px;}
.y41{bottom:854.565000px;}
.y85{bottom:857.085000px;}
.y10{bottom:865.831500px;}
.y40{bottom:873.465000px;}
.y84{bottom:875.085000px;}
.yf{bottom:883.291500px;}
.y3f{bottom:892.365000px;}
.y83{bottom:892.950000px;}
.ye{bottom:901.336500px;}
.y82{bottom:910.950000px;}
.y3e{bottom:911.490000px;}
.yd{bottom:920.236500px;}
.y81{bottom:928.950000px;}
.y3d{bottom:930.390000px;}
.yc{bottom:938.236500px;}
.y80{bottom:946.950000px;}
.y3c{bottom:949.470000px;}
.yb{bottom:956.416500px;}
.y7f{bottom:964.770000px;}
.y3b{bottom:968.370000px;}
.ya{bottom:974.596500px;}
.y7e{bottom:982.770000px;}
.y3a{bottom:987.270000px;}
.y9{bottom:992.596500px;}
.y7d{bottom:1000.770000px;}
.y39{bottom:1006.350000px;}
.y8{bottom:1010.776500px;}
.y7c{bottom:1018.770000px;}
.y38{bottom:1025.250000px;}
.y7{bottom:1028.956500px;}
.y7b{bottom:1036.770000px;}
.y37{bottom:1044.330000px;}
.y6{bottom:1046.956500px;}
.y7a{bottom:1054.590000px;}
.y36{bottom:1063.230000px;}
.y5{bottom:1065.136500px;}
.y79{bottom:1072.590000px;}
.y35{bottom:1082.130000px;}
.y4{bottom:1083.136500px;}
.y34{bottom:1101.210000px;}
.y3{bottom:1101.316500px;}
.y2{bottom:1119.496500px;}
.y33{bottom:1120.110000px;}
.hb{height:35.314453px;}
.h2{height:52.998047px;}
.hc{height:56.646563px;}
.h7{height:58.651172px;}
.hd{height:59.383125px;}
.ha{height:62.153438px;}
.h4{height:62.184375px;}
.h9{height:63.855000px;}
.h10{height:64.978594px;}
.h6{height:65.010937px;}
.h3{height:65.124096px;}
.h8{height:66.757500px;}
.h5{height:68.084282px;}
.h1{height:877.500000px;}
.h0{height:877.606500px;}
.hf{height:1263.000000px;}
.he{height:1263.060000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:140.435987px;}
.x2{left:147.815987px;}
.xc{left:151.050000px;}
.x3{left:172.469987px;}
.x5{left:180.209987px;}
.xb{left:193.529987px;}
.x6{left:214.769987px;}
.x7{left:332.354987px;}
.x9{left:347.654987px;}
.x1{left:436.424987px;}
.x8{left:537.224987px;}
.xa{left:588.389987px;}
@media print{
.v1{vertical-align:-42.880000pt;}
.v2{vertical-align:-41.760000pt;}
.v0{vertical-align:0.000000pt;}
.ls2a{letter-spacing:-8.898560pt;}
.ls25{letter-spacing:-8.478720pt;}
.ls2f{letter-spacing:-7.321600pt;}
.ls32{letter-spacing:-6.476800pt;}
.ls27{letter-spacing:-6.251520pt;}
.ls26{letter-spacing:-5.063680pt;}
.ls34{letter-spacing:-4.899840pt;}
.ls2e{letter-spacing:-4.392960pt;}
.ls30{letter-spacing:-4.336640pt;}
.ls2b{letter-spacing:-3.829760pt;}
.ls24{letter-spacing:-3.238400pt;}
.ls23{letter-spacing:-2.880000pt;}
.ls2c{letter-spacing:-2.027520pt;}
.ls18{letter-spacing:-0.789333pt;}
.ls17{letter-spacing:-0.778667pt;}
.ls16{letter-spacing:-0.768000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls29{letter-spacing:-0.563200pt;}
.ls31{letter-spacing:-0.506880pt;}
.ls1b{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.297067pt;}
.ls7{letter-spacing:-0.271467pt;}
.ls1e{letter-spacing:-0.150933pt;}
.ls9{letter-spacing:-0.140800pt;}
.ls1c{letter-spacing:-0.130667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.046080pt;}
.ls21{letter-spacing:0.058667pt;}
.ls1f{letter-spacing:0.109867pt;}
.ls1d{letter-spacing:0.184533pt;}
.ls2{letter-spacing:0.232960pt;}
.ls20{letter-spacing:0.245867pt;}
.ls1a{letter-spacing:0.274133pt;}
.ls0{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls11{letter-spacing:1.280000pt;}
.ls28{letter-spacing:1.971200pt;}
.ls33{letter-spacing:2.083840pt;}
.ls2d{letter-spacing:2.365440pt;}
.ls19{letter-spacing:2.560000pt;}
.ls12{letter-spacing:3.840000pt;}
.lse{letter-spacing:5.120000pt;}
.lsa{letter-spacing:6.400000pt;}
.ls14{letter-spacing:7.040000pt;}
.ls13{letter-spacing:7.680000pt;}
.ls4{letter-spacing:8.320000pt;}
.ls5{letter-spacing:8.960000pt;}
.lsd{letter-spacing:11.520000pt;}
.lsc{letter-spacing:18.560000pt;}
.ls22{letter-spacing:21.760000pt;}
.ls1{letter-spacing:29.783040pt;}
.ls3{letter-spacing:667.786667pt;}
.wsb{word-spacing:-14.994133pt;}
.ws10{word-spacing:-14.965867pt;}
.wse{word-spacing:-14.904533pt;}
.wsf{word-spacing:-14.829867pt;}
.ws11{word-spacing:-14.778667pt;}
.ws7{word-spacing:-14.766080pt;}
.ws2{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.589333pt;}
.ws5{word-spacing:-14.579200pt;}
.ws3{word-spacing:-14.448533pt;}
.wsc{word-spacing:-14.351467pt;}
.ws1{word-spacing:-14.080000pt;}
.ws8{word-spacing:-13.952000pt;}
.ws9{word-spacing:-13.941333pt;}
.wsa{word-spacing:-13.930667pt;}
.ws4{word-spacing:-13.782933pt;}
.ws16{word-spacing:-13.573120pt;}
.ws13{word-spacing:-13.516800pt;}
.ws0{word-spacing:-12.320000pt;}
.ws14{word-spacing:-12.052480pt;}
.ws15{word-spacing:-6.758400pt;}
.ws6{word-spacing:0.000000pt;}
.ws12{word-spacing:19.840000pt;}
._c{margin-left:-3.942400pt;}
._5{margin-left:-2.309973pt;}
._0{margin-left:-1.035093pt;}
._2{width:0.928853pt;}
._9{width:2.354347pt;}
._4{width:3.414187pt;}
._b{width:4.759893pt;}
._a{width:5.688320pt;}
._8{width:6.935893pt;}
._7{width:7.897600pt;}
._d{width:8.829440pt;}
._13{width:9.850027pt;}
._12{width:11.048960pt;}
._11{width:12.160000pt;}
._f{width:13.724160pt;}
._1{width:15.938560pt;}
._15{width:16.957440pt;}
._14{width:18.124373pt;}
._17{width:21.176107pt;}
._18{width:22.284800pt;}
._10{width:23.316480pt;}
._16{width:24.467627pt;}
._19{width:31.032533pt;}
._1a{width:33.920000pt;}
._3{width:46.632960pt;}
._6{width:143.213120pt;}
._e{width:1170.784427pt;}
.fs4{font-size:32.000000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:56.320000pt;}
.fs2{font-size:58.880000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:184.281333pt;}
.y32{bottom:185.466667pt;}
.y6c{bottom:204.346667pt;}
.y78{bottom:204.666667pt;}
.y31{bottom:208.761333pt;}
.y61{bottom:219.706667pt;}
.y6b{bottom:221.146667pt;}
.y77{bottom:221.466667pt;}
.y30{bottom:225.721333pt;}
.y60{bottom:236.666667pt;}
.y6a{bottom:237.786667pt;}
.y76{bottom:238.106667pt;}
.y2f{bottom:242.521333pt;}
.y5f{bottom:253.466667pt;}
.y69{bottom:254.586667pt;}
.y75{bottom:254.906667pt;}
.y2e{bottom:259.321333pt;}
.y5e{bottom:270.426667pt;}
.y68{bottom:271.226667pt;}
.y74{bottom:271.546667pt;}
.y2d{bottom:276.281333pt;}
.y5d{bottom:287.226667pt;}
.y67{bottom:288.026667pt;}
.y73{bottom:288.346667pt;}
.y2c{bottom:293.081333pt;}
.y5c{bottom:304.186667pt;}
.y66{bottom:304.826667pt;}
.y72{bottom:304.986667pt;}
.y2b{bottom:310.041333pt;}
.y5b{bottom:320.986667pt;}
.y65{bottom:321.466667pt;}
.y71{bottom:321.786667pt;}
.y2a{bottom:326.841333pt;}
.y5a{bottom:337.786667pt;}
.y64{bottom:338.266667pt;}
.y70{bottom:338.426667pt;}
.y29{bottom:352.641333pt;}
.y59{bottom:354.786667pt;}
.y63{bottom:354.946667pt;}
.y6f{bottom:355.266667pt;}
.y28{bottom:368.801333pt;}
.y58{bottom:371.586667pt;}
.y62{bottom:371.746667pt;}
.y6e{bottom:371.906667pt;}
.y27{bottom:384.961333pt;}
.y57{bottom:388.546667pt;}
.y6d{bottom:388.706667pt;}
.y26{bottom:400.961333pt;}
.y56{bottom:405.346667pt;}
.y25{bottom:417.121333pt;}
.y55{bottom:422.146667pt;}
.y24{bottom:433.281333pt;}
.y54{bottom:439.106667pt;}
.y23{bottom:449.281333pt;}
.y53{bottom:455.906667pt;}
.y22{bottom:465.441333pt;}
.y52{bottom:472.866667pt;}
.y21{bottom:481.441333pt;}
.y51{bottom:489.666667pt;}
.y20{bottom:497.601333pt;}
.y50{bottom:506.466667pt;}
.y1f{bottom:513.761333pt;}
.y4f{bottom:523.426667pt;}
.y1e{bottom:529.761333pt;}
.y4e{bottom:540.226667pt;}
.y1d{bottom:545.921333pt;}
.y4d{bottom:557.186667pt;}
.y1c{bottom:561.921333pt;}
.y4c{bottom:574.013333pt;}
.y1b{bottom:578.108000pt;}
.y4b{bottom:590.813333pt;}
.y1a{bottom:594.268000pt;}
.y4a{bottom:607.773333pt;}
.y19{bottom:610.268000pt;}
.y49{bottom:624.573333pt;}
.y18{bottom:625.148000pt;}
.y17{bottom:635.548000pt;}
.y48{bottom:641.533333pt;}
.y16{bottom:651.708000pt;}
.y47{bottom:658.333333pt;}
.y15{bottom:667.868000pt;}
.y46{bottom:675.293333pt;}
.y45{bottom:692.093333pt;}
.y14{bottom:693.308000pt;}
.y44{bottom:708.893333pt;}
.y13{bottom:710.268000pt;}
.y43{bottom:725.853333pt;}
.y12{bottom:727.068000pt;}
.y42{bottom:742.653333pt;}
.y11{bottom:753.148000pt;}
.y41{bottom:759.613333pt;}
.y85{bottom:761.853333pt;}
.y10{bottom:769.628000pt;}
.y40{bottom:776.413333pt;}
.y84{bottom:777.853333pt;}
.yf{bottom:785.148000pt;}
.y3f{bottom:793.213333pt;}
.y83{bottom:793.733333pt;}
.ye{bottom:801.188000pt;}
.y82{bottom:809.733333pt;}
.y3e{bottom:810.213333pt;}
.yd{bottom:817.988000pt;}
.y81{bottom:825.733333pt;}
.y3d{bottom:827.013333pt;}
.yc{bottom:833.988000pt;}
.y80{bottom:841.733333pt;}
.y3c{bottom:843.973333pt;}
.yb{bottom:850.148000pt;}
.y7f{bottom:857.573333pt;}
.y3b{bottom:860.773333pt;}
.ya{bottom:866.308000pt;}
.y7e{bottom:873.573333pt;}
.y3a{bottom:877.573333pt;}
.y9{bottom:882.308000pt;}
.y7d{bottom:889.573333pt;}
.y39{bottom:894.533333pt;}
.y8{bottom:898.468000pt;}
.y7c{bottom:905.573333pt;}
.y38{bottom:911.333333pt;}
.y7{bottom:914.628000pt;}
.y7b{bottom:921.573333pt;}
.y37{bottom:928.293333pt;}
.y6{bottom:930.628000pt;}
.y7a{bottom:937.413333pt;}
.y36{bottom:945.093333pt;}
.y5{bottom:946.788000pt;}
.y79{bottom:953.413333pt;}
.y35{bottom:961.893333pt;}
.y4{bottom:962.788000pt;}
.y34{bottom:978.853333pt;}
.y3{bottom:978.948000pt;}
.y2{bottom:995.108000pt;}
.y33{bottom:995.653333pt;}
.hb{height:31.390625pt;}
.h2{height:47.109375pt;}
.hc{height:50.352500pt;}
.h7{height:52.134375pt;}
.hd{height:52.785000pt;}
.ha{height:55.247500pt;}
.h4{height:55.275000pt;}
.h9{height:56.760000pt;}
.h10{height:57.758750pt;}
.h6{height:57.787500pt;}
.h3{height:57.888085pt;}
.h8{height:59.340000pt;}
.h5{height:60.519362pt;}
.h1{height:780.000000pt;}
.h0{height:780.094667pt;}
.hf{height:1122.666667pt;}
.he{height:1122.720000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:124.831988pt;}
.x2{left:131.391988pt;}
.xc{left:134.266667pt;}
.x3{left:153.306655pt;}
.x5{left:160.186655pt;}
.xb{left:172.026655pt;}
.x6{left:190.906655pt;}
.x7{left:295.426655pt;}
.x9{left:309.026655pt;}
.x1{left:387.933322pt;}
.x8{left:477.533322pt;}
.xa{left:523.013322pt;}
}




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