
    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_a589e513e7067ae94fc85eca.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4061ac7d5d596b6ab92374fa.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_4f135acf71e69298e9d288b9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_f46c0c8e468dbda5168fe0cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.977539;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_f0c2f4a0fe101182f9b3a145.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.977539;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_5691d751fe1ec65b324d8c69.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c3ef60ca2633ce5f553eab94.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_7b59876cc664a70b7e775d45.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.035156;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_9ae093f87abd367b631c987e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.095703;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.ls10{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.972000px;}
.lsd{letter-spacing:-0.936000px;}
.ls3{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.498000px;}
.ls9{letter-spacing:-0.486600px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.017280px;}
.ls6{letter-spacing:0.020160px;}
.lse{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.466560px;}
.ls0{letter-spacing:0.498240px;}
.ls7{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.840000px;}
.lsf{letter-spacing:2.160000px;}
.ls11{letter-spacing:3.720000px;}
.lsc{letter-spacing:5.040000px;}
.lsb{letter-spacing:6.480000px;}
.ls1{letter-spacing:82.690560px;}
.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:-119.520000px;}
.ws2{word-spacing:-23.425920px;}
.ws3{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.633400px;}
.ws0{word-spacing:-13.182000px;}
.ws6{word-spacing:-9.737280px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-5.715840px;}
._e{margin-left:-4.000320px;}
._3{margin-left:-2.039040px;}
._0{margin-left:-1.028160px;}
._1{width:1.816800px;}
._6{width:3.336960px;}
._10{width:4.342080px;}
._11{width:5.538720px;}
._c{width:7.419360px;}
._d{width:9.192960px;}
._f{width:10.264320px;}
._4{width:11.712960px;}
._5{width:13.218720px;}
._7{width:16.534560px;}
._a{width:17.634240px;}
._9{width:19.074720px;}
._8{width:20.344800px;}
._14{width:22.299840px;}
._b{width:24.089280px;}
._15{width:25.920960px;}
._2{width:393.960000px;}
._12{width:1069.656000px;}
.fc7{color:rgb(112,173,71);}
.fc6{color:transparent;}
.fc5{color:rgb(118,113,113);}
.fc4{color:rgb(83,129,53);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(192,0,0);}
.fc3{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs3{font-size:54.720000px;}
.fs1{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.ya{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y13{bottom:6.120000px;}
.ye{bottom:11.556000px;}
.yc{bottom:19.836000px;}
.y12{bottom:41.760000px;}
.yf{bottom:43.560000px;}
.yb{bottom:68.400000px;}
.y11{bottom:77.040000px;}
.y40{bottom:94.716000px;}
.y9{bottom:111.636000px;}
.y68{bottom:133.236000px;}
.y3c{bottom:147.996000px;}
.y67{bottom:159.150000px;}
.y98{bottom:167.070000px;}
.y7a{bottom:169.950000px;}
.y84{bottom:171.030000px;}
.y3b{bottom:173.910000px;}
.y66{bottom:185.070000px;}
.y97{bottom:192.990000px;}
.y79{bottom:195.870000px;}
.y83{bottom:196.950000px;}
.y3a{bottom:199.515000px;}
.y65{bottom:211.035000px;}
.y96{bottom:218.595000px;}
.y78{bottom:221.835000px;}
.y82{bottom:222.915000px;}
.y39{bottom:225.435000px;}
.y64{bottom:236.595000px;}
.y95{bottom:244.515000px;}
.y77{bottom:247.755000px;}
.y81{bottom:248.835000px;}
.y38{bottom:251.355000px;}
.y63{bottom:262.515000px;}
.y94{bottom:270.435000px;}
.y76{bottom:273.315000px;}
.y80{bottom:274.395000px;}
.y37{bottom:277.275000px;}
.y62{bottom:288.435000px;}
.y93{bottom:296.355000px;}
.y75{bottom:299.235000px;}
.y7f{bottom:300.315000px;}
.y36{bottom:303.195000px;}
.y61{bottom:314.355000px;}
.y92{bottom:322.275000px;}
.y74{bottom:325.185000px;}
.y7e{bottom:326.265000px;}
.y35{bottom:329.145000px;}
.y60{bottom:340.305000px;}
.y91{bottom:348.225000px;}
.y73{bottom:351.105000px;}
.y7d{bottom:352.185000px;}
.y34{bottom:355.065000px;}
.y5f{bottom:366.225000px;}
.y90{bottom:374.145000px;}
.y72{bottom:377.025000px;}
.y7c{bottom:378.105000px;}
.y33{bottom:380.625000px;}
.y5e{bottom:392.145000px;}
.y8f{bottom:399.705000px;}
.y71{bottom:402.945000px;}
.y32{bottom:406.545000px;}
.y7b{bottom:415.545000px;}
.y5d{bottom:417.705000px;}
.y8e{bottom:425.625000px;}
.y70{bottom:428.865000px;}
.y31{bottom:441.465000px;}
.y5c{bottom:443.625000px;}
.y8d{bottom:451.590000px;}
.y6f{bottom:454.830000px;}
.yb2{bottom:466.710000px;}
.y5b{bottom:469.590000px;}
.y30{bottom:470.310000px;}
.y8c{bottom:477.510000px;}
.y6e{bottom:480.390000px;}
.y2f{bottom:487.590000px;}
.yb1{bottom:492.630000px;}
.y5a{bottom:495.510000px;}
.y8b{bottom:503.430000px;}
.y6d{bottom:506.310000px;}
.y2e{bottom:513.510000px;}
.yb0{bottom:518.550000px;}
.y59{bottom:521.430000px;}
.y8a{bottom:529.350000px;}
.y6c{bottom:532.230000px;}
.y2d{bottom:539.430000px;}
.yaf{bottom:544.470000px;}
.y58{bottom:547.350000px;}
.y89{bottom:555.270000px;}
.y2c{bottom:556.710000px;}
.y6b{bottom:558.150000px;}
.yae{bottom:570.030000px;}
.y57{bottom:573.270000px;}
.y2b{bottom:573.990000px;}
.y6a{bottom:575.460000px;}
.y88{bottom:581.220000px;}
.y2a{bottom:591.300000px;}
.y69{bottom:592.740000px;}
.yad{bottom:595.980000px;}
.y56{bottom:599.220000px;}
.y87{bottom:606.780000px;}
.y29{bottom:608.580000px;}
.yac{bottom:621.900000px;}
.y55{bottom:624.780000px;}
.y28{bottom:625.860000px;}
.y86{bottom:632.700000px;}
.y27{bottom:643.140000px;}
.yab{bottom:647.820000px;}
.y54{bottom:650.700000px;}
.y85{bottom:667.620000px;}
.y26{bottom:668.700000px;}
.yaa{bottom:673.740000px;}
.y53{bottom:676.620000px;}
.y25{bottom:694.620000px;}
.ya9{bottom:699.660000px;}
.y52{bottom:702.570000px;}
.y24{bottom:720.570000px;}
.ya8{bottom:725.610000px;}
.y51{bottom:728.490000px;}
.y23{bottom:737.850000px;}
.ya7{bottom:751.530000px;}
.y50{bottom:754.410000px;}
.y22{bottom:755.130000px;}
.y21{bottom:772.410000px;}
.ya6{bottom:777.090000px;}
.y4f{bottom:780.330000px;}
.y20{bottom:789.690000px;}
.ya5{bottom:803.010000px;}
.y4e{bottom:805.890000px;}
.y1f{bottom:806.970000px;}
.y1e{bottom:824.250000px;}
.ya4{bottom:828.975000px;}
.y4d{bottom:831.855000px;}
.y1d{bottom:841.575000px;}
.ya3{bottom:854.895000px;}
.y4c{bottom:857.775000px;}
.y1c{bottom:867.135000px;}
.ya2{bottom:880.815000px;}
.y4b{bottom:883.695000px;}
.y1b{bottom:884.415000px;}
.y1a{bottom:906.015000px;}
.ya1{bottom:906.735000px;}
.y4a{bottom:909.615000px;}
.y19{bottom:931.935000px;}
.ya0{bottom:932.655000px;}
.y49{bottom:935.535000px;}
.y18{bottom:949.215000px;}
.y9f{bottom:958.245000px;}
.y48{bottom:961.485000px;}
.y17{bottom:966.525000px;}
.y9e{bottom:984.165000px;}
.y16{bottom:986.325000px;}
.y47{bottom:987.405000px;}
.y15{bottom:1006.125000px;}
.y9d{bottom:1010.085000px;}
.y46{bottom:1012.965000px;}
.y14{bottom:1027.005000px;}
.y9c{bottom:1036.005000px;}
.y45{bottom:1038.885000px;}
.y8{bottom:1047.165000px;}
.y9b{bottom:1061.925000px;}
.y7{bottom:1064.445000px;}
.y44{bottom:1064.805000px;}
.y6{bottom:1082.130000px;}
.y9a{bottom:1087.890000px;}
.y43{bottom:1090.770000px;}
.y10{bottom:1103.370000px;}
.y5{bottom:1104.450000px;}
.y99{bottom:1113.810000px;}
.y42{bottom:1116.690000px;}
.y4{bottom:1128.210000px;}
.y41{bottom:1142.610000px;}
.y3{bottom:1151.610000px;}
.y3f{bottom:1167.090000px;}
.y2{bottom:1175.370000px;}
.y3e{bottom:1181.130000px;}
.y1{bottom:1199.130000px;}
.y3d{bottom:1202.010000px;}
.h5{height:8.640000px;}
.he{height:15.516000px;}
.h7{height:32.436000px;}
.h6{height:48.013594px;}
.h8{height:48.147188px;}
.h4{height:53.067656px;}
.h12{height:53.215313px;}
.hb{height:53.717344px;}
.h11{height:55.714922px;}
.h13{height:55.809844px;}
.h3{height:58.121719px;}
.hf{height:60.155156px;}
.hd{height:63.175781px;}
.h2{height:63.949219px;}
.h10{height:65.884219px;}
.h14{height:67.824844px;}
.hc{height:85.691953px;}
.ha{height:95.300859px;}
.h9{height:106.596000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:181.875000px;}
.w9{width:333.510000px;}
.w7{width:339.270000px;}
.w6{width:341.430000px;}
.w8{width:347.190000px;}
.w3{width:498.810000px;}
.w5{width:566.130000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x3{left:8.640000px;}
.x9{left:10.800000px;}
.x1{left:106.235987px;}
.x13{left:114.875987px;}
.xf{left:119.915987px;}
.x5{left:127.869000px;}
.x7{left:146.595000px;}
.xe{left:160.274987px;}
.xa{left:192.674987px;}
.x8{left:248.865000px;}
.xc{left:258.584987px;}
.xd{left:262.904987px;}
.x12{left:298.230000px;}
.x6{left:308.664000px;}
.xb{left:335.309987px;}
.x2{left:446.579987px;}
.x10{left:447.660000px;}
.x11{left:453.420000px;}
.x4{left:605.055000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.ls10{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.864000pt;}
.lsd{letter-spacing:-0.832000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.442667pt;}
.ls9{letter-spacing:-0.432533pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.015360pt;}
.ls6{letter-spacing:0.017920pt;}
.lse{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.414720pt;}
.ls0{letter-spacing:0.442880pt;}
.ls7{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.746667pt;}
.lsf{letter-spacing:1.920000pt;}
.ls11{letter-spacing:3.306667pt;}
.lsc{letter-spacing:4.480000pt;}
.lsb{letter-spacing:5.760000pt;}
.ls1{letter-spacing:73.502720pt;}
.ws1{word-spacing:-106.240000pt;}
.ws2{word-spacing:-20.823040pt;}
.ws3{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.007467pt;}
.ws0{word-spacing:-11.717333pt;}
.ws6{word-spacing:-8.655360pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-5.080747pt;}
._e{margin-left:-3.555840pt;}
._3{margin-left:-1.812480pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.614933pt;}
._6{width:2.966187pt;}
._10{width:3.859627pt;}
._11{width:4.923307pt;}
._c{width:6.594987pt;}
._d{width:8.171520pt;}
._f{width:9.123840pt;}
._4{width:10.411520pt;}
._5{width:11.749973pt;}
._7{width:14.697387pt;}
._a{width:15.674880pt;}
._9{width:16.955307pt;}
._8{width:18.084267pt;}
._14{width:19.822080pt;}
._b{width:21.412693pt;}
._15{width:23.040853pt;}
._2{width:350.186667pt;}
._12{width:950.805333pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:48.640000pt;}
.fs1{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.ya{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y13{bottom:5.440000pt;}
.ye{bottom:10.272000pt;}
.yc{bottom:17.632000pt;}
.y12{bottom:37.120000pt;}
.yf{bottom:38.720000pt;}
.yb{bottom:60.800000pt;}
.y11{bottom:68.480000pt;}
.y40{bottom:84.192000pt;}
.y9{bottom:99.232000pt;}
.y68{bottom:118.432000pt;}
.y3c{bottom:131.552000pt;}
.y67{bottom:141.466667pt;}
.y98{bottom:148.506667pt;}
.y7a{bottom:151.066667pt;}
.y84{bottom:152.026667pt;}
.y3b{bottom:154.586667pt;}
.y66{bottom:164.506667pt;}
.y97{bottom:171.546667pt;}
.y79{bottom:174.106667pt;}
.y83{bottom:175.066667pt;}
.y3a{bottom:177.346667pt;}
.y65{bottom:187.586667pt;}
.y96{bottom:194.306667pt;}
.y78{bottom:197.186667pt;}
.y82{bottom:198.146667pt;}
.y39{bottom:200.386667pt;}
.y64{bottom:210.306667pt;}
.y95{bottom:217.346667pt;}
.y77{bottom:220.226667pt;}
.y81{bottom:221.186667pt;}
.y38{bottom:223.426667pt;}
.y63{bottom:233.346667pt;}
.y94{bottom:240.386667pt;}
.y76{bottom:242.946667pt;}
.y80{bottom:243.906667pt;}
.y37{bottom:246.466667pt;}
.y62{bottom:256.386667pt;}
.y93{bottom:263.426667pt;}
.y75{bottom:265.986667pt;}
.y7f{bottom:266.946667pt;}
.y36{bottom:269.506667pt;}
.y61{bottom:279.426667pt;}
.y92{bottom:286.466667pt;}
.y74{bottom:289.053333pt;}
.y7e{bottom:290.013333pt;}
.y35{bottom:292.573333pt;}
.y60{bottom:302.493333pt;}
.y91{bottom:309.533333pt;}
.y73{bottom:312.093333pt;}
.y7d{bottom:313.053333pt;}
.y34{bottom:315.613333pt;}
.y5f{bottom:325.533333pt;}
.y90{bottom:332.573333pt;}
.y72{bottom:335.133333pt;}
.y7c{bottom:336.093333pt;}
.y33{bottom:338.333333pt;}
.y5e{bottom:348.573333pt;}
.y8f{bottom:355.293333pt;}
.y71{bottom:358.173333pt;}
.y32{bottom:361.373333pt;}
.y7b{bottom:369.373333pt;}
.y5d{bottom:371.293333pt;}
.y8e{bottom:378.333333pt;}
.y70{bottom:381.213333pt;}
.y31{bottom:392.413333pt;}
.y5c{bottom:394.333333pt;}
.y8d{bottom:401.413333pt;}
.y6f{bottom:404.293333pt;}
.yb2{bottom:414.853333pt;}
.y5b{bottom:417.413333pt;}
.y30{bottom:418.053333pt;}
.y8c{bottom:424.453333pt;}
.y6e{bottom:427.013333pt;}
.y2f{bottom:433.413333pt;}
.yb1{bottom:437.893333pt;}
.y5a{bottom:440.453333pt;}
.y8b{bottom:447.493333pt;}
.y6d{bottom:450.053333pt;}
.y2e{bottom:456.453333pt;}
.yb0{bottom:460.933333pt;}
.y59{bottom:463.493333pt;}
.y8a{bottom:470.533333pt;}
.y6c{bottom:473.093333pt;}
.y2d{bottom:479.493333pt;}
.yaf{bottom:483.973333pt;}
.y58{bottom:486.533333pt;}
.y89{bottom:493.573333pt;}
.y2c{bottom:494.853333pt;}
.y6b{bottom:496.133333pt;}
.yae{bottom:506.693333pt;}
.y57{bottom:509.573333pt;}
.y2b{bottom:510.213333pt;}
.y6a{bottom:511.520000pt;}
.y88{bottom:516.640000pt;}
.y2a{bottom:525.600000pt;}
.y69{bottom:526.880000pt;}
.yad{bottom:529.760000pt;}
.y56{bottom:532.640000pt;}
.y87{bottom:539.360000pt;}
.y29{bottom:540.960000pt;}
.yac{bottom:552.800000pt;}
.y55{bottom:555.360000pt;}
.y28{bottom:556.320000pt;}
.y86{bottom:562.400000pt;}
.y27{bottom:571.680000pt;}
.yab{bottom:575.840000pt;}
.y54{bottom:578.400000pt;}
.y85{bottom:593.440000pt;}
.y26{bottom:594.400000pt;}
.yaa{bottom:598.880000pt;}
.y53{bottom:601.440000pt;}
.y25{bottom:617.440000pt;}
.ya9{bottom:621.920000pt;}
.y52{bottom:624.506667pt;}
.y24{bottom:640.506667pt;}
.ya8{bottom:644.986667pt;}
.y51{bottom:647.546667pt;}
.y23{bottom:655.866667pt;}
.ya7{bottom:668.026667pt;}
.y50{bottom:670.586667pt;}
.y22{bottom:671.226667pt;}
.y21{bottom:686.586667pt;}
.ya6{bottom:690.746667pt;}
.y4f{bottom:693.626667pt;}
.y20{bottom:701.946667pt;}
.ya5{bottom:713.786667pt;}
.y4e{bottom:716.346667pt;}
.y1f{bottom:717.306667pt;}
.y1e{bottom:732.666667pt;}
.ya4{bottom:736.866667pt;}
.y4d{bottom:739.426667pt;}
.y1d{bottom:748.066667pt;}
.ya3{bottom:759.906667pt;}
.y4c{bottom:762.466667pt;}
.y1c{bottom:770.786667pt;}
.ya2{bottom:782.946667pt;}
.y4b{bottom:785.506667pt;}
.y1b{bottom:786.146667pt;}
.y1a{bottom:805.346667pt;}
.ya1{bottom:805.986667pt;}
.y4a{bottom:808.546667pt;}
.y19{bottom:828.386667pt;}
.ya0{bottom:829.026667pt;}
.y49{bottom:831.586667pt;}
.y18{bottom:843.746667pt;}
.y9f{bottom:851.773333pt;}
.y48{bottom:854.653333pt;}
.y17{bottom:859.133333pt;}
.y9e{bottom:874.813333pt;}
.y16{bottom:876.733333pt;}
.y47{bottom:877.693333pt;}
.y15{bottom:894.333333pt;}
.y9d{bottom:897.853333pt;}
.y46{bottom:900.413333pt;}
.y14{bottom:912.893333pt;}
.y9c{bottom:920.893333pt;}
.y45{bottom:923.453333pt;}
.y8{bottom:930.813333pt;}
.y9b{bottom:943.933333pt;}
.y7{bottom:946.173333pt;}
.y44{bottom:946.493333pt;}
.y6{bottom:961.893333pt;}
.y9a{bottom:967.013333pt;}
.y43{bottom:969.573333pt;}
.y10{bottom:980.773333pt;}
.y5{bottom:981.733333pt;}
.y99{bottom:990.053333pt;}
.y42{bottom:992.613333pt;}
.y4{bottom:1002.853333pt;}
.y41{bottom:1015.653333pt;}
.y3{bottom:1023.653333pt;}
.y3f{bottom:1037.413333pt;}
.y2{bottom:1044.773333pt;}
.y3e{bottom:1049.893333pt;}
.y1{bottom:1065.893333pt;}
.y3d{bottom:1068.453333pt;}
.h5{height:7.680000pt;}
.he{height:13.792000pt;}
.h7{height:28.832000pt;}
.h6{height:42.678750pt;}
.h8{height:42.797500pt;}
.h4{height:47.171250pt;}
.h12{height:47.302500pt;}
.hb{height:47.748750pt;}
.h11{height:49.524375pt;}
.h13{height:49.608750pt;}
.h3{height:51.663750pt;}
.hf{height:53.471250pt;}
.hd{height:56.156250pt;}
.h2{height:56.843750pt;}
.h10{height:58.563750pt;}
.h14{height:60.288750pt;}
.hc{height:76.170625pt;}
.ha{height:84.711875pt;}
.h9{height:94.752000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:161.666667pt;}
.w9{width:296.453333pt;}
.w7{width:301.573333pt;}
.w6{width:303.493333pt;}
.w8{width:308.613333pt;}
.w3{width:443.386667pt;}
.w5{width:503.226667pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x3{left:7.680000pt;}
.x9{left:9.600000pt;}
.x1{left:94.431988pt;}
.x13{left:102.111988pt;}
.xf{left:106.591988pt;}
.x5{left:113.661333pt;}
.x7{left:130.306667pt;}
.xe{left:142.466655pt;}
.xa{left:171.266655pt;}
.x8{left:221.213333pt;}
.xc{left:229.853322pt;}
.xd{left:233.693322pt;}
.x12{left:265.093333pt;}
.x6{left:274.368000pt;}
.xb{left:298.053322pt;}
.x2{left:396.959988pt;}
.x10{left:397.920000pt;}
.x11{left:403.040000pt;}
.x4{left:537.826667pt;}
}




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