
    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_405133b5698c6cac86cfe646.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_78ac6c3b904b7a31c1a3aacd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6bc2cda16441f8c6ee6b6002.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.922000;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_c7e5f5350be2f942d6f81d80.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.504000;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_ac0a32c9a52722d40a6d073e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.757000;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_7ecfff8c0401555629e167f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.411000;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_a51dd8ad64b01e48ff6a6536.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_1e79c9b67e34f20e01af3393.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_9e07dc73ea8ee01d08401375.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a30c9d374446a83f3f87364a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e3b0f6d9cada646418bd22b3.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.709000;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_e6943bb560c6a78881a18df6.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_586c6c6a960332b0f8fedb8e.woff2')format("woff");}.fff{font-family:fff;line-height:0.079000;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_b4dc49d405b98849f9316f30.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.696000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_ea735aee9cb141d0a584a98d.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.853000;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_cc6f00173dc7b0864d7ffeee.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.767000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_ade475f36cf414796fed482f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.904000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_3619afec53d5453499b83f67.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_6e1ee67603ea5191ee947586.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_773c37761f81fb7f2a4f50e1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.703000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_89e3c4bba5a9440f9da50896.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.756000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a632ec4c5bb9006cb41533f5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.909000;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;}
.m9{transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249994,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249996,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249997,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);}
.m7{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250003,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250004,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.375059,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.375059,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.375059,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v6{vertical-align:-36.932561px;}
.v4{vertical-align:-12.060000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:5.400864px;}
.v1{vertical-align:6.804477px;}
.v2{vertical-align:30.059441px;}
.v3{vertical-align:32.941440px;}
.v7{vertical-align:36.932561px;}
.ls49{letter-spacing:-1.267262px;}
.ls5c{letter-spacing:-1.095105px;}
.ls56{letter-spacing:-1.038845px;}
.ls51{letter-spacing:-1.000913px;}
.ls44{letter-spacing:-0.999463px;}
.ls5f{letter-spacing:-0.994681px;}
.ls62{letter-spacing:-0.985117px;}
.ls46{letter-spacing:-0.979856px;}
.ls52{letter-spacing:-0.975552px;}
.ls4f{letter-spacing:-0.970292px;}
.ls50{letter-spacing:-0.969036px;}
.ls4e{letter-spacing:-0.965988px;}
.lsc{letter-spacing:-0.961206px;}
.ls3e{letter-spacing:-0.956424px;}
.ls42{letter-spacing:-0.951642px;}
.ls48{letter-spacing:-0.947338px;}
.ls53{letter-spacing:-0.946404px;}
.ls3f{letter-spacing:-0.942078px;}
.ls5a{letter-spacing:-0.937774px;}
.ls43{letter-spacing:-0.932513px;}
.ls40{letter-spacing:-0.927253px;}
.ls45{letter-spacing:-0.922949px;}
.ls47{letter-spacing:-0.918167px;}
.ls4d{letter-spacing:-0.899039px;}
.ls61{letter-spacing:-0.884214px;}
.ls57{letter-spacing:-0.870346px;}
.lse{letter-spacing:-0.841175px;}
.lsd{letter-spacing:-0.836871px;}
.ls55{letter-spacing:-0.827307px;}
.ls41{letter-spacing:-0.812960px;}
.ls27{letter-spacing:-0.162792px;}
.ls68{letter-spacing:-0.005257px;}
.lsf{letter-spacing:-0.004208px;}
.ls0{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.003683px;}
.ls38{letter-spacing:0.009584px;}
.ls58{letter-spacing:0.009597px;}
.ls64{letter-spacing:0.028693px;}
.ls8{letter-spacing:0.033475px;}
.ls66{letter-spacing:0.071732px;}
.ls30{letter-spacing:0.076608px;}
.ls69{letter-spacing:0.091814px;}
.lsb{letter-spacing:0.095642px;}
.ls28{letter-spacing:0.101027px;}
.ls2c{letter-spacing:0.101189px;}
.ls14{letter-spacing:0.124335px;}
.ls19{letter-spacing:0.145373px;}
.ls18{letter-spacing:0.160675px;}
.ls11{letter-spacing:0.162592px;}
.ls6b{letter-spacing:0.198931px;}
.ls4{letter-spacing:0.232307px;}
.ls6a{letter-spacing:0.233362px;}
.ls9{letter-spacing:0.243888px;}
.ls7{letter-spacing:0.286927px;}
.ls2{letter-spacing:2.348021px;}
.ls1{letter-spacing:2.391060px;}
.ls1d{letter-spacing:11.328842px;}
.ls6c{letter-spacing:11.658809px;}
.ls65{letter-spacing:12.452640px;}
.ls54{letter-spacing:12.667358px;}
.ls67{letter-spacing:12.678038px;}
.ls15{letter-spacing:12.706093px;}
.ls16{letter-spacing:12.819586px;}
.ls1a{letter-spacing:13.432975px;}
.ls23{letter-spacing:14.078561px;}
.ls12{letter-spacing:14.451567px;}
.lsa{letter-spacing:14.968036px;}
.ls6{letter-spacing:15.647097px;}
.ls33{letter-spacing:15.661443px;}
.ls1b{letter-spacing:15.704482px;}
.ls10{letter-spacing:15.852728px;}
.ls34{letter-spacing:15.981845px;}
.ls24{letter-spacing:16.015320px;}
.ls5e{letter-spacing:17.039225px;}
.ls60{letter-spacing:17.655587px;}
.ls3c{letter-spacing:17.832525px;}
.ls3b{letter-spacing:18.028592px;}
.ls3d{letter-spacing:18.282045px;}
.ls5b{letter-spacing:18.927631px;}
.ls5{letter-spacing:21.658994px;}
.ls13{letter-spacing:22.954176px;}
.ls63{letter-spacing:23.255450px;}
.ls36{letter-spacing:24.144924px;}
.ls35{letter-spacing:24.503583px;}
.ls1c{letter-spacing:24.575315px;}
.ls4a{letter-spacing:25.277808px;}
.ls3{letter-spacing:27.025425px;}
.ls29{letter-spacing:29.161080px;}
.ls1f{letter-spacing:29.484873px;}
.ls22{letter-spacing:33.736727px;}
.ls39{letter-spacing:48.965473px;}
.ls2e{letter-spacing:63.254268px;}
.ls26{letter-spacing:67.748571px;}
.ls25{letter-spacing:70.937699px;}
.ls5d{letter-spacing:72.676685px;}
.ls2a{letter-spacing:74.700576px;}
.ls2d{letter-spacing:74.819722px;}
.ls2b{letter-spacing:75.454750px;}
.ls20{letter-spacing:81.625824px;}
.ls21{letter-spacing:85.101912px;}
.ls59{letter-spacing:86.546216px;}
.ls2f{letter-spacing:88.520544px;}
.ls1e{letter-spacing:112.768389px;}
.ls4c{letter-spacing:134.782200px;}
.ls4b{letter-spacing:139.603716px;}
.ls17{letter-spacing:156.027096px;}
.ls37{letter-spacing:302.921753px;}
.ls3a{letter-spacing:1136.282704px;}
.ls32{letter-spacing:1232.952612px;}
.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;}
}
.ws127{word-spacing:-139.651596px;}
.ws148{word-spacing:-68.799893px;}
.ws105{word-spacing:-45.706727px;}
.ws124{word-spacing:-25.325629px;}
.ws13{word-spacing:-21.712792px;}
.ws13f{word-spacing:-18.975452px;}
.ws153{word-spacing:-17.703408px;}
.ws130{word-spacing:-12.715179px;}
.wsf7{word-spacing:-11.970450px;}
.ws10b{word-spacing:-11.970000px;}
.ws1cd{word-spacing:-11.706630px;}
.ws4{word-spacing:-2.395842px;}
.ws135{word-spacing:-0.047882px;}
.ws4f{word-spacing:-0.047821px;}
.wsf{word-spacing:-0.042238px;}
.ws61{word-spacing:-0.038256px;}
.ws129{word-spacing:-0.033480px;}
.ws0{word-spacing:0.000000px;}
.ws1c4{word-spacing:0.014817px;}
.ws131{word-spacing:0.779486px;}
.ws120{word-spacing:0.870346px;}
.ws4e{word-spacing:0.913385px;}
.ws12d{word-spacing:0.937160px;}
.ws11d{word-spacing:0.951642px;}
.ws133{word-spacing:1.006969px;}
.ws142{word-spacing:1.047284px;}
.ws123{word-spacing:1.219441px;}
.ws104{word-spacing:4.917276px;}
.ws138{word-spacing:8.655637px;}
.ws163{word-spacing:8.749147px;}
.ws214{word-spacing:8.829485px;}
.ws15f{word-spacing:8.951904px;}
.ws164{word-spacing:9.579302px;}
.ws160{word-spacing:9.632861px;}
.ws161{word-spacing:9.682594px;}
.ws1bf{word-spacing:9.843269px;}
.ws15d{word-spacing:9.935083px;}
.ws15e{word-spacing:9.950386px;}
.ws114{word-spacing:9.984816px;}
.ws1c0{word-spacing:9.988642px;}
.ws1c1{word-spacing:10.057502px;}
.ws1c2{word-spacing:10.114886px;}
.ws15c{word-spacing:10.149317px;}
.ws1bd{word-spacing:10.191398px;}
.ws52{word-spacing:10.248083px;}
.ws1bc{word-spacing:10.306166px;}
.ws207{word-spacing:10.313818px;}
.ws208{word-spacing:10.363550px;}
.ws1b8{word-spacing:10.371202px;}
.ws1bb{word-spacing:10.489795px;}
.ws20f{word-spacing:10.814971px;}
.ws1e5{word-spacing:11.018004px;}
.ws20b{word-spacing:11.036856px;}
.ws34{word-spacing:11.080172px;}
.wsfa{word-spacing:11.094518px;}
.ws29{word-spacing:11.099301px;}
.wsd5{word-spacing:11.128670px;}
.ws1e2{word-spacing:11.137557px;}
.wsfb{word-spacing:11.204507px;}
.ws47{word-spacing:11.228418px;}
.ws68{word-spacing:11.257110px;}
.wsc4{word-spacing:11.290585px;}
.wsd9{word-spacing:11.316125px;}
.wsc7{word-spacing:11.358206px;}
.wsae{word-spacing:11.424485px;}
.wsc1{word-spacing:11.438831px;}
.ws28{word-spacing:11.505781px;}
.ws107{word-spacing:11.524909px;}
.ws1e9{word-spacing:11.539256px;}
.ws144{word-spacing:11.553602px;}
.ws10a{word-spacing:11.572730px;}
.ws92{word-spacing:11.610987px;}
.ws1cc{word-spacing:11.615769px;}
.ws1d3{word-spacing:11.620552px;}
.ws117{word-spacing:11.725464px;}
.ws3e{word-spacing:11.778362px;}
.ws1ce{word-spacing:11.783144px;}
.ws57{word-spacing:11.807054px;}
.ws1b6{word-spacing:11.851709px;}
.ws106{word-spacing:11.897915px;}
.ws79{word-spacing:11.907479px;}
.ws15{word-spacing:11.913084px;}
.ws17c{word-spacing:11.960082px;}
.ws118{word-spacing:12.012384px;}
.ws1b7{word-spacing:12.016210px;}
.wsbd{word-spacing:12.060507px;}
.ws121{word-spacing:12.084895px;}
.wsaa{word-spacing:12.117892px;}
.ws9f{word-spacing:12.141803px;}
.wse2{word-spacing:12.160931px;}
.ws145{word-spacing:12.251791px;}
.ws67{word-spacing:12.376127px;}
.ws8f{word-spacing:12.380909px;}
.ws10{word-spacing:12.398770px;}
.ws9b{word-spacing:12.400037px;}
.wse4{word-spacing:12.404819px;}
.ws110{word-spacing:12.406421px;}
.ws212{word-spacing:12.421723px;}
.ws1c3{word-spacing:12.433200px;}
.ws179{word-spacing:12.433512px;}
.wsf0{word-spacing:12.443076px;}
.ws213{word-spacing:12.444677px;}
.ws146{word-spacing:12.452640px;}
.wsa0{word-spacing:12.457423px;}
.wsb2{word-spacing:12.462205px;}
.ws64{word-spacing:12.463805px;}
.ws162{word-spacing:12.475282px;}
.ws6a{word-spacing:12.476551px;}
.ws111{word-spacing:12.479107px;}
.wsb0{word-spacing:12.486115px;}
.ws204{word-spacing:12.486758px;}
.ws200{word-spacing:12.490584px;}
.wsab{word-spacing:12.490897px;}
.ws206{word-spacing:12.494410px;}
.wsfc{word-spacing:12.495680px;}
.ws1be{word-spacing:12.498235px;}
.wscf{word-spacing:12.509712px;}
.ws66{word-spacing:12.510095px;}
.ws20c{word-spacing:12.517363px;}
.ws14f{word-spacing:12.519590px;}
.wsd6{word-spacing:12.521189px;}
.ws10f{word-spacing:12.528840px;}
.ws12{word-spacing:12.540317px;}
.ws1ba{word-spacing:12.544142px;}
.wsfd{word-spacing:12.548283px;}
.wsc9{word-spacing:12.555619px;}
.ws115{word-spacing:12.559445px;}
.ws202{word-spacing:12.570922px;}
.ws1c9{word-spacing:12.572193px;}
.ws1ff{word-spacing:12.574747px;}
.wsdb{word-spacing:12.605352px;}
.ws51{word-spacing:12.605668px;}
.ws203{word-spacing:12.613003px;}
.ws20d{word-spacing:12.620654px;}
.wsb1{word-spacing:12.629579px;}
.ws205{word-spacing:12.639782px;}
.wsdf{word-spacing:12.648707px;}
.ws11{word-spacing:12.662736px;}
.wsc5{word-spacing:12.678038px;}
.ws116{word-spacing:12.685690px;}
.wsd7{word-spacing:12.693341px;}
.ws1a9{word-spacing:12.706093px;}
.wsca{word-spacing:12.712469px;}
.ws1e3{word-spacing:12.725221px;}
.ws20a{word-spacing:12.731597px;}
.ws176{word-spacing:12.734786px;}
.ws63{word-spacing:12.735422px;}
.ws65{word-spacing:12.743074px;}
.ws20e{word-spacing:12.746899px;}
.ws113{word-spacing:12.750725px;}
.wsac{word-spacing:12.763478px;}
.ws62{word-spacing:12.766027px;}
.wscb{word-spacing:12.773678px;}
.ws211{word-spacing:12.777504px;}
.ws11b{word-spacing:12.782129px;}
.wse8{word-spacing:12.792171px;}
.ws177{word-spacing:12.796953px;}
.wsb3{word-spacing:12.801735px;}
.wsc6{word-spacing:12.804283px;}
.wsd1{word-spacing:12.808109px;}
.ws1d4{word-spacing:12.830428px;}
.ws209{word-spacing:12.831062px;}
.ws175{word-spacing:12.835210px;}
.ws11c{word-spacing:12.844774px;}
.ws210{word-spacing:12.857842px;}
.ws166{word-spacing:12.873144px;}
.ws201{word-spacing:12.892272px;}
.wsde{word-spacing:12.902160px;}
.ws1de{word-spacing:12.926070px;}
.ws178{word-spacing:12.930852px;}
.ws1dd{word-spacing:12.997802px;}
.ws1c8{word-spacing:13.002584px;}
.ws1a7{word-spacing:13.074316px;}
.ws1e6{word-spacing:13.112573px;}
.ws14{word-spacing:13.113861px;}
.wse5{word-spacing:13.126919px;}
.ws12c{word-spacing:13.152743px;}
.ws1f3{word-spacing:13.179523px;}
.wse6{word-spacing:13.241690px;}
.ws165{word-spacing:13.336042px;}
.wsf3{word-spacing:13.399500px;}
.ws14e{word-spacing:13.413847px;}
.wse7{word-spacing:13.437757px;}
.ws1aa{word-spacing:13.461668px;}
.ws19e{word-spacing:13.480796px;}
.ws3{word-spacing:13.509489px;}
.ws157{word-spacing:13.519053px;}
.ws56{word-spacing:13.528617px;}
.ws3d{word-spacing:13.758159px;}
.ws2e{word-spacing:13.772506px;}
.ws1ae{word-spacing:13.801198px;}
.ws71{word-spacing:13.820327px;}
.ws12e{word-spacing:13.844237px;}
.ws1ad{word-spacing:13.939880px;}
.ws108{word-spacing:13.949444px;}
.ws4c{word-spacing:13.973355px;}
.ws43{word-spacing:14.016394px;}
.ws1b9{word-spacing:14.055254px;}
.ws1d7{word-spacing:14.073779px;}
.ws156{word-spacing:14.077605px;}
.ws90{word-spacing:14.078561px;}
.ws17b{word-spacing:14.159857px;}
.ws1d{word-spacing:14.168307px;}
.ws9e{word-spacing:14.188550px;}
.ws3a{word-spacing:14.207679px;}
.ws1e4{word-spacing:14.222025px;}
.wsd4{word-spacing:14.231232px;}
.ws4b{word-spacing:14.279410px;}
.ws1eb{word-spacing:14.403745px;}
.ws9d{word-spacing:14.418092px;}
.ws12f{word-spacing:14.456349px;}
.ws1b2{word-spacing:14.475477px;}
.ws119{word-spacing:14.485041px;}
.ws198{word-spacing:14.499388px;}
.ws7c{word-spacing:14.518516px;}
.ws199{word-spacing:14.575902px;}
.ws182{word-spacing:14.690673px;}
.ws181{word-spacing:14.695455px;}
.ws2f{word-spacing:14.743276px;}
.ws132{word-spacing:14.810226px;}
.ws31{word-spacing:14.824572px;}
.ws23{word-spacing:14.838918px;}
.ws21{word-spacing:14.843700px;}
.ws30{word-spacing:14.848483px;}
.ws194{word-spacing:14.905868px;}
.ws195{word-spacing:14.944125px;}
.ws196{word-spacing:15.001510px;}
.ws39{word-spacing:15.063678px;}
.ws3f{word-spacing:15.092371px;}
.ws22{word-spacing:15.135410px;}
.ws1ca{word-spacing:15.164103px;}
.ws59{word-spacing:15.207142px;}
.ws1f0{word-spacing:15.235834px;}
.ws24{word-spacing:15.364952px;}
.ws27{word-spacing:15.369734px;}
.wsba{word-spacing:15.412773px;}
.ws54{word-spacing:15.436683px;}
.ws1f{word-spacing:15.460594px;}
.wsbb{word-spacing:15.503633px;}
.ws1ea{word-spacing:15.537108px;}
.ws4d{word-spacing:15.584929px;}
.ws49{word-spacing:15.599275px;}
.ws4a{word-spacing:15.618404px;}
.ws25{word-spacing:15.623186px;}
.ws87{word-spacing:15.627968px;}
.ws96{word-spacing:15.637532px;}
.ws1b5{word-spacing:15.642315px;}
.ws26{word-spacing:15.647097px;}
.ws46{word-spacing:15.651879px;}
.ws74{word-spacing:15.656661px;}
.ws77{word-spacing:15.666225px;}
.ws80{word-spacing:15.685354px;}
.ws8c{word-spacing:15.690136px;}
.ws17f{word-spacing:15.704482px;}
.ws60{word-spacing:15.709264px;}
.ws8d{word-spacing:15.718828px;}
.ws109{word-spacing:15.728393px;}
.ws1a0{word-spacing:15.737957px;}
.ws76{word-spacing:15.742739px;}
.ws1d6{word-spacing:15.747521px;}
.ws3c{word-spacing:15.752303px;}
.ws75{word-spacing:15.766650px;}
.wsd3{word-spacing:15.769123px;}
.ws5e{word-spacing:15.776214px;}
.ws1cf{word-spacing:15.780996px;}
.ws103{word-spacing:15.804907px;}
.ws1{word-spacing:15.809689px;}
.wse1{word-spacing:15.814471px;}
.ws5f{word-spacing:15.843164px;}
.ws78{word-spacing:15.857510px;}
.ws86{word-spacing:15.862292px;}
.wsc2{word-spacing:15.876638px;}
.ws10e{word-spacing:15.881421px;}
.ws97{word-spacing:15.890985px;}
.ws16f{word-spacing:15.905331px;}
.wsee{word-spacing:15.910113px;}
.ws58{word-spacing:15.952674px;}
.wsef{word-spacing:15.957934px;}
.wsd2{word-spacing:15.968054px;}
.wsa7{word-spacing:15.972281px;}
.wsa6{word-spacing:15.991409px;}
.ws7f{word-spacing:16.029666px;}
.wseb{word-spacing:16.044013px;}
.wsb4{word-spacing:16.058359px;}
.ws53{word-spacing:16.110962px;}
.ws11a{word-spacing:16.154001px;}
.ws5c{word-spacing:16.158783px;}
.ws125{word-spacing:16.173130px;}
.ws1c7{word-spacing:16.182694px;}
.wse0{word-spacing:16.201823px;}
.ws1c{word-spacing:16.225552px;}
.ws1a{word-spacing:16.259983px;}
.ws7e{word-spacing:16.273554px;}
.ws5b{word-spacing:16.307029px;}
.ws19f{word-spacing:16.354850px;}
.ws136{word-spacing:16.412236px;}
.ws16a{word-spacing:16.445711px;}
.ws112{word-spacing:16.465382px;}
.ws1b{word-spacing:16.496695px;}
.ws1a8{word-spacing:16.527007px;}
.ws150{word-spacing:16.608303px;}
.ws17a{word-spacing:16.651342px;}
.ws169{word-spacing:16.699163px;}
.ws1d5{word-spacing:16.703945px;}
.ws19c{word-spacing:16.727856px;}
.ws1b0{word-spacing:16.790023px;}
.ws99{word-spacing:16.799588px;}
.ws1df{word-spacing:16.833062px;}
.ws126{word-spacing:16.852191px;}
.ws93{word-spacing:16.866537px;}
.ws15b{word-spacing:16.904794px;}
.ws192{word-spacing:17.010001px;}
.ws193{word-spacing:17.129554px;}
.wsbc{word-spacing:17.220414px;}
.ws139{word-spacing:17.526948px;}
.ws5a{word-spacing:17.545598px;}
.ws13a{word-spacing:17.555163px;}
.wsff{word-spacing:17.559945px;}
.ws1e1{word-spacing:17.564727px;}
.wsec{word-spacing:17.626894px;}
.ws16d{word-spacing:17.631676px;}
.ws32{word-spacing:17.641241px;}
.ws2d{word-spacing:17.650805px;}
.wsbe{word-spacing:17.665151px;}
.wse9{word-spacing:17.674716px;}
.ws2c{word-spacing:17.679498px;}
.wsc3{word-spacing:17.689062px;}
.ws2a{word-spacing:17.708190px;}
.ws101{word-spacing:17.722537px;}
.ws102{word-spacing:17.765576px;}
.ws2b{word-spacing:17.827743px;}
.ws137{word-spacing:17.832525px;}
.ws1fd{word-spacing:17.846872px;}
.ws1d8{word-spacing:17.856436px;}
.ws7b{word-spacing:17.885129px;}
.ws50{word-spacing:17.952078px;}
.ws100{word-spacing:18.004682px;}
.ws1f1{word-spacing:18.028592px;}
.wsd0{word-spacing:18.030053px;}
.ws85{word-spacing:18.090760px;}
.ws12a{word-spacing:18.109888px;}
.ws83{word-spacing:18.114671px;}
.ws12b{word-spacing:18.181620px;}
.ws8a{word-spacing:18.186402px;}
.ws1d1{word-spacing:18.224659px;}
.ws41{word-spacing:18.243788px;}
.ws42{word-spacing:18.277263px;}
.ws84{word-spacing:18.344212px;}
.ws16b{word-spacing:18.372905px;}
.ws18f{word-spacing:18.396816px;}
.ws1d9{word-spacing:18.458983px;}
.ws72{word-spacing:18.521151px;}
.ws1f6{word-spacing:18.535497px;}
.ws73{word-spacing:18.564190px;}
.ws1fb{word-spacing:18.616793px;}
.ws9c{word-spacing:18.726782px;}
.ws70{word-spacing:18.779385px;}
.ws172{word-spacing:18.784167px;}
.ws174{word-spacing:18.860681px;}
.ws98{word-spacing:18.903720px;}
.ws197{word-spacing:18.927631px;}
.wsbf{word-spacing:18.989799px;}
.ws18c{word-spacing:18.994581px;}
.ws173{word-spacing:19.028055px;}
.ws55{word-spacing:19.171519px;}
.ws18b{word-spacing:19.219340px;}
.ws6b{word-spacing:19.262379px;}
.ws1f2{word-spacing:19.267161px;}
.wsdc{word-spacing:19.286290px;}
.wsdd{word-spacing:19.295854px;}
.wsaf{word-spacing:19.310201px;}
.ws1f8{word-spacing:19.362804px;}
.ws151{word-spacing:19.367586px;}
.ws1ac{word-spacing:19.391497px;}
.ws14c{word-spacing:19.450795px;}
.ws6e{word-spacing:19.463228px;}
.ws1f7{word-spacing:19.482357px;}
.ws6f{word-spacing:19.487139px;}
.ws1ab{word-spacing:19.491921px;}
.ws189{word-spacing:19.520614px;}
.wsa9{word-spacing:19.539742px;}
.ws1db{word-spacing:19.544524px;}
.ws1a4{word-spacing:19.601910px;}
.ws18a{word-spacing:19.606692px;}
.ws154{word-spacing:19.615778px;}
.ws155{word-spacing:19.664077px;}
.ws1f4{word-spacing:19.716681px;}
.ws1f5{word-spacing:19.797977px;}
.wsfe{word-spacing:19.802759px;}
.ws1ed{word-spacing:19.807541px;}
.ws45{word-spacing:19.821887px;}
.ws14b{word-spacing:19.855362px;}
.ws14a{word-spacing:19.874491px;}
.wsed{word-spacing:19.879273px;}
.ws167{word-spacing:19.922312px;}
.wsa8{word-spacing:19.931876px;}
.ws14d{word-spacing:20.060993px;}
.ws1d2{word-spacing:20.142289px;}
.ws152{word-spacing:20.347921px;}
.ws19d{word-spacing:20.362267px;}
.ws44{word-spacing:20.443563px;}
.ws13e{word-spacing:20.554030px;}
.ws38{word-spacing:20.658758px;}
.ws1a5{word-spacing:20.778311px;}
.ws20{word-spacing:20.821350px;}
.wsb{word-spacing:20.928799px;}
.ws188{word-spacing:20.945686px;}
.wsa{word-spacing:21.004834px;}
.wsd8{word-spacing:21.021672px;}
.wsc{word-spacing:21.036516px;}
.ws9{word-spacing:21.055525px;}
.wsd{word-spacing:21.068197px;}
.ws91{word-spacing:21.070021px;}
.wse{word-spacing:21.099879px;}
.ws183{word-spacing:21.146535px;}
.ws8{word-spacing:21.163242px;}
.ws171{word-spacing:21.223049px;}
.ws1a6{word-spacing:21.285216px;}
.ws10d{word-spacing:21.304345px;}
.ws170{word-spacing:21.337819px;}
.ws3b{word-spacing:21.352166px;}
.ws190{word-spacing:21.423898px;}
.ws1c5{word-spacing:21.443026px;}
.ws191{word-spacing:21.486065px;}
.ws10c{word-spacing:21.505194px;}
.wsf1{word-spacing:21.557797px;}
.wsf2{word-spacing:21.567361px;}
.ws1e7{word-spacing:21.772992px;}
.ws1a1{word-spacing:21.887763px;}
.ws1e8{word-spacing:21.892545px;}
.ws11e{word-spacing:21.921238px;}
.wsb7{word-spacing:21.983406px;}
.ws40{word-spacing:22.031227px;}
.ws17e{word-spacing:22.083830px;}
.ws1dc{word-spacing:22.203383px;}
.ws5d{word-spacing:22.241640px;}
.wse3{word-spacing:22.322936px;}
.ws1af{word-spacing:22.423361px;}
.wsb8{word-spacing:22.509439px;}
.ws168{word-spacing:22.657685px;}
.wsad{word-spacing:22.667249px;}
.wsa1{word-spacing:22.825059px;}
.ws6d{word-spacing:22.949394px;}
.ws143{word-spacing:23.011561px;}
.ws19b{word-spacing:23.035472px;}
.ws19a{word-spacing:23.078511px;}
.ws141{word-spacing:23.317617px;}
.ws69{word-spacing:23.575852px;}
.ws1ec{word-spacing:23.685840px;}
.ws1e{word-spacing:23.886689px;}
.ws7d{word-spacing:24.006242px;}
.ws180{word-spacing:24.049281px;}
.wsa4{word-spacing:24.073192px;}
.ws1b1{word-spacing:24.130578px;}
.wsa3{word-spacing:24.207091px;}
.wsf8{word-spacing:24.364901px;}
.ws6c{word-spacing:24.369684px;}
.wsa2{word-spacing:24.393594px;}
.wsf6{word-spacing:24.412723px;}
.wsf5{word-spacing:24.537058px;}
.ws94{word-spacing:24.666175px;}
.wsf9{word-spacing:24.690086px;}
.ws95{word-spacing:24.709214px;}
.wsf4{word-spacing:24.713996px;}
.ws17d{word-spacing:24.833549px;}
.ws1fe{word-spacing:24.867024px;}
.wsda{word-spacing:25.053854px;}
.ws33{word-spacing:25.211337px;}
.ws1c6{word-spacing:25.388275px;}
.ws1fa{word-spacing:25.627381px;}
.ws1f9{word-spacing:25.708677px;}
.ws1e0{word-spacing:25.966912px;}
.ws13c{word-spacing:26.000386px;}
.ws13b{word-spacing:26.005169px;}
.ws13d{word-spacing:26.010429px;}
.ws15a{word-spacing:26.158196px;}
.ws184{word-spacing:26.177325px;}
.ws16{word-spacing:26.352535px;}
.ws134{word-spacing:26.369088px;}
.wsb9{word-spacing:26.406867px;}
.ws19{word-spacing:26.485954px;}
.ws11f{word-spacing:26.506813px;}
.ws89{word-spacing:26.516855px;}
.ws18{word-spacing:26.533297px;}
.ws17{word-spacing:26.632286px;}
.ws6{word-spacing:26.694568px;}
.wsa5{word-spacing:26.746397px;}
.ws5{word-spacing:26.920519px;}
.ws1fc{word-spacing:26.961593px;}
.ws122{word-spacing:27.004632px;}
.ws7{word-spacing:27.081913px;}
.wsea{word-spacing:27.105056px;}
.ws7a{word-spacing:27.430240px;}
.ws1b4{word-spacing:27.545011px;}
.ws18d{word-spacing:27.573704px;}
.ws1ee{word-spacing:27.726732px;}
.ws1b3{word-spacing:27.764993px;}
.ws35{word-spacing:27.784117px;}
.ws2{word-spacing:28.001202px;}
.ws48{word-spacing:28.109301px;}
.ws1a2{word-spacing:28.453614px;}
.ws1a3{word-spacing:28.582731px;}
.ws82{word-spacing:28.664027px;}
.ws81{word-spacing:28.907915px;}
.ws1ef{word-spacing:28.912698px;}
.ws1d0{word-spacing:29.467423px;}
.ws36{word-spacing:29.897814px;}
.ws37{word-spacing:29.936071px;}
.ws9a{word-spacing:30.509926px;}
.ws16e{word-spacing:30.619914px;}
.wsb5{word-spacing:30.916406px;}
.ws1da{word-spacing:30.940316px;}
.ws16c{word-spacing:31.284629px;}
.ws158{word-spacing:31.490260px;}
.ws187{word-spacing:32.049768px;}
.ws159{word-spacing:32.174103px;}
.ws185{word-spacing:32.298438px;}
.ws186{word-spacing:32.681008px;}
.ws8e{word-spacing:33.513097px;}
.wsb6{word-spacing:34.574728px;}
.ws18e{word-spacing:34.770795px;}
.ws88{word-spacing:34.847308px;}
.ws140{word-spacing:34.909476px;}
.wsc0{word-spacing:35.928068px;}
.ws8b{word-spacing:38.563016px;}
.ws1cb{word-spacing:46.926944px;}
.ws128{word-spacing:52.636921px;}
.wsc8{word-spacing:59.472778px;}
.wsce{word-spacing:84.105816px;}
.wscd{word-spacing:105.643944px;}
.ws149{word-spacing:170.851319px;}
.ws147{word-spacing:195.143082px;}
.wscc{word-spacing:231.161880px;}
._27{margin-left:-608.674500px;}
._33{margin-left:-332.005190px;}
._22{margin-left:-67.223520px;}
._2d{margin-left:-64.357927px;}
._20{margin-left:-61.724428px;}
._26{margin-left:-57.077748px;}
._2a{margin-left:-41.578812px;}
._30{margin-left:-34.162738px;}
._25{margin-left:-27.262866px;}
._24{margin-left:-26.052990px;}
._2e{margin-left:-20.947120px;}
._2f{margin-left:-19.778848px;}
._34{margin-left:-18.726782px;}
._32{margin-left:-16.985611px;}
._2c{margin-left:-14.418092px;}
._2b{margin-left:-13.413847px;}
._38{margin-left:-11.013222px;}
._35{margin-left:-7.819246px;}
._21{margin-left:-5.108796px;}
._c{margin-left:-2.371932px;}
._d{margin-left:-1.209876px;}
._0{width:1.061631px;}
._31{width:4.504555px;}
._23{width:8.852438px;}
._36{width:10.049851px;}
._e{width:11.123211px;}
._6{width:12.237445px;}
._1{width:14.032301px;}
._5{width:15.919677px;}
._3{width:17.366075px;}
._7{width:18.846335px;}
._13{width:20.634848px;}
._4{width:21.954713px;}
._b{width:23.480209px;}
._2{width:25.181885px;}
._8{width:26.464252px;}
._12{width:27.841503px;}
._9{width:29.017904px;}
._a{width:30.997702px;}
._37{width:32.465813px;}
._11{width:34.694281px;}
._f{width:35.928068px;}
._10{width:39.801585px;}
._15{width:60.138432px;}
._1a{width:84.144072px;}
._16{width:105.720456px;}
._28{width:117.642024px;}
._18{width:126.110904px;}
._29{width:143.023212px;}
._14{width:147.049062px;}
._1d{width:231.200136px;}
._1b{width:237.711307px;}
._17{width:301.484059px;}
._1e{width:304.693738px;}
._1c{width:318.198106px;}
._19{width:356.381419px;}
._1f{width:2105.039160px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,127,171);}
.fc1{color:rgb(63,120,162);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:25.500000px;}
.fse{font-size:31.876200px;}
.fs14{font-size:33.480000px;}
.fs1a{font-size:33.508800px;}
.fs16{font-size:33.533400px;}
.fs18{font-size:33.552000px;}
.fs1c{font-size:33.711000px;}
.fsb{font-size:38.256000px;}
.fsf{font-size:38.400000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.237600px;}
.fsd{font-size:43.038600px;}
.fs1d{font-size:47.795400px;}
.fs5{font-size:47.821200px;}
.fs13{font-size:47.880000px;}
.fs12{font-size:47.880600px;}
.fs11{font-size:47.881800px;}
.fs19{font-size:47.920800px;}
.fs15{font-size:47.956800px;}
.fs17{font-size:47.982600px;}
.fs1b{font-size:48.210600px;}
.fsc{font-size:53.797800px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:63.363000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:80.697000px;}
.fs6{font-size:83.685600px;}
.fs10{font-size:87.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y18d{bottom:0.944115px;}
.y150{bottom:0.944250px;}
.yff{bottom:0.944865px;}
.y143{bottom:2.692200px;}
.y11d{bottom:3.949800px;}
.y119{bottom:3.950100px;}
.y153{bottom:3.981900px;}
.y189{bottom:4.033815px;}
.y13f{bottom:5.707200px;}
.y160{bottom:13.319385px;}
.ye4{bottom:41.347215px;}
.y5{bottom:66.525004px;}
.ydb{bottom:72.964174px;}
.y1c8{bottom:72.964224px;}
.y15a{bottom:72.964365px;}
.ye2{bottom:72.964721px;}
.y78{bottom:72.967215px;}
.y19c{bottom:72.967426px;}
.y12e{bottom:73.558950px;}
.yda{bottom:85.804800px;}
.ye1{bottom:85.805347px;}
.y77{bottom:85.822200px;}
.y1c7{bottom:88.611294px;}
.y159{bottom:88.611462px;}
.y19b{bottom:88.614522px;}
.yd9{bottom:90.056700px;}
.y4{bottom:97.125005px;}
.y72{bottom:98.645974px;}
.y158{bottom:104.343441px;}
.y19a{bottom:104.346502px;}
.y1c6{bottom:104.357261px;}
.y71{bottom:111.486600px;}
.ye0{bottom:115.738650px;}
.y157{bottom:119.990538px;}
.y199{bottom:119.993598px;}
.y1c5{bottom:120.004358px;}
.ydf{bottom:124.328128px;}
.y198{bottom:135.725578px;}
.y1c4{bottom:135.736337px;}
.y75{bottom:136.318474px;}
.yde{bottom:137.253874px;}
.y21{bottom:139.264499px;}
.y152{bottom:140.569500px;}
.y155{bottom:141.529950px;}
.y156{bottom:143.376300px;}
.y154{bottom:144.551400px;}
.y74{bottom:149.159100px;}
.ydd{bottom:150.094500px;}
.y197{bottom:151.372674px;}
.y1c3{bottom:151.383434px;}
.y73{bottom:153.411000px;}
.ydc{bottom:154.346400px;}
.y14f{bottom:165.061500px;}
.y151{bottom:165.911700px;}
.y14e{bottom:165.911853px;}
.y196{bottom:167.104653px;}
.y1c2{bottom:167.115413px;}
.y14d{bottom:181.558950px;}
.ya3{bottom:182.842616px;}
.y1c1{bottom:182.847392px;}
.ya4{bottom:188.107050px;}
.y174{bottom:189.809172px;}
.ycd{bottom:189.810360px;}
.y70{bottom:190.754601px;}
.y56{bottom:191.512567px;}
.y175{bottom:195.165450px;}
.y14b{bottom:195.250350px;}
.y18{bottom:196.933500px;}
.y14c{bottom:197.291250px;}
.y14a{bottom:197.291403px;}
.y195{bottom:198.483729px;}
.ya2{bottom:198.489713px;}
.y173{bottom:205.541152px;}
.ycc{bottom:205.542339px;}
.y6f{bottom:206.486580px;}
.y55{bottom:207.159663px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y148{bottom:210.982650px;}
.y149{bottom:212.938500px;}
.y147{bottom:212.938821px;}
.ya1{bottom:214.221692px;}
.y1c0{bottom:214.227664px;}
.y172{bottom:221.188248px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y6e{bottom:222.133677px;}
.y54{bottom:222.891643px;}
.y145{bottom:226.629900px;}
.y144{bottom:228.670770px;}
.y146{bottom:228.670800px;}
.ya0{bottom:229.868789px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y171{bottom:236.920227px;}
.ycb{bottom:236.921415px;}
.y6d{bottom:237.865656px;}
.y53{bottom:238.538739px;}
.y194{bottom:242.703993px;}
.y9f{bottom:245.600768px;}
.y13e{bottom:249.165000px;}
.y142{bottom:251.857200px;}
.y170{bottom:252.567324px;}
.y141{bottom:253.521984px;}
.y52{bottom:254.270719px;}
.y6c{bottom:254.277892px;}
.y140{bottom:254.872200px;}
.y1bf{bottom:255.472253px;}
.y193{bottom:258.435972px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y9e{bottom:261.247865px;}
.y16f{bottom:268.299303px;}
.y51{bottom:269.917815px;}
.y6b{bottom:269.924988px;}
.y1be{bottom:271.204233px;}
.yca{bottom:271.447126px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y192{bottom:274.083069px;}
.y13d{bottom:276.123959px;}
.y9d{bottom:276.979844px;}
.y16e{bottom:283.946400px;}
.y16c{bottom:283.947310px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y50{bottom:285.649795px;}
.y6a{bottom:285.656968px;}
.y1bd{bottom:286.851329px;}
.yc9{bottom:287.094222px;}
.y16d{bottom:289.303950px;}
.y191{bottom:289.815048px;}
.y13c{bottom:291.855938px;}
.y9c{bottom:292.626941px;}
.y16b{bottom:299.679290px;}
.y4f{bottom:301.381774px;}
.y69{bottom:301.388947px;}
.y1bc{bottom:302.583309px;}
.yc8{bottom:302.826202px;}
.y190{bottom:305.462145px;}
.y13b{bottom:307.503035px;}
.y9b{bottom:308.358920px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.yf1{bottom:314.478331px;}
.y4e{bottom:317.028870px;}
.y68{bottom:317.036044px;}
.y1bb{bottom:318.230405px;}
.yc7{bottom:318.473298px;}
.y124{bottom:320.386932px;}
.y18f{bottom:321.194124px;}
.y126{bottom:322.384200px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y13a{bottom:323.235014px;}
.y122{bottom:323.406367px;}
.y125{bottom:328.815552px;}
.yf0{bottom:330.125428px;}
.y16a{bottom:331.058365px;}
.y4d{bottom:332.760850px;}
.y67{bottom:332.768023px;}
.y121{bottom:333.637950px;}
.yc6{bottom:334.205277px;}
.y18e{bottom:336.841221px;}
.y123{bottom:338.866350px;}
.y139{bottom:338.882111px;}
.y9a{bottom:339.737996px;}
.yef{bottom:345.857407px;}
.yf{bottom:348.133500px;}
.y4c{bottom:348.407946px;}
.y66{bottom:348.415120px;}
.y188{bottom:348.661485px;}
.y1ba{bottom:349.609481px;}
.y18a{bottom:349.659450px;}
.yc5{bottom:349.852374px;}
.y18c{bottom:351.722985px;}
.y18b{bottom:352.573200px;}
.y187{bottom:352.576219px;}
.y138{bottom:354.614090px;}
.y99{bottom:355.385093px;}
.y1fc{bottom:355.386382px;}
.y11c{bottom:356.655000px;}
.y11f{bottom:357.589800px;}
.y120{bottom:360.566850px;}
.y11b{bottom:360.567171px;}
.y11e{bottom:360.604800px;}
.yee{bottom:361.504503px;}
.y4b{bottom:364.139926px;}
.y65{bottom:364.147099px;}
.y22e{bottom:365.080177px;}
.yc4{bottom:365.584353px;}
.y186{bottom:368.223315px;}
.y169{bottom:368.306298px;}
.y137{bottom:370.261187px;}
.y98{bottom:371.117072px;}
.y1fb{bottom:371.118361px;}
.y118{bottom:372.387000px;}
.y11a{bottom:376.299150px;}
.y117{bottom:376.299948px;}
.y22d{bottom:377.070564px;}
.yed{bottom:377.236483px;}
.y4a{bottom:379.787022px;}
.y64{bottom:379.794195px;}
.yc3{bottom:381.231450px;}
.yc1{bottom:381.232890px;}
.y185{bottom:383.955295px;}
.y168{bottom:384.038277px;}
.y136{bottom:385.993166px;}
.yc2{bottom:386.588850px;}
.y97{bottom:386.764169px;}
.y1fa{bottom:386.765458px;}
.ye{bottom:386.785499px;}
.y22c{bottom:389.060951px;}
.y1b9{bottom:390.938953px;}
.y116{bottom:391.947045px;}
.yec{bottom:392.968462px;}
.y49{bottom:395.519002px;}
.y63{bottom:395.526175px;}
.yc0{bottom:396.964869px;}
.y184{bottom:399.602391px;}
.y167{bottom:399.685374px;}
.y22b{bottom:400.966218px;}
.y96{bottom:402.496148px;}
.y1f9{bottom:402.497437px;}
.y1b8{bottom:406.670932px;}
.y115{bottom:407.679024px;}
.yd{bottom:408.044999px;}
.yeb{bottom:408.615559px;}
.y48{bottom:411.166098px;}
.y62{bottom:411.173271px;}
.ybf{bottom:412.611966px;}
.y22a{bottom:412.956605px;}
.y183{bottom:415.334370px;}
.y166{bottom:415.417353px;}
.y135{bottom:417.373438px;}
.y95{bottom:418.143244px;}
.y1f8{bottom:418.144534px;}
.y1b7{bottom:422.318029px;}
.y114{bottom:423.326121px;}
.yea{bottom:424.347538px;}
.y229{bottom:424.861872px;}
.y47{bottom:426.898077px;}
.y61{bottom:426.905251px;}
.ybe{bottom:428.343945px;}
.y164{bottom:429.108600px;}
.y163{bottom:431.064222px;}
.y165{bottom:431.064450px;}
.y182{bottom:431.066350px;}
.y1f7{bottom:433.876513px;}
.y228{bottom:436.852259px;}
.y112{bottom:437.017200px;}
.y1b6{bottom:438.050008px;}
.y113{bottom:439.058100px;}
.y111{bottom:439.058572px;}
.y46{bottom:442.545174px;}
.y60{bottom:442.552347px;}
.ybd{bottom:443.991041px;}
.y181{bottom:446.713446px;}
.y227{bottom:448.842646px;}
.y134{bottom:449.518848px;}
.y94{bottom:449.522320px;}
.y1f6{bottom:449.523610px;}
.y15f{bottom:452.749515px;}
.y1b5{bottom:453.697105px;}
.y162{bottom:453.818324px;}
.ye9{bottom:455.726614px;}
.y15e{bottom:456.835760px;}
.y45{bottom:458.277153px;}
.y5f{bottom:458.284327px;}
.ybc{bottom:459.723021px;}
.y226{bottom:460.747913px;}
.y10c{bottom:460.811568px;}
.y10e{bottom:460.812765px;}
.y180{bottom:462.445426px;}
.y110{bottom:462.614100px;}
.y133{bottom:465.250827px;}
.y93{bottom:465.254300px;}
.y1f5{bottom:465.255589px;}
.y15d{bottom:466.068900px;}
.y1b4{bottom:469.429084px;}
.y10b{bottom:470.035650px;}
.y10d{bottom:470.036847px;}
.y161{bottom:471.338400px;}
.y43{bottom:471.968400px;}
.y225{bottom:472.738300px;}
.y44{bottom:473.924250px;}
.y42{bottom:473.925993px;}
.y5e{bottom:473.931423px;}
.y10f{bottom:475.255650px;}
.ybb{bottom:475.455000px;}
.yb9{bottom:475.459833px;}
.y17f{bottom:478.092522px;}
.yba{bottom:480.727500px;}
.y132{bottom:480.897924px;}
.y92{bottom:480.901396px;}
.y1f4{bottom:480.902686px;}
.y224{bottom:484.643567px;}
.y1b3{bottom:485.076181px;}
.y41{bottom:489.657972px;}
.y5d{bottom:489.663402px;}
.yb8{bottom:491.106930px;}
.y17e{bottom:493.824502px;}
.y131{bottom:496.629903px;}
.y15c{bottom:496.632700px;}
.y91{bottom:496.633376px;}
.y223{bottom:496.633954px;}
.y1f3{bottom:496.634665px;}
.y10a{bottom:499.777571px;}
.ye8{bottom:499.861995px;}
.y1b2{bottom:500.808160px;}
.yc{bottom:502.864502px;}
.y40{bottom:505.305069px;}
.y5c{bottom:505.310499px;}
.yb7{bottom:506.838909px;}
.y222{bottom:508.539221px;}
.y17d{bottom:509.471598px;}
.y130{bottom:512.277000px;}
.y15b{bottom:512.279797px;}
.y1f2{bottom:512.281762px;}
.y109{bottom:515.424667px;}
.ye7{bottom:515.593974px;}
.y1b1{bottom:516.455257px;}
.y221{bottom:520.529608px;}
.yb{bottom:520.864502px;}
.y3f{bottom:521.037048px;}
.y5b{bottom:521.042478px;}
.yb6{bottom:522.486006px;}
.y17c{bottom:525.203577px;}
.y90{bottom:528.012451px;}
.y1f1{bottom:528.013741px;}
.y108{bottom:531.156646px;}
.ye6{bottom:531.241071px;}
.y1b0{bottom:532.187236px;}
.y220{bottom:532.519994px;}
.y3e{bottom:536.684145px;}
.y5a{bottom:536.689575px;}
.yb5{bottom:538.217985px;}
.ya{bottom:538.864499px;}
.y17b{bottom:540.850674px;}
.y1f0{bottom:543.660838px;}
.y21f{bottom:544.425262px;}
.y107{bottom:546.803743px;}
.ye5{bottom:546.973050px;}
.y1af{bottom:547.834333px;}
.y3d{bottom:552.416124px;}
.y59{bottom:552.421554px;}
.yb4{bottom:553.865082px;}
.y21e{bottom:556.415648px;}
.y17a{bottom:556.582653px;}
.y9{bottom:556.864499px;}
.y178{bottom:557.092800px;}
.y1ef{bottom:559.392817px;}
.y106{bottom:562.535722px;}
.y1ae{bottom:563.566312px;}
.y58{bottom:568.068651px;}
.y21d{bottom:568.320916px;}
.yb3{bottom:569.597061px;}
.yd6{bottom:570.530422px;}
.y179{bottom:572.229750px;}
.y1ee{bottom:575.039913px;}
.y1ad{bottom:579.213409px;}
.y21c{bottom:580.311302px;}
.yd5{bottom:583.371048px;}
.y3c{bottom:583.795200px;}
.y57{bottom:583.800630px;}
.y104{bottom:584.071555px;}
.yb2{bottom:585.244158px;}
.y105{bottom:586.091250px;}
.y1ed{bottom:590.771893px;}
.y21b{bottom:592.301689px;}
.y103{bottom:593.296950px;}
.y1ac{bottom:594.945388px;}
.y12d{bottom:596.039602px;}
.yd4{bottom:596.211674px;}
.yb1{bottom:600.976137px;}
.y1cf{bottom:604.204073px;}
.y21a{bottom:604.206956px;}
.y1ec{bottom:606.503872px;}
.yd3{bottom:609.052301px;}
.y12c{bottom:609.476065px;}
.y1ab{bottom:610.677367px;}
.y219{bottom:616.197343px;}
.yb0{bottom:616.623234px;}
.y1ce{bottom:617.640536px;}
.yd2{bottom:621.978047px;}
.y1eb{bottom:622.150969px;}
.y102{bottom:622.318374px;}
.y12b{bottom:622.912529px;}
.y1aa{bottom:626.324464px;}
.y218{bottom:628.102610px;}
.y1cd{bottom:631.077000px;}
.y12a{bottom:636.348992px;}
.y1ea{bottom:637.882948px;}
.y101{bottom:638.050353px;}
.y217{bottom:640.092997px;}
.y1a9{bottom:642.056443px;}
.y8{bottom:645.510000px;}
.yd1{bottom:646.639777px;}
.yaf{bottom:648.002310px;}
.y3b{bottom:649.530479px;}
.y129{bottom:649.700336px;}
.y216{bottom:651.998264px;}
.yfe{bottom:652.846485px;}
.y1e9{bottom:653.530045px;}
.y100{bottom:653.697450px;}
.yfd{bottom:653.703991px;}
.y1a8{bottom:657.703540px;}
.yd0{bottom:659.480404px;}
.y128{bottom:663.136800px;}
.y3a{bottom:663.902143px;}
.y215{bottom:663.988651px;}
.y7{bottom:666.771000px;}
.y1e8{bottom:669.262024px;}
.yfc{bottom:669.435970px;}
.y1a7{bottom:673.435519px;}
.y214{bottom:675.979038px;}
.y39{bottom:678.188806px;}
.yae{bottom:682.528020px;}
.y1e7{bottom:684.909120px;}
.ycf{bottom:684.992374px;}
.yfb{bottom:685.083067px;}
.y213{bottom:687.884305px;}
.y1a6{bottom:689.082616px;}
.y38{bottom:692.560471px;}
.yce{bottom:697.833000px;}
.yad{bottom:698.260000px;}
.y212{bottom:699.874692px;}
.y1e6{bottom:700.641100px;}
.yfa{bottom:700.815046px;}
.y1a5{bottom:704.814595px;}
.y37{bottom:706.932135px;}
.y211{bottom:711.779959px;}
.yac{bottom:713.907096px;}
.y1e5{bottom:716.288196px;}
.yf9{bottom:716.462143px;}
.y1a4{bottom:720.461692px;}
.y36{bottom:721.303800px;}
.y210{bottom:723.770346px;}
.y6{bottom:726.298500px;}
.y8f{bottom:729.216564px;}
.yab{bottom:729.639076px;}
.y1e4{bottom:732.020176px;}
.yf8{bottom:732.194122px;}
.y20f{bottom:735.760733px;}
.y1a3{bottom:736.193671px;}
.y8e{bottom:744.948543px;}
.yaa{bottom:745.286172px;}
.y20e{bottom:747.666000px;}
.y1e3{bottom:747.667272px;}
.y35{bottom:751.407750px;}
.y1a2{bottom:751.840768px;}
.y3{bottom:752.599495px;}
.y8d{bottom:760.595640px;}
.ya9{bottom:761.018152px;}
.y1e2{bottom:763.399252px;}
.yf7{bottom:763.574393px;}
.y1a1{bottom:767.572747px;}
.y8c{bottom:776.327619px;}
.ya8{bottom:776.665248px;}
.y1e1{bottom:779.046348px;}
.y20d{bottom:779.059499px;}
.y1a0{bottom:783.219843px;}
.y8b{bottom:792.059598px;}
.ya7{bottom:792.397227px;}
.y1e0{bottom:794.778327px;}
.yf6{bottom:796.824474px;}
.y19f{bottom:798.951823px;}
.y34{bottom:800.730600px;}
.y33{bottom:804.982500px;}
.y8a{bottom:807.706695px;}
.ya6{bottom:808.044324px;}
.y1df{bottom:810.425424px;}
.y20c{bottom:810.438575px;}
.yf5{bottom:812.556453px;}
.y32{bottom:813.571500px;}
.y19e{bottom:814.598919px;}
.y31{bottom:817.823400px;}
.y89{bottom:823.438674px;}
.y1de{bottom:826.157403px;}
.y20b{bottom:826.170554px;}
.y30{bottom:826.412400px;}
.yf4{bottom:828.203550px;}
.y19d{bottom:830.330899px;}
.y2f{bottom:830.664300px;}
.y88{bottom:839.085771px;}
.y2e{bottom:839.338500px;}
.ya5{bottom:839.423400px;}
.y1dd{bottom:841.804500px;}
.y1db{bottom:841.805772px;}
.y20a{bottom:841.817651px;}
.y2d{bottom:843.505350px;}
.yf3{bottom:843.935529px;}
.y177{bottom:844.865636px;}
.y1dc{bottom:847.162050px;}
.y2c{bottom:852.179400px;}
.y2b{bottom:856.431300px;}
.y1da{bottom:857.537752px;}
.y209{bottom:857.549630px;}
.y176{bottom:858.302100px;}
.yf2{bottom:859.582625px;}
.y1d2{bottom:859.832636px;}
.y1cc{bottom:862.298359px;}
.y87{bottom:870.464847px;}
.yd8{bottom:871.397936px;}
.y1d9{bottom:873.184848px;}
.y208{bottom:873.196727px;}
.y1d1{bottom:873.269100px;}
.y28{bottom:874.544132px;}
.y2a{bottom:874.544700px;}
.y1cb{bottom:875.734823px;}
.y2{bottom:879.369000px;}
.y29{bottom:881.602950px;}
.yd7{bottom:884.834400px;}
.y1d8{bottom:888.916827px;}
.y1ca{bottom:889.171286px;}
.y127{bottom:891.552450px;}
.y26{bottom:894.018750px;}
.y27{bottom:900.991950px;}
.y1c9{bottom:902.607750px;}
.y1d7{bottom:904.563924px;}
.y86{bottom:904.566145px;}
.y207{bottom:904.575803px;}
.y79{bottom:919.427235px;}
.y1d6{bottom:920.295903px;}
.y85{bottom:920.298124px;}
.y1d0{bottom:921.403500px;}
.y25{bottom:926.843850px;}
.y1d4{bottom:933.987150px;}
.y1d5{bottom:935.943000px;}
.y84{bottom:935.945220px;}
.y206{bottom:935.954879px;}
.y83{bottom:951.677200px;}
.y205{bottom:951.686858px;}
.y1{bottom:966.726000px;}
.y82{bottom:967.324296px;}
.y204{bottom:967.333954px;}
.y81{bottom:983.056276px;}
.y203{bottom:983.065934px;}
.y80{bottom:998.703372px;}
.y202{bottom:998.713030px;}
.y24{bottom:1004.995050px;}
.y7f{bottom:1014.435352px;}
.y201{bottom:1014.445010px;}
.y7e{bottom:1030.082448px;}
.y200{bottom:1030.092106px;}
.y23{bottom:1043.858100px;}
.y7d{bottom:1045.814427px;}
.y1ff{bottom:1045.824086px;}
.y7c{bottom:1061.461524px;}
.y1fe{bottom:1061.471182px;}
.y7b{bottom:1077.193503px;}
.y22{bottom:1088.758800px;}
.y7a{bottom:1092.840600px;}
.y1fd{bottom:1092.850258px;}
.y76{bottom:1127.617200px;}
.y1d3{bottom:1127.622724px;}
.y12f{bottom:1127.627474px;}
.ye3{bottom:1127.628126px;}
.y22f{bottom:1127.632243px;}
.h16{height:6.120000px;}
.h1b{height:10.035000px;}
.h3e{height:10.035015px;}
.h25{height:10.204500px;}
.h3b{height:13.096515px;}
.h31{height:13.182000px;}
.h2b{height:14.797515px;}
.h10{height:19.278000px;}
.h24{height:22.632480px;}
.h29{height:22.668578px;}
.h2e{height:23.402520px;}
.h39{height:23.422651px;}
.h34{height:23.452848px;}
.h3d{height:23.563989px;}
.h15{height:24.098407px;}
.h11{height:28.921536px;}
.h19{height:28.959792px;}
.h42{height:28.970227px;}
.h1a{height:28.986696px;}
.h2a{height:28.989302px;}
.h41{height:29.008306px;}
.h17{height:29.030400px;}
.h37{height:30.613485px;}
.hf{height:31.931626px;}
.h7{height:32.130000px;}
.h23{height:32.366880px;}
.h38{height:32.394461px;}
.h33{height:32.436238px;}
.h21{height:32.462640px;}
.h1e{height:32.463047px;}
.h1c{height:32.463860px;}
.h27{height:32.514710px;}
.h13{height:32.537182px;}
.h40{height:33.408985px;}
.h2c{height:33.468120px;}
.h30{height:33.469378px;}
.h36{height:33.496639px;}
.h32{height:33.539837px;}
.h3c{height:33.699209px;}
.hc{height:34.479085px;}
.ha{height:36.152827px;}
.h3f{height:36.152932px;}
.h14{height:36.200648px;}
.h2f{height:36.610627px;}
.h2d{height:37.767744px;}
.h12{height:40.671137px;}
.h3a{height:43.102932px;}
.h6{height:45.900000px;}
.he{height:47.902428px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:61.087629px;}
.h1f{height:62.426726px;}
.h1d{height:62.522487px;}
.hb{height:63.266314px;}
.h22{height:65.308320px;}
.h20{height:65.404080px;}
.h28{height:65.413075px;}
.h26{height:65.508989px;}
.h18{height:65.772000px;}
.h35{height:66.643457px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w5{width:6.803970px;}
.wb{width:11.991000px;}
.w4{width:15.562500px;}
.w8{width:15.732000px;}
.wc{width:15.733500px;}
.w6{width:29.083470px;}
.w9{width:62.589000px;}
.w7{width:149.329500px;}
.wa{width:156.048015px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x38{left:8.010765px;}
.x56{left:54.838800px;}
.x8{left:56.381100px;}
.x22{left:64.459800px;}
.x2a{left:65.990550px;}
.x25{left:72.963750px;}
.x24{left:75.089949px;}
.x26{left:82.488150px;}
.x55{left:84.747300px;}
.x4b{left:90.716100px;}
.x61{left:91.927500px;}
.x2d{left:93.460214px;}
.x62{left:99.720750px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x63{left:108.000000px;}
.x4d{left:109.526100px;}
.x4e{left:111.571650px;}
.x54{left:127.218900px;}
.x19{left:129.855150px;}
.x9{left:134.022000px;}
.x1a{left:135.807900px;}
.xa{left:139.974750px;}
.x67{left:142.270800px;}
.x4c{left:145.620600px;}
.x68{left:151.285050px;}
.x33{left:169.398888px;}
.x2e{left:170.503950px;}
.x1b{left:201.798300px;}
.x4{left:203.484001px;}
.x64{left:205.369485px;}
.x1c{left:207.751050px;}
.xb{left:217.275600px;}
.x51{left:219.826650px;}
.xc{left:223.228200px;}
.x65{left:225.184200px;}
.x66{left:230.052600px;}
.x52{left:237.344850px;}
.x1d{left:282.160500px;}
.x7{left:285.732150px;}
.x1e{left:287.603100px;}
.xd{left:291.599850px;}
.xe{left:298.233000px;}
.x23{left:304.695900px;}
.x6{left:326.806200px;}
.x60{left:332.503800px;}
.x69{left:335.820300px;}
.x5{left:341.603100px;}
.x6a{left:345.089700px;}
.x2b{left:356.514675px;}
.x1f{left:358.185750px;}
.x4f{left:359.716500px;}
.x20{left:363.968400px;}
.xf{left:369.325950px;}
.x50{left:370.431450px;}
.x10{left:375.363750px;}
.x53{left:417.373050px;}
.x36{left:441.052215px;}
.x3{left:454.959000px;}
.x21{left:456.661350px;}
.x11{left:458.532150px;}
.x27{left:459.895451px;}
.x29{left:461.172277px;}
.x12{left:463.889700px;}
.x57{left:467.909700px;}
.x34{left:469.502250px;}
.x3b{left:471.053628px;}
.x35{left:477.070650px;}
.x28{left:478.604300px;}
.x58{left:481.556400px;}
.x48{left:488.603850px;}
.x47{left:489.685225px;}
.x3a{left:491.753349px;}
.x3e{left:494.947395px;}
.x41{left:498.585015px;}
.x3d{left:500.932395px;}
.x5b{left:503.262900px;}
.x49{left:504.965089px;}
.x4a{left:506.903354px;}
.x3f{left:507.997500px;}
.x42{left:511.766850px;}
.x5c{left:513.042450px;}
.x43{left:517.974015px;}
.x45{left:520.899600px;}
.x5a{left:527.811495px;}
.x44{left:540.924600px;}
.x46{left:547.823400px;}
.x13{left:555.391950px;}
.x59{left:558.437700px;}
.x14{left:562.195200px;}
.x31{left:590.853450px;}
.x32{left:599.782500px;}
.x15{left:634.308450px;}
.x16{left:640.346250px;}
.x17{left:705.486450px;}
.x37{left:706.846485px;}
.x18{left:712.204500px;}
.x40{left:713.990400px;}
.x39{left:729.467550px;}
.x2f{left:735.420300px;}
.x30{left:743.669100px;}
.x2c{left:761.690250px;}
.x5f{left:765.184050px;}
.x5d{left:785.933550px;}
.x5e{left:795.373050px;}
.x3c{left:820.799700px;}
@media print{
.v6{vertical-align:-32.828943pt;}
.v4{vertical-align:-10.720000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:4.800768pt;}
.v1{vertical-align:6.048424pt;}
.v2{vertical-align:26.719503pt;}
.v3{vertical-align:29.281280pt;}
.v7{vertical-align:32.828943pt;}
.ls49{letter-spacing:-1.126455pt;}
.ls5c{letter-spacing:-0.973427pt;}
.ls56{letter-spacing:-0.923418pt;}
.ls51{letter-spacing:-0.889700pt;}
.ls44{letter-spacing:-0.888412pt;}
.ls5f{letter-spacing:-0.884161pt;}
.ls62{letter-spacing:-0.875659pt;}
.ls46{letter-spacing:-0.870983pt;}
.ls52{letter-spacing:-0.867158pt;}
.ls4f{letter-spacing:-0.862482pt;}
.ls50{letter-spacing:-0.861366pt;}
.ls4e{letter-spacing:-0.858656pt;}
.lsc{letter-spacing:-0.854405pt;}
.ls3e{letter-spacing:-0.850155pt;}
.ls42{letter-spacing:-0.845904pt;}
.ls48{letter-spacing:-0.842078pt;}
.ls53{letter-spacing:-0.841248pt;}
.ls3f{letter-spacing:-0.837402pt;}
.ls5a{letter-spacing:-0.833577pt;}
.ls43{letter-spacing:-0.828901pt;}
.ls40{letter-spacing:-0.824225pt;}
.ls45{letter-spacing:-0.820399pt;}
.ls47{letter-spacing:-0.816148pt;}
.ls4d{letter-spacing:-0.799145pt;}
.ls61{letter-spacing:-0.785968pt;}
.ls57{letter-spacing:-0.773641pt;}
.lse{letter-spacing:-0.747711pt;}
.lsd{letter-spacing:-0.743885pt;}
.ls55{letter-spacing:-0.735384pt;}
.ls41{letter-spacing:-0.722631pt;}
.ls27{letter-spacing:-0.144704pt;}
.ls68{letter-spacing:-0.004673pt;}
.lsf{letter-spacing:-0.003741pt;}
.ls0{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.003274pt;}
.ls38{letter-spacing:0.008519pt;}
.ls58{letter-spacing:0.008530pt;}
.ls64{letter-spacing:0.025505pt;}
.ls8{letter-spacing:0.029755pt;}
.ls66{letter-spacing:0.063762pt;}
.ls30{letter-spacing:0.068096pt;}
.ls69{letter-spacing:0.081613pt;}
.lsb{letter-spacing:0.085015pt;}
.ls28{letter-spacing:0.089802pt;}
.ls2c{letter-spacing:0.089946pt;}
.ls14{letter-spacing:0.110520pt;}
.ls19{letter-spacing:0.129220pt;}
.ls18{letter-spacing:0.142822pt;}
.ls11{letter-spacing:0.144526pt;}
.ls6b{letter-spacing:0.176828pt;}
.ls4{letter-spacing:0.206495pt;}
.ls6a{letter-spacing:0.207433pt;}
.ls9{letter-spacing:0.216789pt;}
.ls7{letter-spacing:0.255046pt;}
.ls2{letter-spacing:2.087130pt;}
.ls1{letter-spacing:2.125387pt;}
.ls1d{letter-spacing:10.070082pt;}
.ls6c{letter-spacing:10.363385pt;}
.ls65{letter-spacing:11.069014pt;}
.ls54{letter-spacing:11.259873pt;}
.ls67{letter-spacing:11.269367pt;}
.ls15{letter-spacing:11.294305pt;}
.ls16{letter-spacing:11.395187pt;}
.ls1a{letter-spacing:11.940422pt;}
.ls23{letter-spacing:12.514277pt;}
.ls12{letter-spacing:12.845837pt;}
.lsa{letter-spacing:13.304921pt;}
.ls6{letter-spacing:13.908530pt;}
.ls33{letter-spacing:13.921283pt;}
.ls1b{letter-spacing:13.959540pt;}
.ls10{letter-spacing:14.091314pt;}
.ls34{letter-spacing:14.206084pt;}
.ls24{letter-spacing:14.235840pt;}
.ls5e{letter-spacing:15.145978pt;}
.ls60{letter-spacing:15.693855pt;}
.ls3c{letter-spacing:15.851134pt;}
.ls3b{letter-spacing:16.025415pt;}
.ls3d{letter-spacing:16.250706pt;}
.ls5b{letter-spacing:16.824561pt;}
.ls5{letter-spacing:19.252439pt;}
.ls13{letter-spacing:20.403712pt;}
.ls63{letter-spacing:20.671511pt;}
.ls36{letter-spacing:21.462155pt;}
.ls35{letter-spacing:21.780963pt;}
.ls1c{letter-spacing:21.844724pt;}
.ls4a{letter-spacing:22.469163pt;}
.ls3{letter-spacing:24.022600pt;}
.ls29{letter-spacing:25.920960pt;}
.ls1f{letter-spacing:26.208776pt;}
.ls22{letter-spacing:29.988202pt;}
.ls39{letter-spacing:43.524865pt;}
.ls2e{letter-spacing:56.226016pt;}
.ls26{letter-spacing:60.220952pt;}
.ls25{letter-spacing:63.055732pt;}
.ls5d{letter-spacing:64.601498pt;}
.ls2a{letter-spacing:66.400512pt;}
.ls2d{letter-spacing:66.506420pt;}
.ls2b{letter-spacing:67.070888pt;}
.ls20{letter-spacing:72.556288pt;}
.ls21{letter-spacing:75.646144pt;}
.ls59{letter-spacing:76.929969pt;}
.ls2f{letter-spacing:78.684928pt;}
.ls1e{letter-spacing:100.238568pt;}
.ls4c{letter-spacing:119.806400pt;}
.ls4b{letter-spacing:124.092192pt;}
.ls17{letter-spacing:138.690752pt;}
.ls37{letter-spacing:269.263780pt;}
.ls3a{letter-spacing:1010.029071pt;}
.ls32{letter-spacing:1095.957877pt;}
.ws127{word-spacing:-124.134752pt;}
.ws148{word-spacing:-61.155460pt;}
.ws105{word-spacing:-40.628202pt;}
.ws124{word-spacing:-22.511670pt;}
.ws13{word-spacing:-19.300260pt;}
.ws13f{word-spacing:-16.867069pt;}
.ws153{word-spacing:-15.736363pt;}
.ws130{word-spacing:-11.302381pt;}
.wsf7{word-spacing:-10.640400pt;}
.ws10b{word-spacing:-10.640000pt;}
.ws1cd{word-spacing:-10.405893pt;}
.ws4{word-spacing:-2.129637pt;}
.ws135{word-spacing:-0.042562pt;}
.ws4f{word-spacing:-0.042508pt;}
.wsf{word-spacing:-0.037545pt;}
.ws61{word-spacing:-0.034005pt;}
.ws129{word-spacing:-0.029760pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c4{word-spacing:0.013170pt;}
.ws131{word-spacing:0.692876pt;}
.ws120{word-spacing:0.773641pt;}
.ws4e{word-spacing:0.811898pt;}
.ws12d{word-spacing:0.833031pt;}
.ws11d{word-spacing:0.845904pt;}
.ws133{word-spacing:0.895084pt;}
.ws142{word-spacing:0.930919pt;}
.ws123{word-spacing:1.083947pt;}
.ws104{word-spacing:4.370912pt;}
.ws138{word-spacing:7.693900pt;}
.ws163{word-spacing:7.777020pt;}
.ws214{word-spacing:7.848431pt;}
.ws15f{word-spacing:7.957248pt;}
.ws164{word-spacing:8.514935pt;}
.ws160{word-spacing:8.562543pt;}
.ws161{word-spacing:8.606750pt;}
.ws1bf{word-spacing:8.749572pt;}
.ws15d{word-spacing:8.831185pt;}
.ws15e{word-spacing:8.844787pt;}
.ws114{word-spacing:8.875392pt;}
.ws1c0{word-spacing:8.878793pt;}
.ws1c1{word-spacing:8.940002pt;}
.ws1c2{word-spacing:8.991010pt;}
.ws15c{word-spacing:9.021615pt;}
.ws1bd{word-spacing:9.059021pt;}
.ws52{word-spacing:9.109407pt;}
.ws1bc{word-spacing:9.161037pt;}
.ws207{word-spacing:9.167838pt;}
.ws208{word-spacing:9.212045pt;}
.ws1b8{word-spacing:9.218846pt;}
.ws1bb{word-spacing:9.324262pt;}
.ws20f{word-spacing:9.613308pt;}
.ws1e5{word-spacing:9.793782pt;}
.ws20b{word-spacing:9.810539pt;}
.ws34{word-spacing:9.849042pt;}
.wsfa{word-spacing:9.861794pt;}
.ws29{word-spacing:9.866045pt;}
.wsd5{word-spacing:9.892151pt;}
.ws1e2{word-spacing:9.900051pt;}
.wsfb{word-spacing:9.959562pt;}
.ws47{word-spacing:9.980816pt;}
.ws68{word-spacing:10.006320pt;}
.wsc4{word-spacing:10.036076pt;}
.wsd9{word-spacing:10.058778pt;}
.wsc7{word-spacing:10.096183pt;}
.wsae{word-spacing:10.155097pt;}
.wsc1{word-spacing:10.167850pt;}
.ws28{word-spacing:10.227361pt;}
.ws107{word-spacing:10.244364pt;}
.ws1e9{word-spacing:10.257116pt;}
.ws144{word-spacing:10.269868pt;}
.ws10a{word-spacing:10.286871pt;}
.ws92{word-spacing:10.320878pt;}
.ws1cc{word-spacing:10.325128pt;}
.ws1d3{word-spacing:10.329379pt;}
.ws117{word-spacing:10.422635pt;}
.ws3e{word-spacing:10.469655pt;}
.ws1ce{word-spacing:10.473905pt;}
.ws57{word-spacing:10.495159pt;}
.ws1b6{word-spacing:10.534852pt;}
.ws106{word-spacing:10.575924pt;}
.ws79{word-spacing:10.584426pt;}
.ws15{word-spacing:10.589408pt;}
.ws17c{word-spacing:10.631184pt;}
.ws118{word-spacing:10.677675pt;}
.ws1b7{word-spacing:10.681075pt;}
.wsbd{word-spacing:10.720450pt;}
.ws121{word-spacing:10.742129pt;}
.wsaa{word-spacing:10.771460pt;}
.ws9f{word-spacing:10.792713pt;}
.wse2{word-spacing:10.809717pt;}
.ws145{word-spacing:10.890481pt;}
.ws67{word-spacing:11.001001pt;}
.ws8f{word-spacing:11.005252pt;}
.ws10{word-spacing:11.021129pt;}
.ws9b{word-spacing:11.022255pt;}
.wse4{word-spacing:11.026506pt;}
.ws110{word-spacing:11.027930pt;}
.ws212{word-spacing:11.041532pt;}
.ws1c3{word-spacing:11.051733pt;}
.ws179{word-spacing:11.052011pt;}
.wsf0{word-spacing:11.060512pt;}
.ws213{word-spacing:11.061935pt;}
.ws146{word-spacing:11.069014pt;}
.wsa0{word-spacing:11.073265pt;}
.wsb2{word-spacing:11.077515pt;}
.ws64{word-spacing:11.078938pt;}
.ws162{word-spacing:11.089139pt;}
.ws6a{word-spacing:11.090268pt;}
.ws111{word-spacing:11.092540pt;}
.wsb0{word-spacing:11.098769pt;}
.ws204{word-spacing:11.099341pt;}
.ws200{word-spacing:11.102741pt;}
.wsab{word-spacing:11.103020pt;}
.ws206{word-spacing:11.106142pt;}
.wsfc{word-spacing:11.107271pt;}
.ws1be{word-spacing:11.109542pt;}
.wscf{word-spacing:11.119744pt;}
.ws66{word-spacing:11.120084pt;}
.ws20c{word-spacing:11.126545pt;}
.ws14f{word-spacing:11.128525pt;}
.wsd6{word-spacing:11.129946pt;}
.ws10f{word-spacing:11.136747pt;}
.ws12{word-spacing:11.146948pt;}
.ws1ba{word-spacing:11.150349pt;}
.wsfd{word-spacing:11.154029pt;}
.wsc9{word-spacing:11.160550pt;}
.ws115{word-spacing:11.163951pt;}
.ws202{word-spacing:11.174153pt;}
.ws1c9{word-spacing:11.175283pt;}
.ws1ff{word-spacing:11.177553pt;}
.wsdb{word-spacing:11.204757pt;}
.ws51{word-spacing:11.205039pt;}
.ws203{word-spacing:11.211558pt;}
.ws20d{word-spacing:11.218359pt;}
.wsb1{word-spacing:11.226292pt;}
.ws205{word-spacing:11.235362pt;}
.wsdf{word-spacing:11.243295pt;}
.ws11{word-spacing:11.255765pt;}
.wsc5{word-spacing:11.269367pt;}
.ws116{word-spacing:11.276169pt;}
.wsd7{word-spacing:11.282970pt;}
.ws1a9{word-spacing:11.294305pt;}
.wsca{word-spacing:11.299972pt;}
.ws1e3{word-spacing:11.311308pt;}
.ws20a{word-spacing:11.316975pt;}
.ws176{word-spacing:11.319809pt;}
.ws63{word-spacing:11.320375pt;}
.ws65{word-spacing:11.327177pt;}
.ws20e{word-spacing:11.330577pt;}
.ws113{word-spacing:11.333978pt;}
.wsac{word-spacing:11.345314pt;}
.ws62{word-spacing:11.347580pt;}
.wscb{word-spacing:11.354381pt;}
.ws211{word-spacing:11.357781pt;}
.ws11b{word-spacing:11.361892pt;}
.wse8{word-spacing:11.370819pt;}
.ws177{word-spacing:11.375069pt;}
.wsb3{word-spacing:11.379320pt;}
.wsc6{word-spacing:11.381585pt;}
.wsd1{word-spacing:11.384986pt;}
.ws1d4{word-spacing:11.404825pt;}
.ws209{word-spacing:11.405389pt;}
.ws175{word-spacing:11.409076pt;}
.ws11c{word-spacing:11.417577pt;}
.ws210{word-spacing:11.429193pt;}
.ws166{word-spacing:11.442795pt;}
.ws201{word-spacing:11.459797pt;}
.wsde{word-spacing:11.468586pt;}
.ws1de{word-spacing:11.489840pt;}
.ws178{word-spacing:11.494091pt;}
.ws1dd{word-spacing:11.553602pt;}
.ws1c8{word-spacing:11.557853pt;}
.ws1a7{word-spacing:11.621614pt;}
.ws1e6{word-spacing:11.655620pt;}
.ws14{word-spacing:11.656766pt;}
.wse5{word-spacing:11.668373pt;}
.ws12c{word-spacing:11.691327pt;}
.ws1f3{word-spacing:11.715131pt;}
.wse6{word-spacing:11.770391pt;}
.ws165{word-spacing:11.854259pt;}
.wsf3{word-spacing:11.910667pt;}
.ws14e{word-spacing:11.923419pt;}
.wse7{word-spacing:11.944673pt;}
.ws1aa{word-spacing:11.965927pt;}
.ws19e{word-spacing:11.982930pt;}
.ws3{word-spacing:12.008435pt;}
.ws157{word-spacing:12.016936pt;}
.ws56{word-spacing:12.025438pt;}
.ws3d{word-spacing:12.229475pt;}
.ws2e{word-spacing:12.242227pt;}
.ws1ae{word-spacing:12.267732pt;}
.ws71{word-spacing:12.284735pt;}
.ws12e{word-spacing:12.305989pt;}
.ws1ad{word-spacing:12.391004pt;}
.ws108{word-spacing:12.399506pt;}
.ws4c{word-spacing:12.420760pt;}
.ws43{word-spacing:12.459017pt;}
.ws1b9{word-spacing:12.493559pt;}
.ws1d7{word-spacing:12.510026pt;}
.ws156{word-spacing:12.513427pt;}
.ws90{word-spacing:12.514277pt;}
.ws17b{word-spacing:12.586540pt;}
.ws1d{word-spacing:12.594051pt;}
.ws9e{word-spacing:12.612044pt;}
.ws3a{word-spacing:12.629048pt;}
.ws1e4{word-spacing:12.641800pt;}
.wsd4{word-spacing:12.649984pt;}
.ws4b{word-spacing:12.692809pt;}
.ws1eb{word-spacing:12.803329pt;}
.ws9d{word-spacing:12.816082pt;}
.ws12f{word-spacing:12.850088pt;}
.ws1b2{word-spacing:12.867091pt;}
.ws119{word-spacing:12.875592pt;}
.ws198{word-spacing:12.888345pt;}
.ws7c{word-spacing:12.905348pt;}
.ws199{word-spacing:12.956357pt;}
.ws182{word-spacing:13.058376pt;}
.ws181{word-spacing:13.062626pt;}
.ws2f{word-spacing:13.105134pt;}
.ws132{word-spacing:13.164645pt;}
.ws31{word-spacing:13.177397pt;}
.ws23{word-spacing:13.190150pt;}
.ws21{word-spacing:13.194400pt;}
.ws30{word-spacing:13.198651pt;}
.ws194{word-spacing:13.249660pt;}
.ws195{word-spacing:13.283667pt;}
.ws196{word-spacing:13.334676pt;}
.ws39{word-spacing:13.389936pt;}
.ws3f{word-spacing:13.415441pt;}
.ws22{word-spacing:13.453698pt;}
.ws1ca{word-spacing:13.479202pt;}
.ws59{word-spacing:13.517459pt;}
.ws1f0{word-spacing:13.542964pt;}
.ws24{word-spacing:13.657735pt;}
.ws27{word-spacing:13.661985pt;}
.wsba{word-spacing:13.700242pt;}
.ws54{word-spacing:13.721496pt;}
.ws1f{word-spacing:13.742750pt;}
.wsbb{word-spacing:13.781007pt;}
.ws1ea{word-spacing:13.810763pt;}
.ws4d{word-spacing:13.853270pt;}
.ws49{word-spacing:13.866023pt;}
.ws4a{word-spacing:13.883026pt;}
.ws25{word-spacing:13.887276pt;}
.ws87{word-spacing:13.891527pt;}
.ws96{word-spacing:13.900029pt;}
.ws1b5{word-spacing:13.904280pt;}
.ws26{word-spacing:13.908530pt;}
.ws46{word-spacing:13.912781pt;}
.ws74{word-spacing:13.917032pt;}
.ws77{word-spacing:13.925533pt;}
.ws80{word-spacing:13.942537pt;}
.ws8c{word-spacing:13.946787pt;}
.ws17f{word-spacing:13.959540pt;}
.ws60{word-spacing:13.963790pt;}
.ws8d{word-spacing:13.972292pt;}
.ws109{word-spacing:13.980793pt;}
.ws1a0{word-spacing:13.989295pt;}
.ws76{word-spacing:13.993546pt;}
.ws1d6{word-spacing:13.997797pt;}
.ws3c{word-spacing:14.002047pt;}
.ws75{word-spacing:14.014800pt;}
.wsd3{word-spacing:14.016998pt;}
.ws5e{word-spacing:14.023301pt;}
.ws1cf{word-spacing:14.027552pt;}
.ws103{word-spacing:14.048806pt;}
.ws1{word-spacing:14.053057pt;}
.wse1{word-spacing:14.057307pt;}
.ws5f{word-spacing:14.082812pt;}
.ws78{word-spacing:14.095564pt;}
.ws86{word-spacing:14.099815pt;}
.wsc2{word-spacing:14.112567pt;}
.ws10e{word-spacing:14.116818pt;}
.ws97{word-spacing:14.125320pt;}
.ws16f{word-spacing:14.138072pt;}
.wsee{word-spacing:14.142323pt;}
.ws58{word-spacing:14.180155pt;}
.wsef{word-spacing:14.184831pt;}
.wsd2{word-spacing:14.193826pt;}
.wsa7{word-spacing:14.197583pt;}
.wsa6{word-spacing:14.214586pt;}
.ws7f{word-spacing:14.248592pt;}
.wseb{word-spacing:14.261345pt;}
.wsb4{word-spacing:14.274097pt;}
.ws53{word-spacing:14.320855pt;}
.ws11a{word-spacing:14.359112pt;}
.ws5c{word-spacing:14.363363pt;}
.ws125{word-spacing:14.376115pt;}
.ws1c7{word-spacing:14.384617pt;}
.wse0{word-spacing:14.401620pt;}
.ws1c{word-spacing:14.422713pt;}
.ws1a{word-spacing:14.453318pt;}
.ws7e{word-spacing:14.465382pt;}
.ws5b{word-spacing:14.495137pt;}
.ws19f{word-spacing:14.537645pt;}
.ws136{word-spacing:14.588654pt;}
.ws16a{word-spacing:14.618409pt;}
.ws112{word-spacing:14.635895pt;}
.ws1b{word-spacing:14.663729pt;}
.ws1a8{word-spacing:14.690673pt;}
.ws150{word-spacing:14.762936pt;}
.ws17a{word-spacing:14.801193pt;}
.ws169{word-spacing:14.843700pt;}
.ws1d5{word-spacing:14.847951pt;}
.ws19c{word-spacing:14.869205pt;}
.ws1b0{word-spacing:14.924465pt;}
.ws99{word-spacing:14.932967pt;}
.ws1df{word-spacing:14.962722pt;}
.ws126{word-spacing:14.979725pt;}
.ws93{word-spacing:14.992478pt;}
.ws15b{word-spacing:15.026484pt;}
.ws192{word-spacing:15.120001pt;}
.ws193{word-spacing:15.226270pt;}
.wsbc{word-spacing:15.307035pt;}
.ws139{word-spacing:15.579509pt;}
.ws5a{word-spacing:15.596087pt;}
.ws13a{word-spacing:15.604589pt;}
.wsff{word-spacing:15.608840pt;}
.ws1e1{word-spacing:15.613090pt;}
.wsec{word-spacing:15.668351pt;}
.ws16d{word-spacing:15.672601pt;}
.ws32{word-spacing:15.681103pt;}
.ws2d{word-spacing:15.689604pt;}
.wsbe{word-spacing:15.702357pt;}
.wse9{word-spacing:15.710858pt;}
.ws2c{word-spacing:15.715109pt;}
.wsc3{word-spacing:15.723611pt;}
.ws2a{word-spacing:15.740614pt;}
.ws101{word-spacing:15.753366pt;}
.ws102{word-spacing:15.791623pt;}
.ws2b{word-spacing:15.846883pt;}
.ws137{word-spacing:15.851134pt;}
.ws1fd{word-spacing:15.863886pt;}
.ws1d8{word-spacing:15.872388pt;}
.ws7b{word-spacing:15.897892pt;}
.ws50{word-spacing:15.957403pt;}
.ws100{word-spacing:16.004162pt;}
.ws1f1{word-spacing:16.025415pt;}
.wsd0{word-spacing:16.026714pt;}
.ws85{word-spacing:16.080676pt;}
.ws12a{word-spacing:16.097679pt;}
.ws83{word-spacing:16.101929pt;}
.ws12b{word-spacing:16.161440pt;}
.ws8a{word-spacing:16.165691pt;}
.ws1d1{word-spacing:16.199697pt;}
.ws41{word-spacing:16.216700pt;}
.ws42{word-spacing:16.246456pt;}
.ws84{word-spacing:16.305967pt;}
.ws16b{word-spacing:16.331471pt;}
.ws18f{word-spacing:16.352725pt;}
.ws1d9{word-spacing:16.407985pt;}
.ws72{word-spacing:16.463245pt;}
.ws1f6{word-spacing:16.475997pt;}
.ws73{word-spacing:16.501502pt;}
.ws1fb{word-spacing:16.548261pt;}
.ws9c{word-spacing:16.646028pt;}
.ws70{word-spacing:16.692787pt;}
.ws172{word-spacing:16.697038pt;}
.ws174{word-spacing:16.765050pt;}
.ws98{word-spacing:16.803307pt;}
.ws197{word-spacing:16.824561pt;}
.wsbf{word-spacing:16.879821pt;}
.ws18c{word-spacing:16.884072pt;}
.ws173{word-spacing:16.913827pt;}
.ws55{word-spacing:17.041350pt;}
.ws18b{word-spacing:17.083858pt;}
.ws6b{word-spacing:17.122115pt;}
.ws1f2{word-spacing:17.126366pt;}
.wsdc{word-spacing:17.143369pt;}
.wsdd{word-spacing:17.151870pt;}
.wsaf{word-spacing:17.164623pt;}
.ws1f8{word-spacing:17.211381pt;}
.ws151{word-spacing:17.215632pt;}
.ws1ac{word-spacing:17.236886pt;}
.ws14c{word-spacing:17.289595pt;}
.ws6e{word-spacing:17.300647pt;}
.ws1f7{word-spacing:17.317651pt;}
.ws6f{word-spacing:17.321901pt;}
.ws1ab{word-spacing:17.326152pt;}
.ws189{word-spacing:17.351657pt;}
.wsa9{word-spacing:17.368660pt;}
.ws1db{word-spacing:17.372911pt;}
.ws1a4{word-spacing:17.423920pt;}
.ws18a{word-spacing:17.428171pt;}
.ws154{word-spacing:17.436247pt;}
.ws155{word-spacing:17.479180pt;}
.ws1f4{word-spacing:17.525938pt;}
.ws1f5{word-spacing:17.598202pt;}
.wsfe{word-spacing:17.602452pt;}
.ws1ed{word-spacing:17.606703pt;}
.ws45{word-spacing:17.619455pt;}
.ws14b{word-spacing:17.649211pt;}
.ws14a{word-spacing:17.666214pt;}
.wsed{word-spacing:17.670465pt;}
.ws167{word-spacing:17.708722pt;}
.wsa8{word-spacing:17.717223pt;}
.ws14d{word-spacing:17.831994pt;}
.ws1d2{word-spacing:17.904257pt;}
.ws152{word-spacing:18.087041pt;}
.ws19d{word-spacing:18.099793pt;}
.ws44{word-spacing:18.172056pt;}
.ws13e{word-spacing:18.270249pt;}
.ws38{word-spacing:18.363341pt;}
.ws1a5{word-spacing:18.469610pt;}
.ws20{word-spacing:18.507867pt;}
.wsb{word-spacing:18.603377pt;}
.ws188{word-spacing:18.618387pt;}
.wsa{word-spacing:18.670964pt;}
.wsd8{word-spacing:18.685931pt;}
.wsc{word-spacing:18.699125pt;}
.ws9{word-spacing:18.716022pt;}
.wsd{word-spacing:18.727287pt;}
.ws91{word-spacing:18.728907pt;}
.wse{word-spacing:18.755448pt;}
.ws183{word-spacing:18.796920pt;}
.ws8{word-spacing:18.811771pt;}
.ws171{word-spacing:18.864932pt;}
.ws1a6{word-spacing:18.920192pt;}
.ws10d{word-spacing:18.937195pt;}
.ws170{word-spacing:18.966951pt;}
.ws3b{word-spacing:18.979703pt;}
.ws190{word-spacing:19.043465pt;}
.ws1c5{word-spacing:19.060468pt;}
.ws191{word-spacing:19.098725pt;}
.ws10c{word-spacing:19.115728pt;}
.wsf1{word-spacing:19.162486pt;}
.wsf2{word-spacing:19.170988pt;}
.ws1e7{word-spacing:19.353771pt;}
.ws1a1{word-spacing:19.455790pt;}
.ws1e8{word-spacing:19.460040pt;}
.ws11e{word-spacing:19.485545pt;}
.wsb7{word-spacing:19.540805pt;}
.ws40{word-spacing:19.583313pt;}
.ws17e{word-spacing:19.630071pt;}
.ws1dc{word-spacing:19.736341pt;}
.ws5d{word-spacing:19.770347pt;}
.wse3{word-spacing:19.842610pt;}
.ws1af{word-spacing:19.931876pt;}
.wsb8{word-spacing:20.008390pt;}
.ws168{word-spacing:20.140164pt;}
.wsad{word-spacing:20.148666pt;}
.wsa1{word-spacing:20.288941pt;}
.ws6d{word-spacing:20.399461pt;}
.ws143{word-spacing:20.454721pt;}
.ws19b{word-spacing:20.475975pt;}
.ws19a{word-spacing:20.514232pt;}
.ws141{word-spacing:20.726771pt;}
.ws69{word-spacing:20.956313pt;}
.ws1ec{word-spacing:21.054080pt;}
.ws1e{word-spacing:21.232613pt;}
.ws7d{word-spacing:21.338882pt;}
.ws180{word-spacing:21.377139pt;}
.wsa4{word-spacing:21.398393pt;}
.ws1b1{word-spacing:21.449402pt;}
.wsa3{word-spacing:21.517415pt;}
.wsf8{word-spacing:21.657690pt;}
.ws6c{word-spacing:21.661941pt;}
.wsa2{word-spacing:21.683195pt;}
.wsf6{word-spacing:21.700198pt;}
.wsf5{word-spacing:21.810718pt;}
.ws94{word-spacing:21.925489pt;}
.wsf9{word-spacing:21.946743pt;}
.ws95{word-spacing:21.963746pt;}
.wsf4{word-spacing:21.967997pt;}
.ws17d{word-spacing:22.074266pt;}
.ws1fe{word-spacing:22.104021pt;}
.wsda{word-spacing:22.270093pt;}
.ws33{word-spacing:22.410077pt;}
.ws1c6{word-spacing:22.567356pt;}
.ws1fa{word-spacing:22.779894pt;}
.ws1f9{word-spacing:22.852157pt;}
.ws1e0{word-spacing:23.081699pt;}
.ws13c{word-spacing:23.111455pt;}
.ws13b{word-spacing:23.115705pt;}
.ws13d{word-spacing:23.120381pt;}
.ws15a{word-spacing:23.251730pt;}
.ws184{word-spacing:23.268733pt;}
.ws16{word-spacing:23.424475pt;}
.ws134{word-spacing:23.439189pt;}
.wsb9{word-spacing:23.472770pt;}
.ws19{word-spacing:23.543071pt;}
.ws11f{word-spacing:23.561612pt;}
.ws89{word-spacing:23.570538pt;}
.ws18{word-spacing:23.585153pt;}
.ws17{word-spacing:23.673143pt;}
.ws6{word-spacing:23.728505pt;}
.wsa5{word-spacing:23.774575pt;}
.ws5{word-spacing:23.929350pt;}
.ws1fc{word-spacing:23.965860pt;}
.ws122{word-spacing:24.004117pt;}
.ws7{word-spacing:24.072812pt;}
.wsea{word-spacing:24.093383pt;}
.ws7a{word-spacing:24.382436pt;}
.ws1b4{word-spacing:24.484454pt;}
.ws18d{word-spacing:24.509959pt;}
.ws1ee{word-spacing:24.645984pt;}
.ws1b3{word-spacing:24.679993pt;}
.ws35{word-spacing:24.696993pt;}
.ws2{word-spacing:24.889957pt;}
.ws48{word-spacing:24.986046pt;}
.ws1a2{word-spacing:25.292101pt;}
.ws1a3{word-spacing:25.406872pt;}
.ws82{word-spacing:25.479135pt;}
.ws81{word-spacing:25.695925pt;}
.ws1ef{word-spacing:25.700176pt;}
.ws1d0{word-spacing:26.193265pt;}
.ws36{word-spacing:26.575835pt;}
.ws37{word-spacing:26.609841pt;}
.ws9a{word-spacing:27.119934pt;}
.ws16e{word-spacing:27.217702pt;}
.wsb5{word-spacing:27.481250pt;}
.ws1da{word-spacing:27.502503pt;}
.ws16c{word-spacing:27.808559pt;}
.ws158{word-spacing:27.991342pt;}
.ws187{word-spacing:28.488683pt;}
.ws159{word-spacing:28.599203pt;}
.ws185{word-spacing:28.709723pt;}
.ws186{word-spacing:29.049785pt;}
.ws8e{word-spacing:29.789420pt;}
.wsb6{word-spacing:30.733091pt;}
.ws18e{word-spacing:30.907373pt;}
.ws88{word-spacing:30.975385pt;}
.ws140{word-spacing:31.030645pt;}
.wsc0{word-spacing:31.936060pt;}
.ws8b{word-spacing:34.278236pt;}
.ws1cb{word-spacing:41.712839pt;}
.ws128{word-spacing:46.788374pt;}
.wsc8{word-spacing:52.864691pt;}
.wsce{word-spacing:74.760725pt;}
.wscd{word-spacing:93.905728pt;}
.ws149{word-spacing:151.867839pt;}
.ws147{word-spacing:173.460517pt;}
.wscc{word-spacing:205.477227pt;}
._27{margin-left:-541.044000pt;}
._33{margin-left:-295.115725pt;}
._22{margin-left:-59.754240pt;}
._2d{margin-left:-57.207047pt;}
._20{margin-left:-54.866159pt;}
._26{margin-left:-50.735776pt;}
._2a{margin-left:-36.958944pt;}
._30{margin-left:-30.366879pt;}
._25{margin-left:-24.233659pt;}
._24{margin-left:-23.158213pt;}
._2e{margin-left:-18.619662pt;}
._2f{margin-left:-17.581199pt;}
._34{margin-left:-16.646028pt;}
._32{margin-left:-15.098321pt;}
._2c{margin-left:-12.816082pt;}
._2b{margin-left:-11.923419pt;}
._38{margin-left:-9.789531pt;}
._35{margin-left:-6.950441pt;}
._21{margin-left:-4.541152pt;}
._c{margin-left:-2.108384pt;}
._d{margin-left:-1.075446pt;}
._0{width:0.943672pt;}
._31{width:4.004049pt;}
._23{width:7.868834pt;}
._36{width:8.933201pt;}
._e{width:9.887299pt;}
._6{width:10.877729pt;}
._1{width:12.473156pt;}
._5{width:14.150824pt;}
._3{width:15.436511pt;}
._7{width:16.752298pt;}
._13{width:18.342087pt;}
._4{width:19.515300pt;}
._b{width:20.871297pt;}
._2{width:22.383898pt;}
._8{width:23.523780pt;}
._12{width:24.748002pt;}
._9{width:25.793693pt;}
._a{width:27.553513pt;}
._37{width:28.858500pt;}
._11{width:30.839361pt;}
._f{width:31.936060pt;}
._10{width:35.379186pt;}
._15{width:53.456384pt;}
._1a{width:74.794731pt;}
._16{width:93.973739pt;}
._28{width:104.570688pt;}
._18{width:112.098581pt;}
._29{width:127.131744pt;}
._14{width:130.710277pt;}
._1d{width:205.511232pt;}
._1b{width:211.298940pt;}
._17{width:267.985830pt;}
._1e{width:270.838878pt;}
._1c{width:282.842761pt;}
._19{width:316.783484pt;}
._1f{width:1871.145920pt;}
.fsa{font-size:22.666667pt;}
.fse{font-size:28.334400pt;}
.fs14{font-size:29.760000pt;}
.fs1a{font-size:29.785600pt;}
.fs16{font-size:29.807467pt;}
.fs18{font-size:29.824000pt;}
.fs1c{font-size:29.965333pt;}
.fsb{font-size:34.005333pt;}
.fsf{font-size:34.133333pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:37.544533pt;}
.fsd{font-size:38.256533pt;}
.fs1d{font-size:42.484800pt;}
.fs5{font-size:42.507733pt;}
.fs13{font-size:42.560000pt;}
.fs12{font-size:42.560533pt;}
.fs11{font-size:42.561600pt;}
.fs19{font-size:42.596267pt;}
.fs15{font-size:42.628267pt;}
.fs17{font-size:42.651200pt;}
.fs1b{font-size:42.853867pt;}
.fsc{font-size:47.820267pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:56.322667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:71.730667pt;}
.fs6{font-size:74.387200pt;}
.fs10{font-size:77.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y18d{bottom:0.839213pt;}
.y150{bottom:0.839333pt;}
.yff{bottom:0.839880pt;}
.y143{bottom:2.393067pt;}
.y11d{bottom:3.510933pt;}
.y119{bottom:3.511200pt;}
.y153{bottom:3.539467pt;}
.y189{bottom:3.585613pt;}
.y13f{bottom:5.073067pt;}
.y160{bottom:11.839453pt;}
.ye4{bottom:36.753080pt;}
.y5{bottom:59.133337pt;}
.ydb{bottom:64.857043pt;}
.y1c8{bottom:64.857088pt;}
.y15a{bottom:64.857213pt;}
.ye2{bottom:64.857530pt;}
.y78{bottom:64.859747pt;}
.y19c{bottom:64.859934pt;}
.y12e{bottom:65.385733pt;}
.yda{bottom:76.270933pt;}
.ye1{bottom:76.271420pt;}
.y77{bottom:76.286400pt;}
.y1c7{bottom:78.765595pt;}
.y159{bottom:78.765744pt;}
.y19b{bottom:78.768464pt;}
.yd9{bottom:80.050400pt;}
.y4{bottom:86.333337pt;}
.y72{bottom:87.685310pt;}
.y158{bottom:92.749725pt;}
.y19a{bottom:92.752446pt;}
.y1c6{bottom:92.762010pt;}
.y71{bottom:99.099200pt;}
.ye0{bottom:102.878800pt;}
.y157{bottom:106.658256pt;}
.y199{bottom:106.660976pt;}
.y1c5{bottom:106.670540pt;}
.ydf{bottom:110.513891pt;}
.y198{bottom:120.644958pt;}
.y1c4{bottom:120.654522pt;}
.y75{bottom:121.171977pt;}
.yde{bottom:122.003443pt;}
.y21{bottom:123.790666pt;}
.y152{bottom:124.950667pt;}
.y155{bottom:125.804400pt;}
.y156{bottom:127.445600pt;}
.y154{bottom:128.490133pt;}
.y74{bottom:132.585867pt;}
.ydd{bottom:133.417333pt;}
.y197{bottom:134.553488pt;}
.y1c3{bottom:134.563052pt;}
.y73{bottom:136.365333pt;}
.ydc{bottom:137.196800pt;}
.y14f{bottom:146.721333pt;}
.y151{bottom:147.477067pt;}
.y14e{bottom:147.477203pt;}
.y196{bottom:148.537470pt;}
.y1c2{bottom:148.547034pt;}
.y14d{bottom:161.385733pt;}
.ya3{bottom:162.526770pt;}
.y1c1{bottom:162.531016pt;}
.ya4{bottom:167.206267pt;}
.y174{bottom:168.719264pt;}
.ycd{bottom:168.720320pt;}
.y70{bottom:169.559645pt;}
.y56{bottom:170.233393pt;}
.y175{bottom:173.480400pt;}
.y14b{bottom:173.555867pt;}
.y18{bottom:175.052000pt;}
.y14c{bottom:175.370000pt;}
.y14a{bottom:175.370136pt;}
.y195{bottom:176.429982pt;}
.ya2{bottom:176.435301pt;}
.y173{bottom:182.703246pt;}
.ycc{bottom:182.704301pt;}
.y6f{bottom:183.543627pt;}
.y55{bottom:184.141923pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y148{bottom:187.540133pt;}
.y149{bottom:189.278667pt;}
.y147{bottom:189.278952pt;}
.ya1{bottom:190.419282pt;}
.y1c0{bottom:190.424590pt;}
.y172{bottom:196.611776pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y6e{bottom:197.452157pt;}
.y54{bottom:198.125905pt;}
.y145{bottom:201.448800pt;}
.y144{bottom:203.262907pt;}
.y146{bottom:203.262933pt;}
.ya0{bottom:204.327812pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y171{bottom:210.595758pt;}
.ycb{bottom:210.596813pt;}
.y6d{bottom:211.436139pt;}
.y53{bottom:212.034435pt;}
.y194{bottom:215.736883pt;}
.y9f{bottom:218.311794pt;}
.y13e{bottom:221.480000pt;}
.y142{bottom:223.873067pt;}
.y170{bottom:224.504288pt;}
.y141{bottom:225.352875pt;}
.y52{bottom:226.018417pt;}
.y6c{bottom:226.024793pt;}
.y140{bottom:226.553067pt;}
.y1bf{bottom:227.086447pt;}
.y193{bottom:229.720864pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y9e{bottom:232.220324pt;}
.y16f{bottom:238.488270pt;}
.y51{bottom:239.926947pt;}
.y6b{bottom:239.933323pt;}
.y1be{bottom:241.070429pt;}
.yca{bottom:241.286334pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y192{bottom:243.629395pt;}
.y13d{bottom:245.443519pt;}
.y9d{bottom:246.204306pt;}
.y16e{bottom:252.396800pt;}
.y16c{bottom:252.397609pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y50{bottom:253.910928pt;}
.y6a{bottom:253.917305pt;}
.y1bd{bottom:254.978959pt;}
.yc9{bottom:255.194864pt;}
.y16d{bottom:257.159067pt;}
.y191{bottom:257.613376pt;}
.y13c{bottom:259.427501pt;}
.y9c{bottom:260.112836pt;}
.y16b{bottom:266.381591pt;}
.y4f{bottom:267.894910pt;}
.y69{bottom:267.901286pt;}
.y1bc{bottom:268.962941pt;}
.yc8{bottom:269.178846pt;}
.y190{bottom:271.521907pt;}
.y13b{bottom:273.336031pt;}
.y9b{bottom:274.096818pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.yf1{bottom:279.536294pt;}
.y4e{bottom:281.803440pt;}
.y68{bottom:281.809817pt;}
.y1bb{bottom:282.871471pt;}
.yc7{bottom:283.087376pt;}
.y124{bottom:284.788384pt;}
.y18f{bottom:285.505888pt;}
.y126{bottom:286.563733pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y13a{bottom:287.320013pt;}
.y122{bottom:287.472326pt;}
.y125{bottom:292.280490pt;}
.yf0{bottom:293.444824pt;}
.y16a{bottom:294.274103pt;}
.y4d{bottom:295.787422pt;}
.y67{bottom:295.793798pt;}
.y121{bottom:296.567067pt;}
.yc6{bottom:297.071358pt;}
.y18e{bottom:299.414418pt;}
.y123{bottom:301.214533pt;}
.y139{bottom:301.228543pt;}
.y9a{bottom:301.989330pt;}
.yef{bottom:307.428806pt;}
.yf{bottom:309.452000pt;}
.y4c{bottom:309.695952pt;}
.y66{bottom:309.702328pt;}
.y188{bottom:309.921320pt;}
.y1ba{bottom:310.763983pt;}
.y18a{bottom:310.808400pt;}
.yc5{bottom:310.979888pt;}
.y18c{bottom:312.642653pt;}
.y18b{bottom:313.398400pt;}
.y187{bottom:313.401083pt;}
.y138{bottom:315.212525pt;}
.y99{bottom:315.897860pt;}
.y1fc{bottom:315.899006pt;}
.y11c{bottom:317.026667pt;}
.y11f{bottom:317.857600pt;}
.y120{bottom:320.503867pt;}
.y11b{bottom:320.504152pt;}
.y11e{bottom:320.537600pt;}
.yee{bottom:321.337336pt;}
.y4b{bottom:323.679934pt;}
.y65{bottom:323.686310pt;}
.y22e{bottom:324.515713pt;}
.yc4{bottom:324.963870pt;}
.y186{bottom:327.309614pt;}
.y169{bottom:327.383376pt;}
.y137{bottom:329.121055pt;}
.y98{bottom:329.881842pt;}
.y1fb{bottom:329.882988pt;}
.y118{bottom:331.010667pt;}
.y11a{bottom:334.488133pt;}
.y117{bottom:334.488843pt;}
.y22d{bottom:335.173835pt;}
.yed{bottom:335.321318pt;}
.y4a{bottom:337.588464pt;}
.y64{bottom:337.594840pt;}
.yc3{bottom:338.872400pt;}
.yc1{bottom:338.873680pt;}
.y185{bottom:341.293595pt;}
.y168{bottom:341.367358pt;}
.y136{bottom:343.105037pt;}
.yc2{bottom:343.634533pt;}
.y97{bottom:343.790372pt;}
.y1fa{bottom:343.791518pt;}
.ye{bottom:343.809333pt;}
.y22c{bottom:345.831956pt;}
.y1b9{bottom:347.501292pt;}
.y116{bottom:348.397373pt;}
.yec{bottom:349.305300pt;}
.y49{bottom:351.572446pt;}
.y63{bottom:351.578822pt;}
.yc0{bottom:352.857661pt;}
.y184{bottom:355.202125pt;}
.y167{bottom:355.275888pt;}
.y22b{bottom:356.414416pt;}
.y96{bottom:357.774354pt;}
.y1f9{bottom:357.775500pt;}
.y1b8{bottom:361.485273pt;}
.y115{bottom:362.381355pt;}
.yd{bottom:362.706666pt;}
.yeb{bottom:363.213830pt;}
.y48{bottom:365.480976pt;}
.y62{bottom:365.487352pt;}
.ybf{bottom:366.766192pt;}
.y22a{bottom:367.072538pt;}
.y183{bottom:369.186107pt;}
.y166{bottom:369.259870pt;}
.y135{bottom:370.998611pt;}
.y95{bottom:371.682884pt;}
.y1f8{bottom:371.684030pt;}
.y1b7{bottom:375.393804pt;}
.y114{bottom:376.289885pt;}
.yea{bottom:377.197811pt;}
.y229{bottom:377.654997pt;}
.y47{bottom:379.464958pt;}
.y61{bottom:379.471334pt;}
.ybe{bottom:380.750173pt;}
.y164{bottom:381.429867pt;}
.y163{bottom:383.168198pt;}
.y165{bottom:383.168400pt;}
.y182{bottom:383.170089pt;}
.y1f7{bottom:385.668012pt;}
.y228{bottom:388.313119pt;}
.y112{bottom:388.459733pt;}
.y1b6{bottom:389.377785pt;}
.y113{bottom:390.273867pt;}
.y111{bottom:390.274287pt;}
.y46{bottom:393.373488pt;}
.y60{bottom:393.379864pt;}
.ybd{bottom:394.658704pt;}
.y181{bottom:397.078619pt;}
.y227{bottom:398.971241pt;}
.y134{bottom:399.572309pt;}
.y94{bottom:399.575396pt;}
.y1f6{bottom:399.576542pt;}
.y15f{bottom:402.444013pt;}
.y1b5{bottom:403.286316pt;}
.y162{bottom:403.394066pt;}
.ye9{bottom:405.090323pt;}
.y15e{bottom:406.076231pt;}
.y45{bottom:407.357470pt;}
.y5f{bottom:407.363846pt;}
.ybc{bottom:408.642685pt;}
.y226{bottom:409.553700pt;}
.y10c{bottom:409.610283pt;}
.y10e{bottom:409.611347pt;}
.y180{bottom:411.062601pt;}
.y110{bottom:411.212533pt;}
.y133{bottom:413.556291pt;}
.y93{bottom:413.559377pt;}
.y1f5{bottom:413.560524pt;}
.y15d{bottom:414.283467pt;}
.y1b4{bottom:417.270297pt;}
.y10b{bottom:417.809467pt;}
.y10d{bottom:417.810531pt;}
.y161{bottom:418.967467pt;}
.y43{bottom:419.527467pt;}
.y225{bottom:420.211822pt;}
.y44{bottom:421.266000pt;}
.y42{bottom:421.267549pt;}
.y5e{bottom:421.272376pt;}
.y10f{bottom:422.449467pt;}
.ybb{bottom:422.626667pt;}
.yb9{bottom:422.630963pt;}
.y17f{bottom:424.971131pt;}
.yba{bottom:427.313333pt;}
.y132{bottom:427.464821pt;}
.y92{bottom:427.467908pt;}
.y1f4{bottom:427.469054pt;}
.y224{bottom:430.794282pt;}
.y1b3{bottom:431.178828pt;}
.y41{bottom:435.251531pt;}
.y5d{bottom:435.256358pt;}
.yb8{bottom:436.539493pt;}
.y17e{bottom:438.955112pt;}
.y131{bottom:441.448803pt;}
.y15c{bottom:441.451289pt;}
.y91{bottom:441.451889pt;}
.y223{bottom:441.452403pt;}
.y1f3{bottom:441.453036pt;}
.y10a{bottom:444.246729pt;}
.ye8{bottom:444.321773pt;}
.y1b2{bottom:445.162809pt;}
.yc{bottom:446.990669pt;}
.y40{bottom:449.160061pt;}
.y5c{bottom:449.164888pt;}
.yb7{bottom:450.523475pt;}
.y222{bottom:452.034863pt;}
.y17d{bottom:452.863643pt;}
.y130{bottom:455.357333pt;}
.y15b{bottom:455.359819pt;}
.y1f2{bottom:455.361566pt;}
.y109{bottom:458.155260pt;}
.ye7{bottom:458.305755pt;}
.y1b1{bottom:459.071339pt;}
.y221{bottom:462.692985pt;}
.yb{bottom:462.990669pt;}
.y3f{bottom:463.144043pt;}
.y5b{bottom:463.148870pt;}
.yb6{bottom:464.432005pt;}
.y17c{bottom:466.847624pt;}
.y90{bottom:469.344401pt;}
.y1f1{bottom:469.345547pt;}
.y108{bottom:472.139241pt;}
.ye6{bottom:472.214285pt;}
.y1b0{bottom:473.055321pt;}
.y220{bottom:473.351106pt;}
.y3e{bottom:477.052573pt;}
.y5a{bottom:477.057400pt;}
.yb5{bottom:478.415987pt;}
.ya{bottom:478.990666pt;}
.y17b{bottom:480.756155pt;}
.y1f0{bottom:483.254078pt;}
.y21f{bottom:483.933566pt;}
.y107{bottom:486.047772pt;}
.ye5{bottom:486.198267pt;}
.y1af{bottom:486.963851pt;}
.y3d{bottom:491.036555pt;}
.y59{bottom:491.041382pt;}
.yb4{bottom:492.324517pt;}
.y21e{bottom:494.591687pt;}
.y17a{bottom:494.740136pt;}
.y9{bottom:494.990666pt;}
.y178{bottom:495.193600pt;}
.y1ef{bottom:497.238059pt;}
.y106{bottom:500.031753pt;}
.y1ae{bottom:500.947833pt;}
.y58{bottom:504.949912pt;}
.y21d{bottom:505.174147pt;}
.yb3{bottom:506.308499pt;}
.yd6{bottom:507.138153pt;}
.y179{bottom:508.648667pt;}
.y1ee{bottom:511.146590pt;}
.y1ad{bottom:514.856363pt;}
.y21c{bottom:515.832269pt;}
.yd5{bottom:518.552043pt;}
.y3c{bottom:518.929067pt;}
.y57{bottom:518.933893pt;}
.y104{bottom:519.174716pt;}
.yb2{bottom:520.217029pt;}
.y105{bottom:520.970000pt;}
.y1ed{bottom:525.130571pt;}
.y21b{bottom:526.490390pt;}
.y103{bottom:527.375067pt;}
.y1ac{bottom:528.840345pt;}
.y12d{bottom:529.812979pt;}
.yd4{bottom:529.965933pt;}
.yb1{bottom:534.201011pt;}
.y1cf{bottom:537.070287pt;}
.y21a{bottom:537.072850pt;}
.y1ec{bottom:539.114553pt;}
.yd3{bottom:541.379823pt;}
.y12c{bottom:541.756502pt;}
.y1ab{bottom:542.824326pt;}
.y219{bottom:547.730972pt;}
.yb0{bottom:548.109541pt;}
.y1ce{bottom:549.013810pt;}
.yd2{bottom:552.869375pt;}
.y1eb{bottom:553.023083pt;}
.y102{bottom:553.171888pt;}
.y12b{bottom:553.700026pt;}
.y1aa{bottom:556.732857pt;}
.y218{bottom:558.313431pt;}
.y1cd{bottom:560.957333pt;}
.y12a{bottom:565.643549pt;}
.y1ea{bottom:567.007065pt;}
.y101{bottom:567.155870pt;}
.y217{bottom:568.971553pt;}
.y1a9{bottom:570.716838pt;}
.y8{bottom:573.786667pt;}
.yd1{bottom:574.790913pt;}
.yaf{bottom:576.002053pt;}
.y3b{bottom:577.360426pt;}
.y129{bottom:577.511410pt;}
.y216{bottom:579.554013pt;}
.yfe{bottom:580.307987pt;}
.y1e9{bottom:580.915595pt;}
.y100{bottom:581.064400pt;}
.yfd{bottom:581.070214pt;}
.y1a8{bottom:584.625369pt;}
.yd0{bottom:586.204803pt;}
.y128{bottom:589.454933pt;}
.y3a{bottom:590.135238pt;}
.y215{bottom:590.212134pt;}
.y7{bottom:592.685334pt;}
.y1e8{bottom:594.899577pt;}
.yfc{bottom:595.054196pt;}
.y1a7{bottom:598.609350pt;}
.y214{bottom:600.870256pt;}
.y39{bottom:602.834495pt;}
.yae{bottom:606.691574pt;}
.y1e7{bottom:608.808107pt;}
.ycf{bottom:608.882110pt;}
.yfb{bottom:608.962726pt;}
.y213{bottom:611.452716pt;}
.y1a6{bottom:612.517881pt;}
.y38{bottom:615.609308pt;}
.yce{bottom:620.296000pt;}
.yad{bottom:620.675555pt;}
.y212{bottom:622.110837pt;}
.y1e6{bottom:622.792089pt;}
.yfa{bottom:622.946707pt;}
.y1a5{bottom:626.501862pt;}
.y37{bottom:628.384120pt;}
.y211{bottom:632.693297pt;}
.yac{bottom:634.584086pt;}
.y1e5{bottom:636.700619pt;}
.yf9{bottom:636.855238pt;}
.y1a4{bottom:640.410393pt;}
.y36{bottom:641.158933pt;}
.y210{bottom:643.351419pt;}
.y6{bottom:645.598667pt;}
.y8f{bottom:648.192501pt;}
.yab{bottom:648.568067pt;}
.y1e4{bottom:650.684601pt;}
.yf8{bottom:650.839219pt;}
.y20f{bottom:654.009540pt;}
.y1a3{bottom:654.394374pt;}
.y8e{bottom:662.176483pt;}
.yaa{bottom:662.476598pt;}
.y20e{bottom:664.592000pt;}
.y1e3{bottom:664.593131pt;}
.y35{bottom:667.918000pt;}
.y1a2{bottom:668.302904pt;}
.y3{bottom:668.977329pt;}
.y8d{bottom:676.085013pt;}
.ya9{bottom:676.460579pt;}
.y1e2{bottom:678.577112pt;}
.yf7{bottom:678.732794pt;}
.y1a1{bottom:682.286886pt;}
.y8c{bottom:690.068995pt;}
.ya8{bottom:690.369109pt;}
.y1e1{bottom:692.485643pt;}
.y20d{bottom:692.497332pt;}
.y1a0{bottom:696.195416pt;}
.y8b{bottom:704.052976pt;}
.ya7{bottom:704.353091pt;}
.y1e0{bottom:706.469624pt;}
.yf6{bottom:708.288421pt;}
.y19f{bottom:710.179398pt;}
.y34{bottom:711.760533pt;}
.y33{bottom:715.540000pt;}
.y8a{bottom:717.961507pt;}
.ya6{bottom:718.261621pt;}
.y1df{bottom:720.378155pt;}
.y20c{bottom:720.389844pt;}
.yf5{bottom:722.272403pt;}
.y32{bottom:723.174667pt;}
.y19e{bottom:724.087928pt;}
.y31{bottom:726.954133pt;}
.y89{bottom:731.945488pt;}
.y1de{bottom:734.362136pt;}
.y20b{bottom:734.373826pt;}
.y30{bottom:734.588800pt;}
.yf4{bottom:736.180933pt;}
.y19d{bottom:738.071910pt;}
.y2f{bottom:738.368267pt;}
.y88{bottom:745.854019pt;}
.y2e{bottom:746.078667pt;}
.ya5{bottom:746.154133pt;}
.y1dd{bottom:748.270667pt;}
.y1db{bottom:748.271798pt;}
.y20a{bottom:748.282356pt;}
.y2d{bottom:749.782533pt;}
.yf3{bottom:750.164915pt;}
.y177{bottom:750.991677pt;}
.y1dc{bottom:753.032933pt;}
.y2c{bottom:757.492800pt;}
.y2b{bottom:761.272267pt;}
.y1da{bottom:762.255779pt;}
.y209{bottom:762.266338pt;}
.y176{bottom:762.935200pt;}
.yf2{bottom:764.073445pt;}
.y1d2{bottom:764.295677pt;}
.y1cc{bottom:766.487430pt;}
.y87{bottom:773.746531pt;}
.yd8{bottom:774.575943pt;}
.y1d9{bottom:776.164309pt;}
.y208{bottom:776.174868pt;}
.y1d1{bottom:776.239200pt;}
.y28{bottom:777.372562pt;}
.y2a{bottom:777.373067pt;}
.y1cb{bottom:778.430954pt;}
.y2{bottom:781.661334pt;}
.y29{bottom:783.647067pt;}
.yd7{bottom:786.519467pt;}
.y1d8{bottom:790.148291pt;}
.y1ca{bottom:790.374477pt;}
.y127{bottom:792.491067pt;}
.y26{bottom:794.683333pt;}
.y27{bottom:800.881733pt;}
.y1c9{bottom:802.318000pt;}
.y1d7{bottom:804.056821pt;}
.y86{bottom:804.058795pt;}
.y207{bottom:804.067380pt;}
.y79{bottom:817.268653pt;}
.y1d6{bottom:818.040803pt;}
.y85{bottom:818.042777pt;}
.y1d0{bottom:819.025333pt;}
.y25{bottom:823.861200pt;}
.y1d4{bottom:830.210800pt;}
.y1d5{bottom:831.949333pt;}
.y84{bottom:831.951307pt;}
.y206{bottom:831.959892pt;}
.y83{bottom:845.935289pt;}
.y205{bottom:845.943874pt;}
.y1{bottom:859.312000pt;}
.y82{bottom:859.843819pt;}
.y204{bottom:859.852404pt;}
.y81{bottom:873.827801pt;}
.y203{bottom:873.836386pt;}
.y80{bottom:887.736331pt;}
.y202{bottom:887.744916pt;}
.y24{bottom:893.328933pt;}
.y7f{bottom:901.720312pt;}
.y201{bottom:901.728897pt;}
.y7e{bottom:915.628843pt;}
.y200{bottom:915.637428pt;}
.y23{bottom:927.873867pt;}
.y7d{bottom:929.612824pt;}
.y1ff{bottom:929.621409pt;}
.y7c{bottom:943.521355pt;}
.y1fe{bottom:943.529940pt;}
.y7b{bottom:957.505336pt;}
.y22{bottom:967.785600pt;}
.y7a{bottom:971.413867pt;}
.y1fd{bottom:971.422452pt;}
.y76{bottom:1002.326400pt;}
.y1d3{bottom:1002.331310pt;}
.y12f{bottom:1002.335533pt;}
.ye3{bottom:1002.336112pt;}
.y22f{bottom:1002.339772pt;}
.h16{height:5.440000pt;}
.h1b{height:8.920000pt;}
.h3e{height:8.920013pt;}
.h25{height:9.070667pt;}
.h3b{height:11.641347pt;}
.h31{height:11.717333pt;}
.h2b{height:13.153347pt;}
.h10{height:17.136000pt;}
.h24{height:20.117760pt;}
.h29{height:20.149847pt;}
.h2e{height:20.802240pt;}
.h39{height:20.820134pt;}
.h34{height:20.846976pt;}
.h3d{height:20.945768pt;}
.h15{height:21.420806pt;}
.h11{height:25.708032pt;}
.h19{height:25.742037pt;}
.h42{height:25.751313pt;}
.h1a{height:25.765952pt;}
.h2a{height:25.768269pt;}
.h41{height:25.785161pt;}
.h17{height:25.804800pt;}
.h37{height:27.211987pt;}
.hf{height:28.383667pt;}
.h7{height:28.560000pt;}
.h23{height:28.770560pt;}
.h38{height:28.795076pt;}
.h33{height:28.832211pt;}
.h21{height:28.855680pt;}
.h1e{height:28.856042pt;}
.h1c{height:28.856765pt;}
.h27{height:28.901965pt;}
.h13{height:28.921939pt;}
.h40{height:29.696875pt;}
.h2c{height:29.749440pt;}
.h30{height:29.750558pt;}
.h36{height:29.774790pt;}
.h32{height:29.813189pt;}
.h3c{height:29.954853pt;}
.hc{height:30.648076pt;}
.ha{height:32.135846pt;}
.h3f{height:32.135940pt;}
.h14{height:32.178354pt;}
.h2f{height:32.542780pt;}
.h2d{height:33.571328pt;}
.h12{height:36.152122pt;}
.h3a{height:38.313717pt;}
.h6{height:40.800000pt;}
.he{height:42.579936pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:54.300115pt;}
.h1f{height:55.490423pt;}
.h1d{height:55.575544pt;}
.hb{height:56.236723pt;}
.h22{height:58.051840pt;}
.h20{height:58.136960pt;}
.h28{height:58.144956pt;}
.h26{height:58.230212pt;}
.h18{height:58.464000pt;}
.h35{height:59.238628pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w5{width:6.047973pt;}
.wb{width:10.658667pt;}
.w4{width:13.833333pt;}
.w8{width:13.984000pt;}
.wc{width:13.985333pt;}
.w6{width:25.851973pt;}
.w9{width:55.634667pt;}
.w7{width:132.737333pt;}
.wa{width:138.709347pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x38{left:7.120680pt;}
.x56{left:48.745600pt;}
.x8{left:50.116533pt;}
.x22{left:57.297600pt;}
.x2a{left:58.658267pt;}
.x25{left:64.856667pt;}
.x24{left:66.746621pt;}
.x26{left:73.322800pt;}
.x55{left:75.330933pt;}
.x4b{left:80.636533pt;}
.x61{left:81.713333pt;}
.x2d{left:83.075746pt;}
.x62{left:88.640667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x63{left:96.000000pt;}
.x4d{left:97.356533pt;}
.x4e{left:99.174800pt;}
.x54{left:113.083467pt;}
.x19{left:115.426800pt;}
.x9{left:119.130667pt;}
.x1a{left:120.718133pt;}
.xa{left:124.422000pt;}
.x67{left:126.462933pt;}
.x4c{left:129.440533pt;}
.x68{left:134.475600pt;}
.x33{left:150.576789pt;}
.x2e{left:151.559067pt;}
.x1b{left:179.376267pt;}
.x4{left:180.874667pt;}
.x64{left:182.550653pt;}
.x1c{left:184.667600pt;}
.xb{left:193.133867pt;}
.x51{left:195.401467pt;}
.xc{left:198.425067pt;}
.x65{left:200.163733pt;}
.x66{left:204.491200pt;}
.x52{left:210.973200pt;}
.x1d{left:250.809333pt;}
.x7{left:253.984133pt;}
.x1e{left:255.647200pt;}
.xd{left:259.199867pt;}
.xe{left:265.096000pt;}
.x23{left:270.840800pt;}
.x6{left:290.494400pt;}
.x60{left:295.558933pt;}
.x69{left:298.506933pt;}
.x5{left:303.647200pt;}
.x6a{left:306.746400pt;}
.x2b{left:316.901933pt;}
.x1f{left:318.387333pt;}
.x4f{left:319.748000pt;}
.x20{left:323.527467pt;}
.xf{left:328.289733pt;}
.x50{left:329.272400pt;}
.x10{left:333.656667pt;}
.x53{left:370.998267pt;}
.x36{left:392.046413pt;}
.x3{left:404.408000pt;}
.x21{left:405.921200pt;}
.x11{left:407.584133pt;}
.x27{left:408.795957pt;}
.x29{left:409.930913pt;}
.x12{left:412.346400pt;}
.x57{left:415.919733pt;}
.x34{left:417.335333pt;}
.x3b{left:418.714336pt;}
.x35{left:424.062800pt;}
.x28{left:425.426045pt;}
.x58{left:428.050133pt;}
.x48{left:434.314533pt;}
.x47{left:435.275756pt;}
.x3a{left:437.114088pt;}
.x3e{left:439.953240pt;}
.x41{left:443.186680pt;}
.x3d{left:445.273240pt;}
.x5b{left:447.344800pt;}
.x49{left:448.857857pt;}
.x4a{left:450.580759pt;}
.x3f{left:451.553333pt;}
.x42{left:454.903867pt;}
.x5c{left:456.037733pt;}
.x43{left:460.421347pt;}
.x45{left:463.021867pt;}
.x5a{left:469.165773pt;}
.x44{left:480.821867pt;}
.x46{left:486.954133pt;}
.x13{left:493.681733pt;}
.x59{left:496.389067pt;}
.x14{left:499.729067pt;}
.x31{left:525.203067pt;}
.x32{left:533.140000pt;}
.x15{left:563.829733pt;}
.x16{left:569.196667pt;}
.x17{left:627.099067pt;}
.x37{left:628.307987pt;}
.x18{left:633.070667pt;}
.x40{left:634.658133pt;}
.x39{left:648.415600pt;}
.x2f{left:653.706933pt;}
.x30{left:661.039200pt;}
.x2c{left:677.058000pt;}
.x5f{left:680.163600pt;}
.x5d{left:698.607600pt;}
.x5e{left:706.998267pt;}
.x3c{left:729.599733pt;}
}




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