
    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_b2f3aab8d6ba81d45b2f9cb7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_175a7f94cdcb355d652b0c63.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_7077363194544f88a62ea0f4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.898438;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_96dfb8675916ed9a92c42d70.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.904297;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_f2358379ac63349a388e880d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.870605;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_c460a3fe82a6facb016ddcde.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_2b79502e7c81ff621ceb39fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_9edf4c041395b249852fd038.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.857910;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_f8b29951e9315edd69870107.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773000;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_45e9f34f6c6392d51df9dd90.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.076000;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_78f324bedf2389f207b392a9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.690918;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;}
.m7{transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249983,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.250048,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250048,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250048,0.250000,0.000000,0,0);}
.me{transform:matrix(0.000000,-0.250163,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250163,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250163,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.176719,-0.176834,0.176719,0.176834,0,0);-ms-transform:matrix(0.176719,-0.176834,0.176719,0.176834,0,0);-webkit-transform:matrix(0.176719,-0.176834,0.176719,0.176834,0,0);}
.m8{transform:matrix(0.176759,-0.176794,0.176759,0.176794,0,0);-ms-transform:matrix(0.176759,-0.176794,0.176759,0.176794,0,0);-webkit-transform:matrix(0.176759,-0.176794,0.176759,0.176794,0,0);}
.mc{transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249836,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249837,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249839,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249975,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249975,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);}
.m4{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250017,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250019,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250056,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250058,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-4.421520px;}
.v3{vertical-align:-2.204400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.941600px;}
.v5{vertical-align:7.911600px;}
.v4{vertical-align:67.227000px;}
.ls4{letter-spacing:-9.059040px;}
.ls5b{letter-spacing:-3.672000px;}
.ls18{letter-spacing:-2.232000px;}
.ls3d{letter-spacing:-2.115990px;}
.ls57{letter-spacing:-1.970050px;}
.ls5a{letter-spacing:-1.969749px;}
.ls3f{letter-spacing:-1.448140px;}
.ls2a{letter-spacing:-1.206783px;}
.ls38{letter-spacing:-1.199061px;}
.ls34{letter-spacing:-0.965426px;}
.ls61{letter-spacing:-0.889536px;}
.ls2c{letter-spacing:-0.804522px;}
.ls62{letter-spacing:-0.800582px;}
.ls40{letter-spacing:-0.724070px;}
.ls3b{letter-spacing:-0.705330px;}
.ls56{letter-spacing:-0.656683px;}
.ls32{letter-spacing:-0.617165px;}
.ls39{letter-spacing:-0.563165px;}
.ls27{letter-spacing:-0.540019px;}
.ls3e{letter-spacing:-0.493731px;}
.ls45{letter-spacing:-0.476615px;}
.ls4c{letter-spacing:-0.468228px;}
.ls29{letter-spacing:-0.462874px;}
.lsf{letter-spacing:-0.432000px;}
.ls35{letter-spacing:-0.424301px;}
.ls3c{letter-spacing:-0.423198px;}
.ls2d{letter-spacing:-0.402261px;}
.ls4a{letter-spacing:-0.392850px;}
.lsd{letter-spacing:-0.384480px;}
.ls44{letter-spacing:-0.357461px;}
.ls36{letter-spacing:-0.352665px;}
.ls4b{letter-spacing:-0.351171px;}
.ls5f{letter-spacing:-0.336960px;}
.ls12{letter-spacing:-0.324000px;}
.ls2b{letter-spacing:-0.321809px;}
.ls1b{letter-spacing:-0.319680px;}
.ls28{letter-spacing:-0.308582px;}
.ls21{letter-spacing:-0.288000px;}
.ls5d{letter-spacing:-0.287280px;}
.ls7{letter-spacing:-0.276480px;}
.ls30{letter-spacing:-0.241357px;}
.lsa{letter-spacing:-0.240480px;}
.ls8{letter-spacing:-0.239760px;}
.ls48{letter-spacing:-0.227853px;}
.ls55{letter-spacing:-0.218894px;}
.ls15{letter-spacing:-0.216000px;}
.ls10{letter-spacing:-0.192240px;}
.ls11{letter-spacing:-0.191520px;}
.ls47{letter-spacing:-0.178747px;}
.ls63{letter-spacing:-0.177907px;}
.ls4e{letter-spacing:-0.175644px;}
.ls31{letter-spacing:-0.154291px;}
.ls5{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.102240px;}
.ls50{letter-spacing:-0.084240px;}
.ls33{letter-spacing:-0.080452px;}
.ls3a{letter-spacing:-0.070533px;}
.ls6{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.012974px;}
.ls25{letter-spacing:0.017346px;}
.ls24{letter-spacing:0.017946px;}
.ls51{letter-spacing:0.032293px;}
.ls52{letter-spacing:0.040779px;}
.ls42{letter-spacing:0.074632px;}
.ls60{letter-spacing:0.088954px;}
.ls5e{letter-spacing:0.095760px;}
.ls14{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.120240px;}
.ls13{letter-spacing:0.131760px;}
.lse{letter-spacing:0.144000px;}
.ls22{letter-spacing:0.154291px;}
.ls3{letter-spacing:0.167760px;}
.ls4d{letter-spacing:0.175586px;}
.ls46{letter-spacing:0.178731px;}
.ls58{letter-spacing:0.192240px;}
.ls1c{letter-spacing:0.216000px;}
.ls54{letter-spacing:0.218894px;}
.ls2{letter-spacing:0.240480px;}
.ls2f{letter-spacing:0.241357px;}
.ls4f{letter-spacing:0.257184px;}
.ls43{letter-spacing:0.257352px;}
.ls1f{letter-spacing:0.259200px;}
.ls49{letter-spacing:0.261850px;}
.ls41{letter-spacing:0.261900px;}
.lsb{letter-spacing:0.288000px;}
.ls17{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.335520px;}
.ls37{letter-spacing:0.352665px;}
.ls26{letter-spacing:0.385728px;}
.ls2e{letter-spacing:0.402261px;}
.ls9{letter-spacing:0.479520px;}
.ls1a{letter-spacing:0.959040px;}
.ls64{letter-spacing:0.978490px;}
.ls5c{letter-spacing:1.008000px;}
.ls19{letter-spacing:1.646352px;}
.lsc{letter-spacing:2.448000px;}
.ls65{letter-spacing:3.132000px;}
.ls59{letter-spacing:18.504000px;}
.ls20{letter-spacing:47.664000px;}
.ls1e{letter-spacing:114.048000px;}
.ls1d{letter-spacing:378.520560px;}
.ls53{letter-spacing:1127.787074px;}
.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;}
}
.ws6{word-spacing:-66.413520px;}
.wsa4{word-spacing:-53.442720px;}
.ws38{word-spacing:-53.250480px;}
.ws2d{word-spacing:-53.058240px;}
.ws36{word-spacing:-46.972800px;}
.ws42{word-spacing:-44.115840px;}
.ws4{word-spacing:-39.888000px;}
.ws4b{word-spacing:-39.744000px;}
.ws3{word-spacing:-38.154240px;}
.ws33{word-spacing:-36.761040px;}
.ws9b{word-spacing:-34.536266px;}
.ws7{word-spacing:-33.546960px;}
.ws8{word-spacing:-33.426720px;}
.wsb3{word-spacing:-30.024000px;}
.ws83{word-spacing:-29.700000px;}
.ws2a{word-spacing:-26.621280px;}
.ws29{word-spacing:-26.429760px;}
.ws91{word-spacing:-24.735067px;}
.ws3c{word-spacing:-24.192000px;}
.ws3b{word-spacing:-24.084000px;}
.ws3d{word-spacing:-23.412960px;}
.wsa7{word-spacing:-23.334480px;}
.wsa6{word-spacing:-23.081760px;}
.ws94{word-spacing:-22.765018px;}
.ws7b{word-spacing:-20.886525px;}
.ws81{word-spacing:-20.822384px;}
.ws19{word-spacing:-20.304000px;}
.ws9d{word-spacing:-20.232000px;}
.wsac{word-spacing:-20.192467px;}
.ws1b{word-spacing:-20.160000px;}
.ws1a{word-spacing:-20.016000px;}
.wsae{word-spacing:-19.925606px;}
.ws90{word-spacing:-19.872000px;}
.ws18{word-spacing:-19.584000px;}
.wsad{word-spacing:-19.213978px;}
.ws55{word-spacing:-18.584458px;}
.ws7d{word-spacing:-18.463950px;}
.ws5e{word-spacing:-18.182197px;}
.ws82{word-spacing:-18.143316px;}
.ws60{word-spacing:-18.101745px;}
.ws7c{word-spacing:-17.809200px;}
.ws40{word-spacing:-17.784000px;}
.ws56{word-spacing:-17.779936px;}
.ws63{word-spacing:-17.619032px;}
.ws50{word-spacing:-17.589197px;}
.ws4c{word-spacing:-17.434906px;}
.ws53{word-spacing:-17.377675px;}
.ws4e{word-spacing:-17.126323px;}
.ws4f{word-spacing:-16.972032px;}
.ws4d{word-spacing:-16.894886px;}
.ws57{word-spacing:-16.817741px;}
.ws7a{word-spacing:-16.741097px;}
.ws62{word-spacing:-16.734058px;}
.ws80{word-spacing:-16.446510px;}
.ws9c{word-spacing:-16.344000px;}
.ws5d{word-spacing:-16.293123px;}
.ws78{word-spacing:-16.204905px;}
.ws79{word-spacing:-16.085752px;}
.ws5c{word-spacing:-15.940458px;}
.ws7e{word-spacing:-15.919753px;}
.ws7f{word-spacing:-15.802696px;}
.ws5b{word-spacing:-15.587793px;}
.ws61{word-spacing:-15.446727px;}
.ws59{word-spacing:-13.698854px;}
.ws5a{word-spacing:-13.274554px;}
.ws8a{word-spacing:-6.492960px;}
.wsab{word-spacing:-4.421520px;}
.wsa8{word-spacing:-4.037040px;}
.ws86{word-spacing:-3.780000px;}
.ws27{word-spacing:-3.744000px;}
.ws98{word-spacing:-3.268080px;}
.ws9a{word-spacing:-3.246480px;}
.wsaf{word-spacing:-3.024000px;}
.wsa9{word-spacing:-2.527200px;}
.ws16{word-spacing:-2.525040px;}
.ws8c{word-spacing:-2.442960px;}
.ws1e{word-spacing:-2.304000px;}
.ws2e{word-spacing:-2.160000px;}
.ws2f{word-spacing:-2.016000px;}
.wsa5{word-spacing:-1.922400px;}
.ws9e{word-spacing:-1.872000px;}
.ws17{word-spacing:-1.803600px;}
.ws8e{word-spacing:-1.684800px;}
.wsb2{word-spacing:-1.601165px;}
.ws28{word-spacing:-1.584000px;}
.ws47{word-spacing:-1.576800px;}
.ws3a{word-spacing:-1.537920px;}
.ws3e{word-spacing:-1.512000px;}
.ws41{word-spacing:-1.440000px;}
.ws2c{word-spacing:-1.436400px;}
.ws39{word-spacing:-1.153440px;}
.ws8b{word-spacing:-1.082160px;}
.wsaa{word-spacing:-1.010880px;}
.ws25{word-spacing:-1.008000px;}
.ws1d{word-spacing:-0.864000px;}
.wsa{word-spacing:-0.838800px;}
.ws6b{word-spacing:-0.804522px;}
.ws1f{word-spacing:-0.720000px;}
.ws2{word-spacing:-0.677376px;}
.ws11{word-spacing:-0.479520px;}
.ws35{word-spacing:-0.432000px;}
.ws71{word-spacing:-0.402261px;}
.ws64{word-spacing:-0.385728px;}
.ws1c{word-spacing:-0.384480px;}
.ws13{word-spacing:-0.360720px;}
.ws6f{word-spacing:-0.352665px;}
.wsd{word-spacing:-0.288000px;}
.ws8d{word-spacing:-0.252720px;}
.ws37{word-spacing:-0.239760px;}
.ws95{word-spacing:-0.218894px;}
.ws48{word-spacing:-0.216000px;}
.ws1{word-spacing:-0.201312px;}
.ws4a{word-spacing:-0.192240px;}
.ws9{word-spacing:-0.167760px;}
.ws20{word-spacing:-0.144000px;}
.ws34{word-spacing:-0.131760px;}
.ws85{word-spacing:-0.130925px;}
.ws88{word-spacing:-0.128592px;}
.ws15{word-spacing:-0.120240px;}
.ws31{word-spacing:-0.108000px;}
.wsa0{word-spacing:-0.095760px;}
.wsb{word-spacing:0.000000px;}
.ws72{word-spacing:0.070533px;}
.ws66{word-spacing:0.077146px;}
.ws3f{word-spacing:0.102240px;}
.ws23{word-spacing:0.144000px;}
.ws6d{word-spacing:0.154291px;}
.ws77{word-spacing:0.160904px;}
.ws87{word-spacing:0.175644px;}
.wsb1{word-spacing:0.177907px;}
.ws84{word-spacing:0.178747px;}
.ws49{word-spacing:0.192240px;}
.ws99{word-spacing:0.216000px;}
.ws96{word-spacing:0.218894px;}
.wsf{word-spacing:0.239760px;}
.ws14{word-spacing:0.240480px;}
.ws6c{word-spacing:0.241357px;}
.wse{word-spacing:0.276480px;}
.ws9f{word-spacing:0.287280px;}
.ws65{word-spacing:0.308582px;}
.ws69{word-spacing:0.321809px;}
.ws89{word-spacing:0.324000px;}
.ws26{word-spacing:0.384480px;}
.ws6a{word-spacing:0.402261px;}
.ws73{word-spacing:0.423198px;}
.ws24{word-spacing:0.432000px;}
.ws32{word-spacing:0.540000px;}
.ws97{word-spacing:0.576000px;}
.wsb0{word-spacing:0.800582px;}
.ws76{word-spacing:0.804522px;}
.ws6e{word-spacing:0.965426px;}
.ws21{word-spacing:1.152000px;}
.ws12{word-spacing:1.198800px;}
.ws70{word-spacing:1.199061px;}
.ws30{word-spacing:1.296000px;}
.ws2b{word-spacing:1.436400px;}
.wsa3{word-spacing:1.532160px;}
.wsc{word-spacing:1.872000px;}
.wsa2{word-spacing:1.915200px;}
.ws46{word-spacing:2.077920px;}
.ws74{word-spacing:2.115990px;}
.ws8f{word-spacing:2.394000px;}
.ws22{word-spacing:2.592000px;}
.ws45{word-spacing:2.717280px;}
.ws10{word-spacing:2.877120px;}
.wsa1{word-spacing:2.968560px;}
.ws5{word-spacing:3.188808px;}
.ws44{word-spacing:3.516480px;}
.ws52{word-spacing:3.668842px;}
.ws51{word-spacing:3.875544px;}
.ws43{word-spacing:4.155840px;}
.ws0{word-spacing:18.453600px;}
.ws67{word-spacing:21.628570px;}
.ws68{word-spacing:29.339290px;}
.ws5f{word-spacing:54.159607px;}
.ws75{word-spacing:68.867083px;}
.ws58{word-spacing:233.240160px;}
.ws93{word-spacing:660.665821px;}
.ws92{word-spacing:970.919738px;}
.ws54{word-spacing:1028.179812px;}
._19{margin-left:-518.598923px;}
._6{margin-left:-26.733240px;}
._a{margin-left:-13.898952px;}
._3{margin-left:-12.749760px;}
._b{margin-left:-10.993248px;}
._1e{margin-left:-9.400464px;}
._8{margin-left:-7.887816px;}
._d{margin-left:-6.454704px;}
._9{margin-left:-4.855680px;}
._7{margin-left:-3.377304px;}
._5{margin-left:-2.288160px;}
._1{margin-left:-1.040112px;}
._2{width:1.727928px;}
._4{width:3.168000px;}
._1c{width:4.860000px;}
._0{width:8.220240px;}
._1d{width:16.888392px;}
._13{width:19.276800px;}
._12{width:46.264320px;}
._1b{width:54.023652px;}
._10{width:103.417560px;}
._20{width:136.880352px;}
._c{width:178.752240px;}
._1a{width:195.088540px;}
._1f{width:242.843112px;}
._18{width:339.251012px;}
._11{width:368.141832px;}
._17{width:409.692884px;}
._16{width:493.684846px;}
._e{width:518.941200px;}
._f{width:543.130200px;}
._15{width:998.780744px;}
._14{width:1438.804564px;}
.fc20{color:rgb(165,165,165);}
.fc1f{color:rgb(157,195,230);}
.fc1e{color:rgb(40,128,194);}
.fc1d{color:rgb(46,45,77);}
.fcc{color:rgb(112,173,71);}
.fc15{color:rgb(202,134,120);}
.fcb{color:rgb(127,96,0);}
.fc8{color:transparent;}
.fca{color:rgb(114,192,44);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,170,220);}
.fc1{color:rgb(0,170,218);}
.fc9{color:rgb(191,191,191);}
.fc18{color:rgb(46,46,46);}
.fc7{color:rgb(0,0,0);}
.fc12{color:rgb(100,174,139);}
.fc14{color:rgb(223,83,87);}
.fc10{color:rgb(0,32,96);}
.fc4{color:rgb(92,92,92);}
.fc0{color:rgb(91,91,91);}
.fc6{color:rgb(255,20,9);}
.fcd{color:rgb(56,87,35);}
.fc16{color:rgb(107,164,44);}
.fce{color:rgb(0,176,80);}
.fcf{color:rgb(192,0,0);}
.fc13{color:rgb(13,141,192);}
.fc5{color:rgb(137,138,137);}
.fc1c{color:rgb(80,216,255);}
.fc17{color:rgb(232,144,56);}
.fc19{color:rgb(97,103,113);}
.fc11{color:rgb(0,112,192);}
.fc1a{color:rgb(114,196,171);}
.fc1b{color:rgb(255,114,107);}
.fsd{font-size:19.276800px;}
.fs10{font-size:40.777200px;}
.fs18{font-size:58.528504px;}
.fs19{font-size:58.548000px;}
.fs13{font-size:59.576858px;}
.fs14{font-size:59.582400px;}
.fsf{font-size:60.614400px;}
.fs1b{font-size:64.296000px;}
.fs1c{font-size:64.338000px;}
.fs16{font-size:65.462400px;}
.fs17{font-size:65.475000px;}
.fs11{font-size:70.533000px;}
.fs6{font-size:72.000000px;}
.fs1f{font-size:72.525600px;}
.fs1a{font-size:74.632200px;}
.fs15{font-size:75.951000px;}
.fsc{font-size:77.145600px;}
.fse{font-size:80.452200px;}
.fs12{font-size:80.457600px;}
.fs1d{font-size:84.240000px;}
.fs21{font-size:88.953600px;}
.fs7{font-size:95.760000px;}
.fsa{font-size:102.240000px;}
.fs8{font-size:108.000000px;}
.fs1e{font-size:109.447200px;}
.fs4{font-size:120.240000px;}
.fs20{font-size:131.316600px;}
.fs9{font-size:131.760000px;}
.fs2{font-size:138.240000px;}
.fs1{font-size:144.000000px;}
.fsb{font-size:159.840000px;}
.fs0{font-size:167.760000px;}
.fs5{font-size:192.240000px;}
.fs3{font-size:239.760000px;}
.y8a{bottom:-182.863500px;}
.y89{bottom:-99.656250px;}
.y85{bottom:-29.122950px;}
.y6d{bottom:-14.327250px;}
.y6c{bottom:-9.367950px;}
.y0{bottom:0.000000px;}
.ye3{bottom:7.208250px;}
.y48{bottom:7.854000px;}
.yec{bottom:8.408250px;}
.y10{bottom:8.448150px;}
.y64{bottom:8.452350px;}
.y65{bottom:8.454000px;}
.yee{bottom:8.815950px;}
.y23{bottom:9.605700px;}
.y55{bottom:9.856350px;}
.ycc{bottom:9.881250px;}
.ye1{bottom:10.091700px;}
.yed{bottom:10.092000px;}
.y2f{bottom:10.159950px;}
.yef{bottom:10.564800px;}
.yf1{bottom:10.741350px;}
.yeb{bottom:10.808100px;}
.y36{bottom:10.855200px;}
.y46{bottom:11.152650px;}
.y53{bottom:12.372000px;}
.yb{bottom:13.324020px;}
.ya5{bottom:13.578244px;}
.y94{bottom:13.802569px;}
.yd{bottom:15.012120px;}
.yd8{bottom:15.085650px;}
.yd6{bottom:15.086100px;}
.ya4{bottom:16.145007px;}
.y93{bottom:16.414716px;}
.y86{bottom:19.919700px;}
.ybe{bottom:26.209350px;}
.ye2{bottom:28.808100px;}
.ybf{bottom:29.611350px;}
.ycb{bottom:31.481250px;}
.y2e{bottom:31.759950px;}
.yea{bottom:32.408250px;}
.y88{bottom:33.144600px;}
.y49{bottom:33.972000px;}
.yf{bottom:33.972150px;}
.yd1{bottom:33.973200px;}
.y45{bottom:33.974400px;}
.y28{bottom:34.572000px;}
.yd3{bottom:36.310200px;}
.y7a{bottom:37.002000px;}
.y66{bottom:40.224000px;}
.ya2{bottom:40.746600px;}
.y91{bottom:41.451300px;}
.ydc{bottom:45.208950px;}
.ya{bottom:49.335900px;}
.y87{bottom:49.675950px;}
.yde{bottom:51.012000px;}
.yc{bottom:51.031140px;}
.y2d{bottom:53.359950px;}
.ybc{bottom:53.366280px;}
.yd2{bottom:56.300100px;}
.yc0{bottom:56.832000px;}
.ya3{bottom:60.535513px;}
.y92{bottom:61.590109px;}
.ya0{bottom:67.011450px;}
.ye0{bottom:67.336350px;}
.yd5{bottom:73.914000px;}
.ybb{bottom:78.575100px;}
.yb3{bottom:80.310750px;}
.ydd{bottom:83.412000px;}
.y47{bottom:84.883050px;}
.y8f{bottom:87.146700px;}
.yd7{bottom:88.198500px;}
.ya6{bottom:93.846150px;}
.y95{bottom:95.489100px;}
.yf5{bottom:95.819400px;}
.yae{bottom:96.768450px;}
.y9b{bottom:98.463000px;}
.y9f{bottom:99.411450px;}
.ydf{bottom:99.736350px;}
.y63{bottom:99.885450px;}
.yb2{bottom:112.710750px;}
.yda{bottom:113.005500px;}
.ya7{bottom:126.018276px;}
.y6{bottom:128.833350px;}
.y5d{bottom:132.382500px;}
.yba{bottom:134.492250px;}
.y4a{bottom:135.615900px;}
.y8c{bottom:140.322150px;}
.y96{bottom:144.599893px;}
.ydb{bottom:145.441500px;}
.ya1{bottom:146.163000px;}
.yf3{bottom:146.631000px;}
.y90{bottom:149.761500px;}
.y5c{bottom:153.982500px;}
.ya8{bottom:158.190402px;}
.y8b{bottom:164.568000px;}
.y5{bottom:167.533350px;}
.y5b{bottom:175.582500px;}
.y84{bottom:176.415300px;}
.y62{bottom:186.285450px;}
.ya9{bottom:190.362528px;}
.yb9{bottom:190.991850px;}
.y97{bottom:193.710686px;}
.y5a{bottom:197.182500px;}
.y83{bottom:200.661150px;}
.y4{bottom:204.973350px;}
.y2a{bottom:207.753480px;}
.y22{bottom:211.101270px;}
.y79{bottom:221.049600px;}
.yaa{bottom:222.534654px;}
.yd9{bottom:223.147500px;}
.y51{bottom:223.848600px;}
.y18{bottom:224.255850px;}
.y37{bottom:224.752950px;}
.y8d{bottom:228.488700px;}
.y8e{bottom:228.764250px;}
.y61{bottom:229.485450px;}
.y29{bottom:236.553300px;}
.y21{bottom:239.901090px;}
.y80{bottom:242.540250px;}
.y98{bottom:242.821480px;}
.y82{bottom:243.091350px;}
.y3{bottom:243.853350px;}
.y78{bottom:244.193400px;}
.yb8{bottom:248.322150px;}
.yab{bottom:254.706780px;}
.yf7{bottom:260.931600px;}
.y7f{bottom:263.755350px;}
.y81{bottom:264.306450px;}
.y17{bottom:267.455850px;}
.y60{bottom:272.685450px;}
.y4f{bottom:282.787680px;}
.yac{bottom:286.878906px;}
.yf6{bottom:287.739450px;}
.y38{bottom:290.340900px;}
.y99{bottom:291.932273px;}
.ye6{bottom:296.349000px;}
.y2{bottom:297.114270px;}
.yb0{bottom:303.776550px;}
.yf9{bottom:309.368550px;}
.y9d{bottom:309.947700px;}
.y101{bottom:310.562400px;}
.y16{bottom:310.655850px;}
.y3d{bottom:312.427650px;}
.y5f{bottom:315.885450px;}
.y1d{bottom:327.234210px;}
.y3a{bottom:329.749380px;}
.y100{bottom:332.162400px;}
.yf8{bottom:336.176400px;}
.y33{bottom:337.385130px;}
.ye5{bottom:339.549000px;}
.y20{bottom:340.473030px;}
.y1{bottom:342.493350px;}
.yca{bottom:342.656100px;}
.yb1{bottom:344.470350px;}
.yc5{bottom:345.952800px;}
.y31{bottom:347.031150px;}
.y9e{bottom:351.360750px;}
.y15{bottom:353.855850px;}
.y4e{bottom:354.995400px;}
.y1c{bottom:356.034030px;}
.y7e{bottom:356.054850px;}
.y39{bottom:358.549200px;}
.y5e{bottom:359.085450px;}
.y7d{bottom:359.636550px;}
.y32{bottom:366.184950px;}
.y1f{bottom:369.272850px;}
.y74{bottom:369.279750px;}
.yf4{bottom:370.600200px;}
.y77{bottom:373.412550px;}
.y73{bottom:376.718850px;}
.y7c{bottom:377.820900px;}
.yc7{bottom:379.248450px;}
.y30{bottom:379.431150px;}
.ye4{bottom:382.749000px;}
.y1b{bottom:384.833850px;}
.yaf{bottom:385.164300px;}
.yc9{bottom:390.456900px;}
.y4c{bottom:391.721730px;}
.y9c{bottom:392.773800px;}
.y75{bottom:393.525600px;}
.y14{bottom:397.055850px;}
.y76{bottom:397.658400px;}
.y1e{bottom:398.072670px;}
.y72{bottom:400.964550px;}
.y7b{bottom:403.444350px;}
.y3e{bottom:407.603400px;}
.ybd{bottom:408.008850px;}
.yad{bottom:417.655050px;}
.y4b{bottom:420.521550px;}
.ye8{bottom:421.228410px;}
.y9a{bottom:426.002250px;}
.yc6{bottom:426.719700px;}
.yc4{bottom:434.961150px;}
.y13{bottom:440.255850px;}
.yc8{bottom:440.895000px;}
.ye7{bottom:450.219750px;}
.y9{bottom:453.262320px;}
.y71{bottom:475.079700px;}
.y6b{bottom:483.343500px;}
.y12{bottom:483.455850px;}
.yff{bottom:491.039850px;}
.y54{bottom:492.127500px;}
.y3c{bottom:497.637000px;}
.y27{bottom:508.112730px;}
.y58{bottom:508.697550px;}
.y25{bottom:511.903830px;}
.y8{bottom:518.057460px;}
.y50{bottom:521.183550px;}
.y11{bottom:526.655850px;}
.yfe{bottom:529.919850px;}
.y6a{bottom:531.285900px;}
.y26{bottom:536.912550px;}
.y4d{bottom:539.947500px;}
.y24{bottom:540.703650px;}
.yb5{bottom:559.647000px;}
.y69{bottom:563.246100px;}
.y70{bottom:563.246250px;}
.yfd{bottom:568.799850px;}
.y2b{bottom:581.718150px;}
.y7{bottom:582.852600px;}
.y35{bottom:586.243050px;}
.yb4{bottom:592.047000px;}
.y68{bottom:593.553450px;}
.y6f{bottom:593.553600px;}
.yc2{bottom:593.857500px;}
.yc3{bottom:600.450600px;}
.yc1{bottom:600.450750px;}
.yfc{bottom:601.199850px;}
.yd0{bottom:601.333200px;}
.yf2{bottom:608.449200px;}
.yf0{bottom:611.505750px;}
.ycf{bottom:622.933200px;}
.y67{bottom:624.136350px;}
.y34{bottom:625.843200px;}
.y6e{bottom:628.820100px;}
.yb7{bottom:629.412930px;}
.yd4{bottom:639.313800px;}
.ye9{bottom:639.816150px;}
.yfb{bottom:640.079850px;}
.yb6{bottom:641.797650px;}
.yce{bottom:644.533200px;}
.y57{bottom:653.218650px;}
.y56{bottom:665.200740px;}
.ycd{bottom:670.519950px;}
.y1a{bottom:671.651760px;}
.y44{bottom:678.572400px;}
.yfa{bottom:678.959850px;}
.y43{bottom:700.172400px;}
.y59{bottom:701.545500px;}
.y42{bottom:721.772400px;}
.y19{bottom:723.508500px;}
.ye{bottom:723.882000px;}
.y2c{bottom:729.184050px;}
.y52{bottom:736.032000px;}
.y41{bottom:743.372400px;}
.y3b{bottom:762.592650px;}
.y40{bottom:764.972400px;}
.y3f{bottom:786.572400px;}
.h19{height:14.034037px;}
.h20{height:28.253343px;}
.h1f{height:41.997966px;}
.h2a{height:42.610351px;}
.h2b{height:42.624545px;}
.h24{height:43.373582px;}
.h25{height:43.377616px;}
.h2d{height:46.809246px;}
.h2e{height:46.902653px;}
.h27{height:47.658417px;}
.h28{height:47.731531px;}
.h21{height:48.870277px;}
.h9{height:52.488281px;}
.ha{height:52.505081px;}
.h33{height:52.658968px;}
.h2c{height:54.334282px;}
.h1d{height:54.721638px;}
.h26{height:55.294405px;}
.h1e{height:55.743004px;}
.h1b{height:55.743604px;}
.h22{height:55.746745px;}
.h16{height:56.013431px;}
.h17{height:56.014031px;}
.h1a{height:58.414268px;}
.h3d{height:60.460650px;}
.h2f{height:61.411289px;}
.h3c{height:64.586916px;}
.h18{height:66.952500px;}
.h30{height:69.715898px;}
.hb{height:69.809414px;}
.h11{height:70.839141px;}
.h39{height:73.160640px;}
.h10{height:74.830078px;}
.h36{height:75.832801px;}
.h3a{height:77.855160px;}
.hf{height:78.416016px;}
.hc{height:78.732422px;}
.h32{height:79.466790px;}
.h34{height:79.467390px;}
.h35{height:83.744401px;}
.h14{height:87.538008px;}
.h6{height:87.655430px;}
.h7{height:87.702950px;}
.h38{height:95.730314px;}
.hd{height:96.053555px;}
.h4{height:100.777500px;}
.h3{height:104.976562px;}
.h13{height:116.523984px;}
.h2{height:122.133867px;}
.h1{height:122.297695px;}
.h1c{height:122.970004px;}
.h12{height:124.239295px;}
.h8{height:140.143711px;}
.he{height:167.761758px;}
.h5{height:174.785977px;}
.h37{height:211.494000px;}
.h3b{height:440.250000px;}
.h29{height:448.537500px;}
.h23{height:457.431000px;}
.h31{height:623.406000px;}
.h15{height:652.791000px;}
.h0{height:810.000000px;}
.w2{width:61.996500px;}
.w6{width:211.366500px;}
.w4{width:273.855000px;}
.w3{width:278.821500px;}
.w7{width:689.475000px;}
.w1{width:1110.798000px;}
.w5{width:1197.880500px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x7{left:10.804500px;}
.x81{left:12.936450px;}
.x4a{left:18.599100px;}
.x6b{left:28.966800px;}
.x4{left:32.386770px;}
.x9a{left:38.971800px;}
.x68{left:40.109700px;}
.x5{left:41.522250px;}
.x80{left:43.068300px;}
.x69{left:45.068986px;}
.xa2{left:46.398600px;}
.xa3{left:47.478600px;}
.x70{left:59.522250px;}
.x65{left:60.600900px;}
.x45{left:66.300000px;}
.x41{left:69.233250px;}
.x1{left:71.586900px;}
.x91{left:76.743450px;}
.x2a{left:82.173750px;}
.x1e{left:86.307300px;}
.x4e{left:98.664450px;}
.xa4{left:101.478600px;}
.x73{left:102.714000px;}
.x1d{left:103.938300px;}
.x60{left:105.075150px;}
.x46{left:106.800000px;}
.xa1{left:109.509150px;}
.x6e{left:114.828900px;}
.x71{left:123.814960px;}
.x74{left:124.896150px;}
.x66{left:126.060042px;}
.x6c{left:127.160550px;}
.x59{left:131.019450px;}
.x28{left:136.997700px;}
.x1c{left:139.187850px;}
.x6a{left:142.216950px;}
.x37{left:144.883650px;}
.x40{left:149.522250px;}
.x84{left:159.024750px;}
.x36{left:162.223650px;}
.x72{left:165.921720px;}
.xa5{left:167.349600px;}
.x67{left:168.930725px;}
.x50{left:171.373800px;}
.x6d{left:172.493250px;}
.x64{left:177.613500px;}
.x6f{left:184.677900px;}
.x4b{left:211.936950px;}
.xa0{left:240.991200px;}
.x97{left:243.783750px;}
.x49{left:246.928500px;}
.x90{left:250.231500px;}
.x96{left:258.714750px;}
.x33{left:273.481650px;}
.x79{left:284.051700px;}
.x5a{left:288.653400px;}
.x48{left:294.199950px;}
.x47{left:295.528200px;}
.x38{left:299.249130px;}
.x62{left:303.929400px;}
.x51{left:314.562450px;}
.x14{left:361.960680px;}
.xf{left:365.608950px;}
.x17{left:389.167050px;}
.x3b{left:401.845950px;}
.x3e{left:407.642250px;}
.x3d{left:413.214750px;}
.x61{left:443.763450px;}
.x4f{left:447.147150px;}
.x16{left:448.815000px;}
.x15{left:465.549060px;}
.x85{left:474.060750px;}
.x58{left:489.150450px;}
.x21{left:505.392750px;}
.x57{left:518.828850px;}
.x10{left:536.990910px;}
.x7a{left:561.318750px;}
.x92{left:574.891650px;}
.x43{left:580.641600px;}
.x8e{left:586.106220px;}
.x53{left:588.557100px;}
.x52{left:589.609650px;}
.x54{left:598.030200px;}
.x63{left:601.135500px;}
.x42{left:603.508950px;}
.x29{left:608.323950px;}
.x55{left:609.671700px;}
.x93{left:623.131650px;}
.x7c{left:628.166250px;}
.x95{left:634.725150px;}
.x31{left:636.722550px;}
.x34{left:638.414550px;}
.x35{left:640.928250px;}
.x7d{left:644.719410px;}
.x7b{left:650.336250px;}
.x5f{left:653.647950px;}
.x3c{left:656.401740px;}
.x77{left:665.081700px;}
.x4c{left:671.745450px;}
.x76{left:691.352700px;}
.x32{left:696.498150px;}
.x82{left:710.055600px;}
.x94{left:716.569650px;}
.x3a{left:718.003950px;}
.x9f{left:720.000000px;}
.x7f{left:735.942300px;}
.x8f{left:742.177740px;}
.x56{left:756.485250px;}
.xb{left:763.622550px;}
.x9c{left:767.218350px;}
.x7e{left:769.115700px;}
.xc{left:770.642550px;}
.xa{left:773.342550px;}
.x1a{left:787.876050px;}
.x1b{left:789.863070px;}
.x9{left:793.322550px;}
.x9b{left:796.749840px;}
.x8{left:804.482550px;}
.x20{left:823.821390px;}
.x86{left:830.108850px;}
.x1f{left:835.168950px;}
.x44{left:850.345950px;}
.xa7{left:851.399400px;}
.xe{left:852.722550px;}
.x19{left:865.743660px;}
.xa6{left:867.239400px;}
.x8d{left:877.928700px;}
.x3{left:887.273370px;}
.x5d{left:891.097800px;}
.x78{left:897.275700px;}
.x98{left:909.701850px;}
.x83{left:911.217150px;}
.x99{left:918.692850px;}
.x5e{left:928.158000px;}
.x2{left:932.453550px;}
.xd{left:939.662550px;}
.x18{left:951.233400px;}
.x12{left:978.248100px;}
.x22{left:986.807850px;}
.x9e{left:988.865100px;}
.x9d{left:990.902850px;}
.x5c{left:997.734750px;}
.x11{left:998.956200px;}
.x75{left:1000.625550px;}
.x13{left:1002.379620px;}
.x4d{left:1015.752150px;}
.x5b{left:1020.532950px;}
.x26{left:1058.324490px;}
.x25{left:1068.953850px;}
.x87{left:1093.392750px;}
.x88{left:1110.571800px;}
.x39{left:1127.502000px;}
.x89{left:1139.166450px;}
.x8b{left:1187.997600px;}
.x24{left:1218.826650px;}
.x3f{left:1234.754850px;}
.x23{left:1239.011550px;}
.x8a{left:1243.617600px;}
.x2e{left:1330.961550px;}
.x2b{left:1333.481550px;}
.x2d{left:1334.741550px;}
.x2c{left:1345.541550px;}
.x2f{left:1356.521700px;}
.x30{left:1362.461550px;}
.x27{left:1408.900500px;}
.x6{left:1418.980500px;}
.x8c{left:1424.517450px;}
@media print{
.v2{vertical-align:-3.930240pt;}
.v3{vertical-align:-1.959467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.725867pt;}
.v5{vertical-align:7.032533pt;}
.v4{vertical-align:59.757333pt;}
.ls4{letter-spacing:-8.052480pt;}
.ls5b{letter-spacing:-3.264000pt;}
.ls18{letter-spacing:-1.984000pt;}
.ls3d{letter-spacing:-1.880880pt;}
.ls57{letter-spacing:-1.751155pt;}
.ls5a{letter-spacing:-1.750888pt;}
.ls3f{letter-spacing:-1.287235pt;}
.ls2a{letter-spacing:-1.072696pt;}
.ls38{letter-spacing:-1.065832pt;}
.ls34{letter-spacing:-0.858157pt;}
.ls61{letter-spacing:-0.790699pt;}
.ls2c{letter-spacing:-0.715131pt;}
.ls62{letter-spacing:-0.711629pt;}
.ls40{letter-spacing:-0.643618pt;}
.ls3b{letter-spacing:-0.626960pt;}
.ls56{letter-spacing:-0.583718pt;}
.ls32{letter-spacing:-0.548591pt;}
.ls39{letter-spacing:-0.500591pt;}
.ls27{letter-spacing:-0.480017pt;}
.ls3e{letter-spacing:-0.438872pt;}
.ls45{letter-spacing:-0.423658pt;}
.ls4c{letter-spacing:-0.416203pt;}
.ls29{letter-spacing:-0.411443pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls35{letter-spacing:-0.377156pt;}
.ls3c{letter-spacing:-0.376176pt;}
.ls2d{letter-spacing:-0.357565pt;}
.ls4a{letter-spacing:-0.349200pt;}
.lsd{letter-spacing:-0.341760pt;}
.ls44{letter-spacing:-0.317743pt;}
.ls36{letter-spacing:-0.313480pt;}
.ls4b{letter-spacing:-0.312152pt;}
.ls5f{letter-spacing:-0.299520pt;}
.ls12{letter-spacing:-0.288000pt;}
.ls2b{letter-spacing:-0.286052pt;}
.ls1b{letter-spacing:-0.284160pt;}
.ls28{letter-spacing:-0.274295pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls5d{letter-spacing:-0.255360pt;}
.ls7{letter-spacing:-0.245760pt;}
.ls30{letter-spacing:-0.214539pt;}
.lsa{letter-spacing:-0.213760pt;}
.ls8{letter-spacing:-0.213120pt;}
.ls48{letter-spacing:-0.202536pt;}
.ls55{letter-spacing:-0.194573pt;}
.ls15{letter-spacing:-0.192000pt;}
.ls10{letter-spacing:-0.170880pt;}
.ls11{letter-spacing:-0.170240pt;}
.ls47{letter-spacing:-0.158886pt;}
.ls63{letter-spacing:-0.158140pt;}
.ls4e{letter-spacing:-0.156128pt;}
.ls31{letter-spacing:-0.137148pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.090880pt;}
.ls50{letter-spacing:-0.074880pt;}
.ls33{letter-spacing:-0.071513pt;}
.ls3a{letter-spacing:-0.062696pt;}
.ls6{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.011532pt;}
.ls25{letter-spacing:0.015419pt;}
.ls24{letter-spacing:0.015952pt;}
.ls51{letter-spacing:0.028705pt;}
.ls52{letter-spacing:0.036248pt;}
.ls42{letter-spacing:0.066340pt;}
.ls60{letter-spacing:0.079070pt;}
.ls5e{letter-spacing:0.085120pt;}
.ls14{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.106880pt;}
.ls13{letter-spacing:0.117120pt;}
.lse{letter-spacing:0.128000pt;}
.ls22{letter-spacing:0.137148pt;}
.ls3{letter-spacing:0.149120pt;}
.ls4d{letter-spacing:0.156076pt;}
.ls46{letter-spacing:0.158872pt;}
.ls58{letter-spacing:0.170880pt;}
.ls1c{letter-spacing:0.192000pt;}
.ls54{letter-spacing:0.194573pt;}
.ls2{letter-spacing:0.213760pt;}
.ls2f{letter-spacing:0.214539pt;}
.ls4f{letter-spacing:0.228608pt;}
.ls43{letter-spacing:0.228757pt;}
.ls1f{letter-spacing:0.230400pt;}
.ls49{letter-spacing:0.232755pt;}
.ls41{letter-spacing:0.232800pt;}
.lsb{letter-spacing:0.256000pt;}
.ls17{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.298240pt;}
.ls37{letter-spacing:0.313480pt;}
.ls26{letter-spacing:0.342869pt;}
.ls2e{letter-spacing:0.357565pt;}
.ls9{letter-spacing:0.426240pt;}
.ls1a{letter-spacing:0.852480pt;}
.ls64{letter-spacing:0.869769pt;}
.ls5c{letter-spacing:0.896000pt;}
.ls19{letter-spacing:1.463424pt;}
.lsc{letter-spacing:2.176000pt;}
.ls65{letter-spacing:2.784000pt;}
.ls59{letter-spacing:16.448000pt;}
.ls20{letter-spacing:42.368000pt;}
.ls1e{letter-spacing:101.376000pt;}
.ls1d{letter-spacing:336.462720pt;}
.ls53{letter-spacing:1002.477399pt;}
.ws6{word-spacing:-59.034240pt;}
.wsa4{word-spacing:-47.504640pt;}
.ws38{word-spacing:-47.333760pt;}
.ws2d{word-spacing:-47.162880pt;}
.ws36{word-spacing:-41.753600pt;}
.ws42{word-spacing:-39.214080pt;}
.ws4{word-spacing:-35.456000pt;}
.ws4b{word-spacing:-35.328000pt;}
.ws3{word-spacing:-33.914880pt;}
.ws33{word-spacing:-32.676480pt;}
.ws9b{word-spacing:-30.698903pt;}
.ws7{word-spacing:-29.819520pt;}
.ws8{word-spacing:-29.712640pt;}
.wsb3{word-spacing:-26.688000pt;}
.ws83{word-spacing:-26.400000pt;}
.ws2a{word-spacing:-23.663360pt;}
.ws29{word-spacing:-23.493120pt;}
.ws91{word-spacing:-21.986726pt;}
.ws3c{word-spacing:-21.504000pt;}
.ws3b{word-spacing:-21.408000pt;}
.ws3d{word-spacing:-20.811520pt;}
.wsa7{word-spacing:-20.741760pt;}
.wsa6{word-spacing:-20.517120pt;}
.ws94{word-spacing:-20.235571pt;}
.ws7b{word-spacing:-18.565800pt;}
.ws81{word-spacing:-18.508786pt;}
.ws19{word-spacing:-18.048000pt;}
.ws9d{word-spacing:-17.984000pt;}
.wsac{word-spacing:-17.948860pt;}
.ws1b{word-spacing:-17.920000pt;}
.ws1a{word-spacing:-17.792000pt;}
.wsae{word-spacing:-17.711650pt;}
.ws90{word-spacing:-17.664000pt;}
.ws18{word-spacing:-17.408000pt;}
.wsad{word-spacing:-17.079091pt;}
.ws55{word-spacing:-16.519518pt;}
.ws7d{word-spacing:-16.412400pt;}
.ws5e{word-spacing:-16.161953pt;}
.ws82{word-spacing:-16.127392pt;}
.ws60{word-spacing:-16.090440pt;}
.ws7c{word-spacing:-15.830400pt;}
.ws40{word-spacing:-15.808000pt;}
.ws56{word-spacing:-15.804388pt;}
.ws63{word-spacing:-15.661362pt;}
.ws50{word-spacing:-15.634842pt;}
.ws4c{word-spacing:-15.497694pt;}
.ws53{word-spacing:-15.446822pt;}
.ws4e{word-spacing:-15.223398pt;}
.ws4f{word-spacing:-15.086251pt;}
.ws4d{word-spacing:-15.017677pt;}
.ws57{word-spacing:-14.949103pt;}
.ws7a{word-spacing:-14.880975pt;}
.ws62{word-spacing:-14.874718pt;}
.ws80{word-spacing:-14.619120pt;}
.ws9c{word-spacing:-14.528000pt;}
.ws5d{word-spacing:-14.482776pt;}
.ws78{word-spacing:-14.404360pt;}
.ws79{word-spacing:-14.298446pt;}
.ws5c{word-spacing:-14.169296pt;}
.ws7e{word-spacing:-14.150892pt;}
.ws7f{word-spacing:-14.046841pt;}
.ws5b{word-spacing:-13.855816pt;}
.ws61{word-spacing:-13.730424pt;}
.ws59{word-spacing:-12.176759pt;}
.ws5a{word-spacing:-11.799603pt;}
.ws8a{word-spacing:-5.771520pt;}
.wsab{word-spacing:-3.930240pt;}
.wsa8{word-spacing:-3.588480pt;}
.ws86{word-spacing:-3.360000pt;}
.ws27{word-spacing:-3.328000pt;}
.ws98{word-spacing:-2.904960pt;}
.ws9a{word-spacing:-2.885760pt;}
.wsaf{word-spacing:-2.688000pt;}
.wsa9{word-spacing:-2.246400pt;}
.ws16{word-spacing:-2.244480pt;}
.ws8c{word-spacing:-2.171520pt;}
.ws1e{word-spacing:-2.048000pt;}
.ws2e{word-spacing:-1.920000pt;}
.ws2f{word-spacing:-1.792000pt;}
.wsa5{word-spacing:-1.708800pt;}
.ws9e{word-spacing:-1.664000pt;}
.ws17{word-spacing:-1.603200pt;}
.ws8e{word-spacing:-1.497600pt;}
.wsb2{word-spacing:-1.423258pt;}
.ws28{word-spacing:-1.408000pt;}
.ws47{word-spacing:-1.401600pt;}
.ws3a{word-spacing:-1.367040pt;}
.ws3e{word-spacing:-1.344000pt;}
.ws41{word-spacing:-1.280000pt;}
.ws2c{word-spacing:-1.276800pt;}
.ws39{word-spacing:-1.025280pt;}
.ws8b{word-spacing:-0.961920pt;}
.wsaa{word-spacing:-0.898560pt;}
.ws25{word-spacing:-0.896000pt;}
.ws1d{word-spacing:-0.768000pt;}
.wsa{word-spacing:-0.745600pt;}
.ws6b{word-spacing:-0.715131pt;}
.ws1f{word-spacing:-0.640000pt;}
.ws2{word-spacing:-0.602112pt;}
.ws11{word-spacing:-0.426240pt;}
.ws35{word-spacing:-0.384000pt;}
.ws71{word-spacing:-0.357565pt;}
.ws64{word-spacing:-0.342869pt;}
.ws1c{word-spacing:-0.341760pt;}
.ws13{word-spacing:-0.320640pt;}
.ws6f{word-spacing:-0.313480pt;}
.wsd{word-spacing:-0.256000pt;}
.ws8d{word-spacing:-0.224640pt;}
.ws37{word-spacing:-0.213120pt;}
.ws95{word-spacing:-0.194573pt;}
.ws48{word-spacing:-0.192000pt;}
.ws1{word-spacing:-0.178944pt;}
.ws4a{word-spacing:-0.170880pt;}
.ws9{word-spacing:-0.149120pt;}
.ws20{word-spacing:-0.128000pt;}
.ws34{word-spacing:-0.117120pt;}
.ws85{word-spacing:-0.116378pt;}
.ws88{word-spacing:-0.114304pt;}
.ws15{word-spacing:-0.106880pt;}
.ws31{word-spacing:-0.096000pt;}
.wsa0{word-spacing:-0.085120pt;}
.wsb{word-spacing:0.000000pt;}
.ws72{word-spacing:0.062696pt;}
.ws66{word-spacing:0.068574pt;}
.ws3f{word-spacing:0.090880pt;}
.ws23{word-spacing:0.128000pt;}
.ws6d{word-spacing:0.137148pt;}
.ws77{word-spacing:0.143026pt;}
.ws87{word-spacing:0.156128pt;}
.wsb1{word-spacing:0.158140pt;}
.ws84{word-spacing:0.158886pt;}
.ws49{word-spacing:0.170880pt;}
.ws99{word-spacing:0.192000pt;}
.ws96{word-spacing:0.194573pt;}
.wsf{word-spacing:0.213120pt;}
.ws14{word-spacing:0.213760pt;}
.ws6c{word-spacing:0.214539pt;}
.wse{word-spacing:0.245760pt;}
.ws9f{word-spacing:0.255360pt;}
.ws65{word-spacing:0.274295pt;}
.ws69{word-spacing:0.286052pt;}
.ws89{word-spacing:0.288000pt;}
.ws26{word-spacing:0.341760pt;}
.ws6a{word-spacing:0.357565pt;}
.ws73{word-spacing:0.376176pt;}
.ws24{word-spacing:0.384000pt;}
.ws32{word-spacing:0.480000pt;}
.ws97{word-spacing:0.512000pt;}
.wsb0{word-spacing:0.711629pt;}
.ws76{word-spacing:0.715131pt;}
.ws6e{word-spacing:0.858157pt;}
.ws21{word-spacing:1.024000pt;}
.ws12{word-spacing:1.065600pt;}
.ws70{word-spacing:1.065832pt;}
.ws30{word-spacing:1.152000pt;}
.ws2b{word-spacing:1.276800pt;}
.wsa3{word-spacing:1.361920pt;}
.wsc{word-spacing:1.664000pt;}
.wsa2{word-spacing:1.702400pt;}
.ws46{word-spacing:1.847040pt;}
.ws74{word-spacing:1.880880pt;}
.ws8f{word-spacing:2.128000pt;}
.ws22{word-spacing:2.304000pt;}
.ws45{word-spacing:2.415360pt;}
.ws10{word-spacing:2.557440pt;}
.wsa1{word-spacing:2.638720pt;}
.ws5{word-spacing:2.834496pt;}
.ws44{word-spacing:3.125760pt;}
.ws52{word-spacing:3.261193pt;}
.ws51{word-spacing:3.444928pt;}
.ws43{word-spacing:3.694080pt;}
.ws0{word-spacing:16.403200pt;}
.ws67{word-spacing:19.225395pt;}
.ws68{word-spacing:26.079369pt;}
.ws5f{word-spacing:48.141873pt;}
.ws75{word-spacing:61.215185pt;}
.ws58{word-spacing:207.324587pt;}
.ws93{word-spacing:587.258507pt;}
.ws92{word-spacing:863.039767pt;}
.ws54{word-spacing:913.937611pt;}
._19{margin-left:-460.976820pt;}
._6{margin-left:-23.762880pt;}
._a{margin-left:-12.354624pt;}
._3{margin-left:-11.333120pt;}
._b{margin-left:-9.771776pt;}
._1e{margin-left:-8.355968pt;}
._8{margin-left:-7.011392pt;}
._d{margin-left:-5.737515pt;}
._9{margin-left:-4.316160pt;}
._7{margin-left:-3.002048pt;}
._5{margin-left:-2.033920pt;}
._1{margin-left:-0.924544pt;}
._2{width:1.535936pt;}
._4{width:2.816000pt;}
._1c{width:4.320000pt;}
._0{width:7.306880pt;}
._1d{width:15.011904pt;}
._13{width:17.134933pt;}
._12{width:41.123840pt;}
._1b{width:48.021024pt;}
._10{width:91.926720pt;}
._20{width:121.671424pt;}
._c{width:158.890880pt;}
._1a{width:173.412035pt;}
._1f{width:215.860544pt;}
._18{width:301.556455pt;}
._11{width:327.237184pt;}
._17{width:364.171452pt;}
._16{width:438.830974pt;}
._e{width:461.281067pt;}
._f{width:482.782400pt;}
._15{width:887.805105pt;}
._14{width:1278.937390pt;}
.fsd{font-size:17.134933pt;}
.fs10{font-size:36.246400pt;}
.fs18{font-size:52.025337pt;}
.fs19{font-size:52.042667pt;}
.fs13{font-size:52.957207pt;}
.fs14{font-size:52.962133pt;}
.fsf{font-size:53.879467pt;}
.fs1b{font-size:57.152000pt;}
.fs1c{font-size:57.189333pt;}
.fs16{font-size:58.188800pt;}
.fs17{font-size:58.200000pt;}
.fs11{font-size:62.696000pt;}
.fs6{font-size:64.000000pt;}
.fs1f{font-size:64.467200pt;}
.fs1a{font-size:66.339733pt;}
.fs15{font-size:67.512000pt;}
.fsc{font-size:68.573867pt;}
.fse{font-size:71.513067pt;}
.fs12{font-size:71.517867pt;}
.fs1d{font-size:74.880000pt;}
.fs21{font-size:79.069867pt;}
.fs7{font-size:85.120000pt;}
.fsa{font-size:90.880000pt;}
.fs8{font-size:96.000000pt;}
.fs1e{font-size:97.286400pt;}
.fs4{font-size:106.880000pt;}
.fs20{font-size:116.725867pt;}
.fs9{font-size:117.120000pt;}
.fs2{font-size:122.880000pt;}
.fs1{font-size:128.000000pt;}
.fsb{font-size:142.080000pt;}
.fs0{font-size:149.120000pt;}
.fs5{font-size:170.880000pt;}
.fs3{font-size:213.120000pt;}
.y8a{bottom:-162.545333pt;}
.y89{bottom:-88.583333pt;}
.y85{bottom:-25.887067pt;}
.y6d{bottom:-12.735333pt;}
.y6c{bottom:-8.327067pt;}
.y0{bottom:0.000000pt;}
.ye3{bottom:6.407333pt;}
.y48{bottom:6.981333pt;}
.yec{bottom:7.474000pt;}
.y10{bottom:7.509467pt;}
.y64{bottom:7.513200pt;}
.y65{bottom:7.514667pt;}
.yee{bottom:7.836400pt;}
.y23{bottom:8.538400pt;}
.y55{bottom:8.761200pt;}
.ycc{bottom:8.783333pt;}
.ye1{bottom:8.970400pt;}
.yed{bottom:8.970667pt;}
.y2f{bottom:9.031067pt;}
.yef{bottom:9.390933pt;}
.yf1{bottom:9.547867pt;}
.yeb{bottom:9.607200pt;}
.y36{bottom:9.649067pt;}
.y46{bottom:9.913467pt;}
.y53{bottom:10.997333pt;}
.yb{bottom:11.843573pt;}
.ya5{bottom:12.069550pt;}
.y94{bottom:12.268950pt;}
.yd{bottom:13.344107pt;}
.yd8{bottom:13.409467pt;}
.yd6{bottom:13.409867pt;}
.ya4{bottom:14.351117pt;}
.y93{bottom:14.590858pt;}
.y86{bottom:17.706400pt;}
.ybe{bottom:23.297200pt;}
.ye2{bottom:25.607200pt;}
.ybf{bottom:26.321200pt;}
.ycb{bottom:27.983333pt;}
.y2e{bottom:28.231067pt;}
.yea{bottom:28.807333pt;}
.y88{bottom:29.461867pt;}
.y49{bottom:30.197333pt;}
.yf{bottom:30.197467pt;}
.yd1{bottom:30.198400pt;}
.y45{bottom:30.199467pt;}
.y28{bottom:30.730667pt;}
.yd3{bottom:32.275733pt;}
.y7a{bottom:32.890667pt;}
.y66{bottom:35.754667pt;}
.ya2{bottom:36.219200pt;}
.y91{bottom:36.845600pt;}
.ydc{bottom:40.185733pt;}
.ya{bottom:43.854133pt;}
.y87{bottom:44.156400pt;}
.yde{bottom:45.344000pt;}
.yc{bottom:45.361013pt;}
.y2d{bottom:47.431067pt;}
.ybc{bottom:47.436693pt;}
.yd2{bottom:50.044533pt;}
.yc0{bottom:50.517333pt;}
.ya3{bottom:53.809345pt;}
.y92{bottom:54.746764pt;}
.ya0{bottom:59.565733pt;}
.ye0{bottom:59.854533pt;}
.yd5{bottom:65.701333pt;}
.ybb{bottom:69.844533pt;}
.yb3{bottom:71.387333pt;}
.ydd{bottom:74.144000pt;}
.y47{bottom:75.451600pt;}
.y8f{bottom:77.463733pt;}
.yd7{bottom:78.398667pt;}
.ya6{bottom:83.418800pt;}
.y95{bottom:84.879200pt;}
.yf5{bottom:85.172800pt;}
.yae{bottom:86.016400pt;}
.y9b{bottom:87.522667pt;}
.y9f{bottom:88.365733pt;}
.ydf{bottom:88.654533pt;}
.y63{bottom:88.787067pt;}
.yb2{bottom:100.187333pt;}
.yda{bottom:100.449333pt;}
.ya7{bottom:112.016245pt;}
.y6{bottom:114.518533pt;}
.y5d{bottom:117.673333pt;}
.yba{bottom:119.548667pt;}
.y4a{bottom:120.547467pt;}
.y8c{bottom:124.730800pt;}
.y96{bottom:128.533238pt;}
.ydb{bottom:129.281333pt;}
.ya1{bottom:129.922667pt;}
.yf3{bottom:130.338667pt;}
.y90{bottom:133.121333pt;}
.y5c{bottom:136.873333pt;}
.ya8{bottom:140.613691pt;}
.y8b{bottom:146.282667pt;}
.y5{bottom:148.918533pt;}
.y5b{bottom:156.073333pt;}
.y84{bottom:156.813600pt;}
.y62{bottom:165.587067pt;}
.ya9{bottom:169.211136pt;}
.yb9{bottom:169.770533pt;}
.y97{bottom:172.187277pt;}
.y5a{bottom:175.273333pt;}
.y83{bottom:178.365467pt;}
.y4{bottom:182.198533pt;}
.y2a{bottom:184.669760pt;}
.y22{bottom:187.645573pt;}
.y79{bottom:196.488533pt;}
.yaa{bottom:197.808581pt;}
.yd9{bottom:198.353333pt;}
.y51{bottom:198.976533pt;}
.y18{bottom:199.338533pt;}
.y37{bottom:199.780400pt;}
.y8d{bottom:203.101067pt;}
.y8e{bottom:203.346000pt;}
.y61{bottom:203.987067pt;}
.y29{bottom:210.269600pt;}
.y21{bottom:213.245413pt;}
.y80{bottom:215.591333pt;}
.y98{bottom:215.841315pt;}
.y82{bottom:216.081200pt;}
.y3{bottom:216.758533pt;}
.y78{bottom:217.060800pt;}
.yb8{bottom:220.730800pt;}
.yab{bottom:226.406027pt;}
.yf7{bottom:231.939200pt;}
.y7f{bottom:234.449200pt;}
.y81{bottom:234.939067pt;}
.y17{bottom:237.738533pt;}
.y60{bottom:242.387067pt;}
.y4f{bottom:251.366827pt;}
.yac{bottom:255.003472pt;}
.yf6{bottom:255.768400pt;}
.y38{bottom:258.080800pt;}
.y99{bottom:259.495354pt;}
.ye6{bottom:263.421333pt;}
.y2{bottom:264.101573pt;}
.yb0{bottom:270.023600pt;}
.yf9{bottom:274.994267pt;}
.y9d{bottom:275.509067pt;}
.y101{bottom:276.055467pt;}
.y16{bottom:276.138533pt;}
.y3d{bottom:277.713467pt;}
.y5f{bottom:280.787067pt;}
.y1d{bottom:290.874853pt;}
.y3a{bottom:293.110560pt;}
.y100{bottom:295.255467pt;}
.yf8{bottom:298.823467pt;}
.y33{bottom:299.897893pt;}
.ye5{bottom:301.821333pt;}
.y20{bottom:302.642693pt;}
.y1{bottom:304.438533pt;}
.yca{bottom:304.583200pt;}
.yb1{bottom:306.195867pt;}
.yc5{bottom:307.513600pt;}
.y31{bottom:308.472133pt;}
.y9e{bottom:312.320667pt;}
.y15{bottom:314.538533pt;}
.y4e{bottom:315.551467pt;}
.y1c{bottom:316.474693pt;}
.y7e{bottom:316.493200pt;}
.y39{bottom:318.710400pt;}
.y5e{bottom:319.187067pt;}
.y7d{bottom:319.676933pt;}
.y32{bottom:325.497733pt;}
.y1f{bottom:328.242533pt;}
.y74{bottom:328.248667pt;}
.yf4{bottom:329.422400pt;}
.y77{bottom:331.922267pt;}
.y73{bottom:334.861200pt;}
.y7c{bottom:335.840800pt;}
.yc7{bottom:337.109733pt;}
.y30{bottom:337.272133pt;}
.ye4{bottom:340.221333pt;}
.y1b{bottom:342.074533pt;}
.yaf{bottom:342.368267pt;}
.yc9{bottom:347.072800pt;}
.y4c{bottom:348.197093pt;}
.y9c{bottom:349.132267pt;}
.y75{bottom:349.800533pt;}
.y14{bottom:352.938533pt;}
.y76{bottom:353.474133pt;}
.y1e{bottom:353.842373pt;}
.y72{bottom:356.412933pt;}
.y7b{bottom:358.617200pt;}
.y3e{bottom:362.314133pt;}
.ybd{bottom:362.674533pt;}
.yad{bottom:371.248933pt;}
.y4b{bottom:373.796933pt;}
.ye8{bottom:374.425253pt;}
.y9a{bottom:378.668667pt;}
.yc6{bottom:379.306400pt;}
.yc4{bottom:386.632133pt;}
.y13{bottom:391.338533pt;}
.yc8{bottom:391.906667pt;}
.ye7{bottom:400.195333pt;}
.y9{bottom:402.899840pt;}
.y71{bottom:422.293067pt;}
.y6b{bottom:429.638667pt;}
.y12{bottom:429.738533pt;}
.yff{bottom:436.479867pt;}
.y54{bottom:437.446667pt;}
.y3c{bottom:442.344000pt;}
.y27{bottom:451.655760pt;}
.y58{bottom:452.175600pt;}
.y25{bottom:455.025627pt;}
.y8{bottom:460.495520pt;}
.y50{bottom:463.274267pt;}
.y11{bottom:468.138533pt;}
.yfe{bottom:471.039867pt;}
.y6a{bottom:472.254133pt;}
.y26{bottom:477.255600pt;}
.y4d{bottom:479.953333pt;}
.y24{bottom:480.625467pt;}
.yb5{bottom:497.464000pt;}
.y69{bottom:500.663200pt;}
.y70{bottom:500.663333pt;}
.yfd{bottom:505.599867pt;}
.y2b{bottom:517.082800pt;}
.y7{bottom:518.091200pt;}
.y35{bottom:521.104933pt;}
.yb4{bottom:526.264000pt;}
.y68{bottom:527.603067pt;}
.y6f{bottom:527.603200pt;}
.yc2{bottom:527.873333pt;}
.yc3{bottom:533.733867pt;}
.yc1{bottom:533.734000pt;}
.yfc{bottom:534.399867pt;}
.yd0{bottom:534.518400pt;}
.yf2{bottom:540.843733pt;}
.yf0{bottom:543.560667pt;}
.ycf{bottom:553.718400pt;}
.y67{bottom:554.787867pt;}
.y34{bottom:556.305067pt;}
.y6e{bottom:558.951200pt;}
.yb7{bottom:559.478160pt;}
.yd4{bottom:568.278933pt;}
.ye9{bottom:568.725467pt;}
.yfb{bottom:568.959867pt;}
.yb6{bottom:570.486800pt;}
.yce{bottom:572.918400pt;}
.y57{bottom:580.638800pt;}
.y56{bottom:591.289547pt;}
.ycd{bottom:596.017733pt;}
.y1a{bottom:597.023787pt;}
.y44{bottom:603.175467pt;}
.yfa{bottom:603.519867pt;}
.y43{bottom:622.375467pt;}
.y59{bottom:623.596000pt;}
.y42{bottom:641.575467pt;}
.y19{bottom:643.118667pt;}
.ye{bottom:643.450667pt;}
.y2c{bottom:648.163600pt;}
.y52{bottom:654.250667pt;}
.y41{bottom:660.775467pt;}
.y3b{bottom:677.860133pt;}
.y40{bottom:679.975467pt;}
.y3f{bottom:699.175467pt;}
.h19{height:12.474700pt;}
.h20{height:25.114083pt;}
.h1f{height:37.331525pt;}
.h2a{height:37.875868pt;}
.h2b{height:37.888484pt;}
.h24{height:38.554295pt;}
.h25{height:38.557881pt;}
.h2d{height:41.608219pt;}
.h2e{height:41.691247pt;}
.h27{height:42.363037pt;}
.h28{height:42.428027pt;}
.h21{height:43.440246pt;}
.h9{height:46.656250pt;}
.ha{height:46.671183pt;}
.h33{height:46.807972pt;}
.h2c{height:48.297140pt;}
.h1d{height:48.641456pt;}
.h26{height:49.150582pt;}
.h1e{height:49.549337pt;}
.h1b{height:49.549870pt;}
.h22{height:49.552663pt;}
.h16{height:49.789717pt;}
.h17{height:49.790250pt;}
.h1a{height:51.923794pt;}
.h3d{height:53.742800pt;}
.h2f{height:54.587812pt;}
.h3c{height:57.410592pt;}
.h18{height:59.513333pt;}
.h30{height:61.969687pt;}
.hb{height:62.052813pt;}
.h11{height:62.968125pt;}
.h39{height:65.031680pt;}
.h10{height:66.515625pt;}
.h36{height:67.406934pt;}
.h3a{height:69.204587pt;}
.hf{height:69.703125pt;}
.hc{height:69.984375pt;}
.h32{height:70.637147pt;}
.h34{height:70.637680pt;}
.h35{height:74.439468pt;}
.h14{height:77.811562pt;}
.h6{height:77.915937pt;}
.h7{height:77.958178pt;}
.h38{height:85.093613pt;}
.hd{height:85.380937pt;}
.h4{height:89.580000pt;}
.h3{height:93.312500pt;}
.h13{height:103.576875pt;}
.h2{height:108.563437pt;}
.h1{height:108.709062pt;}
.h1c{height:109.306670pt;}
.h12{height:110.434929pt;}
.h8{height:124.572187pt;}
.he{height:149.121562pt;}
.h5{height:155.365312pt;}
.h37{height:187.994667pt;}
.h3b{height:391.333333pt;}
.h29{height:398.700000pt;}
.h23{height:406.605333pt;}
.h31{height:554.138667pt;}
.h15{height:580.258667pt;}
.h0{height:720.000000pt;}
.w2{width:55.108000pt;}
.w6{width:187.881333pt;}
.w4{width:243.426667pt;}
.w3{width:247.841333pt;}
.w7{width:612.866667pt;}
.w1{width:987.376000pt;}
.w5{width:1064.782667pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.604000pt;}
.x81{left:11.499067pt;}
.x4a{left:16.532533pt;}
.x6b{left:25.748267pt;}
.x4{left:28.788240pt;}
.x9a{left:34.641600pt;}
.x68{left:35.653067pt;}
.x5{left:36.908667pt;}
.x80{left:38.282933pt;}
.x69{left:40.061321pt;}
.xa2{left:41.243200pt;}
.xa3{left:42.203200pt;}
.x70{left:52.908667pt;}
.x65{left:53.867467pt;}
.x45{left:58.933333pt;}
.x41{left:61.540667pt;}
.x1{left:63.632800pt;}
.x91{left:68.216400pt;}
.x2a{left:73.043333pt;}
.x1e{left:76.717600pt;}
.x4e{left:87.701733pt;}
.xa4{left:90.203200pt;}
.x73{left:91.301333pt;}
.x1d{left:92.389600pt;}
.x60{left:93.400133pt;}
.x46{left:94.933333pt;}
.xa1{left:97.341467pt;}
.x6e{left:102.070133pt;}
.x71{left:110.057742pt;}
.x74{left:111.018800pt;}
.x66{left:112.053371pt;}
.x6c{left:113.031600pt;}
.x59{left:116.461733pt;}
.x28{left:121.775733pt;}
.x1c{left:123.722533pt;}
.x6a{left:126.415067pt;}
.x37{left:128.785467pt;}
.x40{left:132.908667pt;}
.x84{left:141.355333pt;}
.x36{left:144.198800pt;}
.x72{left:147.485973pt;}
.xa5{left:148.755200pt;}
.x67{left:150.160645pt;}
.x50{left:152.332267pt;}
.x6d{left:153.327333pt;}
.x64{left:157.878667pt;}
.x6f{left:164.158133pt;}
.x4b{left:188.388400pt;}
.xa0{left:214.214400pt;}
.x97{left:216.696667pt;}
.x49{left:219.492000pt;}
.x90{left:222.428000pt;}
.x96{left:229.968667pt;}
.x33{left:243.094800pt;}
.x79{left:252.490400pt;}
.x5a{left:256.580800pt;}
.x48{left:261.511067pt;}
.x47{left:262.691733pt;}
.x38{left:265.999227pt;}
.x62{left:270.159467pt;}
.x51{left:279.611067pt;}
.x14{left:321.742827pt;}
.xf{left:324.985733pt;}
.x17{left:345.926267pt;}
.x3b{left:357.196400pt;}
.x3e{left:362.348667pt;}
.x3d{left:367.302000pt;}
.x61{left:394.456400pt;}
.x4f{left:397.464133pt;}
.x16{left:398.946667pt;}
.x15{left:413.821387pt;}
.x85{left:421.387333pt;}
.x58{left:434.800400pt;}
.x21{left:449.238000pt;}
.x57{left:461.181200pt;}
.x10{left:477.325253pt;}
.x7a{left:498.950000pt;}
.x92{left:511.014800pt;}
.x43{left:516.125867pt;}
.x8e{left:520.983307pt;}
.x53{left:523.161867pt;}
.x52{left:524.097467pt;}
.x54{left:531.582400pt;}
.x63{left:534.342667pt;}
.x42{left:536.452400pt;}
.x29{left:540.732400pt;}
.x55{left:541.930400pt;}
.x93{left:553.894800pt;}
.x7c{left:558.370000pt;}
.x95{left:564.200133pt;}
.x31{left:565.975600pt;}
.x34{left:567.479600pt;}
.x35{left:569.714000pt;}
.x7d{left:573.083920pt;}
.x7b{left:578.076667pt;}
.x5f{left:581.020400pt;}
.x3c{left:583.468213pt;}
.x77{left:591.183733pt;}
.x4c{left:597.107067pt;}
.x76{left:614.535733pt;}
.x32{left:619.109467pt;}
.x82{left:631.160533pt;}
.x94{left:636.950800pt;}
.x3a{left:638.225733pt;}
.x9f{left:640.000000pt;}
.x7f{left:654.170933pt;}
.x8f{left:659.713547pt;}
.x56{left:672.431333pt;}
.xb{left:678.775600pt;}
.x9c{left:681.971867pt;}
.x7e{left:683.658400pt;}
.xc{left:685.015600pt;}
.xa{left:687.415600pt;}
.x1a{left:700.334267pt;}
.x1b{left:702.100507pt;}
.x9{left:705.175600pt;}
.x9b{left:708.222080pt;}
.x8{left:715.095600pt;}
.x20{left:732.285680pt;}
.x86{left:737.874533pt;}
.x1f{left:742.372400pt;}
.x44{left:755.863067pt;}
.xa7{left:756.799467pt;}
.xe{left:757.975600pt;}
.x19{left:769.549920pt;}
.xa6{left:770.879467pt;}
.x8d{left:780.381067pt;}
.x3{left:788.687440pt;}
.x5d{left:792.086933pt;}
.x78{left:797.578400pt;}
.x98{left:808.623867pt;}
.x83{left:809.970800pt;}
.x99{left:816.615867pt;}
.x5e{left:825.029333pt;}
.x2{left:828.847600pt;}
.xd{left:835.255600pt;}
.x18{left:845.540800pt;}
.x12{left:869.553867pt;}
.x22{left:877.162533pt;}
.x9e{left:878.991200pt;}
.x9d{left:880.802533pt;}
.x5c{left:886.875333pt;}
.x11{left:887.961067pt;}
.x75{left:889.444933pt;}
.x13{left:891.004107pt;}
.x4d{left:902.890800pt;}
.x5b{left:907.140400pt;}
.x26{left:940.732880pt;}
.x25{left:950.181200pt;}
.x87{left:971.904667pt;}
.x88{left:987.174933pt;}
.x39{left:1002.224000pt;}
.x89{left:1012.592400pt;}
.x8b{left:1055.997867pt;}
.x24{left:1083.401467pt;}
.x3f{left:1097.559867pt;}
.x23{left:1101.343600pt;}
.x8a{left:1105.437867pt;}
.x2e{left:1183.076933pt;}
.x2b{left:1185.316933pt;}
.x2d{left:1186.436933pt;}
.x2c{left:1196.036933pt;}
.x2f{left:1205.797067pt;}
.x30{left:1211.076933pt;}
.x27{left:1252.356000pt;}
.x6{left:1261.316000pt;}
.x8c{left:1266.237733pt;}
}




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