
    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_c5c5fcf36a6216163714aa18.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_3162fb1fd61bb7f5474e44d5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.083008;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_209428abab214091564b3396.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.890137;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_7947a34a43a22b93f5f9c4da.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.689941;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_d29cb9d0206654ba26ff4bce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_10725358ca599e0daafcbd9d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3e4772e9f9d351790b437ce7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.913000;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_d7ab956bacc6c505e89dedde.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.935000;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_0e2b7d9a4b9f4ac1e17628d6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.936000;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_3804df86baa55b162bf9986c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_127267b92a403d9d975f5fd3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973000;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_3804df86baa55b162bf9986c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_b3986dfb39b62f5d0c52e1d4.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.971000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fc3aaaa696a0d9b3d34ead70.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.936000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1ac3366585848dc5b69c39d1.woff2')format("woff");}.fff{font-family:fff;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_3a9d0eb5c3ba8f44431f181a.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.872000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_bd8b23981d52cda8f4ff0b42.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bd8b23981d52cda8f4ff0b42.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bd8b23981d52cda8f4ff0b42.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_bd8b23981d52cda8f4ff0b42.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_bd8b23981d52cda8f4ff0b42.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_bd8b23981d52cda8f4ff0b42.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.675781;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f39707317b6e6b672dd32b8f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.717000;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:ff18;src:url('chunks/assets/font_e288ea7697fefb096bb6a93f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.903000;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:ff19;src:url('chunks/assets/font_2e89dc65f72a680116464df5.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.716000;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:ff1a;src:url('chunks/assets/font_e6303e9b9afcc9b710de93e4.woff2')format("woff");}.ff1a{font-family:ff1a;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;}
.m2{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);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v8{vertical-align:-29.070000px;}
.ve{vertical-align:-21.420000px;}
.v1{vertical-align:-19.440000px;}
.v2{vertical-align:-15.120000px;}
.v4{vertical-align:-8.550000px;}
.vd{vertical-align:-1.512000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.550000px;}
.v5{vertical-align:12.000600px;}
.vc{vertical-align:14.039400px;}
.v3{vertical-align:15.120000px;}
.v7{vertical-align:20.519400px;}
.va{vertical-align:28.500000px;}
.vf{vertical-align:36.369000px;}
.v6{vertical-align:37.500000px;}
.vb{vertical-align:43.620000px;}
.ls37{letter-spacing:-5.130000px;}
.lsd{letter-spacing:-1.860000px;}
.ls52{letter-spacing:-1.755000px;}
.ls7{letter-spacing:-1.620000px;}
.ls4c{letter-spacing:-1.596000px;}
.lsa{letter-spacing:-1.560000px;}
.ls4d{letter-spacing:-1.539000px;}
.lsc{letter-spacing:-1.500000px;}
.ls6{letter-spacing:-1.440000px;}
.ls24{letter-spacing:-1.425000px;}
.lse{letter-spacing:-1.380000px;}
.ls25{letter-spacing:-1.368000px;}
.ls58{letter-spacing:-1.350000px;}
.ls3c{letter-spacing:-1.311000px;}
.lsf{letter-spacing:-1.260000px;}
.ls1a{letter-spacing:-1.254000px;}
.ls34{letter-spacing:-1.140000px;}
.ls3b{letter-spacing:-1.083000px;}
.ls2f{letter-spacing:-1.026000px;}
.ls60{letter-spacing:-0.990000px;}
.ls21{letter-spacing:-0.969000px;}
.ls9{letter-spacing:-0.960000px;}
.ls55{letter-spacing:-0.945000px;}
.ls17{letter-spacing:-0.912000px;}
.ls10{letter-spacing:-0.900000px;}
.ls16{letter-spacing:-0.855000px;}
.ls5a{letter-spacing:-0.810000px;}
.ls35{letter-spacing:-0.798000px;}
.ls30{letter-spacing:-0.741000px;}
.ls2a{letter-spacing:-0.684000px;}
.ls61{letter-spacing:-0.675000px;}
.ls22{letter-spacing:-0.627000px;}
.ls4{letter-spacing:-0.588000px;}
.ls56{letter-spacing:-0.585000px;}
.ls19{letter-spacing:-0.570000px;}
.ls5e{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.513000px;}
.ls53{letter-spacing:-0.495000px;}
.ls2e{letter-spacing:-0.456000px;}
.ls57{letter-spacing:-0.450000px;}
.ls5{letter-spacing:-0.420000px;}
.ls5b{letter-spacing:-0.405000px;}
.ls14{letter-spacing:-0.399000px;}
.ls46{letter-spacing:-0.378000px;}
.ls54{letter-spacing:-0.360000px;}
.ls26{letter-spacing:-0.342000px;}
.ls18{letter-spacing:-0.285000px;}
.ls5f{letter-spacing:-0.270000px;}
.ls36{letter-spacing:-0.269040px;}
.ls11{letter-spacing:-0.240000px;}
.ls2d{letter-spacing:-0.228000px;}
.lsb{letter-spacing:-0.180000px;}
.ls15{letter-spacing:-0.171000px;}
.ls2b{letter-spacing:-0.114000px;}
.ls62{letter-spacing:-0.066000px;}
.ls8{letter-spacing:-0.060000px;}
.ls1b{letter-spacing:-0.057000px;}
.ls59{letter-spacing:-0.045000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000120px;}
.ls5d{letter-spacing:0.090000px;}
.ls50{letter-spacing:0.114000px;}
.ls5c{letter-spacing:0.405000px;}
.ls23{letter-spacing:0.513000px;}
.ls51{letter-spacing:0.810000px;}
.ls38{letter-spacing:2.971200px;}
.ls3a{letter-spacing:2.971800px;}
.ls39{letter-spacing:3.937500px;}
.ls49{letter-spacing:4.500000px;}
.ls1f{letter-spacing:6.335400px;}
.ls32{letter-spacing:6.502800px;}
.ls48{letter-spacing:8.803800px;}
.ls4e{letter-spacing:9.271200px;}
.ls47{letter-spacing:11.290200px;}
.ls4a{letter-spacing:11.476200px;}
.ls13{letter-spacing:12.348000px;}
.ls27{letter-spacing:13.323000px;}
.ls28{letter-spacing:13.353000px;}
.ls4b{letter-spacing:14.434800px;}
.ls4f{letter-spacing:14.689200px;}
.ls1c{letter-spacing:15.912600px;}
.ls31{letter-spacing:16.654200px;}
.ls20{letter-spacing:18.016800px;}
.ls12{letter-spacing:18.958800px;}
.ls33{letter-spacing:19.972200px;}
.ls29{letter-spacing:21.055200px;}
.ls1d{letter-spacing:23.944800px;}
.ls1e{letter-spacing:24.429600px;}
.ls41{letter-spacing:160.049400px;}
.ls3f{letter-spacing:160.050000px;}
.ls3e{letter-spacing:183.402000px;}
.ls44{letter-spacing:414.216600px;}
.ls3d{letter-spacing:414.221400px;}
.ls40{letter-spacing:437.574000px;}
.ls42{letter-spacing:710.402400px;}
.ls1{letter-spacing:721.786200px;}
.ls43{letter-spacing:743.490600px;}
.ls2{letter-spacing:754.874400px;}
.ls45{letter-spacing:975.840000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1be{word-spacing:-975.840000px;}
.ws136{word-spacing:-20.016000px;}
.ws100{word-spacing:-16.680000px;}
.ws7b{word-spacing:-13.452000px;}
.wsfd{word-spacing:-13.053000px;}
.ws1d{word-spacing:-12.939000px;}
.ws1e8{word-spacing:-12.882000px;}
.wsbf{word-spacing:-12.825000px;}
.wsff{word-spacing:-12.597000px;}
.ws7c{word-spacing:-12.540000px;}
.ws1cf{word-spacing:-12.483000px;}
.wsfc{word-spacing:-12.426000px;}
.ws19a{word-spacing:-12.084000px;}
.ws8{word-spacing:-11.676000px;}
.ws1bd{word-spacing:-11.298000px;}
.ws199{word-spacing:-11.286000px;}
.ws7{word-spacing:-11.088000px;}
.ws201{word-spacing:-11.025000px;}
.ws1fe{word-spacing:-10.215000px;}
.ws200{word-spacing:-10.125000px;}
.wsb{word-spacing:-9.912000px;}
.ws260{word-spacing:-9.855000px;}
.ws1ff{word-spacing:-9.360000px;}
.ws9{word-spacing:-8.857080px;}
.ws1{word-spacing:-8.133471px;}
.ws2{word-spacing:-8.017001px;}
.ws15b{word-spacing:-7.634010px;}
.wsfe{word-spacing:-7.364970px;}
.ws5{word-spacing:-7.320124px;}
.ws15d{word-spacing:-7.239000px;}
.ws0{word-spacing:-7.215301px;}
.ws1a8{word-spacing:-6.888840px;}
.ws4{word-spacing:-6.413601px;}
.ws137{word-spacing:-3.864600px;}
.ws13{word-spacing:-3.600000px;}
.wsd{word-spacing:-3.360000px;}
.wse{word-spacing:-3.300000px;}
.ws19{word-spacing:-2.580000px;}
.ws198{word-spacing:-2.496600px;}
.ws1b{word-spacing:-2.460000px;}
.ws17{word-spacing:-1.620000px;}
.wsa{word-spacing:-1.176000px;}
.ws14{word-spacing:-0.840000px;}
.ws25f{word-spacing:-0.810000px;}
.ws1ae{word-spacing:-0.501900px;}
.ws1ad{word-spacing:-0.500100px;}
.ws15e{word-spacing:-0.461700px;}
.ws1ac{word-spacing:-0.262200px;}
.ws27a{word-spacing:-0.090000px;}
.ws16{word-spacing:-0.060000px;}
.ws16a{word-spacing:-0.057000px;}
.ws170{word-spacing:-0.042000px;}
.ws3{word-spacing:-0.039755px;}
.ws186{word-spacing:-0.023010px;}
.ws1af{word-spacing:-0.004800px;}
.ws6{word-spacing:0.000000px;}
.ws226{word-spacing:0.045000px;}
.ws49{word-spacing:0.057000px;}
.ws14f{word-spacing:0.114000px;}
.ws78{word-spacing:0.171000px;}
.ws210{word-spacing:0.180000px;}
.wsbe{word-spacing:0.285000px;}
.wscd{word-spacing:0.342000px;}
.ws227{word-spacing:0.360000px;}
.ws23{word-spacing:0.399000px;}
.ws233{word-spacing:0.450000px;}
.wsf9{word-spacing:0.456000px;}
.ws19d{word-spacing:0.513000px;}
.ws13f{word-spacing:0.570000px;}
.ws225{word-spacing:0.585000px;}
.ws1f4{word-spacing:0.627000px;}
.ws1ea{word-spacing:0.684000px;}
.ws1f{word-spacing:0.741000px;}
.ws1dd{word-spacing:0.855000px;}
.ws235{word-spacing:0.900000px;}
.ws166{word-spacing:0.969000px;}
.ws1ca{word-spacing:1.026000px;}
.ws149{word-spacing:1.140000px;}
.ws252{word-spacing:1.170000px;}
.ws13d{word-spacing:1.197000px;}
.ws27e{word-spacing:1.260000px;}
.ws51{word-spacing:1.311000px;}
.ws237{word-spacing:1.350000px;}
.ws10f{word-spacing:1.368000px;}
.ws2a5{word-spacing:1.374000px;}
.ws15c{word-spacing:1.390800px;}
.ws26e{word-spacing:1.395000px;}
.ws1d2{word-spacing:1.425000px;}
.ws18e{word-spacing:1.482000px;}
.ws18{word-spacing:1.500000px;}
.ws28f{word-spacing:1.530000px;}
.ws83{word-spacing:1.653000px;}
.ws24e{word-spacing:1.665000px;}
.ws2b{word-spacing:1.767000px;}
.wse3{word-spacing:1.824000px;}
.ws278{word-spacing:1.845000px;}
.ws1e5{word-spacing:1.881000px;}
.ws211{word-spacing:1.935000px;}
.ws256{word-spacing:2.070000px;}
.wse4{word-spacing:2.166000px;}
.ws164{word-spacing:2.223000px;}
.wsf2{word-spacing:2.280000px;}
.ws1ee{word-spacing:2.337000px;}
.ws1e6{word-spacing:2.394000px;}
.wse6{word-spacing:2.451000px;}
.ws1b9{word-spacing:2.508000px;}
.ws86{word-spacing:2.565000px;}
.ws6c{word-spacing:2.622000px;}
.ws266{word-spacing:2.655000px;}
.ws11b{word-spacing:2.679000px;}
.ws2c{word-spacing:2.736000px;}
.wsba{word-spacing:2.793000px;}
.ws250{word-spacing:2.835000px;}
.ws139{word-spacing:2.850000px;}
.ws23b{word-spacing:2.880000px;}
.ws48{word-spacing:2.907000px;}
.ws109{word-spacing:2.964000px;}
.ws28c{word-spacing:2.970000px;}
.ws27f{word-spacing:3.015000px;}
.ws1b0{word-spacing:3.021000px;}
.ws1b7{word-spacing:3.135000px;}
.wsd6{word-spacing:3.192000px;}
.ws2a0{word-spacing:3.240000px;}
.ws4f{word-spacing:3.249000px;}
.ws9a{word-spacing:3.306000px;}
.ws148{word-spacing:3.363000px;}
.ws132{word-spacing:3.420000px;}
.ws230{word-spacing:3.465000px;}
.ws82{word-spacing:3.534000px;}
.ws12{word-spacing:3.540000px;}
.ws29d{word-spacing:3.555000px;}
.ws5d{word-spacing:3.591000px;}
.ws11{word-spacing:3.600000px;}
.ws29{word-spacing:3.648000px;}
.wsce{word-spacing:3.705000px;}
.ws245{word-spacing:3.735000px;}
.ws10{word-spacing:3.780000px;}
.ws150{word-spacing:3.819000px;}
.ws2a2{word-spacing:3.825000px;}
.ws217{word-spacing:3.870000px;}
.ws15a{word-spacing:3.876000px;}
.ws2a{word-spacing:3.933000px;}
.ws26f{word-spacing:3.960000px;}
.ws1aa{word-spacing:3.990000px;}
.ws27c{word-spacing:4.005000px;}
.wsee{word-spacing:4.047000px;}
.ws24d{word-spacing:4.050000px;}
.ws15{word-spacing:4.140000px;}
.ws1b8{word-spacing:4.161000px;}
.ws141{word-spacing:4.218000px;}
.ws1bb{word-spacing:4.218900px;}
.ws22f{word-spacing:4.230000px;}
.ws1f8{word-spacing:4.275000px;}
.wse8{word-spacing:4.332000px;}
.ws21a{word-spacing:4.365000px;}
.wsea{word-spacing:4.389000px;}
.ws72{word-spacing:4.446000px;}
.ws1db{word-spacing:4.503000px;}
.ws191{word-spacing:4.560000px;}
.ws251{word-spacing:4.590000px;}
.ws24{word-spacing:4.617000px;}
.ws1e3{word-spacing:4.674000px;}
.wsf4{word-spacing:4.731000px;}
.wsa6{word-spacing:4.788000px;}
.ws1fb{word-spacing:4.845000px;}
.ws224{word-spacing:4.860000px;}
.ws1f6{word-spacing:4.902000px;}
.wsd8{word-spacing:4.959000px;}
.ws88{word-spacing:5.016000px;}
.ws249{word-spacing:5.040000px;}
.ws45{word-spacing:5.130000px;}
.ws298{word-spacing:5.175000px;}
.ws3c{word-spacing:5.187000px;}
.ws263{word-spacing:5.220000px;}
.ws94{word-spacing:5.244000px;}
.ws29c{word-spacing:5.310000px;}
.ws9d{word-spacing:5.358000px;}
.ws74{word-spacing:5.415000px;}
.ws1a{word-spacing:5.460000px;}
.wsc{word-spacing:5.520000px;}
.ws155{word-spacing:5.529000px;}
.ws1ba{word-spacing:5.586000px;}
.ws52{word-spacing:5.643000px;}
.ws218{word-spacing:5.670000px;}
.ws1de{word-spacing:5.700000px;}
.ws21d{word-spacing:5.850000px;}
.ws21f{word-spacing:5.895000px;}
.ws16c{word-spacing:5.916300px;}
.ws16d{word-spacing:5.916600px;}
.wsda{word-spacing:5.928000px;}
.ws9b{word-spacing:5.985000px;}
.wsb5{word-spacing:6.042000px;}
.wsf{word-spacing:6.060000px;}
.ws111{word-spacing:6.099000px;}
.ws25a{word-spacing:6.120000px;}
.ws1f7{word-spacing:6.156000px;}
.ws255{word-spacing:6.210000px;}
.ws40{word-spacing:6.213000px;}
.ws2a3{word-spacing:6.255000px;}
.ws140{word-spacing:6.270000px;}
.ws8e{word-spacing:6.327000px;}
.ws28b{word-spacing:6.345000px;}
.ws133{word-spacing:6.384000px;}
.ws21e{word-spacing:6.390000px;}
.ws295{word-spacing:6.435000px;}
.ws19c{word-spacing:6.441000px;}
.ws26d{word-spacing:6.480000px;}
.ws126{word-spacing:6.498000px;}
.ws23a{word-spacing:6.525000px;}
.ws104{word-spacing:6.612000px;}
.ws2a1{word-spacing:6.705000px;}
.ws262{word-spacing:6.750000px;}
.wsab{word-spacing:6.783000px;}
.ws26b{word-spacing:6.795000px;}
.ws10c{word-spacing:6.897000px;}
.ws258{word-spacing:6.930000px;}
.wsf1{word-spacing:6.954000px;}
.ws264{word-spacing:7.020000px;}
.ws56{word-spacing:7.068000px;}
.ws285{word-spacing:7.110000px;}
.ws90{word-spacing:7.125000px;}
.ws2e{word-spacing:7.182000px;}
.ws81{word-spacing:7.239000px;}
.ws23c{word-spacing:7.290000px;}
.ws134{word-spacing:7.296000px;}
.wsa7{word-spacing:7.353000px;}
.ws10d{word-spacing:7.410000px;}
.ws5c{word-spacing:7.524000px;}
.ws219{word-spacing:7.560000px;}
.ws9e{word-spacing:7.581000px;}
.ws22b{word-spacing:7.605000px;}
.wsb6{word-spacing:7.638000px;}
.ws34{word-spacing:7.695000px;}
.ws213{word-spacing:7.740000px;}
.ws12e{word-spacing:7.752000px;}
.ws269{word-spacing:7.785000px;}
.ws151{word-spacing:7.866000px;}
.ws24c{word-spacing:7.920000px;}
.ws153{word-spacing:7.923000px;}
.ws232{word-spacing:7.965000px;}
.ws2f{word-spacing:7.980000px;}
.ws19b{word-spacing:8.037000px;}
.ws243{word-spacing:8.055000px;}
.wsa3{word-spacing:8.094000px;}
.ws22c{word-spacing:8.100000px;}
.ws23d{word-spacing:8.145000px;}
.ws159{word-spacing:8.151000px;}
.ws194{word-spacing:8.208000px;}
.ws143{word-spacing:8.265000px;}
.ws47{word-spacing:8.322000px;}
.ws25b{word-spacing:8.370000px;}
.ws1d8{word-spacing:8.379000px;}
.ws1e9{word-spacing:8.436000px;}
.ws10e{word-spacing:8.493000px;}
.ws12a{word-spacing:8.550000px;}
.ws27d{word-spacing:8.595000px;}
.ws73{word-spacing:8.607000px;}
.ws26c{word-spacing:8.640000px;}
.wsca{word-spacing:8.664000px;}
.ws80{word-spacing:8.721000px;}
.ws12f{word-spacing:8.778000px;}
.ws1da{word-spacing:8.835000px;}
.ws20f{word-spacing:8.865000px;}
.ws5f{word-spacing:8.892000px;}
.ws231{word-spacing:8.910000px;}
.ws114{word-spacing:8.949000px;}
.ws286{word-spacing:8.955000px;}
.ws229{word-spacing:9.000000px;}
.wsd0{word-spacing:9.006000px;}
.ws254{word-spacing:9.045000px;}
.wsc7{word-spacing:9.063000px;}
.ws223{word-spacing:9.090000px;}
.ws99{word-spacing:9.120000px;}
.ws207{word-spacing:9.135000px;}
.ws1f3{word-spacing:9.177000px;}
.wseb{word-spacing:9.234000px;}
.ws6f{word-spacing:9.291000px;}
.ws135{word-spacing:9.324000px;}
.ws62{word-spacing:9.348000px;}
.ws115{word-spacing:9.405000px;}
.ws25d{word-spacing:9.450000px;}
.ws1cd{word-spacing:9.462000px;}
.ws6d{word-spacing:9.519000px;}
.ws214{word-spacing:9.540000px;}
.ws1d5{word-spacing:9.576000px;}
.ws265{word-spacing:9.585000px;}
.ws268{word-spacing:9.630000px;}
.ws4c{word-spacing:9.633000px;}
.ws1b6{word-spacing:9.690000px;}
.ws287{word-spacing:9.720000px;}
.ws288{word-spacing:9.765000px;}
.ws77{word-spacing:9.804000px;}
.ws27b{word-spacing:9.855000px;}
.ws14b{word-spacing:9.861000px;}
.ws244{word-spacing:9.900000px;}
.wsd1{word-spacing:9.918000px;}
.ws1cb{word-spacing:9.975000px;}
.ws5a{word-spacing:10.032000px;}
.ws144{word-spacing:10.089000px;}
.ws270{word-spacing:10.125000px;}
.ws163{word-spacing:10.146000px;}
.ws259{word-spacing:10.170000px;}
.ws19f{word-spacing:10.203000px;}
.ws206{word-spacing:10.215000px;}
.ws101{word-spacing:10.260000px;}
.ws2a4{word-spacing:10.305000px;}
.wsa9{word-spacing:10.317000px;}
.ws1a2{word-spacing:10.374000px;}
.ws26a{word-spacing:10.395000px;}
.ws196{word-spacing:10.431000px;}
.ws20b{word-spacing:10.485000px;}
.ws212{word-spacing:10.530000px;}
.wsdb{word-spacing:10.545000px;}
.ws71{word-spacing:10.602000px;}
.ws3d{word-spacing:10.659000px;}
.ws23e{word-spacing:10.710000px;}
.ws9f{word-spacing:10.716000px;}
.ws267{word-spacing:10.800000px;}
.ws142{word-spacing:10.830000px;}
.ws22a{word-spacing:10.845000px;}
.ws107{word-spacing:10.887000px;}
.ws98{word-spacing:10.944000px;}
.ws208{word-spacing:10.980000px;}
.ws138{word-spacing:11.001000px;}
.wsa8{word-spacing:11.058000px;}
.ws169{word-spacing:11.103600px;}
.ws76{word-spacing:11.115000px;}
.ws204{word-spacing:11.160000px;}
.ws1a0{word-spacing:11.172000px;}
.ws1e4{word-spacing:11.229000px;}
.ws24f{word-spacing:11.250000px;}
.ws25e{word-spacing:11.295000px;}
.ws216{word-spacing:11.340000px;}
.ws3e{word-spacing:11.343000px;}
.ws38{word-spacing:11.400000px;}
.ws11c{word-spacing:11.457000px;}
.ws116{word-spacing:11.514000px;}
.ws236{word-spacing:11.520000px;}
.ws13b{word-spacing:11.571000px;}
.ws215{word-spacing:11.610000px;}
.ws19e{word-spacing:11.628000px;}
.ws167{word-spacing:11.685000px;}
.ws1ce{word-spacing:11.742000px;}
.ws1ec{word-spacing:11.799000px;}
.ws257{word-spacing:11.835000px;}
.ws165{word-spacing:11.856000px;}
.ws1a3{word-spacing:11.913000px;}
.ws16b{word-spacing:11.975700px;}
.ws234{word-spacing:12.015000px;}
.ws1bc{word-spacing:12.041400px;}
.ws209{word-spacing:12.060000px;}
.ws106{word-spacing:12.084000px;}
.wsc3{word-spacing:12.141000px;}
.ws281{word-spacing:12.150000px;}
.ws1b4{word-spacing:12.198000px;}
.ws1d6{word-spacing:12.255000px;}
.ws30{word-spacing:12.369000px;}
.ws221{word-spacing:12.375000px;}
.ws283{word-spacing:12.465000px;}
.wsb9{word-spacing:12.483000px;}
.ws290{word-spacing:12.510000px;}
.wsac{word-spacing:12.540000px;}
.ws246{word-spacing:12.555000px;}
.ws1d3{word-spacing:12.597000px;}
.ws29b{word-spacing:12.690000px;}
.ws14e{word-spacing:12.711000px;}
.ws8f{word-spacing:12.768000px;}
.ws63{word-spacing:12.825000px;}
.wse0{word-spacing:12.882000px;}
.ws27{word-spacing:12.939000px;}
.ws61{word-spacing:12.996000px;}
.ws205{word-spacing:13.005000px;}
.ws4a{word-spacing:13.053000px;}
.wsdd{word-spacing:13.110000px;}
.ws128{word-spacing:13.167000px;}
.ws119{word-spacing:13.224000px;}
.wsd2{word-spacing:13.281000px;}
.ws275{word-spacing:13.320000px;}
.wsc5{word-spacing:13.338000px;}
.ws277{word-spacing:13.365000px;}
.ws37{word-spacing:13.395000px;}
.wsd4{word-spacing:13.452000px;}
.ws296{word-spacing:13.500000px;}
.ws14d{word-spacing:13.509000px;}
.ws1fa{word-spacing:13.566000px;}
.wse1{word-spacing:13.623000px;}
.ws2d{word-spacing:13.680000px;}
.ws6e{word-spacing:13.737000px;}
.wsd3{word-spacing:13.794000px;}
.ws23f{word-spacing:13.815000px;}
.ws131{word-spacing:13.851000px;}
.ws289{word-spacing:13.905000px;}
.wsd5{word-spacing:13.908000px;}
.ws58{word-spacing:13.965000px;}
.ws238{word-spacing:13.995000px;}
.ws1d4{word-spacing:14.022000px;}
.ws154{word-spacing:14.079000px;}
.ws279{word-spacing:14.085000px;}
.ws129{word-spacing:14.136000px;}
.ws65{word-spacing:14.193000px;}
.ws46{word-spacing:14.250000px;}
.ws222{word-spacing:14.265000px;}
.ws1c{word-spacing:14.280000px;}
.ws4b{word-spacing:14.307000px;}
.ws228{word-spacing:14.310000px;}
.ws145{word-spacing:14.364000px;}
.ws253{word-spacing:14.400000px;}
.wsec{word-spacing:14.421000px;}
.ws247{word-spacing:14.445000px;}
.ws41{word-spacing:14.478000px;}
.ws85{word-spacing:14.535000px;}
.wsf7{word-spacing:14.649000px;}
.ws20a{word-spacing:14.670000px;}
.ws189{word-spacing:14.763000px;}
.ws1c2{word-spacing:14.814300px;}
.ws152{word-spacing:14.820000px;}
.ws261{word-spacing:14.850000px;}
.wsdf{word-spacing:14.877000px;}
.wsc2{word-spacing:14.991000px;}
.ws22d{word-spacing:15.030000px;}
.ws29a{word-spacing:15.075000px;}
.ws28{word-spacing:15.105000px;}
.wsb7{word-spacing:15.162000px;}
.ws1ab{word-spacing:15.202200px;}
.wsc8{word-spacing:15.219000px;}
.ws297{word-spacing:15.390000px;}
.ws39{word-spacing:15.447000px;}
.ws67{word-spacing:15.504000px;}
.ws1e0{word-spacing:15.561000px;}
.ws292{word-spacing:15.570000px;}
.ws273{word-spacing:15.615000px;}
.ws3a{word-spacing:15.618000px;}
.ws120{word-spacing:15.675000px;}
.ws240{word-spacing:15.705000px;}
.ws64{word-spacing:15.732000px;}
.ws22e{word-spacing:15.750000px;}
.ws96{word-spacing:15.789000px;}
.ws20c{word-spacing:15.795000px;}
.ws14c{word-spacing:15.846000px;}
.ws7f{word-spacing:15.903000px;}
.wsbb{word-spacing:15.960000px;}
.ws1f5{word-spacing:16.017000px;}
.ws248{word-spacing:16.020000px;}
.ws25c{word-spacing:16.065000px;}
.ws1cc{word-spacing:16.074000px;}
.ws291{word-spacing:16.110000px;}
.wse9{word-spacing:16.131000px;}
.ws28a{word-spacing:16.155000px;}
.ws11e{word-spacing:16.188000px;}
.ws59{word-spacing:16.245000px;}
.wsc4{word-spacing:16.302000px;}
.ws130{word-spacing:16.359000px;}
.ws1b3{word-spacing:16.416000px;}
.ws293{word-spacing:16.425000px;}
.ws124{word-spacing:16.530000px;}
.ws127{word-spacing:16.587000px;}
.ws18f{word-spacing:16.644000px;}
.ws282{word-spacing:16.650000px;}
.ws12d{word-spacing:16.680000px;}
.ws195{word-spacing:16.701000px;}
.ws193{word-spacing:16.815000px;}
.ws55{word-spacing:16.872000px;}
.ws26{word-spacing:16.986000px;}
.ws4e{word-spacing:17.043000px;}
.ws241{word-spacing:17.055000px;}
.ws10b{word-spacing:17.100000px;}
.wsb4{word-spacing:17.157000px;}
.wsc9{word-spacing:17.214000px;}
.wsbc{word-spacing:17.271000px;}
.ws8c{word-spacing:17.328000px;}
.ws242{word-spacing:17.370000px;}
.wsfa{word-spacing:17.385000px;}
.wsc0{word-spacing:17.442000px;}
.ws284{word-spacing:17.460000px;}
.ws1c9{word-spacing:17.499000px;}
.ws274{word-spacing:17.505000px;}
.ws118{word-spacing:17.556000px;}
.ws57{word-spacing:17.670000px;}
.ws299{word-spacing:17.685000px;}
.ws1c6{word-spacing:17.727000px;}
.ws75{word-spacing:17.784000px;}
.ws203{word-spacing:17.820000px;}
.wse5{word-spacing:17.841000px;}
.ws1e{word-spacing:17.898000px;}
.wsfb{word-spacing:17.955000px;}
.ws29e{word-spacing:18.000000px;}
.wsb3{word-spacing:18.012000px;}
.ws53{word-spacing:18.069000px;}
.ws11f{word-spacing:18.126000px;}
.ws239{word-spacing:18.180000px;}
.ws87{word-spacing:18.183000px;}
.ws1e7{word-spacing:18.240000px;}
.wsd9{word-spacing:18.297000px;}
.ws294{word-spacing:18.315000px;}
.ws112{word-spacing:18.354000px;}
.wsa0{word-spacing:18.411000px;}
.ws276{word-spacing:18.450000px;}
.ws13e{word-spacing:18.468000px;}
.ws70{word-spacing:18.582000px;}
.ws89{word-spacing:18.639000px;}
.ws8d{word-spacing:18.753000px;}
.wsbd{word-spacing:18.810000px;}
.ws32{word-spacing:18.867000px;}
.ws33{word-spacing:18.981000px;}
.ws35{word-spacing:19.038000px;}
.ws4d{word-spacing:19.095000px;}
.ws24a{word-spacing:19.125000px;}
.wsc6{word-spacing:19.152000px;}
.ws271{word-spacing:19.260000px;}
.ws24b{word-spacing:19.305000px;}
.wsc1{word-spacing:19.323000px;}
.ws125{word-spacing:19.380000px;}
.ws21{word-spacing:19.437000px;}
.wsad{word-spacing:19.494000px;}
.ws146{word-spacing:19.551000px;}
.ws11d{word-spacing:19.608000px;}
.ws18a{word-spacing:19.665000px;}
.ws5b{word-spacing:19.722000px;}
.wsa5{word-spacing:19.779000px;}
.ws91{word-spacing:19.836000px;}
.ws29f{word-spacing:19.890000px;}
.wsef{word-spacing:19.950000px;}
.ws10a{word-spacing:20.007000px;}
.ws11a{word-spacing:20.016000px;}
.ws20d{word-spacing:20.115000px;}
.ws6a{word-spacing:20.121000px;}
.ws20{word-spacing:20.178000px;}
.ws5e{word-spacing:20.235000px;}
.ws31{word-spacing:20.292000px;}
.wsaf{word-spacing:20.349000px;}
.ws79{word-spacing:20.406000px;}
.wscb{word-spacing:20.463000px;}
.ws25{word-spacing:20.577000px;}
.ws97{word-spacing:20.634000px;}
.ws1d9{word-spacing:20.691000px;}
.ws44{word-spacing:20.805000px;}
.ws69{word-spacing:20.919000px;}
.ws22{word-spacing:20.976000px;}
.ws21b{word-spacing:21.060000px;}
.ws36{word-spacing:21.204000px;}
.wsf6{word-spacing:21.261000px;}
.ws162{word-spacing:21.432000px;}
.wsf8{word-spacing:21.489000px;}
.ws1c8{word-spacing:21.546000px;}
.ws187{word-spacing:21.603000px;}
.ws202{word-spacing:21.660000px;}
.ws1e2{word-spacing:21.717000px;}
.ws280{word-spacing:21.735000px;}
.ws3f{word-spacing:21.774000px;}
.ws188{word-spacing:21.831000px;}
.ws20e{word-spacing:22.005000px;}
.ws12b{word-spacing:22.116000px;}
.ws1dc{word-spacing:22.173000px;}
.ws123{word-spacing:22.230000px;}
.wsf0{word-spacing:22.401000px;}
.ws93{word-spacing:22.458000px;}
.ws1fc{word-spacing:22.515000px;}
.ws3b{word-spacing:22.686000px;}
.ws50{word-spacing:22.800000px;}
.ws220{word-spacing:22.860000px;}
.wsb0{word-spacing:22.914000px;}
.wsf5{word-spacing:22.971000px;}
.ws21c{word-spacing:22.995000px;}
.ws1eb{word-spacing:23.028000px;}
.ws12c{word-spacing:23.142000px;}
.ws147{word-spacing:23.313000px;}
.ws8b{word-spacing:23.427000px;}
.ws1b5{word-spacing:23.541000px;}
.wscf{word-spacing:23.598000px;}
.ws6b{word-spacing:23.712000px;}
.wsa4{word-spacing:23.769000px;}
.ws9c{word-spacing:23.940000px;}
.ws1f9{word-spacing:23.997000px;}
.ws197{word-spacing:24.054000px;}
.ws1d7{word-spacing:24.396000px;}
.wsb2{word-spacing:24.453000px;}
.wsd7{word-spacing:24.795000px;}
.ws158{word-spacing:24.966000px;}
.ws95{word-spacing:25.080000px;}
.ws117{word-spacing:25.194000px;}
.ws1df{word-spacing:25.251000px;}
.ws272{word-spacing:25.290000px;}
.wsae{word-spacing:25.422000px;}
.ws18d{word-spacing:25.479000px;}
.wsa2{word-spacing:25.536000px;}
.ws110{word-spacing:25.821000px;}
.ws66{word-spacing:25.878000px;}
.ws1a1{word-spacing:26.106000px;}
.ws1f0{word-spacing:26.163000px;}
.ws15f{word-spacing:26.277000px;}
.ws1fd{word-spacing:26.562000px;}
.ws84{word-spacing:26.676000px;}
.ws28d{word-spacing:26.775000px;}
.ws113{word-spacing:27.075000px;}
.wsde{word-spacing:27.474000px;}
.ws13a{word-spacing:27.531000px;}
.ws92{word-spacing:27.588000px;}
.ws18b{word-spacing:27.645000px;}
.ws1d1{word-spacing:27.816000px;}
.ws60{word-spacing:28.158000px;}
.wse7{word-spacing:28.728000px;}
.ws28e{word-spacing:28.755000px;}
.ws7e{word-spacing:28.785000px;}
.ws18c{word-spacing:28.956000px;}
.ws108{word-spacing:29.640000px;}
.ws7a{word-spacing:29.868000px;}
.ws1f1{word-spacing:30.780000px;}
.ws161{word-spacing:31.008000px;}
.ws157{word-spacing:31.065000px;}
.ws190{word-spacing:31.236000px;}
.ws121{word-spacing:31.464000px;}
.wsa1{word-spacing:31.977000px;}
.ws156{word-spacing:32.148000px;}
.ws1ef{word-spacing:32.376000px;}
.ws1c5{word-spacing:32.547000px;}
.ws122{word-spacing:32.604000px;}
.ws1f2{word-spacing:32.661000px;}
.wsf3{word-spacing:32.832000px;}
.ws68{word-spacing:33.117000px;}
.ws1c7{word-spacing:33.174000px;}
.ws42{word-spacing:33.288000px;}
.ws43{word-spacing:33.915000px;}
.ws105{word-spacing:34.314000px;}
.ws1ed{word-spacing:34.542000px;}
.ws160{word-spacing:34.998000px;}
.ws54{word-spacing:35.226000px;}
.ws192{word-spacing:35.283000px;}
.wse2{word-spacing:35.568000px;}
.ws1e1{word-spacing:35.739000px;}
.wsed{word-spacing:35.967000px;}
.wsb8{word-spacing:37.278000px;}
.ws1d0{word-spacing:37.791000px;}
.ws14a{word-spacing:40.356000px;}
.wsaa{word-spacing:43.206000px;}
.wscc{word-spacing:43.833000px;}
.ws13c{word-spacing:44.175000px;}
.wsb1{word-spacing:44.802000px;}
.ws7d{word-spacing:46.170000px;}
.ws168{word-spacing:47.766000px;}
.ws8a{word-spacing:56.658000px;}
.wsdc{word-spacing:58.539000px;}
.ws16f{word-spacing:118.865220px;}
.ws17f{word-spacing:118.865820px;}
.ws183{word-spacing:131.993400px;}
.ws182{word-spacing:131.994000px;}
.ws173{word-spacing:147.635220px;}
.ws172{word-spacing:147.635820px;}
.ws171{word-spacing:160.763400px;}
.ws17a{word-spacing:160.764000px;}
.ws181{word-spacing:163.753800px;}
.ws174{word-spacing:163.754400px;}
.ws176{word-spacing:170.202000px;}
.ws17c{word-spacing:174.834000px;}
.ws178{word-spacing:184.116000px;}
.ws175{word-spacing:203.604000px;}
.ws16e{word-spacing:206.271000px;}
.ws103{word-spacing:206.828400px;}
.ws17d{word-spacing:226.956000px;}
.ws102{word-spacing:230.114400px;}
.ws179{word-spacing:242.568000px;}
.ws17e{word-spacing:244.962000px;}
.ws1c4{word-spacing:304.848600px;}
.ws1a6{word-spacing:310.308600px;}
.ws1bf{word-spacing:312.486600px;}
.ws1b2{word-spacing:313.878600px;}
.ws1b1{word-spacing:333.618600px;}
.ws1a7{word-spacing:339.078600px;}
.ws1c1{word-spacing:357.594600px;}
.ws177{word-spacing:373.036620px;}
.ws184{word-spacing:373.037220px;}
.ws1a4{word-spacing:382.695600px;}
.ws1a9{word-spacing:395.904600px;}
.ws185{word-spacing:401.807220px;}
.ws1c0{word-spacing:401.904600px;}
.ws1c3{word-spacing:408.459600px;}
.ws1a5{word-spacing:409.209600px;}
.ws17b{word-spacing:425.158620px;}
.ws180{word-spacing:425.159220px;}
._58{margin-left:-33.631708px;}
._59{margin-left:-20.102400px;}
._2{margin-left:-12.044400px;}
._4{margin-left:-9.912000px;}
._18{margin-left:-7.671900px;}
._7{margin-left:-6.354000px;}
._3{margin-left:-4.662000px;}
._1{margin-left:-2.925000px;}
._0{margin-left:-1.345231px;}
._6{width:1.395692px;}
._8{width:2.791231px;}
._b{width:4.731031px;}
._23{width:5.761346px;}
._14{width:6.888062px;}
._d{width:7.995600px;}
._5{width:9.872400px;}
._28{width:10.938508px;}
._c{width:12.022231px;}
._15{width:13.489592px;}
._11{width:15.025231px;}
._f{width:16.108200px;}
._17{width:17.534608px;}
._e{width:18.902854px;}
._a{width:20.400508px;}
._19{width:21.615838px;}
._16{width:23.849608px;}
._27{width:24.966000px;}
._1a{width:26.068500px;}
._10{width:27.673500px;}
._13{width:29.109300px;}
._12{width:30.113069px;}
._25{width:32.164500px;}
._26{width:35.593231px;}
._24{width:40.043338px;}
._3b{width:109.470000px;}
._37{width:115.014000px;}
._3a{width:144.159600px;}
._2c{width:148.893600px;}
._2b{width:153.252000px;}
._22{width:156.693000px;}
._1d{width:159.045000px;}
._2f{width:172.440000px;}
._36{width:175.429800px;}
._34{width:181.430400px;}
._55{width:184.392600px;}
._33{width:187.431000px;}
._42{width:189.054600px;}
._30{width:195.791400px;}
._35{width:202.878000px;}
._20{width:205.791000px;}
._1b{width:207.903000px;}
._2d{width:208.946400px;}
._21{width:210.411000px;}
._32{width:215.280000px;}
._2a{width:219.142800px;}
._1e{width:226.749000px;}
._29{width:230.820000px;}
._1c{width:232.791000px;}
._31{width:238.632000px;}
._1f{width:250.101000px;}
._4b{width:251.382600px;}
._38{width:253.621800px;}
._4a{width:296.364600px;}
._41{width:313.879200px;}
._52{width:324.162600px;}
._49{width:327.402600px;}
._4e{width:339.078600px;}
._46{width:342.942600px;}
._4c{width:345.294600px;}
._54{width:348.942600px;}
._43{width:350.754000px;}
._50{width:356.754600px;}
._3f{width:362.754600px;}
._45{width:364.278600px;}
._47{width:368.754600px;}
._57{width:370.410600px;}
._2e{width:389.346000px;}
._56{width:392.040600px;}
._48{width:395.190600px;}
._39{width:397.322400px;}
._3c{width:398.709000px;}
._53{width:402.660600px;}
._3e{width:417.660600px;}
._51{width:418.998600px;}
._4f{width:423.660600px;}
._3d{width:427.134600px;}
._4d{width:436.350600px;}
._40{width:759.888600px;}
._44{width:783.240600px;}
._9{width:2059.008000px;}
.fc8{color:rgb(16,15,13);}
.fc6{color:rgb(101,98,99);}
.fc1{color:rgb(56,116,161);}
.fc9{color:rgb(180,180,180);}
.fc7{color:rgb(35,31,32);}
.fc5{color:rgb(85,85,85);}
.fc4{color:rgb(51,51,51);}
.fc3{color:rgb(96,96,96);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:0.600000px;}
.fs11{font-size:23.010000px;}
.fs15{font-size:24.000000px;}
.fsa{font-size:24.780000px;}
.fs3{font-size:27.828506px;}
.fs4{font-size:31.804007px;}
.fs9{font-size:31.860000px;}
.fse{font-size:33.630000px;}
.fs0{font-size:35.779508px;}
.fsf{font-size:39.000000px;}
.fs2{font-size:39.755009px;}
.fs6{font-size:42.000000px;}
.fs10{font-size:43.125000px;}
.fs14{font-size:45.000000px;}
.fs5{font-size:47.706010px;}
.fs12{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fsb{font-size:60.000000px;}
.fsc{font-size:72.000000px;}
.fs1{font-size:79.510017px;}
.fs7{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.212321px;}
.yb{bottom:3.975493px;}
.y11{bottom:3.975494px;}
.yd{bottom:3.975495px;}
.y13{bottom:3.975496px;}
.y2b4{bottom:7.500000px;}
.y14f{bottom:13.873800px;}
.y14d{bottom:13.875150px;}
.y150{bottom:13.875300px;}
.y17{bottom:22.859102px;}
.y16{bottom:42.736606px;}
.y18{bottom:47.999400px;}
.y1ff{bottom:98.178600px;}
.y38{bottom:98.293500px;}
.y124{bottom:98.293650px;}
.ye3{bottom:98.293800px;}
.y18f{bottom:98.293950px;}
.y190{bottom:98.294100px;}
.y191{bottom:98.294250px;}
.y19f{bottom:98.355900px;}
.y163{bottom:98.631300px;}
.y1ad{bottom:98.683650px;}
.y95{bottom:98.801550px;}
.ycd{bottom:99.043800px;}
.y1d1{bottom:99.078600px;}
.y1eb{bottom:99.371400px;}
.y27e{bottom:99.791400px;}
.y37{bottom:113.293500px;}
.y248{bottom:113.293800px;}
.y27d{bottom:114.041400px;}
.y1fe{bottom:115.428600px;}
.ye2{bottom:115.543800px;}
.y19e{bottom:115.605900px;}
.y162{bottom:115.881300px;}
.y1ac{bottom:115.933650px;}
.y94{bottom:116.051550px;}
.ycc{bottom:116.293800px;}
.y1d0{bottom:116.328600px;}
.y1ea{bottom:116.621400px;}
.y123{bottom:123.793650px;}
.y247{bottom:127.543800px;}
.y27c{bottom:128.291400px;}
.y36{bottom:128.293500px;}
.y1fd{bottom:132.678600px;}
.ye1{bottom:132.793800px;}
.y19d{bottom:132.855900px;}
.y161{bottom:133.131300px;}
.y1ab{bottom:133.183650px;}
.y93{bottom:133.301550px;}
.ycb{bottom:133.543800px;}
.y1cf{bottom:133.578600px;}
.y1e9{bottom:133.871400px;}
.y122{bottom:138.043650px;}
.y5c{bottom:141.793500px;}
.y246{bottom:141.793800px;}
.y27b{bottom:142.541400px;}
.y35{bottom:143.293500px;}
.y215{bottom:147.793800px;}
.y1fc{bottom:149.928600px;}
.ye0{bottom:150.043800px;}
.y19c{bottom:150.105900px;}
.y160{bottom:150.381300px;}
.y1aa{bottom:150.433650px;}
.y92{bottom:150.551550px;}
.yca{bottom:150.793800px;}
.y1ce{bottom:150.828600px;}
.y1e8{bottom:151.121400px;}
.y121{bottom:152.293650px;}
.y245{bottom:156.043800px;}
.y27a{bottom:156.791400px;}
.y34{bottom:158.293500px;}
.y5b{bottom:162.793500px;}
.y120{bottom:166.543650px;}
.y1fb{bottom:167.178600px;}
.ydf{bottom:167.293800px;}
.y19b{bottom:167.355900px;}
.y15f{bottom:167.631300px;}
.y1a9{bottom:167.683650px;}
.y91{bottom:167.801550px;}
.yc9{bottom:168.043800px;}
.y1cd{bottom:168.078600px;}
.y244{bottom:170.293800px;}
.y279{bottom:171.041400px;}
.y33{bottom:173.293500px;}
.y11f{bottom:180.793650px;}
.y5a{bottom:183.793500px;}
.y1fa{bottom:184.428600px;}
.yde{bottom:184.543800px;}
.y19a{bottom:184.605900px;}
.y15e{bottom:184.881300px;}
.y1a8{bottom:184.933650px;}
.y90{bottom:185.051550px;}
.y278{bottom:185.291400px;}
.yc8{bottom:185.293800px;}
.y1d3{bottom:185.328600px;}
.y1cc{bottom:186.078600px;}
.y32{bottom:188.293500px;}
.y11e{bottom:195.043650px;}
.y1ef{bottom:195.418500px;}
.y14e{bottom:197.295000px;}
.y243{bottom:198.793800px;}
.y277{bottom:199.541400px;}
.y1f9{bottom:201.678600px;}
.ydd{bottom:201.793800px;}
.y199{bottom:201.855900px;}
.y15d{bottom:202.131300px;}
.y1a7{bottom:202.183650px;}
.y8f{bottom:202.301550px;}
.yc7{bottom:202.543800px;}
.y1d2{bottom:202.578600px;}
.y31{bottom:203.293500px;}
.y59{bottom:204.793500px;}
.y11d{bottom:209.293650px;}
.y18c{bottom:210.913500px;}
.y242{bottom:213.043800px;}
.y276{bottom:213.791400px;}
.y30{bottom:218.293500px;}
.y1f8{bottom:218.928600px;}
.ydc{bottom:219.043800px;}
.y198{bottom:219.105900px;}
.y15c{bottom:219.381300px;}
.y1a6{bottom:219.433650px;}
.y8e{bottom:219.551550px;}
.yc6{bottom:219.793800px;}
.y1cb{bottom:219.828600px;}
.y14a{bottom:222.793800px;}
.y11c{bottom:223.543650px;}
.y1ed{bottom:224.668500px;}
.y58{bottom:225.793500px;}
.y241{bottom:227.293800px;}
.y275{bottom:228.041400px;}
.y2f{bottom:233.293500px;}
.y1f7{bottom:236.178600px;}
.ydb{bottom:236.293800px;}
.y197{bottom:236.355900px;}
.y15b{bottom:236.631300px;}
.y1a5{bottom:236.683650px;}
.y8d{bottom:236.801550px;}
.yc5{bottom:237.043800px;}
.y1ca{bottom:237.078600px;}
.y11b{bottom:237.793650px;}
.y149{bottom:240.043800px;}
.y240{bottom:241.543800px;}
.y274{bottom:242.291400px;}
.y57{bottom:246.793500px;}
.y11a{bottom:252.043650px;}
.y1f6{bottom:253.428600px;}
.yda{bottom:253.543800px;}
.y196{bottom:253.605900px;}
.y15a{bottom:253.881300px;}
.y1a4{bottom:253.933650px;}
.y8c{bottom:254.051550px;}
.y2e{bottom:254.293500px;}
.yc4{bottom:254.293800px;}
.y1c9{bottom:254.328600px;}
.y16a{bottom:255.381300px;}
.y23f{bottom:255.793800px;}
.y273{bottom:256.541400px;}
.y148{bottom:257.293800px;}
.y56{bottom:267.793500px;}
.y214{bottom:268.543800px;}
.y2d{bottom:269.293500px;}
.y23e{bottom:270.043800px;}
.y1f5{bottom:270.678600px;}
.y272{bottom:270.791400px;}
.yd9{bottom:270.793800px;}
.y195{bottom:270.855900px;}
.y159{bottom:271.131300px;}
.y1a3{bottom:271.183650px;}
.y8b{bottom:271.301550px;}
.yc3{bottom:271.543800px;}
.y1c8{bottom:271.578600px;}
.y147{bottom:274.543800px;}
.y119{bottom:280.915500px;}
.y2c{bottom:284.293500px;}
.y23d{bottom:284.293800px;}
.y271{bottom:285.041400px;}
.y1f4{bottom:287.928600px;}
.yd8{bottom:288.043800px;}
.y194{bottom:288.105900px;}
.y158{bottom:288.381300px;}
.y1a2{bottom:288.433650px;}
.y8a{bottom:288.551550px;}
.y55{bottom:288.793500px;}
.yc2{bottom:288.793800px;}
.y1c7{bottom:288.828600px;}
.y146{bottom:291.793800px;}
.y169{bottom:296.631300px;}
.y23c{bottom:298.543800px;}
.y270{bottom:299.291400px;}
.yf1{bottom:304.543800px;}
.y201{bottom:305.178600px;}
.y2b{bottom:305.293500px;}
.yd7{bottom:305.293800px;}
.y193{bottom:305.355900px;}
.y157{bottom:305.631300px;}
.y1a1{bottom:305.683650px;}
.y89{bottom:305.801550px;}
.yc1{bottom:306.043800px;}
.y1c6{bottom:306.078600px;}
.y1f3{bottom:306.678600px;}
.y145{bottom:309.043650px;}
.y118{bottom:309.787350px;}
.y54{bottom:309.793500px;}
.y23b{bottom:312.793650px;}
.y26f{bottom:313.541400px;}
.y168{bottom:313.881300px;}
.y2a{bottom:320.293500px;}
.y200{bottom:322.428600px;}
.yd6{bottom:322.543650px;}
.y192{bottom:322.605900px;}
.y156{bottom:322.881300px;}
.y1a0{bottom:322.933800px;}
.y88{bottom:323.051550px;}
.yc0{bottom:323.293650px;}
.y1c5{bottom:323.328600px;}
.y117{bottom:324.037350px;}
.y2b3{bottom:325.474650px;}
.y1ee{bottom:325.933050px;}
.y23a{bottom:327.043650px;}
.y26e{bottom:327.791400px;}
.y53{bottom:330.793500px;}
.y167{bottom:331.131300px;}
.y29{bottom:335.293500px;}
.y1f2{bottom:339.678600px;}
.y2b2{bottom:339.724650px;}
.yd5{bottom:339.793650px;}
.y155{bottom:340.131300px;}
.y87{bottom:340.301550px;}
.ybf{bottom:340.543650px;}
.y1c4{bottom:340.578600px;}
.y239{bottom:341.293650px;}
.y26d{bottom:342.041400px;}
.y144{bottom:342.793650px;}
.y166{bottom:348.381300px;}
.y28{bottom:350.293500px;}
.y52{bottom:351.793500px;}
.y116{bottom:352.909200px;}
.y2b1{bottom:353.974650px;}
.y238{bottom:355.543650px;}
.y26c{bottom:356.291400px;}
.y1f1{bottom:356.928600px;}
.yd4{bottom:357.043650px;}
.y154{bottom:357.381300px;}
.y86{bottom:357.551550px;}
.ybe{bottom:357.793650px;}
.y1c3{bottom:357.828600px;}
.y143{bottom:360.043650px;}
.y27{bottom:365.293500px;}
.y165{bottom:365.631300px;}
.y1af{bottom:366.285900px;}
.y2b0{bottom:368.224650px;}
.y237{bottom:369.793650px;}
.y26b{bottom:370.541400px;}
.y51{bottom:372.793500px;}
.yd3{bottom:374.293650px;}
.y85{bottom:374.801550px;}
.ybd{bottom:375.043650px;}
.y18b{bottom:375.793650px;}
.y142{bottom:377.293650px;}
.y2af{bottom:382.474650px;}
.y164{bottom:382.881300px;}
.y236{bottom:384.043650px;}
.y26a{bottom:384.791400px;}
.y14c{bottom:387.043500px;}
.y213{bottom:391.288200px;}
.yd2{bottom:391.543650px;}
.y84{bottom:392.051550px;}
.y1c2{bottom:392.188200px;}
.ybc{bottom:392.293650px;}
.y50{bottom:393.793500px;}
.y141{bottom:394.543650px;}
.y2ae{bottom:396.724650px;}
.y26{bottom:397.543500px;}
.y235{bottom:398.293650px;}
.y115{bottom:398.801550px;}
.y269{bottom:399.041400px;}
.y153{bottom:400.131300px;}
.yd1{bottom:408.793650px;}
.y83{bottom:409.301550px;}
.ybb{bottom:409.543650px;}
.y2ad{bottom:410.974650px;}
.y140{bottom:411.793650px;}
.y25{bottom:412.543500px;}
.y234{bottom:412.543650px;}
.y268{bottom:413.291400px;}
.y4f{bottom:414.793500px;}
.y114{bottom:416.051550px;}
.y212{bottom:416.788200px;}
.y152{bottom:417.381300px;}
.y1c1{bottom:417.688200px;}
.y18a{bottom:417.793650px;}
.y2ac{bottom:425.224650px;}
.yd0{bottom:426.043650px;}
.y82{bottom:426.551550px;}
.yba{bottom:426.793650px;}
.y267{bottom:427.541400px;}
.y24{bottom:427.543500px;}
.y13f{bottom:429.043650px;}
.y211{bottom:431.038200px;}
.y1c0{bottom:431.938200px;}
.y113{bottom:433.301550px;}
.y151{bottom:434.631300px;}
.y189{bottom:435.043650px;}
.y4e{bottom:435.793500px;}
.y2ab{bottom:439.474650px;}
.y233{bottom:441.043650px;}
.y266{bottom:441.791400px;}
.ycf{bottom:443.293650px;}
.y81{bottom:443.801550px;}
.yf0{bottom:444.043650px;}
.y210{bottom:445.288200px;}
.y1bf{bottom:446.188200px;}
.y13e{bottom:446.293650px;}
.y23{bottom:448.543500px;}
.y112{bottom:450.551550px;}
.y188{bottom:452.293650px;}
.y2aa{bottom:453.724650px;}
.y232{bottom:455.293650px;}
.y265{bottom:456.041400px;}
.y4d{bottom:456.793500px;}
.y20f{bottom:459.538200px;}
.y1be{bottom:460.438200px;}
.yb9{bottom:460.543650px;}
.y80{bottom:461.051550px;}
.yef{bottom:461.293650px;}
.y22{bottom:463.543500px;}
.y13d{bottom:463.543650px;}
.y111{bottom:467.801550px;}
.y2a9{bottom:467.974650px;}
.y187{bottom:469.543650px;}
.y264{bottom:470.291400px;}
.y20e{bottom:473.788200px;}
.y1bd{bottom:474.688200px;}
.y4c{bottom:477.793500px;}
.yb8{bottom:477.793650px;}
.y7f{bottom:478.301550px;}
.y21{bottom:478.543500px;}
.yee{bottom:478.543650px;}
.y13c{bottom:480.793650px;}
.y2a8{bottom:482.224650px;}
.y231{bottom:483.793650px;}
.y263{bottom:484.541400px;}
.y110{bottom:485.051550px;}
.y186{bottom:486.793650px;}
.y16c{bottom:487.928400px;}
.y20d{bottom:488.038200px;}
.y1bc{bottom:488.938200px;}
.y20{bottom:493.543500px;}
.yb7{bottom:495.043650px;}
.y7e{bottom:495.551550px;}
.yed{bottom:495.793650px;}
.y2a7{bottom:496.474650px;}
.y13b{bottom:498.043650px;}
.y262{bottom:498.791400px;}
.y4b{bottom:498.793500px;}
.y16b{bottom:502.178400px;}
.y20c{bottom:502.288200px;}
.y10f{bottom:502.301550px;}
.y1bb{bottom:503.188200px;}
.y185{bottom:504.043650px;}
.y1f{bottom:508.543500px;}
.y2a6{bottom:510.724650px;}
.yb6{bottom:512.293650px;}
.y7d{bottom:512.801550px;}
.y261{bottom:513.041400px;}
.yec{bottom:513.043650px;}
.y13a{bottom:515.293650px;}
.y20b{bottom:516.538200px;}
.y1ba{bottom:517.438200px;}
.y10e{bottom:519.551550px;}
.y4a{bottom:519.793500px;}
.y184{bottom:521.293650px;}
.y2a5{bottom:524.974650px;}
.y230{bottom:526.543650px;}
.y260{bottom:527.291400px;}
.y1e{bottom:529.543500px;}
.yb5{bottom:529.543650px;}
.y7c{bottom:530.051550px;}
.yeb{bottom:530.293650px;}
.y20a{bottom:530.788200px;}
.y1b9{bottom:531.688200px;}
.y10d{bottom:536.801550px;}
.y183{bottom:538.543650px;}
.y2a4{bottom:539.224650px;}
.y49{bottom:540.793500px;}
.y22f{bottom:540.793650px;}
.y25f{bottom:541.541400px;}
.y1d{bottom:544.543500px;}
.y209{bottom:545.038200px;}
.y1b8{bottom:545.938200px;}
.yb4{bottom:546.793650px;}
.y7b{bottom:547.301550px;}
.yea{bottom:547.543650px;}
.y139{bottom:548.293650px;}
.y2a3{bottom:553.474650px;}
.y10c{bottom:554.051550px;}
.y22e{bottom:555.043650px;}
.y25e{bottom:555.791400px;}
.y182{bottom:555.793650px;}
.y208{bottom:559.288200px;}
.y1c{bottom:559.543500px;}
.y1b7{bottom:560.188200px;}
.y48{bottom:561.793500px;}
.yb3{bottom:564.043650px;}
.y7a{bottom:564.551550px;}
.ye9{bottom:564.793650px;}
.y138{bottom:565.543650px;}
.y2a2{bottom:567.724650px;}
.y22d{bottom:569.293650px;}
.y25d{bottom:570.041400px;}
.y10b{bottom:571.301550px;}
.y181{bottom:573.043650px;}
.y207{bottom:573.538200px;}
.y1b5{bottom:574.438200px;}
.yb2{bottom:581.293650px;}
.y79{bottom:581.801550px;}
.y2a1{bottom:581.974650px;}
.ye8{bottom:582.043650px;}
.y47{bottom:582.793500px;}
.y137{bottom:582.793650px;}
.y22c{bottom:583.543650px;}
.y25c{bottom:584.291400px;}
.y206{bottom:587.788200px;}
.y10a{bottom:588.551550px;}
.y1b4{bottom:588.688200px;}
.y180{bottom:590.293650px;}
.y1b6{bottom:592.622550px;}
.y2a0{bottom:596.224650px;}
.y22b{bottom:597.793650px;}
.y25b{bottom:598.541400px;}
.yb1{bottom:598.543650px;}
.y78{bottom:599.051550px;}
.ye7{bottom:599.293650px;}
.y136{bottom:600.043650px;}
.y46{bottom:603.793500px;}
.y109{bottom:605.801550px;}
.y205{bottom:605.972700px;}
.y1b3{bottom:606.872550px;}
.y17f{bottom:607.543650px;}
.y29f{bottom:610.474650px;}
.y22a{bottom:612.043650px;}
.y25a{bottom:612.791400px;}
.y1ec{bottom:613.634250px;}
.yb0{bottom:615.793650px;}
.y77{bottom:616.301550px;}
.ye6{bottom:616.543650px;}
.y135{bottom:617.293650px;}
.y108{bottom:623.051550px;}
.y29e{bottom:624.724650px;}
.y45{bottom:624.793500px;}
.y17e{bottom:624.793650px;}
.y229{bottom:626.293650px;}
.y259{bottom:627.041400px;}
.yaf{bottom:633.043650px;}
.y76{bottom:633.551550px;}
.ye5{bottom:633.793650px;}
.y134{bottom:634.543650px;}
.y204{bottom:635.222700px;}
.y1b2{bottom:636.122550px;}
.y29d{bottom:638.974650px;}
.y107{bottom:640.301550px;}
.y228{bottom:640.543650px;}
.y258{bottom:641.291400px;}
.y17d{bottom:642.043650px;}
.y44{bottom:645.793500px;}
.yae{bottom:650.293650px;}
.y75{bottom:650.801550px;}
.y133{bottom:651.793650px;}
.ye4{bottom:652.543650px;}
.y29c{bottom:653.224650px;}
.y227{bottom:654.793650px;}
.y257{bottom:655.541400px;}
.y106{bottom:657.551550px;}
.y17c{bottom:659.293650px;}
.y203{bottom:664.094550px;}
.y1b1{bottom:664.994550px;}
.y29b{bottom:667.474650px;}
.yad{bottom:667.543650px;}
.y74{bottom:668.051550px;}
.y132{bottom:669.043650px;}
.y256{bottom:669.791400px;}
.y105{bottom:674.801550px;}
.y17b{bottom:676.543650px;}
.y29a{bottom:681.724650px;}
.y226{bottom:683.293650px;}
.y255{bottom:684.041400px;}
.yac{bottom:684.793650px;}
.y73{bottom:685.301550px;}
.y131{bottom:686.293650px;}
.y43{bottom:687.793500px;}
.y202{bottom:692.966400px;}
.y17a{bottom:693.793650px;}
.y1b0{bottom:693.866400px;}
.y299{bottom:695.974650px;}
.y225{bottom:697.543650px;}
.y254{bottom:698.291400px;}
.yab{bottom:702.043650px;}
.y72{bottom:702.551550px;}
.y130{bottom:703.543650px;}
.y42{bottom:706.573500px;}
.y298{bottom:710.224650px;}
.y179{bottom:711.043650px;}
.y224{bottom:711.793650px;}
.y104{bottom:712.301550px;}
.y253{bottom:712.541400px;}
.yaa{bottom:719.293650px;}
.y71{bottom:719.801550px;}
.y12f{bottom:720.793650px;}
.y297{bottom:724.474650px;}
.y223{bottom:726.043650px;}
.y252{bottom:726.791400px;}
.y178{bottom:728.293650px;}
.y103{bottom:729.551550px;}
.y40{bottom:731.293500px;}
.y1f0{bottom:734.291250px;}
.y1ae{bottom:734.378250px;}
.y14b{bottom:735.043650px;}
.y41{bottom:736.153500px;}
.ya9{bottom:736.543650px;}
.y1e7{bottom:736.978200px;}
.y70{bottom:737.051550px;}
.y12e{bottom:738.043650px;}
.y296{bottom:738.724650px;}
.y222{bottom:740.293650px;}
.y251{bottom:741.041400px;}
.y177{bottom:745.543650px;}
.y102{bottom:746.801550px;}
.y3e{bottom:748.543500px;}
.y295{bottom:752.974650px;}
.y3f{bottom:753.403500px;}
.ya8{bottom:753.793650px;}
.y6f{bottom:754.301550px;}
.y221{bottom:754.543650px;}
.y250{bottom:755.291400px;}
.y12d{bottom:755.293650px;}
.y1e6{bottom:762.478200px;}
.y176{bottom:762.793650px;}
.y101{bottom:764.051550px;}
.y294{bottom:767.224650px;}
.y15{bottom:768.265513px;}
.y220{bottom:768.793800px;}
.y24f{bottom:769.541400px;}
.ya7{bottom:771.043800px;}
.y6e{bottom:771.551550px;}
.y12c{bottom:772.543800px;}
.y1e5{bottom:776.728200px;}
.y175{bottom:780.043800px;}
.y100{bottom:781.301550px;}
.y293{bottom:781.474800px;}
.y21f{bottom:783.043800px;}
.y24e{bottom:783.791400px;}
.y3d{bottom:787.543500px;}
.ya6{bottom:788.293800px;}
.y6d{bottom:788.801550px;}
.y12b{bottom:789.793800px;}
.y1e4{bottom:790.978200px;}
.y14{bottom:792.118518px;}
.y292{bottom:795.724800px;}
.y174{bottom:797.293800px;}
.y24d{bottom:798.041400px;}
.yff{bottom:798.551550px;}
.y1e3{bottom:805.228200px;}
.ya5{bottom:805.543800px;}
.y6c{bottom:806.051550px;}
.y12{bottom:806.245097px;}
.y12a{bottom:807.043800px;}
.y291{bottom:809.974800px;}
.y21e{bottom:811.543800px;}
.y24c{bottom:812.291400px;}
.y173{bottom:814.543800px;}
.yfe{bottom:815.801550px;}
.y1e2{bottom:819.478200px;}
.y3c{bottom:822.043500px;}
.y10{bottom:822.147102px;}
.ya4{bottom:822.793800px;}
.y6b{bottom:823.301550px;}
.y290{bottom:824.224800px;}
.y129{bottom:824.293800px;}
.y21d{bottom:825.793800px;}
.y24b{bottom:826.541400px;}
.y172{bottom:831.793800px;}
.yfd{bottom:833.051550px;}
.y1e1{bottom:833.728200px;}
.y28f{bottom:838.474800px;}
.ya3{bottom:840.043800px;}
.y6a{bottom:840.551550px;}
.y24a{bottom:840.791400px;}
.y128{bottom:841.543800px;}
.y18e{bottom:842.624250px;}
.y1e0{bottom:847.978200px;}
.y171{bottom:849.043800px;}
.yfc{bottom:850.301550px;}
.y28e{bottom:852.724800px;}
.y21c{bottom:854.293800px;}
.y249{bottom:855.041400px;}
.y3b{bottom:856.543500px;}
.ya2{bottom:857.293800px;}
.y69{bottom:857.801550px;}
.y127{bottom:858.793800px;}
.y1df{bottom:862.228200px;}
.yf{bottom:862.683658px;}
.y170{bottom:866.293800px;}
.y28d{bottom:866.974800px;}
.yfb{bottom:867.551550px;}
.ya1{bottom:874.543800px;}
.y68{bottom:875.051550px;}
.y21b{bottom:875.293800px;}
.y126{bottom:876.043800px;}
.y1de{bottom:876.478200px;}
.y28c{bottom:881.224800px;}
.y16f{bottom:883.543800px;}
.yfa{bottom:884.801550px;}
.ye{bottom:886.536664px;}
.y1dd{bottom:890.728200px;}
.y3a{bottom:891.043500px;}
.ya0{bottom:891.793800px;}
.y67{bottom:892.301550px;}
.y125{bottom:893.293800px;}
.y28b{bottom:895.474800px;}
.yc{bottom:900.663243px;}
.y16e{bottom:900.793800px;}
.yf9{bottom:902.051550px;}
.y1dc{bottom:904.978200px;}
.y9f{bottom:909.043800px;}
.y66{bottom:909.551550px;}
.y28a{bottom:909.724800px;}
.y21a{bottom:909.793800px;}
.ya{bottom:916.565249px;}
.y16d{bottom:918.043800px;}
.y1db{bottom:919.228200px;}
.y289{bottom:923.974800px;}
.y39{bottom:925.543500px;}
.y9e{bottom:926.293800px;}
.y65{bottom:926.801550px;}
.y219{bottom:927.043800px;}
.y1da{bottom:933.478200px;}
.y288{bottom:938.224800px;}
.yf8{bottom:941.051550px;}
.y9d{bottom:943.543800px;}
.y64{bottom:944.051550px;}
.y218{bottom:944.293800px;}
.y9{bottom:947.163052px;}
.y1d9{bottom:947.728200px;}
.y287{bottom:952.474800px;}
.yf7{bottom:958.301550px;}
.y9c{bottom:960.793800px;}
.y63{bottom:961.301550px;}
.y217{bottom:961.543800px;}
.y1d8{bottom:961.978200px;}
.y286{bottom:966.724800px;}
.y8{bottom:974.991558px;}
.yf6{bottom:975.551550px;}
.y9b{bottom:978.043800px;}
.y62{bottom:978.551550px;}
.y1d7{bottom:980.162700px;}
.y285{bottom:980.974800px;}
.y18d{bottom:982.189350px;}
.y7{bottom:990.893561px;}
.yf5{bottom:992.801550px;}
.y216{bottom:993.043800px;}
.y284{bottom:995.224800px;}
.y9a{bottom:995.293800px;}
.y61{bottom:995.801550px;}
.y1d6{bottom:1009.412700px;}
.y283{bottom:1009.474800px;}
.yf4{bottom:1010.051550px;}
.y99{bottom:1012.543800px;}
.y60{bottom:1013.051550px;}
.y6{bottom:1019.715942px;}
.y282{bottom:1023.724800px;}
.yf3{bottom:1027.301550px;}
.y98{bottom:1029.793800px;}
.y5f{bottom:1030.301550px;}
.y5{bottom:1034.624071px;}
.y281{bottom:1037.974800px;}
.y1d5{bottom:1038.284550px;}
.yf2{bottom:1044.551550px;}
.y97{bottom:1047.043800px;}
.y280{bottom:1052.224800px;}
.y5e{bottom:1061.801550px;}
.y96{bottom:1064.293800px;}
.y27f{bottom:1066.474800px;}
.y1d4{bottom:1067.156400px;}
.y4{bottom:1076.366830px;}
.y1b{bottom:1084.644750px;}
.y1a{bottom:1096.644750px;}
.y3{bottom:1104.195336px;}
.y19{bottom:1108.644750px;}
.yce{bottom:1116.794250px;}
.y5d{bottom:1116.794400px;}
.y2{bottom:1144.944219px;}
.h29{height:0.471600px;}
.h9{height:12.920361px;}
.h12{height:18.064620px;}
.h6{height:20.151208px;}
.h7{height:23.029952px;}
.h11{height:23.289660px;}
.h2c{height:25.031250px;}
.h1d{height:25.498500px;}
.h19{height:25.500000px;}
.h3{height:25.908696px;}
.h17{height:28.431000px;}
.h5{height:28.787440px;}
.h1a{height:29.143066px;}
.h22{height:29.594160px;}
.he{height:30.618000px;}
.hd{height:30.702000px;}
.h2b{height:32.130000px;}
.h2a{height:32.220000px;}
.hc{height:33.012000px;}
.h27{height:34.368000px;}
.h8{height:34.544928px;}
.h23{height:34.597080px;}
.h25{height:34.597680px;}
.h10{height:39.474000px;}
.h15{height:40.812000px;}
.h16{height:43.860000px;}
.h1e{height:44.598480px;}
.h1f{height:44.599080px;}
.h20{height:44.599680px;}
.h13{height:47.160000px;}
.h24{height:48.750000px;}
.h1c{height:49.962000px;}
.h18{height:49.962600px;}
.h14{height:56.592000px;}
.h21{height:61.512000px;}
.h4{height:65.533647px;}
.h1b{height:66.643066px;}
.h28{height:69.381000px;}
.hf{height:99.036000px;}
.h26{height:345.600000px;}
.hb{height:1169.250000px;}
.ha{height:1169.292000px;}
.h2{height:1261.227619px;}
.h0{height:1261.439940px;}
.h1{height:1261.500000px;}
.w5{width:19.500000px;}
.w6{width:19.501500px;}
.w2{width:346.862448px;}
.w7{width:488.520000px;}
.w0{width:892.439940px;}
.w1{width:892.500000px;}
.w3{width:892.914000px;}
.w4{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:8.751450px;}
.x31{left:13.124250px;}
.x1{left:59.632513px;}
.x7{left:64.601889px;}
.x8{left:68.031000px;}
.x20{left:71.426700px;}
.x1e{left:75.478350px;}
.x43{left:76.656000px;}
.x11{left:79.217100px;}
.x21{left:80.371950px;}
.x17{left:81.915150px;}
.x4f{left:83.031000px;}
.x29{left:85.038900px;}
.x22{left:88.308600px;}
.x19{left:95.145000px;}
.x1a{left:96.698400px;}
.x3{left:99.387518px;}
.x1d{left:102.736500px;}
.x1b{left:106.043850px;}
.x16{left:108.994800px;}
.x4{left:110.320149px;}
.xe{left:114.013500px;}
.x34{left:116.399700px;}
.x1f{left:121.804500px;}
.x35{left:130.649700px;}
.x13{left:134.404500px;}
.x18{left:136.000350px;}
.xf{left:145.922400px;}
.x12{left:147.487200px;}
.x15{left:149.828700px;}
.x14{left:159.110400px;}
.xd{left:172.172100px;}
.x46{left:180.652650px;}
.xc{left:187.943100px;}
.x1c{left:195.534750px;}
.x10{left:199.020450px;}
.x4b{left:202.008000px;}
.x36{left:203.021550px;}
.x37{left:217.271550px;}
.x38{left:231.521550px;}
.x39{left:245.771550px;}
.x3a{left:260.021550px;}
.x23{left:263.623350px;}
.x3b{left:274.271550px;}
.x3c{left:288.521550px;}
.x3d{left:302.771550px;}
.x3e{left:317.021550px;}
.x4a{left:325.158000px;}
.x47{left:328.077000px;}
.x3f{left:331.271550px;}
.x45{left:332.294700px;}
.x24{left:337.706250px;}
.x49{left:342.718500px;}
.x40{left:345.521550px;}
.x41{left:359.771550px;}
.x28{left:366.960300px;}
.x42{left:385.271550px;}
.x4d{left:405.767100px;}
.x48{left:415.972950px;}
.x4e{left:427.246200px;}
.x44{left:437.639400px;}
.x2{left:446.249971px;}
.x2a{left:457.086600px;}
.x50{left:472.086600px;}
.x2b{left:474.094500px;}
.x5{left:486.004991px;}
.x6{left:496.937607px;}
.x25{left:501.375000px;}
.x33{left:534.946500px;}
.x2f{left:554.807850px;}
.x2e{left:558.171900px;}
.x2c{left:560.646300px;}
.x26{left:673.805700px;}
.xb{left:675.079500px;}
.xa{left:702.490500px;}
.x30{left:710.550000px;}
.x9{left:714.847800px;}
.x32{left:730.049250px;}
.x2d{left:735.781200px;}
.x27{left:780.721950px;}
@media print{
.v8{vertical-align:-25.840000pt;}
.ve{vertical-align:-19.040000pt;}
.v1{vertical-align:-17.280000pt;}
.v2{vertical-align:-13.440000pt;}
.v4{vertical-align:-7.600000pt;}
.vd{vertical-align:-1.344000pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.600000pt;}
.v5{vertical-align:10.667200pt;}
.vc{vertical-align:12.479467pt;}
.v3{vertical-align:13.440000pt;}
.v7{vertical-align:18.239467pt;}
.va{vertical-align:25.333333pt;}
.vf{vertical-align:32.328000pt;}
.v6{vertical-align:33.333333pt;}
.vb{vertical-align:38.773333pt;}
.ls37{letter-spacing:-4.560000pt;}
.lsd{letter-spacing:-1.653333pt;}
.ls52{letter-spacing:-1.560000pt;}
.ls7{letter-spacing:-1.440000pt;}
.ls4c{letter-spacing:-1.418667pt;}
.lsa{letter-spacing:-1.386667pt;}
.ls4d{letter-spacing:-1.368000pt;}
.lsc{letter-spacing:-1.333333pt;}
.ls6{letter-spacing:-1.280000pt;}
.ls24{letter-spacing:-1.266667pt;}
.lse{letter-spacing:-1.226667pt;}
.ls25{letter-spacing:-1.216000pt;}
.ls58{letter-spacing:-1.200000pt;}
.ls3c{letter-spacing:-1.165333pt;}
.lsf{letter-spacing:-1.120000pt;}
.ls1a{letter-spacing:-1.114667pt;}
.ls34{letter-spacing:-1.013333pt;}
.ls3b{letter-spacing:-0.962667pt;}
.ls2f{letter-spacing:-0.912000pt;}
.ls60{letter-spacing:-0.880000pt;}
.ls21{letter-spacing:-0.861333pt;}
.ls9{letter-spacing:-0.853333pt;}
.ls55{letter-spacing:-0.840000pt;}
.ls17{letter-spacing:-0.810667pt;}
.ls10{letter-spacing:-0.800000pt;}
.ls16{letter-spacing:-0.760000pt;}
.ls5a{letter-spacing:-0.720000pt;}
.ls35{letter-spacing:-0.709333pt;}
.ls30{letter-spacing:-0.658667pt;}
.ls2a{letter-spacing:-0.608000pt;}
.ls61{letter-spacing:-0.600000pt;}
.ls22{letter-spacing:-0.557333pt;}
.ls4{letter-spacing:-0.522667pt;}
.ls56{letter-spacing:-0.520000pt;}
.ls19{letter-spacing:-0.506667pt;}
.ls5e{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.456000pt;}
.ls53{letter-spacing:-0.440000pt;}
.ls2e{letter-spacing:-0.405333pt;}
.ls57{letter-spacing:-0.400000pt;}
.ls5{letter-spacing:-0.373333pt;}
.ls5b{letter-spacing:-0.360000pt;}
.ls14{letter-spacing:-0.354667pt;}
.ls46{letter-spacing:-0.336000pt;}
.ls54{letter-spacing:-0.320000pt;}
.ls26{letter-spacing:-0.304000pt;}
.ls18{letter-spacing:-0.253333pt;}
.ls5f{letter-spacing:-0.240000pt;}
.ls36{letter-spacing:-0.239147pt;}
.ls11{letter-spacing:-0.213333pt;}
.ls2d{letter-spacing:-0.202667pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls15{letter-spacing:-0.152000pt;}
.ls2b{letter-spacing:-0.101333pt;}
.ls62{letter-spacing:-0.058667pt;}
.ls8{letter-spacing:-0.053333pt;}
.ls1b{letter-spacing:-0.050667pt;}
.ls59{letter-spacing:-0.040000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000107pt;}
.ls5d{letter-spacing:0.080000pt;}
.ls50{letter-spacing:0.101333pt;}
.ls5c{letter-spacing:0.360000pt;}
.ls23{letter-spacing:0.456000pt;}
.ls51{letter-spacing:0.720000pt;}
.ls38{letter-spacing:2.641067pt;}
.ls3a{letter-spacing:2.641600pt;}
.ls39{letter-spacing:3.500000pt;}
.ls49{letter-spacing:4.000000pt;}
.ls1f{letter-spacing:5.631467pt;}
.ls32{letter-spacing:5.780267pt;}
.ls48{letter-spacing:7.825600pt;}
.ls4e{letter-spacing:8.241067pt;}
.ls47{letter-spacing:10.035733pt;}
.ls4a{letter-spacing:10.201067pt;}
.ls13{letter-spacing:10.976000pt;}
.ls27{letter-spacing:11.842667pt;}
.ls28{letter-spacing:11.869333pt;}
.ls4b{letter-spacing:12.830933pt;}
.ls4f{letter-spacing:13.057067pt;}
.ls1c{letter-spacing:14.144533pt;}
.ls31{letter-spacing:14.803733pt;}
.ls20{letter-spacing:16.014933pt;}
.ls12{letter-spacing:16.852267pt;}
.ls33{letter-spacing:17.753067pt;}
.ls29{letter-spacing:18.715733pt;}
.ls1d{letter-spacing:21.284267pt;}
.ls1e{letter-spacing:21.715200pt;}
.ls41{letter-spacing:142.266133pt;}
.ls3f{letter-spacing:142.266667pt;}
.ls3e{letter-spacing:163.024000pt;}
.ls44{letter-spacing:368.192533pt;}
.ls3d{letter-spacing:368.196800pt;}
.ls40{letter-spacing:388.954667pt;}
.ls42{letter-spacing:631.468800pt;}
.ls1{letter-spacing:641.587733pt;}
.ls43{letter-spacing:660.880533pt;}
.ls2{letter-spacing:670.999467pt;}
.ls45{letter-spacing:867.413333pt;}
.ws1be{word-spacing:-867.413333pt;}
.ws136{word-spacing:-17.792000pt;}
.ws100{word-spacing:-14.826667pt;}
.ws7b{word-spacing:-11.957333pt;}
.wsfd{word-spacing:-11.602667pt;}
.ws1d{word-spacing:-11.501333pt;}
.ws1e8{word-spacing:-11.450667pt;}
.wsbf{word-spacing:-11.400000pt;}
.wsff{word-spacing:-11.197333pt;}
.ws7c{word-spacing:-11.146667pt;}
.ws1cf{word-spacing:-11.096000pt;}
.wsfc{word-spacing:-11.045333pt;}
.ws19a{word-spacing:-10.741333pt;}
.ws8{word-spacing:-10.378667pt;}
.ws1bd{word-spacing:-10.042667pt;}
.ws199{word-spacing:-10.032000pt;}
.ws7{word-spacing:-9.856000pt;}
.ws201{word-spacing:-9.800000pt;}
.ws1fe{word-spacing:-9.080000pt;}
.ws200{word-spacing:-9.000000pt;}
.wsb{word-spacing:-8.810667pt;}
.ws260{word-spacing:-8.760000pt;}
.ws1ff{word-spacing:-8.320000pt;}
.ws9{word-spacing:-7.872960pt;}
.ws1{word-spacing:-7.229752pt;}
.ws2{word-spacing:-7.126223pt;}
.ws15b{word-spacing:-6.785787pt;}
.wsfe{word-spacing:-6.546640pt;}
.ws5{word-spacing:-6.506777pt;}
.ws15d{word-spacing:-6.434667pt;}
.ws0{word-spacing:-6.413601pt;}
.ws1a8{word-spacing:-6.123413pt;}
.ws4{word-spacing:-5.700979pt;}
.ws137{word-spacing:-3.435200pt;}
.ws13{word-spacing:-3.200000pt;}
.wsd{word-spacing:-2.986667pt;}
.wse{word-spacing:-2.933333pt;}
.ws19{word-spacing:-2.293333pt;}
.ws198{word-spacing:-2.219200pt;}
.ws1b{word-spacing:-2.186667pt;}
.ws17{word-spacing:-1.440000pt;}
.wsa{word-spacing:-1.045333pt;}
.ws14{word-spacing:-0.746667pt;}
.ws25f{word-spacing:-0.720000pt;}
.ws1ae{word-spacing:-0.446133pt;}
.ws1ad{word-spacing:-0.444533pt;}
.ws15e{word-spacing:-0.410400pt;}
.ws1ac{word-spacing:-0.233067pt;}
.ws27a{word-spacing:-0.080000pt;}
.ws16{word-spacing:-0.053333pt;}
.ws16a{word-spacing:-0.050667pt;}
.ws170{word-spacing:-0.037333pt;}
.ws3{word-spacing:-0.035338pt;}
.ws186{word-spacing:-0.020453pt;}
.ws1af{word-spacing:-0.004267pt;}
.ws6{word-spacing:0.000000pt;}
.ws226{word-spacing:0.040000pt;}
.ws49{word-spacing:0.050667pt;}
.ws14f{word-spacing:0.101333pt;}
.ws78{word-spacing:0.152000pt;}
.ws210{word-spacing:0.160000pt;}
.wsbe{word-spacing:0.253333pt;}
.wscd{word-spacing:0.304000pt;}
.ws227{word-spacing:0.320000pt;}
.ws23{word-spacing:0.354667pt;}
.ws233{word-spacing:0.400000pt;}
.wsf9{word-spacing:0.405333pt;}
.ws19d{word-spacing:0.456000pt;}
.ws13f{word-spacing:0.506667pt;}
.ws225{word-spacing:0.520000pt;}
.ws1f4{word-spacing:0.557333pt;}
.ws1ea{word-spacing:0.608000pt;}
.ws1f{word-spacing:0.658667pt;}
.ws1dd{word-spacing:0.760000pt;}
.ws235{word-spacing:0.800000pt;}
.ws166{word-spacing:0.861333pt;}
.ws1ca{word-spacing:0.912000pt;}
.ws149{word-spacing:1.013333pt;}
.ws252{word-spacing:1.040000pt;}
.ws13d{word-spacing:1.064000pt;}
.ws27e{word-spacing:1.120000pt;}
.ws51{word-spacing:1.165333pt;}
.ws237{word-spacing:1.200000pt;}
.ws10f{word-spacing:1.216000pt;}
.ws2a5{word-spacing:1.221333pt;}
.ws15c{word-spacing:1.236267pt;}
.ws26e{word-spacing:1.240000pt;}
.ws1d2{word-spacing:1.266667pt;}
.ws18e{word-spacing:1.317333pt;}
.ws18{word-spacing:1.333333pt;}
.ws28f{word-spacing:1.360000pt;}
.ws83{word-spacing:1.469333pt;}
.ws24e{word-spacing:1.480000pt;}
.ws2b{word-spacing:1.570667pt;}
.wse3{word-spacing:1.621333pt;}
.ws278{word-spacing:1.640000pt;}
.ws1e5{word-spacing:1.672000pt;}
.ws211{word-spacing:1.720000pt;}
.ws256{word-spacing:1.840000pt;}
.wse4{word-spacing:1.925333pt;}
.ws164{word-spacing:1.976000pt;}
.wsf2{word-spacing:2.026667pt;}
.ws1ee{word-spacing:2.077333pt;}
.ws1e6{word-spacing:2.128000pt;}
.wse6{word-spacing:2.178667pt;}
.ws1b9{word-spacing:2.229333pt;}
.ws86{word-spacing:2.280000pt;}
.ws6c{word-spacing:2.330667pt;}
.ws266{word-spacing:2.360000pt;}
.ws11b{word-spacing:2.381333pt;}
.ws2c{word-spacing:2.432000pt;}
.wsba{word-spacing:2.482667pt;}
.ws250{word-spacing:2.520000pt;}
.ws139{word-spacing:2.533333pt;}
.ws23b{word-spacing:2.560000pt;}
.ws48{word-spacing:2.584000pt;}
.ws109{word-spacing:2.634667pt;}
.ws28c{word-spacing:2.640000pt;}
.ws27f{word-spacing:2.680000pt;}
.ws1b0{word-spacing:2.685333pt;}
.ws1b7{word-spacing:2.786667pt;}
.wsd6{word-spacing:2.837333pt;}
.ws2a0{word-spacing:2.880000pt;}
.ws4f{word-spacing:2.888000pt;}
.ws9a{word-spacing:2.938667pt;}
.ws148{word-spacing:2.989333pt;}
.ws132{word-spacing:3.040000pt;}
.ws230{word-spacing:3.080000pt;}
.ws82{word-spacing:3.141333pt;}
.ws12{word-spacing:3.146667pt;}
.ws29d{word-spacing:3.160000pt;}
.ws5d{word-spacing:3.192000pt;}
.ws11{word-spacing:3.200000pt;}
.ws29{word-spacing:3.242667pt;}
.wsce{word-spacing:3.293333pt;}
.ws245{word-spacing:3.320000pt;}
.ws10{word-spacing:3.360000pt;}
.ws150{word-spacing:3.394667pt;}
.ws2a2{word-spacing:3.400000pt;}
.ws217{word-spacing:3.440000pt;}
.ws15a{word-spacing:3.445333pt;}
.ws2a{word-spacing:3.496000pt;}
.ws26f{word-spacing:3.520000pt;}
.ws1aa{word-spacing:3.546667pt;}
.ws27c{word-spacing:3.560000pt;}
.wsee{word-spacing:3.597333pt;}
.ws24d{word-spacing:3.600000pt;}
.ws15{word-spacing:3.680000pt;}
.ws1b8{word-spacing:3.698667pt;}
.ws141{word-spacing:3.749333pt;}
.ws1bb{word-spacing:3.750133pt;}
.ws22f{word-spacing:3.760000pt;}
.ws1f8{word-spacing:3.800000pt;}
.wse8{word-spacing:3.850667pt;}
.ws21a{word-spacing:3.880000pt;}
.wsea{word-spacing:3.901333pt;}
.ws72{word-spacing:3.952000pt;}
.ws1db{word-spacing:4.002667pt;}
.ws191{word-spacing:4.053333pt;}
.ws251{word-spacing:4.080000pt;}
.ws24{word-spacing:4.104000pt;}
.ws1e3{word-spacing:4.154667pt;}
.wsf4{word-spacing:4.205333pt;}
.wsa6{word-spacing:4.256000pt;}
.ws1fb{word-spacing:4.306667pt;}
.ws224{word-spacing:4.320000pt;}
.ws1f6{word-spacing:4.357333pt;}
.wsd8{word-spacing:4.408000pt;}
.ws88{word-spacing:4.458667pt;}
.ws249{word-spacing:4.480000pt;}
.ws45{word-spacing:4.560000pt;}
.ws298{word-spacing:4.600000pt;}
.ws3c{word-spacing:4.610667pt;}
.ws263{word-spacing:4.640000pt;}
.ws94{word-spacing:4.661333pt;}
.ws29c{word-spacing:4.720000pt;}
.ws9d{word-spacing:4.762667pt;}
.ws74{word-spacing:4.813333pt;}
.ws1a{word-spacing:4.853333pt;}
.wsc{word-spacing:4.906667pt;}
.ws155{word-spacing:4.914667pt;}
.ws1ba{word-spacing:4.965333pt;}
.ws52{word-spacing:5.016000pt;}
.ws218{word-spacing:5.040000pt;}
.ws1de{word-spacing:5.066667pt;}
.ws21d{word-spacing:5.200000pt;}
.ws21f{word-spacing:5.240000pt;}
.ws16c{word-spacing:5.258933pt;}
.ws16d{word-spacing:5.259200pt;}
.wsda{word-spacing:5.269333pt;}
.ws9b{word-spacing:5.320000pt;}
.wsb5{word-spacing:5.370667pt;}
.wsf{word-spacing:5.386667pt;}
.ws111{word-spacing:5.421333pt;}
.ws25a{word-spacing:5.440000pt;}
.ws1f7{word-spacing:5.472000pt;}
.ws255{word-spacing:5.520000pt;}
.ws40{word-spacing:5.522667pt;}
.ws2a3{word-spacing:5.560000pt;}
.ws140{word-spacing:5.573333pt;}
.ws8e{word-spacing:5.624000pt;}
.ws28b{word-spacing:5.640000pt;}
.ws133{word-spacing:5.674667pt;}
.ws21e{word-spacing:5.680000pt;}
.ws295{word-spacing:5.720000pt;}
.ws19c{word-spacing:5.725333pt;}
.ws26d{word-spacing:5.760000pt;}
.ws126{word-spacing:5.776000pt;}
.ws23a{word-spacing:5.800000pt;}
.ws104{word-spacing:5.877333pt;}
.ws2a1{word-spacing:5.960000pt;}
.ws262{word-spacing:6.000000pt;}
.wsab{word-spacing:6.029333pt;}
.ws26b{word-spacing:6.040000pt;}
.ws10c{word-spacing:6.130667pt;}
.ws258{word-spacing:6.160000pt;}
.wsf1{word-spacing:6.181333pt;}
.ws264{word-spacing:6.240000pt;}
.ws56{word-spacing:6.282667pt;}
.ws285{word-spacing:6.320000pt;}
.ws90{word-spacing:6.333333pt;}
.ws2e{word-spacing:6.384000pt;}
.ws81{word-spacing:6.434667pt;}
.ws23c{word-spacing:6.480000pt;}
.ws134{word-spacing:6.485333pt;}
.wsa7{word-spacing:6.536000pt;}
.ws10d{word-spacing:6.586667pt;}
.ws5c{word-spacing:6.688000pt;}
.ws219{word-spacing:6.720000pt;}
.ws9e{word-spacing:6.738667pt;}
.ws22b{word-spacing:6.760000pt;}
.wsb6{word-spacing:6.789333pt;}
.ws34{word-spacing:6.840000pt;}
.ws213{word-spacing:6.880000pt;}
.ws12e{word-spacing:6.890667pt;}
.ws269{word-spacing:6.920000pt;}
.ws151{word-spacing:6.992000pt;}
.ws24c{word-spacing:7.040000pt;}
.ws153{word-spacing:7.042667pt;}
.ws232{word-spacing:7.080000pt;}
.ws2f{word-spacing:7.093333pt;}
.ws19b{word-spacing:7.144000pt;}
.ws243{word-spacing:7.160000pt;}
.wsa3{word-spacing:7.194667pt;}
.ws22c{word-spacing:7.200000pt;}
.ws23d{word-spacing:7.240000pt;}
.ws159{word-spacing:7.245333pt;}
.ws194{word-spacing:7.296000pt;}
.ws143{word-spacing:7.346667pt;}
.ws47{word-spacing:7.397333pt;}
.ws25b{word-spacing:7.440000pt;}
.ws1d8{word-spacing:7.448000pt;}
.ws1e9{word-spacing:7.498667pt;}
.ws10e{word-spacing:7.549333pt;}
.ws12a{word-spacing:7.600000pt;}
.ws27d{word-spacing:7.640000pt;}
.ws73{word-spacing:7.650667pt;}
.ws26c{word-spacing:7.680000pt;}
.wsca{word-spacing:7.701333pt;}
.ws80{word-spacing:7.752000pt;}
.ws12f{word-spacing:7.802667pt;}
.ws1da{word-spacing:7.853333pt;}
.ws20f{word-spacing:7.880000pt;}
.ws5f{word-spacing:7.904000pt;}
.ws231{word-spacing:7.920000pt;}
.ws114{word-spacing:7.954667pt;}
.ws286{word-spacing:7.960000pt;}
.ws229{word-spacing:8.000000pt;}
.wsd0{word-spacing:8.005333pt;}
.ws254{word-spacing:8.040000pt;}
.wsc7{word-spacing:8.056000pt;}
.ws223{word-spacing:8.080000pt;}
.ws99{word-spacing:8.106667pt;}
.ws207{word-spacing:8.120000pt;}
.ws1f3{word-spacing:8.157333pt;}
.wseb{word-spacing:8.208000pt;}
.ws6f{word-spacing:8.258667pt;}
.ws135{word-spacing:8.288000pt;}
.ws62{word-spacing:8.309333pt;}
.ws115{word-spacing:8.360000pt;}
.ws25d{word-spacing:8.400000pt;}
.ws1cd{word-spacing:8.410667pt;}
.ws6d{word-spacing:8.461333pt;}
.ws214{word-spacing:8.480000pt;}
.ws1d5{word-spacing:8.512000pt;}
.ws265{word-spacing:8.520000pt;}
.ws268{word-spacing:8.560000pt;}
.ws4c{word-spacing:8.562667pt;}
.ws1b6{word-spacing:8.613333pt;}
.ws287{word-spacing:8.640000pt;}
.ws288{word-spacing:8.680000pt;}
.ws77{word-spacing:8.714667pt;}
.ws27b{word-spacing:8.760000pt;}
.ws14b{word-spacing:8.765333pt;}
.ws244{word-spacing:8.800000pt;}
.wsd1{word-spacing:8.816000pt;}
.ws1cb{word-spacing:8.866667pt;}
.ws5a{word-spacing:8.917333pt;}
.ws144{word-spacing:8.968000pt;}
.ws270{word-spacing:9.000000pt;}
.ws163{word-spacing:9.018667pt;}
.ws259{word-spacing:9.040000pt;}
.ws19f{word-spacing:9.069333pt;}
.ws206{word-spacing:9.080000pt;}
.ws101{word-spacing:9.120000pt;}
.ws2a4{word-spacing:9.160000pt;}
.wsa9{word-spacing:9.170667pt;}
.ws1a2{word-spacing:9.221333pt;}
.ws26a{word-spacing:9.240000pt;}
.ws196{word-spacing:9.272000pt;}
.ws20b{word-spacing:9.320000pt;}
.ws212{word-spacing:9.360000pt;}
.wsdb{word-spacing:9.373333pt;}
.ws71{word-spacing:9.424000pt;}
.ws3d{word-spacing:9.474667pt;}
.ws23e{word-spacing:9.520000pt;}
.ws9f{word-spacing:9.525333pt;}
.ws267{word-spacing:9.600000pt;}
.ws142{word-spacing:9.626667pt;}
.ws22a{word-spacing:9.640000pt;}
.ws107{word-spacing:9.677333pt;}
.ws98{word-spacing:9.728000pt;}
.ws208{word-spacing:9.760000pt;}
.ws138{word-spacing:9.778667pt;}
.wsa8{word-spacing:9.829333pt;}
.ws169{word-spacing:9.869867pt;}
.ws76{word-spacing:9.880000pt;}
.ws204{word-spacing:9.920000pt;}
.ws1a0{word-spacing:9.930667pt;}
.ws1e4{word-spacing:9.981333pt;}
.ws24f{word-spacing:10.000000pt;}
.ws25e{word-spacing:10.040000pt;}
.ws216{word-spacing:10.080000pt;}
.ws3e{word-spacing:10.082667pt;}
.ws38{word-spacing:10.133333pt;}
.ws11c{word-spacing:10.184000pt;}
.ws116{word-spacing:10.234667pt;}
.ws236{word-spacing:10.240000pt;}
.ws13b{word-spacing:10.285333pt;}
.ws215{word-spacing:10.320000pt;}
.ws19e{word-spacing:10.336000pt;}
.ws167{word-spacing:10.386667pt;}
.ws1ce{word-spacing:10.437333pt;}
.ws1ec{word-spacing:10.488000pt;}
.ws257{word-spacing:10.520000pt;}
.ws165{word-spacing:10.538667pt;}
.ws1a3{word-spacing:10.589333pt;}
.ws16b{word-spacing:10.645067pt;}
.ws234{word-spacing:10.680000pt;}
.ws1bc{word-spacing:10.703467pt;}
.ws209{word-spacing:10.720000pt;}
.ws106{word-spacing:10.741333pt;}
.wsc3{word-spacing:10.792000pt;}
.ws281{word-spacing:10.800000pt;}
.ws1b4{word-spacing:10.842667pt;}
.ws1d6{word-spacing:10.893333pt;}
.ws30{word-spacing:10.994667pt;}
.ws221{word-spacing:11.000000pt;}
.ws283{word-spacing:11.080000pt;}
.wsb9{word-spacing:11.096000pt;}
.ws290{word-spacing:11.120000pt;}
.wsac{word-spacing:11.146667pt;}
.ws246{word-spacing:11.160000pt;}
.ws1d3{word-spacing:11.197333pt;}
.ws29b{word-spacing:11.280000pt;}
.ws14e{word-spacing:11.298667pt;}
.ws8f{word-spacing:11.349333pt;}
.ws63{word-spacing:11.400000pt;}
.wse0{word-spacing:11.450667pt;}
.ws27{word-spacing:11.501333pt;}
.ws61{word-spacing:11.552000pt;}
.ws205{word-spacing:11.560000pt;}
.ws4a{word-spacing:11.602667pt;}
.wsdd{word-spacing:11.653333pt;}
.ws128{word-spacing:11.704000pt;}
.ws119{word-spacing:11.754667pt;}
.wsd2{word-spacing:11.805333pt;}
.ws275{word-spacing:11.840000pt;}
.wsc5{word-spacing:11.856000pt;}
.ws277{word-spacing:11.880000pt;}
.ws37{word-spacing:11.906667pt;}
.wsd4{word-spacing:11.957333pt;}
.ws296{word-spacing:12.000000pt;}
.ws14d{word-spacing:12.008000pt;}
.ws1fa{word-spacing:12.058667pt;}
.wse1{word-spacing:12.109333pt;}
.ws2d{word-spacing:12.160000pt;}
.ws6e{word-spacing:12.210667pt;}
.wsd3{word-spacing:12.261333pt;}
.ws23f{word-spacing:12.280000pt;}
.ws131{word-spacing:12.312000pt;}
.ws289{word-spacing:12.360000pt;}
.wsd5{word-spacing:12.362667pt;}
.ws58{word-spacing:12.413333pt;}
.ws238{word-spacing:12.440000pt;}
.ws1d4{word-spacing:12.464000pt;}
.ws154{word-spacing:12.514667pt;}
.ws279{word-spacing:12.520000pt;}
.ws129{word-spacing:12.565333pt;}
.ws65{word-spacing:12.616000pt;}
.ws46{word-spacing:12.666667pt;}
.ws222{word-spacing:12.680000pt;}
.ws1c{word-spacing:12.693333pt;}
.ws4b{word-spacing:12.717333pt;}
.ws228{word-spacing:12.720000pt;}
.ws145{word-spacing:12.768000pt;}
.ws253{word-spacing:12.800000pt;}
.wsec{word-spacing:12.818667pt;}
.ws247{word-spacing:12.840000pt;}
.ws41{word-spacing:12.869333pt;}
.ws85{word-spacing:12.920000pt;}
.wsf7{word-spacing:13.021333pt;}
.ws20a{word-spacing:13.040000pt;}
.ws189{word-spacing:13.122667pt;}
.ws1c2{word-spacing:13.168267pt;}
.ws152{word-spacing:13.173333pt;}
.ws261{word-spacing:13.200000pt;}
.wsdf{word-spacing:13.224000pt;}
.wsc2{word-spacing:13.325333pt;}
.ws22d{word-spacing:13.360000pt;}
.ws29a{word-spacing:13.400000pt;}
.ws28{word-spacing:13.426667pt;}
.wsb7{word-spacing:13.477333pt;}
.ws1ab{word-spacing:13.513067pt;}
.wsc8{word-spacing:13.528000pt;}
.ws297{word-spacing:13.680000pt;}
.ws39{word-spacing:13.730667pt;}
.ws67{word-spacing:13.781333pt;}
.ws1e0{word-spacing:13.832000pt;}
.ws292{word-spacing:13.840000pt;}
.ws273{word-spacing:13.880000pt;}
.ws3a{word-spacing:13.882667pt;}
.ws120{word-spacing:13.933333pt;}
.ws240{word-spacing:13.960000pt;}
.ws64{word-spacing:13.984000pt;}
.ws22e{word-spacing:14.000000pt;}
.ws96{word-spacing:14.034667pt;}
.ws20c{word-spacing:14.040000pt;}
.ws14c{word-spacing:14.085333pt;}
.ws7f{word-spacing:14.136000pt;}
.wsbb{word-spacing:14.186667pt;}
.ws1f5{word-spacing:14.237333pt;}
.ws248{word-spacing:14.240000pt;}
.ws25c{word-spacing:14.280000pt;}
.ws1cc{word-spacing:14.288000pt;}
.ws291{word-spacing:14.320000pt;}
.wse9{word-spacing:14.338667pt;}
.ws28a{word-spacing:14.360000pt;}
.ws11e{word-spacing:14.389333pt;}
.ws59{word-spacing:14.440000pt;}
.wsc4{word-spacing:14.490667pt;}
.ws130{word-spacing:14.541333pt;}
.ws1b3{word-spacing:14.592000pt;}
.ws293{word-spacing:14.600000pt;}
.ws124{word-spacing:14.693333pt;}
.ws127{word-spacing:14.744000pt;}
.ws18f{word-spacing:14.794667pt;}
.ws282{word-spacing:14.800000pt;}
.ws12d{word-spacing:14.826667pt;}
.ws195{word-spacing:14.845333pt;}
.ws193{word-spacing:14.946667pt;}
.ws55{word-spacing:14.997333pt;}
.ws26{word-spacing:15.098667pt;}
.ws4e{word-spacing:15.149333pt;}
.ws241{word-spacing:15.160000pt;}
.ws10b{word-spacing:15.200000pt;}
.wsb4{word-spacing:15.250667pt;}
.wsc9{word-spacing:15.301333pt;}
.wsbc{word-spacing:15.352000pt;}
.ws8c{word-spacing:15.402667pt;}
.ws242{word-spacing:15.440000pt;}
.wsfa{word-spacing:15.453333pt;}
.wsc0{word-spacing:15.504000pt;}
.ws284{word-spacing:15.520000pt;}
.ws1c9{word-spacing:15.554667pt;}
.ws274{word-spacing:15.560000pt;}
.ws118{word-spacing:15.605333pt;}
.ws57{word-spacing:15.706667pt;}
.ws299{word-spacing:15.720000pt;}
.ws1c6{word-spacing:15.757333pt;}
.ws75{word-spacing:15.808000pt;}
.ws203{word-spacing:15.840000pt;}
.wse5{word-spacing:15.858667pt;}
.ws1e{word-spacing:15.909333pt;}
.wsfb{word-spacing:15.960000pt;}
.ws29e{word-spacing:16.000000pt;}
.wsb3{word-spacing:16.010667pt;}
.ws53{word-spacing:16.061333pt;}
.ws11f{word-spacing:16.112000pt;}
.ws239{word-spacing:16.160000pt;}
.ws87{word-spacing:16.162667pt;}
.ws1e7{word-spacing:16.213333pt;}
.wsd9{word-spacing:16.264000pt;}
.ws294{word-spacing:16.280000pt;}
.ws112{word-spacing:16.314667pt;}
.wsa0{word-spacing:16.365333pt;}
.ws276{word-spacing:16.400000pt;}
.ws13e{word-spacing:16.416000pt;}
.ws70{word-spacing:16.517333pt;}
.ws89{word-spacing:16.568000pt;}
.ws8d{word-spacing:16.669333pt;}
.wsbd{word-spacing:16.720000pt;}
.ws32{word-spacing:16.770667pt;}
.ws33{word-spacing:16.872000pt;}
.ws35{word-spacing:16.922667pt;}
.ws4d{word-spacing:16.973333pt;}
.ws24a{word-spacing:17.000000pt;}
.wsc6{word-spacing:17.024000pt;}
.ws271{word-spacing:17.120000pt;}
.ws24b{word-spacing:17.160000pt;}
.wsc1{word-spacing:17.176000pt;}
.ws125{word-spacing:17.226667pt;}
.ws21{word-spacing:17.277333pt;}
.wsad{word-spacing:17.328000pt;}
.ws146{word-spacing:17.378667pt;}
.ws11d{word-spacing:17.429333pt;}
.ws18a{word-spacing:17.480000pt;}
.ws5b{word-spacing:17.530667pt;}
.wsa5{word-spacing:17.581333pt;}
.ws91{word-spacing:17.632000pt;}
.ws29f{word-spacing:17.680000pt;}
.wsef{word-spacing:17.733333pt;}
.ws10a{word-spacing:17.784000pt;}
.ws11a{word-spacing:17.792000pt;}
.ws20d{word-spacing:17.880000pt;}
.ws6a{word-spacing:17.885333pt;}
.ws20{word-spacing:17.936000pt;}
.ws5e{word-spacing:17.986667pt;}
.ws31{word-spacing:18.037333pt;}
.wsaf{word-spacing:18.088000pt;}
.ws79{word-spacing:18.138667pt;}
.wscb{word-spacing:18.189333pt;}
.ws25{word-spacing:18.290667pt;}
.ws97{word-spacing:18.341333pt;}
.ws1d9{word-spacing:18.392000pt;}
.ws44{word-spacing:18.493333pt;}
.ws69{word-spacing:18.594667pt;}
.ws22{word-spacing:18.645333pt;}
.ws21b{word-spacing:18.720000pt;}
.ws36{word-spacing:18.848000pt;}
.wsf6{word-spacing:18.898667pt;}
.ws162{word-spacing:19.050667pt;}
.wsf8{word-spacing:19.101333pt;}
.ws1c8{word-spacing:19.152000pt;}
.ws187{word-spacing:19.202667pt;}
.ws202{word-spacing:19.253333pt;}
.ws1e2{word-spacing:19.304000pt;}
.ws280{word-spacing:19.320000pt;}
.ws3f{word-spacing:19.354667pt;}
.ws188{word-spacing:19.405333pt;}
.ws20e{word-spacing:19.560000pt;}
.ws12b{word-spacing:19.658667pt;}
.ws1dc{word-spacing:19.709333pt;}
.ws123{word-spacing:19.760000pt;}
.wsf0{word-spacing:19.912000pt;}
.ws93{word-spacing:19.962667pt;}
.ws1fc{word-spacing:20.013333pt;}
.ws3b{word-spacing:20.165333pt;}
.ws50{word-spacing:20.266667pt;}
.ws220{word-spacing:20.320000pt;}
.wsb0{word-spacing:20.368000pt;}
.wsf5{word-spacing:20.418667pt;}
.ws21c{word-spacing:20.440000pt;}
.ws1eb{word-spacing:20.469333pt;}
.ws12c{word-spacing:20.570667pt;}
.ws147{word-spacing:20.722667pt;}
.ws8b{word-spacing:20.824000pt;}
.ws1b5{word-spacing:20.925333pt;}
.wscf{word-spacing:20.976000pt;}
.ws6b{word-spacing:21.077333pt;}
.wsa4{word-spacing:21.128000pt;}
.ws9c{word-spacing:21.280000pt;}
.ws1f9{word-spacing:21.330667pt;}
.ws197{word-spacing:21.381333pt;}
.ws1d7{word-spacing:21.685333pt;}
.wsb2{word-spacing:21.736000pt;}
.wsd7{word-spacing:22.040000pt;}
.ws158{word-spacing:22.192000pt;}
.ws95{word-spacing:22.293333pt;}
.ws117{word-spacing:22.394667pt;}
.ws1df{word-spacing:22.445333pt;}
.ws272{word-spacing:22.480000pt;}
.wsae{word-spacing:22.597333pt;}
.ws18d{word-spacing:22.648000pt;}
.wsa2{word-spacing:22.698667pt;}
.ws110{word-spacing:22.952000pt;}
.ws66{word-spacing:23.002667pt;}
.ws1a1{word-spacing:23.205333pt;}
.ws1f0{word-spacing:23.256000pt;}
.ws15f{word-spacing:23.357333pt;}
.ws1fd{word-spacing:23.610667pt;}
.ws84{word-spacing:23.712000pt;}
.ws28d{word-spacing:23.800000pt;}
.ws113{word-spacing:24.066667pt;}
.wsde{word-spacing:24.421333pt;}
.ws13a{word-spacing:24.472000pt;}
.ws92{word-spacing:24.522667pt;}
.ws18b{word-spacing:24.573333pt;}
.ws1d1{word-spacing:24.725333pt;}
.ws60{word-spacing:25.029333pt;}
.wse7{word-spacing:25.536000pt;}
.ws28e{word-spacing:25.560000pt;}
.ws7e{word-spacing:25.586667pt;}
.ws18c{word-spacing:25.738667pt;}
.ws108{word-spacing:26.346667pt;}
.ws7a{word-spacing:26.549333pt;}
.ws1f1{word-spacing:27.360000pt;}
.ws161{word-spacing:27.562667pt;}
.ws157{word-spacing:27.613333pt;}
.ws190{word-spacing:27.765333pt;}
.ws121{word-spacing:27.968000pt;}
.wsa1{word-spacing:28.424000pt;}
.ws156{word-spacing:28.576000pt;}
.ws1ef{word-spacing:28.778667pt;}
.ws1c5{word-spacing:28.930667pt;}
.ws122{word-spacing:28.981333pt;}
.ws1f2{word-spacing:29.032000pt;}
.wsf3{word-spacing:29.184000pt;}
.ws68{word-spacing:29.437333pt;}
.ws1c7{word-spacing:29.488000pt;}
.ws42{word-spacing:29.589333pt;}
.ws43{word-spacing:30.146667pt;}
.ws105{word-spacing:30.501333pt;}
.ws1ed{word-spacing:30.704000pt;}
.ws160{word-spacing:31.109333pt;}
.ws54{word-spacing:31.312000pt;}
.ws192{word-spacing:31.362667pt;}
.wse2{word-spacing:31.616000pt;}
.ws1e1{word-spacing:31.768000pt;}
.wsed{word-spacing:31.970667pt;}
.wsb8{word-spacing:33.136000pt;}
.ws1d0{word-spacing:33.592000pt;}
.ws14a{word-spacing:35.872000pt;}
.wsaa{word-spacing:38.405333pt;}
.wscc{word-spacing:38.962667pt;}
.ws13c{word-spacing:39.266667pt;}
.wsb1{word-spacing:39.824000pt;}
.ws7d{word-spacing:41.040000pt;}
.ws168{word-spacing:42.458667pt;}
.ws8a{word-spacing:50.362667pt;}
.wsdc{word-spacing:52.034667pt;}
.ws16f{word-spacing:105.657973pt;}
.ws17f{word-spacing:105.658507pt;}
.ws183{word-spacing:117.327467pt;}
.ws182{word-spacing:117.328000pt;}
.ws173{word-spacing:131.231307pt;}
.ws172{word-spacing:131.231840pt;}
.ws171{word-spacing:142.900800pt;}
.ws17a{word-spacing:142.901333pt;}
.ws181{word-spacing:145.558933pt;}
.ws174{word-spacing:145.559467pt;}
.ws176{word-spacing:151.290667pt;}
.ws17c{word-spacing:155.408000pt;}
.ws178{word-spacing:163.658667pt;}
.ws175{word-spacing:180.981333pt;}
.ws16e{word-spacing:183.352000pt;}
.ws103{word-spacing:183.847467pt;}
.ws17d{word-spacing:201.738667pt;}
.ws102{word-spacing:204.546133pt;}
.ws179{word-spacing:215.616000pt;}
.ws17e{word-spacing:217.744000pt;}
.ws1c4{word-spacing:270.976533pt;}
.ws1a6{word-spacing:275.829867pt;}
.ws1bf{word-spacing:277.765867pt;}
.ws1b2{word-spacing:279.003200pt;}
.ws1b1{word-spacing:296.549867pt;}
.ws1a7{word-spacing:301.403200pt;}
.ws1c1{word-spacing:317.861867pt;}
.ws177{word-spacing:331.588107pt;}
.ws184{word-spacing:331.588640pt;}
.ws1a4{word-spacing:340.173867pt;}
.ws1a9{word-spacing:351.915200pt;}
.ws185{word-spacing:357.161973pt;}
.ws1c0{word-spacing:357.248533pt;}
.ws1c3{word-spacing:363.075200pt;}
.ws1a5{word-spacing:363.741867pt;}
.ws17b{word-spacing:377.918773pt;}
.ws180{word-spacing:377.919307pt;}
._58{margin-left:-29.894851pt;}
._59{margin-left:-17.868800pt;}
._2{margin-left:-10.706133pt;}
._4{margin-left:-8.810667pt;}
._18{margin-left:-6.819467pt;}
._7{margin-left:-5.648000pt;}
._3{margin-left:-4.144000pt;}
._1{margin-left:-2.600000pt;}
._0{margin-left:-1.195761pt;}
._6{width:1.240615pt;}
._8{width:2.481094pt;}
._b{width:4.205361pt;}
._23{width:5.121197pt;}
._14{width:6.122721pt;}
._d{width:7.107200pt;}
._5{width:8.775467pt;}
._28{width:9.723118pt;}
._c{width:10.686427pt;}
._15{width:11.990749pt;}
._11{width:13.355761pt;}
._f{width:14.318400pt;}
._17{width:15.586318pt;}
._e{width:16.802537pt;}
._a{width:18.133785pt;}
._19{width:19.214079pt;}
._16{width:21.199651pt;}
._27{width:22.192000pt;}
._1a{width:23.172000pt;}
._10{width:24.598667pt;}
._13{width:25.874933pt;}
._12{width:26.767173pt;}
._25{width:28.590667pt;}
._26{width:31.638427pt;}
._24{width:35.594079pt;}
._3b{width:97.306667pt;}
._37{width:102.234667pt;}
._3a{width:128.141867pt;}
._2c{width:132.349867pt;}
._2b{width:136.224000pt;}
._22{width:139.282667pt;}
._1d{width:141.373333pt;}
._2f{width:153.280000pt;}
._36{width:155.937600pt;}
._34{width:161.271467pt;}
._55{width:163.904533pt;}
._33{width:166.605333pt;}
._42{width:168.048533pt;}
._30{width:174.036800pt;}
._35{width:180.336000pt;}
._20{width:182.925333pt;}
._1b{width:184.802667pt;}
._2d{width:185.730133pt;}
._21{width:187.032000pt;}
._32{width:191.360000pt;}
._2a{width:194.793600pt;}
._1e{width:201.554667pt;}
._29{width:205.173333pt;}
._1c{width:206.925333pt;}
._31{width:212.117333pt;}
._1f{width:222.312000pt;}
._4b{width:223.451200pt;}
._38{width:225.441600pt;}
._4a{width:263.435200pt;}
._41{width:279.003733pt;}
._52{width:288.144533pt;}
._49{width:291.024533pt;}
._4e{width:301.403200pt;}
._46{width:304.837867pt;}
._4c{width:306.928533pt;}
._54{width:310.171200pt;}
._43{width:311.781333pt;}
._50{width:317.115200pt;}
._3f{width:322.448533pt;}
._45{width:323.803200pt;}
._47{width:327.781867pt;}
._57{width:329.253867pt;}
._2e{width:346.085333pt;}
._56{width:348.480533pt;}
._48{width:351.280533pt;}
._39{width:353.175467pt;}
._3c{width:354.408000pt;}
._53{width:357.920533pt;}
._3e{width:371.253867pt;}
._51{width:372.443200pt;}
._4f{width:376.587200pt;}
._3d{width:379.675200pt;}
._4d{width:387.867200pt;}
._40{width:675.456533pt;}
._44{width:696.213867pt;}
._9{width:1830.229333pt;}
.fs13{font-size:0.533333pt;}
.fs11{font-size:20.453333pt;}
.fs15{font-size:21.333333pt;}
.fsa{font-size:22.026667pt;}
.fs3{font-size:24.736450pt;}
.fs4{font-size:28.270228pt;}
.fs9{font-size:28.320000pt;}
.fse{font-size:29.893333pt;}
.fs0{font-size:31.804007pt;}
.fsf{font-size:34.666667pt;}
.fs2{font-size:35.337785pt;}
.fs6{font-size:37.333333pt;}
.fs10{font-size:38.333333pt;}
.fs14{font-size:40.000000pt;}
.fs5{font-size:42.405342pt;}
.fs12{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fsb{font-size:53.333333pt;}
.fsc{font-size:64.000000pt;}
.fs1{font-size:70.675571pt;}
.fs7{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.188729pt;}
.yb{bottom:3.533771pt;}
.y11{bottom:3.533772pt;}
.yd{bottom:3.533773pt;}
.y13{bottom:3.533774pt;}
.y2b4{bottom:6.666667pt;}
.y14f{bottom:12.332267pt;}
.y14d{bottom:12.333467pt;}
.y150{bottom:12.333600pt;}
.y17{bottom:20.319202pt;}
.y16{bottom:37.988095pt;}
.y18{bottom:42.666133pt;}
.y1ff{bottom:87.269867pt;}
.y38{bottom:87.372000pt;}
.y124{bottom:87.372133pt;}
.ye3{bottom:87.372267pt;}
.y18f{bottom:87.372400pt;}
.y190{bottom:87.372533pt;}
.y191{bottom:87.372667pt;}
.y19f{bottom:87.427467pt;}
.y163{bottom:87.672267pt;}
.y1ad{bottom:87.718800pt;}
.y95{bottom:87.823600pt;}
.ycd{bottom:88.038933pt;}
.y1d1{bottom:88.069867pt;}
.y1eb{bottom:88.330133pt;}
.y27e{bottom:88.703467pt;}
.y37{bottom:100.705333pt;}
.y248{bottom:100.705600pt;}
.y27d{bottom:101.370133pt;}
.y1fe{bottom:102.603200pt;}
.ye2{bottom:102.705600pt;}
.y19e{bottom:102.760800pt;}
.y162{bottom:103.005600pt;}
.y1ac{bottom:103.052133pt;}
.y94{bottom:103.156933pt;}
.ycc{bottom:103.372267pt;}
.y1d0{bottom:103.403200pt;}
.y1ea{bottom:103.663467pt;}
.y123{bottom:110.038800pt;}
.y247{bottom:113.372267pt;}
.y27c{bottom:114.036800pt;}
.y36{bottom:114.038667pt;}
.y1fd{bottom:117.936533pt;}
.ye1{bottom:118.038933pt;}
.y19d{bottom:118.094133pt;}
.y161{bottom:118.338933pt;}
.y1ab{bottom:118.385467pt;}
.y93{bottom:118.490267pt;}
.ycb{bottom:118.705600pt;}
.y1cf{bottom:118.736533pt;}
.y1e9{bottom:118.996800pt;}
.y122{bottom:122.705467pt;}
.y5c{bottom:126.038667pt;}
.y246{bottom:126.038933pt;}
.y27b{bottom:126.703467pt;}
.y35{bottom:127.372000pt;}
.y215{bottom:131.372267pt;}
.y1fc{bottom:133.269867pt;}
.ye0{bottom:133.372267pt;}
.y19c{bottom:133.427467pt;}
.y160{bottom:133.672267pt;}
.y1aa{bottom:133.718800pt;}
.y92{bottom:133.823600pt;}
.yca{bottom:134.038933pt;}
.y1ce{bottom:134.069867pt;}
.y1e8{bottom:134.330133pt;}
.y121{bottom:135.372133pt;}
.y245{bottom:138.705600pt;}
.y27a{bottom:139.370133pt;}
.y34{bottom:140.705333pt;}
.y5b{bottom:144.705333pt;}
.y120{bottom:148.038800pt;}
.y1fb{bottom:148.603200pt;}
.ydf{bottom:148.705600pt;}
.y19b{bottom:148.760800pt;}
.y15f{bottom:149.005600pt;}
.y1a9{bottom:149.052133pt;}
.y91{bottom:149.156933pt;}
.yc9{bottom:149.372267pt;}
.y1cd{bottom:149.403200pt;}
.y244{bottom:151.372267pt;}
.y279{bottom:152.036800pt;}
.y33{bottom:154.038667pt;}
.y11f{bottom:160.705467pt;}
.y5a{bottom:163.372000pt;}
.y1fa{bottom:163.936533pt;}
.yde{bottom:164.038933pt;}
.y19a{bottom:164.094133pt;}
.y15e{bottom:164.338933pt;}
.y1a8{bottom:164.385467pt;}
.y90{bottom:164.490267pt;}
.y278{bottom:164.703467pt;}
.yc8{bottom:164.705600pt;}
.y1d3{bottom:164.736533pt;}
.y1cc{bottom:165.403200pt;}
.y32{bottom:167.372000pt;}
.y11e{bottom:173.372133pt;}
.y1ef{bottom:173.705333pt;}
.y14e{bottom:175.373333pt;}
.y243{bottom:176.705600pt;}
.y277{bottom:177.370133pt;}
.y1f9{bottom:179.269867pt;}
.ydd{bottom:179.372267pt;}
.y199{bottom:179.427467pt;}
.y15d{bottom:179.672267pt;}
.y1a7{bottom:179.718800pt;}
.y8f{bottom:179.823600pt;}
.yc7{bottom:180.038933pt;}
.y1d2{bottom:180.069867pt;}
.y31{bottom:180.705333pt;}
.y59{bottom:182.038667pt;}
.y11d{bottom:186.038800pt;}
.y18c{bottom:187.478667pt;}
.y242{bottom:189.372267pt;}
.y276{bottom:190.036800pt;}
.y30{bottom:194.038667pt;}
.y1f8{bottom:194.603200pt;}
.ydc{bottom:194.705600pt;}
.y198{bottom:194.760800pt;}
.y15c{bottom:195.005600pt;}
.y1a6{bottom:195.052133pt;}
.y8e{bottom:195.156933pt;}
.yc6{bottom:195.372267pt;}
.y1cb{bottom:195.403200pt;}
.y14a{bottom:198.038933pt;}
.y11c{bottom:198.705467pt;}
.y1ed{bottom:199.705333pt;}
.y58{bottom:200.705333pt;}
.y241{bottom:202.038933pt;}
.y275{bottom:202.703467pt;}
.y2f{bottom:207.372000pt;}
.y1f7{bottom:209.936533pt;}
.ydb{bottom:210.038933pt;}
.y197{bottom:210.094133pt;}
.y15b{bottom:210.338933pt;}
.y1a5{bottom:210.385467pt;}
.y8d{bottom:210.490267pt;}
.yc5{bottom:210.705600pt;}
.y1ca{bottom:210.736533pt;}
.y11b{bottom:211.372133pt;}
.y149{bottom:213.372267pt;}
.y240{bottom:214.705600pt;}
.y274{bottom:215.370133pt;}
.y57{bottom:219.372000pt;}
.y11a{bottom:224.038800pt;}
.y1f6{bottom:225.269867pt;}
.yda{bottom:225.372267pt;}
.y196{bottom:225.427467pt;}
.y15a{bottom:225.672267pt;}
.y1a4{bottom:225.718800pt;}
.y8c{bottom:225.823600pt;}
.y2e{bottom:226.038667pt;}
.yc4{bottom:226.038933pt;}
.y1c9{bottom:226.069867pt;}
.y16a{bottom:227.005600pt;}
.y23f{bottom:227.372267pt;}
.y273{bottom:228.036800pt;}
.y148{bottom:228.705600pt;}
.y56{bottom:238.038667pt;}
.y214{bottom:238.705600pt;}
.y2d{bottom:239.372000pt;}
.y23e{bottom:240.038933pt;}
.y1f5{bottom:240.603200pt;}
.y272{bottom:240.703467pt;}
.yd9{bottom:240.705600pt;}
.y195{bottom:240.760800pt;}
.y159{bottom:241.005600pt;}
.y1a3{bottom:241.052133pt;}
.y8b{bottom:241.156933pt;}
.yc3{bottom:241.372267pt;}
.y1c8{bottom:241.403200pt;}
.y147{bottom:244.038933pt;}
.y119{bottom:249.702667pt;}
.y2c{bottom:252.705333pt;}
.y23d{bottom:252.705600pt;}
.y271{bottom:253.370133pt;}
.y1f4{bottom:255.936533pt;}
.yd8{bottom:256.038933pt;}
.y194{bottom:256.094133pt;}
.y158{bottom:256.338933pt;}
.y1a2{bottom:256.385467pt;}
.y8a{bottom:256.490267pt;}
.y55{bottom:256.705333pt;}
.yc2{bottom:256.705600pt;}
.y1c7{bottom:256.736533pt;}
.y146{bottom:259.372267pt;}
.y169{bottom:263.672267pt;}
.y23c{bottom:265.372267pt;}
.y270{bottom:266.036800pt;}
.yf1{bottom:270.705600pt;}
.y201{bottom:271.269867pt;}
.y2b{bottom:271.372000pt;}
.yd7{bottom:271.372267pt;}
.y193{bottom:271.427467pt;}
.y157{bottom:271.672267pt;}
.y1a1{bottom:271.718800pt;}
.y89{bottom:271.823600pt;}
.yc1{bottom:272.038933pt;}
.y1c6{bottom:272.069867pt;}
.y1f3{bottom:272.603200pt;}
.y145{bottom:274.705467pt;}
.y118{bottom:275.366533pt;}
.y54{bottom:275.372000pt;}
.y23b{bottom:278.038800pt;}
.y26f{bottom:278.703467pt;}
.y168{bottom:279.005600pt;}
.y2a{bottom:284.705333pt;}
.y200{bottom:286.603200pt;}
.yd6{bottom:286.705467pt;}
.y192{bottom:286.760800pt;}
.y156{bottom:287.005600pt;}
.y1a0{bottom:287.052267pt;}
.y88{bottom:287.156933pt;}
.yc0{bottom:287.372133pt;}
.y1c5{bottom:287.403200pt;}
.y117{bottom:288.033200pt;}
.y2b3{bottom:289.310800pt;}
.y1ee{bottom:289.718267pt;}
.y23a{bottom:290.705467pt;}
.y26e{bottom:291.370133pt;}
.y53{bottom:294.038667pt;}
.y167{bottom:294.338933pt;}
.y29{bottom:298.038667pt;}
.y1f2{bottom:301.936533pt;}
.y2b2{bottom:301.977467pt;}
.yd5{bottom:302.038800pt;}
.y155{bottom:302.338933pt;}
.y87{bottom:302.490267pt;}
.ybf{bottom:302.705467pt;}
.y1c4{bottom:302.736533pt;}
.y239{bottom:303.372133pt;}
.y26d{bottom:304.036800pt;}
.y144{bottom:304.705467pt;}
.y166{bottom:309.672267pt;}
.y28{bottom:311.372000pt;}
.y52{bottom:312.705333pt;}
.y116{bottom:313.697067pt;}
.y2b1{bottom:314.644133pt;}
.y238{bottom:316.038800pt;}
.y26c{bottom:316.703467pt;}
.y1f1{bottom:317.269867pt;}
.yd4{bottom:317.372133pt;}
.y154{bottom:317.672267pt;}
.y86{bottom:317.823600pt;}
.ybe{bottom:318.038800pt;}
.y1c3{bottom:318.069867pt;}
.y143{bottom:320.038800pt;}
.y27{bottom:324.705333pt;}
.y165{bottom:325.005600pt;}
.y1af{bottom:325.587467pt;}
.y2b0{bottom:327.310800pt;}
.y237{bottom:328.705467pt;}
.y26b{bottom:329.370133pt;}
.y51{bottom:331.372000pt;}
.yd3{bottom:332.705467pt;}
.y85{bottom:333.156933pt;}
.ybd{bottom:333.372133pt;}
.y18b{bottom:334.038800pt;}
.y142{bottom:335.372133pt;}
.y2af{bottom:339.977467pt;}
.y164{bottom:340.338933pt;}
.y236{bottom:341.372133pt;}
.y26a{bottom:342.036800pt;}
.y14c{bottom:344.038667pt;}
.y213{bottom:347.811733pt;}
.yd2{bottom:348.038800pt;}
.y84{bottom:348.490267pt;}
.y1c2{bottom:348.611733pt;}
.ybc{bottom:348.705467pt;}
.y50{bottom:350.038667pt;}
.y141{bottom:350.705467pt;}
.y2ae{bottom:352.644133pt;}
.y26{bottom:353.372000pt;}
.y235{bottom:354.038800pt;}
.y115{bottom:354.490267pt;}
.y269{bottom:354.703467pt;}
.y153{bottom:355.672267pt;}
.yd1{bottom:363.372133pt;}
.y83{bottom:363.823600pt;}
.ybb{bottom:364.038800pt;}
.y2ad{bottom:365.310800pt;}
.y140{bottom:366.038800pt;}
.y25{bottom:366.705333pt;}
.y234{bottom:366.705467pt;}
.y268{bottom:367.370133pt;}
.y4f{bottom:368.705333pt;}
.y114{bottom:369.823600pt;}
.y212{bottom:370.478400pt;}
.y152{bottom:371.005600pt;}
.y1c1{bottom:371.278400pt;}
.y18a{bottom:371.372133pt;}
.y2ac{bottom:377.977467pt;}
.yd0{bottom:378.705467pt;}
.y82{bottom:379.156933pt;}
.yba{bottom:379.372133pt;}
.y267{bottom:380.036800pt;}
.y24{bottom:380.038667pt;}
.y13f{bottom:381.372133pt;}
.y211{bottom:383.145067pt;}
.y1c0{bottom:383.945067pt;}
.y113{bottom:385.156933pt;}
.y151{bottom:386.338933pt;}
.y189{bottom:386.705467pt;}
.y4e{bottom:387.372000pt;}
.y2ab{bottom:390.644133pt;}
.y233{bottom:392.038800pt;}
.y266{bottom:392.703467pt;}
.ycf{bottom:394.038800pt;}
.y81{bottom:394.490267pt;}
.yf0{bottom:394.705467pt;}
.y210{bottom:395.811733pt;}
.y1bf{bottom:396.611733pt;}
.y13e{bottom:396.705467pt;}
.y23{bottom:398.705333pt;}
.y112{bottom:400.490267pt;}
.y188{bottom:402.038800pt;}
.y2aa{bottom:403.310800pt;}
.y232{bottom:404.705467pt;}
.y265{bottom:405.370133pt;}
.y4d{bottom:406.038667pt;}
.y20f{bottom:408.478400pt;}
.y1be{bottom:409.278400pt;}
.yb9{bottom:409.372133pt;}
.y80{bottom:409.823600pt;}
.yef{bottom:410.038800pt;}
.y22{bottom:412.038667pt;}
.y13d{bottom:412.038800pt;}
.y111{bottom:415.823600pt;}
.y2a9{bottom:415.977467pt;}
.y187{bottom:417.372133pt;}
.y264{bottom:418.036800pt;}
.y20e{bottom:421.145067pt;}
.y1bd{bottom:421.945067pt;}
.y4c{bottom:424.705333pt;}
.yb8{bottom:424.705467pt;}
.y7f{bottom:425.156933pt;}
.y21{bottom:425.372000pt;}
.yee{bottom:425.372133pt;}
.y13c{bottom:427.372133pt;}
.y2a8{bottom:428.644133pt;}
.y231{bottom:430.038800pt;}
.y263{bottom:430.703467pt;}
.y110{bottom:431.156933pt;}
.y186{bottom:432.705467pt;}
.y16c{bottom:433.714133pt;}
.y20d{bottom:433.811733pt;}
.y1bc{bottom:434.611733pt;}
.y20{bottom:438.705333pt;}
.yb7{bottom:440.038800pt;}
.y7e{bottom:440.490267pt;}
.yed{bottom:440.705467pt;}
.y2a7{bottom:441.310800pt;}
.y13b{bottom:442.705467pt;}
.y262{bottom:443.370133pt;}
.y4b{bottom:443.372000pt;}
.y16b{bottom:446.380800pt;}
.y20c{bottom:446.478400pt;}
.y10f{bottom:446.490267pt;}
.y1bb{bottom:447.278400pt;}
.y185{bottom:448.038800pt;}
.y1f{bottom:452.038667pt;}
.y2a6{bottom:453.977467pt;}
.yb6{bottom:455.372133pt;}
.y7d{bottom:455.823600pt;}
.y261{bottom:456.036800pt;}
.yec{bottom:456.038800pt;}
.y13a{bottom:458.038800pt;}
.y20b{bottom:459.145067pt;}
.y1ba{bottom:459.945067pt;}
.y10e{bottom:461.823600pt;}
.y4a{bottom:462.038667pt;}
.y184{bottom:463.372133pt;}
.y2a5{bottom:466.644133pt;}
.y230{bottom:468.038800pt;}
.y260{bottom:468.703467pt;}
.y1e{bottom:470.705333pt;}
.yb5{bottom:470.705467pt;}
.y7c{bottom:471.156933pt;}
.yeb{bottom:471.372133pt;}
.y20a{bottom:471.811733pt;}
.y1b9{bottom:472.611733pt;}
.y10d{bottom:477.156933pt;}
.y183{bottom:478.705467pt;}
.y2a4{bottom:479.310800pt;}
.y49{bottom:480.705333pt;}
.y22f{bottom:480.705467pt;}
.y25f{bottom:481.370133pt;}
.y1d{bottom:484.038667pt;}
.y209{bottom:484.478400pt;}
.y1b8{bottom:485.278400pt;}
.yb4{bottom:486.038800pt;}
.y7b{bottom:486.490267pt;}
.yea{bottom:486.705467pt;}
.y139{bottom:487.372133pt;}
.y2a3{bottom:491.977467pt;}
.y10c{bottom:492.490267pt;}
.y22e{bottom:493.372133pt;}
.y25e{bottom:494.036800pt;}
.y182{bottom:494.038800pt;}
.y208{bottom:497.145067pt;}
.y1c{bottom:497.372000pt;}
.y1b7{bottom:497.945067pt;}
.y48{bottom:499.372000pt;}
.yb3{bottom:501.372133pt;}
.y7a{bottom:501.823600pt;}
.ye9{bottom:502.038800pt;}
.y138{bottom:502.705467pt;}
.y2a2{bottom:504.644133pt;}
.y22d{bottom:506.038800pt;}
.y25d{bottom:506.703467pt;}
.y10b{bottom:507.823600pt;}
.y181{bottom:509.372133pt;}
.y207{bottom:509.811733pt;}
.y1b5{bottom:510.611733pt;}
.yb2{bottom:516.705467pt;}
.y79{bottom:517.156933pt;}
.y2a1{bottom:517.310800pt;}
.ye8{bottom:517.372133pt;}
.y47{bottom:518.038667pt;}
.y137{bottom:518.038800pt;}
.y22c{bottom:518.705467pt;}
.y25c{bottom:519.370133pt;}
.y206{bottom:522.478400pt;}
.y10a{bottom:523.156933pt;}
.y1b4{bottom:523.278400pt;}
.y180{bottom:524.705467pt;}
.y1b6{bottom:526.775600pt;}
.y2a0{bottom:529.977467pt;}
.y22b{bottom:531.372133pt;}
.y25b{bottom:532.036800pt;}
.yb1{bottom:532.038800pt;}
.y78{bottom:532.490267pt;}
.ye7{bottom:532.705467pt;}
.y136{bottom:533.372133pt;}
.y46{bottom:536.705333pt;}
.y109{bottom:538.490267pt;}
.y205{bottom:538.642400pt;}
.y1b3{bottom:539.442267pt;}
.y17f{bottom:540.038800pt;}
.y29f{bottom:542.644133pt;}
.y22a{bottom:544.038800pt;}
.y25a{bottom:544.703467pt;}
.y1ec{bottom:545.452667pt;}
.yb0{bottom:547.372133pt;}
.y77{bottom:547.823600pt;}
.ye6{bottom:548.038800pt;}
.y135{bottom:548.705467pt;}
.y108{bottom:553.823600pt;}
.y29e{bottom:555.310800pt;}
.y45{bottom:555.372000pt;}
.y17e{bottom:555.372133pt;}
.y229{bottom:556.705467pt;}
.y259{bottom:557.370133pt;}
.yaf{bottom:562.705467pt;}
.y76{bottom:563.156933pt;}
.ye5{bottom:563.372133pt;}
.y134{bottom:564.038800pt;}
.y204{bottom:564.642400pt;}
.y1b2{bottom:565.442267pt;}
.y29d{bottom:567.977467pt;}
.y107{bottom:569.156933pt;}
.y228{bottom:569.372133pt;}
.y258{bottom:570.036800pt;}
.y17d{bottom:570.705467pt;}
.y44{bottom:574.038667pt;}
.yae{bottom:578.038800pt;}
.y75{bottom:578.490267pt;}
.y133{bottom:579.372133pt;}
.ye4{bottom:580.038800pt;}
.y29c{bottom:580.644133pt;}
.y227{bottom:582.038800pt;}
.y257{bottom:582.703467pt;}
.y106{bottom:584.490267pt;}
.y17c{bottom:586.038800pt;}
.y203{bottom:590.306267pt;}
.y1b1{bottom:591.106267pt;}
.y29b{bottom:593.310800pt;}
.yad{bottom:593.372133pt;}
.y74{bottom:593.823600pt;}
.y132{bottom:594.705467pt;}
.y256{bottom:595.370133pt;}
.y105{bottom:599.823600pt;}
.y17b{bottom:601.372133pt;}
.y29a{bottom:605.977467pt;}
.y226{bottom:607.372133pt;}
.y255{bottom:608.036800pt;}
.yac{bottom:608.705467pt;}
.y73{bottom:609.156933pt;}
.y131{bottom:610.038800pt;}
.y43{bottom:611.372000pt;}
.y202{bottom:615.970133pt;}
.y17a{bottom:616.705467pt;}
.y1b0{bottom:616.770133pt;}
.y299{bottom:618.644133pt;}
.y225{bottom:620.038800pt;}
.y254{bottom:620.703467pt;}
.yab{bottom:624.038800pt;}
.y72{bottom:624.490267pt;}
.y130{bottom:625.372133pt;}
.y42{bottom:628.065333pt;}
.y298{bottom:631.310800pt;}
.y179{bottom:632.038800pt;}
.y224{bottom:632.705467pt;}
.y104{bottom:633.156933pt;}
.y253{bottom:633.370133pt;}
.yaa{bottom:639.372133pt;}
.y71{bottom:639.823600pt;}
.y12f{bottom:640.705467pt;}
.y297{bottom:643.977467pt;}
.y223{bottom:645.372133pt;}
.y252{bottom:646.036800pt;}
.y178{bottom:647.372133pt;}
.y103{bottom:648.490267pt;}
.y40{bottom:650.038667pt;}
.y1f0{bottom:652.703333pt;}
.y1ae{bottom:652.780667pt;}
.y14b{bottom:653.372133pt;}
.y41{bottom:654.358667pt;}
.ya9{bottom:654.705467pt;}
.y1e7{bottom:655.091733pt;}
.y70{bottom:655.156933pt;}
.y12e{bottom:656.038800pt;}
.y296{bottom:656.644133pt;}
.y222{bottom:658.038800pt;}
.y251{bottom:658.703467pt;}
.y177{bottom:662.705467pt;}
.y102{bottom:663.823600pt;}
.y3e{bottom:665.372000pt;}
.y295{bottom:669.310800pt;}
.y3f{bottom:669.692000pt;}
.ya8{bottom:670.038800pt;}
.y6f{bottom:670.490267pt;}
.y221{bottom:670.705467pt;}
.y250{bottom:671.370133pt;}
.y12d{bottom:671.372133pt;}
.y1e6{bottom:677.758400pt;}
.y176{bottom:678.038800pt;}
.y101{bottom:679.156933pt;}
.y294{bottom:681.977467pt;}
.y15{bottom:682.902678pt;}
.y220{bottom:683.372267pt;}
.y24f{bottom:684.036800pt;}
.ya7{bottom:685.372267pt;}
.y6e{bottom:685.823600pt;}
.y12c{bottom:686.705600pt;}
.y1e5{bottom:690.425067pt;}
.y175{bottom:693.372267pt;}
.y100{bottom:694.490267pt;}
.y293{bottom:694.644267pt;}
.y21f{bottom:696.038933pt;}
.y24e{bottom:696.703467pt;}
.y3d{bottom:700.038667pt;}
.ya6{bottom:700.705600pt;}
.y6d{bottom:701.156933pt;}
.y12b{bottom:702.038933pt;}
.y1e4{bottom:703.091733pt;}
.y14{bottom:704.105349pt;}
.y292{bottom:707.310933pt;}
.y174{bottom:708.705600pt;}
.y24d{bottom:709.370133pt;}
.yff{bottom:709.823600pt;}
.y1e3{bottom:715.758400pt;}
.ya5{bottom:716.038933pt;}
.y6c{bottom:716.490267pt;}
.y12{bottom:716.662308pt;}
.y12a{bottom:717.372267pt;}
.y291{bottom:719.977600pt;}
.y21e{bottom:721.372267pt;}
.y24c{bottom:722.036800pt;}
.y173{bottom:724.038933pt;}
.yfe{bottom:725.156933pt;}
.y1e2{bottom:728.425067pt;}
.y3c{bottom:730.705333pt;}
.y10{bottom:730.797424pt;}
.ya4{bottom:731.372267pt;}
.y6b{bottom:731.823600pt;}
.y290{bottom:732.644267pt;}
.y129{bottom:732.705600pt;}
.y21d{bottom:734.038933pt;}
.y24b{bottom:734.703467pt;}
.y172{bottom:739.372267pt;}
.yfd{bottom:740.490267pt;}
.y1e1{bottom:741.091733pt;}
.y28f{bottom:745.310933pt;}
.ya3{bottom:746.705600pt;}
.y6a{bottom:747.156933pt;}
.y24a{bottom:747.370133pt;}
.y128{bottom:748.038933pt;}
.y18e{bottom:748.999333pt;}
.y1e0{bottom:753.758400pt;}
.y171{bottom:754.705600pt;}
.yfc{bottom:755.823600pt;}
.y28e{bottom:757.977600pt;}
.y21c{bottom:759.372267pt;}
.y249{bottom:760.036800pt;}
.y3b{bottom:761.372000pt;}
.ya2{bottom:762.038933pt;}
.y69{bottom:762.490267pt;}
.y127{bottom:763.372267pt;}
.y1df{bottom:766.425067pt;}
.yf{bottom:766.829919pt;}
.y170{bottom:770.038933pt;}
.y28d{bottom:770.644267pt;}
.yfb{bottom:771.156933pt;}
.ya1{bottom:777.372267pt;}
.y68{bottom:777.823600pt;}
.y21b{bottom:778.038933pt;}
.y126{bottom:778.705600pt;}
.y1de{bottom:779.091733pt;}
.y28c{bottom:783.310933pt;}
.y16f{bottom:785.372267pt;}
.yfa{bottom:786.490267pt;}
.ye{bottom:788.032590pt;}
.y1dd{bottom:791.758400pt;}
.y3a{bottom:792.038667pt;}
.ya0{bottom:792.705600pt;}
.y67{bottom:793.156933pt;}
.y125{bottom:794.038933pt;}
.y28b{bottom:795.977600pt;}
.yc{bottom:800.589549pt;}
.y16e{bottom:800.705600pt;}
.yf9{bottom:801.823600pt;}
.y1dc{bottom:804.425067pt;}
.y9f{bottom:808.038933pt;}
.y66{bottom:808.490267pt;}
.y28a{bottom:808.644267pt;}
.y21a{bottom:808.705600pt;}
.ya{bottom:814.724666pt;}
.y16d{bottom:816.038933pt;}
.y1db{bottom:817.091733pt;}
.y289{bottom:821.310933pt;}
.y39{bottom:822.705333pt;}
.y9e{bottom:823.372267pt;}
.y65{bottom:823.823600pt;}
.y219{bottom:824.038933pt;}
.y1da{bottom:829.758400pt;}
.y288{bottom:833.977600pt;}
.yf8{bottom:836.490267pt;}
.y9d{bottom:838.705600pt;}
.y64{bottom:839.156933pt;}
.y218{bottom:839.372267pt;}
.y9{bottom:841.922713pt;}
.y1d9{bottom:842.425067pt;}
.y287{bottom:846.644267pt;}
.yf7{bottom:851.823600pt;}
.y9c{bottom:854.038933pt;}
.y63{bottom:854.490267pt;}
.y217{bottom:854.705600pt;}
.y1d8{bottom:855.091733pt;}
.y286{bottom:859.310933pt;}
.y8{bottom:866.659162pt;}
.yf6{bottom:867.156933pt;}
.y9b{bottom:869.372267pt;}
.y62{bottom:869.823600pt;}
.y1d7{bottom:871.255733pt;}
.y285{bottom:871.977600pt;}
.y18d{bottom:873.057200pt;}
.y7{bottom:880.794277pt;}
.yf5{bottom:882.490267pt;}
.y216{bottom:882.705600pt;}
.y284{bottom:884.644267pt;}
.y9a{bottom:884.705600pt;}
.y61{bottom:885.156933pt;}
.y1d6{bottom:897.255733pt;}
.y283{bottom:897.310933pt;}
.yf4{bottom:897.823600pt;}
.y99{bottom:900.038933pt;}
.y60{bottom:900.490267pt;}
.y6{bottom:906.414171pt;}
.y282{bottom:909.977600pt;}
.yf3{bottom:913.156933pt;}
.y98{bottom:915.372267pt;}
.y5f{bottom:915.823600pt;}
.y5{bottom:919.665840pt;}
.y281{bottom:922.644267pt;}
.y1d5{bottom:922.919600pt;}
.yf2{bottom:928.490267pt;}
.y97{bottom:930.705600pt;}
.y280{bottom:935.310933pt;}
.y5e{bottom:943.823600pt;}
.y96{bottom:946.038933pt;}
.y27f{bottom:947.977600pt;}
.y1d4{bottom:948.583467pt;}
.y4{bottom:956.770515pt;}
.y1b{bottom:964.128667pt;}
.y1a{bottom:974.795333pt;}
.y3{bottom:981.506965pt;}
.y19{bottom:985.462000pt;}
.yce{bottom:992.706000pt;}
.y5d{bottom:992.706133pt;}
.y2{bottom:1017.728195pt;}
.h29{height:0.419200pt;}
.h9{height:11.484765pt;}
.h12{height:16.057440pt;}
.h6{height:17.912185pt;}
.h7{height:20.471069pt;}
.h11{height:20.701920pt;}
.h2c{height:22.250000pt;}
.h1d{height:22.665333pt;}
.h19{height:22.666667pt;}
.h3{height:23.029952pt;}
.h17{height:25.272000pt;}
.h5{height:25.588836pt;}
.h1a{height:25.904948pt;}
.h22{height:26.305920pt;}
.he{height:27.216000pt;}
.hd{height:27.290667pt;}
.h2b{height:28.560000pt;}
.h2a{height:28.640000pt;}
.hc{height:29.344000pt;}
.h27{height:30.549333pt;}
.h8{height:30.706603pt;}
.h23{height:30.752960pt;}
.h25{height:30.753493pt;}
.h10{height:35.088000pt;}
.h15{height:36.277333pt;}
.h16{height:38.986667pt;}
.h1e{height:39.643093pt;}
.h1f{height:39.643627pt;}
.h20{height:39.644160pt;}
.h13{height:41.920000pt;}
.h24{height:43.333333pt;}
.h1c{height:44.410667pt;}
.h18{height:44.411200pt;}
.h14{height:50.304000pt;}
.h21{height:54.677333pt;}
.h4{height:58.252131pt;}
.h1b{height:59.238281pt;}
.h28{height:61.672000pt;}
.hf{height:88.032000pt;}
.h26{height:307.200000pt;}
.hb{height:1039.333333pt;}
.ha{height:1039.370667pt;}
.h2{height:1121.091217pt;}
.h0{height:1121.279947pt;}
.h1{height:1121.333333pt;}
.w5{width:17.333333pt;}
.w6{width:17.334667pt;}
.w2{width:308.322176pt;}
.w7{width:434.240000pt;}
.w0{width:793.279947pt;}
.w1{width:793.333333pt;}
.w3{width:793.701333pt;}
.w4{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:7.779067pt;}
.x31{left:11.666000pt;}
.x1{left:53.006678pt;}
.x7{left:57.423901pt;}
.x8{left:60.472000pt;}
.x20{left:63.490400pt;}
.x1e{left:67.091867pt;}
.x43{left:68.138667pt;}
.x11{left:70.415200pt;}
.x21{left:71.441733pt;}
.x17{left:72.813467pt;}
.x4f{left:73.805333pt;}
.x29{left:75.590133pt;}
.x22{left:78.496533pt;}
.x19{left:84.573333pt;}
.x1a{left:85.954133pt;}
.x3{left:88.344460pt;}
.x1d{left:91.321333pt;}
.x1b{left:94.261200pt;}
.x16{left:96.884267pt;}
.x4{left:98.062355pt;}
.xe{left:101.345333pt;}
.x34{left:103.466400pt;}
.x1f{left:108.270667pt;}
.x35{left:116.133067pt;}
.x13{left:119.470667pt;}
.x18{left:120.889200pt;}
.xf{left:129.708800pt;}
.x12{left:131.099733pt;}
.x15{left:133.181067pt;}
.x14{left:141.431467pt;}
.xd{left:153.041867pt;}
.x46{left:160.580133pt;}
.xc{left:167.060533pt;}
.x1c{left:173.808667pt;}
.x10{left:176.907067pt;}
.x4b{left:179.562667pt;}
.x36{left:180.463600pt;}
.x37{left:193.130267pt;}
.x38{left:205.796933pt;}
.x39{left:218.463600pt;}
.x3a{left:231.130267pt;}
.x23{left:234.331867pt;}
.x3b{left:243.796933pt;}
.x3c{left:256.463600pt;}
.x3d{left:269.130267pt;}
.x3e{left:281.796933pt;}
.x4a{left:289.029333pt;}
.x47{left:291.624000pt;}
.x3f{left:294.463600pt;}
.x45{left:295.373067pt;}
.x24{left:300.183333pt;}
.x49{left:304.638667pt;}
.x40{left:307.130267pt;}
.x41{left:319.796933pt;}
.x28{left:326.186933pt;}
.x42{left:342.463600pt;}
.x4d{left:360.681867pt;}
.x48{left:369.753733pt;}
.x4e{left:379.774400pt;}
.x44{left:389.012800pt;}
.x2{left:396.666641pt;}
.x2a{left:406.299200pt;}
.x50{left:419.632533pt;}
.x2b{left:421.417333pt;}
.x5{left:432.004436pt;}
.x6{left:441.722318pt;}
.x25{left:445.666667pt;}
.x33{left:475.508000pt;}
.x2f{left:493.162533pt;}
.x2e{left:496.152800pt;}
.x2c{left:498.352267pt;}
.x26{left:598.938400pt;}
.xb{left:600.070667pt;}
.xa{left:624.436000pt;}
.x30{left:631.600000pt;}
.x9{left:635.420267pt;}
.x32{left:648.932667pt;}
.x2d{left:654.027733pt;}
.x27{left:693.975067pt;}
}




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