
    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_41c34caaf6e2c47f6101210e.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_7538e1116e3a77e9755f65bb.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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bf0e0fc82f0c9f840b56704d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_54e7b74ba5ece69861c6dafb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.970703;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_666c8adc452dc1994904d63e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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_795c0a0fc01cf737685d2b5c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.945312;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_ec6415b969f4e39de6ffc8ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.962402;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_87dde16e72f1eceb1a8869b0.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.lse{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.126000px;}
.ls4{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.108000px;}
.ls2{letter-spacing:0.119520px;}
.ls9{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.216000px;}
.lsa{letter-spacing:0.259800px;}
.ls0{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.480000px;}
.lsc{letter-spacing:2.340000px;}
.lsb{letter-spacing:5.220000px;}
.lsf{letter-spacing:6.660000px;}
.ls12{letter-spacing:11.466720px;}
.ls11{letter-spacing:41.682720px;}
.ls10{letter-spacing:46.002720px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.372000px;}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.228000px;}
.ws6{word-spacing:-15.012000px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws2{word-spacing:-13.500000px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-1.321920px;}
._0{width:1.322400px;}
._8{width:2.486880px;}
._2{width:4.245600px;}
._7{width:5.259840px;}
._6{width:6.752880px;}
._c{width:7.952640px;}
._f{width:9.010080px;}
._a{width:10.032000px;}
._b{width:11.086320px;}
._e{width:12.301200px;}
._9{width:13.864320px;}
._13{width:16.314000px;}
._10{width:17.569440px;}
._d{width:19.242720px;}
._11{width:20.856240px;}
._12{width:21.856800px;}
._1c{width:23.067360px;}
._19{width:24.322320px;}
._1d{width:25.875360px;}
._17{width:28.617360px;}
._16{width:29.760480px;}
._18{width:30.761040px;}
._1e{width:32.531040px;}
._1b{width:35.198640px;}
._1a{width:36.334080px;}
._14{width:47.520000px;}
._15{width:50.256000px;}
._5{width:85.656000px;}
._4{width:687.306000px;}
._3{width:748.236000px;}
.fc5{color:rgb(112,48,160);}
.fc4{color:rgb(128,0,128);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y78{bottom:3.240000px;}
.yab{bottom:4.680000px;}
.ybe{bottom:6.480000px;}
.y92{bottom:13.140000px;}
.ya9{bottom:13.680000px;}
.ya4{bottom:14.940000px;}
.y7f{bottom:20.340000px;}
.y7a{bottom:20.520000px;}
.y95{bottom:21.600000px;}
.y99{bottom:21.780000px;}
.ybd{bottom:22.140000px;}
.y90{bottom:28.485000px;}
.y91{bottom:28.665000px;}
.ya8{bottom:29.520000px;}
.ya3{bottom:30.600000px;}
.ya{bottom:35.100000px;}
.yb2{bottom:36.225000px;}
.y97{bottom:37.080000px;}
.y94{bottom:37.260000px;}
.ybc{bottom:37.620000px;}
.y8f{bottom:44.325000px;}
.ya7{bottom:45.000000px;}
.ya2{bottom:46.080000px;}
.y9{bottom:50.580000px;}
.yb1{bottom:51.705000px;}
.ybb{bottom:53.100000px;}
.y8e{bottom:59.805000px;}
.ya6{bottom:60.480000px;}
.ya1{bottom:61.560000px;}
.yb0{bottom:67.185000px;}
.y8d{bottom:75.285000px;}
.ya0{bottom:77.040000px;}
.yaf{bottom:82.665000px;}
.y8c{bottom:90.765000px;}
.y9f{bottom:92.700000px;}
.yae{bottom:98.325000px;}
.y8b{bottom:106.425000px;}
.y9e{bottom:108.210000px;}
.yad{bottom:113.805000px;}
.y40{bottom:114.336000px;}
.y88{bottom:115.236000px;}
.ybf{bottom:120.456000px;}
.y8a{bottom:121.905000px;}
.y9d{bottom:123.690000px;}
.y3f{bottom:131.436000px;}
.y87{bottom:132.516000px;}
.y76{bottom:137.736000px;}
.y9c{bottom:139.170000px;}
.y3e{bottom:148.716000px;}
.y86{bottom:149.796000px;}
.y75{bottom:155.010000px;}
.y3d{bottom:165.990000px;}
.y85{bottom:167.070000px;}
.y74{bottom:172.290000px;}
.y3c{bottom:183.270000px;}
.y84{bottom:184.170000px;}
.y73{bottom:189.570000px;}
.y3b{bottom:200.550000px;}
.y83{bottom:201.450000px;}
.y72{bottom:206.670000px;}
.yb9{bottom:214.410000px;}
.y3a{bottom:217.830000px;}
.y82{bottom:218.730000px;}
.y71{bottom:223.950000px;}
.yb8{bottom:230.070000px;}
.y39{bottom:234.930000px;}
.y81{bottom:236.010000px;}
.y70{bottom:241.230000px;}
.yb7{bottom:245.730000px;}
.y38{bottom:252.210000px;}
.y80{bottom:253.290000px;}
.y6f{bottom:258.510000px;}
.yb6{bottom:261.210000px;}
.y7e{bottom:268.050000px;}
.y37{bottom:269.490000px;}
.y6e{bottom:275.790000px;}
.yb5{bottom:276.690000px;}
.y36{bottom:286.770000px;}
.yb4{bottom:292.170000px;}
.y6d{bottom:292.890000px;}
.y7d{bottom:303.150000px;}
.y35{bottom:304.050000px;}
.y6c{bottom:310.170000px;}
.y7c{bottom:321.150000px;}
.y34{bottom:321.330000px;}
.y6b{bottom:327.450000px;}
.y33{bottom:338.475000px;}
.y7b{bottom:339.195000px;}
.y6a{bottom:344.775000px;}
.y32{bottom:355.755000px;}
.y79{bottom:357.195000px;}
.y69{bottom:362.055000px;}
.y31{bottom:373.035000px;}
.y68{bottom:379.335000px;}
.y30{bottom:390.315000px;}
.y77{bottom:392.475000px;}
.y67{bottom:396.435000px;}
.y2f{bottom:407.595000px;}
.y66{bottom:413.715000px;}
.y2e{bottom:424.695000px;}
.y65{bottom:430.995000px;}
.y2d{bottom:441.975000px;}
.y64{bottom:448.275000px;}
.ya5{bottom:456.195000px;}
.y2c{bottom:459.255000px;}
.yba{bottom:462.675000px;}
.y63{bottom:465.555000px;}
.y2b{bottom:476.535000px;}
.y62{bottom:482.835000px;}
.y2a{bottom:493.815000px;}
.y61{bottom:499.935000px;}
.y9b{bottom:509.835000px;}
.y29{bottom:511.095000px;}
.y60{bottom:517.215000px;}
.y28{bottom:530.535000px;}
.y5f{bottom:534.495000px;}
.yb3{bottom:536.475000px;}
.y27{bottom:547.815000px;}
.y5e{bottom:551.775000px;}
.y26{bottom:565.095000px;}
.y5d{bottom:569.055000px;}
.y25{bottom:582.195000px;}
.y5c{bottom:586.155000px;}
.y24{bottom:599.475000px;}
.y5b{bottom:603.435000px;}
.y9a{bottom:611.745000px;}
.y23{bottom:616.785000px;}
.y5a{bottom:620.745000px;}
.y22{bottom:634.065000px;}
.y59{bottom:638.025000px;}
.y21{bottom:651.345000px;}
.y58{bottom:655.305000px;}
.y20{bottom:668.625000px;}
.y57{bottom:672.585000px;}
.y1f{bottom:685.725000px;}
.y56{bottom:689.685000px;}
.y98{bottom:691.665000px;}
.y96{bottom:694.005000px;}
.y1e{bottom:703.005000px;}
.y55{bottom:706.965000px;}
.y1d{bottom:720.285000px;}
.y54{bottom:724.245000px;}
.y1c{bottom:737.565000px;}
.y53{bottom:741.525000px;}
.y1b{bottom:754.845000px;}
.y52{bottom:758.805000px;}
.y1a{bottom:771.945000px;}
.y51{bottom:776.085000px;}
.y93{bottom:776.985000px;}
.y19{bottom:789.225000px;}
.y50{bottom:793.185000px;}
.y18{bottom:806.505000px;}
.y4f{bottom:810.465000px;}
.y17{bottom:823.785000px;}
.yc0{bottom:827.385000px;}
.y4e{bottom:827.745000px;}
.y16{bottom:841.065000px;}
.y4d{bottom:845.025000px;}
.y89{bottom:847.365000px;}
.yac{bottom:857.625000px;}
.y15{bottom:860.505000px;}
.y4c{bottom:862.305000px;}
.y14{bottom:878.190000px;}
.y4b{bottom:879.630000px;}
.y4a{bottom:896.730000px;}
.y13{bottom:897.270000px;}
.y49{bottom:914.010000px;}
.y12{bottom:916.170000px;}
.y48{bottom:931.290000px;}
.y11{bottom:935.250000px;}
.y47{bottom:948.570000px;}
.y10{bottom:954.150000px;}
.y46{bottom:965.850000px;}
.yf{bottom:973.050000px;}
.y45{bottom:982.950000px;}
.ye{bottom:992.130000px;}
.yaa{bottom:998.610000px;}
.y44{bottom:1000.230000px;}
.yd{bottom:1010.670000px;}
.y43{bottom:1017.510000px;}
.yc{bottom:1028.670000px;}
.y42{bottom:1034.790000px;}
.yb{bottom:1049.370000px;}
.y41{bottom:1052.070000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1089.150000px;}
.y6{bottom:1104.990000px;}
.y5{bottom:1122.990000px;}
.y4{bottom:1139.760000px;}
.y3{bottom:1180.620000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.ha{height:17.280000px;}
.hc{height:17.316000px;}
.hd{height:34.380000px;}
.hb{height:34.560000px;}
.h6{height:37.705078px;}
.hf{height:39.471680px;}
.h10{height:39.840820px;}
.h15{height:40.605469px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.h9{height:43.302656px;}
.h19{height:43.681992px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.h1a{height:49.255313px;}
.h12{height:49.680000px;}
.h11{height:49.860000px;}
.h4{height:50.800781px;}
.h1b{height:59.439023px;}
.h18{height:65.700000px;}
.h7{height:65.884219px;}
.h14{height:73.080000px;}
.h16{height:126.396000px;}
.he{height:134.496000px;}
.h13{height:151.770000px;}
.h17{height:304.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:38.700000px;}
.w9{width:38.880000px;}
.w3{width:160.920000px;}
.w4{width:174.810000px;}
.w7{width:221.250000px;}
.w6{width:221.430000px;}
.w5{width:338.475000px;}
.w8{width:510.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:10.800000px;}
.x30{left:11.880000px;}
.x2f{left:13.320000px;}
.x31{left:15.300000px;}
.x20{left:18.540000px;}
.x12{left:21.960000px;}
.x26{left:26.100000px;}
.x14{left:27.405000px;}
.x27{left:32.040000px;}
.x16{left:33.480000px;}
.x1a{left:37.260000px;}
.x1c{left:38.700000px;}
.x24{left:41.220000px;}
.x25{left:48.420000px;}
.x1f{left:54.534000px;}
.x2a{left:59.040000px;}
.x1e{left:60.510000px;}
.x1b{left:65.370000px;}
.x1d{left:81.765000px;}
.x17{left:83.565000px;}
.x2d{left:88.920000px;}
.x15{left:96.330000px;}
.x19{left:101.550000px;}
.x1{left:108.035987px;}
.x7{left:114.875987px;}
.x2e{left:116.316000px;}
.x32{left:117.936000px;}
.x2{left:123.155987px;}
.x22{left:124.235987px;}
.x35{left:135.035987px;}
.x21{left:142.950000px;}
.x4{left:157.169987px;}
.x36{left:162.029987px;}
.x2b{left:172.650000px;}
.x23{left:174.810000px;}
.x2c{left:176.430000px;}
.xe{left:241.589987px;}
.x8{left:259.409987px;}
.x13{left:270.390000px;}
.x11{left:285.374987px;}
.x34{left:299.414987px;}
.xb{left:317.054987px;}
.xc{left:345.134987px;}
.x33{left:350.714987px;}
.xa{left:351.794987px;}
.xd{left:384.914987px;}
.xf{left:386.534987px;}
.x6{left:396.434987px;}
.x10{left:398.954987px;}
.x5{left:412.274987px;}
.x9{left:446.474987px;}
.x28{left:467.925000px;}
.x29{left:469.005000px;}
.x3{left:518.504987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.112000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.096000pt;}
.ls2{letter-spacing:0.106240pt;}
.ls9{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.192000pt;}
.lsa{letter-spacing:0.230933pt;}
.ls0{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.426667pt;}
.lsc{letter-spacing:2.080000pt;}
.lsb{letter-spacing:4.640000pt;}
.lsf{letter-spacing:5.920000pt;}
.ls12{letter-spacing:10.192640pt;}
.ls11{letter-spacing:37.051307pt;}
.ls10{letter-spacing:40.891307pt;}
.ws3{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.664000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.536000pt;}
.ws6{word-spacing:-13.344000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws2{word-spacing:-12.000000pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-1.175040pt;}
._0{width:1.175467pt;}
._8{width:2.210560pt;}
._2{width:3.773867pt;}
._7{width:4.675413pt;}
._6{width:6.002560pt;}
._c{width:7.069013pt;}
._f{width:8.008960pt;}
._a{width:8.917333pt;}
._b{width:9.854507pt;}
._e{width:10.934400pt;}
._9{width:12.323840pt;}
._13{width:14.501333pt;}
._10{width:15.617280pt;}
._d{width:17.104640pt;}
._11{width:18.538880pt;}
._12{width:19.428267pt;}
._1c{width:20.504320pt;}
._19{width:21.619840pt;}
._1d{width:23.000320pt;}
._17{width:25.437653pt;}
._16{width:26.453760pt;}
._18{width:27.343147pt;}
._1e{width:28.916480pt;}
._1b{width:31.287680pt;}
._1a{width:32.296960pt;}
._14{width:42.240000pt;}
._15{width:44.672000pt;}
._5{width:76.138667pt;}
._4{width:610.938667pt;}
._3{width:665.098667pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y78{bottom:2.880000pt;}
.yab{bottom:4.160000pt;}
.ybe{bottom:5.760000pt;}
.y92{bottom:11.680000pt;}
.ya9{bottom:12.160000pt;}
.ya4{bottom:13.280000pt;}
.y7f{bottom:18.080000pt;}
.y7a{bottom:18.240000pt;}
.y95{bottom:19.200000pt;}
.y99{bottom:19.360000pt;}
.ybd{bottom:19.680000pt;}
.y90{bottom:25.320000pt;}
.y91{bottom:25.480000pt;}
.ya8{bottom:26.240000pt;}
.ya3{bottom:27.200000pt;}
.ya{bottom:31.200000pt;}
.yb2{bottom:32.200000pt;}
.y97{bottom:32.960000pt;}
.y94{bottom:33.120000pt;}
.ybc{bottom:33.440000pt;}
.y8f{bottom:39.400000pt;}
.ya7{bottom:40.000000pt;}
.ya2{bottom:40.960000pt;}
.y9{bottom:44.960000pt;}
.yb1{bottom:45.960000pt;}
.ybb{bottom:47.200000pt;}
.y8e{bottom:53.160000pt;}
.ya6{bottom:53.760000pt;}
.ya1{bottom:54.720000pt;}
.yb0{bottom:59.720000pt;}
.y8d{bottom:66.920000pt;}
.ya0{bottom:68.480000pt;}
.yaf{bottom:73.480000pt;}
.y8c{bottom:80.680000pt;}
.y9f{bottom:82.400000pt;}
.yae{bottom:87.400000pt;}
.y8b{bottom:94.600000pt;}
.y9e{bottom:96.186667pt;}
.yad{bottom:101.160000pt;}
.y40{bottom:101.632000pt;}
.y88{bottom:102.432000pt;}
.ybf{bottom:107.072000pt;}
.y8a{bottom:108.360000pt;}
.y9d{bottom:109.946667pt;}
.y3f{bottom:116.832000pt;}
.y87{bottom:117.792000pt;}
.y76{bottom:122.432000pt;}
.y9c{bottom:123.706667pt;}
.y3e{bottom:132.192000pt;}
.y86{bottom:133.152000pt;}
.y75{bottom:137.786667pt;}
.y3d{bottom:147.546667pt;}
.y85{bottom:148.506667pt;}
.y74{bottom:153.146667pt;}
.y3c{bottom:162.906667pt;}
.y84{bottom:163.706667pt;}
.y73{bottom:168.506667pt;}
.y3b{bottom:178.266667pt;}
.y83{bottom:179.066667pt;}
.y72{bottom:183.706667pt;}
.yb9{bottom:190.586667pt;}
.y3a{bottom:193.626667pt;}
.y82{bottom:194.426667pt;}
.y71{bottom:199.066667pt;}
.yb8{bottom:204.506667pt;}
.y39{bottom:208.826667pt;}
.y81{bottom:209.786667pt;}
.y70{bottom:214.426667pt;}
.yb7{bottom:218.426667pt;}
.y38{bottom:224.186667pt;}
.y80{bottom:225.146667pt;}
.y6f{bottom:229.786667pt;}
.yb6{bottom:232.186667pt;}
.y7e{bottom:238.266667pt;}
.y37{bottom:239.546667pt;}
.y6e{bottom:245.146667pt;}
.yb5{bottom:245.946667pt;}
.y36{bottom:254.906667pt;}
.yb4{bottom:259.706667pt;}
.y6d{bottom:260.346667pt;}
.y7d{bottom:269.466667pt;}
.y35{bottom:270.266667pt;}
.y6c{bottom:275.706667pt;}
.y7c{bottom:285.466667pt;}
.y34{bottom:285.626667pt;}
.y6b{bottom:291.066667pt;}
.y33{bottom:300.866667pt;}
.y7b{bottom:301.506667pt;}
.y6a{bottom:306.466667pt;}
.y32{bottom:316.226667pt;}
.y79{bottom:317.506667pt;}
.y69{bottom:321.826667pt;}
.y31{bottom:331.586667pt;}
.y68{bottom:337.186667pt;}
.y30{bottom:346.946667pt;}
.y77{bottom:348.866667pt;}
.y67{bottom:352.386667pt;}
.y2f{bottom:362.306667pt;}
.y66{bottom:367.746667pt;}
.y2e{bottom:377.506667pt;}
.y65{bottom:383.106667pt;}
.y2d{bottom:392.866667pt;}
.y64{bottom:398.466667pt;}
.ya5{bottom:405.506667pt;}
.y2c{bottom:408.226667pt;}
.yba{bottom:411.266667pt;}
.y63{bottom:413.826667pt;}
.y2b{bottom:423.586667pt;}
.y62{bottom:429.186667pt;}
.y2a{bottom:438.946667pt;}
.y61{bottom:444.386667pt;}
.y9b{bottom:453.186667pt;}
.y29{bottom:454.306667pt;}
.y60{bottom:459.746667pt;}
.y28{bottom:471.586667pt;}
.y5f{bottom:475.106667pt;}
.yb3{bottom:476.866667pt;}
.y27{bottom:486.946667pt;}
.y5e{bottom:490.466667pt;}
.y26{bottom:502.306667pt;}
.y5d{bottom:505.826667pt;}
.y25{bottom:517.506667pt;}
.y5c{bottom:521.026667pt;}
.y24{bottom:532.866667pt;}
.y5b{bottom:536.386667pt;}
.y9a{bottom:543.773333pt;}
.y23{bottom:548.253333pt;}
.y5a{bottom:551.773333pt;}
.y22{bottom:563.613333pt;}
.y59{bottom:567.133333pt;}
.y21{bottom:578.973333pt;}
.y58{bottom:582.493333pt;}
.y20{bottom:594.333333pt;}
.y57{bottom:597.853333pt;}
.y1f{bottom:609.533333pt;}
.y56{bottom:613.053333pt;}
.y98{bottom:614.813333pt;}
.y96{bottom:616.893333pt;}
.y1e{bottom:624.893333pt;}
.y55{bottom:628.413333pt;}
.y1d{bottom:640.253333pt;}
.y54{bottom:643.773333pt;}
.y1c{bottom:655.613333pt;}
.y53{bottom:659.133333pt;}
.y1b{bottom:670.973333pt;}
.y52{bottom:674.493333pt;}
.y1a{bottom:686.173333pt;}
.y51{bottom:689.853333pt;}
.y93{bottom:690.653333pt;}
.y19{bottom:701.533333pt;}
.y50{bottom:705.053333pt;}
.y18{bottom:716.893333pt;}
.y4f{bottom:720.413333pt;}
.y17{bottom:732.253333pt;}
.yc0{bottom:735.453333pt;}
.y4e{bottom:735.773333pt;}
.y16{bottom:747.613333pt;}
.y4d{bottom:751.133333pt;}
.y89{bottom:753.213333pt;}
.yac{bottom:762.333333pt;}
.y15{bottom:764.893333pt;}
.y4c{bottom:766.493333pt;}
.y14{bottom:780.613333pt;}
.y4b{bottom:781.893333pt;}
.y4a{bottom:797.093333pt;}
.y13{bottom:797.573333pt;}
.y49{bottom:812.453333pt;}
.y12{bottom:814.373333pt;}
.y48{bottom:827.813333pt;}
.y11{bottom:831.333333pt;}
.y47{bottom:843.173333pt;}
.y10{bottom:848.133333pt;}
.y46{bottom:858.533333pt;}
.yf{bottom:864.933333pt;}
.y45{bottom:873.733333pt;}
.ye{bottom:881.893333pt;}
.yaa{bottom:887.653333pt;}
.y44{bottom:889.093333pt;}
.yd{bottom:898.373333pt;}
.y43{bottom:904.453333pt;}
.yc{bottom:914.373333pt;}
.y42{bottom:919.813333pt;}
.yb{bottom:932.773333pt;}
.y41{bottom:935.173333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:968.133333pt;}
.y6{bottom:982.213333pt;}
.y5{bottom:998.213333pt;}
.y4{bottom:1013.120000pt;}
.y3{bottom:1049.440000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.ha{height:15.360000pt;}
.hc{height:15.392000pt;}
.hd{height:30.560000pt;}
.hb{height:30.720000pt;}
.h6{height:33.515625pt;}
.hf{height:35.085938pt;}
.h10{height:35.414062pt;}
.h15{height:36.093750pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.h9{height:38.491250pt;}
.h19{height:38.828437pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.h1a{height:43.782500pt;}
.h12{height:44.160000pt;}
.h11{height:44.320000pt;}
.h4{height:45.156250pt;}
.h1b{height:52.834688pt;}
.h18{height:58.400000pt;}
.h7{height:58.563750pt;}
.h14{height:64.960000pt;}
.h16{height:112.352000pt;}
.he{height:119.552000pt;}
.h13{height:134.906667pt;}
.h17{height:270.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:34.400000pt;}
.w9{width:34.560000pt;}
.w3{width:143.040000pt;}
.w4{width:155.386667pt;}
.w7{width:196.666667pt;}
.w6{width:196.826667pt;}
.w5{width:300.866667pt;}
.w8{width:453.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:9.600000pt;}
.x30{left:10.560000pt;}
.x2f{left:11.840000pt;}
.x31{left:13.600000pt;}
.x20{left:16.480000pt;}
.x12{left:19.520000pt;}
.x26{left:23.200000pt;}
.x14{left:24.360000pt;}
.x27{left:28.480000pt;}
.x16{left:29.760000pt;}
.x1a{left:33.120000pt;}
.x1c{left:34.400000pt;}
.x24{left:36.640000pt;}
.x25{left:43.040000pt;}
.x1f{left:48.474667pt;}
.x2a{left:52.480000pt;}
.x1e{left:53.786667pt;}
.x1b{left:58.106667pt;}
.x1d{left:72.680000pt;}
.x17{left:74.280000pt;}
.x2d{left:79.040000pt;}
.x15{left:85.626667pt;}
.x19{left:90.266667pt;}
.x1{left:96.031988pt;}
.x7{left:102.111988pt;}
.x2e{left:103.392000pt;}
.x32{left:104.832000pt;}
.x2{left:109.471988pt;}
.x22{left:110.431988pt;}
.x35{left:120.031988pt;}
.x21{left:127.066667pt;}
.x4{left:139.706655pt;}
.x36{left:144.026655pt;}
.x2b{left:153.466667pt;}
.x23{left:155.386667pt;}
.x2c{left:156.826667pt;}
.xe{left:214.746655pt;}
.x8{left:230.586655pt;}
.x13{left:240.346667pt;}
.x11{left:253.666655pt;}
.x34{left:266.146655pt;}
.xb{left:281.826655pt;}
.xc{left:306.786655pt;}
.x33{left:311.746655pt;}
.xa{left:312.706655pt;}
.xd{left:342.146655pt;}
.xf{left:343.586655pt;}
.x6{left:352.386655pt;}
.x10{left:354.626655pt;}
.x5{left:366.466655pt;}
.x9{left:396.866655pt;}
.x28{left:415.933333pt;}
.x29{left:416.893333pt;}
.x3{left:460.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; }
  