
    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_7e4a5d4d1b3703a1c4dd69e8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.949707;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_216bf80168a535816906731b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_b155c286f935ed663a220dc7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff4{font-family:ff4;line-height:0.813477;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_9f11f3f9ae58853b202e1bab.woff')format("woff");}.ff5{font-family:ff5;line-height:0.949707;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_d66609d503a40cac8c1fbf7c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_33e7d6bb7fd78235d5583fff.woff')format("woff");}.ff7{font-family:ff7;line-height:0.946777;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_73838b0e709eca4728c78cb6.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e69d7f2fe6448db797ff5e9a.woff')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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffa{font-family:ffa;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.774000px;}
.lsd{letter-spacing:-0.612000px;}
.lsa{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.463800px;}
.ls10{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.106800px;}
.lsb{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.120000px;}
.lse{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.900000px;}
.ls9{letter-spacing:12.420000px;}
.ls14{letter-spacing:16.506720px;}
.ls2{letter-spacing:19.620000px;}
.ls13{letter-spacing:46.026720px;}
.ls1{letter-spacing:110.316000px;}
.ls7{letter-spacing:201.204000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.833200px;}
.wsa{word-spacing:-14.580000px;}
.ws0{word-spacing:-14.506440px;}
.ws5{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._16{margin-left:-4.997760px;}
._15{margin-left:-3.323520px;}
._11{margin-left:-2.175840px;}
._1{margin-left:-1.088640px;}
._0{width:1.185840px;}
._2{width:2.498160px;}
._6{width:3.877200px;}
._f{width:5.052960px;}
._10{width:6.073920px;}
._5{width:7.470000px;}
._d{width:8.491680px;}
._c{width:9.501840px;}
._12{width:11.473920px;}
._14{width:12.479760px;}
._a{width:13.685040px;}
._13{width:16.534800px;}
._b{width:17.854560px;}
._8{width:19.268640px;}
._7{width:20.365200px;}
._17{width:22.410960px;}
._9{width:25.586640px;}
._4{width:43.574400px;}
._3{width:110.386800px;}
._e{width:201.204000px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y16{bottom:5.760000px;}
.y29{bottom:5.940000px;}
.y7{bottom:14.760000px;}
.y21{bottom:18.540000px;}
.y28{bottom:25.740000px;}
.y20{bottom:38.340000px;}
.y6{bottom:43.920000px;}
.y27{bottom:45.540000px;}
.y1f{bottom:58.170000px;}
.yd{bottom:58.320000px;}
.y5{bottom:64.080000px;}
.y26{bottom:65.370000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.y49{bottom:79.380000px;}
.y89{bottom:84.600000px;}
.y25{bottom:85.170000px;}
.y4{bottom:86.400000px;}
.y1e{bottom:87.150000px;}
.y48{bottom:96.660000px;}
.y47{bottom:101.880000px;}
.y24{bottom:105.150000px;}
.y9{bottom:107.490000px;}
.y46{bottom:113.940000px;}
.y1d{bottom:115.950000px;}
.y45{bottom:119.160000px;}
.y3{bottom:122.610000px;}
.y23{bottom:124.950000px;}
.y44{bottom:131.220000px;}
.y9f{bottom:131.940000px;}
.y1c{bottom:135.750000px;}
.y43{bottom:136.440000px;}
.y8{bottom:136.650000px;}
.y22{bottom:144.750000px;}
.y88{bottom:148.320000px;}
.y42{bottom:149.040000px;}
.y87{bottom:153.570000px;}
.y1b{bottom:164.550000px;}
.y86{bottom:165.630000px;}
.ya6{bottom:166.350000px;}
.y85{bottom:170.850000px;}
.y9e{bottom:171.030000px;}
.y84{bottom:182.910000px;}
.yab{bottom:183.630000px;}
.y1a{bottom:184.350000px;}
.y83{bottom:188.130000px;}
.y41{bottom:190.470000px;}
.y9d{bottom:191.010000px;}
.ya5{bottom:196.410000px;}
.y82{bottom:200.190000px;}
.y19{bottom:204.330000px;}
.y81{bottom:205.410000px;}
.y40{bottom:210.270000px;}
.y9c{bottom:210.810000px;}
.ya4{bottom:216.390000px;}
.y93{bottom:217.470000px;}
.y80{bottom:218.190000px;}
.y92{bottom:222.690000px;}
.y18{bottom:224.130000px;}
.y3f{bottom:230.250000px;}
.y9b{bottom:230.610000px;}
.y91{bottom:235.470000px;}
.ya3{bottom:236.190000px;}
.y3e{bottom:250.050000px;}
.y9a{bottom:250.410000px;}
.ya2{bottom:255.990000px;}
.y3d{bottom:269.850000px;}
.y99{bottom:270.210000px;}
.y7f{bottom:275.790000px;}
.y3b{bottom:289.650000px;}
.y98{bottom:290.190000px;}
.y3c{bottom:294.870000px;}
.y7e{bottom:295.590000px;}
.y90{bottom:300.810000px;}
.y3a{bottom:309.450000px;}
.y97{bottom:309.990000px;}
.y7d{bottom:315.570000px;}
.y96{bottom:326.550000px;}
.y39{bottom:329.430000px;}
.y7c{bottom:335.370000px;}
.y38{bottom:349.230000px;}
.y7b{bottom:355.170000px;}
.y37{bottom:369.030000px;}
.y7a{bottom:374.970000px;}
.y8f{bottom:380.190000px;}
.y35{bottom:388.830000px;}
.y36{bottom:394.050000px;}
.y78{bottom:394.770000px;}
.y79{bottom:399.990000px;}
.y34{bottom:408.675000px;}
.y77{bottom:414.795000px;}
.y33{bottom:428.655000px;}
.y76{bottom:434.595000px;}
.y32{bottom:448.455000px;}
.y75{bottom:454.395000px;}
.y31{bottom:468.255000px;}
.y74{bottom:474.195000px;}
.y8e{bottom:479.415000px;}
.y2f{bottom:488.055000px;}
.y30{bottom:493.275000px;}
.y73{bottom:493.995000px;}
.ya1{bottom:499.215000px;}
.y2e{bottom:507.855000px;}
.y72{bottom:513.975000px;}
.y2d{bottom:527.835000px;}
.y71{bottom:533.775000px;}
.y2c{bottom:547.635000px;}
.y70{bottom:553.575000px;}
.y2b{bottom:567.435000px;}
.y6f{bottom:573.375000px;}
.y8d{bottom:578.595000px;}
.y2a{bottom:587.235000px;}
.y6e{bottom:593.175000px;}
.y17{bottom:601.995000px;}
.y6d{bottom:613.155000px;}
.y6c{bottom:632.955000px;}
.y6a{bottom:652.785000px;}
.y6b{bottom:658.005000px;}
.y69{bottom:672.585000px;}
.y68{bottom:692.385000px;}
.y8c{bottom:697.605000px;}
.y67{bottom:712.365000px;}
.y66{bottom:732.165000px;}
.yaa{bottom:737.385000px;}
.y64{bottom:751.965000px;}
.y65{bottom:757.185000px;}
.y63{bottom:771.765000px;}
.y62{bottom:791.565000px;}
.y95{bottom:796.785000px;}
.y61{bottom:811.545000px;}
.ya9{bottom:816.765000px;}
.y5f{bottom:831.345000px;}
.y60{bottom:836.565000px;}
.y15{bottom:840.885000px;}
.y5e{bottom:851.145000px;}
.y14{bottom:866.445000px;}
.y5d{bottom:870.945000px;}
.y5c{bottom:890.745000px;}
.y13{bottom:891.645000px;}
.y94{bottom:895.965000px;}
.y5b{bottom:910.770000px;}
.y12{bottom:911.490000px;}
.y11{bottom:926.610000px;}
.y59{bottom:930.570000px;}
.y5a{bottom:935.790000px;}
.y10{bottom:947.850000px;}
.y57{bottom:950.370000px;}
.y58{bottom:955.590000px;}
.y56{bottom:970.170000px;}
.yf{bottom:971.430000px;}
.y55{bottom:989.970000px;}
.ya8{bottom:995.190000px;}
.ye{bottom:1003.110000px;}
.y54{bottom:1009.950000px;}
.yc{bottom:1029.390000px;}
.y53{bottom:1029.750000px;}
.y1{bottom:1046.850000px;}
.y51{bottom:1049.550000px;}
.y52{bottom:1054.770000px;}
.y50{bottom:1069.350000px;}
.y8b{bottom:1074.570000px;}
.y4f{bottom:1089.150000px;}
.y4e{bottom:1109.130000px;}
.y4d{bottom:1128.930000px;}
.ya0{bottom:1134.150000px;}
.y4c{bottom:1148.760000px;}
.y8a{bottom:1153.980000px;}
.y4b{bottom:1168.560000px;}
.ya7{bottom:1173.780000px;}
.y4a{bottom:1194.840000px;}
.h3{height:2.082656px;}
.hd{height:19.800000px;}
.hb{height:28.115859px;}
.h9{height:42.164648px;}
.hc{height:43.215117px;}
.h7{height:47.901094px;}
.hf{height:49.255313px;}
.h6{height:52.066406px;}
.ha{height:53.224453px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.he{height:238.170000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w9{width:892.979973px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.x13{left:58.859987px;}
.x23{left:63.719987px;}
.x47{left:80.999987px;}
.x15{left:84.059973px;}
.x16{left:88.955987px;}
.x48{left:108.035987px;}
.x8{left:109.485000px;}
.x24{left:114.875973px;}
.x7{left:116.865000px;}
.x5{left:119.385000px;}
.x2e{left:122.435973px;}
.x25{left:124.595987px;}
.x2f{left:132.155987px;}
.x2{left:136.290000px;}
.x32{left:141.875973px;}
.x33{left:151.589987px;}
.x3e{left:154.469973px;}
.x45{left:159.329973px;}
.x36{left:162.929987px;}
.x3f{left:164.189987px;}
.x46{left:169.049987px;}
.x19{left:180.209973px;}
.x30{left:183.449973px;}
.x1a{left:185.069987px;}
.x31{left:193.169987px;}
.x3{left:208.470000px;}
.x2a{left:213.869973px;}
.x3c{left:217.829973px;}
.x14{left:223.589987px;}
.x3d{left:227.549987px;}
.x6{left:236.385000px;}
.x38{left:262.469973px;}
.x12{left:270.074987px;}
.x39{left:272.234987px;}
.x2d{left:282.494973px;}
.x1d{left:287.714973px;}
.x1e{left:292.574987px;}
.x26{left:310.034973px;}
.x27{left:319.754987px;}
.x2b{left:328.934973px;}
.x2c{left:338.654987px;}
.xb{left:343.875000px;}
.x17{left:389.054973px;}
.x18{left:393.914987px;}
.x42{left:484.664973px;}
.x43{left:494.384987px;}
.x40{left:501.224973px;}
.x41{left:510.944987px;}
.x1b{left:516.704973px;}
.x1c{left:521.564987px;}
.x37{left:530.924987px;}
.xe{left:535.604973px;}
.xf{left:540.464987px;}
.x44{left:553.604973px;}
.x28{left:562.784973px;}
.x21{left:565.304973px;}
.x29{left:572.504987px;}
.x22{left:575.024987px;}
.xc{left:578.264973px;}
.xd{left:583.124987px;}
.x3a{left:611.924973px;}
.x3b{left:621.644987px;}
.x35{left:643.469987px;}
.x9{left:681.270000px;}
.x1f{left:706.829973px;}
.x20{left:711.689987px;}
.x34{left:722.309987px;}
.x10{left:796.469973px;}
.x11{left:801.329987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.688000pt;}
.lsd{letter-spacing:-0.544000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls10{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.094933pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.800000pt;}
.ls9{letter-spacing:11.040000pt;}
.ls14{letter-spacing:14.672640pt;}
.ls2{letter-spacing:17.440000pt;}
.ls13{letter-spacing:40.912640pt;}
.ls1{letter-spacing:98.058667pt;}
.ls7{letter-spacing:178.848000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws9{word-spacing:-13.185067pt;}
.wsa{word-spacing:-12.960000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws5{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._16{margin-left:-4.442453pt;}
._15{margin-left:-2.954240pt;}
._11{margin-left:-1.934080pt;}
._1{margin-left:-0.967680pt;}
._0{width:1.054080pt;}
._2{width:2.220587pt;}
._6{width:3.446400pt;}
._f{width:4.491520pt;}
._10{width:5.399040pt;}
._5{width:6.640000pt;}
._d{width:7.548160pt;}
._c{width:8.446080pt;}
._12{width:10.199040pt;}
._14{width:11.093120pt;}
._a{width:12.164480pt;}
._13{width:14.697600pt;}
._b{width:15.870720pt;}
._8{width:17.127680pt;}
._7{width:18.102400pt;}
._17{width:19.920853pt;}
._9{width:22.743680pt;}
._4{width:38.732800pt;}
._3{width:98.121600pt;}
._e{width:178.848000pt;}
.fs0{font-size:2.560000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y16{bottom:5.120000pt;}
.y29{bottom:5.280000pt;}
.y7{bottom:13.120000pt;}
.y21{bottom:16.480000pt;}
.y28{bottom:22.880000pt;}
.y20{bottom:34.080000pt;}
.y6{bottom:39.040000pt;}
.y27{bottom:40.480000pt;}
.y1f{bottom:51.706667pt;}
.yd{bottom:51.840000pt;}
.y5{bottom:56.960000pt;}
.y26{bottom:58.106667pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.y49{bottom:70.560000pt;}
.y89{bottom:75.200000pt;}
.y25{bottom:75.706667pt;}
.y4{bottom:76.800000pt;}
.y1e{bottom:77.466667pt;}
.y48{bottom:85.920000pt;}
.y47{bottom:90.560000pt;}
.y24{bottom:93.466667pt;}
.y9{bottom:95.546667pt;}
.y46{bottom:101.280000pt;}
.y1d{bottom:103.066667pt;}
.y45{bottom:105.920000pt;}
.y3{bottom:108.986667pt;}
.y23{bottom:111.066667pt;}
.y44{bottom:116.640000pt;}
.y9f{bottom:117.280000pt;}
.y1c{bottom:120.666667pt;}
.y43{bottom:121.280000pt;}
.y8{bottom:121.466667pt;}
.y22{bottom:128.666667pt;}
.y88{bottom:131.840000pt;}
.y42{bottom:132.480000pt;}
.y87{bottom:136.506667pt;}
.y1b{bottom:146.266667pt;}
.y86{bottom:147.226667pt;}
.ya6{bottom:147.866667pt;}
.y85{bottom:151.866667pt;}
.y9e{bottom:152.026667pt;}
.y84{bottom:162.586667pt;}
.yab{bottom:163.226667pt;}
.y1a{bottom:163.866667pt;}
.y83{bottom:167.226667pt;}
.y41{bottom:169.306667pt;}
.y9d{bottom:169.786667pt;}
.ya5{bottom:174.586667pt;}
.y82{bottom:177.946667pt;}
.y19{bottom:181.626667pt;}
.y81{bottom:182.586667pt;}
.y40{bottom:186.906667pt;}
.y9c{bottom:187.386667pt;}
.ya4{bottom:192.346667pt;}
.y93{bottom:193.306667pt;}
.y80{bottom:193.946667pt;}
.y92{bottom:197.946667pt;}
.y18{bottom:199.226667pt;}
.y3f{bottom:204.666667pt;}
.y9b{bottom:204.986667pt;}
.y91{bottom:209.306667pt;}
.ya3{bottom:209.946667pt;}
.y3e{bottom:222.266667pt;}
.y9a{bottom:222.586667pt;}
.ya2{bottom:227.546667pt;}
.y3d{bottom:239.866667pt;}
.y99{bottom:240.186667pt;}
.y7f{bottom:245.146667pt;}
.y3b{bottom:257.466667pt;}
.y98{bottom:257.946667pt;}
.y3c{bottom:262.106667pt;}
.y7e{bottom:262.746667pt;}
.y90{bottom:267.386667pt;}
.y3a{bottom:275.066667pt;}
.y97{bottom:275.546667pt;}
.y7d{bottom:280.506667pt;}
.y96{bottom:290.266667pt;}
.y39{bottom:292.826667pt;}
.y7c{bottom:298.106667pt;}
.y38{bottom:310.426667pt;}
.y7b{bottom:315.706667pt;}
.y37{bottom:328.026667pt;}
.y7a{bottom:333.306667pt;}
.y8f{bottom:337.946667pt;}
.y35{bottom:345.626667pt;}
.y36{bottom:350.266667pt;}
.y78{bottom:350.906667pt;}
.y79{bottom:355.546667pt;}
.y34{bottom:363.266667pt;}
.y77{bottom:368.706667pt;}
.y33{bottom:381.026667pt;}
.y76{bottom:386.306667pt;}
.y32{bottom:398.626667pt;}
.y75{bottom:403.906667pt;}
.y31{bottom:416.226667pt;}
.y74{bottom:421.506667pt;}
.y8e{bottom:426.146667pt;}
.y2f{bottom:433.826667pt;}
.y30{bottom:438.466667pt;}
.y73{bottom:439.106667pt;}
.ya1{bottom:443.746667pt;}
.y2e{bottom:451.426667pt;}
.y72{bottom:456.866667pt;}
.y2d{bottom:469.186667pt;}
.y71{bottom:474.466667pt;}
.y2c{bottom:486.786667pt;}
.y70{bottom:492.066667pt;}
.y2b{bottom:504.386667pt;}
.y6f{bottom:509.666667pt;}
.y8d{bottom:514.306667pt;}
.y2a{bottom:521.986667pt;}
.y6e{bottom:527.266667pt;}
.y17{bottom:535.106667pt;}
.y6d{bottom:545.026667pt;}
.y6c{bottom:562.626667pt;}
.y6a{bottom:580.253333pt;}
.y6b{bottom:584.893333pt;}
.y69{bottom:597.853333pt;}
.y68{bottom:615.453333pt;}
.y8c{bottom:620.093333pt;}
.y67{bottom:633.213333pt;}
.y66{bottom:650.813333pt;}
.yaa{bottom:655.453333pt;}
.y64{bottom:668.413333pt;}
.y65{bottom:673.053333pt;}
.y63{bottom:686.013333pt;}
.y62{bottom:703.613333pt;}
.y95{bottom:708.253333pt;}
.y61{bottom:721.373333pt;}
.ya9{bottom:726.013333pt;}
.y5f{bottom:738.973333pt;}
.y60{bottom:743.613333pt;}
.y15{bottom:747.453333pt;}
.y5e{bottom:756.573333pt;}
.y14{bottom:770.173333pt;}
.y5d{bottom:774.173333pt;}
.y5c{bottom:791.773333pt;}
.y13{bottom:792.573333pt;}
.y94{bottom:796.413333pt;}
.y5b{bottom:809.573333pt;}
.y12{bottom:810.213333pt;}
.y11{bottom:823.653333pt;}
.y59{bottom:827.173333pt;}
.y5a{bottom:831.813333pt;}
.y10{bottom:842.533333pt;}
.y57{bottom:844.773333pt;}
.y58{bottom:849.413333pt;}
.y56{bottom:862.373333pt;}
.yf{bottom:863.493333pt;}
.y55{bottom:879.973333pt;}
.ya8{bottom:884.613333pt;}
.ye{bottom:891.653333pt;}
.y54{bottom:897.733333pt;}
.yc{bottom:915.013333pt;}
.y53{bottom:915.333333pt;}
.y1{bottom:930.533333pt;}
.y51{bottom:932.933333pt;}
.y52{bottom:937.573333pt;}
.y50{bottom:950.533333pt;}
.y8b{bottom:955.173333pt;}
.y4f{bottom:968.133333pt;}
.y4e{bottom:985.893333pt;}
.y4d{bottom:1003.493333pt;}
.ya0{bottom:1008.133333pt;}
.y4c{bottom:1021.120000pt;}
.y8a{bottom:1025.760000pt;}
.y4b{bottom:1038.720000pt;}
.ya7{bottom:1043.360000pt;}
.y4a{bottom:1062.080000pt;}
.h3{height:1.851250pt;}
.hd{height:17.600000pt;}
.hb{height:24.991875pt;}
.h9{height:37.479688pt;}
.hc{height:38.413438pt;}
.h7{height:42.578750pt;}
.hf{height:43.782500pt;}
.h6{height:46.281250pt;}
.ha{height:47.310625pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.he{height:211.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w9{width:793.759976pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.x13{left:52.319988pt;}
.x23{left:56.639988pt;}
.x47{left:71.999988pt;}
.x15{left:74.719976pt;}
.x16{left:79.071988pt;}
.x48{left:96.031988pt;}
.x8{left:97.320000pt;}
.x24{left:102.111976pt;}
.x7{left:103.880000pt;}
.x5{left:106.120000pt;}
.x2e{left:108.831976pt;}
.x25{left:110.751988pt;}
.x2f{left:117.471988pt;}
.x2{left:121.146667pt;}
.x32{left:126.111976pt;}
.x33{left:134.746655pt;}
.x3e{left:137.306643pt;}
.x45{left:141.626643pt;}
.x36{left:144.826655pt;}
.x3f{left:145.946655pt;}
.x46{left:150.266655pt;}
.x19{left:160.186643pt;}
.x30{left:163.066643pt;}
.x1a{left:164.506655pt;}
.x31{left:171.706655pt;}
.x3{left:185.306667pt;}
.x2a{left:190.106643pt;}
.x3c{left:193.626643pt;}
.x14{left:198.746655pt;}
.x3d{left:202.266655pt;}
.x6{left:210.120000pt;}
.x38{left:233.306643pt;}
.x12{left:240.066655pt;}
.x39{left:241.986655pt;}
.x2d{left:251.106643pt;}
.x1d{left:255.746643pt;}
.x1e{left:260.066655pt;}
.x26{left:275.586643pt;}
.x27{left:284.226655pt;}
.x2b{left:292.386643pt;}
.x2c{left:301.026655pt;}
.xb{left:305.666667pt;}
.x17{left:345.826643pt;}
.x18{left:350.146655pt;}
.x42{left:430.813310pt;}
.x43{left:439.453322pt;}
.x40{left:445.533310pt;}
.x41{left:454.173322pt;}
.x1b{left:459.293310pt;}
.x1c{left:463.613322pt;}
.x37{left:471.933322pt;}
.xe{left:476.093310pt;}
.xf{left:480.413322pt;}
.x44{left:492.093310pt;}
.x28{left:500.253310pt;}
.x21{left:502.493310pt;}
.x29{left:508.893322pt;}
.x22{left:511.133322pt;}
.xc{left:514.013310pt;}
.xd{left:518.333322pt;}
.x3a{left:543.933310pt;}
.x3b{left:552.573322pt;}
.x35{left:571.973322pt;}
.x9{left:605.573333pt;}
.x1f{left:628.293310pt;}
.x20{left:632.613322pt;}
.x34{left:642.053322pt;}
.x10{left:707.973310pt;}
.x11{left:712.293322pt;}
}




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