
    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_374ffa142218597c5373397f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7d80d6ce28d9b6e699216512.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ea6e26982435e36eee68c232.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_899f96bd677b391d97b4b4b0.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_0c8c84a338f4f8034c5c0b9f.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_be1eb23cc81bcb9e118bec04.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_29d716445a9714b51ec2cc66.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_08aae86041a2a2f3e105b9ed.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3ba22d7fa9cfe2710a1f001e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.vf{vertical-align:-92.879968px;}
.v2{vertical-align:-72.000000px;}
.ve{vertical-align:-61.919979px;}
.vc{vertical-align:-42.839196px;}
.vb{vertical-align:-36.721155px;}
.v6{vertical-align:-30.961836px;}
.v3{vertical-align:-20.880000px;}
.vd{vertical-align:-12.238998px;}
.va{vertical-align:-6.119499px;}
.v5{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:6.121545px;}
.v1{vertical-align:24.120000px;}
.v4{vertical-align:29.878344px;}
.v9{vertical-align:55.799070px;}
.v7{vertical-align:61.918714px;}
.ls76{letter-spacing:-6.440613px;}
.ls8b{letter-spacing:-6.186413px;}
.ls57{letter-spacing:-5.674366px;}
.ls61{letter-spacing:-5.567331px;}
.ls85{letter-spacing:-5.533403px;}
.ls70{letter-spacing:-5.366456px;}
.ls5a{letter-spacing:-5.039079px;}
.ls75{letter-spacing:-4.049747px;}
.ls42{letter-spacing:-3.093705px;}
.ls41{letter-spacing:-2.731781px;}
.ls6e{letter-spacing:-2.660001px;}
.ls68{letter-spacing:-2.507639px;}
.ls45{letter-spacing:-2.469014px;}
.ls77{letter-spacing:-2.182965px;}
.ls44{letter-spacing:-2.107091px;}
.ls7f{letter-spacing:-2.091793px;}
.ls88{letter-spacing:-1.744225px;}
.ls8c{letter-spacing:-1.735632px;}
.ls6b{letter-spacing:-1.560126px;}
.ls46{letter-spacing:-1.531979px;}
.ls63{letter-spacing:-1.441311px;}
.ls84{letter-spacing:-0.757514px;}
.ls80{letter-spacing:-0.482059px;}
.ls66{letter-spacing:-0.468964px;}
.ls89{letter-spacing:-0.425316px;}
.ls74{letter-spacing:-0.320515px;}
.ls1a{letter-spacing:-0.318636px;}
.ls6d{letter-spacing:-0.250657px;}
.ls8e{letter-spacing:-0.240480px;}
.ls94{letter-spacing:-0.204408px;}
.ls29{letter-spacing:-0.186372px;}
.ls2a{letter-spacing:-0.144288px;}
.ls81{letter-spacing:-0.124819px;}
.ls12{letter-spacing:-0.114228px;}
.ls34{letter-spacing:-0.113400px;}
.ls64{letter-spacing:-0.111863px;}
.ls15{letter-spacing:-0.107568px;}
.ls38{letter-spacing:-0.102600px;}
.ls95{letter-spacing:-0.102204px;}
.ls37{letter-spacing:-0.097200px;}
.ls3d{letter-spacing:-0.091800px;}
.ls92{letter-spacing:-0.090180px;}
.ls35{letter-spacing:-0.086400px;}
.ls1b{letter-spacing:-0.084168px;}
.ls3c{letter-spacing:-0.081000px;}
.ls3e{letter-spacing:-0.078156px;}
.ls31{letter-spacing:-0.075600px;}
.ls1c{letter-spacing:-0.072144px;}
.ls3b{letter-spacing:-0.070200px;}
.ls21{letter-spacing:-0.067500px;}
.ls96{letter-spacing:-0.066132px;}
.ls32{letter-spacing:-0.064800px;}
.ls93{letter-spacing:-0.060120px;}
.ls60{letter-spacing:-0.059400px;}
.ls1d{letter-spacing:-0.054108px;}
.ls4f{letter-spacing:-0.048600px;}
.ls91{letter-spacing:-0.048096px;}
.ls40{letter-spacing:-0.043200px;}
.ls22{letter-spacing:-0.042120px;}
.ls90{letter-spacing:-0.042084px;}
.ls14{letter-spacing:-0.038304px;}
.ls36{letter-spacing:-0.037800px;}
.ls18{letter-spacing:-0.036072px;}
.ls39{letter-spacing:-0.032400px;}
.ls13{letter-spacing:-0.030060px;}
.ls3a{letter-spacing:-0.027000px;}
.ls28{letter-spacing:-0.024048px;}
.ls33{letter-spacing:-0.021600px;}
.ls19{letter-spacing:-0.018036px;}
.ls20{letter-spacing:-0.012636px;}
.ls25{letter-spacing:-0.012024px;}
.ls1f{letter-spacing:-0.008424px;}
.ls17{letter-spacing:-0.006012px;}
.ls16{letter-spacing:-0.004788px;}
.ls1e{letter-spacing:-0.004212px;}
.ls97{letter-spacing:-0.003888px;}
.ls11{letter-spacing:0.000000px;}
.ls2c{letter-spacing:0.005400px;}
.lsb{letter-spacing:0.006012px;}
.lse{letter-spacing:0.008424px;}
.ls5{letter-spacing:0.012024px;}
.ls23{letter-spacing:0.016200px;}
.ls10{letter-spacing:0.016848px;}
.ls7{letter-spacing:0.018036px;}
.ls2d{letter-spacing:0.021600px;}
.lsc{letter-spacing:0.024048px;}
.lsf{letter-spacing:0.025272px;}
.ls2f{letter-spacing:0.027000px;}
.ls8{letter-spacing:0.030060px;}
.ls0{letter-spacing:0.032400px;}
.ls3{letter-spacing:0.036072px;}
.ls6{letter-spacing:0.042084px;}
.ls24{letter-spacing:0.048096px;}
.ls2b{letter-spacing:0.048600px;}
.lsa{letter-spacing:0.054108px;}
.ls9{letter-spacing:0.060120px;}
.ls1{letter-spacing:0.062244px;}
.ls26{letter-spacing:0.066132px;}
.ls2{letter-spacing:0.071820px;}
.ls27{letter-spacing:0.072144px;}
.ls2e{letter-spacing:0.075600px;}
.ls30{letter-spacing:0.084168px;}
.ls7a{letter-spacing:0.090180px;}
.ls5d{letter-spacing:0.096192px;}
.ls8f{letter-spacing:0.114228px;}
.ls82{letter-spacing:0.279767px;}
.ls65{letter-spacing:0.288262px;}
.ls71{letter-spacing:0.298858px;}
.ls6c{letter-spacing:0.302518px;}
.ls8a{letter-spacing:0.305025px;}
.ls4b{letter-spacing:0.320137px;}
.ls4d{letter-spacing:0.341413px;}
.ls6a{letter-spacing:0.346502px;}
.ls55{letter-spacing:0.354747px;}
.ls79{letter-spacing:0.361350px;}
.ls78{letter-spacing:0.389815px;}
.ls4e{letter-spacing:0.393273px;}
.ls48{letter-spacing:0.419639px;}
.ls69{letter-spacing:0.433128px;}
.ls58{letter-spacing:0.445133px;}
.ls51{letter-spacing:0.449923px;}
.ls4a{letter-spacing:0.458575px;}
.ls7c{letter-spacing:0.542317px;}
.ls62{letter-spacing:0.550710px;}
.ls7e{letter-spacing:0.568141px;}
.ls5e{letter-spacing:0.576524px;}
.ls86{letter-spacing:0.588568px;}
.ls87{letter-spacing:0.610049px;}
.ls47{letter-spacing:0.674269px;}
.ls49{letter-spacing:0.679210px;}
.ls53{letter-spacing:0.713820px;}
.ls5b{letter-spacing:0.734686px;}
.ls54{letter-spacing:0.748429px;}
.ls72{letter-spacing:0.749311px;}
.ls6f{letter-spacing:0.753643px;}
.ls59{letter-spacing:0.803832px;}
.ls7b{letter-spacing:0.903861px;}
.ls5f{letter-spacing:0.912113px;}
.ls7d{letter-spacing:0.945146px;}
.ls8d{letter-spacing:0.967231px;}
.ls4c{letter-spacing:1.042609px;}
.ls3f{letter-spacing:1.898860px;}
.ls56{letter-spacing:1.905974px;}
.ls52{letter-spacing:2.102523px;}
.ls43{letter-spacing:3.386218px;}
.ls73{letter-spacing:3.937134px;}
.ls83{letter-spacing:4.028638px;}
.ls67{letter-spacing:4.031368px;}
.ls5c{letter-spacing:4.138899px;}
.ls4{letter-spacing:5.850000px;}
.ls50{letter-spacing:6.541184px;}
.lsd{letter-spacing:83.880000px;}
.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;}
}
.wsf6{word-spacing:-54.000000px;}
.ws14b{word-spacing:-17.869374px;}
.ws11b{word-spacing:-17.169069px;}
.ws1fd{word-spacing:-16.713360px;}
.ws1a1{word-spacing:-15.994036px;}
.ws161{word-spacing:-15.992095px;}
.ws184{word-spacing:-15.978092px;}
.ws11c{word-spacing:-15.681711px;}
.ws13b{word-spacing:-13.069390px;}
.ws1a6{word-spacing:-12.888360px;}
.ws159{word-spacing:-12.872841px;}
.ws197{word-spacing:-12.869259px;}
.ws145{word-spacing:-12.818103px;}
.ws182{word-spacing:-12.790270px;}
.ws138{word-spacing:-12.705991px;}
.ws1ac{word-spacing:-12.531782px;}
.ws15c{word-spacing:-12.511437px;}
.ws199{word-spacing:-12.507715px;}
.ws17e{word-spacing:-12.474086px;}
.ws177{word-spacing:-12.459403px;}
.ws137{word-spacing:-12.446420px;}
.ws189{word-spacing:-12.430774px;}
.ws143{word-spacing:-12.407543px;}
.ws183{word-spacing:-12.387461px;}
.ws140{word-spacing:-12.381527px;}
.ws142{word-spacing:-12.355683px;}
.ws13a{word-spacing:-12.346918px;}
.ws17b{word-spacing:-12.316788px;}
.ws121{word-spacing:-12.250872px;}
.ws15f{word-spacing:-12.248990px;}
.ws1a9{word-spacing:-12.248238px;}
.ws19e{word-spacing:-12.245165px;}
.ws17d{word-spacing:-11.763613px;}
.ws162{word-spacing:-11.491764px;}
.ws19c{word-spacing:-11.483339px;}
.ws117{word-spacing:-11.051070px;}
.ws91{word-spacing:-10.808640px;}
.ws1fc{word-spacing:-10.804752px;}
.ws118{word-spacing:-10.689146px;}
.ws15d{word-spacing:-10.519417px;}
.ws179{word-spacing:-10.454144px;}
.ws1ab{word-spacing:-10.207581px;}
.ws1a7{word-spacing:-10.198989px;}
.ws19a{word-spacing:-9.873605px;}
.ws188{word-spacing:-9.857993px;}
.ws0{word-spacing:-8.306640px;}
.ws1{word-spacing:-8.199072px;}
.ws186{word-spacing:-7.991212px;}
.ws4{word-spacing:-7.506000px;}
.ws5{word-spacing:-7.438500px;}
.ws146{word-spacing:-6.975192px;}
.ws1a3{word-spacing:-6.409811px;}
.ws158{word-spacing:-6.393396px;}
.ws141{word-spacing:-6.339905px;}
.ws1b9{word-spacing:-2.008108px;}
.ws196{word-spacing:-1.876050px;}
.ws136{word-spacing:-1.849282px;}
.ws1b8{word-spacing:-0.668973px;}
.ws1e4{word-spacing:-0.565128px;}
.ws1e1{word-spacing:-0.492984px;}
.ws80{word-spacing:-0.216432px;}
.ws1e7{word-spacing:-0.204408px;}
.ws33{word-spacing:-0.189540px;}
.ws19{word-spacing:-0.180360px;}
.ws126{word-spacing:-0.174348px;}
.ws92{word-spacing:-0.168336px;}
.wsac{word-spacing:-0.162324px;}
.ws31{word-spacing:-0.156312px;}
.ws26{word-spacing:-0.150300px;}
.ws51{word-spacing:-0.144288px;}
.wsaa{word-spacing:-0.138276px;}
.ws64{word-spacing:-0.132264px;}
.ws1b{word-spacing:-0.126252px;}
.wsba{word-spacing:-0.120240px;}
.ws9{word-spacing:-0.114228px;}
.ws1a{word-spacing:-0.108216px;}
.ws1df{word-spacing:-0.102204px;}
.ws2{word-spacing:-0.096192px;}
.ws1f2{word-spacing:-0.090180px;}
.ws1ee{word-spacing:-0.084168px;}
.ws202{word-spacing:-0.078156px;}
.ws28{word-spacing:-0.072144px;}
.ws29{word-spacing:-0.066132px;}
.ws27{word-spacing:-0.060120px;}
.ws1ea{word-spacing:-0.054108px;}
.wsc{word-spacing:-0.052668px;}
.wsb{word-spacing:-0.043092px;}
.ws200{word-spacing:-0.042084px;}
.ws8{word-spacing:-0.030060px;}
.ws7{word-spacing:0.000000px;}
.wsd{word-spacing:0.023940px;}
.ws157{word-spacing:0.033373px;}
.wsc9{word-spacing:0.042084px;}
.ws100{word-spacing:0.043200px;}
.ws1f9{word-spacing:0.060120px;}
.wsf9{word-spacing:0.070200px;}
.ws105{word-spacing:0.091800px;}
.wsfe{word-spacing:0.097200px;}
.ws102{word-spacing:0.140400px;}
.ws6{word-spacing:0.145800px;}
.ws103{word-spacing:0.151200px;}
.ws38{word-spacing:0.151632px;}
.ws10f{word-spacing:0.156312px;}
.ws107{word-spacing:0.156600px;}
.ws3e{word-spacing:0.162000px;}
.ws154{word-spacing:0.167400px;}
.ws34{word-spacing:0.168480px;}
.ws8f{word-spacing:0.174348px;}
.ws3d{word-spacing:0.176904px;}
.ws175{word-spacing:0.178200px;}
.ws65{word-spacing:0.180360px;}
.ws32{word-spacing:0.181116px;}
.ws190{word-spacing:0.183600px;}
.ws35{word-spacing:0.185328px;}
.wsf7{word-spacing:0.186372px;}
.ws104{word-spacing:0.189000px;}
.ws174{word-spacing:0.192384px;}
.wsf8{word-spacing:0.194400px;}
.ws108{word-spacing:0.199800px;}
.ws12c{word-spacing:0.204408px;}
.ws1de{word-spacing:0.205200px;}
.ws66{word-spacing:0.210420px;}
.ws109{word-spacing:0.210600px;}
.wsff{word-spacing:0.216000px;}
.ws101{word-spacing:0.221400px;}
.ws3{word-spacing:0.258516px;}
.wsa{word-spacing:0.416556px;}
.wsc4{word-spacing:0.535068px;}
.ws78{word-spacing:0.541080px;}
.ws77{word-spacing:0.547092px;}
.ws173{word-spacing:0.553104px;}
.ws1eb{word-spacing:0.559116px;}
.ws191{word-spacing:0.565128px;}
.wsc3{word-spacing:0.571140px;}
.ws1d4{word-spacing:0.889776px;}
.wse6{word-spacing:0.895788px;}
.wsa7{word-spacing:0.901800px;}
.ws60{word-spacing:0.913824px;}
.ws93{word-spacing:0.919836px;}
.ws63{word-spacing:0.925848px;}
.wsa6{word-spacing:0.949896px;}
.ws176{word-spacing:1.086644px;}
.ws195{word-spacing:1.161896px;}
.wse7{word-spacing:1.268532px;}
.ws62{word-spacing:1.274544px;}
.ws2c{word-spacing:1.280556px;}
.ws1f{word-spacing:1.286568px;}
.wse8{word-spacing:1.292580px;}
.ws2d{word-spacing:1.298592px;}
.ws20{word-spacing:1.316628px;}
.wsa8{word-spacing:1.617228px;}
.ws1c0{word-spacing:1.623240px;}
.ws41{word-spacing:1.629252px;}
.wsa9{word-spacing:1.635264px;}
.ws1cd{word-spacing:1.653300px;}
.ws40{word-spacing:1.659312px;}
.ws1e8{word-spacing:1.665324px;}
.ws1e9{word-spacing:1.677348px;}
.ws155{word-spacing:1.977948px;}
.ws1e3{word-spacing:1.983960px;}
.ws1cb{word-spacing:1.989972px;}
.wsbe{word-spacing:1.995984px;}
.ws1d6{word-spacing:2.001996px;}
.wsb5{word-spacing:2.008008px;}
.ws1e6{word-spacing:2.014020px;}
.ws1ce{word-spacing:2.026044px;}
.ws1e2{word-spacing:2.032056px;}
.ws1cf{word-spacing:2.254500px;}
.ws2f{word-spacing:2.332656px;}
.wsd5{word-spacing:2.350692px;}
.ws2e{word-spacing:2.356704px;}
.ws112{word-spacing:2.368728px;}
.ws1c1{word-spacing:2.380752px;}
.ws1b5{word-spacing:2.386764px;}
.ws70{word-spacing:2.669328px;}
.wsa5{word-spacing:2.675340px;}
.ws12{word-spacing:2.699388px;}
.ws114{word-spacing:2.705400px;}
.ws131{word-spacing:2.711412px;}
.ws72{word-spacing:2.717424px;}
.ws6f{word-spacing:2.723436px;}
.ws4f{word-spacing:2.729448px;}
.ws116{word-spacing:2.735460px;}
.wsb3{word-spacing:2.753496px;}
.wsbb{word-spacing:3.048084px;}
.ws9c{word-spacing:3.060108px;}
.ws94{word-spacing:3.072132px;}
.ws95{word-spacing:3.078144px;}
.ws10c{word-spacing:3.084156px;}
.ws151{word-spacing:3.090168px;}
.ws10d{word-spacing:3.096180px;}
.wscd{word-spacing:3.102192px;}
.ws147{word-spacing:3.301764px;}
.ws44{word-spacing:3.438864px;}
.ws5e{word-spacing:3.444876px;}
.wsa0{word-spacing:3.450888px;}
.ws45{word-spacing:3.456900px;}
.ws1db{word-spacing:3.462912px;}
.ws1d0{word-spacing:3.474936px;}
.wsf3{word-spacing:3.480948px;}
.wsa2{word-spacing:3.781548px;}
.ws8e{word-spacing:3.787560px;}
.ws56{word-spacing:3.793572px;}
.ws8c{word-spacing:3.799584px;}
.ws55{word-spacing:3.829644px;}
.ws8d{word-spacing:3.847680px;}
.wse0{word-spacing:4.136256px;}
.ws3b{word-spacing:4.140396px;}
.wscb{word-spacing:4.148280px;}
.ws3c{word-spacing:4.148820px;}
.ws81{word-spacing:4.154292px;}
.ws156{word-spacing:4.166316px;}
.wscc{word-spacing:4.172328px;}
.ws79{word-spacing:4.178340px;}
.ws7a{word-spacing:4.184352px;}
.wsdf{word-spacing:4.196376px;}
.ws85{word-spacing:4.484952px;}
.ws1ca{word-spacing:4.490964px;}
.wsc2{word-spacing:4.509000px;}
.ws99{word-spacing:4.515012px;}
.ws124{word-spacing:4.521024px;}
.ws1c{word-spacing:4.527036px;}
.ws61{word-spacing:4.533048px;}
.ws86{word-spacing:4.539060px;}
.ws1c9{word-spacing:4.545072px;}
.ws1b1{word-spacing:4.803588px;}
.ws1cc{word-spacing:4.863708px;}
.ws9a{word-spacing:4.869720px;}
.ws2a{word-spacing:4.875732px;}
.ws6e{word-spacing:4.881744px;}
.ws7f{word-spacing:4.887756px;}
.ws1b0{word-spacing:4.905792px;}
.wsca{word-spacing:4.911804px;}
.ws1aa{word-spacing:5.146752px;}
.ws18{word-spacing:5.200380px;}
.ws97{word-spacing:5.212404px;}
.ws1ad{word-spacing:5.218416px;}
.ws4e{word-spacing:5.224428px;}
.ws52{word-spacing:5.236452px;}
.ws74{word-spacing:5.242464px;}
.ws12b{word-spacing:5.248476px;}
.wsd0{word-spacing:5.254488px;}
.ws17{word-spacing:5.260500px;}
.ws96{word-spacing:5.272524px;}
.ws1f3{word-spacing:5.290560px;}
.ws5f{word-spacing:5.567112px;}
.wsf{word-spacing:5.573124px;}
.ws4a{word-spacing:5.579136px;}
.ws1c4{word-spacing:5.585148px;}
.ws36{word-spacing:5.589324px;}
.ws12a{word-spacing:5.591160px;}
.ws37{word-spacing:5.593536px;}
.ws49{word-spacing:5.597172px;}
.wse{word-spacing:5.603184px;}
.ws125{word-spacing:5.609196px;}
.ws115{word-spacing:5.615208px;}
.wsad{word-spacing:5.627232px;}
.ws75{word-spacing:5.939856px;}
.wsea{word-spacing:5.951880px;}
.wsee{word-spacing:5.957892px;}
.wsd1{word-spacing:5.963904px;}
.wsd2{word-spacing:5.975928px;}
.wsb9{word-spacing:5.981940px;}
.ws16e{word-spacing:5.999976px;}
.ws16c{word-spacing:6.294564px;}
.ws16d{word-spacing:6.300576px;}
.ws171{word-spacing:6.306588px;}
.ws134{word-spacing:6.312600px;}
.wse9{word-spacing:6.318612px;}
.ws30{word-spacing:6.324624px;}
.ws1c5{word-spacing:6.330636px;}
.ws172{word-spacing:6.348672px;}
.ws3a{word-spacing:6.642324px;}
.wsdb{word-spacing:6.649272px;}
.wse5{word-spacing:6.655284px;}
.wsf5{word-spacing:6.661296px;}
.wsc5{word-spacing:6.667308px;}
.wsb2{word-spacing:6.679332px;}
.wsda{word-spacing:6.685344px;}
.ws6d{word-spacing:6.691356px;}
.ws39{word-spacing:6.701292px;}
.wsb8{word-spacing:6.703380px;}
.ws135{word-spacing:7.003980px;}
.ws1af{word-spacing:7.034040px;}
.wsb4{word-spacing:7.046064px;}
.wscf{word-spacing:7.052076px;}
.wsf4{word-spacing:7.064100px;}
.wseb{word-spacing:7.382736px;}
.ws130{word-spacing:7.388748px;}
.ws90{word-spacing:7.394760px;}
.ws68{word-spacing:7.406784px;}
.ws152{word-spacing:7.412796px;}
.ws153{word-spacing:7.418808px;}
.ws208{word-spacing:7.424820px;}
.ws67{word-spacing:7.430832px;}
.ws1bb{word-spacing:7.737444px;}
.ws58{word-spacing:7.761492px;}
.ws42{word-spacing:7.773516px;}
.ws43{word-spacing:7.779528px;}
.ws59{word-spacing:7.785540px;}
.ws168{word-spacing:8.098164px;}
.ws11{word-spacing:8.110188px;}
.ws10{word-spacing:8.116200px;}
.ws1c8{word-spacing:8.122212px;}
.wsc6{word-spacing:8.128224px;}
.ws169{word-spacing:8.146260px;}
.ws16{word-spacing:8.434836px;}
.wse1{word-spacing:8.464896px;}
.ws1d5{word-spacing:8.470908px;}
.ws5a{word-spacing:8.476920px;}
.wsbc{word-spacing:8.482932px;}
.wse2{word-spacing:8.488944px;}
.ws1f1{word-spacing:8.494956px;}
.wsef{word-spacing:8.795556px;}
.ws18e{word-spacing:8.813592px;}
.ws1c6{word-spacing:8.819604px;}
.ws15{word-spacing:8.825616px;}
.wsaf{word-spacing:8.831628px;}
.ws1c7{word-spacing:8.849664px;}
.ws1d7{word-spacing:8.861688px;}
.wsae{word-spacing:8.879724px;}
.ws1b7{word-spacing:8.891748px;}
.ws88{word-spacing:9.168300px;}
.ws89{word-spacing:9.210384px;}
.ws128{word-spacing:9.535032px;}
.wsb6{word-spacing:9.541044px;}
.ws9f{word-spacing:9.547056px;}
.ws127{word-spacing:9.553068px;}
.ws164{word-spacing:9.565092px;}
.ws76{word-spacing:9.571104px;}
.wsb7{word-spacing:9.577116px;}
.ws165{word-spacing:9.595152px;}
.ws9b{word-spacing:9.901764px;}
.ws71{word-spacing:9.913788px;}
.ws4d{word-spacing:9.919800px;}
.ws1e5{word-spacing:9.937836px;}
.wsdd{word-spacing:10.268496px;}
.wsde{word-spacing:10.274508px;}
.ws10e{word-spacing:10.575108px;}
.wsbf{word-spacing:10.617192px;}
.wsc0{word-spacing:10.623204px;}
.ws23{word-spacing:10.635228px;}
.ws24{word-spacing:10.647252px;}
.ws110{word-spacing:10.989936px;}
.ws1bf{word-spacing:11.001960px;}
.ws111{word-spacing:11.007972px;}
.ws1b3{word-spacing:11.013984px;}
.ws1b4{word-spacing:11.038032px;}
.ws1ae{word-spacing:11.320596px;}
.ws87{word-spacing:11.344644px;}
.ws18d{word-spacing:11.350656px;}
.ws48{word-spacing:11.362680px;}
.ws54{word-spacing:11.368692px;}
.ws47{word-spacing:11.374704px;}
.ws53{word-spacing:11.380716px;}
.ws18c{word-spacing:11.404764px;}
.wsd6{word-spacing:11.693340px;}
.ws10b{word-spacing:11.717388px;}
.wsd7{word-spacing:11.723400px;}
.ws8b{word-spacing:11.729412px;}
.ws46{word-spacing:11.735424px;}
.wsbd{word-spacing:11.759472px;}
.ws57{word-spacing:12.054060px;}
.ws73{word-spacing:12.072096px;}
.ws14{word-spacing:12.084120px;}
.ws20a{word-spacing:12.102156px;}
.ws1d2{word-spacing:12.132216px;}
.wsab{word-spacing:12.420792px;}
.ws1c3{word-spacing:12.432816px;}
.wsce{word-spacing:12.444840px;}
.ws1d1{word-spacing:12.456864px;}
.ws1d3{word-spacing:12.492936px;}
.ws3f{word-spacing:12.781512px;}
.ws7c{word-spacing:12.793536px;}
.ws7b{word-spacing:12.817584px;}
.ws1c2{word-spacing:12.829608px;}
.ws9e{word-spacing:13.136220px;}
.ws9d{word-spacing:13.160268px;}
.ws1dd{word-spacing:13.170600px;}
.ws1dc{word-spacing:13.176000px;}
.wsdc{word-spacing:13.178304px;}
.ws10a{word-spacing:13.496940px;}
.ws84{word-spacing:13.520988px;}
.ws83{word-spacing:13.875696px;}
.ws82{word-spacing:13.887720px;}
.wsd8{word-spacing:14.218380px;}
.ws7e{word-spacing:14.224392px;}
.ws1b6{word-spacing:14.242428px;}
.wsd9{word-spacing:14.260464px;}
.wsf0{word-spacing:14.567076px;}
.ws12f{word-spacing:14.609160px;}
.ws193{word-spacing:14.615172px;}
.ws7d{word-spacing:14.621184px;}
.ws194{word-spacing:14.633208px;}
.ws5d{word-spacing:14.939820px;}
.ws5c{word-spacing:14.951844px;}
.ws1ba{word-spacing:14.957856px;}
.ws21{word-spacing:14.963868px;}
.ws22{word-spacing:14.969880px;}
.ws18f{word-spacing:14.975892px;}
.ws14d{word-spacing:15.252444px;}
.ws14c{word-spacing:15.294528px;}
.ws129{word-spacing:15.300540px;}
.ws5b{word-spacing:15.324588px;}
.ws6b{word-spacing:15.336612px;}
.wsfb{word-spacing:15.660000px;}
.wsa4{word-spacing:15.661260px;}
.ws1f7{word-spacing:15.667272px;}
.ws206{word-spacing:15.673284px;}
.wsa3{word-spacing:15.685308px;}
.ws25{word-spacing:15.703344px;}
.ws1bc{word-spacing:16.015968px;}
.ws2b{word-spacing:16.034004px;}
.ws207{word-spacing:16.058052px;}
.ws205{word-spacing:16.070076px;}
.ws98{word-spacing:16.388712px;}
.ws1ff{word-spacing:16.418772px;}
.ws1fe{word-spacing:16.442820px;}
.wsec{word-spacing:16.755444px;}
.ws113{word-spacing:16.767468px;}
.wsed{word-spacing:16.779492px;}
.ws1f8{word-spacing:16.791516px;}
.ws1b2{word-spacing:17.116164px;}
.ws1be{word-spacing:17.128188px;}
.ws122{word-spacing:17.458848px;}
.ws123{word-spacing:17.494920px;}
.ws1bd{word-spacing:17.518968px;}
.ws170{word-spacing:17.819568px;}
.wsa1{word-spacing:17.837604px;}
.ws1f4{word-spacing:17.843616px;}
.ws16f{word-spacing:18.198324px;}
.ws1ec{word-spacing:18.204336px;}
.ws1ed{word-spacing:18.228384px;}
.ws69{word-spacing:18.553032px;}
.ws1da{word-spacing:18.559044px;}
.ws163{word-spacing:18.577080px;}
.wse3{word-spacing:18.895716px;}
.ws13{word-spacing:18.907740px;}
.wse4{word-spacing:18.925776px;}
.ws1f5{word-spacing:19.274472px;}
.ws1f6{word-spacing:19.298520px;}
.ws204{word-spacing:19.322568px;}
.ws1e0{word-spacing:19.647216px;}
.ws1d9{word-spacing:19.653228px;}
.ws1d8{word-spacing:19.665252px;}
.ws6a{word-spacing:22.148208px;}
.ws209{word-spacing:22.160232px;}
.ws203{word-spacing:22.196304px;}
.ws167{word-spacing:22.803516px;}
.wsc1{word-spacing:22.869648px;}
.ws12e{word-spacing:22.881672px;}
.ws201{word-spacing:22.923756px;}
.wsfd{word-spacing:23.241600px;}
.ws166{word-spacing:23.248404px;}
.ws1d{word-spacing:23.957820px;}
.ws1e{word-spacing:23.963832px;}
.wsc8{word-spacing:24.318540px;}
.ws50{word-spacing:24.661224px;}
.ws8a{word-spacing:25.045992px;}
.wsc7{word-spacing:25.406712px;}
.ws18b{word-spacing:25.418736px;}
.ws14e{word-spacing:25.761420px;}
.ws18a{word-spacing:25.797492px;}
.ws1ef{word-spacing:26.104104px;}
.ws192{word-spacing:26.110116px;}
.ws1f0{word-spacing:26.128152px;}
.ws133{word-spacing:26.813520px;}
.ws132{word-spacing:26.849592px;}
.wsb1{word-spacing:27.192276px;}
.ws14f{word-spacing:27.198288px;}
.wsb0{word-spacing:27.210312px;}
.ws16b{word-spacing:27.546984px;}
.ws150{word-spacing:27.565020px;}
.ws6c{word-spacing:28.274436px;}
.wsd3{word-spacing:28.280448px;}
.wsd4{word-spacing:28.629144px;}
.ws19d{word-spacing:29.693986px;}
.ws1fa{word-spacing:30.078036px;}
.ws1fb{word-spacing:30.102084px;}
.wsf2{word-spacing:33.294456px;}
.wsf1{word-spacing:33.306480px;}
.ws12d{word-spacing:33.330528px;}
.ws4b{word-spacing:33.691248px;}
.ws4c{word-spacing:33.703272px;}
.ws1a0{word-spacing:34.480145px;}
.ws11e{word-spacing:40.426390px;}
.ws16a{word-spacing:41.591016px;}
.ws13d{word-spacing:46.519414px;}
.ws148{word-spacing:52.638062px;}
.ws13e{word-spacing:53.237971px;}
.ws11f{word-spacing:53.391194px;}
.ws106{word-spacing:54.194400px;}
.ws149{word-spacing:65.101788px;}
.ws11d{word-spacing:71.398142px;}
.ws19b{word-spacing:71.559967px;}
.ws19f{word-spacing:73.604414px;}
.ws13c{word-spacing:74.354056px;}
.ws120{word-spacing:119.553836px;}
.ws13f{word-spacing:120.250499px;}
.ws14a{word-spacing:126.655476px;}
.wsfa{word-spacing:126.829800px;}
.ws180{word-spacing:132.641119px;}
.ws181{word-spacing:133.169535px;}
.ws1a2{word-spacing:145.264706px;}
.ws15b{word-spacing:145.942389px;}
.ws15a{word-spacing:151.729144px;}
.ws1a5{word-spacing:157.504351px;}
.ws178{word-spacing:157.845040px;}
.ws1a4{word-spacing:157.852337px;}
.wsfc{word-spacing:168.350400px;}
.ws198{word-spacing:188.812259px;}
.ws144{word-spacing:201.040232px;}
.ws139{word-spacing:201.366374px;}
.ws119{word-spacing:201.413063px;}
.ws11a{word-spacing:207.521146px;}
.ws185{word-spacing:232.879932px;}
.ws187{word-spacing:263.493419px;}
.ws15e{word-spacing:264.039515px;}
.ws17a{word-spacing:275.001463px;}
.ws160{word-spacing:283.477849px;}
.ws1a8{word-spacing:289.206206px;}
.ws17c{word-spacing:301.592760px;}
.ws17f{word-spacing:347.554901px;}
._1f{margin-left:-30.240360px;}
._1d{margin-left:-26.278452px;}
._20{margin-left:-23.037984px;}
._1b{margin-left:-19.803528px;}
._1c{margin-left:-18.360648px;}
._1a{margin-left:-16.923780px;}
._1e{margin-left:-15.841620px;}
._21{margin-left:-12.240432px;}
._17{margin-left:-9.812209px;}
._12{margin-left:-7.704514px;}
._11{margin-left:-6.361154px;}
._6{margin-left:-4.680000px;}
._14{margin-left:-3.668144px;}
._13{margin-left:-2.369857px;}
._0{margin-left:-1.279800px;}
._3{width:1.034064px;}
._10{width:2.446354px;}
._15{width:4.055529px;}
._e{width:5.756075px;}
._f{width:7.007585px;}
._18{width:8.678375px;}
._7{width:68.759244px;}
._16{width:96.765384px;}
._d{width:145.319400px;}
._8{width:315.819000px;}
._19{width:318.943037px;}
._b{width:331.473600px;}
._9{width:361.476000px;}
._c{width:390.792600px;}
._a{width:403.493400px;}
._4{width:490.665600px;}
._5{width:544.320000px;}
._2{width:611.280000px;}
._1{width:756.480600px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:27.000000px;}
.fs4{font-size:29.880000px;}
.fsb{font-size:37.081200px;}
.fs8{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs15{font-size:42.961200px;}
.fse{font-size:43.024200px;}
.fs13{font-size:43.041000px;}
.fsc{font-size:43.216800px;}
.fsa{font-size:43.261800px;}
.fs11{font-size:43.312800px;}
.fs3{font-size:47.880000px;}
.fs16{font-size:49.098000px;}
.fsf{font-size:49.169400px;}
.fs14{font-size:49.189200px;}
.fsd{font-size:49.390200px;}
.fs10{font-size:49.442400px;}
.fs12{font-size:49.500000px;}
.fs9{font-size:49.578600px;}
.fs0{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:58.260450px;}
.y58{bottom:110.010450px;}
.y14c{bottom:112.440450px;}
.y18f{bottom:113.050515px;}
.y63{bottom:113.065266px;}
.y86{bottom:113.069154px;}
.y10c{bottom:119.280450px;}
.y2f{bottom:125.130432px;}
.y57{bottom:127.740450px;}
.yb2{bottom:131.959272px;}
.y87{bottom:133.757472px;}
.y1d2{bottom:133.760658px;}
.y128{bottom:133.860450px;}
.ye7{bottom:134.939613px;}
.y2e{bottom:137.190441px;}
.y18e{bottom:138.881073px;}
.y62{bottom:138.895824px;}
.y85{bottom:138.899712px;}
.y14b{bottom:139.710600px;}
.yca{bottom:142.400955px;}
.y10b{bottom:143.760450px;}
.y2d{bottom:154.470450px;}
.yb1{bottom:157.880010px;}
.y127{bottom:158.429892px;}
.y56{bottom:159.588030px;}
.y1d1{bottom:159.591216px;}
.ye6{bottom:160.770171px;}
.y2c{bottom:161.310927px;}
.y14a{bottom:164.280450px;}
.y18d{bottom:164.801811px;}
.y1ab{bottom:164.808849px;}
.y61{bottom:164.816562px;}
.yc9{bottom:168.231513px;}
.y2b{bottom:173.460441px;}
.y118{bottom:177.600450px;}
.y84{bottom:182.820450px;}
.yb0{bottom:183.710568px;}
.y126{bottom:184.260450px;}
.y1d0{bottom:185.421774px;}
.y55{bottom:185.508768px;}
.y1eb{bottom:185.516832px;}
.ye5{bottom:186.690909px;}
.y1aa{bottom:190.549227px;}
.y18c{bottom:190.632369px;}
.y60{bottom:190.647120px;}
.y2a{bottom:190.740450px;}
.yc8{bottom:194.152251px;}
.y168{bottom:196.590450px;}
.y29{bottom:199.200600px;}
.y117{bottom:209.010610px;}
.yaf{bottom:209.631306px;}
.y83{bottom:211.250235px;}
.ye4{bottom:211.261050px;}
.y54{bottom:211.339326px;}
.y1cf{bottom:211.342512px;}
.y1ea{bottom:211.347390px;}
.y18b{bottom:216.553107px;}
.y1a9{bottom:216.558642px;}
.y5f{bottom:216.567858px;}
.y13d{bottom:216.660450px;}
.yc7{bottom:219.982809px;}
.y116{bottom:222.870856px;}
.y28{bottom:227.906562px;}
.y167{bottom:229.620653px;}
.yae{bottom:235.461864px;}
.y1e9{bottom:237.177948px;}
.y82{bottom:237.259650px;}
.y53{bottom:237.260064px;}
.y1ce{bottom:237.263250px;}
.y110{bottom:238.171337px;}
.y108{bottom:242.310450px;}
.y18a{bottom:242.383665px;}
.y1a8{bottom:242.389200px;}
.y5e{bottom:242.398416px;}
.y166{bottom:243.390792px;}
.yc6{bottom:245.903547px;}
.y13c{bottom:248.340422px;}
.y111{bottom:252.031583px;}
.y27{bottom:253.827300px;}
.y15f{bottom:260.311061px;}
.yad{bottom:261.382602px;}
.y13b{bottom:262.290392px;}
.y10f{bottom:262.741382px;}
.y1cd{bottom:263.003628px;}
.y81{bottom:263.090208px;}
.y52{bottom:263.090622px;}
.y1e8{bottom:263.098686px;}
.y112{bottom:264.361243px;}
.y1a7{bottom:268.219758px;}
.y189{bottom:268.304403px;}
.y5d{bottom:268.319154px;}
.yc5{bottom:271.734105px;}
.y107{bottom:275.429366px;}
.y113{bottom:278.131138px;}
.y160{bottom:278.671603px;}
.y138{bottom:279.300411px;}
.y26{bottom:279.657858px;}
.yac{bottom:287.213160px;}
.y80{bottom:289.010946px;}
.y51{bottom:289.011360px;}
.y1cc{bottom:289.013043px;}
.y1e7{bottom:289.019424px;}
.y106{bottom:289.288994px;}
.y15e{bottom:289.470975px;}
.y10e{bottom:290.460798px;}
.y139{bottom:291.720357px;}
.y188{bottom:294.134961px;}
.y1a6{bottom:294.140496px;}
.y5c{bottom:294.149712px;}
.y161{bottom:297.121291px;}
.yc4{bottom:297.564663px;}
.y13a{bottom:304.050428px;}
.y114{bottom:304.230694px;}
.yfb{bottom:304.770332px;}
.y25{bottom:305.578596px;}
.yab{bottom:313.133898px;}
.y136{bottom:313.320450px;}
.y7f{bottom:314.841504px;}
.y50{bottom:314.841918px;}
.y1cb{bottom:314.843601px;}
.y1e6{bottom:314.849982px;}
.y162{bottom:315.570978px;}
.y137{bottom:316.470373px;}
.y115{bottom:316.560354px;}
.yfc{bottom:318.629960px;}
.y10d{bottom:319.620450px;}
.y187{bottom:320.055699px;}
.y1a5{bottom:320.061234px;}
.yc3{bottom:323.485401px;}
.yfa{bottom:330.959713px;}
.y24{bottom:331.409154px;}
.y163{bottom:333.931521px;}
.yfd{bottom:334.110218px;}
.y5b{bottom:338.070450px;}
.yaa{bottom:338.964456px;}
.y1ca{bottom:340.674159px;}
.y7e{bottom:340.762242px;}
.y4f{bottom:340.762656px;}
.y1e5{bottom:340.770720px;}
.y1a4{bottom:345.801612px;}
.y186{bottom:345.886257px;}
.yfe{bottom:347.969846px;}
.yc2{bottom:349.315959px;}
.y164{bottom:352.381208px;}
.yf9{bottom:357.239849px;}
.y23{bottom:357.329892px;}
.y15d{bottom:360.030450px;}
.yff{bottom:363.359348px;}
.ya9{bottom:364.885194px;}
.y5a{bottom:366.506040px;}
.y7d{bottom:366.592800px;}
.y4e{bottom:366.593214px;}
.y1c9{bottom:366.594897px;}
.y1e4{bottom:366.601278px;}
.y125{bottom:366.870450px;}
.y10a{bottom:370.560150px;}
.y165{bottom:370.741751px;}
.y185{bottom:371.806995px;}
.y1a3{bottom:371.811027px;}
.yc1{bottom:375.236697px;}
.y100{bottom:378.839606px;}
.ya8{bottom:390.715752px;}
.y124{bottom:391.438272px;}
.y59{bottom:392.425275px;}
.y1e3{bottom:392.431836px;}
.y7c{bottom:392.513538px;}
.y4d{bottom:392.513952px;}
.y1c8{bottom:392.515635px;}
.y101{bottom:392.699233px;}
.y109{bottom:393.870600px;}
.y184{bottom:397.637553px;}
.y1a2{bottom:397.641585px;}
.yc0{bottom:401.067255px;}
.y22{bottom:401.160450px;}
.y102{bottom:408.179491px;}
.y149{bottom:414.480450px;}
.ya7{bottom:416.636490px;}
.y123{bottom:417.268830px;}
.y1c7{bottom:418.256013px;}
.y7b{bottom:418.344096px;}
.y4c{bottom:418.344510px;}
.y1e2{bottom:418.351071px;}
.yf7{bottom:418.980450px;}
.y103{bottom:422.039119px;}
.y1a1{bottom:423.472143px;}
.y183{bottom:423.558291px;}
.ybf{bottom:426.987993px;}
.y21{bottom:429.684627px;}
.y104{bottom:437.519377px;}
.y148{bottom:438.959010px;}
.ya6{bottom:442.467048px;}
.y122{bottom:443.189568px;}
.y7a{bottom:444.174654px;}
.y4b{bottom:444.175068px;}
.y1c6{bottom:444.176751px;}
.y1e1{bottom:444.181629px;}
.yf8{bottom:445.169831px;}
.y182{bottom:449.388849px;}
.y1a0{bottom:449.392881px;}
.y105{bottom:451.379005px;}
.ybe{bottom:452.818551px;}
.y20{bottom:455.605365px;}
.y147{bottom:464.879748px;}
.ya5{bottom:468.387786px;}
.y121{bottom:469.020126px;}
.y1e0{bottom:470.012187px;}
.y79{bottom:470.093889px;}
.y4a{bottom:470.094303px;}
.y1c5{bottom:470.095986px;}
.y19f{bottom:475.133259px;}
.y181{bottom:475.219407px;}
.ybd{bottom:478.739289px;}
.y1f{bottom:481.345743px;}
.y146{bottom:490.710306px;}
.ya4{bottom:494.218344px;}
.y120{bottom:494.940864px;}
.y1c4{bottom:495.836364px;}
.y78{bottom:495.924447px;}
.y49{bottom:495.924861px;}
.y1df{bottom:495.931422px;}
.y180{bottom:501.140145px;}
.y19e{bottom:501.142674px;}
.ybc{bottom:504.569847px;}
.ye3{bottom:505.200600px;}
.y1e{bottom:507.266481px;}
.y145{bottom:516.629541px;}
.ya3{bottom:520.139082px;}
.y11f{bottom:520.771422px;}
.y77{bottom:521.843682px;}
.y48{bottom:521.844096px;}
.y1c3{bottom:521.845779px;}
.y1de{bottom:521.850657px;}
.y17f{bottom:526.970703px;}
.y19d{bottom:526.973232px;}
.ye2{bottom:529.767507px;}
.ybb{bottom:530.489082px;}
.y1d{bottom:533.097039px;}
.y144{bottom:542.460099px;}
.ya2{bottom:545.969640px;}
.y11e{bottom:546.690657px;}
.y1dd{bottom:547.591035px;}
.y76{bottom:547.674240px;}
.y47{bottom:547.674654px;}
.y1c2{bottom:547.676337px;}
.y19c{bottom:552.803790px;}
.y17e{bottom:552.889938px;}
.ye1{bottom:555.598065px;}
.yba{bottom:556.319640px;}
.y1c{bottom:559.017777px;}
.y143{bottom:568.379334px;}
.ya1{bottom:571.800198px;}
.y11d{bottom:572.521215px;}
.y1c1{bottom:573.506895px;}
.y75{bottom:573.594978px;}
.y46{bottom:573.595392px;}
.y1dc{bottom:573.595572px;}
.y17d{bottom:578.720496px;}
.y19b{bottom:578.724528px;}
.ye0{bottom:581.517300px;}
.yb9{bottom:582.240378px;}
.y1b{bottom:584.848335px;}
.y142{bottom:594.209892px;}
.ya0{bottom:597.630756px;}
.y11c{bottom:598.440450px;}
.y74{bottom:599.425536px;}
.y45{bottom:599.425950px;}
.y1c0{bottom:599.426130px;}
.y17c{bottom:604.641234px;}
.y19a{bottom:604.645266px;}
.ydf{bottom:607.347858px;}
.yb8{bottom:608.070936px;}
.y1a{bottom:610.769073px;}
.y141{bottom:620.040450px;}
.y11b{bottom:623.010450px;}
.y9f{bottom:623.461314px;}
.y1db{bottom:625.256688px;}
.y73{bottom:625.344771px;}
.y44{bottom:625.345185px;}
.y1bf{bottom:625.345365px;}
.y17b{bottom:630.471792px;}
.y199{bottom:630.475824px;}
.yde{bottom:633.268596px;}
.yb7{bottom:633.990171px;}
.y19{bottom:636.599631px;}
.y140{bottom:644.700450px;}
.y11a{bottom:647.580450px;}
.y9e{bottom:649.380549px;}
.y72{bottom:651.175329px;}
.y43{bottom:651.175743px;}
.y1be{bottom:651.175923px;}
.y17a{bottom:656.392530px;}
.y198{bottom:656.396562px;}
.ydd{bottom:659.099154px;}
.yb6{bottom:659.820729px;}
.y18{bottom:662.518866px;}
.y13f{bottom:669.270450px;}
.y9d{bottom:674.130450px;}
.y1da{bottom:677.006481px;}
.y71{bottom:677.096067px;}
.y42{bottom:677.096481px;}
.y1bd{bottom:677.096661px;}
.y135{bottom:681.510450px;}
.y179{bottom:682.223088px;}
.y197{bottom:682.227120px;}
.yb5{bottom:684.480450px;}
.ydc{bottom:685.019892px;}
.y17{bottom:688.349424px;}
.y9c{bottom:700.770450px;}
.y70{bottom:702.926625px;}
.y41{bottom:702.927039px;}
.y1bc{bottom:702.927219px;}
.y15c{bottom:703.020450px;}
.y196{bottom:708.057678px;}
.y178{bottom:708.142323px;}
.yb4{bottom:708.960450px;}
.ydb{bottom:710.850450px;}
.y134{bottom:713.191734px;}
.y16{bottom:714.358839px;}
.y9b{bottom:725.160000px;}
.y133{bottom:727.051362px;}
.y1bb{bottom:728.757777px;}
.y6f{bottom:728.845860px;}
.y40{bottom:728.846274px;}
.y195{bottom:733.888236px;}
.y177{bottom:733.972881px;}
.y15b{bottom:734.432056px;}
.yda{bottom:735.509550px;}
.y15{bottom:740.099217px;}
.yd7{bottom:741.450450px;}
.y12d{bottom:742.531620px;}
.y15a{bottom:748.292334px;}
.y9a{bottom:748.470450px;}
.y6e{bottom:754.676418px;}
.y3f{bottom:754.676832px;}
.y1ba{bottom:754.678515px;}
.yd9{bottom:758.820000px;}
.y194{bottom:759.808974px;}
.y176{bottom:759.893619px;}
.y12e{bottom:762.601502px;}
.y151{bottom:765.210675px;}
.y12c{bottom:765.661251px;}
.y14{bottom:766.019955px;}
.y99{bottom:772.950450px;}
.yd6{bottom:773.312226px;}
.y12a{bottom:776.550804px;}
.y152{bottom:777.450459px;}
.y6d{bottom:780.597156px;}
.y3e{bottom:780.597570px;}
.y1b9{bottom:780.599253px;}
.y12f{bottom:782.671384px;}
.y175{bottom:785.724177px;}
.y193{bottom:785.729712px;}
.yd5{bottom:788.791904px;}
.y150{bottom:791.310737px;}
.y13{bottom:791.850513px;}
.y98{bottom:798.870450px;}
.yf6{bottom:799.770450px;}
.y130{bottom:802.741265px;}
.y153{bottom:803.640908px;}
.y1b8{bottom:806.339631px;}
.y6c{bottom:806.427714px;}
.y3d{bottom:806.428128px;}
.yce{bottom:807.329343px;}
.y174{bottom:811.644915px;}
.y192{bottom:811.650450px;}
.yf5{bottom:816.780067px;}
.y154{bottom:817.410800px;}
.y12{bottom:817.769748px;}
.y131{bottom:822.900822px;}
.y97{bottom:823.260450px;}
.ycd{bottom:824.430242px;}
.ycf{bottom:825.959741px;}
.y14f{bottom:828.210862px;}
.yf4{bottom:830.729834px;}
.y155{bottom:831.271078px;}
.y6b{bottom:832.348452px;}
.y3c{bottom:832.348866px;}
.y1b7{bottom:832.349046px;}
.y12b{bottom:833.700701px;}
.y191{bottom:836.130000px;}
.y129{bottom:836.760450px;}
.y173{bottom:837.475473px;}
.yd0{bottom:842.970159px;}
.y132{bottom:842.970704px;}
.y11{bottom:843.600306px;}
.y156{bottom:843.601248px;}
.yec{bottom:846.120219px;}
.y96{bottom:847.650450px;}
.y14d{bottom:857.460450px;}
.y157{bottom:857.461526px;}
.y1f3{bottom:858.178101px;}
.y6a{bottom:858.179010px;}
.y3b{bottom:858.179424px;}
.y1b6{bottom:858.179604px;}
.y190{bottom:859.440450px;}
.yeb{bottom:861.600373px;}
.yd1{bottom:861.600558px;}
.y172{bottom:863.396211px;}
.ye8{bottom:866.190450px;}
.y10{bottom:869.519541px;}
.y158{bottom:869.701310px;}
.y95{bottom:871.949100px;}
.yed{bottom:875.460372px;}
.ycc{bottom:880.140475px;}
.y14e{bottom:880.500297px;}
.y159{bottom:883.561588px;}
.y1b5{bottom:884.010162px;}
.y1f2{bottom:884.097336px;}
.y69{bottom:884.098245px;}
.y3a{bottom:884.098659px;}
.y119{bottom:885.450450px;}
.y171{bottom:889.226769px;}
.y94{bottom:895.259550px;}
.yf{bottom:895.350099px;}
.y92{bottom:895.440450px;}
.yd2{bottom:898.770873px;}
.yee{bottom:903.270139px;}
.y1f1{bottom:909.927894px;}
.y68{bottom:909.928803px;}
.y39{bottom:909.929217px;}
.y1d9{bottom:909.929397px;}
.y1b4{bottom:909.930900px;}
.y170{bottom:915.147507px;}
.yd3{bottom:917.401272px;}
.y93{bottom:918.570000px;}
.ye{bottom:921.269334px;}
.yef{bottom:931.079905px;}
.ycb{bottom:934.410450px;}
.y1d8{bottom:935.759955px;}
.y1f0{bottom:935.848632px;}
.y67{bottom:935.849541px;}
.y38{bottom:935.849955px;}
.y1b3{bottom:935.851638px;}
.yd4{bottom:935.941189px;}
.y13e{bottom:937.200450px;}
.y16f{bottom:940.978065px;}
.y91{bottom:942.959550px;}
.y8f{bottom:943.050000px;}
.ye9{bottom:943.500368px;}
.yd{bottom:947.099892px;}
.yf0{bottom:960.509826px;}
.y89{bottom:961.590333px;}
.y1b2{bottom:961.592016px;}
.y1d7{bottom:961.679190px;}
.y66{bottom:961.680099px;}
.y37{bottom:961.680513px;}
.y90{bottom:966.270000px;}
.y8e{bottom:966.360450px;}
.y16e{bottom:966.898803px;}
.yc{bottom:972.931035px;}
.y1d6{bottom:987.419568px;}
.y88{bottom:987.420891px;}
.y1ef{bottom:987.509748px;}
.y65{bottom:987.510657px;}
.y36{bottom:987.511071px;}
.y1b1{bottom:987.511251px;}
.yf1{bottom:988.319593px;}
.yb3{bottom:988.860450px;}
.y8d{bottom:990.660900px;}
.y16d{bottom:992.729361px;}
.yb{bottom:998.940450px;}
.y1ee{bottom:1013.340306px;}
.y1d5{bottom:1013.428983px;}
.y64{bottom:1013.429892px;}
.y35{bottom:1013.430306px;}
.y1b0{bottom:1013.430486px;}
.y8c{bottom:1014.060450px;}
.yf2{bottom:1017.659746px;}
.ya{bottom:1018.289460px;}
.y16c{bottom:1018.559919px;}
.y9{bottom:1034.849955px;}
.y8b{bottom:1037.280441px;}
.y1af{bottom:1039.170864px;}
.y1d4{bottom:1039.259541px;}
.yea{bottom:1039.260362px;}
.y34{bottom:1039.260864px;}
.y1ed{bottom:1039.261044px;}
.y16b{bottom:1044.480657px;}
.yf3{bottom:1045.469512px;}
.y8{bottom:1051.409955px;}
.y1d3{bottom:1065.090099px;}
.y8a{bottom:1065.090450px;}
.y1ec{bottom:1065.091602px;}
.y33{bottom:1065.180099px;}
.y1ae{bottom:1065.180279px;}
.y7{bottom:1067.970450px;}
.y16a{bottom:1070.311215px;}
.y6{bottom:1090.919154px;}
.y32{bottom:1091.010657px;}
.y1ad{bottom:1091.010837px;}
.yd8{bottom:1092.360450px;}
.y169{bottom:1114.230450px;}
.y5{bottom:1116.839892px;}
.y31{bottom:1116.929892px;}
.y1ac{bottom:1116.930072px;}
.y4{bottom:1142.670450px;}
.y30{bottom:1142.760450px;}
.y2{bottom:1179.750450px;}
.y1{bottom:1196.760450px;}
.ha{height:28.160156px;}
.h14{height:38.674533px;}
.hb{height:43.929844px;}
.h22{height:44.807189px;}
.h18{height:44.872896px;}
.h1f{height:44.890418px;}
.h15{height:45.073772px;}
.h11{height:45.120705px;}
.h1c{height:45.173897px;}
.h7{height:49.937344px;}
.h24{height:51.207680px;}
.h12{height:51.242250px;}
.h1a{height:51.282148px;}
.h21{height:51.302798px;}
.h17{height:51.512435px;}
.h1b{height:51.566878px;}
.h1e{height:51.626953px;}
.he{height:51.708930px;}
.h1{height:52.971680px;}
.h5{height:55.283906px;}
.h6{height:55.285886px;}
.hd{height:56.320312px;}
.h2{height:59.004492px;}
.h10{height:62.700881px;}
.h4{height:62.703281px;}
.h8{height:64.623109px;}
.hc{height:70.428969px;}
.h25{height:70.450137px;}
.h3{height:70.664062px;}
.h9{height:72.562500px;}
.h23{height:99.887744px;}
.h19{height:100.313880px;}
.h20{height:100.331530px;}
.h16{height:100.512283px;}
.h13{height:100.919775px;}
.h1d{height:100.973777px;}
.hf{height:113.627644px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x1{left:127.620000px;}
.x3{left:153.540000px;}
.x42{left:198.540000px;}
.x35{left:204.570000px;}
.xa{left:217.800198px;}
.x12{left:227.069272px;}
.x11{left:233.189750px;}
.x48{left:240.570242px;}
.x1e{left:242.190786px;}
.x47{left:246.690673px;}
.x1d{left:248.311249px;}
.x34{left:250.290000px;}
.x26{left:253.980156px;}
.x25{left:260.190410px;}
.x18{left:261.270000px;}
.x4f{left:267.570227px;}
.x43{left:270.270000px;}
.x4e{left:273.780268px;}
.x49{left:277.470368px;}
.xd{left:278.820000px;}
.x2f{left:281.069155px;}
.x17{left:286.020000px;}
.x2e{left:287.189347px;}
.x39{left:288.540004px;}
.xe{left:293.310000px;}
.x38{left:294.659503px;}
.x13{left:296.459481px;}
.x27{left:303.209493px;}
.x1b{left:308.340241px;}
.x4c{left:311.310000px;}
.x22{left:315.540327px;}
.x9{left:321.030000px;}
.x30{left:322.648817px;}
.x31{left:324.178328px;}
.x4{left:326.879487px;}
.x3a{left:331.739517px;}
.x3b{left:333.269392px;}
.x3f{left:336.329517px;}
.x2b{left:338.130000px;}
.x37{left:347.219775px;}
.x44{left:363.599713px;}
.xc{left:365.490000px;}
.xf{left:370.439428px;}
.x1a{left:380.789696px;}
.x21{left:392.490000px;}
.x3e{left:397.890000px;}
.x2c{left:401.309962px;}
.x33{left:405.990000px;}
.x16{left:413.640000px;}
.x2{left:419.490000px;}
.x20{left:425.430000px;}
.x45{left:432.809641px;}
.x14{left:436.769397px;}
.x1f{left:442.350156px;}
.x40{left:443.969405px;}
.x2a{left:446.310000px;}
.x50{left:447.750574px;}
.xb{left:449.909550px;}
.x10{left:452.158595px;}
.x28{left:455.578965px;}
.x19{left:460.890000px;}
.x4d{left:464.761061px;}
.x3c{left:466.018436px;}
.x2d{left:467.639296px;}
.x23{left:469.439673px;}
.x36{left:483.029649px;}
.x4a{left:486.719569px;}
.x46{left:509.759417px;}
.x1c{left:530.189996px;}
.x24{left:547.919221px;}
.x4b{left:557.458529px;}
.x41{left:562.409340px;}
.x32{left:578.697663px;}
.x15{left:589.409512px;}
.x3d{left:595.708812px;}
.x29{left:603.268057px;}
.x7{left:619.380090px;}
.x8{left:625.410576px;}
.x6{left:647.640063px;}
.x5{left:665.820000px;}
@media print{
.vf{vertical-align:-82.559972pt;}
.v2{vertical-align:-64.000000pt;}
.ve{vertical-align:-55.039981pt;}
.vc{vertical-align:-38.079285pt;}
.vb{vertical-align:-32.641026pt;}
.v6{vertical-align:-27.521632pt;}
.v3{vertical-align:-18.560000pt;}
.vd{vertical-align:-10.879109pt;}
.va{vertical-align:-5.439555pt;}
.v5{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.441373pt;}
.v1{vertical-align:21.440000pt;}
.v4{vertical-align:26.558528pt;}
.v9{vertical-align:49.599173pt;}
.v7{vertical-align:55.038856pt;}
.ls76{letter-spacing:-5.724990pt;}
.ls8b{letter-spacing:-5.499034pt;}
.ls57{letter-spacing:-5.043881pt;}
.ls61{letter-spacing:-4.948739pt;}
.ls85{letter-spacing:-4.918580pt;}
.ls70{letter-spacing:-4.770183pt;}
.ls5a{letter-spacing:-4.479181pt;}
.ls75{letter-spacing:-3.599775pt;}
.ls42{letter-spacing:-2.749960pt;}
.ls41{letter-spacing:-2.428250pt;}
.ls6e{letter-spacing:-2.364445pt;}
.ls68{letter-spacing:-2.229013pt;}
.ls45{letter-spacing:-2.194679pt;}
.ls77{letter-spacing:-1.940413pt;}
.ls44{letter-spacing:-1.872969pt;}
.ls7f{letter-spacing:-1.859371pt;}
.ls88{letter-spacing:-1.550422pt;}
.ls8c{letter-spacing:-1.542784pt;}
.ls6b{letter-spacing:-1.386779pt;}
.ls46{letter-spacing:-1.361759pt;}
.ls63{letter-spacing:-1.281165pt;}
.ls84{letter-spacing:-0.673345pt;}
.ls80{letter-spacing:-0.428497pt;}
.ls66{letter-spacing:-0.416857pt;}
.ls89{letter-spacing:-0.378059pt;}
.ls74{letter-spacing:-0.284902pt;}
.ls1a{letter-spacing:-0.283232pt;}
.ls6d{letter-spacing:-0.222807pt;}
.ls8e{letter-spacing:-0.213760pt;}
.ls94{letter-spacing:-0.181696pt;}
.ls29{letter-spacing:-0.165664pt;}
.ls2a{letter-spacing:-0.128256pt;}
.ls81{letter-spacing:-0.110950pt;}
.ls12{letter-spacing:-0.101536pt;}
.ls34{letter-spacing:-0.100800pt;}
.ls64{letter-spacing:-0.099434pt;}
.ls15{letter-spacing:-0.095616pt;}
.ls38{letter-spacing:-0.091200pt;}
.ls95{letter-spacing:-0.090848pt;}
.ls37{letter-spacing:-0.086400pt;}
.ls3d{letter-spacing:-0.081600pt;}
.ls92{letter-spacing:-0.080160pt;}
.ls35{letter-spacing:-0.076800pt;}
.ls1b{letter-spacing:-0.074816pt;}
.ls3c{letter-spacing:-0.072000pt;}
.ls3e{letter-spacing:-0.069472pt;}
.ls31{letter-spacing:-0.067200pt;}
.ls1c{letter-spacing:-0.064128pt;}
.ls3b{letter-spacing:-0.062400pt;}
.ls21{letter-spacing:-0.060000pt;}
.ls96{letter-spacing:-0.058784pt;}
.ls32{letter-spacing:-0.057600pt;}
.ls93{letter-spacing:-0.053440pt;}
.ls60{letter-spacing:-0.052800pt;}
.ls1d{letter-spacing:-0.048096pt;}
.ls4f{letter-spacing:-0.043200pt;}
.ls91{letter-spacing:-0.042752pt;}
.ls40{letter-spacing:-0.038400pt;}
.ls22{letter-spacing:-0.037440pt;}
.ls90{letter-spacing:-0.037408pt;}
.ls14{letter-spacing:-0.034048pt;}
.ls36{letter-spacing:-0.033600pt;}
.ls18{letter-spacing:-0.032064pt;}
.ls39{letter-spacing:-0.028800pt;}
.ls13{letter-spacing:-0.026720pt;}
.ls3a{letter-spacing:-0.024000pt;}
.ls28{letter-spacing:-0.021376pt;}
.ls33{letter-spacing:-0.019200pt;}
.ls19{letter-spacing:-0.016032pt;}
.ls20{letter-spacing:-0.011232pt;}
.ls25{letter-spacing:-0.010688pt;}
.ls1f{letter-spacing:-0.007488pt;}
.ls17{letter-spacing:-0.005344pt;}
.ls16{letter-spacing:-0.004256pt;}
.ls1e{letter-spacing:-0.003744pt;}
.ls97{letter-spacing:-0.003456pt;}
.ls11{letter-spacing:0.000000pt;}
.ls2c{letter-spacing:0.004800pt;}
.lsb{letter-spacing:0.005344pt;}
.lse{letter-spacing:0.007488pt;}
.ls5{letter-spacing:0.010688pt;}
.ls23{letter-spacing:0.014400pt;}
.ls10{letter-spacing:0.014976pt;}
.ls7{letter-spacing:0.016032pt;}
.ls2d{letter-spacing:0.019200pt;}
.lsc{letter-spacing:0.021376pt;}
.lsf{letter-spacing:0.022464pt;}
.ls2f{letter-spacing:0.024000pt;}
.ls8{letter-spacing:0.026720pt;}
.ls0{letter-spacing:0.028800pt;}
.ls3{letter-spacing:0.032064pt;}
.ls6{letter-spacing:0.037408pt;}
.ls24{letter-spacing:0.042752pt;}
.ls2b{letter-spacing:0.043200pt;}
.lsa{letter-spacing:0.048096pt;}
.ls9{letter-spacing:0.053440pt;}
.ls1{letter-spacing:0.055328pt;}
.ls26{letter-spacing:0.058784pt;}
.ls2{letter-spacing:0.063840pt;}
.ls27{letter-spacing:0.064128pt;}
.ls2e{letter-spacing:0.067200pt;}
.ls30{letter-spacing:0.074816pt;}
.ls7a{letter-spacing:0.080160pt;}
.ls5d{letter-spacing:0.085504pt;}
.ls8f{letter-spacing:0.101536pt;}
.ls82{letter-spacing:0.248681pt;}
.ls65{letter-spacing:0.256233pt;}
.ls71{letter-spacing:0.265652pt;}
.ls6c{letter-spacing:0.268905pt;}
.ls8a{letter-spacing:0.271133pt;}
.ls4b{letter-spacing:0.284567pt;}
.ls4d{letter-spacing:0.303478pt;}
.ls6a{letter-spacing:0.308002pt;}
.ls55{letter-spacing:0.315330pt;}
.ls79{letter-spacing:0.321200pt;}
.ls78{letter-spacing:0.346502pt;}
.ls4e{letter-spacing:0.349576pt;}
.ls48{letter-spacing:0.373013pt;}
.ls69{letter-spacing:0.385003pt;}
.ls58{letter-spacing:0.395674pt;}
.ls51{letter-spacing:0.399931pt;}
.ls4a{letter-spacing:0.407622pt;}
.ls7c{letter-spacing:0.482059pt;}
.ls62{letter-spacing:0.489520pt;}
.ls7e{letter-spacing:0.505014pt;}
.ls5e{letter-spacing:0.512466pt;}
.ls86{letter-spacing:0.523172pt;}
.ls87{letter-spacing:0.542266pt;}
.ls47{letter-spacing:0.599350pt;}
.ls49{letter-spacing:0.603742pt;}
.ls53{letter-spacing:0.634506pt;}
.ls5b{letter-spacing:0.653054pt;}
.ls54{letter-spacing:0.665270pt;}
.ls72{letter-spacing:0.666055pt;}
.ls6f{letter-spacing:0.669905pt;}
.ls59{letter-spacing:0.714518pt;}
.ls7b{letter-spacing:0.803432pt;}
.ls5f{letter-spacing:0.810767pt;}
.ls7d{letter-spacing:0.840130pt;}
.ls8d{letter-spacing:0.859761pt;}
.ls4c{letter-spacing:0.926764pt;}
.ls3f{letter-spacing:1.687876pt;}
.ls56{letter-spacing:1.694199pt;}
.ls52{letter-spacing:1.868910pt;}
.ls43{letter-spacing:3.009972pt;}
.ls73{letter-spacing:3.499674pt;}
.ls83{letter-spacing:3.581011pt;}
.ls67{letter-spacing:3.583438pt;}
.ls5c{letter-spacing:3.679021pt;}
.ls4{letter-spacing:5.200000pt;}
.ls50{letter-spacing:5.814386pt;}
.lsd{letter-spacing:74.560000pt;}
.wsf6{word-spacing:-48.000000pt;}
.ws14b{word-spacing:-15.883888pt;}
.ws11b{word-spacing:-15.261395pt;}
.ws1fd{word-spacing:-14.856320pt;}
.ws1a1{word-spacing:-14.216921pt;}
.ws161{word-spacing:-14.215196pt;}
.ws184{word-spacing:-14.202748pt;}
.ws11c{word-spacing:-13.939299pt;}
.ws13b{word-spacing:-11.617235pt;}
.ws1a6{word-spacing:-11.456320pt;}
.ws159{word-spacing:-11.442525pt;}
.ws197{word-spacing:-11.439341pt;}
.ws145{word-spacing:-11.393869pt;}
.ws182{word-spacing:-11.369129pt;}
.ws138{word-spacing:-11.294214pt;}
.ws1ac{word-spacing:-11.139362pt;}
.ws15c{word-spacing:-11.121278pt;}
.ws199{word-spacing:-11.117969pt;}
.ws17e{word-spacing:-11.088077pt;}
.ws177{word-spacing:-11.075025pt;}
.ws137{word-spacing:-11.063484pt;}
.ws189{word-spacing:-11.049577pt;}
.ws143{word-spacing:-11.028927pt;}
.ws183{word-spacing:-11.011076pt;}
.ws140{word-spacing:-11.005802pt;}
.ws142{word-spacing:-10.982829pt;}
.ws13a{word-spacing:-10.975038pt;}
.ws17b{word-spacing:-10.948256pt;}
.ws121{word-spacing:-10.889664pt;}
.ws15f{word-spacing:-10.887991pt;}
.ws1a9{word-spacing:-10.887323pt;}
.ws19e{word-spacing:-10.884591pt;}
.ws17d{word-spacing:-10.456545pt;}
.ws162{word-spacing:-10.214901pt;}
.ws19c{word-spacing:-10.207412pt;}
.ws117{word-spacing:-9.823173pt;}
.ws91{word-spacing:-9.607680pt;}
.ws1fc{word-spacing:-9.604224pt;}
.ws118{word-spacing:-9.501463pt;}
.ws15d{word-spacing:-9.350593pt;}
.ws179{word-spacing:-9.292572pt;}
.ws1ab{word-spacing:-9.073405pt;}
.ws1a7{word-spacing:-9.065768pt;}
.ws19a{word-spacing:-8.776538pt;}
.ws188{word-spacing:-8.762661pt;}
.ws0{word-spacing:-7.383680pt;}
.ws1{word-spacing:-7.288064pt;}
.ws186{word-spacing:-7.103299pt;}
.ws4{word-spacing:-6.672000pt;}
.ws5{word-spacing:-6.612000pt;}
.ws146{word-spacing:-6.200170pt;}
.ws1a3{word-spacing:-5.697610pt;}
.ws158{word-spacing:-5.683019pt;}
.ws141{word-spacing:-5.635471pt;}
.ws1b9{word-spacing:-1.784985pt;}
.ws196{word-spacing:-1.667600pt;}
.ws136{word-spacing:-1.643806pt;}
.ws1b8{word-spacing:-0.594643pt;}
.ws1e4{word-spacing:-0.502336pt;}
.ws1e1{word-spacing:-0.438208pt;}
.ws80{word-spacing:-0.192384pt;}
.ws1e7{word-spacing:-0.181696pt;}
.ws33{word-spacing:-0.168480pt;}
.ws19{word-spacing:-0.160320pt;}
.ws126{word-spacing:-0.154976pt;}
.ws92{word-spacing:-0.149632pt;}
.wsac{word-spacing:-0.144288pt;}
.ws31{word-spacing:-0.138944pt;}
.ws26{word-spacing:-0.133600pt;}
.ws51{word-spacing:-0.128256pt;}
.wsaa{word-spacing:-0.122912pt;}
.ws64{word-spacing:-0.117568pt;}
.ws1b{word-spacing:-0.112224pt;}
.wsba{word-spacing:-0.106880pt;}
.ws9{word-spacing:-0.101536pt;}
.ws1a{word-spacing:-0.096192pt;}
.ws1df{word-spacing:-0.090848pt;}
.ws2{word-spacing:-0.085504pt;}
.ws1f2{word-spacing:-0.080160pt;}
.ws1ee{word-spacing:-0.074816pt;}
.ws202{word-spacing:-0.069472pt;}
.ws28{word-spacing:-0.064128pt;}
.ws29{word-spacing:-0.058784pt;}
.ws27{word-spacing:-0.053440pt;}
.ws1ea{word-spacing:-0.048096pt;}
.wsc{word-spacing:-0.046816pt;}
.wsb{word-spacing:-0.038304pt;}
.ws200{word-spacing:-0.037408pt;}
.ws8{word-spacing:-0.026720pt;}
.ws7{word-spacing:0.000000pt;}
.wsd{word-spacing:0.021280pt;}
.ws157{word-spacing:0.029665pt;}
.wsc9{word-spacing:0.037408pt;}
.ws100{word-spacing:0.038400pt;}
.ws1f9{word-spacing:0.053440pt;}
.wsf9{word-spacing:0.062400pt;}
.ws105{word-spacing:0.081600pt;}
.wsfe{word-spacing:0.086400pt;}
.ws102{word-spacing:0.124800pt;}
.ws6{word-spacing:0.129600pt;}
.ws103{word-spacing:0.134400pt;}
.ws38{word-spacing:0.134784pt;}
.ws10f{word-spacing:0.138944pt;}
.ws107{word-spacing:0.139200pt;}
.ws3e{word-spacing:0.144000pt;}
.ws154{word-spacing:0.148800pt;}
.ws34{word-spacing:0.149760pt;}
.ws8f{word-spacing:0.154976pt;}
.ws3d{word-spacing:0.157248pt;}
.ws175{word-spacing:0.158400pt;}
.ws65{word-spacing:0.160320pt;}
.ws32{word-spacing:0.160992pt;}
.ws190{word-spacing:0.163200pt;}
.ws35{word-spacing:0.164736pt;}
.wsf7{word-spacing:0.165664pt;}
.ws104{word-spacing:0.168000pt;}
.ws174{word-spacing:0.171008pt;}
.wsf8{word-spacing:0.172800pt;}
.ws108{word-spacing:0.177600pt;}
.ws12c{word-spacing:0.181696pt;}
.ws1de{word-spacing:0.182400pt;}
.ws66{word-spacing:0.187040pt;}
.ws109{word-spacing:0.187200pt;}
.wsff{word-spacing:0.192000pt;}
.ws101{word-spacing:0.196800pt;}
.ws3{word-spacing:0.229792pt;}
.wsa{word-spacing:0.370272pt;}
.wsc4{word-spacing:0.475616pt;}
.ws78{word-spacing:0.480960pt;}
.ws77{word-spacing:0.486304pt;}
.ws173{word-spacing:0.491648pt;}
.ws1eb{word-spacing:0.496992pt;}
.ws191{word-spacing:0.502336pt;}
.wsc3{word-spacing:0.507680pt;}
.ws1d4{word-spacing:0.790912pt;}
.wse6{word-spacing:0.796256pt;}
.wsa7{word-spacing:0.801600pt;}
.ws60{word-spacing:0.812288pt;}
.ws93{word-spacing:0.817632pt;}
.ws63{word-spacing:0.822976pt;}
.wsa6{word-spacing:0.844352pt;}
.ws176{word-spacing:0.965906pt;}
.ws195{word-spacing:1.032797pt;}
.wse7{word-spacing:1.127584pt;}
.ws62{word-spacing:1.132928pt;}
.ws2c{word-spacing:1.138272pt;}
.ws1f{word-spacing:1.143616pt;}
.wse8{word-spacing:1.148960pt;}
.ws2d{word-spacing:1.154304pt;}
.ws20{word-spacing:1.170336pt;}
.wsa8{word-spacing:1.437536pt;}
.ws1c0{word-spacing:1.442880pt;}
.ws41{word-spacing:1.448224pt;}
.wsa9{word-spacing:1.453568pt;}
.ws1cd{word-spacing:1.469600pt;}
.ws40{word-spacing:1.474944pt;}
.ws1e8{word-spacing:1.480288pt;}
.ws1e9{word-spacing:1.490976pt;}
.ws155{word-spacing:1.758176pt;}
.ws1e3{word-spacing:1.763520pt;}
.ws1cb{word-spacing:1.768864pt;}
.wsbe{word-spacing:1.774208pt;}
.ws1d6{word-spacing:1.779552pt;}
.wsb5{word-spacing:1.784896pt;}
.ws1e6{word-spacing:1.790240pt;}
.ws1ce{word-spacing:1.800928pt;}
.ws1e2{word-spacing:1.806272pt;}
.ws1cf{word-spacing:2.004000pt;}
.ws2f{word-spacing:2.073472pt;}
.wsd5{word-spacing:2.089504pt;}
.ws2e{word-spacing:2.094848pt;}
.ws112{word-spacing:2.105536pt;}
.ws1c1{word-spacing:2.116224pt;}
.ws1b5{word-spacing:2.121568pt;}
.ws70{word-spacing:2.372736pt;}
.wsa5{word-spacing:2.378080pt;}
.ws12{word-spacing:2.399456pt;}
.ws114{word-spacing:2.404800pt;}
.ws131{word-spacing:2.410144pt;}
.ws72{word-spacing:2.415488pt;}
.ws6f{word-spacing:2.420832pt;}
.ws4f{word-spacing:2.426176pt;}
.ws116{word-spacing:2.431520pt;}
.wsb3{word-spacing:2.447552pt;}
.wsbb{word-spacing:2.709408pt;}
.ws9c{word-spacing:2.720096pt;}
.ws94{word-spacing:2.730784pt;}
.ws95{word-spacing:2.736128pt;}
.ws10c{word-spacing:2.741472pt;}
.ws151{word-spacing:2.746816pt;}
.ws10d{word-spacing:2.752160pt;}
.wscd{word-spacing:2.757504pt;}
.ws147{word-spacing:2.934901pt;}
.ws44{word-spacing:3.056768pt;}
.ws5e{word-spacing:3.062112pt;}
.wsa0{word-spacing:3.067456pt;}
.ws45{word-spacing:3.072800pt;}
.ws1db{word-spacing:3.078144pt;}
.ws1d0{word-spacing:3.088832pt;}
.wsf3{word-spacing:3.094176pt;}
.wsa2{word-spacing:3.361376pt;}
.ws8e{word-spacing:3.366720pt;}
.ws56{word-spacing:3.372064pt;}
.ws8c{word-spacing:3.377408pt;}
.ws55{word-spacing:3.404128pt;}
.ws8d{word-spacing:3.420160pt;}
.wse0{word-spacing:3.676672pt;}
.ws3b{word-spacing:3.680352pt;}
.wscb{word-spacing:3.687360pt;}
.ws3c{word-spacing:3.687840pt;}
.ws81{word-spacing:3.692704pt;}
.ws156{word-spacing:3.703392pt;}
.wscc{word-spacing:3.708736pt;}
.ws79{word-spacing:3.714080pt;}
.ws7a{word-spacing:3.719424pt;}
.wsdf{word-spacing:3.730112pt;}
.ws85{word-spacing:3.986624pt;}
.ws1ca{word-spacing:3.991968pt;}
.wsc2{word-spacing:4.008000pt;}
.ws99{word-spacing:4.013344pt;}
.ws124{word-spacing:4.018688pt;}
.ws1c{word-spacing:4.024032pt;}
.ws61{word-spacing:4.029376pt;}
.ws86{word-spacing:4.034720pt;}
.ws1c9{word-spacing:4.040064pt;}
.ws1b1{word-spacing:4.269856pt;}
.ws1cc{word-spacing:4.323296pt;}
.ws9a{word-spacing:4.328640pt;}
.ws2a{word-spacing:4.333984pt;}
.ws6e{word-spacing:4.339328pt;}
.ws7f{word-spacing:4.344672pt;}
.ws1b0{word-spacing:4.360704pt;}
.wsca{word-spacing:4.366048pt;}
.ws1aa{word-spacing:4.574890pt;}
.ws18{word-spacing:4.622560pt;}
.ws97{word-spacing:4.633248pt;}
.ws1ad{word-spacing:4.638592pt;}
.ws4e{word-spacing:4.643936pt;}
.ws52{word-spacing:4.654624pt;}
.ws74{word-spacing:4.659968pt;}
.ws12b{word-spacing:4.665312pt;}
.wsd0{word-spacing:4.670656pt;}
.ws17{word-spacing:4.676000pt;}
.ws96{word-spacing:4.686688pt;}
.ws1f3{word-spacing:4.702720pt;}
.ws5f{word-spacing:4.948544pt;}
.wsf{word-spacing:4.953888pt;}
.ws4a{word-spacing:4.959232pt;}
.ws1c4{word-spacing:4.964576pt;}
.ws36{word-spacing:4.968288pt;}
.ws12a{word-spacing:4.969920pt;}
.ws37{word-spacing:4.972032pt;}
.ws49{word-spacing:4.975264pt;}
.wse{word-spacing:4.980608pt;}
.ws125{word-spacing:4.985952pt;}
.ws115{word-spacing:4.991296pt;}
.wsad{word-spacing:5.001984pt;}
.ws75{word-spacing:5.279872pt;}
.wsea{word-spacing:5.290560pt;}
.wsee{word-spacing:5.295904pt;}
.wsd1{word-spacing:5.301248pt;}
.wsd2{word-spacing:5.311936pt;}
.wsb9{word-spacing:5.317280pt;}
.ws16e{word-spacing:5.333312pt;}
.ws16c{word-spacing:5.595168pt;}
.ws16d{word-spacing:5.600512pt;}
.ws171{word-spacing:5.605856pt;}
.ws134{word-spacing:5.611200pt;}
.wse9{word-spacing:5.616544pt;}
.ws30{word-spacing:5.621888pt;}
.ws1c5{word-spacing:5.627232pt;}
.ws172{word-spacing:5.643264pt;}
.ws3a{word-spacing:5.904288pt;}
.wsdb{word-spacing:5.910464pt;}
.wse5{word-spacing:5.915808pt;}
.wsf5{word-spacing:5.921152pt;}
.wsc5{word-spacing:5.926496pt;}
.wsb2{word-spacing:5.937184pt;}
.wsda{word-spacing:5.942528pt;}
.ws6d{word-spacing:5.947872pt;}
.ws39{word-spacing:5.956704pt;}
.wsb8{word-spacing:5.958560pt;}
.ws135{word-spacing:6.225760pt;}
.ws1af{word-spacing:6.252480pt;}
.wsb4{word-spacing:6.263168pt;}
.wscf{word-spacing:6.268512pt;}
.wsf4{word-spacing:6.279200pt;}
.wseb{word-spacing:6.562432pt;}
.ws130{word-spacing:6.567776pt;}
.ws90{word-spacing:6.573120pt;}
.ws68{word-spacing:6.583808pt;}
.ws152{word-spacing:6.589152pt;}
.ws153{word-spacing:6.594496pt;}
.ws208{word-spacing:6.599840pt;}
.ws67{word-spacing:6.605184pt;}
.ws1bb{word-spacing:6.877728pt;}
.ws58{word-spacing:6.899104pt;}
.ws42{word-spacing:6.909792pt;}
.ws43{word-spacing:6.915136pt;}
.ws59{word-spacing:6.920480pt;}
.ws168{word-spacing:7.198368pt;}
.ws11{word-spacing:7.209056pt;}
.ws10{word-spacing:7.214400pt;}
.ws1c8{word-spacing:7.219744pt;}
.wsc6{word-spacing:7.225088pt;}
.ws169{word-spacing:7.241120pt;}
.ws16{word-spacing:7.497632pt;}
.wse1{word-spacing:7.524352pt;}
.ws1d5{word-spacing:7.529696pt;}
.ws5a{word-spacing:7.535040pt;}
.wsbc{word-spacing:7.540384pt;}
.wse2{word-spacing:7.545728pt;}
.ws1f1{word-spacing:7.551072pt;}
.wsef{word-spacing:7.818272pt;}
.ws18e{word-spacing:7.834304pt;}
.ws1c6{word-spacing:7.839648pt;}
.ws15{word-spacing:7.844992pt;}
.wsaf{word-spacing:7.850336pt;}
.ws1c7{word-spacing:7.866368pt;}
.ws1d7{word-spacing:7.877056pt;}
.wsae{word-spacing:7.893088pt;}
.ws1b7{word-spacing:7.903776pt;}
.ws88{word-spacing:8.149600pt;}
.ws89{word-spacing:8.187008pt;}
.ws128{word-spacing:8.475584pt;}
.wsb6{word-spacing:8.480928pt;}
.ws9f{word-spacing:8.486272pt;}
.ws127{word-spacing:8.491616pt;}
.ws164{word-spacing:8.502304pt;}
.ws76{word-spacing:8.507648pt;}
.wsb7{word-spacing:8.512992pt;}
.ws165{word-spacing:8.529024pt;}
.ws9b{word-spacing:8.801568pt;}
.ws71{word-spacing:8.812256pt;}
.ws4d{word-spacing:8.817600pt;}
.ws1e5{word-spacing:8.833632pt;}
.wsdd{word-spacing:9.127552pt;}
.wsde{word-spacing:9.132896pt;}
.ws10e{word-spacing:9.400096pt;}
.wsbf{word-spacing:9.437504pt;}
.wsc0{word-spacing:9.442848pt;}
.ws23{word-spacing:9.453536pt;}
.ws24{word-spacing:9.464224pt;}
.ws110{word-spacing:9.768832pt;}
.ws1bf{word-spacing:9.779520pt;}
.ws111{word-spacing:9.784864pt;}
.ws1b3{word-spacing:9.790208pt;}
.ws1b4{word-spacing:9.811584pt;}
.ws1ae{word-spacing:10.062752pt;}
.ws87{word-spacing:10.084128pt;}
.ws18d{word-spacing:10.089472pt;}
.ws48{word-spacing:10.100160pt;}
.ws54{word-spacing:10.105504pt;}
.ws47{word-spacing:10.110848pt;}
.ws53{word-spacing:10.116192pt;}
.ws18c{word-spacing:10.137568pt;}
.wsd6{word-spacing:10.394080pt;}
.ws10b{word-spacing:10.415456pt;}
.wsd7{word-spacing:10.420800pt;}
.ws8b{word-spacing:10.426144pt;}
.ws46{word-spacing:10.431488pt;}
.wsbd{word-spacing:10.452864pt;}
.ws57{word-spacing:10.714720pt;}
.ws73{word-spacing:10.730752pt;}
.ws14{word-spacing:10.741440pt;}
.ws20a{word-spacing:10.757472pt;}
.ws1d2{word-spacing:10.784192pt;}
.wsab{word-spacing:11.040704pt;}
.ws1c3{word-spacing:11.051392pt;}
.wsce{word-spacing:11.062080pt;}
.ws1d1{word-spacing:11.072768pt;}
.ws1d3{word-spacing:11.104832pt;}
.ws3f{word-spacing:11.361344pt;}
.ws7c{word-spacing:11.372032pt;}
.ws7b{word-spacing:11.393408pt;}
.ws1c2{word-spacing:11.404096pt;}
.ws9e{word-spacing:11.676640pt;}
.ws9d{word-spacing:11.698016pt;}
.ws1dd{word-spacing:11.707200pt;}
.ws1dc{word-spacing:11.712000pt;}
.wsdc{word-spacing:11.714048pt;}
.ws10a{word-spacing:11.997280pt;}
.ws84{word-spacing:12.018656pt;}
.ws83{word-spacing:12.333952pt;}
.ws82{word-spacing:12.344640pt;}
.wsd8{word-spacing:12.638560pt;}
.ws7e{word-spacing:12.643904pt;}
.ws1b6{word-spacing:12.659936pt;}
.wsd9{word-spacing:12.675968pt;}
.wsf0{word-spacing:12.948512pt;}
.ws12f{word-spacing:12.985920pt;}
.ws193{word-spacing:12.991264pt;}
.ws7d{word-spacing:12.996608pt;}
.ws194{word-spacing:13.007296pt;}
.ws5d{word-spacing:13.279840pt;}
.ws5c{word-spacing:13.290528pt;}
.ws1ba{word-spacing:13.295872pt;}
.ws21{word-spacing:13.301216pt;}
.ws22{word-spacing:13.306560pt;}
.ws18f{word-spacing:13.311904pt;}
.ws14d{word-spacing:13.557728pt;}
.ws14c{word-spacing:13.595136pt;}
.ws129{word-spacing:13.600480pt;}
.ws5b{word-spacing:13.621856pt;}
.ws6b{word-spacing:13.632544pt;}
.wsfb{word-spacing:13.920000pt;}
.wsa4{word-spacing:13.921120pt;}
.ws1f7{word-spacing:13.926464pt;}
.ws206{word-spacing:13.931808pt;}
.wsa3{word-spacing:13.942496pt;}
.ws25{word-spacing:13.958528pt;}
.ws1bc{word-spacing:14.236416pt;}
.ws2b{word-spacing:14.252448pt;}
.ws207{word-spacing:14.273824pt;}
.ws205{word-spacing:14.284512pt;}
.ws98{word-spacing:14.567744pt;}
.ws1ff{word-spacing:14.594464pt;}
.ws1fe{word-spacing:14.615840pt;}
.wsec{word-spacing:14.893728pt;}
.ws113{word-spacing:14.904416pt;}
.wsed{word-spacing:14.915104pt;}
.ws1f8{word-spacing:14.925792pt;}
.ws1b2{word-spacing:15.214368pt;}
.ws1be{word-spacing:15.225056pt;}
.ws122{word-spacing:15.518976pt;}
.ws123{word-spacing:15.551040pt;}
.ws1bd{word-spacing:15.572416pt;}
.ws170{word-spacing:15.839616pt;}
.wsa1{word-spacing:15.855648pt;}
.ws1f4{word-spacing:15.860992pt;}
.ws16f{word-spacing:16.176288pt;}
.ws1ec{word-spacing:16.181632pt;}
.ws1ed{word-spacing:16.203008pt;}
.ws69{word-spacing:16.491584pt;}
.ws1da{word-spacing:16.496928pt;}
.ws163{word-spacing:16.512960pt;}
.wse3{word-spacing:16.796192pt;}
.ws13{word-spacing:16.806880pt;}
.wse4{word-spacing:16.822912pt;}
.ws1f5{word-spacing:17.132864pt;}
.ws1f6{word-spacing:17.154240pt;}
.ws204{word-spacing:17.175616pt;}
.ws1e0{word-spacing:17.464192pt;}
.ws1d9{word-spacing:17.469536pt;}
.ws1d8{word-spacing:17.480224pt;}
.ws6a{word-spacing:19.687296pt;}
.ws209{word-spacing:19.697984pt;}
.ws203{word-spacing:19.730048pt;}
.ws167{word-spacing:20.269792pt;}
.wsc1{word-spacing:20.328576pt;}
.ws12e{word-spacing:20.339264pt;}
.ws201{word-spacing:20.376672pt;}
.wsfd{word-spacing:20.659200pt;}
.ws166{word-spacing:20.665248pt;}
.ws1d{word-spacing:21.295840pt;}
.ws1e{word-spacing:21.301184pt;}
.wsc8{word-spacing:21.616480pt;}
.ws50{word-spacing:21.921088pt;}
.ws8a{word-spacing:22.263104pt;}
.wsc7{word-spacing:22.583744pt;}
.ws18b{word-spacing:22.594432pt;}
.ws14e{word-spacing:22.899040pt;}
.ws18a{word-spacing:22.931104pt;}
.ws1ef{word-spacing:23.203648pt;}
.ws192{word-spacing:23.208992pt;}
.ws1f0{word-spacing:23.225024pt;}
.ws133{word-spacing:23.834240pt;}
.ws132{word-spacing:23.866304pt;}
.wsb1{word-spacing:24.170912pt;}
.ws14f{word-spacing:24.176256pt;}
.wsb0{word-spacing:24.186944pt;}
.ws16b{word-spacing:24.486208pt;}
.ws150{word-spacing:24.502240pt;}
.ws6c{word-spacing:25.132832pt;}
.wsd3{word-spacing:25.138176pt;}
.wsd4{word-spacing:25.448128pt;}
.ws19d{word-spacing:26.394654pt;}
.ws1fa{word-spacing:26.736032pt;}
.ws1fb{word-spacing:26.757408pt;}
.wsf2{word-spacing:29.595072pt;}
.wsf1{word-spacing:29.605760pt;}
.ws12d{word-spacing:29.627136pt;}
.ws4b{word-spacing:29.947776pt;}
.ws4c{word-spacing:29.958464pt;}
.ws1a0{word-spacing:30.649018pt;}
.ws11e{word-spacing:35.934569pt;}
.ws16a{word-spacing:36.969792pt;}
.ws13d{word-spacing:41.350590pt;}
.ws148{word-spacing:46.789389pt;}
.ws13e{word-spacing:47.322641pt;}
.ws11f{word-spacing:47.458839pt;}
.ws106{word-spacing:48.172800pt;}
.ws149{word-spacing:57.868256pt;}
.ws11d{word-spacing:63.465015pt;}
.ws19b{word-spacing:63.608859pt;}
.ws19f{word-spacing:65.426146pt;}
.ws13c{word-spacing:66.092494pt;}
.ws120{word-spacing:106.270076pt;}
.ws13f{word-spacing:106.889333pt;}
.ws14a{word-spacing:112.582645pt;}
.wsfa{word-spacing:112.737600pt;}
.ws180{word-spacing:117.903217pt;}
.ws181{word-spacing:118.372920pt;}
.ws1a2{word-spacing:129.124183pt;}
.ws15b{word-spacing:129.726568pt;}
.ws15a{word-spacing:134.870350pt;}
.ws1a5{word-spacing:140.003868pt;}
.ws178{word-spacing:140.306703pt;}
.ws1a4{word-spacing:140.313189pt;}
.wsfc{word-spacing:149.644800pt;}
.ws198{word-spacing:167.833119pt;}
.ws144{word-spacing:178.702428pt;}
.ws139{word-spacing:178.992333pt;}
.ws119{word-spacing:179.033833pt;}
.ws11a{word-spacing:184.463241pt;}
.ws185{word-spacing:207.004384pt;}
.ws187{word-spacing:234.216372pt;}
.ws15e{word-spacing:234.701791pt;}
.ws17a{word-spacing:244.445745pt;}
.ws160{word-spacing:251.980310pt;}
.ws1a8{word-spacing:257.072183pt;}
.ws17c{word-spacing:268.082454pt;}
.ws17f{word-spacing:308.937690pt;}
._1f{margin-left:-26.880320pt;}
._1d{margin-left:-23.358624pt;}
._20{margin-left:-20.478208pt;}
._1b{margin-left:-17.603136pt;}
._1c{margin-left:-16.320576pt;}
._1a{margin-left:-15.043360pt;}
._1e{margin-left:-14.081440pt;}
._21{margin-left:-10.880384pt;}
._17{margin-left:-8.721963pt;}
._12{margin-left:-6.848457pt;}
._11{margin-left:-5.654359pt;}
._6{margin-left:-4.160000pt;}
._14{margin-left:-3.260573pt;}
._13{margin-left:-2.106540pt;}
._0{margin-left:-1.137600pt;}
._3{width:0.919168pt;}
._10{width:2.174537pt;}
._15{width:3.604915pt;}
._e{width:5.116512pt;}
._f{width:6.228964pt;}
._18{width:7.714111pt;}
._7{width:61.119328pt;}
._16{width:86.013675pt;}
._d{width:129.172800pt;}
._8{width:280.728000pt;}
._19{width:283.504922pt;}
._b{width:294.643200pt;}
._9{width:321.312000pt;}
._c{width:347.371200pt;}
._a{width:358.660800pt;}
._4{width:436.147200pt;}
._5{width:483.840000pt;}
._2{width:543.360000pt;}
._1{width:672.427200pt;}
.fs6{font-size:24.000000pt;}
.fs4{font-size:26.560000pt;}
.fsb{font-size:32.961067pt;}
.fs8{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs15{font-size:38.187733pt;}
.fse{font-size:38.243733pt;}
.fs13{font-size:38.258667pt;}
.fsc{font-size:38.414933pt;}
.fsa{font-size:38.454933pt;}
.fs11{font-size:38.500267pt;}
.fs3{font-size:42.560000pt;}
.fs16{font-size:43.642667pt;}
.fsf{font-size:43.706133pt;}
.fs14{font-size:43.723733pt;}
.fsd{font-size:43.902400pt;}
.fs10{font-size:43.948800pt;}
.fs12{font-size:44.000000pt;}
.fs9{font-size:44.069867pt;}
.fs0{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:51.787067pt;}
.y58{bottom:97.787067pt;}
.y14c{bottom:99.947067pt;}
.y18f{bottom:100.489347pt;}
.y63{bottom:100.502459pt;}
.y86{bottom:100.505915pt;}
.y10c{bottom:106.027067pt;}
.y2f{bottom:111.227051pt;}
.y57{bottom:113.547067pt;}
.yb2{bottom:117.297131pt;}
.y87{bottom:118.895531pt;}
.y1d2{bottom:118.898363pt;}
.y128{bottom:118.987067pt;}
.ye7{bottom:119.946323pt;}
.y2e{bottom:121.947059pt;}
.y18e{bottom:123.449843pt;}
.y62{bottom:123.462955pt;}
.y85{bottom:123.466411pt;}
.y14b{bottom:124.187200pt;}
.yca{bottom:126.578627pt;}
.y10b{bottom:127.787067pt;}
.y2d{bottom:137.307067pt;}
.yb1{bottom:140.337787pt;}
.y127{bottom:140.826571pt;}
.y56{bottom:141.856027pt;}
.y1d1{bottom:141.858859pt;}
.ye6{bottom:142.906819pt;}
.y2c{bottom:143.387491pt;}
.y14a{bottom:146.027067pt;}
.y18d{bottom:146.490499pt;}
.y1ab{bottom:146.496755pt;}
.y61{bottom:146.503611pt;}
.yc9{bottom:149.539123pt;}
.y2b{bottom:154.187059pt;}
.y118{bottom:157.867067pt;}
.y84{bottom:162.507067pt;}
.yb0{bottom:163.298283pt;}
.y126{bottom:163.787067pt;}
.y1d0{bottom:164.819355pt;}
.y55{bottom:164.896683pt;}
.y1eb{bottom:164.903851pt;}
.ye5{bottom:165.947475pt;}
.y1aa{bottom:169.377091pt;}
.y18c{bottom:169.450995pt;}
.y60{bottom:169.464107pt;}
.y2a{bottom:169.547067pt;}
.yc8{bottom:172.579779pt;}
.y168{bottom:174.747067pt;}
.y29{bottom:177.067200pt;}
.y117{bottom:185.787209pt;}
.yaf{bottom:186.338939pt;}
.y83{bottom:187.777987pt;}
.ye4{bottom:187.787600pt;}
.y54{bottom:187.857179pt;}
.y1cf{bottom:187.860011pt;}
.y1ea{bottom:187.864347pt;}
.y18b{bottom:192.491651pt;}
.y1a9{bottom:192.496571pt;}
.y5f{bottom:192.504763pt;}
.y13d{bottom:192.587067pt;}
.yc7{bottom:195.540275pt;}
.y116{bottom:198.107427pt;}
.y28{bottom:202.583611pt;}
.y167{bottom:204.107247pt;}
.yae{bottom:209.299435pt;}
.y1e9{bottom:210.824843pt;}
.y82{bottom:210.897467pt;}
.y53{bottom:210.897835pt;}
.y1ce{bottom:210.900667pt;}
.y110{bottom:211.707855pt;}
.y108{bottom:215.387067pt;}
.y18a{bottom:215.452147pt;}
.y1a8{bottom:215.457067pt;}
.y5e{bottom:215.465259pt;}
.y166{bottom:216.347371pt;}
.yc6{bottom:218.580931pt;}
.y13c{bottom:220.747042pt;}
.y111{bottom:224.028074pt;}
.y27{bottom:225.624267pt;}
.y15f{bottom:231.387609pt;}
.yad{bottom:232.340091pt;}
.y13b{bottom:233.147015pt;}
.y10f{bottom:233.547895pt;}
.y1cd{bottom:233.781003pt;}
.y81{bottom:233.857963pt;}
.y52{bottom:233.858331pt;}
.y1e8{bottom:233.865499pt;}
.y112{bottom:234.987772pt;}
.y1a7{bottom:238.417563pt;}
.y189{bottom:238.492803pt;}
.y5d{bottom:238.505915pt;}
.yc5{bottom:241.541427pt;}
.y107{bottom:244.826103pt;}
.y113{bottom:247.227679pt;}
.y160{bottom:247.708092pt;}
.y138{bottom:248.267032pt;}
.y26{bottom:248.584763pt;}
.yac{bottom:255.300587pt;}
.y80{bottom:256.898619pt;}
.y51{bottom:256.898987pt;}
.y1cc{bottom:256.900483pt;}
.y1e7{bottom:256.906155pt;}
.y106{bottom:257.145772pt;}
.y15e{bottom:257.307533pt;}
.y10e{bottom:258.187376pt;}
.y139{bottom:259.306984pt;}
.y188{bottom:261.453299pt;}
.y1a6{bottom:261.458219pt;}
.y5c{bottom:261.466411pt;}
.y161{bottom:264.107814pt;}
.yc4{bottom:264.501923pt;}
.y13a{bottom:270.267047pt;}
.y114{bottom:270.427283pt;}
.yfb{bottom:270.906962pt;}
.y25{bottom:271.625419pt;}
.yab{bottom:278.341243pt;}
.y136{bottom:278.507067pt;}
.y7f{bottom:279.859115pt;}
.y50{bottom:279.859483pt;}
.y1cb{bottom:279.860979pt;}
.y1e6{bottom:279.866651pt;}
.y162{bottom:280.507536pt;}
.y137{bottom:281.306999pt;}
.y115{bottom:281.386981pt;}
.yfc{bottom:283.226631pt;}
.y10d{bottom:284.107067pt;}
.y187{bottom:284.493955pt;}
.y1a5{bottom:284.498875pt;}
.yc3{bottom:287.542579pt;}
.yfa{bottom:294.186412pt;}
.y24{bottom:294.585915pt;}
.y163{bottom:296.828019pt;}
.yfd{bottom:296.986860pt;}
.y5b{bottom:300.507067pt;}
.yaa{bottom:301.301739pt;}
.y1ca{bottom:302.821475pt;}
.y7e{bottom:302.899771pt;}
.y4f{bottom:302.900139pt;}
.y1e5{bottom:302.907307pt;}
.y1a4{bottom:307.379211pt;}
.y186{bottom:307.454451pt;}
.yfe{bottom:309.306529pt;}
.yc2{bottom:310.503075pt;}
.y164{bottom:313.227741pt;}
.yf9{bottom:317.546533pt;}
.y23{bottom:317.626571pt;}
.y15d{bottom:320.027067pt;}
.yff{bottom:322.986087pt;}
.ya9{bottom:324.342395pt;}
.y5a{bottom:325.783147pt;}
.y7d{bottom:325.860267pt;}
.y4e{bottom:325.860635pt;}
.y1c9{bottom:325.862131pt;}
.y1e4{bottom:325.867803pt;}
.y125{bottom:326.107067pt;}
.y10a{bottom:329.386800pt;}
.y165{bottom:329.548223pt;}
.y185{bottom:330.495107pt;}
.y1a3{bottom:330.498691pt;}
.yc1{bottom:333.543731pt;}
.y100{bottom:336.746316pt;}
.ya8{bottom:347.302891pt;}
.y124{bottom:347.945131pt;}
.y59{bottom:348.822467pt;}
.y1e3{bottom:348.828299pt;}
.y7c{bottom:348.900923pt;}
.y4d{bottom:348.901291pt;}
.y1c8{bottom:348.902787pt;}
.y101{bottom:349.065985pt;}
.y109{bottom:350.107200pt;}
.y184{bottom:353.455603pt;}
.y1a2{bottom:353.459187pt;}
.yc0{bottom:356.504227pt;}
.y22{bottom:356.587067pt;}
.y102{bottom:362.826214pt;}
.y149{bottom:368.427067pt;}
.ya7{bottom:370.343547pt;}
.y123{bottom:370.905627pt;}
.y1c7{bottom:371.783123pt;}
.y7b{bottom:371.861419pt;}
.y4c{bottom:371.861787pt;}
.y1e2{bottom:371.867619pt;}
.yf7{bottom:372.427067pt;}
.y103{bottom:375.145884pt;}
.y1a1{bottom:376.419683pt;}
.y183{bottom:376.496259pt;}
.ybf{bottom:379.544883pt;}
.y21{bottom:381.941891pt;}
.y104{bottom:388.906113pt;}
.y148{bottom:390.185787pt;}
.ya6{bottom:393.304043pt;}
.y122{bottom:393.946283pt;}
.y7a{bottom:394.821915pt;}
.y4b{bottom:394.822283pt;}
.y1c6{bottom:394.823779pt;}
.y1e1{bottom:394.828115pt;}
.yf8{bottom:395.706516pt;}
.y182{bottom:399.456755pt;}
.y1a0{bottom:399.460339pt;}
.y105{bottom:401.225782pt;}
.ybe{bottom:402.505379pt;}
.y20{bottom:404.982547pt;}
.y147{bottom:413.226443pt;}
.ya5{bottom:416.344699pt;}
.y121{bottom:416.906779pt;}
.y1e0{bottom:417.788611pt;}
.y79{bottom:417.861235pt;}
.y4a{bottom:417.861603pt;}
.y1c5{bottom:417.863099pt;}
.y19f{bottom:422.340675pt;}
.y181{bottom:422.417251pt;}
.ybd{bottom:425.546035pt;}
.y1f{bottom:427.862883pt;}
.y146{bottom:436.186939pt;}
.ya4{bottom:439.305195pt;}
.y120{bottom:439.947435pt;}
.y1c4{bottom:440.743435pt;}
.y78{bottom:440.821731pt;}
.y49{bottom:440.822099pt;}
.y1df{bottom:440.827931pt;}
.y180{bottom:445.457907pt;}
.y19e{bottom:445.460155pt;}
.ybc{bottom:448.506531pt;}
.ye3{bottom:449.067200pt;}
.y1e{bottom:450.903539pt;}
.y145{bottom:459.226259pt;}
.ya3{bottom:462.345851pt;}
.y11f{bottom:462.907931pt;}
.y77{bottom:463.861051pt;}
.y48{bottom:463.861419pt;}
.y1c3{bottom:463.862915pt;}
.y1de{bottom:463.867251pt;}
.y17f{bottom:468.418403pt;}
.y19d{bottom:468.420651pt;}
.ye2{bottom:470.904451pt;}
.ybb{bottom:471.545851pt;}
.y1d{bottom:473.864035pt;}
.y144{bottom:482.186755pt;}
.ya2{bottom:485.306347pt;}
.y11e{bottom:485.947251pt;}
.y1dd{bottom:486.747587pt;}
.y76{bottom:486.821547pt;}
.y47{bottom:486.821915pt;}
.y1c2{bottom:486.823411pt;}
.y19c{bottom:491.381147pt;}
.y17e{bottom:491.457723pt;}
.ye1{bottom:493.864947pt;}
.yba{bottom:494.506347pt;}
.y1c{bottom:496.904691pt;}
.y143{bottom:505.226075pt;}
.ya1{bottom:508.266843pt;}
.y11d{bottom:508.907747pt;}
.y1c1{bottom:509.783907pt;}
.y75{bottom:509.862203pt;}
.y46{bottom:509.862571pt;}
.y1dc{bottom:509.862731pt;}
.y17d{bottom:514.418219pt;}
.y19b{bottom:514.421803pt;}
.ye0{bottom:516.904267pt;}
.yb9{bottom:517.547003pt;}
.y1b{bottom:519.865187pt;}
.y142{bottom:528.186571pt;}
.ya0{bottom:531.227339pt;}
.y11c{bottom:531.947067pt;}
.y74{bottom:532.822699pt;}
.y45{bottom:532.823067pt;}
.y1c0{bottom:532.823227pt;}
.y17c{bottom:537.458875pt;}
.y19a{bottom:537.462459pt;}
.ydf{bottom:539.864763pt;}
.yb8{bottom:540.507499pt;}
.y1a{bottom:542.905843pt;}
.y141{bottom:551.147067pt;}
.y11b{bottom:553.787067pt;}
.y9f{bottom:554.187835pt;}
.y1db{bottom:555.783723pt;}
.y73{bottom:555.862019pt;}
.y44{bottom:555.862387pt;}
.y1bf{bottom:555.862547pt;}
.y17b{bottom:560.419371pt;}
.y199{bottom:560.422955pt;}
.yde{bottom:562.905419pt;}
.yb7{bottom:563.546819pt;}
.y19{bottom:565.866339pt;}
.y140{bottom:573.067067pt;}
.y11a{bottom:575.627067pt;}
.y9e{bottom:577.227155pt;}
.y72{bottom:578.822515pt;}
.y43{bottom:578.822883pt;}
.y1be{bottom:578.823043pt;}
.y17a{bottom:583.460027pt;}
.y198{bottom:583.463611pt;}
.ydd{bottom:585.865915pt;}
.yb6{bottom:586.507315pt;}
.y18{bottom:588.905659pt;}
.y13f{bottom:594.907067pt;}
.y9d{bottom:599.227067pt;}
.y1da{bottom:601.783539pt;}
.y71{bottom:601.863171pt;}
.y42{bottom:601.863539pt;}
.y1bd{bottom:601.863699pt;}
.y135{bottom:605.787067pt;}
.y179{bottom:606.420523pt;}
.y197{bottom:606.424107pt;}
.yb5{bottom:608.427067pt;}
.ydc{bottom:608.906571pt;}
.y17{bottom:611.866155pt;}
.y9c{bottom:622.907067pt;}
.y70{bottom:624.823667pt;}
.y41{bottom:624.824035pt;}
.y1bc{bottom:624.824195pt;}
.y15c{bottom:624.907067pt;}
.y196{bottom:629.384603pt;}
.y178{bottom:629.459843pt;}
.yb4{bottom:630.187067pt;}
.ydb{bottom:631.867067pt;}
.y134{bottom:633.948208pt;}
.y16{bottom:634.985635pt;}
.y9b{bottom:644.586667pt;}
.y133{bottom:646.267877pt;}
.y1bb{bottom:647.784691pt;}
.y6f{bottom:647.862987pt;}
.y40{bottom:647.863355pt;}
.y195{bottom:652.345099pt;}
.y177{bottom:652.420339pt;}
.y15b{bottom:652.828494pt;}
.yda{bottom:653.786267pt;}
.y15{bottom:657.865971pt;}
.yd7{bottom:659.067067pt;}
.y12d{bottom:660.028106pt;}
.y15a{bottom:665.148741pt;}
.y9a{bottom:665.307067pt;}
.y6e{bottom:670.823483pt;}
.y3f{bottom:670.823851pt;}
.y1ba{bottom:670.825347pt;}
.yd9{bottom:674.506667pt;}
.y194{bottom:675.385755pt;}
.y176{bottom:675.460995pt;}
.y12e{bottom:677.868001pt;}
.y151{bottom:680.187266pt;}
.y12c{bottom:680.587779pt;}
.y14{bottom:680.906627pt;}
.y99{bottom:687.067067pt;}
.yd6{bottom:687.388645pt;}
.y12a{bottom:690.267382pt;}
.y152{bottom:691.067075pt;}
.y6d{bottom:693.864139pt;}
.y3e{bottom:693.864507pt;}
.y1b9{bottom:693.866003pt;}
.y12f{bottom:695.707896pt;}
.y175{bottom:698.421491pt;}
.y193{bottom:698.426411pt;}
.yd5{bottom:701.148360pt;}
.y150{bottom:703.387322pt;}
.y13{bottom:703.867123pt;}
.y98{bottom:710.107067pt;}
.yf6{bottom:710.907067pt;}
.y130{bottom:713.547792pt;}
.y153{bottom:714.347473pt;}
.y1b8{bottom:716.746339pt;}
.y6c{bottom:716.824635pt;}
.y3d{bottom:716.825003pt;}
.yce{bottom:717.626083pt;}
.y174{bottom:721.462147pt;}
.y192{bottom:721.467067pt;}
.yf5{bottom:726.026726pt;}
.y154{bottom:726.587377pt;}
.y12{bottom:726.906443pt;}
.y131{bottom:731.467398pt;}
.y97{bottom:731.787067pt;}
.ycd{bottom:732.826881pt;}
.ycf{bottom:734.186437pt;}
.y14f{bottom:736.187433pt;}
.yf4{bottom:738.426519pt;}
.y155{bottom:738.907624pt;}
.y6b{bottom:739.865291pt;}
.y3c{bottom:739.865659pt;}
.y1b7{bottom:739.865819pt;}
.y12b{bottom:741.067289pt;}
.y191{bottom:743.226667pt;}
.y129{bottom:743.787067pt;}
.y173{bottom:744.422643pt;}
.yd0{bottom:749.306808pt;}
.y132{bottom:749.307293pt;}
.y11{bottom:749.866939pt;}
.y156{bottom:749.867776pt;}
.yec{bottom:752.106862pt;}
.y96{bottom:753.467067pt;}
.y14d{bottom:762.187067pt;}
.y157{bottom:762.188023pt;}
.y1f3{bottom:762.824979pt;}
.y6a{bottom:762.825787pt;}
.y3b{bottom:762.826155pt;}
.y1b6{bottom:762.826315pt;}
.y190{bottom:763.947067pt;}
.yeb{bottom:765.866998pt;}
.yd1{bottom:765.867162pt;}
.y172{bottom:767.463299pt;}
.ye8{bottom:769.947067pt;}
.y10{bottom:772.906259pt;}
.y158{bottom:773.067831pt;}
.y95{bottom:775.065867pt;}
.yed{bottom:778.186998pt;}
.ycc{bottom:782.347089pt;}
.y14e{bottom:782.666931pt;}
.y159{bottom:785.388079pt;}
.y1b5{bottom:785.786811pt;}
.y1f2{bottom:785.864299pt;}
.y69{bottom:785.865107pt;}
.y3a{bottom:785.865475pt;}
.y119{bottom:787.067067pt;}
.y171{bottom:790.423795pt;}
.y94{bottom:795.786267pt;}
.yf{bottom:795.866755pt;}
.y92{bottom:795.947067pt;}
.yd2{bottom:798.907443pt;}
.yee{bottom:802.906790pt;}
.y1f1{bottom:808.824795pt;}
.y68{bottom:808.825603pt;}
.y39{bottom:808.825971pt;}
.y1d9{bottom:808.826131pt;}
.y1b4{bottom:808.827467pt;}
.y170{bottom:813.464451pt;}
.yd3{bottom:815.467797pt;}
.y93{bottom:816.506667pt;}
.ye{bottom:818.906075pt;}
.yef{bottom:827.626583pt;}
.ycb{bottom:830.587067pt;}
.y1d8{bottom:831.786627pt;}
.y1f0{bottom:831.865451pt;}
.y67{bottom:831.866259pt;}
.y38{bottom:831.866627pt;}
.y1b3{bottom:831.868123pt;}
.yd4{bottom:831.947724pt;}
.y13e{bottom:833.067067pt;}
.y16f{bottom:836.424947pt;}
.y91{bottom:838.186267pt;}
.y8f{bottom:838.266667pt;}
.ye9{bottom:838.666994pt;}
.yd{bottom:841.866571pt;}
.yf0{bottom:853.786512pt;}
.y89{bottom:854.746963pt;}
.y1b2{bottom:854.748459pt;}
.y1d7{bottom:854.825947pt;}
.y66{bottom:854.826755pt;}
.y37{bottom:854.827123pt;}
.y90{bottom:858.906667pt;}
.y8e{bottom:858.987067pt;}
.y16e{bottom:859.465603pt;}
.yc{bottom:864.827587pt;}
.y1d6{bottom:877.706283pt;}
.y88{bottom:877.707459pt;}
.y1ef{bottom:877.786443pt;}
.y65{bottom:877.787251pt;}
.y36{bottom:877.787619pt;}
.y1b1{bottom:877.787779pt;}
.yf1{bottom:878.506305pt;}
.yb3{bottom:878.987067pt;}
.y8d{bottom:880.587467pt;}
.y16d{bottom:882.426099pt;}
.yb{bottom:887.947067pt;}
.y1ee{bottom:900.746939pt;}
.y1d5{bottom:900.825763pt;}
.y64{bottom:900.826571pt;}
.y35{bottom:900.826939pt;}
.y1b0{bottom:900.827099pt;}
.y8c{bottom:901.387067pt;}
.yf2{bottom:904.586441pt;}
.ya{bottom:905.146187pt;}
.y16c{bottom:905.386595pt;}
.y9{bottom:919.866627pt;}
.y8b{bottom:922.027059pt;}
.y1af{bottom:923.707435pt;}
.y1d4{bottom:923.786259pt;}
.yea{bottom:923.786989pt;}
.y34{bottom:923.787435pt;}
.y1ed{bottom:923.787595pt;}
.y16b{bottom:928.427251pt;}
.yf3{bottom:929.306233pt;}
.y8{bottom:934.586627pt;}
.y1d3{bottom:946.746755pt;}
.y8a{bottom:946.747067pt;}
.y1ec{bottom:946.748091pt;}
.y33{bottom:946.826755pt;}
.y1ae{bottom:946.826915pt;}
.y7{bottom:949.307067pt;}
.y16a{bottom:951.387747pt;}
.y6{bottom:969.705915pt;}
.y32{bottom:969.787251pt;}
.y1ad{bottom:969.787411pt;}
.yd8{bottom:970.987067pt;}
.y169{bottom:990.427067pt;}
.y5{bottom:992.746571pt;}
.y31{bottom:992.826571pt;}
.y1ac{bottom:992.826731pt;}
.y4{bottom:1015.707067pt;}
.y30{bottom:1015.787067pt;}
.y2{bottom:1048.667067pt;}
.y1{bottom:1063.787067pt;}
.ha{height:25.031250pt;}
.h14{height:34.377363pt;}
.hb{height:39.048750pt;}
.h22{height:39.828612pt;}
.h18{height:39.887019pt;}
.h1f{height:39.902594pt;}
.h15{height:40.065575pt;}
.h11{height:40.107294pt;}
.h1c{height:40.154575pt;}
.h7{height:44.388750pt;}
.h24{height:45.517937pt;}
.h12{height:45.548667pt;}
.h1a{height:45.584131pt;}
.h21{height:45.602487pt;}
.h17{height:45.788831pt;}
.h1b{height:45.837225pt;}
.h1e{height:45.890625pt;}
.he{height:45.963494pt;}
.h1{height:47.085938pt;}
.h5{height:49.141250pt;}
.h6{height:49.143010pt;}
.hd{height:50.062500pt;}
.h2{height:52.448437pt;}
.h10{height:55.734117pt;}
.h4{height:55.736250pt;}
.h8{height:57.442764pt;}
.hc{height:62.603528pt;}
.h25{height:62.622344pt;}
.h3{height:62.812500pt;}
.h9{height:64.500000pt;}
.h23{height:88.789105pt;}
.h19{height:89.167894pt;}
.h20{height:89.183582pt;}
.h16{height:89.344251pt;}
.h13{height:89.706467pt;}
.h1d{height:89.754469pt;}
.hf{height:101.002350pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x1{left:113.440000pt;}
.x3{left:136.480000pt;}
.x42{left:176.480000pt;}
.x35{left:181.840000pt;}
.xa{left:193.600176pt;}
.x12{left:201.839353pt;}
.x11{left:207.279778pt;}
.x48{left:213.840216pt;}
.x1e{left:215.280698pt;}
.x47{left:219.280598pt;}
.x1d{left:220.721110pt;}
.x34{left:222.480000pt;}
.x26{left:225.760139pt;}
.x25{left:231.280365pt;}
.x18{left:232.240000pt;}
.x4f{left:237.840202pt;}
.x43{left:240.240000pt;}
.x4e{left:243.360238pt;}
.x49{left:246.640327pt;}
.xd{left:247.840000pt;}
.x2f{left:249.839249pt;}
.x17{left:254.240000pt;}
.x2e{left:255.279420pt;}
.x39{left:256.480003pt;}
.xe{left:260.720000pt;}
.x38{left:261.919558pt;}
.x13{left:263.519538pt;}
.x27{left:269.519550pt;}
.x1b{left:274.080214pt;}
.x4c{left:276.720000pt;}
.x22{left:280.480290pt;}
.x9{left:285.360000pt;}
.x30{left:286.798949pt;}
.x31{left:288.158513pt;}
.x4{left:290.559544pt;}
.x3a{left:294.879571pt;}
.x3b{left:296.239459pt;}
.x3f{left:298.959571pt;}
.x2b{left:300.560000pt;}
.x37{left:308.639800pt;}
.x44{left:323.199745pt;}
.xc{left:324.880000pt;}
.xf{left:329.279492pt;}
.x1a{left:338.479730pt;}
.x21{left:348.880000pt;}
.x3e{left:353.680000pt;}
.x2c{left:356.719966pt;}
.x33{left:360.880000pt;}
.x16{left:367.680000pt;}
.x2{left:372.880000pt;}
.x20{left:378.160000pt;}
.x45{left:384.719681pt;}
.x14{left:388.239464pt;}
.x1f{left:393.200138pt;}
.x40{left:394.639471pt;}
.x2a{left:396.720000pt;}
.x50{left:398.000510pt;}
.xb{left:399.919600pt;}
.x10{left:401.918751pt;}
.x28{left:404.959080pt;}
.x19{left:409.680000pt;}
.x4d{left:413.120943pt;}
.x3c{left:414.238610pt;}
.x2d{left:415.679374pt;}
.x23{left:417.279710pt;}
.x36{left:429.359688pt;}
.x4a{left:432.639617pt;}
.x46{left:453.119482pt;}
.x1c{left:471.279996pt;}
.x24{left:487.039308pt;}
.x4b{left:495.518692pt;}
.x41{left:499.919413pt;}
.x32{left:514.397923pt;}
.x15{left:523.919566pt;}
.x3d{left:529.518944pt;}
.x29{left:536.238273pt;}
.x7{left:550.560080pt;}
.x8{left:555.920512pt;}
.x6{left:575.680056pt;}
.x5{left:591.840000pt;}
}




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