
    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_03d313686a61d747e20881cd.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_a5e1e3aa726565ad402314a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_f6a54d48acd6a440787a6b75.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_e6a9029450729140d02b56de.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.890000;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_b6aecce1b99103b8c3f39843.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.705000;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_79b8e44f8bb3489a5f74c0d1.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_09dd0212334baf084f8af584.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.921000;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_090bfe0b531d5b300368f58f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;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_cc29b2da63e3c9a8269e6bce.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_368b41889d13706a3140e0d8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_6f84f04d6a2baa01f9e47749.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.535000;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:ffc;src:url('chunks/assets/font_044475660f2ffe09a331a32d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.694000;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:ffd;src:url('chunks/assets/font_1df862bbefba55c2b1986a4a.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.693000;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:ffe;src:url('chunks/assets/font_7eeebef95a888d20c273defd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.694000;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:fff;src:url('chunks/assets/font_0256e8ad168931a1d7fdcee6.woff2')format("woff");}.fff{font-family:fff;line-height:0.694000;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:ff10;src:url('chunks/assets/font_c9a256eab5b5c79b9760ecc5.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.888000;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:ff11;src:url('chunks/assets/font_795993d8a8c22744417a2a04.woff2')format("woff");}.ff11{font-family:ff11;line-height:2.399000;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:ff12;src:url('chunks/assets/font_38765254e97f9c5d7a98ade0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000000;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:ff13;src:url('chunks/assets/font_7f1c536b337a4b533cd16541.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.696000;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:ff14;src:url('chunks/assets/font_7582ae7678e466bbc5bebfd0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.703450;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:ff15;src:url('chunks/assets/font_071477948b5f765ea061cc69.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.001000;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:ff16;src:url('chunks/assets/font_1d1e7158cf94e0d1773be177.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.052000;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);}
.v19{vertical-align:-40.332000px;}
.v3{vertical-align:-8.970000px;}
.v16{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:2.988000px;}
.v1{vertical-align:14.448000px;}
.v7{vertical-align:17.430000px;}
.v2{vertical-align:21.690000px;}
.vb{vertical-align:24.684000px;}
.v11{vertical-align:27.498000px;}
.vc{vertical-align:31.476000px;}
.ve{vertical-align:32.880000px;}
.v13{vertical-align:35.268000px;}
.v10{vertical-align:36.468000px;}
.va{vertical-align:40.440000px;}
.v8{vertical-align:41.844000px;}
.v15{vertical-align:45.576000px;}
.v4{vertical-align:66.348000px;}
.v5{vertical-align:68.742000px;}
.v14{vertical-align:75.738000px;}
.vf{vertical-align:84.288000px;}
.v18{vertical-align:104.130000px;}
.vd{vertical-align:109.746000px;}
.v1a{vertical-align:112.224000px;}
.v17{vertical-align:113.844000px;}
.v9{vertical-align:117.876000px;}
.v12{vertical-align:119.556000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000062px;}
.ls2f{letter-spacing:0.000065px;}
.ls59{letter-spacing:0.000538px;}
.ls19{letter-spacing:0.000564px;}
.ls6f{letter-spacing:0.000588px;}
.ls8d{letter-spacing:0.000993px;}
.ls81{letter-spacing:0.001002px;}
.ls71{letter-spacing:0.001250px;}
.ls43{letter-spacing:0.001545px;}
.ls68{letter-spacing:0.001708px;}
.ls3c{letter-spacing:0.001861px;}
.ls20{letter-spacing:0.002012px;}
.ls8a{letter-spacing:0.002015px;}
.ls66{letter-spacing:0.002023px;}
.ls28{letter-spacing:0.002338px;}
.ls5d{letter-spacing:0.002685px;}
.ls21{letter-spacing:0.003093px;}
.ls70{letter-spacing:0.003748px;}
.ls96{letter-spacing:0.004200px;}
.ls62{letter-spacing:0.004896px;}
.ls8f{letter-spacing:0.221549px;}
.ls6e{letter-spacing:0.573748px;}
.ls12{letter-spacing:0.950338px;}
.ls8{letter-spacing:0.950789px;}
.ls86{letter-spacing:1.880823px;}
.ls41{letter-spacing:2.352538px;}
.ls2d{letter-spacing:2.403093px;}
.lsd{letter-spacing:2.933096px;}
.ls0{letter-spacing:2.964877px;}
.ls13{letter-spacing:2.984525px;}
.ls44{letter-spacing:2.986087px;}
.ls79{letter-spacing:2.986766px;}
.ls76{letter-spacing:2.987675px;}
.ls77{letter-spacing:2.988017px;}
.ls74{letter-spacing:2.988532px;}
.ls2{letter-spacing:2.988780px;}
.ls25{letter-spacing:2.990525px;}
.ls47{letter-spacing:2.992087px;}
.ls7a{letter-spacing:2.992766px;}
.ls80{letter-spacing:3.085292px;}
.ls4d{letter-spacing:3.320172px;}
.ls7d{letter-spacing:3.870378px;}
.ls18{letter-spacing:4.486454px;}
.ls27{letter-spacing:5.921096px;}
.ls8c{letter-spacing:6.433866px;}
.ls7f{letter-spacing:7.175510px;}
.ls15{letter-spacing:7.474454px;}
.ls5{letter-spacing:8.799960px;}
.ls4f{letter-spacing:8.800677px;}
.ls38{letter-spacing:8.805093px;}
.ls40{letter-spacing:8.875690px;}
.ls75{letter-spacing:9.213748px;}
.ls83{letter-spacing:9.215510px;}
.ls53{letter-spacing:9.426479px;}
.ls58{letter-spacing:9.956338px;}
.ls5b{letter-spacing:9.958438px;}
.ls26{letter-spacing:9.962338px;}
.ls4e{letter-spacing:9.963269px;}
.ls14{letter-spacing:10.916338px;}
.ls7e{letter-spacing:12.204248px;}
.ls1e{letter-spacing:13.278538px;}
.ls7{letter-spacing:13.284538px;}
.ls4b{letter-spacing:13.286172px;}
.ls6{letter-spacing:13.287093px;}
.ls1f{letter-spacing:14.240789px;}
.ls95{letter-spacing:14.981549px;}
.ls6d{letter-spacing:15.355559px;}
.ls6c{letter-spacing:15.356759px;}
.ls5a{letter-spacing:16.599960px;}
.ls4{letter-spacing:16.602538px;}
.ls5e{letter-spacing:16.604401px;}
.ls67{letter-spacing:16.606438px;}
.ls8b{letter-spacing:16.823549px;}
.ls51{letter-spacing:17.133411px;}
.ls65{letter-spacing:18.321093px;}
.ls3{letter-spacing:18.327093px;}
.ls90{letter-spacing:18.747415px;}
.ls7b{letter-spacing:19.094425px;}
.ls2e{letter-spacing:19.263093px;}
.ls2c{letter-spacing:19.318583px;}
.ls30{letter-spacing:19.388891px;}
.ls3b{letter-spacing:19.459690px;}
.ls93{letter-spacing:19.535549px;}
.ls1c{letter-spacing:20.474789px;}
.ls91{letter-spacing:20.675549px;}
.ls6b{letter-spacing:20.919960px;}
.ls6a{letter-spacing:20.923708px;}
.ls34{letter-spacing:20.925093px;}
.ls42{letter-spacing:21.535690px;}
.ls32{letter-spacing:21.877870px;}
.ls94{letter-spacing:22.397549px;}
.ls4c{letter-spacing:22.706891px;}
.ls39{letter-spacing:22.789876px;}
.ls46{letter-spacing:22.795876px;}
.ls3a{letter-spacing:23.778538px;}
.ls97{letter-spacing:24.587549px;}
.ls4a{letter-spacing:24.730087px;}
.ls1b{letter-spacing:25.167411px;}
.ls78{letter-spacing:25.658172px;}
.ls52{letter-spacing:26.024891px;}
.ls1d{letter-spacing:26.505954px;}
.ls57{letter-spacing:27.554172px;}
.ls24{letter-spacing:27.651093px;}
.ls2a{letter-spacing:27.653607px;}
.ls49{letter-spacing:29.870172px;}
.ls2b{letter-spacing:29.878033px;}
.ls3f{letter-spacing:30.352454px;}
.ls56{letter-spacing:32.090172px;}
.ls3e{letter-spacing:32.304479px;}
.ls35{letter-spacing:34.059093px;}
.ls85{letter-spacing:34.654868px;}
.ls88{letter-spacing:36.615411px;}
.ls89{letter-spacing:36.618538px;}
.lsa{letter-spacing:36.735960px;}
.lsb{letter-spacing:36.737607px;}
.ls29{letter-spacing:37.068479px;}
.ls87{letter-spacing:37.170305px;}
.ls8e{letter-spacing:37.247139px;}
.ls1a{letter-spacing:37.810033px;}
.lse{letter-spacing:39.268454px;}
.ls10{letter-spacing:39.832583px;}
.ls55{letter-spacing:41.600172px;}
.ls33{letter-spacing:41.936891px;}
.lsf{letter-spacing:42.073690px;}
.ls16{letter-spacing:42.350338px;}
.ls17{letter-spacing:42.353607px;}
.ls11{letter-spacing:43.701093px;}
.ls69{letter-spacing:45.314338px;}
.ls7c{letter-spacing:53.551559px;}
.ls73{letter-spacing:62.760532px;}
.ls72{letter-spacing:62.766532px;}
.ls61{letter-spacing:73.276200px;}
.ls5f{letter-spacing:76.262525px;}
.ls63{letter-spacing:76.268525px;}
.ls82{letter-spacing:78.419017px;}
.ls60{letter-spacing:86.794171px;}
.ls22{letter-spacing:97.300980px;}
.ls36{letter-spacing:99.300354px;}
.ls50{letter-spacing:104.336891px;}
.ls5c{letter-spacing:137.810338px;}
.ls64{letter-spacing:217.490338px;}
.ls84{letter-spacing:219.150557px;}
.ls23{letter-spacing:292.928338px;}
.ls3d{letter-spacing:309.494338px;}
.ls48{letter-spacing:354.530338px;}
.ls31{letter-spacing:371.114338px;}
.ls92{letter-spacing:377.642338px;}
.ls45{letter-spacing:430.190891px;}
.ls9{letter-spacing:453.662338px;}
.ls37{letter-spacing:475.232891px;}
.ls54{letter-spacing:625.280338px;}
.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;}
}
.wseb{word-spacing:-103.399833px;}
.ws7e{word-spacing:-81.653470px;}
.ws7c{word-spacing:-47.324343px;}
.ws74{word-spacing:-38.937826px;}
.wsf9{word-spacing:-36.071827px;}
.ws78{word-spacing:-29.000659px;}
.ws70{word-spacing:-28.955301px;}
.ws159{word-spacing:-22.308682px;}
.ws143{word-spacing:-18.913000px;}
.ws95{word-spacing:-16.605662px;}
.ws64{word-spacing:-14.943900px;}
.ws1f{word-spacing:-14.920027px;}
.ws63{word-spacing:-11.955150px;}
.ws145{word-spacing:-5.157471px;}
.ws99{word-spacing:-3.335478px;}
.ws146{word-spacing:-3.326193px;}
.ws62{word-spacing:-2.988780px;}
.ws43{word-spacing:-1.195512px;}
.wsdb{word-spacing:-1.075961px;}
.ws8{word-spacing:-0.968371px;}
.ws18f{word-spacing:-0.956412px;}
.ws118{word-spacing:-0.956410px;}
.ws130{word-spacing:-0.896634px;}
.wsff{word-spacing:-0.717307px;}
.ws9{word-spacing:-0.699379px;}
.ws13c{word-spacing:-0.685506px;}
.ws4b{word-spacing:-0.657532px;}
.ws91{word-spacing:-0.537980px;}
.ws190{word-spacing:-0.478206px;}
.ws52{word-spacing:-0.478205px;}
.wsa5{word-spacing:-0.358654px;}
.ws94{word-spacing:-0.179327px;}
.ws6f{word-spacing:-0.059776px;}
.ws3{word-spacing:-0.053798px;}
.ws169{word-spacing:-0.047821px;}
.ws6a{word-spacing:-0.041843px;}
.wsf8{word-spacing:-0.035866px;}
.ws61{word-spacing:-0.007290px;}
.wsb4{word-spacing:0.000000px;}
.ws13e{word-spacing:0.011955px;}
.wsd1{word-spacing:0.017309px;}
.ws12b{word-spacing:0.022814px;}
.ws188{word-spacing:0.047821px;}
.ws8f{word-spacing:0.059776px;}
.ws79{word-spacing:0.119551px;}
.ws10c{word-spacing:0.179327px;}
.ws144{word-spacing:0.418429px;}
.ws16b{word-spacing:0.526027px;}
.wsc9{word-spacing:0.591782px;}
.ws14c{word-spacing:0.597756px;}
.wsba{word-spacing:0.645581px;}
.ws123{word-spacing:0.657532px;}
.ws173{word-spacing:0.956412px;}
.ws18b{word-spacing:1.099874px;}
.wsd{word-spacing:1.237363px;}
.ws12f{word-spacing:1.315063px;}
.ws6{word-spacing:1.398758px;}
.wsa4{word-spacing:1.494390px;}
.wsd0{word-spacing:1.554166px;}
.ws166{word-spacing:1.625900px;}
.wscc{word-spacing:1.667750px;}
.ws2d{word-spacing:1.673717px;}
.ws28{word-spacing:1.733492px;}
.ws129{word-spacing:1.853044px;}
.wsb5{word-spacing:1.882944px;}
.wsaf{word-spacing:1.912819px;}
.ws23{word-spacing:1.972595px;}
.ws167{word-spacing:2.008465px;}
.wsfd{word-spacing:2.032370px;}
.ws184{word-spacing:2.247568px;}
.wsc6{word-spacing:2.313331px;}
.wsc0{word-spacing:2.391024px;}
.ws3a{word-spacing:2.450800px;}
.wsa7{word-spacing:2.510575px;}
.ws29{word-spacing:2.570351px;}
.ws3c{word-spacing:2.630126px;}
.ws170{word-spacing:2.695499px;}
.ws172{word-spacing:2.725774px;}
.wsc5{word-spacing:2.851315px;}
.ws3e{word-spacing:2.869229px;}
.ws122{word-spacing:2.905114px;}
.wsc1{word-spacing:2.929004px;}
.ws106{word-spacing:2.988780px;}
.wsf{word-spacing:3.012710px;}
.ws26{word-spacing:3.048556px;}
.ws104{word-spacing:3.108331px;}
.ws3d{word-spacing:3.227882px;}
.ws16f{word-spacing:3.251801px;}
.ws2e{word-spacing:3.287658px;}
.ws120{word-spacing:3.335501px;}
.ws181{word-spacing:3.395263px;}
.wsc2{word-spacing:3.407209px;}
.wsdd{word-spacing:3.526760px;}
.ws133{word-spacing:3.586536px;}
.ws185{word-spacing:3.586545px;}
.ws1d{word-spacing:3.658291px;}
.wsa6{word-spacing:3.706087px;}
.ws4a{word-spacing:3.885414px;}
.ws31{word-spacing:3.945190px;}
.ws11a{word-spacing:4.064741px;}
.wsf2{word-spacing:4.124516px;}
.wsf0{word-spacing:4.150309px;}
.ws53{word-spacing:4.184292px;}
.ws5b{word-spacing:4.244068px;}
.wsa1{word-spacing:4.244492px;}
.ws7a{word-spacing:4.303843px;}
.ws13d{word-spacing:4.363619px;}
.ws2c{word-spacing:4.423394px;}
.ws148{word-spacing:4.483170px;}
.ws71{word-spacing:4.542946px;}
.wsd7{word-spacing:4.662497px;}
.wsda{word-spacing:4.722272px;}
.ws121{word-spacing:4.734259px;}
.ws162{word-spacing:4.782048px;}
.ws165{word-spacing:4.782060px;}
.ws175{word-spacing:4.795209px;}
.ws87{word-spacing:4.841824px;}
.ws98{word-spacing:4.901599px;}
.wscd{word-spacing:4.949453px;}
.ws119{word-spacing:4.961375px;}
.wsbf{word-spacing:5.080926px;}
.wsd3{word-spacing:5.200477px;}
.ws10d{word-spacing:5.320028px;}
.wsbb{word-spacing:5.326042px;}
.ws3f{word-spacing:5.379804px;}
.wsc7{word-spacing:5.379840px;}
.wse0{word-spacing:5.439580px;}
.ws16d{word-spacing:5.451548px;}
.ws92{word-spacing:5.499355px;}
.ws68{word-spacing:5.559131px;}
.ws14f{word-spacing:5.571086px;}
.wsd8{word-spacing:5.618906px;}
.wsbe{word-spacing:5.678682px;}
.ws117{word-spacing:5.750413px;}
.ws7{word-spacing:5.810227px;}
.ws84{word-spacing:5.858009px;}
.ws10e{word-spacing:5.910702px;}
.wsb1{word-spacing:5.917784px;}
.ws10f{word-spacing:5.925734px;}
.ws65{word-spacing:5.928452px;}
.ws12a{word-spacing:5.928749px;}
.ws12c{word-spacing:5.929754px;}
.ws12d{word-spacing:5.937440px;}
.ws73{word-spacing:5.976317px;}
.wsf4{word-spacing:5.976874px;}
.ws2{word-spacing:5.977560px;}
.ws44{word-spacing:6.037336px;}
.wsfe{word-spacing:6.097111px;}
.ws191{word-spacing:6.121037px;}
.ws100{word-spacing:6.156887px;}
.ws56{word-spacing:6.216662px;}
.ws178{word-spacing:6.260107px;}
.ws17a{word-spacing:6.264499px;}
.ws149{word-spacing:6.276438px;}
.ws41{word-spacing:6.336214px;}
.ws5c{word-spacing:6.395989px;}
.ws124{word-spacing:6.455765px;}
.ws10b{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wsa8{word-spacing:6.635092px;}
.ws57{word-spacing:6.694867px;}
.ws1a{word-spacing:6.724800px;}
.ws96{word-spacing:6.787007px;}
.ws97{word-spacing:6.814418px;}
.ws5{word-spacing:6.832397px;}
.ws19{word-spacing:7.101389px;}
.ws4f{word-spacing:7.113296px;}
.ws11{word-spacing:7.155187px;}
.wsad{word-spacing:7.232848px;}
.wsb9{word-spacing:7.262784px;}
.ws35{word-spacing:7.292623px;}
.ws127{word-spacing:7.412174px;}
.ws36{word-spacing:7.531726px;}
.wsc8{word-spacing:7.531776px;}
.wsa{word-spacing:7.585574px;}
.wsb0{word-spacing:7.591501px;}
.ws89{word-spacing:7.651277px;}
.ws142{word-spacing:7.711052px;}
.ws14e{word-spacing:7.746970px;}
.ws15b{word-spacing:7.782783px;}
.ws109{word-spacing:7.830604px;}
.ws49{word-spacing:7.890379px;}
.ws8d{word-spacing:7.936309px;}
.ws8e{word-spacing:7.950155px;}
.ws177{word-spacing:7.986040px;}
.ws25{word-spacing:8.009930px;}
.ws55{word-spacing:8.069706px;}
.ws15{word-spacing:8.069760px;}
.ws37{word-spacing:8.189257px;}
.ws45{word-spacing:8.308808px;}
.ws18e{word-spacing:8.320784px;}
.ws18c{word-spacing:8.326809px;}
.ws182{word-spacing:8.368605px;}
.ws24{word-spacing:8.428360px;}
.ws93{word-spacing:8.488135px;}
.ws72{word-spacing:8.547911px;}
.wsea{word-spacing:8.607686px;}
.ws16a{word-spacing:8.607708px;}
.ws102{word-spacing:8.667462px;}
.wsd4{word-spacing:8.727238px;}
.ws101{word-spacing:8.787013px;}
.ws132{word-spacing:8.846789px;}
.ws150{word-spacing:8.966340px;}
.ws14b{word-spacing:9.026116px;}
.ws116{word-spacing:9.085891px;}
.ws17b{word-spacing:9.085914px;}
.ws7b{word-spacing:9.134897px;}
.wsb6{word-spacing:9.145728px;}
.ws135{word-spacing:9.158435px;}
.ws147{word-spacing:9.205442px;}
.ws58{word-spacing:9.265218px;}
.ws187{word-spacing:9.277196px;}
.wscf{word-spacing:9.324994px;}
.wsb{word-spacing:9.360922px;}
.ws115{word-spacing:9.384769px;}
.wscb{word-spacing:9.414720px;}
.ws11b{word-spacing:9.444545px;}
.ws86{word-spacing:9.564096px;}
.ws189{word-spacing:9.611941px;}
.ws54{word-spacing:9.623872px;}
.ws8b{word-spacing:9.803198px;}
.ws128{word-spacing:9.862974px;}
.ws154{word-spacing:9.922750px;}
.wsbc{word-spacing:9.952704px;}
.wsa9{word-spacing:9.982525px;}
.ws4{word-spacing:10.060301px;}
.ws155{word-spacing:10.102076px;}
.ws15a{word-spacing:10.161852px;}
.ws67{word-spacing:10.221628px;}
.wsd5{word-spacing:10.281403px;}
.ws17c{word-spacing:10.329250px;}
.ws4e{word-spacing:10.341179px;}
.ws10a{word-spacing:10.460730px;}
.ws11e{word-spacing:10.520506px;}
.wsb2{word-spacing:10.580281px;}
.ws2b{word-spacing:10.640057px;}
.ws105{word-spacing:10.699832px;}
.ws85{word-spacing:10.819384px;}
.ws46{word-spacing:10.879159px;}
.ws9f{word-spacing:10.897013px;}
.wsa3{word-spacing:10.998710px;}
.ws156{word-spacing:11.058486px;}
.ws77{word-spacing:11.070441px;}
.ws9a{word-spacing:11.118262px;}
.ws17f{word-spacing:11.333482px;}
.ws16{word-spacing:11.351462px;}
.ws39{word-spacing:11.357364px;}
.ws141{word-spacing:11.415967px;}
.wsd9{word-spacing:11.417140px;}
.ws38{word-spacing:11.476915px;}
.ws164{word-spacing:11.524765px;}
.ws9b{word-spacing:11.536691px;}
.ws34{word-spacing:11.596466px;}
.ws153{word-spacing:11.656242px;}
.ws103{word-spacing:11.716018px;}
.wsce{word-spacing:11.835569px;}
.ws76{word-spacing:11.944309px;}
.ws60{word-spacing:11.955120px;}
.ws40{word-spacing:12.014896px;}
.ws81{word-spacing:12.074671px;}
.wsfc{word-spacing:12.134447px;}
.ws5a{word-spacing:12.194222px;}
.ws42{word-spacing:12.253998px;}
.ws110{word-spacing:12.433325px;}
.ws9e{word-spacing:12.537113px;}
.wsa0{word-spacing:12.552876px;}
.ws51{word-spacing:12.732203px;}
.wsb3{word-spacing:12.791978px;}
.wsb7{word-spacing:13.019213px;}
.wse2{word-spacing:13.031081px;}
.ws48{word-spacing:13.090856px;}
.wsef{word-spacing:13.224585px;}
.wse6{word-spacing:13.252309px;}
.wsc4{word-spacing:13.270183px;}
.wsd2{word-spacing:13.389734px;}
.ws80{word-spacing:13.448897px;}
.ws14{word-spacing:13.449600px;}
.wsac{word-spacing:13.509286px;}
.ws33{word-spacing:13.569061px;}
.ws22{word-spacing:13.628837px;}
.ws11f{word-spacing:13.808164px;}
.ws168{word-spacing:13.915795px;}
.ws140{word-spacing:13.987490px;}
.ws157{word-spacing:14.047266px;}
.ws174{word-spacing:14.154898px;}
.ws2f{word-spacing:14.226593px;}
.ws113{word-spacing:14.286368px;}
.ws90{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws15d{word-spacing:14.465695px;}
.wsaa{word-spacing:14.525471px;}
.ws171{word-spacing:14.633104px;}
.ws107{word-spacing:14.645022px;}
.ws163{word-spacing:14.680924px;}
.ws151{word-spacing:14.704798px;}
.wsc3{word-spacing:14.764573px;}
.ws4d{word-spacing:14.943900px;}
.wsca{word-spacing:14.955955px;}
.ws2a{word-spacing:15.183002px;}
.ws108{word-spacing:15.242778px;}
.ws131{word-spacing:15.302554px;}
.ws16e{word-spacing:15.350413px;}
.ws125{word-spacing:15.362329px;}
.ws158{word-spacing:15.481880px;}
.ws186{word-spacing:15.493874px;}
.ws160{word-spacing:15.541656px;}
.ws139{word-spacing:15.698026px;}
.ws137{word-spacing:15.703109px;}
.ws136{word-spacing:15.712309px;}
.ws13a{word-spacing:15.720983px;}
.ws14d{word-spacing:15.840534px;}
.ws4c{word-spacing:15.900310px;}
.wse{word-spacing:15.924326px;}
.wsfa{word-spacing:15.960085px;}
.ws20{word-spacing:16.019861px;}
.ws180{word-spacing:16.163363px;}
.ws18{word-spacing:16.193318px;}
.ws11d{word-spacing:16.258963px;}
.ws111{word-spacing:16.318739px;}
.ws3b{word-spacing:16.378514px;}
.wsd6{word-spacing:16.438290px;}
.ws12e{word-spacing:16.498066px;}
.ws50{word-spacing:16.617617px;}
.ws15c{word-spacing:16.677392px;}
.ws176{word-spacing:16.689389px;}
.ws13b{word-spacing:16.776558px;}
.ws21{word-spacing:16.796944px;}
.ws69{word-spacing:16.846309px;}
.ws6b{word-spacing:16.856719px;}
.ws83{word-spacing:17.155597px;}
.ws16c{word-spacing:17.311057px;}
.wsae{word-spacing:17.334924px;}
.ws12{word-spacing:17.430682px;}
.ws7d{word-spacing:17.566309px;}
.ws7f{word-spacing:17.574026px;}
.ws9d{word-spacing:17.693578px;}
.ws17{word-spacing:17.699674px;}
.wsb8{word-spacing:17.861069px;}
.ws1e{word-spacing:17.932680px;}
.ws5d{word-spacing:17.992456px;}
.ws192{word-spacing:18.028366px;}
.wsa2{word-spacing:18.052231px;}
.ws179{word-spacing:18.171828px;}
.ws14a{word-spacing:18.410885px;}
.wsdc{word-spacing:18.470660px;}
.ws126{word-spacing:18.649987px;}
.ws30{word-spacing:18.769538px;}
.wsc{word-spacing:18.937037px;}
.ws114{word-spacing:19.008641px;}
.ws8a{word-spacing:19.128192px;}
.ws5e{word-spacing:19.247743px;}
.ws13f{word-spacing:19.606397px;}
.ws112{word-spacing:19.845499px;}
.ws59{word-spacing:19.905275px;}
.ws47{word-spacing:19.965050px;}
.ws15f{word-spacing:20.144377px;}
.ws152{word-spacing:20.204153px;}
.ws18d{word-spacing:20.228114px;}
.ws32{word-spacing:20.263928px;}
.wsdf{word-spacing:20.383480px;}
.ws183{word-spacing:20.467217px;}
.wsab{word-spacing:20.562806px;}
.ws6c{word-spacing:20.597536px;}
.ws6d{word-spacing:20.622582px;}
.wsfb{word-spacing:20.742133px;}
.ws66{word-spacing:20.861684px;}
.wse3{word-spacing:20.921460px;}
.ws5f{word-spacing:21.100787px;}
.ws134{word-spacing:21.220338px;}
.ws15e{word-spacing:21.339889px;}
.wsbd{word-spacing:21.399665px;}
.ws18a{word-spacing:21.471449px;}
.ws13{word-spacing:21.626957px;}
.ws9c{word-spacing:21.650722px;}
.wse8{word-spacing:21.698543px;}
.ws11c{word-spacing:21.818094px;}
.wsf1{word-spacing:22.042725px;}
.wsf3{word-spacing:22.044340px;}
.ws82{word-spacing:22.057196px;}
.ws17d{word-spacing:22.236579px;}
.ws88{word-spacing:22.535401px;}
.wsde{word-spacing:22.654952px;}
.ws17e{word-spacing:23.240812px;}
.ws10{word-spacing:23.348506px;}
.wsf5{word-spacing:23.868340px;}
.ws161{word-spacing:24.567772px;}
.ws1c{word-spacing:25.554240px;}
.wse1{word-spacing:28.512961px;}
.ws6e{word-spacing:29.409342px;}
.ws27{word-spacing:29.887800px;}
.wse7{word-spacing:31.150725px;}
.ws138{word-spacing:33.606340px;}
.ws1b{word-spacing:38.950042px;}
.wse9{word-spacing:39.600340px;}
.ws75{word-spacing:49.975617px;}
.wsed{word-spacing:56.658567px;}
.wsee{word-spacing:56.700372px;}
.ws8c{word-spacing:60.689975px;}
.wse5{word-spacing:62.717208px;}
.wse4{word-spacing:62.723208px;}
.wsf7{word-spacing:63.295198px;}
.wsf6{word-spacing:63.301198px;}
.wsec{word-spacing:70.188510px;}
._16{margin-left:-86.855051px;}
._c{margin-left:-35.327380px;}
._d{margin-left:-21.894870px;}
._19{margin-left:-13.577856px;}
._2{margin-left:-11.476944px;}
._1{margin-left:-5.738472px;}
._11{margin-left:-4.722294px;}
._0{margin-left:-3.586545px;}
._6{margin-left:-2.450778px;}
._3{margin-left:-1.434618px;}
._b{width:1.789306px;}
._5{width:2.988780px;}
._1a{width:3.997121px;}
._1c{width:7.986040px;}
._13{width:15.481880px;}
._7{width:17.155606px;}
._15{width:18.829296px;}
._4{width:21.788352px;}
._f{width:23.611376px;}
._a{width:25.225318px;}
._12{width:26.958810px;}
._9{width:29.588900px;}
._14{width:30.623934px;}
._e{width:33.139110px;}
._8{width:35.925118px;}
._10{width:42.793500px;}
._18{width:73.228286px;}
._17{width:86.794171px;}
._1b{width:96.501971px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.865600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y179{bottom:128.518500px;}
.y37{bottom:128.520000px;}
.y1fe{bottom:132.181500px;}
.y1fd{bottom:145.630500px;}
.y36{bottom:146.452500px;}
.yf4{bottom:146.628000px;}
.y1fc{bottom:159.081000px;}
.y35{bottom:164.385000px;}
.ya0{bottom:164.386500px;}
.yf3{bottom:164.562000px;}
.y1d0{bottom:168.585000px;}
.y61{bottom:170.992500px;}
.y1fb{bottom:172.530000px;}
.y34{bottom:182.317500px;}
.ydf{bottom:182.319000px;}
.yf2{bottom:182.494500px;}
.y178{bottom:182.872500px;}
.y9e{bottom:185.172000px;}
.y1fa{bottom:185.979000px;}
.y141{bottom:187.294500px;}
.y60{bottom:188.925000px;}
.y105{bottom:190.813500px;}
.y1cf{bottom:193.563000px;}
.y140{bottom:194.392500px;}
.y9d{bottom:195.421500px;}
.y9f{bottom:199.033500px;}
.y1f9{bottom:199.429500px;}
.y33{bottom:200.251500px;}
.yde{bottom:200.290500px;}
.yf1{bottom:200.427000px;}
.y177{bottom:200.805000px;}
.y5f{bottom:206.857500px;}
.y1ce{bottom:211.495500px;}
.y1f8{bottom:212.878500px;}
.y142{bottom:213.633000px;}
.y32{bottom:218.184000px;}
.ydd{bottom:218.223000px;}
.yf0{bottom:218.359500px;}
.y176{bottom:218.737500px;}
.y98{bottom:221.721000px;}
.y13f{bottom:222.861000px;}
.y9c{bottom:223.543500px;}
.y104{bottom:224.199000px;}
.y97{bottom:224.248500px;}
.y5e{bottom:224.790000px;}
.y1f7{bottom:226.327500px;}
.y13e{bottom:226.411500px;}
.y1cd{bottom:229.429500px;}
.y13c{bottom:232.389000px;}
.y9a{bottom:233.257500px;}
.y96{bottom:234.004500px;}
.y13b{bottom:235.639500px;}
.y31{bottom:236.116500px;}
.ydc{bottom:236.155500px;}
.yef{bottom:236.292000px;}
.y175{bottom:236.670000px;}
.y1a9{bottom:237.160500px;}
.y1f6{bottom:239.778000px;}
.y13d{bottom:240.234000px;}
.y103{bottom:242.131500px;}
.y99{bottom:242.223000px;}
.y5d{bottom:242.724000px;}
.y1cc{bottom:247.362000px;}
.y9b{bottom:247.495500px;}
.y1f5{bottom:253.227000px;}
.y30{bottom:254.049000px;}
.ydb{bottom:254.088000px;}
.yee{bottom:254.224500px;}
.y174{bottom:254.602500px;}
.y1a8{bottom:255.093000px;}
.y102{bottom:260.065500px;}
.y5c{bottom:260.656500px;}
.y13a{bottom:263.958000px;}
.y95{bottom:265.098000px;}
.y1cb{bottom:265.294500px;}
.y1f4{bottom:266.677500px;}
.y2f{bottom:271.981500px;}
.yda{bottom:272.020500px;}
.yed{bottom:272.334000px;}
.y173{bottom:272.536500px;}
.y1a7{bottom:273.025500px;}
.y101{bottom:277.998000px;}
.y5b{bottom:278.589000px;}
.y1f3{bottom:280.126500px;}
.y139{bottom:281.331000px;}
.y94{bottom:283.032000px;}
.y1ca{bottom:283.227000px;}
.y2e{bottom:289.915500px;}
.yd9{bottom:289.954500px;}
.yec{bottom:290.266500px;}
.y172{bottom:290.469000px;}
.y1a6{bottom:290.958000px;}
.y1f2{bottom:293.575500px;}
.y100{bottom:295.930500px;}
.y5a{bottom:296.521500px;}
.y138{bottom:299.263500px;}
.y93{bottom:300.964500px;}
.y1c9{bottom:301.159500px;}
.y1f1{bottom:307.026000px;}
.y2d{bottom:307.848000px;}
.yd8{bottom:307.887000px;}
.yeb{bottom:308.199000px;}
.y171{bottom:308.401500px;}
.y1a5{bottom:308.890500px;}
.y59{bottom:314.454000px;}
.y92{bottom:318.897000px;}
.y1c8{bottom:319.092000px;}
.y1f0{bottom:320.475000px;}
.y137{bottom:324.930000px;}
.y2c{bottom:325.780500px;}
.yd7{bottom:325.819500px;}
.y170{bottom:326.334000px;}
.y1a4{bottom:326.824500px;}
.y58{bottom:332.388000px;}
.y136{bottom:333.747000px;}
.y1ef{bottom:333.924000px;}
.y91{bottom:336.829500px;}
.y1c7{bottom:337.026000px;}
.y2b{bottom:343.713000px;}
.yd6{bottom:343.752000px;}
.y16f{bottom:344.266500px;}
.y1ee{bottom:347.374500px;}
.yff{bottom:347.826000px;}
.y57{bottom:350.320500px;}
.y1a3{bottom:352.783500px;}
.y90{bottom:353.655000px;}
.y1c6{bottom:354.958500px;}
.yea{bottom:358.879500px;}
.y1ed{bottom:360.823500px;}
.y2a{bottom:361.645500px;}
.yd5{bottom:361.684500px;}
.y16e{bottom:362.199000px;}
.yfe{bottom:362.769000px;}
.y1a2{bottom:363.034500px;}
.y135{bottom:366.250500px;}
.y56{bottom:368.253000px;}
.y8f{bottom:371.587500px;}
.y1c5{bottom:372.891000px;}
.ye9{bottom:373.824000px;}
.y1ec{bottom:374.272500px;}
.yfd{bottom:377.713500px;}
.y29{bottom:379.273500px;}
.y190{bottom:379.578000px;}
.yd4{bottom:379.617000px;}
.y16d{bottom:380.133000px;}
.y55{bottom:386.185500px;}
.y1eb{bottom:387.723000px;}
.ye8{bottom:388.767000px;}
.y133{bottom:388.861500px;}
.y8e{bottom:389.520000px;}
.y1c4{bottom:390.823500px;}
.yfc{bottom:392.658000px;}
.y28{bottom:397.206000px;}
.yd3{bottom:397.551000px;}
.y16c{bottom:398.065500px;}
.y1a1{bottom:400.735500px;}
.y1ea{bottom:401.172000px;}
.y18f{bottom:403.605000px;}
.ye7{bottom:403.711500px;}
.y54{bottom:404.118000px;}
.y132{bottom:406.794000px;}
.y8d{bottom:407.452500px;}
.yfb{bottom:407.601000px;}
.y1c3{bottom:408.756000px;}
.y12d{bottom:409.782000px;}
.y1e9{bottom:414.622500px;}
.y27{bottom:415.138500px;}
.yd2{bottom:415.483500px;}
.y16b{bottom:415.998000px;}
.ye6{bottom:418.656000px;}
.y1a0{bottom:418.668000px;}
.y134{bottom:419.346000px;}
.y12c{bottom:419.347500px;}
.y18e{bottom:421.537500px;}
.y53{bottom:422.050500px;}
.yfa{bottom:422.545500px;}
.y131{bottom:424.726500px;}
.y8c{bottom:425.386500px;}
.y1c2{bottom:426.690000px;}
.y1e8{bottom:428.071500px;}
.y12b{bottom:428.313000px;}
.y26{bottom:433.072500px;}
.yd1{bottom:433.416000px;}
.y125{bottom:433.543500px;}
.ye5{bottom:433.599000px;}
.y16a{bottom:433.930500px;}
.y19f{bottom:436.600500px;}
.y12a{bottom:437.280000px;}
.yf9{bottom:437.490000px;}
.y52{bottom:439.984500px;}
.y1e7{bottom:441.520500px;}
.y130{bottom:442.659000px;}
.y8b{bottom:443.319000px;}
.y1c1{bottom:444.622500px;}
.y129{bottom:446.245500px;}
.ye4{bottom:448.543500px;}
.y25{bottom:451.005000px;}
.yd0{bottom:451.387500px;}
.y18d{bottom:451.521000px;}
.y169{bottom:452.418000px;}
.y19e{bottom:454.533000px;}
.y1e6{bottom:454.971000px;}
.y128{bottom:455.212500px;}
.y51{bottom:457.917000px;}
.y12f{bottom:460.593000px;}
.y8a{bottom:461.251500px;}
.y1c0{bottom:462.555000px;}
.y127{bottom:464.179500px;}
.y1e5{bottom:468.420000px;}
.y24{bottom:468.937500px;}
.ycf{bottom:469.320000px;}
.y18c{bottom:469.455000px;}
.y168{bottom:470.350500px;}
.y19d{bottom:472.465500px;}
.y50{bottom:475.849500px;}
.y12e{bottom:478.525500px;}
.y89{bottom:479.184000px;}
.y1bf{bottom:480.487500px;}
.y1e4{bottom:481.869000px;}
.y23{bottom:486.870000px;}
.yce{bottom:487.254000px;}
.y18b{bottom:487.387500px;}
.y167{bottom:488.283000px;}
.y19c{bottom:490.398000px;}
.y126{bottom:490.480500px;}
.y4f{bottom:493.782000px;}
.y1e3{bottom:495.319500px;}
.y1be{bottom:498.420000px;}
.y88{bottom:501.270000px;}
.y22{bottom:504.802500px;}
.ycd{bottom:505.186500px;}
.y18a{bottom:505.320000px;}
.y166{bottom:506.215500px;}
.y19b{bottom:508.332000px;}
.y124{bottom:508.452000px;}
.y1e2{bottom:508.768500px;}
.y4e{bottom:511.714500px;}
.y1bd{bottom:516.352500px;}
.y1e1{bottom:522.219000px;}
.ycc{bottom:523.119000px;}
.y189{bottom:523.252500px;}
.y165{bottom:524.149500px;}
.y87{bottom:525.969000px;}
.y19a{bottom:526.264500px;}
.y123{bottom:526.384500px;}
.y21{bottom:527.137500px;}
.y4d{bottom:529.647000px;}
.y1bc{bottom:534.286500px;}
.y1e0{bottom:535.668000px;}
.y86{bottom:539.958000px;}
.ycb{bottom:541.051500px;}
.y188{bottom:541.185000px;}
.y164{bottom:542.082000px;}
.y85{bottom:544.074000px;}
.y199{bottom:544.197000px;}
.y122{bottom:544.317000px;}
.y4c{bottom:547.581000px;}
.y1df{bottom:549.117000px;}
.y1bb{bottom:556.419000px;}
.y20{bottom:557.482500px;}
.yca{bottom:558.984000px;}
.y187{bottom:559.117500px;}
.y163{bottom:560.014500px;}
.y198{bottom:562.129500px;}
.y121{bottom:562.249500px;}
.y1de{bottom:562.567500px;}
.y84{bottom:563.865000px;}
.y4b{bottom:565.513500px;}
.y1f{bottom:572.425500px;}
.y82{bottom:573.579000px;}
.y80{bottom:574.326000px;}
.y1dd{bottom:576.016500px;}
.yc9{bottom:576.916500px;}
.y186{bottom:577.051500px;}
.y162{bottom:577.947000px;}
.y120{bottom:580.182000px;}
.y1ba{bottom:581.397000px;}
.y81{bottom:582.544500px;}
.y4a{bottom:583.446000px;}
.y1e{bottom:587.370000px;}
.y83{bottom:587.817000px;}
.y1dc{bottom:589.465500px;}
.y196{bottom:591.036000px;}
.yc8{bottom:594.850500px;}
.y185{bottom:594.984000px;}
.y197{bottom:597.448500px;}
.y1b9{bottom:599.329500px;}
.y49{bottom:601.378500px;}
.y1d{bottom:602.008500px;}
.y1db{bottom:602.916000px;}
.y161{bottom:603.915000px;}
.y7f{bottom:605.419500px;}
.y11f{bottom:605.848500px;}
.y192{bottom:606.570000px;}
.y193{bottom:606.808500px;}
.y184{bottom:613.147500px;}
.y11e{bottom:614.665500px;}
.y1da{bottom:616.365000px;}
.y1c{bottom:616.953000px;}
.y1b8{bottom:617.262000px;}
.yc7{bottom:617.626500px;}
.y48{bottom:619.311000px;}
.y195{bottom:619.347000px;}
.y160{bottom:621.847500px;}
.y7e{bottom:623.353500px;}
.y194{bottom:623.431500px;}
.y1d9{bottom:629.815500px;}
.y183{bottom:631.080000px;}
.y1b{bottom:631.897500px;}
.y1b7{bottom:635.194500px;}
.y47{bottom:637.243500px;}
.y7d{bottom:641.286000px;}
.y1d8{bottom:643.264500px;}
.yc6{bottom:645.979500px;}
.y1a{bottom:646.840500px;}
.y182{bottom:649.012500px;}
.y1b6{bottom:653.127000px;}
.y11d{bottom:653.707500px;}
.y15f{bottom:654.580500px;}
.y46{bottom:655.177500px;}
.y1d7{bottom:656.713500px;}
.y7c{bottom:659.218500px;}
.y19{bottom:661.785000px;}
.yc5{bottom:663.912000px;}
.y191{bottom:666.945000px;}
.y181{bottom:666.946500px;}
.y1d6{bottom:670.164000px;}
.y1b5{bottom:671.061000px;}
.y11c{bottom:671.640000px;}
.y15e{bottom:672.514500px;}
.y18{bottom:676.728000px;}
.y45{bottom:679.717500px;}
.y7b{bottom:681.057000px;}
.yc4{bottom:681.844500px;}
.y1d5{bottom:683.613000px;}
.y180{bottom:684.879000px;}
.y1b4{bottom:688.993500px;}
.y11b{bottom:689.574000px;}
.y15d{bottom:690.447000px;}
.y17{bottom:691.672500px;}
.y7a{bottom:695.017500px;}
.y1d4{bottom:697.062000px;}
.y44{bottom:697.650000px;}
.yc3{bottom:699.777000px;}
.y16{bottom:706.617000px;}
.y1b3{bottom:706.926000px;}
.y11a{bottom:707.506500px;}
.y15c{bottom:708.379500px;}
.y1d3{bottom:710.512500px;}
.y79{bottom:711.009000px;}
.y43{bottom:715.582500px;}
.yc2{bottom:717.709500px;}
.y15{bottom:721.560000px;}
.ye3{bottom:724.387500px;}
.y1b2{bottom:724.858500px;}
.y119{bottom:725.439000px;}
.y15b{bottom:726.312000px;}
.yf8{bottom:731.170500px;}
.y1d2{bottom:732.703500px;}
.y42{bottom:733.515000px;}
.y17f{bottom:735.090000px;}
.yc1{bottom:735.643500px;}
.y14{bottom:736.504500px;}
.y78{bottom:739.056000px;}
.ye2{bottom:739.330500px;}
.y1b1{bottom:742.791000px;}
.y118{bottom:743.371500px;}
.y15a{bottom:744.244500px;}
.yf7{bottom:746.115000px;}
.y17e{bottom:750.034500px;}
.y41{bottom:751.447500px;}
.y13{bottom:751.449000px;}
.yc0{bottom:753.576000px;}
.ye1{bottom:754.275000px;}
.y77{bottom:756.988500px;}
.y1b0{bottom:760.723500px;}
.y117{bottom:760.744500px;}
.yf6{bottom:761.059500px;}
.y159{bottom:762.177000px;}
.y17d{bottom:764.979000px;}
.y12{bottom:766.392000px;}
.ye0{bottom:769.219500px;}
.y40{bottom:769.381500px;}
.ybf{bottom:771.508500px;}
.y76{bottom:774.921000px;}
.yf5{bottom:776.002500px;}
.y1d1{bottom:778.656000px;}
.y1af{bottom:778.657500px;}
.y116{bottom:778.677000px;}
.y17c{bottom:779.922000px;}
.y158{bottom:780.111000px;}
.y11{bottom:781.336500px;}
.y3f{bottom:787.314000px;}
.y75{bottom:792.853500px;}
.ybe{bottom:794.695500px;}
.y17b{bottom:794.866500px;}
.yba{bottom:794.905500px;}
.y10{bottom:796.281000px;}
.y1ae{bottom:796.590000px;}
.y115{bottom:796.609500px;}
.y157{bottom:798.043500px;}
.ybc{bottom:804.409500px;}
.yb9{bottom:805.156500px;}
.y3e{bottom:805.246500px;}
.y17a{bottom:809.809500px;}
.y74{bottom:810.787500px;}
.yf{bottom:811.224000px;}
.ybb{bottom:813.375000px;}
.y114{bottom:813.423000px;}
.y1ad{bottom:814.522500px;}
.y156{bottom:815.976000px;}
.ybd{bottom:818.647500px;}
.y3d{bottom:823.179000px;}
.ye{bottom:826.168500px;}
.y73{bottom:828.720000px;}
.y113{bottom:831.355500px;}
.yb4{bottom:831.366000px;}
.yb8{bottom:833.188500px;}
.yb3{bottom:833.895000px;}
.y155{bottom:833.908500px;}
.y3c{bottom:841.111500px;}
.yd{bottom:841.113000px;}
.yb6{bottom:842.902500px;}
.yb2{bottom:843.649500px;}
.y72{bottom:846.652500px;}
.y112{bottom:849.289500px;}
.y154{bottom:851.841000px;}
.yb5{bottom:851.869500px;}
.yc{bottom:856.056000px;}
.yb7{bottom:857.140500px;}
.y3b{bottom:859.044000px;}
.y1ac{bottom:864.733500px;}
.y111{bottom:866.101500px;}
.y153{bottom:869.773500px;}
.yb{bottom:871.000500px;}
.y71{bottom:872.211000px;}
.yb1{bottom:874.315500px;}
.y3a{bottom:876.978000px;}
.y1ab{bottom:879.678000px;}
.y110{bottom:884.034000px;}
.ya{bottom:885.943500px;}
.y152{bottom:887.707500px;}
.yb0{bottom:892.248000px;}
.y1aa{bottom:894.622500px;}
.y39{bottom:894.910500px;}
.y70{bottom:897.771000px;}
.y9{bottom:900.888000px;}
.y10f{bottom:901.968000px;}
.y151{bottom:905.640000px;}
.yaf{bottom:910.180500px;}
.y38{bottom:912.843000px;}
.y6f{bottom:915.703500px;}
.y8{bottom:915.832500px;}
.y10e{bottom:919.900500px;}
.y150{bottom:923.572500px;}
.yae{bottom:928.113000px;}
.y7{bottom:930.775500px;}
.y6e{bottom:933.636000px;}
.y10d{bottom:937.833000px;}
.y14f{bottom:941.505000px;}
.yad{bottom:946.045500px;}
.y6d{bottom:955.722000px;}
.y10c{bottom:955.765500px;}
.y14e{bottom:959.437500px;}
.yac{bottom:963.978000px;}
.y10b{bottom:973.698000px;}
.y6{bottom:977.452500px;}
.y6c{bottom:977.809500px;}
.y14d{bottom:977.925000px;}
.yab{bottom:986.755500px;}
.y10a{bottom:991.632000px;}
.y14c{bottom:995.857500px;}
.y5{bottom:995.944500px;}
.y6b{bottom:1002.507000px;}
.y109{bottom:1009.564500px;}
.ya9{bottom:1010.190000px;}
.y14b{bottom:1013.791500px;}
.y4{bottom:1014.660000px;}
.y6a{bottom:1020.439500px;}
.ya8{bottom:1020.441000px;}
.yaa{bottom:1024.053000px;}
.y108{bottom:1027.497000px;}
.y14a{bottom:1031.724000px;}
.y69{bottom:1038.372000px;}
.y107{bottom:1045.429500px;}
.ya3{bottom:1046.158500px;}
.ya7{bottom:1047.981000px;}
.ya2{bottom:1048.687500px;}
.y149{bottom:1049.656500px;}
.y68{bottom:1056.306000px;}
.ya5{bottom:1057.695000px;}
.ya1{bottom:1058.442000px;}
.y3{bottom:1061.733000px;}
.ya4{bottom:1066.662000px;}
.y106{bottom:1067.509500px;}
.y148{bottom:1067.589000px;}
.ya6{bottom:1071.933000px;}
.y67{bottom:1074.238500px;}
.y147{bottom:1085.521500px;}
.y66{bottom:1092.171000px;}
.y146{bottom:1103.454000px;}
.y2{bottom:1103.577000px;}
.y65{bottom:1110.103500px;}
.y145{bottom:1121.388000px;}
.y64{bottom:1128.036000px;}
.y144{bottom:1139.320500px;}
.y1{bottom:1145.419500px;}
.y63{bottom:1145.968500px;}
.y143{bottom:1163.901000px;}
.y62{bottom:1163.902500px;}
.h33{height:2.259533px;}
.h31{height:2.313331px;}
.h12{height:19.965050px;}
.hf{height:19.971050px;}
.h32{height:24.871000px;}
.h14{height:28.202047px;}
.h10{height:28.787846px;}
.h18{height:29.038903px;}
.h36{height:32.900573px;}
.h23{height:37.013299px;}
.h6{height:37.336090px;}
.h5{height:37.605082px;}
.h2b{height:40.348800px;}
.h7{height:40.826735px;}
.h4{height:41.125613px;}
.hd{height:41.484266px;}
.hc{height:42.141798px;}
.h9{height:44.831700px;}
.h3{height:45.238339px;}
.h16{height:49.892047px;}
.ha{height:51.105488px;}
.h26{height:51.111488px;}
.h2a{height:51.532090px;}
.h2c{height:51.538090px;}
.h1f{height:54.099488px;}
.hb{height:55.926266px;}
.h8{height:55.932266px;}
.h17{height:57.589613px;}
.h13{height:58.914266px;}
.h1e{height:58.920266px;}
.h30{height:72.130090px;}
.h2e{height:77.997533px;}
.h1c{height:82.581798px;}
.h29{height:82.912090px;}
.h1a{height:82.969613px;}
.h1d{height:83.139798px;}
.h15{height:83.985798px;}
.h1b{height:85.271700px;}
.h35{height:85.835700px;}
.he{height:86.313050px;}
.h22{height:86.675700px;}
.h11{height:88.707050px;}
.h2{height:98.701718px;}
.h27{height:104.247050px;}
.h24{height:104.253050px;}
.h2f{height:106.389533px;}
.h34{height:114.483533px;}
.h2d{height:116.103533px;}
.h21{height:129.711050px;}
.h20{height:130.551050px;}
.h19{height:137.841050px;}
.h28{height:139.515050px;}
.h25{height:139.521050px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:75.600000px;}
.x4d{left:77.838000px;}
.xc{left:79.423500px;}
.x4b{left:86.929500px;}
.x7{left:90.543000px;}
.x53{left:91.872000px;}
.x1{left:97.488000px;}
.x4e{left:113.758500px;}
.x43{left:127.477500px;}
.x45{left:147.397500px;}
.x1b{left:150.265500px;}
.x2{left:155.715000px;}
.x5{left:157.501500px;}
.x1d{left:160.779000px;}
.x10{left:166.257000px;}
.x44{left:168.738000px;}
.x5b{left:169.885500px;}
.x1f{left:177.033000px;}
.x46{left:179.070000px;}
.x4f{left:182.988000px;}
.x20{left:184.423500px;}
.x16{left:185.803500px;}
.x47{left:189.033000px;}
.x48{left:192.408000px;}
.x9{left:198.234000px;}
.x6{left:200.571000px;}
.xd{left:206.439000px;}
.x50{left:217.603500px;}
.x21{left:219.373500px;}
.x26{left:232.284000px;}
.x25{left:234.484500px;}
.x17{left:236.406000px;}
.x22{left:241.125000px;}
.x27{left:245.277000px;}
.x3{left:247.027500px;}
.x51{left:252.217500px;}
.xe{left:253.236000px;}
.x18{left:258.157500px;}
.x4{left:264.361500px;}
.x12{left:267.132000px;}
.x4c{left:277.476000px;}
.x23{left:285.376500px;}
.x52{left:286.833000px;}
.x11{left:289.506000px;}
.x24{left:293.679000px;}
.x13{left:294.739500px;}
.x19{left:302.407500px;}
.x1a{left:310.710000px;}
.x14{left:342.682500px;}
.x49{left:349.089000px;}
.x4a{left:361.542000px;}
.x1e{left:364.296000px;}
.xf{left:401.949000px;}
.x1c{left:404.661000px;}
.x15{left:412.275000px;}
.x54{left:438.454500px;}
.xa{left:455.422500px;}
.x5d{left:461.400000px;}
.x55{left:463.059000px;}
.xb{left:470.367000px;}
.x5e{left:482.812500px;}
.x42{left:493.618500px;}
.x32{left:496.575000px;}
.x34{left:503.965500px;}
.x33{left:505.642500px;}
.x56{left:532.218000px;}
.x35{left:536.425500px;}
.x3e{left:538.218000px;}
.x36{left:547.483500px;}
.x3f{left:554.316000px;}
.x40{left:562.618500px;}
.x28{left:568.116000px;}
.x37{left:569.235000px;}
.x57{left:571.119000px;}
.x2a{left:575.506500px;}
.x29{left:577.183500px;}
.x41{left:583.914000px;}
.x5c{left:594.526500px;}
.x58{left:597.637500px;}
.x59{left:599.530500px;}
.x2b{left:610.456500px;}
.x38{left:613.485000px;}
.x39{left:621.787500px;}
.x30{left:623.367000px;}
.x2f{left:625.567500px;}
.x2c{left:632.208000px;}
.x31{left:636.360000px;}
.x2d{left:676.459500px;}
.x2e{left:684.762000px;}
.x5a{left:693.294000px;}
.x3a{left:698.404500px;}
.x3b{left:706.707000px;}
.x3c{left:757.926000px;}
.x3d{left:766.227000px;}
@media print{
.v19{vertical-align:-35.850667pt;}
.v3{vertical-align:-7.973333pt;}
.v16{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:2.656000pt;}
.v1{vertical-align:12.842667pt;}
.v7{vertical-align:15.493333pt;}
.v2{vertical-align:19.280000pt;}
.vb{vertical-align:21.941333pt;}
.v11{vertical-align:24.442667pt;}
.vc{vertical-align:27.978667pt;}
.ve{vertical-align:29.226667pt;}
.v13{vertical-align:31.349333pt;}
.v10{vertical-align:32.416000pt;}
.va{vertical-align:35.946667pt;}
.v8{vertical-align:37.194667pt;}
.v15{vertical-align:40.512000pt;}
.v4{vertical-align:58.976000pt;}
.v5{vertical-align:61.104000pt;}
.v14{vertical-align:67.322667pt;}
.vf{vertical-align:74.922667pt;}
.v18{vertical-align:92.560000pt;}
.vd{vertical-align:97.552000pt;}
.v1a{vertical-align:99.754667pt;}
.v17{vertical-align:101.194667pt;}
.v9{vertical-align:104.778667pt;}
.v12{vertical-align:106.272000pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000055pt;}
.ls2f{letter-spacing:0.000058pt;}
.ls59{letter-spacing:0.000479pt;}
.ls19{letter-spacing:0.000501pt;}
.ls6f{letter-spacing:0.000522pt;}
.ls8d{letter-spacing:0.000882pt;}
.ls81{letter-spacing:0.000891pt;}
.ls71{letter-spacing:0.001111pt;}
.ls43{letter-spacing:0.001373pt;}
.ls68{letter-spacing:0.001519pt;}
.ls3c{letter-spacing:0.001654pt;}
.ls20{letter-spacing:0.001788pt;}
.ls8a{letter-spacing:0.001791pt;}
.ls66{letter-spacing:0.001799pt;}
.ls28{letter-spacing:0.002079pt;}
.ls5d{letter-spacing:0.002387pt;}
.ls21{letter-spacing:0.002750pt;}
.ls70{letter-spacing:0.003331pt;}
.ls96{letter-spacing:0.003733pt;}
.ls62{letter-spacing:0.004352pt;}
.ls8f{letter-spacing:0.196932pt;}
.ls6e{letter-spacing:0.509998pt;}
.ls12{letter-spacing:0.844745pt;}
.ls8{letter-spacing:0.845146pt;}
.ls86{letter-spacing:1.671842pt;}
.ls41{letter-spacing:2.091145pt;}
.ls2d{letter-spacing:2.136083pt;}
.lsd{letter-spacing:2.607197pt;}
.ls0{letter-spacing:2.635446pt;}
.ls13{letter-spacing:2.652911pt;}
.ls44{letter-spacing:2.654299pt;}
.ls79{letter-spacing:2.654903pt;}
.ls76{letter-spacing:2.655711pt;}
.ls77{letter-spacing:2.656015pt;}
.ls74{letter-spacing:2.656473pt;}
.ls2{letter-spacing:2.656693pt;}
.ls25{letter-spacing:2.658245pt;}
.ls47{letter-spacing:2.659633pt;}
.ls7a{letter-spacing:2.660237pt;}
.ls80{letter-spacing:2.742482pt;}
.ls4d{letter-spacing:2.951264pt;}
.ls7d{letter-spacing:3.440336pt;}
.ls18{letter-spacing:3.987959pt;}
.ls27{letter-spacing:5.263197pt;}
.ls8c{letter-spacing:5.718992pt;}
.ls7f{letter-spacing:6.378231pt;}
.ls15{letter-spacing:6.643959pt;}
.ls5{letter-spacing:7.822187pt;}
.ls4f{letter-spacing:7.822824pt;}
.ls38{letter-spacing:7.826750pt;}
.ls40{letter-spacing:7.889503pt;}
.ls75{letter-spacing:8.189998pt;}
.ls83{letter-spacing:8.191565pt;}
.ls53{letter-spacing:8.379092pt;}
.ls58{letter-spacing:8.850079pt;}
.ls5b{letter-spacing:8.851945pt;}
.ls26{letter-spacing:8.855412pt;}
.ls4e{letter-spacing:8.856239pt;}
.ls14{letter-spacing:9.703412pt;}
.ls7e{letter-spacing:10.848220pt;}
.ls1e{letter-spacing:11.803145pt;}
.ls7{letter-spacing:11.808479pt;}
.ls4b{letter-spacing:11.809931pt;}
.ls6{letter-spacing:11.810750pt;}
.ls1f{letter-spacing:12.658479pt;}
.ls95{letter-spacing:13.316932pt;}
.ls6d{letter-spacing:13.649386pt;}
.ls6c{letter-spacing:13.650452pt;}
.ls5a{letter-spacing:14.755520pt;}
.ls4{letter-spacing:14.757812pt;}
.ls5e{letter-spacing:14.759467pt;}
.ls67{letter-spacing:14.761279pt;}
.ls8b{letter-spacing:14.954265pt;}
.ls51{letter-spacing:15.229698pt;}
.ls65{letter-spacing:16.285416pt;}
.ls3{letter-spacing:16.290750pt;}
.ls90{letter-spacing:16.664369pt;}
.ls7b{letter-spacing:16.972822pt;}
.ls2e{letter-spacing:17.122750pt;}
.ls2c{letter-spacing:17.172074pt;}
.ls30{letter-spacing:17.234570pt;}
.ls3b{letter-spacing:17.297503pt;}
.ls93{letter-spacing:17.364932pt;}
.ls1c{letter-spacing:18.199813pt;}
.ls91{letter-spacing:18.378265pt;}
.ls6b{letter-spacing:18.595520pt;}
.ls6a{letter-spacing:18.598852pt;}
.ls34{letter-spacing:18.600083pt;}
.ls42{letter-spacing:19.142836pt;}
.ls32{letter-spacing:19.446995pt;}
.ls94{letter-spacing:19.908932pt;}
.ls4c{letter-spacing:20.183903pt;}
.ls39{letter-spacing:20.257668pt;}
.ls46{letter-spacing:20.263001pt;}
.ls3a{letter-spacing:21.136479pt;}
.ls97{letter-spacing:21.855599pt;}
.ls4a{letter-spacing:21.982299pt;}
.ls1b{letter-spacing:22.371032pt;}
.ls78{letter-spacing:22.807264pt;}
.ls52{letter-spacing:23.133237pt;}
.ls1d{letter-spacing:23.560848pt;}
.ls57{letter-spacing:24.492597pt;}
.ls24{letter-spacing:24.578750pt;}
.ls2a{letter-spacing:24.580984pt;}
.ls49{letter-spacing:26.551264pt;}
.ls2b{letter-spacing:26.558251pt;}
.ls3f{letter-spacing:26.979959pt;}
.ls56{letter-spacing:28.524597pt;}
.ls3e{letter-spacing:28.715092pt;}
.ls35{letter-spacing:30.274750pt;}
.ls85{letter-spacing:30.804327pt;}
.ls88{letter-spacing:32.547032pt;}
.ls89{letter-spacing:32.549812pt;}
.lsa{letter-spacing:32.654187pt;}
.lsb{letter-spacing:32.655651pt;}
.ls29{letter-spacing:32.949759pt;}
.ls87{letter-spacing:33.040271pt;}
.ls8e{letter-spacing:33.108568pt;}
.ls1a{letter-spacing:33.608918pt;}
.lse{letter-spacing:34.905292pt;}
.ls10{letter-spacing:35.406740pt;}
.ls55{letter-spacing:36.977931pt;}
.ls33{letter-spacing:37.277237pt;}
.lsf{letter-spacing:37.398836pt;}
.ls16{letter-spacing:37.644745pt;}
.ls17{letter-spacing:37.647651pt;}
.ls11{letter-spacing:38.845416pt;}
.ls69{letter-spacing:40.279412pt;}
.ls7c{letter-spacing:47.601386pt;}
.ls73{letter-spacing:55.787139pt;}
.ls72{letter-spacing:55.792473pt;}
.ls61{letter-spacing:65.134400pt;}
.ls5f{letter-spacing:67.788911pt;}
.ls63{letter-spacing:67.794245pt;}
.ls82{letter-spacing:69.705793pt;}
.ls60{letter-spacing:77.150374pt;}
.ls22{letter-spacing:86.489760pt;}
.ls36{letter-spacing:88.266981pt;}
.ls50{letter-spacing:92.743903pt;}
.ls5c{letter-spacing:122.498079pt;}
.ls64{letter-spacing:193.324745pt;}
.ls84{letter-spacing:194.800495pt;}
.ls23{letter-spacing:260.380745pt;}
.ls3d{letter-spacing:275.106079pt;}
.ls48{letter-spacing:315.138079pt;}
.ls31{letter-spacing:329.879412pt;}
.ls92{letter-spacing:335.682079pt;}
.ls45{letter-spacing:382.391903pt;}
.ls9{letter-spacing:403.255412pt;}
.ls37{letter-spacing:422.429237pt;}
.ls54{letter-spacing:555.804745pt;}
.wseb{word-spacing:-91.910963pt;}
.ws7e{word-spacing:-72.580862pt;}
.ws7c{word-spacing:-42.066082pt;}
.ws74{word-spacing:-34.611401pt;}
.wsf9{word-spacing:-32.063846pt;}
.ws78{word-spacing:-25.778364pt;}
.ws70{word-spacing:-25.738045pt;}
.ws159{word-spacing:-19.829940pt;}
.ws143{word-spacing:-16.811555pt;}
.ws95{word-spacing:-14.760588pt;}
.ws64{word-spacing:-13.283467pt;}
.ws1f{word-spacing:-13.262246pt;}
.ws63{word-spacing:-10.626800pt;}
.ws145{word-spacing:-4.584419pt;}
.ws99{word-spacing:-2.964870pt;}
.ws146{word-spacing:-2.956616pt;}
.ws62{word-spacing:-2.656693pt;}
.ws43{word-spacing:-1.062677pt;}
.wsdb{word-spacing:-0.956410pt;}
.ws8{word-spacing:-0.860774pt;}
.ws18f{word-spacing:-0.850144pt;}
.ws118{word-spacing:-0.850142pt;}
.ws130{word-spacing:-0.797008pt;}
.wsff{word-spacing:-0.637606pt;}
.ws9{word-spacing:-0.621670pt;}
.ws13c{word-spacing:-0.609338pt;}
.ws4b{word-spacing:-0.584473pt;}
.ws91{word-spacing:-0.478205pt;}
.ws190{word-spacing:-0.425072pt;}
.ws52{word-spacing:-0.425071pt;}
.wsa5{word-spacing:-0.318803pt;}
.ws94{word-spacing:-0.159402pt;}
.ws6f{word-spacing:-0.053134pt;}
.ws3{word-spacing:-0.047821pt;}
.ws169{word-spacing:-0.042507pt;}
.ws6a{word-spacing:-0.037194pt;}
.wsf8{word-spacing:-0.031881pt;}
.ws61{word-spacing:-0.006480pt;}
.wsb4{word-spacing:0.000000pt;}
.ws13e{word-spacing:0.010627pt;}
.wsd1{word-spacing:0.015386pt;}
.ws12b{word-spacing:0.020279pt;}
.ws188{word-spacing:0.042507pt;}
.ws8f{word-spacing:0.053134pt;}
.ws79{word-spacing:0.106268pt;}
.ws10c{word-spacing:0.159402pt;}
.ws144{word-spacing:0.371937pt;}
.ws16b{word-spacing:0.467579pt;}
.wsc9{word-spacing:0.526029pt;}
.ws14c{word-spacing:0.531339pt;}
.wsba{word-spacing:0.573850pt;}
.ws123{word-spacing:0.584473pt;}
.ws173{word-spacing:0.850144pt;}
.ws18b{word-spacing:0.977666pt;}
.wsd{word-spacing:1.099878pt;}
.ws12f{word-spacing:1.168945pt;}
.ws6{word-spacing:1.243341pt;}
.wsa4{word-spacing:1.328347pt;}
.wsd0{word-spacing:1.381481pt;}
.ws166{word-spacing:1.445245pt;}
.wscc{word-spacing:1.482445pt;}
.ws2d{word-spacing:1.487748pt;}
.ws28{word-spacing:1.540882pt;}
.ws129{word-spacing:1.647150pt;}
.wsb5{word-spacing:1.673728pt;}
.wsaf{word-spacing:1.700284pt;}
.ws23{word-spacing:1.753418pt;}
.ws167{word-spacing:1.785302pt;}
.wsfd{word-spacing:1.806551pt;}
.ws184{word-spacing:1.997838pt;}
.wsc6{word-spacing:2.056294pt;}
.wsc0{word-spacing:2.125355pt;}
.ws3a{word-spacing:2.178489pt;}
.wsa7{word-spacing:2.231622pt;}
.ws29{word-spacing:2.284756pt;}
.ws3c{word-spacing:2.337890pt;}
.ws170{word-spacing:2.395999pt;}
.ws172{word-spacing:2.422910pt;}
.wsc5{word-spacing:2.534502pt;}
.ws3e{word-spacing:2.550426pt;}
.ws122{word-spacing:2.582323pt;}
.wsc1{word-spacing:2.603559pt;}
.ws106{word-spacing:2.656693pt;}
.wsf{word-spacing:2.677965pt;}
.ws26{word-spacing:2.709827pt;}
.ws104{word-spacing:2.762961pt;}
.ws3d{word-spacing:2.869229pt;}
.ws16f{word-spacing:2.890490pt;}
.ws2e{word-spacing:2.922363pt;}
.ws120{word-spacing:2.964890pt;}
.ws181{word-spacing:3.018011pt;}
.wsc2{word-spacing:3.028630pt;}
.wsdd{word-spacing:3.134898pt;}
.ws133{word-spacing:3.188032pt;}
.ws185{word-spacing:3.188040pt;}
.ws1d{word-spacing:3.251814pt;}
.wsa6{word-spacing:3.294300pt;}
.ws4a{word-spacing:3.453701pt;}
.ws31{word-spacing:3.506835pt;}
.ws11a{word-spacing:3.613103pt;}
.wsf2{word-spacing:3.666237pt;}
.wsf0{word-spacing:3.689164pt;}
.ws53{word-spacing:3.719371pt;}
.ws5b{word-spacing:3.772505pt;}
.wsa1{word-spacing:3.772882pt;}
.ws7a{word-spacing:3.825638pt;}
.ws13d{word-spacing:3.878772pt;}
.ws2c{word-spacing:3.931906pt;}
.ws148{word-spacing:3.985040pt;}
.ws71{word-spacing:4.038174pt;}
.wsd7{word-spacing:4.144442pt;}
.wsda{word-spacing:4.197575pt;}
.ws121{word-spacing:4.208230pt;}
.ws162{word-spacing:4.250709pt;}
.ws165{word-spacing:4.250720pt;}
.ws175{word-spacing:4.262408pt;}
.ws87{word-spacing:4.303843pt;}
.ws98{word-spacing:4.356977pt;}
.wscd{word-spacing:4.399514pt;}
.ws119{word-spacing:4.410111pt;}
.wsbf{word-spacing:4.516379pt;}
.wsd3{word-spacing:4.622646pt;}
.ws10d{word-spacing:4.728914pt;}
.wsbb{word-spacing:4.734259pt;}
.ws3f{word-spacing:4.782048pt;}
.wsc7{word-spacing:4.782080pt;}
.wse0{word-spacing:4.835182pt;}
.ws16d{word-spacing:4.845821pt;}
.ws92{word-spacing:4.888316pt;}
.ws68{word-spacing:4.941450pt;}
.ws14f{word-spacing:4.952076pt;}
.wsd8{word-spacing:4.994583pt;}
.wsbe{word-spacing:5.047717pt;}
.ws117{word-spacing:5.111478pt;}
.ws7{word-spacing:5.164646pt;}
.ws84{word-spacing:5.207119pt;}
.ws10e{word-spacing:5.253957pt;}
.wsb1{word-spacing:5.260253pt;}
.ws10f{word-spacing:5.267319pt;}
.ws65{word-spacing:5.269735pt;}
.ws12a{word-spacing:5.269999pt;}
.ws12c{word-spacing:5.270893pt;}
.ws12d{word-spacing:5.277724pt;}
.ws73{word-spacing:5.312282pt;}
.wsf4{word-spacing:5.312777pt;}
.ws2{word-spacing:5.313387pt;}
.ws44{word-spacing:5.366521pt;}
.wsfe{word-spacing:5.419654pt;}
.ws191{word-spacing:5.440922pt;}
.ws100{word-spacing:5.472788pt;}
.ws56{word-spacing:5.525922pt;}
.ws178{word-spacing:5.564540pt;}
.ws17a{word-spacing:5.568443pt;}
.ws149{word-spacing:5.579056pt;}
.ws41{word-spacing:5.632190pt;}
.ws5c{word-spacing:5.685324pt;}
.ws124{word-spacing:5.738458pt;}
.ws10b{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wsa8{word-spacing:5.897859pt;}
.ws57{word-spacing:5.950993pt;}
.ws1a{word-spacing:5.977600pt;}
.ws96{word-spacing:6.032895pt;}
.ws97{word-spacing:6.057261pt;}
.ws5{word-spacing:6.073242pt;}
.ws19{word-spacing:6.312346pt;}
.ws4f{word-spacing:6.322930pt;}
.ws11{word-spacing:6.360166pt;}
.wsad{word-spacing:6.429198pt;}
.wsb9{word-spacing:6.455808pt;}
.ws35{word-spacing:6.482332pt;}
.ws127{word-spacing:6.588599pt;}
.ws36{word-spacing:6.694867pt;}
.wsc8{word-spacing:6.694912pt;}
.wsa{word-spacing:6.742733pt;}
.wsb0{word-spacing:6.748001pt;}
.ws89{word-spacing:6.801135pt;}
.ws142{word-spacing:6.854269pt;}
.ws14e{word-spacing:6.886195pt;}
.ws15b{word-spacing:6.918029pt;}
.ws109{word-spacing:6.960537pt;}
.ws49{word-spacing:7.013670pt;}
.ws8d{word-spacing:7.054497pt;}
.ws8e{word-spacing:7.066804pt;}
.ws177{word-spacing:7.098702pt;}
.ws25{word-spacing:7.119938pt;}
.ws55{word-spacing:7.173072pt;}
.ws15{word-spacing:7.173120pt;}
.ws37{word-spacing:7.279340pt;}
.ws45{word-spacing:7.385607pt;}
.ws18e{word-spacing:7.396253pt;}
.ws18c{word-spacing:7.401608pt;}
.ws182{word-spacing:7.438760pt;}
.ws24{word-spacing:7.491875pt;}
.ws93{word-spacing:7.545009pt;}
.ws72{word-spacing:7.598143pt;}
.wsea{word-spacing:7.651277pt;}
.ws16a{word-spacing:7.651296pt;}
.ws102{word-spacing:7.704411pt;}
.wsd4{word-spacing:7.757545pt;}
.ws101{word-spacing:7.810678pt;}
.ws132{word-spacing:7.863812pt;}
.ws150{word-spacing:7.970080pt;}
.ws14b{word-spacing:8.023214pt;}
.ws116{word-spacing:8.076348pt;}
.ws17b{word-spacing:8.076368pt;}
.ws7b{word-spacing:8.119908pt;}
.wsb6{word-spacing:8.129536pt;}
.ws135{word-spacing:8.140831pt;}
.ws147{word-spacing:8.182615pt;}
.ws58{word-spacing:8.235749pt;}
.ws187{word-spacing:8.246397pt;}
.wscf{word-spacing:8.288883pt;}
.wsb{word-spacing:8.320819pt;}
.ws115{word-spacing:8.342017pt;}
.wscb{word-spacing:8.368640pt;}
.ws11b{word-spacing:8.395151pt;}
.ws86{word-spacing:8.501419pt;}
.ws189{word-spacing:8.543947pt;}
.ws54{word-spacing:8.554553pt;}
.ws8b{word-spacing:8.713954pt;}
.ws128{word-spacing:8.767088pt;}
.ws154{word-spacing:8.820222pt;}
.wsbc{word-spacing:8.846848pt;}
.wsa9{word-spacing:8.873356pt;}
.ws4{word-spacing:8.942490pt;}
.ws155{word-spacing:8.979623pt;}
.ws15a{word-spacing:9.032757pt;}
.ws67{word-spacing:9.085891pt;}
.wsd5{word-spacing:9.139025pt;}
.ws17c{word-spacing:9.181555pt;}
.ws4e{word-spacing:9.192159pt;}
.ws10a{word-spacing:9.298427pt;}
.ws11e{word-spacing:9.351561pt;}
.wsb2{word-spacing:9.404694pt;}
.ws2b{word-spacing:9.457828pt;}
.ws105{word-spacing:9.510962pt;}
.ws85{word-spacing:9.617230pt;}
.ws46{word-spacing:9.670364pt;}
.ws9f{word-spacing:9.686234pt;}
.wsa3{word-spacing:9.776631pt;}
.ws156{word-spacing:9.829765pt;}
.ws77{word-spacing:9.840392pt;}
.ws9a{word-spacing:9.882899pt;}
.ws17f{word-spacing:10.074206pt;}
.ws16{word-spacing:10.090189pt;}
.ws39{word-spacing:10.095435pt;}
.ws141{word-spacing:10.147526pt;}
.wsd9{word-spacing:10.148569pt;}
.ws38{word-spacing:10.201702pt;}
.ws164{word-spacing:10.244235pt;}
.ws9b{word-spacing:10.254836pt;}
.ws34{word-spacing:10.307970pt;}
.ws153{word-spacing:10.361104pt;}
.ws103{word-spacing:10.414238pt;}
.wsce{word-spacing:10.520506pt;}
.ws76{word-spacing:10.617164pt;}
.ws60{word-spacing:10.626773pt;}
.ws40{word-spacing:10.679907pt;}
.ws81{word-spacing:10.733041pt;}
.wsfc{word-spacing:10.786175pt;}
.ws5a{word-spacing:10.839309pt;}
.ws42{word-spacing:10.892443pt;}
.ws110{word-spacing:11.051844pt;}
.ws9e{word-spacing:11.144100pt;}
.wsa0{word-spacing:11.158112pt;}
.ws51{word-spacing:11.317514pt;}
.wsb3{word-spacing:11.370647pt;}
.wsb7{word-spacing:11.572634pt;}
.wse2{word-spacing:11.583183pt;}
.ws48{word-spacing:11.636317pt;}
.wsef{word-spacing:11.755187pt;}
.wse6{word-spacing:11.779830pt;}
.wsc4{word-spacing:11.795718pt;}
.wsd2{word-spacing:11.901986pt;}
.ws80{word-spacing:11.954575pt;}
.ws14{word-spacing:11.955200pt;}
.wsac{word-spacing:12.008254pt;}
.ws33{word-spacing:12.061388pt;}
.ws22{word-spacing:12.114522pt;}
.ws11f{word-spacing:12.273923pt;}
.ws168{word-spacing:12.369595pt;}
.ws140{word-spacing:12.433325pt;}
.ws157{word-spacing:12.486459pt;}
.ws174{word-spacing:12.582131pt;}
.ws2f{word-spacing:12.645860pt;}
.ws113{word-spacing:12.698994pt;}
.ws90{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws15d{word-spacing:12.858396pt;}
.wsaa{word-spacing:12.911530pt;}
.ws171{word-spacing:13.007203pt;}
.ws107{word-spacing:13.017797pt;}
.ws163{word-spacing:13.049710pt;}
.ws151{word-spacing:13.070931pt;}
.wsc3{word-spacing:13.124065pt;}
.ws4d{word-spacing:13.283467pt;}
.wsca{word-spacing:13.294182pt;}
.ws2a{word-spacing:13.496002pt;}
.ws108{word-spacing:13.549136pt;}
.ws131{word-spacing:13.602270pt;}
.ws16e{word-spacing:13.644811pt;}
.ws125{word-spacing:13.655404pt;}
.ws158{word-spacing:13.761671pt;}
.ws186{word-spacing:13.772333pt;}
.ws160{word-spacing:13.814805pt;}
.ws139{word-spacing:13.953801pt;}
.ws137{word-spacing:13.958319pt;}
.ws136{word-spacing:13.966497pt;}
.ws13a{word-spacing:13.974207pt;}
.ws14d{word-spacing:14.080475pt;}
.ws4c{word-spacing:14.133609pt;}
.wse{word-spacing:14.154957pt;}
.wsfa{word-spacing:14.186742pt;}
.ws20{word-spacing:14.239876pt;}
.ws180{word-spacing:14.367434pt;}
.ws18{word-spacing:14.394061pt;}
.ws11d{word-spacing:14.452412pt;}
.ws111{word-spacing:14.505546pt;}
.ws3b{word-spacing:14.558679pt;}
.wsd6{word-spacing:14.611813pt;}
.ws12e{word-spacing:14.664947pt;}
.ws50{word-spacing:14.771215pt;}
.ws15c{word-spacing:14.824349pt;}
.ws176{word-spacing:14.835013pt;}
.ws13b{word-spacing:14.912496pt;}
.ws21{word-spacing:14.930617pt;}
.ws69{word-spacing:14.974497pt;}
.ws6b{word-spacing:14.983750pt;}
.ws83{word-spacing:15.249420pt;}
.ws16c{word-spacing:15.387606pt;}
.wsae{word-spacing:15.408821pt;}
.ws12{word-spacing:15.493939pt;}
.ws7d{word-spacing:15.614497pt;}
.ws7f{word-spacing:15.621357pt;}
.ws9d{word-spacing:15.727625pt;}
.ws17{word-spacing:15.733043pt;}
.wsb8{word-spacing:15.876506pt;}
.ws1e{word-spacing:15.940160pt;}
.ws5d{word-spacing:15.993294pt;}
.ws192{word-spacing:16.025214pt;}
.wsa2{word-spacing:16.046428pt;}
.ws179{word-spacing:16.152736pt;}
.ws14a{word-spacing:16.365231pt;}
.wsdc{word-spacing:16.418365pt;}
.ws126{word-spacing:16.577766pt;}
.ws30{word-spacing:16.684034pt;}
.wsc{word-spacing:16.832922pt;}
.ws114{word-spacing:16.896570pt;}
.ws8a{word-spacing:17.002837pt;}
.ws5e{word-spacing:17.109105pt;}
.ws13f{word-spacing:17.427908pt;}
.ws112{word-spacing:17.640444pt;}
.ws59{word-spacing:17.693578pt;}
.ws47{word-spacing:17.746711pt;}
.ws15f{word-spacing:17.906113pt;}
.ws152{word-spacing:17.959247pt;}
.ws18d{word-spacing:17.980546pt;}
.ws32{word-spacing:18.012381pt;}
.wsdf{word-spacing:18.118649pt;}
.ws183{word-spacing:18.193082pt;}
.wsab{word-spacing:18.278050pt;}
.ws6c{word-spacing:18.308921pt;}
.ws6d{word-spacing:18.331184pt;}
.wsfb{word-spacing:18.437452pt;}
.ws66{word-spacing:18.543719pt;}
.wse3{word-spacing:18.596853pt;}
.ws5f{word-spacing:18.756255pt;}
.ws134{word-spacing:18.862523pt;}
.ws15e{word-spacing:18.968790pt;}
.wsbd{word-spacing:19.021924pt;}
.ws18a{word-spacing:19.085733pt;}
.ws13{word-spacing:19.223962pt;}
.ws9c{word-spacing:19.245087pt;}
.wse8{word-spacing:19.287594pt;}
.ws11c{word-spacing:19.393861pt;}
.wsf1{word-spacing:19.593534pt;}
.wsf3{word-spacing:19.594969pt;}
.ws82{word-spacing:19.606397pt;}
.ws17d{word-spacing:19.765848pt;}
.ws88{word-spacing:20.031468pt;}
.wsde{word-spacing:20.137735pt;}
.ws17e{word-spacing:20.658499pt;}
.ws10{word-spacing:20.754227pt;}
.wsf5{word-spacing:21.216302pt;}
.ws161{word-spacing:21.838019pt;}
.ws1c{word-spacing:22.714880pt;}
.wse1{word-spacing:25.344854pt;}
.ws6e{word-spacing:26.141637pt;}
.ws27{word-spacing:26.566933pt;}
.wse7{word-spacing:27.689534pt;}
.ws138{word-spacing:29.872302pt;}
.ws1b{word-spacing:34.622259pt;}
.wse9{word-spacing:35.200302pt;}
.ws75{word-spacing:44.422771pt;}
.wsed{word-spacing:50.363171pt;}
.wsee{word-spacing:50.400330pt;}
.ws8c{word-spacing:53.946644pt;}
.wse5{word-spacing:55.748629pt;}
.wse4{word-spacing:55.753963pt;}
.wsf7{word-spacing:56.262398pt;}
.wsf6{word-spacing:56.267732pt;}
.wsec{word-spacing:62.389786pt;}
._16{margin-left:-77.204490pt;}
._c{margin-left:-31.402115pt;}
._d{margin-left:-19.462107pt;}
._19{margin-left:-12.069205pt;}
._2{margin-left:-10.201728pt;}
._1{margin-left:-5.100864pt;}
._11{margin-left:-4.197595pt;}
._0{margin-left:-3.188040pt;}
._6{margin-left:-2.178469pt;}
._3{margin-left:-1.275216pt;}
._b{width:1.590494pt;}
._5{width:2.656693pt;}
._1a{width:3.552996pt;}
._1c{width:7.098702pt;}
._13{width:13.761671pt;}
._7{width:15.249428pt;}
._15{width:16.737152pt;}
._4{width:19.367424pt;}
._f{width:20.987890pt;}
._a{width:22.422505pt;}
._12{width:23.963387pt;}
._9{width:26.301245pt;}
._14{width:27.221275pt;}
._e{width:29.456987pt;}
._8{width:31.933438pt;}
._10{width:38.038667pt;}
._18{width:65.091810pt;}
._17{width:77.150374pt;}
._1b{width:85.779530pt;}
.fs6{font-size:31.880533pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y179{bottom:114.238667pt;}
.y37{bottom:114.240000pt;}
.y1fe{bottom:117.494667pt;}
.y1fd{bottom:129.449333pt;}
.y36{bottom:130.180000pt;}
.yf4{bottom:130.336000pt;}
.y1fc{bottom:141.405333pt;}
.y35{bottom:146.120000pt;}
.ya0{bottom:146.121333pt;}
.yf3{bottom:146.277333pt;}
.y1d0{bottom:149.853333pt;}
.y61{bottom:151.993333pt;}
.y1fb{bottom:153.360000pt;}
.y34{bottom:162.060000pt;}
.ydf{bottom:162.061333pt;}
.yf2{bottom:162.217333pt;}
.y178{bottom:162.553333pt;}
.y9e{bottom:164.597333pt;}
.y1fa{bottom:165.314667pt;}
.y141{bottom:166.484000pt;}
.y60{bottom:167.933333pt;}
.y105{bottom:169.612000pt;}
.y1cf{bottom:172.056000pt;}
.y140{bottom:172.793333pt;}
.y9d{bottom:173.708000pt;}
.y9f{bottom:176.918667pt;}
.y1f9{bottom:177.270667pt;}
.y33{bottom:178.001333pt;}
.yde{bottom:178.036000pt;}
.yf1{bottom:178.157333pt;}
.y177{bottom:178.493333pt;}
.y5f{bottom:183.873333pt;}
.y1ce{bottom:187.996000pt;}
.y1f8{bottom:189.225333pt;}
.y142{bottom:189.896000pt;}
.y32{bottom:193.941333pt;}
.ydd{bottom:193.976000pt;}
.yf0{bottom:194.097333pt;}
.y176{bottom:194.433333pt;}
.y98{bottom:197.085333pt;}
.y13f{bottom:198.098667pt;}
.y9c{bottom:198.705333pt;}
.y104{bottom:199.288000pt;}
.y97{bottom:199.332000pt;}
.y5e{bottom:199.813333pt;}
.y1f7{bottom:201.180000pt;}
.y13e{bottom:201.254667pt;}
.y1cd{bottom:203.937333pt;}
.y13c{bottom:206.568000pt;}
.y9a{bottom:207.340000pt;}
.y96{bottom:208.004000pt;}
.y13b{bottom:209.457333pt;}
.y31{bottom:209.881333pt;}
.ydc{bottom:209.916000pt;}
.yef{bottom:210.037333pt;}
.y175{bottom:210.373333pt;}
.y1a9{bottom:210.809333pt;}
.y1f6{bottom:213.136000pt;}
.y13d{bottom:213.541333pt;}
.y103{bottom:215.228000pt;}
.y99{bottom:215.309333pt;}
.y5d{bottom:215.754667pt;}
.y1cc{bottom:219.877333pt;}
.y9b{bottom:219.996000pt;}
.y1f5{bottom:225.090667pt;}
.y30{bottom:225.821333pt;}
.ydb{bottom:225.856000pt;}
.yee{bottom:225.977333pt;}
.y174{bottom:226.313333pt;}
.y1a8{bottom:226.749333pt;}
.y102{bottom:231.169333pt;}
.y5c{bottom:231.694667pt;}
.y13a{bottom:234.629333pt;}
.y95{bottom:235.642667pt;}
.y1cb{bottom:235.817333pt;}
.y1f4{bottom:237.046667pt;}
.y2f{bottom:241.761333pt;}
.yda{bottom:241.796000pt;}
.yed{bottom:242.074667pt;}
.y173{bottom:242.254667pt;}
.y1a7{bottom:242.689333pt;}
.y101{bottom:247.109333pt;}
.y5b{bottom:247.634667pt;}
.y1f3{bottom:249.001333pt;}
.y139{bottom:250.072000pt;}
.y94{bottom:251.584000pt;}
.y1ca{bottom:251.757333pt;}
.y2e{bottom:257.702667pt;}
.yd9{bottom:257.737333pt;}
.yec{bottom:258.014667pt;}
.y172{bottom:258.194667pt;}
.y1a6{bottom:258.629333pt;}
.y1f2{bottom:260.956000pt;}
.y100{bottom:263.049333pt;}
.y5a{bottom:263.574667pt;}
.y138{bottom:266.012000pt;}
.y93{bottom:267.524000pt;}
.y1c9{bottom:267.697333pt;}
.y1f1{bottom:272.912000pt;}
.y2d{bottom:273.642667pt;}
.yd8{bottom:273.677333pt;}
.yeb{bottom:273.954667pt;}
.y171{bottom:274.134667pt;}
.y1a5{bottom:274.569333pt;}
.y59{bottom:279.514667pt;}
.y92{bottom:283.464000pt;}
.y1c8{bottom:283.637333pt;}
.y1f0{bottom:284.866667pt;}
.y137{bottom:288.826667pt;}
.y2c{bottom:289.582667pt;}
.yd7{bottom:289.617333pt;}
.y170{bottom:290.074667pt;}
.y1a4{bottom:290.510667pt;}
.y58{bottom:295.456000pt;}
.y136{bottom:296.664000pt;}
.y1ef{bottom:296.821333pt;}
.y91{bottom:299.404000pt;}
.y1c7{bottom:299.578667pt;}
.y2b{bottom:305.522667pt;}
.yd6{bottom:305.557333pt;}
.y16f{bottom:306.014667pt;}
.y1ee{bottom:308.777333pt;}
.yff{bottom:309.178667pt;}
.y57{bottom:311.396000pt;}
.y1a3{bottom:313.585333pt;}
.y90{bottom:314.360000pt;}
.y1c6{bottom:315.518667pt;}
.yea{bottom:319.004000pt;}
.y1ed{bottom:320.732000pt;}
.y2a{bottom:321.462667pt;}
.yd5{bottom:321.497333pt;}
.y16e{bottom:321.954667pt;}
.yfe{bottom:322.461333pt;}
.y1a2{bottom:322.697333pt;}
.y135{bottom:325.556000pt;}
.y56{bottom:327.336000pt;}
.y8f{bottom:330.300000pt;}
.y1c5{bottom:331.458667pt;}
.ye9{bottom:332.288000pt;}
.y1ec{bottom:332.686667pt;}
.yfd{bottom:335.745333pt;}
.y29{bottom:337.132000pt;}
.y190{bottom:337.402667pt;}
.yd4{bottom:337.437333pt;}
.y16d{bottom:337.896000pt;}
.y55{bottom:343.276000pt;}
.y1eb{bottom:344.642667pt;}
.ye8{bottom:345.570667pt;}
.y133{bottom:345.654667pt;}
.y8e{bottom:346.240000pt;}
.y1c4{bottom:347.398667pt;}
.yfc{bottom:349.029333pt;}
.y28{bottom:353.072000pt;}
.yd3{bottom:353.378667pt;}
.y16c{bottom:353.836000pt;}
.y1a1{bottom:356.209333pt;}
.y1ea{bottom:356.597333pt;}
.y18f{bottom:358.760000pt;}
.ye7{bottom:358.854667pt;}
.y54{bottom:359.216000pt;}
.y132{bottom:361.594667pt;}
.y8d{bottom:362.180000pt;}
.yfb{bottom:362.312000pt;}
.y1c3{bottom:363.338667pt;}
.y12d{bottom:364.250667pt;}
.y1e9{bottom:368.553333pt;}
.y27{bottom:369.012000pt;}
.yd2{bottom:369.318667pt;}
.y16b{bottom:369.776000pt;}
.ye6{bottom:372.138667pt;}
.y1a0{bottom:372.149333pt;}
.y134{bottom:372.752000pt;}
.y12c{bottom:372.753333pt;}
.y18e{bottom:374.700000pt;}
.y53{bottom:375.156000pt;}
.yfa{bottom:375.596000pt;}
.y131{bottom:377.534667pt;}
.y8c{bottom:378.121333pt;}
.y1c2{bottom:379.280000pt;}
.y1e8{bottom:380.508000pt;}
.y12b{bottom:380.722667pt;}
.y26{bottom:384.953333pt;}
.yd1{bottom:385.258667pt;}
.y125{bottom:385.372000pt;}
.ye5{bottom:385.421333pt;}
.y16a{bottom:385.716000pt;}
.y19f{bottom:388.089333pt;}
.y12a{bottom:388.693333pt;}
.yf9{bottom:388.880000pt;}
.y52{bottom:391.097333pt;}
.y1e7{bottom:392.462667pt;}
.y130{bottom:393.474667pt;}
.y8b{bottom:394.061333pt;}
.y1c1{bottom:395.220000pt;}
.y129{bottom:396.662667pt;}
.ye4{bottom:398.705333pt;}
.y25{bottom:400.893333pt;}
.yd0{bottom:401.233333pt;}
.y18d{bottom:401.352000pt;}
.y169{bottom:402.149333pt;}
.y19e{bottom:404.029333pt;}
.y1e6{bottom:404.418667pt;}
.y128{bottom:404.633333pt;}
.y51{bottom:407.037333pt;}
.y12f{bottom:409.416000pt;}
.y8a{bottom:410.001333pt;}
.y1c0{bottom:411.160000pt;}
.y127{bottom:412.604000pt;}
.y1e5{bottom:416.373333pt;}
.y24{bottom:416.833333pt;}
.ycf{bottom:417.173333pt;}
.y18c{bottom:417.293333pt;}
.y168{bottom:418.089333pt;}
.y19d{bottom:419.969333pt;}
.y50{bottom:422.977333pt;}
.y12e{bottom:425.356000pt;}
.y89{bottom:425.941333pt;}
.y1bf{bottom:427.100000pt;}
.y1e4{bottom:428.328000pt;}
.y23{bottom:432.773333pt;}
.yce{bottom:433.114667pt;}
.y18b{bottom:433.233333pt;}
.y167{bottom:434.029333pt;}
.y19c{bottom:435.909333pt;}
.y126{bottom:435.982667pt;}
.y4f{bottom:438.917333pt;}
.y1e3{bottom:440.284000pt;}
.y1be{bottom:443.040000pt;}
.y88{bottom:445.573333pt;}
.y22{bottom:448.713333pt;}
.ycd{bottom:449.054667pt;}
.y18a{bottom:449.173333pt;}
.y166{bottom:449.969333pt;}
.y19b{bottom:451.850667pt;}
.y124{bottom:451.957333pt;}
.y1e2{bottom:452.238667pt;}
.y4e{bottom:454.857333pt;}
.y1bd{bottom:458.980000pt;}
.y1e1{bottom:464.194667pt;}
.ycc{bottom:464.994667pt;}
.y189{bottom:465.113333pt;}
.y165{bottom:465.910667pt;}
.y87{bottom:467.528000pt;}
.y19a{bottom:467.790667pt;}
.y123{bottom:467.897333pt;}
.y21{bottom:468.566667pt;}
.y4d{bottom:470.797333pt;}
.y1bc{bottom:474.921333pt;}
.y1e0{bottom:476.149333pt;}
.y86{bottom:479.962667pt;}
.ycb{bottom:480.934667pt;}
.y188{bottom:481.053333pt;}
.y164{bottom:481.850667pt;}
.y85{bottom:483.621333pt;}
.y199{bottom:483.730667pt;}
.y122{bottom:483.837333pt;}
.y4c{bottom:486.738667pt;}
.y1df{bottom:488.104000pt;}
.y1bb{bottom:494.594667pt;}
.y20{bottom:495.540000pt;}
.yca{bottom:496.874667pt;}
.y187{bottom:496.993333pt;}
.y163{bottom:497.790667pt;}
.y198{bottom:499.670667pt;}
.y121{bottom:499.777333pt;}
.y1de{bottom:500.060000pt;}
.y84{bottom:501.213333pt;}
.y4b{bottom:502.678667pt;}
.y1f{bottom:508.822667pt;}
.y82{bottom:509.848000pt;}
.y80{bottom:510.512000pt;}
.y1dd{bottom:512.014667pt;}
.yc9{bottom:512.814667pt;}
.y186{bottom:512.934667pt;}
.y162{bottom:513.730667pt;}
.y120{bottom:515.717333pt;}
.y1ba{bottom:516.797333pt;}
.y81{bottom:517.817333pt;}
.y4a{bottom:518.618667pt;}
.y1e{bottom:522.106667pt;}
.y83{bottom:522.504000pt;}
.y1dc{bottom:523.969333pt;}
.y196{bottom:525.365333pt;}
.yc8{bottom:528.756000pt;}
.y185{bottom:528.874667pt;}
.y197{bottom:531.065333pt;}
.y1b9{bottom:532.737333pt;}
.y49{bottom:534.558667pt;}
.y1d{bottom:535.118667pt;}
.y1db{bottom:535.925333pt;}
.y161{bottom:536.813333pt;}
.y7f{bottom:538.150667pt;}
.y11f{bottom:538.532000pt;}
.y192{bottom:539.173333pt;}
.y193{bottom:539.385333pt;}
.y184{bottom:545.020000pt;}
.y11e{bottom:546.369333pt;}
.y1da{bottom:547.880000pt;}
.y1c{bottom:548.402667pt;}
.y1b8{bottom:548.677333pt;}
.yc7{bottom:549.001333pt;}
.y48{bottom:550.498667pt;}
.y195{bottom:550.530667pt;}
.y160{bottom:552.753333pt;}
.y7e{bottom:554.092000pt;}
.y194{bottom:554.161333pt;}
.y1d9{bottom:559.836000pt;}
.y183{bottom:560.960000pt;}
.y1b{bottom:561.686667pt;}
.y1b7{bottom:564.617333pt;}
.y47{bottom:566.438667pt;}
.y7d{bottom:570.032000pt;}
.y1d8{bottom:571.790667pt;}
.yc6{bottom:574.204000pt;}
.y1a{bottom:574.969333pt;}
.y182{bottom:576.900000pt;}
.y1b6{bottom:580.557333pt;}
.y11d{bottom:581.073333pt;}
.y15f{bottom:581.849333pt;}
.y46{bottom:582.380000pt;}
.y1d7{bottom:583.745333pt;}
.y7c{bottom:585.972000pt;}
.y19{bottom:588.253333pt;}
.yc5{bottom:590.144000pt;}
.y191{bottom:592.840000pt;}
.y181{bottom:592.841333pt;}
.y1d6{bottom:595.701333pt;}
.y1b5{bottom:596.498667pt;}
.y11c{bottom:597.013333pt;}
.y15e{bottom:597.790667pt;}
.y18{bottom:601.536000pt;}
.y45{bottom:604.193333pt;}
.y7b{bottom:605.384000pt;}
.yc4{bottom:606.084000pt;}
.y1d5{bottom:607.656000pt;}
.y180{bottom:608.781333pt;}
.y1b4{bottom:612.438667pt;}
.y11b{bottom:612.954667pt;}
.y15d{bottom:613.730667pt;}
.y17{bottom:614.820000pt;}
.y7a{bottom:617.793333pt;}
.y1d4{bottom:619.610667pt;}
.y44{bottom:620.133333pt;}
.yc3{bottom:622.024000pt;}
.y16{bottom:628.104000pt;}
.y1b3{bottom:628.378667pt;}
.y11a{bottom:628.894667pt;}
.y15c{bottom:629.670667pt;}
.y1d3{bottom:631.566667pt;}
.y79{bottom:632.008000pt;}
.y43{bottom:636.073333pt;}
.yc2{bottom:637.964000pt;}
.y15{bottom:641.386667pt;}
.ye3{bottom:643.900000pt;}
.y1b2{bottom:644.318667pt;}
.y119{bottom:644.834667pt;}
.y15b{bottom:645.610667pt;}
.yf8{bottom:649.929333pt;}
.y1d2{bottom:651.292000pt;}
.y42{bottom:652.013333pt;}
.y17f{bottom:653.413333pt;}
.yc1{bottom:653.905333pt;}
.y14{bottom:654.670667pt;}
.y78{bottom:656.938667pt;}
.ye2{bottom:657.182667pt;}
.y1b1{bottom:660.258667pt;}
.y118{bottom:660.774667pt;}
.y15a{bottom:661.550667pt;}
.yf7{bottom:663.213333pt;}
.y17e{bottom:666.697333pt;}
.y41{bottom:667.953333pt;}
.y13{bottom:667.954667pt;}
.yc0{bottom:669.845333pt;}
.ye1{bottom:670.466667pt;}
.y77{bottom:672.878667pt;}
.y1b0{bottom:676.198667pt;}
.y117{bottom:676.217333pt;}
.yf6{bottom:676.497333pt;}
.y159{bottom:677.490667pt;}
.y17d{bottom:679.981333pt;}
.y12{bottom:681.237333pt;}
.ye0{bottom:683.750667pt;}
.y40{bottom:683.894667pt;}
.ybf{bottom:685.785333pt;}
.y76{bottom:688.818667pt;}
.yf5{bottom:689.780000pt;}
.y1d1{bottom:692.138667pt;}
.y1af{bottom:692.140000pt;}
.y116{bottom:692.157333pt;}
.y17c{bottom:693.264000pt;}
.y158{bottom:693.432000pt;}
.y11{bottom:694.521333pt;}
.y3f{bottom:699.834667pt;}
.y75{bottom:704.758667pt;}
.ybe{bottom:706.396000pt;}
.y17b{bottom:706.548000pt;}
.yba{bottom:706.582667pt;}
.y10{bottom:707.805333pt;}
.y1ae{bottom:708.080000pt;}
.y115{bottom:708.097333pt;}
.y157{bottom:709.372000pt;}
.ybc{bottom:715.030667pt;}
.yb9{bottom:715.694667pt;}
.y3e{bottom:715.774667pt;}
.y17a{bottom:719.830667pt;}
.y74{bottom:720.700000pt;}
.yf{bottom:721.088000pt;}
.ybb{bottom:723.000000pt;}
.y114{bottom:723.042667pt;}
.y1ad{bottom:724.020000pt;}
.y156{bottom:725.312000pt;}
.ybd{bottom:727.686667pt;}
.y3d{bottom:731.714667pt;}
.ye{bottom:734.372000pt;}
.y73{bottom:736.640000pt;}
.y113{bottom:738.982667pt;}
.yb4{bottom:738.992000pt;}
.yb8{bottom:740.612000pt;}
.yb3{bottom:741.240000pt;}
.y155{bottom:741.252000pt;}
.y3c{bottom:747.654667pt;}
.yd{bottom:747.656000pt;}
.yb6{bottom:749.246667pt;}
.yb2{bottom:749.910667pt;}
.y72{bottom:752.580000pt;}
.y112{bottom:754.924000pt;}
.y154{bottom:757.192000pt;}
.yb5{bottom:757.217333pt;}
.yc{bottom:760.938667pt;}
.yb7{bottom:761.902667pt;}
.y3b{bottom:763.594667pt;}
.y1ac{bottom:768.652000pt;}
.y111{bottom:769.868000pt;}
.y153{bottom:773.132000pt;}
.yb{bottom:774.222667pt;}
.y71{bottom:775.298667pt;}
.yb1{bottom:777.169333pt;}
.y3a{bottom:779.536000pt;}
.y1ab{bottom:781.936000pt;}
.y110{bottom:785.808000pt;}
.ya{bottom:787.505333pt;}
.y152{bottom:789.073333pt;}
.yb0{bottom:793.109333pt;}
.y1aa{bottom:795.220000pt;}
.y39{bottom:795.476000pt;}
.y70{bottom:798.018667pt;}
.y9{bottom:800.789333pt;}
.y10f{bottom:801.749333pt;}
.y151{bottom:805.013333pt;}
.yaf{bottom:809.049333pt;}
.y38{bottom:811.416000pt;}
.y6f{bottom:813.958667pt;}
.y8{bottom:814.073333pt;}
.y10e{bottom:817.689333pt;}
.y150{bottom:820.953333pt;}
.yae{bottom:824.989333pt;}
.y7{bottom:827.356000pt;}
.y6e{bottom:829.898667pt;}
.y10d{bottom:833.629333pt;}
.y14f{bottom:836.893333pt;}
.yad{bottom:840.929333pt;}
.y6d{bottom:849.530667pt;}
.y10c{bottom:849.569333pt;}
.y14e{bottom:852.833333pt;}
.yac{bottom:856.869333pt;}
.y10b{bottom:865.509333pt;}
.y6{bottom:868.846667pt;}
.y6c{bottom:869.164000pt;}
.y14d{bottom:869.266667pt;}
.yab{bottom:877.116000pt;}
.y10a{bottom:881.450667pt;}
.y14c{bottom:885.206667pt;}
.y5{bottom:885.284000pt;}
.y6b{bottom:891.117333pt;}
.y109{bottom:897.390667pt;}
.ya9{bottom:897.946667pt;}
.y14b{bottom:901.148000pt;}
.y4{bottom:901.920000pt;}
.y6a{bottom:907.057333pt;}
.ya8{bottom:907.058667pt;}
.yaa{bottom:910.269333pt;}
.y108{bottom:913.330667pt;}
.y14a{bottom:917.088000pt;}
.y69{bottom:922.997333pt;}
.y107{bottom:929.270667pt;}
.ya3{bottom:929.918667pt;}
.ya7{bottom:931.538667pt;}
.ya2{bottom:932.166667pt;}
.y149{bottom:933.028000pt;}
.y68{bottom:938.938667pt;}
.ya5{bottom:940.173333pt;}
.ya1{bottom:940.837333pt;}
.y3{bottom:943.762667pt;}
.ya4{bottom:948.144000pt;}
.y106{bottom:948.897333pt;}
.y148{bottom:948.968000pt;}
.ya6{bottom:952.829333pt;}
.y67{bottom:954.878667pt;}
.y147{bottom:964.908000pt;}
.y66{bottom:970.818667pt;}
.y146{bottom:980.848000pt;}
.y2{bottom:980.957333pt;}
.y65{bottom:986.758667pt;}
.y145{bottom:996.789333pt;}
.y64{bottom:1002.698667pt;}
.y144{bottom:1012.729333pt;}
.y1{bottom:1018.150667pt;}
.y63{bottom:1018.638667pt;}
.y143{bottom:1034.578667pt;}
.y62{bottom:1034.580000pt;}
.h33{height:2.008474pt;}
.h31{height:2.056294pt;}
.h12{height:17.746711pt;}
.hf{height:17.752045pt;}
.h32{height:22.107556pt;}
.h14{height:25.068486pt;}
.h10{height:25.589197pt;}
.h18{height:25.812358pt;}
.h36{height:29.244954pt;}
.h23{height:32.900710pt;}
.h6{height:33.187635pt;}
.h5{height:33.426739pt;}
.h2b{height:35.865600pt;}
.h7{height:36.290431pt;}
.h4{height:36.556100pt;}
.hd{height:36.874903pt;}
.hc{height:37.459376pt;}
.h9{height:39.850400pt;}
.h3{height:40.211857pt;}
.h16{height:44.348486pt;}
.ha{height:45.427101pt;}
.h26{height:45.432434pt;}
.h2a{height:45.806302pt;}
.h2c{height:45.811635pt;}
.h1f{height:48.088434pt;}
.hb{height:49.712237pt;}
.h8{height:49.717570pt;}
.h17{height:51.190767pt;}
.h13{height:52.368237pt;}
.h1e{height:52.373570pt;}
.h30{height:64.115635pt;}
.h2e{height:69.331140pt;}
.h1c{height:73.406043pt;}
.h29{height:73.699635pt;}
.h1a{height:73.750767pt;}
.h1d{height:73.902043pt;}
.h15{height:74.654043pt;}
.h1b{height:75.797067pt;}
.h35{height:76.298400pt;}
.he{height:76.722711pt;}
.h22{height:77.045067pt;}
.h11{height:78.850711pt;}
.h2{height:87.734861pt;}
.h27{height:92.664045pt;}
.h24{height:92.669378pt;}
.h2f{height:94.568474pt;}
.h34{height:101.763140pt;}
.h2d{height:103.203140pt;}
.h21{height:115.298711pt;}
.h20{height:116.045378pt;}
.h19{height:122.525378pt;}
.h28{height:124.013378pt;}
.h25{height:124.018711pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:67.200000pt;}
.x4d{left:69.189333pt;}
.xc{left:70.598667pt;}
.x4b{left:77.270667pt;}
.x7{left:80.482667pt;}
.x53{left:81.664000pt;}
.x1{left:86.656000pt;}
.x4e{left:101.118667pt;}
.x43{left:113.313333pt;}
.x45{left:131.020000pt;}
.x1b{left:133.569333pt;}
.x2{left:138.413333pt;}
.x5{left:140.001333pt;}
.x1d{left:142.914667pt;}
.x10{left:147.784000pt;}
.x44{left:149.989333pt;}
.x5b{left:151.009333pt;}
.x1f{left:157.362667pt;}
.x46{left:159.173333pt;}
.x4f{left:162.656000pt;}
.x20{left:163.932000pt;}
.x16{left:165.158667pt;}
.x47{left:168.029333pt;}
.x48{left:171.029333pt;}
.x9{left:176.208000pt;}
.x6{left:178.285333pt;}
.xd{left:183.501333pt;}
.x50{left:193.425333pt;}
.x21{left:194.998667pt;}
.x26{left:206.474667pt;}
.x25{left:208.430667pt;}
.x17{left:210.138667pt;}
.x22{left:214.333333pt;}
.x27{left:218.024000pt;}
.x3{left:219.580000pt;}
.x51{left:224.193333pt;}
.xe{left:225.098667pt;}
.x18{left:229.473333pt;}
.x4{left:234.988000pt;}
.x12{left:237.450667pt;}
.x4c{left:246.645333pt;}
.x23{left:253.668000pt;}
.x52{left:254.962667pt;}
.x11{left:257.338667pt;}
.x24{left:261.048000pt;}
.x13{left:261.990667pt;}
.x19{left:268.806667pt;}
.x1a{left:276.186667pt;}
.x14{left:304.606667pt;}
.x49{left:310.301333pt;}
.x4a{left:321.370667pt;}
.x1e{left:323.818667pt;}
.xf{left:357.288000pt;}
.x1c{left:359.698667pt;}
.x15{left:366.466667pt;}
.x54{left:389.737333pt;}
.xa{left:404.820000pt;}
.x5d{left:410.133333pt;}
.x55{left:411.608000pt;}
.xb{left:418.104000pt;}
.x5e{left:429.166667pt;}
.x42{left:438.772000pt;}
.x32{left:441.400000pt;}
.x34{left:447.969333pt;}
.x33{left:449.460000pt;}
.x56{left:473.082667pt;}
.x35{left:476.822667pt;}
.x3e{left:478.416000pt;}
.x36{left:486.652000pt;}
.x3f{left:492.725333pt;}
.x40{left:500.105333pt;}
.x28{left:504.992000pt;}
.x37{left:505.986667pt;}
.x57{left:507.661333pt;}
.x2a{left:511.561333pt;}
.x29{left:513.052000pt;}
.x41{left:519.034667pt;}
.x5c{left:528.468000pt;}
.x58{left:531.233333pt;}
.x59{left:532.916000pt;}
.x2b{left:542.628000pt;}
.x38{left:545.320000pt;}
.x39{left:552.700000pt;}
.x30{left:554.104000pt;}
.x2f{left:556.060000pt;}
.x2c{left:561.962667pt;}
.x31{left:565.653333pt;}
.x2d{left:601.297333pt;}
.x2e{left:608.677333pt;}
.x5a{left:616.261333pt;}
.x3a{left:620.804000pt;}
.x3b{left:628.184000pt;}
.x3c{left:673.712000pt;}
.x3d{left:681.090667pt;}
}




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