
    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_cc3db237898fbbbd1a56bc53.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_dc81d89026626f63b37ed812.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_2a1f0771b2eab0bfacd9169f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.128906;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_d7bee41a4031d81ee0df0653.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.128906;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_1be64c4c5130f49067de28cc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.868164;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_216c2053d1b6e9321b88aca4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b611c42ff885234580fa4714.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_761ef6be9cfd141c4dcad212.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_31ca0b9ad6d8a0e7a600275d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_1f7a828662909adef9739c15.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.922852;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_142358281356c23c9243b663.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v3{vertical-align:-20.880000px;}
.v2{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.116208px;}
.ls72{letter-spacing:-2.260512px;}
.ls45{letter-spacing:-2.224800px;}
.ls58{letter-spacing:-1.506600px;}
.ls77{letter-spacing:-1.184364px;}
.ls9b{letter-spacing:-0.823644px;}
.ls57{letter-spacing:-0.783000px;}
.ls9e{letter-spacing:-0.444888px;}
.ls99{letter-spacing:-0.378756px;}
.ls87{letter-spacing:-0.366732px;}
.ls97{letter-spacing:-0.360720px;}
.ls73{letter-spacing:-0.318636px;}
.ls82{letter-spacing:-0.312624px;}
.ls89{letter-spacing:-0.294588px;}
.ls9f{letter-spacing:-0.288576px;}
.ls7b{letter-spacing:-0.282564px;}
.ls66{letter-spacing:-0.258516px;}
.ls9a{letter-spacing:-0.240480px;}
.ls7a{letter-spacing:-0.234468px;}
.ls84{letter-spacing:-0.198396px;}
.ls67{letter-spacing:-0.168336px;}
.ls2a{letter-spacing:-0.156312px;}
.ls8a{letter-spacing:-0.150300px;}
.ls95{letter-spacing:-0.138276px;}
.ls85{letter-spacing:-0.120240px;}
.ls86{letter-spacing:-0.114228px;}
.ls2c{letter-spacing:-0.102600px;}
.ls8e{letter-spacing:-0.102204px;}
.ls1d{letter-spacing:-0.090180px;}
.ls19{letter-spacing:-0.086400px;}
.ls83{letter-spacing:-0.084168px;}
.ls76{letter-spacing:-0.078156px;}
.ls4d{letter-spacing:-0.072144px;}
.ls9d{letter-spacing:-0.066132px;}
.ls4f{letter-spacing:-0.060120px;}
.ls1f{letter-spacing:-0.057456px;}
.ls40{letter-spacing:-0.054108px;}
.ls23{letter-spacing:-0.052668px;}
.ls43{letter-spacing:-0.048600px;}
.ls41{letter-spacing:-0.048096px;}
.ls27{letter-spacing:-0.047880px;}
.ls47{letter-spacing:-0.043200px;}
.ls69{letter-spacing:-0.042768px;}
.ls3d{letter-spacing:-0.042084px;}
.ls20{letter-spacing:-0.038304px;}
.ls96{letter-spacing:-0.037800px;}
.ls3b{letter-spacing:-0.036072px;}
.ls25{letter-spacing:-0.033516px;}
.ls3e{letter-spacing:-0.030060px;}
.ls29{letter-spacing:-0.028728px;}
.ls93{letter-spacing:-0.027000px;}
.ls1e{letter-spacing:-0.024048px;}
.ls1b{letter-spacing:-0.023940px;}
.ls5a{letter-spacing:-0.021600px;}
.ls4e{letter-spacing:-0.019440px;}
.ls3c{letter-spacing:-0.018036px;}
.ls8f{letter-spacing:-0.017064px;}
.ls49{letter-spacing:-0.016200px;}
.ls4a{letter-spacing:-0.012024px;}
.ls63{letter-spacing:-0.011376px;}
.ls46{letter-spacing:-0.010800px;}
.ls22{letter-spacing:-0.009576px;}
.ls3f{letter-spacing:-0.006012px;}
.ls62{letter-spacing:-0.005688px;}
.ls3a{letter-spacing:-0.005400px;}
.ls24{letter-spacing:-0.004788px;}
.ls1a{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.005400px;}
.ls60{letter-spacing:0.005688px;}
.ls2d{letter-spacing:0.006012px;}
.ls10{letter-spacing:0.009576px;}
.ls33{letter-spacing:0.010800px;}
.ls4c{letter-spacing:0.011376px;}
.ls30{letter-spacing:0.012024px;}
.ls11{letter-spacing:0.014364px;}
.ls48{letter-spacing:0.016200px;}
.ls81{letter-spacing:0.017064px;}
.ls2e{letter-spacing:0.018036px;}
.ls14{letter-spacing:0.019152px;}
.ls55{letter-spacing:0.021600px;}
.ls6d{letter-spacing:0.023940px;}
.ls2f{letter-spacing:0.024048px;}
.ls53{letter-spacing:0.027000px;}
.lsf{letter-spacing:0.028728px;}
.ls4b{letter-spacing:0.030060px;}
.ls35{letter-spacing:0.032400px;}
.ls6{letter-spacing:0.033516px;}
.ls31{letter-spacing:0.036072px;}
.ls32{letter-spacing:0.037800px;}
.lsd{letter-spacing:0.038304px;}
.ls2{letter-spacing:0.041940px;}
.ls7c{letter-spacing:0.042084px;}
.ls5d{letter-spacing:0.043092px;}
.ls36{letter-spacing:0.043200px;}
.ls92{letter-spacing:0.047880px;}
.ls64{letter-spacing:0.048096px;}
.ls54{letter-spacing:0.048600px;}
.ls3{letter-spacing:0.050328px;}
.ls6c{letter-spacing:0.052668px;}
.ls37{letter-spacing:0.054000px;}
.ls1c{letter-spacing:0.054108px;}
.ls5c{letter-spacing:0.057456px;}
.ls1{letter-spacing:0.058716px;}
.ls91{letter-spacing:0.059400px;}
.ls6f{letter-spacing:0.060120px;}
.ls6e{letter-spacing:0.062244px;}
.ls34{letter-spacing:0.064800px;}
.ls7e{letter-spacing:0.066132px;}
.ls5b{letter-spacing:0.067032px;}
.ls4{letter-spacing:0.070200px;}
.ls8{letter-spacing:0.071820px;}
.ls79{letter-spacing:0.072144px;}
.ls18{letter-spacing:0.075600px;}
.ls9c{letter-spacing:0.078156px;}
.ls38{letter-spacing:0.081000px;}
.ls7{letter-spacing:0.081396px;}
.ls80{letter-spacing:0.084168px;}
.lsb{letter-spacing:0.086184px;}
.ls8c{letter-spacing:0.086400px;}
.ls7f{letter-spacing:0.090180px;}
.ls0{letter-spacing:0.091800px;}
.lsc{letter-spacing:0.095760px;}
.ls52{letter-spacing:0.096192px;}
.ls39{letter-spacing:0.097200px;}
.ls98{letter-spacing:0.100548px;}
.ls94{letter-spacing:0.102204px;}
.ls15{letter-spacing:0.105336px;}
.ls7d{letter-spacing:0.108216px;}
.ls13{letter-spacing:0.110124px;}
.ls61{letter-spacing:0.114228px;}
.ls12{letter-spacing:0.114912px;}
.lsa{letter-spacing:0.119700px;}
.ls8b{letter-spacing:0.120240px;}
.ls9{letter-spacing:0.124488px;}
.ls75{letter-spacing:0.132264px;}
.ls51{letter-spacing:0.136800px;}
.ls71{letter-spacing:0.138276px;}
.ls70{letter-spacing:0.140400px;}
.ls16{letter-spacing:0.148428px;}
.ls8d{letter-spacing:0.150300px;}
.ls26{letter-spacing:0.172368px;}
.ls5e{letter-spacing:0.197640px;}
.ls21{letter-spacing:0.201096px;}
.lse{letter-spacing:0.215460px;}
.ls28{letter-spacing:0.416556px;}
.ls59{letter-spacing:0.653400px;}
.ls78{letter-spacing:0.979956px;}
.ls6a{letter-spacing:1.340676px;}
.ls74{letter-spacing:2.416824px;}
.ls42{letter-spacing:2.777544px;}
.ls65{letter-spacing:3.498984px;}
.ls68{letter-spacing:3.859704px;}
.ls44{letter-spacing:3.893400px;}
.ls90{letter-spacing:4.935852px;}
.ls50{letter-spacing:5.296572px;}
.ls88{letter-spacing:5.657292px;}
.ls6b{letter-spacing:7.460892px;}
.ls5f{letter-spacing:63.768600px;}
.ls17{letter-spacing:848.970000px;}
.ls56{letter-spacing:848.972556px;}
.ls2b{letter-spacing:852.029388px;}
.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;}
}
.ws117{word-spacing:-14.627196px;}
.ws132{word-spacing:-14.621184px;}
.ws18a{word-spacing:-14.609160px;}
.wsb6{word-spacing:-14.603148px;}
.ws165{word-spacing:-14.597136px;}
.ws1b3{word-spacing:-14.591124px;}
.ws189{word-spacing:-14.585112px;}
.ws164{word-spacing:-14.579100px;}
.ws167{word-spacing:-14.573088px;}
.ws1bd{word-spacing:-14.561064px;}
.ws65{word-spacing:-14.524992px;}
.wse4{word-spacing:-14.518980px;}
.ws196{word-spacing:-14.512968px;}
.ws1b2{word-spacing:-14.500944px;}
.ws1bc{word-spacing:-14.494932px;}
.ws0{word-spacing:-14.488920px;}
.ws14e{word-spacing:-14.470884px;}
.ws1ed{word-spacing:-14.452848px;}
.ws1a4{word-spacing:-14.440824px;}
.ws14f{word-spacing:-14.416776px;}
.ws166{word-spacing:-14.374692px;}
.ws1c6{word-spacing:-14.248440px;}
.wsc5{word-spacing:-14.230404px;}
.ws14d{word-spacing:-14.206356px;}
.ws163{word-spacing:-14.176296px;}
.ws197{word-spacing:-12.951576px;}
.ws64{word-spacing:-12.204000px;}
.ws3{word-spacing:-11.754540px;}
.ws1{word-spacing:-11.740176px;}
.ws4{word-spacing:-11.711448px;}
.ws5{word-spacing:-11.653992px;}
.ws2{word-spacing:-11.529504px;}
.ws67{word-spacing:-10.144800px;}
.ws66{word-spacing:-9.350640px;}
.wse5{word-spacing:-9.327312px;}
.ws108{word-spacing:-8.348400px;}
.wsca{word-spacing:-3.727440px;}
.ws1e8{word-spacing:-3.709404px;}
.ws1e5{word-spacing:-3.703392px;}
.wsb5{word-spacing:-3.697380px;}
.ws1d2{word-spacing:-3.685356px;}
.ws187{word-spacing:-3.360708px;}
.ws173{word-spacing:-3.354696px;}
.ws1c1{word-spacing:-3.348684px;}
.ws15e{word-spacing:-3.336660px;}
.ws14c{word-spacing:-3.330648px;}
.wsb4{word-spacing:-3.312612px;}
.wsf6{word-spacing:-3.306600px;}
.ws1e4{word-spacing:-3.300588px;}
.wsf7{word-spacing:-3.282552px;}
.ws116{word-spacing:-3.042072px;}
.ws115{word-spacing:-3.012012px;}
.ws1e0{word-spacing:-2.993976px;}
.ws6d{word-spacing:-2.987964px;}
.ws1a8{word-spacing:-2.981952px;}
.ws16e{word-spacing:-2.975940px;}
.ws1b1{word-spacing:-2.963916px;}
.ws144{word-spacing:-2.957904px;}
.ws37{word-spacing:-2.945880px;}
.ws1df{word-spacing:-2.939868px;}
.ws184{word-spacing:-2.645280px;}
.ws143{word-spacing:-2.633256px;}
.ws2b{word-spacing:-2.627244px;}
.ws36{word-spacing:-2.597184px;}
.ws1b5{word-spacing:-2.591172px;}
.wse8{word-spacing:-2.567124px;}
.ws1e{word-spacing:-2.561580px;}
.ws1d{word-spacing:-2.556792px;}
.ws1b6{word-spacing:-2.549088px;}
.ws27{word-spacing:-2.518488px;}
.ws1b7{word-spacing:-2.482956px;}
.ws155{word-spacing:-2.284560px;}
.ws6f{word-spacing:-2.278548px;}
.ws139{word-spacing:-2.272536px;}
.ws128{word-spacing:-2.266524px;}
.ws141{word-spacing:-2.260512px;}
.ws13a{word-spacing:-2.254500px;}
.ws78{word-spacing:-2.248488px;}
.wsc6{word-spacing:-2.242476px;}
.wsc7{word-spacing:-2.236464px;}
.ws15b{word-spacing:-2.218428px;}
.ws1a2{word-spacing:-2.206404px;}
.ws137{word-spacing:-1.923840px;}
.ws1d4{word-spacing:-1.917828px;}
.ws109{word-spacing:-1.911816px;}
.ws150{word-spacing:-1.905804px;}
.wsbe{word-spacing:-1.899792px;}
.ws12d{word-spacing:-1.893780px;}
.ws1c8{word-spacing:-1.887768px;}
.ws6c{word-spacing:-1.881756px;}
.ws15f{word-spacing:-1.875744px;}
.wsbd{word-spacing:-1.863720px;}
.ws10a{word-spacing:-1.851696px;}
.wsa0{word-spacing:-1.571400px;}
.ws51{word-spacing:-1.560600px;}
.ws9f{word-spacing:-1.555200px;}
.ws1ae{word-spacing:-1.551096px;}
.ws1c9{word-spacing:-1.545084px;}
.ws9e{word-spacing:-1.533600px;}
.wsa7{word-spacing:-1.528200px;}
.ws102{word-spacing:-1.527048px;}
.wsf1{word-spacing:-1.515024px;}
.ws1ca{word-spacing:-1.503000px;}
.wsf2{word-spacing:-1.490976px;}
.ws20{word-spacing:-1.441188px;}
.ws170{word-spacing:-1.418832px;}
.ws99{word-spacing:-1.236600px;}
.ws97{word-spacing:-1.209600px;}
.ws151{word-spacing:-1.208412px;}
.ws70{word-spacing:-1.202400px;}
.wsfc{word-spacing:-1.196388px;}
.ws79{word-spacing:-1.190376px;}
.ws1e2{word-spacing:-1.184364px;}
.ws9a{word-spacing:-1.182600px;}
.ws147{word-spacing:-1.178352px;}
.ws142{word-spacing:-1.172340px;}
.ws148{word-spacing:-1.166328px;}
.ws1ea{word-spacing:-1.160316px;}
.ws1da{word-spacing:-1.154304px;}
.ws1bb{word-spacing:-1.148292px;}
.wsec{word-spacing:-1.142280px;}
.ws1db{word-spacing:-1.136268px;}
.wseb{word-spacing:-1.112220px;}
.ws1ac{word-spacing:-1.028052px;}
.ws193{word-spacing:-0.841680px;}
.ws35{word-spacing:-0.835668px;}
.wsfa{word-spacing:-0.829656px;}
.ws95{word-spacing:-0.823644px;}
.wsf9{word-spacing:-0.817632px;}
.ws11c{word-spacing:-0.805608px;}
.ws16b{word-spacing:-0.793584px;}
.wsd4{word-spacing:-0.787572px;}
.ws1eb{word-spacing:-0.781560px;}
.ws1ab{word-spacing:-0.769536px;}
.ws10{word-spacing:-0.708624px;}
.ws11d{word-spacing:-0.505008px;}
.ws12e{word-spacing:-0.492984px;}
.ws17b{word-spacing:-0.486972px;}
.ws107{word-spacing:-0.480960px;}
.ws1f3{word-spacing:-0.474948px;}
.wsf{word-spacing:-0.469224px;}
.ws33{word-spacing:-0.468936px;}
.ws5b{word-spacing:-0.462924px;}
.ws86{word-spacing:-0.456912px;}
.ws1d9{word-spacing:-0.450900px;}
.ws13f{word-spacing:-0.444888px;}
.wsbf{word-spacing:-0.438876px;}
.ws3d{word-spacing:-0.432864px;}
.wse{word-spacing:-0.421344px;}
.ws1a0{word-spacing:-0.414828px;}
.ws3e{word-spacing:-0.408816px;}
.ws18f{word-spacing:-0.384768px;}
.ws1f1{word-spacing:-0.378756px;}
.ws1dc{word-spacing:-0.222444px;}
.ws17f{word-spacing:-0.198396px;}
.ws118{word-spacing:-0.180360px;}
.ws178{word-spacing:-0.168336px;}
.ws1b0{word-spacing:-0.156312px;}
.ws1f2{word-spacing:-0.144288px;}
.ws21{word-spacing:-0.138852px;}
.ws6b{word-spacing:-0.138276px;}
.wsb{word-spacing:-0.135000px;}
.ws7d{word-spacing:-0.132264px;}
.ws15d{word-spacing:-0.126252px;}
.ws9{word-spacing:-0.125820px;}
.wsfe{word-spacing:-0.120240px;}
.ws38{word-spacing:-0.114228px;}
.ws2a{word-spacing:-0.108216px;}
.ws32{word-spacing:-0.102204px;}
.ws44{word-spacing:-0.096192px;}
.ws7a{word-spacing:-0.090180px;}
.ws72{word-spacing:-0.084168px;}
.ws96{word-spacing:-0.078156px;}
.ws39{word-spacing:-0.072144px;}
.wsc{word-spacing:-0.070200px;}
.ws7{word-spacing:-0.067104px;}
.wsd2{word-spacing:-0.066132px;}
.wsfd{word-spacing:-0.060120px;}
.ws8{word-spacing:-0.058716px;}
.ws1c{word-spacing:-0.057456px;}
.wsa{word-spacing:-0.054108px;}
.ws5a{word-spacing:-0.048600px;}
.ws110{word-spacing:-0.048096px;}
.ws28{word-spacing:-0.047880px;}
.wsad{word-spacing:-0.043200px;}
.wsc2{word-spacing:-0.042084px;}
.ws17d{word-spacing:-0.028440px;}
.ws1de{word-spacing:-0.024048px;}
.ws8d{word-spacing:-0.022752px;}
.ws16a{word-spacing:-0.018036px;}
.wsc3{word-spacing:-0.017064px;}
.ws8c{word-spacing:-0.011376px;}
.wsc4{word-spacing:-0.005688px;}
.ws6{word-spacing:0.000000px;}
.ws190{word-spacing:0.006012px;}
.ws29{word-spacing:0.012024px;}
.ws199{word-spacing:0.108216px;}
.ws1c5{word-spacing:0.162324px;}
.ws1ef{word-spacing:0.180360px;}
.ws1f0{word-spacing:0.186372px;}
.ws59{word-spacing:0.199800px;}
.wsdd{word-spacing:0.204408px;}
.wscc{word-spacing:0.210420px;}
.ws174{word-spacing:0.228456px;}
.ws88{word-spacing:0.234468px;}
.ws81{word-spacing:0.240480px;}
.wsf0{word-spacing:0.246492px;}
.ws198{word-spacing:0.258516px;}
.ws3c{word-spacing:0.264528px;}
.ws6a{word-spacing:0.270540px;}
.ws17e{word-spacing:0.276552px;}
.ws60{word-spacing:0.282564px;}
.ws1d1{word-spacing:0.288576px;}
.ws89{word-spacing:0.294588px;}
.ws80{word-spacing:0.318636px;}
.ws14{word-spacing:0.335160px;}
.ws13e{word-spacing:0.336672px;}
.ws1ee{word-spacing:0.342684px;}
.ws22{word-spacing:0.564984px;}
.ws1e3{word-spacing:0.577152px;}
.ws24{word-spacing:0.584136px;}
.wsab{word-spacing:0.588600px;}
.ws124{word-spacing:0.601200px;}
.ws16{word-spacing:0.603288px;}
.wsa2{word-spacing:0.604800px;}
.wsd0{word-spacing:0.607212px;}
.wsa1{word-spacing:0.610200px;}
.ws126{word-spacing:0.613224px;}
.ws11b{word-spacing:0.619236px;}
.wse2{word-spacing:0.625248px;}
.ws8b{word-spacing:0.631260px;}
.ws8e{word-spacing:0.643284px;}
.wsd3{word-spacing:0.649296px;}
.wsac{word-spacing:0.658800px;}
.ws120{word-spacing:0.667332px;}
.ws23{word-spacing:0.670320px;}
.ws17{word-spacing:0.699048px;}
.ws1b{word-spacing:0.713412px;}
.ws152{word-spacing:0.925848px;}
.wsa9{word-spacing:0.934200px;}
.ws112{word-spacing:0.949896px;}
.ws1a1{word-spacing:0.955908px;}
.wscb{word-spacing:0.961920px;}
.ws6e{word-spacing:0.967932px;}
.ws10f{word-spacing:0.973944px;}
.ws111{word-spacing:0.985968px;}
.wsa8{word-spacing:0.988200px;}
.ws61{word-spacing:0.991980px;}
.wsc8{word-spacing:0.997992px;}
.ws1b9{word-spacing:1.004004px;}
.ws114{word-spacing:1.010016px;}
.ws1b8{word-spacing:1.040076px;}
.ws181{word-spacing:1.310616px;}
.ws100{word-spacing:1.316628px;}
.ws175{word-spacing:1.322640px;}
.ws83{word-spacing:1.328652px;}
.ws153{word-spacing:1.334664px;}
.ws74{word-spacing:1.340676px;}
.wsd1{word-spacing:1.346688px;}
.ws17c{word-spacing:1.352700px;}
.wsff{word-spacing:1.358712px;}
.ws1ce{word-spacing:1.364724px;}
.ws62{word-spacing:1.370736px;}
.ws182{word-spacing:1.382760px;}
.ws101{word-spacing:1.388772px;}
.ws113{word-spacing:1.394784px;}
.ws172{word-spacing:1.400796px;}
.ws75{word-spacing:1.412820px;}
.ws183{word-spacing:1.424844px;}
.ws154{word-spacing:1.575144px;}
.ws85{word-spacing:1.665324px;}
.ws3f{word-spacing:1.671336px;}
.ws103{word-spacing:1.677348px;}
.ws42{word-spacing:1.683360px;}
.ws8a{word-spacing:1.689372px;}
.ws19d{word-spacing:1.695384px;}
.wsda{word-spacing:1.713420px;}
.ws19e{word-spacing:1.719432px;}
.ws158{word-spacing:1.725444px;}
.ws84{word-spacing:1.737468px;}
.ws1b4{word-spacing:1.755504px;}
.ws171{word-spacing:2.014020px;}
.ws69{word-spacing:2.032056px;}
.ws63{word-spacing:2.038068px;}
.wsae{word-spacing:2.044080px;}
.ws1aa{word-spacing:2.050092px;}
.ws106{word-spacing:2.056104px;}
.ws68{word-spacing:2.062116px;}
.wsdf{word-spacing:2.068128px;}
.ws9c{word-spacing:2.068200px;}
.ws19a{word-spacing:2.074140px;}
.ws1d0{word-spacing:2.086164px;}
.ws1a9{word-spacing:2.092176px;}
.ws9b{word-spacing:2.095200px;}
.ws43{word-spacing:2.104200px;}
.ws1c4{word-spacing:2.116224px;}
.ws19b{word-spacing:2.158308px;}
.ws90{word-spacing:2.278548px;}
.ws8f{word-spacing:2.374740px;}
.wsee{word-spacing:2.392776px;}
.ws2f{word-spacing:2.398788px;}
.wsfb{word-spacing:2.404800px;}
.ws82{word-spacing:2.410812px;}
.ws4c{word-spacing:2.413800px;}
.ws1cb{word-spacing:2.416824px;}
.ws18c{word-spacing:2.422836px;}
.ws1cc{word-spacing:2.428848px;}
.wsce{word-spacing:2.434860px;}
.ws127{word-spacing:2.440872px;}
.ws138{word-spacing:2.446884px;}
.ws4d{word-spacing:2.451600px;}
.ws1cd{word-spacing:2.452896px;}
.ws186{word-spacing:2.476944px;}
.ws26{word-spacing:2.700432px;}
.ws185{word-spacing:2.711412px;}
.wse9{word-spacing:2.723436px;}
.ws12{word-spacing:2.724372px;}
.ws14a{word-spacing:2.729448px;}
.wsea{word-spacing:2.747484px;}
.ws31{word-spacing:2.753496px;}
.ws76{word-spacing:2.765520px;}
.wsd5{word-spacing:2.771532px;}
.ws11{word-spacing:2.777040px;}
.ws30{word-spacing:2.777544px;}
.wscf{word-spacing:2.783556px;}
.ws71{word-spacing:2.789568px;}
.wsa6{word-spacing:2.791800px;}
.wsa5{word-spacing:2.797200px;}
.wsb2{word-spacing:2.801592px;}
.wsb3{word-spacing:2.807604px;}
.wsde{word-spacing:2.813616px;}
.ws19c{word-spacing:2.819628px;}
.wsd6{word-spacing:2.825640px;}
.ws25{word-spacing:2.829708px;}
.ws14b{word-spacing:2.849688px;}
.ws13{word-spacing:2.901528px;}
.ws15{word-spacing:3.093048px;}
.ws12f{word-spacing:3.108204px;}
.ws149{word-spacing:3.120228px;}
.ws12c{word-spacing:3.126240px;}
.ws1c2{word-spacing:3.132252px;}
.ws45{word-spacing:3.137400px;}
.ws11e{word-spacing:3.138264px;}
.ws58{word-spacing:3.142800px;}
.ws13d{word-spacing:3.144276px;}
.wsb0{word-spacing:3.150288px;}
.ws130{word-spacing:3.156300px;}
.ws12b{word-spacing:3.162312px;}
.ws57{word-spacing:3.164400px;}
.wscd{word-spacing:3.168324px;}
.ws12a{word-spacing:3.186360px;}
.ws18d{word-spacing:3.192372px;}
.ws46{word-spacing:3.223800px;}
.ws156{word-spacing:3.474936px;}
.ws18{word-spacing:3.476088px;}
.ws135{word-spacing:3.480948px;}
.ws1d6{word-spacing:3.486960px;}
.wsb8{word-spacing:3.492972px;}
.ws125{word-spacing:3.504996px;}
.ws5e{word-spacing:3.511008px;}
.ws2e{word-spacing:3.517020px;}
.ws7f{word-spacing:3.523032px;}
.ws16c{word-spacing:3.529044px;}
.ws19{word-spacing:3.533544px;}
.ws1d7{word-spacing:3.535056px;}
.ws4f{word-spacing:3.542400px;}
.ws1a{word-spacing:3.605364px;}
.ws16d{word-spacing:3.697380px;}
.wsaa{word-spacing:3.817800px;}
.ws4a{word-spacing:3.828600px;}
.ws18e{word-spacing:3.835656px;}
.wsd9{word-spacing:3.847680px;}
.ws119{word-spacing:3.859704px;}
.ws4b{word-spacing:3.861000px;}
.ws10e{word-spacing:3.865716px;}
.ws105{word-spacing:3.871728px;}
.ws11a{word-spacing:3.877740px;}
.ws47{word-spacing:3.882600px;}
.ws104{word-spacing:3.883752px;}
.ws1af{word-spacing:3.889764px;}
.ws4e{word-spacing:3.904200px;}
.ws5d{word-spacing:3.907800px;}
.ws10d{word-spacing:3.919824px;}
.ws50{word-spacing:3.936600px;}
.ws91{word-spacing:4.190364px;}
.ws19f{word-spacing:4.196376px;}
.ws140{word-spacing:4.202388px;}
.wsc1{word-spacing:4.208400px;}
.ws134{word-spacing:4.214412px;}
.ws1e7{word-spacing:4.226436px;}
.wsdb{word-spacing:4.232448px;}
.ws157{word-spacing:4.238460px;}
.ws133{word-spacing:4.244472px;}
.wsf3{word-spacing:4.250484px;}
.ws1e6{word-spacing:4.286556px;}
.wsd{word-spacing:4.347504px;}
.ws52{word-spacing:4.536000px;}
.ws11f{word-spacing:4.563108px;}
.ws180{word-spacing:4.569120px;}
.ws136{word-spacing:4.575132px;}
.ws3a{word-spacing:4.587156px;}
.ws162{word-spacing:4.593168px;}
.ws3b{word-spacing:4.599180px;}
.ws1c3{word-spacing:4.617216px;}
.ws5c{word-spacing:4.629240px;}
.ws129{word-spacing:4.917816px;}
.ws55{word-spacing:4.930200px;}
.wsb9{word-spacing:4.941864px;}
.ws13c{word-spacing:4.947876px;}
.ws56{word-spacing:4.957200px;}
.ws1dd{word-spacing:4.959900px;}
.ws1f{word-spacing:5.056128px;}
.wsa4{word-spacing:5.275800px;}
.wsa3{word-spacing:5.281200px;}
.ws177{word-spacing:5.284548px;}
.ws1cf{word-spacing:5.290560px;}
.ws77{word-spacing:5.302584px;}
.ws1d8{word-spacing:5.308596px;}
.wsaf{word-spacing:5.314608px;}
.ws10c{word-spacing:5.320620px;}
.ws195{word-spacing:5.609196px;}
.ws194{word-spacing:5.627232px;}
.wsc9{word-spacing:5.645268px;}
.ws17a{word-spacing:5.651280px;}
.ws179{word-spacing:5.657292px;}
.ws92{word-spacing:5.663304px;}
.ws9d{word-spacing:5.961600px;}
.ws7c{word-spacing:5.987952px;}
.ws5f{word-spacing:6.005988px;}
.ws1ba{word-spacing:6.012000px;}
.wse7{word-spacing:6.018012px;}
.wse6{word-spacing:6.048072px;}
.ws73{word-spacing:6.384744px;}
.ws1c7{word-spacing:6.468912px;}
.ws98{word-spacing:6.696000px;}
.ws41{word-spacing:6.703380px;}
.ws131{word-spacing:6.715404px;}
.wsba{word-spacing:6.721416px;}
.wsb1{word-spacing:6.727428px;}
.ws40{word-spacing:6.763500px;}
.ws7b{word-spacing:6.775524px;}
.ws191{word-spacing:7.076124px;}
.wsef{word-spacing:7.088148px;}
.ws1a5{word-spacing:7.094160px;}
.ws53{word-spacing:7.095600px;}
.ws192{word-spacing:7.130232px;}
.ws54{word-spacing:7.133400px;}
.wsed{word-spacing:7.484940px;}
.ws1d3{word-spacing:7.490952px;}
.ws34{word-spacing:7.502976px;}
.ws121{word-spacing:7.845660px;}
.wsb7{word-spacing:8.158284px;}
.ws13b{word-spacing:8.176320px;}
.wsf8{word-spacing:8.188344px;}
.ws2d{word-spacing:8.531028px;}
.ws2c{word-spacing:8.555076px;}
.ws188{word-spacing:8.891748px;}
.wsdc{word-spacing:9.246456px;}
.ws145{word-spacing:9.270504px;}
.ws159{word-spacing:9.282528px;}
.ws146{word-spacing:9.300564px;}
.wsc0{word-spacing:9.595152px;}
.ws7e{word-spacing:9.601164px;}
.wsf5{word-spacing:9.637236px;}
.wsf4{word-spacing:9.649260px;}
.ws10b{word-spacing:9.655272px;}
.wsbb{word-spacing:9.991944px;}
.wsd8{word-spacing:10.003968px;}
.wsbc{word-spacing:10.009980px;}
.ws15a{word-spacing:10.022004px;}
.ws18b{word-spacing:10.328616px;}
.ws48{word-spacing:10.643400px;}
.ws49{word-spacing:10.670400px;}
.wse3{word-spacing:10.683324px;}
.wsd7{word-spacing:10.689336px;}
.ws87{word-spacing:11.032020px;}
.ws16f{word-spacing:11.398752px;}
.ws1a6{word-spacing:11.771496px;}
.ws1e9{word-spacing:11.783520px;}
.ws1a7{word-spacing:11.795544px;}
.ws176{word-spacing:12.108168px;}
.ws1e1{word-spacing:12.168288px;}
.ws15c{word-spacing:12.492936px;}
.ws1ec{word-spacing:12.510972px;}
.ws1a3{word-spacing:12.853656px;}
.ws1d5{word-spacing:13.238424px;}
.ws169{word-spacing:13.539024px;}
.ws168{word-spacing:13.605156px;}
.ws93{word-spacing:14.645232px;}
.ws94{word-spacing:14.651244px;}
.ws1bf{word-spacing:14.663268px;}
.ws1be{word-spacing:14.981904px;}
.ws1ad{word-spacing:15.366672px;}
.ws1c0{word-spacing:15.384708px;}
.wse0{word-spacing:17.176284px;}
.wse1{word-spacing:17.344620px;}
.ws160{word-spacing:17.464860px;}
.ws161{word-spacing:17.524980px;}
.ws122{word-spacing:19.021968px;}
.ws123{word-spacing:19.027980px;}
._8{margin-left:-8.519004px;}
._7{margin-left:-7.406784px;}
._6{margin-left:-6.312600px;}
._5{margin-left:-5.218416px;}
._3{margin-left:-3.942000px;}
._2{margin-left:-2.801592px;}
._1{margin-left:-1.082088px;}
._0{width:1.517796px;}
._4{width:3.207204px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(38,38,38);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs2{font-size:47.880000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs4{font-size:65.880000px;}
.fs3{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.590300px;}
.y1e5{bottom:91.146627px;}
.y258{bottom:91.505547px;}
.y206{bottom:93.390300px;}
.y23f{bottom:93.572838px;}
.y6d{bottom:94.020300px;}
.y218{bottom:95.371569px;}
.yd0{bottom:97.439391px;}
.y1fa{bottom:99.783036px;}
.y4b{bottom:99.960750px;}
.y28d{bottom:101.492703px;}
.y273{bottom:102.752838px;}
.y108{bottom:103.653882px;}
.y1b0{bottom:106.622019px;}
.y6c{bottom:110.310300px;}
.y23e{bottom:113.372415px;}
.y11e{bottom:114.090300px;}
.y1e4{bottom:114.186114px;}
.y257{bottom:114.545034px;}
.y217{bottom:115.171146px;}
.ycf{bottom:116.159256px;}
.y19c{bottom:117.331173px;}
.y4a{bottom:118.770795px;}
.y1f9{bottom:119.582613px;}
.y28c{bottom:120.212568px;}
.y272{bottom:122.552415px;}
.y205{bottom:122.730300px;}
.y107{bottom:123.453459px;}
.y1af{bottom:125.341884px;}
.y6b{bottom:126.600300px;}
.y11d{bottom:126.960840px;}
.y13c{bottom:131.909283px;}
.yf4{bottom:131.910300px;}
.y23d{bottom:133.171992px;}
.y29a{bottom:134.163435px;}
.yce{bottom:134.969301px;}
.y216{bottom:134.970723px;}
.y19b{bottom:136.051038px;}
.y1e3{bottom:137.225601px;}
.y49{bottom:137.490660px;}
.y256{bottom:137.584521px;}
.y28b{bottom:139.022613px;}
.y1f8{bottom:139.382190px;}
.y150{bottom:140.103291px;}
.y271{bottom:142.351992px;}
.ya8{bottom:142.980300px;}
.y106{bottom:143.253036px;}
.yf3{bottom:143.340381px;}
.y190{bottom:143.341263px;}
.y1ae{bottom:144.061749px;}
.y92{bottom:147.662856px;}
.y6a{bottom:148.290300px;}
.y13b{bottom:152.429742px;}
.y23c{bottom:152.971569px;}
.ycd{bottom:153.689166px;}
.y215{bottom:154.770300px;}
.y19a{bottom:154.861083px;}
.y48{bottom:156.210525px;}
.y28a{bottom:157.742478px;}
.y14f{bottom:158.913336px;}
.y1f7{bottom:159.181767px;}
.ya7{bottom:159.360300px;}
.y16d{bottom:159.628941px;}
.y69{bottom:159.632325px;}
.y1e2{bottom:160.265088px;}
.y255{bottom:160.624008px;}
.y270{bottom:162.151569px;}
.y1ad{bottom:162.871794px;}
.y105{bottom:163.052613px;}
.y1cd{bottom:164.670300px;}
.yf2{bottom:166.560228px;}
.y91{bottom:170.702343px;}
.ycc{bottom:172.409031px;}
.y23b{bottom:172.771146px;}
.y13a{bottom:172.860021px;}
.y199{bottom:173.580948px;}
.y47{bottom:175.020570px;}
.y214{bottom:175.290624px;}
.y18f{bottom:175.380714px;}
.y1cc{bottom:176.012460px;}
.y289{bottom:176.462343px;}
.y14e{bottom:177.633201px;}
.y1f6{bottom:178.981344px;}
.ya6{bottom:180.960300px;}
.y1ac{bottom:181.591659px;}
.y26f{bottom:181.951146px;}
.y104{bottom:182.852190px;}
.y1e1{bottom:183.304575px;}
.y254{bottom:183.663495px;}
.yf1{bottom:185.370273px;}
.y11c{bottom:188.520714px;}
.ycb{bottom:191.219076px;}
.y198{bottom:192.300813px;}
.ya5{bottom:192.389031px;}
.y23a{bottom:192.570723px;}
.y139{bottom:193.290300px;}
.y46{bottom:193.740435px;}
.y90{bottom:193.741830px;}
.y18e{bottom:194.100579px;}
.y288{bottom:195.272388px;}
.y68{bottom:196.352118px;}
.y14d{bottom:196.353066px;}
.y2b3{bottom:196.440291px;}
.y1f5{bottom:198.780921px;}
.y213{bottom:200.040525px;}
.y26e{bottom:201.750723px;}
.y103{bottom:202.651767px;}
.yf0{bottom:204.090138px;}
.y1ab{bottom:206.341560px;}
.y1e0{bottom:206.344062px;}
.y253{bottom:206.702982px;}
.yca{bottom:209.938941px;}
.y1cb{bottom:210.211722px;}
.y239{bottom:212.370300px;}
.y45{bottom:212.460300px;}
.y18d{bottom:212.910624px;}
.y11b{bottom:213.270615px;}
.y16c{bottom:214.799562px;}
.y138{bottom:215.159004px;}
.y67{bottom:215.162163px;}
.y14c{bottom:215.163111px;}
.y197{bottom:215.340300px;}
.y8f{bottom:216.781317px;}
.y1f4{bottom:218.490723px;}
.y212{bottom:218.850570px;}
.y287{bottom:220.022289px;}
.y26d{bottom:221.550300px;}
.y102{bottom:222.361569px;}
.yef{bottom:222.810003px;}
.ya4{bottom:224.969562px;}
.yc9{bottom:228.658806px;}
.y1df{bottom:229.383549px;}
.y252{bottom:229.742469px;}
.y11a{bottom:231.990480px;}
.y238{bottom:232.891578px;}
.y66{bottom:233.882028px;}
.y14b{bottom:233.882976px;}
.y2b2{bottom:233.970300px;}
.y1ca{bottom:234.961623px;}
.y16b{bottom:235.229841px;}
.y137{bottom:235.589283px;}
.y211{bottom:237.570435px;}
.y18c{bottom:237.660525px;}
.y1f3{bottom:238.290300px;}
.y44{bottom:239.730300px;}
.y8e{bottom:239.820804px;}
.y196{bottom:240.630300px;}
.yee{bottom:241.620048px;}
.y101{bottom:242.161146px;}
.y1aa{bottom:243.061353px;}
.y26c{bottom:243.782046px;}
.ya3{bottom:245.399841px;}
.yc8{bottom:247.468851px;}
.y226{bottom:248.731623px;}
.y119{bottom:250.800525px;}
.y1de{bottom:252.423036px;}
.y65{bottom:252.601893px;}
.y14a{bottom:252.602841px;}
.y251{bottom:252.781956px;}
.y1c9{bottom:253.771668px;}
.y16a{bottom:255.750300px;}
.y136{bottom:256.019562px;}
.y210{bottom:256.290300px;}
.y18b{bottom:256.380390px;}
.y43{bottom:256.560300px;}
.y286{bottom:256.742082px;}
.y237{bottom:257.641479px;}
.y1f2{bottom:260.522001px;}
.y1a9{bottom:261.871398px;}
.y100{bottom:261.960723px;}
.y8d{bottom:264.570705px;}
.ya2{bottom:265.920300px;}
.y2b1{bottom:266.102787px;}
.yc7{bottom:266.188716px;}
.yed{bottom:266.369949px;}
.y26b{bottom:268.531947px;}
.y118{bottom:269.520390px;}
.y195{bottom:269.970300px;}
.y64{bottom:271.321758px;}
.y149{bottom:271.322706px;}
.y1c8{bottom:272.491533px;}
.y1f{bottom:272.670300px;}
.y42{bottom:273.480300px;}
.y225{bottom:273.481524px;}
.y18a{bottom:275.100255px;}
.y285{bottom:275.461947px;}
.y1dd{bottom:275.462523px;}
.y236{bottom:276.361344px;}
.y135{bottom:276.449841px;}
.y250{bottom:277.531857px;}
.y20f{bottom:278.609220px;}
.y1f1{bottom:279.332046px;}
.y1a8{bottom:280.591263px;}
.yff{bottom:281.760300px;}
.y8c{bottom:283.380750px;}
.y169{bottom:284.818302px;}
.y2b0{bottom:284.822652px;}
.yc6{bottom:284.908581px;}
.yec{bottom:285.089814px;}
.y26a{bottom:287.251812px;}
.y117{bottom:288.240255px;}
.y63{bottom:290.131803px;}
.y148{bottom:290.132751px;}
.y41{bottom:290.310300px;}
.y1c7{bottom:291.211398px;}
.ya1{bottom:292.020795px;}
.y224{bottom:292.291569px;}
.y189{bottom:293.909310px;}
.y284{bottom:294.271992px;}
.y235{bottom:295.081209px;}
.y1e{bottom:295.350300px;}
.y299{bottom:296.072607px;}
.y24f{bottom:296.251722px;}
.y134{bottom:296.970300px;}
.y1f0{bottom:298.051911px;}
.y1dc{bottom:298.502010px;}
.y1a7{bottom:299.311128px;}
.y20e{bottom:301.379751px;}
.y8b{bottom:302.100615px;}
.yeb{bottom:303.809679px;}
.yfe{bottom:303.990480px;}
.y269{bottom:306.061857px;}
.y116{bottom:307.050984px;}
.y40{bottom:307.230300px;}
.y62{bottom:308.851668px;}
.y1c6{bottom:310.021443px;}
.ya0{bottom:310.740660px;}
.y223{bottom:311.011434px;}
.y188{bottom:312.629175px;}
.y2af{bottom:312.632661px;}
.y283{bottom:312.991857px;}
.y234{bottom:313.891254px;}
.y168{bottom:314.248545px;}
.yc5{bottom:314.338824px;}
.y147{bottom:314.882652px;}
.y24e{bottom:314.971587px;}
.y1d{bottom:317.310300px;}
.y1a6{bottom:318.030993px;}
.y133{bottom:318.749562px;}
.y8a{bottom:320.820480px;}
.y1db{bottom:321.541497px;}
.yea{bottom:322.619724px;}
.yfd{bottom:322.800525px;}
.y3f{bottom:324.060300px;}
.y268{bottom:324.781722px;}
.y9f{bottom:329.460525px;}
.y222{bottom:329.731299px;}
.y187{bottom:331.349040px;}
.y115{bottom:331.710705px;}
.y282{bottom:331.711722px;}
.y233{bottom:332.611119px;}
.y1ef{bottom:333.151470px;}
.y20d{bottom:333.240300px;}
.y61{bottom:333.601569px;}
.y146{bottom:333.602517px;}
.y24d{bottom:333.781632px;}
.y167{bottom:334.678824px;}
.y1c5{bottom:334.771344px;}
.yc4{bottom:334.859283px;}
.y1a5{bottom:336.841038px;}
.y132{bottom:339.270021px;}
.y89{bottom:339.630525px;}
.y2ae{bottom:340.352490px;}
.y3e{bottom:340.980300px;}
.ye9{bottom:341.339589px;}
.yfc{bottom:341.520390px;}
.y267{bottom:343.501587px;}
.y1da{bottom:346.291398px;}
.y9e{bottom:348.270570px;}
.y114{bottom:350.520750px;}
.y281{bottom:350.521767px;}
.y232{bottom:351.330984px;}
.y1c{bottom:351.782676px;}
.y60{bottom:352.321434px;}
.y145{bottom:352.322382px;}
.y24c{bottom:352.501497px;}
.y1c4{bottom:353.491209px;}
.y221{bottom:354.571380px;}
.y166{bottom:355.199283px;}
.yc3{bottom:355.289562px;}
.y1a4{bottom:355.560903px;}
.y3d{bottom:357.810300px;}
.y88{bottom:358.350390px;}
.y2ad{bottom:359.072355px;}
.y131{bottom:359.700300px;}
.ye8{bottom:360.059454px;}
.yfb{bottom:360.240255px;}
.y204{bottom:360.690300px;}
.y186{bottom:360.779283px;}
.y266{bottom:362.311632px;}
.y1d9{bottom:365.011263px;}
.y1b{bottom:365.372217px;}
.y9d{bottom:366.990435px;}
.y113{bottom:369.240615px;}
.y280{bottom:369.241632px;}
.y1ee{bottom:369.871263px;}
.y231{bottom:370.141029px;}
.y5f{bottom:371.131479px;}
.y144{bottom:371.132427px;}
.y1c3{bottom:372.211074px;}
.y1a3{bottom:374.280768px;}
.y3c{bottom:374.730300px;}
.y165{bottom:375.629562px;}
.yc2{bottom:375.719841px;}
.y87{bottom:377.070255px;}
.y24b{bottom:377.251398px;}
.ye7{bottom:378.779319px;}
.yfa{bottom:379.050300px;}
.y1a{bottom:379.052730px;}
.y265{bottom:381.031497px;}
.y185{bottom:381.299742px;}
.y1d8{bottom:383.821308px;}
.y9c{bottom:385.710660px;}
.y130{bottom:385.799016px;}
.y203{bottom:385.980300px;}
.y2ac{bottom:386.882364px;}
.y112{bottom:387.960480px;}
.y27f{bottom:387.961497px;}
.y1ed{bottom:388.591128px;}
.y230{bottom:388.860894px;}
.y5e{bottom:389.851344px;}
.y143{bottom:389.852292px;}
.y1c2{bottom:391.021119px;}
.y220{bottom:391.291173px;}
.y3b{bottom:391.560300px;}
.y19{bottom:392.642271px;}
.y1a2{bottom:393.090813px;}
.y86{bottom:395.880300px;}
.y24a{bottom:395.971263px;}
.y164{bottom:396.059841px;}
.yc1{bottom:396.240300px;}
.y264{bottom:399.751362px;}
.y184{bottom:401.730021px;}
.y1d7{bottom:402.541173px;}
.yf9{bottom:404.340723px;}
.y9b{bottom:404.430525px;}
.y12f{bottom:404.518881px;}
.y2ab{bottom:405.602229px;}
.y111{bottom:406.770525px;}
.y1ec{bottom:407.310993px;}
.ye6{bottom:408.299742px;}
.y3a{bottom:408.480300px;}
.y5d{bottom:408.571209px;}
.y142{bottom:408.572157px;}
.y1c1{bottom:409.740984px;}
.y21f{bottom:410.011038px;}
.y27e{bottom:412.711398px;}
.y22f{bottom:413.610795px;}
.y249{bottom:414.781308px;}
.y18{bottom:415.321830px;}
.y1a1{bottom:416.130300px;}
.y163{bottom:416.580300px;}
.yc0{bottom:418.018725px;}
.y263{bottom:418.561407px;}
.y202{bottom:420.271038px;}
.y1d6{bottom:421.261038px;}
.y183{bottom:422.160300px;}
.y85{bottom:423.060300px;}
.y9a{bottom:423.240570px;}
.y12e{bottom:423.328926px;}
.y39{bottom:425.310300px;}
.y110{bottom:425.490390px;}
.y1eb{bottom:426.121038px;}
.y5c{bottom:427.381254px;}
.y141{bottom:427.382202px;}
.y1c0{bottom:428.460849px;}
.ye5{bottom:428.730021px;}
.y21e{bottom:428.730903px;}
.y17{bottom:428.911371px;}
.y27d{bottom:431.431263px;}
.y22e{bottom:432.330660px;}
.y2aa{bottom:433.322058px;}
.y248{bottom:433.501173px;}
.yf8{bottom:436.110300px;}
.y162{bottom:438.358266px;}
.ybf{bottom:438.449004px;}
.y201{bottom:438.990903px;}
.y84{bottom:439.980300px;}
.y1d5{bottom:439.980903px;}
.y1a0{bottom:441.330300px;}
.y99{bottom:441.960435px;}
.y12d{bottom:442.048791px;}
.y38{bottom:442.230300px;}
.y16{bottom:442.591884px;}
.y262{bottom:443.311308px;}
.y182{bottom:444.029283px;}
.y10f{bottom:444.210255px;}
.y1ea{bottom:444.840903px;}
.y5b{bottom:446.101119px;}
.y140{bottom:446.102067px;}
.y1bf{bottom:447.180714px;}
.y21d{bottom:447.450768px;}
.ye4{bottom:449.160300px;}
.y27c{bottom:450.241308px;}
.y22d{bottom:451.050525px;}
.y247{bottom:452.221038px;}
.y15{bottom:456.181425px;}
.y83{bottom:456.810300px;}
.y200{bottom:457.710768px;}
.y161{bottom:458.788545px;}
.y1d4{bottom:458.790948px;}
.ybe{bottom:458.879283px;}
.y37{bottom:459.060300px;}
.y98{bottom:460.680300px;}
.y12c{bottom:460.768656px;}
.y2a9{bottom:461.041887px;}
.y261{bottom:462.031173px;}
.y10e{bottom:463.020300px;}
.y1e9{bottom:463.560768px;}
.y181{bottom:464.459562px;}
.y5a{bottom:464.820984px;}
.y13f{bottom:464.821932px;}
.yf7{bottom:465.360300px;}
.y1be{bottom:465.990759px;}
.y21c{bottom:466.260813px;}
.y27b{bottom:468.961173px;}
.ye3{bottom:469.680300px;}
.y22c{bottom:469.860570px;}
.y19f{bottom:470.670300px;}
.y298{bottom:470.851968px;}
.y246{bottom:471.031083px;}
.y82{bottom:473.640300px;}
.y36{bottom:475.980300px;}
.y1ff{bottom:476.520813px;}
.y1d3{bottom:477.510813px;}
.y14{bottom:478.860984px;}
.y160{bottom:479.218824px;}
.ybd{bottom:479.399742px;}
.y12b{bottom:479.578701px;}
.y2a8{bottom:479.851932px;}
.y260{bottom:480.751038px;}
.y1e8{bottom:482.370813px;}
.y97{bottom:483.000300px;}
.y13e{bottom:483.631977px;}
.y1bd{bottom:484.710624px;}
.y180{bottom:484.889841px;}
.y27a{bottom:487.681038px;}
.y10d{bottom:488.310723px;}
.y22b{bottom:488.580435px;}
.y21b{bottom:489.300300px;}
.y59{bottom:489.570885px;}
.y297{bottom:489.571833px;}
.y245{bottom:489.750948px;}
.y81{bottom:490.560300px;}
.ye2{bottom:491.459283px;}
.y13{bottom:492.450525px;}
.y12a{bottom:498.298566px;}
.y25f{bottom:499.470903px;}
.y1fe{bottom:499.560300px;}
.y15f{bottom:499.739283px;}
.ybc{bottom:499.830021px;}
.y1d2{bottom:500.550300px;}
.y35{bottom:502.351842px;}
.y96{bottom:502.800723px;}
.y1bc{bottom:503.430489px;}
.y17f{bottom:505.410300px;}
.y12{bottom:506.131038px;}
.y279{bottom:506.491083px;}
.y22a{bottom:507.300300px;}
.y80{bottom:507.390300px;}
.y2a7{bottom:507.571761px;}
.y58{bottom:508.290750px;}
.y296{bottom:508.291698px;}
.y244{bottom:508.470813px;}
.ye1{bottom:511.889562px;}
.y21a{bottom:514.500300px;}
.y129{bottom:517.018431px;}
.y25e{bottom:518.280948px;}
.y11{bottom:519.720579px;}
.y10c{bottom:520.080300px;}
.y15e{bottom:520.169562px;}
.ybb{bottom:520.260300px;}
.y34{bottom:521.071707px;}
.y95{bottom:522.600300px;}
.y7f{bottom:524.310300px;}
.y1fd{bottom:524.760300px;}
.y278{bottom:525.210948px;}
.y1d1{bottom:525.840300px;}
.y2a6{bottom:526.291626px;}
.y57{bottom:527.100795px;}
.y295{bottom:527.101743px;}
.y17e{bottom:527.189004px;}
.y1bb{bottom:528.180390px;}
.y1e7{bottom:530.610300px;}
.y243{bottom:531.510300px;}
.ye0{bottom:532.319841px;}
.y229{bottom:532.590300px;}
.y10{bottom:533.401092px;}
.y25d{bottom:537.000813px;}
.y33{bottom:539.791572px;}
.y15d{bottom:540.599841px;}
.y7e{bottom:541.140300px;}
.yba{bottom:542.129133px;}
.y219{bottom:543.930300px;}
.y277{bottom:543.930813px;}
.y56{bottom:545.820660px;}
.y294{bottom:545.821608px;}
.y128{bottom:546.448674px;}
.y1ba{bottom:546.990435px;}
.yf{bottom:546.990633px;}
.y17d{bottom:547.619283px;}
.y10b{bottom:549.330300px;}
.ydf{bottom:552.840300px;}
.y1fc{bottom:554.100300px;}
.y2a5{bottom:554.101635px;}
.y1d0{bottom:555.180300px;}
.y242{bottom:556.800300px;}
.y7d{bottom:558.060300px;}
.y32{bottom:558.601617px;}
.y1e6{bottom:559.950300px;}
.y25c{bottom:560.040300px;}
.y15c{bottom:561.120300px;}
.y228{bottom:561.930300px;}
.yb9{bottom:562.559412px;}
.y55{bottom:564.540525px;}
.y293{bottom:564.541473px;}
.y1b9{bottom:565.710525px;}
.y127{bottom:566.969133px;}
.y276{bottom:566.970300px;}
.y17c{bottom:568.049562px;}
.ye{bottom:569.670192px;}
.y2a4{bottom:572.821500px;}
.yde{bottom:574.619562px;}
.y7c{bottom:574.890300px;}
.y31{bottom:577.321482px;}
.y15b{bottom:582.899133px;}
.yb8{bottom:582.989691px;}
.yd{bottom:583.259733px;}
.y54{bottom:583.350570px;}
.y292{bottom:583.351518px;}
.y1b8{bottom:584.430390px;}
.y25b{bottom:585.330300px;}
.y241{bottom:586.140300px;}
.y126{bottom:587.399412px;}
.y17b{bottom:588.570021px;}
.y7b{bottom:591.810300px;}
.y275{bottom:592.260300px;}
.ydd{bottom:595.140021px;}
.y30{bottom:596.041347px;}
.yc{bottom:596.940246px;}
.y20c{bottom:600.181185px;}
.y2a3{bottom:600.541329px;}
.y53{bottom:602.070435px;}
.y13d{bottom:602.071383px;}
.y1b7{bottom:603.240435px;}
.y15a{bottom:603.329412px;}
.yb7{bottom:603.510150px;}
.y125{bottom:607.829691px;}
.y7a{bottom:608.640300px;}
.y17a{bottom:609.000300px;}
.yb{bottom:610.529787px;}
.y25a{bottom:614.580300px;}
.y2f{bottom:614.851392px;}
.ydc{bottom:615.570300px;}
.y2a2{bottom:619.351374px;}
.y52{bottom:620.791248px;}
.y274{bottom:621.600300px;}
.y1b6{bottom:621.960300px;}
.y20b{bottom:623.220672px;}
.y159{bottom:623.759691px;}
.ya{bottom:624.210300px;}
.yb6{bottom:625.288854px;}
.y79{bottom:625.560300px;}
.y194{bottom:626.820741px;}
.y124{bottom:628.350150px;}
.y2e{bottom:633.571257px;}
.ydb{bottom:637.348824px;}
.y179{bottom:638.068860px;}
.y51{bottom:639.601293px;}
.y78{bottom:642.390300px;}
.y158{bottom:644.280150px;}
.y291{bottom:645.541149px;}
.yb5{bottom:645.719133px;}
.y9{bottom:646.170300px;}
.y2a1{bottom:647.071203px;}
.y1b5{bottom:647.250573px;}
.y20a{bottom:648.509601px;}
.y193{bottom:649.500300px;}
.y123{bottom:650.128854px;}
.yda{bottom:657.869283px;}
.y2d{bottom:658.321158px;}
.y77{bottom:659.310300px;}
.y290{bottom:664.351194px;}
.y2a0{bottom:665.791068px;}
.yb4{bottom:666.149412px;}
.y178{bottom:667.589283px;}
.y122{bottom:670.559133px;}
.y76{bottom:676.230300px;}
.y157{bottom:677.040699px;}
.y2c{bottom:677.041023px;}
.yd9{bottom:678.299562px;}
.y1b4{bottom:679.020150px;}
.y209{bottom:680.370150px;}
.y8{bottom:682.350150px;}
.y28f{bottom:683.071059px;}
.y192{bottom:683.790996px;}
.yb3{bottom:686.669871px;}
.y177{bottom:688.019562px;}
.y121{bottom:690.989412px;}
.y29f{bottom:693.601077px;}
.y2b{bottom:695.851068px;}
.yd8{bottom:698.729841px;}
.y7{bottom:699.270300px;}
.y156{bottom:701.790600px;}
.y28e{bottom:701.790924px;}
.y75{bottom:702.601041px;}
.yb2{bottom:707.100150px;}
.y1b3{bottom:708.360300px;}
.y176{bottom:708.449841px;}
.y120{bottom:711.509871px;}
.y29e{bottom:712.320942px;}
.y2a{bottom:714.570933px;}
.yd7{bottom:719.250300px;}
.y6{bottom:719.430300px;}
.y155{bottom:720.600645px;}
.y50{bottom:720.600969px;}
.y74{bottom:721.320906px;}
.yb1{bottom:728.878674px;}
.y175{bottom:728.970300px;}
.y11f{bottom:731.940150px;}
.y29{bottom:733.290798px;}
.y154{bottom:739.320510px;}
.y4f{bottom:739.320834px;}
.y73{bottom:740.040771px;}
.yd6{bottom:745.350780px;}
.yb0{bottom:749.399133px;}
.y174{bottom:750.748545px;}
.y28{bottom:752.100843px;}
.y153{bottom:758.040375px;}
.y4e{bottom:758.040699px;}
.y72{bottom:758.760636px;}
.yd5{bottom:764.070645px;}
.yaf{bottom:769.829412px;}
.y173{bottom:771.178824px;}
.y152{bottom:776.760240px;}
.y27{bottom:776.760564px;}
.y71{bottom:777.570681px;}
.y5{bottom:782.520300px;}
.yd4{bottom:782.790510px;}
.y29d{bottom:786.570645px;}
.yae{bottom:790.259691px;}
.y172{bottom:791.609103px;}
.yf6{bottom:793.950300px;}
.y151{bottom:795.570285px;}
.y26{bottom:795.570609px;}
.y70{bottom:796.290546px;}
.y1b2{bottom:800.790741px;}
.yd3{bottom:801.510375px;}
.y208{bottom:802.320582px;}
.y29c{bottom:805.290510px;}
.y4{bottom:808.800300px;}
.yad{bottom:810.780150px;}
.y171{bottom:812.129562px;}
.y25{bottom:814.290474px;}
.y191{bottom:815.010411px;}
.y19e{bottom:816.990300px;}
.yf5{bottom:819.240300px;}
.yd2{bottom:820.320420px;}
.y6f{bottom:821.040447px;}
.y1b1{bottom:823.470300px;}
.y29b{bottom:824.010375px;}
.yac{bottom:832.559133px;}
.y170{bottom:832.559841px;}
.y24{bottom:833.010339px;}
.y3{bottom:835.080300px;}
.yd1{bottom:839.040285px;}
.y207{bottom:839.040375px;}
.y6e{bottom:839.850492px;}
.y1fb{bottom:840.660150px;}
.y19d{bottom:842.280150px;}
.y10a{bottom:843.449742px;}
.y23{bottom:851.820384px;}
.yab{bottom:852.989412px;}
.y16f{bottom:853.080300px;}
.y4d{bottom:857.760240px;}
.y109{bottom:865.949751px;}
.y22{bottom:870.540249px;}
.y94{bottom:871.080300px;}
.y1cf{bottom:872.520300px;}
.yaa{bottom:873.419691px;}
.y16e{bottom:874.859871px;}
.y227{bottom:875.039769px;}
.y240{bottom:875.040591px;}
.y21{bottom:875.400741px;}
.y4c{bottom:876.570285px;}
.y259{bottom:878.010723px;}
.ya9{bottom:893.940150px;}
.y2{bottom:895.290150px;}
.y1ce{bottom:897.720150px;}
.y93{bottom:897.810300px;}
.y20{bottom:898.080300px;}
.h6{height:26.244141px;}
.hb{height:26.345742px;}
.h8{height:34.904707px;}
.h7{height:41.465742px;}
.h4{height:43.671797px;}
.h1{height:49.253906px;}
.h5{height:51.372070px;}
.h9{height:54.834324px;}
.h2{height:54.836016px;}
.hd{height:54.838212px;}
.hc{height:54.839976px;}
.he{height:55.906348px;}
.hf{height:58.240898px;}
.ha{height:60.089766px;}
.h3{height:76.507734px;}
.h0{height:994.500000px;}
.w0{width:663.000000px;}
.x0{left:0.000000px;}
.x9{left:85.050000px;}
.x4{left:88.290000px;}
.x3{left:93.510000px;}
.xd{left:97.830000px;}
.x28{left:102.690000px;}
.x11{left:106.380000px;}
.x23{left:109.080000px;}
.x12{left:133.110000px;}
.xa{left:139.050000px;}
.x2f{left:140.760000px;}
.x25{left:150.750531px;}
.x1a{left:156.780000px;}
.xf{left:166.410000px;}
.x1d{left:171.090000px;}
.x18{left:175.410000px;}
.x33{left:180.720000px;}
.x16{left:190.799757px;}
.x2c{left:197.370000px;}
.x13{left:202.770000px;}
.x20{left:209.430000px;}
.x31{left:217.080000px;}
.x2a{left:234.810000px;}
.x1c{left:243.450000px;}
.x27{left:245.790000px;}
.x2b{left:247.140558px;}
.x22{left:249.480000px;}
.x5{left:250.920000px;}
.x8{left:255.870000px;}
.x2e{left:257.760000px;}
.x10{left:267.120477px;}
.x15{left:281.160000px;}
.x1f{left:283.500000px;}
.x2{left:290.610000px;}
.xc{left:301.049541px;}
.xb{left:304.470000px;}
.x1{left:306.090000px;}
.xe{left:331.469856px;}
.x7{left:463.410000px;}
.x17{left:469.260000px;}
.x6{left:475.650000px;}
.x29{left:492.570000px;}
.x34{left:502.380000px;}
.x32{left:508.050000px;}
.x14{left:520.020000px;}
.x30{left:525.780000px;}
.x21{left:547.650000px;}
.x2d{left:552.240000px;}
.x26{left:566.010000px;}
.x19{left:574.830000px;}
.x1b{left:585.000000px;}
.x24{left:625.050000px;}
.x1e{left:637.740000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.436629pt;}
.ls72{letter-spacing:-2.009344pt;}
.ls45{letter-spacing:-1.977600pt;}
.ls58{letter-spacing:-1.339200pt;}
.ls77{letter-spacing:-1.052768pt;}
.ls9b{letter-spacing:-0.732128pt;}
.ls57{letter-spacing:-0.696000pt;}
.ls9e{letter-spacing:-0.395456pt;}
.ls99{letter-spacing:-0.336672pt;}
.ls87{letter-spacing:-0.325984pt;}
.ls97{letter-spacing:-0.320640pt;}
.ls73{letter-spacing:-0.283232pt;}
.ls82{letter-spacing:-0.277888pt;}
.ls89{letter-spacing:-0.261856pt;}
.ls9f{letter-spacing:-0.256512pt;}
.ls7b{letter-spacing:-0.251168pt;}
.ls66{letter-spacing:-0.229792pt;}
.ls9a{letter-spacing:-0.213760pt;}
.ls7a{letter-spacing:-0.208416pt;}
.ls84{letter-spacing:-0.176352pt;}
.ls67{letter-spacing:-0.149632pt;}
.ls2a{letter-spacing:-0.138944pt;}
.ls8a{letter-spacing:-0.133600pt;}
.ls95{letter-spacing:-0.122912pt;}
.ls85{letter-spacing:-0.106880pt;}
.ls86{letter-spacing:-0.101536pt;}
.ls2c{letter-spacing:-0.091200pt;}
.ls8e{letter-spacing:-0.090848pt;}
.ls1d{letter-spacing:-0.080160pt;}
.ls19{letter-spacing:-0.076800pt;}
.ls83{letter-spacing:-0.074816pt;}
.ls76{letter-spacing:-0.069472pt;}
.ls4d{letter-spacing:-0.064128pt;}
.ls9d{letter-spacing:-0.058784pt;}
.ls4f{letter-spacing:-0.053440pt;}
.ls1f{letter-spacing:-0.051072pt;}
.ls40{letter-spacing:-0.048096pt;}
.ls23{letter-spacing:-0.046816pt;}
.ls43{letter-spacing:-0.043200pt;}
.ls41{letter-spacing:-0.042752pt;}
.ls27{letter-spacing:-0.042560pt;}
.ls47{letter-spacing:-0.038400pt;}
.ls69{letter-spacing:-0.038016pt;}
.ls3d{letter-spacing:-0.037408pt;}
.ls20{letter-spacing:-0.034048pt;}
.ls96{letter-spacing:-0.033600pt;}
.ls3b{letter-spacing:-0.032064pt;}
.ls25{letter-spacing:-0.029792pt;}
.ls3e{letter-spacing:-0.026720pt;}
.ls29{letter-spacing:-0.025536pt;}
.ls93{letter-spacing:-0.024000pt;}
.ls1e{letter-spacing:-0.021376pt;}
.ls1b{letter-spacing:-0.021280pt;}
.ls5a{letter-spacing:-0.019200pt;}
.ls4e{letter-spacing:-0.017280pt;}
.ls3c{letter-spacing:-0.016032pt;}
.ls8f{letter-spacing:-0.015168pt;}
.ls49{letter-spacing:-0.014400pt;}
.ls4a{letter-spacing:-0.010688pt;}
.ls63{letter-spacing:-0.010112pt;}
.ls46{letter-spacing:-0.009600pt;}
.ls22{letter-spacing:-0.008512pt;}
.ls3f{letter-spacing:-0.005344pt;}
.ls62{letter-spacing:-0.005056pt;}
.ls3a{letter-spacing:-0.004800pt;}
.ls24{letter-spacing:-0.004256pt;}
.ls1a{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004800pt;}
.ls60{letter-spacing:0.005056pt;}
.ls2d{letter-spacing:0.005344pt;}
.ls10{letter-spacing:0.008512pt;}
.ls33{letter-spacing:0.009600pt;}
.ls4c{letter-spacing:0.010112pt;}
.ls30{letter-spacing:0.010688pt;}
.ls11{letter-spacing:0.012768pt;}
.ls48{letter-spacing:0.014400pt;}
.ls81{letter-spacing:0.015168pt;}
.ls2e{letter-spacing:0.016032pt;}
.ls14{letter-spacing:0.017024pt;}
.ls55{letter-spacing:0.019200pt;}
.ls6d{letter-spacing:0.021280pt;}
.ls2f{letter-spacing:0.021376pt;}
.ls53{letter-spacing:0.024000pt;}
.lsf{letter-spacing:0.025536pt;}
.ls4b{letter-spacing:0.026720pt;}
.ls35{letter-spacing:0.028800pt;}
.ls6{letter-spacing:0.029792pt;}
.ls31{letter-spacing:0.032064pt;}
.ls32{letter-spacing:0.033600pt;}
.lsd{letter-spacing:0.034048pt;}
.ls2{letter-spacing:0.037280pt;}
.ls7c{letter-spacing:0.037408pt;}
.ls5d{letter-spacing:0.038304pt;}
.ls36{letter-spacing:0.038400pt;}
.ls92{letter-spacing:0.042560pt;}
.ls64{letter-spacing:0.042752pt;}
.ls54{letter-spacing:0.043200pt;}
.ls3{letter-spacing:0.044736pt;}
.ls6c{letter-spacing:0.046816pt;}
.ls37{letter-spacing:0.048000pt;}
.ls1c{letter-spacing:0.048096pt;}
.ls5c{letter-spacing:0.051072pt;}
.ls1{letter-spacing:0.052192pt;}
.ls91{letter-spacing:0.052800pt;}
.ls6f{letter-spacing:0.053440pt;}
.ls6e{letter-spacing:0.055328pt;}
.ls34{letter-spacing:0.057600pt;}
.ls7e{letter-spacing:0.058784pt;}
.ls5b{letter-spacing:0.059584pt;}
.ls4{letter-spacing:0.062400pt;}
.ls8{letter-spacing:0.063840pt;}
.ls79{letter-spacing:0.064128pt;}
.ls18{letter-spacing:0.067200pt;}
.ls9c{letter-spacing:0.069472pt;}
.ls38{letter-spacing:0.072000pt;}
.ls7{letter-spacing:0.072352pt;}
.ls80{letter-spacing:0.074816pt;}
.lsb{letter-spacing:0.076608pt;}
.ls8c{letter-spacing:0.076800pt;}
.ls7f{letter-spacing:0.080160pt;}
.ls0{letter-spacing:0.081600pt;}
.lsc{letter-spacing:0.085120pt;}
.ls52{letter-spacing:0.085504pt;}
.ls39{letter-spacing:0.086400pt;}
.ls98{letter-spacing:0.089376pt;}
.ls94{letter-spacing:0.090848pt;}
.ls15{letter-spacing:0.093632pt;}
.ls7d{letter-spacing:0.096192pt;}
.ls13{letter-spacing:0.097888pt;}
.ls61{letter-spacing:0.101536pt;}
.ls12{letter-spacing:0.102144pt;}
.lsa{letter-spacing:0.106400pt;}
.ls8b{letter-spacing:0.106880pt;}
.ls9{letter-spacing:0.110656pt;}
.ls75{letter-spacing:0.117568pt;}
.ls51{letter-spacing:0.121600pt;}
.ls71{letter-spacing:0.122912pt;}
.ls70{letter-spacing:0.124800pt;}
.ls16{letter-spacing:0.131936pt;}
.ls8d{letter-spacing:0.133600pt;}
.ls26{letter-spacing:0.153216pt;}
.ls5e{letter-spacing:0.175680pt;}
.ls21{letter-spacing:0.178752pt;}
.lse{letter-spacing:0.191520pt;}
.ls28{letter-spacing:0.370272pt;}
.ls59{letter-spacing:0.580800pt;}
.ls78{letter-spacing:0.871072pt;}
.ls6a{letter-spacing:1.191712pt;}
.ls74{letter-spacing:2.148288pt;}
.ls42{letter-spacing:2.468928pt;}
.ls65{letter-spacing:3.110208pt;}
.ls68{letter-spacing:3.430848pt;}
.ls44{letter-spacing:3.460800pt;}
.ls90{letter-spacing:4.387424pt;}
.ls50{letter-spacing:4.708064pt;}
.ls88{letter-spacing:5.028704pt;}
.ls6b{letter-spacing:6.631904pt;}
.ls5f{letter-spacing:56.683200pt;}
.ls17{letter-spacing:754.640000pt;}
.ls56{letter-spacing:754.642272pt;}
.ls2b{letter-spacing:757.359456pt;}
.ws117{word-spacing:-13.001952pt;}
.ws132{word-spacing:-12.996608pt;}
.ws18a{word-spacing:-12.985920pt;}
.wsb6{word-spacing:-12.980576pt;}
.ws165{word-spacing:-12.975232pt;}
.ws1b3{word-spacing:-12.969888pt;}
.ws189{word-spacing:-12.964544pt;}
.ws164{word-spacing:-12.959200pt;}
.ws167{word-spacing:-12.953856pt;}
.ws1bd{word-spacing:-12.943168pt;}
.ws65{word-spacing:-12.911104pt;}
.wse4{word-spacing:-12.905760pt;}
.ws196{word-spacing:-12.900416pt;}
.ws1b2{word-spacing:-12.889728pt;}
.ws1bc{word-spacing:-12.884384pt;}
.ws0{word-spacing:-12.879040pt;}
.ws14e{word-spacing:-12.863008pt;}
.ws1ed{word-spacing:-12.846976pt;}
.ws1a4{word-spacing:-12.836288pt;}
.ws14f{word-spacing:-12.814912pt;}
.ws166{word-spacing:-12.777504pt;}
.ws1c6{word-spacing:-12.665280pt;}
.wsc5{word-spacing:-12.649248pt;}
.ws14d{word-spacing:-12.627872pt;}
.ws163{word-spacing:-12.601152pt;}
.ws197{word-spacing:-11.512512pt;}
.ws64{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.448480pt;}
.ws1{word-spacing:-10.435712pt;}
.ws4{word-spacing:-10.410176pt;}
.ws5{word-spacing:-10.359104pt;}
.ws2{word-spacing:-10.248448pt;}
.ws67{word-spacing:-9.017600pt;}
.ws66{word-spacing:-8.311680pt;}
.wse5{word-spacing:-8.290944pt;}
.ws108{word-spacing:-7.420800pt;}
.wsca{word-spacing:-3.313280pt;}
.ws1e8{word-spacing:-3.297248pt;}
.ws1e5{word-spacing:-3.291904pt;}
.wsb5{word-spacing:-3.286560pt;}
.ws1d2{word-spacing:-3.275872pt;}
.ws187{word-spacing:-2.987296pt;}
.ws173{word-spacing:-2.981952pt;}
.ws1c1{word-spacing:-2.976608pt;}
.ws15e{word-spacing:-2.965920pt;}
.ws14c{word-spacing:-2.960576pt;}
.wsb4{word-spacing:-2.944544pt;}
.wsf6{word-spacing:-2.939200pt;}
.ws1e4{word-spacing:-2.933856pt;}
.wsf7{word-spacing:-2.917824pt;}
.ws116{word-spacing:-2.704064pt;}
.ws115{word-spacing:-2.677344pt;}
.ws1e0{word-spacing:-2.661312pt;}
.ws6d{word-spacing:-2.655968pt;}
.ws1a8{word-spacing:-2.650624pt;}
.ws16e{word-spacing:-2.645280pt;}
.ws1b1{word-spacing:-2.634592pt;}
.ws144{word-spacing:-2.629248pt;}
.ws37{word-spacing:-2.618560pt;}
.ws1df{word-spacing:-2.613216pt;}
.ws184{word-spacing:-2.351360pt;}
.ws143{word-spacing:-2.340672pt;}
.ws2b{word-spacing:-2.335328pt;}
.ws36{word-spacing:-2.308608pt;}
.ws1b5{word-spacing:-2.303264pt;}
.wse8{word-spacing:-2.281888pt;}
.ws1e{word-spacing:-2.276960pt;}
.ws1d{word-spacing:-2.272704pt;}
.ws1b6{word-spacing:-2.265856pt;}
.ws27{word-spacing:-2.238656pt;}
.ws1b7{word-spacing:-2.207072pt;}
.ws155{word-spacing:-2.030720pt;}
.ws6f{word-spacing:-2.025376pt;}
.ws139{word-spacing:-2.020032pt;}
.ws128{word-spacing:-2.014688pt;}
.ws141{word-spacing:-2.009344pt;}
.ws13a{word-spacing:-2.004000pt;}
.ws78{word-spacing:-1.998656pt;}
.wsc6{word-spacing:-1.993312pt;}
.wsc7{word-spacing:-1.987968pt;}
.ws15b{word-spacing:-1.971936pt;}
.ws1a2{word-spacing:-1.961248pt;}
.ws137{word-spacing:-1.710080pt;}
.ws1d4{word-spacing:-1.704736pt;}
.ws109{word-spacing:-1.699392pt;}
.ws150{word-spacing:-1.694048pt;}
.wsbe{word-spacing:-1.688704pt;}
.ws12d{word-spacing:-1.683360pt;}
.ws1c8{word-spacing:-1.678016pt;}
.ws6c{word-spacing:-1.672672pt;}
.ws15f{word-spacing:-1.667328pt;}
.wsbd{word-spacing:-1.656640pt;}
.ws10a{word-spacing:-1.645952pt;}
.wsa0{word-spacing:-1.396800pt;}
.ws51{word-spacing:-1.387200pt;}
.ws9f{word-spacing:-1.382400pt;}
.ws1ae{word-spacing:-1.378752pt;}
.ws1c9{word-spacing:-1.373408pt;}
.ws9e{word-spacing:-1.363200pt;}
.wsa7{word-spacing:-1.358400pt;}
.ws102{word-spacing:-1.357376pt;}
.wsf1{word-spacing:-1.346688pt;}
.ws1ca{word-spacing:-1.336000pt;}
.wsf2{word-spacing:-1.325312pt;}
.ws20{word-spacing:-1.281056pt;}
.ws170{word-spacing:-1.261184pt;}
.ws99{word-spacing:-1.099200pt;}
.ws97{word-spacing:-1.075200pt;}
.ws151{word-spacing:-1.074144pt;}
.ws70{word-spacing:-1.068800pt;}
.wsfc{word-spacing:-1.063456pt;}
.ws79{word-spacing:-1.058112pt;}
.ws1e2{word-spacing:-1.052768pt;}
.ws9a{word-spacing:-1.051200pt;}
.ws147{word-spacing:-1.047424pt;}
.ws142{word-spacing:-1.042080pt;}
.ws148{word-spacing:-1.036736pt;}
.ws1ea{word-spacing:-1.031392pt;}
.ws1da{word-spacing:-1.026048pt;}
.ws1bb{word-spacing:-1.020704pt;}
.wsec{word-spacing:-1.015360pt;}
.ws1db{word-spacing:-1.010016pt;}
.wseb{word-spacing:-0.988640pt;}
.ws1ac{word-spacing:-0.913824pt;}
.ws193{word-spacing:-0.748160pt;}
.ws35{word-spacing:-0.742816pt;}
.wsfa{word-spacing:-0.737472pt;}
.ws95{word-spacing:-0.732128pt;}
.wsf9{word-spacing:-0.726784pt;}
.ws11c{word-spacing:-0.716096pt;}
.ws16b{word-spacing:-0.705408pt;}
.wsd4{word-spacing:-0.700064pt;}
.ws1eb{word-spacing:-0.694720pt;}
.ws1ab{word-spacing:-0.684032pt;}
.ws10{word-spacing:-0.629888pt;}
.ws11d{word-spacing:-0.448896pt;}
.ws12e{word-spacing:-0.438208pt;}
.ws17b{word-spacing:-0.432864pt;}
.ws107{word-spacing:-0.427520pt;}
.ws1f3{word-spacing:-0.422176pt;}
.wsf{word-spacing:-0.417088pt;}
.ws33{word-spacing:-0.416832pt;}
.ws5b{word-spacing:-0.411488pt;}
.ws86{word-spacing:-0.406144pt;}
.ws1d9{word-spacing:-0.400800pt;}
.ws13f{word-spacing:-0.395456pt;}
.wsbf{word-spacing:-0.390112pt;}
.ws3d{word-spacing:-0.384768pt;}
.wse{word-spacing:-0.374528pt;}
.ws1a0{word-spacing:-0.368736pt;}
.ws3e{word-spacing:-0.363392pt;}
.ws18f{word-spacing:-0.342016pt;}
.ws1f1{word-spacing:-0.336672pt;}
.ws1dc{word-spacing:-0.197728pt;}
.ws17f{word-spacing:-0.176352pt;}
.ws118{word-spacing:-0.160320pt;}
.ws178{word-spacing:-0.149632pt;}
.ws1b0{word-spacing:-0.138944pt;}
.ws1f2{word-spacing:-0.128256pt;}
.ws21{word-spacing:-0.123424pt;}
.ws6b{word-spacing:-0.122912pt;}
.wsb{word-spacing:-0.120000pt;}
.ws7d{word-spacing:-0.117568pt;}
.ws15d{word-spacing:-0.112224pt;}
.ws9{word-spacing:-0.111840pt;}
.wsfe{word-spacing:-0.106880pt;}
.ws38{word-spacing:-0.101536pt;}
.ws2a{word-spacing:-0.096192pt;}
.ws32{word-spacing:-0.090848pt;}
.ws44{word-spacing:-0.085504pt;}
.ws7a{word-spacing:-0.080160pt;}
.ws72{word-spacing:-0.074816pt;}
.ws96{word-spacing:-0.069472pt;}
.ws39{word-spacing:-0.064128pt;}
.wsc{word-spacing:-0.062400pt;}
.ws7{word-spacing:-0.059648pt;}
.wsd2{word-spacing:-0.058784pt;}
.wsfd{word-spacing:-0.053440pt;}
.ws8{word-spacing:-0.052192pt;}
.ws1c{word-spacing:-0.051072pt;}
.wsa{word-spacing:-0.048096pt;}
.ws5a{word-spacing:-0.043200pt;}
.ws110{word-spacing:-0.042752pt;}
.ws28{word-spacing:-0.042560pt;}
.wsad{word-spacing:-0.038400pt;}
.wsc2{word-spacing:-0.037408pt;}
.ws17d{word-spacing:-0.025280pt;}
.ws1de{word-spacing:-0.021376pt;}
.ws8d{word-spacing:-0.020224pt;}
.ws16a{word-spacing:-0.016032pt;}
.wsc3{word-spacing:-0.015168pt;}
.ws8c{word-spacing:-0.010112pt;}
.wsc4{word-spacing:-0.005056pt;}
.ws6{word-spacing:0.000000pt;}
.ws190{word-spacing:0.005344pt;}
.ws29{word-spacing:0.010688pt;}
.ws199{word-spacing:0.096192pt;}
.ws1c5{word-spacing:0.144288pt;}
.ws1ef{word-spacing:0.160320pt;}
.ws1f0{word-spacing:0.165664pt;}
.ws59{word-spacing:0.177600pt;}
.wsdd{word-spacing:0.181696pt;}
.wscc{word-spacing:0.187040pt;}
.ws174{word-spacing:0.203072pt;}
.ws88{word-spacing:0.208416pt;}
.ws81{word-spacing:0.213760pt;}
.wsf0{word-spacing:0.219104pt;}
.ws198{word-spacing:0.229792pt;}
.ws3c{word-spacing:0.235136pt;}
.ws6a{word-spacing:0.240480pt;}
.ws17e{word-spacing:0.245824pt;}
.ws60{word-spacing:0.251168pt;}
.ws1d1{word-spacing:0.256512pt;}
.ws89{word-spacing:0.261856pt;}
.ws80{word-spacing:0.283232pt;}
.ws14{word-spacing:0.297920pt;}
.ws13e{word-spacing:0.299264pt;}
.ws1ee{word-spacing:0.304608pt;}
.ws22{word-spacing:0.502208pt;}
.ws1e3{word-spacing:0.513024pt;}
.ws24{word-spacing:0.519232pt;}
.wsab{word-spacing:0.523200pt;}
.ws124{word-spacing:0.534400pt;}
.ws16{word-spacing:0.536256pt;}
.wsa2{word-spacing:0.537600pt;}
.wsd0{word-spacing:0.539744pt;}
.wsa1{word-spacing:0.542400pt;}
.ws126{word-spacing:0.545088pt;}
.ws11b{word-spacing:0.550432pt;}
.wse2{word-spacing:0.555776pt;}
.ws8b{word-spacing:0.561120pt;}
.ws8e{word-spacing:0.571808pt;}
.wsd3{word-spacing:0.577152pt;}
.wsac{word-spacing:0.585600pt;}
.ws120{word-spacing:0.593184pt;}
.ws23{word-spacing:0.595840pt;}
.ws17{word-spacing:0.621376pt;}
.ws1b{word-spacing:0.634144pt;}
.ws152{word-spacing:0.822976pt;}
.wsa9{word-spacing:0.830400pt;}
.ws112{word-spacing:0.844352pt;}
.ws1a1{word-spacing:0.849696pt;}
.wscb{word-spacing:0.855040pt;}
.ws6e{word-spacing:0.860384pt;}
.ws10f{word-spacing:0.865728pt;}
.ws111{word-spacing:0.876416pt;}
.wsa8{word-spacing:0.878400pt;}
.ws61{word-spacing:0.881760pt;}
.wsc8{word-spacing:0.887104pt;}
.ws1b9{word-spacing:0.892448pt;}
.ws114{word-spacing:0.897792pt;}
.ws1b8{word-spacing:0.924512pt;}
.ws181{word-spacing:1.164992pt;}
.ws100{word-spacing:1.170336pt;}
.ws175{word-spacing:1.175680pt;}
.ws83{word-spacing:1.181024pt;}
.ws153{word-spacing:1.186368pt;}
.ws74{word-spacing:1.191712pt;}
.wsd1{word-spacing:1.197056pt;}
.ws17c{word-spacing:1.202400pt;}
.wsff{word-spacing:1.207744pt;}
.ws1ce{word-spacing:1.213088pt;}
.ws62{word-spacing:1.218432pt;}
.ws182{word-spacing:1.229120pt;}
.ws101{word-spacing:1.234464pt;}
.ws113{word-spacing:1.239808pt;}
.ws172{word-spacing:1.245152pt;}
.ws75{word-spacing:1.255840pt;}
.ws183{word-spacing:1.266528pt;}
.ws154{word-spacing:1.400128pt;}
.ws85{word-spacing:1.480288pt;}
.ws3f{word-spacing:1.485632pt;}
.ws103{word-spacing:1.490976pt;}
.ws42{word-spacing:1.496320pt;}
.ws8a{word-spacing:1.501664pt;}
.ws19d{word-spacing:1.507008pt;}
.wsda{word-spacing:1.523040pt;}
.ws19e{word-spacing:1.528384pt;}
.ws158{word-spacing:1.533728pt;}
.ws84{word-spacing:1.544416pt;}
.ws1b4{word-spacing:1.560448pt;}
.ws171{word-spacing:1.790240pt;}
.ws69{word-spacing:1.806272pt;}
.ws63{word-spacing:1.811616pt;}
.wsae{word-spacing:1.816960pt;}
.ws1aa{word-spacing:1.822304pt;}
.ws106{word-spacing:1.827648pt;}
.ws68{word-spacing:1.832992pt;}
.wsdf{word-spacing:1.838336pt;}
.ws9c{word-spacing:1.838400pt;}
.ws19a{word-spacing:1.843680pt;}
.ws1d0{word-spacing:1.854368pt;}
.ws1a9{word-spacing:1.859712pt;}
.ws9b{word-spacing:1.862400pt;}
.ws43{word-spacing:1.870400pt;}
.ws1c4{word-spacing:1.881088pt;}
.ws19b{word-spacing:1.918496pt;}
.ws90{word-spacing:2.025376pt;}
.ws8f{word-spacing:2.110880pt;}
.wsee{word-spacing:2.126912pt;}
.ws2f{word-spacing:2.132256pt;}
.wsfb{word-spacing:2.137600pt;}
.ws82{word-spacing:2.142944pt;}
.ws4c{word-spacing:2.145600pt;}
.ws1cb{word-spacing:2.148288pt;}
.ws18c{word-spacing:2.153632pt;}
.ws1cc{word-spacing:2.158976pt;}
.wsce{word-spacing:2.164320pt;}
.ws127{word-spacing:2.169664pt;}
.ws138{word-spacing:2.175008pt;}
.ws4d{word-spacing:2.179200pt;}
.ws1cd{word-spacing:2.180352pt;}
.ws186{word-spacing:2.201728pt;}
.ws26{word-spacing:2.400384pt;}
.ws185{word-spacing:2.410144pt;}
.wse9{word-spacing:2.420832pt;}
.ws12{word-spacing:2.421664pt;}
.ws14a{word-spacing:2.426176pt;}
.wsea{word-spacing:2.442208pt;}
.ws31{word-spacing:2.447552pt;}
.ws76{word-spacing:2.458240pt;}
.wsd5{word-spacing:2.463584pt;}
.ws11{word-spacing:2.468480pt;}
.ws30{word-spacing:2.468928pt;}
.wscf{word-spacing:2.474272pt;}
.ws71{word-spacing:2.479616pt;}
.wsa6{word-spacing:2.481600pt;}
.wsa5{word-spacing:2.486400pt;}
.wsb2{word-spacing:2.490304pt;}
.wsb3{word-spacing:2.495648pt;}
.wsde{word-spacing:2.500992pt;}
.ws19c{word-spacing:2.506336pt;}
.wsd6{word-spacing:2.511680pt;}
.ws25{word-spacing:2.515296pt;}
.ws14b{word-spacing:2.533056pt;}
.ws13{word-spacing:2.579136pt;}
.ws15{word-spacing:2.749376pt;}
.ws12f{word-spacing:2.762848pt;}
.ws149{word-spacing:2.773536pt;}
.ws12c{word-spacing:2.778880pt;}
.ws1c2{word-spacing:2.784224pt;}
.ws45{word-spacing:2.788800pt;}
.ws11e{word-spacing:2.789568pt;}
.ws58{word-spacing:2.793600pt;}
.ws13d{word-spacing:2.794912pt;}
.wsb0{word-spacing:2.800256pt;}
.ws130{word-spacing:2.805600pt;}
.ws12b{word-spacing:2.810944pt;}
.ws57{word-spacing:2.812800pt;}
.wscd{word-spacing:2.816288pt;}
.ws12a{word-spacing:2.832320pt;}
.ws18d{word-spacing:2.837664pt;}
.ws46{word-spacing:2.865600pt;}
.ws156{word-spacing:3.088832pt;}
.ws18{word-spacing:3.089856pt;}
.ws135{word-spacing:3.094176pt;}
.ws1d6{word-spacing:3.099520pt;}
.wsb8{word-spacing:3.104864pt;}
.ws125{word-spacing:3.115552pt;}
.ws5e{word-spacing:3.120896pt;}
.ws2e{word-spacing:3.126240pt;}
.ws7f{word-spacing:3.131584pt;}
.ws16c{word-spacing:3.136928pt;}
.ws19{word-spacing:3.140928pt;}
.ws1d7{word-spacing:3.142272pt;}
.ws4f{word-spacing:3.148800pt;}
.ws1a{word-spacing:3.204768pt;}
.ws16d{word-spacing:3.286560pt;}
.wsaa{word-spacing:3.393600pt;}
.ws4a{word-spacing:3.403200pt;}
.ws18e{word-spacing:3.409472pt;}
.wsd9{word-spacing:3.420160pt;}
.ws119{word-spacing:3.430848pt;}
.ws4b{word-spacing:3.432000pt;}
.ws10e{word-spacing:3.436192pt;}
.ws105{word-spacing:3.441536pt;}
.ws11a{word-spacing:3.446880pt;}
.ws47{word-spacing:3.451200pt;}
.ws104{word-spacing:3.452224pt;}
.ws1af{word-spacing:3.457568pt;}
.ws4e{word-spacing:3.470400pt;}
.ws5d{word-spacing:3.473600pt;}
.ws10d{word-spacing:3.484288pt;}
.ws50{word-spacing:3.499200pt;}
.ws91{word-spacing:3.724768pt;}
.ws19f{word-spacing:3.730112pt;}
.ws140{word-spacing:3.735456pt;}
.wsc1{word-spacing:3.740800pt;}
.ws134{word-spacing:3.746144pt;}
.ws1e7{word-spacing:3.756832pt;}
.wsdb{word-spacing:3.762176pt;}
.ws157{word-spacing:3.767520pt;}
.ws133{word-spacing:3.772864pt;}
.wsf3{word-spacing:3.778208pt;}
.ws1e6{word-spacing:3.810272pt;}
.wsd{word-spacing:3.864448pt;}
.ws52{word-spacing:4.032000pt;}
.ws11f{word-spacing:4.056096pt;}
.ws180{word-spacing:4.061440pt;}
.ws136{word-spacing:4.066784pt;}
.ws3a{word-spacing:4.077472pt;}
.ws162{word-spacing:4.082816pt;}
.ws3b{word-spacing:4.088160pt;}
.ws1c3{word-spacing:4.104192pt;}
.ws5c{word-spacing:4.114880pt;}
.ws129{word-spacing:4.371392pt;}
.ws55{word-spacing:4.382400pt;}
.wsb9{word-spacing:4.392768pt;}
.ws13c{word-spacing:4.398112pt;}
.ws56{word-spacing:4.406400pt;}
.ws1dd{word-spacing:4.408800pt;}
.ws1f{word-spacing:4.494336pt;}
.wsa4{word-spacing:4.689600pt;}
.wsa3{word-spacing:4.694400pt;}
.ws177{word-spacing:4.697376pt;}
.ws1cf{word-spacing:4.702720pt;}
.ws77{word-spacing:4.713408pt;}
.ws1d8{word-spacing:4.718752pt;}
.wsaf{word-spacing:4.724096pt;}
.ws10c{word-spacing:4.729440pt;}
.ws195{word-spacing:4.985952pt;}
.ws194{word-spacing:5.001984pt;}
.wsc9{word-spacing:5.018016pt;}
.ws17a{word-spacing:5.023360pt;}
.ws179{word-spacing:5.028704pt;}
.ws92{word-spacing:5.034048pt;}
.ws9d{word-spacing:5.299200pt;}
.ws7c{word-spacing:5.322624pt;}
.ws5f{word-spacing:5.338656pt;}
.ws1ba{word-spacing:5.344000pt;}
.wse7{word-spacing:5.349344pt;}
.wse6{word-spacing:5.376064pt;}
.ws73{word-spacing:5.675328pt;}
.ws1c7{word-spacing:5.750144pt;}
.ws98{word-spacing:5.952000pt;}
.ws41{word-spacing:5.958560pt;}
.ws131{word-spacing:5.969248pt;}
.wsba{word-spacing:5.974592pt;}
.wsb1{word-spacing:5.979936pt;}
.ws40{word-spacing:6.012000pt;}
.ws7b{word-spacing:6.022688pt;}
.ws191{word-spacing:6.289888pt;}
.wsef{word-spacing:6.300576pt;}
.ws1a5{word-spacing:6.305920pt;}
.ws53{word-spacing:6.307200pt;}
.ws192{word-spacing:6.337984pt;}
.ws54{word-spacing:6.340800pt;}
.wsed{word-spacing:6.653280pt;}
.ws1d3{word-spacing:6.658624pt;}
.ws34{word-spacing:6.669312pt;}
.ws121{word-spacing:6.973920pt;}
.wsb7{word-spacing:7.251808pt;}
.ws13b{word-spacing:7.267840pt;}
.wsf8{word-spacing:7.278528pt;}
.ws2d{word-spacing:7.583136pt;}
.ws2c{word-spacing:7.604512pt;}
.ws188{word-spacing:7.903776pt;}
.wsdc{word-spacing:8.219072pt;}
.ws145{word-spacing:8.240448pt;}
.ws159{word-spacing:8.251136pt;}
.ws146{word-spacing:8.267168pt;}
.wsc0{word-spacing:8.529024pt;}
.ws7e{word-spacing:8.534368pt;}
.wsf5{word-spacing:8.566432pt;}
.wsf4{word-spacing:8.577120pt;}
.ws10b{word-spacing:8.582464pt;}
.wsbb{word-spacing:8.881728pt;}
.wsd8{word-spacing:8.892416pt;}
.wsbc{word-spacing:8.897760pt;}
.ws15a{word-spacing:8.908448pt;}
.ws18b{word-spacing:9.180992pt;}
.ws48{word-spacing:9.460800pt;}
.ws49{word-spacing:9.484800pt;}
.wse3{word-spacing:9.496288pt;}
.wsd7{word-spacing:9.501632pt;}
.ws87{word-spacing:9.806240pt;}
.ws16f{word-spacing:10.132224pt;}
.ws1a6{word-spacing:10.463552pt;}
.ws1e9{word-spacing:10.474240pt;}
.ws1a7{word-spacing:10.484928pt;}
.ws176{word-spacing:10.762816pt;}
.ws1e1{word-spacing:10.816256pt;}
.ws15c{word-spacing:11.104832pt;}
.ws1ec{word-spacing:11.120864pt;}
.ws1a3{word-spacing:11.425472pt;}
.ws1d5{word-spacing:11.767488pt;}
.ws169{word-spacing:12.034688pt;}
.ws168{word-spacing:12.093472pt;}
.ws93{word-spacing:13.017984pt;}
.ws94{word-spacing:13.023328pt;}
.ws1bf{word-spacing:13.034016pt;}
.ws1be{word-spacing:13.317248pt;}
.ws1ad{word-spacing:13.659264pt;}
.ws1c0{word-spacing:13.675296pt;}
.wse0{word-spacing:15.267808pt;}
.wse1{word-spacing:15.417440pt;}
.ws160{word-spacing:15.524320pt;}
.ws161{word-spacing:15.577760pt;}
.ws122{word-spacing:16.908416pt;}
.ws123{word-spacing:16.913760pt;}
._8{margin-left:-7.572448pt;}
._7{margin-left:-6.583808pt;}
._6{margin-left:-5.611200pt;}
._5{margin-left:-4.638592pt;}
._3{margin-left:-3.504000pt;}
._2{margin-left:-2.490304pt;}
._1{margin-left:-0.961856pt;}
._0{width:1.349152pt;}
._4{width:2.850848pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs4{font-size:58.560000pt;}
.fs3{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.413600pt;}
.y1e5{bottom:81.019224pt;}
.y258{bottom:81.338264pt;}
.y206{bottom:83.013600pt;}
.y23f{bottom:83.175856pt;}
.y6d{bottom:83.573600pt;}
.y218{bottom:84.774728pt;}
.yd0{bottom:86.612792pt;}
.y1fa{bottom:88.696032pt;}
.y4b{bottom:88.854000pt;}
.y28d{bottom:90.215736pt;}
.y273{bottom:91.335856pt;}
.y108{bottom:92.136784pt;}
.y1b0{bottom:94.775128pt;}
.y6c{bottom:98.053600pt;}
.y23e{bottom:100.775480pt;}
.y11e{bottom:101.413600pt;}
.y1e4{bottom:101.498768pt;}
.y257{bottom:101.817808pt;}
.y217{bottom:102.374352pt;}
.ycf{bottom:103.252672pt;}
.y19c{bottom:104.294376pt;}
.y4a{bottom:105.574040pt;}
.y1f9{bottom:106.295656pt;}
.y28c{bottom:106.855616pt;}
.y272{bottom:108.935480pt;}
.y205{bottom:109.093600pt;}
.y107{bottom:109.736408pt;}
.y1af{bottom:111.415008pt;}
.y6b{bottom:112.533600pt;}
.y11d{bottom:112.854080pt;}
.y13c{bottom:117.252696pt;}
.yf4{bottom:117.253600pt;}
.y23d{bottom:118.375104pt;}
.y29a{bottom:119.256387pt;}
.yce{bottom:119.972712pt;}
.y216{bottom:119.973976pt;}
.y19b{bottom:120.934256pt;}
.y1e3{bottom:121.978312pt;}
.y49{bottom:122.213920pt;}
.y256{bottom:122.297352pt;}
.y28b{bottom:123.575656pt;}
.y1f8{bottom:123.895280pt;}
.y150{bottom:124.536259pt;}
.y271{bottom:126.535104pt;}
.ya8{bottom:127.093600pt;}
.y106{bottom:127.336032pt;}
.yf3{bottom:127.413672pt;}
.y190{bottom:127.414456pt;}
.y1ae{bottom:128.054888pt;}
.y92{bottom:131.255872pt;}
.y6a{bottom:131.813600pt;}
.y13b{bottom:135.493104pt;}
.y23c{bottom:135.974728pt;}
.ycd{bottom:136.612592pt;}
.y215{bottom:137.573600pt;}
.y19a{bottom:137.654296pt;}
.y48{bottom:138.853800pt;}
.y28a{bottom:140.215536pt;}
.y14f{bottom:141.256299pt;}
.y1f7{bottom:141.494904pt;}
.ya7{bottom:141.653600pt;}
.y16d{bottom:141.892392pt;}
.y69{bottom:141.895400pt;}
.y1e2{bottom:142.457856pt;}
.y255{bottom:142.776896pt;}
.y270{bottom:144.134728pt;}
.y1ad{bottom:144.774928pt;}
.y105{bottom:144.935656pt;}
.y1cd{bottom:146.373600pt;}
.yf2{bottom:148.053536pt;}
.y91{bottom:151.735416pt;}
.ycc{bottom:153.252472pt;}
.y23b{bottom:153.574352pt;}
.y13a{bottom:153.653352pt;}
.y199{bottom:154.294176pt;}
.y47{bottom:155.573840pt;}
.y214{bottom:155.813888pt;}
.y18f{bottom:155.893968pt;}
.y1cc{bottom:156.455520pt;}
.y289{bottom:156.855416pt;}
.y14e{bottom:157.896179pt;}
.y1f6{bottom:159.094528pt;}
.ya6{bottom:160.853600pt;}
.y1ac{bottom:161.414808pt;}
.y26f{bottom:161.734352pt;}
.y104{bottom:162.535280pt;}
.y1e1{bottom:162.937400pt;}
.y254{bottom:163.256440pt;}
.yf1{bottom:164.773576pt;}
.y11c{bottom:167.573968pt;}
.ycb{bottom:169.972512pt;}
.y198{bottom:170.934056pt;}
.ya5{bottom:171.012472pt;}
.y23a{bottom:171.173976pt;}
.y139{bottom:171.813600pt;}
.y46{bottom:172.213720pt;}
.y90{bottom:172.214960pt;}
.y18e{bottom:172.533848pt;}
.y288{bottom:173.575456pt;}
.y68{bottom:174.535216pt;}
.y14d{bottom:174.536059pt;}
.y2b3{bottom:174.613592pt;}
.y1f5{bottom:176.694152pt;}
.y213{bottom:177.813800pt;}
.y26e{bottom:179.333976pt;}
.y103{bottom:180.134904pt;}
.yf0{bottom:181.413456pt;}
.y1ab{bottom:183.414720pt;}
.y1e0{bottom:183.416944pt;}
.y253{bottom:183.735984pt;}
.yca{bottom:186.612392pt;}
.y1cb{bottom:186.854864pt;}
.y239{bottom:188.773600pt;}
.y45{bottom:188.853600pt;}
.y18d{bottom:189.253888pt;}
.y11b{bottom:189.573880pt;}
.y16c{bottom:190.932944pt;}
.y138{bottom:191.252448pt;}
.y67{bottom:191.255256pt;}
.y14c{bottom:191.256099pt;}
.y197{bottom:191.413600pt;}
.y8f{bottom:192.694504pt;}
.y1f4{bottom:194.213976pt;}
.y212{bottom:194.533840pt;}
.y287{bottom:195.575368pt;}
.y26d{bottom:196.933600pt;}
.y102{bottom:197.654728pt;}
.yef{bottom:198.053336pt;}
.ya4{bottom:199.972944pt;}
.yc9{bottom:203.252272pt;}
.y1df{bottom:203.896488pt;}
.y252{bottom:204.215528pt;}
.y11a{bottom:206.213760pt;}
.y238{bottom:207.014736pt;}
.y66{bottom:207.895136pt;}
.y14b{bottom:207.895979pt;}
.y2b2{bottom:207.973600pt;}
.y1ca{bottom:208.854776pt;}
.y16b{bottom:209.093192pt;}
.y137{bottom:209.412696pt;}
.y211{bottom:211.173720pt;}
.y18c{bottom:211.253800pt;}
.y1f3{bottom:211.813600pt;}
.y44{bottom:213.093600pt;}
.y8e{bottom:213.174048pt;}
.y196{bottom:213.893600pt;}
.yee{bottom:214.773376pt;}
.y101{bottom:215.254352pt;}
.y1aa{bottom:216.054536pt;}
.y26c{bottom:216.695152pt;}
.ya3{bottom:218.133192pt;}
.yc8{bottom:219.972312pt;}
.y226{bottom:221.094776pt;}
.y119{bottom:222.933800pt;}
.y1de{bottom:224.376032pt;}
.y65{bottom:224.535016pt;}
.y14a{bottom:224.535859pt;}
.y251{bottom:224.695072pt;}
.y1c9{bottom:225.574816pt;}
.y16a{bottom:227.333600pt;}
.y136{bottom:227.572944pt;}
.y210{bottom:227.813600pt;}
.y18b{bottom:227.893680pt;}
.y43{bottom:228.053600pt;}
.y286{bottom:228.215184pt;}
.y237{bottom:229.014648pt;}
.y1f2{bottom:231.575112pt;}
.y1a9{bottom:232.774576pt;}
.y100{bottom:232.853976pt;}
.y8d{bottom:235.173960pt;}
.ya2{bottom:236.373600pt;}
.y2b1{bottom:236.535811pt;}
.yc7{bottom:236.612192pt;}
.yed{bottom:236.773288pt;}
.y26b{bottom:238.695064pt;}
.y118{bottom:239.573680pt;}
.y195{bottom:239.973600pt;}
.y64{bottom:241.174896pt;}
.y149{bottom:241.175739pt;}
.y1c8{bottom:242.214696pt;}
.y1f{bottom:242.373600pt;}
.y42{bottom:243.093600pt;}
.y225{bottom:243.094688pt;}
.y18a{bottom:244.533560pt;}
.y285{bottom:244.855064pt;}
.y1dd{bottom:244.855576pt;}
.y236{bottom:245.654528pt;}
.y135{bottom:245.733192pt;}
.y250{bottom:246.694984pt;}
.y20f{bottom:247.652640pt;}
.y1f1{bottom:248.295152pt;}
.y1a8{bottom:249.414456pt;}
.yff{bottom:250.453600pt;}
.y8c{bottom:251.894000pt;}
.y169{bottom:253.171824pt;}
.y2b0{bottom:253.175691pt;}
.yc6{bottom:253.252072pt;}
.yec{bottom:253.413168pt;}
.y26a{bottom:255.334944pt;}
.y117{bottom:256.213560pt;}
.y63{bottom:257.894936pt;}
.y148{bottom:257.895779pt;}
.y41{bottom:258.053600pt;}
.y1c7{bottom:258.854576pt;}
.ya1{bottom:259.574040pt;}
.y224{bottom:259.814728pt;}
.y189{bottom:261.252720pt;}
.y284{bottom:261.575104pt;}
.y235{bottom:262.294408pt;}
.y1e{bottom:262.533600pt;}
.y299{bottom:263.175651pt;}
.y24f{bottom:263.334864pt;}
.y134{bottom:263.973600pt;}
.y1f0{bottom:264.935032pt;}
.y1dc{bottom:265.335120pt;}
.y1a7{bottom:266.054336pt;}
.y20e{bottom:267.893112pt;}
.y8b{bottom:268.533880pt;}
.yeb{bottom:270.053048pt;}
.yfe{bottom:270.213760pt;}
.y269{bottom:272.054984pt;}
.y116{bottom:272.934208pt;}
.y40{bottom:273.093600pt;}
.y62{bottom:274.534816pt;}
.y1c6{bottom:275.574616pt;}
.ya0{bottom:276.213920pt;}
.y223{bottom:276.454608pt;}
.y188{bottom:277.892600pt;}
.y2af{bottom:277.895699pt;}
.y283{bottom:278.214984pt;}
.y234{bottom:279.014448pt;}
.y168{bottom:279.332040pt;}
.yc5{bottom:279.412288pt;}
.y147{bottom:279.895691pt;}
.y24e{bottom:279.974744pt;}
.y1d{bottom:282.053600pt;}
.y1a6{bottom:282.694216pt;}
.y133{bottom:283.332944pt;}
.y8a{bottom:285.173760pt;}
.y1db{bottom:285.814664pt;}
.yea{bottom:286.773088pt;}
.yfd{bottom:286.933800pt;}
.y3f{bottom:288.053600pt;}
.y268{bottom:288.694864pt;}
.y9f{bottom:292.853800pt;}
.y222{bottom:293.094488pt;}
.y187{bottom:294.532480pt;}
.y115{bottom:294.853960pt;}
.y282{bottom:294.854864pt;}
.y233{bottom:295.654328pt;}
.y1ef{bottom:296.134640pt;}
.y20d{bottom:296.213600pt;}
.y61{bottom:296.534728pt;}
.y146{bottom:296.535571pt;}
.y24d{bottom:296.694784pt;}
.y167{bottom:297.492288pt;}
.y1c5{bottom:297.574528pt;}
.yc4{bottom:297.652696pt;}
.y1a5{bottom:299.414256pt;}
.y132{bottom:301.573352pt;}
.y89{bottom:301.893800pt;}
.y2ae{bottom:302.535547pt;}
.y3e{bottom:303.093600pt;}
.ye9{bottom:303.412968pt;}
.yfc{bottom:303.573680pt;}
.y267{bottom:305.334744pt;}
.y1da{bottom:307.814576pt;}
.y9e{bottom:309.573840pt;}
.y114{bottom:311.574000pt;}
.y281{bottom:311.574904pt;}
.y232{bottom:312.294208pt;}
.y1c{bottom:312.695712pt;}
.y60{bottom:313.174608pt;}
.y145{bottom:313.175451pt;}
.y24c{bottom:313.334664pt;}
.y1c4{bottom:314.214408pt;}
.y221{bottom:315.174560pt;}
.y166{bottom:315.732696pt;}
.yc3{bottom:315.812944pt;}
.y1a4{bottom:316.054136pt;}
.y3d{bottom:318.053600pt;}
.y88{bottom:318.533680pt;}
.y2ad{bottom:319.175427pt;}
.y131{bottom:319.733600pt;}
.ye8{bottom:320.052848pt;}
.yfb{bottom:320.213560pt;}
.y204{bottom:320.613600pt;}
.y186{bottom:320.692696pt;}
.y266{bottom:322.054784pt;}
.y1d9{bottom:324.454456pt;}
.y1b{bottom:324.775304pt;}
.y9d{bottom:326.213720pt;}
.y113{bottom:328.213880pt;}
.y280{bottom:328.214784pt;}
.y1ee{bottom:328.774456pt;}
.y231{bottom:329.014248pt;}
.y5f{bottom:329.894648pt;}
.y144{bottom:329.895491pt;}
.y1c3{bottom:330.854288pt;}
.y1a3{bottom:332.694016pt;}
.y3c{bottom:333.093600pt;}
.y165{bottom:333.892944pt;}
.yc2{bottom:333.973192pt;}
.y87{bottom:335.173560pt;}
.y24b{bottom:335.334576pt;}
.ye7{bottom:336.692728pt;}
.yfa{bottom:336.933600pt;}
.y1a{bottom:336.935760pt;}
.y265{bottom:338.694664pt;}
.y185{bottom:338.933104pt;}
.y1d8{bottom:341.174496pt;}
.y9c{bottom:342.853920pt;}
.y130{bottom:342.932459pt;}
.y203{bottom:343.093600pt;}
.y2ac{bottom:343.895435pt;}
.y112{bottom:344.853760pt;}
.y27f{bottom:344.854664pt;}
.y1ed{bottom:345.414336pt;}
.y230{bottom:345.654128pt;}
.y5e{bottom:346.534528pt;}
.y143{bottom:346.535371pt;}
.y1c2{bottom:347.574328pt;}
.y220{bottom:347.814376pt;}
.y3b{bottom:348.053600pt;}
.y19{bottom:349.015352pt;}
.y1a2{bottom:349.414056pt;}
.y86{bottom:351.893600pt;}
.y24a{bottom:351.974456pt;}
.y164{bottom:352.053192pt;}
.yc1{bottom:352.213600pt;}
.y264{bottom:355.334544pt;}
.y184{bottom:357.093352pt;}
.y1d7{bottom:357.814376pt;}
.yf9{bottom:359.413976pt;}
.y9b{bottom:359.493800pt;}
.y12f{bottom:359.572339pt;}
.y2ab{bottom:360.535315pt;}
.y111{bottom:361.573800pt;}
.y1ec{bottom:362.054216pt;}
.ye6{bottom:362.933104pt;}
.y3a{bottom:363.093600pt;}
.y5d{bottom:363.174408pt;}
.y142{bottom:363.175251pt;}
.y1c1{bottom:364.214208pt;}
.y21f{bottom:364.454256pt;}
.y27e{bottom:366.854576pt;}
.y22f{bottom:367.654040pt;}
.y249{bottom:368.694496pt;}
.y18{bottom:369.174960pt;}
.y1a1{bottom:369.893600pt;}
.y163{bottom:370.293600pt;}
.yc0{bottom:371.572200pt;}
.y263{bottom:372.054584pt;}
.y202{bottom:373.574256pt;}
.y1d6{bottom:374.454256pt;}
.y183{bottom:375.253600pt;}
.y85{bottom:376.053600pt;}
.y9a{bottom:376.213840pt;}
.y12e{bottom:376.292379pt;}
.y39{bottom:378.053600pt;}
.y110{bottom:378.213680pt;}
.y1eb{bottom:378.774256pt;}
.y5c{bottom:379.894448pt;}
.y141{bottom:379.895291pt;}
.y1c0{bottom:380.854088pt;}
.ye5{bottom:381.093352pt;}
.y21e{bottom:381.094136pt;}
.y17{bottom:381.254552pt;}
.y27d{bottom:383.494456pt;}
.y22e{bottom:384.293920pt;}
.y2aa{bottom:385.175163pt;}
.y248{bottom:385.334376pt;}
.yf8{bottom:387.653600pt;}
.y162{bottom:389.651792pt;}
.ybf{bottom:389.732448pt;}
.y201{bottom:390.214136pt;}
.y84{bottom:391.093600pt;}
.y1d5{bottom:391.094136pt;}
.y1a0{bottom:392.293600pt;}
.y99{bottom:392.853720pt;}
.y12d{bottom:392.932259pt;}
.y38{bottom:393.093600pt;}
.y16{bottom:393.415008pt;}
.y262{bottom:394.054496pt;}
.y182{bottom:394.692696pt;}
.y10f{bottom:394.853560pt;}
.y1ea{bottom:395.414136pt;}
.y5b{bottom:396.534328pt;}
.y140{bottom:396.535171pt;}
.y1bf{bottom:397.493968pt;}
.y21d{bottom:397.734016pt;}
.ye4{bottom:399.253600pt;}
.y27c{bottom:400.214496pt;}
.y22d{bottom:400.933800pt;}
.y247{bottom:401.974256pt;}
.y15{bottom:405.494600pt;}
.y83{bottom:406.053600pt;}
.y200{bottom:406.854016pt;}
.y161{bottom:407.812040pt;}
.y1d4{bottom:407.814176pt;}
.ybe{bottom:407.892696pt;}
.y37{bottom:408.053600pt;}
.y98{bottom:409.493600pt;}
.y12c{bottom:409.572139pt;}
.y2a9{bottom:409.815011pt;}
.y261{bottom:410.694376pt;}
.y10e{bottom:411.573600pt;}
.y1e9{bottom:412.054016pt;}
.y181{bottom:412.852944pt;}
.y5a{bottom:413.174208pt;}
.y13f{bottom:413.175051pt;}
.yf7{bottom:413.653600pt;}
.y1be{bottom:414.214008pt;}
.y21c{bottom:414.454056pt;}
.y27b{bottom:416.854376pt;}
.ye3{bottom:417.493600pt;}
.y22c{bottom:417.653840pt;}
.y19f{bottom:418.373600pt;}
.y298{bottom:418.535083pt;}
.y246{bottom:418.694296pt;}
.y82{bottom:421.013600pt;}
.y36{bottom:423.093600pt;}
.y1ff{bottom:423.574056pt;}
.y1d3{bottom:424.454056pt;}
.y14{bottom:425.654208pt;}
.y160{bottom:425.972288pt;}
.ybd{bottom:426.133104pt;}
.y12b{bottom:426.292179pt;}
.y2a8{bottom:426.535051pt;}
.y260{bottom:427.334256pt;}
.y1e8{bottom:428.774056pt;}
.y97{bottom:429.333600pt;}
.y13e{bottom:429.895091pt;}
.y1bd{bottom:430.853888pt;}
.y180{bottom:431.013192pt;}
.y27a{bottom:433.494256pt;}
.y10d{bottom:434.053976pt;}
.y22b{bottom:434.293720pt;}
.y21b{bottom:434.933600pt;}
.y59{bottom:435.174120pt;}
.y297{bottom:435.174963pt;}
.y245{bottom:435.334176pt;}
.y81{bottom:436.053600pt;}
.ye2{bottom:436.852696pt;}
.y13{bottom:437.733800pt;}
.y12a{bottom:442.932059pt;}
.y25f{bottom:443.974136pt;}
.y1fe{bottom:444.053600pt;}
.y15f{bottom:444.212696pt;}
.ybc{bottom:444.293352pt;}
.y1d2{bottom:444.933600pt;}
.y35{bottom:446.534971pt;}
.y96{bottom:446.933976pt;}
.y1bc{bottom:447.493768pt;}
.y17f{bottom:449.253600pt;}
.y12{bottom:449.894256pt;}
.y279{bottom:450.214296pt;}
.y22a{bottom:450.933600pt;}
.y80{bottom:451.013600pt;}
.y2a7{bottom:451.174899pt;}
.y58{bottom:451.814000pt;}
.y296{bottom:451.814843pt;}
.y244{bottom:451.974056pt;}
.ye1{bottom:455.012944pt;}
.y21a{bottom:457.333600pt;}
.y129{bottom:459.571939pt;}
.y25e{bottom:460.694176pt;}
.y11{bottom:461.973848pt;}
.y10c{bottom:462.293600pt;}
.y15e{bottom:462.372944pt;}
.ybb{bottom:462.453600pt;}
.y34{bottom:463.174851pt;}
.y95{bottom:464.533600pt;}
.y7f{bottom:466.053600pt;}
.y1fd{bottom:466.453600pt;}
.y278{bottom:466.854176pt;}
.y1d1{bottom:467.413600pt;}
.y2a6{bottom:467.814779pt;}
.y57{bottom:468.534040pt;}
.y295{bottom:468.534883pt;}
.y17e{bottom:468.612448pt;}
.y1bb{bottom:469.493680pt;}
.y1e7{bottom:471.653600pt;}
.y243{bottom:472.453600pt;}
.ye0{bottom:473.173192pt;}
.y229{bottom:473.413600pt;}
.y10{bottom:474.134304pt;}
.y25d{bottom:477.334056pt;}
.y33{bottom:479.814731pt;}
.y15d{bottom:480.533192pt;}
.y7e{bottom:481.013600pt;}
.yba{bottom:481.892563pt;}
.y219{bottom:483.493600pt;}
.y277{bottom:483.494056pt;}
.y56{bottom:485.173920pt;}
.y294{bottom:485.174763pt;}
.y128{bottom:485.732155pt;}
.y1ba{bottom:486.213720pt;}
.yf{bottom:486.213896pt;}
.y17d{bottom:486.772696pt;}
.y10b{bottom:488.293600pt;}
.ydf{bottom:491.413600pt;}
.y1fc{bottom:492.533600pt;}
.y2a5{bottom:492.534787pt;}
.y1d0{bottom:493.493600pt;}
.y242{bottom:494.933600pt;}
.y7d{bottom:496.053600pt;}
.y32{bottom:496.534771pt;}
.y1e6{bottom:497.733600pt;}
.y25c{bottom:497.813600pt;}
.y15c{bottom:498.773600pt;}
.y228{bottom:499.493600pt;}
.yb9{bottom:500.052811pt;}
.y55{bottom:501.813800pt;}
.y293{bottom:501.814643pt;}
.y1b9{bottom:502.853800pt;}
.y127{bottom:503.972563pt;}
.y276{bottom:503.973600pt;}
.y17c{bottom:504.932944pt;}
.ye{bottom:506.373504pt;}
.y2a4{bottom:509.174667pt;}
.yde{bottom:510.772944pt;}
.y7c{bottom:511.013600pt;}
.y31{bottom:513.174651pt;}
.y15b{bottom:518.132563pt;}
.yb8{bottom:518.213059pt;}
.yd{bottom:518.453096pt;}
.y54{bottom:518.533840pt;}
.y292{bottom:518.534683pt;}
.y1b8{bottom:519.493680pt;}
.y25b{bottom:520.293600pt;}
.y241{bottom:521.013600pt;}
.y126{bottom:522.132811pt;}
.y17b{bottom:523.173352pt;}
.y7b{bottom:526.053600pt;}
.y275{bottom:526.453600pt;}
.ydd{bottom:529.013352pt;}
.y30{bottom:529.814531pt;}
.yc{bottom:530.613552pt;}
.y20c{bottom:533.494387pt;}
.y2a3{bottom:533.814515pt;}
.y53{bottom:535.173720pt;}
.y13d{bottom:535.174563pt;}
.y1b7{bottom:536.213720pt;}
.y15a{bottom:536.292811pt;}
.yb7{bottom:536.453467pt;}
.y125{bottom:540.293059pt;}
.y7a{bottom:541.013600pt;}
.y17a{bottom:541.333600pt;}
.yb{bottom:542.693144pt;}
.y25a{bottom:546.293600pt;}
.y2f{bottom:546.534571pt;}
.ydc{bottom:547.173600pt;}
.y2a2{bottom:550.534555pt;}
.y52{bottom:551.814443pt;}
.y274{bottom:552.533600pt;}
.y1b6{bottom:552.853600pt;}
.y20b{bottom:553.973931pt;}
.y159{bottom:554.453059pt;}
.ya{bottom:554.853600pt;}
.yb6{bottom:555.812315pt;}
.y79{bottom:556.053600pt;}
.y194{bottom:557.173992pt;}
.y124{bottom:558.533467pt;}
.y2e{bottom:563.174451pt;}
.ydb{bottom:566.532288pt;}
.y179{bottom:567.172320pt;}
.y51{bottom:568.534483pt;}
.y78{bottom:571.013600pt;}
.y158{bottom:572.693467pt;}
.y291{bottom:573.814355pt;}
.yb5{bottom:573.972563pt;}
.y9{bottom:574.373600pt;}
.y2a1{bottom:575.174403pt;}
.y1b5{bottom:575.333843pt;}
.y20a{bottom:576.452979pt;}
.y193{bottom:577.333600pt;}
.y123{bottom:577.892315pt;}
.yda{bottom:584.772696pt;}
.y2d{bottom:585.174363pt;}
.y77{bottom:586.053600pt;}
.y290{bottom:590.534395pt;}
.y2a0{bottom:591.814283pt;}
.yb4{bottom:592.132811pt;}
.y178{bottom:593.412696pt;}
.y122{bottom:596.052563pt;}
.y76{bottom:601.093600pt;}
.y157{bottom:601.813955pt;}
.y2c{bottom:601.814243pt;}
.yd9{bottom:602.932944pt;}
.y1b4{bottom:603.573467pt;}
.y209{bottom:604.773467pt;}
.y8{bottom:606.533467pt;}
.y28f{bottom:607.174275pt;}
.y192{bottom:607.814219pt;}
.yb3{bottom:610.373219pt;}
.y177{bottom:611.572944pt;}
.y121{bottom:614.212811pt;}
.y29f{bottom:616.534291pt;}
.y2b{bottom:618.534283pt;}
.yd8{bottom:621.093192pt;}
.y7{bottom:621.573600pt;}
.y156{bottom:623.813867pt;}
.y28e{bottom:623.814155pt;}
.y75{bottom:624.534259pt;}
.yb2{bottom:628.533467pt;}
.y1b3{bottom:629.653600pt;}
.y176{bottom:629.733192pt;}
.y120{bottom:632.453219pt;}
.y29e{bottom:633.174171pt;}
.y2a{bottom:635.174163pt;}
.yd7{bottom:639.333600pt;}
.y6{bottom:639.493600pt;}
.y155{bottom:640.533907pt;}
.y50{bottom:640.534195pt;}
.y74{bottom:641.174139pt;}
.yb1{bottom:647.892155pt;}
.y175{bottom:647.973600pt;}
.y11f{bottom:650.613467pt;}
.y29{bottom:651.814043pt;}
.y154{bottom:657.173787pt;}
.y4f{bottom:657.174075pt;}
.y73{bottom:657.814019pt;}
.yd6{bottom:662.534027pt;}
.yb0{bottom:666.132563pt;}
.y174{bottom:667.332040pt;}
.y28{bottom:668.534083pt;}
.y153{bottom:673.813667pt;}
.y4e{bottom:673.813955pt;}
.y72{bottom:674.453899pt;}
.yd5{bottom:679.173907pt;}
.yaf{bottom:684.292811pt;}
.y173{bottom:685.492288pt;}
.y152{bottom:690.453547pt;}
.y27{bottom:690.453835pt;}
.y71{bottom:691.173939pt;}
.y5{bottom:695.573600pt;}
.yd4{bottom:695.813787pt;}
.y29d{bottom:699.173907pt;}
.yae{bottom:702.453059pt;}
.y172{bottom:703.652536pt;}
.yf6{bottom:705.733600pt;}
.y151{bottom:707.173587pt;}
.y26{bottom:707.173875pt;}
.y70{bottom:707.813819pt;}
.y1b2{bottom:711.813992pt;}
.yd3{bottom:712.453667pt;}
.y208{bottom:713.173851pt;}
.y29c{bottom:715.813787pt;}
.y4{bottom:718.933600pt;}
.yad{bottom:720.693467pt;}
.y171{bottom:721.892944pt;}
.y25{bottom:723.813755pt;}
.y191{bottom:724.453699pt;}
.y19e{bottom:726.213600pt;}
.yf5{bottom:728.213600pt;}
.yd2{bottom:729.173707pt;}
.y6f{bottom:729.813731pt;}
.y1b1{bottom:731.973600pt;}
.y29b{bottom:732.453667pt;}
.yac{bottom:740.052563pt;}
.y170{bottom:740.053192pt;}
.y24{bottom:740.453635pt;}
.y3{bottom:742.293600pt;}
.yd1{bottom:745.813587pt;}
.y207{bottom:745.813667pt;}
.y6e{bottom:746.533771pt;}
.y1fb{bottom:747.253467pt;}
.y19d{bottom:748.693467pt;}
.y10a{bottom:749.733104pt;}
.y23{bottom:757.173675pt;}
.yab{bottom:758.212811pt;}
.y16f{bottom:758.293600pt;}
.y4d{bottom:762.453547pt;}
.y109{bottom:769.733112pt;}
.y22{bottom:773.813555pt;}
.y94{bottom:774.293600pt;}
.y1cf{bottom:775.573600pt;}
.yaa{bottom:776.373059pt;}
.y16e{bottom:777.653219pt;}
.y227{bottom:777.813128pt;}
.y240{bottom:777.813859pt;}
.y21{bottom:778.133992pt;}
.y4c{bottom:779.173587pt;}
.y259{bottom:780.453976pt;}
.ya9{bottom:794.613467pt;}
.y2{bottom:795.813467pt;}
.y1ce{bottom:797.973467pt;}
.y93{bottom:798.053600pt;}
.y20{bottom:798.293600pt;}
.h6{height:23.328125pt;}
.hb{height:23.418437pt;}
.h8{height:31.026406pt;}
.h7{height:36.858438pt;}
.h4{height:38.819375pt;}
.h1{height:43.781250pt;}
.h5{height:45.664062pt;}
.h9{height:48.741621pt;}
.h2{height:48.743125pt;}
.hd{height:48.745077pt;}
.hc{height:48.746645pt;}
.he{height:49.694531pt;}
.hf{height:51.769687pt;}
.ha{height:53.413125pt;}
.h3{height:68.006875pt;}
.h0{height:884.000000pt;}
.w0{width:589.333333pt;}
.x0{left:0.000000pt;}
.x9{left:75.600000pt;}
.x4{left:78.480000pt;}
.x3{left:83.120000pt;}
.xd{left:86.960000pt;}
.x28{left:91.280000pt;}
.x11{left:94.560000pt;}
.x23{left:96.960000pt;}
.x12{left:118.320000pt;}
.xa{left:123.600000pt;}
.x2f{left:125.120000pt;}
.x25{left:134.000472pt;}
.x1a{left:139.360000pt;}
.xf{left:147.920000pt;}
.x1d{left:152.080000pt;}
.x18{left:155.920000pt;}
.x33{left:160.640000pt;}
.x16{left:169.599784pt;}
.x2c{left:175.440000pt;}
.x13{left:180.240000pt;}
.x20{left:186.160000pt;}
.x31{left:192.960000pt;}
.x2a{left:208.720000pt;}
.x1c{left:216.400000pt;}
.x27{left:218.480000pt;}
.x2b{left:219.680496pt;}
.x22{left:221.760000pt;}
.x5{left:223.040000pt;}
.x8{left:227.440000pt;}
.x2e{left:229.120000pt;}
.x10{left:237.440424pt;}
.x15{left:249.920000pt;}
.x1f{left:252.000000pt;}
.x2{left:258.320000pt;}
.xc{left:267.599592pt;}
.xb{left:270.640000pt;}
.x1{left:272.080000pt;}
.xe{left:294.639872pt;}
.x7{left:411.920000pt;}
.x17{left:417.120000pt;}
.x6{left:422.800000pt;}
.x29{left:437.840000pt;}
.x34{left:446.560000pt;}
.x32{left:451.600000pt;}
.x14{left:462.240000pt;}
.x30{left:467.360000pt;}
.x21{left:486.800000pt;}
.x2d{left:490.880000pt;}
.x26{left:503.120000pt;}
.x19{left:510.960000pt;}
.x1b{left:520.000000pt;}
.x24{left:555.600000pt;}
.x1e{left:566.880000pt;}
}




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