
    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_ff740c256fdc6b184a241150.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_9063a5aa494624abc6f03bac.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a261796c0cc1aa9ae9181338.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b87444467a102aee52b375a9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d74b4ace65817fba3430d716.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970215;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5632a2273a4f3c85ca8534f1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ab32b62863199af0d6674a77.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_894d18956179be87a7a94131.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_40cf0f027e0a3b65d82c48c7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a05e7ee98982e8c8bb5e6e96.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_9f841ed8b63c790f67d61a07.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_6d9502e38e2b8433d07a2f86.woff2')format("woff");}.ffd{font-family:ffd;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;}
@font-face{font-family:ffe;src:url('chunks/assets/font_09a8692baa07bbcad3e270cd.woff2')format("woff");}.ffe{font-family:ffe;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;}
@font-face{font-family:fff;src:url('chunks/assets/font_129c7a49b4bd77f4f9c64d17.woff2')format("woff");}.fff{font-family:fff;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_38f8917ef9e188be25d2aaf2.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_f56983e68b0f4b2c419416a9.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.040039;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:ff13;src:url('chunks/assets/font_a614bfae96a2242fb10b0fb5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.127200px;}
.lsf{letter-spacing:-0.053280px;}
.ls8{letter-spacing:-0.038160px;}
.ls6{letter-spacing:-0.018000px;}
.ls5{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls9{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls4{letter-spacing:0.174240px;}
.lsb{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.lsd{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.786240px;}
.ls10{letter-spacing:16.506720px;}
.lse{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws9{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.199920px;}
.ws5{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.580000px;}
.ws6{word-spacing:-13.505760px;}
.ws4{word-spacing:-12.854880px;}
.ws3{word-spacing:-12.816720px;}
.ws0{word-spacing:-12.186000px;}
.ws7{word-spacing:0.000000px;}
._20{margin-left:-7.764480px;}
._1f{margin-left:-6.716880px;}
._3{margin-left:-5.557680px;}
._7{margin-left:-4.492800px;}
._16{margin-left:-3.472560px;}
._2{margin-left:-2.464320px;}
._0{margin-left:-1.158000px;}
._1{width:1.020000px;}
._4{width:2.058720px;}
._5{width:3.068160px;}
._6{width:4.597440px;}
._13{width:5.860560px;}
._12{width:6.928080px;}
._8{width:8.964000px;}
._14{width:10.517760px;}
._15{width:11.774880px;}
._f{width:13.083360px;}
._19{width:16.131120px;}
._d{width:17.454000px;}
._c{width:18.760560px;}
._1a{width:20.254560px;}
._18{width:21.334320px;}
._17{width:22.649040px;}
._10{width:23.959680px;}
._11{width:25.446720px;}
._9{width:26.986560px;}
._b{width:31.083120px;}
._a{width:32.759280px;}
._e{width:33.869040px;}
._1e{width:44.147520px;}
._1d{width:46.069440px;}
._1c{width:205.275600px;}
._1b{width:206.351280px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(23,54,93);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y19{bottom:0.180000px;}
.y46{bottom:3.240000px;}
.y9e{bottom:3.285000px;}
.y4{bottom:3.600000px;}
.yf{bottom:9.540000px;}
.y1a{bottom:12.600000px;}
.yd{bottom:13.860000px;}
.y49{bottom:14.985000px;}
.y5{bottom:17.280000px;}
.y48{bottom:17.865000px;}
.y17{bottom:19.980000px;}
.y3{bottom:20.160000px;}
.y45{bottom:20.520000px;}
.yc{bottom:30.240000px;}
.y16{bottom:36.900000px;}
.y44{bottom:37.800000px;}
.yb{bottom:46.440000px;}
.y15{bottom:55.080000px;}
.y6{bottom:58.680000px;}
.y43{bottom:72.360000px;}
.ya{bottom:73.290000px;}
.y14{bottom:73.440000px;}
.y2{bottom:81.216000px;}
.y42{bottom:89.640000px;}
.y13{bottom:92.520000px;}
.y9{bottom:92.910000px;}
.y41{bottom:106.740000px;}
.y8{bottom:111.270000px;}
.y12{bottom:118.260000px;}
.y40{bottom:124.020000px;}
.y54{bottom:135.576000px;}
.y91{bottom:137.916000px;}
.y3f{bottom:141.300000px;}
.yc7{bottom:141.516000px;}
.y11{bottom:142.560000px;}
.y53{bottom:152.850000px;}
.y90{bottom:155.010000px;}
.ya7{bottom:157.350000px;}
.y3e{bottom:158.580000px;}
.yc6{bottom:158.790000px;}
.y52{bottom:169.950000px;}
.ya6{bottom:172.110000px;}
.y8f{bottom:172.290000px;}
.y3d{bottom:175.860000px;}
.yc5{bottom:176.070000px;}
.y51{bottom:187.230000px;}
.y8e{bottom:189.570000px;}
.ya5{bottom:190.110000px;}
.y3c{bottom:193.140000px;}
.yc4{bottom:193.350000px;}
.y50{bottom:204.510000px;}
.y8d{bottom:206.850000px;}
.ya4{bottom:208.110000px;}
.y3b{bottom:210.240000px;}
.yc3{bottom:210.450000px;}
.y4f{bottom:221.790000px;}
.y8c{bottom:224.130000px;}
.ya3{bottom:226.110000px;}
.y3a{bottom:227.520000px;}
.yc2{bottom:227.730000px;}
.y2a{bottom:237.240000px;}
.y4e{bottom:239.070000px;}
.y8b{bottom:241.410000px;}
.ya2{bottom:244.110000px;}
.y39{bottom:244.800000px;}
.yc1{bottom:245.010000px;}
.y29{bottom:252.390000px;}
.y4d{bottom:256.350000px;}
.y8a{bottom:258.510000px;}
.y38{bottom:262.110000px;}
.yc0{bottom:262.290000px;}
.y28{bottom:269.670000px;}
.y4c{bottom:273.450000px;}
.y89{bottom:275.790000px;}
.y37{bottom:279.390000px;}
.ybf{bottom:279.570000px;}
.ya1{bottom:280.110000px;}
.y27{bottom:287.130000px;}
.y4b{bottom:290.730000px;}
.y88{bottom:293.070000px;}
.y36{bottom:296.490000px;}
.ybe{bottom:296.850000px;}
.ya0{bottom:301.350000px;}
.y26{bottom:304.590000px;}
.y4a{bottom:308.730000px;}
.y87{bottom:310.350000px;}
.y35{bottom:313.770000px;}
.ybd{bottom:313.950000px;}
.y9f{bottom:318.630000px;}
.y25{bottom:321.870000px;}
.y47{bottom:323.130000px;}
.y86{bottom:327.630000px;}
.y34{bottom:331.050000px;}
.ybc{bottom:331.230000px;}
.y9d{bottom:333.390000px;}
.y24{bottom:339.330000px;}
.y85{bottom:344.775000px;}
.y33{bottom:348.330000px;}
.ybb{bottom:348.555000px;}
.y9c{bottom:351.435000px;}
.y1b{bottom:352.335000px;}
.y23{bottom:356.790000px;}
.y84{bottom:362.055000px;}
.y32{bottom:365.610000px;}
.yba{bottom:365.835000px;}
.y9b{bottom:369.435000px;}
.y22{bottom:374.070000px;}
.y83{bottom:379.335000px;}
.y31{bottom:382.890000px;}
.yb9{bottom:383.115000px;}
.y9a{bottom:390.675000px;}
.y21{bottom:391.530000px;}
.y82{bottom:396.615000px;}
.y30{bottom:399.990000px;}
.yb8{bottom:400.395000px;}
.y99{bottom:407.775000px;}
.y20{bottom:408.810000px;}
.y81{bottom:413.895000px;}
.y2f{bottom:417.270000px;}
.yb7{bottom:417.495000px;}
.y98{bottom:422.535000px;}
.y1f{bottom:426.270000px;}
.y80{bottom:431.175000px;}
.y2e{bottom:434.550000px;}
.yb6{bottom:434.775000px;}
.y97{bottom:440.535000px;}
.y1e{bottom:443.910000px;}
.y7f{bottom:448.275000px;}
.y2d{bottom:451.830000px;}
.yb5{bottom:452.055000px;}
.y96{bottom:458.535000px;}
.y7e{bottom:465.555000px;}
.y2c{bottom:469.110000px;}
.yb4{bottom:469.335000px;}
.y1d{bottom:471.270000px;}
.y95{bottom:476.535000px;}
.y7d{bottom:482.835000px;}
.y2b{bottom:486.390000px;}
.yb3{bottom:486.615000px;}
.y1c{bottom:488.910000px;}
.y94{bottom:494.535000px;}
.y7c{bottom:500.115000px;}
.yb2{bottom:503.895000px;}
.y93{bottom:512.535000px;}
.y7b{bottom:517.395000px;}
.yb1{bottom:520.995000px;}
.y92{bottom:530.535000px;}
.y7a{bottom:534.675000px;}
.yb0{bottom:538.275000px;}
.y79{bottom:551.775000px;}
.yaf{bottom:555.555000px;}
.y78{bottom:569.055000px;}
.yae{bottom:572.835000px;}
.y77{bottom:586.335000px;}
.yad{bottom:590.115000px;}
.y76{bottom:603.645000px;}
.yac{bottom:607.245000px;}
.y75{bottom:620.925000px;}
.yab{bottom:621.285000px;}
.y74{bottom:638.205000px;}
.y73{bottom:655.305000px;}
.y72{bottom:672.585000px;}
.y71{bottom:689.865000px;}
.y70{bottom:707.145000px;}
.y6f{bottom:724.425000px;}
.y6e{bottom:741.525000px;}
.y6d{bottom:758.805000px;}
.y6c{bottom:776.085000px;}
.y6b{bottom:793.365000px;}
.y6a{bottom:810.645000px;}
.y69{bottom:827.925000px;}
.y68{bottom:845.025000px;}
.y18{bottom:852.585000px;}
.y67{bottom:862.305000px;}
.y66{bottom:879.630000px;}
.y10{bottom:882.330000px;}
.yaa{bottom:890.070000px;}
.y65{bottom:896.910000px;}
.ya9{bottom:907.350000px;}
.y64{bottom:914.190000px;}
.ya8{bottom:921.390000px;}
.y63{bottom:931.470000px;}
.y62{bottom:948.570000px;}
.y61{bottom:965.850000px;}
.y60{bottom:983.130000px;}
.y5f{bottom:1000.410000px;}
.y5e{bottom:1017.690000px;}
.y5d{bottom:1034.970000px;}
.ye{bottom:1040.010000px;}
.y5c{bottom:1052.070000px;}
.y7{bottom:1065.390000px;}
.y5b{bottom:1069.350000px;}
.y5a{bottom:1086.630000px;}
.y59{bottom:1103.910000px;}
.y58{bottom:1121.190000px;}
.y57{bottom:1138.320000px;}
.y56{bottom:1155.600000px;}
.y55{bottom:1172.880000px;}
.y1{bottom:1191.780000px;}
.h1d{height:17.100000px;}
.h1e{height:17.136000px;}
.h1c{height:17.280000px;}
.hb{height:25.020000px;}
.h1a{height:29.196000px;}
.h12{height:29.736000px;}
.h3{height:32.940000px;}
.h8{height:36.180000px;}
.h18{height:38.818125px;}
.h1b{height:42.164648px;}
.h11{height:43.453125px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h19{height:53.573906px;}
.h5{height:53.709961px;}
.h9{height:54.000000px;}
.h4{height:55.291992px;}
.h16{height:56.574492px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h6{height:67.824844px;}
.h2{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.536000px;}
.hc{height:157.680000px;}
.h14{height:500.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:73.080000px;}
.w5{width:151.950000px;}
.wf{width:164.010000px;}
.wd{width:197.490000px;}
.w8{width:223.455000px;}
.wb{width:266.610000px;}
.w10{width:275.430000px;}
.we{width:288.615000px;}
.wa{width:462.345000px;}
.w9{width:507.675000px;}
.wc{width:531.465000px;}
.w6{width:579.165000px;}
.w3{width:658.050000px;}
.w7{width:731.130000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.x11{left:12.600000px;}
.xb{left:24.696000px;}
.x1{left:80.999987px;}
.xe{left:83.010000px;}
.x4{left:98.130000px;}
.x1a{left:108.035987px;}
.x1b{left:135.035987px;}
.xc{left:168.870000px;}
.xf{left:215.175000px;}
.x5{left:232.950000px;}
.x19{left:255.449987px;}
.x8{left:272.235000px;}
.x10{left:304.455000px;}
.xd{left:307.695000px;}
.x6{left:331.995000px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x13{left:368.534987px;}
.x15{left:371.055000px;}
.x9{left:439.500000px;}
.x16{left:535.965000px;}
.x12{left:544.785000px;}
.x14{left:613.905000px;}
.x18{left:664.889987px;}
.x17{left:676.409987px;}
.x3{left:739.050000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.113067pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls8{letter-spacing:-0.033920pt;}
.ls6{letter-spacing:-0.016000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls9{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls4{letter-spacing:0.154880pt;}
.lsb{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.lsd{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.698880pt;}
.ls10{letter-spacing:14.672640pt;}
.lse{letter-spacing:40.912640pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws9{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.511040pt;}
.ws5{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws8{word-spacing:-12.960000pt;}
.ws6{word-spacing:-12.005120pt;}
.ws4{word-spacing:-11.426560pt;}
.ws3{word-spacing:-11.392640pt;}
.ws0{word-spacing:-10.832000pt;}
.ws7{word-spacing:0.000000pt;}
._20{margin-left:-6.901760pt;}
._1f{margin-left:-5.970560pt;}
._3{margin-left:-4.940160pt;}
._7{margin-left:-3.993600pt;}
._16{margin-left:-3.086720pt;}
._2{margin-left:-2.190507pt;}
._0{margin-left:-1.029333pt;}
._1{width:0.906667pt;}
._4{width:1.829973pt;}
._5{width:2.727253pt;}
._6{width:4.086613pt;}
._13{width:5.209387pt;}
._12{width:6.158293pt;}
._8{width:7.968000pt;}
._14{width:9.349120pt;}
._15{width:10.466560pt;}
._f{width:11.629653pt;}
._19{width:14.338773pt;}
._d{width:15.514667pt;}
._c{width:16.676053pt;}
._1a{width:18.004053pt;}
._18{width:18.963840pt;}
._17{width:20.132480pt;}
._10{width:21.297493pt;}
._11{width:22.619307pt;}
._9{width:23.988053pt;}
._b{width:27.629440pt;}
._a{width:29.119360pt;}
._e{width:30.105813pt;}
._1e{width:39.242240pt;}
._1d{width:40.950613pt;}
._1c{width:182.467200pt;}
._1b{width:183.423360pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y19{bottom:0.160000pt;}
.y46{bottom:2.880000pt;}
.y9e{bottom:2.920000pt;}
.y4{bottom:3.200000pt;}
.yf{bottom:8.480000pt;}
.y1a{bottom:11.200000pt;}
.yd{bottom:12.320000pt;}
.y49{bottom:13.320000pt;}
.y5{bottom:15.360000pt;}
.y48{bottom:15.880000pt;}
.y17{bottom:17.760000pt;}
.y3{bottom:17.920000pt;}
.y45{bottom:18.240000pt;}
.yc{bottom:26.880000pt;}
.y16{bottom:32.800000pt;}
.y44{bottom:33.600000pt;}
.yb{bottom:41.280000pt;}
.y15{bottom:48.960000pt;}
.y6{bottom:52.160000pt;}
.y43{bottom:64.320000pt;}
.ya{bottom:65.146667pt;}
.y14{bottom:65.280000pt;}
.y2{bottom:72.192000pt;}
.y42{bottom:79.680000pt;}
.y13{bottom:82.240000pt;}
.y9{bottom:82.586667pt;}
.y41{bottom:94.880000pt;}
.y8{bottom:98.906667pt;}
.y12{bottom:105.120000pt;}
.y40{bottom:110.240000pt;}
.y54{bottom:120.512000pt;}
.y91{bottom:122.592000pt;}
.y3f{bottom:125.600000pt;}
.yc7{bottom:125.792000pt;}
.y11{bottom:126.720000pt;}
.y53{bottom:135.866667pt;}
.y90{bottom:137.786667pt;}
.ya7{bottom:139.866667pt;}
.y3e{bottom:140.960000pt;}
.yc6{bottom:141.146667pt;}
.y52{bottom:151.066667pt;}
.ya6{bottom:152.986667pt;}
.y8f{bottom:153.146667pt;}
.y3d{bottom:156.320000pt;}
.yc5{bottom:156.506667pt;}
.y51{bottom:166.426667pt;}
.y8e{bottom:168.506667pt;}
.ya5{bottom:168.986667pt;}
.y3c{bottom:171.680000pt;}
.yc4{bottom:171.866667pt;}
.y50{bottom:181.786667pt;}
.y8d{bottom:183.866667pt;}
.ya4{bottom:184.986667pt;}
.y3b{bottom:186.880000pt;}
.yc3{bottom:187.066667pt;}
.y4f{bottom:197.146667pt;}
.y8c{bottom:199.226667pt;}
.ya3{bottom:200.986667pt;}
.y3a{bottom:202.240000pt;}
.yc2{bottom:202.426667pt;}
.y2a{bottom:210.880000pt;}
.y4e{bottom:212.506667pt;}
.y8b{bottom:214.586667pt;}
.ya2{bottom:216.986667pt;}
.y39{bottom:217.600000pt;}
.yc1{bottom:217.786667pt;}
.y29{bottom:224.346667pt;}
.y4d{bottom:227.866667pt;}
.y8a{bottom:229.786667pt;}
.y38{bottom:232.986667pt;}
.yc0{bottom:233.146667pt;}
.y28{bottom:239.706667pt;}
.y4c{bottom:243.066667pt;}
.y89{bottom:245.146667pt;}
.y37{bottom:248.346667pt;}
.ybf{bottom:248.506667pt;}
.ya1{bottom:248.986667pt;}
.y27{bottom:255.226667pt;}
.y4b{bottom:258.426667pt;}
.y88{bottom:260.506667pt;}
.y36{bottom:263.546667pt;}
.ybe{bottom:263.866667pt;}
.ya0{bottom:267.866667pt;}
.y26{bottom:270.746667pt;}
.y4a{bottom:274.426667pt;}
.y87{bottom:275.866667pt;}
.y35{bottom:278.906667pt;}
.ybd{bottom:279.066667pt;}
.y9f{bottom:283.226667pt;}
.y25{bottom:286.106667pt;}
.y47{bottom:287.226667pt;}
.y86{bottom:291.226667pt;}
.y34{bottom:294.266667pt;}
.ybc{bottom:294.426667pt;}
.y9d{bottom:296.346667pt;}
.y24{bottom:301.626667pt;}
.y85{bottom:306.466667pt;}
.y33{bottom:309.626667pt;}
.ybb{bottom:309.826667pt;}
.y9c{bottom:312.386667pt;}
.y1b{bottom:313.186667pt;}
.y23{bottom:317.146667pt;}
.y84{bottom:321.826667pt;}
.y32{bottom:324.986667pt;}
.yba{bottom:325.186667pt;}
.y9b{bottom:328.386667pt;}
.y22{bottom:332.506667pt;}
.y83{bottom:337.186667pt;}
.y31{bottom:340.346667pt;}
.yb9{bottom:340.546667pt;}
.y9a{bottom:347.266667pt;}
.y21{bottom:348.026667pt;}
.y82{bottom:352.546667pt;}
.y30{bottom:355.546667pt;}
.yb8{bottom:355.906667pt;}
.y99{bottom:362.466667pt;}
.y20{bottom:363.386667pt;}
.y81{bottom:367.906667pt;}
.y2f{bottom:370.906667pt;}
.yb7{bottom:371.106667pt;}
.y98{bottom:375.586667pt;}
.y1f{bottom:378.906667pt;}
.y80{bottom:383.266667pt;}
.y2e{bottom:386.266667pt;}
.yb6{bottom:386.466667pt;}
.y97{bottom:391.586667pt;}
.y1e{bottom:394.586667pt;}
.y7f{bottom:398.466667pt;}
.y2d{bottom:401.626667pt;}
.yb5{bottom:401.826667pt;}
.y96{bottom:407.586667pt;}
.y7e{bottom:413.826667pt;}
.y2c{bottom:416.986667pt;}
.yb4{bottom:417.186667pt;}
.y1d{bottom:418.906667pt;}
.y95{bottom:423.586667pt;}
.y7d{bottom:429.186667pt;}
.y2b{bottom:432.346667pt;}
.yb3{bottom:432.546667pt;}
.y1c{bottom:434.586667pt;}
.y94{bottom:439.586667pt;}
.y7c{bottom:444.546667pt;}
.yb2{bottom:447.906667pt;}
.y93{bottom:455.586667pt;}
.y7b{bottom:459.906667pt;}
.yb1{bottom:463.106667pt;}
.y92{bottom:471.586667pt;}
.y7a{bottom:475.266667pt;}
.yb0{bottom:478.466667pt;}
.y79{bottom:490.466667pt;}
.yaf{bottom:493.826667pt;}
.y78{bottom:505.826667pt;}
.yae{bottom:509.186667pt;}
.y77{bottom:521.186667pt;}
.yad{bottom:524.546667pt;}
.y76{bottom:536.573333pt;}
.yac{bottom:539.773333pt;}
.y75{bottom:551.933333pt;}
.yab{bottom:552.253333pt;}
.y74{bottom:567.293333pt;}
.y73{bottom:582.493333pt;}
.y72{bottom:597.853333pt;}
.y71{bottom:613.213333pt;}
.y70{bottom:628.573333pt;}
.y6f{bottom:643.933333pt;}
.y6e{bottom:659.133333pt;}
.y6d{bottom:674.493333pt;}
.y6c{bottom:689.853333pt;}
.y6b{bottom:705.213333pt;}
.y6a{bottom:720.573333pt;}
.y69{bottom:735.933333pt;}
.y68{bottom:751.133333pt;}
.y18{bottom:757.853333pt;}
.y67{bottom:766.493333pt;}
.y66{bottom:781.893333pt;}
.y10{bottom:784.293333pt;}
.yaa{bottom:791.173333pt;}
.y65{bottom:797.253333pt;}
.ya9{bottom:806.533333pt;}
.y64{bottom:812.613333pt;}
.ya8{bottom:819.013333pt;}
.y63{bottom:827.973333pt;}
.y62{bottom:843.173333pt;}
.y61{bottom:858.533333pt;}
.y60{bottom:873.893333pt;}
.y5f{bottom:889.253333pt;}
.y5e{bottom:904.613333pt;}
.y5d{bottom:919.973333pt;}
.ye{bottom:924.453333pt;}
.y5c{bottom:935.173333pt;}
.y7{bottom:947.013333pt;}
.y5b{bottom:950.533333pt;}
.y5a{bottom:965.893333pt;}
.y59{bottom:981.253333pt;}
.y58{bottom:996.613333pt;}
.y57{bottom:1011.840000pt;}
.y56{bottom:1027.200000pt;}
.y55{bottom:1042.560000pt;}
.y1{bottom:1059.360000pt;}
.h1d{height:15.200000pt;}
.h1e{height:15.232000pt;}
.h1c{height:15.360000pt;}
.hb{height:22.240000pt;}
.h1a{height:25.952000pt;}
.h12{height:26.432000pt;}
.h3{height:29.280000pt;}
.h8{height:32.160000pt;}
.h18{height:34.505000pt;}
.h1b{height:37.479688pt;}
.h11{height:38.625000pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h19{height:47.621250pt;}
.h5{height:47.742188pt;}
.h9{height:48.000000pt;}
.h4{height:49.148438pt;}
.h16{height:50.288438pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h6{height:60.288750pt;}
.h2{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.032000pt;}
.hc{height:140.160000pt;}
.h14{height:444.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:64.960000pt;}
.w5{width:135.066667pt;}
.wf{width:145.786667pt;}
.wd{width:175.546667pt;}
.w8{width:198.626667pt;}
.wb{width:236.986667pt;}
.w10{width:244.826667pt;}
.we{width:256.546667pt;}
.wa{width:410.973333pt;}
.w9{width:451.266667pt;}
.wc{width:472.413333pt;}
.w6{width:514.813333pt;}
.w3{width:584.933333pt;}
.w7{width:649.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.x11{left:11.200000pt;}
.xb{left:21.952000pt;}
.x1{left:71.999988pt;}
.xe{left:73.786667pt;}
.x4{left:87.226667pt;}
.x1a{left:96.031988pt;}
.x1b{left:120.031988pt;}
.xc{left:150.106667pt;}
.xf{left:191.266667pt;}
.x5{left:207.066667pt;}
.x19{left:227.066655pt;}
.x8{left:241.986667pt;}
.x10{left:270.626667pt;}
.xd{left:273.506667pt;}
.x6{left:295.106667pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x13{left:327.586655pt;}
.x15{left:329.826667pt;}
.x9{left:390.666667pt;}
.x16{left:476.413333pt;}
.x12{left:484.253333pt;}
.x14{left:545.693333pt;}
.x18{left:591.013322pt;}
.x17{left:601.253322pt;}
.x3{left:656.933333pt;}
}




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