
    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_75c81b3bae064aaa97455173.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.942000;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_2c62eb2f08f9b53e44a6b5a3.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088000;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_154282536c907d0ec80bfd21.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721000;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_6bb7be9dab89c01061ca4b40.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_2d655cb475e4ffe4cc8fd81f.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2a533a66ddf09363fa687f1c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_d2bcbd98979d54c52bd501fd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.700000;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_5cdd6b7d27d76040be4e7026.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_133f01dbd82739eb42feafdc.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.724000;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_436d0531d1aceb496e0fdd8e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.929000;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_4ff6845762c0cd357d0d928a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.700000;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_4fe886425c1daa9f584eaa86.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.929000;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_b36d6a8a2e833b446a099711.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.929000;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;}
.m7{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.247267,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247267,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247267,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250274,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252286,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252286,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252286,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.254588,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254588,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254588,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.275000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.295000,0.000000,0.000000,0.250000,0,0);}
.v6{vertical-align:-42.444000px;}
.vb{vertical-align:-17.982000px;}
.v1{vertical-align:-11.997300px;}
.v7{vertical-align:-1.944000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:5.100000px;}
.v8{vertical-align:10.572000px;}
.va{vertical-align:18.021600px;}
.v3{vertical-align:20.382000px;}
.v9{vertical-align:21.978600px;}
.vc{vertical-align:32.400000px;}
.v5{vertical-align:52.980000px;}
.v2{vertical-align:64.332000px;}
.lsc2{letter-spacing:-7.029000px;}
.ls1d{letter-spacing:-5.016000px;}
.ls1e{letter-spacing:-4.686000px;}
.ls1b{letter-spacing:-3.030000px;}
.ls17f{letter-spacing:-2.362800px;}
.ls17b{letter-spacing:-1.755600px;}
.ls180{letter-spacing:-1.742400px;}
.ls17e{letter-spacing:-1.729200px;}
.lsec{letter-spacing:-1.702800px;}
.ls193{letter-spacing:-1.650000px;}
.ls3f{letter-spacing:-1.590600px;}
.lsbb{letter-spacing:-1.577400px;}
.ls185{letter-spacing:-1.564200px;}
.ls8c{letter-spacing:-1.557600px;}
.ls152{letter-spacing:-1.544400px;}
.ls104{letter-spacing:-1.518000px;}
.ls159{letter-spacing:-1.511400px;}
.ls17c{letter-spacing:-1.504800px;}
.ls134{letter-spacing:-1.498200px;}
.ls153{letter-spacing:-1.471800px;}
.ls15a{letter-spacing:-1.465200px;}
.lsee{letter-spacing:-1.438800px;}
.ls1a1{letter-spacing:-1.432200px;}
.ls132{letter-spacing:-1.412400px;}
.ls52{letter-spacing:-1.405800px;}
.ls47{letter-spacing:-1.392600px;}
.ls15{letter-spacing:-1.379400px;}
.lsca{letter-spacing:-1.372800px;}
.ls73{letter-spacing:-1.366200px;}
.lsc9{letter-spacing:-1.346400px;}
.lsc8{letter-spacing:-1.326600px;}
.ls107{letter-spacing:-1.313400px;}
.ls142{letter-spacing:-1.306800px;}
.ls42{letter-spacing:-1.260600px;}
.ls19c{letter-spacing:-1.254000px;}
.ls8d{letter-spacing:-1.240800px;}
.ls14f{letter-spacing:-1.227600px;}
.ls50{letter-spacing:-1.221000px;}
.ls179{letter-spacing:-1.214400px;}
.lsf3{letter-spacing:-1.207800px;}
.ls85{letter-spacing:-1.194600px;}
.ls154{letter-spacing:-1.188000px;}
.ls18b{letter-spacing:-1.181400px;}
.ls89{letter-spacing:-1.174800px;}
.ls59{letter-spacing:-1.168200px;}
.ls118{letter-spacing:-1.161600px;}
.ls76{letter-spacing:-1.141800px;}
.lse0{letter-spacing:-1.128600px;}
.ls1a3{letter-spacing:-1.122000px;}
.ls16b{letter-spacing:-1.116000px;}
.ls5d{letter-spacing:-1.115400px;}
.lsd7{letter-spacing:-1.102200px;}
.lsda{letter-spacing:-1.089000px;}
.ls86{letter-spacing:-1.075800px;}
.ls168{letter-spacing:-1.062600px;}
.ls140{letter-spacing:-1.042800px;}
.ls9f{letter-spacing:-1.009800px;}
.ls18a{letter-spacing:-1.003200px;}
.ls5c{letter-spacing:-0.996600px;}
.ls17d{letter-spacing:-0.990000px;}
.ls143{letter-spacing:-0.983400px;}
.ls145{letter-spacing:-0.976800px;}
.ls10a{letter-spacing:-0.957000px;}
.lsef{letter-spacing:-0.950400px;}
.lsd2{letter-spacing:-0.943800px;}
.ls4c{letter-spacing:-0.937200px;}
.lsd1{letter-spacing:-0.930600px;}
.ls5e{letter-spacing:-0.910800px;}
.ls108{letter-spacing:-0.904200px;}
.ls5b{letter-spacing:-0.897600px;}
.lsd6{letter-spacing:-0.891000px;}
.ls4e{letter-spacing:-0.877800px;}
.ls128{letter-spacing:-0.864600px;}
.ls79{letter-spacing:-0.858000px;}
.lsd0{letter-spacing:-0.844800px;}
.lsce{letter-spacing:-0.831600px;}
.ls5f{letter-spacing:-0.825000px;}
.ls16f{letter-spacing:-0.818400px;}
.ls57{letter-spacing:-0.811800px;}
.lscd{letter-spacing:-0.805200px;}
.ls156{letter-spacing:-0.785400px;}
.ls189{letter-spacing:-0.778800px;}
.ls109{letter-spacing:-0.765600px;}
.ls13{letter-spacing:-0.752400px;}
.ls1a0{letter-spacing:-0.732600px;}
.ls9e{letter-spacing:-0.726000px;}
.lsd9{letter-spacing:-0.719400px;}
.ls87{letter-spacing:-0.712800px;}
.lsd3{letter-spacing:-0.699600px;}
.ls88{letter-spacing:-0.686400px;}
.ls75{letter-spacing:-0.679800px;}
.ls77{letter-spacing:-0.673200px;}
.ls45{letter-spacing:-0.666600px;}
.ls74{letter-spacing:-0.653400px;}
.ls151{letter-spacing:-0.640200px;}
.ls4d{letter-spacing:-0.633600px;}
.lsac{letter-spacing:-0.630000px;}
.ls114{letter-spacing:-0.627000px;}
.ls178{letter-spacing:-0.620400px;}
.ls196{letter-spacing:-0.607200px;}
.ls186{letter-spacing:-0.600600px;}
.lsc0{letter-spacing:-0.600000px;}
.ls8a{letter-spacing:-0.594000px;}
.ls115{letter-spacing:-0.587400px;}
.lscf{letter-spacing:-0.580800px;}
.ls5a{letter-spacing:-0.574200px;}
.ls116{letter-spacing:-0.567600px;}
.ls155{letter-spacing:-0.561000px;}
.ls146{letter-spacing:-0.554400px;}
.lsd8{letter-spacing:-0.541200px;}
.ls14{letter-spacing:-0.534600px;}
.ls9d{letter-spacing:-0.528000px;}
.lsf2{letter-spacing:-0.521400px;}
.ls117{letter-spacing:-0.514800px;}
.ls188{letter-spacing:-0.511757px;}
.lsed{letter-spacing:-0.508200px;}
.ls197{letter-spacing:-0.495000px;}
.ls7b{letter-spacing:-0.475200px;}
.ls133{letter-spacing:-0.468600px;}
.ls169{letter-spacing:-0.462000px;}
.lsf4{letter-spacing:-0.448800px;}
.ls19{letter-spacing:-0.442200px;}
.ls54{letter-spacing:-0.435600px;}
.ls17{letter-spacing:-0.422400px;}
.ls10b{letter-spacing:-0.415800px;}
.ls48{letter-spacing:-0.409200px;}
.ls105{letter-spacing:-0.402600px;}
.ls3e{letter-spacing:-0.396000px;}
.ls16{letter-spacing:-0.389400px;}
.ls135{letter-spacing:-0.382800px;}
.ls8b{letter-spacing:-0.376200px;}
.ls51{letter-spacing:-0.369600px;}
.ls18{letter-spacing:-0.363000px;}
.ls41{letter-spacing:-0.356400px;}
.ls44{letter-spacing:-0.349800px;}
.lsde{letter-spacing:-0.342000px;}
.ls46{letter-spacing:-0.336600px;}
.ls40{letter-spacing:-0.330000px;}
.ls53{letter-spacing:-0.323400px;}
.ls106{letter-spacing:-0.310200px;}
.ls7c{letter-spacing:-0.303600px;}
.lsdb{letter-spacing:-0.290700px;}
.ls131{letter-spacing:-0.290400px;}
.ls127{letter-spacing:-0.283800px;}
.lscc{letter-spacing:-0.270600px;}
.ls113{letter-spacing:-0.264000px;}
.ls72{letter-spacing:-0.257400px;}
.ls158{letter-spacing:-0.250800px;}
.ls157{letter-spacing:-0.244200px;}
.ls4b{letter-spacing:-0.237600px;}
.ls4f{letter-spacing:-0.231000px;}
.ls195{letter-spacing:-0.224400px;}
.ls194{letter-spacing:-0.217800px;}
.ls4a{letter-spacing:-0.211200px;}
.ls119{letter-spacing:-0.204600px;}
.ls130{letter-spacing:-0.184800px;}
.lse9{letter-spacing:-0.183695px;}
.ls144{letter-spacing:-0.178200px;}
.ls8e{letter-spacing:-0.171600px;}
.lse1{letter-spacing:-0.171000px;}
.ls60{letter-spacing:-0.158400px;}
.lsf1{letter-spacing:-0.151800px;}
.ls11b{letter-spacing:-0.151200px;}
.lsfb{letter-spacing:-0.145200px;}
.lsf0{letter-spacing:-0.138600px;}
.ls78{letter-spacing:-0.132000px;}
.ls11f{letter-spacing:-0.129024px;}
.ls129{letter-spacing:-0.125400px;}
.ls1a4{letter-spacing:-0.112200px;}
.ls187{letter-spacing:-0.105600px;}
.ls58{letter-spacing:-0.099000px;}
.ls120{letter-spacing:-0.098918px;}
.ls56{letter-spacing:-0.092400px;}
.lse3{letter-spacing:-0.085500px;}
.ls136{letter-spacing:-0.079200px;}
.ls150{letter-spacing:-0.072600px;}
.lsea{letter-spacing:-0.068230px;}
.ls8f{letter-spacing:-0.066000px;}
.lsa3{letter-spacing:-0.062400px;}
.ls9c{letter-spacing:-0.057600px;}
.ls12a{letter-spacing:-0.052800px;}
.ls11a{letter-spacing:-0.050400px;}
.lsc1{letter-spacing:-0.048000px;}
.ls1a5{letter-spacing:-0.046200px;}
.ls26{letter-spacing:-0.043200px;}
.lsaf{letter-spacing:-0.042000px;}
.ls7a{letter-spacing:-0.039600px;}
.lsa2{letter-spacing:-0.033600px;}
.lscb{letter-spacing:-0.033000px;}
.lsaa{letter-spacing:-0.032400px;}
.ls6{letter-spacing:-0.028800px;}
.ls49{letter-spacing:-0.026400px;}
.lsa1{letter-spacing:-0.024000px;}
.lsdf{letter-spacing:-0.023940px;}
.ls8{letter-spacing:-0.021600px;}
.ls55{letter-spacing:-0.019800px;}
.ls90{letter-spacing:-0.019200px;}
.ls1f{letter-spacing:-0.018000px;}
.lsb0{letter-spacing:-0.016800px;}
.lsa4{letter-spacing:-0.016200px;}
.lseb{letter-spacing:-0.015745px;}
.ls7{letter-spacing:-0.014400px;}
.ls5{letter-spacing:-0.013200px;}
.lsad{letter-spacing:-0.012600px;}
.ls1c{letter-spacing:-0.012000px;}
.lsa5{letter-spacing:-0.010800px;}
.ls91{letter-spacing:-0.009600px;}
.ls84{letter-spacing:-0.009408px;}
.ls177{letter-spacing:-0.007800px;}
.ls27{letter-spacing:-0.007200px;}
.ls43{letter-spacing:-0.006600px;}
.ls1a{letter-spacing:-0.006000px;}
.lsf5{letter-spacing:-0.005400px;}
.ls162{letter-spacing:-0.005314px;}
.ls9b{letter-spacing:-0.004704px;}
.lsae{letter-spacing:-0.004200px;}
.ls15b{letter-spacing:-0.002883px;}
.ls99{letter-spacing:-0.002851px;}
.ls9a{letter-spacing:-0.001426px;}
.ls3{letter-spacing:0.000000px;}
.ls15f{letter-spacing:0.002657px;}
.lsa7{letter-spacing:0.004200px;}
.ls160{letter-spacing:0.004764px;}
.lse5{letter-spacing:0.005248px;}
.ls15d{letter-spacing:0.005314px;}
.lsbf{letter-spacing:0.005400px;}
.ls10{letter-spacing:0.006000px;}
.lsf{letter-spacing:0.006600px;}
.ls2{letter-spacing:0.007200px;}
.lse6{letter-spacing:0.007873px;}
.lsa9{letter-spacing:0.008400px;}
.ls81{letter-spacing:0.009600px;}
.ls15c{letter-spacing:0.010627px;}
.ls82{letter-spacing:0.010800px;}
.ls11{letter-spacing:0.012000px;}
.lsa8{letter-spacing:0.012600px;}
.lsd{letter-spacing:0.013200px;}
.ls22{letter-spacing:0.014400px;}
.lsdc{letter-spacing:0.016200px;}
.ls11c{letter-spacing:0.017203px;}
.ls20{letter-spacing:0.018000px;}
.ls167{letter-spacing:0.019200px;}
.ls2d{letter-spacing:0.019800px;}
.lse4{letter-spacing:0.020994px;}
.lsa6{letter-spacing:0.021000px;}
.ls23{letter-spacing:0.021600px;}
.lsa0{letter-spacing:0.024000px;}
.ls0{letter-spacing:0.026400px;}
.ls170{letter-spacing:0.027000px;}
.ls98{letter-spacing:0.028800px;}
.ls11d{letter-spacing:0.030106px;}
.ls137{letter-spacing:0.032400px;}
.ls31{letter-spacing:0.033000px;}
.ls13f{letter-spacing:0.033600px;}
.ls24{letter-spacing:0.036000px;}
.lsab{letter-spacing:0.037800px;}
.ls15e{letter-spacing:0.047639px;}
.ls4{letter-spacing:0.050400px;}
.ls14e{letter-spacing:0.052800px;}
.ls83{letter-spacing:0.057600px;}
.ls28{letter-spacing:0.066000px;}
.ls6b{letter-spacing:0.072600px;}
.ls37{letter-spacing:0.079200px;}
.ls161{letter-spacing:0.085750px;}
.ls10d{letter-spacing:0.085800px;}
.ls11e{letter-spacing:0.090317px;}
.ls7e{letter-spacing:0.092400px;}
.ls36{letter-spacing:0.105600px;}
.ls164{letter-spacing:0.118800px;}
.ls13e{letter-spacing:0.132000px;}
.ls3a{letter-spacing:0.138600px;}
.ls29{letter-spacing:0.145200px;}
.ls64{letter-spacing:0.151800px;}
.ls63{letter-spacing:0.165000px;}
.ls32{letter-spacing:0.171600px;}
.lsfa{letter-spacing:0.178200px;}
.ls3b{letter-spacing:0.191400px;}
.ls33{letter-spacing:0.198000px;}
.ls38{letter-spacing:0.204600px;}
.ls139{letter-spacing:0.211200px;}
.lse7{letter-spacing:0.217800px;}
.ls66{letter-spacing:0.224400px;}
.ls30{letter-spacing:0.237600px;}
.ls148{letter-spacing:0.264000px;}
.ls190{letter-spacing:0.270600px;}
.ls101{letter-spacing:0.277200px;}
.ls19a{letter-spacing:0.283800px;}
.ls95{letter-spacing:0.290400px;}
.ls199{letter-spacing:0.297000px;}
.ls192{letter-spacing:0.303600px;}
.ls16d{letter-spacing:0.323400px;}
.ls111{letter-spacing:0.336600px;}
.lsf9{letter-spacing:0.363000px;}
.ls171{letter-spacing:0.369600px;}
.lsc4{letter-spacing:0.376200px;}
.lse8{letter-spacing:0.382800px;}
.ls141{letter-spacing:0.396000px;}
.ls103{letter-spacing:0.402600px;}
.ls100{letter-spacing:0.409200px;}
.lsfe{letter-spacing:0.415800px;}
.ls97{letter-spacing:0.422400px;}
.ls2e{letter-spacing:0.429000px;}
.lsc6{letter-spacing:0.435600px;}
.ls176{letter-spacing:0.442200px;}
.ls12d{letter-spacing:0.468600px;}
.ls70{letter-spacing:0.481800px;}
.ls18f{letter-spacing:0.488400px;}
.ls13c{letter-spacing:0.501600px;}
.ls7f{letter-spacing:0.508200px;}
.ls6e{letter-spacing:0.514800px;}
.ls67{letter-spacing:0.521400px;}
.ls181{letter-spacing:0.528000px;}
.ls39{letter-spacing:0.534600px;}
.ls2a{letter-spacing:0.541200px;}
.ls123{letter-spacing:0.547800px;}
.ls65{letter-spacing:0.567600px;}
.lsd5{letter-spacing:0.570000px;}
.ls12b{letter-spacing:0.574200px;}
.ls121{letter-spacing:0.580800px;}
.lsdd{letter-spacing:0.581400px;}
.ls16e{letter-spacing:0.594000px;}
.lse{letter-spacing:0.600600px;}
.lsfd{letter-spacing:0.607200px;}
.ls3d{letter-spacing:0.613800px;}
.ls2f{letter-spacing:0.646800px;}
.ls13d{letter-spacing:0.653400px;}
.lsc3{letter-spacing:0.666600px;}
.ls16c{letter-spacing:0.673200px;}
.ls6c{letter-spacing:0.679800px;}
.ls13a{letter-spacing:0.693000px;}
.lsb1{letter-spacing:0.699600px;}
.ls14d{letter-spacing:0.712800px;}
.ls14b{letter-spacing:0.732600px;}
.ls10e{letter-spacing:0.739200px;}
.ls2c{letter-spacing:0.745800px;}
.ls62{letter-spacing:0.765600px;}
.lsd4{letter-spacing:0.772200px;}
.ls165{letter-spacing:0.785400px;}
.ls112{letter-spacing:0.818400px;}
.lse2{letter-spacing:0.820800px;}
.ls17a{letter-spacing:0.825000px;}
.ls35{letter-spacing:0.831600px;}
.ls14a{letter-spacing:0.844800px;}
.ls69{letter-spacing:0.884400px;}
.ls71{letter-spacing:0.891000px;}
.ls68{letter-spacing:0.904200px;}
.lsff{letter-spacing:0.930600px;}
.lsb5{letter-spacing:0.937200px;}
.ls110{letter-spacing:0.950400px;}
.ls125{letter-spacing:0.970200px;}
.ls12f{letter-spacing:0.976800px;}
.lsf7{letter-spacing:0.983400px;}
.ls166{letter-spacing:0.990000px;}
.ls13b{letter-spacing:1.003200px;}
.ls172{letter-spacing:1.009800px;}
.ls1{letter-spacing:1.015200px;}
.lsbc{letter-spacing:1.029600px;}
.lsb2{letter-spacing:1.042800px;}
.ls16a{letter-spacing:1.056000px;}
.ls6f{letter-spacing:1.062600px;}
.ls61{letter-spacing:1.075800px;}
.ls102{letter-spacing:1.082400px;}
.ls174{letter-spacing:1.095600px;}
.ls122{letter-spacing:1.102200px;}
.ls34{letter-spacing:1.115400px;}
.lsc5{letter-spacing:1.128600px;}
.ls10f{letter-spacing:1.168200px;}
.ls173{letter-spacing:1.181400px;}
.ls182{letter-spacing:1.188000px;}
.ls12{letter-spacing:1.200000px;}
.ls175{letter-spacing:1.207800px;}
.ls138{letter-spacing:1.221000px;}
.ls6d{letter-spacing:1.227600px;}
.ls3c{letter-spacing:1.234200px;}
.ls1a2{letter-spacing:1.254000px;}
.ls12c{letter-spacing:1.260600px;}
.ls6a{letter-spacing:1.280400px;}
.lsf8{letter-spacing:1.326600px;}
.ls80{letter-spacing:1.379400px;}
.ls2b{letter-spacing:1.386000px;}
.ls191{letter-spacing:1.399200px;}
.lsc7{letter-spacing:1.405800px;}
.lsb6{letter-spacing:1.432200px;}
.ls9{letter-spacing:1.440000px;}
.ls124{letter-spacing:1.445400px;}
.lsb3{letter-spacing:1.471800px;}
.ls19b{letter-spacing:1.478400px;}
.ls18e{letter-spacing:1.511400px;}
.ls149{letter-spacing:1.531200px;}
.ls12e{letter-spacing:1.537800px;}
.ls126{letter-spacing:1.551000px;}
.ls163{letter-spacing:1.584000px;}
.ls184{letter-spacing:1.590600px;}
.ls19e{letter-spacing:1.598400px;}
.ls19d{letter-spacing:1.620000px;}
.ls19f{letter-spacing:1.641600px;}
.ls14c{letter-spacing:1.650000px;}
.ls21{letter-spacing:1.680000px;}
.ls96{letter-spacing:1.689600px;}
.lsc{letter-spacing:1.740000px;}
.lsb4{letter-spacing:1.768800px;}
.ls198{letter-spacing:1.874400px;}
.lsfc{letter-spacing:1.920000px;}
.lsba{letter-spacing:1.960200px;}
.ls92{letter-spacing:2.019600px;}
.lsb{letter-spacing:2.040000px;}
.ls10c{letter-spacing:2.105400px;}
.ls25{letter-spacing:2.160000px;}
.ls183{letter-spacing:2.224200px;}
.lsbd{letter-spacing:2.230800px;}
.ls93{letter-spacing:2.303400px;}
.lsf6{letter-spacing:2.587200px;}
.ls94{letter-spacing:2.653200px;}
.lsa{letter-spacing:2.732400px;}
.lsb7{letter-spacing:4.144800px;}
.ls18d{letter-spacing:4.487400px;}
.ls18c{letter-spacing:12.830400px;}
.ls147{letter-spacing:22.544029px;}
.lsb8{letter-spacing:25.183200px;}
.lsb9{letter-spacing:39.841200px;}
.lsbe{letter-spacing:49.047600px;}
.ls7d{letter-spacing:3112.333800px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa9{word-spacing:-57.649200px;}
.ws1c7{word-spacing:-47.174400px;}
.wsa8{word-spacing:-42.991200px;}
.ws169{word-spacing:-27.873600px;}
.ws28{word-spacing:-25.056000px;}
.ws7b{word-spacing:-19.449600px;}
.ws98{word-spacing:-19.401600px;}
.ws92{word-spacing:-19.392000px;}
.ws85{word-spacing:-19.334400px;}
.wsc{word-spacing:-18.444000px;}
.ws121{word-spacing:-17.858400px;}
.ws120{word-spacing:-17.656800px;}
.ws154{word-spacing:-17.001600px;}
.ws1c8{word-spacing:-15.935400px;}
.ws136{word-spacing:-15.630336px;}
.ws11e{word-spacing:-15.226200px;}
.ws198{word-spacing:-15.048000px;}
.ws187{word-spacing:-14.995200px;}
.ws32{word-spacing:-14.737800px;}
.ws1{word-spacing:-14.522400px;}
.ws0{word-spacing:-14.515200px;}
.ws13f{word-spacing:-14.407800px;}
.wse3{word-spacing:-14.368200px;}
.ws34{word-spacing:-14.130600px;}
.ws164{word-spacing:-14.077800px;}
.ws1e{word-spacing:-14.076000px;}
.ws35{word-spacing:-14.025000px;}
.ws197{word-spacing:-14.018400px;}
.ws31{word-spacing:-13.992000px;}
.ws194{word-spacing:-13.985400px;}
.ws195{word-spacing:-13.972200px;}
.ws11f{word-spacing:-13.965600px;}
.ws65{word-spacing:-13.952400px;}
.ws1e4{word-spacing:-13.945800px;}
.ws1e1{word-spacing:-13.787400px;}
.ws33{word-spacing:-13.780800px;}
.ws13{word-spacing:-13.602600px;}
.ws196{word-spacing:-13.530000px;}
.ws12{word-spacing:-13.457400px;}
.ws166{word-spacing:-13.408070px;}
.wsec{word-spacing:-13.338600px;}
.wse4{word-spacing:-13.332000px;}
.ws165{word-spacing:-13.325400px;}
.ws111{word-spacing:-13.226400px;}
.ws1e0{word-spacing:-13.089600px;}
.ws1de{word-spacing:-13.068000px;}
.ws1df{word-spacing:-13.046400px;}
.wsb6{word-spacing:-12.720000px;}
.ws153{word-spacing:-12.685200px;}
.wsee{word-spacing:-12.084000px;}
.ws152{word-spacing:-11.480400px;}
.ws86{word-spacing:-11.469600px;}
.ws7a{word-spacing:-11.458800px;}
.ws93{word-spacing:-11.448000px;}
.ws99{word-spacing:-11.431800px;}
.wsf1{word-spacing:-11.426400px;}
.ws162{word-spacing:-11.404800px;}
.ws87{word-spacing:-10.204800px;}
.ws79{word-spacing:-10.176000px;}
.ws17f{word-spacing:-9.883184px;}
.ws131{word-spacing:-9.117696px;}
.ws9b{word-spacing:-8.904000px;}
.ws9d{word-spacing:-8.899800px;}
.ws9e{word-spacing:-8.887200px;}
.ws9c{word-spacing:-8.862000px;}
.ws9a{word-spacing:-8.274000px;}
.ws1b0{word-spacing:-8.157336px;}
.ws1b1{word-spacing:-7.645579px;}
.ws19d{word-spacing:-7.642800px;}
.ws19c{word-spacing:-7.632000px;}
.wsfb{word-spacing:-7.250400px;}
.ws1aa{word-spacing:-6.144600px;}
.ws1ae{word-spacing:-5.880600px;}
.ws139{word-spacing:-5.724000px;}
.ws163{word-spacing:-5.710574px;}
.ws101{word-spacing:-5.584340px;}
.ws103{word-spacing:-5.571219px;}
.ws102{word-spacing:-5.568595px;}
.wsff{word-spacing:-5.563346px;}
.ws26{word-spacing:-5.544000px;}
.ws100{word-spacing:-5.495117px;}
.wsfe{word-spacing:-5.379651px;}
.ws14c{word-spacing:-4.567200px;}
.ws1a9{word-spacing:-4.402200px;}
.ws1af{word-spacing:-4.362600px;}
.ws1ad{word-spacing:-4.309800px;}
.ws106{word-spacing:-4.257000px;}
.ws18a{word-spacing:-4.171200px;}
.ws1cd{word-spacing:-4.078800px;}
.ws37{word-spacing:-3.999600px;}
.ws1b3{word-spacing:-3.946800px;}
.wsac{word-spacing:-3.940200px;}
.ws1b2{word-spacing:-3.933600px;}
.ws80{word-spacing:-3.927000px;}
.ws16b{word-spacing:-3.880800px;}
.ws1e9{word-spacing:-3.861000px;}
.ws114{word-spacing:-3.795000px;}
.ws1e7{word-spacing:-3.788400px;}
.ws1ab{word-spacing:-3.768600px;}
.ws14b{word-spacing:-3.762000px;}
.ws17b{word-spacing:-3.702600px;}
.ws18d{word-spacing:-3.656400px;}
.ws16c{word-spacing:-3.643200px;}
.ws108{word-spacing:-3.590400px;}
.ws1ca{word-spacing:-3.531000px;}
.ws6b{word-spacing:-3.524400px;}
.ws3a{word-spacing:-3.517800px;}
.ws3c{word-spacing:-3.511200px;}
.ws14{word-spacing:-3.504600px;}
.ws17{word-spacing:-3.498000px;}
.ws19{word-spacing:-3.491400px;}
.ws4d{word-spacing:-3.484800px;}
.ws7f{word-spacing:-3.478200px;}
.ws7e{word-spacing:-3.471600px;}
.ws1d3{word-spacing:-3.465000px;}
.ws17c{word-spacing:-3.412200px;}
.ws4e{word-spacing:-3.366000px;}
.ws45{word-spacing:-3.333000px;}
.ws141{word-spacing:-3.313200px;}
.ws30{word-spacing:-3.312000px;}
.ws12d{word-spacing:-3.300000px;}
.ws15{word-spacing:-3.214200px;}
.wsf3{word-spacing:-3.135000px;}
.ws5c{word-spacing:-3.075600px;}
.ws116{word-spacing:-3.055800px;}
.ws115{word-spacing:-3.042600px;}
.ws25{word-spacing:-3.024000px;}
.ws7d{word-spacing:-2.996400px;}
.ws105{word-spacing:-2.937000px;}
.ws174{word-spacing:-2.904000px;}
.wsb{word-spacing:-2.880000px;}
.wsf4{word-spacing:-2.844600px;}
.ws6f{word-spacing:-2.824800px;}
.ws192{word-spacing:-2.798400px;}
.ws11d{word-spacing:-2.791800px;}
.ws1e3{word-spacing:-2.719200px;}
.wsad{word-spacing:-2.706000px;}
.ws58{word-spacing:-2.699400px;}
.ws72{word-spacing:-2.646600px;}
.wse5{word-spacing:-2.626800px;}
.ws8e{word-spacing:-2.527800px;}
.ws27{word-spacing:-2.520000px;}
.ws126{word-spacing:-2.488200px;}
.ws1b7{word-spacing:-2.461800px;}
.ws179{word-spacing:-2.448600px;}
.ws14f{word-spacing:-2.376000px;}
.ws60{word-spacing:-2.369400px;}
.ws147{word-spacing:-2.244000px;}
.ws11c{word-spacing:-2.217600px;}
.wsa0{word-spacing:-2.192400px;}
.ws1b9{word-spacing:-2.184600px;}
.ws5e{word-spacing:-2.171400px;}
.ws50{word-spacing:-2.098800px;}
.ws15f{word-spacing:-2.026200px;}
.ws1b4{word-spacing:-1.999800px;}
.wsb4{word-spacing:-1.944000px;}
.wscd{word-spacing:-1.927200px;}
.ws8d{word-spacing:-1.920600px;}
.ws1a7{word-spacing:-1.881000px;}
.ws14d{word-spacing:-1.834800px;}
.ws15c{word-spacing:-1.815000px;}
.ws78{word-spacing:-1.755600px;}
.ws41{word-spacing:-1.742400px;}
.ws56{word-spacing:-1.735800px;}
.ws91{word-spacing:-1.665600px;}
.ws1d4{word-spacing:-1.623600px;}
.ws127{word-spacing:-1.603800px;}
.ws1ac{word-spacing:-1.597200px;}
.ws13c{word-spacing:-1.590600px;}
.ws1bd{word-spacing:-1.491600px;}
.ws148{word-spacing:-1.485000px;}
.ws1c5{word-spacing:-1.458600px;}
.ws18b{word-spacing:-1.425600px;}
.ws18e{word-spacing:-1.372800px;}
.ws66{word-spacing:-1.353000px;}
.wse{word-spacing:-1.352400px;}
.ws143{word-spacing:-1.346400px;}
.ws5b{word-spacing:-1.267200px;}
.ws125{word-spacing:-1.181400px;}
.ws188{word-spacing:-1.128600px;}
.ws81{word-spacing:-1.023000px;}
.wsf{word-spacing:-1.020000px;}
.ws128{word-spacing:-1.016400px;}
.ws110{word-spacing:-0.960000px;}
.ws57{word-spacing:-0.957000px;}
.wsfc{word-spacing:-0.855000px;}
.ws16a{word-spacing:-0.844800px;}
.ws70{word-spacing:-0.785400px;}
.ws140{word-spacing:-0.726000px;}
.wsd{word-spacing:-0.720000px;}
.ws4f{word-spacing:-0.719400px;}
.ws59{word-spacing:-0.693000px;}
.ws14a{word-spacing:-0.679800px;}
.ws1b{word-spacing:-0.653400px;}
.wsf0{word-spacing:-0.627000px;}
.wsfd{word-spacing:-0.615600px;}
.ws157{word-spacing:-0.541200px;}
.ws46{word-spacing:-0.528000px;}
.ws39{word-spacing:-0.514800px;}
.ws1d{word-spacing:-0.508200px;}
.ws1a6{word-spacing:-0.442200px;}
.wse8{word-spacing:-0.409200px;}
.ws123{word-spacing:-0.363000px;}
.ws15e{word-spacing:-0.356400px;}
.ws23{word-spacing:-0.354000px;}
.wsab{word-spacing:-0.343200px;}
.ws38{word-spacing:-0.250800px;}
.ws1bf{word-spacing:-0.217800px;}
.ws1a5{word-spacing:-0.184800px;}
.ws161{word-spacing:-0.158400px;}
.ws160{word-spacing:-0.138600px;}
.ws132{word-spacing:-0.133325px;}
.ws158{word-spacing:-0.132000px;}
.ws6c{word-spacing:-0.085800px;}
.ws182{word-spacing:-0.085750px;}
.ws137{word-spacing:-0.073728px;}
.ws134{word-spacing:-0.073114px;}
.ws71{word-spacing:-0.066000px;}
.ws130{word-spacing:-0.060211px;}
.wsb5{word-spacing:-0.060000px;}
.wsef{word-spacing:-0.057000px;}
.wsb9{word-spacing:-0.054000px;}
.ws4{word-spacing:-0.050400px;}
.wsba{word-spacing:-0.048000px;}
.ws184{word-spacing:-0.047639px;}
.ws12c{word-spacing:-0.046200px;}
.ws12f{word-spacing:-0.043008px;}
.wsbd{word-spacing:-0.042000px;}
.ws2d{word-spacing:-0.036000px;}
.wsf7{word-spacing:-0.034200px;}
.ws1a1{word-spacing:-0.032400px;}
.ws138{word-spacing:-0.027000px;}
.ws5{word-spacing:-0.026400px;}
.ws199{word-spacing:-0.025370px;}
.ws2c{word-spacing:-0.021600px;}
.wsa2{word-spacing:-0.021000px;}
.ws94{word-spacing:-0.019800px;}
.ws193{word-spacing:-0.019200px;}
.wsf6{word-spacing:-0.016200px;}
.ws29{word-spacing:-0.014400px;}
.ws4a{word-spacing:-0.013200px;}
.wsa6{word-spacing:-0.012600px;}
.ws20{word-spacing:-0.012000px;}
.ws9f{word-spacing:-0.010800px;}
.ws180{word-spacing:-0.010627px;}
.ws104{word-spacing:-0.010497px;}
.wsf9{word-spacing:-0.010260px;}
.ws84{word-spacing:-0.009600px;}
.wsa7{word-spacing:-0.008400px;}
.ws9{word-spacing:-0.007200px;}
.ws76{word-spacing:-0.006600px;}
.ws1f{word-spacing:-0.006000px;}
.wsbf{word-spacing:-0.005400px;}
.ws181{word-spacing:-0.005314px;}
.ws186{word-spacing:-0.004764px;}
.wsa3{word-spacing:-0.004200px;}
.ws185{word-spacing:-0.002657px;}
.ws2{word-spacing:0.000000px;}
.ws17d{word-spacing:0.002883px;}
.wsa5{word-spacing:0.004200px;}
.ws88{word-spacing:0.004277px;}
.ws183{word-spacing:0.005314px;}
.ws10a{word-spacing:0.005400px;}
.ws21{word-spacing:0.006000px;}
.ws43{word-spacing:0.006600px;}
.ws2f{word-spacing:0.007200px;}
.ws1a3{word-spacing:0.007800px;}
.ws83{word-spacing:0.009600px;}
.ws97{word-spacing:0.010800px;}
.ws24{word-spacing:0.012000px;}
.wsa4{word-spacing:0.012600px;}
.ws6{word-spacing:0.013200px;}
.ws89{word-spacing:0.014112px;}
.ws7{word-spacing:0.014400px;}
.ws96{word-spacing:0.016200px;}
.ws7c{word-spacing:0.018816px;}
.ws122{word-spacing:0.019200px;}
.ws1c6{word-spacing:0.019800px;}
.ws2a{word-spacing:0.021600px;}
.ws129{word-spacing:0.026400px;}
.wsa1{word-spacing:0.032400px;}
.wse9{word-spacing:0.033000px;}
.wsa{word-spacing:0.036000px;}
.ws144{word-spacing:0.039600px;}
.ws12e{word-spacing:0.042000px;}
.ws2e{word-spacing:0.043200px;}
.ws13b{word-spacing:0.046200px;}
.ws135{word-spacing:0.055910px;}
.ws1c{word-spacing:0.059400px;}
.ws133{word-spacing:0.086016px;}
.wsed{word-spacing:0.233700px;}
.ws4b{word-spacing:0.290400px;}
.ws5f{word-spacing:0.303600px;}
.wsf8{word-spacing:0.307800px;}
.ws1d6{word-spacing:0.442200px;}
.ws1c0{word-spacing:0.481800px;}
.wsb8{word-spacing:0.540000px;}
.ws52{word-spacing:0.541200px;}
.wsf2{word-spacing:0.587400px;}
.ws90{word-spacing:0.607200px;}
.ws1b6{word-spacing:0.646800px;}
.ws49{word-spacing:0.699600px;}
.ws1b8{word-spacing:0.706200px;}
.ws156{word-spacing:0.759000px;}
.wsf5{word-spacing:0.851400px;}
.ws1a8{word-spacing:0.864600px;}
.ws13a{word-spacing:0.871200px;}
.ws16f{word-spacing:0.884400px;}
.ws62{word-spacing:0.897600px;}
.ws1be{word-spacing:1.042800px;}
.wsfa{word-spacing:1.094400px;}
.ws118{word-spacing:1.102200px;}
.ws1d5{word-spacing:1.108800px;}
.ws10e{word-spacing:1.168200px;}
.ws4c{word-spacing:1.221000px;}
.ws1e2{word-spacing:1.227600px;}
.ws6e{word-spacing:1.280400px;}
.ws68{word-spacing:1.287000px;}
.ws177{word-spacing:1.346400px;}
.ws3b{word-spacing:1.412400px;}
.ws1bc{word-spacing:1.438800px;}
.ws1e8{word-spacing:1.465200px;}
.ws1e5{word-spacing:1.524600px;}
.ws63{word-spacing:1.716000px;}
.ws12a{word-spacing:1.729200px;}
.ws3f{word-spacing:1.735800px;}
.ws1db{word-spacing:1.742400px;}
.ws16e{word-spacing:1.874400px;}
.ws146{word-spacing:1.900800px;}
.ws64{word-spacing:1.980000px;}
.ws112{word-spacing:2.006400px;}
.ws113{word-spacing:2.019600px;}
.ws54{word-spacing:2.052600px;}
.ws18{word-spacing:2.112000px;}
.ws15d{word-spacing:2.191200px;}
.ws1d0{word-spacing:2.197800px;}
.ws1d1{word-spacing:2.204400px;}
.ws12b{word-spacing:2.250600px;}
.ws47{word-spacing:2.316600px;}
.ws142{word-spacing:2.323200px;}
.ws1a2{word-spacing:2.356200px;}
.ws10c{word-spacing:2.409000px;}
.ws11a{word-spacing:2.475000px;}
.ws11b{word-spacing:2.501400px;}
.ws77{word-spacing:2.574000px;}
.ws173{word-spacing:2.580600px;}
.wse7{word-spacing:2.607000px;}
.ws1a0{word-spacing:2.628000px;}
.ws19f{word-spacing:2.646000px;}
.ws95{word-spacing:2.673000px;}
.ws55{word-spacing:2.745600px;}
.ws36{word-spacing:2.838000px;}
.ws1c1{word-spacing:2.857800px;}
.ws1bb{word-spacing:2.864400px;}
.ws82{word-spacing:3.108600px;}
.ws3d{word-spacing:3.115200px;}
.ws1d8{word-spacing:3.201000px;}
.ws191{word-spacing:3.227400px;}
.ws16{word-spacing:3.267000px;}
.wsc9{word-spacing:3.286800px;}
.ws14e{word-spacing:3.326400px;}
.ws170{word-spacing:3.366000px;}
.ws75{word-spacing:3.385800px;}
.ws171{word-spacing:3.399000px;}
.ws190{word-spacing:3.438600px;}
.ws18f{word-spacing:3.478200px;}
.ws10f{word-spacing:3.504600px;}
.ws17a{word-spacing:3.517800px;}
.ws1d2{word-spacing:3.531000px;}
.ws61{word-spacing:3.616800px;}
.ws175{word-spacing:3.682800px;}
.ws51{word-spacing:3.702600px;}
.ws67{word-spacing:3.709200px;}
.ws1e6{word-spacing:3.834600px;}
.ws53{word-spacing:3.841200px;}
.ws74{word-spacing:3.887400px;}
.ws1a4{word-spacing:3.894000px;}
.ws73{word-spacing:3.913800px;}
.ws150{word-spacing:3.933600px;}
.ws15b{word-spacing:3.942000px;}
.ws69{word-spacing:3.966600px;}
.ws5a{word-spacing:3.979800px;}
.ws6d{word-spacing:3.993000px;}
.ws6a{word-spacing:3.999600px;}
.ws109{word-spacing:4.059000px;}
.ws1c2{word-spacing:4.125000px;}
.wse2{word-spacing:4.171200px;}
.ws117{word-spacing:4.177800px;}
.ws48{word-spacing:4.184400px;}
.ws1a{word-spacing:4.191000px;}
.ws22{word-spacing:4.194000px;}
.ws42{word-spacing:4.197600px;}
.ws40{word-spacing:4.204200px;}
.ws3e{word-spacing:4.210800px;}
.ws5d{word-spacing:4.217400px;}
.ws155{word-spacing:4.224000px;}
.ws1cf{word-spacing:4.230600px;}
.ws1ce{word-spacing:4.237200px;}
.ws44{word-spacing:4.243800px;}
.ws172{word-spacing:4.263600px;}
.wsb1{word-spacing:4.283400px;}
.ws1cc{word-spacing:4.323000px;}
.ws8{word-spacing:4.363200px;}
.ws13d{word-spacing:4.375800px;}
.wsaf{word-spacing:4.408800px;}
.ws1d9{word-spacing:4.441800px;}
.ws1c9{word-spacing:4.474800px;}
.ws16d{word-spacing:4.527600px;}
.wsae{word-spacing:4.547400px;}
.ws119{word-spacing:4.587000px;}
.ws13e{word-spacing:4.600200px;}
.wsde{word-spacing:4.606800px;}
.ws1da{word-spacing:4.626600px;}
.ws149{word-spacing:4.639800px;}
.ws189{word-spacing:4.752000px;}
.ws1c4{word-spacing:4.758600px;}
.wsdb{word-spacing:4.818000px;}
.ws19e{word-spacing:4.831200px;}
.ws145{word-spacing:4.910400px;}
.wscc{word-spacing:4.923600px;}
.ws107{word-spacing:4.969800px;}
.ws176{word-spacing:5.022600px;}
.ws8f{word-spacing:5.082000px;}
.ws1ba{word-spacing:5.247000px;}
.wsb0{word-spacing:5.260200px;}
.ws1b5{word-spacing:5.346000px;}
.wsea{word-spacing:5.398800px;}
.ws178{word-spacing:5.458200px;}
.ws1d7{word-spacing:5.623200px;}
.ws2b{word-spacing:5.724000px;}
.wseb{word-spacing:5.761800px;}
.wsaa{word-spacing:5.887200px;}
.ws18c{word-spacing:5.893800px;}
.ws151{word-spacing:5.900400px;}
.ws8a{word-spacing:5.953200px;}
.wse6{word-spacing:6.190800px;}
.ws124{word-spacing:6.349200px;}
.ws1cb{word-spacing:6.468000px;}
.wse1{word-spacing:6.474600px;}
.wsb2{word-spacing:6.699000px;}
.ws1c3{word-spacing:6.712200px;}
.ws8b{word-spacing:6.903600px;}
.ws3{word-spacing:7.728000px;}
.ws10d{word-spacing:7.741800px;}
.wsd8{word-spacing:7.761600px;}
.wscb{word-spacing:7.887000px;}
.ws8c{word-spacing:7.953000px;}
.ws11{word-spacing:8.047500px;}
.ws10{word-spacing:8.908800px;}
.ws159{word-spacing:10.306800px;}
.wsc5{word-spacing:10.546800px;}
.wsd1{word-spacing:10.942800px;}
.wsdc{word-spacing:11.866800px;}
.wsb3{word-spacing:12.421200px;}
.wsd3{word-spacing:12.645600px;}
.wsd5{word-spacing:13.140600px;}
.wsd7{word-spacing:13.318800px;}
.wsc1{word-spacing:14.124000px;}
.wsdd{word-spacing:14.803800px;}
.wse0{word-spacing:16.018200px;}
.wsc7{word-spacing:16.717800px;}
.wsca{word-spacing:17.536200px;}
.wsdf{word-spacing:17.886000px;}
.wsd0{word-spacing:18.532800px;}
.wsc0{word-spacing:18.862800px;}
.wsd9{word-spacing:19.681200px;}
.wscf{word-spacing:20.493000px;}
.wsc8{word-spacing:20.994600px;}
.wsc3{word-spacing:21.714000px;}
.wsd6{word-spacing:21.799800px;}
.wsc6{word-spacing:22.572000px;}
.wsd2{word-spacing:23.265000px;}
.wsc2{word-spacing:26.400000px;}
.wsda{word-spacing:31.435800px;}
.wsd4{word-spacing:31.574400px;}
.wsce{word-spacing:41.824200px;}
.wsc4{word-spacing:51.103800px;}
.ws1dc{word-spacing:147.177000px;}
.ws1dd{word-spacing:166.077000px;}
.wsbb{word-spacing:179.412000px;}
.wsb7{word-spacing:218.640000px;}
.ws167{word-spacing:256.144752px;}
.ws19b{word-spacing:259.992000px;}
.ws168{word-spacing:267.390470px;}
.wsbc{word-spacing:430.260000px;}
.wsbe{word-spacing:464.016000px;}
.ws17e{word-spacing:569.331299px;}
.ws19a{word-spacing:2047.393817px;}
.ws10b{word-spacing:3518.887800px;}
.ws15a{word-spacing:3759.295800px;}
._28{margin-left:-1172.604666px;}
._20{margin-left:-822.719212px;}
._29{margin-left:-571.808223px;}
._1f{margin-left:-74.119800px;}
._2c{margin-left:-61.560000px;}
._1e{margin-left:-45.229800px;}
._1c{margin-left:-30.716400px;}
._21{margin-left:-27.010800px;}
._1{margin-left:-24.964800px;}
._10{margin-left:-21.158400px;}
._14{margin-left:-19.661400px;}
._2a{margin-left:-18.598800px;}
._a{margin-left:-17.259000px;}
._1d{margin-left:-16.141200px;}
._6{margin-left:-14.733600px;}
._c{margin-left:-13.374000px;}
._1b{margin-left:-12.171600px;}
._1a{margin-left:-10.941600px;}
._9{margin-left:-9.218400px;}
._8{margin-left:-8.101200px;}
._7{margin-left:-6.984000px;}
._5{margin-left:-4.752000px;}
._4{margin-left:-2.978400px;}
._0{margin-left:-1.428000px;}
._3{width:1.214400px;}
._2{width:2.563200px;}
._16{width:4.065600px;}
._13{width:5.341800px;}
._b{width:7.299600px;}
._15{width:8.593200px;}
._22{width:10.332000px;}
._e{width:13.746000px;}
._d{width:27.282024px;}
._11{width:59.760000px;}
._17{width:72.217650px;}
._12{width:75.024000px;}
._f{width:96.696000px;}
._2f{width:161.487000px;}
._2d{width:222.393600px;}
._2e{width:226.389600px;}
._30{width:233.403600px;}
._25{width:268.258216px;}
._26{width:283.121059px;}
._23{width:311.597401px;}
._24{width:365.241887px;}
._18{width:382.016881px;}
._19{width:477.049513px;}
._27{width:731.331802px;}
._2b{width:750.979800px;}
.fc7b{color:rgb(0,76,108);}
.fc78{color:rgb(0,0,0);}
.fc75{color:rgb(85,85,88);}
.fc73{color:rgb(80,80,82);}
.fc6d{color:rgb(49,51,51);}
.fc6e{color:rgb(45,46,47);}
.fc69{color:rgb(62,66,66);}
.fc68{color:rgb(67,70,71);}
.fc62{color:rgb(75,77,78);}
.fc5f{color:rgb(68,69,71);}
.fc5d{color:rgb(67,71,73);}
.fc5b{color:rgb(60,64,66);}
.fc5a{color:rgb(72,76,78);}
.fc7a{color:rgb(67,67,67);}
.fc6a{color:rgb(66,68,69);}
.fc58{color:rgb(65,69,71);}
.fc57{color:rgb(72,75,77);}
.fc56{color:rgb(70,73,74);}
.fc55{color:rgb(65,68,69);}
.fc54{color:rgb(74,76,77);}
.fc53{color:rgb(79,79,81);}
.fc77{color:rgb(210,35,42);}
.fc61{color:rgb(62,65,66);}
.fc50{color:rgb(81,82,83);}
.fc4f{color:rgb(78,78,80);}
.fc51{color:rgb(69,70,71);}
.fc4e{color:rgb(87,88,90);}
.fc4c{color:rgb(71,70,72);}
.fc6b{color:rgb(58,60,61);}
.fc4b{color:rgb(77,77,78);}
.fc4a{color:rgb(82,82,84);}
.fc49{color:rgb(64,63,65);}
.fc47{color:rgb(52,51,52);}
.fc66{color:rgb(75,77,79);}
.fc46{color:rgb(76,76,77);}
.fc60{color:rgb(58,59,60);}
.fc42{color:rgb(76,77,79);}
.fc40{color:rgb(78,79,80);}
.fc3f{color:rgb(81,81,83);}
.fc3c{color:rgb(53,55,55);}
.fc6c{color:rgb(84,85,87);}
.fc3b{color:rgb(66,67,68);}
.fc4d{color:rgb(57,56,57);}
.fc1a{color:rgb(38,39,40);}
.fc64{color:rgb(62,63,64);}
.fc19{color:rgb(44,45,45);}
.fc41{color:rgb(88,89,91);}
.fcb{color:rgb(88,89,91);}
.fc17{color:rgb(85,85,87);}
.fc13{color:rgb(77,77,79);}
.fc2d{color:rgb(55,55,56);}
.fc52{color:rgb(63,64,65);}
.fcf{color:rgb(174,170,171);}
.fc3d{color:rgb(47,48,48);}
.fc27{color:rgb(65,66,67);}
.fc71{color:rgb(46,48,48);}
.fc2{color:rgb(75,14,0);}
.fc32{color:rgb(31,31,32);}
.fc1{color:rgb(125,129,130);}
.fc1e{color:rgb(69,69,71);}
.fc33{color:rgb(25,25,25);}
.fc1b{color:rgb(41,42,43);}
.fc36{color:rgb(59,60,62);}
.fc72{color:rgb(57,58,60);}
.fc2f{color:rgb(39,40,41);}
.fc6f{color:rgb(55,56,57);}
.fc11{color:rgb(73,74,76);}
.fc9{color:rgb(34,66,24);}
.fc14{color:rgb(74,74,76);}
.fc1c{color:rgb(24,25,25);}
.fc23{color:rgb(42,43,44);}
.fc15{color:rgb(75,76,77);}
.fc79{color:rgb(84,83,79);}
.fc48{color:rgb(65,64,66);}
.fc6{color:rgb(76,68,14);}
.fc21{color:rgb(78,79,81);}
.fc74{color:rgb(78,78,79);}
.fc65{color:rgb(59,61,62);}
.fc5{color:rgb(76,54,8);}
.fc3e{color:rgb(38,39,39);}
.fc12{color:rgb(74,75,77);}
.fc7{color:rgb(68,74,19);}
.fc2c{color:rgb(52,53,54);}
.fcd{color:rgb(88,88,89);}
.fc70{color:rgb(86,87,89);}
.fc43{color:rgb(68,69,70);}
.fc8{color:rgb(48,69,23);}
.fc44{color:rgb(57,57,58);}
.fc2b{color:rgb(75,75,77);}
.fc0{color:rgb(35,31,32);}
.fca{color:rgb(20,64,26);}
.fc4{color:rgb(75,33,0);}
.fc18{color:rgb(34,34,35);}
.fc1d{color:rgb(12,11,11);}
.fc1f{color:rgb(74,75,76);}
.fc5e{color:rgb(57,60,61);}
.fc20{color:rgb(76,77,78);}
.fc26{color:rgb(27,26,27);}
.fc35{color:rgb(44,46,46);}
.fc16{color:rgb(75,76,78);}
.fc22{color:rgb(57,58,59);}
.fc10{color:rgb(72,73,75);}
.fcc{color:transparent;}
.fc25{color:rgb(36,37,37);}
.fc28{color:rgb(61,62,63);}
.fc29{color:rgb(53,55,56);}
.fc5c{color:rgb(58,61,63);}
.fc2a{color:rgb(59,60,61);}
.fc45{color:rgb(72,71,73);}
.fc3{color:rgb(84,19,2);}
.fc2e{color:rgb(35,36,37);}
.fce{color:rgb(104,103,105);}
.fc30{color:rgb(67,68,69);}
.fc31{color:rgb(71,72,74);}
.fc24{color:rgb(31,32,32);}
.fc38{color:rgb(49,50,51);}
.fc34{color:rgb(47,48,49);}
.fc76{color:rgb(82,83,85);}
.fc59{color:rgb(63,66,68);}
.fc37{color:rgb(64,65,66);}
.fc63{color:rgb(66,67,69);}
.fc39{color:rgb(48,49,50);}
.fc67{color:rgb(70,73,75);}
.fc3a{color:rgb(71,72,73);}
.fsd{font-size:14.256000px;}
.fs23{font-size:25.370400px;}
.fs14{font-size:26.242200px;}
.fs22{font-size:26.568000px;}
.fs17{font-size:27.000000px;}
.fs1c{font-size:27.873600px;}
.fs1d{font-size:28.834200px;}
.fs27{font-size:31.482000px;}
.fs13{font-size:34.200000px;}
.fs12{font-size:34.980000px;}
.fs24{font-size:36.000000px;}
.fs26{font-size:38.478000px;}
.fse{font-size:42.000000px;}
.fs15{font-size:43.008000px;}
.fsa{font-size:47.041200px;}
.fs1f{font-size:47.638800px;}
.fsb{font-size:48.000000px;}
.fs1e{font-size:51.482400px;}
.fs20{font-size:53.135400px;}
.fsc{font-size:54.000000px;}
.fs1b{font-size:55.746600px;}
.fsf{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs18{font-size:62.139000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:72.000000px;}
.fs19{font-size:72.086400px;}
.fs16{font-size:73.728000px;}
.fs25{font-size:78.000000px;}
.fs0{font-size:84.000000px;}
.fs5{font-size:87.000000px;}
.fs21{font-size:95.277600px;}
.fs9{font-size:96.000000px;}
.fs4{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fs10{font-size:118.426200px;}
.fs1{font-size:132.000000px;}
.fs3{font-size:138.000000px;}
.fs1a{font-size:144.172800px;}
.fs11{font-size:153.600000px;}
.fs28{font-size:162.000000px;}
.y1b5{bottom:-5.689500px;}
.y1e3{bottom:-5.502000px;}
.y1c1{bottom:-5.314500px;}
.y1b9{bottom:-4.939500px;}
.y1fd{bottom:-4.114500px;}
.y1f5{bottom:-3.739500px;}
.y1f1{bottom:-3.364500px;}
.y1cf{bottom:-3.252000px;}
.y1f3{bottom:-2.989500px;}
.y1db{bottom:-2.877000px;}
.y1e1{bottom:-2.689500px;}
.y1f7{bottom:-2.614500px;}
.y1d1{bottom:-2.502000px;}
.y1c5{bottom:-2.314500px;}
.y1ed{bottom:-2.239500px;}
.y1e5{bottom:-2.127000px;}
.y1c7{bottom:-1.939500px;}
.y20a{bottom:-1.897500px;}
.y1aa{bottom:-1.860000px;}
.y1b2{bottom:-1.672500px;}
.y1bd{bottom:-1.564500px;}
.y205{bottom:-1.522500px;}
.y1d3{bottom:-1.377000px;}
.y1ae{bottom:-1.297500px;}
.y1bb{bottom:-1.189500px;}
.y1a6{bottom:-1.110000px;}
.y1cb{bottom:-0.814500px;}
.y203{bottom:-0.772500px;}
.y1fb{bottom:-0.739500px;}
.y1d5{bottom:-0.627000px;}
.y1eb{bottom:-0.456000px;}
.y1b7{bottom:-0.439500px;}
.y1f9{bottom:-0.364500px;}
.y1cd{bottom:-0.252000px;}
.y1b0{bottom:-0.172500px;}
.y1e9{bottom:-0.081000px;}
.y1c3{bottom:-0.064500px;}
.y201{bottom:-0.022500px;}
.yd9{bottom:-0.001500px;}
.yd4{bottom:-0.000750px;}
.y0{bottom:0.000000px;}
.y1ef{bottom:0.010500px;}
.y1a8{bottom:0.015000px;}
.y2de{bottom:0.030000px;}
.y1e7{bottom:0.093000px;}
.y1ac{bottom:0.094500px;}
.ye2{bottom:0.115500px;}
.yec{bottom:0.115650px;}
.y1d7{bottom:0.123000px;}
.y1dd{bottom:0.145500px;}
.ydb{bottom:0.148500px;}
.y184{bottom:0.156000px;}
.y18b{bottom:0.157500px;}
.y18e{bottom:0.205500px;}
.y1bf{bottom:0.310500px;}
.y191{bottom:0.325500px;}
.yff{bottom:0.589500px;}
.y1ff{bottom:0.727500px;}
.y1c9{bottom:1.435500px;}
.y208{bottom:1.477500px;}
.y1d9{bottom:1.623000px;}
.y1df{bottom:1.786500px;}
.y100{bottom:2.079000px;}
.yf9{bottom:2.194500px;}
.yf6{bottom:2.194650px;}
.yfe{bottom:2.668500px;}
.ye4{bottom:2.821500px;}
.y181{bottom:3.148800px;}
.yfc{bottom:13.074000px;}
.yfd{bottom:15.268500px;}
.yf0{bottom:18.495000px;}
.yef{bottom:18.643500px;}
.yfb{bottom:25.674000px;}
.yfa{bottom:27.868500px;}
.yee{bottom:34.695000px;}
.yed{bottom:34.843500px;}
.yf8{bottom:38.274000px;}
.yf7{bottom:40.468500px;}
.yf5{bottom:50.874000px;}
.yf4{bottom:53.068650px;}
.y231{bottom:53.571000px;}
.y2e4{bottom:63.696000px;}
.y36{bottom:64.149450px;}
.y61{bottom:64.182000px;}
.y31f{bottom:64.275450px;}
.y372{bottom:67.953900px;}
.y2e3{bottom:70.579500px;}
.y27a{bottom:79.253100px;}
.y133{bottom:79.895850px;}
.ya7{bottom:80.265000px;}
.y2af{bottom:80.390250px;}
.y22a{bottom:81.198000px;}
.y23c{bottom:82.176000px;}
.y153{bottom:82.516500px;}
.y2b8{bottom:82.916850px;}
.y2b6{bottom:82.917000px;}
.y1f{bottom:83.986350px;}
.y31e{bottom:84.075450px;}
.yeb{bottom:84.108000px;}
.y247{bottom:84.142050px;}
.yea{bottom:84.223650px;}
.y35{bottom:84.399450px;}
.y5f{bottom:84.531000px;}
.y388{bottom:87.375600px;}
.y4b{bottom:87.681000px;}
.y371{bottom:87.753900px;}
.yf3{bottom:90.523500px;}
.y270{bottom:91.225500px;}
.y362{bottom:91.332000px;}
.ya3{bottom:91.626000px;}
.y132{bottom:96.095850px;}
.y170{bottom:96.107400px;}
.ye8{bottom:96.675000px;}
.ye9{bottom:96.823500px;}
.y22b{bottom:97.366500px;}
.y279{bottom:99.053100px;}
.y2f7{bottom:99.772500px;}
.y2ae{bottom:100.190250px;}
.y246{bottom:100.342050px;}
.y3c1{bottom:100.956000px;}
.y23b{bottom:101.976000px;}
.y152{bottom:102.316500px;}
.y387{bottom:103.575600px;}
.y31d{bottom:103.875450px;}
.y1e{bottom:104.231850px;}
.y34{bottom:104.649450px;}
.y12b{bottom:104.874000px;}
.y5e{bottom:105.231000px;}
.ya2{bottom:107.826000px;}
.y4a{bottom:108.381000px;}
.y26f{bottom:111.025500px;}
.y361{bottom:111.132000px;}
.y16f{bottom:115.907400px;}
.y278{bottom:118.853100px;}
.y2f6{bottom:119.572500px;}
.y2ad{bottom:119.990250px;}
.y84{bottom:120.755850px;}
.y3c0{bottom:120.756000px;}
.y12a{bottom:121.074000px;}
.y23a{bottom:121.776000px;}
.y151{bottom:122.116500px;}
.y31c{bottom:123.675450px;}
.y1d{bottom:124.477350px;}
.y33{bottom:124.899450px;}
.y5d{bottom:126.831000px;}
.y22f{bottom:129.465000px;}
.y2c7{bottom:129.851850px;}
.y290{bottom:129.913039px;}
.y49{bottom:129.981000px;}
.y26e{bottom:130.825500px;}
.y360{bottom:130.932000px;}
.y16e{bottom:135.707400px;}
.y2c1{bottom:137.290800px;}
.y277{bottom:138.653100px;}
.y2f5{bottom:139.372500px;}
.y2ac{bottom:139.790250px;}
.y83{bottom:140.555850px;}
.y3bf{bottom:140.556000px;}
.y239{bottom:141.576000px;}
.y150{bottom:141.916500px;}
.y28f{bottom:142.201500px;}
.y31b{bottom:143.475450px;}
.y1c{bottom:144.722850px;}
.y1de{bottom:145.479000px;}
.y1d8{bottom:145.642500px;}
.y1c8{bottom:145.830000px;}
.y2c6{bottom:146.051850px;}
.y1be{bottom:146.955000px;}
.y1dc{bottom:147.120000px;}
.y1d6{bottom:147.142500px;}
.y1c2{bottom:147.330000px;}
.y1cc{bottom:147.517500px;}
.y1b6{bottom:147.705000px;}
.ye7{bottom:147.888000px;}
.y1d4{bottom:147.892500px;}
.ye6{bottom:148.003500px;}
.y1ca{bottom:148.080000px;}
.y3e9{bottom:148.328550px;}
.y5c{bottom:148.431000px;}
.y1ba{bottom:148.455000px;}
.y1d2{bottom:148.642500px;}
.y1bc{bottom:148.830000px;}
.y1c6{bottom:149.205000px;}
.y1e4{bottom:149.392500px;}
.y1c4{bottom:149.580000px;}
.y1d0{bottom:149.767500px;}
.y1e0{bottom:149.955000px;}
.y1da{bottom:150.142500px;}
.y1ce{bottom:150.517500px;}
.y26d{bottom:150.625500px;}
.y35f{bottom:150.732000px;}
.y48{bottom:151.581000px;}
.y229{bottom:151.884450px;}
.y1b8{bottom:152.205000px;}
.y1c0{bottom:152.580000px;}
.y1e2{bottom:152.767500px;}
.y1b4{bottom:152.955000px;}
.y2c0{bottom:153.490800px;}
.y206{bottom:153.583500px;}
.y207{bottom:153.892500px;}
.yf2{bottom:154.155000px;}
.y1fe{bottom:154.642500px;}
.y200{bottom:155.392500px;}
.y16d{bottom:155.507400px;}
.y202{bottom:156.142500px;}
.y3e8{bottom:156.428550px;}
.y204{bottom:156.892500px;}
.yc5{bottom:157.234350px;}
.y209{bottom:157.267500px;}
.ye3{bottom:157.782000px;}
.y276{bottom:158.453100px;}
.y2f4{bottom:159.172500px;}
.y2ab{bottom:159.590250px;}
.y3a2{bottom:159.590400px;}
.y32d{bottom:159.591000px;}
.y82{bottom:160.355850px;}
.y3be{bottom:160.356000px;}
.ye5{bottom:160.603500px;}
.y238{bottom:161.376000px;}
.y1e6{bottom:161.406000px;}
.y1e8{bottom:161.580000px;}
.y14f{bottom:161.716500px;}
.y1ea{bottom:161.955000px;}
.y31a{bottom:163.275450px;}
.y3ea{bottom:164.528550px;}
.y32{bottom:165.399450px;}
.y5b{bottom:170.031000px;}
.y26c{bottom:170.425500px;}
.y35e{bottom:170.532000px;}
.y29c{bottom:171.679500px;}
.y228{bottom:171.682800px;}
.y129{bottom:171.883500px;}
.y47{bottom:173.181000px;}
.y2c5{bottom:173.433900px;}
.yc4{bottom:173.434350px;}
.y16c{bottom:175.307400px;}
.y3e6{bottom:176.471250px;}
.y275{bottom:178.253100px;}
.y2f3{bottom:178.972500px;}
.y2aa{bottom:179.390250px;}
.y3a1{bottom:179.390400px;}
.y32c{bottom:179.391000px;}
.y2bf{bottom:179.811750px;}
.y81{bottom:180.155850px;}
.y3bd{bottom:180.156000px;}
.y237{bottom:181.176000px;}
.y14e{bottom:181.516500px;}
.y319{bottom:183.075450px;}
.y347{bottom:183.520500px;}
.y1b{bottom:185.230350px;}
.y31{bottom:185.649450px;}
.y2c4{bottom:189.633900px;}
.yc3{bottom:189.634350px;}
.y26b{bottom:190.225500px;}
.y35d{bottom:190.332000px;}
.y3e7{bottom:190.444500px;}
.y29b{bottom:191.479500px;}
.y227{bottom:191.481150px;}
.y5a{bottom:191.631000px;}
.y128{bottom:191.683500px;}
.y46{bottom:194.781000px;}
.y16b{bottom:195.107400px;}
.y289{bottom:195.574500px;}
.y2be{bottom:196.011750px;}
.y3e5{bottom:196.271250px;}
.y274{bottom:198.053100px;}
.y2f2{bottom:198.772500px;}
.y2a9{bottom:199.190250px;}
.y3a0{bottom:199.190400px;}
.y32b{bottom:199.191000px;}
.y80{bottom:199.955850px;}
.y3bc{bottom:199.956000px;}
.y236{bottom:200.976000px;}
.y14d{bottom:201.316500px;}
.y139{bottom:202.000500px;}
.y318{bottom:202.875450px;}
.y1b3{bottom:204.996000px;}
.y1ee{bottom:205.080000px;}
.y1f8{bottom:205.455000px;}
.y1a{bottom:205.475850px;}
.y1fa{bottom:205.830000px;}
.y1ec{bottom:207.330000px;}
.y3a7{bottom:207.450000px;}
.y1f6{bottom:207.705000px;}
.y1f2{bottom:208.080000px;}
.y1f0{bottom:208.455000px;}
.y1f4{bottom:208.830000px;}
.y1fc{bottom:209.205000px;}
.y26a{bottom:210.025500px;}
.y35c{bottom:210.132000px;}
.y226{bottom:211.279500px;}
.y127{bottom:211.483500px;}
.y288{bottom:211.774500px;}
.y20f{bottom:212.353650px;}
.y59{bottom:213.231000px;}
.y13c{bottom:213.244500px;}
.y18a{bottom:214.626000px;}
.y189{bottom:214.783500px;}
.y195{bottom:214.881000px;}
.y16a{bottom:214.907400px;}
.y384{bottom:215.353800px;}
.y19d{bottom:215.953350px;}
.y3e4{bottom:216.071250px;}
.y45{bottom:216.381000px;}
.y294{bottom:217.540500px;}
.y273{bottom:217.853100px;}
.yf1{bottom:218.082000px;}
.y2f1{bottom:218.572500px;}
.y2a8{bottom:218.990250px;}
.y39f{bottom:218.990400px;}
.y32a{bottom:218.991000px;}
.ye1{bottom:219.091500px;}
.ye0{bottom:219.207000px;}
.y7f{bottom:219.755850px;}
.y3bb{bottom:219.756000px;}
.y235{bottom:220.776000px;}
.y14c{bottom:221.116500px;}
.y317{bottom:222.675450px;}
.y3a6{bottom:223.650000px;}
.y30{bottom:226.147950px;}
.y2fb{bottom:229.518000px;}
.y269{bottom:229.825500px;}
.y35b{bottom:229.932000px;}
.y225{bottom:231.077850px;}
.y29a{bottom:231.079500px;}
.y194{bottom:231.081000px;}
.y126{bottom:231.283500px;}
.y22e{bottom:231.529500px;}
.y19c{bottom:232.153350px;}
.y20e{bottom:232.154100px;}
.y13b{bottom:232.509000px;}
.y169{bottom:234.707400px;}
.y58{bottom:234.831000px;}
.y3e3{bottom:235.871250px;}
.y13a{bottom:235.884000px;}
.y3f5{bottom:236.805000px;}
.y3f6{bottom:236.835000px;}
.y272{bottom:237.653100px;}
.y44{bottom:237.981000px;}
.y2f0{bottom:238.372500px;}
.y2a7{bottom:238.790250px;}
.y39e{bottom:238.790400px;}
.y329{bottom:238.791000px;}
.y7e{bottom:239.555850px;}
.y3ba{bottom:239.556000px;}
.y234{bottom:240.576000px;}
.y14b{bottom:240.916500px;}
.y316{bottom:242.475450px;}
.y287{bottom:242.560200px;}
.y292{bottom:242.719500px;}
.y1ab{bottom:243.438000px;}
.y1a7{bottom:243.517500px;}
.y1af{bottom:243.705000px;}
.y1a5{bottom:244.642500px;}
.y1ad{bottom:244.830000px;}
.y1b1{bottom:245.205000px;}
.y1a9{bottom:245.392500px;}
.y2fa{bottom:245.718000px;}
.y19{bottom:245.983350px;}
.y2f{bottom:246.397950px;}
.y9a{bottom:247.804500px;}
.y18d{bottom:249.217500px;}
.y18c{bottom:249.423000px;}
.y268{bottom:249.625500px;}
.y35a{bottom:249.732000px;}
.y224{bottom:250.879500px;}
.y125{bottom:251.083500px;}
.y3f3{bottom:253.005000px;}
.y3f4{bottom:253.035000px;}
.y168{bottom:254.507400px;}
.y3fd{bottom:255.669750px;}
.y3e2{bottom:255.671250px;}
.y57{bottom:256.431000px;}
.y271{bottom:257.453100px;}
.y11a{bottom:257.787150px;}
.y2ef{bottom:258.172500px;}
.y2a6{bottom:258.590250px;}
.y39d{bottom:258.590400px;}
.y328{bottom:258.591000px;}
.y286{bottom:258.760200px;}
.y2b7{bottom:258.942000px;}
.y2b9{bottom:258.988500px;}
.y7d{bottom:259.355850px;}
.y3b9{bottom:259.356000px;}
.y43{bottom:259.581000px;}
.y233{bottom:260.376000px;}
.y14a{bottom:260.716500px;}
.y2f9{bottom:261.918000px;}
.y315{bottom:262.275450px;}
.y18{bottom:266.228850px;}
.y2e{bottom:266.647950px;}
.y99{bottom:267.604500px;}
.y3f1{bottom:269.205000px;}
.y3f2{bottom:269.235000px;}
.y267{bottom:269.425500px;}
.y359{bottom:269.532000px;}
.y119{bottom:270.387150px;}
.y223{bottom:270.679500px;}
.y124{bottom:270.883500px;}
.y167{bottom:274.307400px;}
.y285{bottom:274.960200px;}
.y3fc{bottom:275.469750px;}
.y3e1{bottom:275.471250px;}
.yc{bottom:277.620000px;}
.y2ee{bottom:277.972500px;}
.y2a5{bottom:278.390250px;}
.y39c{bottom:278.390400px;}
.y327{bottom:278.391000px;}
.y7c{bottom:279.155850px;}
.y3b8{bottom:279.156000px;}
.y13f{bottom:280.071000px;}
.y149{bottom:280.516500px;}
.y199{bottom:281.037750px;}
.y42{bottom:281.181000px;}
.ydf{bottom:281.862000px;}
.y314{bottom:282.075450px;}
.y402{bottom:282.513600px;}
.y118{bottom:282.987150px;}
.y370{bottom:283.313550px;}
.y13e{bottom:284.826000px;}
.y17{bottom:286.474350px;}
.y2d{bottom:286.897950px;}
.y295{bottom:287.353500px;}
.y98{bottom:287.404500px;}
.y266{bottom:289.225500px;}
.y358{bottom:289.332000px;}
.y222{bottom:290.479500px;}
.y123{bottom:290.683500px;}
.y284{bottom:291.160200px;}
.y166{bottom:294.107400px;}
.y3fb{bottom:295.269750px;}
.y3e0{bottom:295.271250px;}
.y117{bottom:295.587150px;}
.y198{bottom:297.237750px;}
.y2ed{bottom:297.772500px;}
.y2a4{bottom:298.190250px;}
.y39b{bottom:298.190400px;}
.y326{bottom:298.191000px;}
.y7b{bottom:298.955850px;}
.y3b7{bottom:298.956000px;}
.yb{bottom:299.220000px;}
.y56{bottom:299.631000px;}
.y148{bottom:300.316500px;}
.yaf{bottom:300.990000px;}
.y135{bottom:301.782000px;}
.y2fe{bottom:301.801050px;}
.y313{bottom:301.875450px;}
.y401{bottom:302.313600px;}
.y41{bottom:302.781000px;}
.y13d{bottom:302.826000px;}
.y36f{bottom:303.113550px;}
.y16{bottom:306.719850px;}
.y97{bottom:307.204500px;}
.y283{bottom:307.360200px;}
.y116{bottom:308.187150px;}
.y265{bottom:309.025500px;}
.y357{bottom:309.132000px;}
.y221{bottom:310.279500px;}
.y383{bottom:310.351500px;}
.y122{bottom:310.483500px;}
.y37a{bottom:311.950500px;}
.y165{bottom:313.907400px;}
.y3fa{bottom:315.069750px;}
.y3df{bottom:315.071250px;}
.y137{bottom:316.002000px;}
.y2ec{bottom:317.572500px;}
.y291{bottom:317.926500px;}
.y2a3{bottom:317.990250px;}
.y39a{bottom:317.990400px;}
.y325{bottom:317.991000px;}
.y2fd{bottom:318.001050px;}
.y7a{bottom:318.755850px;}
.y3b6{bottom:318.756000px;}
.y134{bottom:319.782000px;}
.y147{bottom:320.116500px;}
.ya{bottom:320.820000px;}
.y55{bottom:321.231000px;}
.y312{bottom:321.675450px;}
.y400{bottom:322.113600px;}
.y188{bottom:323.802000px;}
.y187{bottom:323.958000px;}
.y40{bottom:324.381000px;}
.y27d{bottom:326.883600px;}
.y15{bottom:326.965350px;}
.y96{bottom:327.004500px;}
.y2c{bottom:327.397950px;}
.yae{bottom:327.570000px;}
.y264{bottom:328.825500px;}
.y356{bottom:328.932000px;}
.y220{bottom:330.079500px;}
.y121{bottom:330.283500px;}
.y138{bottom:333.282000px;}
.y164{bottom:333.707400px;}
.y136{bottom:334.002000px;}
.y2fc{bottom:334.201050px;}
.y3f9{bottom:334.869750px;}
.y3de{bottom:334.871250px;}
.y2eb{bottom:337.372500px;}
.y2a2{bottom:337.790250px;}
.y399{bottom:337.790400px;}
.y324{bottom:337.791000px;}
.y79{bottom:338.555850px;}
.y3b5{bottom:338.556000px;}
.y146{bottom:339.916500px;}
.y115{bottom:340.467300px;}
.y311{bottom:341.475450px;}
.y3ff{bottom:341.913600px;}
.y9{bottom:342.420000px;}
.y54{bottom:342.831000px;}
.yde{bottom:345.493500px;}
.y3f{bottom:345.981000px;}
.y95{bottom:346.804500px;}
.y14{bottom:347.210850px;}
.y263{bottom:348.625500px;}
.y355{bottom:348.732000px;}
.y22d{bottom:349.803000px;}
.y21f{bottom:349.879500px;}
.y120{bottom:350.083500px;}
.y27b{bottom:350.223000px;}
.y27c{bottom:352.083600px;}
.y114{bottom:353.067300px;}
.y163{bottom:353.507400px;}
.y2dd{bottom:353.650800px;}
.ycc{bottom:354.440400px;}
.y330{bottom:354.441000px;}
.y3f8{bottom:354.669750px;}
.y3dd{bottom:354.671250px;}
.yad{bottom:356.274000px;}
.y2ea{bottom:357.172500px;}
.y2a1{bottom:357.590250px;}
.y398{bottom:357.590400px;}
.y323{bottom:357.591000px;}
.y78{bottom:358.355850px;}
.y3b4{bottom:358.356000px;}
.y2c3{bottom:359.458500px;}
.y145{bottom:359.716500px;}
.y2bd{bottom:360.520050px;}
.y310{bottom:361.275450px;}
.y3fe{bottom:361.713600px;}
.y8{bottom:364.020000px;}
.y53{bottom:364.431000px;}
.y293{bottom:365.175000px;}
.y94{bottom:366.604500px;}
.y13{bottom:367.456350px;}
.y3e{bottom:367.581000px;}
.y262{bottom:368.425500px;}
.y354{bottom:368.532000px;}
.y21e{bottom:369.679500px;}
.y11f{bottom:369.883500px;}
.ycb{bottom:370.640400px;}
.y32f{bottom:370.641000px;}
.y162{bottom:373.307400px;}
.y2dc{bottom:373.450800px;}
.y3f7{bottom:374.469750px;}
.y3dc{bottom:374.471250px;}
.y2c2{bottom:375.658500px;}
.y2bc{bottom:376.720050px;}
.y2e9{bottom:376.972500px;}
.y2a0{bottom:377.390250px;}
.y397{bottom:377.390400px;}
.y322{bottom:377.391000px;}
.y77{bottom:378.155850px;}
.y3b3{bottom:378.156000px;}
.y144{bottom:379.516500px;}
.y30f{bottom:381.075450px;}
.yac{bottom:383.910000px;}
.y52{bottom:386.031000px;}
.ya1{bottom:386.158800px;}
.y93{bottom:386.404500px;}
.yca{bottom:386.840400px;}
.y32e{bottom:386.841000px;}
.y12{bottom:387.701850px;}
.y261{bottom:388.225500px;}
.y353{bottom:388.332000px;}
.y3d{bottom:389.181000px;}
.y21d{bottom:389.479500px;}
.y11e{bottom:389.683500px;}
.ybd{bottom:392.410500px;}
.y2db{bottom:393.250800px;}
.y2e8{bottom:396.772500px;}
.y29f{bottom:397.190250px;}
.y396{bottom:397.190400px;}
.y321{bottom:397.191000px;}
.y379{bottom:397.410000px;}
.y76{bottom:397.955850px;}
.y3b2{bottom:397.956000px;}
.y143{bottom:399.316500px;}
.y30e{bottom:400.875450px;}
.y300{bottom:403.040250px;}
.yc9{bottom:403.040400px;}
.yb7{bottom:403.041000px;}
.y376{bottom:403.041300px;}
.y92{bottom:406.204500px;}
.y2b{bottom:406.597950px;}
.y7{bottom:407.220000px;}
.y11{bottom:407.947350px;}
.y260{bottom:408.025500px;}
.ybc{bottom:408.610500px;}
.y21c{bottom:409.279500px;}
.ydd{bottom:409.420500px;}
.y11d{bottom:409.483500px;}
.y113{bottom:410.545350px;}
.yab{bottom:411.546000px;}
.y161{bottom:412.907400px;}
.y2da{bottom:413.050800px;}
.y2e7{bottom:416.572500px;}
.y29e{bottom:416.990250px;}
.y395{bottom:416.990400px;}
.y320{bottom:416.991000px;}
.y75{bottom:417.755850px;}
.y3b1{bottom:417.756000px;}
.y142{bottom:419.116500px;}
.y2ff{bottom:419.240250px;}
.yc8{bottom:419.240400px;}
.yb6{bottom:419.241000px;}
.y375{bottom:419.241300px;}
.y30d{bottom:420.675450px;}
.y91{bottom:426.004500px;}
.y2a{bottom:426.397950px;}
.y25f{bottom:427.825500px;}
.ya0{bottom:428.679600px;}
.y6{bottom:428.820000px;}
.y21b{bottom:429.079500px;}
.y11c{bottom:429.283500px;}
.y367{bottom:431.698350px;}
.y2d9{bottom:432.850800px;}
.ybb{bottom:434.930100px;}
.y3c{bottom:435.981000px;}
.y74{bottom:437.555850px;}
.y3b0{bottom:437.556000px;}
.yaa{bottom:439.722000px;}
.y30c{bottom:440.475450px;}
.y90{bottom:445.804500px;}
.y29{bottom:446.197950px;}
.y25e{bottom:447.625500px;}
.y366{bottom:447.898350px;}
.y21a{bottom:448.879500px;}
.y11b{bottom:449.083500px;}
.y230{bottom:451.129800px;}
.yba{bottom:451.130100px;}
.y2d8{bottom:452.650800px;}
.y3ef{bottom:452.845500px;}
.y3f0{bottom:452.875500px;}
.y112{bottom:455.425500px;}
.y73{bottom:457.355850px;}
.y3af{bottom:457.356000px;}
.y30b{bottom:460.275450px;}
.y2e5{bottom:461.254500px;}
.y190{bottom:461.989500px;}
.y18f{bottom:462.315000px;}
.y186{bottom:463.816500px;}
.y185{bottom:463.972500px;}
.y365{bottom:464.002500px;}
.y217{bottom:464.077500px;}
.y332{bottom:464.947500px;}
.y8f{bottom:465.604500px;}
.y339{bottom:466.471538px;}
.ya6{bottom:467.380500px;}
.y25d{bottom:467.425500px;}
.y111{bottom:468.025500px;}
.ya9{bottom:468.954000px;}
.y9f{bottom:471.200400px;}
.y2d7{bottom:472.450800px;}
.y386{bottom:473.197500px;}
.ydc{bottom:473.200500px;}
.y3db{bottom:473.314500px;}
.y244{bottom:477.067500px;}
.y72{bottom:477.155850px;}
.y3ae{bottom:477.156000px;}
.y1a4{bottom:477.450000px;}
.y141{bottom:477.454500px;}
.y131{bottom:477.658500px;}
.y5{bottom:478.684500px;}
.y30a{bottom:480.075450px;}
.y364{bottom:480.202500px;}
.y338{bottom:480.558331px;}
.y110{bottom:480.625500px;}
.y219{bottom:482.216765px;}
.y3cd{bottom:485.245500px;}
.y8e{bottom:485.404500px;}
.y28{bottom:486.696450px;}
.y36e{bottom:487.212300px;}
.y25c{bottom:487.225500px;}
.y385{bottom:489.397500px;}
.y216{bottom:490.089000px;}
.y218{bottom:490.090081px;}
.y2d6{bottom:492.250800px;}
.y3da{bottom:493.114500px;}
.y10f{bottom:493.225500px;}
.y243{bottom:493.267500px;}
.y17e{bottom:493.606650px;}
.y1a3{bottom:493.650000px;}
.y140{bottom:493.654500px;}
.y130{bottom:493.858500px;}
.y3a3{bottom:494.035500px;}
.y71{bottom:496.955850px;}
.y3ad{bottom:496.956000px;}
.y309{bottom:499.875450px;}
.y20d{bottom:499.986000px;}
.y160{bottom:500.413500px;}
.y3cc{bottom:501.445500px;}
.y8d{bottom:505.204500px;}
.y36d{bottom:507.012300px;}
.y25b{bottom:507.025500px;}
.y12f{bottom:507.334500px;}
.y51{bottom:508.431000px;}
.yb2{bottom:510.846000px;}
.y3b{bottom:511.581000px;}
.y2d5{bottom:512.050800px;}
.y10e{bottom:512.905650px;}
.y3d9{bottom:512.914500px;}
.y17d{bottom:513.406650px;}
.y9e{bottom:513.718800px;}
.y394{bottom:513.835500px;}
.y20c{bottom:516.186000px;}
.y70{bottom:516.755850px;}
.y3ac{bottom:516.756000px;}
.y348{bottom:518.005500px;}
.y4{bottom:518.284500px;}
.y252{bottom:518.457000px;}
.y308{bottom:519.675450px;}
.y337{bottom:519.837712px;}
.y2b1{bottom:519.969000px;}
.y15f{bottom:520.213500px;}
.y22c{bottom:523.413000px;}
.y232{bottom:524.981550px;}
.y8c{bottom:525.004500px;}
.y10d{bottom:525.505650px;}
.y242{bottom:525.667500px;}
.y36c{bottom:526.812300px;}
.y25a{bottom:526.825500px;}
.y50{bottom:530.031000px;}
.y2d4{bottom:531.850800px;}
.y3d8{bottom:532.714500px;}
.y17c{bottom:533.206650px;}
.y393{bottom:533.635500px;}
.y2b0{bottom:536.169000px;}
.y6f{bottom:536.555850px;}
.y3ab{bottom:536.556000px;}
.yda{bottom:536.832000px;}
.y10c{bottom:538.105650px;}
.y251{bottom:538.257000px;}
.y307{bottom:539.475450px;}
.y15e{bottom:540.013500px;}
.y241{bottom:541.867500px;}
.y331{bottom:542.440500px;}
.y8b{bottom:544.804500px;}
.y259{bottom:546.625500px;}
.y302{bottom:548.119500px;}
.y2b5{bottom:548.394600px;}
.y10b{bottom:550.705650px;}
.y4f{bottom:551.631000px;}
.y2d3{bottom:551.650800px;}
.y3d7{bottom:552.514500px;}
.y17b{bottom:553.006650px;}
.y392{bottom:553.435500px;}
.y352{bottom:553.695000px;}
.y12e{bottom:554.132700px;}
.yb1{bottom:554.454000px;}
.y3a{bottom:554.781000px;}
.y9d{bottom:556.239600px;}
.y6e{bottom:556.355850px;}
.y3aa{bottom:556.356000px;}
.y345{bottom:557.169204px;}
.y3{bottom:557.884500px;}
.y250{bottom:558.057000px;}
.y336{bottom:559.001570px;}
.y306{bottom:559.275450px;}
.y15d{bottom:559.813500px;}
.y10a{bottom:563.305650px;}
.y8a{bottom:564.604500px;}
.y258{bottom:566.425500px;}
.y301{bottom:569.719500px;}
.y3d6{bottom:572.314500px;}
.y17a{bottom:572.806650px;}
.y344{bottom:572.973000px;}
.y214{bottom:573.044996px;}
.y4e{bottom:573.231000px;}
.y391{bottom:573.235500px;}
.y351{bottom:573.495000px;}
.y240{bottom:574.267500px;}
.y6d{bottom:576.155850px;}
.y3a9{bottom:576.156000px;}
.y24f{bottom:577.857000px;}
.y305{bottom:579.075450px;}
.y15c{bottom:579.613500px;}
.y215{bottom:580.838929px;}
.y213{bottom:580.917000px;}
.y37b{bottom:583.461000px;}
.y29d{bottom:583.879500px;}
.y89{bottom:584.404500px;}
.y257{bottom:586.225500px;}
.y2b2{bottom:588.787950px;}
.y109{bottom:589.283700px;}
.y23f{bottom:590.467500px;}
.y3d5{bottom:592.114500px;}
.y179{bottom:592.606650px;}
.y390{bottom:593.035500px;}
.y350{bottom:593.295000px;}
.y343{bottom:593.701500px;}
.y4d{bottom:594.831000px;}
.y6c{bottom:595.955850px;}
.y3a8{bottom:595.956000px;}
.yb0{bottom:597.342000px;}
.y3c7{bottom:597.907500px;}
.y39{bottom:597.981000px;}
.y335{bottom:598.280952px;}
.y296{bottom:598.704000px;}
.y9c{bottom:598.759200px;}
.y2e6{bottom:598.875000px;}
.y304{bottom:598.875450px;}
.y15b{bottom:599.413500px;}
.yd7{bottom:600.759000px;}
.yd8{bottom:600.760500px;}
.y108{bottom:601.883700px;}
.y88{bottom:604.204500px;}
.y256{bottom:606.025500px;}
.y24e{bottom:608.325450px;}
.y2f8{bottom:611.652000px;}
.y12d{bottom:611.733600px;}
.y3d4{bottom:611.914500px;}
.y178{bottom:612.406650px;}
.y38f{bottom:612.835500px;}
.y34f{bottom:613.095000px;}
.y2b4{bottom:614.300250px;}
.y107{bottom:614.483700px;}
.y37e{bottom:614.500200px;}
.y27{bottom:614.628450px;}
.y6b{bottom:615.755850px;}
.y3c6{bottom:618.603000px;}
.y303{bottom:618.675450px;}
.y15a{bottom:619.213500px;}
.y23e{bottom:622.867500px;}
.y87{bottom:624.004500px;}
.y24d{bottom:624.525450px;}
.y28e{bottom:628.070550px;}
.y3d3{bottom:631.714500px;}
.y177{bottom:632.206650px;}
.y38e{bottom:632.635500px;}
.yf{bottom:632.737500px;}
.y34e{bottom:632.895000px;}
.y26{bottom:634.428450px;}
.y6a{bottom:635.555850px;}
.y334{bottom:637.446000px;}
.y37d{bottom:637.490700px;}
.y2d2{bottom:638.475450px;}
.ya8{bottom:638.826000px;}
.y159{bottom:639.013500px;}
.y23d{bottom:639.067500px;}
.y183{bottom:639.415500px;}
.y182{bottom:639.571500px;}
.y9b{bottom:641.280000px;}
.y86{bottom:643.804500px;}
.y12c{bottom:644.134500px;}
.y346{bottom:644.775000px;}
.y38{bottom:644.781000px;}
.y2b3{bottom:645.126150px;}
.y3c5{bottom:646.507500px;}
.y28d{bottom:647.871000px;}
.y176{bottom:652.006650px;}
.y38d{bottom:652.435500px;}
.y34d{bottom:652.695000px;}
.y106{bottom:653.063850px;}
.y69{bottom:655.355850px;}
.y24c{bottom:656.925450px;}
.y2d1{bottom:658.275450px;}
.y158{bottom:658.813500px;}
.y28a{bottom:658.830000px;}
.y36b{bottom:661.911000px;}
.ye{bottom:663.337500px;}
.y211{bottom:663.446996px;}
.y3ed{bottom:663.460500px;}
.y3ee{bottom:663.490500px;}
.y85{bottom:663.604500px;}
.yd6{bottom:664.539000px;}
.y105{bottom:665.663850px;}
.y19b{bottom:666.663000px;}
.y380{bottom:666.788400px;}
.y3c4{bottom:667.203000px;}
.y349{bottom:667.335000px;}
.y382{bottom:668.117700px;}
.y210{bottom:671.319000px;}
.y175{bottom:671.806650px;}
.y333{bottom:672.202500px;}
.y38c{bottom:672.235500px;}
.y34c{bottom:672.495000px;}
.y24b{bottom:673.125450px;}
.y25{bottom:674.926950px;}
.y68{bottom:675.155850px;}
.y255{bottom:676.141500px;}
.y2d0{bottom:678.075450px;}
.y104{bottom:678.263850px;}
.y157{bottom:678.613500px;}
.y381{bottom:678.917700px;}
.y3eb{bottom:679.660500px;}
.y3ec{bottom:679.690500px;}
.y37c{bottom:679.979700px;}
.y36a{bottom:681.711000px;}
.y19a{bottom:682.863000px;}
.y3c9{bottom:689.325450px;}
.y174{bottom:691.606650px;}
.y4c{bottom:692.031000px;}
.y38b{bottom:692.035500px;}
.y34b{bottom:692.295000px;}
.y254{bottom:692.341500px;}
.y67{bottom:694.955850px;}
.y37{bottom:695.181000px;}
.y299{bottom:696.045000px;}
.y2cf{bottom:697.875450px;}
.y156{bottom:698.413500px;}
.y212{bottom:698.440314px;}
.y193{bottom:700.701000px;}
.y192{bottom:701.026500px;}
.y2{bottom:701.134500px;}
.yc2{bottom:701.485500px;}
.y369{bottom:701.511000px;}
.y24a{bottom:705.525450px;}
.y297{bottom:706.323300px;}
.y378{bottom:709.626000px;}
.y3c3{bottom:711.307500px;}
.y173{bottom:711.406650px;}
.y38a{bottom:711.835500px;}
.y34a{bottom:712.095000px;}
.y298{bottom:712.245000px;}
.y3ce{bottom:712.830000px;}
.y66{bottom:714.755850px;}
.y24{bottom:715.426950px;}
.y3d0{bottom:715.560000px;}
.y103{bottom:716.844000px;}
.y28c{bottom:717.355500px;}
.y2ce{bottom:717.675450px;}
.yc1{bottom:717.685500px;}
.y37f{bottom:718.034400px;}
.y155{bottom:718.213500px;}
.y368{bottom:721.311000px;}
.y249{bottom:721.725450px;}
.y1{bottom:726.334500px;}
.yd{bottom:726.337500px;}
.y3c2{bottom:727.507500px;}
.yd5{bottom:728.319000px;}
.y102{bottom:729.444000px;}
.y172{bottom:731.206650px;}
.y389{bottom:731.635500px;}
.y3cf{bottom:731.760000px;}
.yc0{bottom:733.885500px;}
.y65{bottom:734.555850px;}
.y23{bottom:735.279450px;}
.y28b{bottom:737.155950px;}
.y2cd{bottom:737.475450px;}
.y3c8{bottom:737.925450px;}
.y101{bottom:742.044000px;}
.y1a2{bottom:745.800450px;}
.yb5{bottom:748.830150px;}
.ya5{bottom:749.850600px;}
.y282{bottom:752.796750px;}
.y33c{bottom:752.878077px;}
.y248{bottom:754.125450px;}
.y64{bottom:754.355850px;}
.y342{bottom:754.480854px;}
.y22{bottom:755.926950px;}
.y2cc{bottom:757.275450px;}
.y245{bottom:758.400450px;}
.y3cb{bottom:760.086000px;}
.ybf{bottom:760.205850px;}
.y253{bottom:760.650450px;}
.y3d2{bottom:762.124500px;}
.y2e1{bottom:762.870450px;}
.y2e2{bottom:762.900450px;}
.y1a1{bottom:763.800450px;}
.yb4{bottom:766.830000px;}
.ya4{bottom:767.850450px;}
.yd1{bottom:768.023250px;}
.y33b{bottom:768.681873px;}
.y281{bottom:768.996750px;}
.y19e{bottom:769.603050px;}
.y154{bottom:769.650450px;}
.y341{bottom:770.284650px;}
.yc7{bottom:770.325450px;}
.y171{bottom:770.806650px;}
.y363{bottom:774.030000px;}
.y63{bottom:774.155850px;}
.y33f{bottom:774.178623px;}
.y3ca{bottom:776.286000px;}
.ybe{bottom:776.405850px;}
.y2cb{bottom:777.075450px;}
.yd0{bottom:780.623250px;}
.y1a0{bottom:781.800450px;}
.y33a{bottom:784.370100px;}
.y280{bottom:785.196750px;}
.yc6{bottom:786.525450px;}
.y33e{bottom:789.866850px;}
.y340{bottom:791.012100px;}
.yd2{bottom:792.098250px;}
.yd3{bottom:792.099000px;}
.ycf{bottom:793.223250px;}
.y377{bottom:795.085950px;}
.y21{bottom:796.425450px;}
.y2ca{bottom:796.875450px;}
.y20b{bottom:799.125000px;}
.y27f{bottom:801.396750px;}
.y197{bottom:801.653100px;}
.y374{bottom:801.996000px;}
.y2bb{bottom:802.725300px;}
.yb9{bottom:802.725450px;}
.y2c9{bottom:802.725600px;}
.y3a5{bottom:802.726050px;}
.yb3{bottom:802.830000px;}
.y180{bottom:803.997000px;}
.yce{bottom:805.823250px;}
.y17f{bottom:807.145800px;}
.y60{bottom:808.800450px;}
.y3d1{bottom:808.924500px;}
.y33d{bottom:810.594300px;}
.y62{bottom:811.050450px;}
.y10{bottom:812.737950px;}
.y2df{bottom:813.270450px;}
.y2e0{bottom:813.300450px;}
.y20{bottom:816.675450px;}
.y27e{bottom:817.596750px;}
.y19f{bottom:817.800450px;}
.y196{bottom:817.853100px;}
.y373{bottom:818.196000px;}
.ycd{bottom:818.423250px;}
.y2ba{bottom:818.925300px;}
.yb8{bottom:818.925450px;}
.y2c8{bottom:818.925600px;}
.y3a4{bottom:818.926050px;}
.h34{height:0.079500px;}
.h36{height:0.267000px;}
.h33{height:0.375000px;}
.h40{height:0.750000px;}
.h59{height:0.924000px;}
.h3a{height:1.125000px;}
.h43{height:1.500000px;}
.h58{height:1.674000px;}
.h4e{height:1.875000px;}
.h57{height:2.049000px;}
.h4f{height:2.085000px;}
.h52{height:2.250000px;}
.h5f{height:2.331000px;}
.h55{height:2.460000px;}
.h4d{height:2.625000px;}
.h5d{height:2.706000px;}
.h61{height:2.709000px;}
.h45{height:2.818500px;}
.h54{height:2.835000px;}
.h3c{height:3.000000px;}
.h5e{height:3.081000px;}
.h4b{height:3.375000px;}
.h60{height:3.456000px;}
.h46{height:3.568500px;}
.h42{height:3.750000px;}
.h5b{height:3.831000px;}
.h3f{height:4.125000px;}
.h35{height:4.500000px;}
.h47{height:4.693500px;}
.h4a{height:4.710000px;}
.h32{height:4.875000px;}
.h30{height:4.960500px;}
.h3d{height:5.250000px;}
.h66{height:5.298000px;}
.h63{height:5.331000px;}
.h62{height:5.334000px;}
.h48{height:5.443500px;}
.h4c{height:5.601000px;}
.h39{height:5.625000px;}
.h44{height:5.818500px;}
.h38{height:5.857500px;}
.h3e{height:6.000000px;}
.h65{height:6.048000px;}
.h5c{height:6.081000px;}
.h56{height:6.163500px;}
.h5a{height:6.165000px;}
.h49{height:6.193500px;}
.h53{height:6.351000px;}
.h3b{height:6.375000px;}
.h67{height:6.750000px;}
.h64{height:6.798000px;}
.h41{height:7.125000px;}
.h50{height:7.500000px;}
.h69{height:7.548000px;}
.h19{height:7.570500px;}
.h51{height:7.693500px;}
.h68{height:7.857000px;}
.h16{height:8.773500px;}
.h18{height:8.775000px;}
.h17{height:9.072000px;}
.h1c{height:9.396000px;}
.h1f{height:9.534000px;}
.h1e{height:9.649500px;}
.h1d{height:9.765000px;}
.h1b{height:9.882000px;}
.h29{height:10.273500px;}
.h2a{height:10.275000px;}
.h27{height:10.431000px;}
.h1a{height:11.986500px;}
.h26{height:13.266000px;}
.h13{height:14.868562px;}
.h7a{height:18.292058px;}
.h6c{height:18.920626px;}
.h79{height:19.075824px;}
.h2c{height:20.368500px;}
.h2e{height:20.605500px;}
.h73{height:20.702956px;}
.h6f{height:22.626000px;}
.h31{height:24.658200px;}
.h7f{height:27.270000px;}
.h37{height:28.659600px;}
.h7b{height:30.168000px;}
.h75{height:34.204658px;}
.h22{height:34.608000px;}
.h15{height:35.196000px;}
.h6d{height:36.040704px;}
.h74{height:36.964363px;}
.h76{height:38.151217px;}
.h11{height:40.224000px;}
.h25{height:41.097000px;}
.h21{height:43.260000px;}
.h71{height:44.615802px;}
.h12{height:45.252000px;}
.hb{height:46.860000px;}
.ha{height:47.586000px;}
.h28{height:47.766000px;}
.h14{height:49.062502px;}
.he{height:50.280000px;}
.h4{height:51.912000px;}
.h6b{height:55.307400px;}
.h9{height:55.308000px;}
.h7d{height:55.308600px;}
.h6a{height:55.309800px;}
.h23{height:55.380000px;}
.h5{height:60.336000px;}
.h2{height:60.564000px;}
.h6e{height:61.784064px;}
.h7c{height:65.364000px;}
.h77{height:68.409317px;}
.hf{height:69.216000px;}
.hc{height:70.392000px;}
.h20{height:70.662000px;}
.h8{height:72.906000px;}
.h7e{height:73.329600px;}
.h81{height:77.652000px;}
.h2b{height:85.385290px;}
.h7{height:85.476000px;}
.hd{height:90.504000px;}
.h3{height:95.172000px;}
.h24{height:96.240000px;}
.h2d{height:99.241156px;}
.h6{height:99.498000px;}
.h72{height:103.516070px;}
.h2f{height:107.520000px;}
.h10{height:113.394502px;}
.h80{height:135.756000px;}
.h78{height:367.795500px;}
.h1{height:892.500000px;}
.h70{height:892.800000px;}
.h0{height:892.830000px;}
.w23{width:0.375000px;}
.w24{width:0.750000px;}
.w18{width:0.964500px;}
.w2b{width:1.125000px;}
.w1d{width:1.198500px;}
.w1c{width:1.500000px;}
.w30{width:1.875000px;}
.w42{width:2.250000px;}
.w43{width:2.497500px;}
.w46{width:2.625000px;}
.w2a{width:2.815500px;}
.w45{width:2.872500px;}
.w4{width:2.929500px;}
.w51{width:3.000000px;}
.w4b{width:3.375000px;}
.w47{width:3.622500px;}
.w4c{width:3.750000px;}
.w50{width:3.778500px;}
.w4d{width:3.997500px;}
.w32{width:4.125000px;}
.w4f{width:4.153500px;}
.w48{width:4.315500px;}
.w44{width:4.372500px;}
.w39{width:4.500000px;}
.w3a{width:4.875000px;}
.w59{width:5.250000px;}
.w5{width:5.481000px;}
.w40{width:5.625000px;}
.w3{width:5.967000px;}
.w5a{width:6.000000px;}
.w52{width:6.375000px;}
.w6{width:6.426000px;}
.w2c{width:6.750000px;}
.w61{width:7.087500px;}
.w49{width:7.125000px;}
.w41{width:7.500000px;}
.w3d{width:7.875000px;}
.w2{width:8.073000px;}
.w3e{width:8.250000px;}
.w3f{width:9.000000px;}
.w58{width:9.375000px;}
.w27{width:9.750000px;}
.w66{width:9.940500px;}
.w5b{width:10.125000px;}
.w2f{width:10.315500px;}
.w1{width:10.368000px;}
.w38{width:10.500000px;}
.w25{width:10.690500px;}
.w57{width:10.875000px;}
.w26{width:11.065500px;}
.w35{width:11.625000px;}
.w28{width:12.000000px;}
.w36{width:12.375000px;}
.w37{width:12.750000px;}
.w21{width:12.940500px;}
.w29{width:13.125000px;}
.w33{width:13.500000px;}
.w3b{width:13.875000px;}
.w4e{width:13.903500px;}
.w65{width:14.250000px;}
.w3c{width:14.625000px;}
.w1b{width:15.000000px;}
.w2d{width:15.190500px;}
.w54{width:15.363000px;}
.w20{width:15.375000px;}
.w22{width:15.750000px;}
.w2e{width:15.940500px;}
.w4a{width:16.125000px;}
.w31{width:16.315500px;}
.w1a{width:16.438500px;}
.w34{width:16.500000px;}
.w64{width:17.161500px;}
.w60{width:17.250000px;}
.w56{width:17.470500px;}
.w5e{width:18.375000px;}
.w5c{width:18.750000px;}
.w62{width:18.889500px;}
.w5f{width:19.125000px;}
.w5d{width:19.500000px;}
.w14{width:25.122000px;}
.w16{width:29.754000px;}
.w1e{width:31.878000px;}
.w1f{width:33.336000px;}
.w11{width:40.170000px;}
.w7{width:41.716500px;}
.w53{width:48.994500px;}
.w55{width:50.452500px;}
.wa{width:53.865000px;}
.w17{width:55.110000px;}
.w19{width:56.856000px;}
.w63{width:58.789500px;}
.w15{width:70.366500px;}
.w8{width:73.074000px;}
.wb{width:73.371000px;}
.w13{width:81.451500px;}
.w9{width:87.559500px;}
.w10{width:112.254000px;}
.w12{width:141.784500px;}
.wd{width:162.075000px;}
.wf{width:188.797500px;}
.we{width:361.404000px;}
.wc{width:372.135000px;}
.w68{width:752.599500px;}
.w67{width:1262.835000px;}
.w0{width:1263.000000px;}
.x7f{left:-16.474500px;}
.xa5{left:-4.761000px;}
.xa0{left:-3.600000px;}
.x92{left:-2.475000px;}
.x25{left:-1.404000px;}
.x0{left:0.000000px;}
.x87{left:1.065000px;}
.x9a{left:2.166750px;}
.x23{left:3.739350px;}
.x45{left:5.743650px;}
.x34{left:7.856700px;}
.x66{left:8.977950px;}
.x38{left:10.151850px;}
.x7d{left:12.316050px;}
.x80{left:13.856250px;}
.x2d{left:16.243350px;}
.x73{left:18.025800px;}
.x50{left:27.709950px;}
.x28{left:29.137200px;}
.x3a{left:31.549050px;}
.x31{left:34.198050px;}
.x74{left:37.918500px;}
.x35{left:45.696750px;}
.xad{left:52.257000px;}
.x1{left:63.779550px;}
.xc{left:65.279550px;}
.x2c{left:70.766100px;}
.x76{left:74.540550px;}
.xb7{left:79.034550px;}
.x6c{left:80.325900px;}
.x30{left:85.251300px;}
.x2{left:93.723150px;}
.xb8{left:100.404900px;}
.x9{left:106.299150px;}
.x6e{left:108.554400px;}
.x10{left:111.203850px;}
.x70{left:135.159000px;}
.xd1{left:137.718900px;}
.x60{left:140.529000px;}
.x47{left:143.290800px;}
.x52{left:145.917900px;}
.xfd{left:149.833800px;}
.x68{left:151.714500px;}
.x5c{left:158.386500px;}
.x49{left:160.248600px;}
.x3f{left:161.687550px;}
.xd0{left:165.159000px;}
.x69{left:171.065700px;}
.xb9{left:178.875000px;}
.x71{left:181.510500px;}
.x72{left:182.593500px;}
.x54{left:185.595150px;}
.x78{left:187.053000px;}
.x79{left:188.136000px;}
.xa6{left:192.562500px;}
.x6a{left:194.492100px;}
.xa7{left:198.187500px;}
.xa8{left:199.312500px;}
.xb6{left:200.955943px;}
.x64{left:202.600500px;}
.x65{left:203.683500px;}
.xa9{left:206.625000px;}
.x4b{left:208.579800px;}
.x77{left:210.202500px;}
.x67{left:220.770150px;}
.xaa{left:222.000000px;}
.x7a{left:223.077750px;}
.x6b{left:224.958150px;}
.xa2{left:226.096500px;}
.x75{left:228.620100px;}
.xab{left:231.750000px;}
.xac{left:237.000000px;}
.x6d{left:239.735250px;}
.x5e{left:241.299000px;}
.xa3{left:243.000000px;}
.xa4{left:246.375000px;}
.x5f{left:256.624500px;}
.xda{left:260.404500px;}
.xd2{left:261.766500px;}
.x105{left:263.352000px;}
.x106{left:264.871500px;}
.xdb{left:266.472000px;}
.x6f{left:275.815500px;}
.xba{left:279.435858px;}
.xbb{left:283.671686px;}
.xb5{left:294.190500px;}
.xf7{left:296.867700px;}
.x5d{left:299.289000px;}
.xd{left:312.949500px;}
.xe{left:319.602000px;}
.xf{left:333.858000px;}
.x41{left:344.720550px;}
.xe3{left:346.536000px;}
.xd3{left:349.350000px;}
.x7b{left:355.095000px;}
.x7c{left:357.345000px;}
.x4d{left:358.496550px;}
.xf6{left:367.663500px;}
.x43{left:369.227400px;}
.xf4{left:384.165000px;}
.x4{left:391.180500px;}
.xee{left:403.936500px;}
.xc3{left:405.950250px;}
.xf1{left:410.638500px;}
.x7e{left:413.283000px;}
.x5{left:445.180500px;}
.x90{left:451.875000px;}
.x94{left:453.000000px;}
.x91{left:454.125000px;}
.x93{left:456.000000px;}
.x95{left:460.125000px;}
.x6{left:462.401400px;}
.x96{left:466.875000px;}
.x97{left:469.125000px;}
.x98{left:470.250000px;}
.x9b{left:472.500000px;}
.xeb{left:475.803000px;}
.x99{left:477.375000px;}
.xf5{left:479.002500px;}
.x9c{left:483.000000px;}
.xe4{left:484.299000px;}
.xf8{left:487.913400px;}
.x9d{left:489.750000px;}
.xa1{left:490.875000px;}
.x9e{left:496.875000px;}
.x9f{left:498.375000px;}
.xa{left:504.921000px;}
.xe8{left:506.443500px;}
.x85{left:534.249000px;}
.x102{left:537.874500px;}
.xe9{left:540.546000px;}
.xe7{left:542.365500px;}
.x86{left:549.000000px;}
.x61{left:556.849500px;}
.x88{left:562.500000px;}
.x2f{left:563.986500px;}
.x89{left:567.000000px;}
.x37{left:570.445050px;}
.x2a{left:571.498500px;}
.x8a{left:576.000000px;}
.x2b{left:577.438500px;}
.xf3{left:578.502000px;}
.x32{left:580.320000px;}
.x33{left:581.346000px;}
.x8b{left:585.000000px;}
.x26{left:586.114500px;}
.xf2{left:587.562000px;}
.x8c{left:589.500000px;}
.x8d{left:594.000000px;}
.x39{left:595.285050px;}
.x27{left:597.328500px;}
.x22{left:602.230500px;}
.x24{left:604.789500px;}
.x2e{left:608.080350px;}
.x3b{left:609.284400px;}
.x29{left:621.110550px;}
.x36{left:635.209950px;}
.x62{left:643.039500px;}
.xd4{left:644.439300px;}
.xf9{left:645.447600px;}
.x21{left:652.677000px;}
.xdc{left:655.300350px;}
.x3e{left:656.334000px;}
.x4a{left:661.731000px;}
.xc4{left:678.181440px;}
.xae{left:680.526000px;}
.xaf{left:681.937500px;}
.xb0{left:683.062500px;}
.xb1{left:697.500000px;}
.xb3{left:702.750000px;}
.xb2{left:712.125000px;}
.xea{left:732.573000px;}
.xef{left:745.897950px;}
.x4e{left:748.627500px;}
.x4f{left:752.365500px;}
.x44{left:761.647500px;}
.x46{left:773.449800px;}
.x51{left:782.207100px;}
.x55{left:786.270000px;}
.x103{left:787.411200px;}
.x3{left:789.802650px;}
.x56{left:803.805300px;}
.x8f{left:805.279500px;}
.x8e{left:806.737500px;}
.x40{left:821.528550px;}
.x3c{left:837.418500px;}
.x3d{left:840.057000px;}
.xed{left:849.235500px;}
.x7{left:861.023250px;}
.x104{left:870.590100px;}
.xec{left:873.814500px;}
.x4c{left:876.789150px;}
.x57{left:886.374750px;}
.x53{left:900.415050px;}
.x12{left:903.543000px;}
.x48{left:910.996950px;}
.xcb{left:919.688700px;}
.xca{left:921.956700px;}
.xc2{left:923.679000px;}
.xc7{left:925.804200px;}
.xe2{left:926.929500px;}
.x5b{left:928.855350px;}
.xe5{left:935.363700px;}
.xd6{left:938.090850px;}
.x107{left:948.296700px;}
.xf0{left:959.353200px;}
.xe1{left:962.645850px;}
.xc0{left:966.912000px;}
.x18{left:969.740850px;}
.x108{left:971.515350px;}
.xbc{left:982.842000px;}
.xbd{left:986.419500px;}
.xc1{left:988.079850px;}
.xd8{left:992.834700px;}
.xbe{left:997.314000px;}
.x42{left:1004.771550px;}
.xb{left:1010.280000px;}
.x16{left:1014.371850px;}
.xcd{left:1018.400850px;}
.xc9{left:1024.757850px;}
.xfa{left:1025.758350px;}
.x81{left:1035.041850px;}
.xdd{left:1036.396350px;}
.x1e{left:1037.570850px;}
.x100{left:1038.623850px;}
.x59{left:1039.649850px;}
.xd7{left:1040.669250px;}
.x17{left:1045.623000px;}
.x20{left:1049.356350px;}
.xbf{left:1055.052150px;}
.x11{left:1056.448500px;}
.xe0{left:1058.811000px;}
.xce{left:1060.966350px;}
.x83{left:1063.216350px;}
.x1a{left:1065.757500px;}
.x84{left:1069.874550px;}
.xc8{left:1072.534350px;}
.xe6{left:1074.073500px;}
.xd9{left:1075.666500px;}
.xfb{left:1080.054000px;}
.xc6{left:1082.280000px;}
.x1f{left:1085.413500px;}
.xff{left:1093.149000px;}
.x1c{left:1095.903000px;}
.xcf{left:1098.439650px;}
.x82{left:1101.407850px;}
.x101{left:1104.448350px;}
.x1d{left:1111.374000px;}
.x5a{left:1114.128000px;}
.x19{left:1120.203000px;}
.x14{left:1125.522000px;}
.x63{left:1127.317500px;}
.x1b{left:1131.097500px;}
.xd5{left:1132.663500px;}
.xfc{left:1136.335500px;}
.xde{left:1138.347000px;}
.xdf{left:1140.952500px;}
.xfe{left:1147.000500px;}
.xb4{left:1149.093000px;}
.xcc{left:1151.062500px;}
.x58{left:1156.248000px;}
.x13{left:1163.173500px;}
.xc5{left:1166.169000px;}
.x15{left:1183.665000px;}
.x8{left:1191.360000px;}
@media print{
.v6{vertical-align:-37.728000pt;}
.vb{vertical-align:-15.984000pt;}
.v1{vertical-align:-10.664267pt;}
.v7{vertical-align:-1.728000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.533333pt;}
.v8{vertical-align:9.397333pt;}
.va{vertical-align:16.019200pt;}
.v3{vertical-align:18.117333pt;}
.v9{vertical-align:19.536533pt;}
.vc{vertical-align:28.800000pt;}
.v5{vertical-align:47.093333pt;}
.v2{vertical-align:57.184000pt;}
.lsc2{letter-spacing:-6.248000pt;}
.ls1d{letter-spacing:-4.458667pt;}
.ls1e{letter-spacing:-4.165333pt;}
.ls1b{letter-spacing:-2.693333pt;}
.ls17f{letter-spacing:-2.100267pt;}
.ls17b{letter-spacing:-1.560533pt;}
.ls180{letter-spacing:-1.548800pt;}
.ls17e{letter-spacing:-1.537067pt;}
.lsec{letter-spacing:-1.513600pt;}
.ls193{letter-spacing:-1.466667pt;}
.ls3f{letter-spacing:-1.413867pt;}
.lsbb{letter-spacing:-1.402133pt;}
.ls185{letter-spacing:-1.390400pt;}
.ls8c{letter-spacing:-1.384533pt;}
.ls152{letter-spacing:-1.372800pt;}
.ls104{letter-spacing:-1.349333pt;}
.ls159{letter-spacing:-1.343467pt;}
.ls17c{letter-spacing:-1.337600pt;}
.ls134{letter-spacing:-1.331733pt;}
.ls153{letter-spacing:-1.308267pt;}
.ls15a{letter-spacing:-1.302400pt;}
.lsee{letter-spacing:-1.278933pt;}
.ls1a1{letter-spacing:-1.273067pt;}
.ls132{letter-spacing:-1.255467pt;}
.ls52{letter-spacing:-1.249600pt;}
.ls47{letter-spacing:-1.237867pt;}
.ls15{letter-spacing:-1.226133pt;}
.lsca{letter-spacing:-1.220267pt;}
.ls73{letter-spacing:-1.214400pt;}
.lsc9{letter-spacing:-1.196800pt;}
.lsc8{letter-spacing:-1.179200pt;}
.ls107{letter-spacing:-1.167467pt;}
.ls142{letter-spacing:-1.161600pt;}
.ls42{letter-spacing:-1.120533pt;}
.ls19c{letter-spacing:-1.114667pt;}
.ls8d{letter-spacing:-1.102933pt;}
.ls14f{letter-spacing:-1.091200pt;}
.ls50{letter-spacing:-1.085333pt;}
.ls179{letter-spacing:-1.079467pt;}
.lsf3{letter-spacing:-1.073600pt;}
.ls85{letter-spacing:-1.061867pt;}
.ls154{letter-spacing:-1.056000pt;}
.ls18b{letter-spacing:-1.050133pt;}
.ls89{letter-spacing:-1.044267pt;}
.ls59{letter-spacing:-1.038400pt;}
.ls118{letter-spacing:-1.032533pt;}
.ls76{letter-spacing:-1.014933pt;}
.lse0{letter-spacing:-1.003200pt;}
.ls1a3{letter-spacing:-0.997333pt;}
.ls16b{letter-spacing:-0.992000pt;}
.ls5d{letter-spacing:-0.991467pt;}
.lsd7{letter-spacing:-0.979733pt;}
.lsda{letter-spacing:-0.968000pt;}
.ls86{letter-spacing:-0.956267pt;}
.ls168{letter-spacing:-0.944533pt;}
.ls140{letter-spacing:-0.926933pt;}
.ls9f{letter-spacing:-0.897600pt;}
.ls18a{letter-spacing:-0.891733pt;}
.ls5c{letter-spacing:-0.885867pt;}
.ls17d{letter-spacing:-0.880000pt;}
.ls143{letter-spacing:-0.874133pt;}
.ls145{letter-spacing:-0.868267pt;}
.ls10a{letter-spacing:-0.850667pt;}
.lsef{letter-spacing:-0.844800pt;}
.lsd2{letter-spacing:-0.838933pt;}
.ls4c{letter-spacing:-0.833067pt;}
.lsd1{letter-spacing:-0.827200pt;}
.ls5e{letter-spacing:-0.809600pt;}
.ls108{letter-spacing:-0.803733pt;}
.ls5b{letter-spacing:-0.797867pt;}
.lsd6{letter-spacing:-0.792000pt;}
.ls4e{letter-spacing:-0.780267pt;}
.ls128{letter-spacing:-0.768533pt;}
.ls79{letter-spacing:-0.762667pt;}
.lsd0{letter-spacing:-0.750933pt;}
.lsce{letter-spacing:-0.739200pt;}
.ls5f{letter-spacing:-0.733333pt;}
.ls16f{letter-spacing:-0.727467pt;}
.ls57{letter-spacing:-0.721600pt;}
.lscd{letter-spacing:-0.715733pt;}
.ls156{letter-spacing:-0.698133pt;}
.ls189{letter-spacing:-0.692267pt;}
.ls109{letter-spacing:-0.680533pt;}
.ls13{letter-spacing:-0.668800pt;}
.ls1a0{letter-spacing:-0.651200pt;}
.ls9e{letter-spacing:-0.645333pt;}
.lsd9{letter-spacing:-0.639467pt;}
.ls87{letter-spacing:-0.633600pt;}
.lsd3{letter-spacing:-0.621867pt;}
.ls88{letter-spacing:-0.610133pt;}
.ls75{letter-spacing:-0.604267pt;}
.ls77{letter-spacing:-0.598400pt;}
.ls45{letter-spacing:-0.592533pt;}
.ls74{letter-spacing:-0.580800pt;}
.ls151{letter-spacing:-0.569067pt;}
.ls4d{letter-spacing:-0.563200pt;}
.lsac{letter-spacing:-0.560000pt;}
.ls114{letter-spacing:-0.557333pt;}
.ls178{letter-spacing:-0.551467pt;}
.ls196{letter-spacing:-0.539733pt;}
.ls186{letter-spacing:-0.533867pt;}
.lsc0{letter-spacing:-0.533333pt;}
.ls8a{letter-spacing:-0.528000pt;}
.ls115{letter-spacing:-0.522133pt;}
.lscf{letter-spacing:-0.516267pt;}
.ls5a{letter-spacing:-0.510400pt;}
.ls116{letter-spacing:-0.504533pt;}
.ls155{letter-spacing:-0.498667pt;}
.ls146{letter-spacing:-0.492800pt;}
.lsd8{letter-spacing:-0.481067pt;}
.ls14{letter-spacing:-0.475200pt;}
.ls9d{letter-spacing:-0.469333pt;}
.lsf2{letter-spacing:-0.463467pt;}
.ls117{letter-spacing:-0.457600pt;}
.ls188{letter-spacing:-0.454895pt;}
.lsed{letter-spacing:-0.451733pt;}
.ls197{letter-spacing:-0.440000pt;}
.ls7b{letter-spacing:-0.422400pt;}
.ls133{letter-spacing:-0.416533pt;}
.ls169{letter-spacing:-0.410667pt;}
.lsf4{letter-spacing:-0.398933pt;}
.ls19{letter-spacing:-0.393067pt;}
.ls54{letter-spacing:-0.387200pt;}
.ls17{letter-spacing:-0.375467pt;}
.ls10b{letter-spacing:-0.369600pt;}
.ls48{letter-spacing:-0.363733pt;}
.ls105{letter-spacing:-0.357867pt;}
.ls3e{letter-spacing:-0.352000pt;}
.ls16{letter-spacing:-0.346133pt;}
.ls135{letter-spacing:-0.340267pt;}
.ls8b{letter-spacing:-0.334400pt;}
.ls51{letter-spacing:-0.328533pt;}
.ls18{letter-spacing:-0.322667pt;}
.ls41{letter-spacing:-0.316800pt;}
.ls44{letter-spacing:-0.310933pt;}
.lsde{letter-spacing:-0.304000pt;}
.ls46{letter-spacing:-0.299200pt;}
.ls40{letter-spacing:-0.293333pt;}
.ls53{letter-spacing:-0.287467pt;}
.ls106{letter-spacing:-0.275733pt;}
.ls7c{letter-spacing:-0.269867pt;}
.lsdb{letter-spacing:-0.258400pt;}
.ls131{letter-spacing:-0.258133pt;}
.ls127{letter-spacing:-0.252267pt;}
.lscc{letter-spacing:-0.240533pt;}
.ls113{letter-spacing:-0.234667pt;}
.ls72{letter-spacing:-0.228800pt;}
.ls158{letter-spacing:-0.222933pt;}
.ls157{letter-spacing:-0.217067pt;}
.ls4b{letter-spacing:-0.211200pt;}
.ls4f{letter-spacing:-0.205333pt;}
.ls195{letter-spacing:-0.199467pt;}
.ls194{letter-spacing:-0.193600pt;}
.ls4a{letter-spacing:-0.187733pt;}
.ls119{letter-spacing:-0.181867pt;}
.ls130{letter-spacing:-0.164267pt;}
.lse9{letter-spacing:-0.163285pt;}
.ls144{letter-spacing:-0.158400pt;}
.ls8e{letter-spacing:-0.152533pt;}
.lse1{letter-spacing:-0.152000pt;}
.ls60{letter-spacing:-0.140800pt;}
.lsf1{letter-spacing:-0.134933pt;}
.ls11b{letter-spacing:-0.134400pt;}
.lsfb{letter-spacing:-0.129067pt;}
.lsf0{letter-spacing:-0.123200pt;}
.ls78{letter-spacing:-0.117333pt;}
.ls11f{letter-spacing:-0.114688pt;}
.ls129{letter-spacing:-0.111467pt;}
.ls1a4{letter-spacing:-0.099733pt;}
.ls187{letter-spacing:-0.093867pt;}
.ls58{letter-spacing:-0.088000pt;}
.ls120{letter-spacing:-0.087927pt;}
.ls56{letter-spacing:-0.082133pt;}
.lse3{letter-spacing:-0.076000pt;}
.ls136{letter-spacing:-0.070400pt;}
.ls150{letter-spacing:-0.064533pt;}
.lsea{letter-spacing:-0.060649pt;}
.ls8f{letter-spacing:-0.058667pt;}
.lsa3{letter-spacing:-0.055467pt;}
.ls9c{letter-spacing:-0.051200pt;}
.ls12a{letter-spacing:-0.046933pt;}
.ls11a{letter-spacing:-0.044800pt;}
.lsc1{letter-spacing:-0.042667pt;}
.ls1a5{letter-spacing:-0.041067pt;}
.ls26{letter-spacing:-0.038400pt;}
.lsaf{letter-spacing:-0.037333pt;}
.ls7a{letter-spacing:-0.035200pt;}
.lsa2{letter-spacing:-0.029867pt;}
.lscb{letter-spacing:-0.029333pt;}
.lsaa{letter-spacing:-0.028800pt;}
.ls6{letter-spacing:-0.025600pt;}
.ls49{letter-spacing:-0.023467pt;}
.lsa1{letter-spacing:-0.021333pt;}
.lsdf{letter-spacing:-0.021280pt;}
.ls8{letter-spacing:-0.019200pt;}
.ls55{letter-spacing:-0.017600pt;}
.ls90{letter-spacing:-0.017067pt;}
.ls1f{letter-spacing:-0.016000pt;}
.lsb0{letter-spacing:-0.014933pt;}
.lsa4{letter-spacing:-0.014400pt;}
.lseb{letter-spacing:-0.013996pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls5{letter-spacing:-0.011733pt;}
.lsad{letter-spacing:-0.011200pt;}
.ls1c{letter-spacing:-0.010667pt;}
.lsa5{letter-spacing:-0.009600pt;}
.ls91{letter-spacing:-0.008533pt;}
.ls84{letter-spacing:-0.008363pt;}
.ls177{letter-spacing:-0.006933pt;}
.ls27{letter-spacing:-0.006400pt;}
.ls43{letter-spacing:-0.005867pt;}
.ls1a{letter-spacing:-0.005333pt;}
.lsf5{letter-spacing:-0.004800pt;}
.ls162{letter-spacing:-0.004723pt;}
.ls9b{letter-spacing:-0.004181pt;}
.lsae{letter-spacing:-0.003733pt;}
.ls15b{letter-spacing:-0.002563pt;}
.ls99{letter-spacing:-0.002534pt;}
.ls9a{letter-spacing:-0.001267pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15f{letter-spacing:0.002362pt;}
.lsa7{letter-spacing:0.003733pt;}
.ls160{letter-spacing:0.004235pt;}
.lse5{letter-spacing:0.004665pt;}
.ls15d{letter-spacing:0.004723pt;}
.lsbf{letter-spacing:0.004800pt;}
.ls10{letter-spacing:0.005333pt;}
.lsf{letter-spacing:0.005867pt;}
.ls2{letter-spacing:0.006400pt;}
.lse6{letter-spacing:0.006998pt;}
.lsa9{letter-spacing:0.007467pt;}
.ls81{letter-spacing:0.008533pt;}
.ls15c{letter-spacing:0.009446pt;}
.ls82{letter-spacing:0.009600pt;}
.ls11{letter-spacing:0.010667pt;}
.lsa8{letter-spacing:0.011200pt;}
.lsd{letter-spacing:0.011733pt;}
.ls22{letter-spacing:0.012800pt;}
.lsdc{letter-spacing:0.014400pt;}
.ls11c{letter-spacing:0.015292pt;}
.ls20{letter-spacing:0.016000pt;}
.ls167{letter-spacing:0.017067pt;}
.ls2d{letter-spacing:0.017600pt;}
.lse4{letter-spacing:0.018661pt;}
.lsa6{letter-spacing:0.018667pt;}
.ls23{letter-spacing:0.019200pt;}
.lsa0{letter-spacing:0.021333pt;}
.ls0{letter-spacing:0.023467pt;}
.ls170{letter-spacing:0.024000pt;}
.ls98{letter-spacing:0.025600pt;}
.ls11d{letter-spacing:0.026761pt;}
.ls137{letter-spacing:0.028800pt;}
.ls31{letter-spacing:0.029333pt;}
.ls13f{letter-spacing:0.029867pt;}
.ls24{letter-spacing:0.032000pt;}
.lsab{letter-spacing:0.033600pt;}
.ls15e{letter-spacing:0.042346pt;}
.ls4{letter-spacing:0.044800pt;}
.ls14e{letter-spacing:0.046933pt;}
.ls83{letter-spacing:0.051200pt;}
.ls28{letter-spacing:0.058667pt;}
.ls6b{letter-spacing:0.064533pt;}
.ls37{letter-spacing:0.070400pt;}
.ls161{letter-spacing:0.076222pt;}
.ls10d{letter-spacing:0.076267pt;}
.ls11e{letter-spacing:0.080282pt;}
.ls7e{letter-spacing:0.082133pt;}
.ls36{letter-spacing:0.093867pt;}
.ls164{letter-spacing:0.105600pt;}
.ls13e{letter-spacing:0.117333pt;}
.ls3a{letter-spacing:0.123200pt;}
.ls29{letter-spacing:0.129067pt;}
.ls64{letter-spacing:0.134933pt;}
.ls63{letter-spacing:0.146667pt;}
.ls32{letter-spacing:0.152533pt;}
.lsfa{letter-spacing:0.158400pt;}
.ls3b{letter-spacing:0.170133pt;}
.ls33{letter-spacing:0.176000pt;}
.ls38{letter-spacing:0.181867pt;}
.ls139{letter-spacing:0.187733pt;}
.lse7{letter-spacing:0.193600pt;}
.ls66{letter-spacing:0.199467pt;}
.ls30{letter-spacing:0.211200pt;}
.ls148{letter-spacing:0.234667pt;}
.ls190{letter-spacing:0.240533pt;}
.ls101{letter-spacing:0.246400pt;}
.ls19a{letter-spacing:0.252267pt;}
.ls95{letter-spacing:0.258133pt;}
.ls199{letter-spacing:0.264000pt;}
.ls192{letter-spacing:0.269867pt;}
.ls16d{letter-spacing:0.287467pt;}
.ls111{letter-spacing:0.299200pt;}
.lsf9{letter-spacing:0.322667pt;}
.ls171{letter-spacing:0.328533pt;}
.lsc4{letter-spacing:0.334400pt;}
.lse8{letter-spacing:0.340267pt;}
.ls141{letter-spacing:0.352000pt;}
.ls103{letter-spacing:0.357867pt;}
.ls100{letter-spacing:0.363733pt;}
.lsfe{letter-spacing:0.369600pt;}
.ls97{letter-spacing:0.375467pt;}
.ls2e{letter-spacing:0.381333pt;}
.lsc6{letter-spacing:0.387200pt;}
.ls176{letter-spacing:0.393067pt;}
.ls12d{letter-spacing:0.416533pt;}
.ls70{letter-spacing:0.428267pt;}
.ls18f{letter-spacing:0.434133pt;}
.ls13c{letter-spacing:0.445867pt;}
.ls7f{letter-spacing:0.451733pt;}
.ls6e{letter-spacing:0.457600pt;}
.ls67{letter-spacing:0.463467pt;}
.ls181{letter-spacing:0.469333pt;}
.ls39{letter-spacing:0.475200pt;}
.ls2a{letter-spacing:0.481067pt;}
.ls123{letter-spacing:0.486933pt;}
.ls65{letter-spacing:0.504533pt;}
.lsd5{letter-spacing:0.506667pt;}
.ls12b{letter-spacing:0.510400pt;}
.ls121{letter-spacing:0.516267pt;}
.lsdd{letter-spacing:0.516800pt;}
.ls16e{letter-spacing:0.528000pt;}
.lse{letter-spacing:0.533867pt;}
.lsfd{letter-spacing:0.539733pt;}
.ls3d{letter-spacing:0.545600pt;}
.ls2f{letter-spacing:0.574933pt;}
.ls13d{letter-spacing:0.580800pt;}
.lsc3{letter-spacing:0.592533pt;}
.ls16c{letter-spacing:0.598400pt;}
.ls6c{letter-spacing:0.604267pt;}
.ls13a{letter-spacing:0.616000pt;}
.lsb1{letter-spacing:0.621867pt;}
.ls14d{letter-spacing:0.633600pt;}
.ls14b{letter-spacing:0.651200pt;}
.ls10e{letter-spacing:0.657067pt;}
.ls2c{letter-spacing:0.662933pt;}
.ls62{letter-spacing:0.680533pt;}
.lsd4{letter-spacing:0.686400pt;}
.ls165{letter-spacing:0.698133pt;}
.ls112{letter-spacing:0.727467pt;}
.lse2{letter-spacing:0.729600pt;}
.ls17a{letter-spacing:0.733333pt;}
.ls35{letter-spacing:0.739200pt;}
.ls14a{letter-spacing:0.750933pt;}
.ls69{letter-spacing:0.786133pt;}
.ls71{letter-spacing:0.792000pt;}
.ls68{letter-spacing:0.803733pt;}
.lsff{letter-spacing:0.827200pt;}
.lsb5{letter-spacing:0.833067pt;}
.ls110{letter-spacing:0.844800pt;}
.ls125{letter-spacing:0.862400pt;}
.ls12f{letter-spacing:0.868267pt;}
.lsf7{letter-spacing:0.874133pt;}
.ls166{letter-spacing:0.880000pt;}
.ls13b{letter-spacing:0.891733pt;}
.ls172{letter-spacing:0.897600pt;}
.ls1{letter-spacing:0.902400pt;}
.lsbc{letter-spacing:0.915200pt;}
.lsb2{letter-spacing:0.926933pt;}
.ls16a{letter-spacing:0.938667pt;}
.ls6f{letter-spacing:0.944533pt;}
.ls61{letter-spacing:0.956267pt;}
.ls102{letter-spacing:0.962133pt;}
.ls174{letter-spacing:0.973867pt;}
.ls122{letter-spacing:0.979733pt;}
.ls34{letter-spacing:0.991467pt;}
.lsc5{letter-spacing:1.003200pt;}
.ls10f{letter-spacing:1.038400pt;}
.ls173{letter-spacing:1.050133pt;}
.ls182{letter-spacing:1.056000pt;}
.ls12{letter-spacing:1.066667pt;}
.ls175{letter-spacing:1.073600pt;}
.ls138{letter-spacing:1.085333pt;}
.ls6d{letter-spacing:1.091200pt;}
.ls3c{letter-spacing:1.097067pt;}
.ls1a2{letter-spacing:1.114667pt;}
.ls12c{letter-spacing:1.120533pt;}
.ls6a{letter-spacing:1.138133pt;}
.lsf8{letter-spacing:1.179200pt;}
.ls80{letter-spacing:1.226133pt;}
.ls2b{letter-spacing:1.232000pt;}
.ls191{letter-spacing:1.243733pt;}
.lsc7{letter-spacing:1.249600pt;}
.lsb6{letter-spacing:1.273067pt;}
.ls9{letter-spacing:1.280000pt;}
.ls124{letter-spacing:1.284800pt;}
.lsb3{letter-spacing:1.308267pt;}
.ls19b{letter-spacing:1.314133pt;}
.ls18e{letter-spacing:1.343467pt;}
.ls149{letter-spacing:1.361067pt;}
.ls12e{letter-spacing:1.366933pt;}
.ls126{letter-spacing:1.378667pt;}
.ls163{letter-spacing:1.408000pt;}
.ls184{letter-spacing:1.413867pt;}
.ls19e{letter-spacing:1.420800pt;}
.ls19d{letter-spacing:1.440000pt;}
.ls19f{letter-spacing:1.459200pt;}
.ls14c{letter-spacing:1.466667pt;}
.ls21{letter-spacing:1.493333pt;}
.ls96{letter-spacing:1.501867pt;}
.lsc{letter-spacing:1.546667pt;}
.lsb4{letter-spacing:1.572267pt;}
.ls198{letter-spacing:1.666133pt;}
.lsfc{letter-spacing:1.706667pt;}
.lsba{letter-spacing:1.742400pt;}
.ls92{letter-spacing:1.795200pt;}
.lsb{letter-spacing:1.813333pt;}
.ls10c{letter-spacing:1.871467pt;}
.ls25{letter-spacing:1.920000pt;}
.ls183{letter-spacing:1.977067pt;}
.lsbd{letter-spacing:1.982933pt;}
.ls93{letter-spacing:2.047467pt;}
.lsf6{letter-spacing:2.299733pt;}
.ls94{letter-spacing:2.358400pt;}
.lsa{letter-spacing:2.428800pt;}
.lsb7{letter-spacing:3.684267pt;}
.ls18d{letter-spacing:3.988800pt;}
.ls18c{letter-spacing:11.404800pt;}
.ls147{letter-spacing:20.039137pt;}
.lsb8{letter-spacing:22.385067pt;}
.lsb9{letter-spacing:35.414400pt;}
.lsbe{letter-spacing:43.597867pt;}
.ls7d{letter-spacing:2766.518933pt;}
.wsa9{word-spacing:-51.243733pt;}
.ws1c7{word-spacing:-41.932800pt;}
.wsa8{word-spacing:-38.214400pt;}
.ws169{word-spacing:-24.776533pt;}
.ws28{word-spacing:-22.272000pt;}
.ws7b{word-spacing:-17.288533pt;}
.ws98{word-spacing:-17.245867pt;}
.ws92{word-spacing:-17.237333pt;}
.ws85{word-spacing:-17.186133pt;}
.wsc{word-spacing:-16.394667pt;}
.ws121{word-spacing:-15.874133pt;}
.ws120{word-spacing:-15.694933pt;}
.ws154{word-spacing:-15.112533pt;}
.ws1c8{word-spacing:-14.164800pt;}
.ws136{word-spacing:-13.893632pt;}
.ws11e{word-spacing:-13.534400pt;}
.ws198{word-spacing:-13.376000pt;}
.ws187{word-spacing:-13.329067pt;}
.ws32{word-spacing:-13.100267pt;}
.ws1{word-spacing:-12.908800pt;}
.ws0{word-spacing:-12.902400pt;}
.ws13f{word-spacing:-12.806933pt;}
.wse3{word-spacing:-12.771733pt;}
.ws34{word-spacing:-12.560533pt;}
.ws164{word-spacing:-12.513600pt;}
.ws1e{word-spacing:-12.512000pt;}
.ws35{word-spacing:-12.466667pt;}
.ws197{word-spacing:-12.460800pt;}
.ws31{word-spacing:-12.437333pt;}
.ws194{word-spacing:-12.431467pt;}
.ws195{word-spacing:-12.419733pt;}
.ws11f{word-spacing:-12.413867pt;}
.ws65{word-spacing:-12.402133pt;}
.ws1e4{word-spacing:-12.396267pt;}
.ws1e1{word-spacing:-12.255467pt;}
.ws33{word-spacing:-12.249600pt;}
.ws13{word-spacing:-12.091200pt;}
.ws196{word-spacing:-12.026667pt;}
.ws12{word-spacing:-11.962133pt;}
.ws166{word-spacing:-11.918285pt;}
.wsec{word-spacing:-11.856533pt;}
.wse4{word-spacing:-11.850667pt;}
.ws165{word-spacing:-11.844800pt;}
.ws111{word-spacing:-11.756800pt;}
.ws1e0{word-spacing:-11.635200pt;}
.ws1de{word-spacing:-11.616000pt;}
.ws1df{word-spacing:-11.596800pt;}
.wsb6{word-spacing:-11.306667pt;}
.ws153{word-spacing:-11.275733pt;}
.wsee{word-spacing:-10.741333pt;}
.ws152{word-spacing:-10.204800pt;}
.ws86{word-spacing:-10.195200pt;}
.ws7a{word-spacing:-10.185600pt;}
.ws93{word-spacing:-10.176000pt;}
.ws99{word-spacing:-10.161600pt;}
.wsf1{word-spacing:-10.156800pt;}
.ws162{word-spacing:-10.137600pt;}
.ws87{word-spacing:-9.070933pt;}
.ws79{word-spacing:-9.045333pt;}
.ws17f{word-spacing:-8.785053pt;}
.ws131{word-spacing:-8.104619pt;}
.ws9b{word-spacing:-7.914667pt;}
.ws9d{word-spacing:-7.910933pt;}
.ws9e{word-spacing:-7.899733pt;}
.ws9c{word-spacing:-7.877333pt;}
.ws9a{word-spacing:-7.354667pt;}
.ws1b0{word-spacing:-7.250965pt;}
.ws1b1{word-spacing:-6.796070pt;}
.ws19d{word-spacing:-6.793600pt;}
.ws19c{word-spacing:-6.784000pt;}
.wsfb{word-spacing:-6.444800pt;}
.ws1aa{word-spacing:-5.461867pt;}
.ws1ae{word-spacing:-5.227200pt;}
.ws139{word-spacing:-5.088000pt;}
.ws163{word-spacing:-5.076066pt;}
.ws101{word-spacing:-4.963858pt;}
.ws103{word-spacing:-4.952195pt;}
.ws102{word-spacing:-4.949862pt;}
.wsff{word-spacing:-4.945197pt;}
.ws26{word-spacing:-4.928000pt;}
.ws100{word-spacing:-4.884548pt;}
.wsfe{word-spacing:-4.781912pt;}
.ws14c{word-spacing:-4.059733pt;}
.ws1a9{word-spacing:-3.913067pt;}
.ws1af{word-spacing:-3.877867pt;}
.ws1ad{word-spacing:-3.830933pt;}
.ws106{word-spacing:-3.784000pt;}
.ws18a{word-spacing:-3.707733pt;}
.ws1cd{word-spacing:-3.625600pt;}
.ws37{word-spacing:-3.555200pt;}
.ws1b3{word-spacing:-3.508267pt;}
.wsac{word-spacing:-3.502400pt;}
.ws1b2{word-spacing:-3.496533pt;}
.ws80{word-spacing:-3.490667pt;}
.ws16b{word-spacing:-3.449600pt;}
.ws1e9{word-spacing:-3.432000pt;}
.ws114{word-spacing:-3.373333pt;}
.ws1e7{word-spacing:-3.367467pt;}
.ws1ab{word-spacing:-3.349867pt;}
.ws14b{word-spacing:-3.344000pt;}
.ws17b{word-spacing:-3.291200pt;}
.ws18d{word-spacing:-3.250133pt;}
.ws16c{word-spacing:-3.238400pt;}
.ws108{word-spacing:-3.191467pt;}
.ws1ca{word-spacing:-3.138667pt;}
.ws6b{word-spacing:-3.132800pt;}
.ws3a{word-spacing:-3.126933pt;}
.ws3c{word-spacing:-3.121067pt;}
.ws14{word-spacing:-3.115200pt;}
.ws17{word-spacing:-3.109333pt;}
.ws19{word-spacing:-3.103467pt;}
.ws4d{word-spacing:-3.097600pt;}
.ws7f{word-spacing:-3.091733pt;}
.ws7e{word-spacing:-3.085867pt;}
.ws1d3{word-spacing:-3.080000pt;}
.ws17c{word-spacing:-3.033067pt;}
.ws4e{word-spacing:-2.992000pt;}
.ws45{word-spacing:-2.962667pt;}
.ws141{word-spacing:-2.945067pt;}
.ws30{word-spacing:-2.944000pt;}
.ws12d{word-spacing:-2.933333pt;}
.ws15{word-spacing:-2.857067pt;}
.wsf3{word-spacing:-2.786667pt;}
.ws5c{word-spacing:-2.733867pt;}
.ws116{word-spacing:-2.716267pt;}
.ws115{word-spacing:-2.704533pt;}
.ws25{word-spacing:-2.688000pt;}
.ws7d{word-spacing:-2.663467pt;}
.ws105{word-spacing:-2.610667pt;}
.ws174{word-spacing:-2.581333pt;}
.wsb{word-spacing:-2.560000pt;}
.wsf4{word-spacing:-2.528533pt;}
.ws6f{word-spacing:-2.510933pt;}
.ws192{word-spacing:-2.487467pt;}
.ws11d{word-spacing:-2.481600pt;}
.ws1e3{word-spacing:-2.417067pt;}
.wsad{word-spacing:-2.405333pt;}
.ws58{word-spacing:-2.399467pt;}
.ws72{word-spacing:-2.352533pt;}
.wse5{word-spacing:-2.334933pt;}
.ws8e{word-spacing:-2.246933pt;}
.ws27{word-spacing:-2.240000pt;}
.ws126{word-spacing:-2.211733pt;}
.ws1b7{word-spacing:-2.188267pt;}
.ws179{word-spacing:-2.176533pt;}
.ws14f{word-spacing:-2.112000pt;}
.ws60{word-spacing:-2.106133pt;}
.ws147{word-spacing:-1.994667pt;}
.ws11c{word-spacing:-1.971200pt;}
.wsa0{word-spacing:-1.948800pt;}
.ws1b9{word-spacing:-1.941867pt;}
.ws5e{word-spacing:-1.930133pt;}
.ws50{word-spacing:-1.865600pt;}
.ws15f{word-spacing:-1.801067pt;}
.ws1b4{word-spacing:-1.777600pt;}
.wsb4{word-spacing:-1.728000pt;}
.wscd{word-spacing:-1.713067pt;}
.ws8d{word-spacing:-1.707200pt;}
.ws1a7{word-spacing:-1.672000pt;}
.ws14d{word-spacing:-1.630933pt;}
.ws15c{word-spacing:-1.613333pt;}
.ws78{word-spacing:-1.560533pt;}
.ws41{word-spacing:-1.548800pt;}
.ws56{word-spacing:-1.542933pt;}
.ws91{word-spacing:-1.480533pt;}
.ws1d4{word-spacing:-1.443200pt;}
.ws127{word-spacing:-1.425600pt;}
.ws1ac{word-spacing:-1.419733pt;}
.ws13c{word-spacing:-1.413867pt;}
.ws1bd{word-spacing:-1.325867pt;}
.ws148{word-spacing:-1.320000pt;}
.ws1c5{word-spacing:-1.296533pt;}
.ws18b{word-spacing:-1.267200pt;}
.ws18e{word-spacing:-1.220267pt;}
.ws66{word-spacing:-1.202667pt;}
.wse{word-spacing:-1.202133pt;}
.ws143{word-spacing:-1.196800pt;}
.ws5b{word-spacing:-1.126400pt;}
.ws125{word-spacing:-1.050133pt;}
.ws188{word-spacing:-1.003200pt;}
.ws81{word-spacing:-0.909333pt;}
.wsf{word-spacing:-0.906667pt;}
.ws128{word-spacing:-0.903467pt;}
.ws110{word-spacing:-0.853333pt;}
.ws57{word-spacing:-0.850667pt;}
.wsfc{word-spacing:-0.760000pt;}
.ws16a{word-spacing:-0.750933pt;}
.ws70{word-spacing:-0.698133pt;}
.ws140{word-spacing:-0.645333pt;}
.wsd{word-spacing:-0.640000pt;}
.ws4f{word-spacing:-0.639467pt;}
.ws59{word-spacing:-0.616000pt;}
.ws14a{word-spacing:-0.604267pt;}
.ws1b{word-spacing:-0.580800pt;}
.wsf0{word-spacing:-0.557333pt;}
.wsfd{word-spacing:-0.547200pt;}
.ws157{word-spacing:-0.481067pt;}
.ws46{word-spacing:-0.469333pt;}
.ws39{word-spacing:-0.457600pt;}
.ws1d{word-spacing:-0.451733pt;}
.ws1a6{word-spacing:-0.393067pt;}
.wse8{word-spacing:-0.363733pt;}
.ws123{word-spacing:-0.322667pt;}
.ws15e{word-spacing:-0.316800pt;}
.ws23{word-spacing:-0.314667pt;}
.wsab{word-spacing:-0.305067pt;}
.ws38{word-spacing:-0.222933pt;}
.ws1bf{word-spacing:-0.193600pt;}
.ws1a5{word-spacing:-0.164267pt;}
.ws161{word-spacing:-0.140800pt;}
.ws160{word-spacing:-0.123200pt;}
.ws132{word-spacing:-0.118511pt;}
.ws158{word-spacing:-0.117333pt;}
.ws6c{word-spacing:-0.076267pt;}
.ws182{word-spacing:-0.076222pt;}
.ws137{word-spacing:-0.065536pt;}
.ws134{word-spacing:-0.064990pt;}
.ws71{word-spacing:-0.058667pt;}
.ws130{word-spacing:-0.053521pt;}
.wsb5{word-spacing:-0.053333pt;}
.wsef{word-spacing:-0.050667pt;}
.wsb9{word-spacing:-0.048000pt;}
.ws4{word-spacing:-0.044800pt;}
.wsba{word-spacing:-0.042667pt;}
.ws184{word-spacing:-0.042346pt;}
.ws12c{word-spacing:-0.041067pt;}
.ws12f{word-spacing:-0.038229pt;}
.wsbd{word-spacing:-0.037333pt;}
.ws2d{word-spacing:-0.032000pt;}
.wsf7{word-spacing:-0.030400pt;}
.ws1a1{word-spacing:-0.028800pt;}
.ws138{word-spacing:-0.024000pt;}
.ws5{word-spacing:-0.023467pt;}
.ws199{word-spacing:-0.022551pt;}
.ws2c{word-spacing:-0.019200pt;}
.wsa2{word-spacing:-0.018667pt;}
.ws94{word-spacing:-0.017600pt;}
.ws193{word-spacing:-0.017067pt;}
.wsf6{word-spacing:-0.014400pt;}
.ws29{word-spacing:-0.012800pt;}
.ws4a{word-spacing:-0.011733pt;}
.wsa6{word-spacing:-0.011200pt;}
.ws20{word-spacing:-0.010667pt;}
.ws9f{word-spacing:-0.009600pt;}
.ws180{word-spacing:-0.009446pt;}
.ws104{word-spacing:-0.009331pt;}
.wsf9{word-spacing:-0.009120pt;}
.ws84{word-spacing:-0.008533pt;}
.wsa7{word-spacing:-0.007467pt;}
.ws9{word-spacing:-0.006400pt;}
.ws76{word-spacing:-0.005867pt;}
.ws1f{word-spacing:-0.005333pt;}
.wsbf{word-spacing:-0.004800pt;}
.ws181{word-spacing:-0.004723pt;}
.ws186{word-spacing:-0.004235pt;}
.wsa3{word-spacing:-0.003733pt;}
.ws185{word-spacing:-0.002362pt;}
.ws2{word-spacing:0.000000pt;}
.ws17d{word-spacing:0.002563pt;}
.wsa5{word-spacing:0.003733pt;}
.ws88{word-spacing:0.003802pt;}
.ws183{word-spacing:0.004723pt;}
.ws10a{word-spacing:0.004800pt;}
.ws21{word-spacing:0.005333pt;}
.ws43{word-spacing:0.005867pt;}
.ws2f{word-spacing:0.006400pt;}
.ws1a3{word-spacing:0.006933pt;}
.ws83{word-spacing:0.008533pt;}
.ws97{word-spacing:0.009600pt;}
.ws24{word-spacing:0.010667pt;}
.wsa4{word-spacing:0.011200pt;}
.ws6{word-spacing:0.011733pt;}
.ws89{word-spacing:0.012544pt;}
.ws7{word-spacing:0.012800pt;}
.ws96{word-spacing:0.014400pt;}
.ws7c{word-spacing:0.016726pt;}
.ws122{word-spacing:0.017067pt;}
.ws1c6{word-spacing:0.017600pt;}
.ws2a{word-spacing:0.019200pt;}
.ws129{word-spacing:0.023467pt;}
.wsa1{word-spacing:0.028800pt;}
.wse9{word-spacing:0.029333pt;}
.wsa{word-spacing:0.032000pt;}
.ws144{word-spacing:0.035200pt;}
.ws12e{word-spacing:0.037333pt;}
.ws2e{word-spacing:0.038400pt;}
.ws13b{word-spacing:0.041067pt;}
.ws135{word-spacing:0.049698pt;}
.ws1c{word-spacing:0.052800pt;}
.ws133{word-spacing:0.076459pt;}
.wsed{word-spacing:0.207733pt;}
.ws4b{word-spacing:0.258133pt;}
.ws5f{word-spacing:0.269867pt;}
.wsf8{word-spacing:0.273600pt;}
.ws1d6{word-spacing:0.393067pt;}
.ws1c0{word-spacing:0.428267pt;}
.wsb8{word-spacing:0.480000pt;}
.ws52{word-spacing:0.481067pt;}
.wsf2{word-spacing:0.522133pt;}
.ws90{word-spacing:0.539733pt;}
.ws1b6{word-spacing:0.574933pt;}
.ws49{word-spacing:0.621867pt;}
.ws1b8{word-spacing:0.627733pt;}
.ws156{word-spacing:0.674667pt;}
.wsf5{word-spacing:0.756800pt;}
.ws1a8{word-spacing:0.768533pt;}
.ws13a{word-spacing:0.774400pt;}
.ws16f{word-spacing:0.786133pt;}
.ws62{word-spacing:0.797867pt;}
.ws1be{word-spacing:0.926933pt;}
.wsfa{word-spacing:0.972800pt;}
.ws118{word-spacing:0.979733pt;}
.ws1d5{word-spacing:0.985600pt;}
.ws10e{word-spacing:1.038400pt;}
.ws4c{word-spacing:1.085333pt;}
.ws1e2{word-spacing:1.091200pt;}
.ws6e{word-spacing:1.138133pt;}
.ws68{word-spacing:1.144000pt;}
.ws177{word-spacing:1.196800pt;}
.ws3b{word-spacing:1.255467pt;}
.ws1bc{word-spacing:1.278933pt;}
.ws1e8{word-spacing:1.302400pt;}
.ws1e5{word-spacing:1.355200pt;}
.ws63{word-spacing:1.525333pt;}
.ws12a{word-spacing:1.537067pt;}
.ws3f{word-spacing:1.542933pt;}
.ws1db{word-spacing:1.548800pt;}
.ws16e{word-spacing:1.666133pt;}
.ws146{word-spacing:1.689600pt;}
.ws64{word-spacing:1.760000pt;}
.ws112{word-spacing:1.783467pt;}
.ws113{word-spacing:1.795200pt;}
.ws54{word-spacing:1.824533pt;}
.ws18{word-spacing:1.877333pt;}
.ws15d{word-spacing:1.947733pt;}
.ws1d0{word-spacing:1.953600pt;}
.ws1d1{word-spacing:1.959467pt;}
.ws12b{word-spacing:2.000533pt;}
.ws47{word-spacing:2.059200pt;}
.ws142{word-spacing:2.065067pt;}
.ws1a2{word-spacing:2.094400pt;}
.ws10c{word-spacing:2.141333pt;}
.ws11a{word-spacing:2.200000pt;}
.ws11b{word-spacing:2.223467pt;}
.ws77{word-spacing:2.288000pt;}
.ws173{word-spacing:2.293867pt;}
.wse7{word-spacing:2.317333pt;}
.ws1a0{word-spacing:2.336000pt;}
.ws19f{word-spacing:2.352000pt;}
.ws95{word-spacing:2.376000pt;}
.ws55{word-spacing:2.440533pt;}
.ws36{word-spacing:2.522667pt;}
.ws1c1{word-spacing:2.540267pt;}
.ws1bb{word-spacing:2.546133pt;}
.ws82{word-spacing:2.763200pt;}
.ws3d{word-spacing:2.769067pt;}
.ws1d8{word-spacing:2.845333pt;}
.ws191{word-spacing:2.868800pt;}
.ws16{word-spacing:2.904000pt;}
.wsc9{word-spacing:2.921600pt;}
.ws14e{word-spacing:2.956800pt;}
.ws170{word-spacing:2.992000pt;}
.ws75{word-spacing:3.009600pt;}
.ws171{word-spacing:3.021333pt;}
.ws190{word-spacing:3.056533pt;}
.ws18f{word-spacing:3.091733pt;}
.ws10f{word-spacing:3.115200pt;}
.ws17a{word-spacing:3.126933pt;}
.ws1d2{word-spacing:3.138667pt;}
.ws61{word-spacing:3.214933pt;}
.ws175{word-spacing:3.273600pt;}
.ws51{word-spacing:3.291200pt;}
.ws67{word-spacing:3.297067pt;}
.ws1e6{word-spacing:3.408533pt;}
.ws53{word-spacing:3.414400pt;}
.ws74{word-spacing:3.455467pt;}
.ws1a4{word-spacing:3.461333pt;}
.ws73{word-spacing:3.478933pt;}
.ws150{word-spacing:3.496533pt;}
.ws15b{word-spacing:3.504000pt;}
.ws69{word-spacing:3.525867pt;}
.ws5a{word-spacing:3.537600pt;}
.ws6d{word-spacing:3.549333pt;}
.ws6a{word-spacing:3.555200pt;}
.ws109{word-spacing:3.608000pt;}
.ws1c2{word-spacing:3.666667pt;}
.wse2{word-spacing:3.707733pt;}
.ws117{word-spacing:3.713600pt;}
.ws48{word-spacing:3.719467pt;}
.ws1a{word-spacing:3.725333pt;}
.ws22{word-spacing:3.728000pt;}
.ws42{word-spacing:3.731200pt;}
.ws40{word-spacing:3.737067pt;}
.ws3e{word-spacing:3.742933pt;}
.ws5d{word-spacing:3.748800pt;}
.ws155{word-spacing:3.754667pt;}
.ws1cf{word-spacing:3.760533pt;}
.ws1ce{word-spacing:3.766400pt;}
.ws44{word-spacing:3.772267pt;}
.ws172{word-spacing:3.789867pt;}
.wsb1{word-spacing:3.807467pt;}
.ws1cc{word-spacing:3.842667pt;}
.ws8{word-spacing:3.878400pt;}
.ws13d{word-spacing:3.889600pt;}
.wsaf{word-spacing:3.918933pt;}
.ws1d9{word-spacing:3.948267pt;}
.ws1c9{word-spacing:3.977600pt;}
.ws16d{word-spacing:4.024533pt;}
.wsae{word-spacing:4.042133pt;}
.ws119{word-spacing:4.077333pt;}
.ws13e{word-spacing:4.089067pt;}
.wsde{word-spacing:4.094933pt;}
.ws1da{word-spacing:4.112533pt;}
.ws149{word-spacing:4.124267pt;}
.ws189{word-spacing:4.224000pt;}
.ws1c4{word-spacing:4.229867pt;}
.wsdb{word-spacing:4.282667pt;}
.ws19e{word-spacing:4.294400pt;}
.ws145{word-spacing:4.364800pt;}
.wscc{word-spacing:4.376533pt;}
.ws107{word-spacing:4.417600pt;}
.ws176{word-spacing:4.464533pt;}
.ws8f{word-spacing:4.517333pt;}
.ws1ba{word-spacing:4.664000pt;}
.wsb0{word-spacing:4.675733pt;}
.ws1b5{word-spacing:4.752000pt;}
.wsea{word-spacing:4.798933pt;}
.ws178{word-spacing:4.851733pt;}
.ws1d7{word-spacing:4.998400pt;}
.ws2b{word-spacing:5.088000pt;}
.wseb{word-spacing:5.121600pt;}
.wsaa{word-spacing:5.233067pt;}
.ws18c{word-spacing:5.238933pt;}
.ws151{word-spacing:5.244800pt;}
.ws8a{word-spacing:5.291733pt;}
.wse6{word-spacing:5.502933pt;}
.ws124{word-spacing:5.643733pt;}
.ws1cb{word-spacing:5.749333pt;}
.wse1{word-spacing:5.755200pt;}
.wsb2{word-spacing:5.954667pt;}
.ws1c3{word-spacing:5.966400pt;}
.ws8b{word-spacing:6.136533pt;}
.ws3{word-spacing:6.869333pt;}
.ws10d{word-spacing:6.881600pt;}
.wsd8{word-spacing:6.899200pt;}
.wscb{word-spacing:7.010667pt;}
.ws8c{word-spacing:7.069333pt;}
.ws11{word-spacing:7.153333pt;}
.ws10{word-spacing:7.918933pt;}
.ws159{word-spacing:9.161600pt;}
.wsc5{word-spacing:9.374933pt;}
.wsd1{word-spacing:9.726933pt;}
.wsdc{word-spacing:10.548267pt;}
.wsb3{word-spacing:11.041067pt;}
.wsd3{word-spacing:11.240533pt;}
.wsd5{word-spacing:11.680533pt;}
.wsd7{word-spacing:11.838933pt;}
.wsc1{word-spacing:12.554667pt;}
.wsdd{word-spacing:13.158933pt;}
.wse0{word-spacing:14.238400pt;}
.wsc7{word-spacing:14.860267pt;}
.wsca{word-spacing:15.587733pt;}
.wsdf{word-spacing:15.898667pt;}
.wsd0{word-spacing:16.473600pt;}
.wsc0{word-spacing:16.766933pt;}
.wsd9{word-spacing:17.494400pt;}
.wscf{word-spacing:18.216000pt;}
.wsc8{word-spacing:18.661867pt;}
.wsc3{word-spacing:19.301333pt;}
.wsd6{word-spacing:19.377600pt;}
.wsc6{word-spacing:20.064000pt;}
.wsd2{word-spacing:20.680000pt;}
.wsc2{word-spacing:23.466667pt;}
.wsda{word-spacing:27.942933pt;}
.wsd4{word-spacing:28.066133pt;}
.wsce{word-spacing:37.177067pt;}
.wsc4{word-spacing:45.425600pt;}
.ws1dc{word-spacing:130.824000pt;}
.ws1dd{word-spacing:147.624000pt;}
.wsbb{word-spacing:159.477333pt;}
.wsb7{word-spacing:194.346667pt;}
.ws167{word-spacing:227.684224pt;}
.ws19b{word-spacing:231.104000pt;}
.ws168{word-spacing:237.680418pt;}
.wsbc{word-spacing:382.453333pt;}
.wsbe{word-spacing:412.458667pt;}
.ws17e{word-spacing:506.072266pt;}
.ws19a{word-spacing:1819.905615pt;}
.ws10b{word-spacing:3127.900267pt;}
.ws15a{word-spacing:3341.596267pt;}
._28{margin-left:-1042.315258pt;}
._20{margin-left:-731.305966pt;}
._29{margin-left:-508.273976pt;}
._1f{margin-left:-65.884267pt;}
._2c{margin-left:-54.720000pt;}
._1e{margin-left:-40.204267pt;}
._1c{margin-left:-27.303467pt;}
._21{margin-left:-24.009600pt;}
._1{margin-left:-22.190933pt;}
._10{margin-left:-18.807467pt;}
._14{margin-left:-17.476800pt;}
._2a{margin-left:-16.532267pt;}
._a{margin-left:-15.341333pt;}
._1d{margin-left:-14.347733pt;}
._6{margin-left:-13.096533pt;}
._c{margin-left:-11.888000pt;}
._1b{margin-left:-10.819200pt;}
._1a{margin-left:-9.725867pt;}
._9{margin-left:-8.194133pt;}
._8{margin-left:-7.201067pt;}
._7{margin-left:-6.208000pt;}
._5{margin-left:-4.224000pt;}
._4{margin-left:-2.647467pt;}
._0{margin-left:-1.269333pt;}
._3{width:1.079467pt;}
._2{width:2.278400pt;}
._16{width:3.613867pt;}
._13{width:4.748267pt;}
._b{width:6.488533pt;}
._15{width:7.638400pt;}
._22{width:9.184000pt;}
._e{width:12.218667pt;}
._d{width:24.250688pt;}
._11{width:53.120000pt;}
._17{width:64.193467pt;}
._12{width:66.688000pt;}
._f{width:85.952000pt;}
._2f{width:143.544000pt;}
._2d{width:197.683200pt;}
._2e{width:201.235200pt;}
._30{width:207.469867pt;}
._25{width:238.451747pt;}
._26{width:251.663164pt;}
._23{width:276.975468pt;}
._24{width:324.659455pt;}
._18{width:339.570561pt;}
._19{width:424.044012pt;}
._27{width:650.072713pt;}
._2b{width:667.537600pt;}
.fsd{font-size:12.672000pt;}
.fs23{font-size:22.551467pt;}
.fs14{font-size:23.326400pt;}
.fs22{font-size:23.616000pt;}
.fs17{font-size:24.000000pt;}
.fs1c{font-size:24.776533pt;}
.fs1d{font-size:25.630400pt;}
.fs27{font-size:27.984000pt;}
.fs13{font-size:30.400000pt;}
.fs12{font-size:31.093333pt;}
.fs24{font-size:32.000000pt;}
.fs26{font-size:34.202667pt;}
.fse{font-size:37.333333pt;}
.fs15{font-size:38.229333pt;}
.fsa{font-size:41.814400pt;}
.fs1f{font-size:42.345600pt;}
.fsb{font-size:42.666667pt;}
.fs1e{font-size:45.762133pt;}
.fs20{font-size:47.231467pt;}
.fsc{font-size:48.000000pt;}
.fs1b{font-size:49.552533pt;}
.fsf{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs18{font-size:55.234667pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:64.000000pt;}
.fs19{font-size:64.076800pt;}
.fs16{font-size:65.536000pt;}
.fs25{font-size:69.333333pt;}
.fs0{font-size:74.666667pt;}
.fs5{font-size:77.333333pt;}
.fs21{font-size:84.691200pt;}
.fs9{font-size:85.333333pt;}
.fs4{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fs10{font-size:105.267733pt;}
.fs1{font-size:117.333333pt;}
.fs3{font-size:122.666667pt;}
.fs1a{font-size:128.153600pt;}
.fs11{font-size:136.533333pt;}
.fs28{font-size:144.000000pt;}
.y1b5{bottom:-5.057333pt;}
.y1e3{bottom:-4.890667pt;}
.y1c1{bottom:-4.724000pt;}
.y1b9{bottom:-4.390667pt;}
.y1fd{bottom:-3.657333pt;}
.y1f5{bottom:-3.324000pt;}
.y1f1{bottom:-2.990667pt;}
.y1cf{bottom:-2.890667pt;}
.y1f3{bottom:-2.657333pt;}
.y1db{bottom:-2.557333pt;}
.y1e1{bottom:-2.390667pt;}
.y1f7{bottom:-2.324000pt;}
.y1d1{bottom:-2.224000pt;}
.y1c5{bottom:-2.057333pt;}
.y1ed{bottom:-1.990667pt;}
.y1e5{bottom:-1.890667pt;}
.y1c7{bottom:-1.724000pt;}
.y20a{bottom:-1.686667pt;}
.y1aa{bottom:-1.653333pt;}
.y1b2{bottom:-1.486667pt;}
.y1bd{bottom:-1.390667pt;}
.y205{bottom:-1.353333pt;}
.y1d3{bottom:-1.224000pt;}
.y1ae{bottom:-1.153333pt;}
.y1bb{bottom:-1.057333pt;}
.y1a6{bottom:-0.986667pt;}
.y1cb{bottom:-0.724000pt;}
.y203{bottom:-0.686667pt;}
.y1fb{bottom:-0.657333pt;}
.y1d5{bottom:-0.557333pt;}
.y1eb{bottom:-0.405333pt;}
.y1b7{bottom:-0.390667pt;}
.y1f9{bottom:-0.324000pt;}
.y1cd{bottom:-0.224000pt;}
.y1b0{bottom:-0.153333pt;}
.y1e9{bottom:-0.072000pt;}
.y1c3{bottom:-0.057333pt;}
.y201{bottom:-0.020000pt;}
.yd9{bottom:-0.001333pt;}
.yd4{bottom:-0.000667pt;}
.y0{bottom:0.000000pt;}
.y1ef{bottom:0.009333pt;}
.y1a8{bottom:0.013333pt;}
.y2de{bottom:0.026667pt;}
.y1e7{bottom:0.082667pt;}
.y1ac{bottom:0.084000pt;}
.ye2{bottom:0.102667pt;}
.yec{bottom:0.102800pt;}
.y1d7{bottom:0.109333pt;}
.y1dd{bottom:0.129333pt;}
.ydb{bottom:0.132000pt;}
.y184{bottom:0.138667pt;}
.y18b{bottom:0.140000pt;}
.y18e{bottom:0.182667pt;}
.y1bf{bottom:0.276000pt;}
.y191{bottom:0.289333pt;}
.yff{bottom:0.524000pt;}
.y1ff{bottom:0.646667pt;}
.y1c9{bottom:1.276000pt;}
.y208{bottom:1.313333pt;}
.y1d9{bottom:1.442667pt;}
.y1df{bottom:1.588000pt;}
.y100{bottom:1.848000pt;}
.yf9{bottom:1.950667pt;}
.yf6{bottom:1.950800pt;}
.yfe{bottom:2.372000pt;}
.ye4{bottom:2.508000pt;}
.y181{bottom:2.798933pt;}
.yfc{bottom:11.621333pt;}
.yfd{bottom:13.572000pt;}
.yf0{bottom:16.440000pt;}
.yef{bottom:16.572000pt;}
.yfb{bottom:22.821333pt;}
.yfa{bottom:24.772000pt;}
.yee{bottom:30.840000pt;}
.yed{bottom:30.972000pt;}
.yf8{bottom:34.021333pt;}
.yf7{bottom:35.972000pt;}
.yf5{bottom:45.221333pt;}
.yf4{bottom:47.172133pt;}
.y231{bottom:47.618667pt;}
.y2e4{bottom:56.618667pt;}
.y36{bottom:57.021733pt;}
.y61{bottom:57.050667pt;}
.y31f{bottom:57.133733pt;}
.y372{bottom:60.403467pt;}
.y2e3{bottom:62.737333pt;}
.y27a{bottom:70.447200pt;}
.y133{bottom:71.018533pt;}
.ya7{bottom:71.346667pt;}
.y2af{bottom:71.458000pt;}
.y22a{bottom:72.176000pt;}
.y23c{bottom:73.045333pt;}
.y153{bottom:73.348000pt;}
.y2b8{bottom:73.703867pt;}
.y2b6{bottom:73.704000pt;}
.y1f{bottom:74.654533pt;}
.y31e{bottom:74.733733pt;}
.yeb{bottom:74.762667pt;}
.y247{bottom:74.792933pt;}
.yea{bottom:74.865467pt;}
.y35{bottom:75.021733pt;}
.y5f{bottom:75.138667pt;}
.y388{bottom:77.667200pt;}
.y4b{bottom:77.938667pt;}
.y371{bottom:78.003467pt;}
.yf3{bottom:80.465333pt;}
.y270{bottom:81.089333pt;}
.y362{bottom:81.184000pt;}
.ya3{bottom:81.445333pt;}
.y132{bottom:85.418533pt;}
.y170{bottom:85.428800pt;}
.ye8{bottom:85.933333pt;}
.ye9{bottom:86.065333pt;}
.y22b{bottom:86.548000pt;}
.y279{bottom:88.047200pt;}
.y2f7{bottom:88.686667pt;}
.y2ae{bottom:89.058000pt;}
.y246{bottom:89.192933pt;}
.y3c1{bottom:89.738667pt;}
.y23b{bottom:90.645333pt;}
.y152{bottom:90.948000pt;}
.y387{bottom:92.067200pt;}
.y31d{bottom:92.333733pt;}
.y1e{bottom:92.650533pt;}
.y34{bottom:93.021733pt;}
.y12b{bottom:93.221333pt;}
.y5e{bottom:93.538667pt;}
.ya2{bottom:95.845333pt;}
.y4a{bottom:96.338667pt;}
.y26f{bottom:98.689333pt;}
.y361{bottom:98.784000pt;}
.y16f{bottom:103.028800pt;}
.y278{bottom:105.647200pt;}
.y2f6{bottom:106.286667pt;}
.y2ad{bottom:106.658000pt;}
.y84{bottom:107.338533pt;}
.y3c0{bottom:107.338667pt;}
.y12a{bottom:107.621333pt;}
.y23a{bottom:108.245333pt;}
.y151{bottom:108.548000pt;}
.y31c{bottom:109.933733pt;}
.y1d{bottom:110.646533pt;}
.y33{bottom:111.021733pt;}
.y5d{bottom:112.738667pt;}
.y22f{bottom:115.080000pt;}
.y2c7{bottom:115.423867pt;}
.y290{bottom:115.478257pt;}
.y49{bottom:115.538667pt;}
.y26e{bottom:116.289333pt;}
.y360{bottom:116.384000pt;}
.y16e{bottom:120.628800pt;}
.y2c1{bottom:122.036267pt;}
.y277{bottom:123.247200pt;}
.y2f5{bottom:123.886667pt;}
.y2ac{bottom:124.258000pt;}
.y83{bottom:124.938533pt;}
.y3bf{bottom:124.938667pt;}
.y239{bottom:125.845333pt;}
.y150{bottom:126.148000pt;}
.y28f{bottom:126.401333pt;}
.y31b{bottom:127.533733pt;}
.y1c{bottom:128.642533pt;}
.y1de{bottom:129.314667pt;}
.y1d8{bottom:129.460000pt;}
.y1c8{bottom:129.626667pt;}
.y2c6{bottom:129.823867pt;}
.y1be{bottom:130.626667pt;}
.y1dc{bottom:130.773333pt;}
.y1d6{bottom:130.793333pt;}
.y1c2{bottom:130.960000pt;}
.y1cc{bottom:131.126667pt;}
.y1b6{bottom:131.293333pt;}
.ye7{bottom:131.456000pt;}
.y1d4{bottom:131.460000pt;}
.ye6{bottom:131.558667pt;}
.y1ca{bottom:131.626667pt;}
.y3e9{bottom:131.847600pt;}
.y5c{bottom:131.938667pt;}
.y1ba{bottom:131.960000pt;}
.y1d2{bottom:132.126667pt;}
.y1bc{bottom:132.293333pt;}
.y1c6{bottom:132.626667pt;}
.y1e4{bottom:132.793333pt;}
.y1c4{bottom:132.960000pt;}
.y1d0{bottom:133.126667pt;}
.y1e0{bottom:133.293333pt;}
.y1da{bottom:133.460000pt;}
.y1ce{bottom:133.793333pt;}
.y26d{bottom:133.889333pt;}
.y35f{bottom:133.984000pt;}
.y48{bottom:134.738667pt;}
.y229{bottom:135.008400pt;}
.y1b8{bottom:135.293333pt;}
.y1c0{bottom:135.626667pt;}
.y1e2{bottom:135.793333pt;}
.y1b4{bottom:135.960000pt;}
.y2c0{bottom:136.436267pt;}
.y206{bottom:136.518667pt;}
.y207{bottom:136.793333pt;}
.yf2{bottom:137.026667pt;}
.y1fe{bottom:137.460000pt;}
.y200{bottom:138.126667pt;}
.y16d{bottom:138.228800pt;}
.y202{bottom:138.793333pt;}
.y3e8{bottom:139.047600pt;}
.y204{bottom:139.460000pt;}
.yc5{bottom:139.763867pt;}
.y209{bottom:139.793333pt;}
.ye3{bottom:140.250667pt;}
.y276{bottom:140.847200pt;}
.y2f4{bottom:141.486667pt;}
.y2ab{bottom:141.858000pt;}
.y3a2{bottom:141.858133pt;}
.y32d{bottom:141.858667pt;}
.y82{bottom:142.538533pt;}
.y3be{bottom:142.538667pt;}
.ye5{bottom:142.758667pt;}
.y238{bottom:143.445333pt;}
.y1e6{bottom:143.472000pt;}
.y1e8{bottom:143.626667pt;}
.y14f{bottom:143.748000pt;}
.y1ea{bottom:143.960000pt;}
.y31a{bottom:145.133733pt;}
.y3ea{bottom:146.247600pt;}
.y32{bottom:147.021733pt;}
.y5b{bottom:151.138667pt;}
.y26c{bottom:151.489333pt;}
.y35e{bottom:151.584000pt;}
.y29c{bottom:152.604000pt;}
.y228{bottom:152.606933pt;}
.y129{bottom:152.785333pt;}
.y47{bottom:153.938667pt;}
.y2c5{bottom:154.163467pt;}
.yc4{bottom:154.163867pt;}
.y16c{bottom:155.828800pt;}
.y3e6{bottom:156.863333pt;}
.y275{bottom:158.447200pt;}
.y2f3{bottom:159.086667pt;}
.y2aa{bottom:159.458000pt;}
.y3a1{bottom:159.458133pt;}
.y32c{bottom:159.458667pt;}
.y2bf{bottom:159.832667pt;}
.y81{bottom:160.138533pt;}
.y3bd{bottom:160.138667pt;}
.y237{bottom:161.045333pt;}
.y14e{bottom:161.348000pt;}
.y319{bottom:162.733733pt;}
.y347{bottom:163.129333pt;}
.y1b{bottom:164.649200pt;}
.y31{bottom:165.021733pt;}
.y2c4{bottom:168.563467pt;}
.yc3{bottom:168.563867pt;}
.y26b{bottom:169.089333pt;}
.y35d{bottom:169.184000pt;}
.y3e7{bottom:169.284000pt;}
.y29b{bottom:170.204000pt;}
.y227{bottom:170.205467pt;}
.y5a{bottom:170.338667pt;}
.y128{bottom:170.385333pt;}
.y46{bottom:173.138667pt;}
.y16b{bottom:173.428800pt;}
.y289{bottom:173.844000pt;}
.y2be{bottom:174.232667pt;}
.y3e5{bottom:174.463333pt;}
.y274{bottom:176.047200pt;}
.y2f2{bottom:176.686667pt;}
.y2a9{bottom:177.058000pt;}
.y3a0{bottom:177.058133pt;}
.y32b{bottom:177.058667pt;}
.y80{bottom:177.738533pt;}
.y3bc{bottom:177.738667pt;}
.y236{bottom:178.645333pt;}
.y14d{bottom:178.948000pt;}
.y139{bottom:179.556000pt;}
.y318{bottom:180.333733pt;}
.y1b3{bottom:182.218667pt;}
.y1ee{bottom:182.293333pt;}
.y1f8{bottom:182.626667pt;}
.y1a{bottom:182.645200pt;}
.y1fa{bottom:182.960000pt;}
.y1ec{bottom:184.293333pt;}
.y3a7{bottom:184.400000pt;}
.y1f6{bottom:184.626667pt;}
.y1f2{bottom:184.960000pt;}
.y1f0{bottom:185.293333pt;}
.y1f4{bottom:185.626667pt;}
.y1fc{bottom:185.960000pt;}
.y26a{bottom:186.689333pt;}
.y35c{bottom:186.784000pt;}
.y226{bottom:187.804000pt;}
.y127{bottom:187.985333pt;}
.y288{bottom:188.244000pt;}
.y20f{bottom:188.758800pt;}
.y59{bottom:189.538667pt;}
.y13c{bottom:189.550667pt;}
.y18a{bottom:190.778667pt;}
.y189{bottom:190.918667pt;}
.y195{bottom:191.005333pt;}
.y16a{bottom:191.028800pt;}
.y384{bottom:191.425600pt;}
.y19d{bottom:191.958533pt;}
.y3e4{bottom:192.063333pt;}
.y45{bottom:192.338667pt;}
.y294{bottom:193.369333pt;}
.y273{bottom:193.647200pt;}
.yf1{bottom:193.850667pt;}
.y2f1{bottom:194.286667pt;}
.y2a8{bottom:194.658000pt;}
.y39f{bottom:194.658133pt;}
.y32a{bottom:194.658667pt;}
.ye1{bottom:194.748000pt;}
.ye0{bottom:194.850667pt;}
.y7f{bottom:195.338533pt;}
.y3bb{bottom:195.338667pt;}
.y235{bottom:196.245333pt;}
.y14c{bottom:196.548000pt;}
.y317{bottom:197.933733pt;}
.y3a6{bottom:198.800000pt;}
.y30{bottom:201.020400pt;}
.y2fb{bottom:204.016000pt;}
.y269{bottom:204.289333pt;}
.y35b{bottom:204.384000pt;}
.y225{bottom:205.402533pt;}
.y29a{bottom:205.404000pt;}
.y194{bottom:205.405333pt;}
.y126{bottom:205.585333pt;}
.y22e{bottom:205.804000pt;}
.y19c{bottom:206.358533pt;}
.y20e{bottom:206.359200pt;}
.y13b{bottom:206.674667pt;}
.y169{bottom:208.628800pt;}
.y58{bottom:208.738667pt;}
.y3e3{bottom:209.663333pt;}
.y13a{bottom:209.674667pt;}
.y3f5{bottom:210.493333pt;}
.y3f6{bottom:210.520000pt;}
.y272{bottom:211.247200pt;}
.y44{bottom:211.538667pt;}
.y2f0{bottom:211.886667pt;}
.y2a7{bottom:212.258000pt;}
.y39e{bottom:212.258133pt;}
.y329{bottom:212.258667pt;}
.y7e{bottom:212.938533pt;}
.y3ba{bottom:212.938667pt;}
.y234{bottom:213.845333pt;}
.y14b{bottom:214.148000pt;}
.y316{bottom:215.533733pt;}
.y287{bottom:215.609067pt;}
.y292{bottom:215.750667pt;}
.y1ab{bottom:216.389333pt;}
.y1a7{bottom:216.460000pt;}
.y1af{bottom:216.626667pt;}
.y1a5{bottom:217.460000pt;}
.y1ad{bottom:217.626667pt;}
.y1b1{bottom:217.960000pt;}
.y1a9{bottom:218.126667pt;}
.y2fa{bottom:218.416000pt;}
.y19{bottom:218.651867pt;}
.y2f{bottom:219.020400pt;}
.y9a{bottom:220.270667pt;}
.y18d{bottom:221.526667pt;}
.y18c{bottom:221.709333pt;}
.y268{bottom:221.889333pt;}
.y35a{bottom:221.984000pt;}
.y224{bottom:223.004000pt;}
.y125{bottom:223.185333pt;}
.y3f3{bottom:224.893333pt;}
.y3f4{bottom:224.920000pt;}
.y168{bottom:226.228800pt;}
.y3fd{bottom:227.262000pt;}
.y3e2{bottom:227.263333pt;}
.y57{bottom:227.938667pt;}
.y271{bottom:228.847200pt;}
.y11a{bottom:229.144133pt;}
.y2ef{bottom:229.486667pt;}
.y2a6{bottom:229.858000pt;}
.y39d{bottom:229.858133pt;}
.y328{bottom:229.858667pt;}
.y286{bottom:230.009067pt;}
.y2b7{bottom:230.170667pt;}
.y2b9{bottom:230.212000pt;}
.y7d{bottom:230.538533pt;}
.y3b9{bottom:230.538667pt;}
.y43{bottom:230.738667pt;}
.y233{bottom:231.445333pt;}
.y14a{bottom:231.748000pt;}
.y2f9{bottom:232.816000pt;}
.y315{bottom:233.133733pt;}
.y18{bottom:236.647867pt;}
.y2e{bottom:237.020400pt;}
.y99{bottom:237.870667pt;}
.y3f1{bottom:239.293333pt;}
.y3f2{bottom:239.320000pt;}
.y267{bottom:239.489333pt;}
.y359{bottom:239.584000pt;}
.y119{bottom:240.344133pt;}
.y223{bottom:240.604000pt;}
.y124{bottom:240.785333pt;}
.y167{bottom:243.828800pt;}
.y285{bottom:244.409067pt;}
.y3fc{bottom:244.862000pt;}
.y3e1{bottom:244.863333pt;}
.yc{bottom:246.773333pt;}
.y2ee{bottom:247.086667pt;}
.y2a5{bottom:247.458000pt;}
.y39c{bottom:247.458133pt;}
.y327{bottom:247.458667pt;}
.y7c{bottom:248.138533pt;}
.y3b8{bottom:248.138667pt;}
.y13f{bottom:248.952000pt;}
.y149{bottom:249.348000pt;}
.y199{bottom:249.811333pt;}
.y42{bottom:249.938667pt;}
.ydf{bottom:250.544000pt;}
.y314{bottom:250.733733pt;}
.y402{bottom:251.123200pt;}
.y118{bottom:251.544133pt;}
.y370{bottom:251.834267pt;}
.y13e{bottom:253.178667pt;}
.y17{bottom:254.643867pt;}
.y2d{bottom:255.020400pt;}
.y295{bottom:255.425333pt;}
.y98{bottom:255.470667pt;}
.y266{bottom:257.089333pt;}
.y358{bottom:257.184000pt;}
.y222{bottom:258.204000pt;}
.y123{bottom:258.385333pt;}
.y284{bottom:258.809067pt;}
.y166{bottom:261.428800pt;}
.y3fb{bottom:262.462000pt;}
.y3e0{bottom:262.463333pt;}
.y117{bottom:262.744133pt;}
.y198{bottom:264.211333pt;}
.y2ed{bottom:264.686667pt;}
.y2a4{bottom:265.058000pt;}
.y39b{bottom:265.058133pt;}
.y326{bottom:265.058667pt;}
.y7b{bottom:265.738533pt;}
.y3b7{bottom:265.738667pt;}
.yb{bottom:265.973333pt;}
.y56{bottom:266.338667pt;}
.y148{bottom:266.948000pt;}
.yaf{bottom:267.546667pt;}
.y135{bottom:268.250667pt;}
.y2fe{bottom:268.267600pt;}
.y313{bottom:268.333733pt;}
.y401{bottom:268.723200pt;}
.y41{bottom:269.138667pt;}
.y13d{bottom:269.178667pt;}
.y36f{bottom:269.434267pt;}
.y16{bottom:272.639867pt;}
.y97{bottom:273.070667pt;}
.y283{bottom:273.209067pt;}
.y116{bottom:273.944133pt;}
.y265{bottom:274.689333pt;}
.y357{bottom:274.784000pt;}
.y221{bottom:275.804000pt;}
.y383{bottom:275.868000pt;}
.y122{bottom:275.985333pt;}
.y37a{bottom:277.289333pt;}
.y165{bottom:279.028800pt;}
.y3fa{bottom:280.062000pt;}
.y3df{bottom:280.063333pt;}
.y137{bottom:280.890667pt;}
.y2ec{bottom:282.286667pt;}
.y291{bottom:282.601333pt;}
.y2a3{bottom:282.658000pt;}
.y39a{bottom:282.658133pt;}
.y325{bottom:282.658667pt;}
.y2fd{bottom:282.667600pt;}
.y7a{bottom:283.338533pt;}
.y3b6{bottom:283.338667pt;}
.y134{bottom:284.250667pt;}
.y147{bottom:284.548000pt;}
.ya{bottom:285.173333pt;}
.y55{bottom:285.538667pt;}
.y312{bottom:285.933733pt;}
.y400{bottom:286.323200pt;}
.y188{bottom:287.824000pt;}
.y187{bottom:287.962667pt;}
.y40{bottom:288.338667pt;}
.y27d{bottom:290.563200pt;}
.y15{bottom:290.635867pt;}
.y96{bottom:290.670667pt;}
.y2c{bottom:291.020400pt;}
.yae{bottom:291.173333pt;}
.y264{bottom:292.289333pt;}
.y356{bottom:292.384000pt;}
.y220{bottom:293.404000pt;}
.y121{bottom:293.585333pt;}
.y138{bottom:296.250667pt;}
.y164{bottom:296.628800pt;}
.y136{bottom:296.890667pt;}
.y2fc{bottom:297.067600pt;}
.y3f9{bottom:297.662000pt;}
.y3de{bottom:297.663333pt;}
.y2eb{bottom:299.886667pt;}
.y2a2{bottom:300.258000pt;}
.y399{bottom:300.258133pt;}
.y324{bottom:300.258667pt;}
.y79{bottom:300.938533pt;}
.y3b5{bottom:300.938667pt;}
.y146{bottom:302.148000pt;}
.y115{bottom:302.637600pt;}
.y311{bottom:303.533733pt;}
.y3ff{bottom:303.923200pt;}
.y9{bottom:304.373333pt;}
.y54{bottom:304.738667pt;}
.yde{bottom:307.105333pt;}
.y3f{bottom:307.538667pt;}
.y95{bottom:308.270667pt;}
.y14{bottom:308.631867pt;}
.y263{bottom:309.889333pt;}
.y355{bottom:309.984000pt;}
.y22d{bottom:310.936000pt;}
.y21f{bottom:311.004000pt;}
.y120{bottom:311.185333pt;}
.y27b{bottom:311.309333pt;}
.y27c{bottom:312.963200pt;}
.y114{bottom:313.837600pt;}
.y163{bottom:314.228800pt;}
.y2dd{bottom:314.356267pt;}
.ycc{bottom:315.058133pt;}
.y330{bottom:315.058667pt;}
.y3f8{bottom:315.262000pt;}
.y3dd{bottom:315.263333pt;}
.yad{bottom:316.688000pt;}
.y2ea{bottom:317.486667pt;}
.y2a1{bottom:317.858000pt;}
.y398{bottom:317.858133pt;}
.y323{bottom:317.858667pt;}
.y78{bottom:318.538533pt;}
.y3b4{bottom:318.538667pt;}
.y2c3{bottom:319.518667pt;}
.y145{bottom:319.748000pt;}
.y2bd{bottom:320.462267pt;}
.y310{bottom:321.133733pt;}
.y3fe{bottom:321.523200pt;}
.y8{bottom:323.573333pt;}
.y53{bottom:323.938667pt;}
.y293{bottom:324.600000pt;}
.y94{bottom:325.870667pt;}
.y13{bottom:326.627867pt;}
.y3e{bottom:326.738667pt;}
.y262{bottom:327.489333pt;}
.y354{bottom:327.584000pt;}
.y21e{bottom:328.604000pt;}
.y11f{bottom:328.785333pt;}
.ycb{bottom:329.458133pt;}
.y32f{bottom:329.458667pt;}
.y162{bottom:331.828800pt;}
.y2dc{bottom:331.956267pt;}
.y3f7{bottom:332.862000pt;}
.y3dc{bottom:332.863333pt;}
.y2c2{bottom:333.918667pt;}
.y2bc{bottom:334.862267pt;}
.y2e9{bottom:335.086667pt;}
.y2a0{bottom:335.458000pt;}
.y397{bottom:335.458133pt;}
.y322{bottom:335.458667pt;}
.y77{bottom:336.138533pt;}
.y3b3{bottom:336.138667pt;}
.y144{bottom:337.348000pt;}
.y30f{bottom:338.733733pt;}
.yac{bottom:341.253333pt;}
.y52{bottom:343.138667pt;}
.ya1{bottom:343.252267pt;}
.y93{bottom:343.470667pt;}
.yca{bottom:343.858133pt;}
.y32e{bottom:343.858667pt;}
.y12{bottom:344.623867pt;}
.y261{bottom:345.089333pt;}
.y353{bottom:345.184000pt;}
.y3d{bottom:345.938667pt;}
.y21d{bottom:346.204000pt;}
.y11e{bottom:346.385333pt;}
.ybd{bottom:348.809333pt;}
.y2db{bottom:349.556267pt;}
.y2e8{bottom:352.686667pt;}
.y29f{bottom:353.058000pt;}
.y396{bottom:353.058133pt;}
.y321{bottom:353.058667pt;}
.y379{bottom:353.253333pt;}
.y76{bottom:353.738533pt;}
.y3b2{bottom:353.738667pt;}
.y143{bottom:354.948000pt;}
.y30e{bottom:356.333733pt;}
.y300{bottom:358.258000pt;}
.yc9{bottom:358.258133pt;}
.yb7{bottom:358.258667pt;}
.y376{bottom:358.258933pt;}
.y92{bottom:361.070667pt;}
.y2b{bottom:361.420400pt;}
.y7{bottom:361.973333pt;}
.y11{bottom:362.619867pt;}
.y260{bottom:362.689333pt;}
.ybc{bottom:363.209333pt;}
.y21c{bottom:363.804000pt;}
.ydd{bottom:363.929333pt;}
.y11d{bottom:363.985333pt;}
.y113{bottom:364.929200pt;}
.yab{bottom:365.818667pt;}
.y161{bottom:367.028800pt;}
.y2da{bottom:367.156267pt;}
.y2e7{bottom:370.286667pt;}
.y29e{bottom:370.658000pt;}
.y395{bottom:370.658133pt;}
.y320{bottom:370.658667pt;}
.y75{bottom:371.338533pt;}
.y3b1{bottom:371.338667pt;}
.y142{bottom:372.548000pt;}
.y2ff{bottom:372.658000pt;}
.yc8{bottom:372.658133pt;}
.yb6{bottom:372.658667pt;}
.y375{bottom:372.658933pt;}
.y30d{bottom:373.933733pt;}
.y91{bottom:378.670667pt;}
.y2a{bottom:379.020400pt;}
.y25f{bottom:380.289333pt;}
.ya0{bottom:381.048533pt;}
.y6{bottom:381.173333pt;}
.y21b{bottom:381.404000pt;}
.y11c{bottom:381.585333pt;}
.y367{bottom:383.731867pt;}
.y2d9{bottom:384.756267pt;}
.ybb{bottom:386.604533pt;}
.y3c{bottom:387.538667pt;}
.y74{bottom:388.938533pt;}
.y3b0{bottom:388.938667pt;}
.yaa{bottom:390.864000pt;}
.y30c{bottom:391.533733pt;}
.y90{bottom:396.270667pt;}
.y29{bottom:396.620400pt;}
.y25e{bottom:397.889333pt;}
.y366{bottom:398.131867pt;}
.y21a{bottom:399.004000pt;}
.y11b{bottom:399.185333pt;}
.y230{bottom:401.004267pt;}
.yba{bottom:401.004533pt;}
.y2d8{bottom:402.356267pt;}
.y3ef{bottom:402.529333pt;}
.y3f0{bottom:402.556000pt;}
.y112{bottom:404.822667pt;}
.y73{bottom:406.538533pt;}
.y3af{bottom:406.538667pt;}
.y30b{bottom:409.133733pt;}
.y2e5{bottom:410.004000pt;}
.y190{bottom:410.657333pt;}
.y18f{bottom:410.946667pt;}
.y186{bottom:412.281333pt;}
.y185{bottom:412.420000pt;}
.y365{bottom:412.446667pt;}
.y217{bottom:412.513333pt;}
.y332{bottom:413.286667pt;}
.y8f{bottom:413.870667pt;}
.y339{bottom:414.641367pt;}
.ya6{bottom:415.449333pt;}
.y25d{bottom:415.489333pt;}
.y111{bottom:416.022667pt;}
.ya9{bottom:416.848000pt;}
.y9f{bottom:418.844800pt;}
.y2d7{bottom:419.956267pt;}
.y386{bottom:420.620000pt;}
.ydc{bottom:420.622667pt;}
.y3db{bottom:420.724000pt;}
.y244{bottom:424.060000pt;}
.y72{bottom:424.138533pt;}
.y3ae{bottom:424.138667pt;}
.y1a4{bottom:424.400000pt;}
.y141{bottom:424.404000pt;}
.y131{bottom:424.585333pt;}
.y5{bottom:425.497333pt;}
.y30a{bottom:426.733733pt;}
.y364{bottom:426.846667pt;}
.y338{bottom:427.162961pt;}
.y110{bottom:427.222667pt;}
.y219{bottom:428.637124pt;}
.y3cd{bottom:431.329333pt;}
.y8e{bottom:431.470667pt;}
.y28{bottom:432.619067pt;}
.y36e{bottom:433.077600pt;}
.y25c{bottom:433.089333pt;}
.y385{bottom:435.020000pt;}
.y216{bottom:435.634667pt;}
.y218{bottom:435.635627pt;}
.y2d6{bottom:437.556267pt;}
.y3da{bottom:438.324000pt;}
.y10f{bottom:438.422667pt;}
.y243{bottom:438.460000pt;}
.y17e{bottom:438.761467pt;}
.y1a3{bottom:438.800000pt;}
.y140{bottom:438.804000pt;}
.y130{bottom:438.985333pt;}
.y3a3{bottom:439.142667pt;}
.y71{bottom:441.738533pt;}
.y3ad{bottom:441.738667pt;}
.y309{bottom:444.333733pt;}
.y20d{bottom:444.432000pt;}
.y160{bottom:444.812000pt;}
.y3cc{bottom:445.729333pt;}
.y8d{bottom:449.070667pt;}
.y36d{bottom:450.677600pt;}
.y25b{bottom:450.689333pt;}
.y12f{bottom:450.964000pt;}
.y51{bottom:451.938667pt;}
.yb2{bottom:454.085333pt;}
.y3b{bottom:454.738667pt;}
.y2d5{bottom:455.156267pt;}
.y10e{bottom:455.916133pt;}
.y3d9{bottom:455.924000pt;}
.y17d{bottom:456.361467pt;}
.y9e{bottom:456.638933pt;}
.y394{bottom:456.742667pt;}
.y20c{bottom:458.832000pt;}
.y70{bottom:459.338533pt;}
.y3ac{bottom:459.338667pt;}
.y348{bottom:460.449333pt;}
.y4{bottom:460.697333pt;}
.y252{bottom:460.850667pt;}
.y308{bottom:461.933733pt;}
.y337{bottom:462.077967pt;}
.y2b1{bottom:462.194667pt;}
.y15f{bottom:462.412000pt;}
.y22c{bottom:465.256000pt;}
.y232{bottom:466.650267pt;}
.y8c{bottom:466.670667pt;}
.y10d{bottom:467.116133pt;}
.y242{bottom:467.260000pt;}
.y36c{bottom:468.277600pt;}
.y25a{bottom:468.289333pt;}
.y50{bottom:471.138667pt;}
.y2d4{bottom:472.756267pt;}
.y3d8{bottom:473.524000pt;}
.y17c{bottom:473.961467pt;}
.y393{bottom:474.342667pt;}
.y2b0{bottom:476.594667pt;}
.y6f{bottom:476.938533pt;}
.y3ab{bottom:476.938667pt;}
.yda{bottom:477.184000pt;}
.y10c{bottom:478.316133pt;}
.y251{bottom:478.450667pt;}
.y307{bottom:479.533733pt;}
.y15e{bottom:480.012000pt;}
.y241{bottom:481.660000pt;}
.y331{bottom:482.169333pt;}
.y8b{bottom:484.270667pt;}
.y259{bottom:485.889333pt;}
.y302{bottom:487.217333pt;}
.y2b5{bottom:487.461867pt;}
.y10b{bottom:489.516133pt;}
.y4f{bottom:490.338667pt;}
.y2d3{bottom:490.356267pt;}
.y3d7{bottom:491.124000pt;}
.y17b{bottom:491.561467pt;}
.y392{bottom:491.942667pt;}
.y352{bottom:492.173333pt;}
.y12e{bottom:492.562400pt;}
.yb1{bottom:492.848000pt;}
.y3a{bottom:493.138667pt;}
.y9d{bottom:494.435200pt;}
.y6e{bottom:494.538533pt;}
.y3aa{bottom:494.538667pt;}
.y345{bottom:495.261514pt;}
.y3{bottom:495.897333pt;}
.y250{bottom:496.050667pt;}
.y336{bottom:496.890284pt;}
.y306{bottom:497.133733pt;}
.y15d{bottom:497.612000pt;}
.y10a{bottom:500.716133pt;}
.y8a{bottom:501.870667pt;}
.y258{bottom:503.489333pt;}
.y301{bottom:506.417333pt;}
.y3d6{bottom:508.724000pt;}
.y17a{bottom:509.161467pt;}
.y344{bottom:509.309333pt;}
.y214{bottom:509.373330pt;}
.y4e{bottom:509.538667pt;}
.y391{bottom:509.542667pt;}
.y351{bottom:509.773333pt;}
.y240{bottom:510.460000pt;}
.y6d{bottom:512.138533pt;}
.y3a9{bottom:512.138667pt;}
.y24f{bottom:513.650667pt;}
.y305{bottom:514.733733pt;}
.y15c{bottom:515.212000pt;}
.y215{bottom:516.301271pt;}
.y213{bottom:516.370667pt;}
.y37b{bottom:518.632000pt;}
.y29d{bottom:519.004000pt;}
.y89{bottom:519.470667pt;}
.y257{bottom:521.089333pt;}
.y2b2{bottom:523.367067pt;}
.y109{bottom:523.807733pt;}
.y23f{bottom:524.860000pt;}
.y3d5{bottom:526.324000pt;}
.y179{bottom:526.761467pt;}
.y390{bottom:527.142667pt;}
.y350{bottom:527.373333pt;}
.y343{bottom:527.734667pt;}
.y4d{bottom:528.738667pt;}
.y6c{bottom:529.738533pt;}
.y3a8{bottom:529.738667pt;}
.yb0{bottom:530.970667pt;}
.y3c7{bottom:531.473333pt;}
.y39{bottom:531.538667pt;}
.y335{bottom:531.805290pt;}
.y296{bottom:532.181333pt;}
.y9c{bottom:532.230400pt;}
.y2e6{bottom:532.333333pt;}
.y304{bottom:532.333733pt;}
.y15b{bottom:532.812000pt;}
.yd7{bottom:534.008000pt;}
.yd8{bottom:534.009333pt;}
.y108{bottom:535.007733pt;}
.y88{bottom:537.070667pt;}
.y256{bottom:538.689333pt;}
.y24e{bottom:540.733733pt;}
.y2f8{bottom:543.690667pt;}
.y12d{bottom:543.763200pt;}
.y3d4{bottom:543.924000pt;}
.y178{bottom:544.361467pt;}
.y38f{bottom:544.742667pt;}
.y34f{bottom:544.973333pt;}
.y2b4{bottom:546.044667pt;}
.y107{bottom:546.207733pt;}
.y37e{bottom:546.222400pt;}
.y27{bottom:546.336400pt;}
.y6b{bottom:547.338533pt;}
.y3c6{bottom:549.869333pt;}
.y303{bottom:549.933733pt;}
.y15a{bottom:550.412000pt;}
.y23e{bottom:553.660000pt;}
.y87{bottom:554.670667pt;}
.y24d{bottom:555.133733pt;}
.y28e{bottom:558.284933pt;}
.y3d3{bottom:561.524000pt;}
.y177{bottom:561.961467pt;}
.y38e{bottom:562.342667pt;}
.yf{bottom:562.433333pt;}
.y34e{bottom:562.573333pt;}
.y26{bottom:563.936400pt;}
.y6a{bottom:564.938533pt;}
.y334{bottom:566.618667pt;}
.y37d{bottom:566.658400pt;}
.y2d2{bottom:567.533733pt;}
.ya8{bottom:567.845333pt;}
.y159{bottom:568.012000pt;}
.y23d{bottom:568.060000pt;}
.y183{bottom:568.369333pt;}
.y182{bottom:568.508000pt;}
.y9b{bottom:570.026667pt;}
.y86{bottom:572.270667pt;}
.y12c{bottom:572.564000pt;}
.y346{bottom:573.133333pt;}
.y38{bottom:573.138667pt;}
.y2b3{bottom:573.445467pt;}
.y3c5{bottom:574.673333pt;}
.y28d{bottom:575.885333pt;}
.y176{bottom:579.561467pt;}
.y38d{bottom:579.942667pt;}
.y34d{bottom:580.173333pt;}
.y106{bottom:580.501200pt;}
.y69{bottom:582.538533pt;}
.y24c{bottom:583.933733pt;}
.y2d1{bottom:585.133733pt;}
.y158{bottom:585.612000pt;}
.y28a{bottom:585.626667pt;}
.y36b{bottom:588.365333pt;}
.ye{bottom:589.633333pt;}
.y211{bottom:589.730663pt;}
.y3ed{bottom:589.742667pt;}
.y3ee{bottom:589.769333pt;}
.y85{bottom:589.870667pt;}
.yd6{bottom:590.701333pt;}
.y105{bottom:591.701200pt;}
.y19b{bottom:592.589333pt;}
.y380{bottom:592.700800pt;}
.y3c4{bottom:593.069333pt;}
.y349{bottom:593.186667pt;}
.y382{bottom:593.882400pt;}
.y210{bottom:596.728000pt;}
.y175{bottom:597.161467pt;}
.y333{bottom:597.513333pt;}
.y38c{bottom:597.542667pt;}
.y34c{bottom:597.773333pt;}
.y24b{bottom:598.333733pt;}
.y25{bottom:599.935067pt;}
.y68{bottom:600.138533pt;}
.y255{bottom:601.014667pt;}
.y2d0{bottom:602.733733pt;}
.y104{bottom:602.901200pt;}
.y157{bottom:603.212000pt;}
.y381{bottom:603.482400pt;}
.y3eb{bottom:604.142667pt;}
.y3ec{bottom:604.169333pt;}
.y37c{bottom:604.426400pt;}
.y36a{bottom:605.965333pt;}
.y19a{bottom:606.989333pt;}
.y3c9{bottom:612.733733pt;}
.y174{bottom:614.761467pt;}
.y4c{bottom:615.138667pt;}
.y38b{bottom:615.142667pt;}
.y34b{bottom:615.373333pt;}
.y254{bottom:615.414667pt;}
.y67{bottom:617.738533pt;}
.y37{bottom:617.938667pt;}
.y299{bottom:618.706667pt;}
.y2cf{bottom:620.333733pt;}
.y156{bottom:620.812000pt;}
.y212{bottom:620.835834pt;}
.y193{bottom:622.845333pt;}
.y192{bottom:623.134667pt;}
.y2{bottom:623.230667pt;}
.yc2{bottom:623.542667pt;}
.y369{bottom:623.565333pt;}
.y24a{bottom:627.133733pt;}
.y297{bottom:627.842933pt;}
.y378{bottom:630.778667pt;}
.y3c3{bottom:632.273333pt;}
.y173{bottom:632.361467pt;}
.y38a{bottom:632.742667pt;}
.y34a{bottom:632.973333pt;}
.y298{bottom:633.106667pt;}
.y3ce{bottom:633.626667pt;}
.y66{bottom:635.338533pt;}
.y24{bottom:635.935067pt;}
.y3d0{bottom:636.053333pt;}
.y103{bottom:637.194667pt;}
.y28c{bottom:637.649333pt;}
.y2ce{bottom:637.933733pt;}
.yc1{bottom:637.942667pt;}
.y37f{bottom:638.252800pt;}
.y155{bottom:638.412000pt;}
.y368{bottom:641.165333pt;}
.y249{bottom:641.533733pt;}
.y1{bottom:645.630667pt;}
.yd{bottom:645.633333pt;}
.y3c2{bottom:646.673333pt;}
.yd5{bottom:647.394667pt;}
.y102{bottom:648.394667pt;}
.y172{bottom:649.961467pt;}
.y389{bottom:650.342667pt;}
.y3cf{bottom:650.453333pt;}
.yc0{bottom:652.342667pt;}
.y65{bottom:652.938533pt;}
.y23{bottom:653.581733pt;}
.y28b{bottom:655.249733pt;}
.y2cd{bottom:655.533733pt;}
.y3c8{bottom:655.933733pt;}
.y101{bottom:659.594667pt;}
.y1a2{bottom:662.933733pt;}
.yb5{bottom:665.626800pt;}
.ya5{bottom:666.533867pt;}
.y282{bottom:669.152667pt;}
.y33c{bottom:669.224957pt;}
.y248{bottom:670.333733pt;}
.y64{bottom:670.538533pt;}
.y342{bottom:670.649648pt;}
.y22{bottom:671.935067pt;}
.y2cc{bottom:673.133733pt;}
.y245{bottom:674.133733pt;}
.y3cb{bottom:675.632000pt;}
.ybf{bottom:675.738533pt;}
.y253{bottom:676.133733pt;}
.y3d2{bottom:677.444000pt;}
.y2e1{bottom:678.107067pt;}
.y2e2{bottom:678.133733pt;}
.y1a1{bottom:678.933733pt;}
.yb4{bottom:681.626667pt;}
.ya4{bottom:682.533733pt;}
.yd1{bottom:682.687333pt;}
.y33b{bottom:683.272776pt;}
.y281{bottom:683.552667pt;}
.y19e{bottom:684.091600pt;}
.y154{bottom:684.133733pt;}
.y341{bottom:684.697467pt;}
.yc7{bottom:684.733733pt;}
.y171{bottom:685.161467pt;}
.y363{bottom:688.026667pt;}
.y63{bottom:688.138533pt;}
.y33f{bottom:688.158776pt;}
.y3ca{bottom:690.032000pt;}
.ybe{bottom:690.138533pt;}
.y2cb{bottom:690.733733pt;}
.yd0{bottom:693.887333pt;}
.y1a0{bottom:694.933733pt;}
.y33a{bottom:697.217867pt;}
.y280{bottom:697.952667pt;}
.yc6{bottom:699.133733pt;}
.y33e{bottom:702.103867pt;}
.y340{bottom:703.121867pt;}
.yd2{bottom:704.087333pt;}
.yd3{bottom:704.088000pt;}
.ycf{bottom:705.087333pt;}
.y377{bottom:706.743067pt;}
.y21{bottom:707.933733pt;}
.y2ca{bottom:708.333733pt;}
.y20b{bottom:710.333333pt;}
.y27f{bottom:712.352667pt;}
.y197{bottom:712.580533pt;}
.y374{bottom:712.885333pt;}
.y2bb{bottom:713.533600pt;}
.yb9{bottom:713.533733pt;}
.y2c9{bottom:713.533867pt;}
.y3a5{bottom:713.534267pt;}
.yb3{bottom:713.626667pt;}
.y180{bottom:714.664000pt;}
.yce{bottom:716.287333pt;}
.y17f{bottom:717.462933pt;}
.y60{bottom:718.933733pt;}
.y3d1{bottom:719.044000pt;}
.y33d{bottom:720.528267pt;}
.y62{bottom:720.933733pt;}
.y10{bottom:722.433733pt;}
.y2df{bottom:722.907067pt;}
.y2e0{bottom:722.933733pt;}
.y20{bottom:725.933733pt;}
.y27e{bottom:726.752667pt;}
.y19f{bottom:726.933733pt;}
.y196{bottom:726.980533pt;}
.y373{bottom:727.285333pt;}
.ycd{bottom:727.487333pt;}
.y2ba{bottom:727.933600pt;}
.yb8{bottom:727.933733pt;}
.y2c8{bottom:727.933867pt;}
.y3a4{bottom:727.934267pt;}
.h34{height:0.070667pt;}
.h36{height:0.237333pt;}
.h33{height:0.333333pt;}
.h40{height:0.666667pt;}
.h59{height:0.821333pt;}
.h3a{height:1.000000pt;}
.h43{height:1.333333pt;}
.h58{height:1.488000pt;}
.h4e{height:1.666667pt;}
.h57{height:1.821333pt;}
.h4f{height:1.853333pt;}
.h52{height:2.000000pt;}
.h5f{height:2.072000pt;}
.h55{height:2.186667pt;}
.h4d{height:2.333333pt;}
.h5d{height:2.405333pt;}
.h61{height:2.408000pt;}
.h45{height:2.505333pt;}
.h54{height:2.520000pt;}
.h3c{height:2.666667pt;}
.h5e{height:2.738667pt;}
.h4b{height:3.000000pt;}
.h60{height:3.072000pt;}
.h46{height:3.172000pt;}
.h42{height:3.333333pt;}
.h5b{height:3.405333pt;}
.h3f{height:3.666667pt;}
.h35{height:4.000000pt;}
.h47{height:4.172000pt;}
.h4a{height:4.186667pt;}
.h32{height:4.333333pt;}
.h30{height:4.409333pt;}
.h3d{height:4.666667pt;}
.h66{height:4.709333pt;}
.h63{height:4.738667pt;}
.h62{height:4.741333pt;}
.h48{height:4.838667pt;}
.h4c{height:4.978667pt;}
.h39{height:5.000000pt;}
.h44{height:5.172000pt;}
.h38{height:5.206667pt;}
.h3e{height:5.333333pt;}
.h65{height:5.376000pt;}
.h5c{height:5.405333pt;}
.h56{height:5.478667pt;}
.h5a{height:5.480000pt;}
.h49{height:5.505333pt;}
.h53{height:5.645333pt;}
.h3b{height:5.666667pt;}
.h67{height:6.000000pt;}
.h64{height:6.042667pt;}
.h41{height:6.333333pt;}
.h50{height:6.666667pt;}
.h69{height:6.709333pt;}
.h19{height:6.729333pt;}
.h51{height:6.838667pt;}
.h68{height:6.984000pt;}
.h16{height:7.798667pt;}
.h18{height:7.800000pt;}
.h17{height:8.064000pt;}
.h1c{height:8.352000pt;}
.h1f{height:8.474667pt;}
.h1e{height:8.577333pt;}
.h1d{height:8.680000pt;}
.h1b{height:8.784000pt;}
.h29{height:9.132000pt;}
.h2a{height:9.133333pt;}
.h27{height:9.272000pt;}
.h1a{height:10.654667pt;}
.h26{height:11.792000pt;}
.h13{height:13.216500pt;}
.h7a{height:16.259607pt;}
.h6c{height:16.818334pt;}
.h79{height:16.956288pt;}
.h2c{height:18.105333pt;}
.h2e{height:18.316000pt;}
.h73{height:18.402627pt;}
.h6f{height:20.112000pt;}
.h31{height:21.918400pt;}
.h7f{height:24.240000pt;}
.h37{height:25.475200pt;}
.h7b{height:26.816000pt;}
.h75{height:30.404141pt;}
.h22{height:30.762667pt;}
.h15{height:31.285333pt;}
.h6d{height:32.036181pt;}
.h74{height:32.857212pt;}
.h76{height:33.912193pt;}
.h11{height:35.754667pt;}
.h25{height:36.530667pt;}
.h21{height:38.453333pt;}
.h71{height:39.658491pt;}
.h12{height:40.224000pt;}
.hb{height:41.653333pt;}
.ha{height:42.298667pt;}
.h28{height:42.458667pt;}
.h14{height:43.611112pt;}
.he{height:44.693333pt;}
.h4{height:46.144000pt;}
.h6b{height:49.162133pt;}
.h9{height:49.162667pt;}
.h7d{height:49.163200pt;}
.h6a{height:49.164267pt;}
.h23{height:49.226667pt;}
.h5{height:53.632000pt;}
.h2{height:53.834667pt;}
.h6e{height:54.919168pt;}
.h7c{height:58.101333pt;}
.h77{height:60.808282pt;}
.hf{height:61.525333pt;}
.hc{height:62.570667pt;}
.h20{height:62.810667pt;}
.h8{height:64.805333pt;}
.h7e{height:65.181867pt;}
.h81{height:69.024000pt;}
.h2b{height:75.898036pt;}
.h7{height:75.978667pt;}
.hd{height:80.448000pt;}
.h3{height:84.597333pt;}
.h24{height:85.546667pt;}
.h2d{height:88.214361pt;}
.h6{height:88.442667pt;}
.h72{height:92.014285pt;}
.h2f{height:95.573333pt;}
.h10{height:100.795112pt;}
.h80{height:120.672000pt;}
.h78{height:326.929333pt;}
.h1{height:793.333333pt;}
.h70{height:793.600000pt;}
.h0{height:793.626667pt;}
.w23{width:0.333333pt;}
.w24{width:0.666667pt;}
.w18{width:0.857333pt;}
.w2b{width:1.000000pt;}
.w1d{width:1.065333pt;}
.w1c{width:1.333333pt;}
.w30{width:1.666667pt;}
.w42{width:2.000000pt;}
.w43{width:2.220000pt;}
.w46{width:2.333333pt;}
.w2a{width:2.502667pt;}
.w45{width:2.553333pt;}
.w4{width:2.604000pt;}
.w51{width:2.666667pt;}
.w4b{width:3.000000pt;}
.w47{width:3.220000pt;}
.w4c{width:3.333333pt;}
.w50{width:3.358667pt;}
.w4d{width:3.553333pt;}
.w32{width:3.666667pt;}
.w4f{width:3.692000pt;}
.w48{width:3.836000pt;}
.w44{width:3.886667pt;}
.w39{width:4.000000pt;}
.w3a{width:4.333333pt;}
.w59{width:4.666667pt;}
.w5{width:4.872000pt;}
.w40{width:5.000000pt;}
.w3{width:5.304000pt;}
.w5a{width:5.333333pt;}
.w52{width:5.666667pt;}
.w6{width:5.712000pt;}
.w2c{width:6.000000pt;}
.w61{width:6.300000pt;}
.w49{width:6.333333pt;}
.w41{width:6.666667pt;}
.w3d{width:7.000000pt;}
.w2{width:7.176000pt;}
.w3e{width:7.333333pt;}
.w3f{width:8.000000pt;}
.w58{width:8.333333pt;}
.w27{width:8.666667pt;}
.w66{width:8.836000pt;}
.w5b{width:9.000000pt;}
.w2f{width:9.169333pt;}
.w1{width:9.216000pt;}
.w38{width:9.333333pt;}
.w25{width:9.502667pt;}
.w57{width:9.666667pt;}
.w26{width:9.836000pt;}
.w35{width:10.333333pt;}
.w28{width:10.666667pt;}
.w36{width:11.000000pt;}
.w37{width:11.333333pt;}
.w21{width:11.502667pt;}
.w29{width:11.666667pt;}
.w33{width:12.000000pt;}
.w3b{width:12.333333pt;}
.w4e{width:12.358667pt;}
.w65{width:12.666667pt;}
.w3c{width:13.000000pt;}
.w1b{width:13.333333pt;}
.w2d{width:13.502667pt;}
.w54{width:13.656000pt;}
.w20{width:13.666667pt;}
.w22{width:14.000000pt;}
.w2e{width:14.169333pt;}
.w4a{width:14.333333pt;}
.w31{width:14.502667pt;}
.w1a{width:14.612000pt;}
.w34{width:14.666667pt;}
.w64{width:15.254667pt;}
.w60{width:15.333333pt;}
.w56{width:15.529333pt;}
.w5e{width:16.333333pt;}
.w5c{width:16.666667pt;}
.w62{width:16.790667pt;}
.w5f{width:17.000000pt;}
.w5d{width:17.333333pt;}
.w14{width:22.330667pt;}
.w16{width:26.448000pt;}
.w1e{width:28.336000pt;}
.w1f{width:29.632000pt;}
.w11{width:35.706667pt;}
.w7{width:37.081333pt;}
.w53{width:43.550667pt;}
.w55{width:44.846667pt;}
.wa{width:47.880000pt;}
.w17{width:48.986667pt;}
.w19{width:50.538667pt;}
.w63{width:52.257333pt;}
.w15{width:62.548000pt;}
.w8{width:64.954667pt;}
.wb{width:65.218667pt;}
.w13{width:72.401333pt;}
.w9{width:77.830667pt;}
.w10{width:99.781333pt;}
.w12{width:126.030667pt;}
.wd{width:144.066667pt;}
.wf{width:167.820000pt;}
.we{width:321.248000pt;}
.wc{width:330.786667pt;}
.w68{width:668.977333pt;}
.w67{width:1122.520000pt;}
.w0{width:1122.666667pt;}
.x7f{left:-14.644000pt;}
.xa5{left:-4.232000pt;}
.xa0{left:-3.200000pt;}
.x92{left:-2.200000pt;}
.x25{left:-1.248000pt;}
.x0{left:0.000000pt;}
.x87{left:0.946667pt;}
.x9a{left:1.926000pt;}
.x23{left:3.323867pt;}
.x45{left:5.105467pt;}
.x34{left:6.983733pt;}
.x66{left:7.980400pt;}
.x38{left:9.023867pt;}
.x7d{left:10.947600pt;}
.x80{left:12.316667pt;}
.x2d{left:14.438533pt;}
.x73{left:16.022933pt;}
.x50{left:24.631067pt;}
.x28{left:25.899733pt;}
.x3a{left:28.043600pt;}
.x31{left:30.398267pt;}
.x74{left:33.705333pt;}
.x35{left:40.619333pt;}
.xad{left:46.450667pt;}
.x1{left:56.692933pt;}
.xc{left:58.026267pt;}
.x2c{left:62.903200pt;}
.x76{left:66.258267pt;}
.xb7{left:70.252933pt;}
.x6c{left:71.400800pt;}
.x30{left:75.778933pt;}
.x2{left:83.309467pt;}
.xb8{left:89.248800pt;}
.x9{left:94.488133pt;}
.x6e{left:96.492800pt;}
.x10{left:98.847867pt;}
.x70{left:120.141333pt;}
.xd1{left:122.416800pt;}
.x60{left:124.914667pt;}
.x47{left:127.369600pt;}
.x52{left:129.704800pt;}
.xfd{left:133.185600pt;}
.x68{left:134.857333pt;}
.x5c{left:140.788000pt;}
.x49{left:142.443200pt;}
.x3f{left:143.722267pt;}
.xd0{left:146.808000pt;}
.x69{left:152.058400pt;}
.xb9{left:159.000000pt;}
.x71{left:161.342667pt;}
.x72{left:162.305333pt;}
.x54{left:164.973467pt;}
.x78{left:166.269333pt;}
.x79{left:167.232000pt;}
.xa6{left:171.166667pt;}
.x6a{left:172.881867pt;}
.xa7{left:176.166667pt;}
.xa8{left:177.166667pt;}
.xb6{left:178.627505pt;}
.x64{left:180.089333pt;}
.x65{left:181.052000pt;}
.xa9{left:183.666667pt;}
.x4b{left:185.404267pt;}
.x77{left:186.846667pt;}
.x67{left:196.240133pt;}
.xaa{left:197.333333pt;}
.x7a{left:198.291333pt;}
.x6b{left:199.962800pt;}
.xa2{left:200.974667pt;}
.x75{left:203.217867pt;}
.xab{left:206.000000pt;}
.xac{left:210.666667pt;}
.x6d{left:213.098000pt;}
.x5e{left:214.488000pt;}
.xa3{left:216.000000pt;}
.xa4{left:219.000000pt;}
.x5f{left:228.110667pt;}
.xda{left:231.470667pt;}
.xd2{left:232.681333pt;}
.x105{left:234.090667pt;}
.x106{left:235.441333pt;}
.xdb{left:236.864000pt;}
.x6f{left:245.169333pt;}
.xba{left:248.387429pt;}
.xbb{left:252.152610pt;}
.xb5{left:261.502667pt;}
.xf7{left:263.882400pt;}
.x5d{left:266.034667pt;}
.xd{left:278.177333pt;}
.xe{left:284.090667pt;}
.xf{left:296.762667pt;}
.x41{left:306.418267pt;}
.xe3{left:308.032000pt;}
.xd3{left:310.533333pt;}
.x7b{left:315.640000pt;}
.x7c{left:317.640000pt;}
.x4d{left:318.663600pt;}
.xf6{left:326.812000pt;}
.x43{left:328.202133pt;}
.xf4{left:341.480000pt;}
.x4{left:347.716000pt;}
.xee{left:359.054667pt;}
.xc3{left:360.844667pt;}
.xf1{left:365.012000pt;}
.x7e{left:367.362667pt;}
.x5{left:395.716000pt;}
.x90{left:401.666667pt;}
.x94{left:402.666667pt;}
.x91{left:403.666667pt;}
.x93{left:405.333333pt;}
.x95{left:409.000000pt;}
.x6{left:411.023467pt;}
.x96{left:415.000000pt;}
.x97{left:417.000000pt;}
.x98{left:418.000000pt;}
.x9b{left:420.000000pt;}
.xeb{left:422.936000pt;}
.x99{left:424.333333pt;}
.xf5{left:425.780000pt;}
.x9c{left:429.333333pt;}
.xe4{left:430.488000pt;}
.xf8{left:433.700800pt;}
.x9d{left:435.333333pt;}
.xa1{left:436.333333pt;}
.x9e{left:441.666667pt;}
.x9f{left:443.000000pt;}
.xa{left:448.818667pt;}
.xe8{left:450.172000pt;}
.x85{left:474.888000pt;}
.x102{left:478.110667pt;}
.xe9{left:480.485333pt;}
.xe7{left:482.102667pt;}
.x86{left:488.000000pt;}
.x61{left:494.977333pt;}
.x88{left:500.000000pt;}
.x2f{left:501.321333pt;}
.x89{left:504.000000pt;}
.x37{left:507.062267pt;}
.x2a{left:507.998667pt;}
.x8a{left:512.000000pt;}
.x2b{left:513.278667pt;}
.xf3{left:514.224000pt;}
.x32{left:515.840000pt;}
.x33{left:516.752000pt;}
.x8b{left:520.000000pt;}
.x26{left:520.990667pt;}
.xf2{left:522.277333pt;}
.x8c{left:524.000000pt;}
.x8d{left:528.000000pt;}
.x39{left:529.142267pt;}
.x27{left:530.958667pt;}
.x22{left:535.316000pt;}
.x24{left:537.590667pt;}
.x2e{left:540.515867pt;}
.x3b{left:541.586133pt;}
.x29{left:552.098267pt;}
.x36{left:564.631067pt;}
.x62{left:571.590667pt;}
.xd4{left:572.834933pt;}
.xf9{left:573.731200pt;}
.x21{left:580.157333pt;}
.xdc{left:582.489200pt;}
.x3e{left:583.408000pt;}
.x4a{left:588.205333pt;}
.xc4{left:602.827947pt;}
.xae{left:604.912000pt;}
.xaf{left:606.166667pt;}
.xb0{left:607.166667pt;}
.xb1{left:620.000000pt;}
.xb3{left:624.666667pt;}
.xb2{left:633.000000pt;}
.xea{left:651.176000pt;}
.xef{left:663.020400pt;}
.x4e{left:665.446667pt;}
.x4f{left:668.769333pt;}
.x44{left:677.020000pt;}
.x46{left:687.510933pt;}
.x51{left:695.295200pt;}
.x55{left:698.906667pt;}
.x103{left:699.921067pt;}
.x3{left:702.046800pt;}
.x56{left:714.493600pt;}
.x8f{left:715.804000pt;}
.x8e{left:717.100000pt;}
.x40{left:730.247600pt;}
.x3c{left:744.372000pt;}
.x3d{left:746.717333pt;}
.xed{left:754.876000pt;}
.x7{left:765.354000pt;}
.x104{left:773.857867pt;}
.xec{left:776.724000pt;}
.x4c{left:779.368133pt;}
.x57{left:787.888667pt;}
.x53{left:800.368933pt;}
.x12{left:803.149333pt;}
.x48{left:809.775067pt;}
.xcb{left:817.501067pt;}
.xca{left:819.517067pt;}
.xc2{left:821.048000pt;}
.xc7{left:822.937067pt;}
.xe2{left:823.937333pt;}
.x5b{left:825.649200pt;}
.xe5{left:831.434400pt;}
.xd6{left:833.858533pt;}
.x107{left:842.930400pt;}
.xf0{left:852.758400pt;}
.xe1{left:855.685200pt;}
.xc0{left:859.477333pt;}
.x18{left:861.991867pt;}
.x108{left:863.569200pt;}
.xbc{left:873.637333pt;}
.xbd{left:876.817333pt;}
.xc1{left:878.293200pt;}
.xd8{left:882.519733pt;}
.xbe{left:886.501333pt;}
.x42{left:893.130267pt;}
.xb{left:898.026667pt;}
.x16{left:901.663867pt;}
.xcd{left:905.245200pt;}
.xc9{left:910.895867pt;}
.xfa{left:911.785200pt;}
.x81{left:920.037200pt;}
.xdd{left:921.241200pt;}
.x1e{left:922.285200pt;}
.x100{left:923.221200pt;}
.x59{left:924.133200pt;}
.xd7{left:925.039333pt;}
.x17{left:929.442667pt;}
.x20{left:932.761200pt;}
.xbf{left:937.824133pt;}
.x11{left:939.065333pt;}
.xe0{left:941.165333pt;}
.xce{left:943.081200pt;}
.x83{left:945.081200pt;}
.x1a{left:947.340000pt;}
.x84{left:950.999600pt;}
.xc8{left:953.363867pt;}
.xe6{left:954.732000pt;}
.xd9{left:956.148000pt;}
.xfb{left:960.048000pt;}
.xc6{left:962.026667pt;}
.x1f{left:964.812000pt;}
.xff{left:971.688000pt;}
.x1c{left:974.136000pt;}
.xcf{left:976.390800pt;}
.x82{left:979.029200pt;}
.x101{left:981.731867pt;}
.x1d{left:987.888000pt;}
.x5a{left:990.336000pt;}
.x19{left:995.736000pt;}
.x14{left:1000.464000pt;}
.x63{left:1002.060000pt;}
.x1b{left:1005.420000pt;}
.xd5{left:1006.812000pt;}
.xfc{left:1010.076000pt;}
.xde{left:1011.864000pt;}
.xdf{left:1014.180000pt;}
.xfe{left:1019.556000pt;}
.xb4{left:1021.416000pt;}
.xcc{left:1023.166667pt;}
.x58{left:1027.776000pt;}
.x13{left:1033.932000pt;}
.xc5{left:1036.594667pt;}
.x15{left:1052.146667pt;}
.x8{left:1058.986667pt;}
}




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