
    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_c17f38825834977c2164bd23.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112305;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_501c0fbb2b2cb063d22fa395.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.854004;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_228d4df3b765b2cb9232b759.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_3a3eb717127cedfb3b0347ad.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.104004;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_5120636eb17d063cc7966341.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_98936bbd9ce38058d615b03e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_fbf94c5b63f4a2ed182440ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.946777;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_f60c5c27e328ee02c4f65058.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.288000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.720000px;}
.ls3{letter-spacing:12.960000px;}
.ls2{letter-spacing:21.221280px;}
.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;}
}
.ws4{word-spacing:-21.420000px;}
.ws1{word-spacing:-21.060000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws7{word-spacing:-9.720000px;}
.ws3{word-spacing:0.000000px;}
._3{margin-left:-11.119680px;}
._2e{margin-left:-9.936000px;}
._1{margin-left:-8.611200px;}
._1a{margin-left:-7.571040px;}
._9{margin-left:-6.402240px;}
._5{margin-left:-5.229600px;}
._c{margin-left:-3.270240px;}
._0{margin-left:-1.324800px;}
._2{width:1.250880px;}
._20{width:2.304000px;}
._19{width:3.376800px;}
._12{width:4.536000px;}
._13{width:5.904000px;}
._18{width:7.122240px;}
._17{width:8.136000px;}
._26{width:9.244800px;}
._16{width:10.257600px;}
._8{width:11.395440px;}
._23{width:12.559200px;}
._7{width:13.685040px;}
._1b{width:14.754960px;}
._1c{width:15.858720px;}
._2a{width:19.584000px;}
._10{width:21.096000px;}
._11{width:22.170240px;}
._21{width:24.624000px;}
._22{width:25.632000px;}
._1e{width:27.936000px;}
._1f{width:29.376000px;}
._2b{width:34.416000px;}
._2d{width:35.784000px;}
._2c{width:37.296000px;}
._14{width:43.236000px;}
._15{width:44.676000px;}
._6{width:45.799680px;}
._4{width:46.816320px;}
._24{width:49.176000px;}
._25{width:50.412480px;}
._29{width:57.648000px;}
._27{width:58.680000px;}
._28{width:59.772000px;}
._e{width:67.200480px;}
._f{width:68.379840px;}
._b{width:105.188160px;}
._d{width:109.175040px;}
._a{width:111.281040px;}
._1d{width:2459.040000px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:11.700000px;}
.y7a{bottom:11.880000px;}
.y99{bottom:11.910000px;}
.y6b{bottom:11.925000px;}
.y6d{bottom:37.620000px;}
.y98{bottom:37.650000px;}
.y7c{bottom:37.800000px;}
.y6a{bottom:37.845000px;}
.y5{bottom:58.140000px;}
.y91{bottom:63.765000px;}
.y4{bottom:80.136000px;}
.y3{bottom:100.656000px;}
.y2{bottom:119.736000px;}
.y1{bottom:138.996000px;}
.y73{bottom:173.370000px;}
.y50{bottom:175.350000px;}
.y32{bottom:176.610000px;}
.y8b{bottom:178.050000px;}
.ya7{bottom:196.050000px;}
.y72{bottom:196.590000px;}
.y31{bottom:197.310000px;}
.y4f{bottom:206.490000px;}
.y8a{bottom:209.010000px;}
.y30{bottom:218.010000px;}
.y71{bottom:219.990000px;}
.ya6{bottom:227.190000px;}
.y4e{bottom:237.450000px;}
.y2f{bottom:238.710000px;}
.y89{bottom:240.150000px;}
.y70{bottom:243.210000px;}
.ya5{bottom:258.150000px;}
.y2e{bottom:259.410000px;}
.y6f{bottom:266.430000px;}
.y4d{bottom:268.590000px;}
.y88{bottom:271.110000px;}
.y6c{bottom:279.930000px;}
.y2d{bottom:280.110000px;}
.ya4{bottom:289.290000px;}
.y4c{bottom:299.550000px;}
.y2c{bottom:300.810000px;}
.y87{bottom:302.250000px;}
.ya3{bottom:320.250000px;}
.y2b{bottom:321.510000px;}
.y4b{bottom:330.690000px;}
.y69{bottom:332.310000px;}
.y86{bottom:333.210000px;}
.y2a{bottom:342.255000px;}
.ya2{bottom:351.435000px;}
.y85{bottom:359.355000px;}
.y4a{bottom:361.695000px;}
.y29{bottom:362.955000px;}
.y84{bottom:380.055000px;}
.y28{bottom:383.655000px;}
.ya1{bottom:384.735000px;}
.y83{bottom:392.115000px;}
.y49{bottom:392.835000px;}
.y68{bottom:399.135000px;}
.y27{bottom:404.355000px;}
.ya0{bottom:414.975000px;}
.y82{bottom:418.755000px;}
.y48{bottom:423.795000px;}
.y26{bottom:425.055000px;}
.y67{bottom:430.275000px;}
.y9f{bottom:436.935000px;}
.y81{bottom:445.395000px;}
.y25{bottom:445.755000px;}
.y47{bottom:454.935000px;}
.y9e{bottom:457.635000px;}
.y66{bottom:461.235000px;}
.y24{bottom:466.455000px;}
.y9d{bottom:469.695000px;}
.y80{bottom:472.035000px;}
.y46{bottom:485.895000px;}
.y23{bottom:487.155000px;}
.y65{bottom:492.375000px;}
.y9c{bottom:496.335000px;}
.y7f{bottom:498.675000px;}
.y22{bottom:507.855000px;}
.y45{bottom:517.035000px;}
.y9b{bottom:522.975000px;}
.y64{bottom:523.335000px;}
.y7e{bottom:525.315000px;}
.y21{bottom:528.555000px;}
.y44{bottom:547.995000px;}
.y20{bottom:549.255000px;}
.y7d{bottom:551.955000px;}
.y63{bottom:554.475000px;}
.y1f{bottom:569.955000px;}
.y9a{bottom:575.535000px;}
.y43{bottom:579.135000px;}
.y62{bottom:585.435000px;}
.y1e{bottom:590.655000px;}
.y97{bottom:602.175000px;}
.y7b{bottom:604.365000px;}
.y42{bottom:610.125000px;}
.y1d{bottom:611.385000px;}
.y61{bottom:616.605000px;}
.y1c{bottom:632.085000px;}
.y41{bottom:641.265000px;}
.y60{bottom:647.565000px;}
.y1b{bottom:652.785000px;}
.y96{bottom:654.585000px;}
.y79{bottom:656.925000px;}
.y40{bottom:672.225000px;}
.y1a{bottom:673.485000px;}
.y5f{bottom:678.705000px;}
.y95{bottom:681.225000px;}
.y19{bottom:694.185000px;}
.y3f{bottom:703.365000px;}
.y78{bottom:709.485000px;}
.y5e{bottom:709.665000px;}
.y18{bottom:714.885000px;}
.y94{bottom:733.785000px;}
.y3e{bottom:734.325000px;}
.y17{bottom:735.585000px;}
.y77{bottom:736.125000px;}
.y5d{bottom:740.805000px;}
.y16{bottom:756.285000px;}
.y3d{bottom:765.465000px;}
.y5c{bottom:771.765000px;}
.y15{bottom:776.985000px;}
.y93{bottom:786.345000px;}
.y3c{bottom:796.425000px;}
.y14{bottom:797.685000px;}
.y5b{bottom:802.905000px;}
.y92{bottom:812.985000px;}
.y13{bottom:818.385000px;}
.y3b{bottom:827.565000px;}
.y5a{bottom:833.865000px;}
.y12{bottom:839.085000px;}
.y90{bottom:839.445000px;}
.y3a{bottom:858.525000px;}
.y11{bottom:859.785000px;}
.y59{bottom:865.005000px;}
.y10{bottom:880.530000px;}
.y39{bottom:889.710000px;}
.y58{bottom:896.010000px;}
.yf{bottom:901.230000px;}
.y38{bottom:920.670000px;}
.ye{bottom:922.470000px;}
.y57{bottom:927.150000px;}
.y8f{bottom:932.190000px;}
.yd{bottom:946.590000px;}
.y37{bottom:951.630000px;}
.y56{bottom:958.110000px;}
.y8e{bottom:963.330000px;}
.yc{bottom:970.710000px;}
.y36{bottom:982.770000px;}
.y55{bottom:989.250000px;}
.y8d{bottom:994.290000px;}
.yb{bottom:994.830000px;}
.y35{bottom:1013.730000px;}
.ya{bottom:1019.130000px;}
.y76{bottom:1020.210000px;}
.y54{bottom:1022.550000px;}
.y8c{bottom:1025.430000px;}
.y9{bottom:1043.250000px;}
.y34{bottom:1044.870000px;}
.y75{bottom:1051.350000px;}
.y53{bottom:1056.390000px;}
.y8{bottom:1067.370000px;}
.y33{bottom:1082.130000px;}
.y74{bottom:1082.310000px;}
.y52{bottom:1087.530000px;}
.y7{bottom:1091.490000px;}
.y6{bottom:1115.610000px;}
.y51{bottom:1118.490000px;}
.he{height:25.740000px;}
.h13{height:25.920000px;}
.h10{height:41.843672px;}
.h14{height:43.246406px;}
.hc{height:48.410156px;}
.ha{height:51.660000px;}
.h12{height:51.696000px;}
.h11{height:51.840000px;}
.h8{height:51.876000px;}
.h7{height:52.628906px;}
.h9{height:53.077852px;}
.hf{height:53.573906px;}
.hb{height:55.735313px;}
.h3{height:59.383125px;}
.h4{height:60.855469px;}
.hd{height:63.949219px;}
.h2{height:64.546875px;}
.h6{height:70.606406px;}
.h5{height:74.820586px;}
.h15{height:77.796000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:103.896000px;}
.wb{width:108.036000px;}
.we{width:110.016000px;}
.w9{width:110.700000px;}
.wa{width:110.736000px;}
.wd{width:113.400000px;}
.w5{width:114.156000px;}
.wc{width:125.496000px;}
.w3{width:126.000000px;}
.w8{width:134.316000px;}
.w4{width:137.736000px;}
.w6{width:150.870000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:7.740000px;}
.xb{left:100.655987px;}
.x1{left:127.655987px;}
.x16{left:138.815987px;}
.x4{left:144.755987px;}
.xd{left:149.255987px;}
.x14{left:153.749987px;}
.x1b{left:156.089987px;}
.x15{left:160.949987px;}
.xa{left:170.129987px;}
.x7{left:176.969987px;}
.xc{left:180.749987px;}
.x8{left:198.209987px;}
.x17{left:236.910000px;}
.x1c{left:238.170000px;}
.x5{left:249.869987px;}
.x10{left:255.270000px;}
.x9{left:339.734987px;}
.x18{left:341.535000px;}
.x1d{left:346.935000px;}
.x11{left:393.915000px;}
.xe{left:434.054987px;}
.x6{left:467.924987px;}
.x1e{left:473.325000px;}
.x19{left:476.565000px;}
.x3{left:489.164987px;}
.x12{left:508.965000px;}
.x1a{left:587.985000px;}
.x13{left:635.685000px;}
.x2{left:808.169987px;}
@media print{
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.640000pt;}
.ls3{letter-spacing:11.520000pt;}
.ls2{letter-spacing:18.863360pt;}
.ws4{word-spacing:-19.040000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7{word-spacing:-8.640000pt;}
.ws3{word-spacing:0.000000pt;}
._3{margin-left:-9.884160pt;}
._2e{margin-left:-8.832000pt;}
._1{margin-left:-7.654400pt;}
._1a{margin-left:-6.729813pt;}
._9{margin-left:-5.690880pt;}
._5{margin-left:-4.648533pt;}
._c{margin-left:-2.906880pt;}
._0{margin-left:-1.177600pt;}
._2{width:1.111893pt;}
._20{width:2.048000pt;}
._19{width:3.001600pt;}
._12{width:4.032000pt;}
._13{width:5.248000pt;}
._18{width:6.330880pt;}
._17{width:7.232000pt;}
._26{width:8.217600pt;}
._16{width:9.117867pt;}
._8{width:10.129280pt;}
._23{width:11.163733pt;}
._7{width:12.164480pt;}
._1b{width:13.115520pt;}
._1c{width:14.096640pt;}
._2a{width:17.408000pt;}
._10{width:18.752000pt;}
._11{width:19.706880pt;}
._21{width:21.888000pt;}
._22{width:22.784000pt;}
._1e{width:24.832000pt;}
._1f{width:26.112000pt;}
._2b{width:30.592000pt;}
._2d{width:31.808000pt;}
._2c{width:33.152000pt;}
._14{width:38.432000pt;}
._15{width:39.712000pt;}
._6{width:40.710827pt;}
._4{width:41.614507pt;}
._24{width:43.712000pt;}
._25{width:44.811093pt;}
._29{width:51.242667pt;}
._27{width:52.160000pt;}
._28{width:53.130667pt;}
._e{width:59.733760pt;}
._f{width:60.782080pt;}
._b{width:93.500587pt;}
._d{width:97.044480pt;}
._a{width:98.916480pt;}
._1d{width:2185.813333pt;}
.fs5{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:10.400000pt;}
.y7a{bottom:10.560000pt;}
.y99{bottom:10.586667pt;}
.y6b{bottom:10.600000pt;}
.y6d{bottom:33.440000pt;}
.y98{bottom:33.466667pt;}
.y7c{bottom:33.600000pt;}
.y6a{bottom:33.640000pt;}
.y5{bottom:51.680000pt;}
.y91{bottom:56.680000pt;}
.y4{bottom:71.232000pt;}
.y3{bottom:89.472000pt;}
.y2{bottom:106.432000pt;}
.y1{bottom:123.552000pt;}
.y73{bottom:154.106667pt;}
.y50{bottom:155.866667pt;}
.y32{bottom:156.986667pt;}
.y8b{bottom:158.266667pt;}
.ya7{bottom:174.266667pt;}
.y72{bottom:174.746667pt;}
.y31{bottom:175.386667pt;}
.y4f{bottom:183.546667pt;}
.y8a{bottom:185.786667pt;}
.y30{bottom:193.786667pt;}
.y71{bottom:195.546667pt;}
.ya6{bottom:201.946667pt;}
.y4e{bottom:211.066667pt;}
.y2f{bottom:212.186667pt;}
.y89{bottom:213.466667pt;}
.y70{bottom:216.186667pt;}
.ya5{bottom:229.466667pt;}
.y2e{bottom:230.586667pt;}
.y6f{bottom:236.826667pt;}
.y4d{bottom:238.746667pt;}
.y88{bottom:240.986667pt;}
.y6c{bottom:248.826667pt;}
.y2d{bottom:248.986667pt;}
.ya4{bottom:257.146667pt;}
.y4c{bottom:266.266667pt;}
.y2c{bottom:267.386667pt;}
.y87{bottom:268.666667pt;}
.ya3{bottom:284.666667pt;}
.y2b{bottom:285.786667pt;}
.y4b{bottom:293.946667pt;}
.y69{bottom:295.386667pt;}
.y86{bottom:296.186667pt;}
.y2a{bottom:304.226667pt;}
.ya2{bottom:312.386667pt;}
.y85{bottom:319.426667pt;}
.y4a{bottom:321.506667pt;}
.y29{bottom:322.626667pt;}
.y84{bottom:337.826667pt;}
.y28{bottom:341.026667pt;}
.ya1{bottom:341.986667pt;}
.y83{bottom:348.546667pt;}
.y49{bottom:349.186667pt;}
.y68{bottom:354.786667pt;}
.y27{bottom:359.426667pt;}
.ya0{bottom:368.866667pt;}
.y82{bottom:372.226667pt;}
.y48{bottom:376.706667pt;}
.y26{bottom:377.826667pt;}
.y67{bottom:382.466667pt;}
.y9f{bottom:388.386667pt;}
.y81{bottom:395.906667pt;}
.y25{bottom:396.226667pt;}
.y47{bottom:404.386667pt;}
.y9e{bottom:406.786667pt;}
.y66{bottom:409.986667pt;}
.y24{bottom:414.626667pt;}
.y9d{bottom:417.506667pt;}
.y80{bottom:419.586667pt;}
.y46{bottom:431.906667pt;}
.y23{bottom:433.026667pt;}
.y65{bottom:437.666667pt;}
.y9c{bottom:441.186667pt;}
.y7f{bottom:443.266667pt;}
.y22{bottom:451.426667pt;}
.y45{bottom:459.586667pt;}
.y9b{bottom:464.866667pt;}
.y64{bottom:465.186667pt;}
.y7e{bottom:466.946667pt;}
.y21{bottom:469.826667pt;}
.y44{bottom:487.106667pt;}
.y20{bottom:488.226667pt;}
.y7d{bottom:490.626667pt;}
.y63{bottom:492.866667pt;}
.y1f{bottom:506.626667pt;}
.y9a{bottom:511.586667pt;}
.y43{bottom:514.786667pt;}
.y62{bottom:520.386667pt;}
.y1e{bottom:525.026667pt;}
.y97{bottom:535.266667pt;}
.y7b{bottom:537.213333pt;}
.y42{bottom:542.333333pt;}
.y1d{bottom:543.453333pt;}
.y61{bottom:548.093333pt;}
.y1c{bottom:561.853333pt;}
.y41{bottom:570.013333pt;}
.y60{bottom:575.613333pt;}
.y1b{bottom:580.253333pt;}
.y96{bottom:581.853333pt;}
.y79{bottom:583.933333pt;}
.y40{bottom:597.533333pt;}
.y1a{bottom:598.653333pt;}
.y5f{bottom:603.293333pt;}
.y95{bottom:605.533333pt;}
.y19{bottom:617.053333pt;}
.y3f{bottom:625.213333pt;}
.y78{bottom:630.653333pt;}
.y5e{bottom:630.813333pt;}
.y18{bottom:635.453333pt;}
.y94{bottom:652.253333pt;}
.y3e{bottom:652.733333pt;}
.y17{bottom:653.853333pt;}
.y77{bottom:654.333333pt;}
.y5d{bottom:658.493333pt;}
.y16{bottom:672.253333pt;}
.y3d{bottom:680.413333pt;}
.y5c{bottom:686.013333pt;}
.y15{bottom:690.653333pt;}
.y93{bottom:698.973333pt;}
.y3c{bottom:707.933333pt;}
.y14{bottom:709.053333pt;}
.y5b{bottom:713.693333pt;}
.y92{bottom:722.653333pt;}
.y13{bottom:727.453333pt;}
.y3b{bottom:735.613333pt;}
.y5a{bottom:741.213333pt;}
.y12{bottom:745.853333pt;}
.y90{bottom:746.173333pt;}
.y3a{bottom:763.133333pt;}
.y11{bottom:764.253333pt;}
.y59{bottom:768.893333pt;}
.y10{bottom:782.693333pt;}
.y39{bottom:790.853333pt;}
.y58{bottom:796.453333pt;}
.yf{bottom:801.093333pt;}
.y38{bottom:818.373333pt;}
.ye{bottom:819.973333pt;}
.y57{bottom:824.133333pt;}
.y8f{bottom:828.613333pt;}
.yd{bottom:841.413333pt;}
.y37{bottom:845.893333pt;}
.y56{bottom:851.653333pt;}
.y8e{bottom:856.293333pt;}
.yc{bottom:862.853333pt;}
.y36{bottom:873.573333pt;}
.y55{bottom:879.333333pt;}
.y8d{bottom:883.813333pt;}
.yb{bottom:884.293333pt;}
.y35{bottom:901.093333pt;}
.ya{bottom:905.893333pt;}
.y76{bottom:906.853333pt;}
.y54{bottom:908.933333pt;}
.y8c{bottom:911.493333pt;}
.y9{bottom:927.333333pt;}
.y34{bottom:928.773333pt;}
.y75{bottom:934.533333pt;}
.y53{bottom:939.013333pt;}
.y8{bottom:948.773333pt;}
.y33{bottom:961.893333pt;}
.y74{bottom:962.053333pt;}
.y52{bottom:966.693333pt;}
.y7{bottom:970.213333pt;}
.y6{bottom:991.653333pt;}
.y51{bottom:994.213333pt;}
.he{height:22.880000pt;}
.h13{height:23.040000pt;}
.h10{height:37.194375pt;}
.h14{height:38.441250pt;}
.hc{height:43.031250pt;}
.ha{height:45.920000pt;}
.h12{height:45.952000pt;}
.h11{height:46.080000pt;}
.h8{height:46.112000pt;}
.h7{height:46.781250pt;}
.h9{height:47.180312pt;}
.hf{height:47.621250pt;}
.hb{height:49.542500pt;}
.h3{height:52.785000pt;}
.h4{height:54.093750pt;}
.hd{height:56.843750pt;}
.h2{height:57.375000pt;}
.h6{height:62.761250pt;}
.h5{height:66.507188pt;}
.h15{height:69.152000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:92.352000pt;}
.wb{width:96.032000pt;}
.we{width:97.792000pt;}
.w9{width:98.400000pt;}
.wa{width:98.432000pt;}
.wd{width:100.800000pt;}
.w5{width:101.472000pt;}
.wc{width:111.552000pt;}
.w3{width:112.000000pt;}
.w8{width:119.392000pt;}
.w4{width:122.432000pt;}
.w6{width:134.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:6.880000pt;}
.xb{left:89.471988pt;}
.x1{left:113.471988pt;}
.x16{left:123.391988pt;}
.x4{left:128.671988pt;}
.xd{left:132.671988pt;}
.x14{left:136.666655pt;}
.x1b{left:138.746655pt;}
.x15{left:143.066655pt;}
.xa{left:151.226655pt;}
.x7{left:157.306655pt;}
.xc{left:160.666655pt;}
.x8{left:176.186655pt;}
.x17{left:210.586667pt;}
.x1c{left:211.706667pt;}
.x5{left:222.106655pt;}
.x10{left:226.906667pt;}
.x9{left:301.986655pt;}
.x18{left:303.586667pt;}
.x1d{left:308.386667pt;}
.x11{left:350.146667pt;}
.xe{left:385.826655pt;}
.x6{left:415.933322pt;}
.x1e{left:420.733333pt;}
.x19{left:423.613333pt;}
.x3{left:434.813322pt;}
.x12{left:452.413333pt;}
.x1a{left:522.653333pt;}
.x13{left:565.053333pt;}
.x2{left:718.373322pt;}
}




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