
    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_989bc7d82666e3e8587bdd0b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_07e669ce0b1ff303c9ea9089.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936035;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_3ce9021035a6562fa68b47d7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960449;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_46218ce35f64c90d8eaa0e73.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.935059;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_20ffaf2cfc3c4f8c34cda361.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_83c9e2912261b4d889928ed5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_490623bcee5abb286c3393b0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_b99da7fcbc3df3bad5642ef4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923340;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_28f1375372a16038521ff38f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_f2785b7f49743fbf6c9e46df.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.172852;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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:ffc;src:url('chunks/assets/font_bc3888edc9914eb70261b84e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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;}
.ls8{letter-spacing:-0.378600px;}
.ls2{letter-spacing:-0.180000px;}
.ls6{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.028080px;}
.ls9{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.360000px;}
.lsb{letter-spacing:2.106720px;}
.ls0{letter-spacing:30.780000px;}
.ls5{letter-spacing:44.640000px;}
.ls4{letter-spacing:71.100000px;}
.lsd{letter-spacing:127.061280px;}
.lsc{letter-spacing:168.821280px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-59.760000px;}
.ws6{word-spacing:-21.420000px;}
.ws0{word-spacing:-21.060000px;}
.ws2{word-spacing:-20.916000px;}
.ws3{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
.ws4{word-spacing:141.294000px;}
._a{margin-left:-2.106000px;}
._0{margin-left:-1.073040px;}
._1{width:1.123200px;}
._b{width:2.836080px;}
._18{width:4.464720px;}
._19{width:5.762400px;}
._1a{width:7.350960px;}
._7{width:8.907360px;}
._23{width:10.256640px;}
._1d{width:11.266080px;}
._4{width:12.299040px;}
._9{width:13.658880px;}
._1b{width:14.982720px;}
._3{width:16.910160px;}
._22{width:18.254880px;}
._1f{width:19.347120px;}
._c{width:22.716720px;}
._8{width:24.070560px;}
._26{width:25.135680px;}
._25{width:26.282880px;}
._16{width:27.462240px;}
._17{width:29.062800px;}
._d{width:30.916080px;}
._e{width:32.169120px;}
._24{width:33.538080px;}
._5{width:34.622640px;}
._6{width:35.995920px;}
._13{width:37.065600px;}
._14{width:38.644080px;}
._20{width:39.677040px;}
._21{width:40.716000px;}
._1c{width:43.636320px;}
._28{width:45.525600px;}
._2{width:47.103840px;}
._f{width:52.228800px;}
._10{width:53.301840px;}
._1e{width:55.155120px;}
._27{width:56.272320px;}
._15{width:64.262160px;}
._11{width:70.087680px;}
._12{width:96.011520px;}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs6{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:59.760000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:81.360000px;}
.fs0{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs8{font-size:108.000000px;}
.fs3{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y5{bottom:6.840000px;}
.y5a{bottom:14.565000px;}
.y52{bottom:14.580000px;}
.y5d{bottom:14.745000px;}
.y54{bottom:14.760000px;}
.y58{bottom:14.790000px;}
.y81{bottom:15.330000px;}
.y80{bottom:40.650000px;}
.y51{bottom:45.720000px;}
.y4{bottom:49.320000px;}
.y7f{bottom:65.955000px;}
.y50{bottom:76.680000px;}
.y7e{bottom:95.865000px;}
.y3{bottom:98.280000px;}
.y4f{bottom:107.820000px;}
.y78{bottom:113.430000px;}
.y63{bottom:127.836000px;}
.y62{bottom:132.336000px;}
.y22{bottom:136.296000px;}
.y3c{bottom:142.596000px;}
.y61{bottom:143.676000px;}
.y79{bottom:151.455000px;}
.y21{bottom:172.470000px;}
.y60{bottom:174.285000px;}
.y3b{bottom:178.770000px;}
.y7a{bottom:189.435000px;}
.y76{bottom:197.310000px;}
.y77{bottom:197.460000px;}
.y5f{bottom:206.145000px;}
.y20{bottom:208.650000px;}
.y3a{bottom:214.950000px;}
.y7b{bottom:227.445000px;}
.y5e{bottom:238.005000px;}
.y1f{bottom:244.830000px;}
.y39{bottom:251.130000px;}
.y7c{bottom:265.470000px;}
.y5c{bottom:269.685000px;}
.y1e{bottom:280.650000px;}
.y28{bottom:281.010000px;}
.y38{bottom:287.310000px;}
.y5b{bottom:301.545000px;}
.y7d{bottom:303.480000px;}
.y1d{bottom:317.370000px;}
.y37{bottom:323.670000px;}
.y59{bottom:333.405000px;}
.y1c{bottom:353.550000px;}
.y36{bottom:359.850000px;}
.y57{bottom:365.085000px;}
.y85{bottom:389.415000px;}
.y1b{bottom:389.775000px;}
.y35{bottom:396.075000px;}
.y56{bottom:396.975000px;}
.y1a{bottom:425.955000px;}
.y55{bottom:428.835000px;}
.y34{bottom:432.255000px;}
.y53{bottom:460.515000px;}
.y83{bottom:461.955000px;}
.y19{bottom:462.315000px;}
.y33{bottom:468.615000px;}
.y4e{bottom:492.375000px;}
.y27{bottom:498.135000px;}
.y18{bottom:498.495000px;}
.y32{bottom:504.795000px;}
.y17{bottom:534.675000px;}
.y75{bottom:538.455000px;}
.y31{bottom:540.975000px;}
.y16{bottom:570.855000px;}
.y74{bottom:574.635000px;}
.y30{bottom:577.155000px;}
.y15{bottom:607.215000px;}
.y73{bottom:610.815000px;}
.y2f{bottom:613.515000px;}
.y4c{bottom:634.065000px;}
.y4d{bottom:641.625000px;}
.y3d{bottom:643.065000px;}
.y14{bottom:643.425000px;}
.y72{bottom:647.025000px;}
.y2e{bottom:649.725000px;}
.y4b{bottom:670.245000px;}
.y8b{bottom:674.385000px;}
.y13{bottom:679.605000px;}
.y71{bottom:683.205000px;}
.y2d{bottom:685.905000px;}
.y4a{bottom:706.605000px;}
.y8a{bottom:710.385000px;}
.y12{bottom:715.785000px;}
.y70{bottom:719.565000px;}
.y2c{bottom:722.085000px;}
.y49{bottom:743.145000px;}
.y89{bottom:746.925000px;}
.y11{bottom:752.145000px;}
.y6f{bottom:755.745000px;}
.y2b{bottom:758.265000px;}
.y48{bottom:779.325000px;}
.y88{bottom:783.105000px;}
.y10{bottom:788.325000px;}
.y6e{bottom:791.925000px;}
.y2a{bottom:794.625000px;}
.y47{bottom:815.505000px;}
.y87{bottom:819.285000px;}
.yf{bottom:824.505000px;}
.y6d{bottom:828.105000px;}
.y29{bottom:839.445000px;}
.y46{bottom:851.865000px;}
.y86{bottom:858.165000px;}
.ye{bottom:860.685000px;}
.y6c{bottom:864.465000px;}
.y45{bottom:888.090000px;}
.yd{bottom:896.910000px;}
.y6b{bottom:900.690000px;}
.y44{bottom:924.270000px;}
.yc{bottom:933.270000px;}
.y6a{bottom:936.870000px;}
.y43{bottom:960.450000px;}
.y84{bottom:969.090000px;}
.yb{bottom:969.450000px;}
.y69{bottom:973.050000px;}
.y42{bottom:996.810000px;}
.ya{bottom:1005.630000px;}
.y68{bottom:1009.410000px;}
.y41{bottom:1032.990000px;}
.y9{bottom:1041.450000px;}
.y26{bottom:1041.810000px;}
.y67{bottom:1045.590000px;}
.y40{bottom:1069.170000px;}
.y8{bottom:1077.810000px;}
.y25{bottom:1078.170000px;}
.y66{bottom:1081.770000px;}
.y3f{bottom:1105.350000px;}
.y7{bottom:1113.990000px;}
.y24{bottom:1114.350000px;}
.y65{bottom:1117.950000px;}
.y82{bottom:1121.550000px;}
.y64{bottom:1137.750000px;}
.y6{bottom:1150.200000px;}
.y3e{bottom:1150.380000px;}
.y23{bottom:1150.560000px;}
.y2{bottom:1187.280000px;}
.y1{bottom:1211.400000px;}
.h13{height:29.678906px;}
.h11{height:30.945000px;}
.hf{height:31.125000px;}
.h12{height:31.161000px;}
.h15{height:31.170000px;}
.h4{height:32.400000px;}
.h14{height:47.344922px;}
.h18{height:53.709961px;}
.hb{height:54.421875px;}
.h7{height:59.066719px;}
.h9{height:59.436914px;}
.h5{height:69.144258px;}
.he{height:70.664062px;}
.h10{height:72.562500px;}
.h3{height:80.208984px;}
.h8{height:82.635820px;}
.h6{height:82.676953px;}
.h2{height:84.898125px;}
.h1a{height:86.585445px;}
.h16{height:93.983203px;}
.h19{height:108.843750px;}
.hd{height:124.185000px;}
.hc{height:132.789375px;}
.h17{height:323.820000px;}
.ha{height:1262.864910px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:45.360000px;}
.w4{width:113.211000px;}
.w5{width:185.415000px;}
.w6{width:198.570000px;}
.w7{width:200.895000px;}
.w8{width:540.000000px;}
.w3{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:9.525000px;}
.x23{left:17.100000px;}
.x24{left:20.700000px;}
.x27{left:23.025000px;}
.x22{left:30.240000px;}
.x34{left:36.105000px;}
.x20{left:48.945000px;}
.x26{left:52.005000px;}
.x1c{left:56.865000px;}
.x2a{left:59.745000px;}
.x35{left:79.410000px;}
.x1e{left:81.570000px;}
.x28{left:85.350000px;}
.x2e{left:89.130000px;}
.x2f{left:92.370000px;}
.x2b{left:93.630000px;}
.x2c{left:95.790000px;}
.x2d{left:96.870000px;}
.x1b{left:119.925000px;}
.x29{left:121.710000px;}
.x3{left:127.656000px;}
.x31{left:131.436000px;}
.x1{left:139.716000px;}
.xf{left:144.216000px;}
.xc{left:170.130000px;}
.x5{left:183.630000px;}
.x11{left:188.850000px;}
.x36{left:196.410000px;}
.x33{left:229.500000px;}
.x1d{left:233.865000px;}
.xe{left:236.550000px;}
.x18{left:263.010000px;}
.x6{left:283.530000px;}
.xa{left:295.815000px;}
.x9{left:311.475000px;}
.xd{left:324.435000px;}
.x10{left:339.915000px;}
.x8{left:341.715000px;}
.x30{left:343.695000px;}
.x12{left:348.195000px;}
.xb{left:355.755000px;}
.x37{left:362.955000px;}
.x15{left:396.615000px;}
.x16{left:406.875000px;}
.x2{left:414.255000px;}
.x14{left:417.675000px;}
.x21{left:420.015000px;}
.x13{left:442.515000px;}
.x3a{left:450.615000px;}
.x7{left:499.605000px;}
.x38{left:587.062500px;}
.x39{left:593.925000px;}
.x25{left:619.320000px;}
.x19{left:729.307500px;}
.x1a{left:736.170000px;}
.x17{left:762.090000px;}
.x32{left:769.650000px;}
.x4{left:831.780000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.336533pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls6{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.024960pt;}
.ls9{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.320000pt;}
.lsb{letter-spacing:1.872640pt;}
.ls0{letter-spacing:27.360000pt;}
.ls5{letter-spacing:39.680000pt;}
.ls4{letter-spacing:63.200000pt;}
.lsd{letter-spacing:112.943360pt;}
.lsc{letter-spacing:150.063360pt;}
.ws5{word-spacing:-53.120000pt;}
.ws6{word-spacing:-19.040000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.592000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
.ws4{word-spacing:125.594667pt;}
._a{margin-left:-1.872000pt;}
._0{margin-left:-0.953813pt;}
._1{width:0.998400pt;}
._b{width:2.520960pt;}
._18{width:3.968640pt;}
._19{width:5.122133pt;}
._1a{width:6.534187pt;}
._7{width:7.917653pt;}
._23{width:9.117013pt;}
._1d{width:10.014293pt;}
._4{width:10.932480pt;}
._9{width:12.141227pt;}
._1b{width:13.317973pt;}
._3{width:15.031253pt;}
._22{width:16.226560pt;}
._1f{width:17.197440pt;}
._c{width:20.192640pt;}
._8{width:21.396053pt;}
._26{width:22.342827pt;}
._25{width:23.362560pt;}
._16{width:24.410880pt;}
._17{width:25.833600pt;}
._d{width:27.480960pt;}
._e{width:28.594773pt;}
._24{width:29.811627pt;}
._5{width:30.775680pt;}
._6{width:31.996373pt;}
._13{width:32.947200pt;}
._14{width:34.350293pt;}
._20{width:35.268480pt;}
._21{width:36.192000pt;}
._1c{width:38.787840pt;}
._28{width:40.467200pt;}
._2{width:41.870080pt;}
._f{width:46.425600pt;}
._10{width:47.379413pt;}
._1e{width:49.026773pt;}
._27{width:50.019840pt;}
._15{width:57.121920pt;}
._11{width:62.300160pt;}
._12{width:85.343573pt;}
.fs5{font-size:26.880000pt;}
.fs6{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:53.120000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:72.320000pt;}
.fs0{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs8{font-size:96.000000pt;}
.fs3{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:6.080000pt;}
.y5a{bottom:12.946667pt;}
.y52{bottom:12.960000pt;}
.y5d{bottom:13.106667pt;}
.y54{bottom:13.120000pt;}
.y58{bottom:13.146667pt;}
.y81{bottom:13.626667pt;}
.y80{bottom:36.133333pt;}
.y51{bottom:40.640000pt;}
.y4{bottom:43.840000pt;}
.y7f{bottom:58.626667pt;}
.y50{bottom:68.160000pt;}
.y7e{bottom:85.213333pt;}
.y3{bottom:87.360000pt;}
.y4f{bottom:95.840000pt;}
.y78{bottom:100.826667pt;}
.y63{bottom:113.632000pt;}
.y62{bottom:117.632000pt;}
.y22{bottom:121.152000pt;}
.y3c{bottom:126.752000pt;}
.y61{bottom:127.712000pt;}
.y79{bottom:134.626667pt;}
.y21{bottom:153.306667pt;}
.y60{bottom:154.920000pt;}
.y3b{bottom:158.906667pt;}
.y7a{bottom:168.386667pt;}
.y76{bottom:175.386667pt;}
.y77{bottom:175.520000pt;}
.y5f{bottom:183.240000pt;}
.y20{bottom:185.466667pt;}
.y3a{bottom:191.066667pt;}
.y7b{bottom:202.173333pt;}
.y5e{bottom:211.560000pt;}
.y1f{bottom:217.626667pt;}
.y39{bottom:223.226667pt;}
.y7c{bottom:235.973333pt;}
.y5c{bottom:239.720000pt;}
.y1e{bottom:249.466667pt;}
.y28{bottom:249.786667pt;}
.y38{bottom:255.386667pt;}
.y5b{bottom:268.040000pt;}
.y7d{bottom:269.760000pt;}
.y1d{bottom:282.106667pt;}
.y37{bottom:287.706667pt;}
.y59{bottom:296.360000pt;}
.y1c{bottom:314.266667pt;}
.y36{bottom:319.866667pt;}
.y57{bottom:324.520000pt;}
.y85{bottom:346.146667pt;}
.y1b{bottom:346.466667pt;}
.y35{bottom:352.066667pt;}
.y56{bottom:352.866667pt;}
.y1a{bottom:378.626667pt;}
.y55{bottom:381.186667pt;}
.y34{bottom:384.226667pt;}
.y53{bottom:409.346667pt;}
.y83{bottom:410.626667pt;}
.y19{bottom:410.946667pt;}
.y33{bottom:416.546667pt;}
.y4e{bottom:437.666667pt;}
.y27{bottom:442.786667pt;}
.y18{bottom:443.106667pt;}
.y32{bottom:448.706667pt;}
.y17{bottom:475.266667pt;}
.y75{bottom:478.626667pt;}
.y31{bottom:480.866667pt;}
.y16{bottom:507.426667pt;}
.y74{bottom:510.786667pt;}
.y30{bottom:513.026667pt;}
.y15{bottom:539.746667pt;}
.y73{bottom:542.946667pt;}
.y2f{bottom:545.346667pt;}
.y4c{bottom:563.613333pt;}
.y4d{bottom:570.333333pt;}
.y3d{bottom:571.613333pt;}
.y14{bottom:571.933333pt;}
.y72{bottom:575.133333pt;}
.y2e{bottom:577.533333pt;}
.y4b{bottom:595.773333pt;}
.y8b{bottom:599.453333pt;}
.y13{bottom:604.093333pt;}
.y71{bottom:607.293333pt;}
.y2d{bottom:609.693333pt;}
.y4a{bottom:628.093333pt;}
.y8a{bottom:631.453333pt;}
.y12{bottom:636.253333pt;}
.y70{bottom:639.613333pt;}
.y2c{bottom:641.853333pt;}
.y49{bottom:660.573333pt;}
.y89{bottom:663.933333pt;}
.y11{bottom:668.573333pt;}
.y6f{bottom:671.773333pt;}
.y2b{bottom:674.013333pt;}
.y48{bottom:692.733333pt;}
.y88{bottom:696.093333pt;}
.y10{bottom:700.733333pt;}
.y6e{bottom:703.933333pt;}
.y2a{bottom:706.333333pt;}
.y47{bottom:724.893333pt;}
.y87{bottom:728.253333pt;}
.yf{bottom:732.893333pt;}
.y6d{bottom:736.093333pt;}
.y29{bottom:746.173333pt;}
.y46{bottom:757.213333pt;}
.y86{bottom:762.813333pt;}
.ye{bottom:765.053333pt;}
.y6c{bottom:768.413333pt;}
.y45{bottom:789.413333pt;}
.yd{bottom:797.253333pt;}
.y6b{bottom:800.613333pt;}
.y44{bottom:821.573333pt;}
.yc{bottom:829.573333pt;}
.y6a{bottom:832.773333pt;}
.y43{bottom:853.733333pt;}
.y84{bottom:861.413333pt;}
.yb{bottom:861.733333pt;}
.y69{bottom:864.933333pt;}
.y42{bottom:886.053333pt;}
.ya{bottom:893.893333pt;}
.y68{bottom:897.253333pt;}
.y41{bottom:918.213333pt;}
.y9{bottom:925.733333pt;}
.y26{bottom:926.053333pt;}
.y67{bottom:929.413333pt;}
.y40{bottom:950.373333pt;}
.y8{bottom:958.053333pt;}
.y25{bottom:958.373333pt;}
.y66{bottom:961.573333pt;}
.y3f{bottom:982.533333pt;}
.y7{bottom:990.213333pt;}
.y24{bottom:990.533333pt;}
.y65{bottom:993.733333pt;}
.y82{bottom:996.933333pt;}
.y64{bottom:1011.333333pt;}
.y6{bottom:1022.400000pt;}
.y3e{bottom:1022.560000pt;}
.y23{bottom:1022.720000pt;}
.y2{bottom:1055.360000pt;}
.y1{bottom:1076.800000pt;}
.h13{height:26.381250pt;}
.h11{height:27.506667pt;}
.hf{height:27.666667pt;}
.h12{height:27.698667pt;}
.h15{height:27.706667pt;}
.h4{height:28.800000pt;}
.h14{height:42.084375pt;}
.h18{height:47.742188pt;}
.hb{height:48.375000pt;}
.h7{height:52.503750pt;}
.h9{height:52.832812pt;}
.h5{height:61.461562pt;}
.he{height:62.812500pt;}
.h10{height:64.500000pt;}
.h3{height:71.296875pt;}
.h8{height:73.454062pt;}
.h6{height:73.490625pt;}
.h2{height:75.465000pt;}
.h1a{height:76.964840pt;}
.h16{height:83.540625pt;}
.h19{height:96.750000pt;}
.hd{height:110.386667pt;}
.hc{height:118.035000pt;}
.h17{height:287.840000pt;}
.ha{height:1122.546587pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:40.320000pt;}
.w4{width:100.632000pt;}
.w5{width:164.813333pt;}
.w6{width:176.506667pt;}
.w7{width:178.573333pt;}
.w8{width:480.000000pt;}
.w3{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:8.466667pt;}
.x23{left:15.200000pt;}
.x24{left:18.400000pt;}
.x27{left:20.466667pt;}
.x22{left:26.880000pt;}
.x34{left:32.093333pt;}
.x20{left:43.506667pt;}
.x26{left:46.226667pt;}
.x1c{left:50.546667pt;}
.x2a{left:53.106667pt;}
.x35{left:70.586667pt;}
.x1e{left:72.506667pt;}
.x28{left:75.866667pt;}
.x2e{left:79.226667pt;}
.x2f{left:82.106667pt;}
.x2b{left:83.226667pt;}
.x2c{left:85.146667pt;}
.x2d{left:86.106667pt;}
.x1b{left:106.600000pt;}
.x29{left:108.186667pt;}
.x3{left:113.472000pt;}
.x31{left:116.832000pt;}
.x1{left:124.192000pt;}
.xf{left:128.192000pt;}
.xc{left:151.226667pt;}
.x5{left:163.226667pt;}
.x11{left:167.866667pt;}
.x36{left:174.586667pt;}
.x33{left:204.000000pt;}
.x1d{left:207.880000pt;}
.xe{left:210.266667pt;}
.x18{left:233.786667pt;}
.x6{left:252.026667pt;}
.xa{left:262.946667pt;}
.x9{left:276.866667pt;}
.xd{left:288.386667pt;}
.x10{left:302.146667pt;}
.x8{left:303.746667pt;}
.x30{left:305.506667pt;}
.x12{left:309.506667pt;}
.xb{left:316.226667pt;}
.x37{left:322.626667pt;}
.x15{left:352.546667pt;}
.x16{left:361.666667pt;}
.x2{left:368.226667pt;}
.x14{left:371.266667pt;}
.x21{left:373.346667pt;}
.x13{left:393.346667pt;}
.x3a{left:400.546667pt;}
.x7{left:444.093333pt;}
.x38{left:521.833333pt;}
.x39{left:527.933333pt;}
.x25{left:550.506667pt;}
.x19{left:648.273333pt;}
.x1a{left:654.373333pt;}
.x17{left:677.413333pt;}
.x32{left:684.133333pt;}
.x4{left:739.360000pt;}
}




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