
    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_f7077d00417c63450b4e5b1f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.950684;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_5576e839fbaa2413aeb37c64.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_6c1da5e99c185dc8cf90666d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.938965;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_12a1c3858c197ffb080825bb.woff')format("woff");}.ff4{font-family:ff4;line-height:0.761230;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_8a26286943f0fddb6f5046d0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;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_64ee51176f98b9f6715485df.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_35721bdc509eeb3373d54088.woff')format("woff");}.ff7{font-family:ff7;line-height:0.752441;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_d1fff0f5eb670943aa053c6b.woff')format("woff");}.ff8{font-family:ff8;line-height:1.074707;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:33.120000px;}
.lsc{letter-spacing:-2.880000px;}
.lsb{letter-spacing:-0.936000px;}
.ls7{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.288000px;}
.ls3{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.504000px;}
.ls9{letter-spacing:0.684000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.900000px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.ws5{word-spacing:-21.060000px;}
.ws8{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws3{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.wsb{word-spacing:-17.064000px;}
.ws1{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.120000px;}
.ws0{word-spacing:-13.860000px;}
.ws4{word-spacing:0.000000px;}
._2{margin-left:-9.097200px;}
._15{margin-left:-7.872000px;}
._5{margin-left:-6.819840px;}
._3{margin-left:-5.554080px;}
._13{margin-left:-4.170960px;}
._4{margin-left:-2.812320px;}
._1{margin-left:-1.404000px;}
._0{width:1.532160px;}
._18{width:2.808000px;}
._19{width:3.927360px;}
._16{width:5.559840px;}
._9{width:6.600000px;}
._a{width:7.728000px;}
._6{width:9.000000px;}
._7{width:10.091520px;}
._10{width:11.580480px;}
._12{width:12.960000px;}
._14{width:14.187840px;}
._1b{width:15.408000px;}
._d{width:16.431840px;}
._c{width:19.944000px;}
._8{width:21.384000px;}
._1e{width:23.112000px;}
._b{width:24.264000px;}
._1a{width:26.196000px;}
._22{width:27.360000px;}
._23{width:28.687680px;}
._1f{width:29.808000px;}
._11{width:31.320000px;}
._1c{width:32.616000px;}
._17{width:33.768000px;}
._e{width:35.640000px;}
._f{width:36.648000px;}
._24{width:38.208000px;}
._1d{width:39.600000px;}
._28{width:42.744000px;}
._29{width:44.107680px;}
._25{width:45.360000px;}
._20{width:46.599840px;}
._21{width:47.880000px;}
._2b{width:50.400000px;}
._26{width:52.704000px;}
._27{width:54.715680px;}
._2a{width:57.312000px;}
._2d{width:90.792000px;}
._2c{width:91.800000px;}
._2e{width:92.921760px;}
._2f{width:178.128000px;}
.fc6{color:rgb(50,62,79);}
.fc8{color:transparent;}
.fc4{color:rgb(196,89,17);}
.fc3{color:rgb(0,0,255);}
.fc7{color:rgb(50,50,50);}
.fc5{color:rgb(12,12,12);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(13,13,13);}
.fs6{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:63.360000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:72.144000px;}
.fs5{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs8{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:3.060000px;}
.y35{bottom:4.320000px;}
.y1e{bottom:6.405000px;}
.y30{bottom:9.210000px;}
.y32{bottom:17.100000px;}
.y6{bottom:53.640000px;}
.y5{bottom:57.060000px;}
.y34{bottom:58.320000px;}
.y1c{bottom:61.485000px;}
.y65{bottom:113.760000px;}
.y96{bottom:119.880000px;}
.y64{bottom:134.460000px;}
.y95{bottom:140.580000px;}
.y63{bottom:155.160000px;}
.y94{bottom:160.920000px;}
.ya0{bottom:161.280000px;}
.y62{bottom:175.860000px;}
.y93{bottom:181.620000px;}
.y9f{bottom:181.980000px;}
.y61{bottom:196.560000px;}
.ya9{bottom:202.320000px;}
.y92{bottom:202.680000px;}
.y60{bottom:217.290000px;}
.y91{bottom:223.410000px;}
.y5f{bottom:237.990000px;}
.y90{bottom:244.110000px;}
.y5e{bottom:258.690000px;}
.y8f{bottom:264.810000px;}
.y5d{bottom:279.390000px;}
.ya8{bottom:285.150000px;}
.y8e{bottom:285.510000px;}
.y5c{bottom:300.090000px;}
.ya7{bottom:305.850000px;}
.y8d{bottom:306.210000px;}
.y5b{bottom:320.790000px;}
.y8c{bottom:326.550000px;}
.y9e{bottom:326.910000px;}
.y5a{bottom:341.490000px;}
.y8b{bottom:347.250000px;}
.y9d{bottom:347.610000px;}
.y59{bottom:362.190000px;}
.y8a{bottom:368.310000px;}
.y2f{bottom:379.260000px;}
.y58{bottom:382.890000px;}
.y89{bottom:389.010000px;}
.y57{bottom:403.590000px;}
.ya6{bottom:409.350000px;}
.y88{bottom:409.710000px;}
.y2e{bottom:412.950000px;}
.y56{bottom:424.290000px;}
.ya5{bottom:430.050000px;}
.y87{bottom:430.410000px;}
.y2d{bottom:433.650000px;}
.y55{bottom:445.035000px;}
.y86{bottom:451.155000px;}
.y2c{bottom:454.395000px;}
.y54{bottom:465.735000px;}
.y85{bottom:471.855000px;}
.y2b{bottom:475.095000px;}
.y53{bottom:486.435000px;}
.y84{bottom:492.555000px;}
.y2a{bottom:495.435000px;}
.y52{bottom:507.135000px;}
.y83{bottom:513.255000px;}
.y29{bottom:516.135000px;}
.y51{bottom:527.835000px;}
.y82{bottom:533.955000px;}
.y28{bottom:537.195000px;}
.y50{bottom:548.535000px;}
.ya4{bottom:554.295000px;}
.y81{bottom:554.655000px;}
.y27{bottom:557.895000px;}
.y4f{bottom:569.235000px;}
.ya3{bottom:574.995000px;}
.y80{bottom:575.355000px;}
.y26{bottom:578.595000px;}
.y4e{bottom:589.575000px;}
.y7f{bottom:596.055000px;}
.y25{bottom:598.935000px;}
.y4d{bottom:610.275000px;}
.y7e{bottom:616.755000px;}
.y24{bottom:619.635000px;}
.y4c{bottom:631.335000px;}
.y7d{bottom:637.455000px;}
.y23{bottom:640.515000px;}
.y4b{bottom:651.675000px;}
.y7c{bottom:658.155000px;}
.y22{bottom:661.215000px;}
.y4a{bottom:672.735000px;}
.y7b{bottom:678.885000px;}
.y21{bottom:681.915000px;}
.y49{bottom:693.465000px;}
.ya2{bottom:699.225000px;}
.y7a{bottom:699.585000px;}
.y20{bottom:702.645000px;}
.y48{bottom:714.165000px;}
.ya1{bottom:719.925000px;}
.y79{bottom:720.285000px;}
.y1f{bottom:722.985000px;}
.y47{bottom:734.865000px;}
.y9c{bottom:740.625000px;}
.y78{bottom:740.985000px;}
.y46{bottom:755.565000px;}
.y9b{bottom:761.325000px;}
.y77{bottom:761.685000px;}
.y45{bottom:776.265000px;}
.y76{bottom:782.385000px;}
.y44{bottom:796.965000px;}
.y75{bottom:803.085000px;}
.y1b{bottom:815.040000px;}
.y43{bottom:817.665000px;}
.y74{bottom:823.785000px;}
.y42{bottom:838.365000px;}
.yad{bottom:844.125000px;}
.y73{bottom:844.485000px;}
.y1d{bottom:848.985000px;}
.y41{bottom:859.065000px;}
.yac{bottom:864.825000px;}
.y72{bottom:865.185000px;}
.y14{bottom:868.425000px;}
.y40{bottom:879.765000px;}
.y71{bottom:885.885000px;}
.y13{bottom:886.605000px;}
.y3f{bottom:900.465000px;}
.y12{bottom:904.605000px;}
.y70{bottom:906.585000px;}
.y3e{bottom:921.210000px;}
.y11{bottom:922.830000px;}
.y6f{bottom:927.330000px;}
.y10{bottom:941.010000px;}
.y3d{bottom:941.910000px;}
.y6e{bottom:947.670000px;}
.y9a{bottom:948.030000px;}
.yf{bottom:959.010000px;}
.y3c{bottom:962.610000px;}
.y6d{bottom:968.370000px;}
.y99{bottom:968.730000px;}
.ye{bottom:977.190000px;}
.y3b{bottom:983.310000px;}
.y98{bottom:989.070000px;}
.y6c{bottom:989.430000px;}
.yd{bottom:995.370000px;}
.y1a{bottom:1001.670000px;}
.y3a{bottom:1004.010000px;}
.y97{bottom:1009.770000px;}
.y6b{bottom:1010.130000px;}
.yc{bottom:1013.370000px;}
.y19{bottom:1021.470000px;}
.y39{bottom:1027.230000px;}
.y6a{bottom:1030.830000px;}
.yb{bottom:1031.550000px;}
.y18{bottom:1041.990000px;}
.ya{bottom:1049.550000px;}
.yab{bottom:1051.170000px;}
.y69{bottom:1051.530000px;}
.y38{bottom:1058.550000px;}
.y66{bottom:1058.730000px;}
.y9{bottom:1067.730000px;}
.y17{bottom:1069.890000px;}
.yaa{bottom:1071.870000px;}
.y68{bottom:1072.230000px;}
.y37{bottom:1076.730000px;}
.y8{bottom:1086.990000px;}
.y67{bottom:1092.930000px;}
.y36{bottom:1094.910000px;}
.y16{bottom:1100.310000px;}
.y4{bottom:1113.810000px;}
.y15{bottom:1130.730000px;}
.y3{bottom:1132.530000px;}
.y2{bottom:1159.560000px;}
.y1{bottom:1186.740000px;}
.y31{bottom:1201.860000px;}
.y33{bottom:1218.960000px;}
.h4{height:15.480000px;}
.h15{height:20.700000px;}
.h12{height:51.480000px;}
.hd{height:52.066406px;}
.h3{height:52.998047px;}
.h7{height:53.648438px;}
.h5{height:62.184375px;}
.hb{height:62.357344px;}
.h9{height:67.565039px;}
.h13{height:69.637852px;}
.he{height:70.664062px;}
.hf{height:70.805391px;}
.hc{height:72.562500px;}
.h2{height:76.355508px;}
.h14{height:82.676953px;}
.h8{height:84.780000px;}
.h11{height:84.898125px;}
.h6{height:86.115234px;}
.ha{height:96.508125px;}
.h16{height:118.008984px;}
.h10{height:365.580000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:13.500000px;}
.w6{width:18.000000px;}
.w5{width:248.400000px;}
.w4{width:465.480000px;}
.w3{width:692.280000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x12{left:1.440000px;}
.x11{left:10.875000px;}
.xc{left:29.376000px;}
.xa{left:57.600000px;}
.xb{left:97.200000px;}
.x4{left:135.036000px;}
.x6{left:149.616000px;}
.x17{left:182.370000px;}
.x1{left:185.970000px;}
.x13{left:225.750000px;}
.xd{left:257.610000px;}
.x9{left:260.535000px;}
.x8{left:303.195000px;}
.x7{left:313.635000px;}
.x3{left:322.455000px;}
.x2{left:331.815000px;}
.xe{left:346.245000px;}
.x10{left:354.060000px;}
.xf{left:364.935000px;}
.x16{left:409.395000px;}
.x15{left:437.400000px;}
.x5{left:439.740000px;}
.x14{left:446.505000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.lsc{letter-spacing:-2.560000pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.256000pt;}
.ls3{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.448000pt;}
.ls9{letter-spacing:0.608000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.800000pt;}
.ws2{word-spacing:-21.280000pt;}
.ws5{word-spacing:-18.720000pt;}
.ws8{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws3{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.wsb{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.440000pt;}
.ws0{word-spacing:-12.320000pt;}
.ws4{word-spacing:0.000000pt;}
._2{margin-left:-8.086400pt;}
._15{margin-left:-6.997333pt;}
._5{margin-left:-6.062080pt;}
._3{margin-left:-4.936960pt;}
._13{margin-left:-3.707520pt;}
._4{margin-left:-2.499840pt;}
._1{margin-left:-1.248000pt;}
._0{width:1.361920pt;}
._18{width:2.496000pt;}
._19{width:3.490987pt;}
._16{width:4.942080pt;}
._9{width:5.866667pt;}
._a{width:6.869333pt;}
._6{width:8.000000pt;}
._7{width:8.970240pt;}
._10{width:10.293760pt;}
._12{width:11.520000pt;}
._14{width:12.611413pt;}
._1b{width:13.696000pt;}
._d{width:14.606080pt;}
._c{width:17.728000pt;}
._8{width:19.008000pt;}
._1e{width:20.544000pt;}
._b{width:21.568000pt;}
._1a{width:23.285333pt;}
._22{width:24.320000pt;}
._23{width:25.500160pt;}
._1f{width:26.496000pt;}
._11{width:27.840000pt;}
._1c{width:28.992000pt;}
._17{width:30.016000pt;}
._e{width:31.680000pt;}
._f{width:32.576000pt;}
._24{width:33.962667pt;}
._1d{width:35.200000pt;}
._28{width:37.994667pt;}
._29{width:39.206827pt;}
._25{width:40.320000pt;}
._20{width:41.422080pt;}
._21{width:42.560000pt;}
._2b{width:44.800000pt;}
._26{width:46.848000pt;}
._27{width:48.636160pt;}
._2a{width:50.944000pt;}
._2d{width:80.704000pt;}
._2c{width:81.600000pt;}
._2e{width:82.597120pt;}
._2f{width:158.336000pt;}
.fs6{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:56.320000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:64.128000pt;}
.fs5{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs8{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.720000pt;}
.y35{bottom:3.840000pt;}
.y1e{bottom:5.693333pt;}
.y30{bottom:8.186667pt;}
.y32{bottom:15.200000pt;}
.y6{bottom:47.680000pt;}
.y5{bottom:50.720000pt;}
.y34{bottom:51.840000pt;}
.y1c{bottom:54.653333pt;}
.y65{bottom:101.120000pt;}
.y96{bottom:106.560000pt;}
.y64{bottom:119.520000pt;}
.y95{bottom:124.960000pt;}
.y63{bottom:137.920000pt;}
.y94{bottom:143.040000pt;}
.ya0{bottom:143.360000pt;}
.y62{bottom:156.320000pt;}
.y93{bottom:161.440000pt;}
.y9f{bottom:161.760000pt;}
.y61{bottom:174.720000pt;}
.ya9{bottom:179.840000pt;}
.y92{bottom:180.160000pt;}
.y60{bottom:193.146667pt;}
.y91{bottom:198.586667pt;}
.y5f{bottom:211.546667pt;}
.y90{bottom:216.986667pt;}
.y5e{bottom:229.946667pt;}
.y8f{bottom:235.386667pt;}
.y5d{bottom:248.346667pt;}
.ya8{bottom:253.466667pt;}
.y8e{bottom:253.786667pt;}
.y5c{bottom:266.746667pt;}
.ya7{bottom:271.866667pt;}
.y8d{bottom:272.186667pt;}
.y5b{bottom:285.146667pt;}
.y8c{bottom:290.266667pt;}
.y9e{bottom:290.586667pt;}
.y5a{bottom:303.546667pt;}
.y8b{bottom:308.666667pt;}
.y9d{bottom:308.986667pt;}
.y59{bottom:321.946667pt;}
.y8a{bottom:327.386667pt;}
.y2f{bottom:337.120000pt;}
.y58{bottom:340.346667pt;}
.y89{bottom:345.786667pt;}
.y57{bottom:358.746667pt;}
.ya6{bottom:363.866667pt;}
.y88{bottom:364.186667pt;}
.y2e{bottom:367.066667pt;}
.y56{bottom:377.146667pt;}
.ya5{bottom:382.266667pt;}
.y87{bottom:382.586667pt;}
.y2d{bottom:385.466667pt;}
.y55{bottom:395.586667pt;}
.y86{bottom:401.026667pt;}
.y2c{bottom:403.906667pt;}
.y54{bottom:413.986667pt;}
.y85{bottom:419.426667pt;}
.y2b{bottom:422.306667pt;}
.y53{bottom:432.386667pt;}
.y84{bottom:437.826667pt;}
.y2a{bottom:440.386667pt;}
.y52{bottom:450.786667pt;}
.y83{bottom:456.226667pt;}
.y29{bottom:458.786667pt;}
.y51{bottom:469.186667pt;}
.y82{bottom:474.626667pt;}
.y28{bottom:477.506667pt;}
.y50{bottom:487.586667pt;}
.ya4{bottom:492.706667pt;}
.y81{bottom:493.026667pt;}
.y27{bottom:495.906667pt;}
.y4f{bottom:505.986667pt;}
.ya3{bottom:511.106667pt;}
.y80{bottom:511.426667pt;}
.y26{bottom:514.306667pt;}
.y4e{bottom:524.066667pt;}
.y7f{bottom:529.826667pt;}
.y25{bottom:532.386667pt;}
.y4d{bottom:542.466667pt;}
.y7e{bottom:548.226667pt;}
.y24{bottom:550.786667pt;}
.y4c{bottom:561.186667pt;}
.y7d{bottom:566.626667pt;}
.y23{bottom:569.346667pt;}
.y4b{bottom:579.266667pt;}
.y7c{bottom:585.026667pt;}
.y22{bottom:587.746667pt;}
.y4a{bottom:597.986667pt;}
.y7b{bottom:603.453333pt;}
.y21{bottom:606.146667pt;}
.y49{bottom:616.413333pt;}
.ya2{bottom:621.533333pt;}
.y7a{bottom:621.853333pt;}
.y20{bottom:624.573333pt;}
.y48{bottom:634.813333pt;}
.ya1{bottom:639.933333pt;}
.y79{bottom:640.253333pt;}
.y1f{bottom:642.653333pt;}
.y47{bottom:653.213333pt;}
.y9c{bottom:658.333333pt;}
.y78{bottom:658.653333pt;}
.y46{bottom:671.613333pt;}
.y9b{bottom:676.733333pt;}
.y77{bottom:677.053333pt;}
.y45{bottom:690.013333pt;}
.y76{bottom:695.453333pt;}
.y44{bottom:708.413333pt;}
.y75{bottom:713.853333pt;}
.y1b{bottom:724.480000pt;}
.y43{bottom:726.813333pt;}
.y74{bottom:732.253333pt;}
.y42{bottom:745.213333pt;}
.yad{bottom:750.333333pt;}
.y73{bottom:750.653333pt;}
.y1d{bottom:754.653333pt;}
.y41{bottom:763.613333pt;}
.yac{bottom:768.733333pt;}
.y72{bottom:769.053333pt;}
.y14{bottom:771.933333pt;}
.y40{bottom:782.013333pt;}
.y71{bottom:787.453333pt;}
.y13{bottom:788.093333pt;}
.y3f{bottom:800.413333pt;}
.y12{bottom:804.093333pt;}
.y70{bottom:805.853333pt;}
.y3e{bottom:818.853333pt;}
.y11{bottom:820.293333pt;}
.y6f{bottom:824.293333pt;}
.y10{bottom:836.453333pt;}
.y3d{bottom:837.253333pt;}
.y6e{bottom:842.373333pt;}
.y9a{bottom:842.693333pt;}
.yf{bottom:852.453333pt;}
.y3c{bottom:855.653333pt;}
.y6d{bottom:860.773333pt;}
.y99{bottom:861.093333pt;}
.ye{bottom:868.613333pt;}
.y3b{bottom:874.053333pt;}
.y98{bottom:879.173333pt;}
.y6c{bottom:879.493333pt;}
.yd{bottom:884.773333pt;}
.y1a{bottom:890.373333pt;}
.y3a{bottom:892.453333pt;}
.y97{bottom:897.573333pt;}
.y6b{bottom:897.893333pt;}
.yc{bottom:900.773333pt;}
.y19{bottom:907.973333pt;}
.y39{bottom:913.093333pt;}
.y6a{bottom:916.293333pt;}
.yb{bottom:916.933333pt;}
.y18{bottom:926.213333pt;}
.ya{bottom:932.933333pt;}
.yab{bottom:934.373333pt;}
.y69{bottom:934.693333pt;}
.y38{bottom:940.933333pt;}
.y66{bottom:941.093333pt;}
.y9{bottom:949.093333pt;}
.y17{bottom:951.013333pt;}
.yaa{bottom:952.773333pt;}
.y68{bottom:953.093333pt;}
.y37{bottom:957.093333pt;}
.y8{bottom:966.213333pt;}
.y67{bottom:971.493333pt;}
.y36{bottom:973.253333pt;}
.y16{bottom:978.053333pt;}
.y4{bottom:990.053333pt;}
.y15{bottom:1005.093333pt;}
.y3{bottom:1006.693333pt;}
.y2{bottom:1030.720000pt;}
.y1{bottom:1054.880000pt;}
.y31{bottom:1068.320000pt;}
.y33{bottom:1083.520000pt;}
.h4{height:13.760000pt;}
.h15{height:18.400000pt;}
.h12{height:45.760000pt;}
.hd{height:46.281250pt;}
.h3{height:47.109375pt;}
.h7{height:47.687500pt;}
.h5{height:55.275000pt;}
.hb{height:55.428750pt;}
.h9{height:60.057813pt;}
.h13{height:61.900312pt;}
.he{height:62.812500pt;}
.hf{height:62.938125pt;}
.hc{height:64.500000pt;}
.h2{height:67.871563pt;}
.h14{height:73.490625pt;}
.h8{height:75.360000pt;}
.h11{height:75.465000pt;}
.h6{height:76.546875pt;}
.ha{height:85.785000pt;}
.h16{height:104.896875pt;}
.h10{height:324.960000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:12.000000pt;}
.w6{width:16.000000pt;}
.w5{width:220.800000pt;}
.w4{width:413.760000pt;}
.w3{width:615.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x12{left:1.280000pt;}
.x11{left:9.666667pt;}
.xc{left:26.112000pt;}
.xa{left:51.200000pt;}
.xb{left:86.400000pt;}
.x4{left:120.032000pt;}
.x6{left:132.992000pt;}
.x17{left:162.106667pt;}
.x1{left:165.306667pt;}
.x13{left:200.666667pt;}
.xd{left:228.986667pt;}
.x9{left:231.586667pt;}
.x8{left:269.506667pt;}
.x7{left:278.786667pt;}
.x3{left:286.626667pt;}
.x2{left:294.946667pt;}
.xe{left:307.773333pt;}
.x10{left:314.720000pt;}
.xf{left:324.386667pt;}
.x16{left:363.906667pt;}
.x15{left:388.800000pt;}
.x5{left:390.880000pt;}
.x14{left:396.893333pt;}
}




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