
    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_739cc0ca5d5cc7374d134d3e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a2a5eb7f0af4c43115404dae.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b7db4cb2d6a54e9cdc335a5d.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_4dc6ddecae8856ab182b46b0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b51fd7b570fc2460fffe3706.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.767090;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_50dc3f5b51ff4a5a777073e2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.136230;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_41ca1fa5f0ee3356779d780a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136230;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_b93257a97b0956ff65df76d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940430;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_e0d38ad414e9de1e153479a4.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f611c98257522787d940d636.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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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;}
.ls7{letter-spacing:-3.096000px;}
.lsd{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.496200px;}
.ls5{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.223800px;}
.lsb{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.ls3{letter-spacing:9.360000px;}
.lsc{letter-spacing:39.881280px;}
.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:-19.431360px;}
.ws4{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.840000px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws5{word-spacing:-13.500000px;}
.ws8{word-spacing:-12.283800px;}
.ws6{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.563800px;}
.ws3{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._8{margin-left:-8.588160px;}
._1{margin-left:-6.755760px;}
._6{margin-left:-5.402160px;}
._9{margin-left:-4.331760px;}
._5{margin-left:-3.312000px;}
._4{margin-left:-2.222640px;}
._0{margin-left:-1.192320px;}
._2{width:1.015920px;}
._19{width:2.031120px;}
._3{width:3.050400px;}
._7{width:4.183920px;}
._f{width:5.335920px;}
._b{width:6.555840px;}
._a{width:8.071200px;}
._11{width:9.101520px;}
._1b{width:10.200960px;}
._d{width:11.702880px;}
._1a{width:13.199280px;}
._c{width:14.518560px;}
._10{width:15.953760px;}
._15{width:17.604000px;}
._14{width:18.900000px;}
._25{width:20.425680px;}
._28{width:21.432240px;}
._17{width:22.455360px;}
._16{width:23.815920px;}
._18{width:25.722720px;}
._e{width:26.780640px;}
._1d{width:28.814400px;}
._1e{width:29.942160px;}
._1c{width:31.079280px;}
._20{width:32.325120px;}
._21{width:33.384960px;}
._22{width:34.407600px;}
._1f{width:37.028160px;}
._2b{width:38.120400px;}
._12{width:39.150000px;}
._24{width:40.406400px;}
._23{width:41.900400px;}
._29{width:43.350480px;}
._13{width:46.008000px;}
._27{width:47.295360px;}
._26{width:48.355200px;}
._2c{width:49.518000px;}
._2a{width:115.522560px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y34{bottom:2.880000px;}
.y2{bottom:6.510000px;}
.y3d{bottom:9.900000px;}
.y3e{bottom:11.340000px;}
.y33{bottom:18.360000px;}
.y5{bottom:27.210000px;}
.y8{bottom:29.010000px;}
.y32{bottom:33.840000px;}
.y4{bottom:44.490000px;}
.y7{bottom:46.110000px;}
.y31{bottom:49.500000px;}
.ya{bottom:56.340000px;}
.y3{bottom:62.130000px;}
.y6{bottom:63.390000px;}
.y30{bottom:64.980000px;}
.y2f{bottom:80.460000px;}
.y2e{bottom:95.940000px;}
.y4d{bottom:110.376000px;}
.y93{bottom:111.456000px;}
.y2d{bottom:111.600000px;}
.y7c{bottom:114.876000px;}
.y4c{bottom:124.236000px;}
.y2c{bottom:127.080000px;}
.y4b{bottom:128.736000px;}
.y92{bottom:133.236000px;}
.y7b{bottom:137.916000px;}
.y4a{bottom:139.896000px;}
.y7a{bottom:142.416000px;}
.y2b{bottom:142.560000px;}
.y86{bottom:151.770000px;}
.y79{bottom:153.750000px;}
.y91{bottom:155.010000px;}
.y85{bottom:156.270000px;}
.y2a{bottom:158.040000px;}
.y84{bottom:165.630000px;}
.y89{bottom:167.610000px;}
.y8d{bottom:170.130000px;}
.y49{bottom:172.650000px;}
.y29{bottom:173.700000px;}
.y78{bottom:176.790000px;}
.y83{bottom:179.310000px;}
.y8c{bottom:181.290000px;}
.y82{bottom:183.810000px;}
.y28{bottom:189.210000px;}
.y47{bottom:194.430000px;}
.y81{bottom:195.150000px;}
.y77{bottom:198.750000px;}
.y48{bottom:200.370000px;}
.y27{bottom:204.690000px;}
.y46{bottom:216.390000px;}
.y26{bottom:220.170000px;}
.y76{bottom:220.530000px;}
.y25{bottom:235.830000px;}
.y45{bottom:238.170000px;}
.y75{bottom:242.310000px;}
.y24{bottom:251.310000px;}
.y44{bottom:259.950000px;}
.y74{bottom:264.090000px;}
.y23{bottom:266.790000px;}
.y43{bottom:281.730000px;}
.y22{bottom:282.270000px;}
.y72{bottom:285.870000px;}
.y73{bottom:291.810000px;}
.y3b{bottom:293.970000px;}
.y21{bottom:297.930000px;}
.y42{bottom:303.690000px;}
.y3a{bottom:307.830000px;}
.y20{bottom:313.410000px;}
.y39{bottom:321.690000px;}
.y41{bottom:325.470000px;}
.y1f{bottom:328.890000px;}
.y71{bottom:329.610000px;}
.y38{bottom:335.370000px;}
.y80{bottom:335.550000px;}
.y1e{bottom:344.370000px;}
.y40{bottom:347.295000px;}
.y37{bottom:349.230000px;}
.y70{bottom:351.435000px;}
.y1d{bottom:360.030000px;}
.y36{bottom:363.090000px;}
.y3f{bottom:369.075000px;}
.y6f{bottom:373.215000px;}
.y1c{bottom:375.510000px;}
.y35{bottom:376.770000px;}
.y3c{bottom:384.555000px;}
.y1b{bottom:390.990000px;}
.y6e{bottom:395.175000px;}
.y90{bottom:401.115000px;}
.y1a{bottom:406.470000px;}
.y13{bottom:416.055000px;}
.y6d{bottom:416.955000px;}
.y19{bottom:422.130000px;}
.y88{bottom:422.895000px;}
.y18{bottom:437.610000px;}
.y6c{bottom:438.735000px;}
.y17{bottom:453.090000px;}
.y6b{bottom:460.515000px;}
.y16{bottom:468.615000px;}
.y6a{bottom:482.295000px;}
.y15{bottom:484.275000px;}
.y14{bottom:499.755000px;}
.y69{bottom:504.255000px;}
.y68{bottom:526.035000px;}
.y7d{bottom:531.975000px;}
.y67{bottom:547.815000px;}
.y66{bottom:569.595000px;}
.y65{bottom:591.555000px;}
.y8a{bottom:597.495000px;}
.y64{bottom:613.365000px;}
.y87{bottom:619.305000px;}
.y63{bottom:635.145000px;}
.y62{bottom:656.925000px;}
.y61{bottom:678.705000px;}
.y60{bottom:700.665000px;}
.y5f{bottom:722.445000px;}
.y7f{bottom:728.385000px;}
.y5e{bottom:744.225000px;}
.y8b{bottom:750.165000px;}
.y5d{bottom:766.005000px;}
.y5c{bottom:787.965000px;}
.y5b{bottom:809.745000px;}
.y5a{bottom:831.525000px;}
.y59{bottom:853.305000px;}
.y57{bottom:875.130000px;}
.y58{bottom:881.070000px;}
.y56{bottom:897.090000px;}
.y8f{bottom:903.030000px;}
.y55{bottom:918.870000px;}
.y12{bottom:934.710000px;}
.y54{bottom:940.650000px;}
.y11{bottom:956.490000px;}
.y53{bottom:962.430000px;}
.y7e{bottom:968.370000px;}
.y10{bottom:984.210000px;}
.yf{bottom:1000.230000px;}
.y52{bottom:1006.170000px;}
.y8e{bottom:1012.110000px;}
.ye{bottom:1020.210000px;}
.y51{bottom:1027.950000px;}
.yd{bottom:1039.110000px;}
.y50{bottom:1049.730000px;}
.yc{bottom:1064.850000px;}
.y4f{bottom:1071.510000px;}
.yb{bottom:1090.770000px;}
.y4e{bottom:1093.470000px;}
.y9{bottom:1112.550000px;}
.y1{bottom:1132.350000px;}
.h16{height:21.114844px;}
.hd{height:29.158594px;}
.h13{height:31.500000px;}
.h14{height:33.683203px;}
.hb{height:34.036523px;}
.h10{height:37.705078px;}
.h11{height:38.100586px;}
.h12{height:39.760312px;}
.h3{height:41.726953px;}
.h5{height:42.164648px;}
.hf{height:44.507812px;}
.h7{height:46.251562px;}
.h4{height:46.736719px;}
.h8{height:47.980898px;}
.h18{height:48.224531px;}
.h6{height:49.255313px;}
.hc{height:53.224453px;}
.h17{height:54.596250px;}
.h9{height:54.864844px;}
.ha{height:56.345625px;}
.h15{height:65.884219px;}
.h2{height:77.436000px;}
.he{height:512.355000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:72.000000px;}
.w4{width:209.370000px;}
.w7{width:224.130000px;}
.w8{width:283.530000px;}
.w9{width:391.575000px;}
.w3{width:427.935000px;}
.w6{width:459.075000px;}
.wa{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x12{left:29.520000px;}
.x6{left:46.260000px;}
.x2{left:58.494000px;}
.x7{left:85.725000px;}
.x1{left:99.936000px;}
.x9{left:108.035987px;}
.x8{left:132.345000px;}
.x27{left:135.035987px;}
.x14{left:140.075987px;}
.x18{left:143.855987px;}
.xb{left:144.935987px;}
.x2e{left:147.635987px;}
.x29{left:150.509987px;}
.x28{left:162.029987px;}
.x1b{left:169.949973px;}
.x3{left:171.930000px;}
.x1c{left:175.169987px;}
.x34{left:202.349973px;}
.x35{left:212.789987px;}
.xe{left:265.709987px;}
.x1d{left:270.749973px;}
.x1e{left:275.969987px;}
.x23{left:280.514973px;}
.x24{left:285.734987px;}
.xf{left:310.754987px;}
.x10{left:312.374987px;}
.x39{left:317.054973px;}
.x17{left:324.074987px;}
.x19{left:328.394973px;}
.x1a{left:333.614987px;}
.x2c{left:380.054973px;}
.x2d{left:390.494987px;}
.x13{left:391.575000px;}
.xc{left:405.794987px;}
.x31{left:411.914973px;}
.x32{left:422.354987px;}
.x37{left:441.254973px;}
.xd{left:446.474987px;}
.x38{left:451.694987px;}
.x25{left:480.164973px;}
.x26{left:485.384987px;}
.xa{left:510.224987px;}
.x15{left:540.644973px;}
.x16{left:545.864987px;}
.x11{left:567.105000px;}
.x33{left:577.004973px;}
.x2a{left:587.084973px;}
.x2b{left:597.524987px;}
.x5{left:599.865000px;}
.x1f{left:647.204973px;}
.x20{left:652.424987px;}
.x36{left:654.584973px;}
.x2f{left:665.069973px;}
.x30{left:675.509987px;}
.x21{left:779.909973px;}
.x22{left:785.129987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-2.752000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.441067pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.198933pt;}
.lsb{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls3{letter-spacing:8.320000pt;}
.lsc{letter-spacing:35.450027pt;}
.ws2{word-spacing:-17.272320pt;}
.ws4{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.000000pt;}
.ws8{word-spacing:-10.918933pt;}
.ws6{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.278933pt;}
.ws3{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._8{margin-left:-7.633920pt;}
._1{margin-left:-6.005120pt;}
._6{margin-left:-4.801920pt;}
._9{margin-left:-3.850453pt;}
._5{margin-left:-2.944000pt;}
._4{margin-left:-1.975680pt;}
._0{margin-left:-1.059840pt;}
._2{width:0.903040pt;}
._19{width:1.805440pt;}
._3{width:2.711467pt;}
._7{width:3.719040pt;}
._f{width:4.743040pt;}
._b{width:5.827413pt;}
._a{width:7.174400pt;}
._11{width:8.090240pt;}
._1b{width:9.067520pt;}
._d{width:10.402560pt;}
._1a{width:11.732693pt;}
._c{width:12.905387pt;}
._10{width:14.181120pt;}
._15{width:15.648000pt;}
._14{width:16.800000pt;}
._25{width:18.156160pt;}
._28{width:19.050880pt;}
._17{width:19.960320pt;}
._16{width:21.169707pt;}
._18{width:22.864640pt;}
._e{width:23.805013pt;}
._1d{width:25.612800pt;}
._1e{width:26.615253pt;}
._1c{width:27.626027pt;}
._20{width:28.733440pt;}
._21{width:29.675520pt;}
._22{width:30.584533pt;}
._1f{width:32.913920pt;}
._2b{width:33.884800pt;}
._12{width:34.800000pt;}
._24{width:35.916800pt;}
._23{width:37.244800pt;}
._29{width:38.533760pt;}
._13{width:40.896000pt;}
._27{width:42.040320pt;}
._26{width:42.982400pt;}
._2c{width:44.016000pt;}
._2a{width:102.686720pt;}
.fs6{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.560000pt;}
.y2{bottom:5.786667pt;}
.y3d{bottom:8.800000pt;}
.y3e{bottom:10.080000pt;}
.y33{bottom:16.320000pt;}
.y5{bottom:24.186667pt;}
.y8{bottom:25.786667pt;}
.y32{bottom:30.080000pt;}
.y4{bottom:39.546667pt;}
.y7{bottom:40.986667pt;}
.y31{bottom:44.000000pt;}
.ya{bottom:50.080000pt;}
.y3{bottom:55.226667pt;}
.y6{bottom:56.346667pt;}
.y30{bottom:57.760000pt;}
.y2f{bottom:71.520000pt;}
.y2e{bottom:85.280000pt;}
.y4d{bottom:98.112000pt;}
.y93{bottom:99.072000pt;}
.y2d{bottom:99.200000pt;}
.y7c{bottom:102.112000pt;}
.y4c{bottom:110.432000pt;}
.y2c{bottom:112.960000pt;}
.y4b{bottom:114.432000pt;}
.y92{bottom:118.432000pt;}
.y7b{bottom:122.592000pt;}
.y4a{bottom:124.352000pt;}
.y7a{bottom:126.592000pt;}
.y2b{bottom:126.720000pt;}
.y86{bottom:134.906667pt;}
.y79{bottom:136.666667pt;}
.y91{bottom:137.786667pt;}
.y85{bottom:138.906667pt;}
.y2a{bottom:140.480000pt;}
.y84{bottom:147.226667pt;}
.y89{bottom:148.986667pt;}
.y8d{bottom:151.226667pt;}
.y49{bottom:153.466667pt;}
.y29{bottom:154.400000pt;}
.y78{bottom:157.146667pt;}
.y83{bottom:159.386667pt;}
.y8c{bottom:161.146667pt;}
.y82{bottom:163.386667pt;}
.y28{bottom:168.186667pt;}
.y47{bottom:172.826667pt;}
.y81{bottom:173.466667pt;}
.y77{bottom:176.666667pt;}
.y48{bottom:178.106667pt;}
.y27{bottom:181.946667pt;}
.y46{bottom:192.346667pt;}
.y26{bottom:195.706667pt;}
.y76{bottom:196.026667pt;}
.y25{bottom:209.626667pt;}
.y45{bottom:211.706667pt;}
.y75{bottom:215.386667pt;}
.y24{bottom:223.386667pt;}
.y44{bottom:231.066667pt;}
.y74{bottom:234.746667pt;}
.y23{bottom:237.146667pt;}
.y43{bottom:250.426667pt;}
.y22{bottom:250.906667pt;}
.y72{bottom:254.106667pt;}
.y73{bottom:259.386667pt;}
.y3b{bottom:261.306667pt;}
.y21{bottom:264.826667pt;}
.y42{bottom:269.946667pt;}
.y3a{bottom:273.626667pt;}
.y20{bottom:278.586667pt;}
.y39{bottom:285.946667pt;}
.y41{bottom:289.306667pt;}
.y1f{bottom:292.346667pt;}
.y71{bottom:292.986667pt;}
.y38{bottom:298.106667pt;}
.y80{bottom:298.266667pt;}
.y1e{bottom:306.106667pt;}
.y40{bottom:308.706667pt;}
.y37{bottom:310.426667pt;}
.y70{bottom:312.386667pt;}
.y1d{bottom:320.026667pt;}
.y36{bottom:322.746667pt;}
.y3f{bottom:328.066667pt;}
.y6f{bottom:331.746667pt;}
.y1c{bottom:333.786667pt;}
.y35{bottom:334.906667pt;}
.y3c{bottom:341.826667pt;}
.y1b{bottom:347.546667pt;}
.y6e{bottom:351.266667pt;}
.y90{bottom:356.546667pt;}
.y1a{bottom:361.306667pt;}
.y13{bottom:369.826667pt;}
.y6d{bottom:370.626667pt;}
.y19{bottom:375.226667pt;}
.y88{bottom:375.906667pt;}
.y18{bottom:388.986667pt;}
.y6c{bottom:389.986667pt;}
.y17{bottom:402.746667pt;}
.y6b{bottom:409.346667pt;}
.y16{bottom:416.546667pt;}
.y6a{bottom:428.706667pt;}
.y15{bottom:430.466667pt;}
.y14{bottom:444.226667pt;}
.y69{bottom:448.226667pt;}
.y68{bottom:467.586667pt;}
.y7d{bottom:472.866667pt;}
.y67{bottom:486.946667pt;}
.y66{bottom:506.306667pt;}
.y65{bottom:525.826667pt;}
.y8a{bottom:531.106667pt;}
.y64{bottom:545.213333pt;}
.y87{bottom:550.493333pt;}
.y63{bottom:564.573333pt;}
.y62{bottom:583.933333pt;}
.y61{bottom:603.293333pt;}
.y60{bottom:622.813333pt;}
.y5f{bottom:642.173333pt;}
.y7f{bottom:647.453333pt;}
.y5e{bottom:661.533333pt;}
.y8b{bottom:666.813333pt;}
.y5d{bottom:680.893333pt;}
.y5c{bottom:700.413333pt;}
.y5b{bottom:719.773333pt;}
.y5a{bottom:739.133333pt;}
.y59{bottom:758.493333pt;}
.y57{bottom:777.893333pt;}
.y58{bottom:783.173333pt;}
.y56{bottom:797.413333pt;}
.y8f{bottom:802.693333pt;}
.y55{bottom:816.773333pt;}
.y12{bottom:830.853333pt;}
.y54{bottom:836.133333pt;}
.y11{bottom:850.213333pt;}
.y53{bottom:855.493333pt;}
.y7e{bottom:860.773333pt;}
.y10{bottom:874.853333pt;}
.yf{bottom:889.093333pt;}
.y52{bottom:894.373333pt;}
.y8e{bottom:899.653333pt;}
.ye{bottom:906.853333pt;}
.y51{bottom:913.733333pt;}
.yd{bottom:923.653333pt;}
.y50{bottom:933.093333pt;}
.yc{bottom:946.533333pt;}
.y4f{bottom:952.453333pt;}
.yb{bottom:969.573333pt;}
.y4e{bottom:971.973333pt;}
.y9{bottom:988.933333pt;}
.y1{bottom:1006.533333pt;}
.h16{height:18.768750pt;}
.hd{height:25.918750pt;}
.h13{height:28.000000pt;}
.h14{height:29.940625pt;}
.hb{height:30.254687pt;}
.h10{height:33.515625pt;}
.h11{height:33.867188pt;}
.h12{height:35.342500pt;}
.h3{height:37.090625pt;}
.h5{height:37.479688pt;}
.hf{height:39.562500pt;}
.h7{height:41.112500pt;}
.h4{height:41.543750pt;}
.h8{height:42.649687pt;}
.h18{height:42.866250pt;}
.h6{height:43.782500pt;}
.hc{height:47.310625pt;}
.h17{height:48.530000pt;}
.h9{height:48.768750pt;}
.ha{height:50.085000pt;}
.h15{height:58.563750pt;}
.h2{height:68.832000pt;}
.he{height:455.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:64.000000pt;}
.w4{width:186.106667pt;}
.w7{width:199.226667pt;}
.w8{width:252.026667pt;}
.w9{width:348.066667pt;}
.w3{width:380.386667pt;}
.w6{width:408.066667pt;}
.wa{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x12{left:26.240000pt;}
.x6{left:41.120000pt;}
.x2{left:51.994667pt;}
.x7{left:76.200000pt;}
.x1{left:88.832000pt;}
.x9{left:96.031988pt;}
.x8{left:117.640000pt;}
.x27{left:120.031988pt;}
.x14{left:124.511988pt;}
.x18{left:127.871988pt;}
.xb{left:128.831988pt;}
.x2e{left:131.231988pt;}
.x29{left:133.786655pt;}
.x28{left:144.026655pt;}
.x1b{left:151.066643pt;}
.x3{left:152.826667pt;}
.x1c{left:155.706655pt;}
.x34{left:179.866643pt;}
.x35{left:189.146655pt;}
.xe{left:236.186655pt;}
.x1d{left:240.666643pt;}
.x1e{left:245.306655pt;}
.x23{left:249.346643pt;}
.x24{left:253.986655pt;}
.xf{left:276.226655pt;}
.x10{left:277.666655pt;}
.x39{left:281.826643pt;}
.x17{left:288.066655pt;}
.x19{left:291.906643pt;}
.x1a{left:296.546655pt;}
.x2c{left:337.826643pt;}
.x2d{left:347.106655pt;}
.x13{left:348.066667pt;}
.xc{left:360.706655pt;}
.x31{left:366.146643pt;}
.x32{left:375.426655pt;}
.x37{left:392.226643pt;}
.xd{left:396.866655pt;}
.x38{left:401.506655pt;}
.x25{left:426.813310pt;}
.x26{left:431.453322pt;}
.xa{left:453.533322pt;}
.x15{left:480.573310pt;}
.x16{left:485.213322pt;}
.x11{left:504.093333pt;}
.x33{left:512.893310pt;}
.x2a{left:521.853310pt;}
.x2b{left:531.133322pt;}
.x5{left:533.213333pt;}
.x1f{left:575.293310pt;}
.x20{left:579.933322pt;}
.x36{left:581.853310pt;}
.x2f{left:591.173310pt;}
.x30{left:600.453322pt;}
.x21{left:693.253310pt;}
.x22{left:697.893322pt;}
}




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