
    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_e5697121b8aaed65bf4e3cab.woff')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_3c30e279aec1041ecd8a4304.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_08dff5f045f2bcd1f1f9ffe4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_bd8df9d1a5590784ae2e84d1.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c8d6a36aab194f8548965e2f.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e8b1e9a742e22459ddf83b79.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b671b657b5cb29ba7cab197b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff9{font-family:ff9;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;}
.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;}
.v1{vertical-align:23.760000px;}
.ls7{letter-spacing:-1.080000px;}
.ls9{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.223800px;}
.ls3{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.109200px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.360000px;}
.ls8{letter-spacing:39.881280px;}
.lsa{letter-spacing:59.321280px;}
.lsc{letter-spacing:153.336000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-66.240000px;}
.wsc{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.254600px;}
.ws3{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws7{word-spacing:-11.700000px;}
.ws8{word-spacing:-10.980000px;}
.ws4{word-spacing:-10.440000px;}
.ws9{word-spacing:0.000000px;}
._16{margin-left:-7.737360px;}
._13{margin-left:-6.489600px;}
._18{margin-left:-5.374080px;}
._17{margin-left:-4.239360px;}
._10{margin-left:-3.227040px;}
._0{margin-left:-1.254240px;}
._3{width:1.374480px;}
._7{width:2.450160px;}
._8{width:3.676080px;}
._b{width:4.721040px;}
._d{width:6.454080px;}
._f{width:7.470000px;}
._e{width:8.784720px;}
._19{width:10.041840px;}
._12{width:11.175120px;}
._1c{width:12.643920px;}
._11{width:13.924080px;}
._15{width:14.970240px;}
._9{width:16.374240px;}
._a{width:17.449920px;}
._c{width:18.645120px;}
._4{width:20.437920px;}
._14{width:21.859200px;}
._1e{width:22.985280px;}
._21{width:24.374400px;}
._1a{width:26.158080px;}
._5{width:27.250560px;}
._6{width:28.864080px;}
._1d{width:34.511040px;}
._1b{width:41.201280px;}
._1f{width:42.393600px;}
._20{width:46.500480px;}
._22{width:71.009280px;}
._23{width:72.263520px;}
._26{width:93.000960px;}
._27{width:94.032000px;}
._24{width:127.578240px;}
._25{width:128.731680px;}
._2{width:250.860000px;}
._1{width:1041.448800px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:7.020000px;}
.y5{bottom:56.340000px;}
.y4{bottom:72.936000px;}
.y85{bottom:114.876000px;}
.yb6{bottom:126.576000px;}
.y84{bottom:127.836000px;}
.y3f{bottom:128.736000px;}
.y75{bottom:133.776000px;}
.yb5{bottom:145.476000px;}
.y83{bottom:146.916000px;}
.y3e{bottom:147.636000px;}
.y74{bottom:152.850000px;}
.yb4{bottom:164.550000px;}
.y82{bottom:165.810000px;}
.y3d{bottom:166.530000px;}
.y73{bottom:171.750000px;}
.yb3{bottom:183.450000px;}
.y81{bottom:184.890000px;}
.y3c{bottom:185.610000px;}
.y72{bottom:190.830000px;}
.yb2{bottom:202.530000px;}
.y80{bottom:203.790000px;}
.y3b{bottom:204.510000px;}
.y71{bottom:209.730000px;}
.yb1{bottom:221.430000px;}
.y7f{bottom:222.870000px;}
.y3a{bottom:223.590000px;}
.y70{bottom:228.630000px;}
.yb0{bottom:240.330000px;}
.y8d{bottom:241.410000px;}
.y7e{bottom:241.770000px;}
.y39{bottom:242.490000px;}
.y6f{bottom:247.710000px;}
.yaf{bottom:259.410000px;}
.y8c{bottom:260.310000px;}
.y38{bottom:261.390000px;}
.y7d{bottom:261.930000px;}
.y6e{bottom:266.610000px;}
.yae{bottom:278.310000px;}
.y8b{bottom:279.390000px;}
.y37{bottom:280.470000px;}
.y7c{bottom:280.830000px;}
.y6d{bottom:285.690000px;}
.yad{bottom:297.390000px;}
.y8a{bottom:298.290000px;}
.y36{bottom:299.370000px;}
.y7b{bottom:300.990000px;}
.y6c{bottom:304.590000px;}
.yac{bottom:316.290000px;}
.y35{bottom:317.190000px;}
.y7a{bottom:319.890000px;}
.y6b{bottom:323.490000px;}
.y34{bottom:331.050000px;}
.yab{bottom:335.190000px;}
.y89{bottom:336.270000px;}
.y79{bottom:340.275000px;}
.y6a{bottom:342.615000px;}
.y33{bottom:346.035000px;}
.yaa{bottom:354.315000px;}
.y88{bottom:355.215000px;}
.y78{bottom:359.175000px;}
.y69{bottom:361.515000px;}
.y32{bottom:364.575000px;}
.ya9{bottom:373.215000px;}
.y87{bottom:374.295000px;}
.y77{bottom:379.335000px;}
.y68{bottom:380.595000px;}
.y31{bottom:381.855000px;}
.y86{bottom:389.595000px;}
.ya8{bottom:392.295000px;}
.y76{bottom:398.235000px;}
.y30{bottom:399.135000px;}
.y67{bottom:399.495000px;}
.ya7{bottom:411.195000px;}
.y2f{bottom:416.415000px;}
.y66{bottom:418.575000px;}
.ya6{bottom:430.095000px;}
.y2e{bottom:433.515000px;}
.y65{bottom:437.475000px;}
.ya5{bottom:449.175000px;}
.y2d{bottom:450.795000px;}
.y64{bottom:456.375000px;}
.y2c{bottom:468.075000px;}
.y63{bottom:475.455000px;}
.y2b{bottom:485.355000px;}
.ya4{bottom:487.155000px;}
.y62{bottom:494.355000px;}
.y2a{bottom:502.635000px;}
.ya3{bottom:506.055000px;}
.y61{bottom:513.435000px;}
.y29{bottom:519.735000px;}
.ya2{bottom:524.955000px;}
.y60{bottom:532.335000px;}
.y28{bottom:537.015000px;}
.ya1{bottom:544.035000px;}
.y5f{bottom:551.235000px;}
.y27{bottom:554.295000px;}
.ya0{bottom:562.935000px;}
.y5e{bottom:570.315000px;}
.y26{bottom:571.575000px;}
.y9f{bottom:582.015000px;}
.y25{bottom:588.855000px;}
.y5d{bottom:589.215000px;}
.y9e{bottom:600.915000px;}
.y24{bottom:606.165000px;}
.y5c{bottom:608.325000px;}
.y9d{bottom:619.845000px;}
.y23{bottom:623.265000px;}
.y5b{bottom:627.225000px;}
.y9c{bottom:638.925000px;}
.y22{bottom:640.545000px;}
.y5a{bottom:646.125000px;}
.y21{bottom:657.825000px;}
.y59{bottom:665.205000px;}
.y20{bottom:675.105000px;}
.y9b{bottom:676.905000px;}
.y58{bottom:684.105000px;}
.y1f{bottom:692.385000px;}
.y9a{bottom:695.805000px;}
.y57{bottom:703.185000px;}
.y1e{bottom:709.665000px;}
.y99{bottom:714.885000px;}
.y56{bottom:722.085000px;}
.y1d{bottom:726.765000px;}
.y98{bottom:733.785000px;}
.y55{bottom:740.985000px;}
.y1c{bottom:744.045000px;}
.y97{bottom:752.685000px;}
.y54{bottom:760.065000px;}
.y1b{bottom:761.325000px;}
.y96{bottom:771.765000px;}
.y1a{bottom:778.605000px;}
.y53{bottom:778.965000px;}
.y95{bottom:790.665000px;}
.y19{bottom:795.885000px;}
.y52{bottom:798.045000px;}
.y94{bottom:809.745000px;}
.y18{bottom:812.985000px;}
.y51{bottom:816.945000px;}
.y93{bottom:828.645000px;}
.y17{bottom:830.265000px;}
.y50{bottom:835.845000px;}
.y16{bottom:847.545000px;}
.y4f{bottom:854.925000px;}
.y15{bottom:864.825000px;}
.y92{bottom:866.625000px;}
.y4e{bottom:873.870000px;}
.y14{bottom:882.150000px;}
.y91{bottom:885.570000px;}
.y4d{bottom:892.950000px;}
.y13{bottom:899.790000px;}
.y90{bottom:904.650000px;}
.y4c{bottom:911.850000px;}
.y12{bottom:918.690000px;}
.y8f{bottom:923.550000px;}
.y4b{bottom:930.930000px;}
.y11{bottom:937.770000px;}
.y8e{bottom:938.850000px;}
.y4a{bottom:949.830000px;}
.y10{bottom:956.670000px;}
.y49{bottom:968.730000px;}
.yf{bottom:975.750000px;}
.y48{bottom:987.810000px;}
.ye{bottom:994.650000px;}
.y47{bottom:1006.710000px;}
.yd{bottom:1014.090000px;}
.y46{bottom:1025.790000px;}
.yc{bottom:1036.590000px;}
.y45{bottom:1044.690000px;}
.yb{bottom:1057.290000px;}
.y44{bottom:1063.590000px;}
.ya{bottom:1071.870000px;}
.y43{bottom:1082.670000px;}
.y9{bottom:1089.150000px;}
.y42{bottom:1101.570000px;}
.y8{bottom:1106.430000px;}
.y41{bottom:1120.650000px;}
.y7{bottom:1123.530000px;}
.y40{bottom:1139.580000px;}
.y6{bottom:1140.840000px;}
.y3{bottom:1171.800000px;}
.y1{bottom:1182.960000px;}
.h2{height:26.820000px;}
.h8{height:34.036523px;}
.h4{height:34.837383px;}
.h5{height:39.760312px;}
.h6{height:41.726953px;}
.h7{height:42.164648px;}
.hf{height:43.156758px;}
.hc{height:46.251562px;}
.ha{height:46.736719px;}
.hd{height:47.836406px;}
.h12{height:48.224531px;}
.he{height:49.255313px;}
.h10{height:50.273438px;}
.h3{height:51.996094px;}
.hb{height:53.224453px;}
.h11{height:54.596250px;}
.h9{height:54.864844px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:53.100000px;}
.w3{width:619.305000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x4{left:108.035987px;}
.x1{left:116.136000px;}
.x8{left:119.735987px;}
.xd{left:135.035987px;}
.xf{left:140.075987px;}
.xc{left:150.509987px;}
.x6{left:156.089987px;}
.xe{left:162.029987px;}
.x3{left:169.230000px;}
.x11{left:225.569987px;}
.xa{left:278.354987px;}
.x7{left:290.414987px;}
.x13{left:326.594987px;}
.x9{left:359.534987px;}
.xb{left:420.194987px;}
.x5{left:446.474987px;}
.x12{left:714.209987px;}
.x10{left:741.209987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.198933pt;}
.ls3{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.097067pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.320000pt;}
.ls8{letter-spacing:35.450027pt;}
.lsa{letter-spacing:52.730027pt;}
.lsc{letter-spacing:136.298667pt;}
.wsa{word-spacing:-58.880000pt;}
.wsc{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.448533pt;}
.ws3{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws7{word-spacing:-10.400000pt;}
.ws8{word-spacing:-9.760000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws9{word-spacing:0.000000pt;}
._16{margin-left:-6.877653pt;}
._13{margin-left:-5.768533pt;}
._18{margin-left:-4.776960pt;}
._17{margin-left:-3.768320pt;}
._10{margin-left:-2.868480pt;}
._0{margin-left:-1.114880pt;}
._3{width:1.221760pt;}
._7{width:2.177920pt;}
._8{width:3.267627pt;}
._b{width:4.196480pt;}
._d{width:5.736960pt;}
._f{width:6.640000pt;}
._e{width:7.808640pt;}
._19{width:8.926080pt;}
._12{width:9.933440pt;}
._1c{width:11.239040pt;}
._11{width:12.376960pt;}
._15{width:13.306880pt;}
._9{width:14.554880pt;}
._a{width:15.511040pt;}
._c{width:16.573440pt;}
._4{width:18.167040pt;}
._14{width:19.430400pt;}
._1e{width:20.431360pt;}
._21{width:21.666133pt;}
._1a{width:23.251627pt;}
._5{width:24.222720pt;}
._6{width:25.656960pt;}
._1d{width:30.676480pt;}
._1b{width:36.623360pt;}
._1f{width:37.683200pt;}
._20{width:41.333760pt;}
._22{width:63.119360pt;}
._23{width:64.234240pt;}
._26{width:82.667520pt;}
._27{width:83.584000pt;}
._24{width:113.402880pt;}
._25{width:114.428160pt;}
._2{width:222.986667pt;}
._1{width:925.732267pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:6.240000pt;}
.y5{bottom:50.080000pt;}
.y4{bottom:64.832000pt;}
.y85{bottom:102.112000pt;}
.yb6{bottom:112.512000pt;}
.y84{bottom:113.632000pt;}
.y3f{bottom:114.432000pt;}
.y75{bottom:118.912000pt;}
.yb5{bottom:129.312000pt;}
.y83{bottom:130.592000pt;}
.y3e{bottom:131.232000pt;}
.y74{bottom:135.866667pt;}
.yb4{bottom:146.266667pt;}
.y82{bottom:147.386667pt;}
.y3d{bottom:148.026667pt;}
.y73{bottom:152.666667pt;}
.yb3{bottom:163.066667pt;}
.y81{bottom:164.346667pt;}
.y3c{bottom:164.986667pt;}
.y72{bottom:169.626667pt;}
.yb2{bottom:180.026667pt;}
.y80{bottom:181.146667pt;}
.y3b{bottom:181.786667pt;}
.y71{bottom:186.426667pt;}
.yb1{bottom:196.826667pt;}
.y7f{bottom:198.106667pt;}
.y3a{bottom:198.746667pt;}
.y70{bottom:203.226667pt;}
.yb0{bottom:213.626667pt;}
.y8d{bottom:214.586667pt;}
.y7e{bottom:214.906667pt;}
.y39{bottom:215.546667pt;}
.y6f{bottom:220.186667pt;}
.yaf{bottom:230.586667pt;}
.y8c{bottom:231.386667pt;}
.y38{bottom:232.346667pt;}
.y7d{bottom:232.826667pt;}
.y6e{bottom:236.986667pt;}
.yae{bottom:247.386667pt;}
.y8b{bottom:248.346667pt;}
.y37{bottom:249.306667pt;}
.y7c{bottom:249.626667pt;}
.y6d{bottom:253.946667pt;}
.yad{bottom:264.346667pt;}
.y8a{bottom:265.146667pt;}
.y36{bottom:266.106667pt;}
.y7b{bottom:267.546667pt;}
.y6c{bottom:270.746667pt;}
.yac{bottom:281.146667pt;}
.y35{bottom:281.946667pt;}
.y7a{bottom:284.346667pt;}
.y6b{bottom:287.546667pt;}
.y34{bottom:294.266667pt;}
.yab{bottom:297.946667pt;}
.y89{bottom:298.906667pt;}
.y79{bottom:302.466667pt;}
.y6a{bottom:304.546667pt;}
.y33{bottom:307.586667pt;}
.yaa{bottom:314.946667pt;}
.y88{bottom:315.746667pt;}
.y78{bottom:319.266667pt;}
.y69{bottom:321.346667pt;}
.y32{bottom:324.066667pt;}
.ya9{bottom:331.746667pt;}
.y87{bottom:332.706667pt;}
.y77{bottom:337.186667pt;}
.y68{bottom:338.306667pt;}
.y31{bottom:339.426667pt;}
.y86{bottom:346.306667pt;}
.ya8{bottom:348.706667pt;}
.y76{bottom:353.986667pt;}
.y30{bottom:354.786667pt;}
.y67{bottom:355.106667pt;}
.ya7{bottom:365.506667pt;}
.y2f{bottom:370.146667pt;}
.y66{bottom:372.066667pt;}
.ya6{bottom:382.306667pt;}
.y2e{bottom:385.346667pt;}
.y65{bottom:388.866667pt;}
.ya5{bottom:399.266667pt;}
.y2d{bottom:400.706667pt;}
.y64{bottom:405.666667pt;}
.y2c{bottom:416.066667pt;}
.y63{bottom:422.626667pt;}
.y2b{bottom:431.426667pt;}
.ya4{bottom:433.026667pt;}
.y62{bottom:439.426667pt;}
.y2a{bottom:446.786667pt;}
.ya3{bottom:449.826667pt;}
.y61{bottom:456.386667pt;}
.y29{bottom:461.986667pt;}
.ya2{bottom:466.626667pt;}
.y60{bottom:473.186667pt;}
.y28{bottom:477.346667pt;}
.ya1{bottom:483.586667pt;}
.y5f{bottom:489.986667pt;}
.y27{bottom:492.706667pt;}
.ya0{bottom:500.386667pt;}
.y5e{bottom:506.946667pt;}
.y26{bottom:508.066667pt;}
.y9f{bottom:517.346667pt;}
.y25{bottom:523.426667pt;}
.y5d{bottom:523.746667pt;}
.y9e{bottom:534.146667pt;}
.y24{bottom:538.813333pt;}
.y5c{bottom:540.733333pt;}
.y9d{bottom:550.973333pt;}
.y23{bottom:554.013333pt;}
.y5b{bottom:557.533333pt;}
.y9c{bottom:567.933333pt;}
.y22{bottom:569.373333pt;}
.y5a{bottom:574.333333pt;}
.y21{bottom:584.733333pt;}
.y59{bottom:591.293333pt;}
.y20{bottom:600.093333pt;}
.y9b{bottom:601.693333pt;}
.y58{bottom:608.093333pt;}
.y1f{bottom:615.453333pt;}
.y9a{bottom:618.493333pt;}
.y57{bottom:625.053333pt;}
.y1e{bottom:630.813333pt;}
.y99{bottom:635.453333pt;}
.y56{bottom:641.853333pt;}
.y1d{bottom:646.013333pt;}
.y98{bottom:652.253333pt;}
.y55{bottom:658.653333pt;}
.y1c{bottom:661.373333pt;}
.y97{bottom:669.053333pt;}
.y54{bottom:675.613333pt;}
.y1b{bottom:676.733333pt;}
.y96{bottom:686.013333pt;}
.y1a{bottom:692.093333pt;}
.y53{bottom:692.413333pt;}
.y95{bottom:702.813333pt;}
.y19{bottom:707.453333pt;}
.y52{bottom:709.373333pt;}
.y94{bottom:719.773333pt;}
.y18{bottom:722.653333pt;}
.y51{bottom:726.173333pt;}
.y93{bottom:736.573333pt;}
.y17{bottom:738.013333pt;}
.y50{bottom:742.973333pt;}
.y16{bottom:753.373333pt;}
.y4f{bottom:759.933333pt;}
.y15{bottom:768.733333pt;}
.y92{bottom:770.333333pt;}
.y4e{bottom:776.773333pt;}
.y14{bottom:784.133333pt;}
.y91{bottom:787.173333pt;}
.y4d{bottom:793.733333pt;}
.y13{bottom:799.813333pt;}
.y90{bottom:804.133333pt;}
.y4c{bottom:810.533333pt;}
.y12{bottom:816.613333pt;}
.y8f{bottom:820.933333pt;}
.y4b{bottom:827.493333pt;}
.y11{bottom:833.573333pt;}
.y8e{bottom:834.533333pt;}
.y4a{bottom:844.293333pt;}
.y10{bottom:850.373333pt;}
.y49{bottom:861.093333pt;}
.yf{bottom:867.333333pt;}
.y48{bottom:878.053333pt;}
.ye{bottom:884.133333pt;}
.y47{bottom:894.853333pt;}
.yd{bottom:901.413333pt;}
.y46{bottom:911.813333pt;}
.yc{bottom:921.413333pt;}
.y45{bottom:928.613333pt;}
.yb{bottom:939.813333pt;}
.y44{bottom:945.413333pt;}
.ya{bottom:952.773333pt;}
.y43{bottom:962.373333pt;}
.y9{bottom:968.133333pt;}
.y42{bottom:979.173333pt;}
.y8{bottom:983.493333pt;}
.y41{bottom:996.133333pt;}
.y7{bottom:998.693333pt;}
.y40{bottom:1012.960000pt;}
.y6{bottom:1014.080000pt;}
.y3{bottom:1041.600000pt;}
.y1{bottom:1051.520000pt;}
.h2{height:23.840000pt;}
.h8{height:30.254687pt;}
.h4{height:30.966562pt;}
.h5{height:35.342500pt;}
.h6{height:37.090625pt;}
.h7{height:37.479688pt;}
.hf{height:38.361562pt;}
.hc{height:41.112500pt;}
.ha{height:41.543750pt;}
.hd{height:42.521250pt;}
.h12{height:42.866250pt;}
.he{height:43.782500pt;}
.h10{height:44.687500pt;}
.h3{height:46.218750pt;}
.hb{height:47.310625pt;}
.h11{height:48.530000pt;}
.h9{height:48.768750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:47.200000pt;}
.w3{width:550.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x4{left:96.031988pt;}
.x1{left:103.232000pt;}
.x8{left:106.431988pt;}
.xd{left:120.031988pt;}
.xf{left:124.511988pt;}
.xc{left:133.786655pt;}
.x6{left:138.746655pt;}
.xe{left:144.026655pt;}
.x3{left:150.426667pt;}
.x11{left:200.506655pt;}
.xa{left:247.426655pt;}
.x7{left:258.146655pt;}
.x13{left:290.306655pt;}
.x9{left:319.586655pt;}
.xb{left:373.506655pt;}
.x5{left:396.866655pt;}
.x12{left:634.853322pt;}
.x10{left:658.853322pt;}
}




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