
    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_b6df91d01b11d1b865eb8835.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_dd23cdee749bdc0456985d16.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_b4e21177f07aa206756e6fa7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_46f52f2bf1ff94a7d74a4049.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.967000;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_e19ecd3dcc919e7cab7e27fc.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.622000;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_6684fd95b7d05701a2d7d2e3.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.383000;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_0c6239200644cc3c4bbe6484.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.889000;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_521d72213e5978edbb2cfaa2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_180499479c257d4833641590.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.877000;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_11d49af9387eddcefd5fa2a0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.392000;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_f62b762deed2b60cfc27d553.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941000;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_e519efbfed4f76f3ea758c59.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.935000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_1e3bf80ad0efe26683da7abb.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.938000;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_7f50cf5d71f12d5d79621001.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938000;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_1c15ea572105d00ec6416750.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_d82102b308e818ba0870ccc1.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.969000;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_368453f24787457e2fd67530.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.969000;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_e4bd2922a43a99af105ea05c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.515000;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_67e1c3da4ee36e682cf199be.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.774000;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_78a9228cd17ac55f2ad8c6e0.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.050000;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_405dcaf3b75f07cb2df824d4.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.847000;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_577ed3da4bcededde170fd87.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.927000;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_231a2d58fcb745a37fc39656.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.739000;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_01184177f55fbb66933d8068.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.478000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_fb783d900bd77516bebdf41f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.073000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_3836c6e1afbf5e8a3d06cc69.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.728000;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:ff1b;src:url('chunks/assets/font_d4a0afca13b1e7aed46f1175.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.969000;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:ff1c;src:url('chunks/assets/font_6b994921b3663afafa698916.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.885000;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:ff1d;src:url('chunks/assets/font_ed333ab076e8c32507819cad.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.970000;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:ff1e;src:url('chunks/assets/font_d3c70d8a6965186d234ffff9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.579000;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:ff1f;src:url('chunks/assets/font_906357a3615f1dc580b5205c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.672000;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:ff20;src:url('chunks/assets/font_39f339ad1a60580b90e8a24c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.667000;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;}
.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);}
.m3{transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281274,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.771000px;}
.ls6e{letter-spacing:-0.882009px;}
.lsb{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.012000px;}
.ls61{letter-spacing:0.018000px;}
.ls55{letter-spacing:0.019200px;}
.ls30{letter-spacing:0.024000px;}
.ls4f{letter-spacing:0.028800px;}
.ls72{letter-spacing:0.033600px;}
.ls2a{letter-spacing:0.036000px;}
.ls3{letter-spacing:0.038400px;}
.ls8{letter-spacing:0.051300px;}
.ls42{letter-spacing:0.060001px;}
.ls70{letter-spacing:0.072001px;}
.ls71{letter-spacing:0.081599px;}
.ls0{letter-spacing:0.082789px;}
.ls1{letter-spacing:0.086388px;}
.ls28{letter-spacing:0.095999px;}
.ls3e{letter-spacing:0.096001px;}
.ls20{letter-spacing:0.108001px;}
.ls40{letter-spacing:0.144001px;}
.ls37{letter-spacing:0.153598px;}
.lsc{letter-spacing:0.168002px;}
.lsd{letter-spacing:0.174002px;}
.ls3f{letter-spacing:0.186002px;}
.ls3b{letter-spacing:0.189388px;}
.ls2f{letter-spacing:0.191998px;}
.ls6f{letter-spacing:0.216002px;}
.lse{letter-spacing:0.222002px;}
.ls64{letter-spacing:0.234002px;}
.ls5e{letter-spacing:0.252003px;}
.ls6a{letter-spacing:0.278516px;}
.ls6c{letter-spacing:0.354004px;}
.ls60{letter-spacing:0.360004px;}
.ls4a{letter-spacing:0.378004px;}
.ls22{letter-spacing:0.516005px;}
.ls21{letter-spacing:0.528005px;}
.ls23{letter-spacing:0.570006px;}
.ls1c{letter-spacing:0.576006px;}
.ls14{letter-spacing:0.582006px;}
.ls18{letter-spacing:0.588006px;}
.ls13{letter-spacing:0.594006px;}
.ls1d{letter-spacing:0.600006px;}
.ls16{letter-spacing:0.606006px;}
.ls1e{letter-spacing:0.612006px;}
.ls15{letter-spacing:0.618006px;}
.ls17{letter-spacing:0.624006px;}
.ls25{letter-spacing:0.636006px;}
.ls1a{letter-spacing:0.642006px;}
.ls19{letter-spacing:0.690007px;}
.ls1b{letter-spacing:0.696007px;}
.ls24{letter-spacing:0.852009px;}
.ls39{letter-spacing:2.946762px;}
.ls3a{letter-spacing:3.286362px;}
.ls5{letter-spacing:10.243072px;}
.ls4{letter-spacing:10.262272px;}
.ls29{letter-spacing:10.511869px;}
.lsa{letter-spacing:10.550268px;}
.ls56{letter-spacing:10.641467px;}
.ls50{letter-spacing:10.852664px;}
.ls43{letter-spacing:11.244112px;}
.ls7{letter-spacing:12.317700px;}
.ls6b{letter-spacing:12.432124px;}
.ls6d{letter-spacing:12.468125px;}
.ls9{letter-spacing:12.500100px;}
.ls6{letter-spacing:12.636900px;}
.ls54{letter-spacing:12.678127px;}
.ls1f{letter-spacing:12.774128px;}
.ls53{letter-spacing:12.804128px;}
.ls4b{letter-spacing:12.840128px;}
.ls52{letter-spacing:12.858129px;}
.ls4e{letter-spacing:12.942129px;}
.ls4d{letter-spacing:12.948129px;}
.ls4c{letter-spacing:12.960130px;}
.ls51{letter-spacing:12.996130px;}
.ls45{letter-spacing:13.020130px;}
.ls68{letter-spacing:13.038130px;}
.ls62{letter-spacing:13.080131px;}
.lsf{letter-spacing:13.110131px;}
.ls46{letter-spacing:13.140131px;}
.ls67{letter-spacing:13.158132px;}
.ls69{letter-spacing:13.175835px;}
.ls63{letter-spacing:13.176132px;}
.ls48{letter-spacing:13.182132px;}
.ls12{letter-spacing:13.194132px;}
.ls5d{letter-spacing:13.236132px;}
.ls59{letter-spacing:13.262234px;}
.ls44{letter-spacing:13.278133px;}
.ls26{letter-spacing:13.284133px;}
.ls3c{letter-spacing:13.302133px;}
.ls27{letter-spacing:13.326133px;}
.ls3d{letter-spacing:13.338133px;}
.ls47{letter-spacing:13.362134px;}
.ls65{letter-spacing:13.380134px;}
.ls5f{letter-spacing:13.422134px;}
.ls10{letter-spacing:13.452135px;}
.ls38{letter-spacing:13.459032px;}
.ls49{letter-spacing:13.482135px;}
.ls66{letter-spacing:13.512135px;}
.ls5a{letter-spacing:13.516631px;}
.ls5c{letter-spacing:13.518135px;}
.ls41{letter-spacing:13.536135px;}
.ls5b{letter-spacing:13.603030px;}
.ls2{letter-spacing:21.124536px;}
.ls32{letter-spacing:29.970825px;}
.ls33{letter-spacing:31.670004px;}
.ls31{letter-spacing:56.500094px;}
.ls2b{letter-spacing:73.717479px;}
.ls36{letter-spacing:82.693366px;}
.ls2c{letter-spacing:146.186973px;}
.ls2e{letter-spacing:152.854089px;}
.ls2d{letter-spacing:191.426407px;}
.ls34{letter-spacing:460.328646px;}
.ls35{letter-spacing:463.784603px;}
.ls57{letter-spacing:518.772715px;}
.ls58{letter-spacing:663.342108px;}
.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;}
}
.wsdf{word-spacing:-13.596136px;}
.ws140{word-spacing:-13.362134px;}
.ws53{word-spacing:-13.254133px;}
.ws105{word-spacing:-13.170132px;}
.ws11d{word-spacing:-13.020130px;}
.ws15e{word-spacing:-12.528125px;}
.ws2c{word-spacing:-10.598268px;}
.ws92{word-spacing:-0.912009px;}
.ws8e{word-spacing:-0.576006px;}
.ws17b{word-spacing:-0.071999px;}
.ws52{word-spacing:-0.060001px;}
.ws24{word-spacing:-0.057000px;}
.ws6{word-spacing:-0.054000px;}
.ws1b{word-spacing:-0.047999px;}
.ws5{word-spacing:-0.035995px;}
.ws4a{word-spacing:0.000000px;}
.ws17f{word-spacing:9.441482px;}
.ws46{word-spacing:9.575880px;}
.ws196{word-spacing:9.585480px;}
.ws49{word-spacing:9.647879px;}
.ws192{word-spacing:9.662279px;}
.wsb5{word-spacing:9.667079px;}
.ws1b0{word-spacing:9.676679px;}
.ws1a8{word-spacing:9.700679px;}
.ws44{word-spacing:9.715079px;}
.ws143{word-spacing:9.729478px;}
.ws132{word-spacing:9.734278px;}
.ws35{word-spacing:9.739078px;}
.ws1a6{word-spacing:9.743878px;}
.ws37{word-spacing:9.748678px;}
.ws180{word-spacing:9.777478px;}
.ws31{word-spacing:9.782278px;}
.ws131{word-spacing:9.787078px;}
.ws14f{word-spacing:9.791878px;}
.ws19e{word-spacing:9.796678px;}
.ws18a{word-spacing:9.806277px;}
.ws112{word-spacing:9.811077px;}
.wsb0{word-spacing:9.815877px;}
.ws2f{word-spacing:9.820677px;}
.ws2e{word-spacing:9.825477px;}
.ws47{word-spacing:9.844677px;}
.ws3e{word-spacing:9.849477px;}
.ws100{word-spacing:9.863877px;}
.ws1ab{word-spacing:9.868677px;}
.ws39{word-spacing:9.873477px;}
.ws16{word-spacing:9.878277px;}
.ws30{word-spacing:9.883076px;}
.ws193{word-spacing:9.887876px;}
.ws38{word-spacing:9.892676px;}
.ws18e{word-spacing:9.897476px;}
.ws45{word-spacing:9.907076px;}
.ws48{word-spacing:9.916676px;}
.ws40{word-spacing:9.921476px;}
.ws82{word-spacing:9.926276px;}
.ws1a{word-spacing:9.931076px;}
.ws115{word-spacing:9.935876px;}
.ws1ad{word-spacing:9.945476px;}
.ws12f{word-spacing:9.964675px;}
.ws142{word-spacing:9.969475px;}
.ws15c{word-spacing:9.974275px;}
.ws43{word-spacing:9.979075px;}
.ws129{word-spacing:9.983875px;}
.ws116{word-spacing:9.988675px;}
.ws1a7{word-spacing:9.993475px;}
.ws118{word-spacing:9.998275px;}
.ws7f{word-spacing:10.003075px;}
.ws32{word-spacing:10.007875px;}
.ws15b{word-spacing:10.012675px;}
.ws19{word-spacing:10.017475px;}
.ws199{word-spacing:10.022275px;}
.ws12{word-spacing:10.027075px;}
.ws18b{word-spacing:10.031875px;}
.ws81{word-spacing:10.036675px;}
.ws36{word-spacing:10.041474px;}
.ws3f{word-spacing:10.046274px;}
.ws197{word-spacing:10.051074px;}
.ws11{word-spacing:10.055874px;}
.ws190{word-spacing:10.060674px;}
.ws194{word-spacing:10.065474px;}
.ws1ae{word-spacing:10.070274px;}
.ws15a{word-spacing:10.075074px;}
.ws42{word-spacing:10.079874px;}
.ws18{word-spacing:10.084674px;}
.ws17{word-spacing:10.089474px;}
.ws14{word-spacing:10.094274px;}
.ws189{word-spacing:10.103874px;}
.ws110{word-spacing:10.108674px;}
.wsb1{word-spacing:10.113474px;}
.ws130{word-spacing:10.118274px;}
.ws12b{word-spacing:10.123073px;}
.ws1b1{word-spacing:10.127873px;}
.ws34{word-spacing:10.132673px;}
.ws1aa{word-spacing:10.137473px;}
.ws182{word-spacing:10.142273px;}
.ws117{word-spacing:10.151873px;}
.ws12c{word-spacing:10.156673px;}
.ws10{word-spacing:10.161473px;}
.ws17e{word-spacing:10.166273px;}
.ws1a2{word-spacing:10.171073px;}
.ws2b{word-spacing:10.175873px;}
.ws2d{word-spacing:10.180673px;}
.ws3c{word-spacing:10.185473px;}
.ws1a9{word-spacing:10.190273px;}
.wsb2{word-spacing:10.195073px;}
.ws12a{word-spacing:10.199873px;}
.ws184{word-spacing:10.204672px;}
.ws3a{word-spacing:10.209472px;}
.ws181{word-spacing:10.228672px;}
.ws183{word-spacing:10.233472px;}
.ws1af{word-spacing:10.238272px;}
.ws10f{word-spacing:10.243072px;}
.ws1a0{word-spacing:10.257472px;}
.wsb3{word-spacing:10.262272px;}
.wsff{word-spacing:10.267072px;}
.ws185{word-spacing:10.271872px;}
.ws18c{word-spacing:10.276672px;}
.ws0{word-spacing:10.281471px;}
.ws195{word-spacing:10.286271px;}
.ws1a5{word-spacing:10.291071px;}
.ws111{word-spacing:10.300671px;}
.ws128{word-spacing:10.305471px;}
.ws1a1{word-spacing:10.310271px;}
.ws19c{word-spacing:10.319871px;}
.ws187{word-spacing:10.324671px;}
.ws114{word-spacing:10.329471px;}
.ws19a{word-spacing:10.334271px;}
.ws18f{word-spacing:10.339071px;}
.wsb4{word-spacing:10.348671px;}
.wsbe{word-spacing:10.353471px;}
.ws18d{word-spacing:10.363070px;}
.ws80{word-spacing:10.367870px;}
.wsbd{word-spacing:10.420670px;}
.ws3d{word-spacing:10.425470px;}
.ws41{word-spacing:10.444669px;}
.ws144{word-spacing:10.449469px;}
.wsbf{word-spacing:10.454269px;}
.ws1ac{word-spacing:10.459069px;}
.ws3b{word-spacing:10.463869px;}
.ws186{word-spacing:10.468669px;}
.ws12d{word-spacing:10.473469px;}
.ws15{word-spacing:10.497469px;}
.ws13{word-spacing:10.502269px;}
.ws1b2{word-spacing:10.507069px;}
.ws1a3{word-spacing:10.531068px;}
.ws12e{word-spacing:10.535868px;}
.ws19b{word-spacing:10.564668px;}
.ws101{word-spacing:10.569468px;}
.wsf7{word-spacing:10.578106px;}
.ws33{word-spacing:10.579068px;}
.ws1a4{word-spacing:10.612667px;}
.ws19f{word-spacing:10.617467px;}
.ws113{word-spacing:10.631867px;}
.ws198{word-spacing:10.636667px;}
.ws19d{word-spacing:10.804665px;}
.wsf6{word-spacing:11.082111px;}
.wsc{word-spacing:11.512800px;}
.ws9{word-spacing:11.556000px;}
.wsb{word-spacing:11.588400px;}
.ws4{word-spacing:11.680200px;}
.wsa{word-spacing:11.685600px;}
.ws160{word-spacing:11.706117px;}
.wse{word-spacing:11.718000px;}
.wsf{word-spacing:11.723400px;}
.ws8{word-spacing:11.761200px;}
.ws7{word-spacing:11.853000px;}
.ws15d{word-spacing:11.862119px;}
.wsd{word-spacing:11.988000px;}
.ws166{word-spacing:12.030120px;}
.ws16a{word-spacing:12.060121px;}
.ws11a{word-spacing:12.078121px;}
.ws155{word-spacing:12.084121px;}
.ws161{word-spacing:12.114121px;}
.ws151{word-spacing:12.138121px;}
.ws121{word-spacing:12.150122px;}
.ws167{word-spacing:12.192122px;}
.ws124{word-spacing:12.198122px;}
.ws10d{word-spacing:12.210122px;}
.ws10e{word-spacing:12.228122px;}
.ws98{word-spacing:12.234122px;}
.ws94{word-spacing:12.240122px;}
.ws150{word-spacing:12.246122px;}
.ws163{word-spacing:12.252123px;}
.ws126{word-spacing:12.276123px;}
.ws2a{word-spacing:12.277800px;}
.ws169{word-spacing:12.312123px;}
.ws96{word-spacing:12.336123px;}
.ws93{word-spacing:12.342123px;}
.ws27{word-spacing:12.346200px;}
.ws7a{word-spacing:12.348123px;}
.ws95{word-spacing:12.354124px;}
.ws1f{word-spacing:12.357600px;}
.ws11b{word-spacing:12.360124px;}
.wsf9{word-spacing:12.366124px;}
.ws15f{word-spacing:12.372124px;}
.ws154{word-spacing:12.390124px;}
.wsa5{word-spacing:12.396124px;}
.ws8c{word-spacing:12.402124px;}
.ws10c{word-spacing:12.408124px;}
.ws119{word-spacing:12.420124px;}
.ws1e{word-spacing:12.420300px;}
.ws125{word-spacing:12.426124px;}
.ws1c{word-spacing:12.431700px;}
.ws8b{word-spacing:12.432124px;}
.ws120{word-spacing:12.444124px;}
.ws109{word-spacing:12.450125px;}
.wsd1{word-spacing:12.456125px;}
.ws11e{word-spacing:12.462125px;}
.ws8a{word-spacing:12.474125px;}
.ws8f{word-spacing:12.486125px;}
.ws97{word-spacing:12.492125px;}
.ws10a{word-spacing:12.504125px;}
.ws123{word-spacing:12.516125px;}
.ws8d{word-spacing:12.522125px;}
.ws9a{word-spacing:12.534125px;}
.wsa1{word-spacing:12.540125px;}
.wsfd{word-spacing:12.546125px;}
.ws90{word-spacing:12.552126px;}
.ws99{word-spacing:12.558126px;}
.ws152{word-spacing:12.564126px;}
.ws91{word-spacing:12.576126px;}
.wsa6{word-spacing:12.588126px;}
.ws22{word-spacing:12.591300px;}
.ws9c{word-spacing:12.600126px;}
.ws165{word-spacing:12.612126px;}
.ws21{word-spacing:12.614100px;}
.ws9b{word-spacing:12.618126px;}
.ws88{word-spacing:12.630126px;}
.wsa0{word-spacing:12.642126px;}
.wse2{word-spacing:12.666127px;}
.ws29{word-spacing:12.676800px;}
.wsfc{word-spacing:12.678127px;}
.wsef{word-spacing:12.690127px;}
.ws23{word-spacing:12.699600px;}
.ws89{word-spacing:12.702127px;}
.ws71{word-spacing:12.708127px;}
.ws122{word-spacing:12.714127px;}
.ws20{word-spacing:12.716700px;}
.wsfa{word-spacing:12.726127px;}
.ws11f{word-spacing:12.738127px;}
.wsa7{word-spacing:12.762128px;}
.ws10b{word-spacing:12.768128px;}
.ws162{word-spacing:12.774128px;}
.ws168{word-spacing:12.780128px;}
.ws153{word-spacing:12.798128px;}
.wsa8{word-spacing:12.834128px;}
.ws13b{word-spacing:12.835040px;}
.ws11c{word-spacing:12.840128px;}
.ws28{word-spacing:12.842100px;}
.ws25{word-spacing:12.853500px;}
.wsd0{word-spacing:12.864129px;}
.ws26{word-spacing:12.876300px;}
.wsf8{word-spacing:12.882129px;}
.wsee{word-spacing:12.888129px;}
.ws102{word-spacing:12.900129px;}
.ws174{word-spacing:12.906129px;}
.ws159{word-spacing:12.912129px;}
.ws1d{word-spacing:12.916200px;}
.ws13a{word-spacing:12.916639px;}
.ws16c{word-spacing:12.924129px;}
.ws172{word-spacing:12.930129px;}
.wsa3{word-spacing:12.936129px;}
.ws4c{word-spacing:12.948129px;}
.ws4f{word-spacing:12.954130px;}
.ws76{word-spacing:12.960130px;}
.wsf1{word-spacing:12.966130px;}
.wsea{word-spacing:12.972130px;}
.ws69{word-spacing:12.978130px;}
.ws7d{word-spacing:12.984130px;}
.ws14e{word-spacing:12.988638px;}
.wsda{word-spacing:12.990130px;}
.ws145{word-spacing:12.993438px;}
.ws9e{word-spacing:12.996130px;}
.wsc0{word-spacing:12.998238px;}
.ws158{word-spacing:13.002130px;}
.ws14b{word-spacing:13.003037px;}
.ws75{word-spacing:13.008130px;}
.ws6c{word-spacing:13.014130px;}
.ws6f{word-spacing:13.020130px;}
.ws4e{word-spacing:13.026130px;}
.ws139{word-spacing:13.027037px;}
.ws157{word-spacing:13.032130px;}
.wscb{word-spacing:13.036637px;}
.ws59{word-spacing:13.038130px;}
.ws4b{word-spacing:13.044130px;}
.ws50{word-spacing:13.050130px;}
.wsb6{word-spacing:13.056131px;}
.ws62{word-spacing:13.062131px;}
.ws70{word-spacing:13.068131px;}
.wsce{word-spacing:13.070237px;}
.wsd9{word-spacing:13.074131px;}
.ws5f{word-spacing:13.080131px;}
.wse9{word-spacing:13.086131px;}
.wsbc{word-spacing:13.092131px;}
.ws5d{word-spacing:13.098131px;}
.ws54{word-spacing:13.104131px;}
.ws51{word-spacing:13.110131px;}
.wsb7{word-spacing:13.116131px;}
.ws79{word-spacing:13.122131px;}
.ws14c{word-spacing:13.127836px;}
.ws5a{word-spacing:13.128131px;}
.wsaa{word-spacing:13.134131px;}
.ws60{word-spacing:13.140131px;}
.wsaf{word-spacing:13.146131px;}
.ws4d{word-spacing:13.152132px;}
.ws146{word-spacing:13.156636px;}
.ws7e{word-spacing:13.158132px;}
.ws7b{word-spacing:13.164132px;}
.ws6b{word-spacing:13.170132px;}
.ws64{word-spacing:13.176132px;}
.ws63{word-spacing:13.182132px;}
.ws86{word-spacing:13.188132px;}
.wsa9{word-spacing:13.194132px;}
.wsf3{word-spacing:13.206132px;}
.ws65{word-spacing:13.212132px;}
.wsd7{word-spacing:13.218132px;}
.ws134{word-spacing:13.219035px;}
.ws5b{word-spacing:13.224132px;}
.wsf5{word-spacing:13.230132px;}
.wsae{word-spacing:13.236132px;}
.wse6{word-spacing:13.242132px;}
.ws56{word-spacing:13.248132px;}
.wscd{word-spacing:13.252634px;}
.wsd2{word-spacing:13.254133px;}
.ws68{word-spacing:13.260133px;}
.wsca{word-spacing:13.262234px;}
.wse4{word-spacing:13.266133px;}
.ws141{word-spacing:13.272133px;}
.ws104{word-spacing:13.278133px;}
.ws178{word-spacing:13.284133px;}
.ws5e{word-spacing:13.290133px;}
.ws77{word-spacing:13.296133px;}
.wsd5{word-spacing:13.302133px;}
.wsb8{word-spacing:13.308133px;}
.wsdd{word-spacing:13.314133px;}
.ws9d{word-spacing:13.320133px;}
.wsba{word-spacing:13.326133px;}
.wsc2{word-spacing:13.329433px;}
.ws107{word-spacing:13.332133px;}
.ws55{word-spacing:13.338133px;}
.wsf0{word-spacing:13.344133px;}
.wsad{word-spacing:13.350133px;}
.ws72{word-spacing:13.356134px;}
.wsec{word-spacing:13.362134px;}
.ws85{word-spacing:13.368134px;}
.ws57{word-spacing:13.374134px;}
.ws6d{word-spacing:13.380134px;}
.wsc3{word-spacing:13.382233px;}
.ws66{word-spacing:13.386134px;}
.wse0{word-spacing:13.392134px;}
.wscf{word-spacing:13.398134px;}
.ws13c{word-spacing:13.404134px;}
.ws16e{word-spacing:13.410134px;}
.wsb9{word-spacing:13.416134px;}
.ws6a{word-spacing:13.422134px;}
.ws83{word-spacing:13.428134px;}
.ws103{word-spacing:13.434134px;}
.ws73{word-spacing:13.440134px;}
.ws67{word-spacing:13.446134px;}
.ws106{word-spacing:13.452135px;}
.ws84{word-spacing:13.464135px;}
.ws147{word-spacing:13.468632px;}
.ws74{word-spacing:13.470135px;}
.ws156{word-spacing:13.476135px;}
.ws171{word-spacing:13.488135px;}
.ws58{word-spacing:13.494135px;}
.wsf2{word-spacing:13.500135px;}
.wsde{word-spacing:13.506135px;}
.wsed{word-spacing:13.512135px;}
.wsd4{word-spacing:13.524135px;}
.wscc{word-spacing:13.526231px;}
.ws61{word-spacing:13.530135px;}
.ws16f{word-spacing:13.536135px;}
.wsa4{word-spacing:13.548135px;}
.wsf4{word-spacing:13.554136px;}
.wsdc{word-spacing:13.560136px;}
.ws16d{word-spacing:13.566136px;}
.wse5{word-spacing:13.572136px;}
.wsfe{word-spacing:13.578136px;}
.ws9f{word-spacing:13.590136px;}
.wse8{word-spacing:13.596136px;}
.wse1{word-spacing:13.602136px;}
.wsd8{word-spacing:13.608136px;}
.wsa2{word-spacing:13.614136px;}
.ws13e{word-spacing:13.620136px;}
.ws6e{word-spacing:13.626136px;}
.wse3{word-spacing:13.632136px;}
.ws7c{word-spacing:13.638136px;}
.ws13d{word-spacing:13.644136px;}
.wsdb{word-spacing:13.662137px;}
.wseb{word-spacing:13.674137px;}
.ws13f{word-spacing:13.680137px;}
.ws5c{word-spacing:13.698137px;}
.ws177{word-spacing:13.710137px;}
.ws17a{word-spacing:13.728137px;}
.ws87{word-spacing:13.734137px;}
.ws175{word-spacing:13.740137px;}
.ws78{word-spacing:13.746137px;}
.ws176{word-spacing:13.758138px;}
.ws164{word-spacing:14.070141px;}
.ws179{word-spacing:15.299873px;}
.wse7{word-spacing:15.479871px;}
.ws173{word-spacing:15.515871px;}
.ws17c{word-spacing:15.523071px;}
.ws108{word-spacing:15.530271px;}
.wsd3{word-spacing:15.580670px;}
.wsac{word-spacing:15.602270px;}
.wsbb{word-spacing:15.616670px;}
.wsd6{word-spacing:15.645470px;}
.ws16b{word-spacing:15.652670px;}
.wsfb{word-spacing:15.703069px;}
.wsab{word-spacing:15.731869px;}
.ws127{word-spacing:15.753469px;}
.ws170{word-spacing:15.767869px;}
.ws2{word-spacing:26.124131px;}
.ws1{word-spacing:26.304132px;}
.ws3{word-spacing:26.460132px;}
.wsc7{word-spacing:29.318034px;}
.wsc9{word-spacing:29.356433px;}
.wsc5{word-spacing:29.423632px;}
.wsc1{word-spacing:55.213710px;}
.wsc4{word-spacing:56.149698px;}
.wsc6{word-spacing:57.623280px;}
.ws191{word-spacing:59.178460px;}
.ws17d{word-spacing:59.821652px;}
.ws188{word-spacing:59.860052px;}
.wsc8{word-spacing:82.645367px;}
.ws148{word-spacing:104.417895px;}
.ws14a{word-spacing:119.873702px;}
.ws149{word-spacing:163.073162px;}
.ws135{word-spacing:518.499119px;}
.ws137{word-spacing:544.692391px;}
.ws133{word-spacing:580.715941px;}
.ws14d{word-spacing:714.322271px;}
.ws136{word-spacing:1379.771553px;}
.ws138{word-spacing:1496.448494px;}
._2a{margin-left:-14.245246px;}
._c{margin-left:-13.200283px;}
._39{margin-left:-12.163211px;}
._8{margin-left:-10.550268px;}
._9{margin-left:-4.924738px;}
._a{margin-left:-3.307159px;}
._3a{margin-left:-2.291113px;}
._1{margin-left:-1.214385px;}
._4{width:1.122900px;}
._2{width:9.225485px;}
._3{width:11.380658px;}
._d{width:12.630126px;}
._5{width:13.805400px;}
._b{width:14.869625px;}
._e{width:16.478194px;}
._f{width:20.711741px;}
._3b{width:21.772528px;}
._0{width:27.540138px;}
._22{width:40.324296px;}
._6{width:46.545018px;}
._10{width:54.085724px;}
._13{width:55.477707px;}
._29{width:56.528893px;}
._21{width:66.599168px;}
._28{width:67.683954px;}
._26{width:79.285409px;}
._17{width:82.390970px;}
._19{width:93.315634px;}
._14{width:102.973113px;}
._33{width:104.465894px;}
._1c{width:106.275472px;}
._27{width:109.126636px;}
._23{width:115.923351px;}
._12{width:117.992125px;}
._20{width:124.985638px;}
._1d{width:131.499156px;}
._36{width:149.854127px;}
._38{width:151.894101px;}
._18{width:159.540406px;}
._35{width:162.857164px;}
._11{width:169.994675px;}
._25{width:187.240859px;}
._1e{width:188.570443px;}
._1f{width:193.514381px;}
._1b{width:196.010350px;}
._1a{width:207.578205px;}
._24{width:213.736528px;}
._15{width:230.521918px;}
._16{width:264.457494px;}
._37{width:431.514606px;}
._32{width:451.391158px;}
._34{width:510.382420px;}
._31{width:546.597967px;}
._30{width:601.475681px;}
._2f{width:619.427457px;}
._2c{width:691.575355px;}
._2d{width:808.588293px;}
._2e{width:1342.490419px;}
._2b{width:1750.979712px;}
._7{width:1777.513781px;}
.fc1{color:rgb(66,93,177);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fs8{font-size:39.996000px;}
.fsa{font-size:41.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:57.000000px;}
.fs7{font-size:60.000600px;}
.fs6{font-size:71.999400px;}
.fs4{font-size:95.999400px;}
.fs1{font-size:120.000600px;}
.y0{bottom:0.000000px;}
.y2a{bottom:54.000000px;}
.yb6{bottom:120.244275px;}
.y28e{bottom:124.485465px;}
.y2ad{bottom:124.487145px;}
.y270{bottom:124.489215px;}
.y14f{bottom:124.490895px;}
.y167{bottom:124.493205px;}
.y121{bottom:124.493850px;}
.y24c{bottom:124.494495px;}
.yc9{bottom:124.495920px;}
.y186{bottom:124.496565px;}
.y1a9{bottom:124.497210px;}
.y1cd{bottom:124.497338px;}
.y2da{bottom:124.497703px;}
.y46{bottom:124.502707px;}
.y341{bottom:124.838587px;}
.y1fb{bottom:126.536430px;}
.y222{bottom:127.466550px;}
.y76{bottom:136.648830px;}
.y2d9{bottom:138.784724px;}
.y340{bottom:139.040410px;}
.y45{bottom:141.000100px;}
.yb5{bottom:143.460385px;}
.y28d{bottom:143.960160px;}
.y2ac{bottom:143.961840px;}
.y26f{bottom:143.963910px;}
.y14e{bottom:143.965590px;}
.y166{bottom:143.967900px;}
.y120{bottom:143.968545px;}
.y24b{bottom:143.969190px;}
.yc8{bottom:143.970615px;}
.y185{bottom:143.971260px;}
.y1a8{bottom:143.971904px;}
.ya9{bottom:144.565575px;}
.y1fa{bottom:146.095125px;}
.y20b{bottom:146.862947px;}
.y221{bottom:147.025246px;}
.y1cb{bottom:149.499150px;}
.y311{bottom:149.584369px;}
.y36f{bottom:149.584715px;}
.y1ca{bottom:151.537754px;}
.y1cc{bottom:151.540200px;}
.y75{bottom:156.123525px;}
.y44{bottom:157.497494px;}
.yb4{bottom:157.747406px;}
.y2d8{bottom:158.258081px;}
.y33f{bottom:158.598965px;}
.y1a6{bottom:160.979550px;}
.y28c{bottom:163.518855px;}
.y2ab{bottom:163.520535px;}
.y26e{bottom:163.522605px;}
.y14d{bottom:163.524285px;}
.y165{bottom:163.526596px;}
.y11f{bottom:163.527240px;}
.y24a{bottom:163.527885px;}
.yc7{bottom:163.529311px;}
.y1a5{bottom:163.529715px;}
.y184{bottom:163.529955px;}
.y1a7{bottom:163.530600px;}
.y36e{bottom:163.871737px;}
.ya8{bottom:164.124270px;}
.y1f9{bottom:165.569820px;}
.y220{bottom:166.499940px;}
.y310{bottom:169.058925px;}
.y1c9{bottom:169.481129px;}
.y20a{bottom:170.163056px;}
.yb3{bottom:171.949229px;}
.y2d7{bottom:172.459903px;}
.y33e{bottom:172.800788px;}
.y43{bottom:173.994888px;}
.y74{bottom:175.598219px;}
.y36d{bottom:178.073559px;}
.y28b{bottom:182.993550px;}
.y2aa{bottom:182.995230px;}
.y26d{bottom:182.997300px;}
.y14c{bottom:182.998980px;}
.y164{bottom:183.001290px;}
.y11e{bottom:183.001935px;}
.y249{bottom:183.002580px;}
.yc6{bottom:183.004005px;}
.y1a4{bottom:183.004410px;}
.y183{bottom:183.004650px;}
.y30f{bottom:183.345947px;}
.ya7{bottom:183.598965px;}
.y209{bottom:184.364879px;}
.y1f8{bottom:185.044515px;}
.y21f{bottom:185.974635px;}
.yb2{bottom:186.236250px;}
.y33d{bottom:187.087809px;}
.y42{bottom:190.492282px;}
.y2d6{bottom:192.018459px;}
.y73{bottom:195.072914px;}
.y36c{bottom:197.546916px;}
.y1c8{bottom:198.394768px;}
.y208{bottom:198.651900px;}
.y29{bottom:200.441850px;}
.y28a{bottom:202.468245px;}
.y2a9{bottom:202.469925px;}
.y26c{bottom:202.471995px;}
.y14b{bottom:202.473675px;}
.y163{bottom:202.475985px;}
.y11d{bottom:202.476630px;}
.y248{bottom:202.477275px;}
.yc5{bottom:202.478700px;}
.y1a3{bottom:202.479104px;}
.y30e{bottom:202.819303px;}
.ya6{bottom:203.073660px;}
.y1f7{bottom:204.603211px;}
.y21e{bottom:205.533331px;}
.y2d5{bottom:206.220281px;}
.y33c{bottom:206.561166px;}
.y41{bottom:206.989676px;}
.y182{bottom:208.516500px;}
.y72{bottom:214.631610px;}
.y1c7{bottom:217.103734px;}
.y36b{bottom:217.105471px;}
.y30d{bottom:217.106325px;}
.y1a2{bottom:219.486600px;}
.y2d4{bottom:220.507303px;}
.y33b{bottom:220.848187px;}
.y28{bottom:221.446350px;}
.y289{bottom:222.026940px;}
.y2a8{bottom:222.028620px;}
.y26b{bottom:222.030690px;}
.y14a{bottom:222.032370px;}
.y162{bottom:222.034681px;}
.y11c{bottom:222.035325px;}
.y247{bottom:222.035970px;}
.y1a1{bottom:222.037800px;}
.ya5{bottom:222.632355px;}
.y40{bottom:223.487069px;}
.y1f6{bottom:224.077905px;}
.y21d{bottom:225.008025px;}
.yc4{bottom:227.990550px;}
.y36a{bottom:231.307294px;}
.y30c{bottom:231.308147px;}
.y71{bottom:234.106304px;}
.y1c6{bottom:235.897899px;}
.y2d3{bottom:239.980659px;}
.y33a{bottom:240.321544px;}
.y1f4{bottom:241.086600px;}
.y288{bottom:241.501635px;}
.y2a7{bottom:241.503315px;}
.y26a{bottom:241.505385px;}
.y149{bottom:241.507065px;}
.y161{bottom:241.509375px;}
.y11b{bottom:241.510020px;}
.y246{bottom:241.510665px;}
.ya4{bottom:242.107050px;}
.y27{bottom:242.450850px;}
.y1f5{bottom:243.552600px;}
.y1f3{bottom:243.553004px;}
.y21c{bottom:244.482720px;}
.y1a0{bottom:247.464450px;}
.y181{bottom:248.739405px;}
.y3f{bottom:248.998750px;}
.y369{bottom:250.865849px;}
.y30b{bottom:250.866703px;}
.y70{bottom:253.580999px;}
.y2d2{bottom:254.267681px;}
.y1c5{bottom:254.606865px;}
.y339{bottom:254.608565px;}
.y287{bottom:260.976330px;}
.y2a6{bottom:260.978010px;}
.y269{bottom:260.980080px;}
.y148{bottom:260.981760px;}
.y160{bottom:260.984070px;}
.y11a{bottom:260.984715px;}
.y245{bottom:260.985360px;}
.ya3{bottom:261.566355px;}
.y1f0{bottom:263.111055px;}
.y1f2{bottom:263.111700px;}
.y26{bottom:263.455350px;}
.y21b{bottom:263.957415px;}
.y368{bottom:265.067672px;}
.y30a{bottom:265.068525px;}
.y3e{bottom:265.496144px;}
.y17f{bottom:265.747950px;}
.y180{bottom:268.214100px;}
.y17e{bottom:268.214504px;}
.y338{bottom:268.810388px;}
.y1f1{bottom:269.744700px;}
.y6f{bottom:273.139695px;}
.y2d1{bottom:273.741037px;}
.y1c4{bottom:277.142584px;}
.y367{bottom:279.354693px;}
.y1ee{bottom:280.119600px;}
.y286{bottom:280.451025px;}
.y2a5{bottom:280.452704px;}
.y268{bottom:280.454775px;}
.y147{bottom:280.456454px;}
.y15f{bottom:280.458765px;}
.y119{bottom:280.459410px;}
.y244{bottom:280.460054px;}
.ya2{bottom:281.125050px;}
.y3d{bottom:281.993538px;}
.y1ed{bottom:282.585360px;}
.y1ef{bottom:282.585750px;}
.y21a{bottom:283.516111px;}
.yc3{bottom:284.283885px;}
.y25{bottom:284.459850px;}
.y309{bottom:284.541882px;}
.y17c{bottom:285.222000px;}
.y17b{bottom:287.770725px;}
.y17d{bottom:287.773200px;}
.y2d0{bottom:288.028059px;}
.y337{bottom:288.368943px;}
.y6e{bottom:292.614390px;}
.y366{bottom:298.828050px;}
.y308{bottom:298.828903px;}
.y285{bottom:300.009720px;}
.y2a4{bottom:300.011400px;}
.y267{bottom:300.013470px;}
.y146{bottom:300.015150px;}
.y15e{bottom:300.017461px;}
.y118{bottom:300.018105px;}
.y243{bottom:300.018750px;}
.ya1{bottom:300.599745px;}
.y19f{bottom:301.294110px;}
.y1c3{bottom:301.634278px;}
.y1ec{bottom:302.060054px;}
.y336{bottom:302.570766px;}
.y219{bottom:302.990805px;}
.yc2{bottom:303.842581px;}
.y24{bottom:305.464350px;}
.y17a{bottom:307.245420px;}
.y2cf{bottom:307.501415px;}
.y3c{bottom:307.505219px;}
.y6d{bottom:312.089084px;}
.y365{bottom:313.115071px;}
.y1c2{bottom:313.880250px;}
.y1c1{bottom:315.836100px;}
.y307{bottom:318.302260px;}
.y1ea{bottom:319.067550px;}
.y284{bottom:319.484415px;}
.y2a3{bottom:319.486095px;}
.y242{bottom:319.487775px;}
.y266{bottom:319.488165px;}
.y145{bottom:319.489845px;}
.y15d{bottom:319.492155px;}
.y117{bottom:319.492800px;}
.ya0{bottom:320.074440px;}
.y19e{bottom:320.768804px;}
.y1e9{bottom:321.616035px;}
.y1eb{bottom:321.618750px;}
.y2ce{bottom:321.788437px;}
.y335{bottom:322.044122px;}
.y218{bottom:322.465500px;}
.yc1{bottom:323.317275px;}
.y3b{bottom:324.002613px;}
.y23{bottom:326.468850px;}
.y179{bottom:326.720115px;}
.y364{bottom:327.316894px;}
.y6c{bottom:331.647780px;}
.y306{bottom:332.589281px;}
.y2cd{bottom:335.990259px;}
.y334{bottom:336.331144px;}
.y19c{bottom:337.776300px;}
.y283{bottom:338.959110px;}
.y2a2{bottom:338.960790px;}
.y241{bottom:338.962469px;}
.y265{bottom:338.962860px;}
.y144{bottom:338.964540px;}
.y15c{bottom:338.966850px;}
.y9f{bottom:339.549134px;}
.y19b{bottom:340.322715px;}
.y19d{bottom:340.327500px;}
.y3a{bottom:340.500007px;}
.y1e8{bottom:341.090730px;}
.y217{bottom:342.024196px;}
.yc0{bottom:342.791970px;}
.y116{bottom:345.004650px;}
.y178{bottom:346.278811px;}
.y363{bottom:346.790250px;}
.y22{bottom:347.473350px;}
.y2cc{bottom:350.277281px;}
.y1b8{bottom:350.786910px;}
.y6b{bottom:351.122475px;}
.y305{bottom:352.062638px;}
.y333{bottom:355.804500px;}
.y39{bottom:356.997400px;}
.y282{bottom:358.517805px;}
.y2a1{bottom:358.519485px;}
.y240{bottom:358.521165px;}
.y264{bottom:358.521555px;}
.y143{bottom:358.523235px;}
.y9e{bottom:359.107830px;}
.y19a{bottom:359.797410px;}
.y1e7{bottom:360.565425px;}
.y362{bottom:361.077272px;}
.y216{bottom:361.498890px;}
.ybf{bottom:362.266665px;}
.y15b{bottom:364.478700px;}
.y177{bottom:365.753505px;}
.y304{bottom:366.349659px;}
.y21{bottom:368.477850px;}
.y2cb{bottom:369.750637px;}
.y332{bottom:370.091522px;}
.y1b7{bottom:370.261604px;}
.y6a{bottom:370.597169px;}
.y38{bottom:373.494794px;}
.y281{bottom:377.992500px;}
.y2a0{bottom:377.994180px;}
.y23f{bottom:377.995860px;}
.y263{bottom:377.996250px;}
.y142{bottom:377.997930px;}
.y9d{bottom:378.582525px;}
.y199{bottom:379.272104px;}
.y1e6{bottom:380.040119px;}
.y361{bottom:380.550628px;}
.y215{bottom:380.973585px;}
.ybe{bottom:381.825361px;}
.y175{bottom:382.762050px;}
.y2ca{bottom:384.037659px;}
.y331{bottom:384.293344px;}
.y174{bottom:385.226130px;}
.y176{bottom:385.228200px;}
.y303{bottom:385.823016px;}
.y115{bottom:388.030560px;}
.y20{bottom:389.482350px;}
.y1b6{bottom:389.820300px;}
.y37{bottom:389.992188px;}
.y69{bottom:390.155865px;}
.y360{bottom:394.837650px;}
.y280{bottom:397.467195px;}
.y29f{bottom:397.468875px;}
.y23e{bottom:397.470554px;}
.y262{bottom:397.470945px;}
.y141{bottom:397.472625px;}
.y9c{bottom:398.057219px;}
.y198{bottom:398.830800px;}
.y1e5{bottom:399.598815px;}
.y214{bottom:400.532281px;}
.ybd{bottom:401.300055px;}
.y2c9{bottom:403.511015px;}
.y330{bottom:403.851900px;}
.y173{bottom:404.784825px;}
.y302{bottom:405.297572px;}
.y114{bottom:407.505254px;}
.y35f{bottom:409.039472px;}
.y68{bottom:409.630560px;}
.y1f{bottom:410.486850px;}
.y1b5{bottom:415.332150px;}
.y36{bottom:415.503869px;}
.y27f{bottom:417.025890px;}
.y29e{bottom:417.027570px;}
.y23d{bottom:417.029250px;}
.y261{bottom:417.029640px;}
.y140{bottom:417.031320px;}
.y9b{bottom:417.615915px;}
.y2c8{bottom:417.712838px;}
.y32f{bottom:418.053722px;}
.y197{bottom:418.305495px;}
.y1e4{bottom:419.073510px;}
.y301{bottom:419.584594px;}
.y213{bottom:420.006975px;}
.yba{bottom:420.773715px;}
.ybc{bottom:420.774750px;}
.y15a{bottom:422.982000px;}
.y172{bottom:424.259520px;}
.y113{bottom:427.063950px;}
.ybb{bottom:427.492800px;}
.y35e{bottom:428.598028px;}
.y67{bottom:429.105254px;}
.y1e{bottom:431.491350px;}
.y2c7{bottom:431.999859px;}
.y32e{bottom:432.340743px;}
.y27e{bottom:436.500585px;}
.y29d{bottom:436.502265px;}
.y23c{bottom:436.503945px;}
.y260{bottom:436.504335px;}
.y13f{bottom:436.506015px;}
.y9a{bottom:437.090610px;}
.y196{bottom:437.780190px;}
.y1e3{bottom:438.548204px;}
.y300{bottom:439.057950px;}
.y212{bottom:439.481670px;}
.yb9{bottom:440.332411px;}
.y35{bottom:441.015550px;}
.y159{bottom:442.456695px;}
.y35d{bottom:442.797404px;}
.y171{bottom:443.734215px;}
.y112{bottom:446.538645px;}
.y66{bottom:448.579949px;}
.y2c6{bottom:451.474416px;}
.y32d{bottom:451.815291px;}
.y1d{bottom:452.495850px;}
.y2ff{bottom:453.344972px;}
.y27d{bottom:455.975280px;}
.y29c{bottom:455.976960px;}
.y23b{bottom:455.978640px;}
.y25f{bottom:455.979030px;}
.y13e{bottom:455.980710px;}
.y99{bottom:456.565305px;}
.y35c{bottom:457.084425px;}
.y195{bottom:457.338885px;}
.y1e0{bottom:458.099790px;}
.y1e2{bottom:458.106900px;}
.y211{bottom:459.040366px;}
.yb8{bottom:459.807105px;}
.y158{bottom:462.015390px;}
.y1b3{bottom:462.103800px;}
.y170{bottom:463.208910px;}
.y1b2{bottom:464.653711px;}
.y1b4{bottom:464.655000px;}
.y1e1{bottom:464.740050px;}
.y2c5{bottom:465.761437px;}
.y111{bottom:466.013340px;}
.y32c{bottom:466.102312px;}
.y34{bottom:466.527231px;}
.y65{bottom:468.138645px;}
.y2fe{bottom:472.818328px;}
.y1c{bottom:473.500350px;}
.y27c{bottom:475.533975px;}
.y29b{bottom:475.535655px;}
.y23a{bottom:475.537335px;}
.y25e{bottom:475.537725px;}
.y13d{bottom:475.539405px;}
.y98{bottom:476.124000px;}
.y35b{bottom:476.557782px;}
.y194{bottom:476.813580px;}
.y1df{bottom:477.574485px;}
.y210{bottom:478.515061px;}
.yb7{bottom:479.281800px;}
.y157{bottom:481.490085px;}
.y16f{bottom:482.767605px;}
.y1b1{bottom:484.128405px;}
.y2c4{bottom:485.234794px;}
.y110{bottom:485.572035px;}
.y32b{bottom:485.575669px;}
.y2fd{bottom:487.105350px;}
.y64{bottom:487.613340px;}
.y35a{bottom:490.844803px;}
.y33{bottom:492.038912px;}
.y1b{bottom:494.419350px;}
.y27b{bottom:495.008670px;}
.y29a{bottom:495.010350px;}
.y239{bottom:495.012030px;}
.y25d{bottom:495.012420px;}
.y13c{bottom:495.014100px;}
.y97{bottom:495.598695px;}
.y193{bottom:496.288275px;}
.y1de{bottom:497.049180px;}
.y20f{bottom:497.989755px;}
.y2c3{bottom:499.521815px;}
.y32a{bottom:499.862690px;}
.y156{bottom:500.964780px;}
.y1b0{bottom:501.136800px;}
.y2fc{bottom:501.307172px;}
.y16c{bottom:502.241655px;}
.y16e{bottom:502.242300px;}
.y1af{bottom:503.603100px;}
.y10f{bottom:505.046730px;}
.y63{bottom:507.088034px;}
.y32{bottom:508.536306px;}
.y16d{bottom:508.875450px;}
.y359{bottom:510.318160px;}
.y2c2{bottom:513.723638px;}
.y27a{bottom:514.483365px;}
.y299{bottom:514.485045px;}
.y238{bottom:514.486725px;}
.y25c{bottom:514.487115px;}
.y96{bottom:515.073390px;}
.y1a{bottom:515.423850px;}
.y192{bottom:515.762969px;}
.y1dd{bottom:516.607875px;}
.y20e{bottom:517.464450px;}
.y329{bottom:519.336047px;}
.y155{bottom:520.523475px;}
.y13b{bottom:520.524975px;}
.y2fb{bottom:520.865728px;}
.y16b{bottom:521.716350px;}
.y10e{bottom:524.521425px;}
.y358{bottom:524.605181px;}
.y62{bottom:526.646730px;}
.yf1{bottom:530.466014px;}
.y2c1{bottom:533.282193px;}
.y328{bottom:533.623068px;}
.y279{bottom:533.958060px;}
.y298{bottom:533.959740px;}
.y237{bottom:533.961419px;}
.y25b{bottom:533.961810px;}
.y31{bottom:533.962788px;}
.y95{bottom:534.632085px;}
.y2fa{bottom:535.065450px;}
.y191{bottom:535.321665px;}
.y1c0{bottom:535.660360px;}
.y1dc{bottom:536.082570px;}
.y19{bottom:536.428350px;}
.y154{bottom:539.998170px;}
.y20d{bottom:542.975775px;}
.y357{bottom:544.078538px;}
.y10d{bottom:544.080120px;}
.y61{bottom:546.121425px;}
.y13a{bottom:547.483350px;}
.y2c0{bottom:547.484016px;}
.y2f9{bottom:549.352472px;}
.y30{bottom:550.545381px;}
.y327{bottom:553.096425px;}
.y278{bottom:553.516755px;}
.y297{bottom:553.518435px;}
.y236{bottom:553.520115px;}
.y25a{bottom:553.520505px;}
.y18d{bottom:553.774181px;}
.y94{bottom:554.106780px;}
.y190{bottom:554.796360px;}
.y1db{bottom:555.557265px;}
.yf0{bottom:557.423677px;}
.y18{bottom:557.432850px;}
.y356{bottom:558.365559px;}
.y1bf{bottom:558.876469px;}
.y153{bottom:559.472865px;}
.y10c{bottom:563.554815px;}
.y60{bottom:565.596119px;}
.y2bf{bottom:566.957372px;}
.y2f{bottom:567.042775px;}
.y326{bottom:567.298247px;}
.y2f8{bottom:568.825828px;}
.y20c{bottom:570.018750px;}
.y259{bottom:570.528900px;}
.y355{bottom:572.567381px;}
.y277{bottom:572.991450px;}
.y296{bottom:572.993130px;}
.y235{bottom:572.994810px;}
.y258{bottom:572.995200px;}
.y1be{bottom:573.163491px;}
.y93{bottom:573.581475px;}
.y18f{bottom:574.271054px;}
.y1da{bottom:575.115961px;}
.y18c{bottom:576.990291px;}
.y152{bottom:578.947560px;}
.y2be{bottom:581.244394px;}
.y10b{bottom:583.029510px;}
.y2f7{bottom:583.112850px;}
.y2e{bottom:583.540169px;}
.y5f{bottom:585.154815px;}
.yef{bottom:586.336115px;}
.y325{bottom:586.856803px;}
.y1bd{bottom:587.365313px;}
.y17{bottom:590.428200px;}
.y18b{bottom:591.277312px;}
.y354{bottom:592.040738px;}
.y276{bottom:592.466145px;}
.y295{bottom:592.467825px;}
.y234{bottom:592.469504px;}
.y92{bottom:593.056169px;}
.y139{bottom:593.060310px;}
.y18e{bottom:593.829750px;}
.y1d9{bottom:594.590655px;}
.y2f6{bottom:597.314672px;}
.y151{bottom:598.506255px;}
.y257{bottom:598.506900px;}
.y2d{bottom:600.037562px;}
.yee{bottom:600.537938px;}
.y2bd{bottom:600.717750px;}
.y324{bottom:601.058625px;}
.y1bc{bottom:601.652335px;}
.y10a{bottom:602.588205px;}
.y5e{bottom:604.629510px;}
.y18a{bottom:605.479135px;}
.y353{bottom:606.327759px;}
.y232{bottom:609.477000px;}
.y275{bottom:612.024840px;}
.y231{bottom:612.025875px;}
.y294{bottom:612.026520px;}
.y233{bottom:612.028200px;}
.y91{bottom:612.614865px;}
.y138{bottom:612.619005px;}
.y1d8{bottom:614.065350px;}
.y2bc{bottom:615.004772px;}
.y1bb{bottom:615.939356px;}
.y2c{bottom:616.534956px;}
.y2f5{bottom:616.788029px;}
.y150{bottom:617.980950px;}
.yed{bottom:619.332103px;}
.y189{bottom:619.766156px;}
.y323{bottom:620.617181px;}
.y109{bottom:622.062900px;}
.y5d{bottom:624.104204px;}
.y352{bottom:625.801116px;}
.y1ae{bottom:625.804275px;}
.y1ba{bottom:630.141179px;}
.y2f4{bottom:631.075050px;}
.y274{bottom:631.499535px;}
.y230{bottom:631.500570px;}
.y293{bottom:631.501215px;}
.y90{bottom:632.089560px;}
.y137{bottom:632.093700px;}
.y1d7{bottom:633.540045px;}
.y188{bottom:634.053178px;}
.y2bb{bottom:634.478128px;}
.y322{bottom:634.819003px;}
.yec{bottom:638.041069px;}
.y225{bottom:638.815969px;}
.y351{bottom:640.088137px;}
.y2b{bottom:641.026650px;}
.y5c{bottom:643.662900px;}
.y1b9{bottom:644.428200px;}
.y2f3{bottom:645.362071px;}
.y108{bottom:647.574600px;}
.y187{bottom:648.255000px;}
.y2ba{bottom:648.765150px;}
.y1ad{bottom:649.104384px;}
.y321{bottom:649.106025px;}
.y16a{bottom:650.040019px;}
.y273{bottom:650.974230px;}
.y22f{bottom:650.975265px;}
.y292{bottom:650.975910px;}
.y8f{bottom:651.564254px;}
.y136{bottom:651.568395px;}
.y256{bottom:651.569190px;}
.y1d6{bottom:653.098740px;}
.y16{bottom:653.443388px;}
.yeb{bottom:656.835234px;}
.y350{bottom:659.562694px;}
.y224{bottom:662.116078px;}
.y2b9{bottom:662.966972px;}
.y5b{bottom:663.130095px;}
.y1ac{bottom:663.306206px;}
.y2f2{bottom:664.836628px;}
.y15{bottom:668.494800px;}
.y320{bottom:668.579381px;}
.y272{bottom:670.532925px;}
.y22e{bottom:670.533961px;}
.y291{bottom:670.534605px;}
.y8e{bottom:671.122950px;}
.y135{bottom:671.127090px;}
.y255{bottom:671.127885px;}
.y1d5{bottom:672.573435px;}
.y169{bottom:673.256129px;}
.y34f{bottom:673.849715px;}
.yea{bottom:675.544200px;}
.y223{bottom:676.317900px;}
.y1ab{bottom:677.593228px;}
.y2f1{bottom:679.038451px;}
.y2b8{bottom:682.525528px;}
.y5a{bottom:682.604790px;}
.y31f{bottom:682.866403px;}
.y14{bottom:683.462213px;}
.y168{bottom:687.543150px;}
.ye9{bottom:689.831222px;}
.y271{bottom:690.007620px;}
.y22d{bottom:690.008655px;}
.y290{bottom:690.009300px;}
.y8d{bottom:690.597645px;}
.y107{bottom:690.601545px;}
.y134{bottom:690.601785px;}
.y254{bottom:690.602580px;}
.y1aa{bottom:691.795050px;}
.y1d4{bottom:692.048130px;}
.y34e{bottom:693.323072px;}
.y2f0{bottom:693.325472px;}
.y2b7{bottom:696.727350px;}
.y59{bottom:702.079484px;}
.y31e{bottom:702.339759px;}
.ye8{bottom:704.033044px;}
.y22b{bottom:707.017200px;}
.y34d{bottom:707.610093px;}
.y22a{bottom:709.482315px;}
.y22c{bottom:709.483350px;}
.y8c{bottom:710.072340px;}
.y106{bottom:710.076240px;}
.y133{bottom:710.076480px;}
.y253{bottom:710.077275px;}
.y1d3{bottom:711.606825px;}
.y2ef{bottom:712.798829px;}
.y13{bottom:713.481038px;}
.y28f{bottom:715.521000px;}
.y31d{bottom:716.541582px;}
.y2b6{bottom:716.966700px;}
.y58{bottom:721.638180px;}
.y34c{bottom:721.811916px;}
.ye6{bottom:722.827209px;}
.ye3{bottom:722.828409px;}
.y2ee{bottom:727.085850px;}
.y12{bottom:728.448450px;}
.y229{bottom:728.957010px;}
.y8b{bottom:729.631035px;}
.y105{bottom:729.634935px;}
.y132{bottom:729.635175px;}
.y252{bottom:729.635970px;}
.y378{bottom:730.828603px;}
.y1d2{bottom:731.081520px;}
.y31c{bottom:736.100137px;}
.ye5{bottom:737.114231px;}
.ye2{bottom:737.115431px;}
.y57{bottom:741.112875px;}
.y34b{bottom:741.285272px;}
.y2ed{bottom:741.287672px;}
.y11{bottom:743.499862px;}
.y228{bottom:748.515705px;}
.y8a{bottom:749.105730px;}
.y104{bottom:749.109630px;}
.y131{bottom:749.109870px;}
.y251{bottom:749.110665px;}
.y31b{bottom:750.301960px;}
.y377{bottom:750.303160px;}
.y1d1{bottom:750.556215px;}
.ye7{bottom:751.314853px;}
.ye4{bottom:751.316053px;}
.ye1{bottom:751.317253px;}
.y34a{bottom:755.572294px;}
.y2b5{bottom:756.169560px;}
.y10{bottom:758.466075px;}
.y56{bottom:760.587569px;}
.y2ec{bottom:760.846228px;}
.y376{bottom:764.590181px;}
.y227{bottom:767.990400px;}
.y89{bottom:768.580425px;}
.y103{bottom:768.584325px;}
.y130{bottom:768.584565px;}
.y250{bottom:768.585360px;}
.y349{bottom:769.859315px;}
.y31a{bottom:769.860515px;}
.ye0{bottom:770.111418px;}
.y1d0{bottom:770.114911px;}
.yf{bottom:773.433488px;}
.y2eb{bottom:775.048050px;}
.y2b4{bottom:775.728255px;}
.y375{bottom:778.792004px;}
.y55{bottom:780.146265px;}
.y319{bottom:784.062338px;}
.ydf{bottom:784.313241px;}
.y88{bottom:788.055119px;}
.y102{bottom:788.059019px;}
.y12f{bottom:788.059260px;}
.y24f{bottom:788.060054px;}
.ye{bottom:788.484900px;}
.y348{bottom:789.333872px;}
.y1cf{bottom:789.589605px;}
.y226{bottom:793.502250px;}
.y2ea{bottom:794.606606px;}
.y2b3{bottom:795.202950px;}
.y374{bottom:798.350559px;}
.yde{bottom:798.600262px;}
.y54{bottom:799.620960px;}
.y318{bottom:803.620893px;}
.y24d{bottom:805.067550px;}
.y87{bottom:807.613815px;}
.y101{bottom:807.617715px;}
.y12e{bottom:807.617955px;}
.y24e{bottom:807.618750px;}
.y2e9{bottom:808.808428px;}
.y1ce{bottom:809.064300px;}
.yb{bottom:815.441550px;}
.yd{bottom:815.442300px;}
.ydc{bottom:817.309228px;}
.y317{bottom:817.822716px;}
.y373{bottom:817.823916px;}
.y53{bottom:819.095654px;}
.y2b2{bottom:820.714800px;}
.yc{bottom:821.480100px;}
.y347{bottom:823.094250px;}
.y2e8{bottom:823.095450px;}
.y12c{bottom:824.626500px;}
.y86{bottom:827.088510px;}
.y12b{bottom:827.090970px;}
.y100{bottom:827.092410px;}
.y12d{bottom:827.092650px;}
.ydb{bottom:831.596250px;}
.ya{bottom:831.939900px;}
.y8{bottom:831.940650px;}
.y316{bottom:837.296072px;}
.y372{bottom:837.297272px;}
.y9{bottom:837.977850px;}
.y52{bottom:838.654350px;}
.y2e7{bottom:842.568806px;}
.ydd{bottom:845.796872px;}
.yda{bottom:845.798072px;}
.y85{bottom:846.563204px;}
.y12a{bottom:846.565665px;}
.yff{bottom:846.567104px;}
.y6{bottom:848.437650px;}
.y315{bottom:851.583094px;}
.y371{bottom:851.584294px;}
.y7{bottom:854.475450px;}
.y346{bottom:856.854628px;}
.y2e6{bottom:856.855828px;}
.y207{bottom:857.450658px;}
.y51{bottom:858.129045px;}
.y2b1{bottom:859.916611px;}
.yfd{bottom:863.574600px;}
.yd9{bottom:864.592237px;}
.y370{bottom:865.871315px;}
.y84{bottom:866.121900px;}
.yfc{bottom:866.124361px;}
.yfe{bottom:866.125800px;}
.y345{bottom:871.056450px;}
.y2e5{bottom:871.057650px;}
.y50{bottom:877.603740px;}
.yd8{bottom:878.794060px;}
.y2b0{bottom:879.391305px;}
.y206{bottom:884.493520px;}
.y314{bottom:885.344672px;}
.y83{bottom:885.596595px;}
.yfb{bottom:885.599055px;}
.y5{bottom:885.937387px;}
.yb1{bottom:889.594680px;}
.y344{bottom:890.615006px;}
.y2e4{bottom:890.616206px;}
.yd7{bottom:893.081081px;}
.y4f{bottom:897.078434px;}
.y2af{bottom:898.866000px;}
.y313{bottom:899.546494px;}
.y205{bottom:902.436895px;}
.yf9{bottom:902.607600px;}
.y343{bottom:904.816828px;}
.y2e3{bottom:904.818028px;}
.y82{bottom:905.071290px;}
.yf8{bottom:905.072715px;}
.y129{bottom:905.073360px;}
.yfa{bottom:905.073750px;}
.yb0{bottom:909.153375px;}
.yd5{bottom:911.790047px;}
.y4e{bottom:916.637130px;}
.y2e2{bottom:919.105050px;}
.y4{bottom:923.440575px;}
.y342{bottom:924.291385px;}
.y2ae{bottom:924.377700px;}
.y81{bottom:924.629985px;}
.yf7{bottom:924.631411px;}
.y128{bottom:924.632055px;}
.yd4{bottom:926.077069px;}
.yaf{bottom:928.628070px;}
.y204{bottom:931.350534px;}
.y312{bottom:933.306872px;}
.y4d{bottom:936.111825px;}
.y2e1{bottom:938.578406px;}
.yd6{bottom:940.362890px;}
.yd3{bottom:940.364090px;}
.y126{bottom:941.640750px;}
.y125{bottom:944.104425px;}
.y80{bottom:944.104680px;}
.yf6{bottom:944.106105px;}
.y127{bottom:944.106750px;}
.yae{bottom:948.102765px;}
.y202{bottom:948.103800px;}
.y201{bottom:950.059135px;}
.y203{bottom:950.059500px;}
.y2e0{bottom:952.865428px;}
.y4c{bottom:955.586519px;}
.yd1{bottom:959.073056px;}
.y3{bottom:960.943762px;}
.y124{bottom:963.579120px;}
.y7f{bottom:963.579375px;}
.yf5{bottom:963.581204px;}
.y1ff{bottom:966.812400px;}
.y2df{bottom:967.067250px;}
.yad{bottom:967.577460px;}
.y1fe{bottom:968.852934px;}
.y200{bottom:968.853300px;}
.yd0{bottom:973.360078px;}
.y4b{bottom:975.145215px;}
.yf4{bottom:983.137816px;}
.y7e{bottom:983.138070px;}
.y1fd{bottom:985.606050px;}
.y2de{bottom:986.540607px;}
.yac{bottom:987.136155px;}
.yd2{bottom:987.560700px;}
.y1fc{bottom:987.561794px;}
.ycf{bottom:987.561900px;}
.y4a{bottom:994.619910px;}
.y2{bottom:998.446950px;}
.y2dd{bottom:1000.827628px;}
.yf3{bottom:1002.612511px;}
.y7d{bottom:1002.612765px;}
.yab{bottom:1006.610850px;}
.ycd{bottom:1010.096312px;}
.y49{bottom:1014.094604px;}
.y2dc{bottom:1015.114650px;}
.yf2{bottom:1022.087205px;}
.y7c{bottom:1022.087460px;}
.yce{bottom:1022.343000px;}
.ycc{bottom:1024.298135px;}
.yaa{bottom:1032.121575px;}
.y48{bottom:1033.653300px;}
.y2db{bottom:1034.588006px;}
.y1{bottom:1035.949350px;}
.y122{bottom:1039.095750px;}
.y123{bottom:1041.561900px;}
.y7b{bottom:1041.562154px;}
.y79{bottom:1046.574793px;}
.ycb{bottom:1048.789829px;}
.y47{bottom:1059.079950px;}
.y7a{bottom:1061.120850px;}
.y78{bottom:1063.072186px;}
.yca{bottom:1063.076850px;}
.y77{bottom:1118.692500px;}
.h14{height:23.388345px;}
.hf{height:23.996250px;}
.h15{height:24.796125px;}
.hc{height:26.917308px;}
.h4{height:26.996400px;}
.h13{height:28.477152px;}
.h7{height:34.943563px;}
.he{height:35.087561px;}
.hd{height:35.999550px;}
.h1{height:37.199535px;}
.h17{height:37.207934px;}
.h18{height:37.209321px;}
.h3{height:40.500000px;}
.h9{height:42.720427px;}
.h16{height:42.749827px;}
.ha{height:42.960430px;}
.h6{height:44.175000px;}
.h11{height:48.438401px;}
.h10{height:48.440619px;}
.h12{height:48.447756px;}
.h8{height:53.999550px;}
.hb{height:55.799535px;}
.h5{height:69.215567px;}
.h2{height:86.520433px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:54.000000px;}
.x41{left:60.888150px;}
.x14{left:71.433000px;}
.x42{left:75.174750px;}
.x3f{left:109.445550px;}
.x40{left:123.307050px;}
.x21{left:148.731616px;}
.x22{left:240.572468px;}
.x20{left:267.873327px;}
.x1{left:300.018750px;}
.x19{left:307.416432px;}
.x15{left:317.966429px;}
.x2e{left:325.360500px;}
.x57{left:331.483190px;}
.x2f{left:334.034550px;}
.x1a{left:341.262009px;}
.x56{left:349.766850px;}
.x4c{left:356.825100px;}
.x26{left:362.607750px;}
.x27{left:371.281800px;}
.x4d{left:374.428200px;}
.x2{left:400.790400px;}
.xa{left:402.406200px;}
.x28{left:404.107050px;}
.x2b{left:405.212550px;}
.x29{left:409.549500px;}
.x3{left:413.971500px;}
.x2c{left:420.264450px;}
.x10{left:426.897450px;}
.x43{left:430.809300px;}
.x11{left:440.078550px;}
.x1b{left:442.033150px;}
.x44{left:443.480100px;}
.x37{left:450.963600px;}
.x39{left:460.062900px;}
.x38{left:466.100700px;}
.x3a{left:475.199850px;}
.x54{left:488.125800px;}
.x55{left:493.483350px;}
.x35{left:496.714800px;}
.x36{left:505.303800px;}
.x1c{left:506.407545px;}
.x4e{left:509.724529px;}
.x4{left:514.998300px;}
.xb{left:516.103800px;}
.x23{left:520.015650px;}
.x51{left:521.121150px;}
.x30{left:524.692800px;}
.x5{left:528.264450px;}
.x52{left:543.911700px;}
.x53{left:551.905350px;}
.x4f{left:614.832415px;}
.x12{left:620.532150px;}
.xc{left:628.951050px;}
.x24{left:638.135250px;}
.xd{left:640.176150px;}
.x25{left:643.492800px;}
.x16{left:646.639200px;}
.x2a{left:652.251750px;}
.x6{left:656.673900px;}
.x1d{left:667.300334px;}
.x7{left:669.939900px;}
.x17{left:677.083350px;}
.x18{left:691.624950px;}
.x3d{left:692.815500px;}
.x4a{left:698.683200px;}
.x45{left:699.703800px;}
.x48{left:700.979400px;}
.x31{left:705.231300px;}
.x3e{left:709.908450px;}
.x4b{left:711.354150px;}
.x32{left:713.990400px;}
.x49{left:715.266000px;}
.x1e{left:720.364870px;}
.x50{left:730.317900px;}
.x46{left:732.613950px;}
.x47{left:750.217200px;}
.x33{left:753.618750px;}
.x34{left:762.292650px;}
.x2d{left:763.738350px;}
.xe{left:767.650200px;}
.xf{left:778.790250px;}
.x8{left:784.998300px;}
.x9{left:796.223400px;}
.x3b{left:799.369950px;}
.x3c{left:814.506900px;}
.x1f{left:829.728900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.352000pt;}
.ls6e{letter-spacing:-0.784008pt;}
.lsb{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.010667pt;}
.ls61{letter-spacing:0.016000pt;}
.ls55{letter-spacing:0.017066pt;}
.ls30{letter-spacing:0.021333pt;}
.ls4f{letter-spacing:0.025600pt;}
.ls72{letter-spacing:0.029866pt;}
.ls2a{letter-spacing:0.032000pt;}
.ls3{letter-spacing:0.034133pt;}
.ls8{letter-spacing:0.045600pt;}
.ls42{letter-spacing:0.053334pt;}
.ls70{letter-spacing:0.064001pt;}
.ls71{letter-spacing:0.072532pt;}
.ls0{letter-spacing:0.073590pt;}
.ls1{letter-spacing:0.076790pt;}
.ls28{letter-spacing:0.085332pt;}
.ls3e{letter-spacing:0.085334pt;}
.ls20{letter-spacing:0.096001pt;}
.ls40{letter-spacing:0.128001pt;}
.ls37{letter-spacing:0.136532pt;}
.lsc{letter-spacing:0.149335pt;}
.lsd{letter-spacing:0.154668pt;}
.ls3f{letter-spacing:0.165335pt;}
.ls3b{letter-spacing:0.168345pt;}
.ls2f{letter-spacing:0.170665pt;}
.ls6f{letter-spacing:0.192002pt;}
.lse{letter-spacing:0.197335pt;}
.ls64{letter-spacing:0.208002pt;}
.ls5e{letter-spacing:0.224002pt;}
.ls6a{letter-spacing:0.247569pt;}
.ls6c{letter-spacing:0.314670pt;}
.ls60{letter-spacing:0.320003pt;}
.ls4a{letter-spacing:0.336003pt;}
.ls22{letter-spacing:0.458671pt;}
.ls21{letter-spacing:0.469338pt;}
.ls23{letter-spacing:0.506672pt;}
.ls1c{letter-spacing:0.512005pt;}
.ls14{letter-spacing:0.517339pt;}
.ls18{letter-spacing:0.522672pt;}
.ls13{letter-spacing:0.528005pt;}
.ls1d{letter-spacing:0.533339pt;}
.ls16{letter-spacing:0.538672pt;}
.ls1e{letter-spacing:0.544005pt;}
.ls15{letter-spacing:0.549339pt;}
.ls17{letter-spacing:0.554672pt;}
.ls25{letter-spacing:0.565339pt;}
.ls1a{letter-spacing:0.570672pt;}
.ls19{letter-spacing:0.613339pt;}
.ls1b{letter-spacing:0.618673pt;}
.ls24{letter-spacing:0.757341pt;}
.ls39{letter-spacing:2.619344pt;}
.ls3a{letter-spacing:2.921211pt;}
.ls5{letter-spacing:9.104953pt;}
.ls4{letter-spacing:9.122019pt;}
.ls29{letter-spacing:9.343883pt;}
.lsa{letter-spacing:9.378016pt;}
.ls56{letter-spacing:9.459082pt;}
.ls50{letter-spacing:9.646813pt;}
.ls43{letter-spacing:9.994767pt;}
.ls7{letter-spacing:10.949067pt;}
.ls6b{letter-spacing:11.050777pt;}
.ls6d{letter-spacing:11.082777pt;}
.ls9{letter-spacing:11.111200pt;}
.ls6{letter-spacing:11.232800pt;}
.ls54{letter-spacing:11.269446pt;}
.ls1f{letter-spacing:11.354780pt;}
.ls53{letter-spacing:11.381447pt;}
.ls4b{letter-spacing:11.413447pt;}
.ls52{letter-spacing:11.429448pt;}
.ls4e{letter-spacing:11.504115pt;}
.ls4d{letter-spacing:11.509448pt;}
.ls4c{letter-spacing:11.520115pt;}
.ls51{letter-spacing:11.552116pt;}
.ls45{letter-spacing:11.573449pt;}
.ls68{letter-spacing:11.589449pt;}
.ls62{letter-spacing:11.626783pt;}
.lsf{letter-spacing:11.653450pt;}
.ls46{letter-spacing:11.680117pt;}
.ls67{letter-spacing:11.696117pt;}
.ls69{letter-spacing:11.711854pt;}
.ls63{letter-spacing:11.712117pt;}
.ls48{letter-spacing:11.717451pt;}
.ls12{letter-spacing:11.728117pt;}
.ls5d{letter-spacing:11.765451pt;}
.ls59{letter-spacing:11.788653pt;}
.ls44{letter-spacing:11.802785pt;}
.ls26{letter-spacing:11.808118pt;}
.ls3c{letter-spacing:11.824118pt;}
.ls27{letter-spacing:11.845452pt;}
.ls3d{letter-spacing:11.856119pt;}
.ls47{letter-spacing:11.877452pt;}
.ls65{letter-spacing:11.893452pt;}
.ls5f{letter-spacing:11.930786pt;}
.ls10{letter-spacing:11.957453pt;}
.ls38{letter-spacing:11.963584pt;}
.ls49{letter-spacing:11.984120pt;}
.ls66{letter-spacing:12.010787pt;}
.ls5a{letter-spacing:12.014783pt;}
.ls5c{letter-spacing:12.016120pt;}
.ls41{letter-spacing:12.032120pt;}
.ls5b{letter-spacing:12.091582pt;}
.ls2{letter-spacing:18.777365pt;}
.ls32{letter-spacing:26.640734pt;}
.ls33{letter-spacing:28.151115pt;}
.ls31{letter-spacing:50.222306pt;}
.ls2b{letter-spacing:65.526648pt;}
.ls36{letter-spacing:73.505215pt;}
.ls2c{letter-spacing:129.943976pt;}
.ls2e{letter-spacing:135.870302pt;}
.ls2d{letter-spacing:170.156806pt;}
.ls34{letter-spacing:409.181019pt;}
.ls35{letter-spacing:412.252980pt;}
.ls57{letter-spacing:461.131302pt;}
.ls58{letter-spacing:589.637429pt;}
.wsdf{word-spacing:-12.085454pt;}
.ws140{word-spacing:-11.877452pt;}
.ws53{word-spacing:-11.781451pt;}
.ws105{word-spacing:-11.706784pt;}
.ws11d{word-spacing:-11.573449pt;}
.ws15e{word-spacing:-11.136111pt;}
.ws2c{word-spacing:-9.420682pt;}
.ws92{word-spacing:-0.810675pt;}
.ws8e{word-spacing:-0.512005pt;}
.ws17b{word-spacing:-0.063999pt;}
.ws52{word-spacing:-0.053334pt;}
.ws24{word-spacing:-0.050667pt;}
.ws6{word-spacing:-0.048000pt;}
.ws1b{word-spacing:-0.042666pt;}
.ws5{word-spacing:-0.031996pt;}
.ws4a{word-spacing:0.000000pt;}
.ws17f{word-spacing:8.392428pt;}
.ws46{word-spacing:8.511894pt;}
.ws196{word-spacing:8.520427pt;}
.ws49{word-spacing:8.575893pt;}
.ws192{word-spacing:8.588693pt;}
.wsb5{word-spacing:8.592959pt;}
.ws1b0{word-spacing:8.601492pt;}
.ws1a8{word-spacing:8.622826pt;}
.ws44{word-spacing:8.635625pt;}
.ws143{word-spacing:8.648425pt;}
.ws132{word-spacing:8.652692pt;}
.ws35{word-spacing:8.656958pt;}
.ws1a6{word-spacing:8.661225pt;}
.ws37{word-spacing:8.665492pt;}
.ws180{word-spacing:8.691091pt;}
.ws31{word-spacing:8.695358pt;}
.ws131{word-spacing:8.699625pt;}
.ws14f{word-spacing:8.703891pt;}
.ws19e{word-spacing:8.708158pt;}
.ws18a{word-spacing:8.716691pt;}
.ws112{word-spacing:8.720958pt;}
.wsb0{word-spacing:8.725224pt;}
.ws2f{word-spacing:8.729491pt;}
.ws2e{word-spacing:8.733757pt;}
.ws47{word-spacing:8.750824pt;}
.ws3e{word-spacing:8.755091pt;}
.ws100{word-spacing:8.767890pt;}
.ws1ab{word-spacing:8.772157pt;}
.ws39{word-spacing:8.776424pt;}
.ws16{word-spacing:8.780690pt;}
.ws30{word-spacing:8.784957pt;}
.ws193{word-spacing:8.789223pt;}
.ws38{word-spacing:8.793490pt;}
.ws18e{word-spacing:8.797757pt;}
.ws45{word-spacing:8.806290pt;}
.ws48{word-spacing:8.814823pt;}
.ws40{word-spacing:8.819090pt;}
.ws82{word-spacing:8.823356pt;}
.ws1a{word-spacing:8.827623pt;}
.ws115{word-spacing:8.831890pt;}
.ws1ad{word-spacing:8.840423pt;}
.ws12f{word-spacing:8.857489pt;}
.ws142{word-spacing:8.861756pt;}
.ws15c{word-spacing:8.866023pt;}
.ws43{word-spacing:8.870289pt;}
.ws129{word-spacing:8.874556pt;}
.ws116{word-spacing:8.878822pt;}
.ws1a7{word-spacing:8.883089pt;}
.ws118{word-spacing:8.887356pt;}
.ws7f{word-spacing:8.891622pt;}
.ws32{word-spacing:8.895889pt;}
.ws15b{word-spacing:8.900155pt;}
.ws19{word-spacing:8.904422pt;}
.ws199{word-spacing:8.908689pt;}
.ws12{word-spacing:8.912955pt;}
.ws18b{word-spacing:8.917222pt;}
.ws81{word-spacing:8.921488pt;}
.ws36{word-spacing:8.925755pt;}
.ws3f{word-spacing:8.930022pt;}
.ws197{word-spacing:8.934288pt;}
.ws11{word-spacing:8.938555pt;}
.ws190{word-spacing:8.942822pt;}
.ws194{word-spacing:8.947088pt;}
.ws1ae{word-spacing:8.951355pt;}
.ws15a{word-spacing:8.955621pt;}
.ws42{word-spacing:8.959888pt;}
.ws18{word-spacing:8.964155pt;}
.ws17{word-spacing:8.968421pt;}
.ws14{word-spacing:8.972688pt;}
.ws189{word-spacing:8.981221pt;}
.ws110{word-spacing:8.985488pt;}
.wsb1{word-spacing:8.989754pt;}
.ws130{word-spacing:8.994021pt;}
.ws12b{word-spacing:8.998288pt;}
.ws1b1{word-spacing:9.002554pt;}
.ws34{word-spacing:9.006821pt;}
.ws1aa{word-spacing:9.011087pt;}
.ws182{word-spacing:9.015354pt;}
.ws117{word-spacing:9.023887pt;}
.ws12c{word-spacing:9.028154pt;}
.ws10{word-spacing:9.032420pt;}
.ws17e{word-spacing:9.036687pt;}
.ws1a2{word-spacing:9.040954pt;}
.ws2b{word-spacing:9.045220pt;}
.ws2d{word-spacing:9.049487pt;}
.ws3c{word-spacing:9.053753pt;}
.ws1a9{word-spacing:9.058020pt;}
.wsb2{word-spacing:9.062287pt;}
.ws12a{word-spacing:9.066553pt;}
.ws184{word-spacing:9.070820pt;}
.ws3a{word-spacing:9.075087pt;}
.ws181{word-spacing:9.092153pt;}
.ws183{word-spacing:9.096420pt;}
.ws1af{word-spacing:9.100686pt;}
.ws10f{word-spacing:9.104953pt;}
.ws1a0{word-spacing:9.117753pt;}
.wsb3{word-spacing:9.122019pt;}
.wsff{word-spacing:9.126286pt;}
.ws185{word-spacing:9.130553pt;}
.ws18c{word-spacing:9.134819pt;}
.ws0{word-spacing:9.139086pt;}
.ws195{word-spacing:9.143352pt;}
.ws1a5{word-spacing:9.147619pt;}
.ws111{word-spacing:9.156152pt;}
.ws128{word-spacing:9.160419pt;}
.ws1a1{word-spacing:9.164685pt;}
.ws19c{word-spacing:9.173219pt;}
.ws187{word-spacing:9.177485pt;}
.ws114{word-spacing:9.181752pt;}
.ws19a{word-spacing:9.186019pt;}
.ws18f{word-spacing:9.190285pt;}
.wsb4{word-spacing:9.198818pt;}
.wsbe{word-spacing:9.203085pt;}
.ws18d{word-spacing:9.211618pt;}
.ws80{word-spacing:9.215885pt;}
.wsbd{word-spacing:9.262818pt;}
.ws3d{word-spacing:9.267084pt;}
.ws41{word-spacing:9.284151pt;}
.ws144{word-spacing:9.288417pt;}
.wsbf{word-spacing:9.292684pt;}
.ws1ac{word-spacing:9.296950pt;}
.ws3b{word-spacing:9.301217pt;}
.ws186{word-spacing:9.305484pt;}
.ws12d{word-spacing:9.309750pt;}
.ws15{word-spacing:9.331083pt;}
.ws13{word-spacing:9.335350pt;}
.ws1b2{word-spacing:9.339617pt;}
.ws1a3{word-spacing:9.360950pt;}
.ws12e{word-spacing:9.365216pt;}
.ws19b{word-spacing:9.390816pt;}
.ws101{word-spacing:9.395083pt;}
.wsf7{word-spacing:9.402761pt;}
.ws33{word-spacing:9.403616pt;}
.ws1a4{word-spacing:9.433482pt;}
.ws19f{word-spacing:9.437749pt;}
.ws113{word-spacing:9.450549pt;}
.ws198{word-spacing:9.454815pt;}
.ws19d{word-spacing:9.604147pt;}
.wsf6{word-spacing:9.850765pt;}
.wsc{word-spacing:10.233600pt;}
.ws9{word-spacing:10.272000pt;}
.wsb{word-spacing:10.300800pt;}
.ws4{word-spacing:10.382400pt;}
.wsa{word-spacing:10.387200pt;}
.ws160{word-spacing:10.405437pt;}
.wse{word-spacing:10.416000pt;}
.wsf{word-spacing:10.420800pt;}
.ws8{word-spacing:10.454400pt;}
.ws7{word-spacing:10.536000pt;}
.ws15d{word-spacing:10.544105pt;}
.wsd{word-spacing:10.656000pt;}
.ws166{word-spacing:10.693440pt;}
.ws16a{word-spacing:10.720107pt;}
.ws11a{word-spacing:10.736107pt;}
.ws155{word-spacing:10.741441pt;}
.ws161{word-spacing:10.768108pt;}
.ws151{word-spacing:10.789441pt;}
.ws121{word-spacing:10.800108pt;}
.ws167{word-spacing:10.837442pt;}
.ws124{word-spacing:10.842775pt;}
.ws10d{word-spacing:10.853442pt;}
.ws10e{word-spacing:10.869442pt;}
.ws98{word-spacing:10.874775pt;}
.ws94{word-spacing:10.880109pt;}
.ws150{word-spacing:10.885442pt;}
.ws163{word-spacing:10.890776pt;}
.ws126{word-spacing:10.912109pt;}
.ws2a{word-spacing:10.913600pt;}
.ws169{word-spacing:10.944109pt;}
.ws96{word-spacing:10.965443pt;}
.ws93{word-spacing:10.970776pt;}
.ws27{word-spacing:10.974400pt;}
.ws7a{word-spacing:10.976110pt;}
.ws95{word-spacing:10.981443pt;}
.ws1f{word-spacing:10.984533pt;}
.ws11b{word-spacing:10.986777pt;}
.wsf9{word-spacing:10.992110pt;}
.ws15f{word-spacing:10.997443pt;}
.ws154{word-spacing:11.013443pt;}
.wsa5{word-spacing:11.018777pt;}
.ws8c{word-spacing:11.024110pt;}
.ws10c{word-spacing:11.029444pt;}
.ws119{word-spacing:11.040110pt;}
.ws1e{word-spacing:11.040267pt;}
.ws125{word-spacing:11.045444pt;}
.ws1c{word-spacing:11.050400pt;}
.ws8b{word-spacing:11.050777pt;}
.ws120{word-spacing:11.061444pt;}
.ws109{word-spacing:11.066777pt;}
.wsd1{word-spacing:11.072111pt;}
.ws11e{word-spacing:11.077444pt;}
.ws8a{word-spacing:11.088111pt;}
.ws8f{word-spacing:11.098778pt;}
.ws97{word-spacing:11.104111pt;}
.ws10a{word-spacing:11.114778pt;}
.ws123{word-spacing:11.125445pt;}
.ws8d{word-spacing:11.130778pt;}
.ws9a{word-spacing:11.141445pt;}
.wsa1{word-spacing:11.146778pt;}
.wsfd{word-spacing:11.152112pt;}
.ws90{word-spacing:11.157445pt;}
.ws99{word-spacing:11.162778pt;}
.ws152{word-spacing:11.168112pt;}
.ws91{word-spacing:11.178778pt;}
.wsa6{word-spacing:11.189445pt;}
.ws22{word-spacing:11.192267pt;}
.ws9c{word-spacing:11.200112pt;}
.ws165{word-spacing:11.210779pt;}
.ws21{word-spacing:11.212533pt;}
.ws9b{word-spacing:11.216112pt;}
.ws88{word-spacing:11.226779pt;}
.wsa0{word-spacing:11.237446pt;}
.wse2{word-spacing:11.258779pt;}
.ws29{word-spacing:11.268267pt;}
.wsfc{word-spacing:11.269446pt;}
.wsef{word-spacing:11.280113pt;}
.ws23{word-spacing:11.288533pt;}
.ws89{word-spacing:11.290780pt;}
.ws71{word-spacing:11.296113pt;}
.ws122{word-spacing:11.301446pt;}
.ws20{word-spacing:11.303733pt;}
.wsfa{word-spacing:11.312113pt;}
.ws11f{word-spacing:11.322780pt;}
.wsa7{word-spacing:11.344113pt;}
.ws10b{word-spacing:11.349447pt;}
.ws162{word-spacing:11.354780pt;}
.ws168{word-spacing:11.360114pt;}
.ws153{word-spacing:11.376114pt;}
.wsa8{word-spacing:11.408114pt;}
.ws13b{word-spacing:11.408924pt;}
.ws11c{word-spacing:11.413447pt;}
.ws28{word-spacing:11.415200pt;}
.ws25{word-spacing:11.425333pt;}
.wsd0{word-spacing:11.434781pt;}
.ws26{word-spacing:11.445600pt;}
.wsf8{word-spacing:11.450781pt;}
.wsee{word-spacing:11.456115pt;}
.ws102{word-spacing:11.466781pt;}
.ws174{word-spacing:11.472115pt;}
.ws159{word-spacing:11.477448pt;}
.ws1d{word-spacing:11.481067pt;}
.ws13a{word-spacing:11.481456pt;}
.ws16c{word-spacing:11.488115pt;}
.ws172{word-spacing:11.493448pt;}
.wsa3{word-spacing:11.498782pt;}
.ws4c{word-spacing:11.509448pt;}
.ws4f{word-spacing:11.514782pt;}
.ws76{word-spacing:11.520115pt;}
.wsf1{word-spacing:11.525449pt;}
.wsea{word-spacing:11.530782pt;}
.ws69{word-spacing:11.536115pt;}
.ws7d{word-spacing:11.541449pt;}
.ws14e{word-spacing:11.545456pt;}
.wsda{word-spacing:11.546782pt;}
.ws145{word-spacing:11.549722pt;}
.ws9e{word-spacing:11.552116pt;}
.wsc0{word-spacing:11.553989pt;}
.ws158{word-spacing:11.557449pt;}
.ws14b{word-spacing:11.558256pt;}
.ws75{word-spacing:11.562782pt;}
.ws6c{word-spacing:11.568116pt;}
.ws6f{word-spacing:11.573449pt;}
.ws4e{word-spacing:11.578782pt;}
.ws139{word-spacing:11.579589pt;}
.ws157{word-spacing:11.584116pt;}
.wscb{word-spacing:11.588122pt;}
.ws59{word-spacing:11.589449pt;}
.ws4b{word-spacing:11.594783pt;}
.ws50{word-spacing:11.600116pt;}
.wsb6{word-spacing:11.605449pt;}
.ws62{word-spacing:11.610783pt;}
.ws70{word-spacing:11.616116pt;}
.wsce{word-spacing:11.617988pt;}
.wsd9{word-spacing:11.621450pt;}
.ws5f{word-spacing:11.626783pt;}
.wse9{word-spacing:11.632116pt;}
.wsbc{word-spacing:11.637450pt;}
.ws5d{word-spacing:11.642783pt;}
.ws54{word-spacing:11.648116pt;}
.ws51{word-spacing:11.653450pt;}
.wsb7{word-spacing:11.658783pt;}
.ws79{word-spacing:11.664117pt;}
.ws14c{word-spacing:11.669187pt;}
.ws5a{word-spacing:11.669450pt;}
.wsaa{word-spacing:11.674783pt;}
.ws60{word-spacing:11.680117pt;}
.wsaf{word-spacing:11.685450pt;}
.ws4d{word-spacing:11.690784pt;}
.ws146{word-spacing:11.694787pt;}
.ws7e{word-spacing:11.696117pt;}
.ws7b{word-spacing:11.701450pt;}
.ws6b{word-spacing:11.706784pt;}
.ws64{word-spacing:11.712117pt;}
.ws63{word-spacing:11.717451pt;}
.ws86{word-spacing:11.722784pt;}
.wsa9{word-spacing:11.728117pt;}
.wsf3{word-spacing:11.738784pt;}
.ws65{word-spacing:11.744117pt;}
.wsd7{word-spacing:11.749451pt;}
.ws134{word-spacing:11.750253pt;}
.ws5b{word-spacing:11.754784pt;}
.wsf5{word-spacing:11.760118pt;}
.wsae{word-spacing:11.765451pt;}
.wse6{word-spacing:11.770784pt;}
.ws56{word-spacing:11.776118pt;}
.wscd{word-spacing:11.780119pt;}
.wsd2{word-spacing:11.781451pt;}
.ws68{word-spacing:11.786785pt;}
.wsca{word-spacing:11.788653pt;}
.wse4{word-spacing:11.792118pt;}
.ws141{word-spacing:11.797451pt;}
.ws104{word-spacing:11.802785pt;}
.ws178{word-spacing:11.808118pt;}
.ws5e{word-spacing:11.813451pt;}
.ws77{word-spacing:11.818785pt;}
.wsd5{word-spacing:11.824118pt;}
.wsb8{word-spacing:11.829452pt;}
.wsdd{word-spacing:11.834785pt;}
.ws9d{word-spacing:11.840118pt;}
.wsba{word-spacing:11.845452pt;}
.wsc2{word-spacing:11.848385pt;}
.ws107{word-spacing:11.850785pt;}
.ws55{word-spacing:11.856119pt;}
.wsf0{word-spacing:11.861452pt;}
.wsad{word-spacing:11.866785pt;}
.ws72{word-spacing:11.872119pt;}
.wsec{word-spacing:11.877452pt;}
.ws85{word-spacing:11.882785pt;}
.ws57{word-spacing:11.888119pt;}
.ws6d{word-spacing:11.893452pt;}
.wsc3{word-spacing:11.895318pt;}
.ws66{word-spacing:11.898786pt;}
.wse0{word-spacing:11.904119pt;}
.wscf{word-spacing:11.909452pt;}
.ws13c{word-spacing:11.914786pt;}
.ws16e{word-spacing:11.920119pt;}
.wsb9{word-spacing:11.925453pt;}
.ws6a{word-spacing:11.930786pt;}
.ws83{word-spacing:11.936119pt;}
.ws103{word-spacing:11.941453pt;}
.ws73{word-spacing:11.946786pt;}
.ws67{word-spacing:11.952120pt;}
.ws106{word-spacing:11.957453pt;}
.ws84{word-spacing:11.968120pt;}
.ws147{word-spacing:11.972117pt;}
.ws74{word-spacing:11.973453pt;}
.ws156{word-spacing:11.978786pt;}
.ws171{word-spacing:11.989453pt;}
.ws58{word-spacing:11.994787pt;}
.wsf2{word-spacing:12.000120pt;}
.wsde{word-spacing:12.005453pt;}
.wsed{word-spacing:12.010787pt;}
.wsd4{word-spacing:12.021454pt;}
.wscc{word-spacing:12.023316pt;}
.ws61{word-spacing:12.026787pt;}
.ws16f{word-spacing:12.032120pt;}
.wsa4{word-spacing:12.042787pt;}
.wsf4{word-spacing:12.048120pt;}
.wsdc{word-spacing:12.053454pt;}
.ws16d{word-spacing:12.058787pt;}
.wse5{word-spacing:12.064121pt;}
.wsfe{word-spacing:12.069454pt;}
.ws9f{word-spacing:12.080121pt;}
.wse8{word-spacing:12.085454pt;}
.wse1{word-spacing:12.090788pt;}
.wsd8{word-spacing:12.096121pt;}
.wsa2{word-spacing:12.101454pt;}
.ws13e{word-spacing:12.106788pt;}
.ws6e{word-spacing:12.112121pt;}
.wse3{word-spacing:12.117455pt;}
.ws7c{word-spacing:12.122788pt;}
.ws13d{word-spacing:12.128121pt;}
.wsdb{word-spacing:12.144121pt;}
.wseb{word-spacing:12.154788pt;}
.ws13f{word-spacing:12.160122pt;}
.ws5c{word-spacing:12.176122pt;}
.ws177{word-spacing:12.186789pt;}
.ws17a{word-spacing:12.202789pt;}
.ws87{word-spacing:12.208122pt;}
.ws175{word-spacing:12.213455pt;}
.ws78{word-spacing:12.218789pt;}
.ws176{word-spacing:12.229456pt;}
.ws164{word-spacing:12.506792pt;}
.ws179{word-spacing:13.599887pt;}
.wse7{word-spacing:13.759885pt;}
.ws173{word-spacing:13.791885pt;}
.ws17c{word-spacing:13.798285pt;}
.ws108{word-spacing:13.804685pt;}
.wsd3{word-spacing:13.849485pt;}
.wsac{word-spacing:13.868684pt;}
.wsbb{word-spacing:13.881484pt;}
.wsd6{word-spacing:13.907084pt;}
.ws16b{word-spacing:13.913484pt;}
.wsfb{word-spacing:13.958284pt;}
.wsab{word-spacing:13.983883pt;}
.ws127{word-spacing:14.003083pt;}
.ws170{word-spacing:14.015883pt;}
.ws2{word-spacing:23.221449pt;}
.ws1{word-spacing:23.381450pt;}
.ws3{word-spacing:23.520118pt;}
.wsc7{word-spacing:26.060474pt;}
.wsc9{word-spacing:26.094607pt;}
.wsc5{word-spacing:26.154340pt;}
.wsc1{word-spacing:49.078853pt;}
.wsc4{word-spacing:49.910843pt;}
.wsc6{word-spacing:51.220693pt;}
.ws191{word-spacing:52.603076pt;}
.ws17d{word-spacing:53.174802pt;}
.ws188{word-spacing:53.208935pt;}
.wsc8{word-spacing:73.462548pt;}
.ws148{word-spacing:92.815906pt;}
.ws14a{word-spacing:106.554401pt;}
.ws149{word-spacing:144.953921pt;}
.ws135{word-spacing:460.888105pt;}
.ws137{word-spacing:484.171014pt;}
.ws133{word-spacing:516.191948pt;}
.ws14d{word-spacing:634.953130pt;}
.ws136{word-spacing:1226.463602pt;}
.ws138{word-spacing:1330.176439pt;}
._2a{margin-left:-12.662441pt;}
._c{margin-left:-11.733585pt;}
._39{margin-left:-10.811744pt;}
._8{margin-left:-9.378016pt;}
._9{margin-left:-4.377545pt;}
._a{margin-left:-2.939697pt;}
._3a{margin-left:-2.036545pt;}
._1{margin-left:-1.079453pt;}
._4{width:0.998133pt;}
._2{width:8.200431pt;}
._3{width:10.116140pt;}
._d{width:11.226779pt;}
._5{width:12.271467pt;}
._b{width:13.217444pt;}
._e{width:14.647284pt;}
._f{width:18.410437pt;}
._3b{width:19.353358pt;}
._0{width:24.480122pt;}
._22{width:35.843819pt;}
._6{width:41.373349pt;}
._10{width:48.076199pt;}
._13{width:49.313517pt;}
._29{width:50.247905pt;}
._21{width:59.199260pt;}
._28{width:60.163515pt;}
._26{width:70.475919pt;}
._17{width:73.236418pt;}
._19{width:82.947230pt;}
._14{width:91.531656pt;}
._33{width:92.858573pt;}
._1c{width:94.467086pt;}
._27{width:97.001454pt;}
._23{width:103.042979pt;}
._12{width:104.881889pt;}
._20{width:111.098345pt;}
._1d{width:116.888139pt;}
._36{width:133.203668pt;}
._38{width:135.016979pt;}
._18{width:141.813694pt;}
._35{width:144.761924pt;}
._11{width:151.106378pt;}
._25{width:166.436320pt;}
._1e{width:167.618171pt;}
._1f{width:172.012783pt;}
._1b{width:174.231422pt;}
._1a{width:184.513960pt;}
._24{width:189.988025pt;}
._15{width:204.908372pt;}
._16{width:235.073328pt;}
._37{width:383.568539pt;}
._32{width:401.236584pt;}
._34{width:453.673262pt;}
._31{width:485.864860pt;}
._30{width:534.645050pt;}
._2f{width:550.602184pt;}
._2c{width:614.733649pt;}
._2d{width:718.745149pt;}
._2e{width:1193.324817pt;}
._2b{width:1556.426411pt;}
._7{width:1580.012250pt;}
.fs9{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fs8{font-size:35.552000pt;}
.fsa{font-size:37.332800pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:50.666667pt;}
.fs7{font-size:53.333867pt;}
.fs6{font-size:63.999467pt;}
.fs4{font-size:85.332800pt;}
.fs1{font-size:106.667200pt;}
.y0{bottom:0.000000pt;}
.y2a{bottom:48.000000pt;}
.yb6{bottom:106.883800pt;}
.y28e{bottom:110.653747pt;}
.y2ad{bottom:110.655240pt;}
.y270{bottom:110.657080pt;}
.y14f{bottom:110.658573pt;}
.y167{bottom:110.660627pt;}
.y121{bottom:110.661200pt;}
.y24c{bottom:110.661773pt;}
.yc9{bottom:110.663040pt;}
.y186{bottom:110.663613pt;}
.y1a9{bottom:110.664186pt;}
.y1cd{bottom:110.664300pt;}
.y2da{bottom:110.664625pt;}
.y46{bottom:110.669073pt;}
.y341{bottom:110.967633pt;}
.y1fb{bottom:112.476827pt;}
.y222{bottom:113.303600pt;}
.y76{bottom:121.465627pt;}
.y2d9{bottom:123.364199pt;}
.y340{bottom:123.591475pt;}
.y45{bottom:125.333423pt;}
.yb5{bottom:127.520342pt;}
.y28d{bottom:127.964586pt;}
.y2ac{bottom:127.966080pt;}
.y26f{bottom:127.967920pt;}
.y14e{bottom:127.969413pt;}
.y166{bottom:127.971467pt;}
.y120{bottom:127.972040pt;}
.y24b{bottom:127.972613pt;}
.yc8{bottom:127.973880pt;}
.y185{bottom:127.974453pt;}
.y1a8{bottom:127.975026pt;}
.ya9{bottom:128.502733pt;}
.y1fa{bottom:129.862334pt;}
.y20b{bottom:130.544842pt;}
.y221{bottom:130.689107pt;}
.y1cb{bottom:132.888133pt;}
.y311{bottom:132.963883pt;}
.y36f{bottom:132.964191pt;}
.y1ca{bottom:134.700226pt;}
.y1cc{bottom:134.702400pt;}
.y75{bottom:138.776466pt;}
.y44{bottom:139.997773pt;}
.yb4{bottom:140.219917pt;}
.y2d8{bottom:140.673850pt;}
.y33f{bottom:140.976858pt;}
.y1a6{bottom:143.092933pt;}
.y28c{bottom:145.350094pt;}
.y2ab{bottom:145.351587pt;}
.y26e{bottom:145.353427pt;}
.y14d{bottom:145.354920pt;}
.y165{bottom:145.356974pt;}
.y11f{bottom:145.357547pt;}
.y24a{bottom:145.358120pt;}
.yc7{bottom:145.359387pt;}
.y1a5{bottom:145.359747pt;}
.y184{bottom:145.359960pt;}
.y1a7{bottom:145.360533pt;}
.y36e{bottom:145.663766pt;}
.ya8{bottom:145.888240pt;}
.y1f9{bottom:147.173173pt;}
.y220{bottom:147.999947pt;}
.y310{bottom:150.274600pt;}
.y1c9{bottom:150.649893pt;}
.y20a{bottom:151.256050pt;}
.yb3{bottom:152.843759pt;}
.y2d7{bottom:153.297692pt;}
.y33e{bottom:153.600700pt;}
.y43{bottom:154.662123pt;}
.y74{bottom:156.087306pt;}
.y36d{bottom:158.287608pt;}
.y28b{bottom:162.660933pt;}
.y2aa{bottom:162.662427pt;}
.y26d{bottom:162.664267pt;}
.y14c{bottom:162.665760pt;}
.y164{bottom:162.667814pt;}
.y11e{bottom:162.668387pt;}
.y249{bottom:162.668960pt;}
.yc6{bottom:162.670227pt;}
.y1a4{bottom:162.670586pt;}
.y183{bottom:162.670800pt;}
.y30f{bottom:162.974175pt;}
.ya7{bottom:163.199080pt;}
.y209{bottom:163.879892pt;}
.y1f8{bottom:164.484013pt;}
.y21f{bottom:165.310787pt;}
.yb2{bottom:165.543333pt;}
.y33d{bottom:166.300275pt;}
.y42{bottom:169.326473pt;}
.y2d6{bottom:170.683075pt;}
.y73{bottom:173.398146pt;}
.y36c{bottom:175.597258pt;}
.y1c8{bottom:176.350905pt;}
.y208{bottom:176.579467pt;}
.y29{bottom:178.170533pt;}
.y28a{bottom:179.971773pt;}
.y2a9{bottom:179.973266pt;}
.y26c{bottom:179.975106pt;}
.y14b{bottom:179.976600pt;}
.y163{bottom:179.978653pt;}
.y11d{bottom:179.979227pt;}
.y248{bottom:179.979800pt;}
.yc5{bottom:179.981067pt;}
.y1a3{bottom:179.981426pt;}
.y30e{bottom:180.283825pt;}
.ya6{bottom:180.509920pt;}
.y1f7{bottom:181.869520pt;}
.y21e{bottom:182.696294pt;}
.y2d5{bottom:183.306917pt;}
.y33c{bottom:183.609925pt;}
.y41{bottom:183.990823pt;}
.y182{bottom:185.348000pt;}
.y72{bottom:190.783653pt;}
.y1c7{bottom:192.981097pt;}
.y36b{bottom:192.982641pt;}
.y30d{bottom:192.983400pt;}
.y1a2{bottom:195.099200pt;}
.y2d4{bottom:196.006491pt;}
.y33b{bottom:196.309500pt;}
.y28{bottom:196.841200pt;}
.y289{bottom:197.357280pt;}
.y2a8{bottom:197.358774pt;}
.y26b{bottom:197.360614pt;}
.y14a{bottom:197.362107pt;}
.y162{bottom:197.364161pt;}
.y11c{bottom:197.364734pt;}
.y247{bottom:197.365307pt;}
.y1a1{bottom:197.366933pt;}
.ya5{bottom:197.895427pt;}
.y40{bottom:198.655173pt;}
.y1f6{bottom:199.180360pt;}
.y21d{bottom:200.007134pt;}
.yc4{bottom:202.658267pt;}
.y36a{bottom:205.606483pt;}
.y30c{bottom:205.607242pt;}
.y71{bottom:208.094493pt;}
.y1c6{bottom:209.687022pt;}
.y2d3{bottom:213.316142pt;}
.y33a{bottom:213.619150pt;}
.y1f4{bottom:214.299200pt;}
.y288{bottom:214.668120pt;}
.y2a7{bottom:214.669613pt;}
.y26a{bottom:214.671453pt;}
.y149{bottom:214.672947pt;}
.y161{bottom:214.675000pt;}
.y11b{bottom:214.675573pt;}
.y246{bottom:214.676147pt;}
.ya4{bottom:215.206267pt;}
.y27{bottom:215.511867pt;}
.y1f5{bottom:216.491200pt;}
.y1f3{bottom:216.491559pt;}
.y21c{bottom:217.317974pt;}
.y1a0{bottom:219.968400pt;}
.y181{bottom:221.101694pt;}
.y3f{bottom:221.332223pt;}
.y369{bottom:222.991866pt;}
.y30b{bottom:222.992624pt;}
.y70{bottom:225.405333pt;}
.y2d2{bottom:226.015716pt;}
.y1c5{bottom:226.317214pt;}
.y339{bottom:226.318725pt;}
.y287{bottom:231.978960pt;}
.y2a6{bottom:231.980453pt;}
.y269{bottom:231.982293pt;}
.y148{bottom:231.983786pt;}
.y160{bottom:231.985840pt;}
.y11a{bottom:231.986413pt;}
.y245{bottom:231.986986pt;}
.ya3{bottom:232.503426pt;}
.y1f0{bottom:233.876494pt;}
.y1f2{bottom:233.877067pt;}
.y26{bottom:234.182533pt;}
.y21b{bottom:234.628813pt;}
.y368{bottom:235.615708pt;}
.y30a{bottom:235.616467pt;}
.y3e{bottom:235.996573pt;}
.y17f{bottom:236.220400pt;}
.y180{bottom:238.412533pt;}
.y17e{bottom:238.412893pt;}
.y338{bottom:238.942567pt;}
.y1f1{bottom:239.773067pt;}
.y6f{bottom:242.790840pt;}
.y2d1{bottom:243.325367pt;}
.y1c4{bottom:246.348963pt;}
.y367{bottom:248.315283pt;}
.y1ee{bottom:248.995200pt;}
.y286{bottom:249.289800pt;}
.y2a5{bottom:249.291293pt;}
.y268{bottom:249.293133pt;}
.y147{bottom:249.294626pt;}
.y15f{bottom:249.296680pt;}
.y119{bottom:249.297253pt;}
.y244{bottom:249.297826pt;}
.ya2{bottom:249.888933pt;}
.y3d{bottom:250.660923pt;}
.y1ed{bottom:251.186986pt;}
.y1ef{bottom:251.187333pt;}
.y21a{bottom:252.014320pt;}
.yc3{bottom:252.696787pt;}
.y25{bottom:252.853200pt;}
.y309{bottom:252.926117pt;}
.y17c{bottom:253.530667pt;}
.y17b{bottom:255.796200pt;}
.y17d{bottom:255.798400pt;}
.y2d0{bottom:256.024941pt;}
.y337{bottom:256.327949pt;}
.y6e{bottom:260.101680pt;}
.y366{bottom:265.624933pt;}
.y308{bottom:265.625692pt;}
.y285{bottom:266.675307pt;}
.y2a4{bottom:266.676800pt;}
.y267{bottom:266.678640pt;}
.y146{bottom:266.680133pt;}
.y15e{bottom:266.682187pt;}
.y118{bottom:266.682760pt;}
.y243{bottom:266.683333pt;}
.ya1{bottom:267.199773pt;}
.y19f{bottom:267.816986pt;}
.y1c3{bottom:268.119358pt;}
.y1ec{bottom:268.497826pt;}
.y336{bottom:268.951792pt;}
.y219{bottom:269.325160pt;}
.yc2{bottom:270.082294pt;}
.y24{bottom:271.523867pt;}
.y17a{bottom:273.107040pt;}
.y2cf{bottom:273.334591pt;}
.y3c{bottom:273.337973pt;}
.y6d{bottom:277.412519pt;}
.y365{bottom:278.324508pt;}
.y1c2{bottom:279.004667pt;}
.y1c1{bottom:280.743200pt;}
.y307{bottom:282.935342pt;}
.y1ea{bottom:283.615600pt;}
.y284{bottom:283.986147pt;}
.y2a3{bottom:283.987640pt;}
.y242{bottom:283.989133pt;}
.y266{bottom:283.989480pt;}
.y145{bottom:283.990973pt;}
.y15d{bottom:283.993027pt;}
.y117{bottom:283.993600pt;}
.ya0{bottom:284.510613pt;}
.y19e{bottom:285.127826pt;}
.y1e9{bottom:285.880920pt;}
.y1eb{bottom:285.883333pt;}
.y2ce{bottom:286.034166pt;}
.y335{bottom:286.261442pt;}
.y218{bottom:286.636000pt;}
.yc1{bottom:287.393134pt;}
.y3b{bottom:288.002323pt;}
.y23{bottom:290.194533pt;}
.y179{bottom:290.417880pt;}
.y364{bottom:290.948350pt;}
.y6c{bottom:294.798027pt;}
.y306{bottom:295.634916pt;}
.y2cd{bottom:298.658008pt;}
.y334{bottom:298.961016pt;}
.y19c{bottom:300.245600pt;}
.y283{bottom:301.296986pt;}
.y2a2{bottom:301.298480pt;}
.y241{bottom:301.299973pt;}
.y265{bottom:301.300320pt;}
.y144{bottom:301.301813pt;}
.y15c{bottom:301.303867pt;}
.y9f{bottom:301.821453pt;}
.y19b{bottom:302.509080pt;}
.y19d{bottom:302.513333pt;}
.y3a{bottom:302.666673pt;}
.y1e8{bottom:303.191760pt;}
.y217{bottom:304.021507pt;}
.yc0{bottom:304.703973pt;}
.y116{bottom:306.670800pt;}
.y178{bottom:307.803387pt;}
.y363{bottom:308.258000pt;}
.y22{bottom:308.865200pt;}
.y2cc{bottom:311.357583pt;}
.y1b8{bottom:311.810586pt;}
.y6b{bottom:312.108866pt;}
.y305{bottom:312.944567pt;}
.y333{bottom:316.270667pt;}
.y39{bottom:317.331023pt;}
.y282{bottom:318.682494pt;}
.y2a1{bottom:318.683987pt;}
.y240{bottom:318.685480pt;}
.y264{bottom:318.685827pt;}
.y143{bottom:318.687320pt;}
.y9e{bottom:319.206960pt;}
.y19a{bottom:319.819920pt;}
.y1e7{bottom:320.502600pt;}
.y362{bottom:320.957575pt;}
.y216{bottom:321.332347pt;}
.ybf{bottom:322.014813pt;}
.y15b{bottom:323.981067pt;}
.y177{bottom:325.114227pt;}
.y304{bottom:325.644141pt;}
.y21{bottom:327.535867pt;}
.y2cb{bottom:328.667233pt;}
.y332{bottom:328.970241pt;}
.y1b7{bottom:329.121426pt;}
.y6a{bottom:329.419706pt;}
.y38{bottom:331.995373pt;}
.y281{bottom:335.993333pt;}
.y2a0{bottom:335.994827pt;}
.y23f{bottom:335.996320pt;}
.y263{bottom:335.996667pt;}
.y142{bottom:335.998160pt;}
.y9d{bottom:336.517800pt;}
.y199{bottom:337.130760pt;}
.y1e6{bottom:337.813439pt;}
.y361{bottom:338.267225pt;}
.y215{bottom:338.643187pt;}
.ybe{bottom:339.400320pt;}
.y175{bottom:340.232933pt;}
.y2ca{bottom:341.366808pt;}
.y331{bottom:341.594084pt;}
.y174{bottom:342.423227pt;}
.y176{bottom:342.425067pt;}
.y303{bottom:342.953792pt;}
.y115{bottom:344.916053pt;}
.y20{bottom:346.206533pt;}
.y1b6{bottom:346.506933pt;}
.y37{bottom:346.659723pt;}
.y69{bottom:346.805213pt;}
.y360{bottom:350.966800pt;}
.y280{bottom:353.304173pt;}
.y29f{bottom:353.305666pt;}
.y23e{bottom:353.307160pt;}
.y262{bottom:353.307506pt;}
.y141{bottom:353.309000pt;}
.y9c{bottom:353.828639pt;}
.y198{bottom:354.516267pt;}
.y1e5{bottom:355.198947pt;}
.y214{bottom:356.028694pt;}
.ybd{bottom:356.711160pt;}
.y2c9{bottom:358.676458pt;}
.y330{bottom:358.979466pt;}
.y173{bottom:359.808734pt;}
.y302{bottom:360.264509pt;}
.y114{bottom:362.226893pt;}
.y35f{bottom:363.590642pt;}
.y68{bottom:364.116053pt;}
.y1f{bottom:364.877200pt;}
.y1b5{bottom:369.184133pt;}
.y36{bottom:369.336773pt;}
.y27f{bottom:370.689680pt;}
.y29e{bottom:370.691174pt;}
.y23d{bottom:370.692667pt;}
.y261{bottom:370.693014pt;}
.y140{bottom:370.694507pt;}
.y9b{bottom:371.214147pt;}
.y2c8{bottom:371.300300pt;}
.y32f{bottom:371.603308pt;}
.y197{bottom:371.827106pt;}
.y1e4{bottom:372.509786pt;}
.y301{bottom:372.964083pt;}
.y213{bottom:373.339534pt;}
.yba{bottom:374.021080pt;}
.ybc{bottom:374.022000pt;}
.y15a{bottom:375.984000pt;}
.y172{bottom:377.119573pt;}
.y113{bottom:379.612400pt;}
.ybb{bottom:379.993600pt;}
.y35e{bottom:380.976024pt;}
.y67{bottom:381.426893pt;}
.y1e{bottom:383.547867pt;}
.y2c7{bottom:383.999875pt;}
.y32e{bottom:384.302883pt;}
.y27e{bottom:388.000520pt;}
.y29d{bottom:388.002013pt;}
.y23c{bottom:388.003506pt;}
.y260{bottom:388.003853pt;}
.y13f{bottom:388.005347pt;}
.y9a{bottom:388.524986pt;}
.y196{bottom:389.137946pt;}
.y1e3{bottom:389.820626pt;}
.y300{bottom:390.273733pt;}
.y212{bottom:390.650373pt;}
.yb9{bottom:391.406587pt;}
.y35{bottom:392.013822pt;}
.y159{bottom:393.294840pt;}
.y35d{bottom:393.597692pt;}
.y171{bottom:394.430413pt;}
.y112{bottom:396.923240pt;}
.y66{bottom:398.737733pt;}
.y2c6{bottom:401.310592pt;}
.y32d{bottom:401.613592pt;}
.y1d{bottom:402.218533pt;}
.y2ff{bottom:402.973308pt;}
.y27d{bottom:405.311360pt;}
.y29c{bottom:405.312853pt;}
.y23b{bottom:405.314346pt;}
.y25f{bottom:405.314693pt;}
.y13e{bottom:405.316186pt;}
.y99{bottom:405.835826pt;}
.y35c{bottom:406.297267pt;}
.y195{bottom:406.523453pt;}
.y1e0{bottom:407.199814pt;}
.y1e2{bottom:407.206133pt;}
.y211{bottom:408.035881pt;}
.yb8{bottom:408.717427pt;}
.y158{bottom:410.680347pt;}
.y1b3{bottom:410.758933pt;}
.y170{bottom:411.741253pt;}
.y1b2{bottom:413.025520pt;}
.y1b4{bottom:413.026667pt;}
.y1e1{bottom:413.102267pt;}
.y2c5{bottom:414.010166pt;}
.y111{bottom:414.234080pt;}
.y32c{bottom:414.313166pt;}
.y34{bottom:414.690872pt;}
.y65{bottom:416.123240pt;}
.y2fe{bottom:420.282958pt;}
.y1c{bottom:420.889200pt;}
.y27c{bottom:422.696867pt;}
.y29b{bottom:422.698360pt;}
.y23a{bottom:422.699853pt;}
.y25e{bottom:422.700200pt;}
.y13d{bottom:422.701694pt;}
.y98{bottom:423.221333pt;}
.y35b{bottom:423.606917pt;}
.y194{bottom:423.834293pt;}
.y1df{bottom:424.510653pt;}
.y210{bottom:425.346720pt;}
.yb7{bottom:426.028267pt;}
.y157{bottom:427.991187pt;}
.y16f{bottom:429.126760pt;}
.y1b1{bottom:430.336360pt;}
.y2c4{bottom:431.319817pt;}
.y110{bottom:431.619587pt;}
.y32b{bottom:431.622817pt;}
.y2fd{bottom:432.982533pt;}
.y64{bottom:433.434080pt;}
.y35a{bottom:436.306492pt;}
.y33{bottom:437.367922pt;}
.y1b{bottom:439.483867pt;}
.y27b{bottom:440.007707pt;}
.y29a{bottom:440.009200pt;}
.y239{bottom:440.010693pt;}
.y25d{bottom:440.011040pt;}
.y13c{bottom:440.012533pt;}
.y97{bottom:440.532173pt;}
.y193{bottom:441.145133pt;}
.y1de{bottom:441.821493pt;}
.y20f{bottom:442.657560pt;}
.y2c3{bottom:444.019391pt;}
.y32a{bottom:444.322391pt;}
.y156{bottom:445.302027pt;}
.y1b0{bottom:445.454933pt;}
.y2fc{bottom:445.606375pt;}
.y16c{bottom:446.437027pt;}
.y16e{bottom:446.437600pt;}
.y1af{bottom:447.647200pt;}
.y10f{bottom:448.930427pt;}
.y63{bottom:450.744919pt;}
.y32{bottom:452.032272pt;}
.y16d{bottom:452.333733pt;}
.y359{bottom:453.616142pt;}
.y2c2{bottom:456.643233pt;}
.y27a{bottom:457.318547pt;}
.y299{bottom:457.320040pt;}
.y238{bottom:457.321533pt;}
.y25c{bottom:457.321880pt;}
.y96{bottom:457.843013pt;}
.y1a{bottom:458.154533pt;}
.y192{bottom:458.455973pt;}
.y1dd{bottom:459.207000pt;}
.y20e{bottom:459.968400pt;}
.y329{bottom:461.632042pt;}
.y155{bottom:462.687534pt;}
.y13b{bottom:462.688866pt;}
.y2fb{bottom:462.991758pt;}
.y16b{bottom:463.747867pt;}
.y10e{bottom:466.241266pt;}
.y358{bottom:466.315716pt;}
.y62{bottom:468.130427pt;}
.yf1{bottom:471.525346pt;}
.y2c1{bottom:474.028616pt;}
.y328{bottom:474.331616pt;}
.y279{bottom:474.629386pt;}
.y298{bottom:474.630880pt;}
.y237{bottom:474.632373pt;}
.y25b{bottom:474.632720pt;}
.y31{bottom:474.633590pt;}
.y95{bottom:475.228520pt;}
.y2fa{bottom:475.613734pt;}
.y191{bottom:475.841480pt;}
.y1c0{bottom:476.142542pt;}
.y1dc{bottom:476.517840pt;}
.y19{bottom:476.825200pt;}
.y154{bottom:479.998373pt;}
.y20d{bottom:482.645134pt;}
.y357{bottom:483.625367pt;}
.y10d{bottom:483.626773pt;}
.y61{bottom:485.441266pt;}
.y13a{bottom:486.651867pt;}
.y2c0{bottom:486.652458pt;}
.y2f9{bottom:488.313308pt;}
.y30{bottom:489.373672pt;}
.y327{bottom:491.641267pt;}
.y278{bottom:492.014894pt;}
.y297{bottom:492.016387pt;}
.y236{bottom:492.017880pt;}
.y25a{bottom:492.018227pt;}
.y18d{bottom:492.243716pt;}
.y94{bottom:492.539360pt;}
.y190{bottom:493.152320pt;}
.y1db{bottom:493.828680pt;}
.yf0{bottom:495.487713pt;}
.y18{bottom:495.495867pt;}
.y356{bottom:496.324941pt;}
.y1bf{bottom:496.779084pt;}
.y153{bottom:497.309213pt;}
.y10c{bottom:500.937613pt;}
.y60{bottom:502.752106pt;}
.y2bf{bottom:503.962109pt;}
.y2f{bottom:504.038022pt;}
.y326{bottom:504.265109pt;}
.y2f8{bottom:505.622958pt;}
.y20c{bottom:506.683333pt;}
.y259{bottom:507.136800pt;}
.y355{bottom:508.948784pt;}
.y277{bottom:509.325733pt;}
.y296{bottom:509.327227pt;}
.y235{bottom:509.328720pt;}
.y258{bottom:509.329067pt;}
.y1be{bottom:509.478659pt;}
.y93{bottom:509.850200pt;}
.y18f{bottom:510.463159pt;}
.y1da{bottom:511.214187pt;}
.y18c{bottom:512.880259pt;}
.y152{bottom:514.620053pt;}
.y2be{bottom:516.661683pt;}
.y10b{bottom:518.248453pt;}
.y2f7{bottom:518.322533pt;}
.y2e{bottom:518.702372pt;}
.y5f{bottom:520.137613pt;}
.yef{bottom:521.187658pt;}
.y325{bottom:521.650491pt;}
.y1bd{bottom:522.102501pt;}
.y17{bottom:524.825067pt;}
.y18b{bottom:525.579833pt;}
.y354{bottom:526.258434pt;}
.y276{bottom:526.636573pt;}
.y295{bottom:526.638066pt;}
.y234{bottom:526.639559pt;}
.y92{bottom:527.161039pt;}
.y139{bottom:527.164720pt;}
.y18e{bottom:527.848667pt;}
.y1d9{bottom:528.525027pt;}
.y2f6{bottom:530.946375pt;}
.y151{bottom:532.005560pt;}
.y257{bottom:532.006133pt;}
.y2d{bottom:533.366722pt;}
.yee{bottom:533.811500pt;}
.y2bd{bottom:533.971333pt;}
.y324{bottom:534.274334pt;}
.y1bc{bottom:534.802075pt;}
.y10a{bottom:535.633960pt;}
.y5e{bottom:537.448453pt;}
.y18a{bottom:538.203675pt;}
.y353{bottom:538.958008pt;}
.y232{bottom:541.757333pt;}
.y275{bottom:544.022080pt;}
.y231{bottom:544.023000pt;}
.y294{bottom:544.023573pt;}
.y233{bottom:544.025067pt;}
.y91{bottom:544.546547pt;}
.y138{bottom:544.550227pt;}
.y1d8{bottom:545.835867pt;}
.y2bc{bottom:546.670908pt;}
.y1bb{bottom:547.501650pt;}
.y2c{bottom:548.031072pt;}
.y2f5{bottom:548.256025pt;}
.y150{bottom:549.316400pt;}
.yed{bottom:550.517425pt;}
.y189{bottom:550.903250pt;}
.y323{bottom:551.659716pt;}
.y109{bottom:552.944800pt;}
.y5d{bottom:554.759293pt;}
.y352{bottom:556.267659pt;}
.y1ae{bottom:556.270467pt;}
.y1ba{bottom:560.125492pt;}
.y2f4{bottom:560.955600pt;}
.y274{bottom:561.332920pt;}
.y230{bottom:561.333840pt;}
.y293{bottom:561.334413pt;}
.y90{bottom:561.857386pt;}
.y137{bottom:561.861067pt;}
.y1d7{bottom:563.146706pt;}
.y188{bottom:563.602824pt;}
.y2bb{bottom:563.980558pt;}
.y322{bottom:564.283558pt;}
.yec{bottom:567.147617pt;}
.y225{bottom:567.836417pt;}
.y351{bottom:568.967233pt;}
.y2b{bottom:569.801467pt;}
.y5c{bottom:572.144800pt;}
.y1b9{bottom:572.825067pt;}
.y2f3{bottom:573.655175pt;}
.y108{bottom:575.621867pt;}
.y187{bottom:576.226667pt;}
.y2ba{bottom:576.680133pt;}
.y1ad{bottom:576.981674pt;}
.y321{bottom:576.983133pt;}
.y16a{bottom:577.813350pt;}
.y273{bottom:578.643760pt;}
.y22f{bottom:578.644680pt;}
.y292{bottom:578.645253pt;}
.y8f{bottom:579.168226pt;}
.y136{bottom:579.171906pt;}
.y256{bottom:579.172613pt;}
.y1d6{bottom:580.532214pt;}
.y16{bottom:580.838567pt;}
.yeb{bottom:583.853541pt;}
.y350{bottom:586.277950pt;}
.y224{bottom:588.547624pt;}
.y2b9{bottom:589.303975pt;}
.y5b{bottom:589.448973pt;}
.y1ac{bottom:589.605517pt;}
.y2f2{bottom:590.965892pt;}
.y15{bottom:594.217600pt;}
.y320{bottom:594.292783pt;}
.y272{bottom:596.029267pt;}
.y22e{bottom:596.030187pt;}
.y291{bottom:596.030760pt;}
.y8e{bottom:596.553733pt;}
.y135{bottom:596.557414pt;}
.y255{bottom:596.558120pt;}
.y1d5{bottom:597.843053pt;}
.y169{bottom:598.449892pt;}
.y34f{bottom:598.977525pt;}
.yea{bottom:600.483734pt;}
.y223{bottom:601.171467pt;}
.y1ab{bottom:602.305091pt;}
.y2f1{bottom:603.589734pt;}
.y2b8{bottom:606.689358pt;}
.y5a{bottom:606.759813pt;}
.y31f{bottom:606.992358pt;}
.y14{bottom:607.521967pt;}
.y168{bottom:611.149467pt;}
.ye9{bottom:613.183308pt;}
.y271{bottom:613.340107pt;}
.y22d{bottom:613.341027pt;}
.y290{bottom:613.341600pt;}
.y8d{bottom:613.864573pt;}
.y107{bottom:613.868040pt;}
.y134{bottom:613.868253pt;}
.y254{bottom:613.868960pt;}
.y1aa{bottom:614.928933pt;}
.y1d4{bottom:615.153893pt;}
.y34e{bottom:616.287175pt;}
.y2f0{bottom:616.289308pt;}
.y2b7{bottom:619.313200pt;}
.y59{bottom:624.070653pt;}
.y31e{bottom:624.302008pt;}
.ye8{bottom:625.807150pt;}
.y22b{bottom:628.459733pt;}
.y34d{bottom:628.986750pt;}
.y22a{bottom:630.650947pt;}
.y22c{bottom:630.651867pt;}
.y8c{bottom:631.175413pt;}
.y106{bottom:631.178880pt;}
.y133{bottom:631.179093pt;}
.y253{bottom:631.179800pt;}
.y1d3{bottom:632.539400pt;}
.y2ef{bottom:633.598959pt;}
.y13{bottom:634.205367pt;}
.y28f{bottom:636.018667pt;}
.y31d{bottom:636.925850pt;}
.y2b6{bottom:637.303733pt;}
.y58{bottom:641.456160pt;}
.y34c{bottom:641.610592pt;}
.ye6{bottom:642.513075pt;}
.ye3{bottom:642.514142pt;}
.y2ee{bottom:646.298533pt;}
.y12{bottom:647.509734pt;}
.y229{bottom:647.961786pt;}
.y8b{bottom:648.560920pt;}
.y105{bottom:648.564387pt;}
.y132{bottom:648.564600pt;}
.y252{bottom:648.565307pt;}
.y378{bottom:649.625425pt;}
.y1d2{bottom:649.850240pt;}
.y31c{bottom:654.311233pt;}
.ye5{bottom:655.212649pt;}
.ye2{bottom:655.213716pt;}
.y57{bottom:658.767000pt;}
.y34b{bottom:658.920242pt;}
.y2ed{bottom:658.922375pt;}
.y11{bottom:660.888767pt;}
.y228{bottom:665.347294pt;}
.y8a{bottom:665.871760pt;}
.y104{bottom:665.875227pt;}
.y131{bottom:665.875440pt;}
.y251{bottom:665.876147pt;}
.y31b{bottom:666.935075pt;}
.y377{bottom:666.936142pt;}
.y1d1{bottom:667.161080pt;}
.ye7{bottom:667.835425pt;}
.ye4{bottom:667.836492pt;}
.ye1{bottom:667.837558pt;}
.y34a{bottom:671.619817pt;}
.y2b5{bottom:672.150720pt;}
.y10{bottom:674.192067pt;}
.y56{bottom:676.077839pt;}
.y2ec{bottom:676.307758pt;}
.y376{bottom:679.635717pt;}
.y227{bottom:682.658133pt;}
.y89{bottom:683.182600pt;}
.y103{bottom:683.186066pt;}
.y130{bottom:683.186280pt;}
.y250{bottom:683.186986pt;}
.y349{bottom:684.319391pt;}
.y31a{bottom:684.320458pt;}
.ye0{bottom:684.543483pt;}
.y1d0{bottom:684.546587pt;}
.yf{bottom:687.496434pt;}
.y2eb{bottom:688.931600pt;}
.y2b4{bottom:689.536227pt;}
.y375{bottom:692.259559pt;}
.y55{bottom:693.463347pt;}
.y319{bottom:696.944300pt;}
.ydf{bottom:697.167325pt;}
.y88{bottom:700.493439pt;}
.y102{bottom:700.496906pt;}
.y12f{bottom:700.497120pt;}
.y24f{bottom:700.497826pt;}
.ye{bottom:700.875467pt;}
.y348{bottom:701.630108pt;}
.y1cf{bottom:701.857427pt;}
.y226{bottom:705.335333pt;}
.y2ea{bottom:706.316983pt;}
.y2b3{bottom:706.847067pt;}
.y374{bottom:709.644941pt;}
.yde{bottom:709.866900pt;}
.y54{bottom:710.774186pt;}
.y318{bottom:714.329683pt;}
.y24d{bottom:715.615600pt;}
.y87{bottom:717.878947pt;}
.y101{bottom:717.882413pt;}
.y12e{bottom:717.882627pt;}
.y24e{bottom:717.883333pt;}
.y2e9{bottom:718.940825pt;}
.y1ce{bottom:719.168267pt;}
.yb{bottom:724.836933pt;}
.yd{bottom:724.837600pt;}
.ydc{bottom:726.497092pt;}
.y317{bottom:726.953525pt;}
.y373{bottom:726.954592pt;}
.y53{bottom:728.085026pt;}
.y2b2{bottom:729.524267pt;}
.yc{bottom:730.204533pt;}
.y347{bottom:731.639333pt;}
.y2e8{bottom:731.640400pt;}
.y12c{bottom:733.001333pt;}
.y86{bottom:735.189786pt;}
.y12b{bottom:735.191973pt;}
.y100{bottom:735.193253pt;}
.y12d{bottom:735.193467pt;}
.ydb{bottom:739.196666pt;}
.ya{bottom:739.502133pt;}
.y8{bottom:739.502800pt;}
.y316{bottom:744.263175pt;}
.y372{bottom:744.264242pt;}
.y9{bottom:744.869200pt;}
.y52{bottom:745.470533pt;}
.y2e7{bottom:748.950050pt;}
.ydd{bottom:751.819442pt;}
.yda{bottom:751.820509pt;}
.y85{bottom:752.500626pt;}
.y12a{bottom:752.502813pt;}
.yff{bottom:752.504093pt;}
.y6{bottom:754.166800pt;}
.y315{bottom:756.962750pt;}
.y371{bottom:756.963817pt;}
.y7{bottom:759.533733pt;}
.y346{bottom:761.648558pt;}
.y2e6{bottom:761.649625pt;}
.y207{bottom:762.178362pt;}
.y51{bottom:762.781373pt;}
.y2b1{bottom:764.370320pt;}
.yfd{bottom:767.621867pt;}
.yd9{bottom:768.526433pt;}
.y370{bottom:769.663391pt;}
.y84{bottom:769.886133pt;}
.yfc{bottom:769.888320pt;}
.yfe{bottom:769.889600pt;}
.y345{bottom:774.272400pt;}
.y2e5{bottom:774.273467pt;}
.y50{bottom:780.092213pt;}
.yd8{bottom:781.150275pt;}
.y2b0{bottom:781.681160pt;}
.y206{bottom:786.216462pt;}
.y314{bottom:786.973041pt;}
.y83{bottom:787.196973pt;}
.yfb{bottom:787.199160pt;}
.y5{bottom:787.499900pt;}
.yb1{bottom:790.750827pt;}
.y344{bottom:791.657783pt;}
.y2e4{bottom:791.658850pt;}
.yd7{bottom:793.849850pt;}
.y4f{bottom:797.403053pt;}
.y2af{bottom:798.992000pt;}
.y313{bottom:799.596884pt;}
.y205{bottom:802.166129pt;}
.yf9{bottom:802.317867pt;}
.y343{bottom:804.281625pt;}
.y2e3{bottom:804.282692pt;}
.y82{bottom:804.507813pt;}
.yf8{bottom:804.509080pt;}
.y129{bottom:804.509653pt;}
.yfa{bottom:804.510000pt;}
.yb0{bottom:808.136334pt;}
.yd5{bottom:810.480042pt;}
.y4e{bottom:814.788560pt;}
.y2e2{bottom:816.982266pt;}
.y4{bottom:820.836067pt;}
.y342{bottom:821.592342pt;}
.y2ae{bottom:821.669067pt;}
.y81{bottom:821.893320pt;}
.yf7{bottom:821.894587pt;}
.y128{bottom:821.895160pt;}
.yd4{bottom:823.179617pt;}
.yaf{bottom:825.447173pt;}
.y204{bottom:827.867141pt;}
.y312{bottom:829.606109pt;}
.y4d{bottom:832.099400pt;}
.y2e1{bottom:834.291917pt;}
.yd6{bottom:835.878124pt;}
.yd3{bottom:835.879191pt;}
.y126{bottom:837.014000pt;}
.y125{bottom:839.203934pt;}
.y80{bottom:839.204160pt;}
.yf6{bottom:839.205427pt;}
.y127{bottom:839.206000pt;}
.yae{bottom:842.758013pt;}
.y202{bottom:842.758933pt;}
.y201{bottom:844.497009pt;}
.y203{bottom:844.497333pt;}
.y2e0{bottom:846.991491pt;}
.y4c{bottom:849.410239pt;}
.yd1{bottom:852.509383pt;}
.y3{bottom:854.172233pt;}
.y124{bottom:856.514773pt;}
.y7f{bottom:856.515000pt;}
.yf5{bottom:856.516626pt;}
.y1ff{bottom:859.388800pt;}
.y2df{bottom:859.615333pt;}
.yad{bottom:860.068853pt;}
.y1fe{bottom:861.202608pt;}
.y200{bottom:861.202933pt;}
.yd0{bottom:865.208958pt;}
.y4b{bottom:866.795747pt;}
.yf4{bottom:873.900281pt;}
.y7e{bottom:873.900507pt;}
.y1fd{bottom:876.094267pt;}
.y2de{bottom:876.924984pt;}
.yac{bottom:877.454360pt;}
.yd2{bottom:877.831733pt;}
.y1fc{bottom:877.832706pt;}
.ycf{bottom:877.832800pt;}
.y4a{bottom:884.106586pt;}
.y2{bottom:887.508400pt;}
.y2dd{bottom:889.624558pt;}
.yf3{bottom:891.211120pt;}
.y7d{bottom:891.211347pt;}
.yab{bottom:894.765200pt;}
.ycd{bottom:897.863389pt;}
.y49{bottom:901.417426pt;}
.y2dc{bottom:902.324133pt;}
.yf2{bottom:908.521960pt;}
.y7c{bottom:908.522186pt;}
.yce{bottom:908.749333pt;}
.ycc{bottom:910.487231pt;}
.yaa{bottom:917.441400pt;}
.y48{bottom:918.802933pt;}
.y2db{bottom:919.633783pt;}
.y1{bottom:920.843867pt;}
.y122{bottom:923.640667pt;}
.y123{bottom:925.832800pt;}
.y7b{bottom:925.833026pt;}
.y79{bottom:930.288705pt;}
.ycb{bottom:932.257625pt;}
.y47{bottom:941.404400pt;}
.y7a{bottom:943.218533pt;}
.y78{bottom:944.953055pt;}
.yca{bottom:944.957200pt;}
.y77{bottom:994.393333pt;}
.h14{height:20.789640pt;}
.hf{height:21.330000pt;}
.h15{height:22.041000pt;}
.hc{height:23.926496pt;}
.h4{height:23.996800pt;}
.h13{height:25.313024pt;}
.h7{height:31.060945pt;}
.he{height:31.188943pt;}
.hd{height:31.999600pt;}
.h1{height:33.066253pt;}
.h17{height:33.073719pt;}
.h18{height:33.074952pt;}
.h3{height:36.000000pt;}
.h9{height:37.973713pt;}
.h16{height:37.999846pt;}
.ha{height:38.187049pt;}
.h6{height:39.266667pt;}
.h11{height:43.056357pt;}
.h10{height:43.058328pt;}
.h12{height:43.064672pt;}
.h8{height:47.999600pt;}
.hb{height:49.599587pt;}
.h5{height:61.524949pt;}
.h2{height:76.907051pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:48.000000pt;}
.x41{left:54.122800pt;}
.x14{left:63.496000pt;}
.x42{left:66.822000pt;}
.x3f{left:97.284933pt;}
.x40{left:109.606267pt;}
.x21{left:132.205881pt;}
.x22{left:213.842194pt;}
.x20{left:238.109624pt;}
.x1{left:266.683333pt;}
.x19{left:273.259051pt;}
.x15{left:282.636826pt;}
.x2e{left:289.209333pt;}
.x57{left:294.651724pt;}
.x2f{left:296.919600pt;}
.x1a{left:303.344008pt;}
.x56{left:310.903867pt;}
.x4c{left:317.177867pt;}
.x26{left:322.318000pt;}
.x27{left:330.028267pt;}
.x4d{left:332.825067pt;}
.x2{left:356.258133pt;}
.xa{left:357.694400pt;}
.x28{left:359.206267pt;}
.x2b{left:360.188933pt;}
.x29{left:364.044000pt;}
.x3{left:367.974667pt;}
.x2c{left:373.568400pt;}
.x10{left:379.464400pt;}
.x43{left:382.941600pt;}
.x11{left:391.180933pt;}
.x1b{left:392.918355pt;}
.x44{left:394.204533pt;}
.x37{left:400.856533pt;}
.x39{left:408.944800pt;}
.x38{left:414.311733pt;}
.x3a{left:422.399867pt;}
.x54{left:433.889600pt;}
.x55{left:438.651867pt;}
.x35{left:441.524267pt;}
.x36{left:449.158933pt;}
.x1c{left:450.140040pt;}
.x4e{left:453.088470pt;}
.x4{left:457.776267pt;}
.xb{left:458.758933pt;}
.x23{left:462.236133pt;}
.x51{left:463.218800pt;}
.x30{left:466.393600pt;}
.x5{left:469.568400pt;}
.x52{left:483.477067pt;}
.x53{left:490.582533pt;}
.x4f{left:546.517702pt;}
.x12{left:551.584133pt;}
.xc{left:559.067600pt;}
.x24{left:567.231333pt;}
.xd{left:569.045467pt;}
.x25{left:571.993600pt;}
.x16{left:574.790400pt;}
.x2a{left:579.779333pt;}
.x6{left:583.710133pt;}
.x1d{left:593.155852pt;}
.x7{left:595.502133pt;}
.x17{left:601.851867pt;}
.x18{left:614.777733pt;}
.x3d{left:615.836000pt;}
.x4a{left:621.051733pt;}
.x45{left:621.958933pt;}
.x48{left:623.092800pt;}
.x31{left:626.872267pt;}
.x3e{left:631.029733pt;}
.x4b{left:632.314800pt;}
.x32{left:634.658133pt;}
.x49{left:635.792000pt;}
.x1e{left:640.324329pt;}
.x50{left:649.171467pt;}
.x46{left:651.212400pt;}
.x47{left:666.859733pt;}
.x33{left:669.883333pt;}
.x34{left:677.593467pt;}
.x2d{left:678.878533pt;}
.xe{left:682.355733pt;}
.xf{left:692.258000pt;}
.x8{left:697.776267pt;}
.x9{left:707.754133pt;}
.x3b{left:710.551067pt;}
.x3c{left:724.006133pt;}
.x1f{left:737.536800pt;}
}




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