
    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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_245c9d157226b093534284a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.933105;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_46a3c5e1d093a3d5a3ec45d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_9de50556cda0bfb2a1af1771.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_075696850e839e7bbf1163f2.woff2')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_0b6049bba8a88f974609e81d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957520;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_899cabea4ebf53f468fd51dd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.719238;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_dbbd1135b1a6d34d44e96171.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.912109;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_58812f24021bdfd3ba2cfb14.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5d31ef48da88676593ccf43b.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsa{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.034560px;}
.ls6{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.lsb{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls9{letter-spacing:0.259800px;}
.ls8{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws6{word-spacing:-16.865400px;}
.wsb{word-spacing:-16.669200px;}
.ws7{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.488000px;}
.ws3{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws8{word-spacing:-11.700000px;}
.ws5{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._c{margin-left:-4.241520px;}
._a{margin-left:-2.510640px;}
._0{margin-left:-1.254240px;}
._2{width:1.374480px;}
._9{width:2.390400px;}
._7{width:3.466080px;}
._8{width:4.482000px;}
._12{width:6.068640px;}
._d{width:7.356720px;}
._5{width:8.366400px;}
._6{width:9.400800px;}
._15{width:10.524480px;}
._3{width:11.593440px;}
._b{width:13.446000px;}
._13{width:14.508720px;}
._14{width:15.551280px;}
._4{width:18.406080px;}
._f{width:20.269440px;}
._10{width:21.316320px;}
._11{width:23.064480px;}
._1b{width:24.467520px;}
._16{width:25.634880px;}
._17{width:26.760960px;}
._18{width:28.147680px;}
._19{width:29.154240px;}
._1a{width:37.028160px;}
._e{width:47.400960px;}
._1d{width:152.525760px;}
._1c{width:153.610560px;}
._1{width:1416.148800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:4.860000px;}
.y5{bottom:62.280000px;}
.y76{bottom:110.376000px;}
.y7c{bottom:113.796000px;}
.y75{bottom:124.236000px;}
.y74{bottom:128.736000px;}
.y85{bottom:131.436000px;}
.y7b{bottom:135.576000px;}
.y73{bottom:137.916000px;}
.y9a{bottom:140.436000px;}
.y72{bottom:142.416000px;}
.y71{bottom:151.770000px;}
.y84{bottom:153.210000px;}
.y70{bottom:156.270000px;}
.y7a{bottom:157.350000px;}
.y3d{bottom:162.390000px;}
.y6f{bottom:165.630000px;}
.ybe{bottom:174.090000px;}
.y83{bottom:175.170000px;}
.y79{bottom:179.130000px;}
.y6e{bottom:179.310000px;}
.y99{bottom:181.830000px;}
.y6d{bottom:183.810000px;}
.y3c{bottom:184.350000px;}
.y82{bottom:193.530000px;}
.y6c{bottom:195.510000px;}
.ybd{bottom:195.870000px;}
.y78{bottom:201.090000px;}
.y98{bottom:203.790000px;}
.y3b{bottom:206.130000px;}
.ybc{bottom:217.650000px;}
.y77{bottom:222.870000px;}
.y3a{bottom:225.210000px;}
.y97{bottom:225.570000px;}
.ybb{bottom:239.430000px;}
.y39{bottom:243.030000px;}
.y6a{bottom:244.650000px;}
.y96{bottom:247.350000px;}
.y6b{bottom:250.590000px;}
.y38{bottom:256.890000px;}
.yba{bottom:261.390000px;}
.y69{bottom:266.430000px;}
.y95{bottom:269.130000px;}
.y37{bottom:271.470000px;}
.yb9{bottom:283.170000px;}
.y68{bottom:288.210000px;}
.y36{bottom:288.570000px;}
.y94{bottom:291.090000px;}
.yb8{bottom:304.950000px;}
.y35{bottom:305.850000px;}
.y67{bottom:310.170000px;}
.y93{bottom:312.870000px;}
.y34{bottom:323.130000px;}
.yb7{bottom:326.730000px;}
.y66{bottom:331.950000px;}
.y92{bottom:334.650000px;}
.y33{bottom:340.455000px;}
.yb6{bottom:348.555000px;}
.y65{bottom:353.775000px;}
.y91{bottom:356.475000px;}
.y32{bottom:357.735000px;}
.yb4{bottom:370.515000px;}
.y31{bottom:375.015000px;}
.y64{bottom:375.555000px;}
.yb5{bottom:376.455000px;}
.y90{bottom:378.255000px;}
.y30{bottom:392.115000px;}
.yb3{bottom:392.295000px;}
.y63{bottom:397.515000px;}
.y8f{bottom:400.215000px;}
.y2f{bottom:409.395000px;}
.yb2{bottom:414.075000px;}
.y62{bottom:419.295000px;}
.y8e{bottom:421.995000px;}
.y2e{bottom:426.675000px;}
.yb1{bottom:435.855000px;}
.y61{bottom:441.075000px;}
.y8d{bottom:443.775000px;}
.y2d{bottom:443.955000px;}
.yb0{bottom:457.815000px;}
.y2c{bottom:461.235000px;}
.y60{bottom:462.855000px;}
.y8c{bottom:465.555000px;}
.y2b{bottom:478.335000px;}
.yaf{bottom:479.595000px;}
.y5f{bottom:484.635000px;}
.y8b{bottom:487.335000px;}
.y2a{bottom:495.615000px;}
.yae{bottom:501.375000px;}
.y81{bottom:503.895000px;}
.y5e{bottom:506.595000px;}
.y8a{bottom:509.295000px;}
.y29{bottom:512.895000px;}
.yad{bottom:523.155000px;}
.y80{bottom:525.675000px;}
.y5d{bottom:528.375000px;}
.y28{bottom:530.175000px;}
.y89{bottom:531.075000px;}
.y7f{bottom:544.035000px;}
.yac{bottom:544.935000px;}
.y27{bottom:547.455000px;}
.y5c{bottom:550.155000px;}
.y88{bottom:552.855000px;}
.y26{bottom:564.735000px;}
.yab{bottom:566.895000px;}
.y5a{bottom:571.935000px;}
.y87{bottom:574.635000px;}
.y5b{bottom:577.875000px;}
.y25{bottom:581.835000px;}
.yaa{bottom:588.675000px;}
.y59{bottom:593.895000px;}
.y24{bottom:599.115000px;}
.ya9{bottom:610.485000px;}
.y58{bottom:615.705000px;}
.y23{bottom:616.425000px;}
.ya8{bottom:632.265000px;}
.y22{bottom:633.705000px;}
.y57{bottom:637.485000px;}
.y21{bottom:650.985000px;}
.ya7{bottom:654.225000px;}
.y56{bottom:659.265000px;}
.ybf{bottom:665.205000px;}
.y20{bottom:668.265000px;}
.ya6{bottom:676.005000px;}
.y55{bottom:681.045000px;}
.y1f{bottom:685.365000px;}
.ya5{bottom:697.785000px;}
.y1e{bottom:702.645000px;}
.y54{bottom:703.005000px;}
.ya4{bottom:719.565000px;}
.y1d{bottom:719.925000px;}
.y53{bottom:724.785000px;}
.y1c{bottom:737.205000px;}
.ya3{bottom:741.345000px;}
.y52{bottom:746.565000px;}
.y1b{bottom:754.485000px;}
.ya2{bottom:763.305000px;}
.y51{bottom:768.345000px;}
.y1a{bottom:771.765000px;}
.ya1{bottom:785.085000px;}
.y19{bottom:788.865000px;}
.y50{bottom:790.125000px;}
.y18{bottom:806.145000px;}
.ya0{bottom:806.865000px;}
.y4f{bottom:812.085000px;}
.y7e{bottom:818.025000px;}
.y17{bottom:823.425000px;}
.y9f{bottom:828.645000px;}
.y4e{bottom:833.865000px;}
.y16{bottom:840.705000px;}
.y9e{bottom:850.605000px;}
.y4d{bottom:855.645000px;}
.y15{bottom:858.345000px;}
.y9d{bottom:872.430000px;}
.y4c{bottom:877.470000px;}
.y14{bottom:883.230000px;}
.y9c{bottom:894.210000px;}
.y13{bottom:896.370000px;}
.y4b{bottom:899.430000px;}
.y9b{bottom:912.570000px;}
.y12{bottom:915.270000px;}
.y49{bottom:921.210000px;}
.y4a{bottom:927.150000px;}
.y11{bottom:934.350000px;}
.y48{bottom:942.990000px;}
.y10{bottom:953.250000px;}
.y47{bottom:964.770000px;}
.yf{bottom:972.150000px;}
.y46{bottom:986.550000px;}
.ye{bottom:991.590000px;}
.y45{bottom:1008.510000px;}
.yd{bottom:1014.090000px;}
.y44{bottom:1030.290000px;}
.yc{bottom:1036.590000px;}
.y43{bottom:1052.070000px;}
.yb{bottom:1057.290000px;}
.ya{bottom:1071.870000px;}
.y42{bottom:1073.850000px;}
.y86{bottom:1079.790000px;}
.y9{bottom:1089.150000px;}
.y41{bottom:1095.810000px;}
.y7d{bottom:1101.750000px;}
.y8{bottom:1106.430000px;}
.y40{bottom:1117.590000px;}
.y7{bottom:1123.530000px;}
.y3e{bottom:1139.400000px;}
.y6{bottom:1140.840000px;}
.y3f{bottom:1145.340000px;}
.y4{bottom:1168.200000px;}
.y2{bottom:1185.300000px;}
.y1{bottom:1212.120000px;}
.h3{height:21.960000px;}
.h12{height:26.533828px;}
.h7{height:34.036523px;}
.he{height:36.641953px;}
.h6{height:42.164648px;}
.h5{height:42.327773px;}
.hf{height:46.736719px;}
.hb{height:47.998125px;}
.h10{height:49.255313px;}
.h11{height:52.435898px;}
.hc{height:53.224453px;}
.h4{height:54.421875px;}
.ha{height:54.596250px;}
.h8{height:54.864844px;}
.h9{height:56.345625px;}
.hd{height:58.121719px;}
.h2{height:71.613281px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:82.620000px;}
.w4{width:605.985000px;}
.w5{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.035987px;}
.x19{left:111.815987px;}
.x2e{left:115.595987px;}
.x8{left:119.735987px;}
.x5{left:124.235987px;}
.x6{left:126.395987px;}
.x24{left:136.835987px;}
.x2f{left:140.075987px;}
.x2d{left:150.509987px;}
.xf{left:162.029987px;}
.x12{left:167.069973px;}
.x13{left:172.289987px;}
.xb{left:187.049987px;}
.x3{left:190.650000px;}
.x1a{left:206.489973px;}
.x1b{left:211.709987px;}
.x20{left:218.189987px;}
.x9{left:227.909987px;}
.xc{left:282.134987px;}
.xa{left:286.814987px;}
.x27{left:294.554987px;}
.x22{left:358.274987px;}
.x1e{left:365.474973px;}
.x18{left:366.554987px;}
.x1f{left:370.694987px;}
.x7{left:376.094987px;}
.x25{left:380.234973px;}
.x26{left:385.454987px;}
.xd{left:418.574987px;}
.xe{left:420.194987px;}
.x2a{left:431.174973px;}
.x2b{left:436.394987px;}
.x4{left:446.474987px;}
.x28{left:473.504987px;}
.x1c{left:585.104973px;}
.x1d{left:590.324987px;}
.x23{left:605.084987px;}
.x29{left:607.424987px;}
.x14{left:615.344973px;}
.x16{left:618.584973px;}
.x15{left:620.564987px;}
.x17{left:623.804987px;}
.x21{left:628.844987px;}
.x10{left:672.989973px;}
.x11{left:678.209987px;}
.x2c{left:689.009987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.030720pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.lsb{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls9{letter-spacing:0.230933pt;}
.ls8{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.wsa{word-spacing:-58.880000pt;}
.ws6{word-spacing:-14.991467pt;}
.wsb{word-spacing:-14.817067pt;}
.ws7{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.656000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws8{word-spacing:-10.400000pt;}
.ws5{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._c{margin-left:-3.770240pt;}
._a{margin-left:-2.231680pt;}
._0{margin-left:-1.114880pt;}
._2{width:1.221760pt;}
._9{width:2.124800pt;}
._7{width:3.080960pt;}
._8{width:3.984000pt;}
._12{width:5.394347pt;}
._d{width:6.539307pt;}
._5{width:7.436800pt;}
._6{width:8.356267pt;}
._15{width:9.355093pt;}
._3{width:10.305280pt;}
._b{width:11.952000pt;}
._13{width:12.896640pt;}
._14{width:13.823360pt;}
._4{width:16.360960pt;}
._f{width:18.017280pt;}
._10{width:18.947840pt;}
._11{width:20.501760pt;}
._1b{width:21.748907pt;}
._16{width:22.786560pt;}
._17{width:23.787520pt;}
._18{width:25.020160pt;}
._19{width:25.914880pt;}
._1a{width:32.913920pt;}
._e{width:42.134187pt;}
._1d{width:135.578453pt;}
._1c{width:136.542720pt;}
._1{width:1258.798933pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:4.320000pt;}
.y5{bottom:55.360000pt;}
.y76{bottom:98.112000pt;}
.y7c{bottom:101.152000pt;}
.y75{bottom:110.432000pt;}
.y74{bottom:114.432000pt;}
.y85{bottom:116.832000pt;}
.y7b{bottom:120.512000pt;}
.y73{bottom:122.592000pt;}
.y9a{bottom:124.832000pt;}
.y72{bottom:126.592000pt;}
.y71{bottom:134.906667pt;}
.y84{bottom:136.186667pt;}
.y70{bottom:138.906667pt;}
.y7a{bottom:139.866667pt;}
.y3d{bottom:144.346667pt;}
.y6f{bottom:147.226667pt;}
.ybe{bottom:154.746667pt;}
.y83{bottom:155.706667pt;}
.y79{bottom:159.226667pt;}
.y6e{bottom:159.386667pt;}
.y99{bottom:161.626667pt;}
.y6d{bottom:163.386667pt;}
.y3c{bottom:163.866667pt;}
.y82{bottom:172.026667pt;}
.y6c{bottom:173.786667pt;}
.ybd{bottom:174.106667pt;}
.y78{bottom:178.746667pt;}
.y98{bottom:181.146667pt;}
.y3b{bottom:183.226667pt;}
.ybc{bottom:193.466667pt;}
.y77{bottom:198.106667pt;}
.y3a{bottom:200.186667pt;}
.y97{bottom:200.506667pt;}
.ybb{bottom:212.826667pt;}
.y39{bottom:216.026667pt;}
.y6a{bottom:217.466667pt;}
.y96{bottom:219.866667pt;}
.y6b{bottom:222.746667pt;}
.y38{bottom:228.346667pt;}
.yba{bottom:232.346667pt;}
.y69{bottom:236.826667pt;}
.y95{bottom:239.226667pt;}
.y37{bottom:241.306667pt;}
.yb9{bottom:251.706667pt;}
.y68{bottom:256.186667pt;}
.y36{bottom:256.506667pt;}
.y94{bottom:258.746667pt;}
.yb8{bottom:271.066667pt;}
.y35{bottom:271.866667pt;}
.y67{bottom:275.706667pt;}
.y93{bottom:278.106667pt;}
.y34{bottom:287.226667pt;}
.yb7{bottom:290.426667pt;}
.y66{bottom:295.066667pt;}
.y92{bottom:297.466667pt;}
.y33{bottom:302.626667pt;}
.yb6{bottom:309.826667pt;}
.y65{bottom:314.466667pt;}
.y91{bottom:316.866667pt;}
.y32{bottom:317.986667pt;}
.yb4{bottom:329.346667pt;}
.y31{bottom:333.346667pt;}
.y64{bottom:333.826667pt;}
.yb5{bottom:334.626667pt;}
.y90{bottom:336.226667pt;}
.y30{bottom:348.546667pt;}
.yb3{bottom:348.706667pt;}
.y63{bottom:353.346667pt;}
.y8f{bottom:355.746667pt;}
.y2f{bottom:363.906667pt;}
.yb2{bottom:368.066667pt;}
.y62{bottom:372.706667pt;}
.y8e{bottom:375.106667pt;}
.y2e{bottom:379.266667pt;}
.yb1{bottom:387.426667pt;}
.y61{bottom:392.066667pt;}
.y8d{bottom:394.466667pt;}
.y2d{bottom:394.626667pt;}
.yb0{bottom:406.946667pt;}
.y2c{bottom:409.986667pt;}
.y60{bottom:411.426667pt;}
.y8c{bottom:413.826667pt;}
.y2b{bottom:425.186667pt;}
.yaf{bottom:426.306667pt;}
.y5f{bottom:430.786667pt;}
.y8b{bottom:433.186667pt;}
.y2a{bottom:440.546667pt;}
.yae{bottom:445.666667pt;}
.y81{bottom:447.906667pt;}
.y5e{bottom:450.306667pt;}
.y8a{bottom:452.706667pt;}
.y29{bottom:455.906667pt;}
.yad{bottom:465.026667pt;}
.y80{bottom:467.266667pt;}
.y5d{bottom:469.666667pt;}
.y28{bottom:471.266667pt;}
.y89{bottom:472.066667pt;}
.y7f{bottom:483.586667pt;}
.yac{bottom:484.386667pt;}
.y27{bottom:486.626667pt;}
.y5c{bottom:489.026667pt;}
.y88{bottom:491.426667pt;}
.y26{bottom:501.986667pt;}
.yab{bottom:503.906667pt;}
.y5a{bottom:508.386667pt;}
.y87{bottom:510.786667pt;}
.y5b{bottom:513.666667pt;}
.y25{bottom:517.186667pt;}
.yaa{bottom:523.266667pt;}
.y59{bottom:527.906667pt;}
.y24{bottom:532.546667pt;}
.ya9{bottom:542.653333pt;}
.y58{bottom:547.293333pt;}
.y23{bottom:547.933333pt;}
.ya8{bottom:562.013333pt;}
.y22{bottom:563.293333pt;}
.y57{bottom:566.653333pt;}
.y21{bottom:578.653333pt;}
.ya7{bottom:581.533333pt;}
.y56{bottom:586.013333pt;}
.ybf{bottom:591.293333pt;}
.y20{bottom:594.013333pt;}
.ya6{bottom:600.893333pt;}
.y55{bottom:605.373333pt;}
.y1f{bottom:609.213333pt;}
.ya5{bottom:620.253333pt;}
.y1e{bottom:624.573333pt;}
.y54{bottom:624.893333pt;}
.ya4{bottom:639.613333pt;}
.y1d{bottom:639.933333pt;}
.y53{bottom:644.253333pt;}
.y1c{bottom:655.293333pt;}
.ya3{bottom:658.973333pt;}
.y52{bottom:663.613333pt;}
.y1b{bottom:670.653333pt;}
.ya2{bottom:678.493333pt;}
.y51{bottom:682.973333pt;}
.y1a{bottom:686.013333pt;}
.ya1{bottom:697.853333pt;}
.y19{bottom:701.213333pt;}
.y50{bottom:702.333333pt;}
.y18{bottom:716.573333pt;}
.ya0{bottom:717.213333pt;}
.y4f{bottom:721.853333pt;}
.y7e{bottom:727.133333pt;}
.y17{bottom:731.933333pt;}
.y9f{bottom:736.573333pt;}
.y4e{bottom:741.213333pt;}
.y16{bottom:747.293333pt;}
.y9e{bottom:756.093333pt;}
.y4d{bottom:760.573333pt;}
.y15{bottom:762.973333pt;}
.y9d{bottom:775.493333pt;}
.y4c{bottom:779.973333pt;}
.y14{bottom:785.093333pt;}
.y9c{bottom:794.853333pt;}
.y13{bottom:796.773333pt;}
.y4b{bottom:799.493333pt;}
.y9b{bottom:811.173333pt;}
.y12{bottom:813.573333pt;}
.y49{bottom:818.853333pt;}
.y4a{bottom:824.133333pt;}
.y11{bottom:830.533333pt;}
.y48{bottom:838.213333pt;}
.y10{bottom:847.333333pt;}
.y47{bottom:857.573333pt;}
.yf{bottom:864.133333pt;}
.y46{bottom:876.933333pt;}
.ye{bottom:881.413333pt;}
.y45{bottom:896.453333pt;}
.yd{bottom:901.413333pt;}
.y44{bottom:915.813333pt;}
.yc{bottom:921.413333pt;}
.y43{bottom:935.173333pt;}
.yb{bottom:939.813333pt;}
.ya{bottom:952.773333pt;}
.y42{bottom:954.533333pt;}
.y86{bottom:959.813333pt;}
.y9{bottom:968.133333pt;}
.y41{bottom:974.053333pt;}
.y7d{bottom:979.333333pt;}
.y8{bottom:983.493333pt;}
.y40{bottom:993.413333pt;}
.y7{bottom:998.693333pt;}
.y3e{bottom:1012.800000pt;}
.y6{bottom:1014.080000pt;}
.y3f{bottom:1018.080000pt;}
.y4{bottom:1038.400000pt;}
.y2{bottom:1053.600000pt;}
.y1{bottom:1077.440000pt;}
.h3{height:19.520000pt;}
.h12{height:23.585625pt;}
.h7{height:30.254687pt;}
.he{height:32.570625pt;}
.h6{height:37.479688pt;}
.h5{height:37.624687pt;}
.hf{height:41.543750pt;}
.hb{height:42.665000pt;}
.h10{height:43.782500pt;}
.h11{height:46.609688pt;}
.hc{height:47.310625pt;}
.h4{height:48.375000pt;}
.ha{height:48.530000pt;}
.h8{height:48.768750pt;}
.h9{height:50.085000pt;}
.hd{height:51.663750pt;}
.h2{height:63.656250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:73.440000pt;}
.w4{width:538.653333pt;}
.w5{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.031988pt;}
.x19{left:99.391988pt;}
.x2e{left:102.751988pt;}
.x8{left:106.431988pt;}
.x5{left:110.431988pt;}
.x6{left:112.351988pt;}
.x24{left:121.631988pt;}
.x2f{left:124.511988pt;}
.x2d{left:133.786655pt;}
.xf{left:144.026655pt;}
.x12{left:148.506643pt;}
.x13{left:153.146655pt;}
.xb{left:166.266655pt;}
.x3{left:169.466667pt;}
.x1a{left:183.546643pt;}
.x1b{left:188.186655pt;}
.x20{left:193.946655pt;}
.x9{left:202.586655pt;}
.xc{left:250.786655pt;}
.xa{left:254.946655pt;}
.x27{left:261.826655pt;}
.x22{left:318.466655pt;}
.x1e{left:324.866643pt;}
.x18{left:325.826655pt;}
.x1f{left:329.506655pt;}
.x7{left:334.306655pt;}
.x25{left:337.986643pt;}
.x26{left:342.626655pt;}
.xd{left:372.066655pt;}
.xe{left:373.506655pt;}
.x2a{left:383.266643pt;}
.x2b{left:387.906655pt;}
.x4{left:396.866655pt;}
.x28{left:420.893322pt;}
.x1c{left:520.093310pt;}
.x1d{left:524.733322pt;}
.x23{left:537.853322pt;}
.x29{left:539.933322pt;}
.x14{left:546.973310pt;}
.x16{left:549.853310pt;}
.x15{left:551.613322pt;}
.x17{left:554.493322pt;}
.x21{left:558.973322pt;}
.x10{left:598.213310pt;}
.x11{left:602.853322pt;}
.x2c{left:612.453322pt;}
}




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