
    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_d98a73eaedb9cef1979e9529.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_1ba7e79f13d4a426c38b3ed1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_f2f8ef2f1fbd6d3acdca4b9b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.142090;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_1458a778506a4401844bfde3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.435059;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_7a74c04a41a4789b5f08925d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_68a333a12103734a8af4f5fa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_0bf7efa5b132697b8922fcd9.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.831000;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_06ad3224ddca72dec8e209a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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;}
.m1{transform:matrix(0.149817,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.149817,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.149817,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.150087,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.150087,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.150087,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.152000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237632,0.000000,-0.079203,0.237122,0,0);-ms-transform:matrix(0.237632,0.000000,-0.079203,0.237122,0,0);-webkit-transform:matrix(0.237632,0.000000,-0.079203,0.237122,0,0);}
.m4{transform:matrix(0.241166,0.000000,-0.080380,0.236726,0,0);-ms-transform:matrix(0.241166,0.000000,-0.080380,0.236726,0,0);-webkit-transform:matrix(0.241166,0.000000,-0.080380,0.236726,0,0);}
.ma{transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,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);}
.m6{transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250537,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252323,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252778,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.254689,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254689,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254689,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:5.162348px;}
.v2{vertical-align:32.252943px;}
.ls15{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.072000px;}
.ls11{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.lse{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.432000px;}
.ls8{letter-spacing:0.504000px;}
.lsa{letter-spacing:0.720000px;}
.ls9{letter-spacing:1.448977px;}
.lsd{letter-spacing:1.584000px;}
.ls14{letter-spacing:2.880000px;}
.ls12{letter-spacing:2.936637px;}
.ls17{letter-spacing:3.744000px;}
.ls5{letter-spacing:13.366211px;}
.ls7{letter-spacing:17.986384px;}
.ls10{letter-spacing:21.600000px;}
.ls3{letter-spacing:33.984000px;}
.ls6{letter-spacing:57.958287px;}
.ls18{letter-spacing:72.120000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-41.722483px;}
.ws9{word-spacing:-39.528000px;}
.wsd{word-spacing:-20.661964px;}
.wse{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.999997px;}
.ws7{word-spacing:-17.990490px;}
.wsf{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.761962px;}
.ws6{word-spacing:-17.712000px;}
.ws10{word-spacing:-12.060000px;}
.ws5{word-spacing:0.000000px;}
.ws1{word-spacing:120.000789px;}
.wsc{word-spacing:124.411596px;}
._17{margin-left:-219.167812px;}
._1c{margin-left:-122.038643px;}
._7{margin-left:-79.497272px;}
._16{margin-left:-2.810473px;}
._0{margin-left:-1.095120px;}
._1{width:1.587120px;}
._6{width:2.592000px;}
._8{width:4.364880px;}
._2{width:5.832000px;}
._10{width:7.200000px;}
._c{width:8.784000px;}
._d{width:10.008000px;}
._1b{width:11.118240px;}
._b{width:12.240000px;}
._4{width:13.272000px;}
._3{width:14.304000px;}
._5{width:15.368880px;}
._9{width:16.632000px;}
._e{width:19.800000px;}
._f{width:21.176880px;}
._11{width:22.341360px;}
._15{width:23.621280px;}
._1d{width:24.791760px;}
._14{width:26.463120px;}
._a{width:27.624000px;}
._1e{width:29.540880px;}
._20{width:30.645360px;}
._1f{width:31.824000px;}
._12{width:39.288000px;}
._13{width:40.568880px;}
._18{width:44.586720px;}
._1a{width:194.826720px;}
._19{width:195.966720px;}
.fc5{color:rgb(0,112,192);}
.fc6{color:rgb(0,0,128);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(247,150,70);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.002155px;}
.fsa{font-size:48.240000px;}
.fs7{font-size:59.760000px;}
.fsc{font-size:70.901309px;}
.fs3{font-size:71.047848px;}
.fs4{font-size:71.961960px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:72.717131px;}
.fs6{font-size:75.997237px;}
.fs8{font-size:76.666230px;}
.fs1{font-size:84.240000px;}
.fsb{font-size:114.587441px;}
.fs2{font-size:118.315387px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.y44{bottom:4.211000px;}
.y35{bottom:4.694806px;}
.y38{bottom:4.694818px;}
.y45{bottom:5.340750px;}
.y3c{bottom:6.845108px;}
.y10{bottom:7.770525px;}
.y5e{bottom:7.806436px;}
.yf{bottom:7.949619px;}
.y34{bottom:19.424804px;}
.y37{bottom:19.424816px;}
.y3f{bottom:20.929537px;}
.y3e{bottom:20.929540px;}
.y3a{bottom:20.929545px;}
.y64{bottom:24.660000px;}
.y6b{bottom:25.920000px;}
.y68{bottom:25.950000px;}
.y70{bottom:25.965000px;}
.y6a{bottom:27.360000px;}
.y67{bottom:27.390000px;}
.y6f{bottom:27.405000px;}
.y36{bottom:30.963826px;}
.y39{bottom:30.963837px;}
.y3d{bottom:32.254417px;}
.y3b{bottom:37.343469px;}
.y2{bottom:53.820000px;}
.y1{bottom:57.780000px;}
.y63{bottom:66.060000px;}
.y32{bottom:112.680000px;}
.y4d{bottom:123.840000px;}
.y58{bottom:147.780000px;}
.y31{bottom:154.080000px;}
.y4c{bottom:165.240000px;}
.y57{bottom:189.180000px;}
.y30{bottom:195.480000px;}
.y4b{bottom:206.670000px;}
.y56{bottom:230.610000px;}
.y2f{bottom:236.910000px;}
.y4a{bottom:248.070000px;}
.y1a{bottom:258.150000px;}
.y55{bottom:272.010000px;}
.y2e{bottom:278.310000px;}
.y74{bottom:284.430000px;}
.y49{bottom:289.470000px;}
.y19{bottom:299.550000px;}
.y73{bottom:305.130000px;}
.y54{bottom:313.410000px;}
.y2d{bottom:319.710000px;}
.y48{bottom:330.870000px;}
.y18{bottom:340.950000px;}
.y72{bottom:346.530000px;}
.y53{bottom:354.630000px;}
.y2c{bottom:360.930000px;}
.y71{bottom:363.990000px;}
.y47{bottom:373.530000px;}
.y17{bottom:382.350000px;}
.y52{bottom:396.030000px;}
.y2b{bottom:402.330000px;}
.y6e{bottom:408.090000px;}
.y46{bottom:416.370000px;}
.y16{bottom:423.795000px;}
.y51{bottom:437.475000px;}
.y2a{bottom:443.775000px;}
.y78{bottom:445.395000px;}
.y6d{bottom:452.955000px;}
.y43{bottom:453.884959px;}
.y42{bottom:458.355000px;}
.y15{bottom:465.195000px;}
.y50{bottom:478.875000px;}
.y29{bottom:485.175000px;}
.y77{bottom:486.795000px;}
.y6c{bottom:494.355000px;}
.y41{bottom:499.755000px;}
.y14{bottom:506.595000px;}
.y4e{bottom:516.359959px;}
.y5c{bottom:520.275000px;}
.y4f{bottom:523.875000px;}
.y28{bottom:526.575000px;}
.y76{bottom:528.195000px;}
.y33{bottom:533.609959px;}
.y13{bottom:547.995000px;}
.y40{bottom:554.655000px;}
.y5b{bottom:561.675000px;}
.y75{bottom:565.455000px;}
.y27{bottom:567.975000px;}
.y69{bottom:577.875000px;}
.y7b{bottom:583.995000px;}
.y12{bottom:589.395000px;}
.y5a{bottom:599.159959px;}
.y61{bottom:603.075000px;}
.y59{bottom:606.675000px;}
.y26{bottom:609.375000px;}
.y66{bottom:621.975000px;}
.y7a{bottom:625.395000px;}
.y11{bottom:630.795000px;}
.y60{bottom:644.505000px;}
.y25{bottom:650.805000px;}
.y65{bottom:666.825000px;}
.ye{bottom:668.234959px;}
.yd{bottom:675.825000px;}
.y5d{bottom:681.959959px;}
.y5f{bottom:689.505000px;}
.y24{bottom:692.205000px;}
.y79{bottom:704.265000px;}
.y62{bottom:708.225000px;}
.yc{bottom:719.925000px;}
.y23{bottom:733.605000px;}
.yb{bottom:761.325000px;}
.y22{bottom:775.005000px;}
.ya{bottom:802.725000px;}
.y21{bottom:816.405000px;}
.y9{bottom:844.125000px;}
.y20{bottom:857.805000px;}
.y8{bottom:885.570000px;}
.y1f{bottom:899.250000px;}
.y7{bottom:926.970000px;}
.y1e{bottom:940.650000px;}
.y6{bottom:968.370000px;}
.y1d{bottom:982.050000px;}
.y5{bottom:1013.730000px;}
.y1c{bottom:1023.450000px;}
.y4{bottom:1061.970000px;}
.y1b{bottom:1064.850000px;}
.h2{height:20.700000px;}
.h11{height:20.849616px;}
.h6{height:26.999805px;}
.hd{height:38.905317px;}
.h19{height:41.400000px;}
.h1b{height:44.100000px;}
.h1a{height:44.136000px;}
.ha{height:50.925432px;}
.h13{height:55.337736px;}
.h16{height:64.546875px;}
.hb{height:66.656171px;}
.h15{height:69.585757px;}
.h8{height:69.729577px;}
.h10{height:70.393925px;}
.he{height:70.591591px;}
.h1{height:70.664062px;}
.h12{height:71.013593px;}
.hc{height:71.818519px;}
.h5{height:72.562500px;}
.hf{height:73.455253px;}
.h9{height:74.953125px;}
.h17{height:75.093750px;}
.h4{height:82.676953px;}
.h18{height:82.800000px;}
.h3{height:84.898125px;}
.h14{height:106.138855px;}
.h7{height:109.591938px;}
.h0{height:1188.000000px;}
.w2{width:9.000000px;}
.w5{width:14.924567px;}
.w8{width:18.000000px;}
.w3{width:41.923885px;}
.w6{width:41.999453px;}
.w7{width:43.574235px;}
.wb{width:89.676000px;}
.w10{width:89.820000px;}
.wc{width:100.440000px;}
.wd{width:106.416000px;}
.wf{width:116.496000px;}
.we{width:117.000000px;}
.w11{width:117.036000px;}
.w4{width:143.996708px;}
.w9{width:178.380000px;}
.wa{width:530.025000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:2.132457px;}
.xb{left:4.855921px;}
.x1a{left:7.740000px;}
.xa{left:16.721779px;}
.x16{left:18.173990px;}
.x6{left:26.636889px;}
.xe{left:32.712946px;}
.x28{left:35.280000px;}
.x25{left:37.800000px;}
.x26{left:41.220000px;}
.xf{left:43.666065px;}
.x1c{left:46.800000px;}
.x27{left:49.500000px;}
.x1d{left:51.885000px;}
.x29{left:54.360000px;}
.x1f{left:59.760000px;}
.x21{left:62.670000px;}
.x23{left:67.860000px;}
.x9{left:94.415571px;}
.x18{left:98.676000px;}
.x1{left:106.415986px;}
.xc{left:107.960927px;}
.xd{left:117.781527px;}
.x8{left:134.138746px;}
.x13{left:148.355986px;}
.x11{left:150.389990px;}
.x12{left:165.269986px;}
.x1b{left:240.735000px;}
.x10{left:250.409986px;}
.x19{left:277.770000px;}
.x1e{left:367.455000px;}
.x14{left:378.839959px;}
.x15{left:420.734986px;}
.x4{left:427.214959px;}
.x2a{left:457.275000px;}
.x3{left:459.074986px;}
.x20{left:467.895000px;}
.x7{left:469.154986px;}
.x22{left:574.305000px;}
.x24{left:691.305000px;}
.x17{left:793.770000px;}
.x2{left:802.770000px;}
.x2b{left:812.129986px;}
@media print{
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.588754pt;}
.v2{vertical-align:28.669283pt;}
.ls15{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.064000pt;}
.ls11{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.384000pt;}
.ls8{letter-spacing:0.448000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls9{letter-spacing:1.287980pt;}
.lsd{letter-spacing:1.408000pt;}
.ls14{letter-spacing:2.560000pt;}
.ls12{letter-spacing:2.610344pt;}
.ls17{letter-spacing:3.328000pt;}
.ls5{letter-spacing:11.881077pt;}
.ls7{letter-spacing:15.987897pt;}
.ls10{letter-spacing:19.200000pt;}
.ls3{letter-spacing:30.208000pt;}
.ls6{letter-spacing:51.518477pt;}
.ls18{letter-spacing:64.106667pt;}
.ws8{word-spacing:-37.086652pt;}
.ws9{word-spacing:-35.136000pt;}
.wsd{word-spacing:-18.366190pt;}
.wse{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.999997pt;}
.ws7{word-spacing:-15.991547pt;}
.wsf{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.788411pt;}
.ws6{word-spacing:-15.744000pt;}
.ws10{word-spacing:-10.720000pt;}
.ws5{word-spacing:0.000000pt;}
.ws1{word-spacing:106.667368pt;}
.wsc{word-spacing:110.588085pt;}
._17{margin-left:-194.815833pt;}
._1c{margin-left:-108.478794pt;}
._7{margin-left:-70.664242pt;}
._16{margin-left:-2.498199pt;}
._0{margin-left:-0.973440pt;}
._1{width:1.410773pt;}
._6{width:2.304000pt;}
._8{width:3.879893pt;}
._2{width:5.184000pt;}
._10{width:6.400000pt;}
._c{width:7.808000pt;}
._d{width:8.896000pt;}
._1b{width:9.882880pt;}
._b{width:10.880000pt;}
._4{width:11.797333pt;}
._3{width:12.714667pt;}
._5{width:13.661227pt;}
._9{width:14.784000pt;}
._e{width:17.600000pt;}
._f{width:18.823893pt;}
._11{width:19.858987pt;}
._15{width:20.996693pt;}
._1d{width:22.037120pt;}
._14{width:23.522773pt;}
._a{width:24.554667pt;}
._1e{width:26.258560pt;}
._20{width:27.240320pt;}
._1f{width:28.288000pt;}
._12{width:34.922667pt;}
._13{width:36.061227pt;}
._18{width:39.632640pt;}
._1a{width:173.179307pt;}
._19{width:174.192640pt;}
.fs5{font-size:37.335249pt;}
.fsa{font-size:42.880000pt;}
.fs7{font-size:53.120000pt;}
.fsc{font-size:63.023386pt;}
.fs3{font-size:63.153642pt;}
.fs4{font-size:63.966187pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:64.637449pt;}
.fs6{font-size:67.553100pt;}
.fs8{font-size:68.147760pt;}
.fs1{font-size:74.880000pt;}
.fsb{font-size:101.855503pt;}
.fs2{font-size:105.169233pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.y44{bottom:3.743111pt;}
.y35{bottom:4.173161pt;}
.y38{bottom:4.173171pt;}
.y45{bottom:4.747333pt;}
.y3c{bottom:6.084540pt;}
.y10{bottom:6.907133pt;}
.y5e{bottom:6.939054pt;}
.yf{bottom:7.066328pt;}
.y34{bottom:17.266493pt;}
.y37{bottom:17.266503pt;}
.y3f{bottom:18.604033pt;}
.y3e{bottom:18.604036pt;}
.y3a{bottom:18.604040pt;}
.y64{bottom:21.920000pt;}
.y6b{bottom:23.040000pt;}
.y68{bottom:23.066667pt;}
.y70{bottom:23.080000pt;}
.y6a{bottom:24.320000pt;}
.y67{bottom:24.346667pt;}
.y6f{bottom:24.360000pt;}
.y36{bottom:27.523401pt;}
.y39{bottom:27.523411pt;}
.y3d{bottom:28.670593pt;}
.y3b{bottom:33.194194pt;}
.y2{bottom:47.840000pt;}
.y1{bottom:51.360000pt;}
.y63{bottom:58.720000pt;}
.y32{bottom:100.160000pt;}
.y4d{bottom:110.080000pt;}
.y58{bottom:131.360000pt;}
.y31{bottom:136.960000pt;}
.y4c{bottom:146.880000pt;}
.y57{bottom:168.160000pt;}
.y30{bottom:173.760000pt;}
.y4b{bottom:183.706667pt;}
.y56{bottom:204.986667pt;}
.y2f{bottom:210.586667pt;}
.y4a{bottom:220.506667pt;}
.y1a{bottom:229.466667pt;}
.y55{bottom:241.786667pt;}
.y2e{bottom:247.386667pt;}
.y74{bottom:252.826667pt;}
.y49{bottom:257.306667pt;}
.y19{bottom:266.266667pt;}
.y73{bottom:271.226667pt;}
.y54{bottom:278.586667pt;}
.y2d{bottom:284.186667pt;}
.y48{bottom:294.106667pt;}
.y18{bottom:303.066667pt;}
.y72{bottom:308.026667pt;}
.y53{bottom:315.226667pt;}
.y2c{bottom:320.826667pt;}
.y71{bottom:323.546667pt;}
.y47{bottom:332.026667pt;}
.y17{bottom:339.866667pt;}
.y52{bottom:352.026667pt;}
.y2b{bottom:357.626667pt;}
.y6e{bottom:362.746667pt;}
.y46{bottom:370.106667pt;}
.y16{bottom:376.706667pt;}
.y51{bottom:388.866667pt;}
.y2a{bottom:394.466667pt;}
.y78{bottom:395.906667pt;}
.y6d{bottom:402.626667pt;}
.y43{bottom:403.453297pt;}
.y42{bottom:407.426667pt;}
.y15{bottom:413.506667pt;}
.y50{bottom:425.666667pt;}
.y29{bottom:431.266667pt;}
.y77{bottom:432.706667pt;}
.y6c{bottom:439.426667pt;}
.y41{bottom:444.226667pt;}
.y14{bottom:450.306667pt;}
.y4e{bottom:458.986630pt;}
.y5c{bottom:462.466667pt;}
.y4f{bottom:465.666667pt;}
.y28{bottom:468.066667pt;}
.y76{bottom:469.506667pt;}
.y33{bottom:474.319964pt;}
.y13{bottom:487.106667pt;}
.y40{bottom:493.026667pt;}
.y5b{bottom:499.266667pt;}
.y75{bottom:502.626667pt;}
.y27{bottom:504.866667pt;}
.y69{bottom:513.666667pt;}
.y7b{bottom:519.106667pt;}
.y12{bottom:523.906667pt;}
.y5a{bottom:532.586630pt;}
.y61{bottom:536.066667pt;}
.y59{bottom:539.266667pt;}
.y26{bottom:541.666667pt;}
.y66{bottom:552.866667pt;}
.y7a{bottom:555.906667pt;}
.y11{bottom:560.706667pt;}
.y60{bottom:572.893333pt;}
.y25{bottom:578.493333pt;}
.y65{bottom:592.733333pt;}
.ye{bottom:593.986630pt;}
.yd{bottom:600.733333pt;}
.y5d{bottom:606.186630pt;}
.y5f{bottom:612.893333pt;}
.y24{bottom:615.293333pt;}
.y79{bottom:626.013333pt;}
.y62{bottom:629.533333pt;}
.yc{bottom:639.933333pt;}
.y23{bottom:652.093333pt;}
.yb{bottom:676.733333pt;}
.y22{bottom:688.893333pt;}
.ya{bottom:713.533333pt;}
.y21{bottom:725.693333pt;}
.y9{bottom:750.333333pt;}
.y20{bottom:762.493333pt;}
.y8{bottom:787.173333pt;}
.y1f{bottom:799.333333pt;}
.y7{bottom:823.973333pt;}
.y1e{bottom:836.133333pt;}
.y6{bottom:860.773333pt;}
.y1d{bottom:872.933333pt;}
.y5{bottom:901.093333pt;}
.y1c{bottom:909.733333pt;}
.y4{bottom:943.973333pt;}
.y1b{bottom:946.533333pt;}
.h2{height:18.400000pt;}
.h11{height:18.532992pt;}
.h6{height:23.999827pt;}
.hd{height:34.582504pt;}
.h19{height:36.800000pt;}
.h1b{height:39.200000pt;}
.h1a{height:39.232000pt;}
.ha{height:45.267051pt;}
.h13{height:49.189099pt;}
.h16{height:57.375000pt;}
.hb{height:59.249930pt;}
.h15{height:61.854006pt;}
.h8{height:61.981846pt;}
.h10{height:62.572378pt;}
.he{height:62.748081pt;}
.h1{height:62.812500pt;}
.h12{height:63.123194pt;}
.hc{height:63.838684pt;}
.h5{height:64.500000pt;}
.hf{height:65.293558pt;}
.h9{height:66.625000pt;}
.h17{height:66.750000pt;}
.h4{height:73.490625pt;}
.h18{height:73.600000pt;}
.h3{height:75.465000pt;}
.h14{height:94.345649pt;}
.h7{height:97.415056pt;}
.h0{height:1056.000000pt;}
.w2{width:8.000000pt;}
.w5{width:13.266282pt;}
.w8{width:16.000000pt;}
.w3{width:37.265676pt;}
.w6{width:37.332848pt;}
.w7{width:38.732653pt;}
.wb{width:79.712000pt;}
.w10{width:79.840000pt;}
.wc{width:89.280000pt;}
.wd{width:94.592000pt;}
.wf{width:103.552000pt;}
.we{width:104.000000pt;}
.w11{width:104.032000pt;}
.w4{width:127.997073pt;}
.w9{width:158.560000pt;}
.wa{width:471.133333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:1.895517pt;}
.xb{left:4.316374pt;}
.x1a{left:6.880000pt;}
.xa{left:14.863804pt;}
.x16{left:16.154658pt;}
.x6{left:23.677235pt;}
.xe{left:29.078174pt;}
.x28{left:31.360000pt;}
.x25{left:33.600000pt;}
.x26{left:36.640000pt;}
.xf{left:38.814280pt;}
.x1c{left:41.600000pt;}
.x27{left:44.000000pt;}
.x1d{left:46.120000pt;}
.x29{left:48.320000pt;}
.x1f{left:53.120000pt;}
.x21{left:55.706667pt;}
.x23{left:60.320000pt;}
.x9{left:83.924952pt;}
.x18{left:87.712000pt;}
.x1{left:94.591988pt;}
.xc{left:95.965268pt;}
.xd{left:104.694691pt;}
.x8{left:119.234441pt;}
.x13{left:131.871988pt;}
.x11{left:133.679991pt;}
.x12{left:146.906655pt;}
.x1b{left:213.986667pt;}
.x10{left:222.586655pt;}
.x19{left:246.906667pt;}
.x1e{left:326.626667pt;}
.x14{left:336.746630pt;}
.x15{left:373.986655pt;}
.x4{left:379.746630pt;}
.x2a{left:406.466667pt;}
.x3{left:408.066655pt;}
.x20{left:415.906667pt;}
.x7{left:417.026655pt;}
.x22{left:510.493333pt;}
.x24{left:614.493333pt;}
.x17{left:705.573333pt;}
.x2{left:713.573333pt;}
.x2b{left:721.893321pt;}
}




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