
    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_c90c810f125ea0e9143509a5.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_8c238ba2744afdd6500a68c5.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_3856fd570e93d8f2dd1099fa.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_117903e72f4a2ca98259e932.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_9555f3d3271594c8ed0ca7be.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b87444467a102aee52b375a9.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_d74b4ace65817fba3430d716.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_3b50476ba3d6247348067495.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_6de79fcf2af83c5a2650a42a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_cf28b143de6ebf0060642ffe.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5a0ad8fe431550242c8ced77.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.978027;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_6549c0401bc6f385c6a02c3e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.978027;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_c0d4aa6e8c8497c95f731c0e.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_946ee60817bfb280174f768e.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_c446e6d540f9e7c68ff2e993.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_903a7d09e3756017dad7bc33.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_fc12305420148e20f10dc5c4.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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:ff14;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_df46af62196c598fdb82d1f1.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.682617;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:ff16;src:url('chunks/assets/font_c2214531bcc426893599488a.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.241699;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:ff17;src:url('chunks/assets/font_04270006fc3d52be6a56a0c0.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.241699;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);}
.v9{vertical-align:-69.840000px;}
.v2{vertical-align:-15.120000px;}
.v4{vertical-align:-12.240000px;}
.v6{vertical-align:-10.800000px;}
.v7{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:7.200000px;}
.v5{vertical-align:12.240000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:46.080000px;}
.ls17{letter-spacing:-3.546000px;}
.lse{letter-spacing:-1.650000px;}
.ls1b{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.298200px;}
.ls2e{letter-spacing:-0.259800px;}
.ls9{letter-spacing:-0.127200px;}
.ls18{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.018000px;}
.ls7{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.036000px;}
.ls11{letter-spacing:0.087600px;}
.ls1{letter-spacing:0.132600px;}
.ls14{letter-spacing:0.144000px;}
.ls2d{letter-spacing:0.153600px;}
.ls6{letter-spacing:0.174240px;}
.ls12{letter-spacing:0.180000px;}
.ls20{letter-spacing:0.238320px;}
.ls19{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.298800px;}
.lsc{letter-spacing:0.330000px;}
.ls5{letter-spacing:0.360000px;}
.ls21{letter-spacing:0.399600px;}
.lsf{letter-spacing:0.421800px;}
.lsb{letter-spacing:0.431400px;}
.ls4{letter-spacing:0.447840px;}
.ls3{letter-spacing:0.786240px;}
.lsd{letter-spacing:0.810000px;}
.ls16{letter-spacing:0.900000px;}
.ls26{letter-spacing:1.074240px;}
.ls29{letter-spacing:1.404720px;}
.ls2a{letter-spacing:1.774800px;}
.ls2b{letter-spacing:2.329200px;}
.ls22{letter-spacing:2.460960px;}
.ls24{letter-spacing:3.180960px;}
.ls25{letter-spacing:4.062240px;}
.ls1d{letter-spacing:6.728400px;}
.ls1f{letter-spacing:8.168400px;}
.ls23{letter-spacing:8.888400px;}
.ls28{letter-spacing:16.140960px;}
.ls1c{letter-spacing:17.022240px;}
.ls1e{letter-spacing:17.742240px;}
.ls2c{letter-spacing:46.026720px;}
.ls15{letter-spacing:55.386720px;}
.ls13{letter-spacing:64.026720px;}
.ls27{letter-spacing:893.160000px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws18{word-spacing:-46.800720px;}
.ws17{word-spacing:-46.680720px;}
.ws16{word-spacing:-46.080720px;}
.ws15{word-spacing:-45.960720px;}
.ws19{word-spacing:-43.344240px;}
.ws1a{word-spacing:-43.224720px;}
.ws1b{word-spacing:-42.480720px;}
.ws14{word-spacing:-42.125760px;}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.wsa{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.238800px;}
.ws11{word-spacing:-15.199800px;}
.ws1c{word-spacing:-15.093600px;}
.wsb{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.833200px;}
.ws1d{word-spacing:-14.680200px;}
.wsc{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.479800px;}
.ws7{word-spacing:-14.315760px;}
.ws5{word-spacing:-13.937160px;}
.ws6{word-spacing:-13.835760px;}
.wsd{word-spacing:-13.505760px;}
.ws1{word-spacing:-12.204000px;}
.ws0{word-spacing:-12.186000px;}
.ws8{word-spacing:-11.855760px;}
.ws4{word-spacing:-8.786880px;}
.ws9{word-spacing:-8.136000px;}
.wse{word-spacing:0.000000px;}
._17{margin-left:-10.036080px;}
._10{margin-left:-7.746960px;}
._3{margin-left:-5.557680px;}
._4{margin-left:-4.357920px;}
._2{margin-left:-2.358720px;}
._0{margin-left:-1.188000px;}
._1{width:1.110000px;}
._5{width:2.226000px;}
._a{width:3.257760px;}
._b{width:4.515360px;}
._c{width:5.994240px;}
._19{width:7.562640px;}
._9{width:8.810160px;}
._15{width:10.476480px;}
._8{width:12.103920px;}
._d{width:13.625280px;}
._18{width:14.706240px;}
._f{width:16.063920px;}
._13{width:17.094960px;}
._e{width:18.989280px;}
._1a{width:21.346080px;}
._7{width:24.048960px;}
._12{width:25.244160px;}
._11{width:27.071280px;}
._6{width:29.846880px;}
._14{width:55.098720px;}
._16{width:87.839280px;}
.fc5{color:rgb(227,108,10);}
.fc6{color:rgb(47,84,150);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.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;}
.ya1{bottom:3.240000px;}
.y27{bottom:3.420000px;}
.y3{bottom:3.600000px;}
.y18{bottom:3.645000px;}
.y36{bottom:3.960000px;}
.y161{bottom:5.400000px;}
.y15f{bottom:5.580000px;}
.ye{bottom:9.540000px;}
.y34{bottom:10.620000px;}
.y1a{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y4{bottom:17.316000px;}
.y26{bottom:18.720000px;}
.y2{bottom:20.196000px;}
.ya0{bottom:20.520000px;}
.y35{bottom:22.350000px;}
.y17{bottom:23.985000px;}
.y33{bottom:25.230000px;}
.yb{bottom:30.240000px;}
.y5{bottom:31.320000px;}
.y25{bottom:36.180000px;}
.y9f{bottom:37.620000px;}
.y16{bottom:40.365000px;}
.y31{bottom:45.540000px;}
.ya{bottom:46.620000px;}
.y24{bottom:53.460000px;}
.y15{bottom:53.505000px;}
.y1{bottom:53.820000px;}
.y30{bottom:62.820000px;}
.y23{bottom:70.740000px;}
.y14{bottom:71.865000px;}
.y9{bottom:73.470000px;}
.y2f{bottom:80.100000px;}
.y22{bottom:88.560000px;}
.y13{bottom:90.045000px;}
.y8{bottom:93.090000px;}
.y2e{bottom:97.200000px;}
.y185{bottom:97.236000px;}
.yee{bottom:99.756000px;}
.y90{bottom:100.476000px;}
.y151{bottom:103.536000px;}
.y11c{bottom:103.896000px;}
.y52{bottom:105.516000px;}
.y21{bottom:106.020000px;}
.ybe{bottom:107.136000px;}
.y12{bottom:109.125000px;}
.y7{bottom:111.450000px;}
.y2d{bottom:114.480000px;}
.y184{bottom:114.516000px;}
.yed{bottom:117.036000px;}
.y8f{bottom:117.756000px;}
.y150{bottom:120.816000px;}
.y11b{bottom:122.256000px;}
.y51{bottom:122.796000px;}
.y20{bottom:123.300000px;}
.ybd{bottom:124.416000px;}
.yec{bottom:131.076000px;}
.y183{bottom:131.616000px;}
.y2c{bottom:131.760000px;}
.y11{bottom:134.865000px;}
.y8e{bottom:135.036000px;}
.y14f{bottom:138.996000px;}
.y50{bottom:140.076000px;}
.y11a{bottom:140.616000px;}
.y1f{bottom:140.760000px;}
.ybc{bottom:141.516000px;}
.y182{bottom:148.896000px;}
.y2b{bottom:149.040000px;}
.y8d{bottom:152.310000px;}
.y4f{bottom:157.170000px;}
.y14e{bottom:157.350000px;}
.y1e{bottom:158.220000px;}
.ybb{bottom:158.790000px;}
.y119{bottom:158.970000px;}
.y10{bottom:159.165000px;}
.y181{bottom:166.170000px;}
.y2a{bottom:166.320000px;}
.y8c{bottom:169.590000px;}
.y4e{bottom:174.450000px;}
.y14d{bottom:175.710000px;}
.yba{bottom:176.070000px;}
.y118{bottom:177.150000px;}
.y180{bottom:183.450000px;}
.y29{bottom:183.600000px;}
.y1d{bottom:185.760000px;}
.y8b{bottom:187.950000px;}
.y4d{bottom:191.730000px;}
.y10c{bottom:192.090000px;}
.y14c{bottom:192.990000px;}
.yb9{bottom:193.350000px;}
.y117{bottom:195.510000px;}
.y28{bottom:200.700000px;}
.y17f{bottom:200.730000px;}
.y1c{bottom:203.400000px;}
.y8a{bottom:205.050000px;}
.y4c{bottom:209.010000px;}
.y14b{bottom:210.270000px;}
.yb8{bottom:210.630000px;}
.y116{bottom:212.790000px;}
.y17e{bottom:218.010000px;}
.y89{bottom:223.410000px;}
.y4b{bottom:226.290000px;}
.yb7{bottom:227.910000px;}
.y14a{bottom:228.450000px;}
.y115{bottom:231.150000px;}
.y17d{bottom:235.110000px;}
.y88{bottom:241.770000px;}
.y4a{bottom:243.390000px;}
.yb6{bottom:245.010000px;}
.y149{bottom:246.810000px;}
.y114{bottom:249.510000px;}
.y17c{bottom:253.470000px;}
.y87{bottom:259.050000px;}
.y49{bottom:260.670000px;}
.yb5{bottom:262.290000px;}
.y148{bottom:264.090000px;}
.y113{bottom:267.690000px;}
.y17b{bottom:270.750000px;}
.y86{bottom:276.330000px;}
.yb4{bottom:277.050000px;}
.y48{bottom:277.950000px;}
.y147{bottom:281.370000px;}
.y112{bottom:286.050000px;}
.y17a{bottom:288.030000px;}
.y85{bottom:293.430000px;}
.yb3{bottom:295.050000px;}
.y47{bottom:295.230000px;}
.y146{bottom:299.730000px;}
.y111{bottom:300.090000px;}
.y179{bottom:306.390000px;}
.y84{bottom:311.790000px;}
.y46{bottom:312.510000px;}
.yb2{bottom:313.050000px;}
.y145{bottom:318.090000px;}
.y178{bottom:323.490000px;}
.y45{bottom:329.790000px;}
.y83{bottom:330.150000px;}
.yb1{bottom:331.050000px;}
.y144{bottom:336.270000px;}
.y177{bottom:341.895000px;}
.y44{bottom:346.935000px;}
.y82{bottom:347.475000px;}
.yb0{bottom:349.095000px;}
.y143{bottom:353.595000px;}
.y176{bottom:359.175000px;}
.y43{bottom:364.215000px;}
.y81{bottom:364.755000px;}
.yaf{bottom:367.095000px;}
.y142{bottom:368.355000px;}
.y175{bottom:376.455000px;}
.y42{bottom:381.495000px;}
.y80{bottom:382.035000px;}
.yae{bottom:385.095000px;}
.yeb{bottom:386.355000px;}
.y174{bottom:393.735000px;}
.y41{bottom:398.775000px;}
.y7f{bottom:399.135000px;}
.yad{bottom:403.095000px;}
.yea{bottom:403.635000px;}
.y141{bottom:404.355000px;}
.y173{bottom:411.015000px;}
.y40{bottom:416.055000px;}
.y7e{bottom:417.495000px;}
.ye9{bottom:420.915000px;}
.yac{bottom:421.095000px;}
.y140{bottom:422.355000px;}
.y172{bottom:428.115000px;}
.y3f{bottom:433.335000px;}
.y7d{bottom:434.775000px;}
.yab{bottom:439.095000px;}
.ye8{bottom:439.275000px;}
.y13f{bottom:440.355000px;}
.y171{bottom:445.395000px;}
.y3e{bottom:450.435000px;}
.y7c{bottom:453.135000px;}
.ye7{bottom:457.635000px;}
.yaa{bottom:460.335000px;}
.y13e{bottom:461.595000px;}
.y170{bottom:462.675000px;}
.y3d{bottom:467.715000px;}
.y7b{bottom:471.495000px;}
.ye6{bottom:476.175000px;}
.ya9{bottom:477.615000px;}
.y13d{bottom:478.875000px;}
.y16f{bottom:479.955000px;}
.y3c{bottom:484.995000px;}
.y7a{bottom:488.595000px;}
.ya8{bottom:492.375000px;}
.ye5{bottom:494.535000px;}
.y13c{bottom:496.155000px;}
.y16e{bottom:497.235000px;}
.y3b{bottom:502.275000px;}
.y79{bottom:505.875000px;}
.ye4{bottom:512.895000px;}
.y13b{bottom:513.435000px;}
.y16d{bottom:514.335000px;}
.y3a{bottom:519.555000px;}
.y78{bottom:523.155000px;}
.ya7{bottom:527.655000px;}
.y13a{bottom:530.535000px;}
.y16c{bottom:531.615000px;}
.y39{bottom:536.835000px;}
.y77{bottom:540.435000px;}
.y139{bottom:545.295000px;}
.ya6{bottom:545.655000px;}
.ye3{bottom:547.815000px;}
.y16b{bottom:548.895000px;}
.y10b{bottom:549.075000px;}
.y38{bottom:553.935000px;}
.y76{bottom:558.795000px;}
.ya5{bottom:563.655000px;}
.ye2{bottom:564.915000px;}
.y16a{bottom:566.175000px;}
.y10a{bottom:567.435000px;}
.y37{bottom:571.935000px;}
.y75{bottom:577.155000px;}
.y138{bottom:580.575000px;}
.ya4{bottom:581.655000px;}
.ye1{bottom:582.195000px;}
.y169{bottom:583.455000px;}
.y109{bottom:585.795000px;}
.y32{bottom:586.335000px;}
.y74{bottom:595.335000px;}
.y137{bottom:598.575000px;}
.ye0{bottom:599.475000px;}
.ya3{bottom:599.655000px;}
.y168{bottom:600.735000px;}
.y108{bottom:604.005000px;}
.y73{bottom:613.725000px;}
.y167{bottom:615.525000px;}
.y136{bottom:616.605000px;}
.ydf{bottom:616.785000px;}
.ya2{bottom:617.685000px;}
.y107{bottom:621.285000px;}
.y1b{bottom:622.905000px;}
.y72{bottom:631.005000px;}
.y135{bottom:634.605000px;}
.yde{bottom:635.325000px;}
.y9e{bottom:635.685000px;}
.y106{bottom:639.645000px;}
.y71{bottom:648.285000px;}
.y134{bottom:652.605000px;}
.ydd{bottom:653.685000px;}
.y166{bottom:656.025000px;}
.y105{bottom:656.925000px;}
.y70{bottom:665.565000px;}
.ydc{bottom:672.045000px;}
.y104{bottom:674.205000px;}
.y165{bottom:676.185000px;}
.y6f{bottom:683.745000px;}
.ydb{bottom:689.325000px;}
.y133{bottom:691.125000px;}
.y9d{bottom:691.305000px;}
.y103{bottom:692.385000px;}
.y164{bottom:696.525000px;}
.y110{bottom:697.965000px;}
.y6e{bottom:702.105000px;}
.yd9{bottom:707.685000px;}
.y132{bottom:708.405000px;}
.y9c{bottom:708.585000px;}
.yda{bottom:710.385000px;}
.y102{bottom:710.745000px;}
.y10f{bottom:715.245000px;}
.y163{bottom:716.685000px;}
.y6d{bottom:720.465000px;}
.y131{bottom:723.165000px;}
.y9b{bottom:725.865000px;}
.yd8{bottom:726.225000px;}
.y101{bottom:729.105000px;}
.y10e{bottom:732.345000px;}
.y162{bottom:737.025000px;}
.y6c{bottom:738.825000px;}
.y130{bottom:741.165000px;}
.y9a{bottom:743.145000px;}
.yd6{bottom:744.585000px;}
.y10d{bottom:746.385000px;}
.yd7{bottom:747.285000px;}
.y100{bottom:747.465000px;}
.y6b{bottom:757.185000px;}
.y12f{bottom:759.165000px;}
.y99{bottom:760.425000px;}
.yd5{bottom:762.945000px;}
.yff{bottom:765.825000px;}
.y6a{bottom:774.465000px;}
.y98{bottom:777.525000px;}
.y12e{bottom:780.405000px;}
.yd4{bottom:781.305000px;}
.yfe{bottom:784.005000px;}
.y69{bottom:791.565000px;}
.y97{bottom:794.805000px;}
.y12d{bottom:797.685000px;}
.yd3{bottom:798.585000px;}
.yfd{bottom:801.285000px;}
.y68{bottom:809.925000px;}
.y96{bottom:812.085000px;}
.y12c{bottom:812.445000px;}
.yd1{bottom:816.585000px;}
.y160{bottom:818.025000px;}
.yd2{bottom:818.925000px;}
.yfc{bottom:819.645000px;}
.y67{bottom:827.205000px;}
.y95{bottom:829.365000px;}
.yd0{bottom:830.265000px;}
.y12b{bottom:830.445000px;}
.yfb{bottom:836.925000px;}
.y19{bottom:837.645000px;}
.y15e{bottom:838.185000px;}
.y66{bottom:844.485000px;}
.y94{bottom:846.645000px;}
.y12a{bottom:848.445000px;}
.yfa{bottom:854.205000px;}
.ycf{bottom:859.605000px;}
.y65{bottom:861.765000px;}
.y93{bottom:863.925000px;}
.y129{bottom:866.445000px;}
.yf{bottom:867.165000px;}
.yf9{bottom:872.610000px;}
.yce{bottom:876.750000px;}
.y64{bottom:878.910000px;}
.y92{bottom:881.070000px;}
.y128{bottom:884.490000px;}
.yf8{bottom:890.790000px;}
.ycd{bottom:894.030000px;}
.y15d{bottom:896.190000px;}
.y63{bottom:897.270000px;}
.y91{bottom:898.350000px;}
.y127{bottom:902.490000px;}
.yf7{bottom:909.150000px;}
.ycc{bottom:911.310000px;}
.y15c{bottom:913.470000px;}
.y62{bottom:915.630000px;}
.y126{bottom:923.730000px;}
.yf6{bottom:927.510000px;}
.ycb{bottom:928.590000px;}
.y15b{bottom:930.750000px;}
.y61{bottom:932.910000px;}
.y125{bottom:940.830000px;}
.yf5{bottom:944.790000px;}
.yca{bottom:945.870000px;}
.y15a{bottom:948.030000px;}
.y60{bottom:950.190000px;}
.y124{bottom:955.590000px;}
.yc9{bottom:963.150000px;}
.y159{bottom:965.310000px;}
.y5f{bottom:967.470000px;}
.y123{bottom:973.590000px;}
.yc8{bottom:980.250000px;}
.y158{bottom:982.410000px;}
.y5e{bottom:984.570000px;}
.y122{bottom:991.590000px;}
.yc7{bottom:997.530000px;}
.y157{bottom:999.690000px;}
.y5d{bottom:1001.850000px;}
.y121{bottom:1009.590000px;}
.yc6{bottom:1014.810000px;}
.yf4{bottom:1015.890000px;}
.y156{bottom:1016.970000px;}
.y5c{bottom:1019.130000px;}
.y120{bottom:1027.590000px;}
.yc5{bottom:1033.170000px;}
.y155{bottom:1034.250000px;}
.y5b{bottom:1036.410000px;}
.yd{bottom:1041.450000px;}
.y11f{bottom:1045.590000px;}
.yc4{bottom:1050.450000px;}
.y154{bottom:1051.530000px;}
.y5a{bottom:1053.690000px;}
.y11e{bottom:1063.590000px;}
.y6{bottom:1066.830000px;}
.yc3{bottom:1067.730000px;}
.y153{bottom:1068.810000px;}
.y59{bottom:1070.790000px;}
.yf3{bottom:1084.830000px;}
.yc2{bottom:1085.910000px;}
.y58{bottom:1088.070000px;}
.yf2{bottom:1102.110000px;}
.yc1{bottom:1103.190000px;}
.y57{bottom:1105.350000px;}
.yf1{bottom:1119.390000px;}
.y152{bottom:1120.470000px;}
.yc0{bottom:1121.550000px;}
.y56{bottom:1122.630000px;}
.yf0{bottom:1137.780000px;}
.ybf{bottom:1138.860000px;}
.y55{bottom:1139.940000px;}
.yef{bottom:1156.140000px;}
.y54{bottom:1157.220000px;}
.y11d{bottom:1173.240000px;}
.y53{bottom:1174.320000px;}
.h26{height:17.100000px;}
.h27{height:17.136000px;}
.h20{height:17.280000px;}
.h21{height:17.316000px;}
.h28{height:19.440000px;}
.hb{height:25.020000px;}
.h11{height:28.968750px;}
.h12{height:29.520000px;}
.h2{height:32.976000px;}
.h22{height:34.560000px;}
.h8{height:36.180000px;}
.h1c{height:36.576000px;}
.h19{height:38.818125px;}
.h1b{height:41.726953px;}
.h1a{height:42.164648px;}
.h1e{height:43.506914px;}
.hd{height:44.002969px;}
.ha{height:44.820000px;}
.h18{height:45.549492px;}
.h17{height:45.770625px;}
.h15{height:47.980898px;}
.h1d{height:48.088125px;}
.h1f{height:51.660000px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:56.574492px;}
.h24{height:57.571523px;}
.hf{height:59.439023px;}
.h10{height:61.189805px;}
.he{height:63.180000px;}
.h5{height:67.824844px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h25{height:102.931523px;}
.h23{height:103.651523px;}
.h7{height:121.536000px;}
.hc{height:174.270000px;}
.h14{height:214.740000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w1e{width:80.640000px;}
.wc{width:83.916000px;}
.w1c{width:84.816000px;}
.wb{width:87.300000px;}
.wf{width:112.500000px;}
.wd{width:112.860000px;}
.we{width:112.896000px;}
.w19{width:129.780000px;}
.w1f{width:136.656000px;}
.w5{width:151.950000px;}
.w18{width:160.410000px;}
.w13{width:161.310000px;}
.w1a{width:164.370000px;}
.w22{width:184.530000px;}
.w21{width:190.290000px;}
.w16{width:192.990000px;}
.w1b{width:196.590000px;}
.w1d{width:200.370000px;}
.wa{width:216.615000px;}
.w8{width:223.455000px;}
.w15{width:249.870000px;}
.w14{width:285.375000px;}
.w10{width:364.395000px;}
.w11{width:364.575000px;}
.w20{width:401.295000px;}
.w17{width:438.045000px;}
.w9{width:507.675000px;}
.w23{width:546.045000px;}
.w12{width:567.645000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.xb{left:9.756000px;}
.x13{left:12.600000px;}
.xd{left:21.456000px;}
.x2d{left:34.776000px;}
.x1{left:81.000000px;}
.x4{left:98.130000px;}
.x14{left:108.035987px;}
.x10{left:111.810000px;}
.x17{left:135.035987px;}
.x26{left:138.095987px;}
.x25{left:139.175987px;}
.x1d{left:150.329987px;}
.xc{left:160.410000px;}
.x15{left:162.029987px;}
.x16{left:189.029987px;}
.xf{left:191.190000px;}
.x35{left:195.869987px;}
.x11{left:215.175000px;}
.x3b{left:219.090000px;}
.xe{left:223.455000px;}
.x2f{left:228.809987px;}
.x5{left:232.950000px;}
.x36{left:246.810000px;}
.x2c{left:262.289987px;}
.x3a{left:266.969987px;}
.x8{left:272.235000px;}
.x18{left:299.055000px;}
.x12{left:304.455000px;}
.x6{left:331.995000px;}
.x32{left:334.334987px;}
.x7{left:351.255000px;}
.xa{left:365.475000px;}
.x30{left:367.815000px;}
.x1f{left:384.734987px;}
.x19{left:387.075000px;}
.x22{left:411.734987px;}
.x9{left:439.500000px;}
.x37{left:444.135000px;}
.x1e{left:446.835000px;}
.x1a{left:471.705000px;}
.x2a{left:473.504987px;}
.x23{left:475.304987px;}
.x20{left:481.784987px;}
.x33{left:520.485000px;}
.x38{left:529.665000px;}
.x21{left:532.364987px;}
.x24{left:543.164987px;}
.x1b{left:585.285000px;}
.x31{left:618.405000px;}
.x3c{left:621.105000px;}
.x2e{left:650.085000px;}
.x27{left:670.829987px;}
.x34{left:681.630000px;}
.x28{left:691.889987px;}
.x1c{left:698.910000px;}
.x29{left:723.389987px;}
.x2b{left:726.989987px;}
.x39{left:730.770000px;}
.x3{left:739.050000px;}
@media print{
.v9{vertical-align:-62.080000pt;}
.v2{vertical-align:-13.440000pt;}
.v4{vertical-align:-10.880000pt;}
.v6{vertical-align:-9.600000pt;}
.v7{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:6.400000pt;}
.v5{vertical-align:10.880000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:40.960000pt;}
.ls17{letter-spacing:-3.152000pt;}
.lse{letter-spacing:-1.466667pt;}
.ls1b{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.265067pt;}
.ls2e{letter-spacing:-0.230933pt;}
.ls9{letter-spacing:-0.113067pt;}
.ls18{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.016000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.032000pt;}
.ls11{letter-spacing:0.077867pt;}
.ls1{letter-spacing:0.117867pt;}
.ls14{letter-spacing:0.128000pt;}
.ls2d{letter-spacing:0.136533pt;}
.ls6{letter-spacing:0.154880pt;}
.ls12{letter-spacing:0.160000pt;}
.ls20{letter-spacing:0.211840pt;}
.ls19{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.265600pt;}
.lsc{letter-spacing:0.293333pt;}
.ls5{letter-spacing:0.320000pt;}
.ls21{letter-spacing:0.355200pt;}
.lsf{letter-spacing:0.374933pt;}
.lsb{letter-spacing:0.383467pt;}
.ls4{letter-spacing:0.398080pt;}
.ls3{letter-spacing:0.698880pt;}
.lsd{letter-spacing:0.720000pt;}
.ls16{letter-spacing:0.800000pt;}
.ls26{letter-spacing:0.954880pt;}
.ls29{letter-spacing:1.248640pt;}
.ls2a{letter-spacing:1.577600pt;}
.ls2b{letter-spacing:2.070400pt;}
.ls22{letter-spacing:2.187520pt;}
.ls24{letter-spacing:2.827520pt;}
.ls25{letter-spacing:3.610880pt;}
.ls1d{letter-spacing:5.980800pt;}
.ls1f{letter-spacing:7.260800pt;}
.ls23{letter-spacing:7.900800pt;}
.ls28{letter-spacing:14.347520pt;}
.ls1c{letter-spacing:15.130880pt;}
.ls1e{letter-spacing:15.770880pt;}
.ls2c{letter-spacing:40.912640pt;}
.ls15{letter-spacing:49.232640pt;}
.ls13{letter-spacing:56.912640pt;}
.ls27{letter-spacing:793.920000pt;}
.wsf{word-spacing:-53.120000pt;}
.ws18{word-spacing:-41.600640pt;}
.ws17{word-spacing:-41.493973pt;}
.ws16{word-spacing:-40.960640pt;}
.ws15{word-spacing:-40.853973pt;}
.ws19{word-spacing:-38.528213pt;}
.ws1a{word-spacing:-38.421973pt;}
.ws1b{word-spacing:-37.760640pt;}
.ws14{word-spacing:-37.445120pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.wsa{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.545600pt;}
.ws11{word-spacing:-13.510933pt;}
.ws1c{word-spacing:-13.416533pt;}
.wsb{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.185067pt;}
.ws1d{word-spacing:-13.049067pt;}
.wsc{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.870933pt;}
.ws7{word-spacing:-12.725120pt;}
.ws5{word-spacing:-12.388587pt;}
.ws6{word-spacing:-12.298453pt;}
.wsd{word-spacing:-12.005120pt;}
.ws1{word-spacing:-10.848000pt;}
.ws0{word-spacing:-10.832000pt;}
.ws8{word-spacing:-10.538453pt;}
.ws4{word-spacing:-7.810560pt;}
.ws9{word-spacing:-7.232000pt;}
.wse{word-spacing:0.000000pt;}
._17{margin-left:-8.920960pt;}
._10{margin-left:-6.886187pt;}
._3{margin-left:-4.940160pt;}
._4{margin-left:-3.873707pt;}
._2{margin-left:-2.096640pt;}
._0{margin-left:-1.056000pt;}
._1{width:0.986667pt;}
._5{width:1.978667pt;}
._a{width:2.895787pt;}
._b{width:4.013653pt;}
._c{width:5.328213pt;}
._19{width:6.722347pt;}
._9{width:7.831253pt;}
._15{width:9.312427pt;}
._8{width:10.759040pt;}
._d{width:12.111360pt;}
._18{width:13.072213pt;}
._f{width:14.279040pt;}
._13{width:15.195520pt;}
._e{width:16.879360pt;}
._1a{width:18.974293pt;}
._7{width:21.376853pt;}
._12{width:22.439253pt;}
._11{width:24.063360pt;}
._6{width:26.530560pt;}
._14{width:48.976640pt;}
._16{width:78.079360pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.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;}
.ya1{bottom:2.880000pt;}
.y27{bottom:3.040000pt;}
.y3{bottom:3.200000pt;}
.y18{bottom:3.240000pt;}
.y36{bottom:3.520000pt;}
.y161{bottom:4.800000pt;}
.y15f{bottom:4.960000pt;}
.ye{bottom:8.480000pt;}
.y34{bottom:9.440000pt;}
.y1a{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y4{bottom:15.392000pt;}
.y26{bottom:16.640000pt;}
.y2{bottom:17.952000pt;}
.ya0{bottom:18.240000pt;}
.y35{bottom:19.866667pt;}
.y17{bottom:21.320000pt;}
.y33{bottom:22.426667pt;}
.yb{bottom:26.880000pt;}
.y5{bottom:27.840000pt;}
.y25{bottom:32.160000pt;}
.y9f{bottom:33.440000pt;}
.y16{bottom:35.880000pt;}
.y31{bottom:40.480000pt;}
.ya{bottom:41.440000pt;}
.y24{bottom:47.520000pt;}
.y15{bottom:47.560000pt;}
.y1{bottom:47.840000pt;}
.y30{bottom:55.840000pt;}
.y23{bottom:62.880000pt;}
.y14{bottom:63.880000pt;}
.y9{bottom:65.306667pt;}
.y2f{bottom:71.200000pt;}
.y22{bottom:78.720000pt;}
.y13{bottom:80.040000pt;}
.y8{bottom:82.746667pt;}
.y2e{bottom:86.400000pt;}
.y185{bottom:86.432000pt;}
.yee{bottom:88.672000pt;}
.y90{bottom:89.312000pt;}
.y151{bottom:92.032000pt;}
.y11c{bottom:92.352000pt;}
.y52{bottom:93.792000pt;}
.y21{bottom:94.240000pt;}
.ybe{bottom:95.232000pt;}
.y12{bottom:97.000000pt;}
.y7{bottom:99.066667pt;}
.y2d{bottom:101.760000pt;}
.y184{bottom:101.792000pt;}
.yed{bottom:104.032000pt;}
.y8f{bottom:104.672000pt;}
.y150{bottom:107.392000pt;}
.y11b{bottom:108.672000pt;}
.y51{bottom:109.152000pt;}
.y20{bottom:109.600000pt;}
.ybd{bottom:110.592000pt;}
.yec{bottom:116.512000pt;}
.y183{bottom:116.992000pt;}
.y2c{bottom:117.120000pt;}
.y11{bottom:119.880000pt;}
.y8e{bottom:120.032000pt;}
.y14f{bottom:123.552000pt;}
.y50{bottom:124.512000pt;}
.y11a{bottom:124.992000pt;}
.y1f{bottom:125.120000pt;}
.ybc{bottom:125.792000pt;}
.y182{bottom:132.352000pt;}
.y2b{bottom:132.480000pt;}
.y8d{bottom:135.386667pt;}
.y4f{bottom:139.706667pt;}
.y14e{bottom:139.866667pt;}
.y1e{bottom:140.640000pt;}
.ybb{bottom:141.146667pt;}
.y119{bottom:141.306667pt;}
.y10{bottom:141.480000pt;}
.y181{bottom:147.706667pt;}
.y2a{bottom:147.840000pt;}
.y8c{bottom:150.746667pt;}
.y4e{bottom:155.066667pt;}
.y14d{bottom:156.186667pt;}
.yba{bottom:156.506667pt;}
.y118{bottom:157.466667pt;}
.y180{bottom:163.066667pt;}
.y29{bottom:163.200000pt;}
.y1d{bottom:165.120000pt;}
.y8b{bottom:167.066667pt;}
.y4d{bottom:170.426667pt;}
.y10c{bottom:170.746667pt;}
.y14c{bottom:171.546667pt;}
.yb9{bottom:171.866667pt;}
.y117{bottom:173.786667pt;}
.y28{bottom:178.400000pt;}
.y17f{bottom:178.426667pt;}
.y1c{bottom:180.800000pt;}
.y8a{bottom:182.266667pt;}
.y4c{bottom:185.786667pt;}
.y14b{bottom:186.906667pt;}
.yb8{bottom:187.226667pt;}
.y116{bottom:189.146667pt;}
.y17e{bottom:193.786667pt;}
.y89{bottom:198.586667pt;}
.y4b{bottom:201.146667pt;}
.yb7{bottom:202.586667pt;}
.y14a{bottom:203.066667pt;}
.y115{bottom:205.466667pt;}
.y17d{bottom:208.986667pt;}
.y88{bottom:214.906667pt;}
.y4a{bottom:216.346667pt;}
.yb6{bottom:217.786667pt;}
.y149{bottom:219.386667pt;}
.y114{bottom:221.786667pt;}
.y17c{bottom:225.306667pt;}
.y87{bottom:230.266667pt;}
.y49{bottom:231.706667pt;}
.yb5{bottom:233.146667pt;}
.y148{bottom:234.746667pt;}
.y113{bottom:237.946667pt;}
.y17b{bottom:240.666667pt;}
.y86{bottom:245.626667pt;}
.yb4{bottom:246.266667pt;}
.y48{bottom:247.066667pt;}
.y147{bottom:250.106667pt;}
.y112{bottom:254.266667pt;}
.y17a{bottom:256.026667pt;}
.y85{bottom:260.826667pt;}
.yb3{bottom:262.266667pt;}
.y47{bottom:262.426667pt;}
.y146{bottom:266.426667pt;}
.y111{bottom:266.746667pt;}
.y179{bottom:272.346667pt;}
.y84{bottom:277.146667pt;}
.y46{bottom:277.786667pt;}
.yb2{bottom:278.266667pt;}
.y145{bottom:282.746667pt;}
.y178{bottom:287.546667pt;}
.y45{bottom:293.146667pt;}
.y83{bottom:293.466667pt;}
.yb1{bottom:294.266667pt;}
.y144{bottom:298.906667pt;}
.y177{bottom:303.906667pt;}
.y44{bottom:308.386667pt;}
.y82{bottom:308.866667pt;}
.yb0{bottom:310.306667pt;}
.y143{bottom:314.306667pt;}
.y176{bottom:319.266667pt;}
.y43{bottom:323.746667pt;}
.y81{bottom:324.226667pt;}
.yaf{bottom:326.306667pt;}
.y142{bottom:327.426667pt;}
.y175{bottom:334.626667pt;}
.y42{bottom:339.106667pt;}
.y80{bottom:339.586667pt;}
.yae{bottom:342.306667pt;}
.yeb{bottom:343.426667pt;}
.y174{bottom:349.986667pt;}
.y41{bottom:354.466667pt;}
.y7f{bottom:354.786667pt;}
.yad{bottom:358.306667pt;}
.yea{bottom:358.786667pt;}
.y141{bottom:359.426667pt;}
.y173{bottom:365.346667pt;}
.y40{bottom:369.826667pt;}
.y7e{bottom:371.106667pt;}
.ye9{bottom:374.146667pt;}
.yac{bottom:374.306667pt;}
.y140{bottom:375.426667pt;}
.y172{bottom:380.546667pt;}
.y3f{bottom:385.186667pt;}
.y7d{bottom:386.466667pt;}
.yab{bottom:390.306667pt;}
.ye8{bottom:390.466667pt;}
.y13f{bottom:391.426667pt;}
.y171{bottom:395.906667pt;}
.y3e{bottom:400.386667pt;}
.y7c{bottom:402.786667pt;}
.ye7{bottom:406.786667pt;}
.yaa{bottom:409.186667pt;}
.y13e{bottom:410.306667pt;}
.y170{bottom:411.266667pt;}
.y3d{bottom:415.746667pt;}
.y7b{bottom:419.106667pt;}
.ye6{bottom:423.266667pt;}
.ya9{bottom:424.546667pt;}
.y13d{bottom:425.666667pt;}
.y16f{bottom:426.626667pt;}
.y3c{bottom:431.106667pt;}
.y7a{bottom:434.306667pt;}
.ya8{bottom:437.666667pt;}
.ye5{bottom:439.586667pt;}
.y13c{bottom:441.026667pt;}
.y16e{bottom:441.986667pt;}
.y3b{bottom:446.466667pt;}
.y79{bottom:449.666667pt;}
.ye4{bottom:455.906667pt;}
.y13b{bottom:456.386667pt;}
.y16d{bottom:457.186667pt;}
.y3a{bottom:461.826667pt;}
.y78{bottom:465.026667pt;}
.ya7{bottom:469.026667pt;}
.y13a{bottom:471.586667pt;}
.y16c{bottom:472.546667pt;}
.y39{bottom:477.186667pt;}
.y77{bottom:480.386667pt;}
.y139{bottom:484.706667pt;}
.ya6{bottom:485.026667pt;}
.ye3{bottom:486.946667pt;}
.y16b{bottom:487.906667pt;}
.y10b{bottom:488.066667pt;}
.y38{bottom:492.386667pt;}
.y76{bottom:496.706667pt;}
.ya5{bottom:501.026667pt;}
.ye2{bottom:502.146667pt;}
.y16a{bottom:503.266667pt;}
.y10a{bottom:504.386667pt;}
.y37{bottom:508.386667pt;}
.y75{bottom:513.026667pt;}
.y138{bottom:516.066667pt;}
.ya4{bottom:517.026667pt;}
.ye1{bottom:517.506667pt;}
.y169{bottom:518.626667pt;}
.y109{bottom:520.706667pt;}
.y32{bottom:521.186667pt;}
.y74{bottom:529.186667pt;}
.y137{bottom:532.066667pt;}
.ye0{bottom:532.866667pt;}
.ya3{bottom:533.026667pt;}
.y168{bottom:533.986667pt;}
.y108{bottom:536.893333pt;}
.y73{bottom:545.533333pt;}
.y167{bottom:547.133333pt;}
.y136{bottom:548.093333pt;}
.ydf{bottom:548.253333pt;}
.ya2{bottom:549.053333pt;}
.y107{bottom:552.253333pt;}
.y1b{bottom:553.693333pt;}
.y72{bottom:560.893333pt;}
.y135{bottom:564.093333pt;}
.yde{bottom:564.733333pt;}
.y9e{bottom:565.053333pt;}
.y106{bottom:568.573333pt;}
.y71{bottom:576.253333pt;}
.y134{bottom:580.093333pt;}
.ydd{bottom:581.053333pt;}
.y166{bottom:583.133333pt;}
.y105{bottom:583.933333pt;}
.y70{bottom:591.613333pt;}
.ydc{bottom:597.373333pt;}
.y104{bottom:599.293333pt;}
.y165{bottom:601.053333pt;}
.y6f{bottom:607.773333pt;}
.ydb{bottom:612.733333pt;}
.y133{bottom:614.333333pt;}
.y9d{bottom:614.493333pt;}
.y103{bottom:615.453333pt;}
.y164{bottom:619.133333pt;}
.y110{bottom:620.413333pt;}
.y6e{bottom:624.093333pt;}
.yd9{bottom:629.053333pt;}
.y132{bottom:629.693333pt;}
.y9c{bottom:629.853333pt;}
.yda{bottom:631.453333pt;}
.y102{bottom:631.773333pt;}
.y10f{bottom:635.773333pt;}
.y163{bottom:637.053333pt;}
.y6d{bottom:640.413333pt;}
.y131{bottom:642.813333pt;}
.y9b{bottom:645.213333pt;}
.yd8{bottom:645.533333pt;}
.y101{bottom:648.093333pt;}
.y10e{bottom:650.973333pt;}
.y162{bottom:655.133333pt;}
.y6c{bottom:656.733333pt;}
.y130{bottom:658.813333pt;}
.y9a{bottom:660.573333pt;}
.yd6{bottom:661.853333pt;}
.y10d{bottom:663.453333pt;}
.yd7{bottom:664.253333pt;}
.y100{bottom:664.413333pt;}
.y6b{bottom:673.053333pt;}
.y12f{bottom:674.813333pt;}
.y99{bottom:675.933333pt;}
.yd5{bottom:678.173333pt;}
.yff{bottom:680.733333pt;}
.y6a{bottom:688.413333pt;}
.y98{bottom:691.133333pt;}
.y12e{bottom:693.693333pt;}
.yd4{bottom:694.493333pt;}
.yfe{bottom:696.893333pt;}
.y69{bottom:703.613333pt;}
.y97{bottom:706.493333pt;}
.y12d{bottom:709.053333pt;}
.yd3{bottom:709.853333pt;}
.yfd{bottom:712.253333pt;}
.y68{bottom:719.933333pt;}
.y96{bottom:721.853333pt;}
.y12c{bottom:722.173333pt;}
.yd1{bottom:725.853333pt;}
.y160{bottom:727.133333pt;}
.yd2{bottom:727.933333pt;}
.yfc{bottom:728.573333pt;}
.y67{bottom:735.293333pt;}
.y95{bottom:737.213333pt;}
.yd0{bottom:738.013333pt;}
.y12b{bottom:738.173333pt;}
.yfb{bottom:743.933333pt;}
.y19{bottom:744.573333pt;}
.y15e{bottom:745.053333pt;}
.y66{bottom:750.653333pt;}
.y94{bottom:752.573333pt;}
.y12a{bottom:754.173333pt;}
.yfa{bottom:759.293333pt;}
.ycf{bottom:764.093333pt;}
.y65{bottom:766.013333pt;}
.y93{bottom:767.933333pt;}
.y129{bottom:770.173333pt;}
.yf{bottom:770.813333pt;}
.yf9{bottom:775.653333pt;}
.yce{bottom:779.333333pt;}
.y64{bottom:781.253333pt;}
.y92{bottom:783.173333pt;}
.y128{bottom:786.213333pt;}
.yf8{bottom:791.813333pt;}
.ycd{bottom:794.693333pt;}
.y15d{bottom:796.613333pt;}
.y63{bottom:797.573333pt;}
.y91{bottom:798.533333pt;}
.y127{bottom:802.213333pt;}
.yf7{bottom:808.133333pt;}
.ycc{bottom:810.053333pt;}
.y15c{bottom:811.973333pt;}
.y62{bottom:813.893333pt;}
.y126{bottom:821.093333pt;}
.yf6{bottom:824.453333pt;}
.ycb{bottom:825.413333pt;}
.y15b{bottom:827.333333pt;}
.y61{bottom:829.253333pt;}
.y125{bottom:836.293333pt;}
.yf5{bottom:839.813333pt;}
.yca{bottom:840.773333pt;}
.y15a{bottom:842.693333pt;}
.y60{bottom:844.613333pt;}
.y124{bottom:849.413333pt;}
.yc9{bottom:856.133333pt;}
.y159{bottom:858.053333pt;}
.y5f{bottom:859.973333pt;}
.y123{bottom:865.413333pt;}
.yc8{bottom:871.333333pt;}
.y158{bottom:873.253333pt;}
.y5e{bottom:875.173333pt;}
.y122{bottom:881.413333pt;}
.yc7{bottom:886.693333pt;}
.y157{bottom:888.613333pt;}
.y5d{bottom:890.533333pt;}
.y121{bottom:897.413333pt;}
.yc6{bottom:902.053333pt;}
.yf4{bottom:903.013333pt;}
.y156{bottom:903.973333pt;}
.y5c{bottom:905.893333pt;}
.y120{bottom:913.413333pt;}
.yc5{bottom:918.373333pt;}
.y155{bottom:919.333333pt;}
.y5b{bottom:921.253333pt;}
.yd{bottom:925.733333pt;}
.y11f{bottom:929.413333pt;}
.yc4{bottom:933.733333pt;}
.y154{bottom:934.693333pt;}
.y5a{bottom:936.613333pt;}
.y11e{bottom:945.413333pt;}
.y6{bottom:948.293333pt;}
.yc3{bottom:949.093333pt;}
.y153{bottom:950.053333pt;}
.y59{bottom:951.813333pt;}
.yf3{bottom:964.293333pt;}
.yc2{bottom:965.253333pt;}
.y58{bottom:967.173333pt;}
.yf2{bottom:979.653333pt;}
.yc1{bottom:980.613333pt;}
.y57{bottom:982.533333pt;}
.yf1{bottom:995.013333pt;}
.y152{bottom:995.973333pt;}
.yc0{bottom:996.933333pt;}
.y56{bottom:997.893333pt;}
.yf0{bottom:1011.360000pt;}
.ybf{bottom:1012.320000pt;}
.y55{bottom:1013.280000pt;}
.yef{bottom:1027.680000pt;}
.y54{bottom:1028.640000pt;}
.y11d{bottom:1042.880000pt;}
.y53{bottom:1043.840000pt;}
.h26{height:15.200000pt;}
.h27{height:15.232000pt;}
.h20{height:15.360000pt;}
.h21{height:15.392000pt;}
.h28{height:17.280000pt;}
.hb{height:22.240000pt;}
.h11{height:25.750000pt;}
.h12{height:26.240000pt;}
.h2{height:29.312000pt;}
.h22{height:30.720000pt;}
.h8{height:32.160000pt;}
.h1c{height:32.512000pt;}
.h19{height:34.505000pt;}
.h1b{height:37.090625pt;}
.h1a{height:37.479688pt;}
.h1e{height:38.672812pt;}
.hd{height:39.113750pt;}
.ha{height:39.840000pt;}
.h18{height:40.488438pt;}
.h17{height:40.685000pt;}
.h15{height:42.649687pt;}
.h1d{height:42.745000pt;}
.h1f{height:45.920000pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:50.288438pt;}
.h24{height:51.174688pt;}
.hf{height:52.834688pt;}
.h10{height:54.390938pt;}
.he{height:56.160000pt;}
.h5{height:60.288750pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h25{height:91.494688pt;}
.h23{height:92.134688pt;}
.h7{height:108.032000pt;}
.hc{height:154.906667pt;}
.h14{height:190.880000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w1e{width:71.680000pt;}
.wc{width:74.592000pt;}
.w1c{width:75.392000pt;}
.wb{width:77.600000pt;}
.wf{width:100.000000pt;}
.wd{width:100.320000pt;}
.we{width:100.352000pt;}
.w19{width:115.360000pt;}
.w1f{width:121.472000pt;}
.w5{width:135.066667pt;}
.w18{width:142.586667pt;}
.w13{width:143.386667pt;}
.w1a{width:146.106667pt;}
.w22{width:164.026667pt;}
.w21{width:169.146667pt;}
.w16{width:171.546667pt;}
.w1b{width:174.746667pt;}
.w1d{width:178.106667pt;}
.wa{width:192.546667pt;}
.w8{width:198.626667pt;}
.w15{width:222.106667pt;}
.w14{width:253.666667pt;}
.w10{width:323.906667pt;}
.w11{width:324.066667pt;}
.w20{width:356.706667pt;}
.w17{width:389.373333pt;}
.w9{width:451.266667pt;}
.w23{width:485.373333pt;}
.w12{width:504.573333pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.xb{left:8.672000pt;}
.x13{left:11.200000pt;}
.xd{left:19.072000pt;}
.x2d{left:30.912000pt;}
.x1{left:72.000000pt;}
.x4{left:87.226667pt;}
.x14{left:96.031988pt;}
.x10{left:99.386667pt;}
.x17{left:120.031988pt;}
.x26{left:122.751988pt;}
.x25{left:123.711988pt;}
.x1d{left:133.626655pt;}
.xc{left:142.586667pt;}
.x15{left:144.026655pt;}
.x16{left:168.026655pt;}
.xf{left:169.946667pt;}
.x35{left:174.106655pt;}
.x11{left:191.266667pt;}
.x3b{left:194.746667pt;}
.xe{left:198.626667pt;}
.x2f{left:203.386655pt;}
.x5{left:207.066667pt;}
.x36{left:219.386667pt;}
.x2c{left:233.146655pt;}
.x3a{left:237.306655pt;}
.x8{left:241.986667pt;}
.x18{left:265.826667pt;}
.x12{left:270.626667pt;}
.x6{left:295.106667pt;}
.x32{left:297.186655pt;}
.x7{left:312.226667pt;}
.xa{left:324.866667pt;}
.x30{left:326.946667pt;}
.x1f{left:341.986655pt;}
.x19{left:344.066667pt;}
.x22{left:365.986655pt;}
.x9{left:390.666667pt;}
.x37{left:394.786667pt;}
.x1e{left:397.186667pt;}
.x1a{left:419.293333pt;}
.x2a{left:420.893322pt;}
.x23{left:422.493322pt;}
.x20{left:428.253322pt;}
.x33{left:462.653333pt;}
.x38{left:470.813333pt;}
.x21{left:473.213322pt;}
.x24{left:482.813322pt;}
.x1b{left:520.253333pt;}
.x31{left:549.693333pt;}
.x3c{left:552.093333pt;}
.x2e{left:577.853333pt;}
.x27{left:596.293322pt;}
.x34{left:605.893333pt;}
.x28{left:615.013322pt;}
.x1c{left:621.253333pt;}
.x29{left:643.013322pt;}
.x2b{left:646.213322pt;}
.x39{left:649.573333pt;}
.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; }
  