
    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_88044330b4eb004d2a118373.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_c11796d38862a1ab3505094f.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_af8709179d4aa3fd6f4475b6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.863281;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_de5213913680a00398451231.woff')format("woff");}.ff4{font-family:ff4;line-height:0.875000;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:-23.046000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:13.004400px;}
.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;}
}
.ws1{word-spacing:-65.501100px;}
.ws15{word-spacing:-55.944000px;}
.ws0{word-spacing:-45.322200px;}
.ws2{word-spacing:-38.654100px;}
.ws6b{word-spacing:-38.653500px;}
.ws63{word-spacing:-38.652300px;}
.ws3b{word-spacing:-38.648700px;}
.ws72{word-spacing:-38.642400px;}
.ws6d{word-spacing:-38.598000px;}
.ws30{word-spacing:-38.590200px;}
.ws64{word-spacing:-38.579400px;}
.ws20{word-spacing:-38.166000px;}
.ws69{word-spacing:-38.164200px;}
.ws4b{word-spacing:-38.160000px;}
.ws59{word-spacing:-38.158800px;}
.ws68{word-spacing:-38.156400px;}
.ws6e{word-spacing:-38.154600px;}
.ws38{word-spacing:-38.154000px;}
.ws6f{word-spacing:-38.153700px;}
.ws70{word-spacing:-38.150400px;}
.ws14{word-spacing:-38.143800px;}
.ws6a{word-spacing:-38.094000px;}
.ws65{word-spacing:-38.088000px;}
.ws71{word-spacing:-37.949100px;}
.ws11{word-spacing:-37.944000px;}
.ws58{word-spacing:-37.938600px;}
.ws67{word-spacing:-37.873500px;}
.ws33{word-spacing:-37.870200px;}
.ws6c{word-spacing:-37.864200px;}
.ws62{word-spacing:-37.726200px;}
.ws45{word-spacing:-37.440000px;}
.ws66{word-spacing:-37.436400px;}
.ws29{word-spacing:-37.205400px;}
.wsa{word-spacing:-36.720000px;}
.ws1e{word-spacing:-36.504000px;}
.ws16{word-spacing:-36.000000px;}
.ws19{word-spacing:-35.994000px;}
.ws2b{word-spacing:-35.991000px;}
.ws50{word-spacing:-35.717100px;}
.wse{word-spacing:-35.286000px;}
.ws9{word-spacing:-35.280000px;}
.ws10{word-spacing:-33.840000px;}
.ws18{word-spacing:-33.831000px;}
.ws40{word-spacing:-33.816900px;}
.ws54{word-spacing:-33.393600px;}
.wsf{word-spacing:-33.126000px;}
.ws4a{word-spacing:-33.120000px;}
.ws4e{word-spacing:-32.184000px;}
.ws61{word-spacing:-31.799100px;}
.ws5c{word-spacing:-31.794000px;}
.ws5b{word-spacing:-31.793100px;}
.ws5f{word-spacing:-31.788600px;}
.ws60{word-spacing:-31.785900px;}
.ws5e{word-spacing:-31.782600px;}
.ws5a{word-spacing:-31.713000px;}
.ws5d{word-spacing:-31.698900px;}
.ws3a{word-spacing:-31.680000px;}
.ws44{word-spacing:-31.669200px;}
.ws24{word-spacing:-31.662000px;}
.ws4d{word-spacing:-31.464000px;}
.ws35{word-spacing:-31.456800px;}
.ws23{word-spacing:-31.068300px;}
.ws5{word-spacing:-30.966000px;}
.ws2f{word-spacing:-30.240000px;}
.ws2a{word-spacing:-30.234600px;}
.ws42{word-spacing:-29.520000px;}
.ws6{word-spacing:-29.304000px;}
.ws48{word-spacing:-29.298000px;}
.ws49{word-spacing:-29.296800px;}
.ws1f{word-spacing:-28.806000px;}
.ws4{word-spacing:-28.800600px;}
.ws22{word-spacing:-28.800000px;}
.ws3{word-spacing:-28.789200px;}
.ws1c{word-spacing:-28.584000px;}
.wsd{word-spacing:-28.578000px;}
.ws37{word-spacing:-28.074600px;}
.wsc{word-spacing:-27.360000px;}
.ws4c{word-spacing:-27.354000px;}
.ws41{word-spacing:-26.646000px;}
.wsb{word-spacing:-26.640000px;}
.ws52{word-spacing:-26.424000px;}
.ws2e{word-spacing:-25.920000px;}
.ws47{word-spacing:-25.200000px;}
.ws39{word-spacing:-25.193100px;}
.ws1a{word-spacing:-23.760000px;}
.ws36{word-spacing:-23.750400px;}
.ws32{word-spacing:-23.544000px;}
.ws51{word-spacing:-23.040000px;}
.ws46{word-spacing:-23.022900px;}
.ws34{word-spacing:-22.968000px;}
.ws26{word-spacing:-22.320000px;}
.ws1b{word-spacing:-22.087800px;}
.ws4f{word-spacing:-21.594000px;}
.ws17{word-spacing:-20.886000px;}
.ws21{word-spacing:-20.878800px;}
.ws3f{word-spacing:-20.664000px;}
.ws28{word-spacing:-19.944000px;}
.ws57{word-spacing:-19.440000px;}
.ws27{word-spacing:-18.714600px;}
.ws55{word-spacing:-18.000000px;}
.ws56{word-spacing:-17.771400px;}
.ws2d{word-spacing:-17.280000px;}
.ws13{word-spacing:-17.055900px;}
.ws12{word-spacing:-16.544700px;}
.ws31{word-spacing:-15.831000px;}
.ws3e{word-spacing:-14.829000px;}
.ws8{word-spacing:-14.400000px;}
.ws43{word-spacing:-13.464000px;}
.ws2c{word-spacing:-11.526000px;}
.ws3d{word-spacing:-10.080000px;}
.ws7{word-spacing:-7.200000px;}
.ws1d{word-spacing:-6.910200px;}
.ws3c{word-spacing:-4.824000px;}
.ws25{word-spacing:0.000000px;}
.ws53{word-spacing:25.920000px;}
._0{margin-left:-1.146600px;}
._2{width:1.141200px;}
._1a{width:16.044600px;}
._18{width:17.289600px;}
._3{width:18.489000px;}
._12{width:19.951200px;}
._1{width:21.261900px;}
._8{width:22.277100px;}
._a{width:23.382000px;}
._9{width:24.552600px;}
._17{width:25.599600px;}
._5{width:26.674800px;}
._4{width:28.227600px;}
._16{width:30.318000px;}
._14{width:31.546800px;}
._d{width:33.696000px;}
._f{width:34.776000px;}
._c{width:36.252000px;}
._11{width:37.522800px;}
._10{width:38.575800px;}
._b{width:40.504500px;}
._7{width:43.056000px;}
._13{width:45.450000px;}
._e{width:47.296800px;}
._6{width:50.112000px;}
._15{width:52.272000px;}
._19{width:83.376000px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:42.600000px;}
.fs2{font-size:46.800000px;}
.fs4{font-size:59.700000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.300000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:3.840000px;}
.y8b{bottom:3.870000px;}
.y8d{bottom:3.900000px;}
.y87{bottom:3.915000px;}
.y90{bottom:3.930000px;}
.y95{bottom:3.961500px;}
.y98{bottom:3.990000px;}
.ya6{bottom:4.786500px;}
.y8f{bottom:24.450000px;}
.y94{bottom:24.480000px;}
.y97{bottom:24.511500px;}
.y99{bottom:24.540000px;}
.y9f{bottom:24.571500px;}
.y8c{bottom:24.600000px;}
.y86{bottom:24.615000px;}
.ya5{bottom:25.305000px;}
.y9e{bottom:45.270000px;}
.ya0{bottom:45.300000px;}
.y89{bottom:46.020000px;}
.ya2{bottom:67.350000px;}
.y9c{bottom:108.120000px;}
.y92{bottom:108.780000px;}
.y25{bottom:109.515000px;}
.y84{bottom:120.315000px;}
.y24{bottom:133.636500px;}
.y52{bottom:133.815000px;}
.y83{bottom:141.015000px;}
.y51{bottom:154.515000px;}
.y82{bottom:161.715000px;}
.y50{bottom:175.215000px;}
.y23{bottom:177.915000px;}
.y81{bottom:182.415000px;}
.y4f{bottom:195.915000px;}
.y22{bottom:198.615000px;}
.y80{bottom:203.115000px;}
.y4e{bottom:216.436500px;}
.y21{bottom:219.315000px;}
.y4d{bottom:237.136500px;}
.y7f{bottom:240.375000px;}
.y7e{bottom:257.655000px;}
.y4c{bottom:257.836500px;}
.y20{bottom:258.015000px;}
.y7d{bottom:274.936500px;}
.y1f{bottom:278.715000px;}
.y7c{bottom:292.215000px;}
.y4b{bottom:296.536500px;}
.y1e{bottom:299.415000px;}
.y7b{bottom:309.315000px;}
.y4a{bottom:317.236500px;}
.y1d{bottom:320.115000px;}
.y7a{bottom:326.596500px;}
.y49{bottom:337.936500px;}
.y1c{bottom:340.815000px;}
.y79{bottom:343.875000px;}
.y48{bottom:358.636500px;}
.y78{bottom:361.155000px;}
.y1b{bottom:361.515000px;}
.ybf{bottom:376.636500px;}
.y77{bottom:378.436500px;}
.y47{bottom:379.336500px;}
.y1a{bottom:382.215000px;}
.y76{bottom:395.715000px;}
.ybe{bottom:397.336500px;}
.y46{bottom:400.036500px;}
.y19{bottom:402.915000px;}
.ybd{bottom:418.036500px;}
.y45{bottom:420.736500px;}
.y18{bottom:423.615000px;}
.y75{bottom:434.236500px;}
.ybc{bottom:438.736500px;}
.y44{bottom:441.436500px;}
.y17{bottom:444.315000px;}
.y74{bottom:454.936500px;}
.ybb{bottom:459.436500px;}
.y43{bottom:462.136500px;}
.y16{bottom:465.015000px;}
.y73{bottom:475.636500px;}
.yba{bottom:480.136500px;}
.y42{bottom:482.836500px;}
.y72{bottom:496.336500px;}
.yb9{bottom:500.836500px;}
.y15{bottom:503.715000px;}
.y6c{bottom:508.936500px;}
.y71{bottom:517.036500px;}
.y41{bottom:521.536500px;}
.y6b{bottom:529.636500px;}
.y70{bottom:537.736500px;}
.yb8{bottom:539.536500px;}
.y14{bottom:542.415000px;}
.y40{bottom:562.936500px;}
.y13{bottom:563.115000px;}
.y6a{bottom:568.336500px;}
.y6f{bottom:579.136500px;}
.yb7{bottom:580.936500px;}
.y3f{bottom:583.636500px;}
.y69{bottom:589.036500px;}
.y6e{bottom:599.836500px;}
.yb6{bottom:601.636500px;}
.y12{bottom:601.815000px;}
.y3e{bottom:604.336500px;}
.y68{bottom:609.736500px;}
.yb5{bottom:622.336500px;}
.y11{bottom:622.515000px;}
.y3d{bottom:625.036500px;}
.y67{bottom:630.436500px;}
.y6d{bottom:641.236500px;}
.yb4{bottom:643.036500px;}
.y10{bottom:643.215000px;}
.y3c{bottom:645.736500px;}
.y66{bottom:651.136500px;}
.yb3{bottom:663.736500px;}
.yf{bottom:663.915000px;}
.y3b{bottom:666.436500px;}
.ya4{bottom:671.550000px;}
.ya1{bottom:671.625000px;}
.y65{bottom:671.836500px;}
.yb2{bottom:684.436500px;}
.ye{bottom:684.615000px;}
.y3a{bottom:687.136500px;}
.y64{bottom:692.536500px;}
.yb1{bottom:705.136500px;}
.yd{bottom:705.315000px;}
.y39{bottom:707.836500px;}
.y63{bottom:713.236500px;}
.ya3{bottom:714.525000px;}
.yb0{bottom:725.836500px;}
.yc{bottom:726.015000px;}
.y38{bottom:728.536500px;}
.y62{bottom:733.936500px;}
.yaf{bottom:746.536500px;}
.yb{bottom:746.715000px;}
.y37{bottom:749.236500px;}
.y61{bottom:754.636500px;}
.y9b{bottom:756.675000px;}
.yae{bottom:767.236500px;}
.ya{bottom:767.415000px;}
.y36{bottom:769.936500px;}
.y60{bottom:775.336500px;}
.yad{bottom:787.936500px;}
.y9{bottom:788.115000px;}
.y35{bottom:790.636500px;}
.yac{bottom:808.636500px;}
.y8{bottom:808.815000px;}
.y34{bottom:811.336500px;}
.y5f{bottom:814.036500px;}
.y9d{bottom:819.525000px;}
.yab{bottom:829.336500px;}
.y7{bottom:829.515000px;}
.y33{bottom:832.036500px;}
.y5e{bottom:834.736500px;}
.yaa{bottom:850.036500px;}
.y6{bottom:850.215000px;}
.y32{bottom:852.736500px;}
.y5d{bottom:855.436500px;}
.ya9{bottom:870.736500px;}
.y5{bottom:870.915000px;}
.y5c{bottom:876.136500px;}
.y91{bottom:882.375000px;}
.ya8{bottom:891.436500px;}
.y31{bottom:894.136500px;}
.y5b{bottom:896.836500px;}
.ya7{bottom:912.136500px;}
.y4{bottom:915.375000px;}
.y5a{bottom:917.536500px;}
.y96{bottom:924.525000px;}
.y30{bottom:932.836500px;}
.y59{bottom:938.236500px;}
.y2f{bottom:953.536500px;}
.y93{bottom:966.675000px;}
.y3{bottom:973.155000px;}
.y2e{bottom:974.236500px;}
.y58{bottom:976.936500px;}
.y2d{bottom:994.936500px;}
.y57{bottom:997.636500px;}
.y2{bottom:999.075000px;}
.y8e{bottom:1008.825000px;}
.y2c{bottom:1015.636500px;}
.y56{bottom:1018.336500px;}
.y1{bottom:1025.175000px;}
.y2b{bottom:1036.336500px;}
.y55{bottom:1039.036500px;}
.y88{bottom:1050.975000px;}
.y2a{bottom:1057.036500px;}
.y54{bottom:1059.736500px;}
.y29{bottom:1077.736500px;}
.y53{bottom:1080.436500px;}
.y8a{bottom:1093.125000px;}
.y28{bottom:1098.436500px;}
.y85{bottom:1114.500000px;}
.y27{bottom:1119.136500px;}
.y26{bottom:1139.836500px;}
.ha{height:21.375000px;}
.h6{height:31.679590px;}
.h8{height:42.075000px;}
.hf{height:42.900000px;}
.h7{height:52.383252px;}
.hd{height:62.775000px;}
.h5{height:63.175781px;}
.h9{height:63.525000px;}
.h4{height:63.949219px;}
.h3{height:66.046992px;}
.h2{height:74.873877px;}
.he{height:84.975000px;}
.hc{height:125.625000px;}
.hb{height:126.375000px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.w3{width:203.700000px;}
.w2{width:205.950000px;}
.w4{width:262.200000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:10.830000px;}
.x1d{left:12.270000px;}
.x13{left:13.530000px;}
.x21{left:17.488500px;}
.x15{left:18.750000px;}
.x10{left:21.225000px;}
.x12{left:25.005000px;}
.x20{left:26.488500px;}
.x17{left:34.770000px;}
.x1f{left:47.730000px;}
.x23{left:51.870000px;}
.x22{left:53.488500px;}
.x16{left:56.505000px;}
.x18{left:57.810000px;}
.xc{left:61.363500px;}
.xe{left:62.850000px;}
.x19{left:66.945000px;}
.x1e{left:74.730000px;}
.x1b{left:76.350000px;}
.x1c{left:78.870000px;}
.x11{left:93.045000px;}
.xb{left:124.575000px;}
.x14{left:126.525000px;}
.x5{left:127.620000px;}
.x24{left:132.120000px;}
.x7{left:155.338500px;}
.x2{left:163.438500px;}
.x6{left:181.620000px;}
.x1{left:190.260000px;}
.xd{left:330.450000px;}
.xa{left:340.200000px;}
.x4{left:341.280000px;}
.x9{left:343.980000px;}
.x3{left:380.160000px;}
.x8{left:413.638500px;}
.xf{left:534.075000px;}
@media print{
.v2{vertical-align:-20.485333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:11.559467pt;}
.ws1{word-spacing:-58.223200pt;}
.ws15{word-spacing:-49.728000pt;}
.ws0{word-spacing:-40.286400pt;}
.ws2{word-spacing:-34.359200pt;}
.ws6b{word-spacing:-34.358667pt;}
.ws63{word-spacing:-34.357600pt;}
.ws3b{word-spacing:-34.354400pt;}
.ws72{word-spacing:-34.348800pt;}
.ws6d{word-spacing:-34.309333pt;}
.ws30{word-spacing:-34.302400pt;}
.ws64{word-spacing:-34.292800pt;}
.ws20{word-spacing:-33.925333pt;}
.ws69{word-spacing:-33.923733pt;}
.ws4b{word-spacing:-33.920000pt;}
.ws59{word-spacing:-33.918933pt;}
.ws68{word-spacing:-33.916800pt;}
.ws6e{word-spacing:-33.915200pt;}
.ws38{word-spacing:-33.914667pt;}
.ws6f{word-spacing:-33.914400pt;}
.ws70{word-spacing:-33.911467pt;}
.ws14{word-spacing:-33.905600pt;}
.ws6a{word-spacing:-33.861333pt;}
.ws65{word-spacing:-33.856000pt;}
.ws71{word-spacing:-33.732533pt;}
.ws11{word-spacing:-33.728000pt;}
.ws58{word-spacing:-33.723200pt;}
.ws67{word-spacing:-33.665333pt;}
.ws33{word-spacing:-33.662400pt;}
.ws6c{word-spacing:-33.657067pt;}
.ws62{word-spacing:-33.534400pt;}
.ws45{word-spacing:-33.280000pt;}
.ws66{word-spacing:-33.276800pt;}
.ws29{word-spacing:-33.071467pt;}
.wsa{word-spacing:-32.640000pt;}
.ws1e{word-spacing:-32.448000pt;}
.ws16{word-spacing:-32.000000pt;}
.ws19{word-spacing:-31.994667pt;}
.ws2b{word-spacing:-31.992000pt;}
.ws50{word-spacing:-31.748533pt;}
.wse{word-spacing:-31.365333pt;}
.ws9{word-spacing:-31.360000pt;}
.ws10{word-spacing:-30.080000pt;}
.ws18{word-spacing:-30.072000pt;}
.ws40{word-spacing:-30.059467pt;}
.ws54{word-spacing:-29.683200pt;}
.wsf{word-spacing:-29.445333pt;}
.ws4a{word-spacing:-29.440000pt;}
.ws4e{word-spacing:-28.608000pt;}
.ws61{word-spacing:-28.265867pt;}
.ws5c{word-spacing:-28.261333pt;}
.ws5b{word-spacing:-28.260533pt;}
.ws5f{word-spacing:-28.256533pt;}
.ws60{word-spacing:-28.254133pt;}
.ws5e{word-spacing:-28.251200pt;}
.ws5a{word-spacing:-28.189333pt;}
.ws5d{word-spacing:-28.176800pt;}
.ws3a{word-spacing:-28.160000pt;}
.ws44{word-spacing:-28.150400pt;}
.ws24{word-spacing:-28.144000pt;}
.ws4d{word-spacing:-27.968000pt;}
.ws35{word-spacing:-27.961600pt;}
.ws23{word-spacing:-27.616267pt;}
.ws5{word-spacing:-27.525333pt;}
.ws2f{word-spacing:-26.880000pt;}
.ws2a{word-spacing:-26.875200pt;}
.ws42{word-spacing:-26.240000pt;}
.ws6{word-spacing:-26.048000pt;}
.ws48{word-spacing:-26.042667pt;}
.ws49{word-spacing:-26.041600pt;}
.ws1f{word-spacing:-25.605333pt;}
.ws4{word-spacing:-25.600533pt;}
.ws22{word-spacing:-25.600000pt;}
.ws3{word-spacing:-25.590400pt;}
.ws1c{word-spacing:-25.408000pt;}
.wsd{word-spacing:-25.402667pt;}
.ws37{word-spacing:-24.955200pt;}
.wsc{word-spacing:-24.320000pt;}
.ws4c{word-spacing:-24.314667pt;}
.ws41{word-spacing:-23.685333pt;}
.wsb{word-spacing:-23.680000pt;}
.ws52{word-spacing:-23.488000pt;}
.ws2e{word-spacing:-23.040000pt;}
.ws47{word-spacing:-22.400000pt;}
.ws39{word-spacing:-22.393867pt;}
.ws1a{word-spacing:-21.120000pt;}
.ws36{word-spacing:-21.111467pt;}
.ws32{word-spacing:-20.928000pt;}
.ws51{word-spacing:-20.480000pt;}
.ws46{word-spacing:-20.464800pt;}
.ws34{word-spacing:-20.416000pt;}
.ws26{word-spacing:-19.840000pt;}
.ws1b{word-spacing:-19.633600pt;}
.ws4f{word-spacing:-19.194667pt;}
.ws17{word-spacing:-18.565333pt;}
.ws21{word-spacing:-18.558933pt;}
.ws3f{word-spacing:-18.368000pt;}
.ws28{word-spacing:-17.728000pt;}
.ws57{word-spacing:-17.280000pt;}
.ws27{word-spacing:-16.635200pt;}
.ws55{word-spacing:-16.000000pt;}
.ws56{word-spacing:-15.796800pt;}
.ws2d{word-spacing:-15.360000pt;}
.ws13{word-spacing:-15.160800pt;}
.ws12{word-spacing:-14.706400pt;}
.ws31{word-spacing:-14.072000pt;}
.ws3e{word-spacing:-13.181333pt;}
.ws8{word-spacing:-12.800000pt;}
.ws43{word-spacing:-11.968000pt;}
.ws2c{word-spacing:-10.245333pt;}
.ws3d{word-spacing:-8.960000pt;}
.ws7{word-spacing:-6.400000pt;}
.ws1d{word-spacing:-6.142400pt;}
.ws3c{word-spacing:-4.288000pt;}
.ws25{word-spacing:0.000000pt;}
.ws53{word-spacing:23.040000pt;}
._0{margin-left:-1.019200pt;}
._2{width:1.014400pt;}
._1a{width:14.261867pt;}
._18{width:15.368533pt;}
._3{width:16.434667pt;}
._12{width:17.734400pt;}
._1{width:18.899467pt;}
._8{width:19.801867pt;}
._a{width:20.784000pt;}
._9{width:21.824533pt;}
._17{width:22.755200pt;}
._5{width:23.710933pt;}
._4{width:25.091200pt;}
._16{width:26.949333pt;}
._14{width:28.041600pt;}
._d{width:29.952000pt;}
._f{width:30.912000pt;}
._c{width:32.224000pt;}
._11{width:33.353600pt;}
._10{width:34.289600pt;}
._b{width:36.004000pt;}
._7{width:38.272000pt;}
._13{width:40.400000pt;}
._e{width:42.041600pt;}
._6{width:44.544000pt;}
._15{width:46.464000pt;}
._19{width:74.112000pt;}
.fs3{font-size:37.866667pt;}
.fs2{font-size:41.600000pt;}
.fs4{font-size:53.066667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.933333pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:3.413333pt;}
.y8b{bottom:3.440000pt;}
.y8d{bottom:3.466667pt;}
.y87{bottom:3.480000pt;}
.y90{bottom:3.493333pt;}
.y95{bottom:3.521333pt;}
.y98{bottom:3.546667pt;}
.ya6{bottom:4.254667pt;}
.y8f{bottom:21.733333pt;}
.y94{bottom:21.760000pt;}
.y97{bottom:21.788000pt;}
.y99{bottom:21.813333pt;}
.y9f{bottom:21.841333pt;}
.y8c{bottom:21.866667pt;}
.y86{bottom:21.880000pt;}
.ya5{bottom:22.493333pt;}
.y9e{bottom:40.240000pt;}
.ya0{bottom:40.266667pt;}
.y89{bottom:40.906667pt;}
.ya2{bottom:59.866667pt;}
.y9c{bottom:96.106667pt;}
.y92{bottom:96.693333pt;}
.y25{bottom:97.346667pt;}
.y84{bottom:106.946667pt;}
.y24{bottom:118.788000pt;}
.y52{bottom:118.946667pt;}
.y83{bottom:125.346667pt;}
.y51{bottom:137.346667pt;}
.y82{bottom:143.746667pt;}
.y50{bottom:155.746667pt;}
.y23{bottom:158.146667pt;}
.y81{bottom:162.146667pt;}
.y4f{bottom:174.146667pt;}
.y22{bottom:176.546667pt;}
.y80{bottom:180.546667pt;}
.y4e{bottom:192.388000pt;}
.y21{bottom:194.946667pt;}
.y4d{bottom:210.788000pt;}
.y7f{bottom:213.666667pt;}
.y7e{bottom:229.026667pt;}
.y4c{bottom:229.188000pt;}
.y20{bottom:229.346667pt;}
.y7d{bottom:244.388000pt;}
.y1f{bottom:247.746667pt;}
.y7c{bottom:259.746667pt;}
.y4b{bottom:263.588000pt;}
.y1e{bottom:266.146667pt;}
.y7b{bottom:274.946667pt;}
.y4a{bottom:281.988000pt;}
.y1d{bottom:284.546667pt;}
.y7a{bottom:290.308000pt;}
.y49{bottom:300.388000pt;}
.y1c{bottom:302.946667pt;}
.y79{bottom:305.666667pt;}
.y48{bottom:318.788000pt;}
.y78{bottom:321.026667pt;}
.y1b{bottom:321.346667pt;}
.ybf{bottom:334.788000pt;}
.y77{bottom:336.388000pt;}
.y47{bottom:337.188000pt;}
.y1a{bottom:339.746667pt;}
.y76{bottom:351.746667pt;}
.ybe{bottom:353.188000pt;}
.y46{bottom:355.588000pt;}
.y19{bottom:358.146667pt;}
.ybd{bottom:371.588000pt;}
.y45{bottom:373.988000pt;}
.y18{bottom:376.546667pt;}
.y75{bottom:385.988000pt;}
.ybc{bottom:389.988000pt;}
.y44{bottom:392.388000pt;}
.y17{bottom:394.946667pt;}
.y74{bottom:404.388000pt;}
.ybb{bottom:408.388000pt;}
.y43{bottom:410.788000pt;}
.y16{bottom:413.346667pt;}
.y73{bottom:422.788000pt;}
.yba{bottom:426.788000pt;}
.y42{bottom:429.188000pt;}
.y72{bottom:441.188000pt;}
.yb9{bottom:445.188000pt;}
.y15{bottom:447.746667pt;}
.y6c{bottom:452.388000pt;}
.y71{bottom:459.588000pt;}
.y41{bottom:463.588000pt;}
.y6b{bottom:470.788000pt;}
.y70{bottom:477.988000pt;}
.yb8{bottom:479.588000pt;}
.y14{bottom:482.146667pt;}
.y40{bottom:500.388000pt;}
.y13{bottom:500.546667pt;}
.y6a{bottom:505.188000pt;}
.y6f{bottom:514.788000pt;}
.yb7{bottom:516.388000pt;}
.y3f{bottom:518.788000pt;}
.y69{bottom:523.588000pt;}
.y6e{bottom:533.188000pt;}
.yb6{bottom:534.788000pt;}
.y12{bottom:534.946667pt;}
.y3e{bottom:537.188000pt;}
.y68{bottom:541.988000pt;}
.yb5{bottom:553.188000pt;}
.y11{bottom:553.346667pt;}
.y3d{bottom:555.588000pt;}
.y67{bottom:560.388000pt;}
.y6d{bottom:569.988000pt;}
.yb4{bottom:571.588000pt;}
.y10{bottom:571.746667pt;}
.y3c{bottom:573.988000pt;}
.y66{bottom:578.788000pt;}
.yb3{bottom:589.988000pt;}
.yf{bottom:590.146667pt;}
.y3b{bottom:592.388000pt;}
.ya4{bottom:596.933333pt;}
.ya1{bottom:597.000000pt;}
.y65{bottom:597.188000pt;}
.yb2{bottom:608.388000pt;}
.ye{bottom:608.546667pt;}
.y3a{bottom:610.788000pt;}
.y64{bottom:615.588000pt;}
.yb1{bottom:626.788000pt;}
.yd{bottom:626.946667pt;}
.y39{bottom:629.188000pt;}
.y63{bottom:633.988000pt;}
.ya3{bottom:635.133333pt;}
.yb0{bottom:645.188000pt;}
.yc{bottom:645.346667pt;}
.y38{bottom:647.588000pt;}
.y62{bottom:652.388000pt;}
.yaf{bottom:663.588000pt;}
.yb{bottom:663.746667pt;}
.y37{bottom:665.988000pt;}
.y61{bottom:670.788000pt;}
.y9b{bottom:672.600000pt;}
.yae{bottom:681.988000pt;}
.ya{bottom:682.146667pt;}
.y36{bottom:684.388000pt;}
.y60{bottom:689.188000pt;}
.yad{bottom:700.388000pt;}
.y9{bottom:700.546667pt;}
.y35{bottom:702.788000pt;}
.yac{bottom:718.788000pt;}
.y8{bottom:718.946667pt;}
.y34{bottom:721.188000pt;}
.y5f{bottom:723.588000pt;}
.y9d{bottom:728.466667pt;}
.yab{bottom:737.188000pt;}
.y7{bottom:737.346667pt;}
.y33{bottom:739.588000pt;}
.y5e{bottom:741.988000pt;}
.yaa{bottom:755.588000pt;}
.y6{bottom:755.746667pt;}
.y32{bottom:757.988000pt;}
.y5d{bottom:760.388000pt;}
.ya9{bottom:773.988000pt;}
.y5{bottom:774.146667pt;}
.y5c{bottom:778.788000pt;}
.y91{bottom:784.333333pt;}
.ya8{bottom:792.388000pt;}
.y31{bottom:794.788000pt;}
.y5b{bottom:797.188000pt;}
.ya7{bottom:810.788000pt;}
.y4{bottom:813.666667pt;}
.y5a{bottom:815.588000pt;}
.y96{bottom:821.800000pt;}
.y30{bottom:829.188000pt;}
.y59{bottom:833.988000pt;}
.y2f{bottom:847.588000pt;}
.y93{bottom:859.266667pt;}
.y3{bottom:865.026667pt;}
.y2e{bottom:865.988000pt;}
.y58{bottom:868.388000pt;}
.y2d{bottom:884.388000pt;}
.y57{bottom:886.788000pt;}
.y2{bottom:888.066667pt;}
.y8e{bottom:896.733333pt;}
.y2c{bottom:902.788000pt;}
.y56{bottom:905.188000pt;}
.y1{bottom:911.266667pt;}
.y2b{bottom:921.188000pt;}
.y55{bottom:923.588000pt;}
.y88{bottom:934.200000pt;}
.y2a{bottom:939.588000pt;}
.y54{bottom:941.988000pt;}
.y29{bottom:957.988000pt;}
.y53{bottom:960.388000pt;}
.y8a{bottom:971.666667pt;}
.y28{bottom:976.388000pt;}
.y85{bottom:990.666667pt;}
.y27{bottom:994.788000pt;}
.y26{bottom:1013.188000pt;}
.ha{height:19.000000pt;}
.h6{height:28.159635pt;}
.h8{height:37.400000pt;}
.hf{height:38.133333pt;}
.h7{height:46.562891pt;}
.hd{height:55.800000pt;}
.h5{height:56.156250pt;}
.h9{height:56.466667pt;}
.h4{height:56.843750pt;}
.h3{height:58.708438pt;}
.h2{height:66.554557pt;}
.he{height:75.533333pt;}
.hc{height:111.666667pt;}
.hb{height:112.333333pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.w3{width:181.066667pt;}
.w2{width:183.066667pt;}
.w4{width:233.066667pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:9.626667pt;}
.x1d{left:10.906667pt;}
.x13{left:12.026667pt;}
.x21{left:15.545333pt;}
.x15{left:16.666667pt;}
.x10{left:18.866667pt;}
.x12{left:22.226667pt;}
.x20{left:23.545333pt;}
.x17{left:30.906667pt;}
.x1f{left:42.426667pt;}
.x23{left:46.106667pt;}
.x22{left:47.545333pt;}
.x16{left:50.226667pt;}
.x18{left:51.386667pt;}
.xc{left:54.545333pt;}
.xe{left:55.866667pt;}
.x19{left:59.506667pt;}
.x1e{left:66.426667pt;}
.x1b{left:67.866667pt;}
.x1c{left:70.106667pt;}
.x11{left:82.706667pt;}
.xb{left:110.733333pt;}
.x14{left:112.466667pt;}
.x5{left:113.440000pt;}
.x24{left:117.440000pt;}
.x7{left:138.078667pt;}
.x2{left:145.278667pt;}
.x6{left:161.440000pt;}
.x1{left:169.120000pt;}
.xd{left:293.733333pt;}
.xa{left:302.400000pt;}
.x4{left:303.360000pt;}
.x9{left:305.760000pt;}
.x3{left:337.920000pt;}
.x8{left:367.678667pt;}
.xf{left:474.733333pt;}
}




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