
    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_5292082501cd0afa90e4bd3f.woff2')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_fbf8900d28e7e5bc8cf4239a.woff2')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_b9cf2d42877ce615a3a52c83.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_4ab54136c31c5fe70f97f842.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_d2c248673594ce30e20cb549.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.850586;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_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_21442c6a01f5013c0be3e5b0.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_9feeeb8398dfe51e9364ff49.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_6b5f2f1aae03973107f70854.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.850586;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_74d27242c685d594d13d9057.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_b6b918d362ba92b4f96db00b.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_3a764f5689837ec8e8ace0b4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_cc5040ac84b690c72aa75fc3.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.065430;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_422f49aa0e5eb93476e23afd.woff2')format("woff");}.fff{font-family:fff;line-height:1.064941;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_89bb108b085c6f088ca504dc.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsc{letter-spacing:-0.732000px;}
.lsa{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.127200px;}
.ls10{letter-spacing:-0.053280px;}
.ls7{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.132600px;}
.ls12{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.lsf{letter-spacing:0.306600px;}
.ls9{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.362160px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.ls13{letter-spacing:15.786720px;}
.lse{letter-spacing:45.306720px;}
.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:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws6{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.199800px;}
.ws8{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.147200px;}
.ws5{word-spacing:-12.854880px;}
.ws0{word-spacing:-12.186000px;}
.ws3{word-spacing:-8.786880px;}
.ws4{word-spacing:-8.136000px;}
.wsb{word-spacing:0.000000px;}
._2{margin-left:-2.468640px;}
._1{margin-left:-1.406400px;}
._0{width:1.002000px;}
._4{width:2.382720px;}
._8{width:3.764880px;}
._7{width:4.868400px;}
._a{width:6.729120px;}
._6{width:8.201040px;}
._5{width:9.501840px;}
._d{width:10.558560px;}
._c{width:11.595120px;}
._b{width:13.591440px;}
._3{width:16.751040px;}
._10{width:18.129360px;}
._f{width:19.256640px;}
._9{width:20.258640px;}
._e{width:21.302400px;}
._11{width:23.088240px;}
._12{width:24.614160px;}
.fc5{color:rgb(54,95,145);}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(36,64,97);}
.fc6{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y1a{bottom:0.180000px;}
.y3d{bottom:3.240000px;}
.y42{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.ye{bottom:3.780000px;}
.y40{bottom:9.720000px;}
.yc{bottom:13.860000px;}
.y1b{bottom:14.040000px;}
.y4{bottom:17.316000px;}
.y2{bottom:20.196000px;}
.y3c{bottom:20.520000px;}
.y41{bottom:20.880000px;}
.y3f{bottom:23.760000px;}
.y18{bottom:26.685000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.500000px;}
.y3b{bottom:37.800000px;}
.y17{bottom:43.245000px;}
.ya{bottom:46.620000px;}
.y1{bottom:54.000000px;}
.y3a{bottom:54.900000px;}
.y16{bottom:59.625000px;}
.y39{bottom:72.180000px;}
.y9{bottom:73.440000px;}
.y15{bottom:76.185000px;}
.y38{bottom:89.460000px;}
.y14{bottom:92.025000px;}
.y8{bottom:93.090000px;}
.y13{bottom:102.465000px;}
.y88{bottom:104.616000px;}
.y37{bottom:106.740000px;}
.y7{bottom:111.270000px;}
.y29{bottom:111.600000px;}
.yb0{bottom:115.056000px;}
.y87{bottom:118.656000px;}
.y12{bottom:120.645000px;}
.yda{bottom:121.896000px;}
.y36{bottom:124.050000px;}
.y55{bottom:124.416000px;}
.y28{bottom:128.730000px;}
.yaf{bottom:129.096000px;}
.yd9{bottom:139.176000px;}
.y11{bottom:139.725000px;}
.y35{bottom:141.330000px;}
.y54{bottom:141.696000px;}
.y27{bottom:146.010000px;}
.yd8{bottom:156.450000px;}
.y34{bottom:158.430000px;}
.y53{bottom:158.970000px;}
.y26{bottom:163.830000px;}
.y10{bottom:164.025000px;}
.yd7{bottom:173.730000px;}
.y33{bottom:175.710000px;}
.y52{bottom:176.070000px;}
.y25{bottom:181.290000px;}
.yd6{bottom:190.830000px;}
.y32{bottom:192.990000px;}
.y51{bottom:193.350000px;}
.y24{bottom:198.570000px;}
.yd5{bottom:208.110000px;}
.y31{bottom:210.270000px;}
.y50{bottom:210.630000px;}
.y23{bottom:216.030000px;}
.ya3{bottom:220.890000px;}
.yd4{bottom:225.390000px;}
.y30{bottom:227.550000px;}
.y4f{bottom:227.910000px;}
.y22{bottom:233.490000px;}
.ya2{bottom:238.170000px;}
.yd3{bottom:242.670000px;}
.y2f{bottom:244.650000px;}
.y4e{bottom:245.190000px;}
.y21{bottom:250.770000px;}
.ya1{bottom:255.450000px;}
.yd2{bottom:259.950000px;}
.y2e{bottom:261.930000px;}
.y4d{bottom:262.290000px;}
.y20{bottom:268.230000px;}
.ya0{bottom:272.550000px;}
.yd1{bottom:277.230000px;}
.y2d{bottom:279.210000px;}
.y4c{bottom:279.570000px;}
.y1f{bottom:288.390000px;}
.y9f{bottom:289.830000px;}
.yd0{bottom:294.330000px;}
.y2c{bottom:296.490000px;}
.y4b{bottom:296.850000px;}
.y9e{bottom:307.110000px;}
.ycf{bottom:311.610000px;}
.y2b{bottom:313.770000px;}
.y4a{bottom:314.130000px;}
.y1e{bottom:315.930000px;}
.y9d{bottom:324.390000px;}
.yce{bottom:328.890000px;}
.y2a{bottom:331.050000px;}
.y49{bottom:331.410000px;}
.y1d{bottom:333.570000px;}
.y86{bottom:335.730000px;}
.y9c{bottom:341.715000px;}
.ycd{bottom:346.215000px;}
.y48{bottom:348.735000px;}
.y85{bottom:352.875000px;}
.y9b{bottom:358.995000px;}
.ycc{bottom:363.495000px;}
.y47{bottom:365.835000px;}
.y84{bottom:370.155000px;}
.y9a{bottom:376.095000px;}
.ycb{bottom:380.595000px;}
.y46{bottom:383.115000px;}
.y83{bottom:387.435000px;}
.y99{bottom:393.375000px;}
.yca{bottom:397.875000px;}
.y45{bottom:400.395000px;}
.y82{bottom:404.715000px;}
.y98{bottom:410.655000px;}
.yc9{bottom:415.155000px;}
.y44{bottom:417.675000px;}
.y81{bottom:421.995000px;}
.y97{bottom:427.935000px;}
.yc8{bottom:432.435000px;}
.y43{bottom:434.955000px;}
.y80{bottom:439.275000px;}
.y96{bottom:445.215000px;}
.y3e{bottom:448.995000px;}
.yc7{bottom:449.715000px;}
.y7f{bottom:456.375000px;}
.y95{bottom:462.495000px;}
.yc6{bottom:466.995000px;}
.y7e{bottom:473.655000px;}
.y94{bottom:476.355000px;}
.yae{bottom:483.375000px;}
.y1c{bottom:484.095000px;}
.y7d{bottom:490.935000px;}
.yad{bottom:500.655000px;}
.yc5{bottom:501.375000px;}
.y7c{bottom:508.215000px;}
.yac{bottom:517.935000px;}
.yc4{bottom:518.655000px;}
.y7b{bottom:525.495000px;}
.yab{bottom:535.215000px;}
.yc3{bottom:535.935000px;}
.y7a{bottom:542.775000px;}
.yaa{bottom:552.315000px;}
.yc2{bottom:553.215000px;}
.y79{bottom:559.875000px;}
.ya9{bottom:569.595000px;}
.yc1{bottom:570.495000px;}
.y78{bottom:577.155000px;}
.ya8{bottom:586.875000px;}
.yc0{bottom:587.595000px;}
.y77{bottom:594.435000px;}
.ya7{bottom:600.915000px;}
.ybf{bottom:604.905000px;}
.y76{bottom:611.745000px;}
.ybe{bottom:622.185000px;}
.y75{bottom:629.025000px;}
.ybd{bottom:639.465000px;}
.y74{bottom:646.305000px;}
.ybc{bottom:656.745000px;}
.y73{bottom:663.405000px;}
.ybb{bottom:674.025000px;}
.y72{bottom:680.685000px;}
.yba{bottom:691.125000px;}
.y71{bottom:697.965000px;}
.y93{bottom:706.965000px;}
.yb9{bottom:708.405000px;}
.y70{bottom:715.245000px;}
.y92{bottom:724.245000px;}
.yb8{bottom:725.685000px;}
.y6f{bottom:732.525000px;}
.y91{bottom:741.525000px;}
.yb7{bottom:742.965000px;}
.y6e{bottom:749.625000px;}
.y90{bottom:758.625000px;}
.yb6{bottom:760.245000px;}
.y6d{bottom:766.905000px;}
.y8f{bottom:775.905000px;}
.yb5{bottom:777.345000px;}
.y6c{bottom:784.185000px;}
.y8e{bottom:793.185000px;}
.yb4{bottom:794.625000px;}
.y6b{bottom:801.465000px;}
.y8d{bottom:810.465000px;}
.yb3{bottom:811.905000px;}
.y6a{bottom:818.745000px;}
.y8c{bottom:827.745000px;}
.y19{bottom:829.005000px;}
.yb2{bottom:829.185000px;}
.y69{bottom:836.025000px;}
.ya6{bottom:838.185000px;}
.yb1{bottom:843.225000px;}
.y8b{bottom:844.845000px;}
.y68{bottom:853.125000px;}
.ya5{bottom:855.465000px;}
.yf{bottom:858.705000px;}
.y8a{bottom:862.125000px;}
.ya4{bottom:869.505000px;}
.y67{bottom:870.405000px;}
.y89{bottom:876.210000px;}
.y66{bottom:887.730000px;}
.y65{bottom:905.010000px;}
.y64{bottom:922.290000px;}
.y63{bottom:939.570000px;}
.y62{bottom:956.670000px;}
.y61{bottom:973.950000px;}
.y60{bottom:991.230000px;}
.y5f{bottom:1008.510000px;}
.y5e{bottom:1025.790000px;}
.yd{bottom:1037.850000px;}
.y5d{bottom:1042.890000px;}
.y6{bottom:1056.210000px;}
.y5c{bottom:1060.170000px;}
.y5b{bottom:1077.450000px;}
.y5a{bottom:1094.730000px;}
.y59{bottom:1112.010000px;}
.y58{bottom:1129.290000px;}
.y57{bottom:1146.420000px;}
.y56{bottom:1163.700000px;}
.hd{height:18.000000px;}
.h16{height:29.700000px;}
.h15{height:32.103633px;}
.h2{height:32.976000px;}
.h1f{height:35.100000px;}
.h14{height:35.806641px;}
.h9{height:36.180000px;}
.h20{height:40.843828px;}
.h1e{height:41.726953px;}
.h1d{height:42.164648px;}
.h1b{height:42.281367px;}
.h22{height:43.506914px;}
.h10{height:44.002969px;}
.hb{height:44.820000px;}
.h4{height:47.223633px;}
.h18{height:47.980898px;}
.he{height:49.680000px;}
.h1a{height:49.742227px;}
.h21{height:50.597578px;}
.h1c{height:52.260820px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h8{height:55.825312px;}
.h19{height:56.574492px;}
.h12{height:59.439023px;}
.hc{height:60.679688px;}
.h13{height:61.189805px;}
.h11{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h7{height:121.536000px;}
.hf{height:179.130000px;}
.h17{height:344.910000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:74.880000px;}
.w5{width:155.370000px;}
.w8{width:220.935000px;}
.w9{width:526.395000px;}
.w6{width:591.945000px;}
.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;}
.x13{left:12.600000px;}
.xd{left:47.736000px;}
.x1{left:72.360000px;}
.xc{left:74.376000px;}
.x4{left:80.999987px;}
.x5{left:98.130000px;}
.xf{left:99.750000px;}
.xe{left:101.010000px;}
.x10{left:106.410000px;}
.x14{left:107.855987px;}
.x11{left:215.175000px;}
.x6{left:228.270000px;}
.x1a{left:241.769987px;}
.x1c{left:258.509987px;}
.x9{left:285.015000px;}
.x12{left:293.835000px;}
.x16{left:306.434987px;}
.x1f{left:319.394987px;}
.x21{left:324.794987px;}
.x23{left:333.794987px;}
.x18{left:338.654987px;}
.x7{left:344.775000px;}
.x8{left:364.035000px;}
.xb{left:373.575000px;}
.x24{left:396.074987px;}
.x1d{left:446.474987px;}
.xa{left:452.280000px;}
.x15{left:672.629987px;}
.x17{left:676.049987px;}
.x22{left:708.989987px;}
.x1b{left:712.049987px;}
.x1e{left:733.469987px;}
.x3{left:745.890000px;}
.x20{left:759.389987px;}
.x19{left:770.549987px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsc{letter-spacing:-0.650667pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.113067pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.117867pt;}
.ls12{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.lsf{letter-spacing:0.272533pt;}
.ls9{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.321920pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.ls13{letter-spacing:14.032640pt;}
.lse{letter-spacing:40.272640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws6{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.960000pt;}
.ws9{word-spacing:-11.686400pt;}
.ws5{word-spacing:-11.426560pt;}
.ws0{word-spacing:-10.832000pt;}
.ws3{word-spacing:-7.810560pt;}
.ws4{word-spacing:-7.232000pt;}
.wsb{word-spacing:0.000000pt;}
._2{margin-left:-2.194347pt;}
._1{margin-left:-1.250133pt;}
._0{width:0.890667pt;}
._4{width:2.117973pt;}
._8{width:3.346560pt;}
._7{width:4.327467pt;}
._a{width:5.981440pt;}
._6{width:7.289813pt;}
._5{width:8.446080pt;}
._d{width:9.385387pt;}
._c{width:10.306773pt;}
._b{width:12.081280pt;}
._3{width:14.889813pt;}
._10{width:16.114987pt;}
._f{width:17.117013pt;}
._9{width:18.007680pt;}
._e{width:18.935467pt;}
._11{width:20.522880pt;}
._12{width:21.879253pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:0.160000pt;}
.y3d{bottom:2.880000pt;}
.y42{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.ye{bottom:3.360000pt;}
.y40{bottom:8.640000pt;}
.yc{bottom:12.320000pt;}
.y1b{bottom:12.480000pt;}
.y4{bottom:15.392000pt;}
.y2{bottom:17.952000pt;}
.y3c{bottom:18.240000pt;}
.y41{bottom:18.560000pt;}
.y3f{bottom:21.120000pt;}
.y18{bottom:23.720000pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:28.000000pt;}
.y3b{bottom:33.600000pt;}
.y17{bottom:38.440000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:48.000000pt;}
.y3a{bottom:48.800000pt;}
.y16{bottom:53.000000pt;}
.y39{bottom:64.160000pt;}
.y9{bottom:65.280000pt;}
.y15{bottom:67.720000pt;}
.y38{bottom:79.520000pt;}
.y14{bottom:81.800000pt;}
.y8{bottom:82.746667pt;}
.y13{bottom:91.080000pt;}
.y88{bottom:92.992000pt;}
.y37{bottom:94.880000pt;}
.y7{bottom:98.906667pt;}
.y29{bottom:99.200000pt;}
.yb0{bottom:102.272000pt;}
.y87{bottom:105.472000pt;}
.y12{bottom:107.240000pt;}
.yda{bottom:108.352000pt;}
.y36{bottom:110.266667pt;}
.y55{bottom:110.592000pt;}
.y28{bottom:114.426667pt;}
.yaf{bottom:114.752000pt;}
.yd9{bottom:123.712000pt;}
.y11{bottom:124.200000pt;}
.y35{bottom:125.626667pt;}
.y54{bottom:125.952000pt;}
.y27{bottom:129.786667pt;}
.yd8{bottom:139.066667pt;}
.y34{bottom:140.826667pt;}
.y53{bottom:141.306667pt;}
.y26{bottom:145.626667pt;}
.y10{bottom:145.800000pt;}
.yd7{bottom:154.426667pt;}
.y33{bottom:156.186667pt;}
.y52{bottom:156.506667pt;}
.y25{bottom:161.146667pt;}
.yd6{bottom:169.626667pt;}
.y32{bottom:171.546667pt;}
.y51{bottom:171.866667pt;}
.y24{bottom:176.506667pt;}
.yd5{bottom:184.986667pt;}
.y31{bottom:186.906667pt;}
.y50{bottom:187.226667pt;}
.y23{bottom:192.026667pt;}
.ya3{bottom:196.346667pt;}
.yd4{bottom:200.346667pt;}
.y30{bottom:202.266667pt;}
.y4f{bottom:202.586667pt;}
.y22{bottom:207.546667pt;}
.ya2{bottom:211.706667pt;}
.yd3{bottom:215.706667pt;}
.y2f{bottom:217.466667pt;}
.y4e{bottom:217.946667pt;}
.y21{bottom:222.906667pt;}
.ya1{bottom:227.066667pt;}
.yd2{bottom:231.066667pt;}
.y2e{bottom:232.826667pt;}
.y4d{bottom:233.146667pt;}
.y20{bottom:238.426667pt;}
.ya0{bottom:242.266667pt;}
.yd1{bottom:246.426667pt;}
.y2d{bottom:248.186667pt;}
.y4c{bottom:248.506667pt;}
.y1f{bottom:256.346667pt;}
.y9f{bottom:257.626667pt;}
.yd0{bottom:261.626667pt;}
.y2c{bottom:263.546667pt;}
.y4b{bottom:263.866667pt;}
.y9e{bottom:272.986667pt;}
.ycf{bottom:276.986667pt;}
.y2b{bottom:278.906667pt;}
.y4a{bottom:279.226667pt;}
.y1e{bottom:280.826667pt;}
.y9d{bottom:288.346667pt;}
.yce{bottom:292.346667pt;}
.y2a{bottom:294.266667pt;}
.y49{bottom:294.586667pt;}
.y1d{bottom:296.506667pt;}
.y86{bottom:298.426667pt;}
.y9c{bottom:303.746667pt;}
.ycd{bottom:307.746667pt;}
.y48{bottom:309.986667pt;}
.y85{bottom:313.666667pt;}
.y9b{bottom:319.106667pt;}
.ycc{bottom:323.106667pt;}
.y47{bottom:325.186667pt;}
.y84{bottom:329.026667pt;}
.y9a{bottom:334.306667pt;}
.ycb{bottom:338.306667pt;}
.y46{bottom:340.546667pt;}
.y83{bottom:344.386667pt;}
.y99{bottom:349.666667pt;}
.yca{bottom:353.666667pt;}
.y45{bottom:355.906667pt;}
.y82{bottom:359.746667pt;}
.y98{bottom:365.026667pt;}
.yc9{bottom:369.026667pt;}
.y44{bottom:371.266667pt;}
.y81{bottom:375.106667pt;}
.y97{bottom:380.386667pt;}
.yc8{bottom:384.386667pt;}
.y43{bottom:386.626667pt;}
.y80{bottom:390.466667pt;}
.y96{bottom:395.746667pt;}
.y3e{bottom:399.106667pt;}
.yc7{bottom:399.746667pt;}
.y7f{bottom:405.666667pt;}
.y95{bottom:411.106667pt;}
.yc6{bottom:415.106667pt;}
.y7e{bottom:421.026667pt;}
.y94{bottom:423.426667pt;}
.yae{bottom:429.666667pt;}
.y1c{bottom:430.306667pt;}
.y7d{bottom:436.386667pt;}
.yad{bottom:445.026667pt;}
.yc5{bottom:445.666667pt;}
.y7c{bottom:451.746667pt;}
.yac{bottom:460.386667pt;}
.yc4{bottom:461.026667pt;}
.y7b{bottom:467.106667pt;}
.yab{bottom:475.746667pt;}
.yc3{bottom:476.386667pt;}
.y7a{bottom:482.466667pt;}
.yaa{bottom:490.946667pt;}
.yc2{bottom:491.746667pt;}
.y79{bottom:497.666667pt;}
.ya9{bottom:506.306667pt;}
.yc1{bottom:507.106667pt;}
.y78{bottom:513.026667pt;}
.ya8{bottom:521.666667pt;}
.yc0{bottom:522.306667pt;}
.y77{bottom:528.386667pt;}
.ya7{bottom:534.146667pt;}
.ybf{bottom:537.693333pt;}
.y76{bottom:543.773333pt;}
.ybe{bottom:553.053333pt;}
.y75{bottom:559.133333pt;}
.ybd{bottom:568.413333pt;}
.y74{bottom:574.493333pt;}
.ybc{bottom:583.773333pt;}
.y73{bottom:589.693333pt;}
.ybb{bottom:599.133333pt;}
.y72{bottom:605.053333pt;}
.yba{bottom:614.333333pt;}
.y71{bottom:620.413333pt;}
.y93{bottom:628.413333pt;}
.yb9{bottom:629.693333pt;}
.y70{bottom:635.773333pt;}
.y92{bottom:643.773333pt;}
.yb8{bottom:645.053333pt;}
.y6f{bottom:651.133333pt;}
.y91{bottom:659.133333pt;}
.yb7{bottom:660.413333pt;}
.y6e{bottom:666.333333pt;}
.y90{bottom:674.333333pt;}
.yb6{bottom:675.773333pt;}
.y6d{bottom:681.693333pt;}
.y8f{bottom:689.693333pt;}
.yb5{bottom:690.973333pt;}
.y6c{bottom:697.053333pt;}
.y8e{bottom:705.053333pt;}
.yb4{bottom:706.333333pt;}
.y6b{bottom:712.413333pt;}
.y8d{bottom:720.413333pt;}
.yb3{bottom:721.693333pt;}
.y6a{bottom:727.773333pt;}
.y8c{bottom:735.773333pt;}
.y19{bottom:736.893333pt;}
.yb2{bottom:737.053333pt;}
.y69{bottom:743.133333pt;}
.ya6{bottom:745.053333pt;}
.yb1{bottom:749.533333pt;}
.y8b{bottom:750.973333pt;}
.y68{bottom:758.333333pt;}
.ya5{bottom:760.413333pt;}
.yf{bottom:763.293333pt;}
.y8a{bottom:766.333333pt;}
.ya4{bottom:772.893333pt;}
.y67{bottom:773.693333pt;}
.y89{bottom:778.853333pt;}
.y66{bottom:789.093333pt;}
.y65{bottom:804.453333pt;}
.y64{bottom:819.813333pt;}
.y63{bottom:835.173333pt;}
.y62{bottom:850.373333pt;}
.y61{bottom:865.733333pt;}
.y60{bottom:881.093333pt;}
.y5f{bottom:896.453333pt;}
.y5e{bottom:911.813333pt;}
.yd{bottom:922.533333pt;}
.y5d{bottom:927.013333pt;}
.y6{bottom:938.853333pt;}
.y5c{bottom:942.373333pt;}
.y5b{bottom:957.733333pt;}
.y5a{bottom:973.093333pt;}
.y59{bottom:988.453333pt;}
.y58{bottom:1003.813333pt;}
.y57{bottom:1019.040000pt;}
.y56{bottom:1034.400000pt;}
.hd{height:16.000000pt;}
.h16{height:26.400000pt;}
.h15{height:28.536563pt;}
.h2{height:29.312000pt;}
.h1f{height:31.200000pt;}
.h14{height:31.828125pt;}
.h9{height:32.160000pt;}
.h20{height:36.305625pt;}
.h1e{height:37.090625pt;}
.h1d{height:37.479688pt;}
.h1b{height:37.583438pt;}
.h22{height:38.672812pt;}
.h10{height:39.113750pt;}
.hb{height:39.840000pt;}
.h4{height:41.976562pt;}
.h18{height:42.649687pt;}
.he{height:44.160000pt;}
.h1a{height:44.215312pt;}
.h21{height:44.975625pt;}
.h1c{height:46.454062pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h8{height:49.622500pt;}
.h19{height:50.288438pt;}
.h12{height:52.834688pt;}
.hc{height:53.937500pt;}
.h13{height:54.390938pt;}
.h11{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h7{height:108.032000pt;}
.hf{height:159.226667pt;}
.h17{height:306.586667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.560000pt;}
.w5{width:138.106667pt;}
.w8{width:196.386667pt;}
.w9{width:467.906667pt;}
.w6{width:526.173333pt;}
.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;}
.x13{left:11.200000pt;}
.xd{left:42.432000pt;}
.x1{left:64.320000pt;}
.xc{left:66.112000pt;}
.x4{left:71.999988pt;}
.x5{left:87.226667pt;}
.xf{left:88.666667pt;}
.xe{left:89.786667pt;}
.x10{left:94.586667pt;}
.x14{left:95.871988pt;}
.x11{left:191.266667pt;}
.x6{left:202.906667pt;}
.x1a{left:214.906655pt;}
.x1c{left:229.786655pt;}
.x9{left:253.346667pt;}
.x12{left:261.186667pt;}
.x16{left:272.386655pt;}
.x1f{left:283.906655pt;}
.x21{left:288.706655pt;}
.x23{left:296.706655pt;}
.x18{left:301.026655pt;}
.x7{left:306.466667pt;}
.x8{left:323.586667pt;}
.xb{left:332.066667pt;}
.x24{left:352.066655pt;}
.x1d{left:396.866655pt;}
.xa{left:402.026667pt;}
.x15{left:597.893322pt;}
.x17{left:600.933322pt;}
.x22{left:630.213322pt;}
.x1b{left:632.933322pt;}
.x1e{left:651.973322pt;}
.x3{left:663.013333pt;}
.x20{left:675.013322pt;}
.x19{left:684.933322pt;}
}




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