
    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_f03a8033e4a8f9cb78400a70.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2730d89826ea409c9542f09d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c5d375eab9e7611a508ac6f6.woff')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_948d9ad1241d4961c6549d08.woff')format("woff");}.ff5{font-family:ff5;line-height:0.839500;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_a5fdacb3122f3a25c0a986cb.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cd8f9a760ec9d60e1fbc1e50.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_859c72d942ed727e728fa5e8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740234;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;}
@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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_868112290bde75c7a7ff9b03.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ba3494d09f5322372635813e.woff')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.440000px;}
.ls8{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.540000px;}
.ls7{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls3{letter-spacing:0.017280px;}
.ls1{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.lsb{letter-spacing:15.840000px;}
.lsc{letter-spacing:36.305280px;}
.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;}
}
.ws8{word-spacing:-66.240000px;}
.ws9{word-spacing:-16.560000px;}
.wsa{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.860000px;}
.ws2{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws6{word-spacing:-10.980000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-2.464080px;}
._1{margin-left:-1.254240px;}
._0{width:1.015920px;}
._b{width:2.120400px;}
._5{width:3.277200px;}
._6{width:4.451040px;}
._7{width:5.856480px;}
._15{width:6.862560px;}
._14{width:8.341920px;}
._9{width:10.338480px;}
._8{width:11.473920px;}
._f{width:12.728880px;}
._e{width:13.924080px;}
._13{width:15.235200px;}
._a{width:18.465840px;}
._1e{width:19.560960px;}
._1c{width:20.571840px;}
._11{width:21.573360px;}
._10{width:22.589280px;}
._17{width:23.711040px;}
._d{width:24.919920px;}
._c{width:25.995600px;}
._1d{width:27.182160px;}
._16{width:28.615680px;}
._1a{width:30.006720px;}
._1b{width:31.212240px;}
._18{width:33.252480px;}
._19{width:34.970400px;}
._12{width:167.352960px;}
._3{width:247.260000px;}
._2{width:1099.768800px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(128,128,128);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:6.120000px;}
.y5{bottom:53.100000px;}
.y4{bottom:67.500000px;}
.y40{bottom:69.516000px;}
.y78{bottom:71.136000px;}
.y3e{bottom:112.176000px;}
.y3d{bottom:131.076000px;}
.y76{bottom:131.436000px;}
.yad{bottom:132.696000px;}
.y3c{bottom:149.976000px;}
.y75{bottom:151.590000px;}
.y3b{bottom:169.050000px;}
.yac{bottom:170.670000px;}
.y74{bottom:171.750000px;}
.y3a{bottom:187.950000px;}
.yab{bottom:189.570000px;}
.y73{bottom:190.830000px;}
.y39{bottom:207.030000px;}
.yaa{bottom:208.470000px;}
.y72{bottom:209.730000px;}
.y38{bottom:225.930000px;}
.ya9{bottom:227.550000px;}
.y71{bottom:228.630000px;}
.y37{bottom:245.010000px;}
.ya8{bottom:246.450000px;}
.y70{bottom:247.710000px;}
.y36{bottom:263.910000px;}
.ya7{bottom:265.530000px;}
.y6f{bottom:266.610000px;}
.y35{bottom:282.810000px;}
.ya6{bottom:284.430000px;}
.y6e{bottom:285.690000px;}
.y34{bottom:301.890000px;}
.ya5{bottom:303.330000px;}
.y6d{bottom:304.590000px;}
.y33{bottom:320.790000px;}
.ya4{bottom:322.410000px;}
.y6c{bottom:323.490000px;}
.y32{bottom:339.915000px;}
.ya3{bottom:341.355000px;}
.y6b{bottom:342.615000px;}
.y31{bottom:358.815000px;}
.ya2{bottom:360.435000px;}
.y6a{bottom:361.515000px;}
.y30{bottom:377.715000px;}
.ya1{bottom:379.335000px;}
.y69{bottom:380.595000px;}
.y2f{bottom:396.795000px;}
.ya0{bottom:398.415000px;}
.y68{bottom:399.495000px;}
.y2e{bottom:415.695000px;}
.y9f{bottom:417.315000px;}
.y67{bottom:418.575000px;}
.y2d{bottom:433.515000px;}
.y9e{bottom:436.215000px;}
.y66{bottom:437.475000px;}
.y2c{bottom:447.375000px;}
.y9d{bottom:455.295000px;}
.y65{bottom:456.375000px;}
.y2b{bottom:461.955000px;}
.y9c{bottom:474.195000px;}
.y64{bottom:475.455000px;}
.y2a{bottom:479.055000px;}
.y9b{bottom:493.275000px;}
.y63{bottom:494.355000px;}
.y29{bottom:496.335000px;}
.y9a{bottom:512.175000px;}
.y62{bottom:513.435000px;}
.y28{bottom:513.615000px;}
.y27{bottom:530.895000px;}
.y99{bottom:531.075000px;}
.y61{bottom:532.335000px;}
.y26{bottom:548.175000px;}
.y98{bottom:550.155000px;}
.y60{bottom:551.235000px;}
.y25{bottom:565.275000px;}
.y97{bottom:569.055000px;}
.y5f{bottom:570.315000px;}
.y24{bottom:582.555000px;}
.y96{bottom:588.135000px;}
.y5e{bottom:589.215000px;}
.y23{bottom:599.835000px;}
.y95{bottom:607.065000px;}
.y5d{bottom:608.325000px;}
.y22{bottom:617.145000px;}
.y94{bottom:625.965000px;}
.y5c{bottom:627.225000px;}
.y21{bottom:634.425000px;}
.y93{bottom:645.045000px;}
.y5b{bottom:646.125000px;}
.y20{bottom:651.705000px;}
.y92{bottom:663.945000px;}
.y5a{bottom:665.205000px;}
.y1f{bottom:668.805000px;}
.y91{bottom:683.025000px;}
.y59{bottom:684.105000px;}
.y1e{bottom:686.085000px;}
.y90{bottom:701.925000px;}
.y58{bottom:703.185000px;}
.y1d{bottom:703.365000px;}
.y1c{bottom:720.645000px;}
.y8f{bottom:720.825000px;}
.y57{bottom:722.085000px;}
.y1b{bottom:737.925000px;}
.y8e{bottom:739.905000px;}
.y56{bottom:740.985000px;}
.y1a{bottom:755.205000px;}
.y8d{bottom:758.805000px;}
.y55{bottom:760.065000px;}
.y19{bottom:772.305000px;}
.y8c{bottom:777.885000px;}
.y54{bottom:778.965000px;}
.y18{bottom:789.585000px;}
.y8b{bottom:796.785000px;}
.y53{bottom:798.045000px;}
.y17{bottom:806.865000px;}
.y8a{bottom:815.685000px;}
.y52{bottom:816.945000px;}
.y16{bottom:824.145000px;}
.y89{bottom:834.765000px;}
.y51{bottom:835.845000px;}
.y15{bottom:841.785000px;}
.y88{bottom:853.665000px;}
.y50{bottom:854.925000px;}
.y14{bottom:860.325000px;}
.y87{bottom:872.790000px;}
.y4f{bottom:873.870000px;}
.y13{bottom:877.650000px;}
.y86{bottom:891.690000px;}
.y4e{bottom:892.950000px;}
.y12{bottom:900.150000px;}
.y85{bottom:910.770000px;}
.y4d{bottom:911.850000px;}
.y11{bottom:912.570000px;}
.y84{bottom:929.670000px;}
.y4c{bottom:930.930000px;}
.y10{bottom:931.470000px;}
.y83{bottom:948.570000px;}
.y4b{bottom:949.830000px;}
.yf{bottom:950.550000px;}
.y82{bottom:967.650000px;}
.y4a{bottom:968.730000px;}
.ye{bottom:969.450000px;}
.y81{bottom:986.550000px;}
.y49{bottom:987.810000px;}
.y80{bottom:1005.630000px;}
.y48{bottom:1006.710000px;}
.yd{bottom:1007.250000px;}
.y7f{bottom:1024.530000px;}
.y47{bottom:1025.790000px;}
.yc{bottom:1033.170000px;}
.y7e{bottom:1043.430000px;}
.y46{bottom:1044.690000px;}
.yb{bottom:1054.590000px;}
.y7d{bottom:1062.510000px;}
.y45{bottom:1063.590000px;}
.ya{bottom:1071.870000px;}
.y7c{bottom:1081.410000px;}
.y44{bottom:1082.670000px;}
.y9{bottom:1089.150000px;}
.y7b{bottom:1100.490000px;}
.y43{bottom:1101.570000px;}
.y8{bottom:1106.430000px;}
.y7a{bottom:1119.390000px;}
.y42{bottom:1120.650000px;}
.y7{bottom:1123.530000px;}
.y79{bottom:1138.320000px;}
.y41{bottom:1139.580000px;}
.y6{bottom:1140.840000px;}
.y3{bottom:1173.240000px;}
.y77{bottom:1174.860000px;}
.y3f{bottom:1177.560000px;}
.y1{bottom:1188.900000px;}
.h2{height:23.220000px;}
.hc{height:27.147656px;}
.hf{height:33.683203px;}
.he{height:34.036523px;}
.h11{height:35.120039px;}
.h5{height:39.760312px;}
.h6{height:40.135680px;}
.h8{height:41.726953px;}
.h3{height:41.843672px;}
.h7{height:42.164648px;}
.h14{height:43.506914px;}
.h12{height:44.928000px;}
.h10{height:46.251562px;}
.hb{height:46.736719px;}
.h13{height:48.224531px;}
.hd{height:49.255313px;}
.ha{height:54.596250px;}
.h9{height:54.864844px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:62.100000px;}
.w3{width:618.405000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:7.920000px;}
.x2{left:16.020000px;}
.x1{left:99.936000px;}
.x5{left:108.035987px;}
.x6{left:110.195987px;}
.x8{left:128.555987px;}
.x12{left:140.075987px;}
.xe{left:141.335987px;}
.x7{left:144.755987px;}
.x11{left:150.509987px;}
.x3{left:162.030000px;}
.xc{left:170.669987px;}
.x9{left:223.409987px;}
.xd{left:268.229987px;}
.xb{left:277.049987px;}
.xf{left:418.574987px;}
.x10{left:420.194987px;}
.xa{left:446.474987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls8{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.480000pt;}
.ls7{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls3{letter-spacing:0.015360pt;}
.ls1{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.lsb{letter-spacing:14.080000pt;}
.lsc{letter-spacing:32.271360pt;}
.ws8{word-spacing:-58.880000pt;}
.ws9{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws2{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws6{word-spacing:-9.760000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-2.190293pt;}
._1{margin-left:-1.114880pt;}
._0{width:0.903040pt;}
._b{width:1.884800pt;}
._5{width:2.913067pt;}
._6{width:3.956480pt;}
._7{width:5.205760pt;}
._15{width:6.100053pt;}
._14{width:7.415040pt;}
._9{width:9.189760pt;}
._8{width:10.199040pt;}
._f{width:11.314560pt;}
._e{width:12.376960pt;}
._13{width:13.542400pt;}
._a{width:16.414080pt;}
._1e{width:17.387520pt;}
._1c{width:18.286080pt;}
._11{width:19.176320pt;}
._10{width:20.079360pt;}
._17{width:21.076480pt;}
._d{width:22.151040pt;}
._c{width:23.107200pt;}
._1d{width:24.161920pt;}
._16{width:25.436160pt;}
._1a{width:26.672640pt;}
._1b{width:27.744213pt;}
._18{width:29.557760pt;}
._19{width:31.084800pt;}
._12{width:148.758187pt;}
._3{width:219.786667pt;}
._2{width:977.572267pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:5.440000pt;}
.y5{bottom:47.200000pt;}
.y4{bottom:60.000000pt;}
.y40{bottom:61.792000pt;}
.y78{bottom:63.232000pt;}
.y3e{bottom:99.712000pt;}
.y3d{bottom:116.512000pt;}
.y76{bottom:116.832000pt;}
.yad{bottom:117.952000pt;}
.y3c{bottom:133.312000pt;}
.y75{bottom:134.746667pt;}
.y3b{bottom:150.266667pt;}
.yac{bottom:151.706667pt;}
.y74{bottom:152.666667pt;}
.y3a{bottom:167.066667pt;}
.yab{bottom:168.506667pt;}
.y73{bottom:169.626667pt;}
.y39{bottom:184.026667pt;}
.yaa{bottom:185.306667pt;}
.y72{bottom:186.426667pt;}
.y38{bottom:200.826667pt;}
.ya9{bottom:202.266667pt;}
.y71{bottom:203.226667pt;}
.y37{bottom:217.786667pt;}
.ya8{bottom:219.066667pt;}
.y70{bottom:220.186667pt;}
.y36{bottom:234.586667pt;}
.ya7{bottom:236.026667pt;}
.y6f{bottom:236.986667pt;}
.y35{bottom:251.386667pt;}
.ya6{bottom:252.826667pt;}
.y6e{bottom:253.946667pt;}
.y34{bottom:268.346667pt;}
.ya5{bottom:269.626667pt;}
.y6d{bottom:270.746667pt;}
.y33{bottom:285.146667pt;}
.ya4{bottom:286.586667pt;}
.y6c{bottom:287.546667pt;}
.y32{bottom:302.146667pt;}
.ya3{bottom:303.426667pt;}
.y6b{bottom:304.546667pt;}
.y31{bottom:318.946667pt;}
.ya2{bottom:320.386667pt;}
.y6a{bottom:321.346667pt;}
.y30{bottom:335.746667pt;}
.ya1{bottom:337.186667pt;}
.y69{bottom:338.306667pt;}
.y2f{bottom:352.706667pt;}
.ya0{bottom:354.146667pt;}
.y68{bottom:355.106667pt;}
.y2e{bottom:369.506667pt;}
.y9f{bottom:370.946667pt;}
.y67{bottom:372.066667pt;}
.y2d{bottom:385.346667pt;}
.y9e{bottom:387.746667pt;}
.y66{bottom:388.866667pt;}
.y2c{bottom:397.666667pt;}
.y9d{bottom:404.706667pt;}
.y65{bottom:405.666667pt;}
.y2b{bottom:410.626667pt;}
.y9c{bottom:421.506667pt;}
.y64{bottom:422.626667pt;}
.y2a{bottom:425.826667pt;}
.y9b{bottom:438.466667pt;}
.y63{bottom:439.426667pt;}
.y29{bottom:441.186667pt;}
.y9a{bottom:455.266667pt;}
.y62{bottom:456.386667pt;}
.y28{bottom:456.546667pt;}
.y27{bottom:471.906667pt;}
.y99{bottom:472.066667pt;}
.y61{bottom:473.186667pt;}
.y26{bottom:487.266667pt;}
.y98{bottom:489.026667pt;}
.y60{bottom:489.986667pt;}
.y25{bottom:502.466667pt;}
.y97{bottom:505.826667pt;}
.y5f{bottom:506.946667pt;}
.y24{bottom:517.826667pt;}
.y96{bottom:522.786667pt;}
.y5e{bottom:523.746667pt;}
.y23{bottom:533.186667pt;}
.y95{bottom:539.613333pt;}
.y5d{bottom:540.733333pt;}
.y22{bottom:548.573333pt;}
.y94{bottom:556.413333pt;}
.y5c{bottom:557.533333pt;}
.y21{bottom:563.933333pt;}
.y93{bottom:573.373333pt;}
.y5b{bottom:574.333333pt;}
.y20{bottom:579.293333pt;}
.y92{bottom:590.173333pt;}
.y5a{bottom:591.293333pt;}
.y1f{bottom:594.493333pt;}
.y91{bottom:607.133333pt;}
.y59{bottom:608.093333pt;}
.y1e{bottom:609.853333pt;}
.y90{bottom:623.933333pt;}
.y58{bottom:625.053333pt;}
.y1d{bottom:625.213333pt;}
.y1c{bottom:640.573333pt;}
.y8f{bottom:640.733333pt;}
.y57{bottom:641.853333pt;}
.y1b{bottom:655.933333pt;}
.y8e{bottom:657.693333pt;}
.y56{bottom:658.653333pt;}
.y1a{bottom:671.293333pt;}
.y8d{bottom:674.493333pt;}
.y55{bottom:675.613333pt;}
.y19{bottom:686.493333pt;}
.y8c{bottom:691.453333pt;}
.y54{bottom:692.413333pt;}
.y18{bottom:701.853333pt;}
.y8b{bottom:708.253333pt;}
.y53{bottom:709.373333pt;}
.y17{bottom:717.213333pt;}
.y8a{bottom:725.053333pt;}
.y52{bottom:726.173333pt;}
.y16{bottom:732.573333pt;}
.y89{bottom:742.013333pt;}
.y51{bottom:742.973333pt;}
.y15{bottom:748.253333pt;}
.y88{bottom:758.813333pt;}
.y50{bottom:759.933333pt;}
.y14{bottom:764.733333pt;}
.y87{bottom:775.813333pt;}
.y4f{bottom:776.773333pt;}
.y13{bottom:780.133333pt;}
.y86{bottom:792.613333pt;}
.y4e{bottom:793.733333pt;}
.y12{bottom:800.133333pt;}
.y85{bottom:809.573333pt;}
.y4d{bottom:810.533333pt;}
.y11{bottom:811.173333pt;}
.y84{bottom:826.373333pt;}
.y4c{bottom:827.493333pt;}
.y10{bottom:827.973333pt;}
.y83{bottom:843.173333pt;}
.y4b{bottom:844.293333pt;}
.yf{bottom:844.933333pt;}
.y82{bottom:860.133333pt;}
.y4a{bottom:861.093333pt;}
.ye{bottom:861.733333pt;}
.y81{bottom:876.933333pt;}
.y49{bottom:878.053333pt;}
.y80{bottom:893.893333pt;}
.y48{bottom:894.853333pt;}
.yd{bottom:895.333333pt;}
.y7f{bottom:910.693333pt;}
.y47{bottom:911.813333pt;}
.yc{bottom:918.373333pt;}
.y7e{bottom:927.493333pt;}
.y46{bottom:928.613333pt;}
.yb{bottom:937.413333pt;}
.y7d{bottom:944.453333pt;}
.y45{bottom:945.413333pt;}
.ya{bottom:952.773333pt;}
.y7c{bottom:961.253333pt;}
.y44{bottom:962.373333pt;}
.y9{bottom:968.133333pt;}
.y7b{bottom:978.213333pt;}
.y43{bottom:979.173333pt;}
.y8{bottom:983.493333pt;}
.y7a{bottom:995.013333pt;}
.y42{bottom:996.133333pt;}
.y7{bottom:998.693333pt;}
.y79{bottom:1011.840000pt;}
.y41{bottom:1012.960000pt;}
.y6{bottom:1014.080000pt;}
.y3{bottom:1042.880000pt;}
.y77{bottom:1044.320000pt;}
.y3f{bottom:1046.720000pt;}
.y1{bottom:1056.800000pt;}
.h2{height:20.640000pt;}
.hc{height:24.131250pt;}
.hf{height:29.940625pt;}
.he{height:30.254687pt;}
.h11{height:31.217812pt;}
.h5{height:35.342500pt;}
.h6{height:35.676160pt;}
.h8{height:37.090625pt;}
.h3{height:37.194375pt;}
.h7{height:37.479688pt;}
.h14{height:38.672812pt;}
.h12{height:39.936000pt;}
.h10{height:41.112500pt;}
.hb{height:41.543750pt;}
.h13{height:42.866250pt;}
.hd{height:43.782500pt;}
.ha{height:48.530000pt;}
.h9{height:48.768750pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:55.200000pt;}
.w3{width:549.693333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:7.040000pt;}
.x2{left:14.240000pt;}
.x1{left:88.832000pt;}
.x5{left:96.031988pt;}
.x6{left:97.951988pt;}
.x8{left:114.271988pt;}
.x12{left:124.511988pt;}
.xe{left:125.631988pt;}
.x7{left:128.671988pt;}
.x11{left:133.786655pt;}
.x3{left:144.026667pt;}
.xc{left:151.706655pt;}
.x9{left:198.586655pt;}
.xd{left:238.426655pt;}
.xb{left:246.266655pt;}
.xf{left:372.066655pt;}
.x10{left:373.506655pt;}
.xa{left:396.866655pt;}
}




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