
    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_389b1e3a55d639d1deb0d54c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.870117;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_cf60ec6175cc014de4c92e96.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_d6711b8fdf9ef79f19ca159d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fe6e2efa22e33b9730f2f3b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_34d78e13ef01a1f006dfe5fa.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4e6f5dfaf87b9f9f9d3ffad6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.677246;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_dc1cfff224a2e64d23860c2c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.007324;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_33e985b34700461643d50b74.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_d82e49bddcc13222910b4d13.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885254;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;}
.m2{transform:matrix(0.236547,0.000000,-0.080906,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080906,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080906,0.236547,0,0);}
.m1{transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-ms-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);-webkit-transform:matrix(0.236547,0.000000,-0.080903,0.236547,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-27.000000px;}
.v5{vertical-align:-21.235896px;}
.v3{vertical-align:-8.976636px;}
.v6{vertical-align:-5.396496px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.082088px;}
.v7{vertical-align:5.400000px;}
.v4{vertical-align:9.000000px;}
.va{vertical-align:20.888388px;}
.v1{vertical-align:27.121368px;}
.v8{vertical-align:28.799820px;}
.ls40{letter-spacing:-0.745488px;}
.ls43{letter-spacing:-0.105336px;}
.ls83{letter-spacing:-0.090972px;}
.ls2b{letter-spacing:-0.084168px;}
.ls42{letter-spacing:-0.081396px;}
.ls2f{letter-spacing:-0.078156px;}
.ls27{letter-spacing:-0.072144px;}
.ls25{letter-spacing:-0.066132px;}
.ls41{letter-spacing:-0.060120px;}
.ls77{letter-spacing:-0.058716px;}
.ls2e{letter-spacing:-0.054108px;}
.ls85{letter-spacing:-0.052668px;}
.ls2a{letter-spacing:-0.048096px;}
.ls74{letter-spacing:-0.047880px;}
.ls79{letter-spacing:-0.043092px;}
.ls2c{letter-spacing:-0.042084px;}
.ls71{letter-spacing:-0.038304px;}
.ls29{letter-spacing:-0.036072px;}
.ls78{letter-spacing:-0.033516px;}
.ls23{letter-spacing:-0.030060px;}
.ls48{letter-spacing:-0.028728px;}
.ls44{letter-spacing:-0.024048px;}
.ls72{letter-spacing:-0.023940px;}
.ls22{letter-spacing:-0.021600px;}
.ls75{letter-spacing:-0.019152px;}
.ls28{letter-spacing:-0.018036px;}
.ls84{letter-spacing:-0.014364px;}
.ls2d{letter-spacing:-0.012024px;}
.ls1e{letter-spacing:-0.009576px;}
.ls55{letter-spacing:-0.006012px;}
.ls1d{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.004788px;}
.ls7{letter-spacing:0.006012px;}
.ls0{letter-spacing:0.009576px;}
.ls15{letter-spacing:0.012024px;}
.ls60{letter-spacing:0.014364px;}
.ls8{letter-spacing:0.018036px;}
.ls4e{letter-spacing:0.019152px;}
.ls32{letter-spacing:0.023940px;}
.ls24{letter-spacing:0.024048px;}
.ls62{letter-spacing:0.028728px;}
.ls5{letter-spacing:0.030060px;}
.ls4b{letter-spacing:0.033516px;}
.ls87{letter-spacing:0.033552px;}
.ls21{letter-spacing:0.035964px;}
.ls18{letter-spacing:0.036072px;}
.ls3a{letter-spacing:0.038304px;}
.ls16{letter-spacing:0.042084px;}
.ls47{letter-spacing:0.043092px;}
.ls3b{letter-spacing:0.047880px;}
.ls1f{letter-spacing:0.047952px;}
.ls2{letter-spacing:0.048096px;}
.lsf{letter-spacing:0.050328px;}
.ls4a{letter-spacing:0.052668px;}
.lsb{letter-spacing:0.054108px;}
.ls6b{letter-spacing:0.057456px;}
.ls9{letter-spacing:0.060120px;}
.ls49{letter-spacing:0.062244px;}
.ls17{letter-spacing:0.066132px;}
.ls6a{letter-spacing:0.067032px;}
.ls5f{letter-spacing:0.071820px;}
.ls20{letter-spacing:0.071928px;}
.ls1{letter-spacing:0.072144px;}
.ls3c{letter-spacing:0.076608px;}
.ls13{letter-spacing:0.078156px;}
.ls4{letter-spacing:0.081396px;}
.ls76{letter-spacing:0.083880px;}
.lsa{letter-spacing:0.084168px;}
.ls67{letter-spacing:0.086184px;}
.lse{letter-spacing:0.090180px;}
.ls33{letter-spacing:0.090972px;}
.ls5e{letter-spacing:0.095760px;}
.ls3{letter-spacing:0.096192px;}
.ls46{letter-spacing:0.100548px;}
.ls53{letter-spacing:0.100656px;}
.ls14{letter-spacing:0.102204px;}
.ls45{letter-spacing:0.105336px;}
.lsd{letter-spacing:0.108216px;}
.ls63{letter-spacing:0.110124px;}
.ls37{letter-spacing:0.113940px;}
.ls38{letter-spacing:0.114120px;}
.lsc{letter-spacing:0.114228px;}
.ls6d{letter-spacing:0.114912px;}
.ls5d{letter-spacing:0.119700px;}
.ls3d{letter-spacing:0.120240px;}
.ls80{letter-spacing:0.124488px;}
.ls11{letter-spacing:0.125820px;}
.ls39{letter-spacing:0.126252px;}
.ls86{letter-spacing:0.128484px;}
.ls7d{letter-spacing:0.129276px;}
.ls6{letter-spacing:0.132264px;}
.ls81{letter-spacing:0.134064px;}
.ls56{letter-spacing:0.138276px;}
.ls7c{letter-spacing:0.138852px;}
.ls7a{letter-spacing:0.143640px;}
.ls36{letter-spacing:0.144288px;}
.ls6e{letter-spacing:0.148428px;}
.ls4d{letter-spacing:0.150300px;}
.ls70{letter-spacing:0.153216px;}
.ls3f{letter-spacing:0.156312px;}
.ls6c{letter-spacing:0.158004px;}
.ls65{letter-spacing:0.162792px;}
.ls66{letter-spacing:0.167580px;}
.ls34{letter-spacing:0.168336px;}
.ls6f{letter-spacing:0.172368px;}
.ls26{letter-spacing:0.176148px;}
.ls7b{letter-spacing:0.177156px;}
.ls73{letter-spacing:0.179280px;}
.ls4c{letter-spacing:0.180216px;}
.ls35{letter-spacing:0.180360px;}
.ls3e{letter-spacing:0.181944px;}
.ls64{letter-spacing:0.186732px;}
.ls7e{letter-spacing:0.201096px;}
.ls68{letter-spacing:0.220248px;}
.ls54{letter-spacing:0.373248px;}
.ls1c{letter-spacing:0.625248px;}
.ls30{letter-spacing:0.719280px;}
.ls1b{letter-spacing:0.720000px;}
.ls31{letter-spacing:0.739476px;}
.ls19{letter-spacing:0.793584px;}
.ls1a{letter-spacing:0.847692px;}
.ls12{letter-spacing:8.368704px;}
.ls69{letter-spacing:12.247704px;}
.ls82{letter-spacing:12.330000px;}
.ls51{letter-spacing:17.160600px;}
.ls4f{letter-spacing:33.476400px;}
.ls10{letter-spacing:41.117976px;}
.ls52{letter-spacing:49.879454px;}
.ls59{letter-spacing:95.319000px;}
.ls61{letter-spacing:119.790972px;}
.ls5c{letter-spacing:121.316760px;}
.ls58{letter-spacing:127.081800px;}
.ls5a{letter-spacing:131.598360px;}
.ls57{letter-spacing:138.189134px;}
.ls5b{letter-spacing:347.310000px;}
.ls50{letter-spacing:697.048020px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc7{word-spacing:-60.120000px;}
.ws1{word-spacing:-21.146148px;}
.wsca{word-spacing:-15.359700px;}
.ws64{word-spacing:-15.210360px;}
.ws0{word-spacing:-15.102144px;}
.wsc6{word-spacing:-15.030000px;}
.ws101{word-spacing:-12.190248px;}
.ws147{word-spacing:-12.171096px;}
.ws14b{word-spacing:-12.094488px;}
.ws100{word-spacing:-12.070548px;}
.ws146{word-spacing:-12.060972px;}
.ws149{word-spacing:-12.041820px;}
.ws148{word-spacing:-12.013092px;}
.ws14d{word-spacing:-12.008304px;}
.ws14a{word-spacing:-11.998728px;}
.wsfe{word-spacing:-11.984364px;}
.ws65{word-spacing:-11.970000px;}
.wsc9{word-spacing:-9.720000px;}
.ws14c{word-spacing:-7.598484px;}
.ws67{word-spacing:-0.272916px;}
.ws135{word-spacing:-0.263340px;}
.ws12e{word-spacing:-0.248976px;}
.ws142{word-spacing:-0.244188px;}
.ws19b{word-spacing:-0.239400px;}
.ws158{word-spacing:-0.234612px;}
.ws15d{word-spacing:-0.229824px;}
.ws163{word-spacing:-0.220248px;}
.ws103{word-spacing:-0.210672px;}
.ws114{word-spacing:-0.201096px;}
.wsbd{word-spacing:-0.196308px;}
.wscf{word-spacing:-0.192924px;}
.wsbf{word-spacing:-0.191520px;}
.ws10f{word-spacing:-0.186732px;}
.ws68{word-spacing:-0.181944px;}
.wsc{word-spacing:-0.177156px;}
.wsb{word-spacing:-0.172368px;}
.ws93{word-spacing:-0.167580px;}
.ws6{word-spacing:-0.143856px;}
.wscd{word-spacing:-0.143640px;}
.wsc0{word-spacing:-0.134064px;}
.ws7{word-spacing:-0.131868px;}
.ws150{word-spacing:-0.129276px;}
.ws1c3{word-spacing:-0.125820px;}
.wsce{word-spacing:-0.124488px;}
.ws112{word-spacing:-0.119700px;}
.ws6f{word-spacing:-0.092268px;}
.ws110{word-spacing:-0.089640px;}
.wsc1{word-spacing:-0.062244px;}
.ws83{word-spacing:-0.054108px;}
.ws90{word-spacing:-0.036072px;}
.ws9f{word-spacing:-0.030060px;}
.wsb2{word-spacing:-0.024048px;}
.ws1a{word-spacing:-0.018036px;}
.ws50{word-spacing:-0.012024px;}
.wsed{word-spacing:-0.006012px;}
.ws66{word-spacing:-0.004788px;}
.ws3{word-spacing:0.000000px;}
.ws2{word-spacing:0.009576px;}
.ws6e{word-spacing:0.012024px;}
.ws9{word-spacing:0.018036px;}
.ws4{word-spacing:0.019152px;}
.ws8{word-spacing:0.021600px;}
.wsf3{word-spacing:0.024048px;}
.ws5{word-spacing:0.028728px;}
.wsab{word-spacing:0.030060px;}
.wsa{word-spacing:0.042084px;}
.wsbb{word-spacing:0.048096px;}
.ws10a{word-spacing:0.060120px;}
.ws99{word-spacing:0.066132px;}
.ws63{word-spacing:0.072144px;}
.wsef{word-spacing:0.078156px;}
.wsba{word-spacing:0.108216px;}
.wsfc{word-spacing:0.132264px;}
.ws62{word-spacing:0.186372px;}
.wscc{word-spacing:0.205884px;}
.ws187{word-spacing:0.210672px;}
.ws19{word-spacing:0.336672px;}
.ws69{word-spacing:0.342684px;}
.ws8e{word-spacing:0.360720px;}
.ws4d{word-spacing:0.366732px;}
.ws45{word-spacing:0.384768px;}
.ws82{word-spacing:0.396792px;}
.ws9e{word-spacing:0.462924px;}
.ws9d{word-spacing:0.480960px;}
.ws5c{word-spacing:0.529056px;}
.wsd8{word-spacing:0.715428px;}
.ws7f{word-spacing:0.751500px;}
.ws44{word-spacing:0.799596px;}
.ws189{word-spacing:0.809172px;}
.wsbe{word-spacing:0.885780px;}
.ws17f{word-spacing:0.952812px;}
.ws155{word-spacing:1.029420px;}
.ws6d{word-spacing:1.076148px;}
.wsdf{word-spacing:1.088172px;}
.wsd5{word-spacing:1.094184px;}
.ws1d3{word-spacing:1.160316px;}
.wsb5{word-spacing:1.208412px;}
.ws188{word-spacing:1.259244px;}
.ws17e{word-spacing:1.268820px;}
.ws16c{word-spacing:1.273608px;}
.wsf4{word-spacing:1.418832px;}
.wsde{word-spacing:1.424844px;}
.ws3b{word-spacing:1.442880px;}
.ws32{word-spacing:1.496988px;}
.ws7c{word-spacing:1.515024px;}
.ws1d2{word-spacing:1.527048px;}
.ws185{word-spacing:1.532160px;}
.ws139{word-spacing:1.603980px;}
.ws138{word-spacing:1.618344px;}
.ws184{word-spacing:1.632708px;}
.ws31{word-spacing:1.797588px;}
.ws74{word-spacing:1.809612px;}
.ws42{word-spacing:1.887768px;}
.ws7b{word-spacing:1.941876px;}
.ws92{word-spacing:2.020536px;}
.ws91{word-spacing:2.030112px;}
.ws18f{word-spacing:2.068416px;}
.wsa3{word-spacing:2.134260px;}
.wsda{word-spacing:2.182356px;}
.ws1c2{word-spacing:2.250360px;}
.ws15c{word-spacing:2.255148px;}
.ws41{word-spacing:2.260512px;}
.wsbc{word-spacing:2.326968px;}
.ws1c1{word-spacing:2.446668px;}
.wsa4{word-spacing:2.488968px;}
.ws1c9{word-spacing:2.494980px;}
.ws30{word-spacing:2.525040px;}
.ws58{word-spacing:2.531052px;}
.ws121{word-spacing:2.561112px;}
.wsb1{word-spacing:2.573136px;}
.ws4f{word-spacing:2.579148px;}
.ws17d{word-spacing:2.623824px;}
.wsc3{word-spacing:2.645280px;}
.ws21{word-spacing:2.681352px;}
.ws17c{word-spacing:2.695644px;}
.ws1c0{word-spacing:2.710008px;}
.ws15b{word-spacing:2.714796px;}
.ws151{word-spacing:2.834496px;}
.ws1ca{word-spacing:2.867724px;}
.wse1{word-spacing:2.879748px;}
.wsaa{word-spacing:2.885760px;}
.ws81{word-spacing:2.891772px;}
.ws49{word-spacing:2.903796px;}
.wsb0{word-spacing:2.921832px;}
.wsae{word-spacing:2.927844px;}
.wsa9{word-spacing:2.945880px;}
.wse3{word-spacing:2.975940px;}
.ws84{word-spacing:2.993976px;}
.ws19a{word-spacing:3.006864px;}
.ws1ce{word-spacing:3.024036px;}
.ws198{word-spacing:3.097836px;}
.ws19e{word-spacing:3.102624px;}
.ws17b{word-spacing:3.116988px;}
.ws199{word-spacing:3.121776px;}
.ws1b0{word-spacing:3.169656px;}
.ws1a6{word-spacing:3.179232px;}
.ws3a{word-spacing:3.228444px;}
.ws19f{word-spacing:3.241476px;}
.wsd7{word-spacing:3.246480px;}
.wse2{word-spacing:3.258504px;}
.wsad{word-spacing:3.288564px;}
.ws1cd{word-spacing:3.294576px;}
.ws48{word-spacing:3.318624px;}
.ws13c{word-spacing:3.327660px;}
.ws172{word-spacing:3.418632px;}
.ws13b{word-spacing:3.423420px;}
.ws1b4{word-spacing:3.428208px;}
.ws13a{word-spacing:3.437784px;}
.ws18b{word-spacing:3.456936px;}
.wsc5{word-spacing:3.571128px;}
.ws75{word-spacing:3.583152px;}
.wsc4{word-spacing:3.607200px;}
.ws10b{word-spacing:3.613212px;}
.ws108{word-spacing:3.649284px;}
.ws141{word-spacing:3.696336px;}
.ws12{word-spacing:3.721428px;}
.ws1b8{word-spacing:3.777732px;}
.ws140{word-spacing:3.787308px;}
.ws186{word-spacing:3.892644px;}
.ws1dd{word-spacing:3.943872px;}
.ws2d{word-spacing:3.961908px;}
.ws10d{word-spacing:3.967920px;}
.ws39{word-spacing:3.979944px;}
.wsf6{word-spacing:3.985956px;}
.ws11{word-spacing:3.991968px;}
.ws38{word-spacing:4.003992px;}
.ws107{word-spacing:4.022028px;}
.ws2e{word-spacing:4.088160px;}
.ws1a5{word-spacing:4.175136px;}
.wsa1{word-spacing:4.322628px;}
.wsf5{word-spacing:4.334652px;}
.ws1b2{word-spacing:4.419324px;}
.ws1b1{word-spacing:4.515084px;}
.ws1a4{word-spacing:4.529448px;}
.ws164{word-spacing:4.586904px;}
.ws14{word-spacing:4.635252px;}
.wsea{word-spacing:4.641264px;}
.ws54{word-spacing:4.671324px;}
.ws7d{word-spacing:4.677336px;}
.ws13{word-spacing:4.683348px;}
.ws59{word-spacing:4.689360px;}
.wsd1{word-spacing:4.701384px;}
.wsa2{word-spacing:4.719420px;}
.wse9{word-spacing:4.731444px;}
.ws1af{word-spacing:4.802364px;}
.ws156{word-spacing:4.869396px;}
.ws1ae{word-spacing:4.874184px;}
.ws17a{word-spacing:4.878972px;}
.ws167{word-spacing:4.965156px;}
.wsdb{word-spacing:5.074128px;}
.wse8{word-spacing:5.122224px;}
.ws194{word-spacing:5.137524px;}
.wsdc{word-spacing:5.140260px;}
.ws35{word-spacing:5.176332px;}
.ws157{word-spacing:5.223708px;}
.ws179{word-spacing:5.266800px;}
.ws1d9{word-spacing:5.380740px;}
.ws51{word-spacing:5.398776px;}
.ws52{word-spacing:5.410800px;}
.ws28{word-spacing:5.416812px;}
.ws47{word-spacing:5.458896px;}
.wsa7{word-spacing:5.470920px;}
.wsa8{word-spacing:5.476932px;}
.ws8a{word-spacing:5.488956px;}
.ws171{word-spacing:5.558868px;}
.ws193{word-spacing:5.578020px;}
.ws153{word-spacing:5.592384px;}
.ws152{word-spacing:5.606748px;}
.ws18a{word-spacing:5.707296px;}
.ws2b{word-spacing:5.759496px;}
.ws72{word-spacing:5.783544px;}
.ws46{word-spacing:5.807592px;}
.ws10{word-spacing:5.831640px;}
.ws71{word-spacing:6.114204px;}
.ws76{word-spacing:6.120216px;}
.ws2c{word-spacing:6.138252px;}
.ws5a{word-spacing:6.150276px;}
.ws23{word-spacing:6.168312px;}
.ws1dc{word-spacing:6.186348px;}
.ws22{word-spacing:6.228432px;}
.ws55{word-spacing:6.468912px;}
.ws1d0{word-spacing:6.547068px;}
.wsb9{word-spacing:6.571116px;}
.ws13f{word-spacing:6.669684px;}
.ws13e{word-spacing:6.693624px;}
.ws1c4{word-spacing:6.823620px;}
.ws56{word-spacing:6.853680px;}
.wsb8{word-spacing:6.859692px;}
.ws1cf{word-spacing:6.889752px;}
.ws1c5{word-spacing:6.913800px;}
.wsac{word-spacing:6.997968px;}
.ws192{word-spacing:7.028784px;}
.ws191{word-spacing:7.033572px;}
.ws12f{word-spacing:7.143696px;}
.wsfa{word-spacing:7.190352px;}
.ws1c8{word-spacing:7.202376px;}
.ws7e{word-spacing:7.214400px;}
.wsd2{word-spacing:7.250472px;}
.wsf9{word-spacing:7.268508px;}
.wsd3{word-spacing:7.274520px;}
.ws190{word-spacing:7.416612px;}
.ws29{word-spacing:7.557084px;}
.ws6c{word-spacing:7.563096px;}
.ws125{word-spacing:7.569108px;}
.ws11f{word-spacing:7.605180px;}
.ws162{word-spacing:7.651224px;}
.wsb3{word-spacing:7.689348px;}
.ws144{word-spacing:7.761348px;}
.ws145{word-spacing:7.766136px;}
.ws1a1{word-spacing:7.852320px;}
.wsf2{word-spacing:7.893756px;}
.wsb6{word-spacing:7.923816px;}
.ws11e{word-spacing:7.947864px;}
.ws161{word-spacing:8.106084px;}
.ws176{word-spacing:8.134812px;}
.ws127{word-spacing:8.240148px;}
.ws7a{word-spacing:8.266500px;}
.ws20{word-spacing:8.278524px;}
.ws86{word-spacing:8.308584px;}
.ws1d8{word-spacing:8.326620px;}
.ws1d5{word-spacing:8.332632px;}
.ws1d4{word-spacing:8.350668px;}
.ws1db{word-spacing:8.374716px;}
.ws175{word-spacing:8.484336px;}
.ws1f{word-spacing:8.639244px;}
.ws24{word-spacing:8.657280px;}
.ws25{word-spacing:8.699364px;}
.ws15a{word-spacing:8.857800px;}
.ws159{word-spacing:8.934408px;}
.ws104{word-spacing:8.957880px;}
.ws2a{word-spacing:8.975916px;}
.ws120{word-spacing:8.987940px;}
.ws80{word-spacing:8.993952px;}
.ws8b{word-spacing:9.005976px;}
.ws33{word-spacing:9.036036px;}
.ws34{word-spacing:9.072108px;}
.ws8d{word-spacing:9.150264px;}
.ws1ad{word-spacing:9.169020px;}
.ws174{word-spacing:9.298296px;}
.ws40{word-spacing:9.354672px;}
.wsd4{word-spacing:9.366696px;}
.ws126{word-spacing:9.378720px;}
.ws9b{word-spacing:9.396756px;}
.ws8c{word-spacing:9.426816px;}
.ws1cc{word-spacing:9.480924px;}
.ws73{word-spacing:9.498960px;}
.ws1ac{word-spacing:9.537696px;}
.ws13d{word-spacing:9.580788px;}
.ws95{word-spacing:9.709380px;}
.wsb7{word-spacing:9.727416px;}
.wsa6{word-spacing:9.733428px;}
.ws1cb{word-spacing:9.769500px;}
.wse0{word-spacing:9.787536px;}
.wse6{word-spacing:10.003968px;}
.wsd9{word-spacing:10.076112px;}
.wsa0{word-spacing:10.196352px;}
.wse7{word-spacing:10.214388px;}
.ws11b{word-spacing:10.251108px;}
.ws1ba{word-spacing:10.255896px;}
.ws1b9{word-spacing:10.308564px;}
.wse5{word-spacing:10.382724px;}
.ws6a{word-spacing:10.424808px;}
.ws17{word-spacing:10.442844px;}
.wsa5{word-spacing:10.448856px;}
.ws14f{word-spacing:10.605420px;}
.ws78{word-spacing:10.755468px;}
.ws3f{word-spacing:10.779516px;}
.wsc2{word-spacing:10.815588px;}
.ws79{word-spacing:10.851660px;}
.ws1aa{word-spacing:10.897488px;}
.ws6b{word-spacing:10.941840px;}
.ws1a2{word-spacing:10.954944px;}
.ws14e{word-spacing:10.974096px;}
.ws1a9{word-spacing:10.993248px;}
.wsd0{word-spacing:11.146248px;}
.ws2f{word-spacing:11.158272px;}
.ws136{word-spacing:11.438532px;}
.ws15e{word-spacing:11.467260px;}
.ws5e{word-spacing:11.500956px;}
.ws77{word-spacing:11.525004px;}
.ws37{word-spacing:11.531016px;}
.ws16{word-spacing:11.555064px;}
.wsaf{word-spacing:11.567088px;}
.ws70{word-spacing:11.585124px;}
.ws165{word-spacing:11.735388px;}
.wsec{word-spacing:11.921796px;}
.wsd{word-spacing:11.939832px;}
.ws15{word-spacing:11.951856px;}
.wsd6{word-spacing:11.957868px;}
.ws1bc{word-spacing:11.974788px;}
.ws9c{word-spacing:11.999952px;}
.ws36{word-spacing:12.054060px;}
.ws197{word-spacing:12.084912px;}
.ws182{word-spacing:12.175884px;}
.ws4e{word-spacing:12.228408px;}
.ws57{word-spacing:12.246444px;}
.wsb4{word-spacing:12.252456px;}
.ws61{word-spacing:12.294540px;}
.ws196{word-spacing:12.372192px;}
.ws1bb{word-spacing:12.444012px;}
.ws1b3{word-spacing:12.539772px;}
.ws123{word-spacing:12.943836px;}
.wsf7{word-spacing:12.997944px;}
.ws122{word-spacing:13.015980px;}
.ws16a{word-spacing:13.047300px;}
.ws128{word-spacing:13.147848px;}
.ws129{word-spacing:13.162212px;}
.ws169{word-spacing:13.176576px;}
.ws1bd{word-spacing:13.248396px;}
.ws4b{word-spacing:13.334616px;}
.ws3c{word-spacing:13.442832px;}
.wsfb{word-spacing:13.454856px;}
.ws88{word-spacing:13.472892px;}
.ws89{word-spacing:13.484916px;}
.ws168{word-spacing:13.506948px;}
.ws1a8{word-spacing:13.511736px;}
.ws11c{word-spacing:13.815576px;}
.ws1a7{word-spacing:13.861260px;}
.ws137{word-spacing:13.870836px;}
.ws3d{word-spacing:14.392728px;}
.wsdd{word-spacing:14.398740px;}
.wse4{word-spacing:14.567076px;}
.wsf{word-spacing:14.843628px;}
.ws102{word-spacing:14.924196px;}
.ws4a{word-spacing:15.264468px;}
.ws10c{word-spacing:15.480900px;}
.ws5d{word-spacing:15.492924px;}
.ws1c{word-spacing:15.889716px;}
.ws94{word-spacing:16.202340px;}
.ws60{word-spacing:16.208352px;}
.ws1b{word-spacing:16.292520px;}
.wsf8{word-spacing:16.707348px;}
.ws5f{word-spacing:17.001936px;}
.ws1d1{word-spacing:17.278488px;}
.ws143{word-spacing:17.591112px;}
.ws109{word-spacing:17.657244px;}
.ws1d7{word-spacing:17.699328px;}
.ws105{word-spacing:17.789508px;}
.ws1d6{word-spacing:18.120168px;}
.ws106{word-spacing:18.132192px;}
.ws10e{word-spacing:18.330588px;}
.ws96{word-spacing:18.354636px;}
.ws16f{word-spacing:18.448164px;}
.ws43{word-spacing:18.492912px;}
.ws160{word-spacing:18.539136px;}
.ws15f{word-spacing:18.582228px;}
.ws5b{word-spacing:18.715356px;}
.ws1c7{word-spacing:18.787500px;}
.ws12d{word-spacing:18.821628px;}
.ws113{word-spacing:18.888660px;}
.ws12c{word-spacing:18.903024px;}
.ws16d{word-spacing:18.941328px;}
.ws16e{word-spacing:18.955692px;}
.ws1c6{word-spacing:19.076076px;}
.ws27{word-spacing:19.436796px;}
.ws1b7{word-spacing:19.755288px;}
.ws26{word-spacing:19.803528px;}
.ws1ab{word-spacing:20.095236px;}
.wsf0{word-spacing:20.200320px;}
.ws130{word-spacing:20.674584px;}
.ws131{word-spacing:20.727252px;}
.ws170{word-spacing:20.808648px;}
.ws53{word-spacing:21.252420px;}
.ws16b{word-spacing:21.526848px;}
.ws1da{word-spacing:21.607128px;}
.ws98{word-spacing:22.707324px;}
.wscb{word-spacing:22.910580px;}
.ws97{word-spacing:23.080068px;}
.ws195{word-spacing:23.317560px;}
.ws85{word-spacing:23.723352px;}
.ws3e{word-spacing:23.891688px;}
.ws12b{word-spacing:23.930424px;}
.wse{word-spacing:24.078060px;}
.ws9a{word-spacing:24.228360px;}
.ws12a{word-spacing:24.332616px;}
.ws154{word-spacing:25.682832px;}
.ws1e{word-spacing:25.947792px;}
.ws124{word-spacing:26.362620px;}
.ws178{word-spacing:26.942076px;}
.ws4c{word-spacing:27.011916px;}
.ws11d{word-spacing:27.096084px;}
.ws8f{word-spacing:27.414720px;}
.wsff{word-spacing:28.388052px;}
.ws1d{word-spacing:28.599084px;}
.ws134{word-spacing:29.283408px;}
.ws183{word-spacing:29.738268px;}
.ws181{word-spacing:30.370284px;}
.ws180{word-spacing:30.427740px;}
.ws18e{word-spacing:31.816260px;}
.ws18{word-spacing:32.464800px;}
.ws1b6{word-spacing:34.655544px;}
.ws1b5{word-spacing:34.746516px;}
.wsf1{word-spacing:34.941744px;}
.wseb{word-spacing:36.609048px;}
.ws87{word-spacing:39.228300px;}
.ws177{word-spacing:40.803336px;}
.ws1a0{word-spacing:43.738380px;}
.ws1bf{word-spacing:43.743168px;}
.ws1be{word-spacing:44.102268px;}
.ws173{word-spacing:49.799988px;}
.ws1a3{word-spacing:50.522976px;}
.ws18d{word-spacing:53.084556px;}
.ws18c{word-spacing:53.467596px;}
.ws166{word-spacing:65.279592px;}
.ws19d{word-spacing:68.918472px;}
.ws19c{word-spacing:69.440364px;}
.ws133{word-spacing:83.354292px;}
.ws132{word-spacing:83.368656px;}
.ws111{word-spacing:128.246580px;}
.wsc8{word-spacing:128.660760px;}
.ws117{word-spacing:146.603772px;}
.ws119{word-spacing:146.622924px;}
.ws118{word-spacing:146.627712px;}
.ws11a{word-spacing:156.687300px;}
.ws115{word-spacing:229.507992px;}
.ws116{word-spacing:261.807840px;}
.wsee{word-spacing:342.659952px;}
.wsfd{word-spacing:471.917952px;}
._14{margin-left:-191.676768px;}
._17{margin-left:-46.462752px;}
._12{margin-left:-35.863920px;}
._29{margin-left:-29.776500px;}
._5{margin-left:-23.561028px;}
._26{margin-left:-21.512484px;}
._15{margin-left:-15.051780px;}
._27{margin-left:-12.817584px;}
._b{margin-left:-11.537028px;}
._4{margin-left:-8.639244px;}
._a{margin-left:-6.529032px;}
._6{margin-left:-5.398776px;}
._f{margin-left:-3.793572px;}
._9{margin-left:-2.365308px;}
._2{margin-left:-1.082160px;}
._3{width:1.160316px;}
._2a{width:3.787308px;}
._2b{width:5.003460px;}
._10{width:8.005536px;}
._11{width:10.442844px;}
._13{width:12.919788px;}
._1a{width:15.972768px;}
._1e{width:18.802476px;}
._28{width:19.975536px;}
._1d{width:21.665700px;}
._c{width:24.387264px;}
._22{width:26.434548px;}
._d{width:28.886004px;}
._e{width:29.963304px;}
._8{width:31.045392px;}
._2c{width:34.665192px;}
._1f{width:37.801260px;}
._24{width:39.668580px;}
._23{width:43.426944px;}
._19{width:46.079712px;}
._21{width:56.158452px;}
._20{width:67.528188px;}
._18{width:74.970504px;}
._25{width:137.367720px;}
._16{width:177.965172px;}
._1c{width:261.807840px;}
._1b{width:303.927876px;}
._7{width:362.159532px;}
._0{width:1600.149600px;}
._1{width:1723.732668px;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:6.120000px;}
.fse{font-size:29.880000px;}
.fs7{font-size:35.381400px;}
.fs9{font-size:35.518800px;}
.fsc{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs0{font-size:47.880000px;}
.fsd{font-size:50.602976px;}
.fs3{font-size:60.120000px;}
.fs8{font-size:61.200000px;}
.fsa{font-size:61.438800px;}
.fs6{font-size:63.539045px;}
.fsb{font-size:64.933088px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fs1{font-size:119.880000px;}
.y0{bottom:0.000000px;}
.y112{bottom:3.420450px;}
.y2{bottom:55.830450px;}
.y2e{bottom:112.341573px;}
.y58{bottom:112.860108px;}
.y140{bottom:121.980450px;}
.y83{bottom:125.033511px;}
.y178{bottom:125.126157px;}
.ya1{bottom:126.108597px;}
.y13f{bottom:126.300450px;}
.y2d{bottom:129.892104px;}
.y57{bottom:130.410639px;}
.y1b7{bottom:130.708713px;}
.yea{bottom:131.784609px;}
.y1f0{bottom:131.873103px;}
.y114{bottom:133.140819px;}
.y177{bottom:139.255545px;}
.y82{bottom:142.584042px;}
.ya0{bottom:143.659128px;}
.y1b6{bottom:144.838101px;}
.y2c{bottom:147.442635px;}
.y56{bottom:147.961170px;}
.ye9{bottom:149.335140px;}
.y1ef{bottom:149.423634px;}
.y13e{bottom:150.960600px;}
.ycb{bottom:158.067831px;}
.y1b5{bottom:158.968686px;}
.y81{bottom:160.134573px;}
.y111{bottom:160.500000px;}
.y9f{bottom:161.209659px;}
.y176{bottom:162.385176px;}
.ybc{bottom:162.660015px;}
.y113{bottom:163.920450px;}
.y2b{bottom:164.993166px;}
.y110{bottom:165.269574px;}
.y55{bottom:165.511701px;}
.y13d{bottom:166.620600px;}
.ye8{bottom:166.885671px;}
.y1ee{bottom:166.974165px;}
.y1b4{bottom:173.098074px;}
.yca{bottom:175.618362px;}
.y175{bottom:176.514564px;}
.ybb{bottom:176.790600px;}
.y80{bottom:177.685104px;}
.y13c{bottom:182.280450px;}
.y2a{bottom:182.543697px;}
.y54{bottom:183.062232px;}
.ye7{bottom:184.436202px;}
.y1ed{bottom:184.524696px;}
.y9e{bottom:186.230100px;}
.y174{bottom:190.645149px;}
.y10f{bottom:191.820069px;}
.yc9{bottom:193.168893px;}
.y7f{bottom:195.235635px;}
.y1b3{bottom:196.227705px;}
.yba{bottom:197.310450px;}
.y13b{bottom:197.490450px;}
.y29{bottom:200.094228px;}
.y53{bottom:200.612763px;}
.ye6{bottom:201.986733px;}
.y1ec{bottom:202.075227px;}
.y9d{bottom:203.780631px;}
.y173{bottom:204.775734px;}
.y13a{bottom:208.110450px;}
.y10e{bottom:209.370600px;}
.y10d{bottom:209.370945px;}
.y1b2{bottom:210.358290px;}
.y7e{bottom:212.786166px;}
.y28{bottom:217.644759px;}
.y52{bottom:218.163294px;}
.y139{bottom:219.451062px;}
.ye5{bottom:219.537264px;}
.y1eb{bottom:219.625758px;}
.yc8{bottom:219.719388px;}
.y9c{bottom:221.331162px;}
.y1b1{bottom:224.488875px;}
.y10c{bottom:225.660450px;}
.y172{bottom:227.905365px;}
.y10a{bottom:227.906274px;}
.y10b{bottom:227.910450px;}
.y7d{bottom:230.336697px;}
.y138{bottom:233.580450px;}
.y27{bottom:235.195290px;}
.y51{bottom:235.713825px;}
.ye4{bottom:237.087795px;}
.y1ea{bottom:237.176289px;}
.yc7{bottom:237.269919px;}
.y1b0{bottom:238.619460px;}
.y171{bottom:242.035950px;}
.y9b{bottom:246.351603px;}
.y109{bottom:246.445779px;}
.y7c{bottom:247.887228px;}
.y26{bottom:252.745821px;}
.y1af{bottom:252.748848px;}
.y50{bottom:253.264356px;}
.ye3{bottom:254.638326px;}
.y1e9{bottom:254.726820px;}
.yc6{bottom:254.820450px;}
.y170{bottom:256.165338px;}
.y137{bottom:258.240450px;}
.y9a{bottom:263.902134px;}
.y7b{bottom:265.437759px;}
.y16f{bottom:270.295923px;}
.y25{bottom:270.296352px;}
.y4f{bottom:270.814887px;}
.ye2{bottom:272.188857px;}
.y1e8{bottom:272.277351px;}
.y108{bottom:272.996274px;}
.y136{bottom:273.900450px;}
.y1ae{bottom:275.878479px;}
.yc5{bottom:280.829865px;}
.y99{bottom:281.452665px;}
.y16e{bottom:284.426508px;}
.y24{bottom:287.846883px;}
.y4e{bottom:288.365418px;}
.y7a{bottom:289.018326px;}
.y12e{bottom:289.558488px;}
.ye1{bottom:289.739388px;}
.y1ad{bottom:290.009064px;}
.y107{bottom:290.546805px;}
.yc4{bottom:294.960450px;}
.y1e7{bottom:299.096883px;}
.y133{bottom:303.419865px;}
.y131{bottom:303.420450px;}
.y12d{bottom:303.689073px;}
.y135{bottom:303.689190px;}
.y1ac{bottom:304.139649px;}
.y23{bottom:305.397414px;}
.y4d{bottom:305.915949px;}
.y98{bottom:306.473106px;}
.y79{bottom:306.568857px;}
.ye0{bottom:307.289919px;}
.y16d{bottom:307.556139px;}
.y106{bottom:308.097336px;}
.y12a{bottom:310.800450px;}
.yc3{bottom:315.480450px;}
.y130{bottom:316.020450px;}
.y1e6{bottom:316.647414px;}
.y12f{bottom:317.550450px;}
.y132{bottom:317.551035px;}
.y12c{bottom:317.819658px;}
.y134{bottom:317.819775px;}
.y1ab{bottom:318.270234px;}
.y16c{bottom:321.686724px;}
.y22{bottom:322.947945px;}
.y4c{bottom:323.466480px;}
.y97{bottom:324.023637px;}
.y78{bottom:324.119388px;}
.ydf{bottom:324.834609px;}
.y105{bottom:325.647867px;}
.y12b{bottom:331.950243px;}
.y1e5{bottom:334.197945px;}
.y16b{bottom:335.817309px;}
.y21{bottom:340.498476px;}
.y4b{bottom:341.017011px;}
.y1aa{bottom:341.399865px;}
.y96{bottom:341.574168px;}
.y77{bottom:341.669919px;}
.yde{bottom:342.385140px;}
.y129{bottom:347.160450px;}
.y16a{bottom:349.947894px;}
.y1e4{bottom:351.748476px;}
.y104{bottom:352.198362px;}
.y1a9{bottom:355.521000px;}
.y128{bottom:357.780450px;}
.y20{bottom:358.049007px;}
.y4a{bottom:358.567542px;}
.y75{bottom:359.220450px;}
.y74{bottom:359.220945px;}
.ydd{bottom:359.935671px;}
.y169{bottom:364.078479px;}
.y76{bottom:365.970450px;}
.y95{bottom:366.594609px;}
.y1e3{bottom:369.299007px;}
.y1a8{bottom:369.651585px;}
.y127{bottom:369.654114px;}
.y103{bottom:369.748893px;}
.y1f{bottom:375.599538px;}
.y49{bottom:376.118073px;}
.ydc{bottom:377.486202px;}
.y72{bottom:377.752980px;}
.y73{bottom:377.760450px;}
.y1a7{bottom:383.782170px;}
.y94{bottom:384.145140px;}
.y1e2{bottom:386.849538px;}
.y126{bottom:387.204645px;}
.y168{bottom:387.208110px;}
.y102{bottom:387.299424px;}
.y1e{bottom:393.150069px;}
.y48{bottom:393.668604px;}
.ydb{bottom:395.036733px;}
.y71{bottom:396.292485px;}
.y167{bottom:401.338695px;}
.y93{bottom:401.695671px;}
.y1e1{bottom:404.400069px;}
.y125{bottom:404.755176px;}
.y1a6{bottom:406.911801px;}
.y1d{bottom:410.700600px;}
.y47{bottom:411.219135px;}
.yda{bottom:412.587264px;}
.y70{bottom:413.843016px;}
.y101{bottom:413.849919px;}
.y166{bottom:415.469280px;}
.y1a5{bottom:421.042386px;}
.y1e0{bottom:421.950600px;}
.y124{bottom:422.305707px;}
.y92{bottom:425.276238px;}
.y46{bottom:428.769666px;}
.y165{bottom:429.599865px;}
.yd9{bottom:430.137795px;}
.y6f{bottom:431.393547px;}
.y100{bottom:431.400450px;}
.y1a4{bottom:435.172971px;}
.y1c{bottom:438.330450px;}
.y123{bottom:439.856238px;}
.y91{bottom:442.826769px;}
.y164{bottom:443.730450px;}
.y45{bottom:446.320197px;}
.yd8{bottom:447.688326px;}
.y6e{bottom:448.944078px;}
.y1a3{bottom:449.303556px;}
.y1df{bottom:449.850450px;}
.y122{bottom:457.406769px;}
.yff{bottom:457.950945px;}
.y90{bottom:460.377300px;}
.yb9{bottom:463.800015px;}
.yd7{bottom:465.238857px;}
.y6d{bottom:466.494609px;}
.y44{bottom:471.340638px;}
.y1a2{bottom:472.433187px;}
.y121{bottom:474.957300px;}
.y163{bottom:477.480450px;}
.y8f{bottom:477.927831px;}
.yb8{bottom:477.930600px;}
.yd6{bottom:482.789388px;}
.y6c{bottom:484.045140px;}
.yfd{bottom:485.759430px;}
.y1a1{bottom:486.563772px;}
.y43{bottom:488.891169px;}
.yfc{bottom:490.889520px;}
.yf8{bottom:490.890450px;}
.yf5{bottom:497.730681px;}
.y1b{bottom:497.820069px;}
.yb7{bottom:498.450600px;}
.yfb{bottom:499.979250px;}
.yd5{bottom:500.339919px;}
.y1a0{bottom:500.694357px;}
.y120{bottom:501.507795px;}
.y6b{bottom:501.595671px;}
.yfa{bottom:502.769970px;}
.yf7{bottom:502.770900px;}
.y8e{bottom:504.478326px;}
.y42{bottom:506.441700px;}
.yf3{bottom:506.550081px;}
.yfe{bottom:506.550450px;}
.yf6{bottom:512.310450px;}
.yf9{bottom:514.200600px;}
.y19f{bottom:514.823745px;}
.y1a{bottom:515.370600px;}
.yd4{bottom:517.890450px;}
.y11f{bottom:519.058326px;}
.y6a{bottom:519.146202px;}
.y8d{bottom:522.028857px;}
.y1de{bottom:523.828479px;}
.y41{bottom:523.992231px;}
.yf4{bottom:524.820450px;}
.y11e{bottom:536.608857px;}
.y69{bottom:536.696733px;}
.y19e{bottom:537.953376px;}
.y1dd{bottom:537.959064px;}
.y8c{bottom:539.579388px;}
.y162{bottom:541.463547px;}
.y40{bottom:541.542762px;}
.y19{bottom:543.000450px;}
.yd3{bottom:545.520450px;}
.yf2{bottom:547.049919px;}
.y19d{bottom:552.083961px;}
.y1dc{bottom:552.089649px;}
.y11d{bottom:554.159388px;}
.y68{bottom:554.247264px;}
.y8b{bottom:557.129919px;}
.y161{bottom:559.014078px;}
.y3f{bottom:559.093293px;}
.yf1{bottom:564.600450px;}
.y19c{bottom:566.214546px;}
.y1db{bottom:566.220234px;}
.y11c{bottom:571.709919px;}
.y67{bottom:571.797795px;}
.y8a{bottom:574.680450px;}
.y160{bottom:576.564609px;}
.y3e{bottom:576.643824px;}
.yc2{bottom:579.719865px;}
.y19b{bottom:580.345131px;}
.y11b{bottom:589.260450px;}
.y66{bottom:589.348326px;}
.y1da{bottom:589.349865px;}
.yc1{bottom:593.850450px;}
.y15f{bottom:594.115140px;}
.y3d{bottom:594.194355px;}
.yf0{bottom:595.110306px;}
.y19a{bottom:603.474762px;}
.y1d9{bottom:603.476733px;}
.yd2{bottom:604.469127px;}
.y89{bottom:606.720387px;}
.y65{bottom:606.898857px;}
.yef{bottom:609.240891px;}
.y18{bottom:611.483979px;}
.y15e{bottom:611.665671px;}
.y3c{bottom:611.744886px;}
.yc0{bottom:614.370450px;}
.y199{bottom:617.605347px;}
.y1d8{bottom:617.607318px;}
.y11a{bottom:618.240306px;}
.yd1{bottom:618.599712px;}
.y88{bottom:621.120297px;}
.y64{bottom:624.449388px;}
.y17{bottom:629.034510px;}
.y15d{bottom:629.216202px;}
.y3b{bottom:629.295417px;}
.y198{bottom:631.734735px;}
.y1d7{bottom:631.737903px;}
.y119{bottom:632.370891px;}
.yee{bottom:632.641044px;}
.yd0{bottom:632.730297px;}
.y63{bottom:641.999919px;}
.yed{bottom:643.890450px;}
.y87{bottom:644.520450px;}
.y197{bottom:645.865320px;}
.y1d6{bottom:645.868488px;}
.y16{bottom:646.585041px;}
.y15c{bottom:646.766733px;}
.y3a{bottom:646.845948px;}
.y118{bottom:655.771044px;}
.ycf{bottom:656.130450px;}
.y62{bottom:659.550450px;}
.y196{bottom:659.995905px;}
.y15{bottom:664.135572px;}
.y15b{bottom:664.317264px;}
.y39{bottom:664.396479px;}
.y86{bottom:664.770450px;}
.y117{bottom:667.020450px;}
.yce{bottom:667.380450px;}
.y1d5{bottom:668.998119px;}
.y14{bottom:681.686103px;}
.y15a{bottom:681.867795px;}
.y38{bottom:681.947010px;}
.y195{bottom:683.125536px;}
.y1d4{bottom:683.127507px;}
.y61{bottom:687.180450px;}
.y194{bottom:697.256121px;}
.y1d3{bottom:697.258092px;}
.y13{bottom:699.236634px;}
.y159{bottom:699.418326px;}
.y37{bottom:699.497541px;}
.y193{bottom:711.386706px;}
.y1d2{bottom:711.387480px;}
.y12{bottom:716.787165px;}
.y158{bottom:716.968857px;}
.y36{bottom:717.048072px;}
.y192{bottom:725.517291px;}
.y11{bottom:734.337696px;}
.y1d1{bottom:734.517111px;}
.y157{bottom:734.519388px;}
.y35{bottom:734.598603px;}
.y60{bottom:746.667795px;}
.y191{bottom:748.646922px;}
.y1d0{bottom:748.647696px;}
.y10{bottom:751.888227px;}
.y156{bottom:752.069919px;}
.y34{bottom:752.149134px;}
.yb6{bottom:762.409992px;}
.y190{bottom:762.776310px;}
.y1cf{bottom:762.777084px;}
.y5f{bottom:764.218326px;}
.yf{bottom:769.438758px;}
.y155{bottom:769.620450px;}
.y33{bottom:769.699665px;}
.y18f{bottom:776.906895px;}
.yb5{bottom:779.960523px;}
.y5e{bottom:781.768857px;}
.y1ce{bottom:785.906715px;}
.ye{bottom:786.989289px;}
.y32{bottom:787.250196px;}
.y154{bottom:797.250450px;}
.yb4{bottom:797.511054px;}
.y5d{bottom:799.319388px;}
.y18e{bottom:800.036526px;}
.y1cd{bottom:800.037300px;}
.yd{bottom:804.539820px;}
.y31{bottom:804.800727px;}
.y18d{bottom:814.167111px;}
.y1cc{bottom:814.167885px;}
.yb3{bottom:815.061585px;}
.y5c{bottom:816.869919px;}
.yc{bottom:822.090351px;}
.y30{bottom:822.351258px;}
.y18c{bottom:828.297696px;}
.y1cb{bottom:828.298470px;}
.yb2{bottom:832.612116px;}
.y5b{bottom:834.420450px;}
.yb{bottom:839.640882px;}
.y2f{bottom:839.901789px;}
.y18b{bottom:842.428281px;}
.yb1{bottom:850.162647px;}
.y1ca{bottom:851.428101px;}
.y153{bottom:856.199865px;}
.ya{bottom:857.460450px;}
.y5a{bottom:860.430600px;}
.y18a{bottom:865.557912px;}
.y1c9{bottom:865.558686px;}
.yb0{bottom:867.713178px;}
.y152{bottom:870.330450px;}
.y189{bottom:879.688497px;}
.y1c8{bottom:879.689271px;}
.ybf{bottom:880.769865px;}
.y59{bottom:880.950450px;}
.y9{bottom:883.470450px;}
.yaf{bottom:892.733619px;}
.yec{bottom:893.370450px;}
.y188{bottom:893.817885px;}
.y1c7{bottom:893.818659px;}
.ybe{bottom:894.900450px;}
.y151{bottom:895.259865px;}
.yeb{bottom:904.620450px;}
.y187{bottom:907.948470px;}
.y150{bottom:909.390450px;}
.yae{bottom:910.284150px;}
.y116{bottom:910.650450px;}
.ybd{bottom:915.420450px;}
.y8{bottom:916.139991px;}
.y1c6{bottom:916.948290px;}
.y115{bottom:921.900450px;}
.yad{bottom:927.834681px;}
.y14f{bottom:929.370450px;}
.y186{bottom:931.078101px;}
.y1c5{bottom:931.078875px;}
.y85{bottom:938.730450px;}
.y185{bottom:945.207489px;}
.y1c4{bottom:945.208263px;}
.y84{bottom:949.980450px;}
.y7{bottom:951.690450px;}
.yac{bottom:954.385176px;}
.y14e{bottom:954.390450px;}
.ycd{bottom:958.260450px;}
.y184{bottom:959.338074px;}
.y1c3{bottom:968.337894px;}
.ycc{bottom:969.510450px;}
.yab{bottom:971.935707px;}
.y183{bottom:973.468659px;}
.y14d{bottom:979.320450px;}
.y1c2{bottom:982.468479px;}
.y6{bottom:987.780450px;}
.yaa{bottom:989.486238px;}
.y182{bottom:996.598290px;}
.y1c1{bottom:996.599064px;}
.y14c{bottom:1003.620450px;}
.ya9{bottom:1007.036769px;}
.y181{bottom:1010.728875px;}
.y1c0{bottom:1010.729649px;}
.ya8{bottom:1024.587300px;}
.y180{bottom:1024.859460px;}
.y14b{bottom:1027.920450px;}
.y1bf{bottom:1033.859280px;}
.y5{bottom:1038.090459px;}
.y17f{bottom:1038.990045px;}
.y1be{bottom:1047.989865px;}
.ya7{bottom:1051.137795px;}
.y14a{bottom:1052.940450px;}
.y1f9{bottom:1059.418362px;}
.y1bd{bottom:1062.118353px;}
.y17e{bottom:1062.119676px;}
.ya6{bottom:1068.688326px;}
.y4{bottom:1072.558956px;}
.y1bc{bottom:1076.248938px;}
.y17d{bottom:1076.250261px;}
.y149{bottom:1077.870450px;}
.y1f4{bottom:1085.968857px;}
.y1f8{bottom:1086.237894px;}
.ya5{bottom:1086.238857px;}
.y17c{bottom:1090.380846px;}
.y145{bottom:1097.579685px;}
.y1bb{bottom:1099.378569px;}
.y1f3{bottom:1103.519388px;}
.y1f7{bottom:1103.788425px;}
.ya4{bottom:1103.789388px;}
.y17b{bottom:1104.511431px;}
.y148{bottom:1104.688668px;}
.y3{bottom:1107.030450px;}
.y144{bottom:1111.710270px;}
.y1ba{bottom:1113.509154px;}
.y147{bottom:1118.819253px;}
.y141{bottom:1118.820450px;}
.y1f2{bottom:1121.069919px;}
.y1f6{bottom:1121.338956px;}
.ya3{bottom:1121.339919px;}
.y143{bottom:1125.839658px;}
.y1b9{bottom:1127.639739px;}
.y17a{bottom:1127.641062px;}
.y146{bottom:1132.949838px;}
.y1f1{bottom:1138.620450px;}
.y1f5{bottom:1138.889487px;}
.ya2{bottom:1138.890450px;}
.y142{bottom:1139.970243px;}
.y1b8{bottom:1141.769127px;}
.y179{bottom:1141.770450px;}
.y1{bottom:1189.740450px;}
.h1f{height:4.252324px;}
.h15{height:18.810000px;}
.h1b{height:20.250703px;}
.hf{height:24.583854px;}
.h18{height:25.013672px;}
.hc{height:28.687324px;}
.h1c{height:32.356406px;}
.h19{height:32.449922px;}
.h12{height:32.772713px;}
.h21{height:33.244805px;}
.h5{height:33.268184px;}
.h22{height:33.305984px;}
.h1e{height:34.350272px;}
.h1{height:34.881328px;}
.h23{height:41.649736px;}
.h6{height:41.743477px;}
.h4{height:41.772832px;}
.hd{height:41.778124px;}
.h24{height:41.787700px;}
.he{height:41.796196px;}
.h11{height:42.493359px;}
.h10{height:42.523242px;}
.h1a{height:46.871995px;}
.h3{height:49.992188px;}
.h14{height:50.772832px;}
.h8{height:54.136134px;}
.hb{height:55.685344px;}
.h9{height:55.687324px;}
.h13{height:56.687695px;}
.h7{height:56.848359px;}
.h17{height:56.908888px;}
.ha{height:58.854281px;}
.h16{height:60.145541px;}
.h1d{height:61.226363px;}
.h20{height:61.708904px;}
.h2{height:81.246797px;}
.h0{height:1263.000000px;}
.w2{width:46.170000px;}
.w3{width:57.960000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xd{left:63.810000px;}
.x5e{left:73.525527px;}
.x5d{left:79.559604px;}
.x1{left:85.140000px;}
.x49{left:91.530000px;}
.xf{left:95.670000px;}
.x5c{left:99.990000px;}
.xa{left:117.000000px;}
.x3c{left:118.170000px;}
.x25{left:138.240090px;}
.x4a{left:158.040000px;}
.x1e{left:159.570108px;}
.x3f{left:160.650333px;}
.x3d{left:161.730027px;}
.x3e{left:167.850288px;}
.x6{left:172.260000px;}
.x40{left:173.339730px;}
.x4b{left:176.670000px;}
.x2{left:180.630000px;}
.x5{left:189.180000px;}
.x3{left:208.349253px;}
.x24{left:236.790000px;}
.x43{left:238.320000px;}
.x4{left:239.398173px;}
.x41{left:245.340000px;}
.x42{left:251.910000px;}
.x10{left:254.970000px;}
.x3a{left:258.120000px;}
.x11{left:263.250000px;}
.x47{left:285.930045px;}
.x44{left:291.059820px;}
.x45{left:298.530000px;}
.x46{left:305.100000px;}
.x8{left:330.660000px;}
.x48{left:355.680432px;}
.x7{left:363.059838px;}
.x14{left:371.430000px;}
.x15{left:379.710000px;}
.x12{left:381.420000px;}
.x13{left:389.700000px;}
.x3b{left:403.830000px;}
.x23{left:411.750000px;}
.xe{left:416.790000px;}
.x1f{left:441.090000px;}
.x1d{left:442.980000px;}
.x1c{left:448.560000px;}
.x9{left:457.200000px;}
.x5f{left:458.280279px;}
.xb{left:469.889370px;}
.x4c{left:475.110000px;}
.x1a{left:480.420306px;}
.x5a{left:483.750459px;}
.x59{left:486.000000px;}
.xc{left:501.749964px;}
.x34{left:503.910000px;}
.x5b{left:506.069199px;}
.x35{left:512.190000px;}
.x1b{left:522.990414px;}
.x60{left:533.700000px;}
.x21{left:544.320108px;}
.x2f{left:560.249910px;}
.x2b{left:569.610090px;}
.x4e{left:580.501062px;}
.x4d{left:583.200297px;}
.x2e{left:589.860000px;}
.x4f{left:592.291512px;}
.x32{left:593.910000px;}
.x33{left:602.190000px;}
.x38{left:606.780000px;}
.x30{left:616.769640px;}
.x36{left:618.570000px;}
.x17{left:621.540000px;}
.x2a{left:624.150000px;}
.x2c{left:626.129820px;}
.x29{left:633.869486px;}
.x19{left:637.110000px;}
.x51{left:638.551971px;}
.x50{left:640.892106px;}
.x39{left:642.870000px;}
.x52{left:650.342421px;}
.x37{left:652.140000px;}
.x2d{left:688.950000px;}
.x28{left:693.810000px;}
.x53{left:696.602880px;}
.x31{left:700.830000px;}
.x54{left:706.953339px;}
.x55{left:721.263474px;}
.x18{left:734.490000px;}
.x58{left:775.893357px;}
.x56{left:780.573627px;}
.x57{left:784.533303px;}
.x16{left:803.790000px;}
.x20{left:826.470000px;}
.x22{left:827.729850px;}
.x26{left:831.150000px;}
.x27{left:842.580000px;}
@media print{
.v2{vertical-align:-24.000000pt;}
.v5{vertical-align:-18.876352pt;}
.v3{vertical-align:-7.979232pt;}
.v6{vertical-align:-4.796885pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:0.961856pt;}
.v7{vertical-align:4.800000pt;}
.v4{vertical-align:8.000000pt;}
.va{vertical-align:18.567456pt;}
.v1{vertical-align:24.107883pt;}
.v8{vertical-align:25.599840pt;}
.ls40{letter-spacing:-0.662656pt;}
.ls43{letter-spacing:-0.093632pt;}
.ls83{letter-spacing:-0.080864pt;}
.ls2b{letter-spacing:-0.074816pt;}
.ls42{letter-spacing:-0.072352pt;}
.ls2f{letter-spacing:-0.069472pt;}
.ls27{letter-spacing:-0.064128pt;}
.ls25{letter-spacing:-0.058784pt;}
.ls41{letter-spacing:-0.053440pt;}
.ls77{letter-spacing:-0.052192pt;}
.ls2e{letter-spacing:-0.048096pt;}
.ls85{letter-spacing:-0.046816pt;}
.ls2a{letter-spacing:-0.042752pt;}
.ls74{letter-spacing:-0.042560pt;}
.ls79{letter-spacing:-0.038304pt;}
.ls2c{letter-spacing:-0.037408pt;}
.ls71{letter-spacing:-0.034048pt;}
.ls29{letter-spacing:-0.032064pt;}
.ls78{letter-spacing:-0.029792pt;}
.ls23{letter-spacing:-0.026720pt;}
.ls48{letter-spacing:-0.025536pt;}
.ls44{letter-spacing:-0.021376pt;}
.ls72{letter-spacing:-0.021280pt;}
.ls22{letter-spacing:-0.019200pt;}
.ls75{letter-spacing:-0.017024pt;}
.ls28{letter-spacing:-0.016032pt;}
.ls84{letter-spacing:-0.012768pt;}
.ls2d{letter-spacing:-0.010688pt;}
.ls1e{letter-spacing:-0.008512pt;}
.ls55{letter-spacing:-0.005344pt;}
.ls1d{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.004256pt;}
.ls7{letter-spacing:0.005344pt;}
.ls0{letter-spacing:0.008512pt;}
.ls15{letter-spacing:0.010688pt;}
.ls60{letter-spacing:0.012768pt;}
.ls8{letter-spacing:0.016032pt;}
.ls4e{letter-spacing:0.017024pt;}
.ls32{letter-spacing:0.021280pt;}
.ls24{letter-spacing:0.021376pt;}
.ls62{letter-spacing:0.025536pt;}
.ls5{letter-spacing:0.026720pt;}
.ls4b{letter-spacing:0.029792pt;}
.ls87{letter-spacing:0.029824pt;}
.ls21{letter-spacing:0.031968pt;}
.ls18{letter-spacing:0.032064pt;}
.ls3a{letter-spacing:0.034048pt;}
.ls16{letter-spacing:0.037408pt;}
.ls47{letter-spacing:0.038304pt;}
.ls3b{letter-spacing:0.042560pt;}
.ls1f{letter-spacing:0.042624pt;}
.ls2{letter-spacing:0.042752pt;}
.lsf{letter-spacing:0.044736pt;}
.ls4a{letter-spacing:0.046816pt;}
.lsb{letter-spacing:0.048096pt;}
.ls6b{letter-spacing:0.051072pt;}
.ls9{letter-spacing:0.053440pt;}
.ls49{letter-spacing:0.055328pt;}
.ls17{letter-spacing:0.058784pt;}
.ls6a{letter-spacing:0.059584pt;}
.ls5f{letter-spacing:0.063840pt;}
.ls20{letter-spacing:0.063936pt;}
.ls1{letter-spacing:0.064128pt;}
.ls3c{letter-spacing:0.068096pt;}
.ls13{letter-spacing:0.069472pt;}
.ls4{letter-spacing:0.072352pt;}
.ls76{letter-spacing:0.074560pt;}
.lsa{letter-spacing:0.074816pt;}
.ls67{letter-spacing:0.076608pt;}
.lse{letter-spacing:0.080160pt;}
.ls33{letter-spacing:0.080864pt;}
.ls5e{letter-spacing:0.085120pt;}
.ls3{letter-spacing:0.085504pt;}
.ls46{letter-spacing:0.089376pt;}
.ls53{letter-spacing:0.089472pt;}
.ls14{letter-spacing:0.090848pt;}
.ls45{letter-spacing:0.093632pt;}
.lsd{letter-spacing:0.096192pt;}
.ls63{letter-spacing:0.097888pt;}
.ls37{letter-spacing:0.101280pt;}
.ls38{letter-spacing:0.101440pt;}
.lsc{letter-spacing:0.101536pt;}
.ls6d{letter-spacing:0.102144pt;}
.ls5d{letter-spacing:0.106400pt;}
.ls3d{letter-spacing:0.106880pt;}
.ls80{letter-spacing:0.110656pt;}
.ls11{letter-spacing:0.111840pt;}
.ls39{letter-spacing:0.112224pt;}
.ls86{letter-spacing:0.114208pt;}
.ls7d{letter-spacing:0.114912pt;}
.ls6{letter-spacing:0.117568pt;}
.ls81{letter-spacing:0.119168pt;}
.ls56{letter-spacing:0.122912pt;}
.ls7c{letter-spacing:0.123424pt;}
.ls7a{letter-spacing:0.127680pt;}
.ls36{letter-spacing:0.128256pt;}
.ls6e{letter-spacing:0.131936pt;}
.ls4d{letter-spacing:0.133600pt;}
.ls70{letter-spacing:0.136192pt;}
.ls3f{letter-spacing:0.138944pt;}
.ls6c{letter-spacing:0.140448pt;}
.ls65{letter-spacing:0.144704pt;}
.ls66{letter-spacing:0.148960pt;}
.ls34{letter-spacing:0.149632pt;}
.ls6f{letter-spacing:0.153216pt;}
.ls26{letter-spacing:0.156576pt;}
.ls7b{letter-spacing:0.157472pt;}
.ls73{letter-spacing:0.159360pt;}
.ls4c{letter-spacing:0.160192pt;}
.ls35{letter-spacing:0.160320pt;}
.ls3e{letter-spacing:0.161728pt;}
.ls64{letter-spacing:0.165984pt;}
.ls7e{letter-spacing:0.178752pt;}
.ls68{letter-spacing:0.195776pt;}
.ls54{letter-spacing:0.331776pt;}
.ls1c{letter-spacing:0.555776pt;}
.ls30{letter-spacing:0.639360pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls31{letter-spacing:0.657312pt;}
.ls19{letter-spacing:0.705408pt;}
.ls1a{letter-spacing:0.753504pt;}
.ls12{letter-spacing:7.438848pt;}
.ls69{letter-spacing:10.886848pt;}
.ls82{letter-spacing:10.960000pt;}
.ls51{letter-spacing:15.253867pt;}
.ls4f{letter-spacing:29.756800pt;}
.ls10{letter-spacing:36.549312pt;}
.ls52{letter-spacing:44.337293pt;}
.ls59{letter-spacing:84.728000pt;}
.ls61{letter-spacing:106.480864pt;}
.ls5c{letter-spacing:107.837120pt;}
.ls58{letter-spacing:112.961600pt;}
.ls5a{letter-spacing:116.976320pt;}
.ls57{letter-spacing:122.834786pt;}
.ls5b{letter-spacing:308.720000pt;}
.ls50{letter-spacing:619.598240pt;}
.wsc7{word-spacing:-53.440000pt;}
.ws1{word-spacing:-18.796576pt;}
.wsca{word-spacing:-13.653067pt;}
.ws64{word-spacing:-13.520320pt;}
.ws0{word-spacing:-13.424128pt;}
.wsc6{word-spacing:-13.360000pt;}
.ws101{word-spacing:-10.835776pt;}
.ws147{word-spacing:-10.818752pt;}
.ws14b{word-spacing:-10.750656pt;}
.ws100{word-spacing:-10.729376pt;}
.ws146{word-spacing:-10.720864pt;}
.ws149{word-spacing:-10.703840pt;}
.ws148{word-spacing:-10.678304pt;}
.ws14d{word-spacing:-10.674048pt;}
.ws14a{word-spacing:-10.665536pt;}
.wsfe{word-spacing:-10.652768pt;}
.ws65{word-spacing:-10.640000pt;}
.wsc9{word-spacing:-8.640000pt;}
.ws14c{word-spacing:-6.754208pt;}
.ws67{word-spacing:-0.242592pt;}
.ws135{word-spacing:-0.234080pt;}
.ws12e{word-spacing:-0.221312pt;}
.ws142{word-spacing:-0.217056pt;}
.ws19b{word-spacing:-0.212800pt;}
.ws158{word-spacing:-0.208544pt;}
.ws15d{word-spacing:-0.204288pt;}
.ws163{word-spacing:-0.195776pt;}
.ws103{word-spacing:-0.187264pt;}
.ws114{word-spacing:-0.178752pt;}
.wsbd{word-spacing:-0.174496pt;}
.wscf{word-spacing:-0.171488pt;}
.wsbf{word-spacing:-0.170240pt;}
.ws10f{word-spacing:-0.165984pt;}
.ws68{word-spacing:-0.161728pt;}
.wsc{word-spacing:-0.157472pt;}
.wsb{word-spacing:-0.153216pt;}
.ws93{word-spacing:-0.148960pt;}
.ws6{word-spacing:-0.127872pt;}
.wscd{word-spacing:-0.127680pt;}
.wsc0{word-spacing:-0.119168pt;}
.ws7{word-spacing:-0.117216pt;}
.ws150{word-spacing:-0.114912pt;}
.ws1c3{word-spacing:-0.111840pt;}
.wsce{word-spacing:-0.110656pt;}
.ws112{word-spacing:-0.106400pt;}
.ws6f{word-spacing:-0.082016pt;}
.ws110{word-spacing:-0.079680pt;}
.wsc1{word-spacing:-0.055328pt;}
.ws83{word-spacing:-0.048096pt;}
.ws90{word-spacing:-0.032064pt;}
.ws9f{word-spacing:-0.026720pt;}
.wsb2{word-spacing:-0.021376pt;}
.ws1a{word-spacing:-0.016032pt;}
.ws50{word-spacing:-0.010688pt;}
.wsed{word-spacing:-0.005344pt;}
.ws66{word-spacing:-0.004256pt;}
.ws3{word-spacing:0.000000pt;}
.ws2{word-spacing:0.008512pt;}
.ws6e{word-spacing:0.010688pt;}
.ws9{word-spacing:0.016032pt;}
.ws4{word-spacing:0.017024pt;}
.ws8{word-spacing:0.019200pt;}
.wsf3{word-spacing:0.021376pt;}
.ws5{word-spacing:0.025536pt;}
.wsab{word-spacing:0.026720pt;}
.wsa{word-spacing:0.037408pt;}
.wsbb{word-spacing:0.042752pt;}
.ws10a{word-spacing:0.053440pt;}
.ws99{word-spacing:0.058784pt;}
.ws63{word-spacing:0.064128pt;}
.wsef{word-spacing:0.069472pt;}
.wsba{word-spacing:0.096192pt;}
.wsfc{word-spacing:0.117568pt;}
.ws62{word-spacing:0.165664pt;}
.wscc{word-spacing:0.183008pt;}
.ws187{word-spacing:0.187264pt;}
.ws19{word-spacing:0.299264pt;}
.ws69{word-spacing:0.304608pt;}
.ws8e{word-spacing:0.320640pt;}
.ws4d{word-spacing:0.325984pt;}
.ws45{word-spacing:0.342016pt;}
.ws82{word-spacing:0.352704pt;}
.ws9e{word-spacing:0.411488pt;}
.ws9d{word-spacing:0.427520pt;}
.ws5c{word-spacing:0.470272pt;}
.wsd8{word-spacing:0.635936pt;}
.ws7f{word-spacing:0.668000pt;}
.ws44{word-spacing:0.710752pt;}
.ws189{word-spacing:0.719264pt;}
.wsbe{word-spacing:0.787360pt;}
.ws17f{word-spacing:0.846944pt;}
.ws155{word-spacing:0.915040pt;}
.ws6d{word-spacing:0.956576pt;}
.wsdf{word-spacing:0.967264pt;}
.wsd5{word-spacing:0.972608pt;}
.ws1d3{word-spacing:1.031392pt;}
.wsb5{word-spacing:1.074144pt;}
.ws188{word-spacing:1.119328pt;}
.ws17e{word-spacing:1.127840pt;}
.ws16c{word-spacing:1.132096pt;}
.wsf4{word-spacing:1.261184pt;}
.wsde{word-spacing:1.266528pt;}
.ws3b{word-spacing:1.282560pt;}
.ws32{word-spacing:1.330656pt;}
.ws7c{word-spacing:1.346688pt;}
.ws1d2{word-spacing:1.357376pt;}
.ws185{word-spacing:1.361920pt;}
.ws139{word-spacing:1.425760pt;}
.ws138{word-spacing:1.438528pt;}
.ws184{word-spacing:1.451296pt;}
.ws31{word-spacing:1.597856pt;}
.ws74{word-spacing:1.608544pt;}
.ws42{word-spacing:1.678016pt;}
.ws7b{word-spacing:1.726112pt;}
.ws92{word-spacing:1.796032pt;}
.ws91{word-spacing:1.804544pt;}
.ws18f{word-spacing:1.838592pt;}
.wsa3{word-spacing:1.897120pt;}
.wsda{word-spacing:1.939872pt;}
.ws1c2{word-spacing:2.000320pt;}
.ws15c{word-spacing:2.004576pt;}
.ws41{word-spacing:2.009344pt;}
.wsbc{word-spacing:2.068416pt;}
.ws1c1{word-spacing:2.174816pt;}
.wsa4{word-spacing:2.212416pt;}
.ws1c9{word-spacing:2.217760pt;}
.ws30{word-spacing:2.244480pt;}
.ws58{word-spacing:2.249824pt;}
.ws121{word-spacing:2.276544pt;}
.wsb1{word-spacing:2.287232pt;}
.ws4f{word-spacing:2.292576pt;}
.ws17d{word-spacing:2.332288pt;}
.wsc3{word-spacing:2.351360pt;}
.ws21{word-spacing:2.383424pt;}
.ws17c{word-spacing:2.396128pt;}
.ws1c0{word-spacing:2.408896pt;}
.ws15b{word-spacing:2.413152pt;}
.ws151{word-spacing:2.519552pt;}
.ws1ca{word-spacing:2.549088pt;}
.wse1{word-spacing:2.559776pt;}
.wsaa{word-spacing:2.565120pt;}
.ws81{word-spacing:2.570464pt;}
.ws49{word-spacing:2.581152pt;}
.wsb0{word-spacing:2.597184pt;}
.wsae{word-spacing:2.602528pt;}
.wsa9{word-spacing:2.618560pt;}
.wse3{word-spacing:2.645280pt;}
.ws84{word-spacing:2.661312pt;}
.ws19a{word-spacing:2.672768pt;}
.ws1ce{word-spacing:2.688032pt;}
.ws198{word-spacing:2.753632pt;}
.ws19e{word-spacing:2.757888pt;}
.ws17b{word-spacing:2.770656pt;}
.ws199{word-spacing:2.774912pt;}
.ws1b0{word-spacing:2.817472pt;}
.ws1a6{word-spacing:2.825984pt;}
.ws3a{word-spacing:2.869728pt;}
.ws19f{word-spacing:2.881312pt;}
.wsd7{word-spacing:2.885760pt;}
.wse2{word-spacing:2.896448pt;}
.wsad{word-spacing:2.923168pt;}
.ws1cd{word-spacing:2.928512pt;}
.ws48{word-spacing:2.949888pt;}
.ws13c{word-spacing:2.957920pt;}
.ws172{word-spacing:3.038784pt;}
.ws13b{word-spacing:3.043040pt;}
.ws1b4{word-spacing:3.047296pt;}
.ws13a{word-spacing:3.055808pt;}
.ws18b{word-spacing:3.072832pt;}
.wsc5{word-spacing:3.174336pt;}
.ws75{word-spacing:3.185024pt;}
.wsc4{word-spacing:3.206400pt;}
.ws10b{word-spacing:3.211744pt;}
.ws108{word-spacing:3.243808pt;}
.ws141{word-spacing:3.285632pt;}
.ws12{word-spacing:3.307936pt;}
.ws1b8{word-spacing:3.357984pt;}
.ws140{word-spacing:3.366496pt;}
.ws186{word-spacing:3.460128pt;}
.ws1dd{word-spacing:3.505664pt;}
.ws2d{word-spacing:3.521696pt;}
.ws10d{word-spacing:3.527040pt;}
.ws39{word-spacing:3.537728pt;}
.wsf6{word-spacing:3.543072pt;}
.ws11{word-spacing:3.548416pt;}
.ws38{word-spacing:3.559104pt;}
.ws107{word-spacing:3.575136pt;}
.ws2e{word-spacing:3.633920pt;}
.ws1a5{word-spacing:3.711232pt;}
.wsa1{word-spacing:3.842336pt;}
.wsf5{word-spacing:3.853024pt;}
.ws1b2{word-spacing:3.928288pt;}
.ws1b1{word-spacing:4.013408pt;}
.ws1a4{word-spacing:4.026176pt;}
.ws164{word-spacing:4.077248pt;}
.ws14{word-spacing:4.120224pt;}
.wsea{word-spacing:4.125568pt;}
.ws54{word-spacing:4.152288pt;}
.ws7d{word-spacing:4.157632pt;}
.ws13{word-spacing:4.162976pt;}
.ws59{word-spacing:4.168320pt;}
.wsd1{word-spacing:4.179008pt;}
.wsa2{word-spacing:4.195040pt;}
.wse9{word-spacing:4.205728pt;}
.ws1af{word-spacing:4.268768pt;}
.ws156{word-spacing:4.328352pt;}
.ws1ae{word-spacing:4.332608pt;}
.ws17a{word-spacing:4.336864pt;}
.ws167{word-spacing:4.413472pt;}
.wsdb{word-spacing:4.510336pt;}
.wse8{word-spacing:4.553088pt;}
.ws194{word-spacing:4.566688pt;}
.wsdc{word-spacing:4.569120pt;}
.ws35{word-spacing:4.601184pt;}
.ws157{word-spacing:4.643296pt;}
.ws179{word-spacing:4.681600pt;}
.ws1d9{word-spacing:4.782880pt;}
.ws51{word-spacing:4.798912pt;}
.ws52{word-spacing:4.809600pt;}
.ws28{word-spacing:4.814944pt;}
.ws47{word-spacing:4.852352pt;}
.wsa7{word-spacing:4.863040pt;}
.wsa8{word-spacing:4.868384pt;}
.ws8a{word-spacing:4.879072pt;}
.ws171{word-spacing:4.941216pt;}
.ws193{word-spacing:4.958240pt;}
.ws153{word-spacing:4.971008pt;}
.ws152{word-spacing:4.983776pt;}
.ws18a{word-spacing:5.073152pt;}
.ws2b{word-spacing:5.119552pt;}
.ws72{word-spacing:5.140928pt;}
.ws46{word-spacing:5.162304pt;}
.ws10{word-spacing:5.183680pt;}
.ws71{word-spacing:5.434848pt;}
.ws76{word-spacing:5.440192pt;}
.ws2c{word-spacing:5.456224pt;}
.ws5a{word-spacing:5.466912pt;}
.ws23{word-spacing:5.482944pt;}
.ws1dc{word-spacing:5.498976pt;}
.ws22{word-spacing:5.536384pt;}
.ws55{word-spacing:5.750144pt;}
.ws1d0{word-spacing:5.819616pt;}
.wsb9{word-spacing:5.840992pt;}
.ws13f{word-spacing:5.928608pt;}
.ws13e{word-spacing:5.949888pt;}
.ws1c4{word-spacing:6.065440pt;}
.ws56{word-spacing:6.092160pt;}
.wsb8{word-spacing:6.097504pt;}
.ws1cf{word-spacing:6.124224pt;}
.ws1c5{word-spacing:6.145600pt;}
.wsac{word-spacing:6.220416pt;}
.ws192{word-spacing:6.247808pt;}
.ws191{word-spacing:6.252064pt;}
.ws12f{word-spacing:6.349952pt;}
.wsfa{word-spacing:6.391424pt;}
.ws1c8{word-spacing:6.402112pt;}
.ws7e{word-spacing:6.412800pt;}
.wsd2{word-spacing:6.444864pt;}
.wsf9{word-spacing:6.460896pt;}
.wsd3{word-spacing:6.466240pt;}
.ws190{word-spacing:6.592544pt;}
.ws29{word-spacing:6.717408pt;}
.ws6c{word-spacing:6.722752pt;}
.ws125{word-spacing:6.728096pt;}
.ws11f{word-spacing:6.760160pt;}
.ws162{word-spacing:6.801088pt;}
.wsb3{word-spacing:6.834976pt;}
.ws144{word-spacing:6.898976pt;}
.ws145{word-spacing:6.903232pt;}
.ws1a1{word-spacing:6.979840pt;}
.wsf2{word-spacing:7.016672pt;}
.wsb6{word-spacing:7.043392pt;}
.ws11e{word-spacing:7.064768pt;}
.ws161{word-spacing:7.205408pt;}
.ws176{word-spacing:7.230944pt;}
.ws127{word-spacing:7.324576pt;}
.ws7a{word-spacing:7.348000pt;}
.ws20{word-spacing:7.358688pt;}
.ws86{word-spacing:7.385408pt;}
.ws1d8{word-spacing:7.401440pt;}
.ws1d5{word-spacing:7.406784pt;}
.ws1d4{word-spacing:7.422816pt;}
.ws1db{word-spacing:7.444192pt;}
.ws175{word-spacing:7.541632pt;}
.ws1f{word-spacing:7.679328pt;}
.ws24{word-spacing:7.695360pt;}
.ws25{word-spacing:7.732768pt;}
.ws15a{word-spacing:7.873600pt;}
.ws159{word-spacing:7.941696pt;}
.ws104{word-spacing:7.962560pt;}
.ws2a{word-spacing:7.978592pt;}
.ws120{word-spacing:7.989280pt;}
.ws80{word-spacing:7.994624pt;}
.ws8b{word-spacing:8.005312pt;}
.ws33{word-spacing:8.032032pt;}
.ws34{word-spacing:8.064096pt;}
.ws8d{word-spacing:8.133568pt;}
.ws1ad{word-spacing:8.150240pt;}
.ws174{word-spacing:8.265152pt;}
.ws40{word-spacing:8.315264pt;}
.wsd4{word-spacing:8.325952pt;}
.ws126{word-spacing:8.336640pt;}
.ws9b{word-spacing:8.352672pt;}
.ws8c{word-spacing:8.379392pt;}
.ws1cc{word-spacing:8.427488pt;}
.ws73{word-spacing:8.443520pt;}
.ws1ac{word-spacing:8.477952pt;}
.ws13d{word-spacing:8.516256pt;}
.ws95{word-spacing:8.630560pt;}
.wsb7{word-spacing:8.646592pt;}
.wsa6{word-spacing:8.651936pt;}
.ws1cb{word-spacing:8.684000pt;}
.wse0{word-spacing:8.700032pt;}
.wse6{word-spacing:8.892416pt;}
.wsd9{word-spacing:8.956544pt;}
.wsa0{word-spacing:9.063424pt;}
.wse7{word-spacing:9.079456pt;}
.ws11b{word-spacing:9.112096pt;}
.ws1ba{word-spacing:9.116352pt;}
.ws1b9{word-spacing:9.163168pt;}
.wse5{word-spacing:9.229088pt;}
.ws6a{word-spacing:9.266496pt;}
.ws17{word-spacing:9.282528pt;}
.wsa5{word-spacing:9.287872pt;}
.ws14f{word-spacing:9.427040pt;}
.ws78{word-spacing:9.560416pt;}
.ws3f{word-spacing:9.581792pt;}
.wsc2{word-spacing:9.613856pt;}
.ws79{word-spacing:9.645920pt;}
.ws1aa{word-spacing:9.686656pt;}
.ws6b{word-spacing:9.726080pt;}
.ws1a2{word-spacing:9.737728pt;}
.ws14e{word-spacing:9.754752pt;}
.ws1a9{word-spacing:9.771776pt;}
.wsd0{word-spacing:9.907776pt;}
.ws2f{word-spacing:9.918464pt;}
.ws136{word-spacing:10.167584pt;}
.ws15e{word-spacing:10.193120pt;}
.ws5e{word-spacing:10.223072pt;}
.ws77{word-spacing:10.244448pt;}
.ws37{word-spacing:10.249792pt;}
.ws16{word-spacing:10.271168pt;}
.wsaf{word-spacing:10.281856pt;}
.ws70{word-spacing:10.297888pt;}
.ws165{word-spacing:10.431456pt;}
.wsec{word-spacing:10.597152pt;}
.wsd{word-spacing:10.613184pt;}
.ws15{word-spacing:10.623872pt;}
.wsd6{word-spacing:10.629216pt;}
.ws1bc{word-spacing:10.644256pt;}
.ws9c{word-spacing:10.666624pt;}
.ws36{word-spacing:10.714720pt;}
.ws197{word-spacing:10.742144pt;}
.ws182{word-spacing:10.823008pt;}
.ws4e{word-spacing:10.869696pt;}
.ws57{word-spacing:10.885728pt;}
.wsb4{word-spacing:10.891072pt;}
.ws61{word-spacing:10.928480pt;}
.ws196{word-spacing:10.997504pt;}
.ws1bb{word-spacing:11.061344pt;}
.ws1b3{word-spacing:11.146464pt;}
.ws123{word-spacing:11.505632pt;}
.wsf7{word-spacing:11.553728pt;}
.ws122{word-spacing:11.569760pt;}
.ws16a{word-spacing:11.597600pt;}
.ws128{word-spacing:11.686976pt;}
.ws129{word-spacing:11.699744pt;}
.ws169{word-spacing:11.712512pt;}
.ws1bd{word-spacing:11.776352pt;}
.ws4b{word-spacing:11.852992pt;}
.ws3c{word-spacing:11.949184pt;}
.wsfb{word-spacing:11.959872pt;}
.ws88{word-spacing:11.975904pt;}
.ws89{word-spacing:11.986592pt;}
.ws168{word-spacing:12.006176pt;}
.ws1a8{word-spacing:12.010432pt;}
.ws11c{word-spacing:12.280512pt;}
.ws1a7{word-spacing:12.321120pt;}
.ws137{word-spacing:12.329632pt;}
.ws3d{word-spacing:12.793536pt;}
.wsdd{word-spacing:12.798880pt;}
.wse4{word-spacing:12.948512pt;}
.wsf{word-spacing:13.194336pt;}
.ws102{word-spacing:13.265952pt;}
.ws4a{word-spacing:13.568416pt;}
.ws10c{word-spacing:13.760800pt;}
.ws5d{word-spacing:13.771488pt;}
.ws1c{word-spacing:14.124192pt;}
.ws94{word-spacing:14.402080pt;}
.ws60{word-spacing:14.407424pt;}
.ws1b{word-spacing:14.482240pt;}
.wsf8{word-spacing:14.850976pt;}
.ws5f{word-spacing:15.112832pt;}
.ws1d1{word-spacing:15.358656pt;}
.ws143{word-spacing:15.636544pt;}
.ws109{word-spacing:15.695328pt;}
.ws1d7{word-spacing:15.732736pt;}
.ws105{word-spacing:15.812896pt;}
.ws1d6{word-spacing:16.106816pt;}
.ws106{word-spacing:16.117504pt;}
.ws10e{word-spacing:16.293856pt;}
.ws96{word-spacing:16.315232pt;}
.ws16f{word-spacing:16.398368pt;}
.ws43{word-spacing:16.438144pt;}
.ws160{word-spacing:16.479232pt;}
.ws15f{word-spacing:16.517536pt;}
.ws5b{word-spacing:16.635872pt;}
.ws1c7{word-spacing:16.700000pt;}
.ws12d{word-spacing:16.730336pt;}
.ws113{word-spacing:16.789920pt;}
.ws12c{word-spacing:16.802688pt;}
.ws16d{word-spacing:16.836736pt;}
.ws16e{word-spacing:16.849504pt;}
.ws1c6{word-spacing:16.956512pt;}
.ws27{word-spacing:17.277152pt;}
.ws1b7{word-spacing:17.560256pt;}
.ws26{word-spacing:17.603136pt;}
.ws1ab{word-spacing:17.862432pt;}
.wsf0{word-spacing:17.955840pt;}
.ws130{word-spacing:18.377408pt;}
.ws131{word-spacing:18.424224pt;}
.ws170{word-spacing:18.496576pt;}
.ws53{word-spacing:18.891040pt;}
.ws16b{word-spacing:19.134976pt;}
.ws1da{word-spacing:19.206336pt;}
.ws98{word-spacing:20.184288pt;}
.wscb{word-spacing:20.364960pt;}
.ws97{word-spacing:20.515616pt;}
.ws195{word-spacing:20.726720pt;}
.ws85{word-spacing:21.087424pt;}
.ws3e{word-spacing:21.237056pt;}
.ws12b{word-spacing:21.271488pt;}
.wse{word-spacing:21.402720pt;}
.ws9a{word-spacing:21.536320pt;}
.ws12a{word-spacing:21.628992pt;}
.ws154{word-spacing:22.829184pt;}
.ws1e{word-spacing:23.064704pt;}
.ws124{word-spacing:23.433440pt;}
.ws178{word-spacing:23.948512pt;}
.ws4c{word-spacing:24.010592pt;}
.ws11d{word-spacing:24.085408pt;}
.ws8f{word-spacing:24.368640pt;}
.wsff{word-spacing:25.233824pt;}
.ws1d{word-spacing:25.421408pt;}
.ws134{word-spacing:26.029696pt;}
.ws183{word-spacing:26.434016pt;}
.ws181{word-spacing:26.995808pt;}
.ws180{word-spacing:27.046880pt;}
.ws18e{word-spacing:28.281120pt;}
.ws18{word-spacing:28.857600pt;}
.ws1b6{word-spacing:30.804928pt;}
.ws1b5{word-spacing:30.885792pt;}
.wsf1{word-spacing:31.059328pt;}
.wseb{word-spacing:32.541376pt;}
.ws87{word-spacing:34.869600pt;}
.ws177{word-spacing:36.269632pt;}
.ws1a0{word-spacing:38.878560pt;}
.ws1bf{word-spacing:38.882816pt;}
.ws1be{word-spacing:39.202016pt;}
.ws173{word-spacing:44.266656pt;}
.ws1a3{word-spacing:44.909312pt;}
.ws18d{word-spacing:47.186272pt;}
.ws18c{word-spacing:47.526752pt;}
.ws166{word-spacing:58.026304pt;}
.ws19d{word-spacing:61.260864pt;}
.ws19c{word-spacing:61.724768pt;}
.ws133{word-spacing:74.092704pt;}
.ws132{word-spacing:74.105472pt;}
.ws111{word-spacing:113.996960pt;}
.wsc8{word-spacing:114.365120pt;}
.ws117{word-spacing:130.314464pt;}
.ws119{word-spacing:130.331488pt;}
.ws118{word-spacing:130.335744pt;}
.ws11a{word-spacing:139.277600pt;}
.ws115{word-spacing:204.007104pt;}
.ws116{word-spacing:232.718080pt;}
.wsee{word-spacing:304.586624pt;}
.wsfd{word-spacing:419.482624pt;}
._14{margin-left:-170.379350pt;}
._17{margin-left:-41.300224pt;}
._12{margin-left:-31.879040pt;}
._29{margin-left:-26.468000pt;}
._5{margin-left:-20.943136pt;}
._26{margin-left:-19.122208pt;}
._15{margin-left:-13.379360pt;}
._27{margin-left:-11.393408pt;}
._b{margin-left:-10.255136pt;}
._4{margin-left:-7.679328pt;}
._a{margin-left:-5.803584pt;}
._6{margin-left:-4.798912pt;}
._f{margin-left:-3.372064pt;}
._9{margin-left:-2.102496pt;}
._2{margin-left:-0.961920pt;}
._3{width:1.031392pt;}
._2a{width:3.366496pt;}
._2b{width:4.447520pt;}
._10{width:7.116032pt;}
._11{width:9.282528pt;}
._13{width:11.484256pt;}
._1a{width:14.198016pt;}
._1e{width:16.713312pt;}
._28{width:17.756032pt;}
._1d{width:19.258400pt;}
._c{width:21.677568pt;}
._22{width:23.497376pt;}
._d{width:25.676448pt;}
._e{width:26.634048pt;}
._8{width:27.595904pt;}
._2c{width:30.813504pt;}
._1f{width:33.601120pt;}
._24{width:35.260960pt;}
._23{width:38.601728pt;}
._19{width:40.959744pt;}
._21{width:49.918624pt;}
._20{width:60.025056pt;}
._18{width:66.640448pt;}
._25{width:122.104640pt;}
._16{width:158.191264pt;}
._1c{width:232.718080pt;}
._1b{width:270.158112pt;}
._7{width:321.919584pt;}
._0{width:1422.355200pt;}
._1{width:1532.206816pt;}
.fsf{font-size:5.440000pt;}
.fse{font-size:26.560000pt;}
.fs7{font-size:31.450133pt;}
.fs9{font-size:31.572267pt;}
.fsc{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs0{font-size:42.560000pt;}
.fsd{font-size:44.980424pt;}
.fs3{font-size:53.440000pt;}
.fs8{font-size:54.400000pt;}
.fsa{font-size:54.612267pt;}
.fs6{font-size:56.479151pt;}
.fsb{font-size:57.718301pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fs1{font-size:106.560000pt;}
.y0{bottom:0.000000pt;}
.y112{bottom:3.040400pt;}
.y2{bottom:49.627067pt;}
.y2e{bottom:99.859176pt;}
.y58{bottom:100.320096pt;}
.y140{bottom:108.427067pt;}
.y83{bottom:111.140899pt;}
.y178{bottom:111.223251pt;}
.ya1{bottom:112.096531pt;}
.y13f{bottom:112.267067pt;}
.y2d{bottom:115.459648pt;}
.y57{bottom:115.920568pt;}
.y1b7{bottom:116.185523pt;}
.yea{bottom:117.141875pt;}
.y1f0{bottom:117.220536pt;}
.y114{bottom:118.347395pt;}
.y177{bottom:123.782707pt;}
.y82{bottom:126.741371pt;}
.ya0{bottom:127.697003pt;}
.y1b6{bottom:128.744979pt;}
.y2c{bottom:131.060120pt;}
.y56{bottom:131.521040pt;}
.ye9{bottom:132.742347pt;}
.y1ef{bottom:132.821008pt;}
.y13e{bottom:134.187200pt;}
.ycb{bottom:140.504739pt;}
.y1b5{bottom:141.305499pt;}
.y81{bottom:142.341843pt;}
.y111{bottom:142.666667pt;}
.y9f{bottom:143.297475pt;}
.y176{bottom:144.342379pt;}
.ybc{bottom:144.586680pt;}
.y113{bottom:145.707067pt;}
.y2b{bottom:146.660592pt;}
.y110{bottom:146.906288pt;}
.y55{bottom:147.121512pt;}
.y13d{bottom:148.107200pt;}
.ye8{bottom:148.342819pt;}
.y1ee{bottom:148.421480pt;}
.y1b4{bottom:153.864955pt;}
.yca{bottom:156.105211pt;}
.y175{bottom:156.901835pt;}
.ybb{bottom:157.147200pt;}
.y80{bottom:157.942315pt;}
.y13c{bottom:162.027067pt;}
.y2a{bottom:162.261064pt;}
.y54{bottom:162.721984pt;}
.ye7{bottom:163.943291pt;}
.y1ed{bottom:164.021952pt;}
.y9e{bottom:165.537867pt;}
.y174{bottom:169.462355pt;}
.y10f{bottom:170.506728pt;}
.yc9{bottom:171.705683pt;}
.y7f{bottom:173.542787pt;}
.y1b3{bottom:174.424627pt;}
.yba{bottom:175.387067pt;}
.y13b{bottom:175.547067pt;}
.y29{bottom:177.861536pt;}
.y53{bottom:178.322456pt;}
.ye6{bottom:179.543763pt;}
.y1ec{bottom:179.622424pt;}
.y9d{bottom:181.138339pt;}
.y173{bottom:182.022875pt;}
.y13a{bottom:184.987067pt;}
.y10e{bottom:186.107200pt;}
.y10d{bottom:186.107507pt;}
.y1b2{bottom:186.985147pt;}
.y7e{bottom:189.143259pt;}
.y28{bottom:193.462008pt;}
.y52{bottom:193.922928pt;}
.y139{bottom:195.067611pt;}
.ye5{bottom:195.144235pt;}
.y1eb{bottom:195.222896pt;}
.yc8{bottom:195.306123pt;}
.y9c{bottom:196.738811pt;}
.y1b1{bottom:199.545667pt;}
.y10c{bottom:200.587067pt;}
.y172{bottom:202.582547pt;}
.y10a{bottom:202.583355pt;}
.y10b{bottom:202.587067pt;}
.y7d{bottom:204.743731pt;}
.y138{bottom:207.627067pt;}
.y27{bottom:209.062480pt;}
.y51{bottom:209.523400pt;}
.ye4{bottom:210.744707pt;}
.y1ea{bottom:210.823368pt;}
.yc7{bottom:210.906595pt;}
.y1b0{bottom:212.106187pt;}
.y171{bottom:215.143067pt;}
.y9b{bottom:218.979203pt;}
.y109{bottom:219.062915pt;}
.y7c{bottom:220.344203pt;}
.y26{bottom:224.662952pt;}
.y1af{bottom:224.665643pt;}
.y50{bottom:225.123872pt;}
.ye3{bottom:226.345179pt;}
.y1e9{bottom:226.423840pt;}
.yc6{bottom:226.507067pt;}
.y170{bottom:227.702523pt;}
.y137{bottom:229.547067pt;}
.y9a{bottom:234.579675pt;}
.y7b{bottom:235.944675pt;}
.y16f{bottom:240.263043pt;}
.y25{bottom:240.263424pt;}
.y4f{bottom:240.724344pt;}
.ye2{bottom:241.945651pt;}
.y1e8{bottom:242.024312pt;}
.y108{bottom:242.663355pt;}
.y136{bottom:243.467067pt;}
.y1ae{bottom:245.225315pt;}
.yc5{bottom:249.626547pt;}
.y99{bottom:250.180147pt;}
.y16e{bottom:252.823563pt;}
.y24{bottom:255.863896pt;}
.y4e{bottom:256.324816pt;}
.y7a{bottom:256.905179pt;}
.y12e{bottom:257.385323pt;}
.ye1{bottom:257.546123pt;}
.y1ad{bottom:257.785835pt;}
.y107{bottom:258.263827pt;}
.yc4{bottom:262.187067pt;}
.y1e7{bottom:265.863896pt;}
.y133{bottom:269.706547pt;}
.y131{bottom:269.707067pt;}
.y12d{bottom:269.945843pt;}
.y135{bottom:269.945947pt;}
.y1ac{bottom:270.346355pt;}
.y23{bottom:271.464368pt;}
.y4d{bottom:271.925288pt;}
.y98{bottom:272.420539pt;}
.y79{bottom:272.505651pt;}
.ye0{bottom:273.146595pt;}
.y16d{bottom:273.383235pt;}
.y106{bottom:273.864299pt;}
.y12a{bottom:276.267067pt;}
.yc3{bottom:280.427067pt;}
.y130{bottom:280.907067pt;}
.y1e6{bottom:281.464368pt;}
.y12f{bottom:282.267067pt;}
.y132{bottom:282.267587pt;}
.y12c{bottom:282.506363pt;}
.y134{bottom:282.506467pt;}
.y1ab{bottom:282.906875pt;}
.y16c{bottom:285.943755pt;}
.y22{bottom:287.064840pt;}
.y4c{bottom:287.525760pt;}
.y97{bottom:288.021011pt;}
.y78{bottom:288.106123pt;}
.ydf{bottom:288.741875pt;}
.y105{bottom:289.464771pt;}
.y12b{bottom:295.066883pt;}
.y1e5{bottom:297.064840pt;}
.y16b{bottom:298.504275pt;}
.y21{bottom:302.665312pt;}
.y4b{bottom:303.126232pt;}
.y1aa{bottom:303.466547pt;}
.y96{bottom:303.621483pt;}
.y77{bottom:303.706595pt;}
.yde{bottom:304.342347pt;}
.y129{bottom:308.587067pt;}
.y16a{bottom:311.064795pt;}
.y1e4{bottom:312.665312pt;}
.y104{bottom:313.065211pt;}
.y1a9{bottom:316.018667pt;}
.y128{bottom:318.027067pt;}
.y20{bottom:318.265784pt;}
.y4a{bottom:318.726704pt;}
.y75{bottom:319.307067pt;}
.y74{bottom:319.307507pt;}
.ydd{bottom:319.942819pt;}
.y169{bottom:323.625315pt;}
.y76{bottom:325.307067pt;}
.y95{bottom:325.861875pt;}
.y1e3{bottom:328.265784pt;}
.y1a8{bottom:328.579187pt;}
.y127{bottom:328.581435pt;}
.y103{bottom:328.665683pt;}
.y1f{bottom:333.866256pt;}
.y49{bottom:334.327176pt;}
.ydc{bottom:335.543291pt;}
.y72{bottom:335.780427pt;}
.y73{bottom:335.787067pt;}
.y1a7{bottom:341.139707pt;}
.y94{bottom:341.462347pt;}
.y1e2{bottom:343.866256pt;}
.y126{bottom:344.181907pt;}
.y168{bottom:344.184987pt;}
.y102{bottom:344.266155pt;}
.y1e{bottom:349.466728pt;}
.y48{bottom:349.927648pt;}
.ydb{bottom:351.143763pt;}
.y71{bottom:352.259987pt;}
.y167{bottom:356.745507pt;}
.y93{bottom:357.062819pt;}
.y1e1{bottom:359.466728pt;}
.y125{bottom:359.782379pt;}
.y1a6{bottom:361.699379pt;}
.y1d{bottom:365.067200pt;}
.y47{bottom:365.528120pt;}
.yda{bottom:366.744235pt;}
.y70{bottom:367.860459pt;}
.y101{bottom:367.866595pt;}
.y166{bottom:369.306027pt;}
.y1a5{bottom:374.259899pt;}
.y1e0{bottom:375.067200pt;}
.y124{bottom:375.382851pt;}
.y92{bottom:378.023323pt;}
.y46{bottom:381.128592pt;}
.y165{bottom:381.866547pt;}
.yd9{bottom:382.344707pt;}
.y6f{bottom:383.460931pt;}
.y100{bottom:383.467067pt;}
.y1a4{bottom:386.820419pt;}
.y1c{bottom:389.627067pt;}
.y123{bottom:390.983323pt;}
.y91{bottom:393.623795pt;}
.y164{bottom:394.427067pt;}
.y45{bottom:396.729064pt;}
.yd8{bottom:397.945179pt;}
.y6e{bottom:399.061403pt;}
.y1a3{bottom:399.380939pt;}
.y1df{bottom:399.867067pt;}
.y122{bottom:406.583795pt;}
.yff{bottom:407.067507pt;}
.y90{bottom:409.224267pt;}
.yb9{bottom:412.266680pt;}
.yd7{bottom:413.545651pt;}
.y6d{bottom:414.661875pt;}
.y44{bottom:418.969456pt;}
.y1a2{bottom:419.940611pt;}
.y121{bottom:422.184267pt;}
.y163{bottom:424.427067pt;}
.y8f{bottom:424.824739pt;}
.yb8{bottom:424.827200pt;}
.yd6{bottom:429.146123pt;}
.y6c{bottom:430.262347pt;}
.yfd{bottom:431.786160pt;}
.y1a1{bottom:432.501131pt;}
.y43{bottom:434.569928pt;}
.yfc{bottom:436.346240pt;}
.yf8{bottom:436.347067pt;}
.yf5{bottom:442.427272pt;}
.y1b{bottom:442.506728pt;}
.yb7{bottom:443.067200pt;}
.yfb{bottom:444.426000pt;}
.yd5{bottom:444.746595pt;}
.y1a0{bottom:445.061651pt;}
.y120{bottom:445.784707pt;}
.y6b{bottom:445.862819pt;}
.yfa{bottom:446.906640pt;}
.yf7{bottom:446.907467pt;}
.y8e{bottom:448.425179pt;}
.y42{bottom:450.170400pt;}
.yf3{bottom:450.266739pt;}
.yfe{bottom:450.267067pt;}
.yf6{bottom:455.387067pt;}
.yf9{bottom:457.067200pt;}
.y19f{bottom:457.621107pt;}
.y1a{bottom:458.107200pt;}
.yd4{bottom:460.347067pt;}
.y11f{bottom:461.385179pt;}
.y6a{bottom:461.463291pt;}
.y8d{bottom:464.025651pt;}
.y1de{bottom:465.625315pt;}
.y41{bottom:465.770872pt;}
.yf4{bottom:466.507067pt;}
.y11e{bottom:476.985651pt;}
.y69{bottom:477.063763pt;}
.y19e{bottom:478.180779pt;}
.y1dd{bottom:478.185835pt;}
.y8c{bottom:479.626123pt;}
.y162{bottom:481.300931pt;}
.y40{bottom:481.371344pt;}
.y19{bottom:482.667067pt;}
.yd3{bottom:484.907067pt;}
.yf2{bottom:486.266595pt;}
.y19d{bottom:490.741299pt;}
.y1dc{bottom:490.746355pt;}
.y11d{bottom:492.586123pt;}
.y68{bottom:492.664235pt;}
.y8b{bottom:495.226595pt;}
.y161{bottom:496.901403pt;}
.y3f{bottom:496.971816pt;}
.yf1{bottom:501.867067pt;}
.y19c{bottom:503.301819pt;}
.y1db{bottom:503.306875pt;}
.y11c{bottom:508.186595pt;}
.y67{bottom:508.264707pt;}
.y8a{bottom:510.827067pt;}
.y160{bottom:512.501875pt;}
.y3e{bottom:512.572288pt;}
.yc2{bottom:515.306547pt;}
.y19b{bottom:515.862339pt;}
.y11b{bottom:523.787067pt;}
.y66{bottom:523.865179pt;}
.y1da{bottom:523.866547pt;}
.yc1{bottom:527.867067pt;}
.y15f{bottom:528.102347pt;}
.y3d{bottom:528.172760pt;}
.yf0{bottom:528.986939pt;}
.y19a{bottom:536.422011pt;}
.y1d9{bottom:536.423763pt;}
.yd2{bottom:537.305891pt;}
.y89{bottom:539.307011pt;}
.y65{bottom:539.465651pt;}
.yef{bottom:541.547459pt;}
.y18{bottom:543.541315pt;}
.y15e{bottom:543.702819pt;}
.y3c{bottom:543.773232pt;}
.yc0{bottom:546.107067pt;}
.y199{bottom:548.982531pt;}
.y1d8{bottom:548.984283pt;}
.y11a{bottom:549.546939pt;}
.yd1{bottom:549.866411pt;}
.y88{bottom:552.106931pt;}
.y64{bottom:555.066123pt;}
.y17{bottom:559.141787pt;}
.y15d{bottom:559.303291pt;}
.y3b{bottom:559.373704pt;}
.y198{bottom:561.541987pt;}
.y1d7{bottom:561.544803pt;}
.y119{bottom:562.107459pt;}
.yee{bottom:562.347595pt;}
.yd0{bottom:562.426931pt;}
.y63{bottom:570.666595pt;}
.yed{bottom:572.347067pt;}
.y87{bottom:572.907067pt;}
.y197{bottom:574.102507pt;}
.y1d6{bottom:574.105323pt;}
.y16{bottom:574.742259pt;}
.y15c{bottom:574.903763pt;}
.y3a{bottom:574.974176pt;}
.y118{bottom:582.907595pt;}
.ycf{bottom:583.227067pt;}
.y62{bottom:586.267067pt;}
.y196{bottom:586.663027pt;}
.y15{bottom:590.342731pt;}
.y15b{bottom:590.504235pt;}
.y39{bottom:590.574648pt;}
.y86{bottom:590.907067pt;}
.y117{bottom:592.907067pt;}
.yce{bottom:593.227067pt;}
.y1d5{bottom:594.664995pt;}
.y14{bottom:605.943203pt;}
.y15a{bottom:606.104707pt;}
.y38{bottom:606.175120pt;}
.y195{bottom:607.222699pt;}
.y1d4{bottom:607.224451pt;}
.y61{bottom:610.827067pt;}
.y194{bottom:619.783219pt;}
.y1d3{bottom:619.784971pt;}
.y13{bottom:621.543675pt;}
.y159{bottom:621.705179pt;}
.y37{bottom:621.775592pt;}
.y193{bottom:632.343739pt;}
.y1d2{bottom:632.344427pt;}
.y12{bottom:637.144147pt;}
.y158{bottom:637.305651pt;}
.y36{bottom:637.376064pt;}
.y192{bottom:644.904259pt;}
.y11{bottom:652.744619pt;}
.y1d1{bottom:652.904099pt;}
.y157{bottom:652.906123pt;}
.y35{bottom:652.976536pt;}
.y60{bottom:663.704707pt;}
.y191{bottom:665.463931pt;}
.y1d0{bottom:665.464619pt;}
.y10{bottom:668.345091pt;}
.y156{bottom:668.506595pt;}
.y34{bottom:668.577008pt;}
.yb6{bottom:677.697771pt;}
.y190{bottom:678.023387pt;}
.y1cf{bottom:678.024075pt;}
.y5f{bottom:679.305179pt;}
.yf{bottom:683.945563pt;}
.y155{bottom:684.107067pt;}
.y33{bottom:684.177480pt;}
.y18f{bottom:690.583907pt;}
.yb5{bottom:693.298243pt;}
.y5e{bottom:694.905651pt;}
.y1ce{bottom:698.583747pt;}
.ye{bottom:699.546035pt;}
.y32{bottom:699.777952pt;}
.y154{bottom:708.667067pt;}
.yb4{bottom:708.898715pt;}
.y5d{bottom:710.506123pt;}
.y18e{bottom:711.143579pt;}
.y1cd{bottom:711.144267pt;}
.yd{bottom:715.146507pt;}
.y31{bottom:715.378424pt;}
.y18d{bottom:723.704099pt;}
.y1cc{bottom:723.704787pt;}
.yb3{bottom:724.499187pt;}
.y5c{bottom:726.106595pt;}
.yc{bottom:730.746979pt;}
.y30{bottom:730.978896pt;}
.y18c{bottom:736.264619pt;}
.y1cb{bottom:736.265307pt;}
.yb2{bottom:740.099659pt;}
.y5b{bottom:741.707067pt;}
.yb{bottom:746.347451pt;}
.y2f{bottom:746.579368pt;}
.y18b{bottom:748.825139pt;}
.yb1{bottom:755.700131pt;}
.y1ca{bottom:756.824979pt;}
.y153{bottom:761.066547pt;}
.ya{bottom:762.187067pt;}
.y5a{bottom:764.827200pt;}
.y18a{bottom:769.384811pt;}
.y1c9{bottom:769.385499pt;}
.yb0{bottom:771.300603pt;}
.y152{bottom:773.627067pt;}
.y189{bottom:781.945331pt;}
.y1c8{bottom:781.946019pt;}
.ybf{bottom:782.906547pt;}
.y59{bottom:783.067067pt;}
.y9{bottom:785.307067pt;}
.yaf{bottom:793.540995pt;}
.yec{bottom:794.107067pt;}
.y188{bottom:794.504787pt;}
.y1c7{bottom:794.505475pt;}
.ybe{bottom:795.467067pt;}
.y151{bottom:795.786547pt;}
.yeb{bottom:804.107067pt;}
.y187{bottom:807.065307pt;}
.y150{bottom:808.347067pt;}
.yae{bottom:809.141467pt;}
.y116{bottom:809.467067pt;}
.ybd{bottom:813.707067pt;}
.y8{bottom:814.346659pt;}
.y1c6{bottom:815.065147pt;}
.y115{bottom:819.467067pt;}
.yad{bottom:824.741939pt;}
.y14f{bottom:826.107067pt;}
.y186{bottom:827.624979pt;}
.y1c5{bottom:827.625667pt;}
.y85{bottom:834.427067pt;}
.y185{bottom:840.184435pt;}
.y1c4{bottom:840.185123pt;}
.y84{bottom:844.427067pt;}
.y7{bottom:845.947067pt;}
.yac{bottom:848.342379pt;}
.y14e{bottom:848.347067pt;}
.ycd{bottom:851.787067pt;}
.y184{bottom:852.744955pt;}
.y1c3{bottom:860.744795pt;}
.ycc{bottom:861.787067pt;}
.yab{bottom:863.942851pt;}
.y183{bottom:865.305475pt;}
.y14d{bottom:870.507067pt;}
.y1c2{bottom:873.305315pt;}
.y6{bottom:878.027067pt;}
.yaa{bottom:879.543323pt;}
.y182{bottom:885.865147pt;}
.y1c1{bottom:885.865835pt;}
.y14c{bottom:892.107067pt;}
.ya9{bottom:895.143795pt;}
.y181{bottom:898.425667pt;}
.y1c0{bottom:898.426355pt;}
.ya8{bottom:910.744267pt;}
.y180{bottom:910.986187pt;}
.y14b{bottom:913.707067pt;}
.y1bf{bottom:918.986027pt;}
.y5{bottom:922.747075pt;}
.y17f{bottom:923.546707pt;}
.y1be{bottom:931.546547pt;}
.ya7{bottom:934.344707pt;}
.y14a{bottom:935.947067pt;}
.y1f9{bottom:941.705211pt;}
.y1bd{bottom:944.105203pt;}
.y17e{bottom:944.106379pt;}
.ya6{bottom:949.945179pt;}
.y4{bottom:953.385739pt;}
.y1bc{bottom:956.665723pt;}
.y17d{bottom:956.666899pt;}
.y149{bottom:958.107067pt;}
.y1f4{bottom:965.305651pt;}
.y1f8{bottom:965.544795pt;}
.ya5{bottom:965.545651pt;}
.y17c{bottom:969.227419pt;}
.y145{bottom:975.626387pt;}
.y1bb{bottom:977.225395pt;}
.y1f3{bottom:980.906123pt;}
.y1f7{bottom:981.145267pt;}
.ya4{bottom:981.146123pt;}
.y17b{bottom:981.787939pt;}
.y148{bottom:981.945483pt;}
.y3{bottom:984.027067pt;}
.y144{bottom:988.186907pt;}
.y1ba{bottom:989.785915pt;}
.y147{bottom:994.506003pt;}
.y141{bottom:994.507067pt;}
.y1f2{bottom:996.506595pt;}
.y1f6{bottom:996.745739pt;}
.ya3{bottom:996.746595pt;}
.y143{bottom:1000.746363pt;}
.y1b9{bottom:1002.346435pt;}
.y17a{bottom:1002.347611pt;}
.y146{bottom:1007.066523pt;}
.y1f1{bottom:1012.107067pt;}
.y1f5{bottom:1012.346211pt;}
.ya2{bottom:1012.347067pt;}
.y142{bottom:1013.306883pt;}
.y1b8{bottom:1014.905891pt;}
.y179{bottom:1014.907067pt;}
.y1{bottom:1057.547067pt;}
.h1f{height:3.779844pt;}
.h15{height:16.720000pt;}
.h1b{height:18.000625pt;}
.hf{height:21.852314pt;}
.h18{height:22.234375pt;}
.hc{height:25.499844pt;}
.h1c{height:28.761250pt;}
.h19{height:28.844375pt;}
.h12{height:29.131300pt;}
.h21{height:29.550937pt;}
.h5{height:29.571719pt;}
.h22{height:29.605319pt;}
.h1e{height:30.533575pt;}
.h1{height:31.005625pt;}
.h23{height:37.021987pt;}
.h6{height:37.105312pt;}
.h4{height:37.131406pt;}
.hd{height:37.136110pt;}
.h24{height:37.144622pt;}
.he{height:37.152174pt;}
.h11{height:37.771875pt;}
.h10{height:37.798437pt;}
.h1a{height:41.663996pt;}
.h3{height:44.437500pt;}
.h14{height:45.131406pt;}
.h8{height:48.121008pt;}
.hb{height:49.498084pt;}
.h9{height:49.499844pt;}
.h13{height:50.389062pt;}
.h7{height:50.531875pt;}
.h17{height:50.585679pt;}
.ha{height:52.314917pt;}
.h16{height:53.462703pt;}
.h1d{height:54.423434pt;}
.h20{height:54.852359pt;}
.h2{height:72.219375pt;}
.h0{height:1122.666667pt;}
.w2{width:41.040000pt;}
.w3{width:51.520000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xd{left:56.720000pt;}
.x5e{left:65.356024pt;}
.x5d{left:70.719648pt;}
.x1{left:75.680000pt;}
.x49{left:81.360000pt;}
.xf{left:85.040000pt;}
.x5c{left:88.880000pt;}
.xa{left:104.000000pt;}
.x3c{left:105.040000pt;}
.x25{left:122.880080pt;}
.x4a{left:140.480000pt;}
.x1e{left:141.840096pt;}
.x3f{left:142.800296pt;}
.x3d{left:143.760024pt;}
.x3e{left:149.200256pt;}
.x6{left:153.120000pt;}
.x40{left:154.079760pt;}
.x4b{left:157.040000pt;}
.x2{left:160.560000pt;}
.x5{left:168.160000pt;}
.x3{left:185.199336pt;}
.x24{left:210.480000pt;}
.x43{left:211.840000pt;}
.x4{left:212.798376pt;}
.x41{left:218.080000pt;}
.x42{left:223.920000pt;}
.x10{left:226.640000pt;}
.x3a{left:229.440000pt;}
.x11{left:234.000000pt;}
.x47{left:254.160040pt;}
.x44{left:258.719840pt;}
.x45{left:265.360000pt;}
.x46{left:271.200000pt;}
.x8{left:293.920000pt;}
.x48{left:316.160384pt;}
.x7{left:322.719856pt;}
.x14{left:330.160000pt;}
.x15{left:337.520000pt;}
.x12{left:339.040000pt;}
.x13{left:346.400000pt;}
.x3b{left:358.960000pt;}
.x23{left:366.000000pt;}
.xe{left:370.480000pt;}
.x1f{left:392.080000pt;}
.x1d{left:393.760000pt;}
.x1c{left:398.720000pt;}
.x9{left:406.400000pt;}
.x5f{left:407.360248pt;}
.xb{left:417.679440pt;}
.x4c{left:422.320000pt;}
.x1a{left:427.040272pt;}
.x5a{left:430.000408pt;}
.x59{left:432.000000pt;}
.xc{left:445.999968pt;}
.x34{left:447.920000pt;}
.x5b{left:449.839288pt;}
.x35{left:455.280000pt;}
.x1b{left:464.880368pt;}
.x60{left:474.400000pt;}
.x21{left:483.840096pt;}
.x2f{left:497.999920pt;}
.x2b{left:506.320080pt;}
.x4e{left:516.000944pt;}
.x4d{left:518.400264pt;}
.x2e{left:524.320000pt;}
.x4f{left:526.481344pt;}
.x32{left:527.920000pt;}
.x33{left:535.280000pt;}
.x38{left:539.360000pt;}
.x30{left:548.239680pt;}
.x36{left:549.840000pt;}
.x17{left:552.480000pt;}
.x2a{left:554.800000pt;}
.x2c{left:556.559840pt;}
.x29{left:563.439543pt;}
.x19{left:566.320000pt;}
.x51{left:567.601752pt;}
.x50{left:569.681872pt;}
.x39{left:571.440000pt;}
.x52{left:578.082152pt;}
.x37{left:579.680000pt;}
.x2d{left:612.400000pt;}
.x28{left:616.720000pt;}
.x53{left:619.202560pt;}
.x31{left:622.960000pt;}
.x54{left:628.402968pt;}
.x55{left:641.123088pt;}
.x18{left:652.880000pt;}
.x58{left:689.682984pt;}
.x56{left:693.843224pt;}
.x57{left:697.362936pt;}
.x16{left:714.480000pt;}
.x20{left:734.640000pt;}
.x22{left:735.759867pt;}
.x26{left:738.800000pt;}
.x27{left:748.960000pt;}
}




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