
    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_28ccf00bdfb80b55fb99eaae.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b03ecf5f5903323cd2778479.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a7bc4e29a17936e295d2437e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_06c305479e8a855172b3e713.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_8ae3248356d96a51a5d2d448.woff')format("woff");}.ff8{font-family:ff8;line-height:0.944336;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_6775a20c99024e119e11ec86.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_27ad9d82ca492eef06445c61.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1962df7d394dff302b0b2a1b.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ee200136cf0f0768fd9e2582.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;}
@font-face{font-family:ffd;src:url('chunks/assets/font_6775262af1caebc17727a205.woff')format("woff");}.ffd{font-family:ffd;line-height:0.934082;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.120000px;}
.v1{vertical-align:20.880000px;}
.ls10{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.058320px;}
.lse{letter-spacing:-0.053280px;}
.lsc{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.lsa{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.132600px;}
.ls5{letter-spacing:0.149760px;}
.ls7{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.447840px;}
.ls8{letter-spacing:0.780480px;}
.ls3{letter-spacing:0.786240px;}
.ls12{letter-spacing:46.026720px;}
.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;}
}
.ws10{word-spacing:-24.440544px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws5{word-spacing:-15.300000px;}
.ws11{word-spacing:-15.238800px;}
.wsa{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.580000px;}
.wse{word-spacing:-14.479800px;}
.ws8{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.186000px;}
.ws9{word-spacing:-9.720000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
.wsf{word-spacing:308.757360px;}
._2{margin-left:-3.216240px;}
._3{margin-left:-2.106000px;}
._0{margin-left:-1.080000px;}
._1{width:1.038000px;}
._11{width:2.091600px;}
._f{width:3.264720px;}
._c{width:4.603440px;}
._b{width:5.655120px;}
._10{width:7.306560px;}
._5{width:8.809200px;}
._4{width:9.882240px;}
._12{width:10.973760px;}
._8{width:12.370320px;}
._7{width:13.423920px;}
._6{width:16.852320px;}
._a{width:18.948240px;}
._9{width:20.198880px;}
._e{width:22.111200px;}
._d{width:23.127120px;}
._13{width:55.053840px;}
.fc5{color:rgb(227,108,10);}
.fc7{color:rgb(0,94,162);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(27,27,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.fs9{font-size:108.144000px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.240000px;}
.y3{bottom:3.600000px;}
.ye{bottom:10.800000px;}
.yc{bottom:13.860000px;}
.y3b{bottom:14.940000px;}
.y82{bottom:16.125000px;}
.y4{bottom:17.316000px;}
.y3a{bottom:17.820000px;}
.y2{bottom:20.196000px;}
.y37{bottom:20.520000px;}
.y15{bottom:23.760000px;}
.yb{bottom:30.240000px;}
.y79{bottom:34.890000px;}
.y14{bottom:36.900000px;}
.y36{bottom:37.800000px;}
.y5{bottom:41.220000px;}
.ya{bottom:46.440000px;}
.y13{bottom:55.080000px;}
.y1{bottom:62.280000px;}
.y7a{bottom:64.905000px;}
.y35{bottom:72.360000px;}
.y9{bottom:73.440000px;}
.y34{bottom:89.640000px;}
.y12{bottom:92.520000px;}
.y8{bottom:93.090000px;}
.y7b{bottom:94.965000px;}
.y25{bottom:98.820000px;}
.y33{bottom:106.770000px;}
.y7{bottom:111.270000px;}
.y24{bottom:114.150000px;}
.y50{bottom:114.336000px;}
.y11{bottom:118.260000px;}
.y32{bottom:124.050000px;}
.y7c{bottom:124.995000px;}
.y77{bottom:125.316000px;}
.y4f{bottom:131.616000px;}
.y23{bottom:131.790000px;}
.y76{bottom:140.076000px;}
.y31{bottom:141.330000px;}
.y10{bottom:142.560000px;}
.y4e{bottom:148.896000px;}
.y22{bottom:149.070000px;}
.y7d{bottom:155.010000px;}
.y75{bottom:158.070000px;}
.y30{bottom:158.610000px;}
.y84{bottom:161.250000px;}
.y4d{bottom:166.170000px;}
.y21{bottom:166.350000px;}
.y2f{bottom:175.890000px;}
.y74{bottom:176.070000px;}
.y4c{bottom:183.450000px;}
.y20{bottom:183.990000px;}
.y7e{bottom:185.070000px;}
.y2e{bottom:192.990000px;}
.y73{bottom:194.070000px;}
.y4b{bottom:200.550000px;}
.y1f{bottom:201.450000px;}
.y2d{bottom:210.270000px;}
.y72{bottom:212.070000px;}
.y7f{bottom:215.100000px;}
.y4a{bottom:217.830000px;}
.y1e{bottom:218.910000px;}
.y2c{bottom:227.550000px;}
.y71{bottom:230.070000px;}
.y49{bottom:235.110000px;}
.y1d{bottom:236.190000px;}
.y2b{bottom:244.830000px;}
.y80{bottom:245.130000px;}
.y70{bottom:248.070000px;}
.y48{bottom:252.390000px;}
.y1c{bottom:253.650000px;}
.y2a{bottom:262.110000px;}
.y47{bottom:269.670000px;}
.y1b{bottom:271.110000px;}
.y81{bottom:275.190000px;}
.y29{bottom:279.390000px;}
.y6f{bottom:286.590000px;}
.y46{bottom:286.950000px;}
.y1a{bottom:288.570000px;}
.y28{bottom:296.490000px;}
.y6e{bottom:303.690000px;}
.y45{bottom:304.050000px;}
.y27{bottom:313.770000px;}
.y19{bottom:315.930000px;}
.y6d{bottom:320.970000px;}
.y44{bottom:321.330000px;}
.y26{bottom:331.050000px;}
.y18{bottom:333.750000px;}
.y6c{bottom:335.010000px;}
.y78{bottom:335.340000px;}
.y43{bottom:338.655000px;}
.y83{bottom:340.770000px;}
.y42{bottom:355.935000px;}
.y41{bottom:373.215000px;}
.y40{bottom:390.315000px;}
.y3f{bottom:407.595000px;}
.y3e{bottom:424.875000px;}
.y3d{bottom:442.155000px;}
.y3c{bottom:459.435000px;}
.y39{bottom:473.475000px;}
.y17{bottom:502.635000px;}
.y90{bottom:598.575000px;}
.y8f{bottom:615.885000px;}
.y8e{bottom:633.165000px;}
.y8d{bottom:650.265000px;}
.y8c{bottom:667.545000px;}
.y8b{bottom:684.825000px;}
.y8a{bottom:702.105000px;}
.y6b{bottom:716.325000px;}
.y89{bottom:719.385000px;}
.y6a{bottom:733.605000px;}
.y88{bottom:736.665000px;}
.y69{bottom:748.365000px;}
.y87{bottom:753.765000px;}
.y68{bottom:766.365000px;}
.y86{bottom:771.045000px;}
.y67{bottom:784.365000px;}
.y85{bottom:788.325000px;}
.y66{bottom:805.605000px;}
.y65{bottom:822.885000px;}
.y64{bottom:839.985000px;}
.y16{bottom:847.725000px;}
.y63{bottom:857.265000px;}
.y62{bottom:874.590000px;}
.yf{bottom:877.290000px;}
.y61{bottom:891.870000px;}
.y60{bottom:909.150000px;}
.y5f{bottom:926.430000px;}
.y5e{bottom:943.530000px;}
.y5d{bottom:960.810000px;}
.y5c{bottom:978.090000px;}
.y5b{bottom:995.370000px;}
.y5a{bottom:1012.650000px;}
.y59{bottom:1029.930000px;}
.yd{bottom:1034.970000px;}
.y58{bottom:1047.030000px;}
.y6{bottom:1060.350000px;}
.y57{bottom:1064.310000px;}
.y56{bottom:1081.590000px;}
.y55{bottom:1098.870000px;}
.y54{bottom:1116.150000px;}
.y53{bottom:1133.430000px;}
.y52{bottom:1150.560000px;}
.y51{bottom:1167.840000px;}
.h1f{height:17.280000px;}
.hc{height:25.020000px;}
.h1d{height:29.160000px;}
.h14{height:29.556000px;}
.h2{height:32.976000px;}
.h20{height:34.380000px;}
.h8{height:36.180000px;}
.h1a{height:38.818125px;}
.h1c{height:41.726953px;}
.h1b{height:42.164648px;}
.h19{height:42.281367px;}
.h23{height:43.506914px;}
.hf{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.770625px;}
.h16{height:47.980898px;}
.h1e{height:48.027656px;}
.hd{height:49.680000px;}
.h13{height:50.764219px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h17{height:56.574492px;}
.h11{height:59.439023px;}
.h12{height:61.189805px;}
.h10{height:63.180000px;}
.h6{height:65.884219px;}
.h5{height:67.824844px;}
.hb{height:71.613281px;}
.h22{height:110.731430px;}
.h7{height:121.536000px;}
.he{height:157.680000px;}
.h15{height:345.090000px;}
.h21{height:377.820000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:151.950000px;}
.wd{width:185.970000px;}
.we{width:186.150000px;}
.w8{width:223.275000px;}
.wc{width:236.910000px;}
.wa{width:248.295000px;}
.wb{width:259.950000px;}
.w9{width:524.055000px;}
.w6{width:595.365000px;}
.wf{width:648.000000px;}
.w2{width:673.530000px;}
.w7{width:747.330000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.xc{left:12.780000px;}
.x1c{left:24.768000px;}
.x1b{left:32.400000px;}
.x1{left:72.360000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.x1f{left:108.035987px;}
.x1a{left:122.400000px;}
.x20{left:135.035987px;}
.x16{left:161.309987px;}
.xd{left:214.095000px;}
.x10{left:215.175000px;}
.x6{left:224.850000px;}
.xe{left:227.595000px;}
.xf{left:246.675000px;}
.x17{left:260.130000px;}
.x12{left:284.654987px;}
.x9{left:288.435000px;}
.x11{left:296.175000px;}
.x1d{left:305.790000px;}
.x13{left:322.275000px;}
.x7{left:348.195000px;}
.x8{left:367.455000px;}
.xb{left:373.575000px;}
.x18{left:446.835000px;}
.xa{left:455.700000px;}
.x14{left:582.945000px;}
.x1e{left:613.230000px;}
.x19{left:633.705000px;}
.x3{left:745.890000px;}
.x15{left:772.889987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.440000pt;}
.v1{vertical-align:18.560000pt;}
.ls10{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.051840pt;}
.lse{letter-spacing:-0.047360pt;}
.lsc{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.lsa{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.117867pt;}
.ls5{letter-spacing:0.133120pt;}
.ls7{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.398080pt;}
.ls8{letter-spacing:0.693760pt;}
.ls3{letter-spacing:0.698880pt;}
.ls12{letter-spacing:40.912640pt;}
.ws10{word-spacing:-21.724928pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws5{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.545600pt;}
.wsa{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.870933pt;}
.ws8{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.832000pt;}
.ws9{word-spacing:-8.640000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
.wsf{word-spacing:274.450987pt;}
._2{margin-left:-2.858880pt;}
._3{margin-left:-1.872000pt;}
._0{margin-left:-0.960000pt;}
._1{width:0.922667pt;}
._11{width:1.859200pt;}
._f{width:2.901973pt;}
._c{width:4.091947pt;}
._b{width:5.026773pt;}
._10{width:6.494720pt;}
._5{width:7.830400pt;}
._4{width:8.784213pt;}
._12{width:9.754453pt;}
._8{width:10.995840pt;}
._7{width:11.932373pt;}
._6{width:14.979840pt;}
._a{width:16.842880pt;}
._9{width:17.954560pt;}
._e{width:19.654400pt;}
._d{width:20.557440pt;}
._13{width:48.936747pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.fs9{font-size:96.128000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.880000pt;}
.y3{bottom:3.200000pt;}
.ye{bottom:9.600000pt;}
.yc{bottom:12.320000pt;}
.y3b{bottom:13.280000pt;}
.y82{bottom:14.333333pt;}
.y4{bottom:15.392000pt;}
.y3a{bottom:15.840000pt;}
.y2{bottom:17.952000pt;}
.y37{bottom:18.240000pt;}
.y15{bottom:21.120000pt;}
.yb{bottom:26.880000pt;}
.y79{bottom:31.013333pt;}
.y14{bottom:32.800000pt;}
.y36{bottom:33.600000pt;}
.y5{bottom:36.640000pt;}
.ya{bottom:41.280000pt;}
.y13{bottom:48.960000pt;}
.y1{bottom:55.360000pt;}
.y7a{bottom:57.693333pt;}
.y35{bottom:64.320000pt;}
.y9{bottom:65.280000pt;}
.y34{bottom:79.680000pt;}
.y12{bottom:82.240000pt;}
.y8{bottom:82.746667pt;}
.y7b{bottom:84.413333pt;}
.y25{bottom:87.840000pt;}
.y33{bottom:94.906667pt;}
.y7{bottom:98.906667pt;}
.y24{bottom:101.466667pt;}
.y50{bottom:101.632000pt;}
.y11{bottom:105.120000pt;}
.y32{bottom:110.266667pt;}
.y7c{bottom:111.106667pt;}
.y77{bottom:111.392000pt;}
.y4f{bottom:116.992000pt;}
.y23{bottom:117.146667pt;}
.y76{bottom:124.512000pt;}
.y31{bottom:125.626667pt;}
.y10{bottom:126.720000pt;}
.y4e{bottom:132.352000pt;}
.y22{bottom:132.506667pt;}
.y7d{bottom:137.786667pt;}
.y75{bottom:140.506667pt;}
.y30{bottom:140.986667pt;}
.y84{bottom:143.333333pt;}
.y4d{bottom:147.706667pt;}
.y21{bottom:147.866667pt;}
.y2f{bottom:156.346667pt;}
.y74{bottom:156.506667pt;}
.y4c{bottom:163.066667pt;}
.y20{bottom:163.546667pt;}
.y7e{bottom:164.506667pt;}
.y2e{bottom:171.546667pt;}
.y73{bottom:172.506667pt;}
.y4b{bottom:178.266667pt;}
.y1f{bottom:179.066667pt;}
.y2d{bottom:186.906667pt;}
.y72{bottom:188.506667pt;}
.y7f{bottom:191.200000pt;}
.y4a{bottom:193.626667pt;}
.y1e{bottom:194.586667pt;}
.y2c{bottom:202.266667pt;}
.y71{bottom:204.506667pt;}
.y49{bottom:208.986667pt;}
.y1d{bottom:209.946667pt;}
.y2b{bottom:217.626667pt;}
.y80{bottom:217.893333pt;}
.y70{bottom:220.506667pt;}
.y48{bottom:224.346667pt;}
.y1c{bottom:225.466667pt;}
.y2a{bottom:232.986667pt;}
.y47{bottom:239.706667pt;}
.y1b{bottom:240.986667pt;}
.y81{bottom:244.613333pt;}
.y29{bottom:248.346667pt;}
.y6f{bottom:254.746667pt;}
.y46{bottom:255.066667pt;}
.y1a{bottom:256.506667pt;}
.y28{bottom:263.546667pt;}
.y6e{bottom:269.946667pt;}
.y45{bottom:270.266667pt;}
.y27{bottom:278.906667pt;}
.y19{bottom:280.826667pt;}
.y6d{bottom:285.306667pt;}
.y44{bottom:285.626667pt;}
.y26{bottom:294.266667pt;}
.y18{bottom:296.666667pt;}
.y6c{bottom:297.786667pt;}
.y78{bottom:298.080000pt;}
.y43{bottom:301.026667pt;}
.y83{bottom:302.906667pt;}
.y42{bottom:316.386667pt;}
.y41{bottom:331.746667pt;}
.y40{bottom:346.946667pt;}
.y3f{bottom:362.306667pt;}
.y3e{bottom:377.666667pt;}
.y3d{bottom:393.026667pt;}
.y3c{bottom:408.386667pt;}
.y39{bottom:420.866667pt;}
.y17{bottom:446.786667pt;}
.y90{bottom:532.066667pt;}
.y8f{bottom:547.453333pt;}
.y8e{bottom:562.813333pt;}
.y8d{bottom:578.013333pt;}
.y8c{bottom:593.373333pt;}
.y8b{bottom:608.733333pt;}
.y8a{bottom:624.093333pt;}
.y6b{bottom:636.733333pt;}
.y89{bottom:639.453333pt;}
.y6a{bottom:652.093333pt;}
.y88{bottom:654.813333pt;}
.y69{bottom:665.213333pt;}
.y87{bottom:670.013333pt;}
.y68{bottom:681.213333pt;}
.y86{bottom:685.373333pt;}
.y67{bottom:697.213333pt;}
.y85{bottom:700.733333pt;}
.y66{bottom:716.093333pt;}
.y65{bottom:731.453333pt;}
.y64{bottom:746.653333pt;}
.y16{bottom:753.533333pt;}
.y63{bottom:762.013333pt;}
.y62{bottom:777.413333pt;}
.yf{bottom:779.813333pt;}
.y61{bottom:792.773333pt;}
.y60{bottom:808.133333pt;}
.y5f{bottom:823.493333pt;}
.y5e{bottom:838.693333pt;}
.y5d{bottom:854.053333pt;}
.y5c{bottom:869.413333pt;}
.y5b{bottom:884.773333pt;}
.y5a{bottom:900.133333pt;}
.y59{bottom:915.493333pt;}
.yd{bottom:919.973333pt;}
.y58{bottom:930.693333pt;}
.y6{bottom:942.533333pt;}
.y57{bottom:946.053333pt;}
.y56{bottom:961.413333pt;}
.y55{bottom:976.773333pt;}
.y54{bottom:992.133333pt;}
.y53{bottom:1007.493333pt;}
.y52{bottom:1022.720000pt;}
.y51{bottom:1038.080000pt;}
.h1f{height:15.360000pt;}
.hc{height:22.240000pt;}
.h1d{height:25.920000pt;}
.h14{height:26.272000pt;}
.h2{height:29.312000pt;}
.h20{height:30.560000pt;}
.h8{height:32.160000pt;}
.h1a{height:34.505000pt;}
.h1c{height:37.090625pt;}
.h1b{height:37.479688pt;}
.h19{height:37.583438pt;}
.h23{height:38.672812pt;}
.hf{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.685000pt;}
.h16{height:42.649687pt;}
.h1e{height:42.691250pt;}
.hd{height:44.160000pt;}
.h13{height:45.123750pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h17{height:50.288438pt;}
.h11{height:52.834688pt;}
.h12{height:54.390938pt;}
.h10{height:56.160000pt;}
.h6{height:58.563750pt;}
.h5{height:60.288750pt;}
.hb{height:63.656250pt;}
.h22{height:98.427937pt;}
.h7{height:108.032000pt;}
.he{height:140.160000pt;}
.h15{height:306.746667pt;}
.h21{height:335.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:135.066667pt;}
.wd{width:165.306667pt;}
.we{width:165.466667pt;}
.w8{width:198.466667pt;}
.wc{width:210.586667pt;}
.wa{width:220.706667pt;}
.wb{width:231.066667pt;}
.w9{width:465.826667pt;}
.w6{width:529.213333pt;}
.wf{width:576.000000pt;}
.w2{width:598.693333pt;}
.w7{width:664.293333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.xc{left:11.360000pt;}
.x1c{left:22.016000pt;}
.x1b{left:28.800000pt;}
.x1{left:64.320000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.x1f{left:96.031988pt;}
.x1a{left:108.800000pt;}
.x20{left:120.031988pt;}
.x16{left:143.386655pt;}
.xd{left:190.306667pt;}
.x10{left:191.266667pt;}
.x6{left:199.866667pt;}
.xe{left:202.306667pt;}
.xf{left:219.266667pt;}
.x17{left:231.226667pt;}
.x12{left:253.026655pt;}
.x9{left:256.386667pt;}
.x11{left:263.266667pt;}
.x1d{left:271.813333pt;}
.x13{left:286.466667pt;}
.x7{left:309.506667pt;}
.x8{left:326.626667pt;}
.xb{left:332.066667pt;}
.x18{left:397.186667pt;}
.xa{left:405.066667pt;}
.x14{left:518.173333pt;}
.x1e{left:545.093333pt;}
.x19{left:563.293333pt;}
.x3{left:663.013333pt;}
.x15{left:687.013322pt;}
}




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