
    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_f1fd7ab9f53fa5d63bb9d628.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_bbfc821a682e8c42c74eb201.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.119629;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_33c150bb298c8dc8cae773ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.107422;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_4eeea34b2a23cfe00d528b6b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_5157ada1191d270ef373bdb9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5f89f1afa406a0dec359cc74.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.961914;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_c6d9a7abba5edafe8397995b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0e75f87424d180639ff7ddd7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_b70f36c310f2d26bfbbb9ed5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.690918;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_4caedd1bc2b3e1333c45cdb6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_0bf7efa5b132697b8922fcd9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.831000;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_90c235632338dc999ecc602f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.678223;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_e44b4cafb780f0b6f840182a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_92c4abfe5b1c9996fd7964db.woff2')format("woff");}.ffe{font-family:ffe;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;}
.me{transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157435,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.184504,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184504,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184504,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.188682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.188682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.188682,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m4{transform:matrix(0.237293,0.000000,-0.079089,0.237160,0,0);-ms-transform:matrix(0.237293,0.000000,-0.079089,0.237160,0,0);-webkit-transform:matrix(0.237293,0.000000,-0.079089,0.237160,0,0);}
.m7{transform:matrix(0.242113,0.000000,-0.080696,0.236618,0,0);-ms-transform:matrix(0.242113,0.000000,-0.080696,0.236618,0,0);-webkit-transform:matrix(0.242113,0.000000,-0.080696,0.236618,0,0);}
.ma{transform:matrix(0.246459,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246459,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246459,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247309,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247640,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247650,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247663,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247723,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250011,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255806,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255806,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255806,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.v12{vertical-align:-71.064354px;}
.v2{vertical-align:-58.032000px;}
.vb{vertical-align:-51.108890px;}
.v11{vertical-align:-48.504719px;}
.v13{vertical-align:-43.641894px;}
.ve{vertical-align:-31.196664px;}
.v5{vertical-align:-26.640000px;}
.v7{vertical-align:-23.040000px;}
.v10{vertical-align:-17.280000px;}
.v3{vertical-align:-14.520000px;}
.vc{vertical-align:-10.980000px;}
.v8{vertical-align:-8.640000px;}
.vf{vertical-align:-5.857107px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:8.640000px;}
.va{vertical-align:28.800000px;}
.vd{vertical-align:31.196664px;}
.v6{vertical-align:43.080000px;}
.v4{vertical-align:59.160000px;}
.v1{vertical-align:64.656000px;}
.lsc5{letter-spacing:-6.540000px;}
.lsc9{letter-spacing:-5.472000px;}
.ls80{letter-spacing:-4.349662px;}
.ls37{letter-spacing:-1.254000px;}
.ls5d{letter-spacing:-1.026000px;}
.ls4e{letter-spacing:-0.864000px;}
.lsa7{letter-spacing:-0.860906px;}
.ls5c{letter-spacing:-0.828000px;}
.ls93{letter-spacing:-0.774000px;}
.ls87{letter-spacing:-0.756000px;}
.ls89{letter-spacing:-0.702000px;}
.ls12{letter-spacing:-0.684000px;}
.ls8a{letter-spacing:-0.612000px;}
.ls61{letter-spacing:-0.576000px;}
.ls92{letter-spacing:-0.513600px;}
.ls25{letter-spacing:-0.511800px;}
.ls4f{letter-spacing:-0.432000px;}
.ls7a{letter-spacing:-0.428400px;}
.lsc6{letter-spacing:-0.378600px;}
.ls1d{letter-spacing:-0.367800px;}
.ls88{letter-spacing:-0.350400px;}
.ls79{letter-spacing:-0.348600px;}
.ls57{letter-spacing:-0.306600px;}
.ls1b{letter-spacing:-0.288000px;}
.ls2b{letter-spacing:-0.277200px;}
.ls4d{letter-spacing:-0.264000px;}
.ls5b{letter-spacing:-0.259800px;}
.ls38{letter-spacing:-0.256200px;}
.ls9d{letter-spacing:-0.247800px;}
.ls22{letter-spacing:-0.216000px;}
.ls39{letter-spacing:-0.208200px;}
.ls6b{letter-spacing:-0.205800px;}
.ls1c{letter-spacing:-0.189600px;}
.ls36{letter-spacing:-0.186600px;}
.ls7b{letter-spacing:-0.186000px;}
.ls5f{letter-spacing:-0.175800px;}
.ls4c{letter-spacing:-0.160200px;}
.ls6c{letter-spacing:-0.154800px;}
.ls21{letter-spacing:-0.144000px;}
.ls32{letter-spacing:-0.122400px;}
.lsc4{letter-spacing:-0.117600px;}
.ls7c{letter-spacing:-0.112654px;}
.ls34{letter-spacing:-0.106800px;}
.ls5a{letter-spacing:-0.100200px;}
.ls20{letter-spacing:-0.072000px;}
.lsa8{letter-spacing:-0.068347px;}
.ls56{letter-spacing:-0.053400px;}
.lsa5{letter-spacing:-0.051929px;}
.ls58{letter-spacing:-0.051000px;}
.lsaf{letter-spacing:-0.048471px;}
.lsab{letter-spacing:-0.045600px;}
.ls14{letter-spacing:-0.042600px;}
.lsa6{letter-spacing:-0.042176px;}
.ls67{letter-spacing:-0.037200px;}
.ls68{letter-spacing:-0.028200px;}
.ls16{letter-spacing:-0.021600px;}
.lsa9{letter-spacing:-0.020634px;}
.ls33{letter-spacing:-0.018600px;}
.ls0{letter-spacing:0.000000px;}
.lsc1{letter-spacing:0.004080px;}
.ls7d{letter-spacing:0.004850px;}
.ls9e{letter-spacing:0.005407px;}
.lsb3{letter-spacing:0.018000px;}
.lsa{letter-spacing:0.018600px;}
.lse{letter-spacing:0.018720px;}
.lsbd{letter-spacing:0.026400px;}
.ls84{letter-spacing:0.028080px;}
.ls8b{letter-spacing:0.028200px;}
.lsa4{letter-spacing:0.032325px;}
.lsc{letter-spacing:0.037200px;}
.ls3{letter-spacing:0.037440px;}
.ls54{letter-spacing:0.053400px;}
.lsb1{letter-spacing:0.065333px;}
.ls9c{letter-spacing:0.072000px;}
.ls13{letter-spacing:0.101400px;}
.ls24{letter-spacing:0.103800px;}
.lscb{letter-spacing:0.103968px;}
.lsbb{letter-spacing:0.105600px;}
.lsc0{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.112200px;}
.ls26{letter-spacing:0.120000px;}
.lsc3{letter-spacing:0.124128px;}
.ls64{letter-spacing:0.133200px;}
.ls23{letter-spacing:0.144000px;}
.lsb0{letter-spacing:0.155182px;}
.lsb2{letter-spacing:0.162958px;}
.lsbe{letter-spacing:0.172080px;}
.ls15{letter-spacing:0.181200px;}
.ls59{letter-spacing:0.197400px;}
.ls8d{letter-spacing:0.206400px;}
.lsca{letter-spacing:0.207936px;}
.ls76{letter-spacing:0.208080px;}
.ls19{letter-spacing:0.208200px;}
.ls52{letter-spacing:0.211968px;}
.ls4b{letter-spacing:0.216000px;}
.ls6d{letter-spacing:0.236400px;}
.ls8f{letter-spacing:0.259800px;}
.ls51{letter-spacing:0.259920px;}
.ls3c{letter-spacing:0.273600px;}
.ls1{letter-spacing:0.288000px;}
.ls3a{letter-spacing:0.309600px;}
.ls3d{letter-spacing:0.324000px;}
.ls69{letter-spacing:0.325200px;}
.lscc{letter-spacing:0.327936px;}
.ls66{letter-spacing:0.334800px;}
.ls82{letter-spacing:0.341280px;}
.lsf{letter-spacing:0.341400px;}
.ls50{letter-spacing:0.352200px;}
.ls2c{letter-spacing:0.360000px;}
.lsa3{letter-spacing:0.408000px;}
.lsba{letter-spacing:0.413400px;}
.ls3b{letter-spacing:0.432000px;}
.ls63{letter-spacing:0.468000px;}
.lsc2{letter-spacing:0.478800px;}
.ls55{letter-spacing:0.504000px;}
.lsaa{letter-spacing:0.648000px;}
.ls8e{letter-spacing:0.666720px;}
.ls31{letter-spacing:0.678000px;}
.ls35{letter-spacing:0.698688px;}
.ls10{letter-spacing:0.738000px;}
.ls4{letter-spacing:0.738720px;}
.ls1a{letter-spacing:0.756000px;}
.ls48{letter-spacing:0.823968px;}
.ls1e{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.900000px;}
.lsb9{letter-spacing:0.924000px;}
.ls81{letter-spacing:1.254534px;}
.ls6a{letter-spacing:1.418688px;}
.ls6{letter-spacing:1.458720px;}
.ls85{letter-spacing:1.781280px;}
.ls91{letter-spacing:1.908000px;}
.ls90{letter-spacing:2.106720px;}
.ls7{letter-spacing:2.178720px;}
.ls4a{letter-spacing:2.304000px;}
.ls2a{letter-spacing:2.898720px;}
.ls47{letter-spacing:3.024000px;}
.ls43{letter-spacing:3.703968px;}
.ls46{letter-spacing:3.744000px;}
.lsb5{letter-spacing:4.266720px;}
.ls71{letter-spacing:4.338720px;}
.lsb6{letter-spacing:4.986720px;}
.lsb{letter-spacing:5.058720px;}
.lsa1{letter-spacing:5.184000px;}
.ls6e{letter-spacing:5.778720px;}
.ls99{letter-spacing:5.904000px;}
.ls53{letter-spacing:6.426720px;}
.ls27{letter-spacing:6.498720px;}
.ls28{letter-spacing:7.938720px;}
.ls9{letter-spacing:8.658720px;}
.ls44{letter-spacing:10.224000px;}
.ls86{letter-spacing:10.601280px;}
.ls45{letter-spacing:10.944000px;}
.ls29{letter-spacing:11.538720px;}
.ls62{letter-spacing:11.640000px;}
.ls70{letter-spacing:12.938688px;}
.ls83{letter-spacing:13.301280px;}
.lsae{letter-spacing:14.994000px;}
.ls72{letter-spacing:15.138720px;}
.lsb8{letter-spacing:16.506720px;}
.ls18{letter-spacing:17.258688px;}
.ls49{letter-spacing:17.424000px;}
.ls2d{letter-spacing:18.738720px;}
.ls2e{letter-spacing:18.858720px;}
.lsb7{letter-spacing:19.386720px;}
.ls17{letter-spacing:19.458720px;}
.ls5e{letter-spacing:19.560000px;}
.ls98{letter-spacing:19.647936px;}
.lsa2{letter-spacing:19.728000px;}
.ls65{letter-spacing:20.232000px;}
.ls8c{letter-spacing:22.284000px;}
.ls60{letter-spacing:22.440000px;}
.lsd{letter-spacing:23.058720px;}
.ls2f{letter-spacing:23.738688px;}
.ls30{letter-spacing:24.458688px;}
.lsc7{letter-spacing:25.524000px;}
.lsc8{letter-spacing:26.964000px;}
.ls95{letter-spacing:27.164160px;}
.ls94{letter-spacing:27.230400px;}
.ls42{letter-spacing:27.497376px;}
.ls6f{letter-spacing:27.558720px;}
.ls1f{letter-spacing:52.560000px;}
.ls96{letter-spacing:56.880000px;}
.lsa0{letter-spacing:57.600000px;}
.ls9b{letter-spacing:58.269600px;}
.ls9a{letter-spacing:58.320000px;}
.ls97{letter-spacing:60.480000px;}
.ls9f{letter-spacing:63.703477px;}
.lsb4{letter-spacing:64.764000px;}
.lsbc{letter-spacing:64.785600px;}
.lsbf{letter-spacing:64.836000px;}
.ls73{letter-spacing:102.978720px;}
.ls5{letter-spacing:127.713600px;}
.ls2{letter-spacing:127.764000px;}
.ls75{letter-spacing:137.937600px;}
.ls74{letter-spacing:137.988000px;}
.ls41{letter-spacing:138.513600px;}
.ls40{letter-spacing:138.564000px;}
.ls3f{letter-spacing:138.708000px;}
.lsad{letter-spacing:153.497525px;}
.lsac{letter-spacing:405.142314px;}
.ls3e{letter-spacing:405.558720px;}
.ls7f{letter-spacing:455.647983px;}
.ls78{letter-spacing:468.796356px;}
.ls7e{letter-spacing:1475.050601px;}
.ls77{letter-spacing:1509.770744px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(51,51,204),0 0.015em rgb(51,51,204),0.015em 0 rgb(51,51,204),0 -0.015em  rgb(51,51,204);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(51,51,204);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd9{word-spacing:-84.240000px;}
.wsd3{word-spacing:-72.000000px;}
.wsf1{word-spacing:-57.190495px;}
.wsea{word-spacing:-56.693082px;}
.ws167{word-spacing:-49.479074px;}
.ws16b{word-spacing:-49.413299px;}
.wsf8{word-spacing:-46.637280px;}
.wsbd{word-spacing:-40.032000px;}
.wse0{word-spacing:-33.466752px;}
.ws1{word-spacing:-33.426720px;}
.wsc4{word-spacing:-30.024000px;}
.ws7{word-spacing:-27.521280px;}
.wsf{word-spacing:-27.377280px;}
.ws6{word-spacing:-27.359280px;}
.ws22{word-spacing:-27.339312px;}
.ws21{word-spacing:-26.981280px;}
.wsdf{word-spacing:-26.970912px;}
.ws3{word-spacing:-26.962680px;}
.ws11{word-spacing:-26.949312px;}
.ws20{word-spacing:-26.829480px;}
.wsb{word-spacing:-26.802480px;}
.wsc2{word-spacing:-26.794512px;}
.ws9{word-spacing:-26.762712px;}
.wsc1{word-spacing:-26.661312px;}
.ws5{word-spacing:-26.658480px;}
.ws4{word-spacing:-26.639880px;}
.wsc{word-spacing:-26.639712px;}
.ws2{word-spacing:-26.621280px;}
.wsa{word-spacing:-26.618712px;}
.ws1cb{word-spacing:-26.602680px;}
.ws23{word-spacing:-26.538912px;}
.ws10{word-spacing:-26.431680px;}
.ws40{word-spacing:-26.413080px;}
.ws3f{word-spacing:-26.405112px;}
.ws1f{word-spacing:-26.384112px;}
.wsf5{word-spacing:-26.043031px;}
.ws8{word-spacing:-25.937280px;}
.wsee{word-spacing:-25.816522px;}
.ws3e{word-spacing:-25.407312px;}
.wsd5{word-spacing:-23.760120px;}
.wsd4{word-spacing:-23.753520px;}
.ws1c9{word-spacing:-23.525520px;}
.ws1c6{word-spacing:-23.485152px;}
.ws1a6{word-spacing:-23.458752px;}
.wsff{word-spacing:-23.446920px;}
.wsd7{word-spacing:-23.437320px;}
.ws4d{word-spacing:-23.418720px;}
.wsd8{word-spacing:-23.390520px;}
.wsd6{word-spacing:-23.381520px;}
.ws1c7{word-spacing:-23.341152px;}
.wsfc{word-spacing:-23.068320px;}
.wsfe{word-spacing:-22.806720px;}
.wsfd{word-spacing:-22.716720px;}
.wsfb{word-spacing:-22.662720px;}
.ws166{word-spacing:-22.531455px;}
.ws170{word-spacing:-22.501502px;}
.ws152{word-spacing:-20.664000px;}
.wsc9{word-spacing:-20.448000px;}
.ws55{word-spacing:-20.408232px;}
.wsd{word-spacing:-20.304000px;}
.ws12{word-spacing:-20.264232px;}
.ws56{word-spacing:-20.232000px;}
.ws1a{word-spacing:-20.176032px;}
.ws16{word-spacing:-20.160000px;}
.ws18{word-spacing:-20.159832px;}
.ws17d{word-spacing:-20.088000px;}
.ws17{word-spacing:-20.056032px;}
.wse{word-spacing:-20.016000px;}
.ws13{word-spacing:-19.944000px;}
.ws51{word-spacing:-19.895832px;}
.wsbb{word-spacing:-19.880232px;}
.ws14{word-spacing:-19.872000px;}
.ws148{word-spacing:-19.808232px;}
.ws15{word-spacing:-19.800000px;}
.ws52{word-spacing:-19.792032px;}
.ws54{word-spacing:-19.584000px;}
.ws19{word-spacing:-19.544232px;}
.wsbe{word-spacing:-19.440000px;}
.ws53{word-spacing:-19.152000px;}
.ws1ce{word-spacing:-18.454752px;}
.ws1cd{word-spacing:-18.414720px;}
.ws14d{word-spacing:-18.183418px;}
.ws151{word-spacing:-18.109664px;}
.wse2{word-spacing:-17.854272px;}
.wsf4{word-spacing:-17.835905px;}
.wse1{word-spacing:-17.814240px;}
.wse7{word-spacing:-17.628240px;}
.ws1cf{word-spacing:-17.586720px;}
.ws17e{word-spacing:-17.537280px;}
.wse4{word-spacing:-17.465640px;}
.wse6{word-spacing:-17.425872px;}
.ws59{word-spacing:-17.117280px;}
.ws1c8{word-spacing:-16.878720px;}
.ws68{word-spacing:-16.810680px;}
.ws57{word-spacing:-16.666680px;}
.ws9e{word-spacing:-16.653312px;}
.ws58{word-spacing:-16.650480px;}
.ws5a{word-spacing:-16.613280px;}
.ws67{word-spacing:-16.610712px;}
.ws66{word-spacing:-16.602312px;}
.wsf2{word-spacing:-16.581370px;}
.ws69{word-spacing:-16.559880px;}
.wsf9{word-spacing:-16.513080px;}
.ws3d{word-spacing:-16.506480px;}
.wsed{word-spacing:-16.432568px;}
.wsec{word-spacing:-16.427718px;}
.wsfa{word-spacing:-16.353480px;}
.wseb{word-spacing:-16.315064px;}
.ws11f{word-spacing:-16.306680px;}
.ws120{word-spacing:-15.839280px;}
.ws93{word-spacing:-15.785280px;}
.ws1cc{word-spacing:-14.544000px;}
.wsf3{word-spacing:-12.231708px;}
.ws16e{word-spacing:-11.413240px;}
.ws16d{word-spacing:-11.250282px;}
.ws164{word-spacing:-11.217256px;}
.wsbf{word-spacing:-11.208960px;}
.ws153{word-spacing:-5.328000px;}
.ws150{word-spacing:-4.811952px;}
.ws14c{word-spacing:-4.392000px;}
.ws139{word-spacing:-4.176000px;}
.wscf{word-spacing:-3.240000px;}
.wscb{word-spacing:-3.168000px;}
.ws137{word-spacing:-2.904000px;}
.ws138{word-spacing:-2.844000px;}
.ws145{word-spacing:-2.661024px;}
.ws154{word-spacing:-2.376000px;}
.ws1d{word-spacing:-2.304000px;}
.ws142{word-spacing:-2.296225px;}
.ws149{word-spacing:-2.232000px;}
.ws1c1{word-spacing:-2.222160px;}
.ws13d{word-spacing:-2.160000px;}
.ws124{word-spacing:-2.149344px;}
.ws1e{word-spacing:-2.088000px;}
.wsd0{word-spacing:-2.016000px;}
.wsca{word-spacing:-1.912680px;}
.wsc7{word-spacing:-1.872000px;}
.ws12d{word-spacing:-1.863072px;}
.ws192{word-spacing:-1.755240px;}
.wsc8{word-spacing:-1.656000px;}
.wscc{word-spacing:-1.584000px;}
.ws123{word-spacing:-1.559519px;}
.ws125{word-spacing:-1.544760px;}
.ws14b{word-spacing:-1.512000px;}
.ws13c{word-spacing:-1.440000px;}
.ws173{word-spacing:-1.404000px;}
.ws159{word-spacing:-1.393272px;}
.ws12c{word-spacing:-1.320000px;}
.ws156{word-spacing:-1.224000px;}
.ws122{word-spacing:-1.104960px;}
.ws12a{word-spacing:-1.104000px;}
.wsc6{word-spacing:-1.092000px;}
.wsce{word-spacing:-1.080000px;}
.ws146{word-spacing:-1.033992px;}
.ws131{word-spacing:-1.032768px;}
.ws12b{word-spacing:-1.032000px;}
.ws1c{word-spacing:-1.008000px;}
.ws172{word-spacing:-0.972000px;}
.ws97{word-spacing:-0.956160px;}
.ws11e{word-spacing:-0.939600px;}
.ws147{word-spacing:-0.928728px;}
.ws8f{word-spacing:-0.907439px;}
.ws15a{word-spacing:-0.904848px;}
.ws13b{word-spacing:-0.888000px;}
.ws1b{word-spacing:-0.864000px;}
.ws1a3{word-spacing:-0.841680px;}
.wsb9{word-spacing:-0.826080px;}
.wsb4{word-spacing:-0.825960px;}
.ws143{word-spacing:-0.824760px;}
.ws45{word-spacing:-0.821520px;}
.wsb3{word-spacing:-0.796920px;}
.ws5f{word-spacing:-0.772920px;}
.ws171{word-spacing:-0.756000px;}
.ws99{word-spacing:-0.744600px;}
.ws1a1{word-spacing:-0.732960px;}
.ws60{word-spacing:-0.731759px;}
.ws15d{word-spacing:-0.708000px;}
.ws48{word-spacing:-0.683424px;}
.wsba{word-spacing:-0.668399px;}
.ws8c{word-spacing:-0.666000px;}
.ws61{word-spacing:-0.665760px;}
.ws126{word-spacing:-0.648000px;}
.ws5d{word-spacing:-0.646080px;}
.ws43{word-spacing:-0.626760px;}
.ws12e{word-spacing:-0.615528px;}
.ws9a{word-spacing:-0.612720px;}
.ws9d{word-spacing:-0.612480px;}
.ws136{word-spacing:-0.576000px;}
.ws1a4{word-spacing:-0.518760px;}
.ws44{word-spacing:-0.497616px;}
.ws12f{word-spacing:-0.493272px;}
.ws128{word-spacing:-0.432000px;}
.ws4b{word-spacing:-0.381648px;}
.ws1a5{word-spacing:-0.377400px;}
.ws121{word-spacing:-0.368784px;}
.ws5b{word-spacing:-0.337200px;}
.ws144{word-spacing:-0.312768px;}
.ws13a{word-spacing:-0.288000px;}
.ws1c0{word-spacing:-0.235201px;}
.ws94{word-spacing:-0.234239px;}
.ws95{word-spacing:-0.230401px;}
.wsdb{word-spacing:-0.226800px;}
.wscd{word-spacing:-0.216000px;}
.ws1a2{word-spacing:-0.205920px;}
.ws5c{word-spacing:-0.199200px;}
.ws1c2{word-spacing:-0.195359px;}
.ws91{word-spacing:-0.187439px;}
.ws9b{word-spacing:-0.183480px;}
.ws193{word-spacing:-0.159240px;}
.ws169{word-spacing:-0.155339px;}
.ws132{word-spacing:-0.152160px;}
.ws158{word-spacing:-0.144000px;}
.ws191{word-spacing:-0.128641px;}
.wsc0{word-spacing:-0.108000px;}
.ws63{word-spacing:-0.106560px;}
.ws1c3{word-spacing:-0.106080px;}
.wsf0{word-spacing:-0.104172px;}
.wse9{word-spacing:-0.103266px;}
.ws49{word-spacing:-0.091872px;}
.ws168{word-spacing:-0.090126px;}
.ws16a{word-spacing:-0.090006px;}
.ws130{word-spacing:-0.056664px;}
.ws62{word-spacing:-0.052920px;}
.wsb7{word-spacing:-0.036840px;}
.ws4a{word-spacing:-0.018000px;}
.ws65{word-spacing:-0.014520px;}
.wsb5{word-spacing:-0.006480px;}
.ws0{word-spacing:0.000000px;}
.wsb6{word-spacing:0.005759px;}
.wsb8{word-spacing:0.054000px;}
.ws3c{word-spacing:0.056160px;}
.ws8b{word-spacing:0.063121px;}
.wsd2{word-spacing:0.072000px;}
.ws8e{word-spacing:0.107520px;}
.ws8d{word-spacing:0.128040px;}
.ws1c5{word-spacing:0.138001px;}
.ws174{word-spacing:0.198000px;}
.ws90{word-spacing:0.206160px;}
.ws5e{word-spacing:0.250321px;}
.wsd1{word-spacing:0.288000px;}
.ws133{word-spacing:0.360000px;}
.ws47{word-spacing:0.407424px;}
.ws42{word-spacing:0.431952px;}
.ws129{word-spacing:0.432000px;}
.ws64{word-spacing:0.453240px;}
.ws4e{word-spacing:0.456480px;}
.ws135{word-spacing:0.480000px;}
.ws108{word-spacing:0.514080px;}
.wsaa{word-spacing:0.560160px;}
.ws106{word-spacing:0.560760px;}
.ws109{word-spacing:0.587760px;}
.ws80{word-spacing:0.613920px;}
.ws25{word-spacing:0.621984px;}
.ws127{word-spacing:0.648000px;}
.ws7f{word-spacing:0.667080px;}
.ws10a{word-spacing:0.673080px;}
.ws14a{word-spacing:0.720000px;}
.ws24{word-spacing:0.739080px;}
.wsad{word-spacing:0.774000px;}
.ws26{word-spacing:0.813240px;}
.wsb0{word-spacing:0.877320px;}
.ws27{word-spacing:0.882096px;}
.ws96{word-spacing:0.919800px;}
.ws1c4{word-spacing:0.931560px;}
.ws107{word-spacing:0.953160px;}
.wsae{word-spacing:0.955320px;}
.wsda{word-spacing:1.008000px;}
.ws78{word-spacing:1.072799px;}
.ws75{word-spacing:1.091640px;}
.ws98{word-spacing:1.173240px;}
.ws15b{word-spacing:1.192032px;}
.ws81{word-spacing:1.198080px;}
.wsac{word-spacing:1.211040px;}
.wsb2{word-spacing:1.226520px;}
.ws7a{word-spacing:1.236721px;}
.wsaf{word-spacing:1.240560px;}
.ws79{word-spacing:1.241040px;}
.ws186{word-spacing:1.280160px;}
.ws82{word-spacing:1.311359px;}
.ws7c{word-spacing:1.314120px;}
.wsbc{word-spacing:1.344000px;}
.ws4f{word-spacing:1.354176px;}
.wsa8{word-spacing:1.367521px;}
.ws72{word-spacing:1.373039px;}
.ws7e{word-spacing:1.459201px;}
.ws76{word-spacing:1.540080px;}
.ws77{word-spacing:1.547280px;}
.ws73{word-spacing:1.547520px;}
.wsb1{word-spacing:1.573080px;}
.ws9c{word-spacing:1.639800px;}
.ws18b{word-spacing:1.822200px;}
.ws1a7{word-spacing:1.841473px;}
.ws74{word-spacing:1.940880px;}
.ws13e{word-spacing:1.944000px;}
.wsa9{word-spacing:1.946520px;}
.ws190{word-spacing:2.054040px;}
.ws1ca{word-spacing:2.068273px;}
.ws7d{word-spacing:2.073240px;}
.ws117{word-spacing:2.147520px;}
.ws118{word-spacing:2.288520px;}
.ws15c{word-spacing:2.298000px;}
.ws7b{word-spacing:2.359800px;}
.wsc5{word-spacing:2.387280px;}
.ws119{word-spacing:2.674080px;}
.ws6e{word-spacing:2.698079px;}
.ws71{word-spacing:2.700840px;}
.ws6c{word-spacing:2.720160px;}
.ws116{word-spacing:2.728319px;}
.ws140{word-spacing:2.736000px;}
.ws18e{word-spacing:2.773920px;}
.ws18d{word-spacing:2.807400px;}
.ws185{word-spacing:2.816760px;}
.ws181{word-spacing:2.817240px;}
.ws18c{word-spacing:2.827080px;}
.ws114{word-spacing:2.837640px;}
.ws187{word-spacing:2.876520px;}
.ws180{word-spacing:2.879519px;}
.ws13f{word-spacing:2.880000px;}
.ws183{word-spacing:2.887440px;}
.ws18a{word-spacing:2.934960px;}
.ws134{word-spacing:2.952000px;}
.ws141{word-spacing:3.024000px;}
.ws115{word-spacing:3.026520px;}
.ws182{word-spacing:3.093000px;}
.ws189{word-spacing:3.178680px;}
.wsab{word-spacing:3.331440px;}
.ws70{word-spacing:3.338760px;}
.ws17f{word-spacing:3.375359px;}
.ws188{word-spacing:3.386520px;}
.ws6a{word-spacing:3.564840px;}
.ws184{word-spacing:3.600360px;}
.ws6f{word-spacing:3.654000px;}
.ws6b{word-spacing:3.707280px;}
.ws18f{word-spacing:3.931200px;}
.ws10b{word-spacing:3.942720px;}
.ws29{word-spacing:4.278528px;}
.ws28{word-spacing:4.429344px;}
.ws6d{word-spacing:4.519800px;}
.ws2a{word-spacing:4.607520px;}
.ws161{word-spacing:5.808000px;}
.ws160{word-spacing:5.832000px;}
.ws87{word-spacing:5.907119px;}
.ws89{word-spacing:6.191520px;}
.ws2b{word-spacing:6.298224px;}
.wsa7{word-spacing:6.328080px;}
.ws155{word-spacing:6.343920px;}
.ws84{word-spacing:6.373920px;}
.wsa6{word-spacing:6.427080px;}
.wsa4{word-spacing:6.534000px;}
.wsa0{word-spacing:6.587520px;}
.ws157{word-spacing:6.659280px;}
.ws2f{word-spacing:6.737568px;}
.ws30{word-spacing:6.895800px;}
.ws2d{word-spacing:6.951552px;}
.ws100{word-spacing:6.963840px;}
.ws85{word-spacing:6.964799px;}
.wsa2{word-spacing:7.000800px;}
.ws83{word-spacing:7.003320px;}
.wsa1{word-spacing:7.020840px;}
.ws8a{word-spacing:7.040160px;}
.wsa5{word-spacing:7.045320px;}
.ws9f{word-spacing:7.074600px;}
.ws88{word-spacing:7.093440px;}
.wsa3{word-spacing:7.147080px;}
.ws105{word-spacing:7.199519px;}
.ws101{word-spacing:7.482720px;}
.ws104{word-spacing:7.641960px;}
.wse3{word-spacing:7.684096px;}
.wsf7{word-spacing:7.776000px;}
.ws19c{word-spacing:7.813440px;}
.ws19d{word-spacing:7.873080px;}
.ws19f{word-spacing:7.907520px;}
.ws2e{word-spacing:7.957920px;}
.ws86{word-spacing:8.119800px;}
.ws102{word-spacing:8.177160px;}
.ws195{word-spacing:8.200680px;}
.ws2c{word-spacing:8.225760px;}
.ws196{word-spacing:8.238240px;}
.wse5{word-spacing:8.314560px;}
.ws103{word-spacing:8.373240px;}
.ws197{word-spacing:8.389921px;}
.ws194{word-spacing:8.403840px;}
.ws31{word-spacing:8.541984px;}
.ws198{word-spacing:8.587080px;}
.ws32{word-spacing:8.622240px;}
.ws111{word-spacing:8.627520px;}
.ws10c{word-spacing:8.639519px;}
.ws199{word-spacing:8.684401px;}
.ws19a{word-spacing:8.694000px;}
.ws1a0{word-spacing:8.701439px;}
.ws113{word-spacing:8.734800px;}
.ws34{word-spacing:8.839080px;}
.ws35{word-spacing:8.860128px;}
.ws19e{word-spacing:8.880600px;}
.ws19b{word-spacing:8.901360px;}
.ws1bd{word-spacing:8.912160px;}
.ws112{word-spacing:9.320160px;}
.ws10e{word-spacing:9.487080px;}
.ws10d{word-spacing:9.506520px;}
.ws110{word-spacing:9.620280px;}
.ws33{word-spacing:9.678144px;}
.ws10f{word-spacing:9.809400px;}
.ws1b9{word-spacing:10.402321px;}
.ws1b2{word-spacing:10.542000px;}
.ws1b8{word-spacing:10.659361px;}
.ws1b7{word-spacing:10.693920px;}
.ws1b4{word-spacing:10.719121px;}
.ws1b3{word-spacing:10.747080px;}
.ws1b1{word-spacing:10.819201px;}
.ws1b5{word-spacing:10.854240px;}
.ws1b6{word-spacing:10.904639px;}
.ws1be{word-spacing:11.311681px;}
.ws1ba{word-spacing:12.003840px;}
.ws1bc{word-spacing:12.044880px;}
.ws1bf{word-spacing:12.133920px;}
.ws1a8{word-spacing:12.650639px;}
.ws1af{word-spacing:12.760560px;}
.ws1b0{word-spacing:13.046760px;}
.ws1ab{word-spacing:13.055760px;}
.ws1bb{word-spacing:13.159800px;}
.ws1ac{word-spacing:13.320239px;}
.ws1aa{word-spacing:13.536720px;}
.ws1ae{word-spacing:13.583520px;}
.ws38{word-spacing:14.437440px;}
.ws37{word-spacing:14.437920px;}
.ws36{word-spacing:14.533392px;}
.ws1ad{word-spacing:14.599800px;}
.ws3b{word-spacing:14.686847px;}
.ws3a{word-spacing:15.083520px;}
.ws39{word-spacing:15.393240px;}
.ws1a9{word-spacing:15.950880px;}
.wsde{word-spacing:22.821840px;}
.ws11b{word-spacing:25.011360px;}
.ws11a{word-spacing:25.819919px;}
.ws11d{word-spacing:26.040840px;}
.ws11c{word-spacing:26.186520px;}
.ws17a{word-spacing:29.604000px;}
.ws179{word-spacing:29.664000px;}
.ws178{word-spacing:30.096000px;}
.ws177{word-spacing:34.488000px;}
.ws92{word-spacing:35.764440px;}
.ws15f{word-spacing:47.592000px;}
.ws15e{word-spacing:48.360000px;}
.ws176{word-spacing:52.632000px;}
.ws175{word-spacing:52.716000px;}
.wsdd{word-spacing:55.403280px;}
.wsdc{word-spacing:55.482552px;}
.ws41{word-spacing:55.547280px;}
.ws46{word-spacing:55.626552px;}
.ws162{word-spacing:71.976000px;}
.ws17c{word-spacing:82.584000px;}
.ws17b{word-spacing:82.956000px;}
.ws14e{word-spacing:121.342920px;}
.wsef{word-spacing:186.001422px;}
.wse8{word-spacing:194.201591px;}
.ws163{word-spacing:262.415270px;}
.ws16c{word-spacing:302.259785px;}
.wsf6{word-spacing:309.876000px;}
.ws14f{word-spacing:321.618422px;}
.ws16f{word-spacing:481.636609px;}
.ws165{word-spacing:490.298260px;}
.ws4c{word-spacing:743.147280px;}
.wsc3{word-spacing:864.151008px;}
.ws50{word-spacing:1007.041920px;}
._48{margin-left:-1033.900903px;}
._58{margin-left:-1011.402297px;}
._44{margin-left:-766.162752px;}
._47{margin-left:-417.561074px;}
._57{margin-left:-409.833129px;}
._6a{margin-left:-379.223153px;}
._69{margin-left:-349.715120px;}
._49{margin-left:-343.107531px;}
._54{margin-left:-341.288948px;}
._61{margin-left:-335.014419px;}
._6b{margin-left:-330.750910px;}
._59{margin-left:-329.491198px;}
._4a{margin-left:-316.121442px;}
._5a{margin-left:-303.106358px;}
._4b{margin-left:-279.717185px;}
._4e{margin-left:-278.288696px;}
._5b{margin-left:-276.515046px;}
._52{margin-left:-272.322071px;}
._51{margin-left:-269.031601px;}
._5f{margin-left:-264.550834px;}
._4c{margin-left:-260.481623px;}
._73{margin-left:-255.863773px;}
._5c{margin-left:-254.614197px;}
._53{margin-left:-241.458729px;}
._60{margin-left:-237.490446px;}
._55{margin-left:-232.151563px;}
._62{margin-left:-228.379981px;}
._46{margin-left:-217.164659px;}
._56{margin-left:-213.345756px;}
._4d{margin-left:-209.479484px;}
._74{margin-left:-195.316820px;}
._4f{margin-left:-189.069891px;}
._5d{margin-left:-187.861555px;}
._6f{margin-left:-182.058299px;}
._68{margin-left:-177.346843px;}
._6e{margin-left:-171.629711px;}
._76{margin-left:-159.050319px;}
._50{margin-left:-143.758890px;}
._5e{margin-left:-142.101088px;}
._6c{margin-left:-139.933816px;}
._72{margin-left:-130.703223px;}
._75{margin-left:-128.846018px;}
._70{margin-left:-112.669155px;}
._71{margin-left:-67.570211px;}
._b{margin-left:-11.328444px;}
._18{margin-left:-9.698640px;}
._65{margin-left:-8.555928px;}
._7{margin-left:-7.152000px;}
._78{margin-left:-6.149436px;}
._9{margin-left:-5.019036px;}
._4{margin-left:-3.348000px;}
._0{margin-left:-2.304000px;}
._2{margin-left:-1.152000px;}
._6{width:1.104000px;}
._3{width:2.232000px;}
._5{width:3.239964px;}
._1{width:4.680000px;}
._e{width:5.771760px;}
._37{width:6.940200px;}
._d{width:7.985640px;}
._c{width:9.346800px;}
._32{width:10.454160px;}
._17{width:11.514720px;}
._12{width:12.927756px;}
._11{width:13.949760px;}
._42{width:15.582600px;}
._15{width:16.641120px;}
._14{width:17.794848px;}
._13{width:19.621680px;}
._34{width:20.991721px;}
._66{width:22.089240px;}
._f{width:23.240520px;}
._10{width:24.646200px;}
._77{width:25.974836px;}
._1b{width:28.271616px;}
._1a{width:29.988192px;}
._25{width:32.120400px;}
._1c{width:33.241440px;}
._1d{width:35.699424px;}
._1e{width:36.744815px;}
._16{width:38.285280px;}
._3a{width:39.648000px;}
._3b{width:40.656000px;}
._19{width:43.464480px;}
._33{width:46.164576px;}
._36{width:49.210560px;}
._39{width:52.557120px;}
._3c{width:53.900880px;}
._40{width:60.515472px;}
._27{width:62.928480px;}
._38{width:65.823840px;}
._35{width:82.437120px;}
._2a{width:88.130688px;}
._2e{width:90.534000px;}
._43{width:103.552320px;}
._23{width:116.082912px;}
._3e{width:123.750599px;}
._63{width:132.568560px;}
._30{width:145.458720px;}
._64{width:189.101280px;}
._2c{width:222.536400px;}
._45{width:233.442720px;}
._3d{width:262.278599px;}
._3f{width:267.788279px;}
._29{width:302.285760px;}
._28{width:339.555120px;}
._2b{width:398.713248px;}
._24{width:405.518688px;}
._26{width:412.104000px;}
._2d{width:430.525512px;}
._8{width:493.440000px;}
._21{width:850.481760px;}
._6d{width:904.780320px;}
._2f{width:958.893360px;}
._20{width:982.181760px;}
._67{width:1194.508560px;}
._41{width:1239.120000px;}
._22{width:1682.960400px;}
._31{width:2310.258720px;}
._1f{width:2320.166400px;}
._a{width:2353.286400px;}
.fc7{color:transparent;}
.fc5{color:rgb(0,128,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(51,51,204);}
.fc6{color:rgb(204,0,153);}
.fc1{color:rgb(255,0,0);}
.fc8{color:rgb(255,255,255);}
.fc3{color:rgb(0,176,80);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:36.000000px;}
.fse{font-size:40.320000px;}
.fs2a{font-size:45.001127px;}
.fs27{font-size:45.062909px;}
.fsf{font-size:48.240000px;}
.fs1d{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:59.904000px;}
.fs10{font-size:64.080000px;}
.fs11{font-size:64.224000px;}
.fs15{font-size:65.710872px;}
.fs2b{font-size:66.240000px;}
.fs19{font-size:66.325482px;}
.fs2c{font-size:66.384000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:72.144000px;}
.fs1e{font-size:72.642194px;}
.fs20{font-size:72.643871px;}
.fs22{font-size:72.712044px;}
.fs24{font-size:73.006790px;}
.fs4{font-size:84.240000px;}
.fs1c{font-size:84.384000px;}
.fs29{font-size:90.006009px;}
.fs28{font-size:90.125818px;}
.fs8{font-size:95.760000px;}
.fs9{font-size:95.904000px;}
.fs12{font-size:100.938894px;}
.fs14{font-size:103.266088px;}
.fs18{font-size:104.172122px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:108.144000px;}
.fs16{font-size:108.856994px;}
.fs1a{font-size:110.063536px;}
.fs7{font-size:120.240000px;}
.fsb{font-size:120.384000px;}
.fs1f{font-size:124.517730px;}
.fs21{font-size:124.520605px;}
.fs23{font-size:124.647365px;}
.fs25{font-size:125.091574px;}
.fs13{font-size:137.891520px;}
.fs17{font-size:139.042678px;}
.fs26{font-size:140.817364px;}
.fsd{font-size:144.000000px;}
.fsa{font-size:167.760000px;}
.fs1b{font-size:167.904000px;}
.y0{bottom:0.000000px;}
.y1e8{bottom:2.433399px;}
.y146{bottom:3.548383px;}
.y156{bottom:3.581581px;}
.y1be{bottom:3.922716px;}
.y1b6{bottom:3.922720px;}
.y1ba{bottom:3.922767px;}
.y1c1{bottom:3.926463px;}
.y1c8{bottom:3.926469px;}
.y1c4{bottom:3.942378px;}
.y1ee{bottom:4.860339px;}
.y1f2{bottom:4.860356px;}
.y1e7{bottom:8.426037px;}
.y142{bottom:10.008870px;}
.y152{bottom:10.085241px;}
.y15a{bottom:10.085470px;}
.y1b7{bottom:11.713829px;}
.y1bb{bottom:11.714014px;}
.y1c9{bottom:11.725704px;}
.y1c5{bottom:11.738129px;}
.y9{bottom:12.636000px;}
.y1bf{bottom:13.175354px;}
.y1b8{bottom:13.175356px;}
.y1bc{bottom:13.175589px;}
.y1c2{bottom:13.189931px;}
.y1ca{bottom:13.189968px;}
.y1c6{bottom:13.234685px;}
.yb{bottom:14.508000px;}
.y1ea{bottom:20.199018px;}
.y1ec{bottom:25.838927px;}
.y141{bottom:30.275818px;}
.y140{bottom:30.496823px;}
.y151{bottom:30.510340px;}
.y8{bottom:30.672000px;}
.y150{bottom:30.739269px;}
.ya{bottom:32.544000px;}
.y1e9{bottom:35.001430px;}
.y1f4{bottom:35.274190px;}
.y1f0{bottom:35.274192px;}
.y147{bottom:40.482145px;}
.y1eb{bottom:40.640400px;}
.y157{bottom:40.837583px;}
.y1f6{bottom:40.908265px;}
.y144{bottom:43.053040px;}
.y154{bottom:43.403654px;}
.y159{bottom:43.403883px;}
.y143{bottom:43.861762px;}
.y153{bottom:44.202619px;}
.y158{bottom:44.202848px;}
.y145{bottom:46.945077px;}
.y155{bottom:47.341243px;}
.y149{bottom:49.515972px;}
.y15c{bottom:49.907773px;}
.y148{bottom:50.322738px;}
.y15b{bottom:50.706737px;}
.y6{bottom:51.264000px;}
.y1ef{bottom:58.649569px;}
.y1f3{bottom:58.649590px;}
.y226{bottom:63.144000px;}
.y59{bottom:66.924000px;}
.y7e{bottom:69.228000px;}
.y1f5{bottom:69.560095px;}
.y1f1{bottom:69.560096px;}
.y5e{bottom:71.928000px;}
.y52{bottom:72.180000px;}
.y34{bottom:72.468000px;}
.y194{bottom:73.044000px;}
.y272{bottom:73.728000px;}
.y104{bottom:74.628000px;}
.y28a{bottom:74.736000px;}
.y1f7{bottom:75.193231px;}
.y12c{bottom:75.348000px;}
.yba{bottom:76.032000px;}
.yc1{bottom:76.860000px;}
.y1c{bottom:77.076000px;}
.y199{bottom:77.580000px;}
.y20d{bottom:78.480000px;}
.y204{bottom:78.984000px;}
.y1cc{bottom:79.524000px;}
.y1dc{bottom:79.596000px;}
.y107{bottom:80.964000px;}
.ydb{bottom:81.612000px;}
.y20e{bottom:82.728000px;}
.y191{bottom:82.800000px;}
.y170{bottom:82.980000px;}
.y1b9{bottom:84.145959px;}
.y5{bottom:84.924000px;}
.y90{bottom:87.660000px;}
.y128{bottom:88.452000px;}
.y80{bottom:88.488000px;}
.y48{bottom:88.596000px;}
.y162{bottom:88.776000px;}
.y1db{bottom:89.352000px;}
.y13f{bottom:89.514500px;}
.y10b{bottom:89.568000px;}
.y7d{bottom:91.944000px;}
.y6b{bottom:92.412000px;}
.y1b2{bottom:92.808000px;}
.yb9{bottom:94.032000px;}
.y271{bottom:95.364000px;}
.y100{bottom:95.580000px;}
.y58{bottom:95.724000px;}
.y289{bottom:96.336000px;}
.y20c{bottom:96.480000px;}
.y39{bottom:97.164000px;}
.y51{bottom:98.100000px;}
.yc0{bottom:98.460000px;}
.yf4{bottom:99.828000px;}
.y190{bottom:100.800000px;}
.y16e{bottom:102.060000px;}
.y10a{bottom:104.400000px;}
.y1da{bottom:104.472000px;}
.y198{bottom:106.416000px;}
.y11c{bottom:109.512000px;}
.y7c{bottom:110.304000px;}
.y187{bottom:111.168000px;}
.y1b{bottom:111.816000px;}
.yb8{bottom:112.032000px;}
.y225{bottom:112.644000px;}
.y161{bottom:113.976000px;}
.y1b1{bottom:114.408000px;}
.y20b{bottom:114.480000px;}
.y47{bottom:116.712000px;}
.y270{bottom:116.964000px;}
.y33{bottom:117.828000px;}
.y288{bottom:117.936000px;}
.y4{bottom:118.620000px;}
.y38{bottom:118.764000px;}
.y18f{bottom:118.800000px;}
.ybf{bottom:120.096000px;}
.y66{bottom:121.788000px;}
.y1d9{bottom:122.472000px;}
.ya1{bottom:122.688000px;}
.y106{bottom:124.164000px;}
.y57{bottom:124.524000px;}
.yb7{bottom:130.068000px;}
.y14f{bottom:130.348769px;}
.y8f{bottom:130.896000px;}
.y20a{bottom:132.480000px;}
.y197{bottom:135.216000px;}
.y1b0{bottom:136.044000px;}
.y18e{bottom:136.800000px;}
.y24c{bottom:138.096000px;}
.y224{bottom:138.384000px;}
.yee{bottom:138.492000px;}
.y10f{bottom:139.536000px;}
.y127{bottom:140.292000px;}
.y37{bottom:140.364000px;}
.y186{bottom:141.408000px;}
.ybe{bottom:141.696000px;}
.y7b{bottom:142.704000px;}
.y6a{bottom:142.848000px;}
.y276{bottom:143.244000px;}
.ya0{bottom:144.288000px;}
.y1a{bottom:146.556000px;}
.yb6{bottom:148.068000px;}
.y50{bottom:149.976000px;}
.y46{bottom:151.275000px;}
.y32{bottom:152.385000px;}
.y56{bottom:153.330000px;}
.y175{bottom:153.615000px;}
.y18d{bottom:154.800000px;}
.y103{bottom:156.270000px;}
.y299{bottom:157.530000px;}
.y1af{bottom:157.650000px;}
.y223{bottom:158.190000px;}
.y8e{bottom:159.690000px;}
.y14e{bottom:159.990000px;}
.yed{bottom:160.095000px;}
.y26f{bottom:160.170000px;}
.y287{bottom:161.130000px;}
.y25f{bottom:161.970000px;}
.ybd{bottom:163.290000px;}
.y196{bottom:164.010000px;}
.yd2{bottom:165.165000px;}
.yb5{bottom:166.065000px;}
.y69{bottom:168.045000px;}
.y7a{bottom:170.790000px;}
.y185{bottom:171.645000px;}
.y18c{bottom:172.800000px;}
.y126{bottom:174.855000px;}
.y207{bottom:175.320000px;}
.y9f{bottom:176.685000px;}
.y222{bottom:177.990000px;}
.y298{bottom:179.130000px;}
.y1ae{bottom:179.250000px;}
.y231{bottom:179.640000px;}
.y29{bottom:180.465000px;}
.y24b{bottom:181.335000px;}
.y19{bottom:181.515000px;}
.y26e{bottom:181.770000px;}
.y55{bottom:182.160000px;}
.y286{bottom:182.730000px;}
.y25e{bottom:183.570000px;}
.y36{bottom:183.600000px;}
.y13e{bottom:183.960000px;}
.yb4{bottom:184.065000px;}
.y45{bottom:185.835000px;}
.yd1{bottom:186.765000px;}
.y31{bottom:186.945000px;}
.y8d{bottom:188.490000px;}
.y174{bottom:189.645000px;}
.y18b{bottom:190.800000px;}
.y102{bottom:193.755000px;}
.y1cb{bottom:195.270000px;}
.y1fb{bottom:195.450000px;}
.y12b{bottom:198.465000px;}
.y221{bottom:199.800000px;}
.y1c3{bottom:200.663118px;}
.y297{bottom:200.730000px;}
.y1ad{bottom:200.850000px;}
.y184{bottom:201.885000px;}
.y24a{bottom:202.935000px;}
.yec{bottom:203.325000px;}
.y26d{bottom:203.370000px;}
.y285{bottom:204.330000px;}
.y25d{bottom:205.170000px;}
.y35{bottom:205.200000px;}
.y79{bottom:205.350000px;}
.ybc{bottom:206.490000px;}
.yd0{bottom:208.365000px;}
.y18a{bottom:208.830000px;}
.y125{bottom:209.415000px;}
.y11d{bottom:210.240000px;}
.y10c{bottom:210.930000px;}
.y54{bottom:210.960000px;}
.y230{bottom:214.200000px;}
.y11b{bottom:214.275000px;}
.y18{bottom:216.255000px;}
.y1e1{bottom:216.900000px;}
.y1fa{bottom:217.050000px;}
.y8c{bottom:217.290000px;}
.y13d{bottom:218.520000px;}
.yb3{bottom:220.065000px;}
.y68{bottom:220.965000px;}
.y30{bottom:221.550000px;}
.y296{bottom:222.330000px;}
.y1ac{bottom:222.450000px;}
.yeb{bottom:224.925000px;}
.y173{bottom:225.645000px;}
.y28{bottom:225.870000px;}
.ycd{bottom:226.335000px;}
.y275{bottom:226.410000px;}
.y25c{bottom:226.770000px;}
.y189{bottom:226.830000px;}
.y12a{bottom:227.265000px;}
.y220{bottom:227.520000px;}
.y101{bottom:231.195000px;}
.ya2{bottom:231.270000px;}
.y183{bottom:232.170000px;}
.yff{bottom:235.050000px;}
.y1e0{bottom:235.620000px;}
.yb2{bottom:238.065000px;}
.y1e5{bottom:238.650000px;}
.y53{bottom:239.760000px;}
.y78{bottom:242.100000px;}
.y295{bottom:243.975000px;}
.y124{bottom:244.005000px;}
.y1ab{bottom:244.050000px;}
.y188{bottom:244.830000px;}
.y8b{bottom:246.090000px;}
.y249{bottom:246.135000px;}
.yea{bottom:246.525000px;}
.y26c{bottom:246.600000px;}
.y284{bottom:247.575000px;}
.ycc{bottom:247.935000px;}
.y1c0{bottom:248.398100px;}
.y25b{bottom:248.400000px;}
.y22f{bottom:248.760000px;}
.y11a{bottom:248.835000px;}
.y14a{bottom:250.560000px;}
.y17{bottom:250.995000px;}
.y235{bottom:251.460000px;}
.y14b{bottom:251.895000px;}
.y9e{bottom:252.645000px;}
.y44{bottom:252.825000px;}
.y13c{bottom:253.080000px;}
.y21f{bottom:255.240000px;}
.ybb{bottom:255.990000px;}
.yb1{bottom:256.065000px;}
.y2f{bottom:256.110000px;}
.y1df{bottom:257.220000px;}
.y1e4{bottom:260.250000px;}
.y27{bottom:260.430000px;}
.y172{bottom:261.645000px;}
.y294{bottom:265.575000px;}
.y1aa{bottom:265.650000px;}
.y248{bottom:267.735000px;}
.y26b{bottom:268.200000px;}
.y11e{bottom:268.560000px;}
.y283{bottom:269.175000px;}
.ycb{bottom:269.565000px;}
.y10e{bottom:270.465000px;}
.yb0{bottom:274.065000px;}
.y9d{bottom:274.245000px;}
.y8a{bottom:274.935000px;}
.y10d{bottom:276.585000px;}
.y5d{bottom:278.175000px;}
.ydd{bottom:278.535000px;}
.y123{bottom:278.565000px;}
.y43{bottom:280.905000px;}
.y1e3{bottom:281.850000px;}
.y21e{bottom:282.960000px;}
.y77{bottom:283.140000px;}
.y119{bottom:283.395000px;}
.y16{bottom:285.915000px;}
.y29a{bottom:287.175000px;}
.y13b{bottom:287.640000px;}
.y247{bottom:289.335000px;}
.y26a{bottom:289.800000px;}
.y195{bottom:290.370000px;}
.y2e{bottom:290.670000px;}
.y282{bottom:290.775000px;}
.yca{bottom:291.165000px;}
.y25a{bottom:291.600000px;}
.yaf{bottom:292.110000px;}
.y182{bottom:292.650000px;}
.y5c{bottom:296.175000px;}
.y206{bottom:296.640000px;}
.y23e{bottom:296.715000px;}
.y171{bottom:297.645000px;}
.y1bd{bottom:300.190772px;}
.y19b{bottom:300.675000px;}
.y16c{bottom:300.885000px;}
.y1de{bottom:301.035000px;}
.y1e2{bottom:303.450000px;}
.y89{bottom:303.735000px;}
.y293{bottom:308.775000px;}
.y1a9{bottom:308.880000px;}
.yae{bottom:310.110000px;}
.y21d{bottom:310.680000px;}
.ye9{bottom:311.325000px;}
.y281{bottom:312.375000px;}
.yc9{bottom:312.765000px;}
.y259{bottom:313.200000px;}
.y5b{bottom:314.175000px;}
.y5a{bottom:315.285000px;}
.y42{bottom:315.465000px;}
.y7{bottom:316.155000px;}
.y9c{bottom:317.445000px;}
.y76{bottom:317.700000px;}
.y22e{bottom:317.910000px;}
.y118{bottom:317.955000px;}
.y23d{bottom:318.315000px;}
.y15{bottom:320.685000px;}
.y234{bottom:321.150000px;}
.y13a{bottom:322.200000px;}
.y181{bottom:322.890000px;}
.y19a{bottom:329.505000px;}
.y292{bottom:330.375000px;}
.y1a8{bottom:330.480000px;}
.y246{bottom:332.565000px;}
.ye8{bottom:332.925000px;}
.y193{bottom:332.970000px;}
.y269{bottom:333.000000px;}
.yc8{bottom:334.365000px;}
.y258{bottom:334.800000px;}
.y166{bottom:335.490000px;}
.y21c{bottom:336.420000px;}
.y16b{bottom:337.470000px;}
.y9b{bottom:339.045000px;}
.yad{bottom:346.110000px;}
.y122{bottom:347.685000px;}
.y177{bottom:347.970000px;}
.y16d{bottom:349.020000px;}
.y41{bottom:350.025000px;}
.y75{bottom:350.100000px;}
.y26{bottom:351.150000px;}
.y291{bottom:351.975000px;}
.y1a7{bottom:352.080000px;}
.y22d{bottom:352.470000px;}
.y117{bottom:352.545000px;}
.y180{bottom:353.130000px;}
.y245{bottom:354.165000px;}
.y268{bottom:354.600000px;}
.yd7{bottom:355.140000px;}
.y14{bottom:355.425000px;}
.y16a{bottom:355.470000px;}
.y280{bottom:355.575000px;}
.yc7{bottom:355.965000px;}
.y139{bottom:356.790000px;}
.y2d{bottom:357.630000px;}
.y21b{bottom:358.230000px;}
.y15e{bottom:359.490000px;}
.yd5{bottom:360.975000px;}
.y88{bottom:361.335000px;}
.y23c{bottom:361.515000px;}
.y1f9{bottom:363.600000px;}
.yac{bottom:364.110000px;}
.y165{bottom:364.290000px;}
.y67{bottom:373.170000px;}
.y290{bottom:373.575000px;}
.y1a6{bottom:373.680000px;}
.y1b4{bottom:374.325000px;}
.y267{bottom:376.200000px;}
.y27f{bottom:377.175000px;}
.yc6{bottom:377.565000px;}
.y257{bottom:378.000000px;}
.y74{bottom:378.180000px;}
.y1f8{bottom:379.800000px;}
.yab{bottom:382.110000px;}
.y121{bottom:382.245000px;}
.y9a{bottom:382.290000px;}
.y23b{bottom:383.115000px;}
.y17f{bottom:383.400000px;}
.y40{bottom:384.585000px;}
.y25{bottom:385.740000px;}
.y21a{bottom:385.950000px;}
.y22c{bottom:387.030000px;}
.y116{bottom:387.105000px;}
.y87{bottom:390.135000px;}
.y13{bottom:390.345000px;}
.y233{bottom:390.630000px;}
.y138{bottom:391.350000px;}
.y65{bottom:392.835000px;}
.y28f{bottom:395.205000px;}
.y1a5{bottom:395.280000px;}
.y1b3{bottom:395.925000px;}
.y176{bottom:395.970000px;}
.y244{bottom:397.365000px;}
.ye7{bottom:397.770000px;}
.y274{bottom:397.800000px;}
.y27e{bottom:398.805000px;}
.yc5{bottom:399.165000px;}
.y256{bottom:399.630000px;}
.yaa{bottom:400.110000px;}
.y14c{bottom:401.475000px;}
.y4f{bottom:402.735000px;}
.y99{bottom:403.890000px;}
.y168{bottom:404.490000px;}
.y1ed{bottom:404.829889px;}
.y2c{bottom:407.340000px;}
.y73{bottom:410.610000px;}
.y11f{bottom:412.590000px;}
.y219{bottom:413.670000px;}
.yf8{bottom:415.770000px;}
.y23a{bottom:416.805000px;}
.y1a4{bottom:416.880000px;}
.y205{bottom:417.990000px;}
.y86{bottom:418.935000px;}
.y243{bottom:418.965000px;}
.y3f{bottom:419.190000px;}
.y266{bottom:419.430000px;}
.y3{bottom:419.730000px;}
.y24{bottom:420.300000px;}
.y27d{bottom:420.405000px;}
.yc4{bottom:420.810000px;}
.y255{bottom:421.230000px;}
.y22b{bottom:421.590000px;}
.y115{bottom:421.665000px;}
.y15d{bottom:421.890000px;}
.y12{bottom:425.085000px;}
.y137{bottom:425.910000px;}
.y1c7{bottom:427.708094px;}
.ye6{bottom:430.170000px;}
.y12d{bottom:430.530000px;}
.y1b5{bottom:432.025795px;}
.y129{bottom:433.875000px;}
.ya9{bottom:436.110000px;}
.y4e{bottom:437.325000px;}
.y28e{bottom:438.405000px;}
.y72{bottom:438.690000px;}
.y167{bottom:439.410000px;}
.y192{bottom:440.820000px;}
.y265{bottom:441.030000px;}
.y218{bottom:441.390000px;}
.y2b{bottom:441.900000px;}
.y254{bottom:442.830000px;}
.y1d8{bottom:444.165000px;}
.yd4{bottom:446.505000px;}
.y64{bottom:446.835000px;}
.y98{bottom:447.090000px;}
.y17e{bottom:447.405000px;}
.y85{bottom:447.765000px;}
.y14d{bottom:450.390000px;}
.ye5{bottom:451.770000px;}
.yda{bottom:453.030000px;}
.ya8{bottom:454.140000px;}
.y23{bottom:454.860000px;}
.y114{bottom:456.225000px;}
.yf2{bottom:457.635000px;}
.y11{bottom:459.825000px;}
.y28d{bottom:460.005000px;}
.y1a3{bottom:460.110000px;}
.y136{bottom:460.470000px;}
.y1d{bottom:460.830000px;}
.y2{bottom:461.850000px;}
.y242{bottom:462.165000px;}
.y1d7{bottom:462.210000px;}
.y264{bottom:462.630000px;}
.y27c{bottom:463.605000px;}
.yc3{bottom:464.010000px;}
.y97{bottom:468.690000px;}
.y217{bottom:469.110000px;}
.y71{bottom:471.090000px;}
.y4d{bottom:471.885000px;}
.ye4{bottom:473.370000px;}
.y160{bottom:473.865000px;}
.y84{bottom:476.565000px;}
.y203{bottom:477.390000px;}
.y17d{bottom:477.645000px;}
.yf1{bottom:479.235000px;}
.y63{bottom:481.425000px;}
.yf7{bottom:481.575000px;}
.y28c{bottom:481.605000px;}
.y1a2{bottom:481.710000px;}
.y241{bottom:483.810000px;}
.y273{bottom:484.230000px;}
.y27b{bottom:485.205000px;}
.y253{bottom:486.030000px;}
.y3e{bottom:488.310000px;}
.y22{bottom:489.420000px;}
.y108{bottom:489.930000px;}
.ya7{bottom:490.140000px;}
.y96{bottom:490.290000px;}
.y22a{bottom:490.755000px;}
.y113{bottom:490.785000px;}
.y10{bottom:494.790000px;}
.ye3{bottom:494.970000px;}
.yfe{bottom:495.030000px;}
.y135{bottom:495.075000px;}
.y202{bottom:495.390000px;}
.y216{bottom:496.830000px;}
.y1d0{bottom:498.705000px;}
.y70{bottom:499.170000px;}
.y28b{bottom:503.205000px;}
.y1a1{bottom:503.310000px;}
.y83{bottom:505.365000px;}
.y263{bottom:505.830000px;}
.y4c{bottom:506.445000px;}
.y27a{bottom:506.805000px;}
.y252{bottom:507.630000px;}
.y17c{bottom:507.885000px;}
.yd9{bottom:508.710000px;}
.y2a{bottom:508.860000px;}
.y163{bottom:510.015000px;}
.y95{bottom:511.890000px;}
.y201{bottom:513.390000px;}
.y62{bottom:515.985000px;}
.ye2{bottom:516.600000px;}
.y1cf{bottom:520.305000px;}
.y1d6{bottom:520.920000px;}
.y164{bottom:521.460000px;}
.y3d{bottom:522.870000px;}
.yfd{bottom:523.875000px;}
.y21{bottom:523.980000px;}
.y215{bottom:524.595000px;}
.y239{bottom:524.805000px;}
.y1a0{bottom:524.910000px;}
.y229{bottom:525.315000px;}
.y112{bottom:525.390000px;}
.ya6{bottom:526.140000px;}
.y240{bottom:527.010000px;}
.y262{bottom:527.430000px;}
.y279{bottom:528.405000px;}
.y251{bottom:529.230000px;}
.yf{bottom:529.530000px;}
.y134{bottom:529.635000px;}
.yd3{bottom:530.895000px;}
.y200{bottom:531.390000px;}
.y94{bottom:533.490000px;}
.y6f{bottom:533.730000px;}
.y17b{bottom:538.125000px;}
.ye1{bottom:538.200000px;}
.y4b{bottom:541.005000px;}
.y1ce{bottom:541.905000px;}
.ya5{bottom:544.140000px;}
.y238{bottom:546.450000px;}
.y19f{bottom:546.510000px;}
.y23f{bottom:548.610000px;}
.yc2{bottom:548.745000px;}
.yef{bottom:548.895000px;}
.y261{bottom:549.030000px;}
.y1ff{bottom:549.390000px;}
.y61{bottom:550.545000px;}
.y130{bottom:551.520000px;}
.y214{bottom:552.315000px;}
.yfc{bottom:552.675000px;}
.y93{bottom:555.120000px;}
.y3c{bottom:557.430000px;}
.y20{bottom:558.570000px;}
.ye0{bottom:559.800000px;}
.y228{bottom:559.875000px;}
.y111{bottom:559.950000px;}
.y1dd{bottom:561.525000px;}
.ya4{bottom:562.140000px;}
.y82{bottom:562.965000px;}
.y1cd{bottom:563.505000px;}
.y133{bottom:564.195000px;}
.ye{bottom:564.270000px;}
.y1e6{bottom:564.680755px;}
.y1fe{bottom:567.390000px;}
.y237{bottom:568.050000px;}
.y19e{bottom:568.110000px;}
.y6e{bottom:568.335000px;}
.y17a{bottom:568.365000px;}
.y260{bottom:570.675000px;}
.y1{bottom:571.755000px;}
.y250{bottom:572.115000px;}
.yd8{bottom:574.455000px;}
.y4a{bottom:575.565000px;}
.y92{bottom:576.720000px;}
.y213{bottom:578.055000px;}
.y15f{bottom:578.775000px;}
.ya3{bottom:580.140000px;}
.y12f{bottom:580.320000px;}
.ydf{bottom:581.400000px;}
.yfb{bottom:581.475000px;}
.y232{bottom:581.940000px;}
.y60{bottom:585.105000px;}
.y1fd{bottom:585.390000px;}
.y16f{bottom:588.420000px;}
.y169{bottom:588.960000px;}
.yf0{bottom:589.395000px;}
.y236{bottom:589.650000px;}
.y19d{bottom:589.710000px;}
.yf5{bottom:591.090000px;}
.y3b{bottom:592.020000px;}
.y24f{bottom:592.275000px;}
.y1f{bottom:593.130000px;}
.y110{bottom:594.510000px;}
.y212{bottom:597.855000px;}
.y179{bottom:598.650000px;}
.y132{bottom:598.755000px;}
.y6c{bottom:600.015000px;}
.ycf{bottom:600.300000px;}
.y120{bottom:602.385000px;}
.y1fc{bottom:605.415000px;}
.y1d3{bottom:606.394500px;}
.y208{bottom:607.830000px;}
.y209{bottom:608.400000px;}
.yfa{bottom:610.275000px;}
.y278{bottom:611.250000px;}
.y19c{bottom:611.355000px;}
.y24e{bottom:613.875000px;}
.y12e{bottom:613.905000px;}
.yc{bottom:614.775000px;}
.y1d4{bottom:615.210000px;}
.yd6{bottom:617.865000px;}
.y211{bottom:619.635000px;}
.y91{bottom:619.920000px;}
.y81{bottom:620.610000px;}
.yf6{bottom:624.855000px;}
.y3a{bottom:626.580000px;}
.y49{bottom:627.450000px;}
.y1e{bottom:627.690000px;}
.y178{bottom:628.890000px;}
.y227{bottom:629.025000px;}
.yce{bottom:629.100000px;}
.y105{bottom:630.720000px;}
.y277{bottom:632.850000px;}
.y131{bottom:633.315000px;}
.y24d{bottom:635.475000px;}
.y5f{bottom:636.990000px;}
.y6d{bottom:637.455000px;}
.ydc{bottom:637.740000px;}
.yf9{bottom:639.075000px;}
.yde{bottom:640.335000px;}
.y7f{bottom:642.210000px;}
.y1d2{bottom:642.799500px;}
.y109{bottom:643.110000px;}
.y1d5{bottom:644.295000px;}
.y210{bottom:647.355000px;}
.yf3{bottom:661.935000px;}
.y20f{bottom:675.105000px;}
.y1d1{bottom:684.739500px;}
.yd{bottom:685.050000px;}
.h54{height:31.245900px;}
.h15{height:32.291016px;}
.h55{height:34.300176px;}
.h4f{height:34.347266px;}
.h3a{height:38.078916px;}
.h3e{height:38.079710px;}
.h49{height:38.119453px;}
.h42{height:38.119461px;}
.h45{height:38.253018px;}
.h1f{height:43.269961px;}
.h4c{height:43.646836px;}
.h18{height:44.090508px;}
.h1a{height:44.196750px;}
.h26{height:45.625420px;}
.h30{height:46.052166px;}
.h39{height:48.858398px;}
.h28{height:50.085288px;}
.h32{height:50.553749px;}
.h7{height:53.603086px;}
.h6{height:53.732250px;}
.h17{height:54.069961px;}
.h11{height:54.105469px;}
.h19{height:54.200250px;}
.h16{height:54.213680px;}
.h3b{height:55.368391px;}
.h3f{height:55.369670px;}
.h4a{height:55.421631px;}
.h46{height:55.646289px;}
.h4d{height:56.277244px;}
.h59{height:59.415469px;}
.h58{height:59.544633px;}
.h53{height:62.494407px;}
.h51{height:62.577595px;}
.hf{height:64.582031px;}
.h10{height:64.711195px;}
.h1{height:65.144531px;}
.h4{height:65.274820px;}
.h56{height:68.603213px;}
.h50{height:68.694532px;}
.h22{height:70.085501px;}
.h12{height:70.651055px;}
.h25{height:71.701356px;}
.h2f{height:72.330448px;}
.h23{height:72.445737px;}
.h2d{height:73.024626px;}
.h1e{height:75.560977px;}
.h27{height:75.583323px;}
.h57{height:75.690141px;}
.h13{height:76.219102px;}
.h38{height:76.349391px;}
.h31{height:76.421069px;}
.h29{height:78.710138px;}
.h33{height:79.400724px;}
.h1c{height:82.318359px;}
.ha{height:85.894102px;}
.he{height:86.023266px;}
.h20{height:86.349961px;}
.hb{height:86.642227px;}
.hc{height:86.772516px;}
.h2a{height:87.691684px;}
.h34{height:88.404697px;}
.h52{height:90.809393px;}
.h3d{height:94.757993px;}
.h41{height:94.760181px;}
.h44{height:94.856644px;}
.h3c{height:94.908290px;}
.h40{height:94.910481px;}
.h4b{height:95.007098px;}
.h48{height:95.194688px;}
.h47{height:95.345677px;}
.h24{height:95.743038px;}
.h2e{height:96.542328px;}
.h5{height:96.873047px;}
.h2c{height:97.002211px;}
.h2{height:97.716797px;}
.h4e{height:97.774556px;}
.h3{height:97.847086px;}
.h2b{height:106.242188px;}
.h36{height:107.851992px;}
.h14{height:107.981156px;}
.h9{height:108.791367px;}
.h21{height:108.921656px;}
.h8{height:118.388250px;}
.h43{height:126.203761px;}
.h1b{height:130.289062px;}
.h35{height:150.476133px;}
.hd{height:151.786758px;}
.h37{height:151.917047px;}
.h1d{height:156.033047px;}
.h0{height:810.000000px;}
.w7{width:35.240020px;}
.w4{width:35.481179px;}
.w5{width:40.353150px;}
.w3{width:44.798439px;}
.w8{width:56.801730px;}
.w6{width:137.648758px;}
.w9{width:185.420140px;}
.wa{width:214.425674px;}
.w1{width:458.635473px;}
.w2{width:458.637207px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x57{left:2.569532px;}
.x7e{left:7.554021px;}
.x56{left:14.751943px;}
.x7d{left:21.783430px;}
.x54{left:30.017691px;}
.x96{left:34.715725px;}
.x95{left:38.448178px;}
.x4e{left:39.998762px;}
.x98{left:41.053172px;}
.x83{left:42.821924px;}
.x23{left:44.388000px;}
.x11{left:52.056000px;}
.x5d{left:54.764517px;}
.x5{left:62.172000px;}
.x85{left:68.940000px;}
.x1e{left:70.452000px;}
.x1{left:72.504000px;}
.x8{left:73.800000px;}
.x2{left:75.528000px;}
.x9f{left:77.760000px;}
.x82{left:79.181834px;}
.x9{left:83.196000px;}
.x75{left:84.996000px;}
.xd{left:86.184000px;}
.xa1{left:87.300000px;}
.x8e{left:90.667507px;}
.x5f{left:94.680000px;}
.x79{left:96.300000px;}
.x9d{left:97.632000px;}
.x97{left:100.979283px;}
.x18{left:105.156000px;}
.x1b{left:107.676000px;}
.x92{left:108.841264px;}
.x81{left:114.632210px;}
.x48{left:115.740000px;}
.x91{left:126.242296px;}
.x3f{left:130.248000px;}
.x69{left:132.192000px;}
.x90{left:136.881798px;}
.x94{left:144.287901px;}
.x2f{left:148.464000px;}
.xe{left:157.785000px;}
.x8f{left:171.118651px;}
.xf{left:172.185000px;}
.x8b{left:174.210000px;}
.x61{left:177.915000px;}
.x6f{left:179.175000px;}
.x13{left:181.830000px;}
.x3a{left:188.280000px;}
.x89{left:192.885000px;}
.x2e{left:199.830000px;}
.x64{left:203.970000px;}
.x62{left:206.490000px;}
.x9c{left:212.970000px;}
.x4d{left:221.706265px;}
.x60{left:227.520000px;}
.x12{left:233.610000px;}
.x72{left:236.445000px;}
.x6d{left:245.085000px;}
.x5e{left:252.523935px;}
.x27{left:253.545000px;}
.x53{left:264.712970px;}
.x71{left:270.285000px;}
.x55{left:273.519045px;}
.x20{left:283.425000px;}
.x52{left:285.261403px;}
.x49{left:290.608593px;}
.x6e{left:297.645000px;}
.x70{left:306.645000px;}
.x4c{left:309.918254px;}
.x33{left:311.865000px;}
.x41{left:313.050000px;}
.x3e{left:323.430000px;}
.x15{left:327.675000px;}
.x32{left:333.255000px;}
.x42{left:339.375000px;}
.x50{left:344.778288px;}
.x4f{left:346.024906px;}
.x39{left:351.000000px;}
.x51{left:360.263275px;}
.x38{left:361.980000px;}
.x84{left:366.735000px;}
.xa4{left:374.940000px;}
.x76{left:387.540000px;}
.x9b{left:390.750000px;}
.x4a{left:391.893564px;}
.x1c{left:399.885000px;}
.x4{left:402.810000px;}
.xa3{left:407.520000px;}
.x68{left:412.890000px;}
.x7{left:417.750000px;}
.x16{left:419.475000px;}
.xa2{left:435.060000px;}
.x3{left:437.010000px;}
.x4b{left:438.421664px;}
.x73{left:444.570000px;}
.x86{left:445.575000px;}
.x74{left:449.250000px;}
.x1d{left:484.485000px;}
.x2b{left:491.610000px;}
.x17{left:505.875000px;}
.x26{left:516.960000px;}
.x3d{left:542.625000px;}
.xb{left:544.290000px;}
.x28{left:549.000000px;}
.x8a{left:554.940000px;}
.x7a{left:558.570000px;}
.x35{left:561.960000px;}
.x46{left:573.735000px;}
.x37{left:575.790000px;}
.x7b{left:577.830000px;}
.x29{left:594.570000px;}
.x78{left:597.780000px;}
.x44{left:599.475000px;}
.x6a{left:606.390000px;}
.x80{left:614.180318px;}
.x7f{left:616.674141px;}
.x5a{left:626.430000px;}
.x43{left:638.280000px;}
.xa{left:642.345000px;}
.x21{left:651.030000px;}
.x63{left:663.045000px;}
.x59{left:674.460000px;}
.x65{left:695.550000px;}
.x6{left:697.860000px;}
.x19{left:699.405000px;}
.x40{left:708.585000px;}
.x5b{left:714.885000px;}
.x5c{left:751.245000px;}
.x34{left:753.630000px;}
.x24{left:760.065000px;}
.x87{left:766.080000px;}
.x66{left:777.810000px;}
.x3b{left:786.240000px;}
.x36{left:787.470000px;}
.x47{left:801.105000px;}
.x58{left:802.185000px;}
.x88{left:810.510000px;}
.x10{left:815.730000px;}
.x3c{left:826.740000px;}
.x7c{left:839.130000px;}
.x2c{left:848.085000px;}
.x93{left:850.289161px;}
.x99{left:855.150000px;}
.x67{left:857.805000px;}
.x8d{left:859.438698px;}
.x30{left:867.810000px;}
.x45{left:869.325000px;}
.x77{left:872.490000px;}
.x9e{left:892.875000px;}
.x2d{left:899.280000px;}
.x9a{left:902.010000px;}
.x8c{left:904.245000px;}
.x6b{left:919.770000px;}
.x22{left:921.600000px;}
.xa0{left:923.325000px;}
.x1f{left:925.200000px;}
.x6c{left:929.235000px;}
.x14{left:937.260000px;}
.xc{left:941.070000px;}
.x1a{left:958.755000px;}
.x2a{left:966.450000px;}
.x25{left:973.005000px;}
.x31{left:979.950000px;}
@media print{
.v12{vertical-align:-63.168315pt;}
.v2{vertical-align:-51.584000pt;}
.vb{vertical-align:-45.430125pt;}
.v11{vertical-align:-43.115306pt;}
.v13{vertical-align:-38.792795pt;}
.ve{vertical-align:-27.730368pt;}
.v5{vertical-align:-23.680000pt;}
.v7{vertical-align:-20.480000pt;}
.v10{vertical-align:-15.360000pt;}
.v3{vertical-align:-12.906667pt;}
.vc{vertical-align:-9.760000pt;}
.v8{vertical-align:-7.680000pt;}
.vf{vertical-align:-5.206317pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:7.680000pt;}
.va{vertical-align:25.600000pt;}
.vd{vertical-align:27.730368pt;}
.v6{vertical-align:38.293333pt;}
.v4{vertical-align:52.586667pt;}
.v1{vertical-align:57.472000pt;}
.lsc5{letter-spacing:-5.813333pt;}
.lsc9{letter-spacing:-4.864000pt;}
.ls80{letter-spacing:-3.866366pt;}
.ls37{letter-spacing:-1.114667pt;}
.ls5d{letter-spacing:-0.912000pt;}
.ls4e{letter-spacing:-0.768000pt;}
.lsa7{letter-spacing:-0.765249pt;}
.ls5c{letter-spacing:-0.736000pt;}
.ls93{letter-spacing:-0.688000pt;}
.ls87{letter-spacing:-0.672000pt;}
.ls89{letter-spacing:-0.624000pt;}
.ls12{letter-spacing:-0.608000pt;}
.ls8a{letter-spacing:-0.544000pt;}
.ls61{letter-spacing:-0.512000pt;}
.ls92{letter-spacing:-0.456533pt;}
.ls25{letter-spacing:-0.454933pt;}
.ls4f{letter-spacing:-0.384000pt;}
.ls7a{letter-spacing:-0.380800pt;}
.lsc6{letter-spacing:-0.336533pt;}
.ls1d{letter-spacing:-0.326933pt;}
.ls88{letter-spacing:-0.311467pt;}
.ls79{letter-spacing:-0.309867pt;}
.ls57{letter-spacing:-0.272533pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls2b{letter-spacing:-0.246400pt;}
.ls4d{letter-spacing:-0.234667pt;}
.ls5b{letter-spacing:-0.230933pt;}
.ls38{letter-spacing:-0.227733pt;}
.ls9d{letter-spacing:-0.220267pt;}
.ls22{letter-spacing:-0.192000pt;}
.ls39{letter-spacing:-0.185067pt;}
.ls6b{letter-spacing:-0.182933pt;}
.ls1c{letter-spacing:-0.168533pt;}
.ls36{letter-spacing:-0.165867pt;}
.ls7b{letter-spacing:-0.165333pt;}
.ls5f{letter-spacing:-0.156267pt;}
.ls4c{letter-spacing:-0.142400pt;}
.ls6c{letter-spacing:-0.137600pt;}
.ls21{letter-spacing:-0.128000pt;}
.ls32{letter-spacing:-0.108800pt;}
.lsc4{letter-spacing:-0.104533pt;}
.ls7c{letter-spacing:-0.100137pt;}
.ls34{letter-spacing:-0.094933pt;}
.ls5a{letter-spacing:-0.089067pt;}
.ls20{letter-spacing:-0.064000pt;}
.lsa8{letter-spacing:-0.060753pt;}
.ls56{letter-spacing:-0.047467pt;}
.lsa5{letter-spacing:-0.046159pt;}
.ls58{letter-spacing:-0.045333pt;}
.lsaf{letter-spacing:-0.043085pt;}
.lsab{letter-spacing:-0.040533pt;}
.ls14{letter-spacing:-0.037867pt;}
.lsa6{letter-spacing:-0.037490pt;}
.ls67{letter-spacing:-0.033067pt;}
.ls68{letter-spacing:-0.025067pt;}
.ls16{letter-spacing:-0.019200pt;}
.lsa9{letter-spacing:-0.018341pt;}
.ls33{letter-spacing:-0.016533pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc1{letter-spacing:0.003627pt;}
.ls7d{letter-spacing:0.004311pt;}
.ls9e{letter-spacing:0.004806pt;}
.lsb3{letter-spacing:0.016000pt;}
.lsa{letter-spacing:0.016533pt;}
.lse{letter-spacing:0.016640pt;}
.lsbd{letter-spacing:0.023467pt;}
.ls84{letter-spacing:0.024960pt;}
.ls8b{letter-spacing:0.025067pt;}
.lsa4{letter-spacing:0.028733pt;}
.lsc{letter-spacing:0.033067pt;}
.ls3{letter-spacing:0.033280pt;}
.ls54{letter-spacing:0.047467pt;}
.lsb1{letter-spacing:0.058074pt;}
.ls9c{letter-spacing:0.064000pt;}
.ls13{letter-spacing:0.090133pt;}
.ls24{letter-spacing:0.092267pt;}
.lscb{letter-spacing:0.092416pt;}
.lsbb{letter-spacing:0.093867pt;}
.lsc0{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.099733pt;}
.ls26{letter-spacing:0.106667pt;}
.lsc3{letter-spacing:0.110336pt;}
.ls64{letter-spacing:0.118400pt;}
.ls23{letter-spacing:0.128000pt;}
.lsb0{letter-spacing:0.137940pt;}
.lsb2{letter-spacing:0.144851pt;}
.lsbe{letter-spacing:0.152960pt;}
.ls15{letter-spacing:0.161067pt;}
.ls59{letter-spacing:0.175467pt;}
.ls8d{letter-spacing:0.183467pt;}
.lsca{letter-spacing:0.184832pt;}
.ls76{letter-spacing:0.184960pt;}
.ls19{letter-spacing:0.185067pt;}
.ls52{letter-spacing:0.188416pt;}
.ls4b{letter-spacing:0.192000pt;}
.ls6d{letter-spacing:0.210133pt;}
.ls8f{letter-spacing:0.230933pt;}
.ls51{letter-spacing:0.231040pt;}
.ls3c{letter-spacing:0.243200pt;}
.ls1{letter-spacing:0.256000pt;}
.ls3a{letter-spacing:0.275200pt;}
.ls3d{letter-spacing:0.288000pt;}
.ls69{letter-spacing:0.289067pt;}
.lscc{letter-spacing:0.291499pt;}
.ls66{letter-spacing:0.297600pt;}
.ls82{letter-spacing:0.303360pt;}
.lsf{letter-spacing:0.303467pt;}
.ls50{letter-spacing:0.313067pt;}
.ls2c{letter-spacing:0.320000pt;}
.lsa3{letter-spacing:0.362667pt;}
.lsba{letter-spacing:0.367467pt;}
.ls3b{letter-spacing:0.384000pt;}
.ls63{letter-spacing:0.416000pt;}
.lsc2{letter-spacing:0.425600pt;}
.ls55{letter-spacing:0.448000pt;}
.lsaa{letter-spacing:0.576000pt;}
.ls8e{letter-spacing:0.592640pt;}
.ls31{letter-spacing:0.602667pt;}
.ls35{letter-spacing:0.621056pt;}
.ls10{letter-spacing:0.656000pt;}
.ls4{letter-spacing:0.656640pt;}
.ls1a{letter-spacing:0.672000pt;}
.ls48{letter-spacing:0.732416pt;}
.ls1e{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.800000pt;}
.lsb9{letter-spacing:0.821333pt;}
.ls81{letter-spacing:1.115141pt;}
.ls6a{letter-spacing:1.261056pt;}
.ls6{letter-spacing:1.296640pt;}
.ls85{letter-spacing:1.583360pt;}
.ls91{letter-spacing:1.696000pt;}
.ls90{letter-spacing:1.872640pt;}
.ls7{letter-spacing:1.936640pt;}
.ls4a{letter-spacing:2.048000pt;}
.ls2a{letter-spacing:2.576640pt;}
.ls47{letter-spacing:2.688000pt;}
.ls43{letter-spacing:3.292416pt;}
.ls46{letter-spacing:3.328000pt;}
.lsb5{letter-spacing:3.792640pt;}
.ls71{letter-spacing:3.856640pt;}
.lsb6{letter-spacing:4.432640pt;}
.lsb{letter-spacing:4.496640pt;}
.lsa1{letter-spacing:4.608000pt;}
.ls6e{letter-spacing:5.136640pt;}
.ls99{letter-spacing:5.248000pt;}
.ls53{letter-spacing:5.712640pt;}
.ls27{letter-spacing:5.776640pt;}
.ls28{letter-spacing:7.056640pt;}
.ls9{letter-spacing:7.696640pt;}
.ls44{letter-spacing:9.088000pt;}
.ls86{letter-spacing:9.423360pt;}
.ls45{letter-spacing:9.728000pt;}
.ls29{letter-spacing:10.256640pt;}
.ls62{letter-spacing:10.346667pt;}
.ls70{letter-spacing:11.501056pt;}
.ls83{letter-spacing:11.823360pt;}
.lsae{letter-spacing:13.328000pt;}
.ls72{letter-spacing:13.456640pt;}
.lsb8{letter-spacing:14.672640pt;}
.ls18{letter-spacing:15.341056pt;}
.ls49{letter-spacing:15.488000pt;}
.ls2d{letter-spacing:16.656640pt;}
.ls2e{letter-spacing:16.763307pt;}
.lsb7{letter-spacing:17.232640pt;}
.ls17{letter-spacing:17.296640pt;}
.ls5e{letter-spacing:17.386667pt;}
.ls98{letter-spacing:17.464832pt;}
.lsa2{letter-spacing:17.536000pt;}
.ls65{letter-spacing:17.984000pt;}
.ls8c{letter-spacing:19.808000pt;}
.ls60{letter-spacing:19.946667pt;}
.lsd{letter-spacing:20.496640pt;}
.ls2f{letter-spacing:21.101056pt;}
.ls30{letter-spacing:21.741056pt;}
.lsc7{letter-spacing:22.688000pt;}
.lsc8{letter-spacing:23.968000pt;}
.ls95{letter-spacing:24.145920pt;}
.ls94{letter-spacing:24.204800pt;}
.ls42{letter-spacing:24.442112pt;}
.ls6f{letter-spacing:24.496640pt;}
.ls1f{letter-spacing:46.720000pt;}
.ls96{letter-spacing:50.560000pt;}
.lsa0{letter-spacing:51.200000pt;}
.ls9b{letter-spacing:51.795200pt;}
.ls9a{letter-spacing:51.840000pt;}
.ls97{letter-spacing:53.760000pt;}
.ls9f{letter-spacing:56.625312pt;}
.lsb4{letter-spacing:57.568000pt;}
.lsbc{letter-spacing:57.587200pt;}
.lsbf{letter-spacing:57.632000pt;}
.ls73{letter-spacing:91.536640pt;}
.ls5{letter-spacing:113.523200pt;}
.ls2{letter-spacing:113.568000pt;}
.ls75{letter-spacing:122.611200pt;}
.ls74{letter-spacing:122.656000pt;}
.ls41{letter-spacing:123.123200pt;}
.ls40{letter-spacing:123.168000pt;}
.ls3f{letter-spacing:123.296000pt;}
.lsad{letter-spacing:136.442244pt;}
.lsac{letter-spacing:360.126501pt;}
.ls3e{letter-spacing:360.496640pt;}
.ls7f{letter-spacing:405.020429pt;}
.ls78{letter-spacing:416.707872pt;}
.ls7e{letter-spacing:1311.156090pt;}
.ls77{letter-spacing:1342.018439pt;}
.wsd9{word-spacing:-74.880000pt;}
.wsd3{word-spacing:-64.000000pt;}
.wsf1{word-spacing:-50.835996pt;}
.wsea{word-spacing:-50.393851pt;}
.ws167{word-spacing:-43.981399pt;}
.ws16b{word-spacing:-43.922932pt;}
.wsf8{word-spacing:-41.455360pt;}
.wsbd{word-spacing:-35.584000pt;}
.wse0{word-spacing:-29.748224pt;}
.ws1{word-spacing:-29.712640pt;}
.wsc4{word-spacing:-26.688000pt;}
.ws7{word-spacing:-24.463360pt;}
.wsf{word-spacing:-24.335360pt;}
.ws6{word-spacing:-24.319360pt;}
.ws22{word-spacing:-24.301611pt;}
.ws21{word-spacing:-23.983360pt;}
.wsdf{word-spacing:-23.974144pt;}
.ws3{word-spacing:-23.966827pt;}
.ws11{word-spacing:-23.954944pt;}
.ws20{word-spacing:-23.848427pt;}
.wsb{word-spacing:-23.824427pt;}
.wsc2{word-spacing:-23.817344pt;}
.ws9{word-spacing:-23.789077pt;}
.wsc1{word-spacing:-23.698944pt;}
.ws5{word-spacing:-23.696427pt;}
.ws4{word-spacing:-23.679893pt;}
.wsc{word-spacing:-23.679744pt;}
.ws2{word-spacing:-23.663360pt;}
.wsa{word-spacing:-23.661077pt;}
.ws1cb{word-spacing:-23.646827pt;}
.ws23{word-spacing:-23.590144pt;}
.ws10{word-spacing:-23.494827pt;}
.ws40{word-spacing:-23.478293pt;}
.ws3f{word-spacing:-23.471211pt;}
.ws1f{word-spacing:-23.452544pt;}
.wsf5{word-spacing:-23.149360pt;}
.ws8{word-spacing:-23.055360pt;}
.wsee{word-spacing:-22.948020pt;}
.ws3e{word-spacing:-22.584277pt;}
.wsd5{word-spacing:-21.120107pt;}
.wsd4{word-spacing:-21.114240pt;}
.ws1c9{word-spacing:-20.911573pt;}
.ws1c6{word-spacing:-20.875691pt;}
.ws1a6{word-spacing:-20.852224pt;}
.wsff{word-spacing:-20.841707pt;}
.wsd7{word-spacing:-20.833173pt;}
.ws4d{word-spacing:-20.816640pt;}
.wsd8{word-spacing:-20.791573pt;}
.wsd6{word-spacing:-20.783573pt;}
.ws1c7{word-spacing:-20.747691pt;}
.wsfc{word-spacing:-20.505173pt;}
.wsfe{word-spacing:-20.272640pt;}
.wsfd{word-spacing:-20.192640pt;}
.wsfb{word-spacing:-20.144640pt;}
.ws166{word-spacing:-20.027960pt;}
.ws170{word-spacing:-20.001335pt;}
.ws152{word-spacing:-18.368000pt;}
.wsc9{word-spacing:-18.176000pt;}
.ws55{word-spacing:-18.140651pt;}
.wsd{word-spacing:-18.048000pt;}
.ws12{word-spacing:-18.012651pt;}
.ws56{word-spacing:-17.984000pt;}
.ws1a{word-spacing:-17.934251pt;}
.ws16{word-spacing:-17.920000pt;}
.ws18{word-spacing:-17.919851pt;}
.ws17d{word-spacing:-17.856000pt;}
.ws17{word-spacing:-17.827584pt;}
.wse{word-spacing:-17.792000pt;}
.ws13{word-spacing:-17.728000pt;}
.ws51{word-spacing:-17.685184pt;}
.wsbb{word-spacing:-17.671317pt;}
.ws14{word-spacing:-17.664000pt;}
.ws148{word-spacing:-17.607317pt;}
.ws15{word-spacing:-17.600000pt;}
.ws52{word-spacing:-17.592917pt;}
.ws54{word-spacing:-17.408000pt;}
.ws19{word-spacing:-17.372651pt;}
.wsbe{word-spacing:-17.280000pt;}
.ws53{word-spacing:-17.024000pt;}
.ws1ce{word-spacing:-16.404224pt;}
.ws1cd{word-spacing:-16.368640pt;}
.ws14d{word-spacing:-16.163038pt;}
.ws151{word-spacing:-16.097479pt;}
.wse2{word-spacing:-15.870464pt;}
.wsf4{word-spacing:-15.854137pt;}
.wse1{word-spacing:-15.834880pt;}
.wse7{word-spacing:-15.669547pt;}
.ws1cf{word-spacing:-15.632640pt;}
.ws17e{word-spacing:-15.588693pt;}
.wse4{word-spacing:-15.525013pt;}
.wse6{word-spacing:-15.489664pt;}
.ws59{word-spacing:-15.215360pt;}
.ws1c8{word-spacing:-15.003307pt;}
.ws68{word-spacing:-14.942827pt;}
.ws57{word-spacing:-14.814827pt;}
.ws9e{word-spacing:-14.802944pt;}
.ws58{word-spacing:-14.800427pt;}
.ws5a{word-spacing:-14.767360pt;}
.ws67{word-spacing:-14.765077pt;}
.ws66{word-spacing:-14.757611pt;}
.wsf2{word-spacing:-14.738996pt;}
.ws69{word-spacing:-14.719893pt;}
.wsf9{word-spacing:-14.678293pt;}
.ws3d{word-spacing:-14.672427pt;}
.wsed{word-spacing:-14.606727pt;}
.wsec{word-spacing:-14.602416pt;}
.wsfa{word-spacing:-14.536427pt;}
.wseb{word-spacing:-14.502279pt;}
.ws11f{word-spacing:-14.494827pt;}
.ws120{word-spacing:-14.079360pt;}
.ws93{word-spacing:-14.031360pt;}
.ws1cc{word-spacing:-12.928000pt;}
.wsf3{word-spacing:-10.872629pt;}
.ws16e{word-spacing:-10.145102pt;}
.ws16d{word-spacing:-10.000250pt;}
.ws164{word-spacing:-9.970895pt;}
.wsbf{word-spacing:-9.963520pt;}
.ws153{word-spacing:-4.736000pt;}
.ws150{word-spacing:-4.277290pt;}
.ws14c{word-spacing:-3.904000pt;}
.ws139{word-spacing:-3.712000pt;}
.wscf{word-spacing:-2.880000pt;}
.wscb{word-spacing:-2.816000pt;}
.ws137{word-spacing:-2.581333pt;}
.ws138{word-spacing:-2.528000pt;}
.ws145{word-spacing:-2.365355pt;}
.ws154{word-spacing:-2.112000pt;}
.ws1d{word-spacing:-2.048000pt;}
.ws142{word-spacing:-2.041089pt;}
.ws149{word-spacing:-1.984000pt;}
.ws1c1{word-spacing:-1.975253pt;}
.ws13d{word-spacing:-1.920000pt;}
.ws124{word-spacing:-1.910528pt;}
.ws1e{word-spacing:-1.856000pt;}
.wsd0{word-spacing:-1.792000pt;}
.wsca{word-spacing:-1.700160pt;}
.wsc7{word-spacing:-1.664000pt;}
.ws12d{word-spacing:-1.656064pt;}
.ws192{word-spacing:-1.560214pt;}
.wsc8{word-spacing:-1.472000pt;}
.wscc{word-spacing:-1.408000pt;}
.ws123{word-spacing:-1.386239pt;}
.ws125{word-spacing:-1.373120pt;}
.ws14b{word-spacing:-1.344000pt;}
.ws13c{word-spacing:-1.280000pt;}
.ws173{word-spacing:-1.248000pt;}
.ws159{word-spacing:-1.238464pt;}
.ws12c{word-spacing:-1.173333pt;}
.ws156{word-spacing:-1.088000pt;}
.ws122{word-spacing:-0.982187pt;}
.ws12a{word-spacing:-0.981333pt;}
.wsc6{word-spacing:-0.970667pt;}
.wsce{word-spacing:-0.960000pt;}
.ws146{word-spacing:-0.919104pt;}
.ws131{word-spacing:-0.918016pt;}
.ws12b{word-spacing:-0.917333pt;}
.ws1c{word-spacing:-0.896000pt;}
.ws172{word-spacing:-0.864000pt;}
.ws97{word-spacing:-0.849920pt;}
.ws11e{word-spacing:-0.835200pt;}
.ws147{word-spacing:-0.825536pt;}
.ws8f{word-spacing:-0.806612pt;}
.ws15a{word-spacing:-0.804310pt;}
.ws13b{word-spacing:-0.789333pt;}
.ws1b{word-spacing:-0.768000pt;}
.ws1a3{word-spacing:-0.748160pt;}
.wsb9{word-spacing:-0.734293pt;}
.wsb4{word-spacing:-0.734187pt;}
.ws143{word-spacing:-0.733120pt;}
.ws45{word-spacing:-0.730240pt;}
.wsb3{word-spacing:-0.708373pt;}
.ws5f{word-spacing:-0.687040pt;}
.ws171{word-spacing:-0.672000pt;}
.ws99{word-spacing:-0.661866pt;}
.ws1a1{word-spacing:-0.651520pt;}
.ws60{word-spacing:-0.650452pt;}
.ws15d{word-spacing:-0.629333pt;}
.ws48{word-spacing:-0.607488pt;}
.wsba{word-spacing:-0.594132pt;}
.ws8c{word-spacing:-0.592000pt;}
.ws61{word-spacing:-0.591787pt;}
.ws126{word-spacing:-0.576000pt;}
.ws5d{word-spacing:-0.574293pt;}
.ws43{word-spacing:-0.557120pt;}
.ws12e{word-spacing:-0.547136pt;}
.ws9a{word-spacing:-0.544640pt;}
.ws9d{word-spacing:-0.544427pt;}
.ws136{word-spacing:-0.512000pt;}
.ws1a4{word-spacing:-0.461120pt;}
.ws44{word-spacing:-0.442325pt;}
.ws12f{word-spacing:-0.438464pt;}
.ws128{word-spacing:-0.384000pt;}
.ws4b{word-spacing:-0.339243pt;}
.ws1a5{word-spacing:-0.335467pt;}
.ws121{word-spacing:-0.327808pt;}
.ws5b{word-spacing:-0.299733pt;}
.ws144{word-spacing:-0.278016pt;}
.ws13a{word-spacing:-0.256000pt;}
.ws1c0{word-spacing:-0.209068pt;}
.ws94{word-spacing:-0.208212pt;}
.ws95{word-spacing:-0.204801pt;}
.wsdb{word-spacing:-0.201600pt;}
.wscd{word-spacing:-0.192000pt;}
.ws1a2{word-spacing:-0.183040pt;}
.ws5c{word-spacing:-0.177067pt;}
.ws1c2{word-spacing:-0.173652pt;}
.ws91{word-spacing:-0.166612pt;}
.ws9b{word-spacing:-0.163094pt;}
.ws193{word-spacing:-0.141547pt;}
.ws169{word-spacing:-0.138079pt;}
.ws132{word-spacing:-0.135253pt;}
.ws158{word-spacing:-0.128000pt;}
.ws191{word-spacing:-0.114348pt;}
.wsc0{word-spacing:-0.096000pt;}
.ws63{word-spacing:-0.094720pt;}
.ws1c3{word-spacing:-0.094293pt;}
.wsf0{word-spacing:-0.092597pt;}
.wse9{word-spacing:-0.091792pt;}
.ws49{word-spacing:-0.081664pt;}
.ws168{word-spacing:-0.080112pt;}
.ws16a{word-spacing:-0.080005pt;}
.ws130{word-spacing:-0.050368pt;}
.ws62{word-spacing:-0.047040pt;}
.wsb7{word-spacing:-0.032746pt;}
.ws4a{word-spacing:-0.016000pt;}
.ws65{word-spacing:-0.012906pt;}
.wsb5{word-spacing:-0.005760pt;}
.ws0{word-spacing:0.000000pt;}
.wsb6{word-spacing:0.005119pt;}
.wsb8{word-spacing:0.048000pt;}
.ws3c{word-spacing:0.049920pt;}
.ws8b{word-spacing:0.056108pt;}
.wsd2{word-spacing:0.064000pt;}
.ws8e{word-spacing:0.095573pt;}
.ws8d{word-spacing:0.113813pt;}
.ws1c5{word-spacing:0.122668pt;}
.ws174{word-spacing:0.176000pt;}
.ws90{word-spacing:0.183253pt;}
.ws5e{word-spacing:0.222508pt;}
.wsd1{word-spacing:0.256000pt;}
.ws133{word-spacing:0.320000pt;}
.ws47{word-spacing:0.362155pt;}
.ws42{word-spacing:0.383957pt;}
.ws129{word-spacing:0.384000pt;}
.ws64{word-spacing:0.402880pt;}
.ws4e{word-spacing:0.405760pt;}
.ws135{word-spacing:0.426667pt;}
.ws108{word-spacing:0.456960pt;}
.wsaa{word-spacing:0.497920pt;}
.ws106{word-spacing:0.498453pt;}
.ws109{word-spacing:0.522453pt;}
.ws80{word-spacing:0.545707pt;}
.ws25{word-spacing:0.552875pt;}
.ws127{word-spacing:0.576000pt;}
.ws7f{word-spacing:0.592960pt;}
.ws10a{word-spacing:0.598294pt;}
.ws14a{word-spacing:0.640000pt;}
.ws24{word-spacing:0.656960pt;}
.wsad{word-spacing:0.688000pt;}
.ws26{word-spacing:0.722880pt;}
.wsb0{word-spacing:0.779840pt;}
.ws27{word-spacing:0.784085pt;}
.ws96{word-spacing:0.817600pt;}
.ws1c4{word-spacing:0.828054pt;}
.ws107{word-spacing:0.847253pt;}
.wsae{word-spacing:0.849174pt;}
.wsda{word-spacing:0.896000pt;}
.ws78{word-spacing:0.953599pt;}
.ws75{word-spacing:0.970346pt;}
.ws98{word-spacing:1.042880pt;}
.ws15b{word-spacing:1.059584pt;}
.ws81{word-spacing:1.064960pt;}
.wsac{word-spacing:1.076480pt;}
.wsb2{word-spacing:1.090240pt;}
.ws7a{word-spacing:1.099308pt;}
.wsaf{word-spacing:1.102720pt;}
.ws79{word-spacing:1.103147pt;}
.ws186{word-spacing:1.137920pt;}
.ws82{word-spacing:1.165652pt;}
.ws7c{word-spacing:1.168106pt;}
.wsbc{word-spacing:1.194667pt;}
.ws4f{word-spacing:1.203712pt;}
.wsa8{word-spacing:1.215574pt;}
.ws72{word-spacing:1.220479pt;}
.ws7e{word-spacing:1.297068pt;}
.ws76{word-spacing:1.368960pt;}
.ws77{word-spacing:1.375360pt;}
.ws73{word-spacing:1.375573pt;}
.wsb1{word-spacing:1.398293pt;}
.ws9c{word-spacing:1.457600pt;}
.ws18b{word-spacing:1.619734pt;}
.ws1a7{word-spacing:1.636865pt;}
.ws74{word-spacing:1.725227pt;}
.ws13e{word-spacing:1.728000pt;}
.wsa9{word-spacing:1.730240pt;}
.ws190{word-spacing:1.825813pt;}
.ws1ca{word-spacing:1.838465pt;}
.ws7d{word-spacing:1.842880pt;}
.ws117{word-spacing:1.908907pt;}
.ws118{word-spacing:2.034240pt;}
.ws15c{word-spacing:2.042667pt;}
.ws7b{word-spacing:2.097600pt;}
.wsc5{word-spacing:2.122027pt;}
.ws119{word-spacing:2.376960pt;}
.ws6e{word-spacing:2.398292pt;}
.ws71{word-spacing:2.400746pt;}
.ws6c{word-spacing:2.417920pt;}
.ws116{word-spacing:2.425172pt;}
.ws140{word-spacing:2.432000pt;}
.ws18e{word-spacing:2.465707pt;}
.ws18d{word-spacing:2.495466pt;}
.ws185{word-spacing:2.503786pt;}
.ws181{word-spacing:2.504214pt;}
.ws18c{word-spacing:2.512960pt;}
.ws114{word-spacing:2.522346pt;}
.ws187{word-spacing:2.556906pt;}
.ws180{word-spacing:2.559572pt;}
.ws13f{word-spacing:2.560000pt;}
.ws183{word-spacing:2.566613pt;}
.ws18a{word-spacing:2.608853pt;}
.ws134{word-spacing:2.624000pt;}
.ws141{word-spacing:2.688000pt;}
.ws115{word-spacing:2.690240pt;}
.ws182{word-spacing:2.749334pt;}
.ws189{word-spacing:2.825494pt;}
.wsab{word-spacing:2.961280pt;}
.ws70{word-spacing:2.967786pt;}
.ws17f{word-spacing:3.000319pt;}
.ws188{word-spacing:3.010240pt;}
.ws6a{word-spacing:3.168746pt;}
.ws184{word-spacing:3.200320pt;}
.ws6f{word-spacing:3.248000pt;}
.ws6b{word-spacing:3.295360pt;}
.ws18f{word-spacing:3.494400pt;}
.ws10b{word-spacing:3.504640pt;}
.ws29{word-spacing:3.803136pt;}
.ws28{word-spacing:3.937195pt;}
.ws6d{word-spacing:4.017600pt;}
.ws2a{word-spacing:4.095574pt;}
.ws161{word-spacing:5.162667pt;}
.ws160{word-spacing:5.184000pt;}
.ws87{word-spacing:5.250772pt;}
.ws89{word-spacing:5.503573pt;}
.ws2b{word-spacing:5.598422pt;}
.wsa7{word-spacing:5.624960pt;}
.ws155{word-spacing:5.639040pt;}
.ws84{word-spacing:5.665707pt;}
.wsa6{word-spacing:5.712960pt;}
.wsa4{word-spacing:5.808000pt;}
.wsa0{word-spacing:5.855573pt;}
.ws157{word-spacing:5.919360pt;}
.ws2f{word-spacing:5.988950pt;}
.ws30{word-spacing:6.129600pt;}
.ws2d{word-spacing:6.179157pt;}
.ws100{word-spacing:6.190080pt;}
.ws85{word-spacing:6.190932pt;}
.wsa2{word-spacing:6.222933pt;}
.ws83{word-spacing:6.225173pt;}
.wsa1{word-spacing:6.240746pt;}
.ws8a{word-spacing:6.257920pt;}
.wsa5{word-spacing:6.262506pt;}
.ws9f{word-spacing:6.288533pt;}
.ws88{word-spacing:6.305280pt;}
.wsa3{word-spacing:6.352960pt;}
.ws105{word-spacing:6.399572pt;}
.ws101{word-spacing:6.651307pt;}
.ws104{word-spacing:6.792854pt;}
.wse3{word-spacing:6.830308pt;}
.wsf7{word-spacing:6.912000pt;}
.ws19c{word-spacing:6.945280pt;}
.ws19d{word-spacing:6.998294pt;}
.ws19f{word-spacing:7.028907pt;}
.ws2e{word-spacing:7.073707pt;}
.ws86{word-spacing:7.217600pt;}
.ws102{word-spacing:7.268586pt;}
.ws195{word-spacing:7.289494pt;}
.ws2c{word-spacing:7.311787pt;}
.ws196{word-spacing:7.322880pt;}
.wse5{word-spacing:7.390720pt;}
.ws103{word-spacing:7.442880pt;}
.ws197{word-spacing:7.457708pt;}
.ws194{word-spacing:7.470080pt;}
.ws31{word-spacing:7.592875pt;}
.ws198{word-spacing:7.632960pt;}
.ws32{word-spacing:7.664213pt;}
.ws111{word-spacing:7.668907pt;}
.ws10c{word-spacing:7.679572pt;}
.ws199{word-spacing:7.719468pt;}
.ws19a{word-spacing:7.728000pt;}
.ws1a0{word-spacing:7.734612pt;}
.ws113{word-spacing:7.764267pt;}
.ws34{word-spacing:7.856960pt;}
.ws35{word-spacing:7.875670pt;}
.ws19e{word-spacing:7.893866pt;}
.ws19b{word-spacing:7.912320pt;}
.ws1bd{word-spacing:7.921920pt;}
.ws112{word-spacing:8.284587pt;}
.ws10e{word-spacing:8.432960pt;}
.ws10d{word-spacing:8.450240pt;}
.ws110{word-spacing:8.551360pt;}
.ws33{word-spacing:8.602795pt;}
.ws10f{word-spacing:8.719466pt;}
.ws1b9{word-spacing:9.246508pt;}
.ws1b2{word-spacing:9.370667pt;}
.ws1b8{word-spacing:9.474988pt;}
.ws1b7{word-spacing:9.505707pt;}
.ws1b4{word-spacing:9.528108pt;}
.ws1b3{word-spacing:9.552960pt;}
.ws1b1{word-spacing:9.617068pt;}
.ws1b5{word-spacing:9.648213pt;}
.ws1b6{word-spacing:9.693012pt;}
.ws1be{word-spacing:10.054828pt;}
.ws1ba{word-spacing:10.670080pt;}
.ws1bc{word-spacing:10.706560pt;}
.ws1bf{word-spacing:10.785707pt;}
.ws1a8{word-spacing:11.245012pt;}
.ws1af{word-spacing:11.342720pt;}
.ws1b0{word-spacing:11.597120pt;}
.ws1ab{word-spacing:11.605120pt;}
.ws1bb{word-spacing:11.697600pt;}
.ws1ac{word-spacing:11.840212pt;}
.ws1aa{word-spacing:12.032640pt;}
.ws1ae{word-spacing:12.074240pt;}
.ws38{word-spacing:12.833280pt;}
.ws37{word-spacing:12.833707pt;}
.ws36{word-spacing:12.918570pt;}
.ws1ad{word-spacing:12.977600pt;}
.ws3b{word-spacing:13.054975pt;}
.ws3a{word-spacing:13.407573pt;}
.ws39{word-spacing:13.682880pt;}
.ws1a9{word-spacing:14.178560pt;}
.wsde{word-spacing:20.286080pt;}
.ws11b{word-spacing:22.232320pt;}
.ws11a{word-spacing:22.951039pt;}
.ws11d{word-spacing:23.147414pt;}
.ws11c{word-spacing:23.276907pt;}
.ws17a{word-spacing:26.314667pt;}
.ws179{word-spacing:26.368000pt;}
.ws178{word-spacing:26.752000pt;}
.ws177{word-spacing:30.656000pt;}
.ws92{word-spacing:31.790614pt;}
.ws15f{word-spacing:42.304000pt;}
.ws15e{word-spacing:42.986667pt;}
.ws176{word-spacing:46.784000pt;}
.ws175{word-spacing:46.858667pt;}
.wsdd{word-spacing:49.247360pt;}
.wsdc{word-spacing:49.317824pt;}
.ws41{word-spacing:49.375360pt;}
.ws46{word-spacing:49.445824pt;}
.ws162{word-spacing:63.978667pt;}
.ws17c{word-spacing:73.408000pt;}
.ws17b{word-spacing:73.738667pt;}
.ws14e{word-spacing:107.860373pt;}
.wsef{word-spacing:165.334598pt;}
.wse8{word-spacing:172.623636pt;}
.ws163{word-spacing:233.258018pt;}
.ws16c{word-spacing:268.675365pt;}
.wsf6{word-spacing:275.445333pt;}
.ws14f{word-spacing:285.883042pt;}
.ws16f{word-spacing:428.121431pt;}
.ws165{word-spacing:435.820676pt;}
.ws4c{word-spacing:660.575360pt;}
.wsc3{word-spacing:768.134229pt;}
.ws50{word-spacing:895.148373pt;}
._48{margin-left:-919.023025pt;}
._58{margin-left:-899.024264pt;}
._44{margin-left:-681.033557pt;}
._47{margin-left:-371.165399pt;}
._57{margin-left:-364.296115pt;}
._6a{margin-left:-337.087248pt;}
._69{margin-left:-310.857885pt;}
._49{margin-left:-304.984472pt;}
._54{margin-left:-303.367954pt;}
._61{margin-left:-297.790595pt;}
._6b{margin-left:-294.000808pt;}
._59{margin-left:-292.881065pt;}
._4a{margin-left:-280.996838pt;}
._5a{margin-left:-269.427873pt;}
._4b{margin-left:-248.637497pt;}
._4e{margin-left:-247.367730pt;}
._5b{margin-left:-245.791152pt;}
._52{margin-left:-242.064064pt;}
._51{margin-left:-239.139201pt;}
._5f{margin-left:-235.156296pt;}
._4c{margin-left:-231.539221pt;}
._73{margin-left:-227.434464pt;}
._5c{margin-left:-226.323731pt;}
._53{margin-left:-214.629982pt;}
._60{margin-left:-211.102619pt;}
._55{margin-left:-206.356945pt;}
._62{margin-left:-203.004428pt;}
._46{margin-left:-193.035253pt;}
._56{margin-left:-189.640672pt;}
._4d{margin-left:-186.203986pt;}
._74{margin-left:-173.614951pt;}
._4f{margin-left:-168.062126pt;}
._5d{margin-left:-166.988049pt;}
._6f{margin-left:-161.829599pt;}
._68{margin-left:-157.641638pt;}
._6e{margin-left:-152.559743pt;}
._76{margin-left:-141.378061pt;}
._50{margin-left:-127.785680pt;}
._5e{margin-left:-126.312078pt;}
._6c{margin-left:-124.385615pt;}
._72{margin-left:-116.180642pt;}
._75{margin-left:-114.529794pt;}
._70{margin-left:-100.150360pt;}
._71{margin-left:-60.062410pt;}
._b{margin-left:-10.069728pt;}
._18{margin-left:-8.621013pt;}
._65{margin-left:-7.605269pt;}
._7{margin-left:-6.357333pt;}
._78{margin-left:-5.466165pt;}
._9{margin-left:-4.461365pt;}
._4{margin-left:-2.976000pt;}
._0{margin-left:-2.048000pt;}
._2{margin-left:-1.024000pt;}
._6{width:0.981333pt;}
._3{width:1.984000pt;}
._5{width:2.879968pt;}
._1{width:4.160000pt;}
._e{width:5.130453pt;}
._37{width:6.169066pt;}
._d{width:7.098347pt;}
._c{width:8.308267pt;}
._32{width:9.292587pt;}
._17{width:10.235307pt;}
._12{width:11.491338pt;}
._11{width:12.399787pt;}
._42{width:13.851200pt;}
._15{width:14.792107pt;}
._14{width:15.817643pt;}
._13{width:17.441493pt;}
._34{width:18.659308pt;}
._66{width:19.634880pt;}
._f{width:20.658240pt;}
._10{width:21.907733pt;}
._77{width:23.088743pt;}
._1b{width:25.130325pt;}
._1a{width:26.656170pt;}
._25{width:28.551467pt;}
._1c{width:29.547947pt;}
._1d{width:31.732822pt;}
._1e{width:32.662057pt;}
._16{width:34.031360pt;}
._3a{width:35.242667pt;}
._3b{width:36.138667pt;}
._19{width:38.635093pt;}
._33{width:41.035178pt;}
._36{width:43.742720pt;}
._39{width:46.717440pt;}
._3c{width:47.911893pt;}
._40{width:53.791531pt;}
._27{width:55.936427pt;}
._38{width:58.510080pt;}
._35{width:73.277440pt;}
._2a{width:78.338389pt;}
._2e{width:80.474667pt;}
._43{width:92.046507pt;}
._23{width:103.184811pt;}
._3e{width:110.000532pt;}
._63{width:117.838720pt;}
._30{width:129.296640pt;}
._64{width:168.090027pt;}
._2c{width:197.810133pt;}
._45{width:207.504640pt;}
._3d{width:233.136532pt;}
._3f{width:238.034025pt;}
._29{width:268.698453pt;}
._28{width:301.826773pt;}
._2b{width:354.411776pt;}
._24{width:360.461056pt;}
._26{width:366.314667pt;}
._2d{width:382.689344pt;}
._8{width:438.613333pt;}
._21{width:755.983787pt;}
._6d{width:804.249173pt;}
._2f{width:852.349653pt;}
._20{width:873.050453pt;}
._67{width:1061.785387pt;}
._41{width:1101.440000pt;}
._22{width:1495.964800pt;}
._31{width:2053.563307pt;}
._1f{width:2062.370133pt;}
._a{width:2091.810133pt;}
.fsc{font-size:32.000000pt;}
.fse{font-size:35.840000pt;}
.fs2a{font-size:40.001002pt;}
.fs27{font-size:40.055919pt;}
.fsf{font-size:42.880000pt;}
.fs1d{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:53.248000pt;}
.fs10{font-size:56.960000pt;}
.fs11{font-size:57.088000pt;}
.fs15{font-size:58.409664pt;}
.fs2b{font-size:58.880000pt;}
.fs19{font-size:58.955984pt;}
.fs2c{font-size:59.008000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:64.128000pt;}
.fs1e{font-size:64.570839pt;}
.fs20{font-size:64.572330pt;}
.fs22{font-size:64.632928pt;}
.fs24{font-size:64.894925pt;}
.fs4{font-size:74.880000pt;}
.fs1c{font-size:75.008000pt;}
.fs29{font-size:80.005341pt;}
.fs28{font-size:80.111838pt;}
.fs8{font-size:85.120000pt;}
.fs9{font-size:85.248000pt;}
.fs12{font-size:89.723461pt;}
.fs14{font-size:91.792078pt;}
.fs18{font-size:92.597442pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:96.128000pt;}
.fs16{font-size:96.761772pt;}
.fs1a{font-size:97.834255pt;}
.fs7{font-size:106.880000pt;}
.fsb{font-size:107.008000pt;}
.fs1f{font-size:110.682427pt;}
.fs21{font-size:110.684983pt;}
.fs23{font-size:110.797657pt;}
.fs25{font-size:111.192510pt;}
.fs13{font-size:122.570240pt;}
.fs17{font-size:123.593491pt;}
.fs26{font-size:125.170990pt;}
.fsd{font-size:128.000000pt;}
.fsa{font-size:149.120000pt;}
.fs1b{font-size:149.248000pt;}
.y0{bottom:0.000000pt;}
.y1e8{bottom:2.163021pt;}
.y146{bottom:3.154118pt;}
.y156{bottom:3.183627pt;}
.y1be{bottom:3.486859pt;}
.y1b6{bottom:3.486862pt;}
.y1ba{bottom:3.486904pt;}
.y1c1{bottom:3.490189pt;}
.y1c8{bottom:3.490194pt;}
.y1c4{bottom:3.504336pt;}
.y1ee{bottom:4.320301pt;}
.y1f2{bottom:4.320316pt;}
.y1e7{bottom:7.489811pt;}
.y142{bottom:8.896773pt;}
.y152{bottom:8.964659pt;}
.y15a{bottom:8.964863pt;}
.y1b7{bottom:10.412292pt;}
.y1bb{bottom:10.412457pt;}
.y1c9{bottom:10.422848pt;}
.y1c5{bottom:10.433892pt;}
.y9{bottom:11.232000pt;}
.y1bf{bottom:11.711426pt;}
.y1b8{bottom:11.711427pt;}
.y1bc{bottom:11.711635pt;}
.y1c2{bottom:11.724383pt;}
.y1ca{bottom:11.724416pt;}
.y1c6{bottom:11.764165pt;}
.yb{bottom:12.896000pt;}
.y1ea{bottom:17.954683pt;}
.y1ec{bottom:22.967935pt;}
.y141{bottom:26.911838pt;}
.y140{bottom:27.108287pt;}
.y151{bottom:27.120302pt;}
.y8{bottom:27.264000pt;}
.y150{bottom:27.323795pt;}
.ya{bottom:28.928000pt;}
.y1e9{bottom:31.112382pt;}
.y1f4{bottom:31.354836pt;}
.y1f0{bottom:31.354837pt;}
.y147{bottom:35.984129pt;}
.y1eb{bottom:36.124800pt;}
.y157{bottom:36.300073pt;}
.y1f6{bottom:36.362902pt;}
.y144{bottom:38.269369pt;}
.y154{bottom:38.581026pt;}
.y159{bottom:38.581230pt;}
.y143{bottom:38.988233pt;}
.y153{bottom:39.291217pt;}
.y158{bottom:39.291420pt;}
.y145{bottom:41.728957pt;}
.y155{bottom:42.081105pt;}
.y149{bottom:44.014197pt;}
.y15c{bottom:44.362465pt;}
.y148{bottom:44.731323pt;}
.y15b{bottom:45.072655pt;}
.y6{bottom:45.568000pt;}
.y1ef{bottom:52.132951pt;}
.y1f3{bottom:52.132969pt;}
.y226{bottom:56.128000pt;}
.y59{bottom:59.488000pt;}
.y7e{bottom:61.536000pt;}
.y1f5{bottom:61.831195pt;}
.y1f1{bottom:61.831196pt;}
.y5e{bottom:63.936000pt;}
.y52{bottom:64.160000pt;}
.y34{bottom:64.416000pt;}
.y194{bottom:64.928000pt;}
.y272{bottom:65.536000pt;}
.y104{bottom:66.336000pt;}
.y28a{bottom:66.432000pt;}
.y1f7{bottom:66.838427pt;}
.y12c{bottom:66.976000pt;}
.yba{bottom:67.584000pt;}
.yc1{bottom:68.320000pt;}
.y1c{bottom:68.512000pt;}
.y199{bottom:68.960000pt;}
.y20d{bottom:69.760000pt;}
.y204{bottom:70.208000pt;}
.y1cc{bottom:70.688000pt;}
.y1dc{bottom:70.752000pt;}
.y107{bottom:71.968000pt;}
.ydb{bottom:72.544000pt;}
.y20e{bottom:73.536000pt;}
.y191{bottom:73.600000pt;}
.y170{bottom:73.760000pt;}
.y1b9{bottom:74.796408pt;}
.y5{bottom:75.488000pt;}
.y90{bottom:77.920000pt;}
.y128{bottom:78.624000pt;}
.y80{bottom:78.656000pt;}
.y48{bottom:78.752000pt;}
.y162{bottom:78.912000pt;}
.y1db{bottom:79.424000pt;}
.y13f{bottom:79.568445pt;}
.y10b{bottom:79.616000pt;}
.y7d{bottom:81.728000pt;}
.y6b{bottom:82.144000pt;}
.y1b2{bottom:82.496000pt;}
.yb9{bottom:83.584000pt;}
.y271{bottom:84.768000pt;}
.y100{bottom:84.960000pt;}
.y58{bottom:85.088000pt;}
.y289{bottom:85.632000pt;}
.y20c{bottom:85.760000pt;}
.y39{bottom:86.368000pt;}
.y51{bottom:87.200000pt;}
.yc0{bottom:87.520000pt;}
.yf4{bottom:88.736000pt;}
.y190{bottom:89.600000pt;}
.y16e{bottom:90.720000pt;}
.y10a{bottom:92.800000pt;}
.y1da{bottom:92.864000pt;}
.y198{bottom:94.592000pt;}
.y11c{bottom:97.344000pt;}
.y7c{bottom:98.048000pt;}
.y187{bottom:98.816000pt;}
.y1b{bottom:99.392000pt;}
.yb8{bottom:99.584000pt;}
.y225{bottom:100.128000pt;}
.y161{bottom:101.312000pt;}
.y1b1{bottom:101.696000pt;}
.y20b{bottom:101.760000pt;}
.y47{bottom:103.744000pt;}
.y270{bottom:103.968000pt;}
.y33{bottom:104.736000pt;}
.y288{bottom:104.832000pt;}
.y4{bottom:105.440000pt;}
.y38{bottom:105.568000pt;}
.y18f{bottom:105.600000pt;}
.ybf{bottom:106.752000pt;}
.y66{bottom:108.256000pt;}
.y1d9{bottom:108.864000pt;}
.ya1{bottom:109.056000pt;}
.y106{bottom:110.368000pt;}
.y57{bottom:110.688000pt;}
.yb7{bottom:115.616000pt;}
.y14f{bottom:115.865573pt;}
.y8f{bottom:116.352000pt;}
.y20a{bottom:117.760000pt;}
.y197{bottom:120.192000pt;}
.y1b0{bottom:120.928000pt;}
.y18e{bottom:121.600000pt;}
.y24c{bottom:122.752000pt;}
.y224{bottom:123.008000pt;}
.yee{bottom:123.104000pt;}
.y10f{bottom:124.032000pt;}
.y127{bottom:124.704000pt;}
.y37{bottom:124.768000pt;}
.y186{bottom:125.696000pt;}
.ybe{bottom:125.952000pt;}
.y7b{bottom:126.848000pt;}
.y6a{bottom:126.976000pt;}
.y276{bottom:127.328000pt;}
.ya0{bottom:128.256000pt;}
.y1a{bottom:130.272000pt;}
.yb6{bottom:131.616000pt;}
.y50{bottom:133.312000pt;}
.y46{bottom:134.466667pt;}
.y32{bottom:135.453333pt;}
.y56{bottom:136.293333pt;}
.y175{bottom:136.546667pt;}
.y18d{bottom:137.600000pt;}
.y103{bottom:138.906667pt;}
.y299{bottom:140.026667pt;}
.y1af{bottom:140.133333pt;}
.y223{bottom:140.613333pt;}
.y8e{bottom:141.946667pt;}
.y14e{bottom:142.213333pt;}
.yed{bottom:142.306667pt;}
.y26f{bottom:142.373333pt;}
.y287{bottom:143.226667pt;}
.y25f{bottom:143.973333pt;}
.ybd{bottom:145.146667pt;}
.y196{bottom:145.786667pt;}
.yd2{bottom:146.813333pt;}
.yb5{bottom:147.613333pt;}
.y69{bottom:149.373333pt;}
.y7a{bottom:151.813333pt;}
.y185{bottom:152.573333pt;}
.y18c{bottom:153.600000pt;}
.y126{bottom:155.426667pt;}
.y207{bottom:155.840000pt;}
.y9f{bottom:157.053333pt;}
.y222{bottom:158.213333pt;}
.y298{bottom:159.226667pt;}
.y1ae{bottom:159.333333pt;}
.y231{bottom:159.680000pt;}
.y29{bottom:160.413333pt;}
.y24b{bottom:161.186667pt;}
.y19{bottom:161.346667pt;}
.y26e{bottom:161.573333pt;}
.y55{bottom:161.920000pt;}
.y286{bottom:162.426667pt;}
.y25e{bottom:163.173333pt;}
.y36{bottom:163.200000pt;}
.y13e{bottom:163.520000pt;}
.yb4{bottom:163.613333pt;}
.y45{bottom:165.186667pt;}
.yd1{bottom:166.013333pt;}
.y31{bottom:166.173333pt;}
.y8d{bottom:167.546667pt;}
.y174{bottom:168.573333pt;}
.y18b{bottom:169.600000pt;}
.y102{bottom:172.226667pt;}
.y1cb{bottom:173.573333pt;}
.y1fb{bottom:173.733333pt;}
.y12b{bottom:176.413333pt;}
.y221{bottom:177.600000pt;}
.y1c3{bottom:178.367216pt;}
.y297{bottom:178.426667pt;}
.y1ad{bottom:178.533333pt;}
.y184{bottom:179.453333pt;}
.y24a{bottom:180.386667pt;}
.yec{bottom:180.733333pt;}
.y26d{bottom:180.773333pt;}
.y285{bottom:181.626667pt;}
.y25d{bottom:182.373333pt;}
.y35{bottom:182.400000pt;}
.y79{bottom:182.533333pt;}
.ybc{bottom:183.546667pt;}
.yd0{bottom:185.213333pt;}
.y18a{bottom:185.626667pt;}
.y125{bottom:186.146667pt;}
.y11d{bottom:186.880000pt;}
.y10c{bottom:187.493333pt;}
.y54{bottom:187.520000pt;}
.y230{bottom:190.400000pt;}
.y11b{bottom:190.466667pt;}
.y18{bottom:192.226667pt;}
.y1e1{bottom:192.800000pt;}
.y1fa{bottom:192.933333pt;}
.y8c{bottom:193.146667pt;}
.y13d{bottom:194.240000pt;}
.yb3{bottom:195.613333pt;}
.y68{bottom:196.413333pt;}
.y30{bottom:196.933333pt;}
.y296{bottom:197.626667pt;}
.y1ac{bottom:197.733333pt;}
.yeb{bottom:199.933333pt;}
.y173{bottom:200.573333pt;}
.y28{bottom:200.773333pt;}
.ycd{bottom:201.186667pt;}
.y275{bottom:201.253333pt;}
.y25c{bottom:201.573333pt;}
.y189{bottom:201.626667pt;}
.y12a{bottom:202.013333pt;}
.y220{bottom:202.240000pt;}
.y101{bottom:205.506667pt;}
.ya2{bottom:205.573333pt;}
.y183{bottom:206.373333pt;}
.yff{bottom:208.933333pt;}
.y1e0{bottom:209.440000pt;}
.yb2{bottom:211.613333pt;}
.y1e5{bottom:212.133333pt;}
.y53{bottom:213.120000pt;}
.y78{bottom:215.200000pt;}
.y295{bottom:216.866667pt;}
.y124{bottom:216.893333pt;}
.y1ab{bottom:216.933333pt;}
.y188{bottom:217.626667pt;}
.y8b{bottom:218.746667pt;}
.y249{bottom:218.786667pt;}
.yea{bottom:219.133333pt;}
.y26c{bottom:219.200000pt;}
.y284{bottom:220.066667pt;}
.ycc{bottom:220.386667pt;}
.y1c0{bottom:220.798311pt;}
.y25b{bottom:220.800000pt;}
.y22f{bottom:221.120000pt;}
.y11a{bottom:221.186667pt;}
.y14a{bottom:222.720000pt;}
.y17{bottom:223.106667pt;}
.y235{bottom:223.520000pt;}
.y14b{bottom:223.906667pt;}
.y9e{bottom:224.573333pt;}
.y44{bottom:224.733333pt;}
.y13c{bottom:224.960000pt;}
.y21f{bottom:226.880000pt;}
.ybb{bottom:227.546667pt;}
.yb1{bottom:227.613333pt;}
.y2f{bottom:227.653333pt;}
.y1df{bottom:228.640000pt;}
.y1e4{bottom:231.333333pt;}
.y27{bottom:231.493333pt;}
.y172{bottom:232.573333pt;}
.y294{bottom:236.066667pt;}
.y1aa{bottom:236.133333pt;}
.y248{bottom:237.986667pt;}
.y26b{bottom:238.400000pt;}
.y11e{bottom:238.720000pt;}
.y283{bottom:239.266667pt;}
.ycb{bottom:239.613333pt;}
.y10e{bottom:240.413333pt;}
.yb0{bottom:243.613333pt;}
.y9d{bottom:243.773333pt;}
.y8a{bottom:244.386667pt;}
.y10d{bottom:245.853333pt;}
.y5d{bottom:247.266667pt;}
.ydd{bottom:247.586667pt;}
.y123{bottom:247.613333pt;}
.y43{bottom:249.693333pt;}
.y1e3{bottom:250.533333pt;}
.y21e{bottom:251.520000pt;}
.y77{bottom:251.680000pt;}
.y119{bottom:251.906667pt;}
.y16{bottom:254.146667pt;}
.y29a{bottom:255.266667pt;}
.y13b{bottom:255.680000pt;}
.y247{bottom:257.186667pt;}
.y26a{bottom:257.600000pt;}
.y195{bottom:258.106667pt;}
.y2e{bottom:258.373333pt;}
.y282{bottom:258.466667pt;}
.yca{bottom:258.813333pt;}
.y25a{bottom:259.200000pt;}
.yaf{bottom:259.653333pt;}
.y182{bottom:260.133333pt;}
.y5c{bottom:263.266667pt;}
.y206{bottom:263.680000pt;}
.y23e{bottom:263.746667pt;}
.y171{bottom:264.573333pt;}
.y1bd{bottom:266.836242pt;}
.y19b{bottom:267.266667pt;}
.y16c{bottom:267.453333pt;}
.y1de{bottom:267.586667pt;}
.y1e2{bottom:269.733333pt;}
.y89{bottom:269.986667pt;}
.y293{bottom:274.466667pt;}
.y1a9{bottom:274.560000pt;}
.yae{bottom:275.653333pt;}
.y21d{bottom:276.160000pt;}
.ye9{bottom:276.733333pt;}
.y281{bottom:277.666667pt;}
.yc9{bottom:278.013333pt;}
.y259{bottom:278.400000pt;}
.y5b{bottom:279.266667pt;}
.y5a{bottom:280.253333pt;}
.y42{bottom:280.413333pt;}
.y7{bottom:281.026667pt;}
.y9c{bottom:282.173333pt;}
.y76{bottom:282.400000pt;}
.y22e{bottom:282.586667pt;}
.y118{bottom:282.626667pt;}
.y23d{bottom:282.946667pt;}
.y15{bottom:285.053333pt;}
.y234{bottom:285.466667pt;}
.y13a{bottom:286.400000pt;}
.y181{bottom:287.013333pt;}
.y19a{bottom:292.893333pt;}
.y292{bottom:293.666667pt;}
.y1a8{bottom:293.760000pt;}
.y246{bottom:295.613333pt;}
.ye8{bottom:295.933333pt;}
.y193{bottom:295.973333pt;}
.y269{bottom:296.000000pt;}
.yc8{bottom:297.213333pt;}
.y258{bottom:297.600000pt;}
.y166{bottom:298.213333pt;}
.y21c{bottom:299.040000pt;}
.y16b{bottom:299.973333pt;}
.y9b{bottom:301.373333pt;}
.yad{bottom:307.653333pt;}
.y122{bottom:309.053333pt;}
.y177{bottom:309.306667pt;}
.y16d{bottom:310.240000pt;}
.y41{bottom:311.133333pt;}
.y75{bottom:311.200000pt;}
.y26{bottom:312.133333pt;}
.y291{bottom:312.866667pt;}
.y1a7{bottom:312.960000pt;}
.y22d{bottom:313.306667pt;}
.y117{bottom:313.373333pt;}
.y180{bottom:313.893333pt;}
.y245{bottom:314.813333pt;}
.y268{bottom:315.200000pt;}
.yd7{bottom:315.680000pt;}
.y14{bottom:315.933333pt;}
.y16a{bottom:315.973333pt;}
.y280{bottom:316.066667pt;}
.yc7{bottom:316.413333pt;}
.y139{bottom:317.146667pt;}
.y2d{bottom:317.893333pt;}
.y21b{bottom:318.426667pt;}
.y15e{bottom:319.546667pt;}
.yd5{bottom:320.866667pt;}
.y88{bottom:321.186667pt;}
.y23c{bottom:321.346667pt;}
.y1f9{bottom:323.200000pt;}
.yac{bottom:323.653333pt;}
.y165{bottom:323.813333pt;}
.y67{bottom:331.706667pt;}
.y290{bottom:332.066667pt;}
.y1a6{bottom:332.160000pt;}
.y1b4{bottom:332.733333pt;}
.y267{bottom:334.400000pt;}
.y27f{bottom:335.266667pt;}
.yc6{bottom:335.613333pt;}
.y257{bottom:336.000000pt;}
.y74{bottom:336.160000pt;}
.y1f8{bottom:337.600000pt;}
.yab{bottom:339.653333pt;}
.y121{bottom:339.773333pt;}
.y9a{bottom:339.813333pt;}
.y23b{bottom:340.546667pt;}
.y17f{bottom:340.800000pt;}
.y40{bottom:341.853333pt;}
.y25{bottom:342.880000pt;}
.y21a{bottom:343.066667pt;}
.y22c{bottom:344.026667pt;}
.y116{bottom:344.093333pt;}
.y87{bottom:346.786667pt;}
.y13{bottom:346.973333pt;}
.y233{bottom:347.226667pt;}
.y138{bottom:347.866667pt;}
.y65{bottom:349.186667pt;}
.y28f{bottom:351.293333pt;}
.y1a5{bottom:351.360000pt;}
.y1b3{bottom:351.933333pt;}
.y176{bottom:351.973333pt;}
.y244{bottom:353.213333pt;}
.ye7{bottom:353.573333pt;}
.y274{bottom:353.600000pt;}
.y27e{bottom:354.493333pt;}
.yc5{bottom:354.813333pt;}
.y256{bottom:355.226667pt;}
.yaa{bottom:355.653333pt;}
.y14c{bottom:356.866667pt;}
.y4f{bottom:357.986667pt;}
.y99{bottom:359.013333pt;}
.y168{bottom:359.546667pt;}
.y1ed{bottom:359.848790pt;}
.y2c{bottom:362.080000pt;}
.y73{bottom:364.986667pt;}
.y11f{bottom:366.746667pt;}
.y219{bottom:367.706667pt;}
.yf8{bottom:369.573333pt;}
.y23a{bottom:370.493333pt;}
.y1a4{bottom:370.560000pt;}
.y205{bottom:371.546667pt;}
.y86{bottom:372.386667pt;}
.y243{bottom:372.413333pt;}
.y3f{bottom:372.613333pt;}
.y266{bottom:372.826667pt;}
.y3{bottom:373.093333pt;}
.y24{bottom:373.600000pt;}
.y27d{bottom:373.693333pt;}
.yc4{bottom:374.053333pt;}
.y255{bottom:374.426667pt;}
.y22b{bottom:374.746667pt;}
.y115{bottom:374.813333pt;}
.y15d{bottom:375.013333pt;}
.y12{bottom:377.853333pt;}
.y137{bottom:378.586667pt;}
.y1c7{bottom:380.184973pt;}
.ye6{bottom:382.373333pt;}
.y12d{bottom:382.693333pt;}
.y1b5{bottom:384.022928pt;}
.y129{bottom:385.666667pt;}
.ya9{bottom:387.653333pt;}
.y4e{bottom:388.733333pt;}
.y28e{bottom:389.693333pt;}
.y72{bottom:389.946667pt;}
.y167{bottom:390.586667pt;}
.y192{bottom:391.840000pt;}
.y265{bottom:392.026667pt;}
.y218{bottom:392.346667pt;}
.y2b{bottom:392.800000pt;}
.y254{bottom:393.626667pt;}
.y1d8{bottom:394.813333pt;}
.yd4{bottom:396.893333pt;}
.y64{bottom:397.186667pt;}
.y98{bottom:397.413333pt;}
.y17e{bottom:397.693333pt;}
.y85{bottom:398.013333pt;}
.y14d{bottom:400.346667pt;}
.ye5{bottom:401.573333pt;}
.yda{bottom:402.693333pt;}
.ya8{bottom:403.680000pt;}
.y23{bottom:404.320000pt;}
.y114{bottom:405.533333pt;}
.yf2{bottom:406.786667pt;}
.y11{bottom:408.733333pt;}
.y28d{bottom:408.893333pt;}
.y1a3{bottom:408.986667pt;}
.y136{bottom:409.306667pt;}
.y1d{bottom:409.626667pt;}
.y2{bottom:410.533333pt;}
.y242{bottom:410.813333pt;}
.y1d7{bottom:410.853333pt;}
.y264{bottom:411.226667pt;}
.y27c{bottom:412.093333pt;}
.yc3{bottom:412.453333pt;}
.y97{bottom:416.613333pt;}
.y217{bottom:416.986667pt;}
.y71{bottom:418.746667pt;}
.y4d{bottom:419.453333pt;}
.ye4{bottom:420.773333pt;}
.y160{bottom:421.213333pt;}
.y84{bottom:423.613333pt;}
.y203{bottom:424.346667pt;}
.y17d{bottom:424.573333pt;}
.yf1{bottom:425.986667pt;}
.y63{bottom:427.933333pt;}
.yf7{bottom:428.066667pt;}
.y28c{bottom:428.093333pt;}
.y1a2{bottom:428.186667pt;}
.y241{bottom:430.053333pt;}
.y273{bottom:430.426667pt;}
.y27b{bottom:431.293333pt;}
.y253{bottom:432.026667pt;}
.y3e{bottom:434.053333pt;}
.y22{bottom:435.040000pt;}
.y108{bottom:435.493333pt;}
.ya7{bottom:435.680000pt;}
.y96{bottom:435.813333pt;}
.y22a{bottom:436.226667pt;}
.y113{bottom:436.253333pt;}
.y10{bottom:439.813333pt;}
.ye3{bottom:439.973333pt;}
.yfe{bottom:440.026667pt;}
.y135{bottom:440.066667pt;}
.y202{bottom:440.346667pt;}
.y216{bottom:441.626667pt;}
.y1d0{bottom:443.293333pt;}
.y70{bottom:443.706667pt;}
.y28b{bottom:447.293333pt;}
.y1a1{bottom:447.386667pt;}
.y83{bottom:449.213333pt;}
.y263{bottom:449.626667pt;}
.y4c{bottom:450.173333pt;}
.y27a{bottom:450.493333pt;}
.y252{bottom:451.226667pt;}
.y17c{bottom:451.453333pt;}
.yd9{bottom:452.186667pt;}
.y2a{bottom:452.320000pt;}
.y163{bottom:453.346667pt;}
.y95{bottom:455.013333pt;}
.y201{bottom:456.346667pt;}
.y62{bottom:458.653333pt;}
.ye2{bottom:459.200000pt;}
.y1cf{bottom:462.493333pt;}
.y1d6{bottom:463.040000pt;}
.y164{bottom:463.520000pt;}
.y3d{bottom:464.773333pt;}
.yfd{bottom:465.666667pt;}
.y21{bottom:465.760000pt;}
.y215{bottom:466.306667pt;}
.y239{bottom:466.493333pt;}
.y1a0{bottom:466.586667pt;}
.y229{bottom:466.946667pt;}
.y112{bottom:467.013333pt;}
.ya6{bottom:467.680000pt;}
.y240{bottom:468.453333pt;}
.y262{bottom:468.826667pt;}
.y279{bottom:469.693333pt;}
.y251{bottom:470.426667pt;}
.yf{bottom:470.693333pt;}
.y134{bottom:470.786667pt;}
.yd3{bottom:471.906667pt;}
.y200{bottom:472.346667pt;}
.y94{bottom:474.213333pt;}
.y6f{bottom:474.426667pt;}
.y17b{bottom:478.333333pt;}
.ye1{bottom:478.400000pt;}
.y4b{bottom:480.893333pt;}
.y1ce{bottom:481.693333pt;}
.ya5{bottom:483.680000pt;}
.y238{bottom:485.733333pt;}
.y19f{bottom:485.786667pt;}
.y23f{bottom:487.653333pt;}
.yc2{bottom:487.773333pt;}
.yef{bottom:487.906667pt;}
.y261{bottom:488.026667pt;}
.y1ff{bottom:488.346667pt;}
.y61{bottom:489.373333pt;}
.y130{bottom:490.240000pt;}
.y214{bottom:490.946667pt;}
.yfc{bottom:491.266667pt;}
.y93{bottom:493.440000pt;}
.y3c{bottom:495.493333pt;}
.y20{bottom:496.506667pt;}
.ye0{bottom:497.600000pt;}
.y228{bottom:497.666667pt;}
.y111{bottom:497.733333pt;}
.y1dd{bottom:499.133333pt;}
.ya4{bottom:499.680000pt;}
.y82{bottom:500.413333pt;}
.y1cd{bottom:500.893333pt;}
.y133{bottom:501.506667pt;}
.ye{bottom:501.573333pt;}
.y1e6{bottom:501.938449pt;}
.y1fe{bottom:504.346667pt;}
.y237{bottom:504.933333pt;}
.y19e{bottom:504.986667pt;}
.y6e{bottom:505.186667pt;}
.y17a{bottom:505.213333pt;}
.y260{bottom:507.266667pt;}
.y1{bottom:508.226667pt;}
.y250{bottom:508.546667pt;}
.yd8{bottom:510.626667pt;}
.y4a{bottom:511.613333pt;}
.y92{bottom:512.640000pt;}
.y213{bottom:513.826667pt;}
.y15f{bottom:514.466667pt;}
.ya3{bottom:515.680000pt;}
.y12f{bottom:515.840000pt;}
.ydf{bottom:516.800000pt;}
.yfb{bottom:516.866667pt;}
.y232{bottom:517.280000pt;}
.y60{bottom:520.093333pt;}
.y1fd{bottom:520.346667pt;}
.y16f{bottom:523.040000pt;}
.y169{bottom:523.520000pt;}
.yf0{bottom:523.906667pt;}
.y236{bottom:524.133333pt;}
.y19d{bottom:524.186667pt;}
.yf5{bottom:525.413333pt;}
.y3b{bottom:526.240000pt;}
.y24f{bottom:526.466667pt;}
.y1f{bottom:527.226667pt;}
.y110{bottom:528.453333pt;}
.y212{bottom:531.426667pt;}
.y179{bottom:532.133333pt;}
.y132{bottom:532.226667pt;}
.y6c{bottom:533.346667pt;}
.ycf{bottom:533.600000pt;}
.y120{bottom:535.453333pt;}
.y1fc{bottom:538.146667pt;}
.y1d3{bottom:539.017333pt;}
.y208{bottom:540.293333pt;}
.y209{bottom:540.800000pt;}
.yfa{bottom:542.466667pt;}
.y278{bottom:543.333333pt;}
.y19c{bottom:543.426667pt;}
.y24e{bottom:545.666667pt;}
.y12e{bottom:545.693333pt;}
.yc{bottom:546.466667pt;}
.y1d4{bottom:546.853333pt;}
.yd6{bottom:549.213333pt;}
.y211{bottom:550.786667pt;}
.y91{bottom:551.040000pt;}
.y81{bottom:551.653333pt;}
.yf6{bottom:555.426667pt;}
.y3a{bottom:556.960000pt;}
.y49{bottom:557.733333pt;}
.y1e{bottom:557.946667pt;}
.y178{bottom:559.013333pt;}
.y227{bottom:559.133333pt;}
.yce{bottom:559.200000pt;}
.y105{bottom:560.640000pt;}
.y277{bottom:562.533333pt;}
.y131{bottom:562.946667pt;}
.y24d{bottom:564.866667pt;}
.y5f{bottom:566.213333pt;}
.y6d{bottom:566.626667pt;}
.ydc{bottom:566.880000pt;}
.yf9{bottom:568.066667pt;}
.yde{bottom:569.186667pt;}
.y7f{bottom:570.853333pt;}
.y1d2{bottom:571.377333pt;}
.y109{bottom:571.653333pt;}
.y1d5{bottom:572.706667pt;}
.y210{bottom:575.426667pt;}
.yf3{bottom:588.386667pt;}
.y20f{bottom:600.093333pt;}
.y1d1{bottom:608.657333pt;}
.yd{bottom:608.933333pt;}
.h54{height:27.774133pt;}
.h15{height:28.703125pt;}
.h55{height:30.489045pt;}
.h4f{height:30.530903pt;}
.h3a{height:33.847926pt;}
.h3e{height:33.848631pt;}
.h49{height:33.883958pt;}
.h42{height:33.883966pt;}
.h45{height:34.002682pt;}
.h1f{height:38.462187pt;}
.h4c{height:38.797187pt;}
.h18{height:39.191562pt;}
.h1a{height:39.286000pt;}
.h26{height:40.555929pt;}
.h30{height:40.935258pt;}
.h39{height:43.429688pt;}
.h28{height:44.520256pt;}
.h32{height:44.936665pt;}
.h7{height:47.647188pt;}
.h6{height:47.762000pt;}
.h17{height:48.062188pt;}
.h11{height:48.093750pt;}
.h19{height:48.178000pt;}
.h16{height:48.189937pt;}
.h3b{height:49.216348pt;}
.h3f{height:49.217484pt;}
.h4a{height:49.263672pt;}
.h46{height:49.463368pt;}
.h4d{height:50.024217pt;}
.h59{height:52.813750pt;}
.h58{height:52.928562pt;}
.h53{height:55.550584pt;}
.h51{height:55.624528pt;}
.hf{height:57.406250pt;}
.h10{height:57.521062pt;}
.h1{height:57.906250pt;}
.h4{height:58.022062pt;}
.h56{height:60.980634pt;}
.h50{height:61.061807pt;}
.h22{height:62.298223pt;}
.h12{height:62.800938pt;}
.h25{height:63.734539pt;}
.h2f{height:64.293732pt;}
.h23{height:64.396211pt;}
.h2d{height:64.910778pt;}
.h1e{height:67.165312pt;}
.h27{height:67.185176pt;}
.h57{height:67.280125pt;}
.h13{height:67.750312pt;}
.h38{height:67.866125pt;}
.h31{height:67.929839pt;}
.h29{height:69.964567pt;}
.h33{height:70.578421pt;}
.h1c{height:73.171875pt;}
.ha{height:76.350312pt;}
.he{height:76.465125pt;}
.h20{height:76.755521pt;}
.hb{height:77.015312pt;}
.hc{height:77.131125pt;}
.h2a{height:77.948164pt;}
.h34{height:78.581953pt;}
.h52{height:80.719461pt;}
.h3d{height:84.229327pt;}
.h41{height:84.231272pt;}
.h44{height:84.317017pt;}
.h3c{height:84.362924pt;}
.h40{height:84.364872pt;}
.h4b{height:84.450754pt;}
.h48{height:84.617500pt;}
.h47{height:84.751713pt;}
.h24{height:85.104923pt;}
.h2e{height:85.815403pt;}
.h5{height:86.109375pt;}
.h2c{height:86.224187pt;}
.h2{height:86.859375pt;}
.h4e{height:86.910717pt;}
.h3{height:86.975188pt;}
.h2b{height:94.437500pt;}
.h36{height:95.868437pt;}
.h14{height:95.983250pt;}
.h9{height:96.703437pt;}
.h21{height:96.819250pt;}
.h8{height:105.234000pt;}
.h43{height:112.181121pt;}
.h1b{height:115.812500pt;}
.h35{height:133.756563pt;}
.hd{height:134.921562pt;}
.h37{height:135.037375pt;}
.h1d{height:138.696042pt;}
.h0{height:720.000000pt;}
.w7{width:31.324462pt;}
.w4{width:31.538826pt;}
.w5{width:35.869467pt;}
.w3{width:39.820835pt;}
.w8{width:50.490426pt;}
.w6{width:122.354451pt;}
.w9{width:164.817902pt;}
.wa{width:190.600599pt;}
.w1{width:407.675976pt;}
.w2{width:407.677517pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x57{left:2.284029pt;}
.x7e{left:6.714685pt;}
.x56{left:13.112838pt;}
.x7d{left:19.363049pt;}
.x54{left:26.682392pt;}
.x96{left:30.858423pt;}
.x95{left:34.176158pt;}
.x4e{left:35.554455pt;}
.x98{left:36.491708pt;}
.x83{left:38.063932pt;}
.x23{left:39.456000pt;}
.x11{left:46.272000pt;}
.x5d{left:48.679571pt;}
.x5{left:55.264000pt;}
.x85{left:61.280000pt;}
.x1e{left:62.624000pt;}
.x1{left:64.448000pt;}
.x8{left:65.600000pt;}
.x2{left:67.136000pt;}
.x9f{left:69.120000pt;}
.x82{left:70.383853pt;}
.x9{left:73.952000pt;}
.x75{left:75.552000pt;}
.xd{left:76.608000pt;}
.xa1{left:77.600000pt;}
.x8e{left:80.593340pt;}
.x5f{left:84.160000pt;}
.x79{left:85.600000pt;}
.x9d{left:86.784000pt;}
.x97{left:89.759363pt;}
.x18{left:93.472000pt;}
.x1b{left:95.712000pt;}
.x92{left:96.747790pt;}
.x81{left:101.895298pt;}
.x48{left:102.880000pt;}
.x91{left:112.215374pt;}
.x3f{left:115.776000pt;}
.x69{left:117.504000pt;}
.x90{left:121.672709pt;}
.x94{left:128.255912pt;}
.x2f{left:131.968000pt;}
.xe{left:140.253333pt;}
.x8f{left:152.105468pt;}
.xf{left:153.053333pt;}
.x8b{left:154.853333pt;}
.x61{left:158.146667pt;}
.x6f{left:159.266667pt;}
.x13{left:161.626667pt;}
.x3a{left:167.360000pt;}
.x89{left:171.453333pt;}
.x2e{left:177.626667pt;}
.x64{left:181.306667pt;}
.x62{left:183.546667pt;}
.x9c{left:189.306667pt;}
.x4d{left:197.072236pt;}
.x60{left:202.240000pt;}
.x12{left:207.653333pt;}
.x72{left:210.173333pt;}
.x6d{left:217.853333pt;}
.x5e{left:224.465720pt;}
.x27{left:225.373333pt;}
.x53{left:235.300418pt;}
.x71{left:240.253333pt;}
.x55{left:243.128040pt;}
.x20{left:251.933333pt;}
.x52{left:253.565692pt;}
.x49{left:258.318749pt;}
.x6e{left:264.573333pt;}
.x70{left:272.573333pt;}
.x4c{left:275.482893pt;}
.x33{left:277.213333pt;}
.x41{left:278.266667pt;}
.x3e{left:287.493333pt;}
.x15{left:291.266667pt;}
.x32{left:296.226667pt;}
.x42{left:301.666667pt;}
.x50{left:306.469590pt;}
.x4f{left:307.577694pt;}
.x39{left:312.000000pt;}
.x51{left:320.234023pt;}
.x38{left:321.760000pt;}
.x84{left:325.986667pt;}
.xa4{left:333.280000pt;}
.x76{left:344.480000pt;}
.x9b{left:347.333333pt;}
.x4a{left:348.349835pt;}
.x1c{left:355.453333pt;}
.x4{left:358.053333pt;}
.xa3{left:362.240000pt;}
.x68{left:367.013333pt;}
.x7{left:371.333333pt;}
.x16{left:372.866667pt;}
.xa2{left:386.720000pt;}
.x3{left:388.453333pt;}
.x4b{left:389.708146pt;}
.x73{left:395.173333pt;}
.x86{left:396.066667pt;}
.x74{left:399.333333pt;}
.x1d{left:430.653333pt;}
.x2b{left:436.986667pt;}
.x17{left:449.666667pt;}
.x26{left:459.520000pt;}
.x3d{left:482.333333pt;}
.xb{left:483.813333pt;}
.x28{left:488.000000pt;}
.x8a{left:493.280000pt;}
.x7a{left:496.506667pt;}
.x35{left:499.520000pt;}
.x46{left:509.986667pt;}
.x37{left:511.813333pt;}
.x7b{left:513.626667pt;}
.x29{left:528.506667pt;}
.x78{left:531.360000pt;}
.x44{left:532.866667pt;}
.x6a{left:539.013333pt;}
.x80{left:545.938060pt;}
.x7f{left:548.154792pt;}
.x5a{left:556.826667pt;}
.x43{left:567.360000pt;}
.xa{left:570.973333pt;}
.x21{left:578.693333pt;}
.x63{left:589.373333pt;}
.x59{left:599.520000pt;}
.x65{left:618.266667pt;}
.x6{left:620.320000pt;}
.x19{left:621.693333pt;}
.x40{left:629.853333pt;}
.x5b{left:635.453333pt;}
.x5c{left:667.773333pt;}
.x34{left:669.893333pt;}
.x24{left:675.613333pt;}
.x87{left:680.960000pt;}
.x66{left:691.386667pt;}
.x3b{left:698.880000pt;}
.x36{left:699.973333pt;}
.x47{left:712.093333pt;}
.x58{left:713.053333pt;}
.x88{left:720.453333pt;}
.x10{left:725.093333pt;}
.x3c{left:734.880000pt;}
.x7c{left:745.893333pt;}
.x2c{left:753.853333pt;}
.x93{left:755.812588pt;}
.x99{left:760.133333pt;}
.x67{left:762.493333pt;}
.x8d{left:763.945509pt;}
.x30{left:771.386667pt;}
.x45{left:772.733333pt;}
.x77{left:775.546667pt;}
.x9e{left:793.666667pt;}
.x2d{left:799.360000pt;}
.x9a{left:801.786667pt;}
.x8c{left:803.773333pt;}
.x6b{left:817.573333pt;}
.x22{left:819.200000pt;}
.xa0{left:820.733333pt;}
.x1f{left:822.400000pt;}
.x6c{left:825.986667pt;}
.x14{left:833.120000pt;}
.xc{left:836.506667pt;}
.x1a{left:852.226667pt;}
.x2a{left:859.066667pt;}
.x25{left:864.893333pt;}
.x31{left:871.066667pt;}
}




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