
    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_11434d2b3bde91f676d0319a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_c263a294e64bf50a90c8a79e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_25f803e80300632cbbf2754e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_046633dd7e11b04225ed7bb9.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ed557379532d8909217d07ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_3d781d876759032198e7dbb9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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_013cf1e7982e52e1fbd17de4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.125488;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_f8588020c5d10fa34fc9ddbc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.908203;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;}
.m6{transform:matrix(0.000000,-0.160942,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.160942,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.160942,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.172404,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.172404,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.172404,0.250000,0.000000,0,0);}
.mf{transform:matrix(0.000000,-0.249120,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249120,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249120,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.260084,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.260084,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.260084,0.250000,0.000000,0,0);}
.m4{transform:matrix(0.154526,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154526,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154526,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.154691,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.154691,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.154691,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.160935,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160935,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160935,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.160947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160947,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.160958,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160958,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160958,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.172393,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172393,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172393,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.172399,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172399,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172399,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.172404,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172404,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172404,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.172416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172416,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-ms-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);-webkit-transform:matrix(0.236548,0.000000,-0.080901,0.236548,0,0);}
.m3{transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-ms-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);-webkit-transform:matrix(0.236549,0.000000,-0.080899,0.236549,0,0);}
.m10{transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249116,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249124,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249124,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249124,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.260075,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260075,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260075,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.260086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260086,0.000000,0.000000,0.250000,0,0);}
.v9{vertical-align:-52.918301px;}
.v7{vertical-align:-32.036253px;}
.v2{vertical-align:-27.000000px;}
.vb{vertical-align:-14.760000px;}
.v3{vertical-align:-8.991648px;}
.v5{vertical-align:-6.117660px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:6.120000px;}
.v4{vertical-align:9.000000px;}
.va{vertical-align:14.760000px;}
.v1{vertical-align:33.120000px;}
.v8{vertical-align:53.998920px;}
.vc{vertical-align:63.358200px;}
.ls9f{letter-spacing:-1.091413px;}
.ls94{letter-spacing:-0.632849px;}
.ls8e{letter-spacing:-0.531341px;}
.lsbf{letter-spacing:-0.464436px;}
.ls8c{letter-spacing:-0.459913px;}
.ls8f{letter-spacing:-0.447936px;}
.ls91{letter-spacing:-0.433564px;}
.ls93{letter-spacing:-0.416700px;}
.ls92{letter-spacing:-0.385503px;}
.ls98{letter-spacing:-0.378818px;}
.ls97{letter-spacing:-0.369904px;}
.ls6e{letter-spacing:-0.217080px;}
.lsa0{letter-spacing:-0.179167px;}
.ls86{letter-spacing:-0.151200px;}
.ls8b{letter-spacing:-0.148514px;}
.ls96{letter-spacing:-0.137751px;}
.ls26{letter-spacing:-0.124488px;}
.lsbc{letter-spacing:-0.105336px;}
.ls2e{letter-spacing:-0.104544px;}
.ls66{letter-spacing:-0.090972px;}
.ls6f{letter-spacing:-0.084168px;}
.ls75{letter-spacing:-0.072144px;}
.ls9c{letter-spacing:-0.070538px;}
.ls33{letter-spacing:-0.066132px;}
.lsbe{letter-spacing:-0.062244px;}
.ls36{letter-spacing:-0.060120px;}
.lsb7{letter-spacing:-0.058716px;}
.ls99{letter-spacing:-0.056772px;}
.ls38{letter-spacing:-0.054108px;}
.ls2b{letter-spacing:-0.052272px;}
.lsc1{letter-spacing:-0.048096px;}
.ls50{letter-spacing:-0.043092px;}
.ls6c{letter-spacing:-0.042084px;}
.lsbd{letter-spacing:-0.038304px;}
.ls35{letter-spacing:-0.036072px;}
.ls2a{letter-spacing:-0.034848px;}
.lsb9{letter-spacing:-0.033516px;}
.ls31{letter-spacing:-0.030060px;}
.lsbb{letter-spacing:-0.028728px;}
.ls2d{letter-spacing:-0.026136px;}
.ls4f{letter-spacing:-0.024048px;}
.ls76{letter-spacing:-0.023940px;}
.lsba{letter-spacing:-0.019152px;}
.ls30{letter-spacing:-0.018036px;}
.ls2c{letter-spacing:-0.017424px;}
.ls87{letter-spacing:-0.016200px;}
.lsb8{letter-spacing:-0.014364px;}
.ls69{letter-spacing:-0.012024px;}
.ls6d{letter-spacing:-0.011664px;}
.ls88{letter-spacing:-0.010800px;}
.lsa1{letter-spacing:-0.009576px;}
.ls29{letter-spacing:-0.008712px;}
.ls2f{letter-spacing:-0.007200px;}
.ls70{letter-spacing:-0.006012px;}
.ls68{letter-spacing:-0.003888px;}
.ls28{letter-spacing:0.000000px;}
.ls6a{letter-spacing:0.003888px;}
.ls3{letter-spacing:0.004788px;}
.ls1f{letter-spacing:0.006012px;}
.lsa{letter-spacing:0.007200px;}
.ls57{letter-spacing:0.007776px;}
.lsb6{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.009576px;}
.ls78{letter-spacing:0.010800px;}
.ls1d{letter-spacing:0.012024px;}
.ls52{letter-spacing:0.014364px;}
.ls4c{letter-spacing:0.014400px;}
.ls7b{letter-spacing:0.016200px;}
.ls42{letter-spacing:0.017280px;}
.lsb5{letter-spacing:0.018036px;}
.ls1{letter-spacing:0.019152px;}
.ls62{letter-spacing:0.022680px;}
.ls1a{letter-spacing:0.024048px;}
.ls90{letter-spacing:0.027874px;}
.ls71{letter-spacing:0.028728px;}
.ls1b{letter-spacing:0.030060px;}
.ls0{letter-spacing:0.033516px;}
.ls84{letter-spacing:0.033552px;}
.ls8{letter-spacing:0.036000px;}
.ls4b{letter-spacing:0.036072px;}
.ls74{letter-spacing:0.038304px;}
.ls73{letter-spacing:0.041940px;}
.lsc{letter-spacing:0.042084px;}
.lsa5{letter-spacing:0.043092px;}
.ls4d{letter-spacing:0.043200px;}
.ls7{letter-spacing:0.043560px;}
.ls4{letter-spacing:0.047880px;}
.ls3d{letter-spacing:0.048096px;}
.ls14{letter-spacing:0.050328px;}
.ls39{letter-spacing:0.052668px;}
.ls47{letter-spacing:0.053280px;}
.ls32{letter-spacing:0.054108px;}
.ls4e{letter-spacing:0.057456px;}
.ls19{letter-spacing:0.060120px;}
.ls27{letter-spacing:0.062244px;}
.ls10{letter-spacing:0.066132px;}
.ls72{letter-spacing:0.067032px;}
.ls25{letter-spacing:0.067104px;}
.lsa9{letter-spacing:0.071820px;}
.lsd{letter-spacing:0.072144px;}
.ls3e{letter-spacing:0.075492px;}
.ls23{letter-spacing:0.076608px;}
.ls13{letter-spacing:0.078156px;}
.ls22{letter-spacing:0.081396px;}
.ls53{letter-spacing:0.083880px;}
.lsf{letter-spacing:0.084168px;}
.ls45{letter-spacing:0.086184px;}
.ls7a{letter-spacing:0.086400px;}
.ls1c{letter-spacing:0.090180px;}
.ls44{letter-spacing:0.090972px;}
.lsc0{letter-spacing:0.092268px;}
.ls46{letter-spacing:0.095760px;}
.ls17{letter-spacing:0.096192px;}
.ls4a{letter-spacing:0.100548px;}
.ls1e{letter-spacing:0.102204px;}
.ls49{letter-spacing:0.105336px;}
.ls6{letter-spacing:0.108000px;}
.ls12{letter-spacing:0.108216px;}
.ls65{letter-spacing:0.110124px;}
.ls11{letter-spacing:0.114228px;}
.ls51{letter-spacing:0.114912px;}
.lsb2{letter-spacing:0.119700px;}
.ls20{letter-spacing:0.120240px;}
.ls48{letter-spacing:0.124488px;}
.ls16{letter-spacing:0.125820px;}
.ls3f{letter-spacing:0.126252px;}
.ls18{letter-spacing:0.132264px;}
.ls79{letter-spacing:0.135000px;}
.ls7e{letter-spacing:0.135929px;}
.ls41{letter-spacing:0.138276px;}
.lsac{letter-spacing:0.138852px;}
.lsa4{letter-spacing:0.143640px;}
.ls85{letter-spacing:0.144288px;}
.ls5b{letter-spacing:0.144720px;}
.ls9{letter-spacing:0.147600px;}
.ls89{letter-spacing:0.151200px;}
.lsaa{letter-spacing:0.153216px;}
.lsa7{letter-spacing:0.158004px;}
.ls5a{letter-spacing:0.162324px;}
.lsa6{letter-spacing:0.162792px;}
.lsab{letter-spacing:0.167580px;}
.ls34{letter-spacing:0.176148px;}
.lsb{letter-spacing:0.180000px;}
.ls5e{letter-spacing:0.180360px;}
.ls37{letter-spacing:0.181944px;}
.lsad{letter-spacing:0.201096px;}
.lsa2{letter-spacing:0.220248px;}
.ls59{letter-spacing:0.359568px;}
.ls8a{letter-spacing:0.361800px;}
.ls43{letter-spacing:0.372960px;}
.ls80{letter-spacing:0.384082px;}
.ls81{letter-spacing:0.390129px;}
.ls83{letter-spacing:0.454401px;}
.ls82{letter-spacing:0.631135px;}
.ls9d{letter-spacing:0.671418px;}
.ls9a{letter-spacing:0.749778px;}
.ls7f{letter-spacing:0.754788px;}
.ls9e{letter-spacing:0.872450px;}
.ls9b{letter-spacing:0.889981px;}
.ls54{letter-spacing:1.800432px;}
.ls56{letter-spacing:2.160000px;}
.ls6b{letter-spacing:2.519424px;}
.ls64{letter-spacing:2.528064px;}
.ls95{letter-spacing:3.932556px;}
.ls5c{letter-spacing:5.040432px;}
.lsb4{letter-spacing:5.668992px;}
.ls8d{letter-spacing:5.867761px;}
.lsa8{letter-spacing:6.028092px;}
.ls7c{letter-spacing:6.249546px;}
.ls5d{letter-spacing:7.560000px;}
.lsb3{letter-spacing:7.828380px;}
.ls60{letter-spacing:7.919136px;}
.lse{letter-spacing:8.729424px;}
.ls3b{letter-spacing:9.987768px;}
.ls5f{letter-spacing:10.439136px;}
.lsaf{letter-spacing:11.069856px;}
.ls58{letter-spacing:11.158704px;}
.lsb0{letter-spacing:11.160000px;}
.ls63{letter-spacing:11.520000px;}
.ls61{letter-spacing:11.520432px;}
.lsae{letter-spacing:14.407092px;}
.lsb1{letter-spacing:14.411880px;}
.ls77{letter-spacing:22.331232px;}
.ls21{letter-spacing:26.650008px;}
.lsa3{letter-spacing:38.529036px;}
.ls40{letter-spacing:60.264000px;}
.ls3c{letter-spacing:74.729160px;}
.ls3a{letter-spacing:77.012712px;}
.ls15{letter-spacing:83.603196px;}
.ls24{letter-spacing:83.963880px;}
.ls7d{letter-spacing:246.031742px;}
.ls55{letter-spacing:701.884936px;}
.ls67{letter-spacing:971.248735px;}
.ls5{letter-spacing:1239.388164px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsba{word-spacing:-60.300000px;}
.ws8f{word-spacing:-60.120000px;}
.wsb4{word-spacing:-34.812516px;}
.wsf2{word-spacing:-33.104700px;}
.wsaf{word-spacing:-32.939341px;}
.ws1{word-spacing:-27.000000px;}
.ws2{word-spacing:-21.780000px;}
.ws3{word-spacing:-21.675456px;}
.ws6{word-spacing:-21.146148px;}
.ws50{word-spacing:-18.000000px;}
.ws91{word-spacing:-15.168276px;}
.ws5{word-spacing:-15.102144px;}
.wsbc{word-spacing:-15.075000px;}
.ws90{word-spacing:-15.030000px;}
.wsb6{word-spacing:-14.999700px;}
.wsbb{word-spacing:-14.857920px;}
.ws112{word-spacing:-13.586400px;}
.ws0{word-spacing:-13.320216px;}
.ws113{word-spacing:-12.908703px;}
.ws153{word-spacing:-12.190248px;}
.ws155{word-spacing:-12.171096px;}
.ws154{word-spacing:-12.151944px;}
.ws111{word-spacing:-12.065760px;}
.ws158{word-spacing:-12.060972px;}
.ws157{word-spacing:-12.037032px;}
.ws159{word-spacing:-12.022668px;}
.ws156{word-spacing:-11.864664px;}
.wsb5{word-spacing:-10.499700px;}
.wsb1{word-spacing:-9.727776px;}
.wsb2{word-spacing:-9.723888px;}
.ws4{word-spacing:-9.720000px;}
.wsb0{word-spacing:-9.716112px;}
.wsb3{word-spacing:-9.708336px;}
.ws120{word-spacing:-8.863235px;}
.ws51{word-spacing:-7.470000px;}
.ws11f{word-spacing:-7.413228px;}
.ws123{word-spacing:-7.039437px;}
.ws114{word-spacing:-6.510643px;}
.ws11c{word-spacing:-6.330714px;}
.ws115{word-spacing:-6.199243px;}
.ws11b{word-spacing:-5.561937px;}
.ws11e{word-spacing:-4.889350px;}
.ws117{word-spacing:-4.870912px;}
.ws11d{word-spacing:-4.367517px;}
.ws116{word-spacing:-4.311698px;}
.ws47{word-spacing:-1.593720px;}
.ws106{word-spacing:-1.568556px;}
.ws13c{word-spacing:-1.426436px;}
.ws139{word-spacing:-0.688821px;}
.ws13b{word-spacing:-0.684480px;}
.ws13f{word-spacing:-0.639191px;}
.ws12e{word-spacing:-0.614410px;}
.ws43{word-spacing:-0.272916px;}
.ws176{word-spacing:-0.258552px;}
.ws16f{word-spacing:-0.253764px;}
.ws166{word-spacing:-0.248976px;}
.ws17b{word-spacing:-0.244188px;}
.ws160{word-spacing:-0.234612px;}
.ws188{word-spacing:-0.229824px;}
.ws7e{word-spacing:-0.215460px;}
.wsbf{word-spacing:-0.205884px;}
.wsf1{word-spacing:-0.201096px;}
.ws7f{word-spacing:-0.196308px;}
.ws87{word-spacing:-0.191520px;}
.ws7d{word-spacing:-0.186732px;}
.ws1b7{word-spacing:-0.184536px;}
.wsa8{word-spacing:-0.181944px;}
.ws15f{word-spacing:-0.177156px;}
.wsc5{word-spacing:-0.176148px;}
.ws86{word-spacing:-0.172368px;}
.ws6b{word-spacing:-0.167760px;}
.ws1a8{word-spacing:-0.162792px;}
.ws103{word-spacing:-0.158004px;}
.ws126{word-spacing:-0.153216px;}
.ws17d{word-spacing:-0.143640px;}
.ws13e{word-spacing:-0.129276px;}
.ws10f{word-spacing:-0.119700px;}
.ws135{word-spacing:-0.110124px;}
.wsc4{word-spacing:-0.105336px;}
.ws46{word-spacing:-0.100548px;}
.ws142{word-spacing:-0.081396px;}
.wsf7{word-spacing:-0.072144px;}
.ws133{word-spacing:-0.069079px;}
.ws105{word-spacing:-0.067032px;}
.wsab{word-spacing:-0.047880px;}
.ws131{word-spacing:-0.046491px;}
.ws80{word-spacing:-0.036000px;}
.ws52{word-spacing:-0.033516px;}
.wscb{word-spacing:-0.030060px;}
.wsb{word-spacing:-0.028728px;}
.ws6a{word-spacing:-0.024048px;}
.ws5f{word-spacing:-0.018036px;}
.ws6e{word-spacing:-0.014400px;}
.ws7{word-spacing:-0.014364px;}
.ws3b{word-spacing:-0.012024px;}
.wsf{word-spacing:-0.007200px;}
.ws34{word-spacing:-0.006012px;}
.ws8{word-spacing:0.000000px;}
.ws62{word-spacing:0.006012px;}
.ws10{word-spacing:0.007200px;}
.ws1f{word-spacing:0.012024px;}
.wsa{word-spacing:0.014364px;}
.ws21{word-spacing:0.018036px;}
.ws60{word-spacing:0.024048px;}
.ws127{word-spacing:0.027000px;}
.ws42{word-spacing:0.030060px;}
.ws13{word-spacing:0.036072px;}
.ws128{word-spacing:0.043200px;}
.ws14{word-spacing:0.048096px;}
.ws2b{word-spacing:0.060120px;}
.ws5e{word-spacing:0.066132px;}
.ws125{word-spacing:0.078156px;}
.ws84{word-spacing:0.084168px;}
.ws11{word-spacing:0.108216px;}
.ws12{word-spacing:0.120240px;}
.wsd{word-spacing:0.139392px;}
.ws9{word-spacing:0.143640px;}
.ws7a{word-spacing:0.156312px;}
.ws134{word-spacing:0.158004px;}
.ws85{word-spacing:0.162792px;}
.ws162{word-spacing:0.181944px;}
.wsc{word-spacing:0.191664px;}
.ws172{word-spacing:0.201096px;}
.wse{word-spacing:0.209088px;}
.ws17c{word-spacing:0.263340px;}
.wsd6{word-spacing:0.288576px;}
.wsa0{word-spacing:0.318636px;}
.ws1c5{word-spacing:0.336672px;}
.ws1b{word-spacing:0.342684px;}
.ws8a{word-spacing:0.372744px;}
.ws72{word-spacing:0.420840px;}
.ws132{word-spacing:0.443440px;}
.ws1bb{word-spacing:0.480960px;}
.ws130{word-spacing:0.488658px;}
.ws12f{word-spacing:0.503030px;}
.ws13a{word-spacing:0.537738px;}
.ws19f{word-spacing:0.612864px;}
.ws1b4{word-spacing:0.694260px;}
.ws76{word-spacing:0.697392px;}
.ws1c4{word-spacing:0.709416px;}
.wsc2{word-spacing:0.727452px;}
.wsc1{word-spacing:0.781560px;}
.ws187{word-spacing:0.828324px;}
.ws186{word-spacing:0.895356px;}
.ws1b3{word-spacing:0.909720px;}
.ws1c2{word-spacing:1.028052px;}
.ws14b{word-spacing:1.058112px;}
.wsda{word-spacing:1.080864px;}
.ws9a{word-spacing:1.094184px;}
.ws82{word-spacing:1.100196px;}
.wsdb{word-spacing:1.106208px;}
.ws1c3{word-spacing:1.208412px;}
.ws199{word-spacing:1.211364px;}
.ws198{word-spacing:1.244880px;}
.ws18c{word-spacing:1.273608px;}
.wsd9{word-spacing:1.515024px;}
.ws140{word-spacing:1.580861px;}
.ws18b{word-spacing:1.627920px;}
.ws1a9{word-spacing:1.723680px;}
.ws9f{word-spacing:1.773540px;}
.ws137{word-spacing:1.785564px;}
.ws1c7{word-spacing:1.803600px;}
.wscd{word-spacing:1.815624px;}
.ws54{word-spacing:1.923840px;}
.ws93{word-spacing:2.010960px;}
.wsd0{word-spacing:2.122236px;}
.wscf{word-spacing:2.152296px;}
.wscc{word-spacing:2.170332px;}
.ws81{word-spacing:2.507004px;}
.ws8d{word-spacing:2.531052px;}
.wsdd{word-spacing:2.567124px;}
.wsde{word-spacing:2.651292px;}
.wsaa{word-spacing:2.705220px;}
.ws152{word-spacing:2.849688px;}
.wsa6{word-spacing:2.861712px;}
.ws1c8{word-spacing:2.909808px;}
.wsa9{word-spacing:3.049956px;}
.ws17{word-spacing:3.216420px;}
.ws9b{word-spacing:3.228444px;}
.ws196{word-spacing:3.418632px;}
.ws6f{word-spacing:3.583152px;}
.ws10c{word-spacing:3.589164px;}
.ws67{word-spacing:3.595176px;}
.ws197{word-spacing:3.600576px;}
.ws53{word-spacing:3.607200px;}
.ws1c{word-spacing:3.613212px;}
.ws99{word-spacing:3.625236px;}
.wsbe{word-spacing:3.806460px;}
.wsfa{word-spacing:3.979944px;}
.ws4f{word-spacing:3.985956px;}
.wsfb{word-spacing:4.052088px;}
.wsbd{word-spacing:4.151196px;}
.ws3c{word-spacing:4.328640px;}
.ws1cb{word-spacing:4.340664px;}
.ws5c{word-spacing:4.358700px;}
.ws1cc{word-spacing:4.418820px;}
.ws175{word-spacing:4.438476px;}
.ws174{word-spacing:4.610844px;}
.ws4e{word-spacing:4.665312px;}
.ws5b{word-spacing:4.737456px;}
.ws1c6{word-spacing:4.815612px;}
.ws98{word-spacing:4.833648px;}
.ws15c{word-spacing:4.902912px;}
.ws189{word-spacing:4.979520px;}
.ws124{word-spacing:5.007996px;}
.ws15a{word-spacing:5.014008px;}
.ws9e{word-spacing:5.020020px;}
.wsd8{word-spacing:5.026032px;}
.wsce{word-spacing:5.032044px;}
.wse0{word-spacing:5.050080px;}
.ws69{word-spacing:5.080140px;}
.wse4{word-spacing:5.092164px;}
.ws92{word-spacing:5.356692px;}
.wsc6{word-spacing:5.380740px;}
.wsdf{word-spacing:5.398776px;}
.ws66{word-spacing:5.410800px;}
.ws1d0{word-spacing:5.416812px;}
.ws40{word-spacing:5.428836px;}
.ws1b6{word-spacing:5.501412px;}
.wsc7{word-spacing:5.506992px;}
.ws1b5{word-spacing:5.635476px;}
.ws16e{word-spacing:5.654628px;}
.wsa5{word-spacing:5.753484px;}
.ws3f{word-spacing:5.843664px;}
.ws97{word-spacing:5.909796px;}
.ws16d{word-spacing:5.922756px;}
.ws16c{word-spacing:6.047244px;}
.ws183{word-spacing:6.056820px;}
.ws83{word-spacing:6.102180px;}
.ws96{word-spacing:6.114204px;}
.ws108{word-spacing:6.138252px;}
.wsa2{word-spacing:6.444864px;}
.ws107{word-spacing:6.480936px;}
.ws182{word-spacing:6.569136px;}
.wsa3{word-spacing:6.595164px;}
.ws1a3{word-spacing:6.645744px;}
.ws1a2{word-spacing:6.775020px;}
.ws1e{word-spacing:6.817608px;}
.ws49{word-spacing:6.823620px;}
.ws28{word-spacing:6.841656px;}
.ws161{word-spacing:7.023996px;}
.ws191{word-spacing:7.028784px;}
.ws16b{word-spacing:7.052724px;}
.ws192{word-spacing:7.110180px;}
.ws181{word-spacing:7.153272px;}
.ws1b1{word-spacing:7.311276px;}
.ws18a{word-spacing:7.450128px;}
.wse3{word-spacing:7.599168px;}
.ws1ac{word-spacing:7.646436px;}
.ws1b0{word-spacing:7.703892px;}
.ws104{word-spacing:7.737408px;}
.ws168{word-spacing:7.761348px;}
.wse2{word-spacing:7.923816px;}
.wsed{word-spacing:8.007984px;}
.ws102{word-spacing:8.091720px;}
.ws1aa{word-spacing:8.130024px;}
.ws1ab{word-spacing:8.139600px;}
.wsec{word-spacing:8.248464px;}
.wsf8{word-spacing:8.278524px;}
.ws14a{word-spacing:8.302572px;}
.ws19e{word-spacing:8.460396px;}
.ws170{word-spacing:8.489124px;}
.ws25{word-spacing:8.597160px;}
.ws24{word-spacing:8.633232px;}
.ws15{word-spacing:8.645256px;}
.ws26{word-spacing:8.765496px;}
.wsf0{word-spacing:8.800344px;}
.wsef{word-spacing:8.833860px;}
.wsdc{word-spacing:8.987940px;}
.ws7c{word-spacing:9.183384px;}
.ws88{word-spacing:9.336636px;}
.ws9c{word-spacing:9.342648px;}
.wsd5{word-spacing:9.378720px;}
.ws48{word-spacing:9.504972px;}
.ws7b{word-spacing:9.537696px;}
.ws45{word-spacing:9.552060px;}
.ws1b2{word-spacing:9.628668px;}
.ws41{word-spacing:9.691344px;}
.wsd4{word-spacing:9.697356px;}
.wse9{word-spacing:9.721404px;}
.ws33{word-spacing:9.739440px;}
.wse8{word-spacing:9.745452px;}
.ws32{word-spacing:9.799560px;}
.wsfd{word-spacing:9.811584px;}
.ws13d{word-spacing:9.906372px;}
.ws2e{word-spacing:10.088136px;}
.ws147{word-spacing:10.106172px;}
.wsfc{word-spacing:10.118196px;}
.ws8e{word-spacing:10.136232px;}
.ws1a7{word-spacing:10.303776px;}
.ws23{word-spacing:10.442844px;}
.ws165{word-spacing:10.547964px;}
.wseb{word-spacing:10.617192px;}
.ws164{word-spacing:10.624572px;}
.ws1a6{word-spacing:10.643724px;}
.ws163{word-spacing:10.667664px;}
.wsea{word-spacing:10.767492px;}
.ws14c{word-spacing:10.785528px;}
.ws3d{word-spacing:10.821600px;}
.ws2c{word-spacing:10.827612px;}
.wsd3{word-spacing:10.899756px;}
.ws38{word-spacing:10.905768px;}
.ws195{word-spacing:11.065068px;}
.ws193{word-spacing:11.093796px;}
.ws194{word-spacing:11.098584px;}
.ws171{word-spacing:11.357136px;}
.ws1ca{word-spacing:11.506968px;}
.wsee{word-spacing:11.518992px;}
.ws1bf{word-spacing:11.543040px;}
.ws1be{word-spacing:11.591136px;}
.ws5a{word-spacing:11.861676px;}
.ws65{word-spacing:11.879712px;}
.ws2d{word-spacing:11.945844px;}
.ws64{word-spacing:11.957868px;}
.ws141{word-spacing:12.060972px;}
.ws36{word-spacing:12.246444px;}
.ws44{word-spacing:12.429648px;}
.ws1a4{word-spacing:12.453588px;}
.ws1a5{word-spacing:12.477528px;}
.ws6c{word-spacing:12.577104px;}
.ws18{word-spacing:12.625200px;}
.ws3e{word-spacing:12.985920px;}
.ws143{word-spacing:12.991932px;}
.ws1ad{word-spacing:13.238820px;}
.ws61{word-spacing:13.310568px;}
.ws73{word-spacing:13.334616px;}
.ws1af{word-spacing:13.506948px;}
.ws1ae{word-spacing:13.559616px;}
.ws59{word-spacing:13.635216px;}
.ws173{word-spacing:13.870836px;}
.ws17a{word-spacing:13.904352px;}
.ws4b{word-spacing:14.013972px;}
.ws18e{word-spacing:14.158116px;}
.wsa4{word-spacing:14.188320px;}
.ws179{word-spacing:14.229936px;}
.ws18d{word-spacing:14.244300px;}
.ws178{word-spacing:14.684796px;}
.ws1cd{word-spacing:15.132204px;}
.ws1bd{word-spacing:15.192324px;}
.wsa7{word-spacing:15.307236px;}
.ws1ba{word-spacing:15.492924px;}
.ws1bc{word-spacing:15.498936px;}
.wsfe{word-spacing:15.504948px;}
.wsf5{word-spacing:15.651972px;}
.wsf4{word-spacing:15.661548px;}
.ws29{word-spacing:15.967872px;}
.ws9d{word-spacing:16.178292px;}
.ws63{word-spacing:16.202340px;}
.ws77{word-spacing:16.238412px;}
.ws22{word-spacing:16.250436px;}
.ws78{word-spacing:16.256448px;}
.ws15e{word-spacing:16.427628px;}
.ws15d{word-spacing:16.485084px;}
.ws14d{word-spacing:16.533000px;}
.ws1a{word-spacing:16.905744px;}
.wsca{word-spacing:16.929792px;}
.ws8b{word-spacing:17.326584px;}
.ws190{word-spacing:17.452260px;}
.ws70{word-spacing:17.603136px;}
.ws4a{word-spacing:17.651232px;}
.ws18f{word-spacing:17.945424px;}
.wsa1{word-spacing:17.975880px;}
.ws27{word-spacing:17.993916px;}
.wsd7{word-spacing:18.378684px;}
.ws101{word-spacing:18.522972px;}
.ws180{word-spacing:18.534348px;}
.ws17e{word-spacing:18.950904px;}
.ws17f{word-spacing:18.979632px;}
.ws148{word-spacing:19.058040px;}
.ws146{word-spacing:19.400724px;}
.ws14f{word-spacing:19.430784px;}
.ws68{word-spacing:19.436796px;}
.ws5d{word-spacing:19.785492px;}
.wsf9{word-spacing:19.941804px;}
.ws10a{word-spacing:20.146212px;}
.ws16{word-spacing:20.182284px;}
.ws6d{word-spacing:20.891700px;}
.ws19d{word-spacing:21.459816px;}
.ws19c{word-spacing:22.474872px;}
.ws19b{word-spacing:22.896216px;}
.ws14e{word-spacing:23.037984px;}
.ws100{word-spacing:23.104116px;}
.ws144{word-spacing:23.404716px;}
.wsff{word-spacing:23.464836px;}
.ws79{word-spacing:24.090084px;}
.ws1cf{word-spacing:24.234372px;}
.ws1ce{word-spacing:24.553008px;}
.ws20{word-spacing:24.853608px;}
.ws136{word-spacing:25.202304px;}
.ws56{word-spacing:25.569036px;}
.wsd2{word-spacing:25.959816px;}
.ws35{word-spacing:25.965828px;}
.ws1a0{word-spacing:26.228664px;}
.wsd1{word-spacing:26.284464px;}
.wsf3{word-spacing:26.879832px;}
.wsc9{word-spacing:26.993880px;}
.ws1b9{word-spacing:27.023940px;}
.ws1b8{word-spacing:27.035964px;}
.ws150{word-spacing:27.360612px;}
.wse1{word-spacing:27.372636px;}
.ws57{word-spacing:27.384660px;}
.wsc8{word-spacing:27.420732px;}
.ws138{word-spacing:27.721332px;}
.ws1c1{word-spacing:28.027944px;}
.ws10e{word-spacing:28.249200px;}
.ws10d{word-spacing:28.622664px;}
.ws2f{word-spacing:28.857600px;}
.ws151{word-spacing:29.104092px;}
.ws37{word-spacing:29.158200px;}
.ws2a{word-spacing:30.035952px;}
.ws4c{word-spacing:30.216312px;}
.ws94{word-spacing:30.282444px;}
.wsb9{word-spacing:30.374496px;}
.ws58{word-spacing:30.979836px;}
.ws95{word-spacing:31.082040px;}
.wsf6{word-spacing:31.478832px;}
.ws4d{word-spacing:31.647168px;}
.ws8c{word-spacing:34.707276px;}
.ws74{word-spacing:35.603064px;}
.ws149{word-spacing:35.615088px;}
.ws89{word-spacing:35.669196px;}
.ws75{word-spacing:35.795448px;}
.ws16a{word-spacing:36.522864px;}
.ws19a{word-spacing:36.628200px;}
.ws169{word-spacing:36.661716px;}
.ws1d{word-spacing:36.877608px;}
.ws3a{word-spacing:37.587024px;}
.ws177{word-spacing:37.739016px;}
.wsc0{word-spacing:38.873592px;}
.ws55{word-spacing:39.240324px;}
.ws185{word-spacing:39.501000px;}
.ws30{word-spacing:39.613068px;}
.ws184{word-spacing:39.788280px;}
.wsc3{word-spacing:40.833504px;}
.ws1d3{word-spacing:41.049936px;}
.ws110{word-spacing:43.905636px;}
.ws15b{word-spacing:44.651124px;}
.ws1c9{word-spacing:45.071964px;}
.ws167{word-spacing:45.653580px;}
.ws1d2{word-spacing:45.715248px;}
.ws109{word-spacing:46.075968px;}
.ws1d1{word-spacing:46.202220px;}
.ws1c0{word-spacing:46.797408px;}
.ws71{word-spacing:46.809432px;}
.wse5{word-spacing:49.995792px;}
.ws19{word-spacing:51.462720px;}
.ws1a1{word-spacing:54.511380px;}
.wse6{word-spacing:56.116008px;}
.ws145{word-spacing:57.252276px;}
.ws39{word-spacing:62.278308px;}
.ws10b{word-spacing:71.278272px;}
.ws31{word-spacing:74.879460px;}
.ws122{word-spacing:114.660519px;}
.ws121{word-spacing:122.274850px;}
.ws129{word-spacing:164.316600px;}
.ws12c{word-spacing:164.322000px;}
.ws12a{word-spacing:177.638400px;}
.ws12b{word-spacing:177.643800px;}
.ws12d{word-spacing:211.842000px;}
.ws119{word-spacing:224.427214px;}
.ws118{word-spacing:224.432497px;}
.ws11a{word-spacing:226.577861px;}
.wse7{word-spacing:281.115108px;}
.wsb7{word-spacing:337.620753px;}
.wsb8{word-spacing:468.643590px;}
.wsae{word-spacing:648.598635px;}
.wsac{word-spacing:1060.996560px;}
.wsad{word-spacing:1116.535669px;}
._23{margin-left:-451.744703px;}
._33{margin-left:-296.039658px;}
._1f{margin-left:-287.160257px;}
._22{margin-left:-279.240415px;}
._15{margin-left:-266.520669px;}
._18{margin-left:-263.400732px;}
._12{margin-left:-258.977200px;}
._19{margin-left:-256.140877px;}
._21{margin-left:-251.160977px;}
._13{margin-left:-238.064859px;}
._16{margin-left:-234.059312px;}
._1a{margin-left:-227.341453px;}
._34{margin-left:-225.841590px;}
._e{margin-left:-205.844519px;}
._37{margin-left:-199.551996px;}
._36{margin-left:-191.072610px;}
._11{margin-left:-172.094283px;}
._2a{margin-left:-169.376612px;}
._2e{margin-left:-165.716686px;}
._26{margin-left:-162.896742px;}
._17{margin-left:-161.155580px;}
._20{margin-left:-160.016800px;}
._2f{margin-left:-155.471158px;}
._31{margin-left:-142.317154px;}
._14{margin-left:-135.657287px;}
._d{margin-left:-129.322705px;}
._28{margin-left:-126.177476px;}
._1c{margin-left:-122.637547px;}
._35{margin-left:-117.844290px;}
._2d{margin-left:-115.317694px;}
._f{margin-left:-113.346361px;}
._1b{margin-left:-108.237835px;}
._32{margin-left:-104.123425px;}
._27{margin-left:-99.178016px;}
._2c{margin-left:-95.878082px;}
._30{margin-left:-91.918162px;}
._10{margin-left:-90.305820px;}
._2b{margin-left:-87.598248px;}
._25{margin-left:-59.938801px;}
._29{margin-left:-44.879102px;}
._49{margin-left:-34.916400px;}
._24{margin-left:-32.880861px;}
._9{margin-left:-27.883656px;}
._3c{margin-left:-19.563048px;}
._b{margin-left:-18.522972px;}
._44{margin-left:-13.678200px;}
._45{margin-left:-11.518200px;}
._c{margin-left:-9.390744px;}
._39{margin-left:-7.960212px;}
._3a{margin-left:-6.900768px;}
._5{margin-left:-5.596920px;}
._a{margin-left:-4.143672px;}
._38{margin-left:-2.621772px;}
._0{margin-left:-1.010268px;}
._4{width:1.172340px;}
._1d{width:2.194380px;}
._4a{width:4.335168px;}
._47{width:6.841800px;}
._48{width:8.640000px;}
._1e{width:11.170296px;}
._43{width:13.321800px;}
._42{width:15.838200px;}
._3b{width:19.909476px;}
._46{width:21.854124px;}
._41{width:26.281800px;}
._4f{width:73.396854px;}
._52{width:125.956928px;}
._40{width:127.251000px;}
._3f{width:128.692800px;}
._51{width:134.608723px;}
._4e{width:139.806256px;}
._3e{width:155.341800px;}
._50{width:158.140636px;}
._4d{width:165.819911px;}
._1{width:173.876220px;}
._3d{width:180.171000px;}
._4c{width:231.739661px;}
._4b{width:233.151225px;}
._2{width:511.588224px;}
._6{width:524.908440px;}
._8{width:1237.640544px;}
._7{width:1394.974692px;}
._3{width:1480.294044px;}
.fc3{color:rgb(218,37,29);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:13.166400px;}
.fs16{font-size:14.154000px;}
.fs1c{font-size:16.206000px;}
.fs17{font-size:17.421000px;}
.fs19{font-size:22.283400px;}
.fs14{font-size:23.953800px;}
.fs12{font-size:24.120000px;}
.fs22{font-size:25.966200px;}
.fs1f{font-size:26.125200px;}
.fs1a{font-size:27.347400px;}
.fs21{font-size:28.129200px;}
.fs1e{font-size:28.302000px;}
.fs15{font-size:29.397600px;}
.fs1{font-size:29.880000px;}
.fs20{font-size:30.293400px;}
.fs1d{font-size:30.478800px;}
.fse{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs9{font-size:41.998800px;}
.fs10{font-size:42.210000px;}
.fsd{font-size:44.387008px;}
.fs0{font-size:47.880000px;}
.fs13{font-size:54.000000px;}
.fsa{font-size:59.998800px;}
.fs6{font-size:60.120000px;}
.fs11{font-size:60.300000px;}
.fsb{font-size:63.410775px;}
.fs18{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fs3{font-size:87.120000px;}
.fsc{font-size:89.998800px;}
.fs8{font-size:95.436600px;}
.fsf{font-size:95.538000px;}
.fs2{font-size:108.000000px;}
.fs23{font-size:144.000000px;}
.y170{bottom:-3.599550px;}
.y0{bottom:0.000000px;}
.y183{bottom:1.170450px;}
.y12c{bottom:3.240450px;}
.y129{bottom:5.220450px;}
.y3{bottom:55.830450px;}
.y2e{bottom:125.749902px;}
.y9e{bottom:127.287264px;}
.y1d0{bottom:136.468326px;}
.y160{bottom:139.799919px;}
.y47{bottom:139.886733px;}
.y2d{bottom:143.300433px;}
.y9d{bottom:144.837795px;}
.yd8{bottom:149.339919px;}
.y74{bottom:153.929388px;}
.y1cf{bottom:154.018857px;}
.y8b{bottom:156.536733px;}
.y15f{bottom:157.350450px;}
.y46{bottom:157.437264px;}
.y2c{bottom:160.850964px;}
.y9c{bottom:162.388326px;}
.yd7{bottom:166.889007px;}
.y73{bottom:171.479919px;}
.y1ce{bottom:171.569388px;}
.y8a{bottom:174.087264px;}
.y45{bottom:174.987795px;}
.y14e{bottom:177.779865px;}
.y9b{bottom:179.938857px;}
.yd6{bottom:184.439538px;}
.y2b{bottom:187.401459px;}
.y72{bottom:189.029388px;}
.y1cd{bottom:189.119919px;}
.y89{bottom:191.637795px;}
.y14d{bottom:191.910450px;}
.y15e{bottom:192.360450px;}
.y44{bottom:192.538326px;}
.y9a{bottom:197.489388px;}
.yd5{bottom:201.990069px;}
.y2a{bottom:204.951990px;}
.y71{bottom:206.579919px;}
.y1cc{bottom:206.670450px;}
.y19b{bottom:208.828857px;}
.y88{bottom:209.188326px;}
.y43{bottom:210.088857px;}
.y14c{bottom:212.430450px;}
.y15d{bottom:212.880450px;}
.y99{bottom:215.039919px;}
.yd4{bottom:219.539388px;}
.y29{bottom:222.502521px;}
.y70{bottom:224.128362px;}
.y19a{bottom:226.379388px;}
.y87{bottom:226.738857px;}
.y42{bottom:227.639388px;}
.y98{bottom:232.590450px;}
.yd3{bottom:237.089919px;}
.y28{bottom:240.053052px;}
.y6f{bottom:241.678893px;}
.y1cb{bottom:243.300450px;}
.y199{bottom:243.929919px;}
.y86{bottom:244.289388px;}
.y41{bottom:245.189919px;}
.yd2{bottom:254.639388px;}
.y27{bottom:257.603583px;}
.y97{bottom:259.590600px;}
.y198{bottom:261.480450px;}
.y85{bottom:261.839919px;}
.y40{bottom:262.740450px;}
.y6e{bottom:268.229388px;}
.y233{bottom:272.004501px;}
.yd1{bottom:272.189919px;}
.y26{bottom:275.154114px;}
.y84{bottom:279.390450px;}
.y96{bottom:280.650600px;}
.y6d{bottom:285.779919px;}
.yd0{bottom:289.740927px;}
.y3f{bottom:290.370450px;}
.y25{bottom:292.704645px;}
.yb1{bottom:295.140450px;}
.y197{bottom:296.489865px;}
.y204{bottom:301.622688px;}
.y95{bottom:301.710600px;}
.y6c{bottom:303.330450px;}
.y83{bottom:306.390450px;}
.y24{bottom:310.255176px;}
.y196{bottom:310.620450px;}
.y1ca{bottom:311.783547px;}
.y203{bottom:315.122454px;}
.yc6{bottom:318.360450px;}
.ycb{bottom:322.140450px;}
.y82{bottom:327.450450px;}
.y23{bottom:327.805707px;}
.y202{bottom:328.622220px;}
.y1c9{bottom:329.334078px;}
.yc9{bottom:330.149513px;}
.y6b{bottom:330.330450px;}
.y195{bottom:331.140450px;}
.y18d{bottom:333.480450px;}
.yc4{bottom:333.838650px;}
.ycd{bottom:333.840216px;}
.ycf{bottom:333.840450px;}
.yc5{bottom:334.020450px;}
.y232{bottom:334.103952px;}
.y182{bottom:338.970000px;}
.yc7{bottom:339.960433px;}
.yc8{bottom:340.139978px;}
.y181{bottom:340.140450px;}
.y201{bottom:342.121986px;}
.yce{bottom:343.380025px;}
.yca{bottom:343.740018px;}
.ycc{bottom:343.830016px;}
.y184{bottom:343.920450px;}
.y18f{bottom:344.640450px;}
.y1c8{bottom:346.884609px;}
.y135{bottom:349.049865px;}
.y94{bottom:349.318476px;}
.y231{bottom:351.654483px;}
.y22{bottom:354.356202px;}
.y3e{bottom:358.319865px;}
.y200{bottom:359.401878px;}
.y134{bottom:363.180450px;}
.y1c7{bottom:364.435140px;}
.y93{bottom:366.869007px;}
.y185{bottom:367.500600px;}
.y230{bottom:369.205014px;}
.y21{bottom:371.906733px;}
.y3d{bottom:372.450450px;}
.y1ff{bottom:372.901644px;}
.yc3{bottom:374.789388px;}
.y6a{bottom:377.939538px;}
.y1c6{bottom:381.985671px;}
.y81{bottom:383.519865px;}
.y133{bottom:383.700450px;}
.y92{bottom:384.419538px;}
.y1fe{bottom:386.401410px;}
.y22f{bottom:386.755545px;}
.y20{bottom:389.457264px;}
.y186{bottom:390.810450px;}
.yc2{bottom:392.339919px;}
.y69{bottom:395.490069px;}
.y3c{bottom:396.390450px;}
.y15c{bottom:397.291062px;}
.y80{bottom:397.650450px;}
.y1c5{bottom:399.536202px;}
.y91{bottom:401.970069px;}
.y1fd{bottom:403.681302px;}
.y22e{bottom:404.306076px;}
.y1f{bottom:407.007795px;}
.yc1{bottom:409.888512px;}
.y15b{bottom:411.420450px;}
.y68{bottom:413.040600px;}
.y187{bottom:414.120600px;}
.y1c4{bottom:417.086733px;}
.y1fc{bottom:417.181068px;}
.y7f{bottom:418.170450px;}
.y90{bottom:419.520600px;}
.y22d{bottom:421.856607px;}
.y18e{bottom:422.400450px;}
.y1e{bottom:424.558326px;}
.y1fb{bottom:430.680834px;}
.y15a{bottom:431.940450px;}
.y1c3{bottom:434.637264px;}
.yc0{bottom:436.439007px;}
.y188{bottom:437.430600px;}
.y22c{bottom:439.407138px;}
.y67{bottom:440.670450px;}
.y1d{bottom:442.108857px;}
.y1fa{bottom:444.188442px;}
.y1c2{bottom:452.187795px;}
.ybf{bottom:453.989538px;}
.y8f{bottom:454.531062px;}
.y22b{bottom:456.957669px;}
.y1c{bottom:459.659388px;}
.y189{bottom:460.740450px;}
.y1f9{bottom:461.468334px;}
.y14b{bottom:466.496274px;}
.y8e{bottom:468.660450px;}
.y1c1{bottom:469.738326px;}
.ybe{bottom:471.540069px;}
.y1f8{bottom:474.968100px;}
.y1b{bottom:477.209919px;}
.y22a{bottom:483.777201px;}
.y18a{bottom:483.960600px;}
.y14a{bottom:484.046805px;}
.yb0{bottom:484.769865px;}
.y1c0{bottom:487.288857px;}
.y1f7{bottom:488.467866px;}
.ybd{bottom:489.090600px;}
.y8d{bottom:489.180600px;}
.y1a{bottom:494.760450px;}
.yaf{bottom:498.900450px;}
.y66{bottom:500.152098px;}
.y229{bottom:501.327732px;}
.y149{bottom:501.597336px;}
.y1bf{bottom:504.839388px;}
.y1f6{bottom:505.747758px;}
.y18b{bottom:507.270600px;}
.y194{bottom:512.490450px;}
.y193{bottom:514.920450px;}
.ybc{bottom:516.719901px;}
.y65{bottom:517.702629px;}
.y228{bottom:518.878263px;}
.y148{bottom:519.147867px;}
.y1f5{bottom:519.247524px;}
.yae{bottom:519.420450px;}
.y192{bottom:521.940600px;}
.y1be{bottom:522.389919px;}
.y19{bottom:522.390450px;}
.y191{bottom:524.280600px;}
.y18c{bottom:530.580450px;}
.y190{bottom:531.567122px;}
.y3b{bottom:531.569865px;}
.y1f4{bottom:532.747290px;}
.y64{bottom:535.253160px;}
.y227{bottom:536.428794px;}
.y147{bottom:536.698398px;}
.y1bd{bottom:539.940450px;}
.ybb{bottom:541.290450px;}
.y3a{bottom:545.700450px;}
.y1f3{bottom:546.247056px;}
.y63{bottom:552.803691px;}
.y16f{bottom:553.260000px;}
.y180{bottom:553.260450px;}
.y171{bottom:553.710450px;}
.y226{bottom:553.979325px;}
.y17b{bottom:554.610450px;}
.y1f2{bottom:559.746822px;}
.y146{bottom:563.248893px;}
.y39{bottom:566.220450px;}
.y1bc{bottom:567.570450px;}
.y62{bottom:570.354222px;}
.y225{bottom:571.529856px;}
.y1f1{bottom:577.026714px;}
.y172{bottom:578.460450px;}
.y145{bottom:580.799424px;}
.y18{bottom:581.699739px;}
.y61{bottom:587.904753px;}
.y224{bottom:589.080387px;}
.y1f0{bottom:590.526480px;}
.y144{bottom:598.349955px;}
.y17{bottom:599.340450px;}
.y173{bottom:603.210450px;}
.y1ef{bottom:604.026246px;}
.y60{bottom:605.455284px;}
.yba{bottom:609.240450px;}
.y223{bottom:615.899919px;}
.y1ee{bottom:617.526012px;}
.y5f{bottom:623.005815px;}
.y143{bottom:624.900450px;}
.y16{bottom:627.060450px;}
.y132{bottom:627.509919px;}
.y174{bottom:628.050450px;}
.yb9{bottom:629.760450px;}
.y222{bottom:633.446202px;}
.y1ed{bottom:634.805904px;}
.y1bb{bottom:635.519865px;}
.y17a{bottom:637.770450px;}
.y7e{bottom:643.078857px;}
.y131{bottom:645.059919px;}
.y1ec{bottom:648.305670px;}
.y5e{bottom:649.556310px;}
.y1ba{bottom:649.650450px;}
.y221{bottom:650.996733px;}
.y142{bottom:652.440450px;}
.y175{bottom:652.530450px;}
.y7d{bottom:660.629388px;}
.y1eb{bottom:661.805436px;}
.y130{bottom:662.609919px;}
.y5d{bottom:667.106841px;}
.y220{bottom:668.547264px;}
.y1b9{bottom:670.170450px;}
.y1ea{bottom:675.305202px;}
.y1b6{bottom:676.741461px;}
.y176{bottom:677.280450px;}
.y7c{bottom:678.179919px;}
.y141{bottom:679.979919px;}
.y12f{bottom:680.159919px;}
.y21f{bottom:686.097795px;}
.y1b5{bottom:686.191487px;}
.y15{bottom:686.544195px;}
.y1e9{bottom:692.585094px;}
.y5c{bottom:694.646310px;}
.y38{bottom:695.355339px;}
.y7b{bottom:695.730450px;}
.y1aa{bottom:697.080450px;}
.y140{bottom:697.530450px;}
.y12e{bottom:697.710819px;}
.y159{bottom:699.328857px;}
.y177{bottom:702.030450px;}
.y21e{bottom:703.648326px;}
.y14{bottom:704.094726px;}
.y1e8{bottom:706.084860px;}
.yad{bottom:706.529865px;}
.y5b{bottom:712.196841px;}
.y37{bottom:712.905870px;}
.y1ab{bottom:713.820583px;}
.y158{bottom:716.879388px;}
.y1e7{bottom:719.584626px;}
.yac{bottom:720.660450px;}
.y21d{bottom:721.198857px;}
.y13{bottom:721.645257px;}
.y7a{bottom:722.730450px;}
.y128{bottom:724.890000px;}
.y13f{bottom:725.069919px;}
.y12a{bottom:726.150450px;}
.y12b{bottom:726.600000px;}
.y178{bottom:726.870450px;}
.y12d{bottom:729.840450px;}
.y127{bottom:729.840774px;}
.y36{bottom:730.456401px;}
.y1ac{bottom:730.560716px;}
.y17f{bottom:732.540450px;}
.y1e6{bottom:733.084392px;}
.y157{bottom:734.429919px;}
.y17e{bottom:735.240450px;}
.y21c{bottom:738.749388px;}
.y12{bottom:739.195788px;}
.y5a{bottom:739.736310px;}
.yab{bottom:741.180450px;}
.y13e{bottom:742.620450px;}
.y17d{bottom:745.320450px;}
.y1ad{bottom:747.390971px;}
.y35{bottom:748.006932px;}
.y1e5{bottom:750.364284px;}
.y179{bottom:751.350450px;}
.y156{bottom:751.978857px;}
.y17c{bottom:752.523709px;}
.y21b{bottom:756.299919px;}
.y11{bottom:756.746319px;}
.y111{bottom:757.020450px;}
.y1b7{bottom:760.620450px;}
.y117{bottom:763.320450px;}
.y10f{bottom:763.320684px;}
.y1e4{bottom:763.864050px;}
.y1ae{bottom:764.131104px;}
.y34{bottom:765.557463px;}
.y59{bottom:767.275779px;}
.y155{bottom:769.529388px;}
.y105{bottom:769.620450px;}
.y13d{bottom:770.159919px;}
.y21a{bottom:773.850450px;}
.y10{bottom:774.296850px;}
.y11f{bottom:775.018716px;}
.y119{bottom:775.020216px;}
.y107{bottom:775.020450px;}
.y1e3{bottom:777.363816px;}
.y8c{bottom:778.080450px;}
.y79{bottom:778.799865px;}
.y16e{bottom:779.160450px;}
.y1af{bottom:780.331257px;}
.y122{bottom:781.140450px;}
.y112{bottom:781.770343px;}
.y33{bottom:783.107994px;}
.y123{bottom:783.750450px;}
.y120{bottom:784.558525px;}
.y118{bottom:784.560025px;}
.y108{bottom:784.560259px;}
.y154{bottom:787.079919px;}
.y121{bottom:787.528466px;}
.y11a{bottom:787.529966px;}
.y13c{bottom:787.710450px;}
.y1e2{bottom:790.863582px;}
.yf{bottom:791.847381px;}
.y10d{bottom:792.660450px;}
.y78{bottom:792.930450px;}
.y58{bottom:793.826274px;}
.y113{bottom:794.280735px;}
.y1b0{bottom:797.161513px;}
.y219{bottom:801.750450px;}
.y1e1{bottom:804.363348px;}
.y153{bottom:804.630450px;}
.y16d{bottom:804.720450px;}
.y10b{bottom:804.900450px;}
.ye{bottom:809.397912px;}
.y32{bottom:809.658489px;}
.y126{bottom:810.840450px;}
.y104{bottom:810.840972px;}
.y77{bottom:813.450450px;}
.y1b1{bottom:813.901646px;}
.y13b{bottom:815.250450px;}
.y1e0{bottom:817.863114px;}
.y114{bottom:820.560435px;}
.y57{bottom:821.365743px;}
.y11b{bottom:826.859179px;}
.y110{bottom:826.860913px;}
.yd{bottom:826.948443px;}
.y31{bottom:827.209020px;}
.y16c{bottom:830.280450px;}
.y1b2{bottom:830.641779px;}
.y152{bottom:832.260450px;}
.y106{bottom:833.159603px;}
.y125{bottom:834.780042px;}
.y116{bottom:834.780178px;}
.y1df{bottom:835.143006px;}
.y11d{bottom:838.558945px;}
.y109{bottom:838.560679px;}
.y13a{bottom:842.790600px;}
.yc{bottom:844.498974px;}
.y30{bottom:844.759551px;}
.yb8{bottom:845.488857px;}
.y124{bottom:846.479858px;}
.y115{bottom:846.479994px;}
.y1b3{bottom:847.472034px;}
.y11c{bottom:848.008756px;}
.y10a{bottom:848.010490px;}
.y1de{bottom:848.642772px;}
.y56{bottom:848.905212px;}
.y11e{bottom:850.168713px;}
.y16b{bottom:855.840450px;}
.y10e{bottom:856.110137px;}
.y1b8{bottom:857.010450px;}
.yb{bottom:862.049505px;}
.y1dd{bottom:862.142538px;}
.y2f{bottom:862.310082px;}
.yb7{bottom:863.039388px;}
.y1b4{bottom:864.212167px;}
.y10c{bottom:864.300403px;}
.y218{bottom:864.306054px;}
.y1dc{bottom:875.642304px;}
.y55{bottom:876.444681px;}
.y139{bottom:877.800477px;}
.y217{bottom:877.805820px;}
.ya{bottom:879.869073px;}
.yb6{bottom:880.589919px;}
.y16a{bottom:881.400450px;}
.yeb{bottom:887.520450px;}
.y1db{bottom:889.142070px;}
.y216{bottom:891.305586px;}
.y138{bottom:891.931062px;}
.yf1{bottom:893.820450px;}
.ye9{bottom:893.820684px;}
.yb5{bottom:898.140450px;}
.ydf{bottom:900.120450px;}
.y151{bottom:900.209865px;}
.y1da{bottom:902.641836px;}
.y54{bottom:903.984150px;}
.y215{bottom:904.805352px;}
.yf9{bottom:905.518716px;}
.yf3{bottom:905.520216px;}
.ye1{bottom:905.520450px;}
.y1a9{bottom:905.699865px;}
.y137{bottom:906.060450px;}
.y169{bottom:906.960450px;}
.yff{bottom:911.640450px;}
.yec{bottom:912.270343px;}
.y100{bottom:914.250450px;}
.y150{bottom:914.340450px;}
.yfa{bottom:915.058525px;}
.yf2{bottom:915.060025px;}
.ye2{bottom:915.060259px;}
.yfb{bottom:918.028466px;}
.yf4{bottom:918.029966px;}
.y1a8{bottom:919.830450px;}
.y1d9{bottom:919.921728px;}
.y214{bottom:922.085244px;}
.ye7{bottom:923.160450px;}
.yed{bottom:924.780735px;}
.y136{bottom:926.580450px;}
.y53{bottom:930.534645px;}
.y168{bottom:932.520450px;}
.yb4{bottom:933.149865px;}
.y9{bottom:933.419460px;}
.y1d8{bottom:933.421494px;}
.y14f{bottom:934.860450px;}
.ye5{bottom:935.400450px;}
.y213{bottom:935.585010px;}
.yaa{bottom:939.538326px;}
.y1a7{bottom:940.350450px;}
.yde{bottom:941.339856px;}
.y103{bottom:941.340450px;}
.y1d7{bottom:946.921260px;}
.y1a4{bottom:947.010335px;}
.yb3{bottom:947.280450px;}
.y52{bottom:948.085176px;}
.y212{bottom:949.084776px;}
.yee{bottom:951.060435px;}
.y1a3{bottom:956.370375px;}
.ya9{bottom:957.088857px;}
.yf5{bottom:957.359179px;}
.yea{bottom:957.360913px;}
.y167{bottom:958.080450px;}
.y1d6{bottom:960.421026px;}
.y211{bottom:962.584542px;}
.ye0{bottom:963.659603px;}
.y102{bottom:965.280042px;}
.yf0{bottom:965.280178px;}
.y51{bottom:965.635707px;}
.y19c{bottom:967.260450px;}
.yb2{bottom:967.800450px;}
.y8{bottom:968.969919px;}
.yfc{bottom:969.057445px;}
.yf7{bottom:969.058945px;}
.ye3{bottom:969.060679px;}
.ya8{bottom:974.639388px;}
.y210{bottom:976.084308px;}
.y101{bottom:976.979858px;}
.yef{bottom:976.979994px;}
.y1d5{bottom:977.700918px;}
.yfd{bottom:978.507256px;}
.yf6{bottom:978.508756px;}
.ye4{bottom:978.510490px;}
.yfe{bottom:980.667213px;}
.yf8{bottom:980.668713px;}
.y50{bottom:983.186238px;}
.y166{bottom:983.640450px;}
.ye8{bottom:986.610137px;}
.y1d4{bottom:991.200684px;}
.ya7{bottom:992.189919px;}
.y7{bottom:993.270450px;}
.y20f{bottom:993.364200px;}
.ye6{bottom:994.800403px;}
.y19d{bottom:994.980157px;}
.y4f{bottom:1000.736769px;}
.y1d3{bottom:1004.700450px;}
.y20e{bottom:1006.863966px;}
.y165{bottom:1009.200450px;}
.ya6{bottom:1009.733133px;}
.y4e{bottom:1018.287300px;}
.ydd{bottom:1018.289388px;}
.y20d{bottom:1020.363732px;}
.y6{bottom:1022.700450px;}
.y19e{bottom:1023.330012px;}
.ya5{bottom:1027.283664px;}
.y1d2{bottom:1029.000450px;}
.y20c{bottom:1033.863498px;}
.y164{bottom:1034.491350px;}
.y4d{bottom:1035.837831px;}
.ydc{bottom:1035.839919px;}
.y1a5{bottom:1044.390450px;}
.ya4{bottom:1044.834195px;}
.y163{bottom:1050.330900px;}
.y19f{bottom:1051.049719px;}
.y20b{bottom:1051.143390px;}
.y4c{bottom:1053.388362px;}
.ydb{bottom:1053.389388px;}
.ya3{bottom:1062.384726px;}
.y20a{bottom:1064.643156px;}
.y162{bottom:1066.170450px;}
.y4b{bottom:1070.938893px;}
.yda{bottom:1070.939919px;}
.y5{bottom:1072.470450px;}
.y209{bottom:1078.142922px;}
.y1a0{bottom:1078.859338px;}
.ya2{bottom:1079.935257px;}
.y4a{bottom:1088.489424px;}
.y161{bottom:1091.100450px;}
.y208{bottom:1091.642688px;}
.ya1{bottom:1097.485788px;}
.y1d1{bottom:1097.489388px;}
.y4{bottom:1103.520450px;}
.y1a1{bottom:1107.119282px;}
.y207{bottom:1108.922580px;}
.ya0{bottom:1115.036319px;}
.y76{bottom:1115.039271px;}
.y49{bottom:1115.039919px;}
.y206{bottom:1122.422346px;}
.y1a6{bottom:1125.570450px;}
.y9f{bottom:1132.586850px;}
.y75{bottom:1132.589802px;}
.y48{bottom:1132.590450px;}
.yd9{bottom:1132.590495px;}
.y1a2{bottom:1134.928901px;}
.y205{bottom:1135.922112px;}
.y2{bottom:1180.110450px;}
.y1{bottom:1189.740450px;}
.h2e{height:1.800000px;}
.h35{height:6.210000px;}
.h37{height:13.732144px;}
.h31{height:14.762180px;}
.h38{height:16.902352px;}
.h32{height:18.169559px;}
.h27{height:18.360000px;}
.h24{height:20.070000px;}
.h34{height:23.240890px;}
.h2f{height:24.983065px;}
.h23{height:24.996094px;}
.h3e{height:27.081935px;}
.h3b{height:27.247767px;}
.h36{height:28.522484px;}
.h16{height:29.161276px;}
.h3d{height:29.337877px;}
.h3a{height:29.518102px;}
.h30{height:30.660778px;}
.h2{height:31.163906px;}
.h3c{height:31.595070px;}
.h39{height:31.788436px;}
.h3f{height:33.244805px;}
.h5{height:38.158594px;}
.h20{height:38.204963px;}
.h21{height:40.377439px;}
.h22{height:41.219525px;}
.h17{height:41.659323px;}
.h8{height:41.743477px;}
.h33{height:45.742852px;}
.hc{height:46.991602px;}
.h11{height:46.993942px;}
.h41{height:48.254063px;}
.h1{height:49.937344px;}
.h2d{height:52.998047px;}
.h2b{height:54.421875px;}
.h1f{height:54.578987px;}
.h28{height:54.852979px;}
.h1a{height:57.682751px;}
.h19{height:58.885541px;}
.ha{height:58.975137px;}
.h6{height:59.004492px;}
.h29{height:59.006616px;}
.h1d{height:59.008596px;}
.h10{height:59.008740px;}
.h1b{height:59.009340px;}
.h1c{height:59.010264px;}
.h2a{height:59.010864px;}
.h14{height:59.012244px;}
.hf{height:59.012844px;}
.h42{height:59.021484px;}
.h13{height:59.033760px;}
.h7{height:60.589687px;}
.hd{height:62.703281px;}
.h26{height:69.612979px;}
.h12{height:72.562500px;}
.he{height:75.093750px;}
.h4{height:80.111602px;}
.h1e{height:81.869026px;}
.h9{height:84.535312px;}
.h15{height:86.815618px;}
.h25{height:86.907858px;}
.hb{height:87.484219px;}
.h3{height:108.843750px;}
.h18{height:112.884461px;}
.h2c{height:117.780075px;}
.h40{height:141.296757px;}
.h0{height:1263.000000px;}
.w5{width:2.160000px;}
.w3{width:3.780000px;}
.w2{width:4.950000px;}
.w8{width:5.670000px;}
.w9{width:6.300000px;}
.w7{width:7.380000px;}
.w4{width:8.280000px;}
.w6{width:9.540000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x7f{left:5.220000px;}
.x1{left:85.050000px;}
.x7a{left:89.550000px;}
.x7b{left:90.810000px;}
.x4{left:95.130000px;}
.x72{left:96.750000px;}
.xd{left:97.830009px;}
.x6a{left:100.890450px;}
.x70{left:104.310000px;}
.x71{left:107.640000px;}
.x89{left:112.049532px;}
.x69{left:114.030000px;}
.xc{left:116.910594px;}
.x6{left:127.620000px;}
.x73{left:141.480000px;}
.x1f{left:149.040000px;}
.x1e{left:150.928916px;}
.x6b{left:172.621350px;}
.x74{left:190.890000px;}
.x17{left:192.330000px;}
.x2{left:222.029100px;}
.x75{left:238.230000px;}
.x6c{left:245.972250px;}
.x3{left:258.300000px;}
.x80{left:262.800000px;}
.x76{left:287.640000px;}
.x1d{left:302.760379px;}
.x6d{left:315.722700px;}
.x77{left:334.980000px;}
.x1b{left:337.049736px;}
.x1c{left:359.820738px;}
.x1a{left:369.179868px;}
.x5{left:375.840099px;}
.x78{left:384.390000px;}
.x6f{left:387.722250px;}
.x6e{left:395.552250px;}
.x15{left:397.710000px;}
.x18{left:401.310000px;}
.x7c{left:403.560000px;}
.x19{left:405.359734px;}
.x7e{left:407.700000px;}
.x7d{left:409.500000px;}
.x16{left:410.850000px;}
.x20{left:421.380000px;}
.x11{left:427.590000px;}
.x79{left:431.910000px;}
.x10{left:436.320000px;}
.x66{left:438.570000px;}
.x7{left:459.269946px;}
.x84{left:472.230000px;}
.x83{left:474.930328px;}
.x87{left:476.010360px;}
.x82{left:479.249986px;}
.x86{left:480.510000px;}
.x81{left:483.660000px;}
.x8a{left:486.270369px;}
.x88{left:488.430658px;}
.x8{left:491.130540px;}
.xa{left:501.840108px;}
.x43{left:507.157295px;}
.x60{left:508.597177px;}
.x44{left:513.000000px;}
.x61{left:514.980000px;}
.x55{left:523.352381px;}
.x34{left:524.792443px;}
.x2b{left:527.130827px;}
.x35{left:528.392371px;}
.x30{left:529.468395px;}
.x53{left:530.909877px;}
.x3e{left:532.805282px;}
.x52{left:534.059787px;}
.x28{left:536.670000px;}
.x2f{left:538.560085px;}
.x46{left:552.420000px;}
.x21{left:556.830000px;}
.x39{left:578.614366px;}
.x51{left:579.779681px;}
.x2d{left:580.950878px;}
.x50{left:582.570754px;}
.x2e{left:584.189681px;}
.x59{left:586.984109px;}
.x3a{left:588.334172px;}
.x5f{left:591.487019px;}
.x42{left:592.837082px;}
.x4d{left:594.809863px;}
.x29{left:596.159200px;}
.x45{left:597.599233px;}
.x5b{left:601.745314px;}
.x3d{left:606.155315px;}
.x33{left:611.280713px;}
.x47{left:614.429173px;}
.x22{left:615.779214px;}
.x24{left:618.479708px;}
.x63{left:620.820000px;}
.x49{left:629.189402px;}
.xb{left:633.600000px;}
.x54{left:642.420000px;}
.x31{left:646.920000px;}
.x5e{left:654.667255px;}
.x41{left:656.017318px;}
.x58{left:659.792653px;}
.x38{left:661.142716px;}
.x3c{left:665.014138px;}
.x4c{left:666.990146px;}
.x27{left:668.340211px;}
.x32{left:670.139536px;}
.x48{left:674.280000px;}
.x23{left:678.870000px;}
.x4b{left:682.109843px;}
.x26{left:683.369910px;}
.x4e{left:687.870000px;}
.x2a{left:692.460000px;}
.x56{left:695.341942px;}
.x36{left:696.782003px;}
.x5a{left:698.133386px;}
.x3b{left:702.723384px;}
.x64{left:708.570000px;}
.x5d{left:713.436080px;}
.x40{left:714.876141px;}
.x57{left:718.561477px;}
.x37{left:720.001538px;}
.x4f{left:740.880067px;}
.x2c{left:742.320130px;}
.x5c{left:751.145325px;}
.x3f{left:752.585387px;}
.x4a{left:759.058304px;}
.x25{left:760.498367px;}
.x62{left:770.850000px;}
.x9{left:772.560000px;}
.x14{left:774.360000px;}
.x67{left:781.830000px;}
.x13{left:783.810000px;}
.x12{left:784.979850px;}
.x85{left:805.860000px;}
.x68{left:808.019850px;}
.x65{left:810.629850px;}
.xe{left:812.610000px;}
.xf{left:815.760000px;}
@media print{
.v9{vertical-align:-47.038490pt;}
.v7{vertical-align:-28.476669pt;}
.v2{vertical-align:-24.000000pt;}
.vb{vertical-align:-13.120000pt;}
.v3{vertical-align:-7.992576pt;}
.v5{vertical-align:-5.437920pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:5.440000pt;}
.v4{vertical-align:8.000000pt;}
.va{vertical-align:13.120000pt;}
.v1{vertical-align:29.440000pt;}
.v8{vertical-align:47.999040pt;}
.vc{vertical-align:56.318400pt;}
.ls9f{letter-spacing:-0.970145pt;}
.ls94{letter-spacing:-0.562532pt;}
.ls8e{letter-spacing:-0.472303pt;}
.lsbf{letter-spacing:-0.412832pt;}
.ls8c{letter-spacing:-0.408812pt;}
.ls8f{letter-spacing:-0.398165pt;}
.ls91{letter-spacing:-0.385390pt;}
.ls93{letter-spacing:-0.370400pt;}
.ls92{letter-spacing:-0.342669pt;}
.ls98{letter-spacing:-0.336727pt;}
.ls97{letter-spacing:-0.328804pt;}
.ls6e{letter-spacing:-0.192960pt;}
.lsa0{letter-spacing:-0.159259pt;}
.ls86{letter-spacing:-0.134400pt;}
.ls8b{letter-spacing:-0.132012pt;}
.ls96{letter-spacing:-0.122445pt;}
.ls26{letter-spacing:-0.110656pt;}
.lsbc{letter-spacing:-0.093632pt;}
.ls2e{letter-spacing:-0.092928pt;}
.ls66{letter-spacing:-0.080864pt;}
.ls6f{letter-spacing:-0.074816pt;}
.ls75{letter-spacing:-0.064128pt;}
.ls9c{letter-spacing:-0.062700pt;}
.ls33{letter-spacing:-0.058784pt;}
.lsbe{letter-spacing:-0.055328pt;}
.ls36{letter-spacing:-0.053440pt;}
.lsb7{letter-spacing:-0.052192pt;}
.ls99{letter-spacing:-0.050464pt;}
.ls38{letter-spacing:-0.048096pt;}
.ls2b{letter-spacing:-0.046464pt;}
.lsc1{letter-spacing:-0.042752pt;}
.ls50{letter-spacing:-0.038304pt;}
.ls6c{letter-spacing:-0.037408pt;}
.lsbd{letter-spacing:-0.034048pt;}
.ls35{letter-spacing:-0.032064pt;}
.ls2a{letter-spacing:-0.030976pt;}
.lsb9{letter-spacing:-0.029792pt;}
.ls31{letter-spacing:-0.026720pt;}
.lsbb{letter-spacing:-0.025536pt;}
.ls2d{letter-spacing:-0.023232pt;}
.ls4f{letter-spacing:-0.021376pt;}
.ls76{letter-spacing:-0.021280pt;}
.lsba{letter-spacing:-0.017024pt;}
.ls30{letter-spacing:-0.016032pt;}
.ls2c{letter-spacing:-0.015488pt;}
.ls87{letter-spacing:-0.014400pt;}
.lsb8{letter-spacing:-0.012768pt;}
.ls69{letter-spacing:-0.010688pt;}
.ls6d{letter-spacing:-0.010368pt;}
.ls88{letter-spacing:-0.009600pt;}
.lsa1{letter-spacing:-0.008512pt;}
.ls29{letter-spacing:-0.007744pt;}
.ls2f{letter-spacing:-0.006400pt;}
.ls70{letter-spacing:-0.005344pt;}
.ls68{letter-spacing:-0.003456pt;}
.ls28{letter-spacing:0.000000pt;}
.ls6a{letter-spacing:0.003456pt;}
.ls3{letter-spacing:0.004256pt;}
.ls1f{letter-spacing:0.005344pt;}
.lsa{letter-spacing:0.006400pt;}
.ls57{letter-spacing:0.006912pt;}
.lsb6{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.008512pt;}
.ls78{letter-spacing:0.009600pt;}
.ls1d{letter-spacing:0.010688pt;}
.ls52{letter-spacing:0.012768pt;}
.ls4c{letter-spacing:0.012800pt;}
.ls7b{letter-spacing:0.014400pt;}
.ls42{letter-spacing:0.015360pt;}
.lsb5{letter-spacing:0.016032pt;}
.ls1{letter-spacing:0.017024pt;}
.ls62{letter-spacing:0.020160pt;}
.ls1a{letter-spacing:0.021376pt;}
.ls90{letter-spacing:0.024777pt;}
.ls71{letter-spacing:0.025536pt;}
.ls1b{letter-spacing:0.026720pt;}
.ls0{letter-spacing:0.029792pt;}
.ls84{letter-spacing:0.029824pt;}
.ls8{letter-spacing:0.032000pt;}
.ls4b{letter-spacing:0.032064pt;}
.ls74{letter-spacing:0.034048pt;}
.ls73{letter-spacing:0.037280pt;}
.lsc{letter-spacing:0.037408pt;}
.lsa5{letter-spacing:0.038304pt;}
.ls4d{letter-spacing:0.038400pt;}
.ls7{letter-spacing:0.038720pt;}
.ls4{letter-spacing:0.042560pt;}
.ls3d{letter-spacing:0.042752pt;}
.ls14{letter-spacing:0.044736pt;}
.ls39{letter-spacing:0.046816pt;}
.ls47{letter-spacing:0.047360pt;}
.ls32{letter-spacing:0.048096pt;}
.ls4e{letter-spacing:0.051072pt;}
.ls19{letter-spacing:0.053440pt;}
.ls27{letter-spacing:0.055328pt;}
.ls10{letter-spacing:0.058784pt;}
.ls72{letter-spacing:0.059584pt;}
.ls25{letter-spacing:0.059648pt;}
.lsa9{letter-spacing:0.063840pt;}
.lsd{letter-spacing:0.064128pt;}
.ls3e{letter-spacing:0.067104pt;}
.ls23{letter-spacing:0.068096pt;}
.ls13{letter-spacing:0.069472pt;}
.ls22{letter-spacing:0.072352pt;}
.ls53{letter-spacing:0.074560pt;}
.lsf{letter-spacing:0.074816pt;}
.ls45{letter-spacing:0.076608pt;}
.ls7a{letter-spacing:0.076800pt;}
.ls1c{letter-spacing:0.080160pt;}
.ls44{letter-spacing:0.080864pt;}
.lsc0{letter-spacing:0.082016pt;}
.ls46{letter-spacing:0.085120pt;}
.ls17{letter-spacing:0.085504pt;}
.ls4a{letter-spacing:0.089376pt;}
.ls1e{letter-spacing:0.090848pt;}
.ls49{letter-spacing:0.093632pt;}
.ls6{letter-spacing:0.096000pt;}
.ls12{letter-spacing:0.096192pt;}
.ls65{letter-spacing:0.097888pt;}
.ls11{letter-spacing:0.101536pt;}
.ls51{letter-spacing:0.102144pt;}
.lsb2{letter-spacing:0.106400pt;}
.ls20{letter-spacing:0.106880pt;}
.ls48{letter-spacing:0.110656pt;}
.ls16{letter-spacing:0.111840pt;}
.ls3f{letter-spacing:0.112224pt;}
.ls18{letter-spacing:0.117568pt;}
.ls79{letter-spacing:0.120000pt;}
.ls7e{letter-spacing:0.120826pt;}
.ls41{letter-spacing:0.122912pt;}
.lsac{letter-spacing:0.123424pt;}
.lsa4{letter-spacing:0.127680pt;}
.ls85{letter-spacing:0.128256pt;}
.ls5b{letter-spacing:0.128640pt;}
.ls9{letter-spacing:0.131200pt;}
.ls89{letter-spacing:0.134400pt;}
.lsaa{letter-spacing:0.136192pt;}
.lsa7{letter-spacing:0.140448pt;}
.ls5a{letter-spacing:0.144288pt;}
.lsa6{letter-spacing:0.144704pt;}
.lsab{letter-spacing:0.148960pt;}
.ls34{letter-spacing:0.156576pt;}
.lsb{letter-spacing:0.160000pt;}
.ls5e{letter-spacing:0.160320pt;}
.ls37{letter-spacing:0.161728pt;}
.lsad{letter-spacing:0.178752pt;}
.lsa2{letter-spacing:0.195776pt;}
.ls59{letter-spacing:0.319616pt;}
.ls8a{letter-spacing:0.321600pt;}
.ls43{letter-spacing:0.331520pt;}
.ls80{letter-spacing:0.341406pt;}
.ls81{letter-spacing:0.346781pt;}
.ls83{letter-spacing:0.403912pt;}
.ls82{letter-spacing:0.561009pt;}
.ls9d{letter-spacing:0.596816pt;}
.ls9a{letter-spacing:0.666470pt;}
.ls7f{letter-spacing:0.670923pt;}
.ls9e{letter-spacing:0.775511pt;}
.ls9b{letter-spacing:0.791094pt;}
.ls54{letter-spacing:1.600384pt;}
.ls56{letter-spacing:1.920000pt;}
.ls6b{letter-spacing:2.239488pt;}
.ls64{letter-spacing:2.247168pt;}
.ls95{letter-spacing:3.495605pt;}
.ls5c{letter-spacing:4.480384pt;}
.lsb4{letter-spacing:5.039104pt;}
.ls8d{letter-spacing:5.215788pt;}
.lsa8{letter-spacing:5.358304pt;}
.ls7c{letter-spacing:5.555152pt;}
.ls5d{letter-spacing:6.720000pt;}
.lsb3{letter-spacing:6.958560pt;}
.ls60{letter-spacing:7.039232pt;}
.lse{letter-spacing:7.759488pt;}
.ls3b{letter-spacing:8.878016pt;}
.ls5f{letter-spacing:9.279232pt;}
.lsaf{letter-spacing:9.839872pt;}
.ls58{letter-spacing:9.918848pt;}
.lsb0{letter-spacing:9.920000pt;}
.ls63{letter-spacing:10.240000pt;}
.ls61{letter-spacing:10.240384pt;}
.lsae{letter-spacing:12.806304pt;}
.lsb1{letter-spacing:12.810560pt;}
.ls77{letter-spacing:19.849984pt;}
.ls21{letter-spacing:23.688896pt;}
.lsa3{letter-spacing:34.248032pt;}
.ls40{letter-spacing:53.568000pt;}
.ls3c{letter-spacing:66.425920pt;}
.ls3a{letter-spacing:68.455744pt;}
.ls15{letter-spacing:74.313952pt;}
.ls24{letter-spacing:74.634560pt;}
.ls7d{letter-spacing:218.694881pt;}
.ls55{letter-spacing:623.897721pt;}
.ls67{letter-spacing:863.332208pt;}
.ls5{letter-spacing:1101.678368pt;}
.wsba{word-spacing:-53.600000pt;}
.ws8f{word-spacing:-53.440000pt;}
.wsb4{word-spacing:-30.944458pt;}
.wsf2{word-spacing:-29.426400pt;}
.wsaf{word-spacing:-29.279414pt;}
.ws1{word-spacing:-24.000000pt;}
.ws2{word-spacing:-19.360000pt;}
.ws3{word-spacing:-19.267072pt;}
.ws6{word-spacing:-18.796576pt;}
.ws50{word-spacing:-16.000000pt;}
.ws91{word-spacing:-13.482912pt;}
.ws5{word-spacing:-13.424128pt;}
.wsbc{word-spacing:-13.400000pt;}
.ws90{word-spacing:-13.360000pt;}
.wsb6{word-spacing:-13.333067pt;}
.wsbb{word-spacing:-13.207040pt;}
.ws112{word-spacing:-12.076800pt;}
.ws0{word-spacing:-11.840192pt;}
.ws113{word-spacing:-11.474403pt;}
.ws153{word-spacing:-10.835776pt;}
.ws155{word-spacing:-10.818752pt;}
.ws154{word-spacing:-10.801728pt;}
.ws111{word-spacing:-10.725120pt;}
.ws158{word-spacing:-10.720864pt;}
.ws157{word-spacing:-10.699584pt;}
.ws159{word-spacing:-10.686816pt;}
.ws156{word-spacing:-10.546368pt;}
.wsb5{word-spacing:-9.333067pt;}
.wsb1{word-spacing:-8.646912pt;}
.wsb2{word-spacing:-8.643456pt;}
.ws4{word-spacing:-8.640000pt;}
.wsb0{word-spacing:-8.636544pt;}
.wsb3{word-spacing:-8.629632pt;}
.ws120{word-spacing:-7.878431pt;}
.ws51{word-spacing:-6.640000pt;}
.ws11f{word-spacing:-6.589536pt;}
.ws123{word-spacing:-6.257277pt;}
.ws114{word-spacing:-5.787238pt;}
.ws11c{word-spacing:-5.627301pt;}
.ws115{word-spacing:-5.510439pt;}
.ws11b{word-spacing:-4.943944pt;}
.ws11e{word-spacing:-4.346089pt;}
.ws117{word-spacing:-4.329699pt;}
.ws11d{word-spacing:-3.882237pt;}
.ws116{word-spacing:-3.832620pt;}
.ws47{word-spacing:-1.416640pt;}
.ws106{word-spacing:-1.394272pt;}
.ws13c{word-spacing:-1.267943pt;}
.ws139{word-spacing:-0.612285pt;}
.ws13b{word-spacing:-0.608427pt;}
.ws13f{word-spacing:-0.568170pt;}
.ws12e{word-spacing:-0.546142pt;}
.ws43{word-spacing:-0.242592pt;}
.ws176{word-spacing:-0.229824pt;}
.ws16f{word-spacing:-0.225568pt;}
.ws166{word-spacing:-0.221312pt;}
.ws17b{word-spacing:-0.217056pt;}
.ws160{word-spacing:-0.208544pt;}
.ws188{word-spacing:-0.204288pt;}
.ws7e{word-spacing:-0.191520pt;}
.wsbf{word-spacing:-0.183008pt;}
.wsf1{word-spacing:-0.178752pt;}
.ws7f{word-spacing:-0.174496pt;}
.ws87{word-spacing:-0.170240pt;}
.ws7d{word-spacing:-0.165984pt;}
.ws1b7{word-spacing:-0.164032pt;}
.wsa8{word-spacing:-0.161728pt;}
.ws15f{word-spacing:-0.157472pt;}
.wsc5{word-spacing:-0.156576pt;}
.ws86{word-spacing:-0.153216pt;}
.ws6b{word-spacing:-0.149120pt;}
.ws1a8{word-spacing:-0.144704pt;}
.ws103{word-spacing:-0.140448pt;}
.ws126{word-spacing:-0.136192pt;}
.ws17d{word-spacing:-0.127680pt;}
.ws13e{word-spacing:-0.114912pt;}
.ws10f{word-spacing:-0.106400pt;}
.ws135{word-spacing:-0.097888pt;}
.wsc4{word-spacing:-0.093632pt;}
.ws46{word-spacing:-0.089376pt;}
.ws142{word-spacing:-0.072352pt;}
.wsf7{word-spacing:-0.064128pt;}
.ws133{word-spacing:-0.061403pt;}
.ws105{word-spacing:-0.059584pt;}
.wsab{word-spacing:-0.042560pt;}
.ws131{word-spacing:-0.041325pt;}
.ws80{word-spacing:-0.032000pt;}
.ws52{word-spacing:-0.029792pt;}
.wscb{word-spacing:-0.026720pt;}
.wsb{word-spacing:-0.025536pt;}
.ws6a{word-spacing:-0.021376pt;}
.ws5f{word-spacing:-0.016032pt;}
.ws6e{word-spacing:-0.012800pt;}
.ws7{word-spacing:-0.012768pt;}
.ws3b{word-spacing:-0.010688pt;}
.wsf{word-spacing:-0.006400pt;}
.ws34{word-spacing:-0.005344pt;}
.ws8{word-spacing:0.000000pt;}
.ws62{word-spacing:0.005344pt;}
.ws10{word-spacing:0.006400pt;}
.ws1f{word-spacing:0.010688pt;}
.wsa{word-spacing:0.012768pt;}
.ws21{word-spacing:0.016032pt;}
.ws60{word-spacing:0.021376pt;}
.ws127{word-spacing:0.024000pt;}
.ws42{word-spacing:0.026720pt;}
.ws13{word-spacing:0.032064pt;}
.ws128{word-spacing:0.038400pt;}
.ws14{word-spacing:0.042752pt;}
.ws2b{word-spacing:0.053440pt;}
.ws5e{word-spacing:0.058784pt;}
.ws125{word-spacing:0.069472pt;}
.ws84{word-spacing:0.074816pt;}
.ws11{word-spacing:0.096192pt;}
.ws12{word-spacing:0.106880pt;}
.wsd{word-spacing:0.123904pt;}
.ws9{word-spacing:0.127680pt;}
.ws7a{word-spacing:0.138944pt;}
.ws134{word-spacing:0.140448pt;}
.ws85{word-spacing:0.144704pt;}
.ws162{word-spacing:0.161728pt;}
.wsc{word-spacing:0.170368pt;}
.ws172{word-spacing:0.178752pt;}
.wse{word-spacing:0.185856pt;}
.ws17c{word-spacing:0.234080pt;}
.wsd6{word-spacing:0.256512pt;}
.wsa0{word-spacing:0.283232pt;}
.ws1c5{word-spacing:0.299264pt;}
.ws1b{word-spacing:0.304608pt;}
.ws8a{word-spacing:0.331328pt;}
.ws72{word-spacing:0.374080pt;}
.ws132{word-spacing:0.394169pt;}
.ws1bb{word-spacing:0.427520pt;}
.ws130{word-spacing:0.434362pt;}
.ws12f{word-spacing:0.447138pt;}
.ws13a{word-spacing:0.477989pt;}
.ws19f{word-spacing:0.544768pt;}
.ws1b4{word-spacing:0.617120pt;}
.ws76{word-spacing:0.619904pt;}
.ws1c4{word-spacing:0.630592pt;}
.wsc2{word-spacing:0.646624pt;}
.wsc1{word-spacing:0.694720pt;}
.ws187{word-spacing:0.736288pt;}
.ws186{word-spacing:0.795872pt;}
.ws1b3{word-spacing:0.808640pt;}
.ws1c2{word-spacing:0.913824pt;}
.ws14b{word-spacing:0.940544pt;}
.wsda{word-spacing:0.960768pt;}
.ws9a{word-spacing:0.972608pt;}
.ws82{word-spacing:0.977952pt;}
.wsdb{word-spacing:0.983296pt;}
.ws1c3{word-spacing:1.074144pt;}
.ws199{word-spacing:1.076768pt;}
.ws198{word-spacing:1.106560pt;}
.ws18c{word-spacing:1.132096pt;}
.wsd9{word-spacing:1.346688pt;}
.ws140{word-spacing:1.405210pt;}
.ws18b{word-spacing:1.447040pt;}
.ws1a9{word-spacing:1.532160pt;}
.ws9f{word-spacing:1.576480pt;}
.ws137{word-spacing:1.587168pt;}
.ws1c7{word-spacing:1.603200pt;}
.wscd{word-spacing:1.613888pt;}
.ws54{word-spacing:1.710080pt;}
.ws93{word-spacing:1.787520pt;}
.wsd0{word-spacing:1.886432pt;}
.wscf{word-spacing:1.913152pt;}
.wscc{word-spacing:1.929184pt;}
.ws81{word-spacing:2.228448pt;}
.ws8d{word-spacing:2.249824pt;}
.wsdd{word-spacing:2.281888pt;}
.wsde{word-spacing:2.356704pt;}
.wsaa{word-spacing:2.404640pt;}
.ws152{word-spacing:2.533056pt;}
.wsa6{word-spacing:2.543744pt;}
.ws1c8{word-spacing:2.586496pt;}
.wsa9{word-spacing:2.711072pt;}
.ws17{word-spacing:2.859040pt;}
.ws9b{word-spacing:2.869728pt;}
.ws196{word-spacing:3.038784pt;}
.ws6f{word-spacing:3.185024pt;}
.ws10c{word-spacing:3.190368pt;}
.ws67{word-spacing:3.195712pt;}
.ws197{word-spacing:3.200512pt;}
.ws53{word-spacing:3.206400pt;}
.ws1c{word-spacing:3.211744pt;}
.ws99{word-spacing:3.222432pt;}
.wsbe{word-spacing:3.383520pt;}
.wsfa{word-spacing:3.537728pt;}
.ws4f{word-spacing:3.543072pt;}
.wsfb{word-spacing:3.601856pt;}
.wsbd{word-spacing:3.689952pt;}
.ws3c{word-spacing:3.847680pt;}
.ws1cb{word-spacing:3.858368pt;}
.ws5c{word-spacing:3.874400pt;}
.ws1cc{word-spacing:3.927840pt;}
.ws175{word-spacing:3.945312pt;}
.ws174{word-spacing:4.098528pt;}
.ws4e{word-spacing:4.146944pt;}
.ws5b{word-spacing:4.211072pt;}
.ws1c6{word-spacing:4.280544pt;}
.ws98{word-spacing:4.296576pt;}
.ws15c{word-spacing:4.358144pt;}
.ws189{word-spacing:4.426240pt;}
.ws124{word-spacing:4.451552pt;}
.ws15a{word-spacing:4.456896pt;}
.ws9e{word-spacing:4.462240pt;}
.wsd8{word-spacing:4.467584pt;}
.wsce{word-spacing:4.472928pt;}
.wse0{word-spacing:4.488960pt;}
.ws69{word-spacing:4.515680pt;}
.wse4{word-spacing:4.526368pt;}
.ws92{word-spacing:4.761504pt;}
.wsc6{word-spacing:4.782880pt;}
.wsdf{word-spacing:4.798912pt;}
.ws66{word-spacing:4.809600pt;}
.ws1d0{word-spacing:4.814944pt;}
.ws40{word-spacing:4.825632pt;}
.ws1b6{word-spacing:4.890144pt;}
.wsc7{word-spacing:4.895104pt;}
.ws1b5{word-spacing:5.009312pt;}
.ws16e{word-spacing:5.026336pt;}
.wsa5{word-spacing:5.114208pt;}
.ws3f{word-spacing:5.194368pt;}
.ws97{word-spacing:5.253152pt;}
.ws16d{word-spacing:5.264672pt;}
.ws16c{word-spacing:5.375328pt;}
.ws183{word-spacing:5.383840pt;}
.ws83{word-spacing:5.424160pt;}
.ws96{word-spacing:5.434848pt;}
.ws108{word-spacing:5.456224pt;}
.wsa2{word-spacing:5.728768pt;}
.ws107{word-spacing:5.760832pt;}
.ws182{word-spacing:5.839232pt;}
.wsa3{word-spacing:5.862368pt;}
.ws1a3{word-spacing:5.907328pt;}
.ws1a2{word-spacing:6.022240pt;}
.ws1e{word-spacing:6.060096pt;}
.ws49{word-spacing:6.065440pt;}
.ws28{word-spacing:6.081472pt;}
.ws161{word-spacing:6.243552pt;}
.ws191{word-spacing:6.247808pt;}
.ws16b{word-spacing:6.269088pt;}
.ws192{word-spacing:6.320160pt;}
.ws181{word-spacing:6.358464pt;}
.ws1b1{word-spacing:6.498912pt;}
.ws18a{word-spacing:6.622336pt;}
.wse3{word-spacing:6.754816pt;}
.ws1ac{word-spacing:6.796832pt;}
.ws1b0{word-spacing:6.847904pt;}
.ws104{word-spacing:6.877696pt;}
.ws168{word-spacing:6.898976pt;}
.wse2{word-spacing:7.043392pt;}
.wsed{word-spacing:7.118208pt;}
.ws102{word-spacing:7.192640pt;}
.ws1aa{word-spacing:7.226688pt;}
.ws1ab{word-spacing:7.235200pt;}
.wsec{word-spacing:7.331968pt;}
.wsf8{word-spacing:7.358688pt;}
.ws14a{word-spacing:7.380064pt;}
.ws19e{word-spacing:7.520352pt;}
.ws170{word-spacing:7.545888pt;}
.ws25{word-spacing:7.641920pt;}
.ws24{word-spacing:7.673984pt;}
.ws15{word-spacing:7.684672pt;}
.ws26{word-spacing:7.791552pt;}
.wsf0{word-spacing:7.822528pt;}
.wsef{word-spacing:7.852320pt;}
.wsdc{word-spacing:7.989280pt;}
.ws7c{word-spacing:8.163008pt;}
.ws88{word-spacing:8.299232pt;}
.ws9c{word-spacing:8.304576pt;}
.wsd5{word-spacing:8.336640pt;}
.ws48{word-spacing:8.448864pt;}
.ws7b{word-spacing:8.477952pt;}
.ws45{word-spacing:8.490720pt;}
.ws1b2{word-spacing:8.558816pt;}
.ws41{word-spacing:8.614528pt;}
.wsd4{word-spacing:8.619872pt;}
.wse9{word-spacing:8.641248pt;}
.ws33{word-spacing:8.657280pt;}
.wse8{word-spacing:8.662624pt;}
.ws32{word-spacing:8.710720pt;}
.wsfd{word-spacing:8.721408pt;}
.ws13d{word-spacing:8.805664pt;}
.ws2e{word-spacing:8.967232pt;}
.ws147{word-spacing:8.983264pt;}
.wsfc{word-spacing:8.993952pt;}
.ws8e{word-spacing:9.009984pt;}
.ws1a7{word-spacing:9.158912pt;}
.ws23{word-spacing:9.282528pt;}
.ws165{word-spacing:9.375968pt;}
.wseb{word-spacing:9.437504pt;}
.ws164{word-spacing:9.444064pt;}
.ws1a6{word-spacing:9.461088pt;}
.ws163{word-spacing:9.482368pt;}
.wsea{word-spacing:9.571104pt;}
.ws14c{word-spacing:9.587136pt;}
.ws3d{word-spacing:9.619200pt;}
.ws2c{word-spacing:9.624544pt;}
.wsd3{word-spacing:9.688672pt;}
.ws38{word-spacing:9.694016pt;}
.ws195{word-spacing:9.835616pt;}
.ws193{word-spacing:9.861152pt;}
.ws194{word-spacing:9.865408pt;}
.ws171{word-spacing:10.095232pt;}
.ws1ca{word-spacing:10.228416pt;}
.wsee{word-spacing:10.239104pt;}
.ws1bf{word-spacing:10.260480pt;}
.ws1be{word-spacing:10.303232pt;}
.ws5a{word-spacing:10.543712pt;}
.ws65{word-spacing:10.559744pt;}
.ws2d{word-spacing:10.618528pt;}
.ws64{word-spacing:10.629216pt;}
.ws141{word-spacing:10.720864pt;}
.ws36{word-spacing:10.885728pt;}
.ws44{word-spacing:11.048576pt;}
.ws1a4{word-spacing:11.069856pt;}
.ws1a5{word-spacing:11.091136pt;}
.ws6c{word-spacing:11.179648pt;}
.ws18{word-spacing:11.222400pt;}
.ws3e{word-spacing:11.543040pt;}
.ws143{word-spacing:11.548384pt;}
.ws1ad{word-spacing:11.767840pt;}
.ws61{word-spacing:11.831616pt;}
.ws73{word-spacing:11.852992pt;}
.ws1af{word-spacing:12.006176pt;}
.ws1ae{word-spacing:12.052992pt;}
.ws59{word-spacing:12.120192pt;}
.ws173{word-spacing:12.329632pt;}
.ws17a{word-spacing:12.359424pt;}
.ws4b{word-spacing:12.456864pt;}
.ws18e{word-spacing:12.584992pt;}
.wsa4{word-spacing:12.611840pt;}
.ws179{word-spacing:12.648832pt;}
.ws18d{word-spacing:12.661600pt;}
.ws178{word-spacing:13.053152pt;}
.ws1cd{word-spacing:13.450848pt;}
.ws1bd{word-spacing:13.504288pt;}
.wsa7{word-spacing:13.606432pt;}
.ws1ba{word-spacing:13.771488pt;}
.ws1bc{word-spacing:13.776832pt;}
.wsfe{word-spacing:13.782176pt;}
.wsf5{word-spacing:13.912864pt;}
.wsf4{word-spacing:13.921376pt;}
.ws29{word-spacing:14.193664pt;}
.ws9d{word-spacing:14.380704pt;}
.ws63{word-spacing:14.402080pt;}
.ws77{word-spacing:14.434144pt;}
.ws22{word-spacing:14.444832pt;}
.ws78{word-spacing:14.450176pt;}
.ws15e{word-spacing:14.602336pt;}
.ws15d{word-spacing:14.653408pt;}
.ws14d{word-spacing:14.696000pt;}
.ws1a{word-spacing:15.027328pt;}
.wsca{word-spacing:15.048704pt;}
.ws8b{word-spacing:15.401408pt;}
.ws190{word-spacing:15.513120pt;}
.ws70{word-spacing:15.647232pt;}
.ws4a{word-spacing:15.689984pt;}
.ws18f{word-spacing:15.951488pt;}
.wsa1{word-spacing:15.978560pt;}
.ws27{word-spacing:15.994592pt;}
.wsd7{word-spacing:16.336608pt;}
.ws101{word-spacing:16.464864pt;}
.ws180{word-spacing:16.474976pt;}
.ws17e{word-spacing:16.845248pt;}
.ws17f{word-spacing:16.870784pt;}
.ws148{word-spacing:16.940480pt;}
.ws146{word-spacing:17.245088pt;}
.ws14f{word-spacing:17.271808pt;}
.ws68{word-spacing:17.277152pt;}
.ws5d{word-spacing:17.587104pt;}
.wsf9{word-spacing:17.726048pt;}
.ws10a{word-spacing:17.907744pt;}
.ws16{word-spacing:17.939808pt;}
.ws6d{word-spacing:18.570400pt;}
.ws19d{word-spacing:19.075392pt;}
.ws19c{word-spacing:19.977664pt;}
.ws19b{word-spacing:20.352192pt;}
.ws14e{word-spacing:20.478208pt;}
.ws100{word-spacing:20.536992pt;}
.ws144{word-spacing:20.804192pt;}
.wsff{word-spacing:20.857632pt;}
.ws79{word-spacing:21.413408pt;}
.ws1cf{word-spacing:21.541664pt;}
.ws1ce{word-spacing:21.824896pt;}
.ws20{word-spacing:22.092096pt;}
.ws136{word-spacing:22.402048pt;}
.ws56{word-spacing:22.728032pt;}
.wsd2{word-spacing:23.075392pt;}
.ws35{word-spacing:23.080736pt;}
.ws1a0{word-spacing:23.314368pt;}
.wsd1{word-spacing:23.363968pt;}
.wsf3{word-spacing:23.893184pt;}
.wsc9{word-spacing:23.994560pt;}
.ws1b9{word-spacing:24.021280pt;}
.ws1b8{word-spacing:24.031968pt;}
.ws150{word-spacing:24.320544pt;}
.wse1{word-spacing:24.331232pt;}
.ws57{word-spacing:24.341920pt;}
.wsc8{word-spacing:24.373984pt;}
.ws138{word-spacing:24.641184pt;}
.ws1c1{word-spacing:24.913728pt;}
.ws10e{word-spacing:25.110400pt;}
.ws10d{word-spacing:25.442368pt;}
.ws2f{word-spacing:25.651200pt;}
.ws151{word-spacing:25.870304pt;}
.ws37{word-spacing:25.918400pt;}
.ws2a{word-spacing:26.698624pt;}
.ws4c{word-spacing:26.858944pt;}
.ws94{word-spacing:26.917728pt;}
.wsb9{word-spacing:26.999552pt;}
.ws58{word-spacing:27.537632pt;}
.ws95{word-spacing:27.628480pt;}
.wsf6{word-spacing:27.981184pt;}
.ws4d{word-spacing:28.130816pt;}
.ws8c{word-spacing:30.850912pt;}
.ws74{word-spacing:31.647168pt;}
.ws149{word-spacing:31.657856pt;}
.ws89{word-spacing:31.705952pt;}
.ws75{word-spacing:31.818176pt;}
.ws16a{word-spacing:32.464768pt;}
.ws19a{word-spacing:32.558400pt;}
.ws169{word-spacing:32.588192pt;}
.ws1d{word-spacing:32.780096pt;}
.ws3a{word-spacing:33.410688pt;}
.ws177{word-spacing:33.545792pt;}
.wsc0{word-spacing:34.554304pt;}
.ws55{word-spacing:34.880288pt;}
.ws185{word-spacing:35.112000pt;}
.ws30{word-spacing:35.211616pt;}
.ws184{word-spacing:35.367360pt;}
.wsc3{word-spacing:36.296448pt;}
.ws1d3{word-spacing:36.488832pt;}
.ws110{word-spacing:39.027232pt;}
.ws15b{word-spacing:39.689888pt;}
.ws1c9{word-spacing:40.063968pt;}
.ws167{word-spacing:40.580960pt;}
.ws1d2{word-spacing:40.635776pt;}
.ws109{word-spacing:40.956416pt;}
.ws1d1{word-spacing:41.068640pt;}
.ws1c0{word-spacing:41.597696pt;}
.ws71{word-spacing:41.608384pt;}
.wse5{word-spacing:44.440704pt;}
.ws19{word-spacing:45.744640pt;}
.ws1a1{word-spacing:48.454560pt;}
.wse6{word-spacing:49.880896pt;}
.ws145{word-spacing:50.890912pt;}
.ws39{word-spacing:55.358496pt;}
.ws10b{word-spacing:63.358464pt;}
.ws31{word-spacing:66.559520pt;}
.ws122{word-spacing:101.920461pt;}
.ws121{word-spacing:108.688755pt;}
.ws129{word-spacing:146.059200pt;}
.ws12c{word-spacing:146.064000pt;}
.ws12a{word-spacing:157.900800pt;}
.ws12b{word-spacing:157.905600pt;}
.ws12d{word-spacing:188.304000pt;}
.ws119{word-spacing:199.490857pt;}
.ws118{word-spacing:199.495553pt;}
.ws11a{word-spacing:201.402543pt;}
.wse7{word-spacing:249.880096pt;}
.wsb7{word-spacing:300.107336pt;}
.wsb8{word-spacing:416.572080pt;}
.wsae{word-spacing:576.532120pt;}
.wsac{word-spacing:943.108054pt;}
.wsad{word-spacing:992.476150pt;}
._23{margin-left:-401.550847pt;}
._33{margin-left:-263.146362pt;}
._1f{margin-left:-255.253561pt;}
._22{margin-left:-248.213702pt;}
._15{margin-left:-236.907262pt;}
._18{margin-left:-234.133984pt;}
._12{margin-left:-230.201956pt;}
._19{margin-left:-227.680780pt;}
._21{margin-left:-223.254201pt;}
._13{margin-left:-211.613208pt;}
._16{margin-left:-208.052722pt;}
._1a{margin-left:-202.081292pt;}
._34{margin-left:-200.748080pt;}
._e{margin-left:-182.972905pt;}
._37{margin-left:-177.379552pt;}
._36{margin-left:-169.842320pt;}
._11{margin-left:-152.972696pt;}
._2a{margin-left:-150.556989pt;}
._2e{margin-left:-147.303721pt;}
._26{margin-left:-144.797104pt;}
._17{margin-left:-143.249404pt;}
._20{margin-left:-142.237155pt;}
._2f{margin-left:-138.196585pt;}
._31{margin-left:-126.504137pt;}
._14{margin-left:-120.584255pt;}
._d{margin-left:-114.953516pt;}
._28{margin-left:-112.157757pt;}
._1c{margin-left:-109.011153pt;}
._35{margin-left:-104.750480pt;}
._2d{margin-left:-102.504617pt;}
._f{margin-left:-100.752321pt;}
._1b{margin-left:-96.211409pt;}
._32{margin-left:-92.554156pt;}
._27{margin-left:-88.158237pt;}
._2c{margin-left:-85.224962pt;}
._30{margin-left:-81.705033pt;}
._10{margin-left:-80.271840pt;}
._2b{margin-left:-77.865109pt;}
._25{margin-left:-53.278934pt;}
._29{margin-left:-39.892535pt;}
._49{margin-left:-31.036800pt;}
._24{margin-left:-29.227432pt;}
._9{margin-left:-24.785472pt;}
._3c{margin-left:-17.389376pt;}
._b{margin-left:-16.464864pt;}
._44{margin-left:-12.158400pt;}
._45{margin-left:-10.238400pt;}
._c{margin-left:-8.347328pt;}
._39{margin-left:-7.075744pt;}
._3a{margin-left:-6.134016pt;}
._5{margin-left:-4.975040pt;}
._a{margin-left:-3.683264pt;}
._38{margin-left:-2.330464pt;}
._0{margin-left:-0.898016pt;}
._4{width:1.042080pt;}
._1d{width:1.950560pt;}
._4a{width:3.853482pt;}
._47{width:6.081600pt;}
._48{width:7.680000pt;}
._1e{width:9.929152pt;}
._43{width:11.841600pt;}
._42{width:14.078400pt;}
._3b{width:17.697312pt;}
._46{width:19.425888pt;}
._41{width:23.361600pt;}
._4f{width:65.241648pt;}
._52{width:111.961714pt;}
._40{width:113.112000pt;}
._3f{width:114.393600pt;}
._51{width:119.652198pt;}
._4e{width:124.272227pt;}
._3e{width:138.081600pt;}
._50{width:140.569454pt;}
._4d{width:147.395477pt;}
._1{width:154.556640pt;}
._3d{width:160.152000pt;}
._4c{width:205.990810pt;}
._4b{width:207.245533pt;}
._2{width:454.745088pt;}
._6{width:466.585280pt;}
._8{width:1100.124928pt;}
._7{width:1239.977504pt;}
._3{width:1315.816928pt;}
.fs1b{font-size:11.703467pt;}
.fs16{font-size:12.581333pt;}
.fs1c{font-size:14.405333pt;}
.fs17{font-size:15.485333pt;}
.fs19{font-size:19.807467pt;}
.fs14{font-size:21.292267pt;}
.fs12{font-size:21.440000pt;}
.fs22{font-size:23.081067pt;}
.fs1f{font-size:23.222400pt;}
.fs1a{font-size:24.308800pt;}
.fs21{font-size:25.003733pt;}
.fs1e{font-size:25.157333pt;}
.fs15{font-size:26.131200pt;}
.fs1{font-size:26.560000pt;}
.fs20{font-size:26.927467pt;}
.fs1d{font-size:27.092267pt;}
.fse{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs9{font-size:37.332267pt;}
.fs10{font-size:37.520000pt;}
.fsd{font-size:39.455118pt;}
.fs0{font-size:42.560000pt;}
.fs13{font-size:48.000000pt;}
.fsa{font-size:53.332267pt;}
.fs6{font-size:53.440000pt;}
.fs11{font-size:53.600000pt;}
.fsb{font-size:56.365133pt;}
.fs18{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fs3{font-size:77.440000pt;}
.fsc{font-size:79.998933pt;}
.fs8{font-size:84.832533pt;}
.fsf{font-size:84.922667pt;}
.fs2{font-size:96.000000pt;}
.fs23{font-size:128.000000pt;}
.y170{bottom:-3.199600pt;}
.y0{bottom:0.000000pt;}
.y183{bottom:1.040400pt;}
.y12c{bottom:2.880400pt;}
.y129{bottom:4.640400pt;}
.y3{bottom:49.627067pt;}
.y2e{bottom:111.777691pt;}
.y9e{bottom:113.144235pt;}
.y1d0{bottom:121.305179pt;}
.y160{bottom:124.266595pt;}
.y47{bottom:124.343763pt;}
.y2d{bottom:127.378163pt;}
.y9d{bottom:128.744707pt;}
.yd8{bottom:132.746595pt;}
.y74{bottom:136.826123pt;}
.y1cf{bottom:136.905651pt;}
.y8b{bottom:139.143763pt;}
.y15f{bottom:139.867067pt;}
.y46{bottom:139.944235pt;}
.y2c{bottom:142.978635pt;}
.y9c{bottom:144.345179pt;}
.yd7{bottom:148.345784pt;}
.y73{bottom:152.426595pt;}
.y1ce{bottom:152.506123pt;}
.y8a{bottom:154.744235pt;}
.y45{bottom:155.544707pt;}
.y14e{bottom:158.026547pt;}
.y9b{bottom:159.945651pt;}
.yd6{bottom:163.946256pt;}
.y2b{bottom:166.579075pt;}
.y72{bottom:168.026123pt;}
.y1cd{bottom:168.106595pt;}
.y89{bottom:170.344707pt;}
.y14d{bottom:170.587067pt;}
.y15e{bottom:170.987067pt;}
.y44{bottom:171.145179pt;}
.y9a{bottom:175.546123pt;}
.yd5{bottom:179.546728pt;}
.y2a{bottom:182.179547pt;}
.y71{bottom:183.626595pt;}
.y1cc{bottom:183.707067pt;}
.y19b{bottom:185.625651pt;}
.y88{bottom:185.945179pt;}
.y43{bottom:186.745651pt;}
.y14c{bottom:188.827067pt;}
.y15d{bottom:189.227067pt;}
.y99{bottom:191.146595pt;}
.yd4{bottom:195.146123pt;}
.y29{bottom:197.780019pt;}
.y70{bottom:199.225211pt;}
.y19a{bottom:201.226123pt;}
.y87{bottom:201.545651pt;}
.y42{bottom:202.346123pt;}
.y98{bottom:206.747067pt;}
.yd3{bottom:210.746595pt;}
.y28{bottom:213.380491pt;}
.y6f{bottom:214.825683pt;}
.y1cb{bottom:216.267067pt;}
.y199{bottom:216.826595pt;}
.y86{bottom:217.146123pt;}
.y41{bottom:217.946595pt;}
.yd2{bottom:226.346123pt;}
.y27{bottom:228.980963pt;}
.y97{bottom:230.747200pt;}
.y198{bottom:232.427067pt;}
.y85{bottom:232.746595pt;}
.y40{bottom:233.547067pt;}
.y6e{bottom:238.426123pt;}
.y233{bottom:241.781779pt;}
.yd1{bottom:241.946595pt;}
.y26{bottom:244.581435pt;}
.y84{bottom:248.347067pt;}
.y96{bottom:249.467200pt;}
.y6d{bottom:254.026595pt;}
.yd0{bottom:257.547491pt;}
.y3f{bottom:258.107067pt;}
.y25{bottom:260.181907pt;}
.yb1{bottom:262.347067pt;}
.y197{bottom:263.546547pt;}
.y204{bottom:268.109056pt;}
.y95{bottom:268.187200pt;}
.y6c{bottom:269.627067pt;}
.y83{bottom:272.347067pt;}
.y24{bottom:275.782379pt;}
.y196{bottom:276.107067pt;}
.y1ca{bottom:277.140931pt;}
.y203{bottom:280.108848pt;}
.yc6{bottom:282.987067pt;}
.ycb{bottom:286.347067pt;}
.y82{bottom:291.067067pt;}
.y23{bottom:291.382851pt;}
.y202{bottom:292.108640pt;}
.y1c9{bottom:292.741403pt;}
.yc9{bottom:293.466234pt;}
.y6b{bottom:293.627067pt;}
.y195{bottom:294.347067pt;}
.y18d{bottom:296.427067pt;}
.yc4{bottom:296.745467pt;}
.ycd{bottom:296.746859pt;}
.ycf{bottom:296.747067pt;}
.yc5{bottom:296.907067pt;}
.y232{bottom:296.981291pt;}
.y182{bottom:301.306667pt;}
.yc7{bottom:302.187051pt;}
.yc8{bottom:302.346647pt;}
.y181{bottom:302.347067pt;}
.y201{bottom:304.108432pt;}
.yce{bottom:305.226689pt;}
.yca{bottom:305.546683pt;}
.ycc{bottom:305.626681pt;}
.y184{bottom:305.707067pt;}
.y18f{bottom:306.347067pt;}
.y1c8{bottom:308.341875pt;}
.y135{bottom:310.266547pt;}
.y94{bottom:310.505312pt;}
.y231{bottom:312.581763pt;}
.y22{bottom:314.983291pt;}
.y3e{bottom:318.506547pt;}
.y200{bottom:319.468336pt;}
.y134{bottom:322.827067pt;}
.y1c7{bottom:323.942347pt;}
.y93{bottom:326.105784pt;}
.y185{bottom:326.667200pt;}
.y230{bottom:328.182235pt;}
.y21{bottom:330.583763pt;}
.y3d{bottom:331.067067pt;}
.y1ff{bottom:331.468128pt;}
.yc3{bottom:333.146123pt;}
.y6a{bottom:335.946256pt;}
.y1c6{bottom:339.542819pt;}
.y81{bottom:340.906547pt;}
.y133{bottom:341.067067pt;}
.y92{bottom:341.706256pt;}
.y1fe{bottom:343.467920pt;}
.y22f{bottom:343.782707pt;}
.y20{bottom:346.184235pt;}
.y186{bottom:347.387067pt;}
.yc2{bottom:348.746595pt;}
.y69{bottom:351.546728pt;}
.y3c{bottom:352.347067pt;}
.y15c{bottom:353.147611pt;}
.y80{bottom:353.467067pt;}
.y1c5{bottom:355.143291pt;}
.y91{bottom:357.306728pt;}
.y1fd{bottom:358.827824pt;}
.y22e{bottom:359.383179pt;}
.y1f{bottom:361.784707pt;}
.yc1{bottom:364.345344pt;}
.y15b{bottom:365.707067pt;}
.y68{bottom:367.147200pt;}
.y187{bottom:368.107200pt;}
.y1c4{bottom:370.743763pt;}
.y1fc{bottom:370.827616pt;}
.y7f{bottom:371.707067pt;}
.y90{bottom:372.907200pt;}
.y22d{bottom:374.983651pt;}
.y18e{bottom:375.467067pt;}
.y1e{bottom:377.385179pt;}
.y1fb{bottom:382.827408pt;}
.y15a{bottom:383.947067pt;}
.y1c3{bottom:386.344235pt;}
.yc0{bottom:387.945784pt;}
.y188{bottom:388.827200pt;}
.y22c{bottom:390.584123pt;}
.y67{bottom:391.707067pt;}
.y1d{bottom:392.985651pt;}
.y1fa{bottom:394.834171pt;}
.y1c2{bottom:401.944707pt;}
.ybf{bottom:403.546256pt;}
.y8f{bottom:404.027611pt;}
.y22b{bottom:406.184595pt;}
.y1c{bottom:408.586123pt;}
.y189{bottom:409.547067pt;}
.y1f9{bottom:410.194075pt;}
.y14b{bottom:414.663355pt;}
.y8e{bottom:416.587067pt;}
.y1c1{bottom:417.545179pt;}
.ybe{bottom:419.146728pt;}
.y1f8{bottom:422.193867pt;}
.y1b{bottom:424.186595pt;}
.y22a{bottom:430.024179pt;}
.y18a{bottom:430.187200pt;}
.y14a{bottom:430.263827pt;}
.yb0{bottom:430.906547pt;}
.y1c0{bottom:433.145651pt;}
.y1f7{bottom:434.193659pt;}
.ybd{bottom:434.747200pt;}
.y8d{bottom:434.827200pt;}
.y1a{bottom:439.787067pt;}
.yaf{bottom:443.467067pt;}
.y66{bottom:444.579643pt;}
.y229{bottom:445.624651pt;}
.y149{bottom:445.864299pt;}
.y1bf{bottom:448.746123pt;}
.y1f6{bottom:449.553563pt;}
.y18b{bottom:450.907200pt;}
.y194{bottom:455.547067pt;}
.y193{bottom:457.707067pt;}
.ybc{bottom:459.306579pt;}
.y65{bottom:460.180115pt;}
.y228{bottom:461.225123pt;}
.y148{bottom:461.464771pt;}
.y1f5{bottom:461.553355pt;}
.yae{bottom:461.707067pt;}
.y192{bottom:463.947200pt;}
.y1be{bottom:464.346595pt;}
.y19{bottom:464.347067pt;}
.y191{bottom:466.027200pt;}
.y18c{bottom:471.627067pt;}
.y190{bottom:472.504109pt;}
.y3b{bottom:472.506547pt;}
.y1f4{bottom:473.553147pt;}
.y64{bottom:475.780587pt;}
.y227{bottom:476.825595pt;}
.y147{bottom:477.065243pt;}
.y1bd{bottom:479.947067pt;}
.ybb{bottom:481.147067pt;}
.y3a{bottom:485.067067pt;}
.y1f3{bottom:485.552939pt;}
.y63{bottom:491.381059pt;}
.y16f{bottom:491.786667pt;}
.y180{bottom:491.787067pt;}
.y171{bottom:492.187067pt;}
.y226{bottom:492.426067pt;}
.y17b{bottom:492.987067pt;}
.y1f2{bottom:497.552731pt;}
.y146{bottom:500.665683pt;}
.y39{bottom:503.307067pt;}
.y1bc{bottom:504.507067pt;}
.y62{bottom:506.981531pt;}
.y225{bottom:508.026539pt;}
.y1f1{bottom:512.912635pt;}
.y172{bottom:514.187067pt;}
.y145{bottom:516.266155pt;}
.y18{bottom:517.066435pt;}
.y61{bottom:522.582003pt;}
.y224{bottom:523.627011pt;}
.y1f0{bottom:524.912427pt;}
.y144{bottom:531.866627pt;}
.y17{bottom:532.747067pt;}
.y173{bottom:536.187067pt;}
.y1ef{bottom:536.912219pt;}
.y60{bottom:538.182475pt;}
.yba{bottom:541.547067pt;}
.y223{bottom:547.466595pt;}
.y1ee{bottom:548.912011pt;}
.y5f{bottom:553.782947pt;}
.y143{bottom:555.467067pt;}
.y16{bottom:557.387067pt;}
.y132{bottom:557.786595pt;}
.y174{bottom:558.267067pt;}
.yb9{bottom:559.787067pt;}
.y222{bottom:563.063291pt;}
.y1ed{bottom:564.271915pt;}
.y1bb{bottom:564.906547pt;}
.y17a{bottom:566.907067pt;}
.y7e{bottom:571.625651pt;}
.y131{bottom:573.386595pt;}
.y1ec{bottom:576.271707pt;}
.y5e{bottom:577.383387pt;}
.y1ba{bottom:577.467067pt;}
.y221{bottom:578.663763pt;}
.y142{bottom:579.947067pt;}
.y175{bottom:580.027067pt;}
.y7d{bottom:587.226123pt;}
.y1eb{bottom:588.271499pt;}
.y130{bottom:588.986595pt;}
.y5d{bottom:592.983859pt;}
.y220{bottom:594.264235pt;}
.y1b9{bottom:595.707067pt;}
.y1ea{bottom:600.271291pt;}
.y1b6{bottom:601.547966pt;}
.y176{bottom:602.027067pt;}
.y7c{bottom:602.826595pt;}
.y141{bottom:604.426595pt;}
.y12f{bottom:604.586595pt;}
.y21f{bottom:609.864707pt;}
.y1b5{bottom:609.947989pt;}
.y15{bottom:610.261507pt;}
.y1e9{bottom:615.631195pt;}
.y5c{bottom:617.463387pt;}
.y38{bottom:618.093635pt;}
.y7b{bottom:618.427067pt;}
.y1aa{bottom:619.627067pt;}
.y140{bottom:620.027067pt;}
.y12e{bottom:620.187395pt;}
.y159{bottom:621.625651pt;}
.y177{bottom:624.027067pt;}
.y21e{bottom:625.465179pt;}
.y14{bottom:625.861979pt;}
.y1e8{bottom:627.630987pt;}
.yad{bottom:628.026547pt;}
.y5b{bottom:633.063859pt;}
.y37{bottom:633.694107pt;}
.y1ab{bottom:634.507185pt;}
.y158{bottom:637.226123pt;}
.y1e7{bottom:639.630779pt;}
.yac{bottom:640.587067pt;}
.y21d{bottom:641.065651pt;}
.y13{bottom:641.462451pt;}
.y7a{bottom:642.427067pt;}
.y128{bottom:644.346667pt;}
.y13f{bottom:644.506595pt;}
.y12a{bottom:645.467067pt;}
.y12b{bottom:645.866667pt;}
.y178{bottom:646.107067pt;}
.y12d{bottom:648.747067pt;}
.y127{bottom:648.747355pt;}
.y36{bottom:649.294579pt;}
.y1ac{bottom:649.387303pt;}
.y17f{bottom:651.147067pt;}
.y1e6{bottom:651.630571pt;}
.y157{bottom:652.826595pt;}
.y17e{bottom:653.547067pt;}
.y21c{bottom:656.666123pt;}
.y12{bottom:657.062923pt;}
.y5a{bottom:657.543387pt;}
.yab{bottom:658.827067pt;}
.y13e{bottom:660.107067pt;}
.y17d{bottom:662.507067pt;}
.y1ad{bottom:664.347530pt;}
.y35{bottom:664.895051pt;}
.y1e5{bottom:666.990475pt;}
.y179{bottom:667.867067pt;}
.y156{bottom:668.425651pt;}
.y17c{bottom:668.909963pt;}
.y21b{bottom:672.266595pt;}
.y11{bottom:672.663395pt;}
.y111{bottom:672.907067pt;}
.y1b7{bottom:676.107067pt;}
.y117{bottom:678.507067pt;}
.y10f{bottom:678.507275pt;}
.y1e4{bottom:678.990267pt;}
.y1ae{bottom:679.227648pt;}
.y34{bottom:680.495523pt;}
.y59{bottom:682.022915pt;}
.y155{bottom:684.026123pt;}
.y105{bottom:684.107067pt;}
.y13d{bottom:684.586595pt;}
.y21a{bottom:687.867067pt;}
.y10{bottom:688.263867pt;}
.y11f{bottom:688.905525pt;}
.y119{bottom:688.906859pt;}
.y107{bottom:688.907067pt;}
.y1e3{bottom:690.990059pt;}
.y8c{bottom:691.627067pt;}
.y79{bottom:692.266547pt;}
.y16e{bottom:692.587067pt;}
.y1af{bottom:693.627784pt;}
.y122{bottom:694.347067pt;}
.y112{bottom:694.906971pt;}
.y33{bottom:696.095995pt;}
.y123{bottom:696.667067pt;}
.y120{bottom:697.385356pt;}
.y118{bottom:697.386689pt;}
.y108{bottom:697.386897pt;}
.y154{bottom:699.626595pt;}
.y121{bottom:700.025303pt;}
.y11a{bottom:700.026636pt;}
.y13c{bottom:700.187067pt;}
.y1e2{bottom:702.989851pt;}
.yf{bottom:703.864339pt;}
.y10d{bottom:704.587067pt;}
.y78{bottom:704.827067pt;}
.y58{bottom:705.623355pt;}
.y113{bottom:706.027320pt;}
.y1b0{bottom:708.588011pt;}
.y219{bottom:712.667067pt;}
.y1e1{bottom:714.989643pt;}
.y153{bottom:715.227067pt;}
.y16d{bottom:715.307067pt;}
.y10b{bottom:715.467067pt;}
.ye{bottom:719.464811pt;}
.y32{bottom:719.696435pt;}
.y126{bottom:720.747067pt;}
.y104{bottom:720.747531pt;}
.y77{bottom:723.067067pt;}
.y1b1{bottom:723.468130pt;}
.y13b{bottom:724.667067pt;}
.y1e0{bottom:726.989435pt;}
.y114{bottom:729.387053pt;}
.y57{bottom:730.102883pt;}
.y11b{bottom:734.985937pt;}
.y110{bottom:734.987478pt;}
.yd{bottom:735.065283pt;}
.y31{bottom:735.296907pt;}
.y16c{bottom:738.027067pt;}
.y1b2{bottom:738.348248pt;}
.y152{bottom:739.787067pt;}
.y106{bottom:740.586314pt;}
.y125{bottom:742.026704pt;}
.y116{bottom:742.026825pt;}
.y1df{bottom:742.349339pt;}
.y11d{bottom:745.385729pt;}
.y109{bottom:745.387270pt;}
.y13a{bottom:749.147200pt;}
.yc{bottom:750.665755pt;}
.y30{bottom:750.897379pt;}
.yb8{bottom:751.545651pt;}
.y124{bottom:752.426540pt;}
.y115{bottom:752.426661pt;}
.y1b3{bottom:753.308475pt;}
.y11c{bottom:753.785561pt;}
.y10a{bottom:753.787102pt;}
.y1de{bottom:754.349131pt;}
.y56{bottom:754.582411pt;}
.y11e{bottom:755.705523pt;}
.y16b{bottom:760.747067pt;}
.y10e{bottom:760.986789pt;}
.y1b8{bottom:761.787067pt;}
.yb{bottom:766.266227pt;}
.y1dd{bottom:766.348923pt;}
.y2f{bottom:766.497851pt;}
.yb7{bottom:767.146123pt;}
.y1b4{bottom:768.188593pt;}
.y10c{bottom:768.267025pt;}
.y218{bottom:768.272048pt;}
.y1dc{bottom:778.348715pt;}
.y55{bottom:779.061939pt;}
.y139{bottom:780.267091pt;}
.y217{bottom:780.271840pt;}
.ya{bottom:782.105843pt;}
.yb6{bottom:782.746595pt;}
.y16a{bottom:783.467067pt;}
.yeb{bottom:788.907067pt;}
.y1db{bottom:790.348507pt;}
.y216{bottom:792.271632pt;}
.y138{bottom:792.827611pt;}
.yf1{bottom:794.507067pt;}
.ye9{bottom:794.507275pt;}
.yb5{bottom:798.347067pt;}
.ydf{bottom:800.107067pt;}
.y151{bottom:800.186547pt;}
.y1da{bottom:802.348299pt;}
.y54{bottom:803.541467pt;}
.y215{bottom:804.271424pt;}
.yf9{bottom:804.905525pt;}
.yf3{bottom:804.906859pt;}
.ye1{bottom:804.907067pt;}
.y1a9{bottom:805.066547pt;}
.y137{bottom:805.387067pt;}
.y169{bottom:806.187067pt;}
.yff{bottom:810.347067pt;}
.yec{bottom:810.906971pt;}
.y100{bottom:812.667067pt;}
.y150{bottom:812.747067pt;}
.yfa{bottom:813.385356pt;}
.yf2{bottom:813.386689pt;}
.ye2{bottom:813.386897pt;}
.yfb{bottom:816.025303pt;}
.yf4{bottom:816.026636pt;}
.y1a8{bottom:817.627067pt;}
.y1d9{bottom:817.708203pt;}
.y214{bottom:819.631328pt;}
.ye7{bottom:820.587067pt;}
.yed{bottom:822.027320pt;}
.y136{bottom:823.627067pt;}
.y53{bottom:827.141907pt;}
.y168{bottom:828.907067pt;}
.yb4{bottom:829.466547pt;}
.y9{bottom:829.706187pt;}
.y1d8{bottom:829.707995pt;}
.y14f{bottom:830.987067pt;}
.ye5{bottom:831.467067pt;}
.y213{bottom:831.631120pt;}
.yaa{bottom:835.145179pt;}
.y1a7{bottom:835.867067pt;}
.yde{bottom:836.746539pt;}
.y103{bottom:836.747067pt;}
.y1d7{bottom:841.707787pt;}
.y1a4{bottom:841.786965pt;}
.yb3{bottom:842.027067pt;}
.y52{bottom:842.742379pt;}
.y212{bottom:843.630912pt;}
.yee{bottom:845.387053pt;}
.y1a3{bottom:850.107000pt;}
.ya9{bottom:850.745651pt;}
.yf5{bottom:850.985937pt;}
.yea{bottom:850.987478pt;}
.y167{bottom:851.627067pt;}
.y1d6{bottom:853.707579pt;}
.y211{bottom:855.630704pt;}
.ye0{bottom:856.586314pt;}
.y102{bottom:858.026704pt;}
.yf0{bottom:858.026825pt;}
.y51{bottom:858.342851pt;}
.y19c{bottom:859.787067pt;}
.yb2{bottom:860.267067pt;}
.y8{bottom:861.306595pt;}
.yfc{bottom:861.384396pt;}
.yf7{bottom:861.385729pt;}
.ye3{bottom:861.387270pt;}
.ya8{bottom:866.346123pt;}
.y210{bottom:867.630496pt;}
.y101{bottom:868.426540pt;}
.yef{bottom:868.426661pt;}
.y1d5{bottom:869.067483pt;}
.yfd{bottom:869.784228pt;}
.yf6{bottom:869.785561pt;}
.ye4{bottom:869.787102pt;}
.yfe{bottom:871.704189pt;}
.yf8{bottom:871.705523pt;}
.y50{bottom:873.943323pt;}
.y166{bottom:874.347067pt;}
.ye8{bottom:876.986789pt;}
.y1d4{bottom:881.067275pt;}
.ya7{bottom:881.946595pt;}
.y7{bottom:882.907067pt;}
.y20f{bottom:882.990400pt;}
.ye6{bottom:884.267025pt;}
.y19d{bottom:884.426806pt;}
.y4f{bottom:889.543795pt;}
.y1d3{bottom:893.067067pt;}
.y20e{bottom:894.990192pt;}
.y165{bottom:897.067067pt;}
.ya6{bottom:897.540563pt;}
.y4e{bottom:905.144267pt;}
.ydd{bottom:905.146123pt;}
.y20d{bottom:906.989984pt;}
.y6{bottom:909.067067pt;}
.y19e{bottom:909.626678pt;}
.ya5{bottom:913.141035pt;}
.y1d2{bottom:914.667067pt;}
.y20c{bottom:918.989776pt;}
.y164{bottom:919.547867pt;}
.y4d{bottom:920.744739pt;}
.ydc{bottom:920.746595pt;}
.y1a5{bottom:928.347067pt;}
.ya4{bottom:928.741507pt;}
.y163{bottom:933.627467pt;}
.y19f{bottom:934.266417pt;}
.y20b{bottom:934.349680pt;}
.y4c{bottom:936.345211pt;}
.ydb{bottom:936.346123pt;}
.ya3{bottom:944.341979pt;}
.y20a{bottom:946.349472pt;}
.y162{bottom:947.707067pt;}
.y4b{bottom:951.945683pt;}
.yda{bottom:951.946595pt;}
.y5{bottom:953.307067pt;}
.y209{bottom:958.349264pt;}
.y1a0{bottom:958.986078pt;}
.ya2{bottom:959.942451pt;}
.y4a{bottom:967.546155pt;}
.y161{bottom:969.867067pt;}
.y208{bottom:970.349056pt;}
.ya1{bottom:975.542923pt;}
.y1d1{bottom:975.546123pt;}
.y4{bottom:980.907067pt;}
.y1a1{bottom:984.106028pt;}
.y207{bottom:985.708960pt;}
.ya0{bottom:991.143395pt;}
.y76{bottom:991.146019pt;}
.y49{bottom:991.146595pt;}
.y206{bottom:997.708752pt;}
.y1a6{bottom:1000.507067pt;}
.y9f{bottom:1006.743867pt;}
.y75{bottom:1006.746491pt;}
.y48{bottom:1006.747067pt;}
.yd9{bottom:1006.747107pt;}
.y1a2{bottom:1008.825689pt;}
.y205{bottom:1009.708544pt;}
.y2{bottom:1048.987067pt;}
.y1{bottom:1057.547067pt;}
.h2e{height:1.600000pt;}
.h35{height:5.520000pt;}
.h37{height:12.206350pt;}
.h31{height:13.121937pt;}
.h38{height:15.024312pt;}
.h32{height:16.150719pt;}
.h27{height:16.320000pt;}
.h24{height:17.840000pt;}
.h34{height:20.658569pt;}
.h2f{height:22.207169pt;}
.h23{height:22.218750pt;}
.h3e{height:24.072831pt;}
.h3b{height:24.220237pt;}
.h36{height:25.353319pt;}
.h16{height:25.921134pt;}
.h3d{height:26.078112pt;}
.h3a{height:26.238312pt;}
.h30{height:27.254025pt;}
.h2{height:27.701250pt;}
.h3c{height:28.084506pt;}
.h39{height:28.256388pt;}
.h3f{height:29.550937pt;}
.h5{height:33.918750pt;}
.h20{height:33.959967pt;}
.h21{height:35.891057pt;}
.h22{height:36.639578pt;}
.h17{height:37.030509pt;}
.h8{height:37.105312pt;}
.h33{height:40.660312pt;}
.hc{height:41.770312pt;}
.h11{height:41.772393pt;}
.h41{height:42.892500pt;}
.h1{height:44.388750pt;}
.h2d{height:47.109375pt;}
.h2b{height:48.375000pt;}
.h1f{height:48.514655pt;}
.h28{height:48.758203pt;}
.h1a{height:51.273556pt;}
.h19{height:52.342703pt;}
.ha{height:52.422344pt;}
.h6{height:52.448437pt;}
.h29{height:52.450325pt;}
.h1d{height:52.452086pt;}
.h10{height:52.452213pt;}
.h1b{height:52.452747pt;}
.h1c{height:52.453568pt;}
.h2a{height:52.454102pt;}
.h14{height:52.455328pt;}
.hf{height:52.455862pt;}
.h42{height:52.463542pt;}
.h13{height:52.474453pt;}
.h7{height:53.857500pt;}
.hd{height:55.736250pt;}
.h26{height:61.878203pt;}
.h12{height:64.500000pt;}
.he{height:66.750000pt;}
.h4{height:71.210312pt;}
.h1e{height:72.772467pt;}
.h9{height:75.142500pt;}
.h15{height:77.169438pt;}
.h25{height:77.251430pt;}
.hb{height:77.763750pt;}
.h3{height:96.750000pt;}
.h18{height:100.341743pt;}
.h2c{height:104.693400pt;}
.h40{height:125.597117pt;}
.h0{height:1122.666667pt;}
.w5{width:1.920000pt;}
.w3{width:3.360000pt;}
.w2{width:4.400000pt;}
.w8{width:5.040000pt;}
.w9{width:5.600000pt;}
.w7{width:6.560000pt;}
.w4{width:7.360000pt;}
.w6{width:8.480000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x7f{left:4.640000pt;}
.x1{left:75.600000pt;}
.x7a{left:79.600000pt;}
.x7b{left:80.720000pt;}
.x4{left:84.560000pt;}
.x72{left:86.000000pt;}
.xd{left:86.960008pt;}
.x6a{left:89.680400pt;}
.x70{left:92.720000pt;}
.x71{left:95.680000pt;}
.x89{left:99.599584pt;}
.x69{left:101.360000pt;}
.xc{left:103.920528pt;}
.x6{left:113.440000pt;}
.x73{left:125.760000pt;}
.x1f{left:132.480000pt;}
.x1e{left:134.159036pt;}
.x6b{left:153.441200pt;}
.x74{left:169.680000pt;}
.x17{left:170.960000pt;}
.x2{left:197.359200pt;}
.x75{left:211.760000pt;}
.x6c{left:218.642000pt;}
.x3{left:229.600000pt;}
.x80{left:233.600000pt;}
.x76{left:255.680000pt;}
.x1d{left:269.120337pt;}
.x6d{left:280.642400pt;}
.x77{left:297.760000pt;}
.x1b{left:299.599765pt;}
.x1c{left:319.840656pt;}
.x1a{left:328.159883pt;}
.x5{left:334.080088pt;}
.x78{left:341.680000pt;}
.x6f{left:344.642000pt;}
.x6e{left:351.602000pt;}
.x15{left:353.520000pt;}
.x18{left:356.720000pt;}
.x7c{left:358.720000pt;}
.x19{left:360.319764pt;}
.x7e{left:362.400000pt;}
.x7d{left:364.000000pt;}
.x16{left:365.200000pt;}
.x20{left:374.560000pt;}
.x11{left:380.080000pt;}
.x79{left:383.920000pt;}
.x10{left:387.840000pt;}
.x66{left:389.840000pt;}
.x7{left:408.239952pt;}
.x84{left:419.760000pt;}
.x83{left:422.160291pt;}
.x87{left:423.120320pt;}
.x82{left:425.999987pt;}
.x86{left:427.120000pt;}
.x81{left:429.920000pt;}
.x8a{left:432.240328pt;}
.x88{left:434.160585pt;}
.x8{left:436.560480pt;}
.xa{left:446.080096pt;}
.x43{left:450.806485pt;}
.x60{left:452.086379pt;}
.x44{left:456.000000pt;}
.x61{left:457.760000pt;}
.x55{left:465.202117pt;}
.x34{left:466.482171pt;}
.x2b{left:468.560735pt;}
.x35{left:469.682107pt;}
.x30{left:470.638573pt;}
.x53{left:471.919891pt;}
.x3e{left:473.604695pt;}
.x52{left:474.719811pt;}
.x28{left:477.040000pt;}
.x2f{left:478.720075pt;}
.x46{left:491.040000pt;}
.x21{left:494.960000pt;}
.x39{left:514.323881pt;}
.x51{left:515.359717pt;}
.x2d{left:516.400780pt;}
.x50{left:517.840670pt;}
.x2e{left:519.279717pt;}
.x59{left:521.763652pt;}
.x3a{left:522.963708pt;}
.x5f{left:525.766239pt;}
.x42{left:526.966295pt;}
.x4d{left:528.719878pt;}
.x29{left:529.919289pt;}
.x45{left:531.199318pt;}
.x5b{left:534.884723pt;}
.x3d{left:538.804725pt;}
.x33{left:543.360634pt;}
.x47{left:546.159265pt;}
.x22{left:547.359301pt;}
.x24{left:549.759740pt;}
.x63{left:551.840000pt;}
.x49{left:559.279468pt;}
.xb{left:563.200000pt;}
.x54{left:571.040000pt;}
.x31{left:575.040000pt;}
.x5e{left:581.926449pt;}
.x41{left:583.126505pt;}
.x58{left:586.482358pt;}
.x38{left:587.682414pt;}
.x3c{left:591.123678pt;}
.x4c{left:592.880130pt;}
.x27{left:594.080187pt;}
.x32{left:595.679587pt;}
.x48{left:599.360000pt;}
.x23{left:603.440000pt;}
.x4b{left:606.319861pt;}
.x26{left:607.439920pt;}
.x4e{left:611.440000pt;}
.x2a{left:615.520000pt;}
.x56{left:618.081726pt;}
.x36{left:619.361780pt;}
.x5a{left:620.563010pt;}
.x3b{left:624.643008pt;}
.x64{left:629.840000pt;}
.x5d{left:634.165404pt;}
.x40{left:635.445459pt;}
.x57{left:638.721313pt;}
.x37{left:640.001367pt;}
.x4f{left:658.560060pt;}
.x2c{left:659.840116pt;}
.x5c{left:667.684734pt;}
.x3f{left:668.964788pt;}
.x4a{left:674.718493pt;}
.x25{left:675.998549pt;}
.x62{left:685.200000pt;}
.x9{left:686.720000pt;}
.x14{left:688.320000pt;}
.x67{left:694.960000pt;}
.x13{left:696.720000pt;}
.x12{left:697.759867pt;}
.x85{left:716.320000pt;}
.x68{left:718.239867pt;}
.x65{left:720.559867pt;}
.xe{left:722.320000pt;}
.xf{left:725.120000pt;}
}




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