
    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_fec1fdb2c5c62b1f6e56a495.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c4ac9bea68df7bd53c4e1b5e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.892000;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_690c821d71324c84ed5de57b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.713000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f8c89593dd82c14267bbbca9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_9927b301cb174fabeb46acdd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_166fa09aefe768550592a4a5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_07622a0d4204ef672d22faa9.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6c75869aa46efe6fdee23050.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.475000;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_379c8018d680023032590b29.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.684000;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_51b52ed4a58dce5ccb51a794.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.918000;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_ef4abb024e66cee385ba0977.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.688000;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_04dacf1f65229d6365729e70.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.932000;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_b998b980aff03aa9212f71d7.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.714000;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_914ead09aea718e2370eac9b.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_f40793fcb68e2dc56d163fb7.woff2')format("woff");}.fff{font-family:fff;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_cf55db21b92f60a1e1b7133b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.887450;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_e8d8fa3724fd78dab42b4a86.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.521000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_10e49e18b538ce2ad45bed78.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.451000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.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);}
.v3{vertical-align:-56.622000px;}
.v16{vertical-align:-17.934000px;}
.v5{vertical-align:-8.970000px;}
.vf{vertical-align:-7.290000px;}
.v7{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v11{vertical-align:5.874000px;}
.v8{vertical-align:11.952000px;}
.v4{vertical-align:13.686000px;}
.v2{vertical-align:15.108000px;}
.v14{vertical-align:17.268000px;}
.v15{vertical-align:19.092000px;}
.v9{vertical-align:20.610000px;}
.v6{vertical-align:21.696000px;}
.v1{vertical-align:23.754000px;}
.v12{vertical-align:31.926000px;}
.va{vertical-align:33.300000px;}
.vc{vertical-align:35.826000px;}
.vd{vertical-align:40.440000px;}
.vb{vertical-align:45.384000px;}
.ve{vertical-align:54.690000px;}
.v13{vertical-align:56.118000px;}
.v10{vertical-align:62.130000px;}
.ls3e{letter-spacing:0.000000px;}
.lsa6{letter-spacing:0.000065px;}
.lsc9{letter-spacing:0.000544px;}
.ls7f{letter-spacing:0.001084px;}
.ls61{letter-spacing:0.001488px;}
.ls9f{letter-spacing:0.002015px;}
.ls9b{letter-spacing:0.002082px;}
.ls20{letter-spacing:0.002408px;}
.ls2c{letter-spacing:0.002588px;}
.ls38{letter-spacing:0.003072px;}
.lsc7{letter-spacing:0.003652px;}
.ls98{letter-spacing:0.003734px;}
.ls9d{letter-spacing:0.004580px;}
.lsb8{letter-spacing:0.004648px;}
.lsc6{letter-spacing:0.005781px;}
.lsc5{letter-spacing:0.006575px;}
.ls8e{letter-spacing:0.007268px;}
.lsa4{letter-spacing:0.008095px;}
.ls2b{letter-spacing:0.010370px;}
.lsb6{letter-spacing:0.010853px;}
.ls87{letter-spacing:0.015439px;}
.lsaf{letter-spacing:0.017729px;}
.ls14{letter-spacing:0.019834px;}
.ls81{letter-spacing:0.023409px;}
.ls5e{letter-spacing:0.024353px;}
.lsb4{letter-spacing:0.059776px;}
.ls66{letter-spacing:1.386797px;}
.ls84{letter-spacing:1.606648px;}
.ls89{letter-spacing:1.612648px;}
.ls79{letter-spacing:1.613941px;}
.ls8b{letter-spacing:1.621003px;}
.ls7c{letter-spacing:1.673717px;}
.ls6{letter-spacing:2.151922px;}
.ls68{letter-spacing:2.343209px;}
.ls64{letter-spacing:2.371909px;}
.ls3d{letter-spacing:2.410166px;}
.ls9a{letter-spacing:2.821415px;}
.ls1e{letter-spacing:2.932010px;}
.ls0{letter-spacing:2.964877px;}
.ls88{letter-spacing:2.985235px;}
.ls1d{letter-spacing:2.986363px;}
.ls19{letter-spacing:2.988564px;}
.lsb{letter-spacing:2.988780px;}
.lsad{letter-spacing:2.989409px;}
.lsce{letter-spacing:2.990525px;}
.ls54{letter-spacing:3.407209px;}
.ls78{letter-spacing:3.466985px;}
.ls6a{letter-spacing:3.682186px;}
.ls80{letter-spacing:4.278579px;}
.ls6d{letter-spacing:4.495136px;}
.ls85{letter-spacing:4.598525px;}
.ls52{letter-spacing:4.841824px;}
.lsac{letter-spacing:4.854544px;}
.ls2e{letter-spacing:5.349460px;}
.ls2f{letter-spacing:6.579331px;}
.ls5a{letter-spacing:7.170758px;}
.lsa9{letter-spacing:7.174200px;}
.ls32{letter-spacing:7.176757px;}
.ls28{letter-spacing:7.758538px;}
.ls6e{letter-spacing:7.803622px;}
.ls6b{letter-spacing:7.812072px;}
.ls36{letter-spacing:7.813782px;}
.ls67{letter-spacing:7.816235px;}
.ls5c{letter-spacing:7.993782px;}
.ls34{letter-spacing:8.197782px;}
.ls3{letter-spacing:8.308808px;}
.lsaa{letter-spacing:9.225331px;}
.ls7{letter-spacing:9.244103px;}
.ls7b{letter-spacing:9.360672px;}
.lscb{letter-spacing:9.362820px;}
.lscc{letter-spacing:9.596164px;}
.ls3c{letter-spacing:10.632810px;}
.ls63{letter-spacing:10.812810px;}
.ls9{letter-spacing:10.938935px;}
.ls33{letter-spacing:11.016810px;}
.ls5b{letter-spacing:11.022810px;}
.lsca{letter-spacing:11.034767px;}
.ls3b{letter-spacing:11.285662px;}
.ls4f{letter-spacing:12.101134px;}
.ls42{letter-spacing:12.212525px;}
.ls2a{letter-spacing:13.270183px;}
.ls18{letter-spacing:13.867939px;}
.lsc8{letter-spacing:14.036525px;}
.ls3a{letter-spacing:14.059256px;}
.lsae{letter-spacing:14.281793px;}
.ls26{letter-spacing:15.222538px;}
.ls75{letter-spacing:15.422105px;}
.ls17{letter-spacing:16.019861px;}
.lsc4{letter-spacing:16.079636px;}
.lsc3{letter-spacing:16.139412px;}
.ls47{letter-spacing:16.258963px;}
.ls8c{letter-spacing:16.268525px;}
.ls86{letter-spacing:16.270362px;}
.ls25{letter-spacing:16.272775px;}
.ls82{letter-spacing:16.275235px;}
.lsba{letter-spacing:16.396200px;}
.ls27{letter-spacing:16.514196px;}
.ls5{letter-spacing:16.557841px;}
.ls29{letter-spacing:16.617617px;}
.ls8{letter-spacing:16.737168px;}
.ls97{letter-spacing:16.737210px;}
.ls96{letter-spacing:16.928492px;}
.lsb5{letter-spacing:16.957202px;}
.lsb7{letter-spacing:16.965954px;}
.ls99{letter-spacing:17.100532px;}
.ls9e{letter-spacing:17.101064px;}
.ls9c{letter-spacing:17.106557px;}
.ls8a{letter-spacing:17.882525px;}
.lsbd{letter-spacing:18.226200px;}
.ls62{letter-spacing:18.465056px;}
.ls4d{letter-spacing:18.533072px;}
.lsc1{letter-spacing:19.093470px;}
.ls7a{letter-spacing:19.548251px;}
.lsb9{letter-spacing:19.591202px;}
.lsbc{letter-spacing:19.593954px;}
.ls2d{letter-spacing:19.596775px;}
.lsa7{letter-spacing:19.597202px;}
.ls23{letter-spacing:20.024826px;}
.ls2{letter-spacing:20.263928px;}
.lsbf{letter-spacing:20.434414px;}
.ls53{letter-spacing:20.503031px;}
.ls1{letter-spacing:20.682358px;}
.ls55{letter-spacing:20.861684px;}
.ls7d{letter-spacing:20.995647px;}
.ls21{letter-spacing:21.006775px;}
.ls16{letter-spacing:21.092525px;}
.ls92{letter-spacing:21.339889px;}
.ls1a{letter-spacing:21.758318px;}
.ls43{letter-spacing:22.051022px;}
.ls58{letter-spacing:22.176748px;}
.ls91{letter-spacing:22.248579px;}
.ls11{letter-spacing:22.415850px;}
.ls70{letter-spacing:22.512503px;}
.ls76{letter-spacing:22.513256px;}
.lsbb{letter-spacing:22.595177px;}
.ls57{letter-spacing:22.654952px;}
.lsa{letter-spacing:22.904039px;}
.ls4c{letter-spacing:23.133157px;}
.ls24{letter-spacing:23.184120px;}
.ls50{letter-spacing:23.184538px;}
.ls94{letter-spacing:23.541539px;}
.lsa8{letter-spacing:23.778538px;}
.lsf{letter-spacing:23.910240px;}
.ls56{letter-spacing:24.029791px;}
.ls1b{letter-spacing:24.218525px;}
.lsa3{letter-spacing:24.325022px;}
.ls73{letter-spacing:24.358006px;}
.lse{letter-spacing:24.388445px;}
.ls4{letter-spacing:24.926425px;}
.ls7e{letter-spacing:25.200579px;}
.ls8d{letter-spacing:25.408362px;}
.ls8f{letter-spacing:25.413235px;}
.ls59{letter-spacing:25.763284px;}
.lsa2{letter-spacing:25.857314px;}
.ls93{letter-spacing:26.090525px;}
.lsa0{letter-spacing:26.181954px;}
.ls4b{letter-spacing:26.301264px;}
.ls22{letter-spacing:26.330196px;}
.lscd{letter-spacing:26.899020px;}
.lsa5{letter-spacing:27.265202px;}
.ls12{letter-spacing:27.317449px;}
.ls90{letter-spacing:27.494525px;}
.lsa1{letter-spacing:27.807954px;}
.ls4a{letter-spacing:28.094532px;}
.ls13{letter-spacing:28.766525px;}
.ls15{letter-spacing:28.772525px;}
.ls3f{letter-spacing:28.931390px;}
.ls95{letter-spacing:30.933539px;}
.ls48{letter-spacing:30.999783px;}
.lsd{letter-spacing:32.697253px;}
.ls1f{letter-spacing:33.580363px;}
.lsab{letter-spacing:34.740267px;}
.ls10{letter-spacing:35.865360px;}
.lsb3{letter-spacing:36.283789px;}
.lsb1{letter-spacing:37.180423px;}
.lsc{letter-spacing:38.196608px;}
.lsb2{letter-spacing:38.818834px;}
.ls60{letter-spacing:55.049300px;}
.ls39{letter-spacing:55.062668px;}
.lsbe{letter-spacing:58.819338px;}
.ls41{letter-spacing:59.775600px;}
.ls31{letter-spacing:59.775750px;}
.ls83{letter-spacing:60.342538px;}
.ls5d{letter-spacing:61.162547px;}
.ls65{letter-spacing:61.210368px;}
.ls40{letter-spacing:61.449317px;}
.ls35{letter-spacing:62.118959px;}
.ls30{letter-spacing:62.453704px;}
.ls72{letter-spacing:62.764380px;}
.ls5f{letter-spacing:63.457936px;}
.ls45{letter-spacing:64.617424px;}
.ls1c{letter-spacing:72.960538px;}
.ls37{letter-spacing:76.663451px;}
.ls46{letter-spacing:83.433658px;}
.ls74{letter-spacing:369.532759px;}
.ls77{letter-spacing:374.852788px;}
.ls6c{letter-spacing:377.256713px;}
.ls69{letter-spacing:379.552102px;}
.ls71{letter-spacing:386.867683px;}
.ls6f{letter-spacing:390.407378px;}
.ls49{letter-spacing:448.137673px;}
.lsc2{letter-spacing:457.643142px;}
.lsc0{letter-spacing:492.647821px;}
.ls44{letter-spacing:494.643090px;}
.lsb0{letter-spacing:589.771793px;}
.ls51{letter-spacing:591.222775px;}
.ls4e{letter-spacing:591.458196px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa8{word-spacing:-50.809387px;}
.ws53{word-spacing:-46.505417px;}
.ws43{word-spacing:-39.523726px;}
.ws28{word-spacing:-38.937826px;}
.ws46{word-spacing:-33.211407px;}
.ws3a{word-spacing:-31.633157px;}
.wsc7{word-spacing:-29.606820px;}
.wsc8{word-spacing:-29.316767px;}
.ws74{word-spacing:-29.015076px;}
.ws80{word-spacing:-28.955301px;}
.ws99{word-spacing:-28.932870px;}
.ws108{word-spacing:-23.953596px;}
.ws29{word-spacing:-23.515721px;}
.wsf7{word-spacing:-21.925745px;}
.ws5b{word-spacing:-19.608060px;}
.ws5a{word-spacing:-19.388820px;}
.ws5c{word-spacing:-17.935424px;}
.ws6e{word-spacing:-16.547121px;}
.ws6f{word-spacing:-16.541121px;}
.wsf9{word-spacing:-16.474197px;}
.ws1{word-spacing:-16.438350px;}
.ws5{word-spacing:-14.943900px;}
.ws12{word-spacing:-14.920027px;}
.ws4a{word-spacing:-11.955150px;}
.ws6d{word-spacing:-11.936059px;}
.ws9c{word-spacing:-10.540116px;}
.ws10a{word-spacing:-10.534116px;}
.ws49{word-spacing:-9.564150px;}
.ws42{word-spacing:-7.724682px;}
.ws9b{word-spacing:-6.220116px;}
.wsd2{word-spacing:-5.977560px;}
.ws7e{word-spacing:-5.743663px;}
.wsed{word-spacing:-5.480844px;}
.wsef{word-spacing:-5.465730px;}
.ws54{word-spacing:-2.635095px;}
.wse5{word-spacing:-1.075961px;}
.wsdf{word-spacing:-1.016185px;}
.wsc6{word-spacing:-0.956410px;}
.ws88{word-spacing:-0.896634px;}
.ws10e{word-spacing:-0.836858px;}
.ws8b{word-spacing:-0.537980px;}
.wsf5{word-spacing:-0.418429px;}
.wse4{word-spacing:-0.298878px;}
.ws101{word-spacing:-0.179327px;}
.wsdc{word-spacing:-0.119551px;}
.ws37{word-spacing:-0.059776px;}
.ws6{word-spacing:-0.053798px;}
.ws22{word-spacing:0.000000px;}
.ws5e{word-spacing:0.090012px;}
.ws12f{word-spacing:0.239103px;}
.ws10c{word-spacing:0.364404px;}
.wsf0{word-spacing:0.418429px;}
.wsfd{word-spacing:0.478205px;}
.ws10d{word-spacing:0.537980px;}
.ws26{word-spacing:0.717307px;}
.wsd6{word-spacing:0.777083px;}
.ws20{word-spacing:1.075961px;}
.wsfe{word-spacing:1.135736px;}
.wsee{word-spacing:1.190134px;}
.wsff{word-spacing:1.195512px;}
.wsc1{word-spacing:1.315063px;}
.wse6{word-spacing:1.374839px;}
.ws25{word-spacing:1.554166px;}
.ws62{word-spacing:1.613941px;}
.wsc3{word-spacing:1.793268px;}
.ws12c{word-spacing:1.865003px;}
.ws120{word-spacing:2.056286px;}
.ws1f{word-spacing:2.092146px;}
.wse3{word-spacing:2.211697px;}
.ws23{word-spacing:2.331248px;}
.wsa{word-spacing:2.420928px;}
.ws122{word-spacing:2.438851px;}
.ws40{word-spacing:2.450800px;}
.ws66{word-spacing:2.510575px;}
.ws7b{word-spacing:2.570351px;}
.ws68{word-spacing:2.630126px;}
.wsc5{word-spacing:2.689902px;}
.wsf3{word-spacing:2.929004px;}
.ws3d{word-spacing:3.048556px;}
.wsb{word-spacing:3.066509px;}
.ws15{word-spacing:3.227882px;}
.wscb{word-spacing:3.287658px;}
.ws33{word-spacing:3.373854px;}
.ws3f{word-spacing:3.466985px;}
.wsa6{word-spacing:3.526760px;}
.wseb{word-spacing:3.586536px;}
.ws11f{word-spacing:3.634366px;}
.ws115{word-spacing:3.765863px;}
.wsf4{word-spacing:3.825638px;}
.ws100{word-spacing:3.885414px;}
.ws8a{word-spacing:4.004965px;}
.wsa2{word-spacing:4.064741px;}
.ws5f{word-spacing:4.124516px;}
.ws63{word-spacing:4.244068px;}
.ws116{word-spacing:4.303843px;}
.ws8{word-spacing:4.357670px;}
.ws75{word-spacing:4.363619px;}
.ws94{word-spacing:4.364944px;}
.wsdd{word-spacing:4.662497px;}
.ws4b{word-spacing:4.743818px;}
.ws52{word-spacing:4.782048px;}
.ws48{word-spacing:4.782060px;}
.wsa4{word-spacing:5.021150px;}
.ws1e{word-spacing:5.140702px;}
.ws2c{word-spacing:5.200477px;}
.wsb0{word-spacing:5.260253px;}
.wse7{word-spacing:5.379804px;}
.ws57{word-spacing:5.439580px;}
.ws1b{word-spacing:5.499355px;}
.ws5d{word-spacing:5.618906px;}
.ws67{word-spacing:5.738458px;}
.ws103{word-spacing:5.798233px;}
.wsb3{word-spacing:5.858009px;}
.ws112{word-spacing:5.917784px;}
.wscd{word-spacing:5.929754px;}
.ws4{word-spacing:5.977560px;}
.ws21{word-spacing:6.037336px;}
.ws7{word-spacing:6.079219px;}
.wsd9{word-spacing:6.216662px;}
.ws18{word-spacing:6.336214px;}
.wsf2{word-spacing:6.395989px;}
.ws9{word-spacing:6.402010px;}
.wse1{word-spacing:6.455765px;}
.wsc4{word-spacing:6.515540px;}
.ws3{word-spacing:6.575340px;}
.wsad{word-spacing:6.635092px;}
.wsec{word-spacing:6.694867px;}
.wse{word-spacing:6.724800px;}
.ws38{word-spacing:6.754643px;}
.ws35{word-spacing:6.814418px;}
.ws97{word-spacing:6.874194px;}
.wsda{word-spacing:6.933970px;}
.ws91{word-spacing:6.993745px;}
.ws1d{word-spacing:7.053521px;}
.ws72{word-spacing:7.113296px;}
.wsa5{word-spacing:7.173072px;}
.ws111{word-spacing:7.292623px;}
.wse2{word-spacing:7.412174px;}
.ws8d{word-spacing:7.412193px;}
.ws8c{word-spacing:7.460014px;}
.ws86{word-spacing:7.471950px;}
.ws32{word-spacing:7.531726px;}
.ws2e{word-spacing:7.651277px;}
.wsb4{word-spacing:7.711052px;}
.ws16{word-spacing:7.830604px;}
.ws83{word-spacing:7.890379px;}
.ws96{word-spacing:7.950155px;}
.ws60{word-spacing:8.009930px;}
.wsb5{word-spacing:8.069706px;}
.ws106{word-spacing:8.074404px;}
.ws3e{word-spacing:8.129482px;}
.ws10f{word-spacing:8.189257px;}
.ws93{word-spacing:8.249033px;}
.wsae{word-spacing:8.308808px;}
.ws1a{word-spacing:8.368584px;}
.ws121{word-spacing:8.464246px;}
.ws39{word-spacing:8.488135px;}
.wsc9{word-spacing:8.547911px;}
.ws92{word-spacing:8.667462px;}
.wsc2{word-spacing:8.787013px;}
.ws82{word-spacing:8.846789px;}
.ws34{word-spacing:8.906564px;}
.ws10b{word-spacing:8.966340px;}
.ws19{word-spacing:9.026116px;}
.ws17{word-spacing:9.145667px;}
.ws13{word-spacing:9.205442px;}
.ws102{word-spacing:9.265218px;}
.ws98{word-spacing:9.324994px;}
.ws59{word-spacing:9.384769px;}
.ws107{word-spacing:9.444545px;}
.ws87{word-spacing:9.564096px;}
.wsd3{word-spacing:9.623872px;}
.ws58{word-spacing:9.862974px;}
.ws3b{word-spacing:9.922750px;}
.ws11e{word-spacing:9.946685px;}
.ws14{word-spacing:9.982525px;}
.ws41{word-spacing:10.221628px;}
.wsde{word-spacing:10.341179px;}
.ws114{word-spacing:10.400954px;}
.ws12e{word-spacing:10.424891px;}
.wsdb{word-spacing:10.759608px;}
.ws2f{word-spacing:10.819384px;}
.wsb2{word-spacing:11.118262px;}
.ws1c{word-spacing:11.178037px;}
.wsb1{word-spacing:11.237813px;}
.ws118{word-spacing:11.357364px;}
.wsa3{word-spacing:11.476915px;}
.ws9e{word-spacing:11.596466px;}
.ws76{word-spacing:11.656242px;}
.ws105{word-spacing:11.775793px;}
.ws110{word-spacing:11.895344px;}
.wsa1{word-spacing:11.955120px;}
.ws24{word-spacing:11.957428px;}
.wsc{word-spacing:12.104640px;}
.wsaf{word-spacing:12.134447px;}
.ws71{word-spacing:12.194222px;}
.ws11b{word-spacing:12.373549px;}
.wse0{word-spacing:12.433325px;}
.ws12d{word-spacing:12.433356px;}
.wsb6{word-spacing:12.552876px;}
.ws3c{word-spacing:12.612652px;}
.ws113{word-spacing:12.791978px;}
.ws27{word-spacing:13.090856px;}
.wsc0{word-spacing:13.150632px;}
.ws79{word-spacing:13.210408px;}
.ws9f{word-spacing:13.389734px;}
.ws50{word-spacing:13.596126px;}
.wsea{word-spacing:13.688612px;}
.wsd7{word-spacing:13.748388px;}
.ws4e{word-spacing:13.808164px;}
.ws65{word-spacing:13.836833px;}
.ws8e{word-spacing:14.059256px;}
.ws81{word-spacing:14.107042px;}
.wsfa{word-spacing:14.226593px;}
.ws6b{word-spacing:14.247807px;}
.wsfc{word-spacing:14.286368px;}
.ws4d{word-spacing:14.346144px;}
.ws0{word-spacing:14.346180px;}
.ws2{word-spacing:14.493058px;}
.ws2d{word-spacing:14.525471px;}
.ws104{word-spacing:14.585246px;}
.ws2b{word-spacing:14.764573px;}
.ws56{word-spacing:14.824349px;}
.ws95{word-spacing:14.943900px;}
.ws64{word-spacing:15.284230px;}
.ws11c{word-spacing:15.541656px;}
.ws30{word-spacing:15.571341px;}
.wsfb{word-spacing:15.661207px;}
.wsa7{word-spacing:16.139412px;}
.wsbf{word-spacing:16.378514px;}
.ws84{word-spacing:16.498066px;}
.ws31{word-spacing:16.557841px;}
.wscf{word-spacing:16.617617px;}
.ws119{word-spacing:16.737168px;}
.ws78{word-spacing:16.796944px;}
.ws4f{word-spacing:16.856719px;}
.wse9{word-spacing:16.916495px;}
.wsd0{word-spacing:16.976270px;}
.wsa0{word-spacing:17.095822px;}
.wsaa{word-spacing:17.215373px;}
.ws11d{word-spacing:17.334924px;}
.wscc{word-spacing:17.394700px;}
.wsd8{word-spacing:17.454475px;}
.wsd{word-spacing:17.538278px;}
.ws132{word-spacing:17.550160px;}
.ws11{word-spacing:17.932680px;}
.wsab{word-spacing:17.992456px;}
.ws36{word-spacing:18.052231px;}
.wsce{word-spacing:18.171782px;}
.wsd5{word-spacing:18.231558px;}
.ws90{word-spacing:18.351109px;}
.wsd4{word-spacing:19.187968px;}
.wsac{word-spacing:19.307519px;}
.ws10{word-spacing:19.313626px;}
.ws7a{word-spacing:19.546621px;}
.wsf1{word-spacing:19.785724px;}
.ws2a{word-spacing:19.845499px;}
.ws11a{word-spacing:19.965050px;}
.ws117{word-spacing:20.204153px;}
.wsd1{word-spacing:20.443255px;}
.ws89{word-spacing:20.503031px;}
.ws77{word-spacing:20.742133px;}
.ws8f{word-spacing:21.280114px;}
.wsb9{word-spacing:21.339889px;}
.wsb7{word-spacing:21.459440px;}
.ws61{word-spacing:21.937645px;}
.wse8{word-spacing:22.176748px;}
.wsb8{word-spacing:22.296299px;}
.ws51{word-spacing:22.481666px;}
.ws12a{word-spacing:23.862479px;}
.wsbb{word-spacing:24.089567px;}
.wsca{word-spacing:24.986201px;}
.ws4c{word-spacing:25.703508px;}
.ws138{word-spacing:26.396971px;}
.wsbc{word-spacing:27.915205px;}
.ws123{word-spacing:28.118513px;}
.ws136{word-spacing:28.166333px;}
.wsbe{word-spacing:28.214083px;}
.ws126{word-spacing:29.266207px;}
.ws13b{word-spacing:30.461722px;}
.ws7c{word-spacing:30.664883px;}
.ws13a{word-spacing:30.700825px;}
.ws73{word-spacing:31.131511px;}
.ws7f{word-spacing:31.202863px;}
.wsba{word-spacing:32.219048px;}
.wsf{word-spacing:32.709427px;}
.wsbd{word-spacing:32.876580px;}
.ws128{word-spacing:34.574294px;}
.ws55{word-spacing:36.343565px;}
.ws137{word-spacing:36.439297px;}
.ws139{word-spacing:38.399942px;}
.ws7d{word-spacing:39.750774px;}
.ws12b{word-spacing:39.978022px;}
.ws127{word-spacing:43.229822px;}
.ws129{word-spacing:47.294573px;}
.ws134{word-spacing:49.350859px;}
.ws130{word-spacing:52.650481px;}
.ws131{word-spacing:53.893816px;}
.ws133{word-spacing:58.054208px;}
.ws45{word-spacing:59.727929px;}
.ws135{word-spacing:59.823571px;}
.ws70{word-spacing:62.728572px;}
.wsf6{word-spacing:64.018798px;}
.wsf8{word-spacing:64.020591px;}
.ws124{word-spacing:72.256927px;}
.ws125{word-spacing:95.880303px;}
.ws85{word-spacing:295.490607px;}
.ws9d{word-spacing:308.980076px;}
.ws6c{word-spacing:369.393224px;}
.ws47{word-spacing:387.807224px;}
.wsa9{word-spacing:391.149224px;}
.ws109{word-spacing:408.817884px;}
.ws9a{word-spacing:441.657998px;}
.ws44{word-spacing:478.755224px;}
.ws6a{word-spacing:529.671807px;}
.ws69{word-spacing:539.925224px;}
._7{margin-left:-28.331112px;}
._23{margin-left:-24.436327px;}
._1b{margin-left:-7.529021px;}
._1e{margin-left:-6.276438px;}
._3{margin-left:-4.949453px;}
._0{margin-left:-3.586545px;}
._b{margin-left:-2.400241px;}
._1{margin-left:-1.317768px;}
._f{width:1.716782px;}
._4{width:2.988780px;}
._1f{width:4.467092px;}
._c{width:6.520979px;}
._12{width:9.308867px;}
._22{width:12.911530px;}
._2{width:15.493939px;}
._15{width:16.557841px;}
._d{width:19.109035px;}
._17{width:20.453035px;}
._18{width:21.519216px;}
._6{width:24.475927px;}
._5{width:26.478068px;}
._13{width:28.434268px;}
._a{width:29.887800px;}
._11{width:30.993348px;}
._21{width:32.164682px;}
._1d{width:33.474420px;}
._10{width:35.159860px;}
._14{width:38.371110px;}
._9{width:39.455287px;}
._24{width:43.899311px;}
._1a{width:46.146763px;}
._25{width:47.829811px;}
._19{width:53.678489px;}
._27{width:69.005126px;}
._26{width:77.813327px;}
._20{width:242.449834px;}
._1c{width:255.349441px;}
._8{width:256.976414px;}
._e{width:592.353772px;}
._16{width:629.606020px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:29.887800px;}
.fs8{font-size:35.865600px;}
.fs9{font-size:38.256600px;}
.fs6{font-size:41.842800px;}
.fs2{font-size:46.027200px;}
.fs5{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y196{bottom:113.332500px;}
.y1e8{bottom:113.334000px;}
.yc8{bottom:115.657500px;}
.y124{bottom:115.921500px;}
.yc7{bottom:126.118500px;}
.y1e7{bottom:126.783000px;}
.yc6{bottom:129.108000px;}
.y5c{bottom:129.174000px;}
.y177{bottom:130.716000px;}
.y99{bottom:131.146500px;}
.y195{bottom:131.265000px;}
.y30{bottom:140.029500px;}
.y1e6{bottom:140.232000px;}
.y5b{bottom:142.623000px;}
.y176{bottom:144.165000px;}
.y98{bottom:144.595500px;}
.y1e5{bottom:153.682500px;}
.y2f{bottom:157.963500px;}
.y97{bottom:158.046000px;}
.y175{bottom:160.603500px;}
.y102{bottom:160.696500px;}
.y194{bottom:161.718000px;}
.y58{bottom:163.021500px;}
.y193{bottom:165.495000px;}
.y1e4{bottom:167.131500px;}
.y100{bottom:169.651500px;}
.y5a{bottom:171.976500px;}
.yff{bottom:172.674000px;}
.y59{bottom:174.999000px;}
.y2e{bottom:175.896000px;}
.y101{bottom:177.976500px;}
.y57{bottom:180.301500px;}
.y1e3{bottom:180.580500px;}
.y96{bottom:181.582500px;}
.y174{bottom:184.140000px;}
.y95{bottom:184.338000px;}
.y192{bottom:184.930500px;}
.y173{bottom:186.897000px;}
.y191{bottom:188.707500px;}
.y2d{bottom:193.828500px;}
.y1e2{bottom:194.226000px;}
.yfe{bottom:196.378500px;}
.y2c{bottom:197.605500px;}
.y56{bottom:198.039000px;}
.yfd{bottom:199.399500px;}
.y94{bottom:200.647500px;}
.y172{bottom:203.454000px;}
.y93{bottom:203.670000px;}
.y171{bottom:206.211000px;}
.y55{bottom:206.994000px;}
.y1e1{bottom:207.676500px;}
.y54{bottom:210.016500px;}
.y190{bottom:214.585500px;}
.yfc{bottom:214.779000px;}
.yfb{bottom:217.801500px;}
.y92{bottom:219.712500px;}
.y2b{bottom:220.362000px;}
.y1e0{bottom:221.125500px;}
.y91{bottom:222.735000px;}
.y53{bottom:227.071500px;}
.y52{bottom:230.092500px;}
.yfa{bottom:230.856000px;}
.y18f{bottom:232.518000px;}
.y1df{bottom:234.574500px;}
.y2a{bottom:238.294500px;}
.yf8{bottom:239.811000px;}
.yf7{bottom:242.833500px;}
.y51{bottom:243.147000px;}
.y1de{bottom:248.025000px;}
.yf9{bottom:248.136000px;}
.y18e{bottom:250.450500px;}
.y4f{bottom:252.103500px;}
.y4e{bottom:255.126000px;}
.y170{bottom:255.670500px;}
.y29{bottom:256.227000px;}
.y50{bottom:260.428500px;}
.y1dd{bottom:261.669000px;}
.y123{bottom:263.956500px;}
.y18d{bottom:268.384500px;}
.y16f{bottom:273.604500px;}
.y28{bottom:274.161000px;}
.y90{bottom:274.896000px;}
.y1dc{bottom:275.119500px;}
.y122{bottom:282.642000px;}
.y18c{bottom:286.317000px;}
.y8f{bottom:288.345000px;}
.y1db{bottom:288.568500px;}
.y16e{bottom:291.537000px;}
.y27{bottom:292.093500px;}
.yf6{bottom:300.124500px;}
.y1da{bottom:302.019000px;}
.y121{bottom:303.090000px;}
.y18b{bottom:304.249500px;}
.y8e{bottom:306.418500px;}
.y4d{bottom:308.904000px;}
.y16d{bottom:309.469500px;}
.y26{bottom:310.026000px;}
.y8c{bottom:315.373500px;}
.y1d9{bottom:315.663000px;}
.yf5{bottom:318.058500px;}
.y8b{bottom:318.396000px;}
.y120{bottom:321.024000px;}
.y18a{bottom:322.182000px;}
.y8d{bottom:323.698500px;}
.y16c{bottom:327.402000px;}
.y1d8{bottom:329.113500px;}
.y4c{bottom:332.116500px;}
.y25{bottom:332.274000px;}
.y4b{bottom:335.538000px;}
.yf4{bottom:335.991000px;}
.y11f{bottom:338.956500px;}
.yc5{bottom:339.648000px;}
.y189{bottom:340.114500px;}
.y8a{bottom:342.099000px;}
.y1d7{bottom:342.562500px;}
.y89{bottom:345.121500px;}
.y16b{bottom:345.334500px;}
.yf3{bottom:353.923500px;}
.y1d6{bottom:356.208000px;}
.y11e{bottom:356.889000px;}
.yc4{bottom:357.582000px;}
.y4a{bottom:357.937500px;}
.y24{bottom:357.940500px;}
.y188{bottom:358.047000px;}
.y88{bottom:360.298500px;}
.y16a{bottom:363.267000px;}
.y87{bottom:363.319500px;}
.y1d5{bottom:369.657000px;}
.yf2{bottom:371.856000px;}
.y11d{bottom:374.821500px;}
.yc3{bottom:375.514500px;}
.y49{bottom:375.870000px;}
.y23{bottom:375.873000px;}
.y187{bottom:375.981000px;}
.y86{bottom:376.374000px;}
.y169{bottom:381.201000px;}
.y1d4{bottom:383.106000px;}
.y84{bottom:385.330500px;}
.y83{bottom:388.351500px;}
.yf1{bottom:389.788500px;}
.y11c{bottom:392.754000px;}
.yc2{bottom:393.447000px;}
.y85{bottom:393.655500px;}
.y48{bottom:393.802500px;}
.y22{bottom:393.805500px;}
.y186{bottom:393.913500px;}
.y1d3{bottom:396.556500px;}
.y168{bottom:399.133500px;}
.yf0{bottom:407.722500px;}
.y1d2{bottom:410.202000px;}
.yc1{bottom:411.379500px;}
.y47{bottom:411.736500px;}
.y21{bottom:411.738000px;}
.y185{bottom:411.846000px;}
.y11b{bottom:415.248000px;}
.y167{bottom:417.066000px;}
.y1d1{bottom:423.846000px;}
.yef{bottom:425.655000px;}
.yc0{bottom:429.312000px;}
.y46{bottom:429.669000px;}
.y20{bottom:429.670500px;}
.y184{bottom:429.778500px;}
.y141{bottom:433.005000px;}
.y166{bottom:434.998500px;}
.y1b7{bottom:435.033000px;}
.y157{bottom:435.637500px;}
.y1d0{bottom:437.296500px;}
.y11a{bottom:442.387500px;}
.yee{bottom:443.587500px;}
.y82{bottom:446.929500px;}
.ybf{bottom:447.246000px;}
.y45{bottom:447.601500px;}
.y1f{bottom:447.603000px;}
.y183{bottom:447.711000px;}
.y1cf{bottom:450.745500px;}
.y140{bottom:450.937500px;}
.y1b6{bottom:452.967000px;}
.y156{bottom:453.570000px;}
.y165{bottom:455.254500px;}
.y119{bottom:460.320000px;}
.yed{bottom:461.520000px;}
.y1ce{bottom:464.194500px;}
.y81{bottom:464.862000px;}
.ybe{bottom:465.178500px;}
.y1e{bottom:465.537000px;}
.y182{bottom:465.643500px;}
.y44{bottom:465.975000px;}
.y13f{bottom:468.870000px;}
.y1b5{bottom:470.899500px;}
.y155{bottom:471.502500px;}
.y164{bottom:473.188500px;}
.y1cd{bottom:477.645000px;}
.y118{bottom:478.252500px;}
.yec{bottom:479.452500px;}
.y80{bottom:482.794500px;}
.ybd{bottom:483.111000px;}
.y1d{bottom:483.469500px;}
.y181{bottom:483.577500px;}
.y43{bottom:483.907500px;}
.y13e{bottom:486.802500px;}
.y1b4{bottom:488.832000px;}
.y154{bottom:489.436500px;}
.y163{bottom:491.121000px;}
.y1cc{bottom:491.290500px;}
.y117{bottom:496.185000px;}
.yeb{bottom:497.385000px;}
.y7f{bottom:500.727000px;}
.ybc{bottom:501.043500px;}
.y1c{bottom:501.402000px;}
.y180{bottom:501.510000px;}
.y42{bottom:501.841500px;}
.y13d{bottom:504.735000px;}
.y1cb{bottom:504.739500px;}
.y1b3{bottom:506.764500px;}
.y153{bottom:507.369000px;}
.y162{bottom:509.053500px;}
.y116{bottom:514.117500px;}
.yea{bottom:515.319000px;}
.y1ca{bottom:518.188500px;}
.y7e{bottom:518.659500px;}
.ybb{bottom:518.976000px;}
.y1b{bottom:519.334500px;}
.y17f{bottom:519.442500px;}
.y41{bottom:519.774000px;}
.y13c{bottom:522.667500px;}
.y1b2{bottom:524.697000px;}
.y152{bottom:525.301500px;}
.y161{bottom:526.986000px;}
.y1c9{bottom:531.639000px;}
.y115{bottom:532.051500px;}
.ye9{bottom:533.251500px;}
.y7d{bottom:536.593500px;}
.yba{bottom:536.908500px;}
.y1a{bottom:537.267000px;}
.y17e{bottom:537.375000px;}
.y13b{bottom:540.601500px;}
.y1b1{bottom:542.629500px;}
.y151{bottom:543.234000px;}
.y160{bottom:544.918500px;}
.y1c8{bottom:545.283000px;}
.y114{bottom:549.837000px;}
.y7c{bottom:554.526000px;}
.yb9{bottom:554.842500px;}
.y40{bottom:555.144000px;}
.y19{bottom:555.201000px;}
.y17d{bottom:555.307500px;}
.ye8{bottom:555.823500px;}
.y1c7{bottom:558.733500px;}
.y1b0{bottom:560.563500px;}
.y150{bottom:561.166500px;}
.y15f{bottom:562.851000px;}
.y13a{bottom:563.113500px;}
.y113{bottom:567.769500px;}
.y3f{bottom:567.924000px;}
.y1c6{bottom:572.182500px;}
.y7b{bottom:572.670000px;}
.y3e{bottom:573.076500px;}
.y18{bottom:573.133500px;}
.yb8{bottom:574.315500px;}
.yb7{bottom:578.299500px;}
.y1af{bottom:578.496000px;}
.y14f{bottom:579.099000px;}
.y17c{bottom:580.155000px;}
.y15e{bottom:580.785000px;}
.ye7{bottom:583.437000px;}
.y112{bottom:585.702000px;}
.y1c5{bottom:585.828000px;}
.yb5{bottom:588.550500px;}
.y139{bottom:590.371500px;}
.y7a{bottom:590.602500px;}
.y17{bottom:590.673000px;}
.y3d{bottom:591.009000px;}
.yb6{bottom:594.951000px;}
.y1ae{bottom:596.428500px;}
.y1c4{bottom:599.277000px;}
.y15d{bottom:601.041000px;}
.ye6{bottom:601.369500px;}
.y111{bottom:603.634500px;}
.y138{bottom:608.304000px;}
.y79{bottom:608.535000px;}
.y16{bottom:608.605500px;}
.y3c{bottom:608.943000px;}
.y17b{bottom:611.302500px;}
.y1c3{bottom:612.922500px;}
.y1ad{bottom:614.361000px;}
.y14e{bottom:614.965500px;}
.y15c{bottom:618.973500px;}
.ye5{bottom:619.303500px;}
.y110{bottom:621.568500px;}
.yb4{bottom:623.490000px;}
.y137{bottom:626.236500px;}
.y78{bottom:626.467500px;}
.y15{bottom:626.539500px;}
.y1c2{bottom:626.568000px;}
.y3b{bottom:628.270500px;}
.y17a{bottom:629.235000px;}
.y1ac{bottom:632.293500px;}
.y14d{bottom:632.898000px;}
.ye4{bottom:637.236000px;}
.y10f{bottom:639.501000px;}
.y1c1{bottom:640.213500px;}
.yb3{bottom:641.422500px;}
.y77{bottom:644.400000px;}
.y14{bottom:644.472000px;}
.y3a{bottom:646.203000px;}
.y1ab{bottom:650.226000px;}
.y14c{bottom:650.830500px;}
.y1c0{bottom:653.662500px;}
.ye3{bottom:657.213000px;}
.y10e{bottom:657.433500px;}
.yb2{bottom:659.355000px;}
.y136{bottom:661.975500px;}
.y76{bottom:662.332500px;}
.y15b{bottom:662.671500px;}
.y39{bottom:664.135500px;}
.y13{bottom:666.720000px;}
.y1bf{bottom:667.308000px;}
.ye2{bottom:667.464000px;}
.y1aa{bottom:668.160000px;}
.y14b{bottom:668.763000px;}
.ye1{bottom:671.242500px;}
.y10d{bottom:675.366000px;}
.yb1{bottom:677.289000px;}
.y179{bottom:678.532500px;}
.y135{bottom:679.908000px;}
.y75{bottom:680.266500px;}
.y15a{bottom:680.605500px;}
.y1be{bottom:680.757000px;}
.y38{bottom:682.068000px;}
.y1a9{bottom:686.092500px;}
.y14a{bottom:686.697000px;}
.y10c{bottom:693.298500px;}
.y1bd{bottom:694.206000px;}
.yb0{bottom:695.221500px;}
.y12{bottom:696.540000px;}
.y134{bottom:697.840500px;}
.y74{bottom:698.199000px;}
.y37{bottom:701.395500px;}
.y149{bottom:704.629500px;}
.ye0{bottom:705.138000px;}
.y1bc{bottom:707.656500px;}
.ydf{bottom:708.915000px;}
.y1a8{bottom:710.269500px;}
.y10b{bottom:711.231000px;}
.y11{bottom:711.484500px;}
.yaf{bottom:713.154000px;}
.y73{bottom:716.131500px;}
.y133{bottom:717.555000px;}
.y36{bottom:719.328000px;}
.y148{bottom:722.562000px;}
.yde{bottom:723.070500px;}
.y10{bottom:726.036000px;}
.y132{bottom:727.806000px;}
.yae{bottom:731.086500px;}
.y1bb{bottom:731.959500px;}
.y10a{bottom:733.725000px;}
.y72{bottom:734.064000px;}
.y35{bottom:737.262000px;}
.y1a7{bottom:740.467500px;}
.y147{bottom:740.494500px;}
.yf{bottom:740.979000px;}
.ydc{bottom:744.543000px;}
.yad{bottom:749.019000px;}
.y130{bottom:752.029500px;}
.y34{bottom:755.194500px;}
.ye{bottom:755.923500px;}
.y71{bottom:757.443000px;}
.y1a6{bottom:758.400000px;}
.y146{bottom:758.427000px;}
.y12f{bottom:762.279000px;}
.y131{bottom:762.280500px;}
.yda{bottom:762.898500px;}
.y1ba{bottom:762.972000px;}
.ydd{bottom:766.677000px;}
.yac{bottom:766.951500px;}
.yd{bottom:770.868000px;}
.y33{bottom:772.632000px;}
.y1a5{bottom:776.332500px;}
.y145{bottom:776.359500px;}
.y109{bottom:778.797000px;}
.ydb{bottom:779.088000px;}
.y1b9{bottom:780.904500px;}
.yab{bottom:784.885500px;}
.yc{bottom:785.811000px;}
.y70{bottom:787.257000px;}
.y32{bottom:790.564500px;}
.yd9{bottom:792.109500px;}
.y1a4{bottom:794.265000px;}
.y144{bottom:794.293500px;}
.y12e{bottom:794.778000px;}
.y108{bottom:796.729500px;}
.yb{bottom:800.755500px;}
.yaa{bottom:802.818000px;}
.y6f{bottom:805.189500px;}
.y31{bottom:808.497000px;}
.yd8{bottom:810.042000px;}
.y1a3{bottom:812.197500px;}
.y143{bottom:812.226000px;}
.y12d{bottom:812.710500px;}
.y107{bottom:814.662000px;}
.ya{bottom:815.698500px;}
.ya9{bottom:820.750500px;}
.y6d{bottom:826.407000px;}
.y1a2{bottom:830.130000px;}
.y1b8{bottom:830.160000px;}
.y9{bottom:830.643000px;}
.y106{bottom:832.596000px;}
.y6e{bottom:836.658000px;}
.yd7{bottom:837.762000px;}
.ya8{bottom:838.683000px;}
.yd6{bottom:841.539000px;}
.y6c{bottom:846.766500px;}
.y1a1{bottom:848.064000px;}
.y12c{bottom:848.575500px;}
.y105{bottom:850.528500px;}
.ya7{bottom:856.615500px;}
.yd5{bottom:865.480500px;}
.y1a0{bottom:865.996500px;}
.y12b{bottom:866.508000px;}
.y104{bottom:868.461000px;}
.y6b{bottom:868.609500px;}
.yd4{bottom:869.259000px;}
.y6a{bottom:872.388000px;}
.ya6{bottom:874.548000px;}
.yd3{bottom:883.413000px;}
.y19f{bottom:884.185500px;}
.y12a{bottom:884.442000px;}
.ya5{bottom:892.482000px;}
.y159{bottom:897.276000px;}
.y178{bottom:897.279000px;}
.y69{bottom:897.568500px;}
.y8{bottom:899.548500px;}
.yd2{bottom:901.347000px;}
.y19e{bottom:902.118000px;}
.y129{bottom:902.374500px;}
.ya4{bottom:910.414500px;}
.y158{bottom:915.208500px;}
.y103{bottom:915.211500px;}
.y68{bottom:915.501000px;}
.y7{bottom:918.042000px;}
.y19d{bottom:920.050500px;}
.y128{bottom:920.307000px;}
.yd1{bottom:923.919000px;}
.ya3{bottom:928.347000px;}
.y6{bottom:936.534000px;}
.y19c{bottom:937.983000px;}
.y127{bottom:938.239500px;}
.y67{bottom:943.885500px;}
.ya2{bottom:946.279500px;}
.yd0{bottom:951.532500px;}
.y66{bottom:954.136500px;}
.y5{bottom:955.027500px;}
.y19b{bottom:955.915500px;}
.y126{bottom:956.172000px;}
.y65{bottom:957.915000px;}
.ya1{bottom:964.212000px;}
.ycf{bottom:969.465000px;}
.y4{bottom:973.521000px;}
.y19a{bottom:973.849500px;}
.y142{bottom:974.104500px;}
.y64{bottom:981.012000px;}
.y63{bottom:984.790500px;}
.yce{bottom:987.399000px;}
.ya0{bottom:991.575000px;}
.y199{bottom:991.782000px;}
.y125{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y9f{bottom:994.996500px;}
.ycd{bottom:1005.331500px;}
.y198{bottom:1009.714500px;}
.y62{bottom:1009.971000px;}
.y9e{bottom:1013.991000px;}
.y9d{bottom:1017.768000px;}
.ycc{bottom:1023.264000px;}
.y197{bottom:1027.647000px;}
.y61{bottom:1027.903500px;}
.y9c{bottom:1036.407000px;}
.y2{bottom:1039.309500px;}
.y9b{bottom:1040.184000px;}
.ycb{bottom:1041.196500px;}
.y60{bottom:1045.836000px;}
.yca{bottom:1059.129000px;}
.y5f{bottom:1063.768500px;}
.yc9{bottom:1077.061500px;}
.y1{bottom:1081.152000px;}
.y5e{bottom:1081.701000px;}
.y9a{bottom:1081.702500px;}
.y5d{bottom:1099.635000px;}
.h23{height:29.457331px;}
.h29{height:32.661470px;}
.h13{height:32.900573px;}
.hc{height:34.287370px;}
.h11{height:35.865450px;}
.h6{height:37.228493px;}
.h5{height:37.605082px;}
.h3{height:40.826735px;}
.h4{height:41.125613px;}
.h8{height:44.831700px;}
.h21{height:44.858573px;}
.h26{height:45.309370px;}
.h14{height:45.315370px;}
.h10{height:46.371370px;}
.hd{height:46.377370px;}
.h1d{height:48.375619px;}
.h1f{height:48.633280px;}
.ha{height:51.321619px;}
.h2{height:55.420714px;}
.h22{height:56.786820px;}
.h9{height:58.517700px;}
.h18{height:58.523700px;}
.h1c{height:59.669700px;}
.h7{height:59.939700px;}
.h16{height:59.945700px;}
.h20{height:60.591280px;}
.h24{height:60.605700px;}
.hb{height:61.735613px;}
.h27{height:63.923700px;}
.h12{height:67.587370px;}
.h15{height:68.720573px;}
.hf{height:68.726573px;}
.he{height:79.671370px;}
.h1a{height:79.677370px;}
.h17{height:85.271700px;}
.h1b{height:89.913619px;}
.h1e{height:98.065613px;}
.h1{height:98.701718px;}
.h19{height:99.521700px;}
.h28{height:100.943700px;}
.h25{height:100.949700px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:73.446000px;}
.x11{left:75.753000px;}
.x91{left:80.865000px;}
.x7{left:88.390500px;}
.x5d{left:103.240500px;}
.x80{left:105.654000px;}
.x75{left:113.602500px;}
.x3c{left:118.212000px;}
.xd{left:130.233000px;}
.x6b{left:146.437500px;}
.xb{left:152.644500px;}
.x7f{left:155.404500px;}
.x7c{left:159.105000px;}
.x3d{left:161.341500px;}
.x6c{left:163.513500px;}
.x79{left:165.079500px;}
.xa{left:166.257000px;}
.x47{left:167.950500px;}
.x72{left:175.611000px;}
.x71{left:176.983500px;}
.x85{left:178.341000px;}
.x12{left:180.970500px;}
.x48{left:183.987000px;}
.x59{left:186.489000px;}
.x5a{left:187.671000px;}
.x53{left:189.127500px;}
.x4f{left:190.503000px;}
.x4e{left:191.701500px;}
.xc{left:194.749500px;}
.x38{left:201.280500px;}
.xe{left:202.375500px;}
.x9{left:203.428500px;}
.x35{left:204.468000px;}
.x84{left:205.921500px;}
.x3f{left:208.039500px;}
.x3e{left:209.382000px;}
.x7d{left:212.139000px;}
.x7a{left:213.180000px;}
.x54{left:215.238000px;}
.x50{left:216.615000px;}
.x6e{left:218.499000px;}
.x73{left:220.075500px;}
.x6d{left:222.249000px;}
.x49{left:227.947500px;}
.x7b{left:229.224000px;}
.x41{left:230.337000px;}
.x42{left:233.473500px;}
.x5c{left:234.972000px;}
.x2{left:236.832000px;}
.x40{left:238.758000px;}
.x56{left:240.234000px;}
.x81{left:242.161500px;}
.x74{left:245.944500px;}
.xf{left:247.005000px;}
.x6f{left:254.436000px;}
.x1{left:258.387000px;}
.x44{left:265.450500px;}
.x36{left:269.197500px;}
.x43{left:272.490000px;}
.x3a{left:275.722500px;}
.x39{left:278.125500px;}
.x52{left:280.825500px;}
.x34{left:282.844500px;}
.x45{left:283.984500px;}
.x51{left:285.432000px;}
.x70{left:290.197500px;}
.x82{left:292.992000px;}
.x83{left:296.515500px;}
.x37{left:299.355000px;}
.x5b{left:301.779000px;}
.x10{left:303.207000px;}
.x57{left:304.492500px;}
.x3b{left:306.072000px;}
.x76{left:312.042000px;}
.x55{left:317.481000px;}
.x58{left:320.116500px;}
.x46{left:322.141500px;}
.x4a{left:345.447000px;}
.x5{left:358.062000px;}
.x4{left:366.699000px;}
.x3{left:376.938000px;}
.x4b{left:388.513500px;}
.x6{left:400.024500px;}
.x4c{left:405.990000px;}
.x4d{left:433.906500px;}
.x33{left:437.245500px;}
.x13{left:467.967000px;}
.x94{left:473.944500px;}
.x92{left:477.520500px;}
.x14{left:482.910000px;}
.x95{left:495.355500px;}
.x17{left:498.000000px;}
.x86{left:500.754000px;}
.x63{left:516.856500px;}
.x21{left:539.595000px;}
.x67{left:543.952500px;}
.x7e{left:550.170000px;}
.x64{left:558.115500px;}
.x78{left:560.989500px;}
.x8b{left:571.966500px;}
.x8a{left:574.368000px;}
.x19{left:577.060500px;}
.x88{left:578.196000px;}
.x32{left:581.098500px;}
.x62{left:582.655500px;}
.x2d{left:584.463000px;}
.x87{left:585.979500px;}
.x2c{left:588.222000px;}
.x18{left:590.379000px;}
.x65{left:592.924500px;}
.x25{left:600.316500px;}
.x24{left:601.513500px;}
.x69{left:605.332500px;}
.x2a{left:612.121500px;}
.x29{left:613.320000px;}
.x93{left:614.418000px;}
.x1c{left:620.959500px;}
.x1d{left:622.339500px;}
.x26{left:626.427000px;}
.x31{left:633.474000px;}
.x66{left:635.077500px;}
.x5f{left:637.431000px;}
.x5e{left:639.771000px;}
.x1e{left:649.273500px;}
.x68{left:658.740000px;}
.x8d{left:667.234500px;}
.x2e{left:676.174500px;}
.x2b{left:677.967000px;}
.x1f{left:680.601000px;}
.x8e{left:682.864500px;}
.x8c{left:684.661500px;}
.x89{left:686.052000px;}
.x28{left:690.639000px;}
.x15{left:693.588000px;}
.x27{left:695.244000px;}
.x8f{left:700.236000px;}
.x20{left:709.606500px;}
.x2f{left:710.680500px;}
.x60{left:711.909000px;}
.x22{left:713.371500px;}
.x61{left:714.849000px;}
.x90{left:716.760000px;}
.x30{left:718.077000px;}
.x1b{left:719.331000px;}
.x6a{left:720.427500px;}
.x23{left:729.975000px;}
.x16{left:737.521500px;}
.x77{left:773.632500px;}
.x1a{left:831.492000px;}
@media print{
.v3{vertical-align:-50.330667pt;}
.v16{vertical-align:-15.941333pt;}
.v5{vertical-align:-7.973333pt;}
.vf{vertical-align:-6.480000pt;}
.v7{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v11{vertical-align:5.221333pt;}
.v8{vertical-align:10.624000pt;}
.v4{vertical-align:12.165333pt;}
.v2{vertical-align:13.429333pt;}
.v14{vertical-align:15.349333pt;}
.v15{vertical-align:16.970667pt;}
.v9{vertical-align:18.320000pt;}
.v6{vertical-align:19.285333pt;}
.v1{vertical-align:21.114667pt;}
.v12{vertical-align:28.378667pt;}
.va{vertical-align:29.600000pt;}
.vc{vertical-align:31.845333pt;}
.vd{vertical-align:35.946667pt;}
.vb{vertical-align:40.341333pt;}
.ve{vertical-align:48.613333pt;}
.v13{vertical-align:49.882667pt;}
.v10{vertical-align:55.226667pt;}
.ls3e{letter-spacing:0.000000pt;}
.lsa6{letter-spacing:0.000058pt;}
.lsc9{letter-spacing:0.000483pt;}
.ls7f{letter-spacing:0.000964pt;}
.ls61{letter-spacing:0.001323pt;}
.ls9f{letter-spacing:0.001791pt;}
.ls9b{letter-spacing:0.001851pt;}
.ls20{letter-spacing:0.002140pt;}
.ls2c{letter-spacing:0.002301pt;}
.ls38{letter-spacing:0.002731pt;}
.lsc7{letter-spacing:0.003246pt;}
.ls98{letter-spacing:0.003320pt;}
.ls9d{letter-spacing:0.004071pt;}
.lsb8{letter-spacing:0.004132pt;}
.lsc6{letter-spacing:0.005138pt;}
.lsc5{letter-spacing:0.005844pt;}
.ls8e{letter-spacing:0.006460pt;}
.lsa4{letter-spacing:0.007196pt;}
.ls2b{letter-spacing:0.009218pt;}
.lsb6{letter-spacing:0.009647pt;}
.ls87{letter-spacing:0.013724pt;}
.lsaf{letter-spacing:0.015760pt;}
.ls14{letter-spacing:0.017630pt;}
.ls81{letter-spacing:0.020808pt;}
.ls5e{letter-spacing:0.021647pt;}
.lsb4{letter-spacing:0.053134pt;}
.ls66{letter-spacing:1.232709pt;}
.ls84{letter-spacing:1.428132pt;}
.ls89{letter-spacing:1.433465pt;}
.ls79{letter-spacing:1.434614pt;}
.ls8b{letter-spacing:1.440892pt;}
.ls7c{letter-spacing:1.487748pt;}
.ls6{letter-spacing:1.912819pt;}
.ls68{letter-spacing:2.082853pt;}
.ls64{letter-spacing:2.108364pt;}
.ls3d{letter-spacing:2.142370pt;}
.ls9a{letter-spacing:2.507925pt;}
.ls1e{letter-spacing:2.606231pt;}
.ls0{letter-spacing:2.635446pt;}
.ls88{letter-spacing:2.653542pt;}
.ls1d{letter-spacing:2.654545pt;}
.ls19{letter-spacing:2.656501pt;}
.lsb{letter-spacing:2.656693pt;}
.lsad{letter-spacing:2.657253pt;}
.lsce{letter-spacing:2.658245pt;}
.ls54{letter-spacing:3.028630pt;}
.ls78{letter-spacing:3.081764pt;}
.ls6a{letter-spacing:3.273054pt;}
.ls80{letter-spacing:3.803181pt;}
.ls6d{letter-spacing:3.995677pt;}
.ls85{letter-spacing:4.087578pt;}
.ls52{letter-spacing:4.303843pt;}
.lsac{letter-spacing:4.315150pt;}
.ls2e{letter-spacing:4.755075pt;}
.ls2f{letter-spacing:5.848294pt;}
.ls5a{letter-spacing:6.374007pt;}
.lsa9{letter-spacing:6.377067pt;}
.ls32{letter-spacing:6.379340pt;}
.ls28{letter-spacing:6.896479pt;}
.ls6e{letter-spacing:6.936553pt;}
.ls6b{letter-spacing:6.944064pt;}
.ls36{letter-spacing:6.945584pt;}
.ls67{letter-spacing:6.947764pt;}
.ls5c{letter-spacing:7.105584pt;}
.ls34{letter-spacing:7.286917pt;}
.ls3{letter-spacing:7.385607pt;}
.lsaa{letter-spacing:8.200294pt;}
.ls7{letter-spacing:8.216981pt;}
.ls7b{letter-spacing:8.320598pt;}
.lscb{letter-spacing:8.322507pt;}
.lscc{letter-spacing:8.529924pt;}
.ls3c{letter-spacing:9.451387pt;}
.ls63{letter-spacing:9.611387pt;}
.ls9{letter-spacing:9.723498pt;}
.ls33{letter-spacing:9.792720pt;}
.ls5b{letter-spacing:9.798053pt;}
.lsca{letter-spacing:9.808682pt;}
.ls3b{letter-spacing:10.031699pt;}
.ls4f{letter-spacing:10.756564pt;}
.ls42{letter-spacing:10.855578pt;}
.ls2a{letter-spacing:11.795718pt;}
.ls18{letter-spacing:12.327057pt;}
.lsc8{letter-spacing:12.476911pt;}
.ls3a{letter-spacing:12.497117pt;}
.lsae{letter-spacing:12.694927pt;}
.ls26{letter-spacing:13.531145pt;}
.ls75{letter-spacing:13.708538pt;}
.ls17{letter-spacing:14.239876pt;}
.lsc4{letter-spacing:14.293010pt;}
.lsc3{letter-spacing:14.346144pt;}
.ls47{letter-spacing:14.452412pt;}
.ls8c{letter-spacing:14.460911pt;}
.ls86{letter-spacing:14.462544pt;}
.ls25{letter-spacing:14.464689pt;}
.ls82{letter-spacing:14.466876pt;}
.lsba{letter-spacing:14.574400pt;}
.ls27{letter-spacing:14.679286pt;}
.ls5{letter-spacing:14.718081pt;}
.ls29{letter-spacing:14.771215pt;}
.ls8{letter-spacing:14.877483pt;}
.ls97{letter-spacing:14.877520pt;}
.ls96{letter-spacing:15.047549pt;}
.lsb5{letter-spacing:15.073069pt;}
.lsb7{letter-spacing:15.080848pt;}
.ls99{letter-spacing:15.200473pt;}
.ls9e{letter-spacing:15.200945pt;}
.ls9c{letter-spacing:15.205828pt;}
.ls8a{letter-spacing:15.895578pt;}
.lsbd{letter-spacing:16.201067pt;}
.ls62{letter-spacing:16.413383pt;}
.ls4d{letter-spacing:16.473841pt;}
.lsc1{letter-spacing:16.971973pt;}
.ls7a{letter-spacing:17.376223pt;}
.lsb9{letter-spacing:17.414402pt;}
.lsbc{letter-spacing:17.416848pt;}
.ls2d{letter-spacing:17.419356pt;}
.lsa7{letter-spacing:17.419735pt;}
.ls23{letter-spacing:17.799845pt;}
.ls2{letter-spacing:18.012381pt;}
.lsbf{letter-spacing:18.163923pt;}
.ls53{letter-spacing:18.224916pt;}
.ls1{letter-spacing:18.384318pt;}
.ls55{letter-spacing:18.543719pt;}
.ls7d{letter-spacing:18.662798pt;}
.ls21{letter-spacing:18.672689pt;}
.ls16{letter-spacing:18.748911pt;}
.ls92{letter-spacing:18.968790pt;}
.ls1a{letter-spacing:19.340727pt;}
.ls43{letter-spacing:19.600909pt;}
.ls58{letter-spacing:19.712665pt;}
.ls91{letter-spacing:19.776515pt;}
.ls11{letter-spacing:19.925200pt;}
.ls70{letter-spacing:20.011114pt;}
.ls76{letter-spacing:20.011783pt;}
.lsbb{letter-spacing:20.084602pt;}
.ls57{letter-spacing:20.137735pt;}
.lsa{letter-spacing:20.359146pt;}
.ls4c{letter-spacing:20.562806pt;}
.ls24{letter-spacing:20.608107pt;}
.ls50{letter-spacing:20.608479pt;}
.ls94{letter-spacing:20.925812pt;}
.lsa8{letter-spacing:21.136479pt;}
.lsf{letter-spacing:21.253547pt;}
.ls56{letter-spacing:21.359814pt;}
.ls1b{letter-spacing:21.527578pt;}
.lsa3{letter-spacing:21.622242pt;}
.ls73{letter-spacing:21.651561pt;}
.lse{letter-spacing:21.678618pt;}
.ls4{letter-spacing:22.156822pt;}
.ls7e{letter-spacing:22.400515pt;}
.ls8d{letter-spacing:22.585211pt;}
.ls8f{letter-spacing:22.589542pt;}
.ls59{letter-spacing:22.900697pt;}
.lsa2{letter-spacing:22.984279pt;}
.ls93{letter-spacing:23.191578pt;}
.lsa0{letter-spacing:23.272848pt;}
.ls4b{letter-spacing:23.378901pt;}
.ls22{letter-spacing:23.404619pt;}
.lscd{letter-spacing:23.910240pt;}
.lsa5{letter-spacing:24.235735pt;}
.ls12{letter-spacing:24.282177pt;}
.ls90{letter-spacing:24.439578pt;}
.lsa1{letter-spacing:24.718181pt;}
.ls4a{letter-spacing:24.972917pt;}
.ls13{letter-spacing:25.570245pt;}
.ls15{letter-spacing:25.575578pt;}
.ls3f{letter-spacing:25.716791pt;}
.ls95{letter-spacing:27.496479pt;}
.ls48{letter-spacing:27.555362pt;}
.lsd{letter-spacing:29.064225pt;}
.ls1f{letter-spacing:29.849212pt;}
.lsab{letter-spacing:30.880238pt;}
.ls10{letter-spacing:31.880320pt;}
.lsb3{letter-spacing:32.252257pt;}
.lsb1{letter-spacing:33.049265pt;}
.lsc{letter-spacing:33.952541pt;}
.lsb2{letter-spacing:34.505630pt;}
.ls60{letter-spacing:48.932711pt;}
.ls39{letter-spacing:48.944594pt;}
.lsbe{letter-spacing:52.283856pt;}
.ls41{letter-spacing:53.133867pt;}
.ls31{letter-spacing:53.134000pt;}
.ls83{letter-spacing:53.637812pt;}
.ls5d{letter-spacing:54.366709pt;}
.ls65{letter-spacing:54.409216pt;}
.ls40{letter-spacing:54.621615pt;}
.ls35{letter-spacing:55.216853pt;}
.ls30{letter-spacing:55.514403pt;}
.ls72{letter-spacing:55.790560pt;}
.ls5f{letter-spacing:56.407054pt;}
.ls45{letter-spacing:57.437710pt;}
.ls1c{letter-spacing:64.853812pt;}
.ls37{letter-spacing:68.145290pt;}
.ls46{letter-spacing:74.163252pt;}
.ls74{letter-spacing:328.473564pt;}
.ls77{letter-spacing:333.202478pt;}
.ls6c{letter-spacing:335.339301pt;}
.ls69{letter-spacing:337.379646pt;}
.ls71{letter-spacing:343.882385pt;}
.ls6f{letter-spacing:347.028781pt;}
.ls49{letter-spacing:398.344598pt;}
.lsc2{letter-spacing:406.793904pt;}
.lsc0{letter-spacing:437.909174pt;}
.ls44{letter-spacing:439.682747pt;}
.lsb0{letter-spacing:524.241594pt;}
.ls51{letter-spacing:525.531356pt;}
.ls4e{letter-spacing:525.740619pt;}
.wsa8{word-spacing:-45.163900pt;}
.ws53{word-spacing:-41.338148pt;}
.ws43{word-spacing:-35.132201pt;}
.ws28{word-spacing:-34.611401pt;}
.ws46{word-spacing:-29.521250pt;}
.ws3a{word-spacing:-28.118362pt;}
.wsc7{word-spacing:-26.317174pt;}
.wsc8{word-spacing:-26.059349pt;}
.ws74{word-spacing:-25.791179pt;}
.ws80{word-spacing:-25.738045pt;}
.ws99{word-spacing:-25.718107pt;}
.ws108{word-spacing:-21.292085pt;}
.ws29{word-spacing:-20.902863pt;}
.wsf7{word-spacing:-19.489551pt;}
.ws5b{word-spacing:-17.429387pt;}
.ws5a{word-spacing:-17.234507pt;}
.ws5c{word-spacing:-15.942599pt;}
.ws6e{word-spacing:-14.708552pt;}
.ws6f{word-spacing:-14.703218pt;}
.wsf9{word-spacing:-14.643730pt;}
.ws1{word-spacing:-14.611867pt;}
.ws5{word-spacing:-13.283467pt;}
.ws12{word-spacing:-13.262246pt;}
.ws4a{word-spacing:-10.626800pt;}
.ws6d{word-spacing:-10.609830pt;}
.ws9c{word-spacing:-9.368992pt;}
.ws10a{word-spacing:-9.363659pt;}
.ws49{word-spacing:-8.501467pt;}
.ws42{word-spacing:-6.866384pt;}
.ws9b{word-spacing:-5.528992pt;}
.wsd2{word-spacing:-5.313387pt;}
.ws7e{word-spacing:-5.105478pt;}
.wsed{word-spacing:-4.871862pt;}
.wsef{word-spacing:-4.858426pt;}
.ws54{word-spacing:-2.342306pt;}
.wse5{word-spacing:-0.956410pt;}
.wsdf{word-spacing:-0.903276pt;}
.wsc6{word-spacing:-0.850142pt;}
.ws88{word-spacing:-0.797008pt;}
.ws10e{word-spacing:-0.743874pt;}
.ws8b{word-spacing:-0.478205pt;}
.wsf5{word-spacing:-0.371937pt;}
.wse4{word-spacing:-0.265669pt;}
.ws101{word-spacing:-0.159402pt;}
.wsdc{word-spacing:-0.106268pt;}
.ws37{word-spacing:-0.053134pt;}
.ws6{word-spacing:-0.047821pt;}
.ws22{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.080011pt;}
.ws12f{word-spacing:0.212536pt;}
.ws10c{word-spacing:0.323915pt;}
.wsf0{word-spacing:0.371937pt;}
.wsfd{word-spacing:0.425071pt;}
.ws10d{word-spacing:0.478205pt;}
.ws26{word-spacing:0.637606pt;}
.wsd6{word-spacing:0.690740pt;}
.ws20{word-spacing:0.956410pt;}
.wsfe{word-spacing:1.009543pt;}
.wsee{word-spacing:1.057897pt;}
.wsff{word-spacing:1.062677pt;}
.wsc1{word-spacing:1.168945pt;}
.wse6{word-spacing:1.222079pt;}
.ws25{word-spacing:1.381481pt;}
.ws62{word-spacing:1.434614pt;}
.wsc3{word-spacing:1.594016pt;}
.ws12c{word-spacing:1.657781pt;}
.ws120{word-spacing:1.827810pt;}
.ws1f{word-spacing:1.859685pt;}
.wse3{word-spacing:1.965953pt;}
.ws23{word-spacing:2.072221pt;}
.wsa{word-spacing:2.151936pt;}
.ws122{word-spacing:2.167867pt;}
.ws40{word-spacing:2.178489pt;}
.ws66{word-spacing:2.231622pt;}
.ws7b{word-spacing:2.284756pt;}
.ws68{word-spacing:2.337890pt;}
.wsc5{word-spacing:2.391024pt;}
.wsf3{word-spacing:2.603559pt;}
.ws3d{word-spacing:2.709827pt;}
.wsb{word-spacing:2.725786pt;}
.ws15{word-spacing:2.869229pt;}
.wscb{word-spacing:2.922363pt;}
.ws33{word-spacing:2.998982pt;}
.ws3f{word-spacing:3.081764pt;}
.wsa6{word-spacing:3.134898pt;}
.wseb{word-spacing:3.188032pt;}
.ws11f{word-spacing:3.230547pt;}
.ws115{word-spacing:3.347434pt;}
.wsf4{word-spacing:3.400567pt;}
.ws100{word-spacing:3.453701pt;}
.ws8a{word-spacing:3.559969pt;}
.wsa2{word-spacing:3.613103pt;}
.ws5f{word-spacing:3.666237pt;}
.ws63{word-spacing:3.772505pt;}
.ws116{word-spacing:3.825638pt;}
.ws8{word-spacing:3.873485pt;}
.ws75{word-spacing:3.878772pt;}
.ws94{word-spacing:3.879950pt;}
.wsdd{word-spacing:4.144442pt;}
.ws4b{word-spacing:4.216727pt;}
.ws52{word-spacing:4.250709pt;}
.ws48{word-spacing:4.250720pt;}
.wsa4{word-spacing:4.463245pt;}
.ws1e{word-spacing:4.569513pt;}
.ws2c{word-spacing:4.622646pt;}
.wsb0{word-spacing:4.675780pt;}
.wse7{word-spacing:4.782048pt;}
.ws57{word-spacing:4.835182pt;}
.ws1b{word-spacing:4.888316pt;}
.ws5d{word-spacing:4.994583pt;}
.ws67{word-spacing:5.100851pt;}
.ws103{word-spacing:5.153985pt;}
.wsb3{word-spacing:5.207119pt;}
.ws112{word-spacing:5.260253pt;}
.wscd{word-spacing:5.270893pt;}
.ws4{word-spacing:5.313387pt;}
.ws21{word-spacing:5.366521pt;}
.ws7{word-spacing:5.403750pt;}
.wsd9{word-spacing:5.525922pt;}
.ws18{word-spacing:5.632190pt;}
.wsf2{word-spacing:5.685324pt;}
.ws9{word-spacing:5.690675pt;}
.wse1{word-spacing:5.738458pt;}
.wsc4{word-spacing:5.791591pt;}
.ws3{word-spacing:5.844747pt;}
.wsad{word-spacing:5.897859pt;}
.wsec{word-spacing:5.950993pt;}
.wse{word-spacing:5.977600pt;}
.ws38{word-spacing:6.004127pt;}
.ws35{word-spacing:6.057261pt;}
.ws97{word-spacing:6.110395pt;}
.wsda{word-spacing:6.163529pt;}
.ws91{word-spacing:6.216662pt;}
.ws1d{word-spacing:6.269796pt;}
.ws72{word-spacing:6.322930pt;}
.wsa5{word-spacing:6.376064pt;}
.ws111{word-spacing:6.482332pt;}
.wse2{word-spacing:6.588599pt;}
.ws8d{word-spacing:6.588616pt;}
.ws8c{word-spacing:6.631123pt;}
.ws86{word-spacing:6.641733pt;}
.ws32{word-spacing:6.694867pt;}
.ws2e{word-spacing:6.801135pt;}
.wsb4{word-spacing:6.854269pt;}
.ws16{word-spacing:6.960537pt;}
.ws83{word-spacing:7.013670pt;}
.ws96{word-spacing:7.066804pt;}
.ws60{word-spacing:7.119938pt;}
.wsb5{word-spacing:7.173072pt;}
.ws106{word-spacing:7.177248pt;}
.ws3e{word-spacing:7.226206pt;}
.ws10f{word-spacing:7.279340pt;}
.ws93{word-spacing:7.332474pt;}
.wsae{word-spacing:7.385607pt;}
.ws1a{word-spacing:7.438741pt;}
.ws121{word-spacing:7.523774pt;}
.ws39{word-spacing:7.545009pt;}
.wsc9{word-spacing:7.598143pt;}
.ws92{word-spacing:7.704411pt;}
.wsc2{word-spacing:7.810678pt;}
.ws82{word-spacing:7.863812pt;}
.ws34{word-spacing:7.916946pt;}
.ws10b{word-spacing:7.970080pt;}
.ws19{word-spacing:8.023214pt;}
.ws17{word-spacing:8.129482pt;}
.ws13{word-spacing:8.182615pt;}
.ws102{word-spacing:8.235749pt;}
.ws98{word-spacing:8.288883pt;}
.ws59{word-spacing:8.342017pt;}
.ws107{word-spacing:8.395151pt;}
.ws87{word-spacing:8.501419pt;}
.wsd3{word-spacing:8.554553pt;}
.ws58{word-spacing:8.767088pt;}
.ws3b{word-spacing:8.820222pt;}
.ws11e{word-spacing:8.841498pt;}
.ws14{word-spacing:8.873356pt;}
.ws41{word-spacing:9.085891pt;}
.wsde{word-spacing:9.192159pt;}
.ws114{word-spacing:9.245293pt;}
.ws12e{word-spacing:9.266570pt;}
.wsdb{word-spacing:9.564096pt;}
.ws2f{word-spacing:9.617230pt;}
.wsb2{word-spacing:9.882899pt;}
.ws1c{word-spacing:9.936033pt;}
.wsb1{word-spacing:9.989167pt;}
.ws118{word-spacing:10.095435pt;}
.wsa3{word-spacing:10.201702pt;}
.ws9e{word-spacing:10.307970pt;}
.ws76{word-spacing:10.361104pt;}
.ws105{word-spacing:10.467372pt;}
.ws110{word-spacing:10.573639pt;}
.wsa1{word-spacing:10.626773pt;}
.ws24{word-spacing:10.628825pt;}
.wsc{word-spacing:10.759680pt;}
.wsaf{word-spacing:10.786175pt;}
.ws71{word-spacing:10.839309pt;}
.ws11b{word-spacing:10.998710pt;}
.wse0{word-spacing:11.051844pt;}
.ws12d{word-spacing:11.051872pt;}
.wsb6{word-spacing:11.158112pt;}
.ws3c{word-spacing:11.211246pt;}
.ws113{word-spacing:11.370647pt;}
.ws27{word-spacing:11.636317pt;}
.wsc0{word-spacing:11.689451pt;}
.ws79{word-spacing:11.742585pt;}
.ws9f{word-spacing:11.901986pt;}
.ws50{word-spacing:12.085445pt;}
.wsea{word-spacing:12.167655pt;}
.wsd7{word-spacing:12.220789pt;}
.ws4e{word-spacing:12.273923pt;}
.ws65{word-spacing:12.299407pt;}
.ws8e{word-spacing:12.497117pt;}
.ws81{word-spacing:12.539593pt;}
.wsfa{word-spacing:12.645860pt;}
.ws6b{word-spacing:12.664718pt;}
.wsfc{word-spacing:12.698994pt;}
.ws4d{word-spacing:12.752128pt;}
.ws0{word-spacing:12.752160pt;}
.ws2{word-spacing:12.882718pt;}
.ws2d{word-spacing:12.911530pt;}
.ws104{word-spacing:12.964663pt;}
.ws2b{word-spacing:13.124065pt;}
.ws56{word-spacing:13.177199pt;}
.ws95{word-spacing:13.283467pt;}
.ws64{word-spacing:13.585982pt;}
.ws11c{word-spacing:13.814805pt;}
.ws30{word-spacing:13.841192pt;}
.wsfb{word-spacing:13.921073pt;}
.wsa7{word-spacing:14.346144pt;}
.wsbf{word-spacing:14.558679pt;}
.ws84{word-spacing:14.664947pt;}
.ws31{word-spacing:14.718081pt;}
.wscf{word-spacing:14.771215pt;}
.ws119{word-spacing:14.877483pt;}
.ws78{word-spacing:14.930617pt;}
.ws4f{word-spacing:14.983750pt;}
.wse9{word-spacing:15.036884pt;}
.wsd0{word-spacing:15.090018pt;}
.wsa0{word-spacing:15.196286pt;}
.wsaa{word-spacing:15.302554pt;}
.ws11d{word-spacing:15.408821pt;}
.wscc{word-spacing:15.461955pt;}
.wsd8{word-spacing:15.515089pt;}
.wsd{word-spacing:15.589581pt;}
.ws132{word-spacing:15.600142pt;}
.ws11{word-spacing:15.940160pt;}
.wsab{word-spacing:15.993294pt;}
.ws36{word-spacing:16.046428pt;}
.wsce{word-spacing:16.152695pt;}
.wsd5{word-spacing:16.205829pt;}
.ws90{word-spacing:16.312097pt;}
.wsd4{word-spacing:17.055971pt;}
.wsac{word-spacing:17.162239pt;}
.ws10{word-spacing:17.167667pt;}
.ws7a{word-spacing:17.374774pt;}
.wsf1{word-spacing:17.587310pt;}
.ws2a{word-spacing:17.640444pt;}
.ws11a{word-spacing:17.746711pt;}
.ws117{word-spacing:17.959247pt;}
.wsd1{word-spacing:18.171782pt;}
.ws89{word-spacing:18.224916pt;}
.ws77{word-spacing:18.437452pt;}
.ws8f{word-spacing:18.915657pt;}
.wsb9{word-spacing:18.968790pt;}
.wsb7{word-spacing:19.075058pt;}
.ws61{word-spacing:19.500129pt;}
.wse8{word-spacing:19.712665pt;}
.wsb8{word-spacing:19.818932pt;}
.ws51{word-spacing:19.983703pt;}
.ws12a{word-spacing:21.211093pt;}
.wsbb{word-spacing:21.412948pt;}
.wsca{word-spacing:22.209956pt;}
.ws4c{word-spacing:22.847563pt;}
.ws138{word-spacing:23.463974pt;}
.wsbc{word-spacing:24.813516pt;}
.ws123{word-spacing:24.994234pt;}
.ws136{word-spacing:25.036741pt;}
.wsbe{word-spacing:25.079185pt;}
.ws126{word-spacing:26.014406pt;}
.ws13b{word-spacing:27.077086pt;}
.ws7c{word-spacing:27.257674pt;}
.ws13a{word-spacing:27.289622pt;}
.ws73{word-spacing:27.672455pt;}
.ws7f{word-spacing:27.735878pt;}
.wsba{word-spacing:28.639154pt;}
.wsf{word-spacing:29.075046pt;}
.wsbd{word-spacing:29.223627pt;}
.ws128{word-spacing:30.732706pt;}
.ws55{word-spacing:32.305391pt;}
.ws137{word-spacing:32.390486pt;}
.ws139{word-spacing:34.133282pt;}
.ws7d{word-spacing:35.334021pt;}
.ws12b{word-spacing:35.536019pt;}
.ws127{word-spacing:38.426509pt;}
.ws129{word-spacing:42.039621pt;}
.ws134{word-spacing:43.867430pt;}
.ws130{word-spacing:46.800427pt;}
.ws131{word-spacing:47.905614pt;}
.ws133{word-spacing:51.603741pt;}
.ws45{word-spacing:53.091493pt;}
.ws135{word-spacing:53.176507pt;}
.ws70{word-spacing:55.758730pt;}
.wsf6{word-spacing:56.905598pt;}
.wsf8{word-spacing:56.907192pt;}
.ws124{word-spacing:64.228379pt;}
.ws125{word-spacing:85.226936pt;}
.ws85{word-spacing:262.658317pt;}
.ws9d{word-spacing:274.648957pt;}
.ws6c{word-spacing:328.349532pt;}
.ws47{word-spacing:344.717532pt;}
.wsa9{word-spacing:347.688199pt;}
.ws109{word-spacing:363.393675pt;}
.ws9a{word-spacing:392.584887pt;}
.ws44{word-spacing:425.560199pt;}
.ws6a{word-spacing:470.819384pt;}
.ws69{word-spacing:479.933532pt;}
._7{margin-left:-25.183211pt;}
._23{margin-left:-21.721179pt;}
._1b{margin-left:-6.692463pt;}
._1e{margin-left:-5.579056pt;}
._3{margin-left:-4.399514pt;}
._0{margin-left:-3.188040pt;}
._b{margin-left:-2.133548pt;}
._1{margin-left:-1.171349pt;}
._f{width:1.526028pt;}
._4{width:2.656693pt;}
._1f{width:3.970749pt;}
._c{width:5.796426pt;}
._12{width:8.274548pt;}
._22{width:11.476915pt;}
._2{width:13.772390pt;}
._15{width:14.718081pt;}
._d{width:16.985809pt;}
._17{width:18.180476pt;}
._18{width:19.128192pt;}
._6{width:21.756380pt;}
._5{width:23.536061pt;}
._13{width:25.274905pt;}
._a{width:26.566933pt;}
._11{width:27.549642pt;}
._21{width:28.590829pt;}
._1d{width:29.755040pt;}
._10{width:31.253209pt;}
._14{width:34.107653pt;}
._9{width:35.071366pt;}
._24{width:39.021610pt;}
._1a{width:41.019345pt;}
._25{width:42.515388pt;}
._19{width:47.714212pt;}
._27{width:61.337890pt;}
._26{width:69.167402pt;}
._20{width:215.510963pt;}
._1c{width:226.977281pt;}
._8{width:228.423479pt;}
._e{width:526.536686pt;}
._16{width:559.649795pt;}
.fs7{font-size:26.566933pt;}
.fs8{font-size:31.880533pt;}
.fs9{font-size:34.005867pt;}
.fs6{font-size:37.193600pt;}
.fs2{font-size:40.913067pt;}
.fs5{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y196{bottom:100.740000pt;}
.y1e8{bottom:100.741333pt;}
.yc8{bottom:102.806667pt;}
.y124{bottom:103.041333pt;}
.yc7{bottom:112.105333pt;}
.y1e7{bottom:112.696000pt;}
.yc6{bottom:114.762667pt;}
.y5c{bottom:114.821333pt;}
.y177{bottom:116.192000pt;}
.y99{bottom:116.574667pt;}
.y195{bottom:116.680000pt;}
.y30{bottom:124.470667pt;}
.y1e6{bottom:124.650667pt;}
.y5b{bottom:126.776000pt;}
.y176{bottom:128.146667pt;}
.y98{bottom:128.529333pt;}
.y1e5{bottom:136.606667pt;}
.y2f{bottom:140.412000pt;}
.y97{bottom:140.485333pt;}
.y175{bottom:142.758667pt;}
.y102{bottom:142.841333pt;}
.y194{bottom:143.749333pt;}
.y58{bottom:144.908000pt;}
.y193{bottom:147.106667pt;}
.y1e4{bottom:148.561333pt;}
.y100{bottom:150.801333pt;}
.y5a{bottom:152.868000pt;}
.yff{bottom:153.488000pt;}
.y59{bottom:155.554667pt;}
.y2e{bottom:156.352000pt;}
.y101{bottom:158.201333pt;}
.y57{bottom:160.268000pt;}
.y1e3{bottom:160.516000pt;}
.y96{bottom:161.406667pt;}
.y174{bottom:163.680000pt;}
.y95{bottom:163.856000pt;}
.y192{bottom:164.382667pt;}
.y173{bottom:166.130667pt;}
.y191{bottom:167.740000pt;}
.y2d{bottom:172.292000pt;}
.y1e2{bottom:172.645333pt;}
.yfe{bottom:174.558667pt;}
.y2c{bottom:175.649333pt;}
.y56{bottom:176.034667pt;}
.yfd{bottom:177.244000pt;}
.y94{bottom:178.353333pt;}
.y172{bottom:180.848000pt;}
.y93{bottom:181.040000pt;}
.y171{bottom:183.298667pt;}
.y55{bottom:183.994667pt;}
.y1e1{bottom:184.601333pt;}
.y54{bottom:186.681333pt;}
.y190{bottom:190.742667pt;}
.yfc{bottom:190.914667pt;}
.yfb{bottom:193.601333pt;}
.y92{bottom:195.300000pt;}
.y2b{bottom:195.877333pt;}
.y1e0{bottom:196.556000pt;}
.y91{bottom:197.986667pt;}
.y53{bottom:201.841333pt;}
.y52{bottom:204.526667pt;}
.yfa{bottom:205.205333pt;}
.y18f{bottom:206.682667pt;}
.y1df{bottom:208.510667pt;}
.y2a{bottom:211.817333pt;}
.yf8{bottom:213.165333pt;}
.yf7{bottom:215.852000pt;}
.y51{bottom:216.130667pt;}
.y1de{bottom:220.466667pt;}
.yf9{bottom:220.565333pt;}
.y18e{bottom:222.622667pt;}
.y4f{bottom:224.092000pt;}
.y4e{bottom:226.778667pt;}
.y170{bottom:227.262667pt;}
.y29{bottom:227.757333pt;}
.y50{bottom:231.492000pt;}
.y1dd{bottom:232.594667pt;}
.y123{bottom:234.628000pt;}
.y18d{bottom:238.564000pt;}
.y16f{bottom:243.204000pt;}
.y28{bottom:243.698667pt;}
.y90{bottom:244.352000pt;}
.y1dc{bottom:244.550667pt;}
.y122{bottom:251.237333pt;}
.y18c{bottom:254.504000pt;}
.y8f{bottom:256.306667pt;}
.y1db{bottom:256.505333pt;}
.y16e{bottom:259.144000pt;}
.y27{bottom:259.638667pt;}
.yf6{bottom:266.777333pt;}
.y1da{bottom:268.461333pt;}
.y121{bottom:269.413333pt;}
.y18b{bottom:270.444000pt;}
.y8e{bottom:272.372000pt;}
.y4d{bottom:274.581333pt;}
.y16d{bottom:275.084000pt;}
.y26{bottom:275.578667pt;}
.y8c{bottom:280.332000pt;}
.y1d9{bottom:280.589333pt;}
.yf5{bottom:282.718667pt;}
.y8b{bottom:283.018667pt;}
.y120{bottom:285.354667pt;}
.y18a{bottom:286.384000pt;}
.y8d{bottom:287.732000pt;}
.y16c{bottom:291.024000pt;}
.y1d8{bottom:292.545333pt;}
.y4c{bottom:295.214667pt;}
.y25{bottom:295.354667pt;}
.y4b{bottom:298.256000pt;}
.yf4{bottom:298.658667pt;}
.y11f{bottom:301.294667pt;}
.yc5{bottom:301.909333pt;}
.y189{bottom:302.324000pt;}
.y8a{bottom:304.088000pt;}
.y1d7{bottom:304.500000pt;}
.y89{bottom:306.774667pt;}
.y16b{bottom:306.964000pt;}
.yf3{bottom:314.598667pt;}
.y1d6{bottom:316.629333pt;}
.y11e{bottom:317.234667pt;}
.yc4{bottom:317.850667pt;}
.y4a{bottom:318.166667pt;}
.y24{bottom:318.169333pt;}
.y188{bottom:318.264000pt;}
.y88{bottom:320.265333pt;}
.y16a{bottom:322.904000pt;}
.y87{bottom:322.950667pt;}
.y1d5{bottom:328.584000pt;}
.yf2{bottom:330.538667pt;}
.y11d{bottom:333.174667pt;}
.yc3{bottom:333.790667pt;}
.y49{bottom:334.106667pt;}
.y23{bottom:334.109333pt;}
.y187{bottom:334.205333pt;}
.y86{bottom:334.554667pt;}
.y169{bottom:338.845333pt;}
.y1d4{bottom:340.538667pt;}
.y84{bottom:342.516000pt;}
.y83{bottom:345.201333pt;}
.yf1{bottom:346.478667pt;}
.y11c{bottom:349.114667pt;}
.yc2{bottom:349.730667pt;}
.y85{bottom:349.916000pt;}
.y48{bottom:350.046667pt;}
.y22{bottom:350.049333pt;}
.y186{bottom:350.145333pt;}
.y1d3{bottom:352.494667pt;}
.y168{bottom:354.785333pt;}
.yf0{bottom:362.420000pt;}
.y1d2{bottom:364.624000pt;}
.yc1{bottom:365.670667pt;}
.y47{bottom:365.988000pt;}
.y21{bottom:365.989333pt;}
.y185{bottom:366.085333pt;}
.y11b{bottom:369.109333pt;}
.y167{bottom:370.725333pt;}
.y1d1{bottom:376.752000pt;}
.yef{bottom:378.360000pt;}
.yc0{bottom:381.610667pt;}
.y46{bottom:381.928000pt;}
.y20{bottom:381.929333pt;}
.y184{bottom:382.025333pt;}
.y141{bottom:384.893333pt;}
.y166{bottom:386.665333pt;}
.y1b7{bottom:386.696000pt;}
.y157{bottom:387.233333pt;}
.y1d0{bottom:388.708000pt;}
.y11a{bottom:393.233333pt;}
.yee{bottom:394.300000pt;}
.y82{bottom:397.270667pt;}
.ybf{bottom:397.552000pt;}
.y45{bottom:397.868000pt;}
.y1f{bottom:397.869333pt;}
.y183{bottom:397.965333pt;}
.y1cf{bottom:400.662667pt;}
.y140{bottom:400.833333pt;}
.y1b6{bottom:402.637333pt;}
.y156{bottom:403.173333pt;}
.y165{bottom:404.670667pt;}
.y119{bottom:409.173333pt;}
.yed{bottom:410.240000pt;}
.y1ce{bottom:412.617333pt;}
.y81{bottom:413.210667pt;}
.ybe{bottom:413.492000pt;}
.y1e{bottom:413.810667pt;}
.y182{bottom:413.905333pt;}
.y44{bottom:414.200000pt;}
.y13f{bottom:416.773333pt;}
.y1b5{bottom:418.577333pt;}
.y155{bottom:419.113333pt;}
.y164{bottom:420.612000pt;}
.y1cd{bottom:424.573333pt;}
.y118{bottom:425.113333pt;}
.yec{bottom:426.180000pt;}
.y80{bottom:429.150667pt;}
.ybd{bottom:429.432000pt;}
.y1d{bottom:429.750667pt;}
.y181{bottom:429.846667pt;}
.y43{bottom:430.140000pt;}
.y13e{bottom:432.713333pt;}
.y1b4{bottom:434.517333pt;}
.y154{bottom:435.054667pt;}
.y163{bottom:436.552000pt;}
.y1cc{bottom:436.702667pt;}
.y117{bottom:441.053333pt;}
.yeb{bottom:442.120000pt;}
.y7f{bottom:445.090667pt;}
.ybc{bottom:445.372000pt;}
.y1c{bottom:445.690667pt;}
.y180{bottom:445.786667pt;}
.y42{bottom:446.081333pt;}
.y13d{bottom:448.653333pt;}
.y1cb{bottom:448.657333pt;}
.y1b3{bottom:450.457333pt;}
.y153{bottom:450.994667pt;}
.y162{bottom:452.492000pt;}
.y116{bottom:456.993333pt;}
.yea{bottom:458.061333pt;}
.y1ca{bottom:460.612000pt;}
.y7e{bottom:461.030667pt;}
.ybb{bottom:461.312000pt;}
.y1b{bottom:461.630667pt;}
.y17f{bottom:461.726667pt;}
.y41{bottom:462.021333pt;}
.y13c{bottom:464.593333pt;}
.y1b2{bottom:466.397333pt;}
.y152{bottom:466.934667pt;}
.y161{bottom:468.432000pt;}
.y1c9{bottom:472.568000pt;}
.y115{bottom:472.934667pt;}
.ye9{bottom:474.001333pt;}
.y7d{bottom:476.972000pt;}
.yba{bottom:477.252000pt;}
.y1a{bottom:477.570667pt;}
.y17e{bottom:477.666667pt;}
.y13b{bottom:480.534667pt;}
.y1b1{bottom:482.337333pt;}
.y151{bottom:482.874667pt;}
.y160{bottom:484.372000pt;}
.y1c8{bottom:484.696000pt;}
.y114{bottom:488.744000pt;}
.y7c{bottom:492.912000pt;}
.yb9{bottom:493.193333pt;}
.y40{bottom:493.461333pt;}
.y19{bottom:493.512000pt;}
.y17d{bottom:493.606667pt;}
.ye8{bottom:494.065333pt;}
.y1c7{bottom:496.652000pt;}
.y1b0{bottom:498.278667pt;}
.y150{bottom:498.814667pt;}
.y15f{bottom:500.312000pt;}
.y13a{bottom:500.545333pt;}
.y113{bottom:504.684000pt;}
.y3f{bottom:504.821333pt;}
.y1c6{bottom:508.606667pt;}
.y7b{bottom:509.040000pt;}
.y3e{bottom:509.401333pt;}
.y18{bottom:509.452000pt;}
.yb8{bottom:510.502667pt;}
.yb7{bottom:514.044000pt;}
.y1af{bottom:514.218667pt;}
.y14f{bottom:514.754667pt;}
.y17c{bottom:515.693333pt;}
.y15e{bottom:516.253333pt;}
.ye7{bottom:518.610667pt;}
.y112{bottom:520.624000pt;}
.y1c5{bottom:520.736000pt;}
.yb5{bottom:523.156000pt;}
.y139{bottom:524.774667pt;}
.y7a{bottom:524.980000pt;}
.y17{bottom:525.042667pt;}
.y3d{bottom:525.341333pt;}
.yb6{bottom:528.845333pt;}
.y1ae{bottom:530.158667pt;}
.y1c4{bottom:532.690667pt;}
.y15d{bottom:534.258667pt;}
.ye6{bottom:534.550667pt;}
.y111{bottom:536.564000pt;}
.y138{bottom:540.714667pt;}
.y79{bottom:540.920000pt;}
.y16{bottom:540.982667pt;}
.y3c{bottom:541.282667pt;}
.y17b{bottom:543.380000pt;}
.y1c3{bottom:544.820000pt;}
.y1ad{bottom:546.098667pt;}
.y14e{bottom:546.636000pt;}
.y15c{bottom:550.198667pt;}
.ye5{bottom:550.492000pt;}
.y110{bottom:552.505333pt;}
.yb4{bottom:554.213333pt;}
.y137{bottom:556.654667pt;}
.y78{bottom:556.860000pt;}
.y15{bottom:556.924000pt;}
.y1c2{bottom:556.949333pt;}
.y3b{bottom:558.462667pt;}
.y17a{bottom:559.320000pt;}
.y1ac{bottom:562.038667pt;}
.y14d{bottom:562.576000pt;}
.ye4{bottom:566.432000pt;}
.y10f{bottom:568.445333pt;}
.y1c1{bottom:569.078667pt;}
.yb3{bottom:570.153333pt;}
.y77{bottom:572.800000pt;}
.y14{bottom:572.864000pt;}
.y3a{bottom:574.402667pt;}
.y1ab{bottom:577.978667pt;}
.y14c{bottom:578.516000pt;}
.y1c0{bottom:581.033333pt;}
.ye3{bottom:584.189333pt;}
.y10e{bottom:584.385333pt;}
.yb2{bottom:586.093333pt;}
.y136{bottom:588.422667pt;}
.y76{bottom:588.740000pt;}
.y15b{bottom:589.041333pt;}
.y39{bottom:590.342667pt;}
.y13{bottom:592.640000pt;}
.y1bf{bottom:593.162667pt;}
.ye2{bottom:593.301333pt;}
.y1aa{bottom:593.920000pt;}
.y14b{bottom:594.456000pt;}
.ye1{bottom:596.660000pt;}
.y10d{bottom:600.325333pt;}
.yb1{bottom:602.034667pt;}
.y179{bottom:603.140000pt;}
.y135{bottom:604.362667pt;}
.y75{bottom:604.681333pt;}
.y15a{bottom:604.982667pt;}
.y1be{bottom:605.117333pt;}
.y38{bottom:606.282667pt;}
.y1a9{bottom:609.860000pt;}
.y14a{bottom:610.397333pt;}
.y10c{bottom:616.265333pt;}
.y1bd{bottom:617.072000pt;}
.yb0{bottom:617.974667pt;}
.y12{bottom:619.146667pt;}
.y134{bottom:620.302667pt;}
.y74{bottom:620.621333pt;}
.y37{bottom:623.462667pt;}
.y149{bottom:626.337333pt;}
.ye0{bottom:626.789333pt;}
.y1bc{bottom:629.028000pt;}
.ydf{bottom:630.146667pt;}
.y1a8{bottom:631.350667pt;}
.y10b{bottom:632.205333pt;}
.y11{bottom:632.430667pt;}
.yaf{bottom:633.914667pt;}
.y73{bottom:636.561333pt;}
.y133{bottom:637.826667pt;}
.y36{bottom:639.402667pt;}
.y148{bottom:642.277333pt;}
.yde{bottom:642.729333pt;}
.y10{bottom:645.365333pt;}
.y132{bottom:646.938667pt;}
.yae{bottom:649.854667pt;}
.y1bb{bottom:650.630667pt;}
.y10a{bottom:652.200000pt;}
.y72{bottom:652.501333pt;}
.y35{bottom:655.344000pt;}
.y1a7{bottom:658.193333pt;}
.y147{bottom:658.217333pt;}
.yf{bottom:658.648000pt;}
.ydc{bottom:661.816000pt;}
.yad{bottom:665.794667pt;}
.y130{bottom:668.470667pt;}
.y34{bottom:671.284000pt;}
.ye{bottom:671.932000pt;}
.y71{bottom:673.282667pt;}
.y1a6{bottom:674.133333pt;}
.y146{bottom:674.157333pt;}
.y12f{bottom:677.581333pt;}
.y131{bottom:677.582667pt;}
.yda{bottom:678.132000pt;}
.y1ba{bottom:678.197333pt;}
.ydd{bottom:681.490667pt;}
.yac{bottom:681.734667pt;}
.yd{bottom:685.216000pt;}
.y33{bottom:686.784000pt;}
.y1a5{bottom:690.073333pt;}
.y145{bottom:690.097333pt;}
.y109{bottom:692.264000pt;}
.ydb{bottom:692.522667pt;}
.y1b9{bottom:694.137333pt;}
.yab{bottom:697.676000pt;}
.yc{bottom:698.498667pt;}
.y70{bottom:699.784000pt;}
.y32{bottom:702.724000pt;}
.yd9{bottom:704.097333pt;}
.y1a4{bottom:706.013333pt;}
.y144{bottom:706.038667pt;}
.y12e{bottom:706.469333pt;}
.y108{bottom:708.204000pt;}
.yb{bottom:711.782667pt;}
.yaa{bottom:713.616000pt;}
.y6f{bottom:715.724000pt;}
.y31{bottom:718.664000pt;}
.yd8{bottom:720.037333pt;}
.y1a3{bottom:721.953333pt;}
.y143{bottom:721.978667pt;}
.y12d{bottom:722.409333pt;}
.y107{bottom:724.144000pt;}
.ya{bottom:725.065333pt;}
.ya9{bottom:729.556000pt;}
.y6d{bottom:734.584000pt;}
.y1a2{bottom:737.893333pt;}
.y1b8{bottom:737.920000pt;}
.y9{bottom:738.349333pt;}
.y106{bottom:740.085333pt;}
.y6e{bottom:743.696000pt;}
.yd7{bottom:744.677333pt;}
.ya8{bottom:745.496000pt;}
.yd6{bottom:748.034667pt;}
.y6c{bottom:752.681333pt;}
.y1a1{bottom:753.834667pt;}
.y12c{bottom:754.289333pt;}
.y105{bottom:756.025333pt;}
.ya7{bottom:761.436000pt;}
.yd5{bottom:769.316000pt;}
.y1a0{bottom:769.774667pt;}
.y12b{bottom:770.229333pt;}
.y104{bottom:771.965333pt;}
.y6b{bottom:772.097333pt;}
.yd4{bottom:772.674667pt;}
.y6a{bottom:775.456000pt;}
.ya6{bottom:777.376000pt;}
.yd3{bottom:785.256000pt;}
.y19f{bottom:785.942667pt;}
.y12a{bottom:786.170667pt;}
.ya5{bottom:793.317333pt;}
.y159{bottom:797.578667pt;}
.y178{bottom:797.581333pt;}
.y69{bottom:797.838667pt;}
.y8{bottom:799.598667pt;}
.yd2{bottom:801.197333pt;}
.y19e{bottom:801.882667pt;}
.y129{bottom:802.110667pt;}
.ya4{bottom:809.257333pt;}
.y158{bottom:813.518667pt;}
.y103{bottom:813.521333pt;}
.y68{bottom:813.778667pt;}
.y7{bottom:816.037333pt;}
.y19d{bottom:817.822667pt;}
.y128{bottom:818.050667pt;}
.yd1{bottom:821.261333pt;}
.ya3{bottom:825.197333pt;}
.y6{bottom:832.474667pt;}
.y19c{bottom:833.762667pt;}
.y127{bottom:833.990667pt;}
.y67{bottom:839.009333pt;}
.ya2{bottom:841.137333pt;}
.yd0{bottom:845.806667pt;}
.y66{bottom:848.121333pt;}
.y5{bottom:848.913333pt;}
.y19b{bottom:849.702667pt;}
.y126{bottom:849.930667pt;}
.y65{bottom:851.480000pt;}
.ya1{bottom:857.077333pt;}
.ycf{bottom:861.746667pt;}
.y4{bottom:865.352000pt;}
.y19a{bottom:865.644000pt;}
.y142{bottom:865.870667pt;}
.y64{bottom:872.010667pt;}
.y63{bottom:875.369333pt;}
.yce{bottom:877.688000pt;}
.ya0{bottom:881.400000pt;}
.y199{bottom:881.584000pt;}
.y125{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y9f{bottom:884.441333pt;}
.ycd{bottom:893.628000pt;}
.y198{bottom:897.524000pt;}
.y62{bottom:897.752000pt;}
.y9e{bottom:901.325333pt;}
.y9d{bottom:904.682667pt;}
.ycc{bottom:909.568000pt;}
.y197{bottom:913.464000pt;}
.y61{bottom:913.692000pt;}
.y9c{bottom:921.250667pt;}
.y2{bottom:923.830667pt;}
.y9b{bottom:924.608000pt;}
.ycb{bottom:925.508000pt;}
.y60{bottom:929.632000pt;}
.yca{bottom:941.448000pt;}
.y5f{bottom:945.572000pt;}
.yc9{bottom:957.388000pt;}
.y1{bottom:961.024000pt;}
.y5e{bottom:961.512000pt;}
.y9a{bottom:961.513333pt;}
.y5d{bottom:977.453333pt;}
.h23{height:26.184294pt;}
.h29{height:29.032418pt;}
.h13{height:29.244954pt;}
.hc{height:30.477662pt;}
.h11{height:31.880400pt;}
.h6{height:33.091994pt;}
.h5{height:33.426739pt;}
.h3{height:36.290431pt;}
.h4{height:36.556100pt;}
.h8{height:39.850400pt;}
.h21{height:39.874287pt;}
.h26{height:40.274996pt;}
.h14{height:40.280329pt;}
.h10{height:41.218996pt;}
.hd{height:41.224329pt;}
.h1d{height:43.000550pt;}
.h1f{height:43.229582pt;}
.ha{height:45.619217pt;}
.h2{height:49.262857pt;}
.h22{height:50.477173pt;}
.h9{height:52.015733pt;}
.h18{height:52.021067pt;}
.h1c{height:53.039733pt;}
.h7{height:53.279733pt;}
.h16{height:53.285067pt;}
.h20{height:53.858916pt;}
.h24{height:53.871733pt;}
.hb{height:54.876100pt;}
.h27{height:56.821067pt;}
.h12{height:60.077662pt;}
.h15{height:61.084954pt;}
.hf{height:61.090287pt;}
.he{height:70.818996pt;}
.h1a{height:70.824329pt;}
.h17{height:75.797067pt;}
.h1b{height:79.923217pt;}
.h1e{height:87.169434pt;}
.h1{height:87.734861pt;}
.h19{height:88.463733pt;}
.h28{height:89.727733pt;}
.h25{height:89.733067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:65.285333pt;}
.x11{left:67.336000pt;}
.x91{left:71.880000pt;}
.x7{left:78.569333pt;}
.x5d{left:91.769333pt;}
.x80{left:93.914667pt;}
.x75{left:100.980000pt;}
.x3c{left:105.077333pt;}
.xd{left:115.762667pt;}
.x6b{left:130.166667pt;}
.xb{left:135.684000pt;}
.x7f{left:138.137333pt;}
.x7c{left:141.426667pt;}
.x3d{left:143.414667pt;}
.x6c{left:145.345333pt;}
.x79{left:146.737333pt;}
.xa{left:147.784000pt;}
.x47{left:149.289333pt;}
.x72{left:156.098667pt;}
.x71{left:157.318667pt;}
.x85{left:158.525333pt;}
.x12{left:160.862667pt;}
.x48{left:163.544000pt;}
.x59{left:165.768000pt;}
.x5a{left:166.818667pt;}
.x53{left:168.113333pt;}
.x4f{left:169.336000pt;}
.x4e{left:170.401333pt;}
.xc{left:173.110667pt;}
.x38{left:178.916000pt;}
.xe{left:179.889333pt;}
.x9{left:180.825333pt;}
.x35{left:181.749333pt;}
.x84{left:183.041333pt;}
.x3f{left:184.924000pt;}
.x3e{left:186.117333pt;}
.x7d{left:188.568000pt;}
.x7a{left:189.493333pt;}
.x54{left:191.322667pt;}
.x50{left:192.546667pt;}
.x6e{left:194.221333pt;}
.x73{left:195.622667pt;}
.x6d{left:197.554667pt;}
.x49{left:202.620000pt;}
.x7b{left:203.754667pt;}
.x41{left:204.744000pt;}
.x42{left:207.532000pt;}
.x5c{left:208.864000pt;}
.x2{left:210.517333pt;}
.x40{left:212.229333pt;}
.x56{left:213.541333pt;}
.x81{left:215.254667pt;}
.x74{left:218.617333pt;}
.xf{left:219.560000pt;}
.x6f{left:226.165333pt;}
.x1{left:229.677333pt;}
.x44{left:235.956000pt;}
.x36{left:239.286667pt;}
.x43{left:242.213333pt;}
.x3a{left:245.086667pt;}
.x39{left:247.222667pt;}
.x52{left:249.622667pt;}
.x34{left:251.417333pt;}
.x45{left:252.430667pt;}
.x51{left:253.717333pt;}
.x70{left:257.953333pt;}
.x82{left:260.437333pt;}
.x83{left:263.569333pt;}
.x37{left:266.093333pt;}
.x5b{left:268.248000pt;}
.x10{left:269.517333pt;}
.x57{left:270.660000pt;}
.x3b{left:272.064000pt;}
.x76{left:277.370667pt;}
.x55{left:282.205333pt;}
.x58{left:284.548000pt;}
.x46{left:286.348000pt;}
.x4a{left:307.064000pt;}
.x5{left:318.277333pt;}
.x4{left:325.954667pt;}
.x3{left:335.056000pt;}
.x4b{left:345.345333pt;}
.x6{left:355.577333pt;}
.x4c{left:360.880000pt;}
.x4d{left:385.694667pt;}
.x33{left:388.662667pt;}
.x13{left:415.970667pt;}
.x94{left:421.284000pt;}
.x92{left:424.462667pt;}
.x14{left:429.253333pt;}
.x95{left:440.316000pt;}
.x17{left:442.666667pt;}
.x86{left:445.114667pt;}
.x63{left:459.428000pt;}
.x21{left:479.640000pt;}
.x67{left:483.513333pt;}
.x7e{left:489.040000pt;}
.x64{left:496.102667pt;}
.x78{left:498.657333pt;}
.x8b{left:508.414667pt;}
.x8a{left:510.549333pt;}
.x19{left:512.942667pt;}
.x88{left:513.952000pt;}
.x32{left:516.532000pt;}
.x62{left:517.916000pt;}
.x2d{left:519.522667pt;}
.x87{left:520.870667pt;}
.x2c{left:522.864000pt;}
.x18{left:524.781333pt;}
.x65{left:527.044000pt;}
.x25{left:533.614667pt;}
.x24{left:534.678667pt;}
.x69{left:538.073333pt;}
.x2a{left:544.108000pt;}
.x29{left:545.173333pt;}
.x93{left:546.149333pt;}
.x1c{left:551.964000pt;}
.x1d{left:553.190667pt;}
.x26{left:556.824000pt;}
.x31{left:563.088000pt;}
.x66{left:564.513333pt;}
.x5f{left:566.605333pt;}
.x5e{left:568.685333pt;}
.x1e{left:577.132000pt;}
.x68{left:585.546667pt;}
.x8d{left:593.097333pt;}
.x2e{left:601.044000pt;}
.x2b{left:602.637333pt;}
.x1f{left:604.978667pt;}
.x8e{left:606.990667pt;}
.x8c{left:608.588000pt;}
.x89{left:609.824000pt;}
.x28{left:613.901333pt;}
.x15{left:616.522667pt;}
.x27{left:617.994667pt;}
.x8f{left:622.432000pt;}
.x20{left:630.761333pt;}
.x2f{left:631.716000pt;}
.x60{left:632.808000pt;}
.x22{left:634.108000pt;}
.x61{left:635.421333pt;}
.x90{left:637.120000pt;}
.x30{left:638.290667pt;}
.x1b{left:639.405333pt;}
.x6a{left:640.380000pt;}
.x23{left:648.866667pt;}
.x16{left:655.574667pt;}
.x77{left:687.673333pt;}
.x1a{left:739.104000pt;}
}




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