
    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_56d5e9e67296a079e199457d.woff2')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_fe4ccfa3956bf7aabb76494b.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8f41910885b5f39a2894b5e3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_ff757da2662f064c8f70c3a1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.978027;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_7c16f3510aac2c056864628b.woff2')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_81352988b4a174cb0e9c017a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cd62383e25ac21d2a69cb93e.woff2')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_61376d761eb01e0f74650eca.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_9bbae596209c2bca3c2b9653.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.920410;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_55bd2b85d38583a1be8b0785.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.719238;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_419c896bd84c28d8ba06429a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.719238;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:ffd;src:url('chunks/assets/font_8f5bba3c1915ce1d5264dd7c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.912109;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:ffe;src:url('chunks/assets/font_03f19366b6e2a68104b13a21.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.912109;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:fff;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_98c8f3adb18845cb042016a4.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.920410;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:ff11;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff11{font-family:ff11;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;}
.lsf{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.457800px;}
.ls9{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.223800px;}
.ls14{letter-spacing:-0.152400px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.008640px;}
.lsa{letter-spacing:0.025920px;}
.lsb{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls11{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:12.420000px;}
.lse{letter-spacing:29.520000px;}
.lsd{letter-spacing:39.881280px;}
.ls10{letter-spacing:46.002720px;}
.ls13{letter-spacing:64.002720px;}
.ls5{letter-spacing:101.700000px;}
.ls12{letter-spacing:199.416000px;}
.ls0{letter-spacing:1367.760000px;}
.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:-59.760000px;}
.ws5{word-spacing:-19.440000px;}
.ws7{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.407600px;}
.ws4{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.940000px;}
.ws2{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws9{word-spacing:-0.066240px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-9.339840px;}
._13{margin-left:-7.423200px;}
._4{margin-left:-6.333840px;}
._1{margin-left:-5.016960px;}
._2{margin-left:-3.999600px;}
._6{margin-left:-2.517120px;}
._0{margin-left:-1.258560px;}
._3{width:1.097760px;}
._7{width:2.558160px;}
._e{width:4.280640px;}
._11{width:6.005520px;}
._a{width:7.282080px;}
._8{width:8.463840px;}
._9{width:9.464160px;}
._b{width:11.011200px;}
._10{width:12.348240px;}
._f{width:13.685040px;}
._17{width:15.129360px;}
._12{width:16.178640px;}
._15{width:17.619840px;}
._14{width:18.745920px;}
._c{width:20.415840px;}
._18{width:22.389120px;}
._d{width:24.306000px;}
._19{width:25.502400px;}
._16{width:26.562240px;}
._20{width:31.199040px;}
._1e{width:32.457600px;}
._1d{width:33.517440px;}
._1f{width:34.804320px;}
._1b{width:37.955520px;}
._1c{width:39.090480px;}
._1a{width:41.267520px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:14.940000px;}
.y3{bottom:18.000000px;}
.y5{bottom:68.580000px;}
.y70{bottom:113.796000px;}
.y3e{bottom:122.976000px;}
.y6d{bottom:123.516000px;}
.y6f{bottom:135.576000px;}
.y3d{bottom:144.756000px;}
.y6c{bottom:157.170000px;}
.y6e{bottom:157.350000px;}
.y3c{bottom:166.530000px;}
.y6b{bottom:179.130000px;}
.y3b{bottom:188.490000px;}
.y6a{bottom:201.090000px;}
.y3a{bottom:210.270000px;}
.y69{bottom:222.870000px;}
.y39{bottom:232.050000px;}
.y68{bottom:244.650000px;}
.y38{bottom:253.830000px;}
.y67{bottom:266.430000px;}
.y37{bottom:275.790000px;}
.y66{bottom:288.210000px;}
.y36{bottom:293.790000px;}
.y35{bottom:307.470000px;}
.y65{bottom:310.170000px;}
.y34{bottom:322.050000px;}
.y64{bottom:331.950000px;}
.y33{bottom:339.375000px;}
.y63{bottom:353.775000px;}
.y32{bottom:356.475000px;}
.y31{bottom:373.755000px;}
.y62{bottom:375.555000px;}
.y30{bottom:391.035000px;}
.y61{bottom:397.515000px;}
.y2f{bottom:408.315000px;}
.y60{bottom:419.295000px;}
.y2e{bottom:425.595000px;}
.y5f{bottom:441.075000px;}
.y2d{bottom:442.875000px;}
.y2c{bottom:459.975000px;}
.y5e{bottom:462.855000px;}
.y2b{bottom:477.255000px;}
.y5d{bottom:484.635000px;}
.y2a{bottom:494.535000px;}
.y5c{bottom:506.595000px;}
.y29{bottom:511.815000px;}
.y5b{bottom:528.375000px;}
.y28{bottom:529.095000px;}
.y27{bottom:546.375000px;}
.y5a{bottom:550.155000px;}
.y26{bottom:563.475000px;}
.y59{bottom:571.935000px;}
.y25{bottom:580.755000px;}
.y58{bottom:593.895000px;}
.y24{bottom:598.035000px;}
.y23{bottom:615.345000px;}
.y57{bottom:615.705000px;}
.y22{bottom:632.625000px;}
.y56{bottom:637.485000px;}
.y21{bottom:649.905000px;}
.y55{bottom:659.265000px;}
.y20{bottom:667.005000px;}
.y54{bottom:681.045000px;}
.y1f{bottom:684.285000px;}
.y1e{bottom:701.565000px;}
.y53{bottom:703.005000px;}
.y1d{bottom:718.845000px;}
.y52{bottom:724.785000px;}
.y1c{bottom:736.125000px;}
.y51{bottom:746.565000px;}
.y1b{bottom:753.225000px;}
.y50{bottom:768.345000px;}
.y1a{bottom:770.505000px;}
.y19{bottom:787.785000px;}
.y4f{bottom:790.125000px;}
.y18{bottom:805.065000px;}
.y4e{bottom:812.085000px;}
.y17{bottom:822.345000px;}
.y4d{bottom:833.865000px;}
.y16{bottom:842.685000px;}
.y4c{bottom:855.645000px;}
.y15{bottom:861.405000px;}
.y4b{bottom:877.470000px;}
.y14{bottom:878.730000px;}
.y13{bottom:896.370000px;}
.y4a{bottom:899.430000px;}
.y12{bottom:915.270000px;}
.y49{bottom:921.210000px;}
.y11{bottom:934.350000px;}
.y48{bottom:942.990000px;}
.y10{bottom:953.250000px;}
.y47{bottom:964.770000px;}
.yf{bottom:972.150000px;}
.y46{bottom:986.550000px;}
.ye{bottom:991.590000px;}
.y45{bottom:1008.510000px;}
.yd{bottom:1014.090000px;}
.y44{bottom:1030.290000px;}
.yc{bottom:1036.590000px;}
.y43{bottom:1052.070000px;}
.yb{bottom:1057.290000px;}
.ya{bottom:1071.870000px;}
.y42{bottom:1073.850000px;}
.y9{bottom:1089.150000px;}
.y41{bottom:1095.810000px;}
.y8{bottom:1106.430000px;}
.y40{bottom:1117.590000px;}
.y7{bottom:1123.530000px;}
.y3f{bottom:1139.400000px;}
.y6{bottom:1140.840000px;}
.y4{bottom:1160.460000px;}
.y1{bottom:1176.120000px;}
.h2{height:33.660000px;}
.he{height:33.683203px;}
.h7{height:34.036523px;}
.h5{height:36.768867px;}
.hc{height:41.726953px;}
.h6{height:42.164648px;}
.hd{height:45.549492px;}
.ha{height:46.251562px;}
.hb{height:46.736719px;}
.hf{height:48.224531px;}
.h3{height:50.068125px;}
.h9{height:50.488594px;}
.h8{height:54.864844px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:61.200000px;}
.w3{width:619.305000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:108.036000px;}
.x8{left:118.475987px;}
.x6{left:120.815987px;}
.xf{left:135.035987px;}
.x5{left:138.635987px;}
.x11{left:140.075987px;}
.x10{left:150.509987px;}
.xe{left:162.029987px;}
.x3{left:169.230000px;}
.x9{left:208.109987px;}
.xa{left:289.334987px;}
.xb{left:357.014987px;}
.x7{left:369.794987px;}
.xd{left:418.574987px;}
.xc{left:420.194987px;}
.x4{left:446.474987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.406933pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.198933pt;}
.ls14{letter-spacing:-0.135467pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.007680pt;}
.lsa{letter-spacing:0.023040pt;}
.lsb{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls11{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:11.040000pt;}
.lse{letter-spacing:26.240000pt;}
.lsd{letter-spacing:35.450027pt;}
.ls10{letter-spacing:40.891307pt;}
.ls13{letter-spacing:56.891307pt;}
.ls5{letter-spacing:90.400000pt;}
.ls12{letter-spacing:177.258667pt;}
.ls0{letter-spacing:1215.786667pt;}
.wsa{word-spacing:-53.120000pt;}
.ws5{word-spacing:-17.280000pt;}
.ws7{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.584533pt;}
.ws4{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.280000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws9{word-spacing:-0.058880pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-8.302080pt;}
._13{margin-left:-6.598400pt;}
._4{margin-left:-5.630080pt;}
._1{margin-left:-4.459520pt;}
._2{margin-left:-3.555200pt;}
._6{margin-left:-2.237440pt;}
._0{margin-left:-1.118720pt;}
._3{width:0.975787pt;}
._7{width:2.273920pt;}
._e{width:3.805013pt;}
._11{width:5.338240pt;}
._a{width:6.472960pt;}
._8{width:7.523413pt;}
._9{width:8.412587pt;}
._b{width:9.787733pt;}
._10{width:10.976213pt;}
._f{width:12.164480pt;}
._17{width:13.448320pt;}
._12{width:14.381013pt;}
._15{width:15.662080pt;}
._14{width:16.663040pt;}
._c{width:18.147413pt;}
._18{width:19.901440pt;}
._d{width:21.605333pt;}
._19{width:22.668800pt;}
._16{width:23.610880pt;}
._20{width:27.732480pt;}
._1e{width:28.851200pt;}
._1d{width:29.793280pt;}
._1f{width:30.937173pt;}
._1b{width:33.738240pt;}
._1c{width:34.747093pt;}
._1a{width:36.682240pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:13.280000pt;}
.y3{bottom:16.000000pt;}
.y5{bottom:60.960000pt;}
.y70{bottom:101.152000pt;}
.y3e{bottom:109.312000pt;}
.y6d{bottom:109.792000pt;}
.y6f{bottom:120.512000pt;}
.y3d{bottom:128.672000pt;}
.y6c{bottom:139.706667pt;}
.y6e{bottom:139.866667pt;}
.y3c{bottom:148.026667pt;}
.y6b{bottom:159.226667pt;}
.y3b{bottom:167.546667pt;}
.y6a{bottom:178.746667pt;}
.y3a{bottom:186.906667pt;}
.y69{bottom:198.106667pt;}
.y39{bottom:206.266667pt;}
.y68{bottom:217.466667pt;}
.y38{bottom:225.626667pt;}
.y67{bottom:236.826667pt;}
.y37{bottom:245.146667pt;}
.y66{bottom:256.186667pt;}
.y36{bottom:261.146667pt;}
.y35{bottom:273.306667pt;}
.y65{bottom:275.706667pt;}
.y34{bottom:286.266667pt;}
.y64{bottom:295.066667pt;}
.y33{bottom:301.666667pt;}
.y63{bottom:314.466667pt;}
.y32{bottom:316.866667pt;}
.y31{bottom:332.226667pt;}
.y62{bottom:333.826667pt;}
.y30{bottom:347.586667pt;}
.y61{bottom:353.346667pt;}
.y2f{bottom:362.946667pt;}
.y60{bottom:372.706667pt;}
.y2e{bottom:378.306667pt;}
.y5f{bottom:392.066667pt;}
.y2d{bottom:393.666667pt;}
.y2c{bottom:408.866667pt;}
.y5e{bottom:411.426667pt;}
.y2b{bottom:424.226667pt;}
.y5d{bottom:430.786667pt;}
.y2a{bottom:439.586667pt;}
.y5c{bottom:450.306667pt;}
.y29{bottom:454.946667pt;}
.y5b{bottom:469.666667pt;}
.y28{bottom:470.306667pt;}
.y27{bottom:485.666667pt;}
.y5a{bottom:489.026667pt;}
.y26{bottom:500.866667pt;}
.y59{bottom:508.386667pt;}
.y25{bottom:516.226667pt;}
.y58{bottom:527.906667pt;}
.y24{bottom:531.586667pt;}
.y23{bottom:546.973333pt;}
.y57{bottom:547.293333pt;}
.y22{bottom:562.333333pt;}
.y56{bottom:566.653333pt;}
.y21{bottom:577.693333pt;}
.y55{bottom:586.013333pt;}
.y20{bottom:592.893333pt;}
.y54{bottom:605.373333pt;}
.y1f{bottom:608.253333pt;}
.y1e{bottom:623.613333pt;}
.y53{bottom:624.893333pt;}
.y1d{bottom:638.973333pt;}
.y52{bottom:644.253333pt;}
.y1c{bottom:654.333333pt;}
.y51{bottom:663.613333pt;}
.y1b{bottom:669.533333pt;}
.y50{bottom:682.973333pt;}
.y1a{bottom:684.893333pt;}
.y19{bottom:700.253333pt;}
.y4f{bottom:702.333333pt;}
.y18{bottom:715.613333pt;}
.y4e{bottom:721.853333pt;}
.y17{bottom:730.973333pt;}
.y4d{bottom:741.213333pt;}
.y16{bottom:749.053333pt;}
.y4c{bottom:760.573333pt;}
.y15{bottom:765.693333pt;}
.y4b{bottom:779.973333pt;}
.y14{bottom:781.093333pt;}
.y13{bottom:796.773333pt;}
.y4a{bottom:799.493333pt;}
.y12{bottom:813.573333pt;}
.y49{bottom:818.853333pt;}
.y11{bottom:830.533333pt;}
.y48{bottom:838.213333pt;}
.y10{bottom:847.333333pt;}
.y47{bottom:857.573333pt;}
.yf{bottom:864.133333pt;}
.y46{bottom:876.933333pt;}
.ye{bottom:881.413333pt;}
.y45{bottom:896.453333pt;}
.yd{bottom:901.413333pt;}
.y44{bottom:915.813333pt;}
.yc{bottom:921.413333pt;}
.y43{bottom:935.173333pt;}
.yb{bottom:939.813333pt;}
.ya{bottom:952.773333pt;}
.y42{bottom:954.533333pt;}
.y9{bottom:968.133333pt;}
.y41{bottom:974.053333pt;}
.y8{bottom:983.493333pt;}
.y40{bottom:993.413333pt;}
.y7{bottom:998.693333pt;}
.y3f{bottom:1012.800000pt;}
.y6{bottom:1014.080000pt;}
.y4{bottom:1031.520000pt;}
.y1{bottom:1045.440000pt;}
.h2{height:29.920000pt;}
.he{height:29.940625pt;}
.h7{height:30.254687pt;}
.h5{height:32.683437pt;}
.hc{height:37.090625pt;}
.h6{height:37.479688pt;}
.hd{height:40.488438pt;}
.ha{height:41.112500pt;}
.hb{height:41.543750pt;}
.hf{height:42.866250pt;}
.h3{height:44.505000pt;}
.h9{height:44.878750pt;}
.h8{height:48.768750pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:54.400000pt;}
.w3{width:550.493333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:96.032000pt;}
.x8{left:105.311988pt;}
.x6{left:107.391988pt;}
.xf{left:120.031988pt;}
.x5{left:123.231988pt;}
.x11{left:124.511988pt;}
.x10{left:133.786655pt;}
.xe{left:144.026655pt;}
.x3{left:150.426667pt;}
.x9{left:184.986655pt;}
.xa{left:257.186655pt;}
.xb{left:317.346655pt;}
.x7{left:328.706655pt;}
.xd{left:372.066655pt;}
.xc{left:373.506655pt;}
.x4{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; }
  