
    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_938a8f43d89bb1078985cb36.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5275e15efa73aa08a1bad96b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.942000;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_ef5b26eb91cd1ca7497199b6.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_357ff377a3e0917d85b1ee56.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942000;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_d0c57c47024a7fc400655231.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1ccf6fc4ca9526f8c49ab35e.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_c2267f1f547a44d2a9865649.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.510000;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_76e8af9fe92daf4317cd2313.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dd32645970e28e6a85693cb5.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_9e2820f9ef131dd151ae93ce.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.131000;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_c74f514c24319ece56af60c4.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_270c0e4ec1a354e273472542.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.466000;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_fd16434974bd7a1d39a7493e.woff2')format("woff");}.fff{font-family:fff;line-height:0.863000;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_b1d94a0e8abfff2a629cef7e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.040000;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_16382da232d8af1bcfe8490a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.678000;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_534908d2dd8a52e19b72734c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.677000;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_b77f42b6e8e43d0e2c107f1f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.945000;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_3618dbfab691683b190fa909.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.264000;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_c977299f13a39414f5e51bd6.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.279000;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_8ee1b8bf814446e0270ce356.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.457000;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;}
.m8{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.mb{transform:matrix(0.000000,-0.281273,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.281273,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.281273,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.281285,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.281285,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.281285,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237496,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237498,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.244203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244203,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267200,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.ma{transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281290,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls1f{letter-spacing:-1.328866px;}
.ls1c{letter-spacing:-1.322987px;}
.ls19{letter-spacing:-1.311227px;}
.ls1d{letter-spacing:-1.299467px;}
.ls1b{letter-spacing:-1.293587px;}
.ls1e{letter-spacing:-1.281827px;}
.ls1a{letter-spacing:-1.275947px;}
.ls20{letter-spacing:-1.234787px;}
.ls21{letter-spacing:-1.111309px;}
.ls49{letter-spacing:-1.093663px;}
.ls4d{letter-spacing:-1.070149px;}
.ls48{letter-spacing:-1.064269px;}
.ls31{letter-spacing:-1.058400px;}
.ls4c{letter-spacing:-1.040749px;}
.ls4e{letter-spacing:-1.028990px;}
.ls4b{letter-spacing:-1.017230px;}
.ls7b{letter-spacing:-1.012186px;}
.ls82{letter-spacing:-1.007986px;}
.ls34{letter-spacing:-1.004395px;}
.ls27{letter-spacing:-0.988200px;}
.ls7e{letter-spacing:-0.982786px;}
.ls33{letter-spacing:-0.977400px;}
.ls36{letter-spacing:-0.966600px;}
.ls2e{letter-spacing:-0.961200px;}
.ls79{letter-spacing:-0.957586px;}
.ls30{letter-spacing:-0.955800px;}
.ls23{letter-spacing:-0.946670px;}
.ls81{letter-spacing:-0.936587px;}
.ls37{letter-spacing:-0.934200px;}
.ls7f{letter-spacing:-0.928187px;}
.ls7d{letter-spacing:-0.919787px;}
.ls35{letter-spacing:-0.912595px;}
.ls39{letter-spacing:-0.907200px;}
.ls24{letter-spacing:-0.905511px;}
.ls22{letter-spacing:-0.893751px;}
.ls38{letter-spacing:-0.891000px;}
.ls45{letter-spacing:-0.881991px;}
.ls32{letter-spacing:-0.880195px;}
.ls84{letter-spacing:-0.877783px;}
.ls18{letter-spacing:-0.870231px;}
.ls2f{letter-spacing:-0.869400px;}
.ls26{letter-spacing:-0.864351px;}
.ls7a{letter-spacing:-0.860988px;}
.ls25{letter-spacing:-0.858471px;}
.ls4a{letter-spacing:-0.854438px;}
.ls3e{letter-spacing:-0.853200px;}
.ls47{letter-spacing:-0.852591px;}
.ls14{letter-spacing:-0.846711px;}
.ls17{letter-spacing:-0.840831px;}
.ls12{letter-spacing:-0.834951px;}
.ls15{letter-spacing:-0.829072px;}
.ls8{letter-spacing:-0.823192px;}
.ls13{letter-spacing:-0.817312px;}
.ls7{letter-spacing:-0.811432px;}
.ls6{letter-spacing:-0.799672px;}
.ls46{letter-spacing:-0.782032px;}
.ls28{letter-spacing:-0.777600px;}
.ls44{letter-spacing:-0.776152px;}
.ls16{letter-spacing:-0.770272px;}
.ls83{letter-spacing:-0.747589px;}
.ls80{letter-spacing:-0.671990px;}
.ls78{letter-spacing:-0.667790px;}
.ls3b{letter-spacing:-0.028800px;}
.ls2{letter-spacing:-0.014916px;}
.ls51{letter-spacing:-0.014400px;}
.ls3a{letter-spacing:-0.009600px;}
.ls1{letter-spacing:-0.007458px;}
.ls50{letter-spacing:-0.005400px;}
.ls3c{letter-spacing:-0.004800px;}
.ls0{letter-spacing:0.000000px;}
.ls8c{letter-spacing:0.049494px;}
.ls86{letter-spacing:0.058421px;}
.ls89{letter-spacing:0.058484px;}
.ls88{letter-spacing:0.058547px;}
.ls8f{letter-spacing:0.058737px;}
.ls64{letter-spacing:0.110336px;}
.ls4f{letter-spacing:0.110456px;}
.ls87{letter-spacing:0.117032px;}
.ls68{letter-spacing:0.117613px;}
.ls55{letter-spacing:0.193980px;}
.ls66{letter-spacing:0.194040px;}
.ls5f{letter-spacing:0.194100px;}
.ls75{letter-spacing:0.364598px;}
.ls8e{letter-spacing:0.413937px;}
.ls77{letter-spacing:0.505675px;}
.ls5a{letter-spacing:0.535080px;}
.ls11{letter-spacing:0.535140px;}
.ls92{letter-spacing:0.544493px;}
.ls91{letter-spacing:0.557993px;}
.ls76{letter-spacing:0.582114px;}
.ls70{letter-spacing:0.593874px;}
.ls8d{letter-spacing:0.598492px;}
.ls73{letter-spacing:0.599754px;}
.ls72{letter-spacing:0.605634px;}
.ls5b{letter-spacing:0.611514px;}
.ls9{letter-spacing:0.617394px;}
.lsf{letter-spacing:0.623274px;}
.ls59{letter-spacing:0.629154px;}
.ls71{letter-spacing:0.635034px;}
.lsd{letter-spacing:0.640913px;}
.ls93{letter-spacing:0.643491px;}
.ls5c{letter-spacing:0.658553px;}
.lsb{letter-spacing:0.664433px;}
.ls6d{letter-spacing:0.664438px;}
.ls10{letter-spacing:0.693833px;}
.lsa{letter-spacing:0.705518px;}
.lse{letter-spacing:0.793753px;}
.ls63{letter-spacing:9.292676px;}
.ls7c{letter-spacing:10.084056px;}
.ls41{letter-spacing:11.759791px;}
.ls43{letter-spacing:11.765851px;}
.ls8a{letter-spacing:13.306304px;}
.ls2c{letter-spacing:13.483800px;}
.ls85{letter-spacing:13.504337px;}
.ls3d{letter-spacing:13.510740px;}
.ls8b{letter-spacing:13.666367px;}
.ls29{letter-spacing:13.823820px;}
.ls2b{letter-spacing:13.824000px;}
.ls2a{letter-spacing:13.829400px;}
.ls2d{letter-spacing:13.829460px;}
.ls62{letter-spacing:14.438280px;}
.ls67{letter-spacing:15.499500px;}
.ls40{letter-spacing:17.328118px;}
.ls54{letter-spacing:17.669278px;}
.ls69{letter-spacing:18.010198px;}
.ls90{letter-spacing:18.515280px;}
.ls5d{letter-spacing:18.904020px;}
.ls53{letter-spacing:19.368538px;}
.ls6a{letter-spacing:20.097578px;}
.ls6b{letter-spacing:20.097698px;}
.ls42{letter-spacing:20.391718px;}
.ls4{letter-spacing:21.749938px;}
.ls61{letter-spacing:22.984680px;}
.ls6c{letter-spacing:24.007740px;}
.ls3f{letter-spacing:24.131218px;}
.ls56{letter-spacing:24.190092px;}
.ls52{letter-spacing:24.813418px;}
.ls60{letter-spacing:25.366200px;}
.ls5e{letter-spacing:26.730207px;}
.ls57{letter-spacing:28.735225px;}
.ls5{letter-spacing:28.893958px;}
.ls6f{letter-spacing:29.793602px;}
.ls58{letter-spacing:30.810840px;}
.ls6e{letter-spacing:32.516162px;}
.ls74{letter-spacing:33.156985px;}
.ls3{letter-spacing:33.997798px;}
.lsc{letter-spacing:35.744258px;}
.ls65{letter-spacing:457.957536px;}
.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;}
}
.ws180{word-spacing:-26.789007px;}
.ws2b9{word-spacing:-18.577080px;}
.ws2a4{word-spacing:-10.126055px;}
.wsad{word-spacing:-0.682073px;}
.ws10{word-spacing:-0.061800px;}
.ws24{word-spacing:-0.058799px;}
.wse3{word-spacing:-0.054000px;}
.ws3b{word-spacing:-0.047999px;}
.ws7{word-spacing:-0.044999px;}
.ws36{word-spacing:-0.041999px;}
.ws3c{word-spacing:-0.014916px;}
.ws0{word-spacing:0.000000px;}
.ws29e{word-spacing:0.625791px;}
.ws2aa{word-spacing:0.629991px;}
.wse4{word-spacing:0.723600px;}
.wsc2{word-spacing:0.758512px;}
.wsc7{word-spacing:0.770272px;}
.wsc3{word-spacing:0.776152px;}
.ws118{word-spacing:0.799200px;}
.ws11b{word-spacing:0.811432px;}
.wsf5{word-spacing:0.826195px;}
.wsfc{word-spacing:0.837000px;}
.wsfd{word-spacing:0.853200px;}
.wsf9{word-spacing:0.858595px;}
.wsfb{word-spacing:0.880200px;}
.wsc4{word-spacing:0.887871px;}
.wsf3{word-spacing:0.901800px;}
.wsfa{word-spacing:0.912600px;}
.wsf7{word-spacing:0.923400px;}
.wsf6{word-spacing:0.934200px;}
.wsf8{word-spacing:0.950395px;}
.ws2ac{word-spacing:0.965986px;}
.ws2a3{word-spacing:0.970186px;}
.wsf4{word-spacing:1.004400px;}
.wsbf{word-spacing:1.052509px;}
.wsbe{word-spacing:1.175988px;}
.wsbb{word-spacing:1.240667px;}
.wsba{word-spacing:1.264187px;}
.wsbd{word-spacing:1.270067px;}
.ws9a{word-spacing:9.244685px;}
.ws168{word-spacing:9.425550px;}
.ws18d{word-spacing:9.585480px;}
.ws2a5{word-spacing:10.029457px;}
.ws2a9{word-spacing:10.247913px;}
.ws2a0{word-spacing:10.315053px;}
.ws2a1{word-spacing:10.319253px;}
.ws29d{word-spacing:10.470450px;}
.ws2d8{word-spacing:11.416348px;}
.ws2dc{word-spacing:11.506347px;}
.ws2a6{word-spacing:11.553947px;}
.ws14d{word-spacing:11.583482px;}
.ws2a2{word-spacing:11.621276px;}
.ws2ad{word-spacing:11.738833px;}
.ws2ae{word-spacing:11.822827px;}
.ws6{word-spacing:11.884342px;}
.ws151{word-spacing:11.924518px;}
.ws2a7{word-spacing:12.020228px;}
.ws2a8{word-spacing:12.100027px;}
.ws2ab{word-spacing:12.116827px;}
.ws29f{word-spacing:12.154551px;}
.ws277{word-spacing:12.259675px;}
.ws32{word-spacing:12.423422px;}
.ws34{word-spacing:12.452822px;}
.ws37{word-spacing:12.503222px;}
.ws38{word-spacing:12.528421px;}
.wsf0{word-spacing:12.553620px;}
.ws160{word-spacing:12.662819px;}
.ws15f{word-spacing:12.793018px;}
.ws33{word-spacing:12.889615px;}
.ws35{word-spacing:13.049214px;}
.ws2c1{word-spacing:13.148825px;}
.ws2bd{word-spacing:13.166825px;}
.ws2cc{word-spacing:13.189325px;}
.ws2dd{word-spacing:13.207324px;}
.wsa{word-spacing:13.211824px;}
.ws2c8{word-spacing:13.220823px;}
.ws2b0{word-spacing:13.238824px;}
.ws2be{word-spacing:13.243323px;}
.ws2c6{word-spacing:13.247823px;}
.ws2c3{word-spacing:13.256824px;}
.ws2d7{word-spacing:13.261324px;}
.ws2d6{word-spacing:13.292822px;}
.ws2b5{word-spacing:13.301823px;}
.ws2bf{word-spacing:13.310822px;}
.ws2d3{word-spacing:13.315322px;}
.ws2da{word-spacing:13.315407px;}
.ws2ca{word-spacing:13.328823px;}
.ws2c2{word-spacing:13.337822px;}
.wse{word-spacing:13.342322px;}
.ws2bc{word-spacing:13.360321px;}
.ws2b6{word-spacing:13.369322px;}
.ws2ba{word-spacing:13.373822px;}
.ws2bb{word-spacing:13.378321px;}
.ws8{word-spacing:13.382821px;}
.wscc{word-spacing:13.388623px;}
.ws2ce{word-spacing:13.391822px;}
.ws2d5{word-spacing:13.396180px;}
.wsb{word-spacing:13.400821px;}
.ws2db{word-spacing:13.409821px;}
.ws2c9{word-spacing:13.414322px;}
.ws2b8{word-spacing:13.432321px;}
.ws2b4{word-spacing:13.445820px;}
.wsc{word-spacing:13.454821px;}
.ws2c4{word-spacing:13.472820px;}
.ws2c5{word-spacing:13.490820px;}
.ws2c7{word-spacing:13.499820px;}
.ws2d4{word-spacing:13.508820px;}
.ws2cd{word-spacing:13.517819px;}
.ws2c0{word-spacing:13.544819px;}
.ws2af{word-spacing:13.562852px;}
.ws2d9{word-spacing:13.567319px;}
.ws2b2{word-spacing:13.576319px;}
.wsf{word-spacing:13.594319px;}
.wsd{word-spacing:13.598819px;}
.ws2cb{word-spacing:13.607818px;}
.ws2d2{word-spacing:13.639319px;}
.ws9b{word-spacing:13.727797px;}
.ws39{word-spacing:13.727857px;}
.ws193{word-spacing:13.727917px;}
.ws28d{word-spacing:13.732629px;}
.ws1ca{word-spacing:13.737429px;}
.ws292{word-spacing:13.751828px;}
.ws295{word-spacing:13.771027px;}
.ws2b1{word-spacing:13.774317px;}
.ws2b3{word-spacing:13.801316px;}
.ws29a{word-spacing:13.814227px;}
.ws9{word-spacing:13.823816px;}
.ws29c{word-spacing:13.828628px;}
.ws1ea{word-spacing:13.843026px;}
.wse9{word-spacing:13.847827px;}
.wse8{word-spacing:13.852627px;}
.ws192{word-spacing:13.881427px;}
.ws2b7{word-spacing:13.882315px;}
.wsef{word-spacing:13.891026px;}
.ws1ec{word-spacing:13.895826px;}
.ws1a6{word-spacing:13.900627px;}
.ws291{word-spacing:13.919826px;}
.ws1eb{word-spacing:13.929426px;}
.ws28c{word-spacing:13.934225px;}
.ws156{word-spacing:13.939025px;}
.ws293{word-spacing:13.948626px;}
.wse6{word-spacing:13.953426px;}
.ws298{word-spacing:13.967825px;}
.ws1a5{word-spacing:13.977426px;}
.ws1c1{word-spacing:13.982225px;}
.wse7{word-spacing:13.987025px;}
.ws28b{word-spacing:13.996626px;}
.ws296{word-spacing:14.001425px;}
.ws3a{word-spacing:14.006224px;}
.ws299{word-spacing:14.011024px;}
.wseb{word-spacing:14.015825px;}
.ws1c5{word-spacing:14.020625px;}
.ws211{word-spacing:14.023657px;}
.ws290{word-spacing:14.025425px;}
.ws155{word-spacing:14.030224px;}
.wse5{word-spacing:14.035024px;}
.ws1c0{word-spacing:14.044625px;}
.ws297{word-spacing:14.049425px;}
.ws108{word-spacing:14.054224px;}
.ws294{word-spacing:14.063824px;}
.ws10c{word-spacing:14.073425px;}
.ws1cb{word-spacing:14.097424px;}
.ws159{word-spacing:14.102223px;}
.ws28e{word-spacing:14.111824px;}
.wsfe{word-spacing:14.116623px;}
.ws28f{word-spacing:14.121424px;}
.ws28a{word-spacing:14.131023px;}
.ws10a{word-spacing:14.140624px;}
.ws98{word-spacing:14.145424px;}
.ws18c{word-spacing:14.155023px;}
.ws106{word-spacing:14.164623px;}
.ws157{word-spacing:14.169423px;}
.wsea{word-spacing:14.179022px;}
.ws15d{word-spacing:14.217423px;}
.ws15e{word-spacing:14.222222px;}
.ws97{word-spacing:14.231822px;}
.ws29b{word-spacing:14.236623px;}
.wsff{word-spacing:14.241422px;}
.ws10d{word-spacing:14.246221px;}
.ws75{word-spacing:14.251021px;}
.ws119{word-spacing:14.260622px;}
.ws101{word-spacing:14.279822px;}
.ws10b{word-spacing:14.294221px;}
.ws23a{word-spacing:14.351821px;}
.ws103{word-spacing:14.356621px;}
.ws15b{word-spacing:14.366220px;}
.ws100{word-spacing:14.375820px;}
.ws105{word-spacing:14.385421px;}
.ws158{word-spacing:14.395020px;}
.ws10f{word-spacing:14.399820px;}
.ws104{word-spacing:14.433420px;}
.ws109{word-spacing:14.438219px;}
.ws107{word-spacing:14.462219px;}
.ws102{word-spacing:14.481419px;}
.ws99{word-spacing:14.539096px;}
.wsa6{word-spacing:14.817449px;}
.ws153{word-spacing:14.831815px;}
.ws1df{word-spacing:14.835089px;}
.ws218{word-spacing:14.935048px;}
.ws42{word-spacing:15.017366px;}
.ws19{word-spacing:15.084150px;}
.ws136{word-spacing:15.158485px;}
.wsf2{word-spacing:15.190201px;}
.ws166{word-spacing:15.264362px;}
.ws1b{word-spacing:15.270153px;}
.ws1e{word-spacing:15.306154px;}
.ws1c{word-spacing:15.324061px;}
.ws1de{word-spacing:15.446603px;}
.wse2{word-spacing:15.460200px;}
.ws6f{word-spacing:15.499522px;}
.ws1dc{word-spacing:15.511357px;}
.wsf1{word-spacing:15.546601px;}
.ws1a{word-spacing:15.762158px;}
.ws52{word-spacing:15.811158px;}
.ws1d{word-spacing:15.834158px;}
.ws18b{word-spacing:15.892199px;}
.ws288{word-spacing:15.903000px;}
.ws137{word-spacing:15.987556px;}
.ws1dd{word-spacing:15.999317px;}
.ws239{word-spacing:16.048801px;}
.wse1{word-spacing:16.065001px;}
.ws1c4{word-spacing:16.070401px;}
.ws1e6{word-spacing:16.081199px;}
.ws152{word-spacing:16.097400px;}
.ws1bb{word-spacing:16.102801px;}
.ws238{word-spacing:16.189201px;}
.ws1e2{word-spacing:16.232401px;}
.ws224{word-spacing:16.252154px;}
.wsd8{word-spacing:16.350418px;}
.wsa7{word-spacing:16.405033px;}
.wse0{word-spacing:16.463832px;}
.ws228{word-spacing:16.477379px;}
.wsdf{word-spacing:16.499111px;}
.ws51{word-spacing:16.640231px;}
.ws231{word-spacing:16.787229px;}
.ws12a{word-spacing:16.828388px;}
.ws13f{word-spacing:16.875428px;}
.ws21d{word-spacing:16.887188px;}
.ws5f{word-spacing:16.916588px;}
.ws127{word-spacing:16.969507px;}
.ws58{word-spacing:16.975405px;}
.ws25b{word-spacing:16.981266px;}
.ws50{word-spacing:16.998907px;}
.ws255{word-spacing:17.010666px;}
.ws1f9{word-spacing:17.018344px;}
.ws57{word-spacing:17.022426px;}
.ws44{word-spacing:17.051727px;}
.ws212{word-spacing:17.057707px;}
.ws70{word-spacing:17.063586px;}
.ws56{word-spacing:17.098865px;}
.ws45{word-spacing:17.104745px;}
.ws2d0{word-spacing:17.113272px;}
.ws169{word-spacing:17.128265px;}
.ws59{word-spacing:17.169425px;}
.ws2cf{word-spacing:17.189770px;}
.ws131{word-spacing:17.228224px;}
.ws161{word-spacing:17.310543px;}
.ws1e1{word-spacing:17.322304px;}
.wsbc{word-spacing:17.381102px;}
.wsb7{word-spacing:17.386982px;}
.ws2d1{word-spacing:17.414768px;}
.wsc0{word-spacing:17.434022px;}
.ws195{word-spacing:17.439903px;}
.ws1d2{word-spacing:17.445783px;}
.ws187{word-spacing:17.469302px;}
.ws1a7{word-spacing:17.481061px;}
.ws173{word-spacing:17.486941px;}
.ws21f{word-spacing:17.504582px;}
.wsd6{word-spacing:17.510461px;}
.ws210{word-spacing:17.551621px;}
.wsb0{word-spacing:17.563381px;}
.ws20f{word-spacing:17.598660px;}
.ws1cf{word-spacing:17.669220px;}
.ws2b{word-spacing:17.692739px;}
.ws63{word-spacing:17.704500px;}
.wsa1{word-spacing:17.716259px;}
.ws17a{word-spacing:17.722139px;}
.ws179{word-spacing:17.728019px;}
.ws62{word-spacing:17.745658px;}
.ws96{word-spacing:17.763299px;}
.wsdd{word-spacing:17.780938px;}
.ws12{word-spacing:17.784177px;}
.ws18{word-spacing:17.796179px;}
.ws11{word-spacing:17.802179px;}
.ws253{word-spacing:17.810338px;}
.ws229{word-spacing:17.816218px;}
.ws13a{word-spacing:17.833853px;}
.ws1b0{word-spacing:17.845618px;}
.wsa2{word-spacing:17.869138px;}
.ws135{word-spacing:17.880898px;}
.ws1f2{word-spacing:17.898537px;}
.ws1a9{word-spacing:17.904417px;}
.wsd1{word-spacing:17.916178px;}
.ws1f4{word-spacing:17.922057px;}
.wsa3{word-spacing:17.939698px;}
.ws69{word-spacing:17.957336px;}
.ws1d6{word-spacing:17.974977px;}
.ws16a{word-spacing:17.992616px;}
.ws19f{word-spacing:17.998497px;}
.ws11a{word-spacing:18.004376px;}
.ws1a1{word-spacing:18.033777px;}
.ws139{word-spacing:18.074935px;}
.ws13b{word-spacing:18.080816px;}
.ws1d7{word-spacing:18.086696px;}
.ws3d{word-spacing:18.121976px;}
.ws13{word-spacing:18.132182px;}
.ws1b2{word-spacing:18.151375px;}
.ws150{word-spacing:18.157254px;}
.ws17{word-spacing:18.168181px;}
.ws14{word-spacing:18.186182px;}
.ws134{word-spacing:18.216054px;}
.ws16{word-spacing:18.216183px;}
.ws147{word-spacing:18.245453px;}
.ws15{word-spacing:18.252183px;}
.ws266{word-spacing:18.274853px;}
.ws1fa{word-spacing:18.292494px;}
.ws53{word-spacing:18.317519px;}
.ws1ee{word-spacing:18.368932px;}
.wsd7{word-spacing:18.397861px;}
.ws7c{word-spacing:18.415973px;}
.ws1f{word-spacing:18.463012px;}
.ws1f3{word-spacing:18.486531px;}
.ws124{word-spacing:18.504172px;}
.ws3e{word-spacing:18.545330px;}
.ws123{word-spacing:18.562971px;}
.ws9c{word-spacing:18.601800px;}
.ws13d{word-spacing:18.615889px;}
.ws202{word-spacing:18.668809px;}
.ws21b{word-spacing:18.709970px;}
.ws12f{word-spacing:18.757009px;}
.ws121{word-spacing:18.762888px;}
.ws12e{word-spacing:18.804048px;}
.ws1b7{word-spacing:18.809927px;}
.ws14e{word-spacing:18.821689px;}
.ws222{word-spacing:18.827568px;}
.ws235{word-spacing:18.839327px;}
.ws122{word-spacing:18.862848px;}
.ws14f{word-spacing:18.886368px;}
.ws1fb{word-spacing:18.898127px;}
.ws1f5{word-spacing:18.927526px;}
.wsd0{word-spacing:18.945167px;}
.ws13e{word-spacing:18.986327px;}
.ws55{word-spacing:19.021602px;}
.ws265{word-spacing:19.033366px;}
.ws1ae{word-spacing:19.051006px;}
.ws142{word-spacing:19.145085px;}
.ws43{word-spacing:19.168604px;}
.ws88{word-spacing:19.180365px;}
.ws185{word-spacing:19.203892px;}
.ws186{word-spacing:19.209765px;}
.ws217{word-spacing:19.215643px;}
.ws132{word-spacing:19.256804px;}
.ws230{word-spacing:19.268564px;}
.ws1ef{word-spacing:19.280323px;}
.wsb4{word-spacing:19.321483px;}
.wsc5{word-spacing:19.374402px;}
.ws216{word-spacing:19.392042px;}
.ws188{word-spacing:19.480241px;}
.ws225{word-spacing:19.486104px;}
.ws125{word-spacing:19.515462px;}
.ws227{word-spacing:19.544920px;}
.ws256{word-spacing:19.597839px;}
.ws1aa{word-spacing:19.603719px;}
.ws226{word-spacing:19.603736px;}
.wsd2{word-spacing:19.615480px;}
.ws5{word-spacing:19.635179px;}
.ws4{word-spacing:19.668179px;}
.ws165{word-spacing:19.680160px;}
.ws126{word-spacing:19.721318px;}
.wsb8{word-spacing:19.750719px;}
.ws80{word-spacing:19.821278px;}
.ws1a4{word-spacing:19.827158px;}
.wsdc{word-spacing:19.850677px;}
.ws1af{word-spacing:19.850678px;}
.ws12d{word-spacing:19.862437px;}
.ws197{word-spacing:19.868317px;}
.ws20e{word-spacing:19.944757px;}
.ws175{word-spacing:20.050595px;}
.ws22e{word-spacing:20.062356px;}
.wscf{word-spacing:20.079995px;}
.ws4c{word-spacing:20.115275px;}
.ws176{word-spacing:20.156434px;}
.ws54{word-spacing:20.162314px;}
.ws1d4{word-spacing:20.197594px;}
.wsc8{word-spacing:20.226993px;}
.ws71{word-spacing:20.262274px;}
.ws19c{word-spacing:20.279912px;}
.ws60{word-spacing:20.285793px;}
.ws5b{word-spacing:20.297553px;}
.ws254{word-spacing:20.356353px;}
.ws21e{word-spacing:20.379873px;}
.ws198{word-spacing:20.385753px;}
.wsa4{word-spacing:20.415152px;}
.wsa5{word-spacing:20.438671px;}
.ws162{word-spacing:20.456349px;}
.ws232{word-spacing:20.468072px;}
.ws220{word-spacing:20.503351px;}
.ws16e{word-spacing:20.509230px;}
.ws26{word-spacing:20.526871px;}
.ws199{word-spacing:20.538630px;}
.ws27{word-spacing:20.568030px;}
.ws234{word-spacing:20.597429px;}
.ws1db{word-spacing:20.709149px;}
.ws1f8{word-spacing:20.720908px;}
.ws214{word-spacing:20.791468px;}
.ws9d{word-spacing:20.797348px;}
.ws89{word-spacing:20.844387px;}
.ws14a{word-spacing:20.862027px;}
.ws1da{word-spacing:20.867906px;}
.ws1fc{word-spacing:20.879668px;}
.wsa0{word-spacing:20.914947px;}
.ws130{word-spacing:20.961986px;}
.wsda{word-spacing:21.032545px;}
.ws1f7{word-spacing:21.103104px;}
.ws22f{word-spacing:21.108985px;}
.wsdb{word-spacing:21.126625px;}
.ws22{word-spacing:21.185423px;}
.ws1ad{word-spacing:21.208944px;}
.ws196{word-spacing:21.220703px;}
.wscd{word-spacing:21.297143px;}
.ws16d{word-spacing:21.308902px;}
.ws40{word-spacing:21.350063px;}
.wsd4{word-spacing:21.379462px;}
.ws1ac{word-spacing:21.402982px;}
.ws1f0{word-spacing:21.420621px;}
.ws31{word-spacing:21.526461px;}
.ws1d9{word-spacing:21.549980px;}
.ws49{word-spacing:21.561741px;}
.ws236{word-spacing:21.591140px;}
.ws1b1{word-spacing:21.620540px;}
.ws261{word-spacing:21.626419px;}
.ws6c{word-spacing:21.726378px;}
.ws48{word-spacing:21.732259px;}
.ws92{word-spacing:21.744018px;}
.ws1a3{word-spacing:21.785178px;}
.ws6b{word-spacing:21.820458px;}
.ws2c{word-spacing:21.885137px;}
.ws18a{word-spacing:21.891016px;}
.ws183{word-spacing:21.902776px;}
.ws19b{word-spacing:21.961576px;}
.ws1b9{word-spacing:21.979215px;}
.ws47{word-spacing:21.985095px;}
.ws262{word-spacing:22.008615px;}
.ws120{word-spacing:22.055655px;}
.ws170{word-spacing:22.085055px;}
.ws91{word-spacing:22.143855px;}
.ws275{word-spacing:22.155614px;}
.ws84{word-spacing:22.202654px;}
.ws184{word-spacing:22.237934px;}
.ws12c{word-spacing:22.249692px;}
.ws2a{word-spacing:22.267333px;}
.ws20{word-spacing:22.273212px;}
.ws11f{word-spacing:22.290853px;}
.ws2f{word-spacing:22.302612px;}
.ws1a0{word-spacing:22.326133px;}
.ws149{word-spacing:22.431971px;}
.ws82{word-spacing:22.490771px;}
.ws260{word-spacing:22.543689px;}
.ws3f{word-spacing:22.561330px;}
.wsd9{word-spacing:22.590730px;}
.ws11e{word-spacing:22.608369px;}
.ws25f{word-spacing:22.637769px;}
.ws25a{word-spacing:22.690689px;}
.ws287{word-spacing:22.725968px;}
.ws219{word-spacing:22.761248px;}
.ws145{word-spacing:22.767128px;}
.wsc9{word-spacing:22.820047px;}
.ws146{word-spacing:22.837686px;}
.ws28{word-spacing:22.884727px;}
.ws223{word-spacing:22.920006px;}
.ws20d{word-spacing:22.955285px;}
.ws133{word-spacing:22.978805px;}
.ws20c{word-spacing:23.108164px;}
.ws93{word-spacing:23.178724px;}
.ws83{word-spacing:23.219882px;}
.wsb1{word-spacing:23.225763px;}
.ws1a8{word-spacing:23.290469px;}
.wsaf{word-spacing:23.296322px;}
.ws21a{word-spacing:23.302202px;}
.wsce{word-spacing:23.319843px;}
.ws204{word-spacing:23.331601px;}
.ws174{word-spacing:23.443321px;}
.ws1f1{word-spacing:23.472721px;}
.ws167{word-spacing:23.519760px;}
.ws209{word-spacing:23.566799px;}
.ws27d{word-spacing:23.584440px;}
.ws128{word-spacing:23.643238px;}
.ws1{word-spacing:23.649601px;}
.ws129{word-spacing:23.666759px;}
.ws19e{word-spacing:23.702039px;}
.ws1fd{word-spacing:23.713797px;}
.ws16b{word-spacing:23.731438px;}
.wsde{word-spacing:23.737317px;}
.ws64{word-spacing:23.749077px;}
.ws27e{word-spacing:23.801997px;}
.ws8c{word-spacing:23.860796px;}
.ws8d{word-spacing:23.866676px;}
.ws141{word-spacing:23.896076px;}
.ws189{word-spacing:23.901956px;}
.ws1ab{word-spacing:23.907837px;}
.ws1b3{word-spacing:23.925475px;}
.ws19d{word-spacing:23.931356px;}
.ws4d{word-spacing:23.943116px;}
.ws17d{word-spacing:23.966636px;}
.ws95{word-spacing:24.001916px;}
.ws20b{word-spacing:24.013674px;}
.ws194{word-spacing:24.025435px;}
.ws140{word-spacing:24.125393px;}
.ws1cd{word-spacing:24.166553px;}
.ws2d{word-spacing:24.201834px;}
.wsb5{word-spacing:24.207714px;}
.wsb2{word-spacing:24.225353px;}
.ws19a{word-spacing:24.242992px;}
.ws8b{word-spacing:24.272392px;}
.ws16c{word-spacing:24.278272px;}
.ws22d{word-spacing:24.284152px;}
.ws6e{word-spacing:24.342952px;}
.ws21c{word-spacing:24.431151px;}
.ws233{word-spacing:24.507589px;}
.ws2e{word-spacing:24.542869px;}
.ws1ce{word-spacing:24.548749px;}
.ws14b{word-spacing:24.584030px;}
.ws1e0{word-spacing:24.613429px;}
.ws27c{word-spacing:24.631068px;}
.ws5a{word-spacing:24.707508px;}
.ws41{word-spacing:24.742787px;}
.ws138{word-spacing:24.878027px;}
.ws278{word-spacing:24.883906px;}
.ws203{word-spacing:24.925065px;}
.ws208{word-spacing:24.942706px;}
.ws17c{word-spacing:24.989745px;}
.ws279{word-spacing:24.995624px;}
.ws6a{word-spacing:25.019145px;}
.ws273{word-spacing:25.072065px;}
.ws13c{word-spacing:25.172023px;}
.ws213{word-spacing:25.266103px;}
.ws1ed{word-spacing:25.289623px;}
.ws7f{word-spacing:25.301381px;}
.ws1b4{word-spacing:25.336661px;}
.ws11d{word-spacing:25.366062px;}
.ws25{word-spacing:25.389580px;}
.ws181{word-spacing:25.401340px;}
.ws26d{word-spacing:25.442501px;}
.ws12b{word-spacing:25.483659px;}
.wsca{word-spacing:25.565979px;}
.ws61{word-spacing:25.607139px;}
.ws77{word-spacing:25.618899px;}
.ws1ff{word-spacing:25.624778px;}
.ws21{word-spacing:25.630658px;}
.ws1d8{word-spacing:25.642419px;}
.ws1b6{word-spacing:25.665938px;}
.ws1a2{word-spacing:25.671819px;}
.ws11c{word-spacing:25.671837px;}
.ws215{word-spacing:25.701218px;}
.wscb{word-spacing:25.724738px;}
.ws78{word-spacing:25.754137px;}
.ws1d5{word-spacing:25.865855px;}
.ws23{word-spacing:25.871736px;}
.ws16f{word-spacing:25.901136px;}
.ws9e{word-spacing:25.948175px;}
.wsd3{word-spacing:25.971696px;}
.ws286{word-spacing:26.001095px;}
.ws14c{word-spacing:26.059895px;}
.ws74{word-spacing:26.159852px;}
.ws280{word-spacing:26.165733px;}
.ws200{word-spacing:26.171614px;}
.ws206{word-spacing:26.183372px;}
.ws205{word-spacing:26.206893px;}
.ws27f{word-spacing:26.212772px;}
.ws201{word-spacing:26.248052px;}
.ws1b5{word-spacing:26.283332px;}
.ws29{word-spacing:26.312731px;}
.ws207{word-spacing:26.324492px;}
.ws172{word-spacing:26.383291px;}
.ws282{word-spacing:26.459729px;}
.ws8a{word-spacing:26.653767px;}
.ws148{word-spacing:26.830166px;}
.ws283{word-spacing:26.836046px;}
.ws1ba{word-spacing:26.918365px;}
.ws7d{word-spacing:26.965405px;}
.wsc6{word-spacing:27.024204px;}
.ws271{word-spacing:27.200602px;}
.ws85{word-spacing:27.306441px;}
.ws257{word-spacing:27.341721px;}
.ws86{word-spacing:27.377001px;}
.ws22c{word-spacing:27.565158px;}
.ws237{word-spacing:27.647478px;}
.ws7a{word-spacing:27.670998px;}
.ws263{word-spacing:27.706278px;}
.ws17f{word-spacing:27.788596px;}
.ws25e{word-spacing:27.788597px;}
.ws274{word-spacing:27.923834px;}
.ws25c{word-spacing:27.941475px;}
.ws87{word-spacing:28.123752px;}
.ws1fe{word-spacing:28.153152px;}
.wsae{word-spacing:28.235472px;}
.ws73{word-spacing:28.353071px;}
.ws177{word-spacing:28.453029px;}
.ws144{word-spacing:28.500070px;}
.ws66{word-spacing:28.617662px;}
.ws68{word-spacing:28.788187px;}
.ws164{word-spacing:28.835225px;}
.ws171{word-spacing:28.864625px;}
.ws178{word-spacing:28.899905px;}
.wsd5{word-spacing:29.035143px;}
.ws81{word-spacing:29.041023px;}
.ws163{word-spacing:29.052784px;}
.ws17e{word-spacing:29.205661px;}
.ws5c{word-spacing:29.264462px;}
.ws90{word-spacing:29.299740px;}
.ws26b{word-spacing:29.335020px;}
.ws5e{word-spacing:29.417339px;}
.ws269{word-spacing:29.440860px;}
.ws67{word-spacing:29.505538px;}
.ws5d{word-spacing:29.711336px;}
.ws26a{word-spacing:29.734855px;}
.ws76{word-spacing:29.893614px;}
.ws1b8{word-spacing:30.093532px;}
.ws143{word-spacing:30.322851px;}
.ws26e{word-spacing:30.393409px;}
.ws1d3{word-spacing:30.469850px;}
.ws272{word-spacing:30.552169px;}
.ws4b{word-spacing:30.734447px;}
.ws1d0{word-spacing:30.940245px;}
.ws22a{word-spacing:30.957884px;}
.ws7b{word-spacing:30.963763px;}
.ws182{word-spacing:30.999045px;}
.ws221{word-spacing:31.057844px;}
.wsa9{word-spacing:31.257760px;}
.ws26c{word-spacing:31.316561px;}
.ws72{word-spacing:31.387119px;}
.ws285{word-spacing:31.422399px;}
.ws284{word-spacing:31.445919px;}
.ws7e{word-spacing:31.822236px;}
.ws17b{word-spacing:31.851636px;}
.ws79{word-spacing:32.216192px;}
.ws26f{word-spacing:32.245590px;}
.ws46{word-spacing:32.286749px;}
.ws30{word-spacing:32.363191px;}
.ws6d{word-spacing:32.410230px;}
.ws267{word-spacing:32.616028px;}
.ws4f{word-spacing:32.751266px;}
.ws1d1{word-spacing:33.009984px;}
.ws268{word-spacing:33.127583px;}
.ws276{word-spacing:33.186383px;}
.ws94{word-spacing:33.803776px;}
.ws65{word-spacing:33.944893px;}
.ws270{word-spacing:34.027213px;}
.wsb3{word-spacing:34.109531px;}
.wsaa{word-spacing:34.332971px;}
.wsac{word-spacing:34.415289px;}
.ws9f{word-spacing:34.579926px;}
.ws22b{word-spacing:35.567758px;}
.wsab{word-spacing:35.614797px;}
.ws27a{word-spacing:35.644195px;}
.ws15a{word-spacing:35.740352px;}
.ws154{word-spacing:35.961151px;}
.ws4e{word-spacing:36.067553px;}
.ws264{word-spacing:36.149871px;}
.ws1f6{word-spacing:36.443868px;}
.ws25d{word-spacing:36.708465px;}
.ws27b{word-spacing:36.967182px;}
.ws20a{word-spacing:38.084372px;}
.wsb6{word-spacing:38.601806px;}
.ws258{word-spacing:39.771915px;}
.ws4a{word-spacing:40.259950px;}
.ws259{word-spacing:41.006703px;}
.ws8f{word-spacing:41.171340px;}
.ws8e{word-spacing:41.277179px;}
.ws2{word-spacing:42.955378px;}
.ws3{word-spacing:42.984179px;}
.ws281{word-spacing:44.881581px;}
.ws110{word-spacing:55.866347px;}
.wsb9{word-spacing:65.708330px;}
.ws113{word-spacing:67.779952px;}
.wsc1{word-spacing:73.616852px;}
.wsa8{word-spacing:73.946128px;}
.ws114{word-spacing:90.502869px;}
.ws116{word-spacing:97.928373px;}
.ws117{word-spacing:120.108896px;}
.ws115{word-spacing:121.457677px;}
.wsec{word-spacing:131.662354px;}
.wsed{word-spacing:154.654067px;}
.ws10e{word-spacing:172.101849px;}
.wsee{word-spacing:177.645779px;}
.ws15c{word-spacing:193.571983px;}
.ws112{word-spacing:222.659717px;}
.ws18e{word-spacing:244.964938px;}
.ws1c6{word-spacing:248.209702px;}
.ws1cc{word-spacing:248.339286px;}
.ws191{word-spacing:253.782437px;}
.ws111{word-spacing:255.779219px;}
.ws1c9{word-spacing:256.839985px;}
.ws1c3{word-spacing:268.748641px;}
.ws1e3{word-spacing:268.777445px;}
.ws1e5{word-spacing:269.084636px;}
.ws1bc{word-spacing:269.147026px;}
.ws1bf{word-spacing:278.271717px;}
.ws1e4{word-spacing:305.823372px;}
.ws1e7{word-spacing:313.335241px;}
.ws190{word-spacing:321.130370px;}
.ws1c8{word-spacing:324.192770px;}
.ws1c2{word-spacing:344.602070px;}
.ws1be{word-spacing:344.602130px;}
.ws1e9{word-spacing:389.159940px;}
.ws1bd{word-spacing:640.888003px;}
.ws1c7{word-spacing:702.792823px;}
.ws18f{word-spacing:712.320703px;}
.ws289{word-spacing:969.712660px;}
.ws1e8{word-spacing:1216.770403px;}
.ws24a{word-spacing:1636.880398px;}
.ws248{word-spacing:1692.300505px;}
.ws23f{word-spacing:1693.260493px;}
.ws243{word-spacing:1693.740487px;}
.ws24e{word-spacing:1700.220406px;}
.ws24d{word-spacing:1706.748325px;}
.ws24f{word-spacing:1708.236306px;}
.ws23b{word-spacing:1710.204281px;}
.ws251{word-spacing:1713.180244px;}
.ws23c{word-spacing:1715.292218px;}
.ws24b{word-spacing:1720.236156px;}
.ws241{word-spacing:1726.716075px;}
.ws240{word-spacing:1730.700025px;}
.ws23d{word-spacing:1733.243993px;}
.ws244{word-spacing:1733.675988px;}
.ws24c{word-spacing:1734.683975px;}
.ws23e{word-spacing:1736.747950px;}
.ws245{word-spacing:1737.227944px;}
.ws242{word-spacing:1740.203906px;}
.ws252{word-spacing:1742.219881px;}
.ws247{word-spacing:1756.763699px;}
.ws250{word-spacing:1762.187632px;}
.ws249{word-spacing:1762.715625px;}
.ws246{word-spacing:1790.171282px;}
._72{margin-left:-30.916721px;}
._71{margin-left:-26.706689px;}
._70{margin-left:-25.460140px;}
._95{margin-left:-17.903461px;}
._b{margin-left:-10.991089px;}
._68{margin-left:-6.900029px;}
._1d{margin-left:-5.848584px;}
._12{margin-left:-4.317474px;}
._d{margin-left:-3.057569px;}
._7{margin-left:-1.860017px;}
._5{width:1.138484px;}
._10{width:2.424753px;}
._1e{width:6.620823px;}
._0{width:9.063600px;}
._7a{width:10.312099px;}
._67{width:12.320634px;}
._11{width:13.553203px;}
._4{width:14.633805px;}
._8{width:16.194158px;}
._14{width:18.216054px;}
._6{width:19.387721px;}
._13{width:21.377476px;}
._a{width:22.571662px;}
._c{width:24.086456px;}
._e{width:25.790213px;}
._9{width:27.377001px;}
._1a{width:28.538390px;}
._18{width:29.698141px;}
._17{width:30.799225px;}
._1{width:32.307599px;}
._f{width:33.459082px;}
._1b{width:35.373711px;}
._16{width:37.984411px;}
._92{width:39.250820px;}
._15{width:42.093055px;}
._3{width:44.452987px;}
._69{width:51.292158px;}
._3b{width:55.520904px;}
._38{width:58.007275px;}
._1c{width:65.584848px;}
._66{width:67.213532px;}
._3e{width:74.739863px;}
._3f{width:77.384556px;}
._65{width:97.265991px;}
._49{width:98.537956px;}
._59{width:106.371485px;}
._6a{width:109.942626px;}
._58{width:118.236922px;}
._4e{width:120.147303px;}
._40{width:121.702486px;}
._4d{width:128.758395px;}
._52{width:130.491162px;}
._39{width:131.710354px;}
._6c{width:132.785559px;}
._4f{width:142.447824px;}
._5b{width:143.489416px;}
._32{width:145.433384px;}
._53{width:149.748521px;}
._46{width:150.859752px;}
._57{width:158.242082px;}
._4a{width:160.629992px;}
._42{width:166.130728px;}
._4b{width:172.260244px;}
._5e{width:175.485814px;}
._48{width:181.716129px;}
._41{width:183.621705px;}
._47{width:190.447212px;}
._6d{width:193.619982px;}
._6e{width:195.229837px;}
._5f{width:196.653544px;}
._51{width:199.687109px;}
._2a{width:202.408665px;}
._64{width:206.647026px;}
._36{width:209.368578px;}
._55{width:212.771755px;}
._4c{width:214.029310px;}
._35{width:215.896496px;}
._37{width:217.384478px;}
._20{width:219.352453px;}
._3a{width:221.157236px;}
._22{width:222.395610px;}
._1f{width:223.864397px;}
._61{width:226.657972px;}
._33{width:229.384328px;}
._3d{width:232.902698px;}
._2c{width:235.864247px;}
._54{width:237.126636px;}
._2b{width:239.848197px;}
._62{width:241.105791px;}
._28{width:242.392165px;}
._34{width:243.832147px;}
._2e{width:244.907329px;}
._25{width:245.963316px;}
._2d{width:249.352078px;}
._6f{width:250.391244px;}
._30{width:251.785657px;}
._63{width:253.016883px;}
._6b{width:254.531202px;}
._84{width:256.657580px;}
._50{width:258.073574px;}
._60{width:259.244750px;}
._5c{width:261.318338px;}
._5d{width:263.190315px;}
._24{width:264.913493px;}
._3c{width:268.815840px;}
._56{width:269.929416px;}
._31{width:271.863797px;}
._21{width:274.777370px;}
._86{width:277.249356px;}
._74{width:279.538896px;}
._76{width:282.058865px;}
._45{width:283.830062px;}
._82{width:285.121241px;}
._27{width:287.905206px;}
._43{width:292.330736px;}
._23{width:293.487527px;}
._5a{width:296.597902px;}
._29{width:297.769083px;}
._2f{width:299.319454px;}
._7c{width:302.612232px;}
._7d{width:304.469784px;}
._7f{width:306.552973px;}
._8d{width:313.152890px;}
._89{width:314.765677px;}
._26{width:316.479239px;}
._44{width:322.267972px;}
._75{width:326.851916px;}
._88{width:332.688646px;}
._78{width:349.411632px;}
._81{width:352.286798px;}
._7e{width:372.883339px;}
._77{width:375.902501px;}
._8b{width:394.790284px;}
._8a{width:413.087618px;}
._8e{width:417.781996px;}
._83{width:423.336719px;}
._8c{width:444.272865px;}
._85{width:640.935988px;}
._7b{width:645.015937px;}
._80{width:706.925554px;}
._73{width:716.448654px;}
._87{width:784.818971px;}
._8f{width:1131.836645px;}
._90{width:1137.187402px;}
._79{width:1213.154405px;}
._91{width:1236.142985px;}
._19{width:1237.648805px;}
._94{width:1548.907098px;}
._2{width:1625.746261px;}
._93{width:1714.764224px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(19,20,19);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs15{font-size:27.996600px;}
.fsa{font-size:29.995200px;}
.fs13{font-size:31.995000px;}
.fs14{font-size:39.194400px;}
.fsf{font-size:41.999400px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:43.996200px;}
.fs9{font-size:44.999400px;}
.fs10{font-size:47.999400px;}
.fs12{font-size:54.000000px;}
.fs11{font-size:55.200600px;}
.fsd{font-size:58.799400px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.000600px;}
.fsb{font-size:61.800000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000600px;}
.fs0{font-size:72.000000px;}
.fse{font-size:74.579400px;}
.fs5{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:144.000600px;}
.y0{bottom:0.000000px;}
.y56{bottom:22.568970px;}
.y5{bottom:66.525004px;}
.y5b{bottom:79.511013px;}
.yd6{bottom:90.291345px;}
.ya6{bottom:90.299775px;}
.y8a{bottom:90.300615px;}
.y1fb{bottom:90.303825px;}
.y144{bottom:90.305415px;}
.y1e9{bottom:90.308025px;}
.ye2{bottom:90.309075px;}
.y117{bottom:90.310440px;}
.y118{bottom:90.310455px;}
.y104{bottom:90.310485px;}
.y105{bottom:90.310500px;}
.y277{bottom:90.311010px;}
.y116{bottom:90.311805px;}
.y145{bottom:90.311820px;}
.y103{bottom:90.311850px;}
.y156{bottom:90.312165px;}
.y128{bottom:90.312720px;}
.y115{bottom:90.312765px;}
.y2b4{bottom:90.316335px;}
.y23c{bottom:90.561000px;}
.y5a{bottom:91.501848px;}
.y4{bottom:97.125005px;}
.y1b0{bottom:98.050350px;}
.y17b{bottom:98.051070px;}
.y1ae{bottom:98.051475px;}
.y1d5{bottom:98.051865px;}
.y276{bottom:103.067280px;}
.y1af{bottom:103.322850px;}
.y59{bottom:103.492668px;}
.y2b3{bottom:103.837530px;}
.yd5{bottom:111.466470px;}
.ya5{bottom:111.474915px;}
.y89{bottom:111.475740px;}
.y1fa{bottom:111.478950px;}
.y143{bottom:111.480540px;}
.y1e8{bottom:111.483165px;}
.ye1{bottom:111.484200px;}
.y23b{bottom:111.736125px;}
.y158{bottom:115.228320px;}
.y58{bottom:115.483503px;}
.y275{bottom:115.823550px;}
.y2b2{bottom:117.274350px;}
.y17a{bottom:119.055615px;}
.y1ad{bottom:119.056020px;}
.y1d4{bottom:119.056395px;}
.y159{bottom:122.371620px;}
.y2b1{bottom:130.795545px;}
.yd4{bottom:132.726870px;}
.ya4{bottom:132.735300px;}
.y88{bottom:132.736140px;}
.y1f9{bottom:132.739350px;}
.y142{bottom:132.740940px;}
.y1e7{bottom:132.743550px;}
.ye0{bottom:132.744600px;}
.y23a{bottom:132.996525px;}
.y274{bottom:136.310535px;}
.y21{bottom:139.264499px;}
.y53{bottom:139.797753px;}
.y179{bottom:140.060145px;}
.y1ac{bottom:140.060550px;}
.y1d3{bottom:140.060940px;}
.y2b0{bottom:144.316740px;}
.y273{bottom:149.746770px;}
.yd3{bottom:153.987270px;}
.ya3{bottom:153.995700px;}
.y87{bottom:153.996540px;}
.y1f8{bottom:153.999750px;}
.y141{bottom:154.001325px;}
.y1e6{bottom:154.003950px;}
.ydf{bottom:154.004985px;}
.y239{bottom:154.171650px;}
.y2af{bottom:157.837935px;}
.y178{bottom:159.789105px;}
.y52{bottom:161.058138px;}
.y1ab{bottom:161.065095px;}
.y1d2{bottom:161.065470px;}
.y272{bottom:163.268205px;}
.y2ae{bottom:171.274755px;}
.yd2{bottom:175.162395px;}
.ya2{bottom:175.170825px;}
.y86{bottom:175.171665px;}
.y1f7{bottom:175.174875px;}
.y140{bottom:175.176465px;}
.y1e5{bottom:175.179090px;}
.yde{bottom:175.180125px;}
.y238{bottom:175.432050px;}
.y271{bottom:176.789640px;}
.y152{bottom:178.666740px;}
.y157{bottom:178.667055px;}
.y155{bottom:178.668255px;}
.y177{bottom:179.518050px;}
.y175{bottom:179.518065px;}
.y1aa{bottom:180.708840px;}
.y1d1{bottom:181.984815px;}
.y51{bottom:182.233278px;}
.y123{bottom:183.685080px;}
.y110{bottom:183.685125px;}
.y153{bottom:184.365270px;}
.y176{bottom:184.790550px;}
.y2ad{bottom:184.795950px;}
.y270{bottom:190.311060px;}
.y174{bottom:192.954300px;}
.yd1{bottom:196.422795px;}
.ya1{bottom:196.431225px;}
.y85{bottom:196.432065px;}
.y1f6{bottom:196.435275px;}
.y13f{bottom:196.436850px;}
.y1e4{bottom:196.439490px;}
.ydd{bottom:196.440510px;}
.y237{bottom:196.607190px;}
.y18{bottom:196.933500px;}
.y124{bottom:198.056655px;}
.y111{bottom:198.056700px;}
.y2ac{bottom:198.317145px;}
.y1a7{bottom:200.437680px;}
.y1a9{bottom:200.437800px;}
.y1d0{bottom:202.989345px;}
.y50{bottom:203.493678px;}
.y26f{bottom:203.747295px;}
.y1a8{bottom:205.795185px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2ab{bottom:211.838340px;}
.y173{bottom:212.683500px;}
.y1a6{bottom:213.959100px;}
.y26e{bottom:217.268745px;}
.yd0{bottom:217.597920px;}
.ya0{bottom:217.606365px;}
.y84{bottom:217.607190px;}
.y1f5{bottom:217.610385px;}
.y13e{bottom:217.611990px;}
.y1e3{bottom:217.614630px;}
.ydc{bottom:217.615650px;}
.y236{bottom:217.867590px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1cf{bottom:222.718305px;}
.y4f{bottom:224.668818px;}
.y2aa{bottom:225.274035px;}
.y26d{bottom:230.790165px;}
.y1a5{bottom:233.688150px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y146{bottom:237.853590px;}
.y154{bottom:237.855120px;}
.y2a9{bottom:238.795230px;}
.ycf{bottom:238.858320px;}
.y9f{bottom:238.866765px;}
.y83{bottom:238.867590px;}
.y1f4{bottom:238.870785px;}
.y13d{bottom:238.872390px;}
.y1e2{bottom:238.875000px;}
.ydb{bottom:238.875600px;}
.y235{bottom:239.127990px;}
.y1ce{bottom:242.447250px;}
.y26c{bottom:244.311585px;}
.y125{bottom:244.658205px;}
.y112{bottom:244.658250px;}
.y4e{bottom:245.929203px;}
.y2a8{bottom:252.316425px;}
.y26b{bottom:257.747820px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.yce{bottom:260.118720px;}
.y9e{bottom:260.127165px;}
.y82{bottom:260.127990px;}
.y172{bottom:260.128560px;}
.y1f3{bottom:260.131215px;}
.y13c{bottom:260.132760px;}
.y1e1{bottom:260.135400px;}
.y234{bottom:260.303100px;}
.yda{bottom:260.305500px;}
.y1cd{bottom:262.176285px;}
.y2a7{bottom:265.837620px;}
.y4d{bottom:267.104328px;}
.y26a{bottom:271.269240px;}
.y147{bottom:271.784340px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y2a6{bottom:279.273315px;}
.ycd{bottom:281.293860px;}
.y19b{bottom:281.297670px;}
.y9d{bottom:281.302275px;}
.y81{bottom:281.303130px;}
.y171{bottom:281.303700px;}
.y1f2{bottom:281.306325px;}
.y13b{bottom:281.307900px;}
.y1e0{bottom:281.310315px;}
.y233{bottom:281.563500px;}
.y269{bottom:284.790660px;}
.y254{bottom:284.794260px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y4c{bottom:288.364728px;}
.y2a5{bottom:292.794495px;}
.y268{bottom:298.312110px;}
.y253{bottom:298.315710px;}
.y119{bottom:302.058750px;}
.y106{bottom:302.058795px;}
.ycc{bottom:302.554260px;}
.y19a{bottom:302.558055px;}
.y9c{bottom:302.562675px;}
.y80{bottom:302.563515px;}
.y170{bottom:302.564070px;}
.y1f1{bottom:302.566725px;}
.y13a{bottom:302.568300px;}
.y232{bottom:302.738640px;}
.y2a4{bottom:306.315690px;}
.y4b{bottom:309.625098px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y267{bottom:311.748315px;}
.y252{bottom:311.751915px;}
.y1cc{bottom:316.932285px;}
.y2a3{bottom:319.836885px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.ycb{bottom:323.729370px;}
.y199{bottom:323.733195px;}
.y9b{bottom:323.737815px;}
.y7f{bottom:323.738640px;}
.y16f{bottom:323.739210px;}
.y1f0{bottom:323.741850px;}
.y139{bottom:323.743440px;}
.yd9{bottom:323.743680px;}
.y231{bottom:323.999010px;}
.y148{bottom:324.253680px;}
.y266{bottom:325.269765px;}
.y251{bottom:325.273365px;}
.y126{bottom:329.782605px;}
.y113{bottom:329.782650px;}
.y4a{bottom:330.800238px;}
.y2a2{bottom:333.272595px;}
.y1cb{bottom:338.192685px;}
.y265{bottom:338.791185px;}
.y250{bottom:338.794785px;}
.y1df{bottom:344.989305px;}
.yca{bottom:344.989770px;}
.y198{bottom:344.993595px;}
.y9a{bottom:344.998185px;}
.y7e{bottom:344.999040px;}
.y16e{bottom:344.999610px;}
.y1ef{bottom:345.002250px;}
.y138{bottom:345.003840px;}
.yd8{bottom:345.004050px;}
.y230{bottom:345.259410px;}
.y2a1{bottom:346.793790px;}
.yf{bottom:348.133500px;}
.y49{bottom:352.060668px;}
.y264{bottom:352.312620px;}
.y24f{bottom:352.316205px;}
.y11a{bottom:357.079260px;}
.y107{bottom:357.079305px;}
.y127{bottom:357.080205px;}
.y114{bottom:357.080250px;}
.y1ca{bottom:359.367810px;}
.y2a0{bottom:360.314985px;}
.y263{bottom:365.748855px;}
.y24e{bottom:365.752440px;}
.y1de{bottom:366.249705px;}
.yc9{bottom:366.250140px;}
.y197{bottom:366.253995px;}
.y99{bottom:366.258585px;}
.y7d{bottom:366.259410px;}
.y16d{bottom:366.259980px;}
.y1ee{bottom:366.262635px;}
.y137{bottom:366.264225px;}
.yd7{bottom:366.264450px;}
.y22d{bottom:366.424455px;}
.y22f{bottom:366.434550px;}
.y22e{bottom:372.982665px;}
.y48{bottom:373.235778px;}
.y29f{bottom:373.836180px;}
.y262{bottom:379.270290px;}
.y24d{bottom:379.273860px;}
.y1c9{bottom:380.628210px;}
.ye{bottom:386.785499px;}
.y29e{bottom:387.271860px;}
.y1dd{bottom:387.424845px;}
.yc8{bottom:387.425310px;}
.y196{bottom:387.429105px;}
.y98{bottom:387.433725px;}
.y7c{bottom:387.434550px;}
.y16c{bottom:387.435150px;}
.y1ed{bottom:387.437760px;}
.y136{bottom:387.439365px;}
.y22c{bottom:387.684855px;}
.y149{bottom:388.883670px;}
.y261{bottom:392.791725px;}
.y24c{bottom:392.795295px;}
.y47{bottom:394.496163px;}
.y29d{bottom:400.793055px;}
.y1c8{bottom:401.803350px;}
.y260{bottom:406.313145px;}
.y24b{bottom:406.316715px;}
.yd{bottom:408.044999px;}
.y1dc{bottom:408.685230px;}
.yc7{bottom:408.685680px;}
.y195{bottom:408.689490px;}
.y97{bottom:408.694110px;}
.y7b{bottom:408.694980px;}
.y16b{bottom:408.695520px;}
.y1ec{bottom:408.698175px;}
.y135{bottom:408.699135px;}
.y22b{bottom:408.859995px;}
.y102{bottom:411.165300px;}
.y29c{bottom:414.314250px;}
.y46{bottom:415.756578px;}
.y25f{bottom:419.749380px;}
.y24a{bottom:419.752950px;}
.y1c7{bottom:423.063720px;}
.y29b{bottom:427.835445px;}
.y1db{bottom:429.860370px;}
.yc6{bottom:429.860820px;}
.y194{bottom:429.864630px;}
.y96{bottom:429.869250px;}
.y7a{bottom:429.870075px;}
.y16a{bottom:429.870660px;}
.y1eb{bottom:429.873315px;}
.y22a{bottom:430.120380px;}
.y101{bottom:431.664825px;}
.y25e{bottom:433.270800px;}
.y249{bottom:433.274415px;}
.y11b{bottom:435.909900px;}
.y108{bottom:435.909945px;}
.y45{bottom:436.931718px;}
.y29a{bottom:441.272280px;}
.y1c6{bottom:444.324135px;}
.y25d{bottom:446.792220px;}
.y248{bottom:446.795835px;}
.y1da{bottom:451.120785px;}
.yc5{bottom:451.121205px;}
.y193{bottom:451.125045px;}
.y95{bottom:451.129665px;}
.y79{bottom:451.130490px;}
.y169{bottom:451.131045px;}
.y1ea{bottom:451.133700px;}
.y229{bottom:451.380750px;}
.y100{bottom:452.669355px;}
.y299{bottom:454.793475px;}
.y44{bottom:458.192103px;}
.y25c{bottom:460.313685px;}
.y247{bottom:460.317255px;}
.y14a{bottom:462.782340px;}
.y1c5{bottom:465.499290px;}
.y298{bottom:468.314670px;}
.y78{bottom:472.305630px;}
.y1d9{bottom:472.381170px;}
.yc4{bottom:472.381620px;}
.y192{bottom:472.385415px;}
.y94{bottom:472.390050px;}
.y17d{bottom:472.390875px;}
.y168{bottom:472.391460px;}
.y134{bottom:472.392420px;}
.y228{bottom:472.555890px;}
.yff{bottom:473.588700px;}
.y25b{bottom:473.749920px;}
.y246{bottom:473.753490px;}
.y43{bottom:479.366868px;}
.y297{bottom:481.835865px;}
.y1c4{bottom:486.759660px;}
.y25a{bottom:487.271340px;}
.y245{bottom:487.274925px;}
.y1d8{bottom:493.556310px;}
.yc3{bottom:493.556760px;}
.y191{bottom:493.560555px;}
.y93{bottom:493.565190px;}
.y77{bottom:493.566015px;}
.y167{bottom:493.566600px;}
.y133{bottom:493.567560px;}
.y227{bottom:493.816275px;}
.yfe{bottom:494.593230px;}
.y296{bottom:495.271545px;}
.y259{bottom:500.792775px;}
.y244{bottom:500.796345px;}
.y214{bottom:502.332135px;}
.yc{bottom:502.864502px;}
.y1c3{bottom:507.934800px;}
.y295{bottom:508.792740px;}
.y258{bottom:514.314195px;}
.y243{bottom:514.317765px;}
.y1d7{bottom:514.816680px;}
.yc2{bottom:514.817145px;}
.y190{bottom:514.820940px;}
.y92{bottom:514.825560px;}
.y76{bottom:514.826430px;}
.y166{bottom:514.826985px;}
.y132{bottom:514.827945px;}
.y226{bottom:514.991415px;}
.yfd{bottom:515.597760px;}
.yb{bottom:520.864502px;}
.y11c{bottom:522.224805px;}
.y109{bottom:522.224850px;}
.y294{bottom:522.313935px;}
.y213{bottom:523.336710px;}
.y257{bottom:527.750430px;}
.y242{bottom:527.754000px;}
.y1c2{bottom:529.195170px;}
.y293{bottom:535.835130px;}
.y12f{bottom:535.991820px;}
.yc1{bottom:535.992285px;}
.y18f{bottom:535.996080px;}
.y91{bottom:536.000700px;}
.y75{bottom:536.001525px;}
.y165{bottom:536.002125px;}
.y131{bottom:536.003085px;}
.y225{bottom:536.251830px;}
.yfc{bottom:536.602290px;}
.y42{bottom:538.806753px;}
.ya{bottom:538.864499px;}
.y256{bottom:541.271850px;}
.y241{bottom:541.275420px;}
.y130{bottom:542.551065px;}
.y212{bottom:544.341255px;}
.y292{bottom:549.270855px;}
.y1c1{bottom:550.455600px;}
.y14b{bottom:552.073215px;}
.y255{bottom:554.793270px;}
.y240{bottom:554.796885px;}
.y41{bottom:556.835448px;}
.y9{bottom:556.864499px;}
.y12e{bottom:557.252190px;}
.yc0{bottom:557.252655px;}
.y18e{bottom:557.256495px;}
.y90{bottom:557.261085px;}
.y74{bottom:557.261955px;}
.y164{bottom:557.262495px;}
.y224{bottom:557.512200px;}
.yfb{bottom:557.606820px;}
.y291{bottom:562.792050px;}
.y211{bottom:565.345740px;}
.y1c0{bottom:571.630695px;}
.y23f{bottom:574.525815px;}
.y290{bottom:576.313245px;}
.y12d{bottom:578.427345px;}
.ybf{bottom:578.427795px;}
.y18d{bottom:578.431635px;}
.y161{bottom:578.435400px;}
.y8f{bottom:578.436225px;}
.y73{bottom:578.437035px;}
.y163{bottom:578.437635px;}
.yfa{bottom:578.611365px;}
.y223{bottom:578.687340px;}
.y40{bottom:582.262203px;}
.y162{bottom:584.985765px;}
.y210{bottom:586.350315px;}
.y28f{bottom:589.834440px;}
.y1bf{bottom:592.891110px;}
.y23e{bottom:594.255015px;}
.y11d{bottom:598.930260px;}
.y10a{bottom:598.930305px;}
.yf9{bottom:599.615895px;}
.y12c{bottom:599.687760px;}
.ybe{bottom:599.688210px;}
.y18c{bottom:599.692020px;}
.y160{bottom:599.695815px;}
.y8e{bottom:599.696640px;}
.y72{bottom:599.697465px;}
.y222{bottom:599.947725px;}
.y3f{bottom:600.290868px;}
.y28e{bottom:603.270120px;}
.y20f{bottom:607.354845px;}
.y1be{bottom:614.066250px;}
.y23d{bottom:615.259785px;}
.y28d{bottom:616.791315px;}
.y3e{bottom:618.319563px;}
.yf8{bottom:620.620425px;}
.y12b{bottom:620.948130px;}
.ybd{bottom:620.948595px;}
.y18b{bottom:620.952390px;}
.y15f{bottom:620.956185px;}
.y8d{bottom:620.957010px;}
.y71{bottom:620.957385px;}
.y221{bottom:621.122865px;}
.y20e{bottom:628.359375px;}
.y28c{bottom:630.312510px;}
.y1bd{bottom:635.326635px;}
.y3d{bottom:636.262713px;}
.y14c{bottom:640.598520px;}
.yf7{bottom:641.624955px;}
.y12a{bottom:642.123270px;}
.ybc{bottom:642.123735px;}
.y18a{bottom:642.127530px;}
.y15e{bottom:642.131325px;}
.y8c{bottom:642.132150px;}
.y220{bottom:642.383280px;}
.y28b{bottom:643.833705px;}
.y17e{bottom:644.853465px;}
.y8{bottom:645.510000px;}
.y20d{bottom:649.363905px;}
.y3c{bottom:654.291408px;}
.y1bc{bottom:656.587050px;}
.y28a{bottom:657.269400px;}
.yf6{bottom:662.629530px;}
.y70{bottom:663.383655px;}
.ybb{bottom:663.384105px;}
.y189{bottom:663.387915px;}
.y15d{bottom:663.391710px;}
.y21f{bottom:663.558420px;}
.y11e{bottom:665.685420px;}
.y10b{bottom:665.685465px;}
.y7{bottom:666.771000px;}
.y20c{bottom:670.368435px;}
.y289{bottom:670.790595px;}
.y3b{bottom:672.320073px;}
.y1bb{bottom:677.762145px;}
.yf5{bottom:683.634060px;}
.y288{bottom:684.311790px;}
.y6f{bottom:684.558795px;}
.yba{bottom:684.559245px;}
.y188{bottom:684.563055px;}
.y15c{bottom:684.566850px;}
.y21e{bottom:684.818805px;}
.y3a{bottom:690.263268px;}
.y15b{bottom:691.114785px;}
.y20b{bottom:691.372965px;}
.y33{bottom:693.835653px;}
.ya8{bottom:694.772010px;}
.y287{bottom:697.832970px;}
.y1ba{bottom:699.022575px;}
.yf4{bottom:704.638590px;}
.y6e{bottom:705.819210px;}
.yb9{bottom:705.819630px;}
.y187{bottom:705.823470px;}
.y21d{bottom:706.079175px;}
.y32{bottom:707.356848px;}
.y39{bottom:708.291963px;}
.ya7{bottom:709.823415px;}
.y286{bottom:711.269115px;}
.y20a{bottom:712.377495px;}
.y1b9{bottom:720.197655px;}
.y31{bottom:720.793668px;}
.yf3{bottom:725.643120px;}
.y30{bottom:725.810853px;}
.y6{bottom:726.298500px;}
.y38{bottom:726.320628px;}
.y6d{bottom:727.079595px;}
.yb8{bottom:727.080045px;}
.y186{bottom:727.083840px;}
.y21c{bottom:727.254315px;}
.y14d{bottom:728.103855px;}
.y209{bottom:733.382040px;}
.y2f{bottom:734.315553px;}
.y11f{bottom:739.584090px;}
.y10c{bottom:739.584135px;}
.y1b8{bottom:741.458085px;}
.y37{bottom:744.263808px;}
.yf2{bottom:746.647665px;}
.y2e{bottom:747.836748px;}
.y6c{bottom:748.254735px;}
.yb7{bottom:748.255185px;}
.y185{bottom:748.258980px;}
.y21b{bottom:748.514700px;}
.y3{bottom:752.599495px;}
.y285{bottom:753.193035px;}
.y208{bottom:754.386570px;}
.y2d{bottom:761.357943px;}
.y14e{bottom:762.034620px;}
.y36{bottom:762.292473px;}
.y1b7{bottom:762.632865px;}
.yf1{bottom:767.652195px;}
.y6b{bottom:769.515105px;}
.yb6{bottom:769.515570px;}
.y184{bottom:769.519410px;}
.y21a{bottom:769.689885px;}
.y2c{bottom:774.793578px;}
.y207{bottom:775.391145px;}
.y284{bottom:780.151065px;}
.y35{bottom:780.321168px;}
.y2b{bottom:788.314818px;}
.yf0{bottom:788.656770px;}
.y6a{bottom:790.690245px;}
.yb5{bottom:790.690710px;}
.y183{bottom:790.694550px;}
.y219{bottom:790.950255px;}
.y2a{bottom:793.332183px;}
.y283{bottom:793.672395px;}
.y206{bottom:796.310490px;}
.y29{bottom:801.835968px;}
.y34{bottom:807.278598px;}
.y1b6{bottom:807.447240px;}
.yef{bottom:809.661255px;}
.y69{bottom:811.950630px;}
.yb4{bottom:811.951080px;}
.y182{bottom:811.954920px;}
.y218{bottom:812.210625px;}
.y28{bottom:815.357208px;}
.y205{bottom:817.314975px;}
.y14f{bottom:820.031130px;}
.y120{bottom:827.684550px;}
.y10d{bottom:827.684595px;}
.y1b5{bottom:828.707610px;}
.yee{bottom:830.665830px;}
.y68{bottom:833.211000px;}
.yb3{bottom:833.211450px;}
.y181{bottom:833.215305px;}
.y217{bottom:833.385780px;}
.y282{bottom:837.467835px;}
.y204{bottom:838.319550px;}
.y1b4{bottom:849.882750px;}
.y281{bottom:850.988985px;}
.yed{bottom:851.585175px;}
.y67{bottom:854.386140px;}
.yb2{bottom:854.386590px;}
.y180{bottom:854.390445px;}
.y216{bottom:854.645505px;}
.y203{bottom:859.324035px;}
.y26{bottom:865.020273px;}
.y1b2{bottom:871.143120px;}
.y27{bottom:872.418648px;}
.yec{bottom:872.589660px;}
.y66{bottom:875.646510px;}
.yb1{bottom:875.646975px;}
.y1b3{bottom:877.691070px;}
.y280{bottom:879.307155px;}
.y2{bottom:879.369000px;}
.y202{bottom:880.328610px;}
.y27f{bottom:892.828305px;}
.y150{bottom:893.419800px;}
.yeb{bottom:893.594235px;}
.y65{bottom:896.821650px;}
.yb0{bottom:896.822115px;}
.y2bd{bottom:896.912025px;}
.y25{bottom:901.078038px;}
.y201{bottom:901.333095px;}
.y121{bottom:906.005175px;}
.y10e{bottom:906.005220px;}
.y1a4{bottom:910.092135px;}
.y2bc{bottom:910.433265px;}
.yea{bottom:914.598720px;}
.y64{bottom:918.082125px;}
.yaf{bottom:918.082575px;}
.y27e{bottom:921.231990px;}
.y200{bottom:922.337670px;}
.y2bb{bottom:923.954400px;}
.y1a3{bottom:931.096620px;}
.y27d{bottom:934.668825px;}
.ye9{bottom:935.603295px;}
.y2ba{bottom:937.390140px;}
.y63{bottom:939.257265px;}
.yae{bottom:939.257625px;}
.y24{bottom:940.026588px;}
.y1ff{bottom:943.342260px;}
.y2b9{bottom:950.911290px;}
.y1a2{bottom:952.101195px;}
.ye8{bottom:956.607795px;}
.y62{bottom:960.517635px;}
.yad{bottom:960.518100px;}
.y27c{bottom:963.071235px;}
.y1fe{bottom:964.346745px;}
.y2b8{bottom:964.432530px;}
.y1{bottom:966.726000px;}
.y151{bottom:966.808470px;}
.y1a1{bottom:973.105680px;}
.ye7{bottom:976.336755px;}
.y122{bottom:976.417920px;}
.y10f{bottom:976.417965px;}
.y27b{bottom:976.592475px;}
.y2b7{bottom:977.953680px;}
.y23{bottom:979.057983px;}
.y61{bottom:981.778020px;}
.yac{bottom:981.778470px;}
.y1fd{bottom:985.351320px;}
.y27a{bottom:990.029295px;}
.y2b6{bottom:991.389405px;}
.y1a0{bottom:992.834655px;}
.ye6{bottom:996.065730px;}
.y60{bottom:1002.953160px;}
.yab{bottom:1002.953610px;}
.y2b5{bottom:1004.910555px;}
.y1fc{bottom:1006.355805px;}
.ye5{bottom:1009.587165px;}
.y19d{bottom:1012.563360px;}
.y19f{bottom:1012.563630px;}
.y19e{bottom:1017.921015px;}
.y279{bottom:1018.431795px;}
.y5f{bottom:1024.213530px;}
.yaa{bottom:1024.213995px;}
.y19c{bottom:1026.084780px;}
.ye4{bottom:1029.316950px;}
.y278{bottom:1031.952945px;}
.y22{bottom:1036.034370px;}
.y5e{bottom:1045.388670px;}
.ye3{bottom:1045.813935px;}
.y55{bottom:1101.174018px;}
.y57{bottom:1101.487803px;}
.y5d{bottom:1114.950528px;}
.y54{bottom:1123.742988px;}
.y1b1{bottom:1129.913820px;}
.y17c{bottom:1129.914555px;}
.y1d6{bottom:1129.915380px;}
.y17f{bottom:1129.916205px;}
.ya9{bottom:1129.916565px;}
.y129{bottom:1129.917900px;}
.y15a{bottom:1129.917915px;}
.y2be{bottom:1129.917933px;}
.y8b{bottom:1129.917945px;}
.y5c{bottom:1129.917948px;}
.y215{bottom:1129.919490px;}
.h1c{height:20.185549px;}
.hf{height:21.626539px;}
.h1a{height:23.068395px;}
.h1b{height:28.376746px;}
.h15{height:30.281567px;}
.hd{height:31.721260px;}
.h7{height:32.130000px;}
.he{height:32.444567px;}
.h17{height:34.607567px;}
.h14{height:36.907500px;}
.h19{height:38.934000px;}
.h18{height:39.799633px;}
.h16{height:42.287471px;}
.h12{height:42.570766px;}
.h11{height:43.260433px;}
.h10{height:44.557800px;}
.h6{height:45.900000px;}
.hc{height:47.586433px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.ha{height:56.238000px;}
.h13{height:57.053241px;}
.h5{height:78.030000px;}
.hb{height:103.824433px;}
.h4{height:119.055004px;}
.h9{height:1190.250000px;}
.h8{height:1190.551500px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:165.657000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:85.039395px;}
.xa{left:89.036295px;}
.x5{left:91.077180px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x10{left:155.998860px;}
.x13{left:176.456700px;}
.x5c{left:183.515010px;}
.x15{left:185.470800px;}
.x14{left:188.447370px;}
.x5f{left:194.485200px;}
.x4{left:203.484001px;}
.x7{left:212.768445px;}
.x1b{left:219.230250px;}
.x8{left:223.143360px;}
.x56{left:228.415650px;}
.x5a{left:233.092800px;}
.x1c{left:235.727250px;}
.x5b{left:243.212535px;}
.x1d{left:255.458250px;}
.x36{left:257.754285px;}
.x12{left:266.768460px;}
.x1e{left:268.894485px;}
.xc{left:271.105545px;}
.x57{left:273.146400px;}
.x37{left:277.483350px;}
.xb{left:280.800045px;}
.xd{left:283.094745px;}
.x55{left:284.541750px;}
.x38{left:291.004770px;}
.x20{left:296.787300px;}
.x1f{left:302.144850px;}
.x39{left:310.733715px;}
.x21{left:321.873795px;}
.x3c{left:325.105485px;}
.x16{left:328.421610px;}
.x3a{left:330.462675px;}
.x22{left:342.878340px;}
.x3b{left:343.898910px;}
.x9{left:346.365345px;}
.x3d{left:351.467415px;}
.x23{left:363.882870px;}
.x3e{left:372.471945px;}
.x24{left:384.887415px;}
.x41{left:388.119585px;}
.x3f{left:393.391275px;}
.x25{left:405.891960px;}
.x40{left:406.912710px;}
.x42{left:414.396630px;}
.x17{left:416.351715px;}
.x26{left:426.896490px;}
.x43{left:435.401175px;}
.x27{left:447.901020px;}
.x46{left:451.133820px;}
.x3{left:454.959000px;}
.x44{left:456.405705px;}
.x5d{left:464.484285px;}
.x28{left:468.905550px;}
.x45{left:469.927125px;}
.x5e{left:471.542580px;}
.x47{left:477.410730px;}
.x34{left:481.918035px;}
.x29{left:489.910080px;}
.x18{left:491.186370px;}
.x35{left:492.377835px;}
.x48{left:498.415275px;}
.x2a{left:510.914610px;}
.x4b{left:514.062870px;}
.x49{left:519.419805px;}
.x2b{left:531.919185px;}
.x4a{left:532.941225px;}
.x4c{left:540.424830px;}
.x2c{left:552.838485px;}
.x4d{left:561.429360px;}
.x58{left:564.321165px;}
.x2d{left:573.843060px;}
.x59{left:575.886435px;}
.x50{left:577.076970px;}
.x4e{left:582.433905px;}
.x19{left:583.794015px;}
.x2e{left:594.847590px;}
.x4f{left:595.955325px;}
.x51{left:603.439065px;}
.x2f{left:615.852120px;}
.x52{left:624.443610px;}
.x30{left:636.856665px;}
.x54{left:640.261350px;}
.xf{left:642.217530px;}
.xe{left:643.723110px;}
.x53{left:644.938500px;}
.x11{left:651.535860px;}
.x31{left:657.861195px;}
.x1a{left:669.258135px;}
.x32{left:678.865725px;}
.x33{left:699.870255px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1f{letter-spacing:-1.181215pt;}
.ls1c{letter-spacing:-1.175988pt;}
.ls19{letter-spacing:-1.165535pt;}
.ls1d{letter-spacing:-1.155082pt;}
.ls1b{letter-spacing:-1.149855pt;}
.ls1e{letter-spacing:-1.139402pt;}
.ls1a{letter-spacing:-1.134175pt;}
.ls20{letter-spacing:-1.097589pt;}
.ls21{letter-spacing:-0.987830pt;}
.ls49{letter-spacing:-0.972145pt;}
.ls4d{letter-spacing:-0.951244pt;}
.ls48{letter-spacing:-0.946017pt;}
.ls31{letter-spacing:-0.940800pt;}
.ls4c{letter-spacing:-0.925111pt;}
.ls4e{letter-spacing:-0.914657pt;}
.ls4b{letter-spacing:-0.904204pt;}
.ls7b{letter-spacing:-0.899720pt;}
.ls82{letter-spacing:-0.895987pt;}
.ls34{letter-spacing:-0.892795pt;}
.ls27{letter-spacing:-0.878400pt;}
.ls7e{letter-spacing:-0.873588pt;}
.ls33{letter-spacing:-0.868800pt;}
.ls36{letter-spacing:-0.859200pt;}
.ls2e{letter-spacing:-0.854400pt;}
.ls79{letter-spacing:-0.851188pt;}
.ls30{letter-spacing:-0.849600pt;}
.ls23{letter-spacing:-0.841485pt;}
.ls81{letter-spacing:-0.832521pt;}
.ls37{letter-spacing:-0.830400pt;}
.ls7f{letter-spacing:-0.825055pt;}
.ls7d{letter-spacing:-0.817588pt;}
.ls35{letter-spacing:-0.811195pt;}
.ls39{letter-spacing:-0.806400pt;}
.ls24{letter-spacing:-0.804898pt;}
.ls22{letter-spacing:-0.794445pt;}
.ls38{letter-spacing:-0.792000pt;}
.ls45{letter-spacing:-0.783992pt;}
.ls32{letter-spacing:-0.782395pt;}
.ls84{letter-spacing:-0.780252pt;}
.ls18{letter-spacing:-0.773539pt;}
.ls2f{letter-spacing:-0.772800pt;}
.ls26{letter-spacing:-0.768312pt;}
.ls7a{letter-spacing:-0.765322pt;}
.ls25{letter-spacing:-0.763086pt;}
.ls4a{letter-spacing:-0.759500pt;}
.ls3e{letter-spacing:-0.758400pt;}
.ls47{letter-spacing:-0.757859pt;}
.ls14{letter-spacing:-0.752632pt;}
.ls17{letter-spacing:-0.747406pt;}
.ls12{letter-spacing:-0.742179pt;}
.ls15{letter-spacing:-0.736952pt;}
.ls8{letter-spacing:-0.731726pt;}
.ls13{letter-spacing:-0.726499pt;}
.ls7{letter-spacing:-0.721273pt;}
.ls6{letter-spacing:-0.710819pt;}
.ls46{letter-spacing:-0.695140pt;}
.ls28{letter-spacing:-0.691200pt;}
.ls44{letter-spacing:-0.689913pt;}
.ls16{letter-spacing:-0.684686pt;}
.ls83{letter-spacing:-0.664524pt;}
.ls80{letter-spacing:-0.597325pt;}
.ls78{letter-spacing:-0.593592pt;}
.ls3b{letter-spacing:-0.025600pt;}
.ls2{letter-spacing:-0.013259pt;}
.ls51{letter-spacing:-0.012800pt;}
.ls3a{letter-spacing:-0.008533pt;}
.ls1{letter-spacing:-0.006629pt;}
.ls50{letter-spacing:-0.004800pt;}
.ls3c{letter-spacing:-0.004267pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8c{letter-spacing:0.043995pt;}
.ls86{letter-spacing:0.051930pt;}
.ls89{letter-spacing:0.051986pt;}
.ls88{letter-spacing:0.052042pt;}
.ls8f{letter-spacing:0.052211pt;}
.ls64{letter-spacing:0.098076pt;}
.ls4f{letter-spacing:0.098183pt;}
.ls87{letter-spacing:0.104028pt;}
.ls68{letter-spacing:0.104545pt;}
.ls55{letter-spacing:0.172427pt;}
.ls66{letter-spacing:0.172480pt;}
.ls5f{letter-spacing:0.172533pt;}
.ls75{letter-spacing:0.324087pt;}
.ls8e{letter-spacing:0.367944pt;}
.ls77{letter-spacing:0.449489pt;}
.ls5a{letter-spacing:0.475627pt;}
.ls11{letter-spacing:0.475680pt;}
.ls92{letter-spacing:0.483994pt;}
.ls91{letter-spacing:0.495993pt;}
.ls76{letter-spacing:0.517435pt;}
.ls70{letter-spacing:0.527888pt;}
.ls8d{letter-spacing:0.531993pt;}
.ls73{letter-spacing:0.533115pt;}
.ls72{letter-spacing:0.538341pt;}
.ls5b{letter-spacing:0.543568pt;}
.ls9{letter-spacing:0.548794pt;}
.lsf{letter-spacing:0.554021pt;}
.ls59{letter-spacing:0.559248pt;}
.ls71{letter-spacing:0.564474pt;}
.lsd{letter-spacing:0.569701pt;}
.ls93{letter-spacing:0.571992pt;}
.ls5c{letter-spacing:0.585381pt;}
.lsb{letter-spacing:0.590607pt;}
.ls6d{letter-spacing:0.590612pt;}
.ls10{letter-spacing:0.616740pt;}
.lsa{letter-spacing:0.627127pt;}
.lse{letter-spacing:0.705558pt;}
.ls63{letter-spacing:8.260156pt;}
.ls7c{letter-spacing:8.963605pt;}
.ls41{letter-spacing:10.453148pt;}
.ls43{letter-spacing:10.458534pt;}
.ls8a{letter-spacing:11.827826pt;}
.ls2c{letter-spacing:11.985600pt;}
.ls85{letter-spacing:12.003855pt;}
.ls3d{letter-spacing:12.009547pt;}
.ls8b{letter-spacing:12.147882pt;}
.ls29{letter-spacing:12.287840pt;}
.ls2b{letter-spacing:12.288000pt;}
.ls2a{letter-spacing:12.292800pt;}
.ls2d{letter-spacing:12.292853pt;}
.ls62{letter-spacing:12.834027pt;}
.ls67{letter-spacing:13.777333pt;}
.ls40{letter-spacing:15.402772pt;}
.ls54{letter-spacing:15.706025pt;}
.ls69{letter-spacing:16.009065pt;}
.ls90{letter-spacing:16.458027pt;}
.ls5d{letter-spacing:16.803573pt;}
.ls53{letter-spacing:17.216478pt;}
.ls6a{letter-spacing:17.864514pt;}
.ls6b{letter-spacing:17.864621pt;}
.ls42{letter-spacing:18.125972pt;}
.ls4{letter-spacing:19.333278pt;}
.ls61{letter-spacing:20.430827pt;}
.ls6c{letter-spacing:21.340213pt;}
.ls3f{letter-spacing:21.449972pt;}
.ls56{letter-spacing:21.502304pt;}
.ls52{letter-spacing:22.056372pt;}
.ls60{letter-spacing:22.547733pt;}
.ls5e{letter-spacing:23.760184pt;}
.ls57{letter-spacing:25.542422pt;}
.ls5{letter-spacing:25.683518pt;}
.ls6f{letter-spacing:26.483202pt;}
.ls58{letter-spacing:27.387413pt;}
.ls6e{letter-spacing:28.903255pt;}
.ls74{letter-spacing:29.472875pt;}
.ls3{letter-spacing:30.220265pt;}
.lsc{letter-spacing:31.772674pt;}
.ls65{letter-spacing:407.073365pt;}
.ws180{word-spacing:-23.812450pt;}
.ws2b9{word-spacing:-16.512960pt;}
.ws2a4{word-spacing:-9.000938pt;}
.wsad{word-spacing:-0.606287pt;}
.ws10{word-spacing:-0.054933pt;}
.ws24{word-spacing:-0.052266pt;}
.wse3{word-spacing:-0.048000pt;}
.ws3b{word-spacing:-0.042666pt;}
.ws7{word-spacing:-0.039999pt;}
.ws36{word-spacing:-0.037333pt;}
.ws3c{word-spacing:-0.013259pt;}
.ws0{word-spacing:0.000000pt;}
.ws29e{word-spacing:0.556259pt;}
.ws2aa{word-spacing:0.559992pt;}
.wse4{word-spacing:0.643200pt;}
.wsc2{word-spacing:0.674233pt;}
.wsc7{word-spacing:0.684686pt;}
.wsc3{word-spacing:0.689913pt;}
.ws118{word-spacing:0.710400pt;}
.ws11b{word-spacing:0.721273pt;}
.wsf5{word-spacing:0.734395pt;}
.wsfc{word-spacing:0.744000pt;}
.wsfd{word-spacing:0.758400pt;}
.wsf9{word-spacing:0.763195pt;}
.wsfb{word-spacing:0.782400pt;}
.wsc4{word-spacing:0.789219pt;}
.wsf3{word-spacing:0.801600pt;}
.wsfa{word-spacing:0.811200pt;}
.wsf7{word-spacing:0.820800pt;}
.wsf6{word-spacing:0.830400pt;}
.wsf8{word-spacing:0.844795pt;}
.ws2ac{word-spacing:0.858654pt;}
.ws2a3{word-spacing:0.862388pt;}
.wsf4{word-spacing:0.892800pt;}
.wsbf{word-spacing:0.935564pt;}
.wsbe{word-spacing:1.045323pt;}
.wsbb{word-spacing:1.102815pt;}
.wsba{word-spacing:1.123722pt;}
.wsbd{word-spacing:1.128948pt;}
.ws9a{word-spacing:8.217498pt;}
.ws168{word-spacing:8.378266pt;}
.ws18d{word-spacing:8.520427pt;}
.ws2a5{word-spacing:8.915073pt;}
.ws2a9{word-spacing:9.109256pt;}
.ws2a0{word-spacing:9.168936pt;}
.ws2a1{word-spacing:9.172669pt;}
.ws29d{word-spacing:9.307067pt;}
.ws2d8{word-spacing:10.147865pt;}
.ws2dc{word-spacing:10.227864pt;}
.ws2a6{word-spacing:10.270175pt;}
.ws14d{word-spacing:10.296428pt;}
.ws2a2{word-spacing:10.330023pt;}
.ws2ad{word-spacing:10.434518pt;}
.ws2ae{word-spacing:10.509180pt;}
.ws6{word-spacing:10.563860pt;}
.ws151{word-spacing:10.599572pt;}
.ws2a7{word-spacing:10.684647pt;}
.ws2a8{word-spacing:10.755580pt;}
.ws2ab{word-spacing:10.770513pt;}
.ws29f{word-spacing:10.804046pt;}
.ws277{word-spacing:10.897489pt;}
.ws32{word-spacing:11.043042pt;}
.ws34{word-spacing:11.069175pt;}
.ws37{word-spacing:11.113975pt;}
.ws38{word-spacing:11.136374pt;}
.wsf0{word-spacing:11.158774pt;}
.ws160{word-spacing:11.255839pt;}
.ws15f{word-spacing:11.371571pt;}
.ws33{word-spacing:11.457436pt;}
.ws35{word-spacing:11.599301pt;}
.ws2c1{word-spacing:11.687845pt;}
.ws2bd{word-spacing:11.703844pt;}
.ws2cc{word-spacing:11.723844pt;}
.ws2dd{word-spacing:11.739843pt;}
.wsa{word-spacing:11.743844pt;}
.ws2c8{word-spacing:11.751843pt;}
.ws2b0{word-spacing:11.767843pt;}
.ws2be{word-spacing:11.771843pt;}
.ws2c6{word-spacing:11.775843pt;}
.ws2c3{word-spacing:11.783843pt;}
.ws2d7{word-spacing:11.787843pt;}
.ws2d6{word-spacing:11.815842pt;}
.ws2b5{word-spacing:11.823843pt;}
.ws2bf{word-spacing:11.831842pt;}
.ws2d3{word-spacing:11.835842pt;}
.ws2da{word-spacing:11.835917pt;}
.ws2ca{word-spacing:11.847842pt;}
.ws2c2{word-spacing:11.855842pt;}
.wse{word-spacing:11.859842pt;}
.ws2bc{word-spacing:11.875841pt;}
.ws2b6{word-spacing:11.883842pt;}
.ws2ba{word-spacing:11.887842pt;}
.ws2bb{word-spacing:11.891841pt;}
.ws8{word-spacing:11.895841pt;}
.wscc{word-spacing:11.900999pt;}
.ws2ce{word-spacing:11.903842pt;}
.ws2d5{word-spacing:11.907716pt;}
.wsb{word-spacing:11.911841pt;}
.ws2db{word-spacing:11.919841pt;}
.ws2c9{word-spacing:11.923841pt;}
.ws2b8{word-spacing:11.939841pt;}
.ws2b4{word-spacing:11.951840pt;}
.wsc{word-spacing:11.959841pt;}
.ws2c4{word-spacing:11.975840pt;}
.ws2c5{word-spacing:11.991840pt;}
.ws2c7{word-spacing:11.999840pt;}
.ws2d4{word-spacing:12.007840pt;}
.ws2cd{word-spacing:12.015839pt;}
.ws2c0{word-spacing:12.039839pt;}
.ws2af{word-spacing:12.055868pt;}
.ws2d9{word-spacing:12.059839pt;}
.ws2b2{word-spacing:12.067839pt;}
.wsf{word-spacing:12.083839pt;}
.wsd{word-spacing:12.087839pt;}
.ws2cb{word-spacing:12.095838pt;}
.ws2d2{word-spacing:12.123839pt;}
.ws9b{word-spacing:12.202486pt;}
.ws39{word-spacing:12.202539pt;}
.ws193{word-spacing:12.202593pt;}
.ws28d{word-spacing:12.206781pt;}
.ws1ca{word-spacing:12.211048pt;}
.ws292{word-spacing:12.223847pt;}
.ws295{word-spacing:12.240913pt;}
.ws2b1{word-spacing:12.243837pt;}
.ws2b3{word-spacing:12.267837pt;}
.ws29a{word-spacing:12.279313pt;}
.ws9{word-spacing:12.287837pt;}
.ws29c{word-spacing:12.292113pt;}
.ws1ea{word-spacing:12.304912pt;}
.wse9{word-spacing:12.309179pt;}
.wse8{word-spacing:12.313447pt;}
.ws192{word-spacing:12.339046pt;}
.ws2b7{word-spacing:12.339835pt;}
.wsef{word-spacing:12.347579pt;}
.ws1ec{word-spacing:12.351846pt;}
.ws1a6{word-spacing:12.356113pt;}
.ws291{word-spacing:12.373179pt;}
.ws1eb{word-spacing:12.381712pt;}
.ws28c{word-spacing:12.385978pt;}
.ws156{word-spacing:12.390245pt;}
.ws293{word-spacing:12.398779pt;}
.wse6{word-spacing:12.403045pt;}
.ws298{word-spacing:12.415845pt;}
.ws1a5{word-spacing:12.424378pt;}
.ws1c1{word-spacing:12.428644pt;}
.wse7{word-spacing:12.432911pt;}
.ws28b{word-spacing:12.441445pt;}
.ws296{word-spacing:12.445712pt;}
.ws3a{word-spacing:12.449977pt;}
.ws299{word-spacing:12.454244pt;}
.wseb{word-spacing:12.458511pt;}
.ws1c5{word-spacing:12.462778pt;}
.ws211{word-spacing:12.465473pt;}
.ws290{word-spacing:12.467045pt;}
.ws155{word-spacing:12.471310pt;}
.wse5{word-spacing:12.475577pt;}
.ws1c0{word-spacing:12.484111pt;}
.ws297{word-spacing:12.488378pt;}
.ws108{word-spacing:12.492643pt;}
.ws294{word-spacing:12.501177pt;}
.ws10c{word-spacing:12.509711pt;}
.ws1cb{word-spacing:12.531044pt;}
.ws159{word-spacing:12.535310pt;}
.ws28e{word-spacing:12.543843pt;}
.wsfe{word-spacing:12.548109pt;}
.ws28f{word-spacing:12.552377pt;}
.ws28a{word-spacing:12.560909pt;}
.ws10a{word-spacing:12.569443pt;}
.ws98{word-spacing:12.573710pt;}
.ws18c{word-spacing:12.582242pt;}
.ws106{word-spacing:12.590776pt;}
.ws157{word-spacing:12.595043pt;}
.wsea{word-spacing:12.603575pt;}
.ws15d{word-spacing:12.637709pt;}
.ws15e{word-spacing:12.641975pt;}
.ws97{word-spacing:12.650509pt;}
.ws29b{word-spacing:12.654776pt;}
.wsff{word-spacing:12.659042pt;}
.ws10d{word-spacing:12.663308pt;}
.ws75{word-spacing:12.667575pt;}
.ws119{word-spacing:12.676109pt;}
.ws101{word-spacing:12.693175pt;}
.ws10b{word-spacing:12.705974pt;}
.ws23a{word-spacing:12.757174pt;}
.ws103{word-spacing:12.761441pt;}
.ws15b{word-spacing:12.769973pt;}
.ws100{word-spacing:12.778507pt;}
.ws105{word-spacing:12.787041pt;}
.ws158{word-spacing:12.795573pt;}
.ws10f{word-spacing:12.799840pt;}
.ws104{word-spacing:12.829707pt;}
.ws109{word-spacing:12.833972pt;}
.ws107{word-spacing:12.855306pt;}
.ws102{word-spacing:12.872373pt;}
.ws99{word-spacing:12.923641pt;}
.wsa6{word-spacing:13.171066pt;}
.ws153{word-spacing:13.183835pt;}
.ws1df{word-spacing:13.186745pt;}
.ws218{word-spacing:13.275598pt;}
.ws42{word-spacing:13.348770pt;}
.ws19{word-spacing:13.408134pt;}
.ws136{word-spacing:13.474209pt;}
.wsf2{word-spacing:13.502400pt;}
.ws166{word-spacing:13.568322pt;}
.ws1b{word-spacing:13.573469pt;}
.ws1e{word-spacing:13.605470pt;}
.ws1c{word-spacing:13.621387pt;}
.ws1de{word-spacing:13.730314pt;}
.wse2{word-spacing:13.742400pt;}
.ws6f{word-spacing:13.777353pt;}
.ws1dc{word-spacing:13.787872pt;}
.wsf1{word-spacing:13.819200pt;}
.ws1a{word-spacing:14.010807pt;}
.ws52{word-spacing:14.054363pt;}
.ws1d{word-spacing:14.074807pt;}
.ws18b{word-spacing:14.126400pt;}
.ws288{word-spacing:14.136000pt;}
.ws137{word-spacing:14.211161pt;}
.ws1dd{word-spacing:14.221615pt;}
.ws239{word-spacing:14.265600pt;}
.wse1{word-spacing:14.280000pt;}
.ws1c4{word-spacing:14.284800pt;}
.ws1e6{word-spacing:14.294400pt;}
.ws152{word-spacing:14.308800pt;}
.ws1bb{word-spacing:14.313600pt;}
.ws238{word-spacing:14.390400pt;}
.ws1e2{word-spacing:14.428800pt;}
.ws224{word-spacing:14.446359pt;}
.wsd8{word-spacing:14.533705pt;}
.wsa7{word-spacing:14.582252pt;}
.wse0{word-spacing:14.634517pt;}
.ws228{word-spacing:14.646559pt;}
.wsdf{word-spacing:14.665876pt;}
.ws51{word-spacing:14.791316pt;}
.ws231{word-spacing:14.921981pt;}
.ws12a{word-spacing:14.958567pt;}
.ws13f{word-spacing:15.000380pt;}
.ws21d{word-spacing:15.010834pt;}
.ws5f{word-spacing:15.036967pt;}
.ws127{word-spacing:15.084007pt;}
.ws58{word-spacing:15.089249pt;}
.ws25b{word-spacing:15.094459pt;}
.ws50{word-spacing:15.110139pt;}
.ws255{word-spacing:15.120592pt;}
.ws1f9{word-spacing:15.127417pt;}
.ws57{word-spacing:15.131046pt;}
.ws44{word-spacing:15.157091pt;}
.ws212{word-spacing:15.162406pt;}
.ws70{word-spacing:15.167632pt;}
.ws56{word-spacing:15.198991pt;}
.ws45{word-spacing:15.204218pt;}
.ws2d0{word-spacing:15.211798pt;}
.ws169{word-spacing:15.225124pt;}
.ws59{word-spacing:15.261711pt;}
.ws2cf{word-spacing:15.279796pt;}
.ws131{word-spacing:15.313977pt;}
.ws161{word-spacing:15.387149pt;}
.ws1e1{word-spacing:15.397603pt;}
.wsbc{word-spacing:15.449868pt;}
.wsb7{word-spacing:15.455095pt;}
.ws2d1{word-spacing:15.479794pt;}
.wsc0{word-spacing:15.496908pt;}
.ws195{word-spacing:15.502136pt;}
.ws1d2{word-spacing:15.507362pt;}
.ws187{word-spacing:15.528269pt;}
.ws1a7{word-spacing:15.538721pt;}
.ws173{word-spacing:15.543948pt;}
.ws21f{word-spacing:15.559628pt;}
.wsd6{word-spacing:15.564854pt;}
.ws210{word-spacing:15.601441pt;}
.wsb0{word-spacing:15.611895pt;}
.ws20f{word-spacing:15.643253pt;}
.ws1cf{word-spacing:15.705973pt;}
.ws2b{word-spacing:15.726879pt;}
.ws63{word-spacing:15.737333pt;}
.wsa1{word-spacing:15.747785pt;}
.ws17a{word-spacing:15.753012pt;}
.ws179{word-spacing:15.758239pt;}
.ws62{word-spacing:15.773919pt;}
.ws96{word-spacing:15.789599pt;}
.wsdd{word-spacing:15.805278pt;}
.ws12{word-spacing:15.808158pt;}
.ws18{word-spacing:15.818825pt;}
.ws11{word-spacing:15.824159pt;}
.ws253{word-spacing:15.831411pt;}
.ws229{word-spacing:15.836638pt;}
.ws13a{word-spacing:15.852314pt;}
.ws1b0{word-spacing:15.862771pt;}
.wsa2{word-spacing:15.883678pt;}
.ws135{word-spacing:15.894132pt;}
.ws1f2{word-spacing:15.909810pt;}
.ws1a9{word-spacing:15.915038pt;}
.wsd1{word-spacing:15.925491pt;}
.ws1f4{word-spacing:15.930717pt;}
.wsa3{word-spacing:15.946398pt;}
.ws69{word-spacing:15.962077pt;}
.ws1d6{word-spacing:15.977757pt;}
.ws16a{word-spacing:15.993437pt;}
.ws19f{word-spacing:15.998664pt;}
.ws11a{word-spacing:16.003890pt;}
.ws1a1{word-spacing:16.030024pt;}
.ws139{word-spacing:16.066609pt;}
.ws13b{word-spacing:16.071837pt;}
.ws1d7{word-spacing:16.077063pt;}
.ws3d{word-spacing:16.108423pt;}
.ws13{word-spacing:16.117495pt;}
.ws1b2{word-spacing:16.134556pt;}
.ws150{word-spacing:16.139781pt;}
.ws17{word-spacing:16.149494pt;}
.ws14{word-spacing:16.165496pt;}
.ws134{word-spacing:16.192048pt;}
.ws16{word-spacing:16.192162pt;}
.ws147{word-spacing:16.218181pt;}
.ws15{word-spacing:16.224163pt;}
.ws266{word-spacing:16.244314pt;}
.ws1fa{word-spacing:16.259995pt;}
.ws53{word-spacing:16.282239pt;}
.ws1ee{word-spacing:16.327940pt;}
.wsd7{word-spacing:16.353654pt;}
.ws7c{word-spacing:16.369753pt;}
.ws1f{word-spacing:16.411566pt;}
.ws1f3{word-spacing:16.432472pt;}
.ws124{word-spacing:16.448153pt;}
.ws3e{word-spacing:16.484738pt;}
.ws123{word-spacing:16.500418pt;}
.ws9c{word-spacing:16.534933pt;}
.ws13d{word-spacing:16.547457pt;}
.ws202{word-spacing:16.594497pt;}
.ws21b{word-spacing:16.631084pt;}
.ws12f{word-spacing:16.672897pt;}
.ws121{word-spacing:16.678123pt;}
.ws12e{word-spacing:16.714709pt;}
.ws1b7{word-spacing:16.719936pt;}
.ws14e{word-spacing:16.730390pt;}
.ws222{word-spacing:16.735616pt;}
.ws235{word-spacing:16.746069pt;}
.ws122{word-spacing:16.766976pt;}
.ws14f{word-spacing:16.787883pt;}
.ws1fb{word-spacing:16.798335pt;}
.ws1f5{word-spacing:16.824468pt;}
.wsd0{word-spacing:16.840149pt;}
.ws13e{word-spacing:16.876735pt;}
.ws55{word-spacing:16.908091pt;}
.ws265{word-spacing:16.918548pt;}
.ws1ae{word-spacing:16.934227pt;}
.ws142{word-spacing:17.017854pt;}
.ws43{word-spacing:17.038759pt;}
.ws88{word-spacing:17.049213pt;}
.ws185{word-spacing:17.070126pt;}
.ws186{word-spacing:17.075346pt;}
.ws217{word-spacing:17.080572pt;}
.ws132{word-spacing:17.117159pt;}
.ws230{word-spacing:17.127612pt;}
.ws1ef{word-spacing:17.138065pt;}
.wsb4{word-spacing:17.174652pt;}
.wsc5{word-spacing:17.221690pt;}
.ws216{word-spacing:17.237370pt;}
.ws188{word-spacing:17.315769pt;}
.ws225{word-spacing:17.320981pt;}
.ws125{word-spacing:17.347078pt;}
.ws227{word-spacing:17.373262pt;}
.ws256{word-spacing:17.420302pt;}
.ws1aa{word-spacing:17.425528pt;}
.ws226{word-spacing:17.425543pt;}
.wsd2{word-spacing:17.435983pt;}
.ws5{word-spacing:17.453492pt;}
.ws4{word-spacing:17.482826pt;}
.ws165{word-spacing:17.493475pt;}
.ws126{word-spacing:17.530061pt;}
.wsb8{word-spacing:17.556195pt;}
.ws80{word-spacing:17.618914pt;}
.ws1a4{word-spacing:17.624141pt;}
.wsdc{word-spacing:17.645046pt;}
.ws1af{word-spacing:17.645047pt;}
.ws12d{word-spacing:17.655499pt;}
.ws197{word-spacing:17.660726pt;}
.ws20e{word-spacing:17.728673pt;}
.ws175{word-spacing:17.822751pt;}
.ws22e{word-spacing:17.833205pt;}
.wscf{word-spacing:17.848885pt;}
.ws4c{word-spacing:17.880245pt;}
.ws176{word-spacing:17.916830pt;}
.ws54{word-spacing:17.922057pt;}
.ws1d4{word-spacing:17.953417pt;}
.wsc8{word-spacing:17.979549pt;}
.ws71{word-spacing:18.010910pt;}
.ws19c{word-spacing:18.026589pt;}
.ws60{word-spacing:18.031816pt;}
.ws5b{word-spacing:18.042270pt;}
.ws254{word-spacing:18.094536pt;}
.ws21e{word-spacing:18.115442pt;}
.ws198{word-spacing:18.120669pt;}
.wsa4{word-spacing:18.146802pt;}
.wsa5{word-spacing:18.167708pt;}
.ws162{word-spacing:18.183421pt;}
.ws232{word-spacing:18.193842pt;}
.ws220{word-spacing:18.225201pt;}
.ws16e{word-spacing:18.230427pt;}
.ws26{word-spacing:18.246108pt;}
.ws199{word-spacing:18.256560pt;}
.ws27{word-spacing:18.282693pt;}
.ws234{word-spacing:18.308826pt;}
.ws1db{word-spacing:18.408133pt;}
.ws1f8{word-spacing:18.418585pt;}
.ws214{word-spacing:18.481305pt;}
.ws9d{word-spacing:18.486532pt;}
.ws89{word-spacing:18.528344pt;}
.ws14a{word-spacing:18.544024pt;}
.ws1da{word-spacing:18.549250pt;}
.ws1fc{word-spacing:18.559704pt;}
.wsa0{word-spacing:18.591064pt;}
.ws130{word-spacing:18.632877pt;}
.wsda{word-spacing:18.695595pt;}
.ws1f7{word-spacing:18.758315pt;}
.ws22f{word-spacing:18.763542pt;}
.wsdb{word-spacing:18.779222pt;}
.ws22{word-spacing:18.831487pt;}
.ws1ad{word-spacing:18.852395pt;}
.ws196{word-spacing:18.862847pt;}
.wscd{word-spacing:18.930794pt;}
.ws16d{word-spacing:18.941246pt;}
.ws40{word-spacing:18.977834pt;}
.wsd4{word-spacing:19.003967pt;}
.ws1ac{word-spacing:19.024873pt;}
.ws1f0{word-spacing:19.040552pt;}
.ws31{word-spacing:19.134632pt;}
.ws1d9{word-spacing:19.155538pt;}
.ws49{word-spacing:19.165992pt;}
.ws236{word-spacing:19.192125pt;}
.ws1b1{word-spacing:19.218258pt;}
.ws261{word-spacing:19.223483pt;}
.ws6c{word-spacing:19.312336pt;}
.ws48{word-spacing:19.317563pt;}
.ws92{word-spacing:19.328016pt;}
.ws1a3{word-spacing:19.364602pt;}
.ws6b{word-spacing:19.395963pt;}
.ws2c{word-spacing:19.453455pt;}
.ws18a{word-spacing:19.458681pt;}
.ws183{word-spacing:19.469134pt;}
.ws19b{word-spacing:19.521401pt;}
.ws1b9{word-spacing:19.537080pt;}
.ws47{word-spacing:19.542307pt;}
.ws262{word-spacing:19.563213pt;}
.ws120{word-spacing:19.605027pt;}
.ws170{word-spacing:19.631160pt;}
.ws91{word-spacing:19.683426pt;}
.ws275{word-spacing:19.693879pt;}
.ws84{word-spacing:19.735692pt;}
.ws184{word-spacing:19.767052pt;}
.ws12c{word-spacing:19.777504pt;}
.ws2a{word-spacing:19.793185pt;}
.ws20{word-spacing:19.798411pt;}
.ws11f{word-spacing:19.814091pt;}
.ws2f{word-spacing:19.824544pt;}
.ws1a0{word-spacing:19.845451pt;}
.ws149{word-spacing:19.939530pt;}
.ws82{word-spacing:19.991796pt;}
.ws260{word-spacing:20.038835pt;}
.ws3f{word-spacing:20.054516pt;}
.wsd9{word-spacing:20.080649pt;}
.ws11e{word-spacing:20.096328pt;}
.ws25f{word-spacing:20.122461pt;}
.ws25a{word-spacing:20.169501pt;}
.ws287{word-spacing:20.200860pt;}
.ws219{word-spacing:20.232221pt;}
.ws145{word-spacing:20.237447pt;}
.wsc9{word-spacing:20.284486pt;}
.ws146{word-spacing:20.300166pt;}
.ws28{word-spacing:20.341980pt;}
.ws223{word-spacing:20.373338pt;}
.ws20d{word-spacing:20.404698pt;}
.ws133{word-spacing:20.425604pt;}
.ws20c{word-spacing:20.540590pt;}
.ws93{word-spacing:20.603310pt;}
.ws83{word-spacing:20.639896pt;}
.wsb1{word-spacing:20.645123pt;}
.ws1a8{word-spacing:20.702639pt;}
.wsaf{word-spacing:20.707842pt;}
.ws21a{word-spacing:20.713068pt;}
.wsce{word-spacing:20.728749pt;}
.ws204{word-spacing:20.739201pt;}
.ws174{word-spacing:20.838508pt;}
.ws1f1{word-spacing:20.864641pt;}
.ws167{word-spacing:20.906453pt;}
.ws209{word-spacing:20.948266pt;}
.ws27d{word-spacing:20.963947pt;}
.ws128{word-spacing:21.016212pt;}
.ws1{word-spacing:21.021867pt;}
.ws129{word-spacing:21.037119pt;}
.ws19e{word-spacing:21.068479pt;}
.ws1fd{word-spacing:21.078931pt;}
.ws16b{word-spacing:21.094612pt;}
.wsde{word-spacing:21.099838pt;}
.ws64{word-spacing:21.110291pt;}
.ws27e{word-spacing:21.157330pt;}
.ws8c{word-spacing:21.209596pt;}
.ws8d{word-spacing:21.214823pt;}
.ws141{word-spacing:21.240956pt;}
.ws189{word-spacing:21.246183pt;}
.ws1ab{word-spacing:21.251410pt;}
.ws1b3{word-spacing:21.267089pt;}
.ws19d{word-spacing:21.272316pt;}
.ws4d{word-spacing:21.282770pt;}
.ws17d{word-spacing:21.303676pt;}
.ws95{word-spacing:21.335036pt;}
.ws20b{word-spacing:21.345488pt;}
.ws194{word-spacing:21.355943pt;}
.ws140{word-spacing:21.444794pt;}
.ws1cd{word-spacing:21.481381pt;}
.ws2d{word-spacing:21.512741pt;}
.wsb5{word-spacing:21.517968pt;}
.wsb2{word-spacing:21.533647pt;}
.ws19a{word-spacing:21.549326pt;}
.ws8b{word-spacing:21.575459pt;}
.ws16c{word-spacing:21.580686pt;}
.ws22d{word-spacing:21.585913pt;}
.ws6e{word-spacing:21.638179pt;}
.ws21c{word-spacing:21.716578pt;}
.ws233{word-spacing:21.784524pt;}
.ws2e{word-spacing:21.815884pt;}
.ws1ce{word-spacing:21.821111pt;}
.ws14b{word-spacing:21.852471pt;}
.ws1e0{word-spacing:21.878604pt;}
.ws27c{word-spacing:21.894283pt;}
.ws5a{word-spacing:21.962230pt;}
.ws41{word-spacing:21.993588pt;}
.ws138{word-spacing:22.113802pt;}
.ws278{word-spacing:22.119028pt;}
.ws203{word-spacing:22.155613pt;}
.ws208{word-spacing:22.171294pt;}
.ws17c{word-spacing:22.213107pt;}
.ws279{word-spacing:22.218333pt;}
.ws6a{word-spacing:22.239240pt;}
.ws273{word-spacing:22.286280pt;}
.ws13c{word-spacing:22.375131pt;}
.ws213{word-spacing:22.458758pt;}
.ws1ed{word-spacing:22.479664pt;}
.ws7f{word-spacing:22.490117pt;}
.ws1b4{word-spacing:22.521476pt;}
.ws11d{word-spacing:22.547610pt;}
.ws25{word-spacing:22.568516pt;}
.ws181{word-spacing:22.578969pt;}
.ws26d{word-spacing:22.615556pt;}
.ws12b{word-spacing:22.652142pt;}
.wsca{word-spacing:22.725315pt;}
.ws61{word-spacing:22.761901pt;}
.ws77{word-spacing:22.772355pt;}
.ws1ff{word-spacing:22.777580pt;}
.ws21{word-spacing:22.782807pt;}
.ws1d8{word-spacing:22.793261pt;}
.ws1b6{word-spacing:22.814167pt;}
.ws1a2{word-spacing:22.819394pt;}
.ws11c{word-spacing:22.819411pt;}
.ws215{word-spacing:22.845527pt;}
.wscb{word-spacing:22.866434pt;}
.ws78{word-spacing:22.892566pt;}
.ws1d5{word-spacing:22.991872pt;}
.ws23{word-spacing:22.997099pt;}
.ws16f{word-spacing:23.023232pt;}
.ws9e{word-spacing:23.065044pt;}
.wsd3{word-spacing:23.085952pt;}
.ws286{word-spacing:23.112084pt;}
.ws14c{word-spacing:23.164351pt;}
.ws74{word-spacing:23.253202pt;}
.ws280{word-spacing:23.258429pt;}
.ws200{word-spacing:23.263656pt;}
.ws206{word-spacing:23.274109pt;}
.ws205{word-spacing:23.295016pt;}
.ws27f{word-spacing:23.300242pt;}
.ws201{word-spacing:23.331601pt;}
.ws1b5{word-spacing:23.362962pt;}
.ws29{word-spacing:23.389095pt;}
.ws207{word-spacing:23.399548pt;}
.ws172{word-spacing:23.451815pt;}
.ws282{word-spacing:23.519759pt;}
.ws8a{word-spacing:23.692238pt;}
.ws148{word-spacing:23.849036pt;}
.ws283{word-spacing:23.854263pt;}
.ws1ba{word-spacing:23.927435pt;}
.ws7d{word-spacing:23.969249pt;}
.wsc6{word-spacing:24.021514pt;}
.ws271{word-spacing:24.178313pt;}
.ws85{word-spacing:24.272392pt;}
.ws257{word-spacing:24.303752pt;}
.ws86{word-spacing:24.335112pt;}
.ws22c{word-spacing:24.502363pt;}
.ws237{word-spacing:24.575536pt;}
.ws7a{word-spacing:24.596443pt;}
.ws263{word-spacing:24.627803pt;}
.ws17f{word-spacing:24.700974pt;}
.ws25e{word-spacing:24.700975pt;}
.ws274{word-spacing:24.821186pt;}
.ws25c{word-spacing:24.836867pt;}
.ws87{word-spacing:24.998891pt;}
.ws1fe{word-spacing:25.025024pt;}
.wsae{word-spacing:25.098198pt;}
.ws73{word-spacing:25.202730pt;}
.ws177{word-spacing:25.291581pt;}
.ws144{word-spacing:25.333395pt;}
.ws66{word-spacing:25.437922pt;}
.ws68{word-spacing:25.589499pt;}
.ws164{word-spacing:25.631311pt;}
.ws171{word-spacing:25.657444pt;}
.ws178{word-spacing:25.688805pt;}
.wsd5{word-spacing:25.809016pt;}
.ws81{word-spacing:25.814243pt;}
.ws163{word-spacing:25.824697pt;}
.ws17e{word-spacing:25.960588pt;}
.ws5c{word-spacing:26.012855pt;}
.ws90{word-spacing:26.044214pt;}
.ws26b{word-spacing:26.075573pt;}
.ws5e{word-spacing:26.148746pt;}
.ws269{word-spacing:26.169653pt;}
.ws67{word-spacing:26.227145pt;}
.ws5d{word-spacing:26.410077pt;}
.ws26a{word-spacing:26.430983pt;}
.ws76{word-spacing:26.572102pt;}
.ws1b8{word-spacing:26.749807pt;}
.ws143{word-spacing:26.953645pt;}
.ws26e{word-spacing:27.016364pt;}
.ws1d3{word-spacing:27.084311pt;}
.ws272{word-spacing:27.157483pt;}
.ws4b{word-spacing:27.319508pt;}
.ws1d0{word-spacing:27.502440pt;}
.ws22a{word-spacing:27.518119pt;}
.ws7b{word-spacing:27.523345pt;}
.ws182{word-spacing:27.554707pt;}
.ws221{word-spacing:27.606972pt;}
.wsa9{word-spacing:27.784675pt;}
.ws26c{word-spacing:27.836943pt;}
.ws72{word-spacing:27.899661pt;}
.ws285{word-spacing:27.931022pt;}
.ws284{word-spacing:27.951928pt;}
.ws7e{word-spacing:28.286432pt;}
.ws17b{word-spacing:28.312565pt;}
.ws79{word-spacing:28.636615pt;}
.ws26f{word-spacing:28.662747pt;}
.ws46{word-spacing:28.699333pt;}
.ws30{word-spacing:28.767281pt;}
.ws6d{word-spacing:28.809093pt;}
.ws267{word-spacing:28.992025pt;}
.ws4f{word-spacing:29.112236pt;}
.ws1d1{word-spacing:29.342208pt;}
.ws268{word-spacing:29.446741pt;}
.ws276{word-spacing:29.499007pt;}
.ws94{word-spacing:30.047801pt;}
.ws65{word-spacing:30.173238pt;}
.ws270{word-spacing:30.246412pt;}
.wsb3{word-spacing:30.319583pt;}
.wsaa{word-spacing:30.518196pt;}
.wsac{word-spacing:30.591368pt;}
.ws9f{word-spacing:30.737712pt;}
.ws22b{word-spacing:31.615785pt;}
.wsab{word-spacing:31.657597pt;}
.ws27a{word-spacing:31.683729pt;}
.ws15a{word-spacing:31.769202pt;}
.ws154{word-spacing:31.965468pt;}
.ws4e{word-spacing:32.060047pt;}
.ws264{word-spacing:32.133218pt;}
.ws1f6{word-spacing:32.394549pt;}
.ws25d{word-spacing:32.629747pt;}
.ws27b{word-spacing:32.859717pt;}
.ws20a{word-spacing:33.852775pt;}
.wsb6{word-spacing:34.312717pt;}
.ws258{word-spacing:35.352814pt;}
.ws4a{word-spacing:35.786622pt;}
.ws259{word-spacing:36.450402pt;}
.ws8f{word-spacing:36.596747pt;}
.ws8e{word-spacing:36.690826pt;}
.ws2{word-spacing:38.182558pt;}
.ws3{word-spacing:38.208159pt;}
.ws281{word-spacing:39.894739pt;}
.ws110{word-spacing:49.658975pt;}
.wsb9{word-spacing:58.407404pt;}
.ws113{word-spacing:60.248846pt;}
.wsc1{word-spacing:65.437202pt;}
.wsa8{word-spacing:65.729892pt;}
.ws114{word-spacing:80.446994pt;}
.ws116{word-spacing:87.047443pt;}
.ws117{word-spacing:106.763463pt;}
.ws115{word-spacing:107.962380pt;}
.wsec{word-spacing:117.033204pt;}
.wsed{word-spacing:137.470282pt;}
.ws10e{word-spacing:152.979421pt;}
.wsee{word-spacing:157.907359pt;}
.ws15c{word-spacing:172.063985pt;}
.ws112{word-spacing:197.919749pt;}
.ws18e{word-spacing:217.746611pt;}
.ws1c6{word-spacing:220.630846pt;}
.ws1cc{word-spacing:220.746032pt;}
.ws191{word-spacing:225.584389pt;}
.ws111{word-spacing:227.359306pt;}
.ws1c9{word-spacing:228.302209pt;}
.ws1c3{word-spacing:238.887681pt;}
.ws1e3{word-spacing:238.913284pt;}
.ws1e5{word-spacing:239.186343pt;}
.ws1bc{word-spacing:239.241801pt;}
.ws1bf{word-spacing:247.352637pt;}
.ws1e4{word-spacing:271.842998pt;}
.ws1e7{word-spacing:278.520214pt;}
.ws190{word-spacing:285.449218pt;}
.ws1c8{word-spacing:288.171351pt;}
.ws1c2{word-spacing:306.312951pt;}
.ws1be{word-spacing:306.313004pt;}
.ws1e9{word-spacing:345.919947pt;}
.ws1bd{word-spacing:569.678225pt;}
.ws1c7{word-spacing:624.704731pt;}
.ws18f{word-spacing:633.173958pt;}
.ws289{word-spacing:861.966809pt;}
.ws1e8{word-spacing:1081.573691pt;}
.ws24a{word-spacing:1455.004798pt;}
.ws248{word-spacing:1504.267116pt;}
.ws23f{word-spacing:1505.120438pt;}
.ws243{word-spacing:1505.547100pt;}
.ws24e{word-spacing:1511.307028pt;}
.ws24d{word-spacing:1517.109622pt;}
.ws24f{word-spacing:1518.432272pt;}
.ws23b{word-spacing:1520.181583pt;}
.ws251{word-spacing:1522.826884pt;}
.ws23c{word-spacing:1524.704194pt;}
.ws24b{word-spacing:1529.098805pt;}
.ws241{word-spacing:1534.858733pt;}
.ws240{word-spacing:1538.400022pt;}
.ws23d{word-spacing:1540.661327pt;}
.ws244{word-spacing:1541.045323pt;}
.ws24c{word-spacing:1541.941311pt;}
.ws23e{word-spacing:1543.775955pt;}
.ws245{word-spacing:1544.202617pt;}
.ws242{word-spacing:1546.847917pt;}
.ws252{word-spacing:1548.639894pt;}
.ws247{word-spacing:1561.567733pt;}
.ws250{word-spacing:1566.389006pt;}
.ws249{word-spacing:1566.858333pt;}
.ws246{word-spacing:1591.263362pt;}
._72{margin-left:-27.481530pt;}
._71{margin-left:-23.739279pt;}
._70{margin-left:-22.631236pt;}
._95{margin-left:-15.914187pt;}
._b{margin-left:-9.769857pt;}
._68{margin-left:-6.133359pt;}
._1d{margin-left:-5.198741pt;}
._12{margin-left:-3.837755pt;}
._d{margin-left:-2.717839pt;}
._7{margin-left:-1.653349pt;}
._5{width:1.011986pt;}
._10{width:2.155336pt;}
._1e{width:5.885176pt;}
._0{width:8.056533pt;}
._7a{width:9.166310pt;}
._67{width:10.951675pt;}
._11{width:12.047291pt;}
._4{width:13.007827pt;}
._8{width:14.394807pt;}
._14{width:16.192048pt;}
._6{width:17.233530pt;}
._13{width:19.002200pt;}
._a{width:20.063699pt;}
._c{width:21.410183pt;}
._e{width:22.924633pt;}
._9{width:24.335112pt;}
._1a{width:25.367458pt;}
._18{width:26.398348pt;}
._17{width:27.377089pt;}
._1{width:28.717866pt;}
._f{width:29.741407pt;}
._1b{width:31.443298pt;}
._16{width:33.763921pt;}
._92{width:34.889618pt;}
._15{width:37.416049pt;}
._3{width:39.513766pt;}
._69{width:45.593029pt;}
._3b{width:49.351914pt;}
._38{width:51.562022pt;}
._1c{width:58.297643pt;}
._66{width:59.745361pt;}
._3e{width:66.435434pt;}
._3f{width:68.786272pt;}
._65{width:86.458659pt;}
._49{width:87.589294pt;}
._59{width:94.552431pt;}
._6a{width:97.726778pt;}
._58{width:105.099486pt;}
._4e{width:106.797603pt;}
._40{width:108.179987pt;}
._4d{width:114.451907pt;}
._52{width:115.992144pt;}
._39{width:117.075870pt;}
._6c{width:118.031608pt;}
._4f{width:126.620288pt;}
._5b{width:127.546148pt;}
._32{width:129.274120pt;}
._53{width:133.109796pt;}
._46{width:134.097558pt;}
._57{width:140.659628pt;}
._4a{width:142.782215pt;}
._42{width:147.671758pt;}
._4b{width:153.120217pt;}
._5e{width:155.987390pt;}
._48{width:161.525448pt;}
._41{width:163.219293pt;}
._47{width:169.286411pt;}
._6d{width:172.106651pt;}
._6e{width:173.537633pt;}
._5f{width:174.803150pt;}
._51{width:177.499652pt;}
._2a{width:179.918813pt;}
._64{width:183.686246pt;}
._36{width:186.105403pt;}
._55{width:189.130449pt;}
._4c{width:190.248276pt;}
._35{width:191.907997pt;}
._37{width:193.230647pt;}
._20{width:194.979958pt;}
._3a{width:196.584209pt;}
._22{width:197.684987pt;}
._1f{width:198.990575pt;}
._61{width:201.473752pt;}
._33{width:203.897180pt;}
._3d{width:207.024621pt;}
._2c{width:209.657108pt;}
._54{width:210.779232pt;}
._2b{width:213.198397pt;}
._62{width:214.316259pt;}
._28{width:215.459702pt;}
._34{width:216.739686pt;}
._2e{width:217.695404pt;}
._25{width:218.634059pt;}
._2d{width:221.646292pt;}
._6f{width:222.569995pt;}
._30{width:223.809473pt;}
._63{width:224.903896pt;}
._6b{width:226.249957pt;}
._84{width:228.140071pt;}
._50{width:229.398732pt;}
._60{width:230.439778pt;}
._5c{width:232.282967pt;}
._5d{width:233.946947pt;}
._24{width:235.478661pt;}
._3c{width:238.947413pt;}
._56{width:239.937259pt;}
._31{width:241.656708pt;}
._21{width:244.246551pt;}
._86{width:246.443872pt;}
._74{width:248.479019pt;}
._76{width:250.718991pt;}
._45{width:252.293388pt;}
._82{width:253.441103pt;}
._27{width:255.915739pt;}
._43{width:259.849543pt;}
._23{width:260.877801pt;}
._5a{width:263.642580pt;}
._29{width:264.683629pt;}
._2f{width:266.061737pt;}
._7c{width:268.988650pt;}
._7d{width:270.639808pt;}
._7f{width:272.491531pt;}
._8d{width:278.358125pt;}
._89{width:279.791713pt;}
._26{width:281.314879pt;}
._44{width:286.460419pt;}
._75{width:290.535037pt;}
._88{width:295.723241pt;}
._78{width:310.588118pt;}
._81{width:313.143820pt;}
._7e{width:331.451857pt;}
._77{width:334.135557pt;}
._8b{width:350.924697pt;}
._8a{width:367.188993pt;}
._8e{width:371.361775pt;}
._83{width:376.299305pt;}
._8c{width:394.909214pt;}
._85{width:569.720878pt;}
._7b{width:573.347500pt;}
._80{width:628.378270pt;}
._73{width:636.843248pt;}
._87{width:697.616863pt;}
._8f{width:1006.077018pt;}
._90{width:1010.833246pt;}
._79{width:1078.359471pt;}
._91{width:1098.793764pt;}
._19{width:1100.132271pt;}
._94{width:1376.806309pt;}
._2{width:1445.107787pt;}
._93{width:1524.234866pt;}
.fs15{font-size:24.885867pt;}
.fsa{font-size:26.662400pt;}
.fs13{font-size:28.440000pt;}
.fs14{font-size:34.839467pt;}
.fsf{font-size:37.332800pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:39.107733pt;}
.fs9{font-size:39.999467pt;}
.fs10{font-size:42.666133pt;}
.fs12{font-size:48.000000pt;}
.fs11{font-size:49.067200pt;}
.fsd{font-size:52.266133pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.333867pt;}
.fsb{font-size:54.933333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.667200pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:66.292800pt;}
.fs5{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:128.000533pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:20.061307pt;}
.y5{bottom:59.133337pt;}
.y5b{bottom:70.676456pt;}
.yd6{bottom:80.258973pt;}
.ya6{bottom:80.266467pt;}
.y8a{bottom:80.267213pt;}
.y1fb{bottom:80.270067pt;}
.y144{bottom:80.271480pt;}
.y1e9{bottom:80.273800pt;}
.ye2{bottom:80.274733pt;}
.y117{bottom:80.275947pt;}
.y118{bottom:80.275960pt;}
.y104{bottom:80.275987pt;}
.y105{bottom:80.276000pt;}
.y277{bottom:80.276453pt;}
.y116{bottom:80.277160pt;}
.y145{bottom:80.277173pt;}
.y103{bottom:80.277200pt;}
.y156{bottom:80.277480pt;}
.y128{bottom:80.277973pt;}
.y115{bottom:80.278013pt;}
.y2b4{bottom:80.281187pt;}
.y23c{bottom:80.498667pt;}
.y5a{bottom:81.334976pt;}
.y4{bottom:86.333337pt;}
.y1b0{bottom:87.155867pt;}
.y17b{bottom:87.156507pt;}
.y1ae{bottom:87.156867pt;}
.y1d5{bottom:87.157213pt;}
.y276{bottom:91.615360pt;}
.y1af{bottom:91.842533pt;}
.y59{bottom:91.993483pt;}
.y2b3{bottom:92.300027pt;}
.yd5{bottom:99.081307pt;}
.ya5{bottom:99.088813pt;}
.y89{bottom:99.089547pt;}
.y1fa{bottom:99.092400pt;}
.y143{bottom:99.093813pt;}
.y1e8{bottom:99.096147pt;}
.ye1{bottom:99.097067pt;}
.y23b{bottom:99.321000pt;}
.y158{bottom:102.425173pt;}
.y58{bottom:102.652003pt;}
.y275{bottom:102.954267pt;}
.y2b2{bottom:104.243867pt;}
.y17a{bottom:105.827213pt;}
.y1ad{bottom:105.827573pt;}
.y1d4{bottom:105.827907pt;}
.y159{bottom:108.774773pt;}
.y2b1{bottom:116.262707pt;}
.yd4{bottom:117.979440pt;}
.ya4{bottom:117.986933pt;}
.y88{bottom:117.987680pt;}
.y1f9{bottom:117.990533pt;}
.y142{bottom:117.991947pt;}
.y1e7{bottom:117.994267pt;}
.ye0{bottom:117.995200pt;}
.y23a{bottom:118.219133pt;}
.y274{bottom:121.164920pt;}
.y21{bottom:123.790666pt;}
.y53{bottom:124.264670pt;}
.y179{bottom:124.497907pt;}
.y1ac{bottom:124.498267pt;}
.y1d3{bottom:124.498613pt;}
.y2b0{bottom:128.281547pt;}
.y273{bottom:133.108240pt;}
.yd3{bottom:136.877573pt;}
.ya3{bottom:136.885067pt;}
.y87{bottom:136.885813pt;}
.y1f8{bottom:136.888667pt;}
.y141{bottom:136.890067pt;}
.y1e6{bottom:136.892400pt;}
.ydf{bottom:136.893320pt;}
.y239{bottom:137.041467pt;}
.y2af{bottom:140.300387pt;}
.y178{bottom:142.034760pt;}
.y52{bottom:143.162790pt;}
.y1ab{bottom:143.168973pt;}
.y1d2{bottom:143.169307pt;}
.y272{bottom:145.127293pt;}
.y2ae{bottom:152.244227pt;}
.yd2{bottom:155.699907pt;}
.ya2{bottom:155.707400pt;}
.y86{bottom:155.708147pt;}
.y1f7{bottom:155.711000pt;}
.y140{bottom:155.712413pt;}
.y1e5{bottom:155.714747pt;}
.yde{bottom:155.715667pt;}
.y238{bottom:155.939600pt;}
.y271{bottom:157.146347pt;}
.y152{bottom:158.814880pt;}
.y157{bottom:158.815160pt;}
.y155{bottom:158.816227pt;}
.y177{bottom:159.571600pt;}
.y175{bottom:159.571613pt;}
.y1aa{bottom:160.630080pt;}
.y1d1{bottom:161.764280pt;}
.y51{bottom:161.985136pt;}
.y123{bottom:163.275627pt;}
.y110{bottom:163.275667pt;}
.y153{bottom:163.880240pt;}
.y176{bottom:164.258267pt;}
.y2ad{bottom:164.263067pt;}
.y270{bottom:169.165387pt;}
.y174{bottom:171.514933pt;}
.yd1{bottom:174.598040pt;}
.ya1{bottom:174.605533pt;}
.y85{bottom:174.606280pt;}
.y1f6{bottom:174.609133pt;}
.y13f{bottom:174.610533pt;}
.y1e4{bottom:174.612880pt;}
.ydd{bottom:174.613787pt;}
.y237{bottom:174.761947pt;}
.y18{bottom:175.052000pt;}
.y124{bottom:176.050360pt;}
.y111{bottom:176.050400pt;}
.y2ac{bottom:176.281907pt;}
.y1a7{bottom:178.166827pt;}
.y1a9{bottom:178.166933pt;}
.y1d0{bottom:180.434973pt;}
.y50{bottom:180.883270pt;}
.y26f{bottom:181.108707pt;}
.y1a8{bottom:182.929053pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2ab{bottom:188.300747pt;}
.y173{bottom:189.052000pt;}
.y1a6{bottom:190.185867pt;}
.y26e{bottom:193.127773pt;}
.yd0{bottom:193.420373pt;}
.ya0{bottom:193.427880pt;}
.y84{bottom:193.428613pt;}
.y1f5{bottom:193.431453pt;}
.y13e{bottom:193.432880pt;}
.y1e3{bottom:193.435227pt;}
.ydc{bottom:193.436133pt;}
.y236{bottom:193.660080pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1cf{bottom:197.971827pt;}
.y4f{bottom:199.705616pt;}
.y2aa{bottom:200.243587pt;}
.y26d{bottom:205.146813pt;}
.y1a5{bottom:207.722800pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y146{bottom:211.425413pt;}
.y154{bottom:211.426773pt;}
.y2a9{bottom:212.262427pt;}
.ycf{bottom:212.318507pt;}
.y9f{bottom:212.326013pt;}
.y83{bottom:212.326747pt;}
.y1f4{bottom:212.329587pt;}
.y13d{bottom:212.331013pt;}
.y1e2{bottom:212.333333pt;}
.ydb{bottom:212.333867pt;}
.y235{bottom:212.558213pt;}
.y1ce{bottom:215.508667pt;}
.y26c{bottom:217.165853pt;}
.y125{bottom:217.473960pt;}
.y112{bottom:217.474000pt;}
.y4e{bottom:218.603736pt;}
.y2a8{bottom:224.281267pt;}
.y26b{bottom:229.109173pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.yce{bottom:231.216640pt;}
.y9e{bottom:231.224147pt;}
.y82{bottom:231.224880pt;}
.y172{bottom:231.225387pt;}
.y1f3{bottom:231.227747pt;}
.y13c{bottom:231.229120pt;}
.y1e1{bottom:231.231467pt;}
.y234{bottom:231.380533pt;}
.yda{bottom:231.382667pt;}
.y1cd{bottom:233.045587pt;}
.y2a7{bottom:236.300107pt;}
.y4d{bottom:237.426070pt;}
.y26a{bottom:241.128213pt;}
.y147{bottom:241.586080pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y2a6{bottom:248.242947pt;}
.ycd{bottom:250.038987pt;}
.y19b{bottom:250.042373pt;}
.y9d{bottom:250.046467pt;}
.y81{bottom:250.047227pt;}
.y171{bottom:250.047733pt;}
.y1f2{bottom:250.050067pt;}
.y13b{bottom:250.051467pt;}
.y1e0{bottom:250.053613pt;}
.y233{bottom:250.278667pt;}
.y269{bottom:253.147253pt;}
.y254{bottom:253.150453pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y4c{bottom:256.324203pt;}
.y2a5{bottom:260.261773pt;}
.y268{bottom:265.166320pt;}
.y253{bottom:265.169520pt;}
.y119{bottom:268.496667pt;}
.y106{bottom:268.496707pt;}
.ycc{bottom:268.937120pt;}
.y19a{bottom:268.940493pt;}
.y9c{bottom:268.944600pt;}
.y80{bottom:268.945347pt;}
.y170{bottom:268.945840pt;}
.y1f1{bottom:268.948200pt;}
.y13a{bottom:268.949600pt;}
.y232{bottom:269.101013pt;}
.y2a4{bottom:272.280613pt;}
.y4b{bottom:275.222310pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y267{bottom:277.109613pt;}
.y252{bottom:277.112813pt;}
.y1cc{bottom:281.717587pt;}
.y2a3{bottom:284.299453pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.ycb{bottom:287.759440pt;}
.y199{bottom:287.762840pt;}
.y9b{bottom:287.766947pt;}
.y7f{bottom:287.767680pt;}
.y16f{bottom:287.768187pt;}
.y1f0{bottom:287.770533pt;}
.y139{bottom:287.771947pt;}
.yd9{bottom:287.772160pt;}
.y231{bottom:287.999120pt;}
.y148{bottom:288.225493pt;}
.y266{bottom:289.128680pt;}
.y251{bottom:289.131880pt;}
.y126{bottom:293.140093pt;}
.y113{bottom:293.140133pt;}
.y4a{bottom:294.044656pt;}
.y2a2{bottom:296.242307pt;}
.y1cb{bottom:300.615720pt;}
.y265{bottom:301.147720pt;}
.y250{bottom:301.150920pt;}
.y1df{bottom:306.657160pt;}
.yca{bottom:306.657573pt;}
.y198{bottom:306.660973pt;}
.y9a{bottom:306.665053pt;}
.y7e{bottom:306.665813pt;}
.y16e{bottom:306.666320pt;}
.y1ef{bottom:306.668667pt;}
.y138{bottom:306.670080pt;}
.yd8{bottom:306.670267pt;}
.y230{bottom:306.897253pt;}
.y2a1{bottom:308.261147pt;}
.yf{bottom:309.452000pt;}
.y49{bottom:312.942816pt;}
.y264{bottom:313.166773pt;}
.y24f{bottom:313.169960pt;}
.y11a{bottom:317.403787pt;}
.y107{bottom:317.403827pt;}
.y127{bottom:317.404627pt;}
.y114{bottom:317.404667pt;}
.y1ca{bottom:319.438053pt;}
.y2a0{bottom:320.279987pt;}
.y263{bottom:325.110093pt;}
.y24e{bottom:325.113280pt;}
.y1de{bottom:325.555293pt;}
.yc9{bottom:325.555680pt;}
.y197{bottom:325.559107pt;}
.y99{bottom:325.563187pt;}
.y7d{bottom:325.563920pt;}
.y16d{bottom:325.564427pt;}
.y1ee{bottom:325.566787pt;}
.y137{bottom:325.568200pt;}
.yd7{bottom:325.568400pt;}
.y22d{bottom:325.710627pt;}
.y22f{bottom:325.719600pt;}
.y22e{bottom:331.540147pt;}
.y48{bottom:331.765136pt;}
.y29f{bottom:332.298827pt;}
.y262{bottom:337.129147pt;}
.y24d{bottom:337.132320pt;}
.y1c9{bottom:338.336187pt;}
.ye{bottom:343.809333pt;}
.y29e{bottom:344.241653pt;}
.y1dd{bottom:344.377640pt;}
.yc8{bottom:344.378053pt;}
.y196{bottom:344.381427pt;}
.y98{bottom:344.385533pt;}
.y7c{bottom:344.386267pt;}
.y16c{bottom:344.386800pt;}
.y1ed{bottom:344.389120pt;}
.y136{bottom:344.390547pt;}
.y22c{bottom:344.608760pt;}
.y149{bottom:345.674373pt;}
.y261{bottom:349.148200pt;}
.y24c{bottom:349.151373pt;}
.y47{bottom:350.663256pt;}
.y29d{bottom:356.260493pt;}
.y1c8{bottom:357.158533pt;}
.y260{bottom:361.167240pt;}
.y24b{bottom:361.170413pt;}
.yd{bottom:362.706666pt;}
.y1dc{bottom:363.275760pt;}
.yc7{bottom:363.276160pt;}
.y195{bottom:363.279547pt;}
.y97{bottom:363.283653pt;}
.y7b{bottom:363.284427pt;}
.y16b{bottom:363.284907pt;}
.y1ec{bottom:363.287267pt;}
.y135{bottom:363.288120pt;}
.y22b{bottom:363.431107pt;}
.y102{bottom:365.480267pt;}
.y29c{bottom:368.279333pt;}
.y46{bottom:369.561403pt;}
.y25f{bottom:373.110560pt;}
.y24a{bottom:373.113733pt;}
.y1c7{bottom:376.056640pt;}
.y29b{bottom:380.298173pt;}
.y1db{bottom:382.098107pt;}
.yc6{bottom:382.098507pt;}
.y194{bottom:382.101893pt;}
.y96{bottom:382.106000pt;}
.y7a{bottom:382.106733pt;}
.y16a{bottom:382.107253pt;}
.y1eb{bottom:382.109613pt;}
.y22a{bottom:382.329227pt;}
.y101{bottom:383.702067pt;}
.y25e{bottom:385.129600pt;}
.y249{bottom:385.132813pt;}
.y11b{bottom:387.475467pt;}
.y108{bottom:387.475507pt;}
.y45{bottom:388.383750pt;}
.y29a{bottom:392.242027pt;}
.y1c6{bottom:394.954787pt;}
.y25d{bottom:397.148640pt;}
.y248{bottom:397.151853pt;}
.y1da{bottom:400.996253pt;}
.yc5{bottom:400.996627pt;}
.y193{bottom:401.000040pt;}
.y95{bottom:401.004147pt;}
.y79{bottom:401.004880pt;}
.y169{bottom:401.005373pt;}
.y1ea{bottom:401.007733pt;}
.y229{bottom:401.227333pt;}
.y100{bottom:402.372760pt;}
.y299{bottom:404.260867pt;}
.y44{bottom:407.281870pt;}
.y25c{bottom:409.167720pt;}
.y247{bottom:409.170893pt;}
.y14a{bottom:411.362080pt;}
.y1c5{bottom:413.777147pt;}
.y298{bottom:416.279707pt;}
.y78{bottom:419.827227pt;}
.y1d9{bottom:419.894373pt;}
.yc4{bottom:419.894773pt;}
.y192{bottom:419.898147pt;}
.y94{bottom:419.902267pt;}
.y17d{bottom:419.903000pt;}
.y168{bottom:419.903520pt;}
.y134{bottom:419.904373pt;}
.y228{bottom:420.049680pt;}
.yff{bottom:420.967733pt;}
.y25b{bottom:421.111040pt;}
.y246{bottom:421.114213pt;}
.y43{bottom:426.103883pt;}
.y297{bottom:428.298547pt;}
.y1c4{bottom:432.675253pt;}
.y25a{bottom:433.130080pt;}
.y245{bottom:433.133267pt;}
.y1d8{bottom:438.716720pt;}
.yc3{bottom:438.717120pt;}
.y191{bottom:438.720493pt;}
.y93{bottom:438.724613pt;}
.y77{bottom:438.725347pt;}
.y167{bottom:438.725867pt;}
.y133{bottom:438.726720pt;}
.y227{bottom:438.947800pt;}
.yfe{bottom:439.638427pt;}
.y296{bottom:440.241373pt;}
.y259{bottom:445.149133pt;}
.y244{bottom:445.152307pt;}
.y214{bottom:446.517453pt;}
.yc{bottom:446.990669pt;}
.y1c3{bottom:451.497600pt;}
.y295{bottom:452.260213pt;}
.y258{bottom:457.168173pt;}
.y243{bottom:457.171347pt;}
.y1d7{bottom:457.614827pt;}
.yc2{bottom:457.615240pt;}
.y190{bottom:457.618613pt;}
.y92{bottom:457.622720pt;}
.y76{bottom:457.623493pt;}
.y166{bottom:457.623987pt;}
.y132{bottom:457.624840pt;}
.y226{bottom:457.770147pt;}
.yfd{bottom:458.309120pt;}
.yb{bottom:462.990669pt;}
.y11c{bottom:464.199827pt;}
.y109{bottom:464.199867pt;}
.y294{bottom:464.279053pt;}
.y213{bottom:465.188187pt;}
.y257{bottom:469.111493pt;}
.y242{bottom:469.114667pt;}
.y1c2{bottom:470.395707pt;}
.y293{bottom:476.297893pt;}
.y12f{bottom:476.437173pt;}
.yc1{bottom:476.437587pt;}
.y18f{bottom:476.440960pt;}
.y91{bottom:476.445067pt;}
.y75{bottom:476.445800pt;}
.y165{bottom:476.446333pt;}
.y131{bottom:476.447187pt;}
.y225{bottom:476.668293pt;}
.yfc{bottom:476.979813pt;}
.y42{bottom:478.939336pt;}
.ya{bottom:478.990666pt;}
.y256{bottom:481.130533pt;}
.y241{bottom:481.133707pt;}
.y130{bottom:482.267613pt;}
.y212{bottom:483.858893pt;}
.y292{bottom:488.240760pt;}
.y1c1{bottom:489.293867pt;}
.y14b{bottom:490.731747pt;}
.y255{bottom:493.149573pt;}
.y240{bottom:493.152787pt;}
.y41{bottom:494.964843pt;}
.y9{bottom:494.990666pt;}
.y12e{bottom:495.335280pt;}
.yc0{bottom:495.335693pt;}
.y18e{bottom:495.339107pt;}
.y90{bottom:495.343187pt;}
.y74{bottom:495.343960pt;}
.y164{bottom:495.344440pt;}
.y224{bottom:495.566400pt;}
.yfb{bottom:495.650507pt;}
.y291{bottom:500.259600pt;}
.y211{bottom:502.529547pt;}
.y1c0{bottom:508.116173pt;}
.y23f{bottom:510.689613pt;}
.y290{bottom:512.278440pt;}
.y12d{bottom:514.157640pt;}
.ybf{bottom:514.158040pt;}
.y18d{bottom:514.161453pt;}
.y161{bottom:514.164800pt;}
.y8f{bottom:514.165533pt;}
.y73{bottom:514.166253pt;}
.y163{bottom:514.166787pt;}
.yfa{bottom:514.321213pt;}
.y223{bottom:514.388747pt;}
.y40{bottom:517.566403pt;}
.y162{bottom:519.987347pt;}
.y210{bottom:521.200280pt;}
.y28f{bottom:524.297280pt;}
.y1bf{bottom:527.014320pt;}
.y23e{bottom:528.226680pt;}
.y11d{bottom:532.382453pt;}
.y10a{bottom:532.382493pt;}
.yf9{bottom:532.991907pt;}
.y12c{bottom:533.055787pt;}
.ybe{bottom:533.056187pt;}
.y18c{bottom:533.059573pt;}
.y160{bottom:533.062947pt;}
.y8e{bottom:533.063680pt;}
.y72{bottom:533.064413pt;}
.y222{bottom:533.286867pt;}
.y3f{bottom:533.591883pt;}
.y28e{bottom:536.240107pt;}
.y20f{bottom:539.870973pt;}
.y1be{bottom:545.836667pt;}
.y23d{bottom:546.897587pt;}
.y28d{bottom:548.258947pt;}
.y3e{bottom:549.617390pt;}
.yf8{bottom:551.662600pt;}
.y12b{bottom:551.953893pt;}
.ybd{bottom:551.954307pt;}
.y18b{bottom:551.957680pt;}
.y15f{bottom:551.961053pt;}
.y8d{bottom:551.961787pt;}
.y71{bottom:551.962120pt;}
.y221{bottom:552.109213pt;}
.y20e{bottom:558.541667pt;}
.y28c{bottom:560.277787pt;}
.y1bd{bottom:564.734787pt;}
.y3d{bottom:565.566856pt;}
.y14c{bottom:569.420907pt;}
.yf7{bottom:570.333293pt;}
.y12a{bottom:570.776240pt;}
.ybc{bottom:570.776653pt;}
.y18a{bottom:570.780027pt;}
.y15e{bottom:570.783400pt;}
.y8c{bottom:570.784133pt;}
.y220{bottom:571.007360pt;}
.y28b{bottom:572.296627pt;}
.y17e{bottom:573.203080pt;}
.y8{bottom:573.786667pt;}
.y20d{bottom:577.212360pt;}
.y3c{bottom:581.592363pt;}
.y1bc{bottom:583.632933pt;}
.y28a{bottom:584.239467pt;}
.yf6{bottom:589.004027pt;}
.y70{bottom:589.674360pt;}
.ybb{bottom:589.674760pt;}
.y189{bottom:589.678147pt;}
.y15d{bottom:589.681520pt;}
.y21f{bottom:589.829707pt;}
.y11e{bottom:591.720373pt;}
.y10b{bottom:591.720413pt;}
.y7{bottom:592.685334pt;}
.y20c{bottom:595.883053pt;}
.y289{bottom:596.258307pt;}
.y3b{bottom:597.617843pt;}
.y1bb{bottom:602.455240pt;}
.yf5{bottom:607.674720pt;}
.y288{bottom:608.277147pt;}
.y6f{bottom:608.496707pt;}
.yba{bottom:608.497107pt;}
.y188{bottom:608.500493pt;}
.y15c{bottom:608.503867pt;}
.y21e{bottom:608.727827pt;}
.y3a{bottom:613.567350pt;}
.y15b{bottom:614.324253pt;}
.y20b{bottom:614.553747pt;}
.y33{bottom:616.742803pt;}
.ya8{bottom:617.575120pt;}
.y287{bottom:620.295973pt;}
.y1ba{bottom:621.353400pt;}
.yf4{bottom:626.345413pt;}
.y6e{bottom:627.394853pt;}
.yb9{bottom:627.395227pt;}
.y187{bottom:627.398640pt;}
.y21d{bottom:627.625933pt;}
.y32{bottom:628.761643pt;}
.y39{bottom:629.592856pt;}
.ya7{bottom:630.954147pt;}
.y286{bottom:632.239213pt;}
.y20a{bottom:633.224440pt;}
.y1b9{bottom:640.175693pt;}
.y31{bottom:640.705483pt;}
.yf3{bottom:645.016107pt;}
.y30{bottom:645.165203pt;}
.y6{bottom:645.598667pt;}
.y38{bottom:645.618336pt;}
.y6d{bottom:646.292973pt;}
.yb8{bottom:646.293373pt;}
.y186{bottom:646.296747pt;}
.y21c{bottom:646.448280pt;}
.y14d{bottom:647.203427pt;}
.y209{bottom:651.895147pt;}
.y2f{bottom:652.724936pt;}
.y11f{bottom:657.408080pt;}
.y10c{bottom:657.408120pt;}
.y1b8{bottom:659.073853pt;}
.y37{bottom:661.567830pt;}
.yf2{bottom:663.686813pt;}
.y2e{bottom:664.743776pt;}
.y6c{bottom:665.115320pt;}
.yb7{bottom:665.115720pt;}
.y185{bottom:665.119093pt;}
.y21b{bottom:665.346400pt;}
.y3{bottom:668.977329pt;}
.y285{bottom:669.504920pt;}
.y208{bottom:670.565840pt;}
.y2d{bottom:676.762616pt;}
.y14e{bottom:677.364107pt;}
.y36{bottom:677.593310pt;}
.y1b7{bottom:677.895880pt;}
.yf1{bottom:682.357507pt;}
.y6b{bottom:684.013427pt;}
.yb6{bottom:684.013840pt;}
.y184{bottom:684.017253pt;}
.y21a{bottom:684.168787pt;}
.y2c{bottom:688.705403pt;}
.y207{bottom:689.236573pt;}
.y284{bottom:693.467613pt;}
.y35{bottom:693.618816pt;}
.y2b{bottom:700.724283pt;}
.yf0{bottom:701.028240pt;}
.y6a{bottom:702.835773pt;}
.yb5{bottom:702.836187pt;}
.y183{bottom:702.839600pt;}
.y219{bottom:703.066893pt;}
.y2a{bottom:705.184163pt;}
.y283{bottom:705.486573pt;}
.y206{bottom:707.831547pt;}
.y29{bottom:712.743083pt;}
.y34{bottom:717.580976pt;}
.y1b6{bottom:717.730880pt;}
.yef{bottom:719.698893pt;}
.y69{bottom:721.733893pt;}
.yb4{bottom:721.734293pt;}
.y182{bottom:721.737707pt;}
.y218{bottom:721.965000pt;}
.y28{bottom:724.761963pt;}
.y205{bottom:726.502200pt;}
.y14f{bottom:728.916560pt;}
.y120{bottom:735.719600pt;}
.y10d{bottom:735.719640pt;}
.y1b5{bottom:736.628987pt;}
.yee{bottom:738.369627pt;}
.y68{bottom:740.632000pt;}
.yb3{bottom:740.632400pt;}
.y181{bottom:740.635827pt;}
.y217{bottom:740.787360pt;}
.y282{bottom:744.415853pt;}
.y204{bottom:745.172933pt;}
.y1b4{bottom:755.451333pt;}
.y281{bottom:756.434653pt;}
.yed{bottom:756.964600pt;}
.y67{bottom:759.454347pt;}
.yb2{bottom:759.454747pt;}
.y180{bottom:759.458173pt;}
.y216{bottom:759.684893pt;}
.y203{bottom:763.843587pt;}
.y26{bottom:768.906910pt;}
.y1b2{bottom:774.349440pt;}
.y27{bottom:775.483243pt;}
.yec{bottom:775.635253pt;}
.y66{bottom:778.352453pt;}
.yb1{bottom:778.352867pt;}
.y1b3{bottom:780.169840pt;}
.y280{bottom:781.606360pt;}
.y2{bottom:781.661334pt;}
.y202{bottom:782.514320pt;}
.y27f{bottom:793.625160pt;}
.y150{bottom:794.150933pt;}
.yeb{bottom:794.305987pt;}
.y65{bottom:797.174800pt;}
.yb0{bottom:797.175213pt;}
.y2bd{bottom:797.255133pt;}
.y25{bottom:800.958256pt;}
.y201{bottom:801.184973pt;}
.y121{bottom:805.337933pt;}
.y10e{bottom:805.337973pt;}
.y1a4{bottom:808.970787pt;}
.y2bc{bottom:809.274013pt;}
.yea{bottom:812.976640pt;}
.y64{bottom:816.073000pt;}
.yaf{bottom:816.073400pt;}
.y27e{bottom:818.872880pt;}
.y200{bottom:819.855707pt;}
.y2bb{bottom:821.292800pt;}
.y1a3{bottom:827.641440pt;}
.y27d{bottom:830.816733pt;}
.ye9{bottom:831.647373pt;}
.y2ba{bottom:833.235680pt;}
.y63{bottom:834.895347pt;}
.yae{bottom:834.895667pt;}
.y24{bottom:835.579190pt;}
.y1ff{bottom:838.526453pt;}
.y2b9{bottom:845.254480pt;}
.y1a2{bottom:846.312173pt;}
.ye8{bottom:850.318040pt;}
.y62{bottom:853.793453pt;}
.yad{bottom:853.793867pt;}
.y27c{bottom:856.063320pt;}
.y1fe{bottom:857.197107pt;}
.y2b8{bottom:857.273360pt;}
.y1{bottom:859.312000pt;}
.y151{bottom:859.385307pt;}
.y1a1{bottom:864.982827pt;}
.ye7{bottom:867.854893pt;}
.y122{bottom:867.927040pt;}
.y10f{bottom:867.927080pt;}
.y27b{bottom:868.082200pt;}
.y2b7{bottom:869.292160pt;}
.y23{bottom:870.273763pt;}
.y61{bottom:872.691573pt;}
.yac{bottom:872.691973pt;}
.y1fd{bottom:875.867840pt;}
.y27a{bottom:880.026040pt;}
.y2b6{bottom:881.235027pt;}
.y1a0{bottom:882.519693pt;}
.ye6{bottom:885.391760pt;}
.y60{bottom:891.513920pt;}
.yab{bottom:891.514320pt;}
.y2b5{bottom:893.253827pt;}
.y1fc{bottom:894.538493pt;}
.ye5{bottom:897.410813pt;}
.y19d{bottom:900.056320pt;}
.y19f{bottom:900.056560pt;}
.y19e{bottom:904.818680pt;}
.y279{bottom:905.272707pt;}
.y5f{bottom:910.412027pt;}
.yaa{bottom:910.412440pt;}
.y19c{bottom:912.075360pt;}
.ye4{bottom:914.948400pt;}
.y278{bottom:917.291507pt;}
.y22{bottom:920.919440pt;}
.y5e{bottom:929.234373pt;}
.ye3{bottom:929.612387pt;}
.y55{bottom:978.821350pt;}
.y57{bottom:979.100270pt;}
.y5d{bottom:991.067136pt;}
.y54{bottom:998.882656pt;}
.y1b1{bottom:1004.367840pt;}
.y17c{bottom:1004.368493pt;}
.y1d6{bottom:1004.369227pt;}
.y17f{bottom:1004.369960pt;}
.ya9{bottom:1004.370280pt;}
.y129{bottom:1004.371467pt;}
.y15a{bottom:1004.371480pt;}
.y2be{bottom:1004.371496pt;}
.y8b{bottom:1004.371507pt;}
.y5c{bottom:1004.371510pt;}
.y215{bottom:1004.372880pt;}
.h1c{height:17.942710pt;}
.hf{height:19.223590pt;}
.h1a{height:20.505240pt;}
.h1b{height:25.223774pt;}
.h15{height:26.916949pt;}
.hd{height:28.196676pt;}
.h7{height:28.560000pt;}
.he{height:28.839615pt;}
.h17{height:30.762282pt;}
.h14{height:32.806667pt;}
.h19{height:34.608000pt;}
.h18{height:35.377451pt;}
.h16{height:37.588863pt;}
.h12{height:37.840681pt;}
.h11{height:38.453718pt;}
.h10{height:39.606933pt;}
.h6{height:40.800000pt;}
.hc{height:42.299051pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.ha{height:49.989333pt;}
.h13{height:50.713992pt;}
.h5{height:69.360000pt;}
.hb{height:92.288385pt;}
.h4{height:105.826671pt;}
.h9{height:1058.000000pt;}
.h8{height:1058.268000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:147.250667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:75.590573pt;}
.xa{left:79.143373pt;}
.x5{left:80.957493pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x10{left:138.665653pt;}
.x13{left:156.850400pt;}
.x5c{left:163.124453pt;}
.x15{left:164.862933pt;}
.x14{left:167.508773pt;}
.x5f{left:172.875733pt;}
.x4{left:180.874667pt;}
.x7{left:189.127507pt;}
.x1b{left:194.871333pt;}
.x8{left:198.349653pt;}
.x56{left:203.036133pt;}
.x5a{left:207.193600pt;}
.x1c{left:209.535333pt;}
.x5b{left:216.188920pt;}
.x1d{left:227.074000pt;}
.x36{left:229.114920pt;}
.x12{left:237.127520pt;}
.x1e{left:239.017320pt;}
.xc{left:240.982707pt;}
.x57{left:242.796800pt;}
.x37{left:246.651867pt;}
.xb{left:249.600040pt;}
.xd{left:251.639773pt;}
.x55{left:252.926000pt;}
.x38{left:258.670907pt;}
.x20{left:263.810933pt;}
.x1f{left:268.573200pt;}
.x39{left:276.207747pt;}
.x21{left:286.110040pt;}
.x3c{left:288.982653pt;}
.x16{left:291.930320pt;}
.x3a{left:293.744600pt;}
.x22{left:304.780747pt;}
.x3b{left:305.687920pt;}
.x9{left:307.880307pt;}
.x3d{left:312.415480pt;}
.x23{left:323.451440pt;}
.x3e{left:331.086173pt;}
.x24{left:342.122147pt;}
.x41{left:344.995187pt;}
.x3f{left:349.681133pt;}
.x25{left:360.792853pt;}
.x40{left:361.700187pt;}
.x42{left:368.352560pt;}
.x17{left:370.090413pt;}
.x26{left:379.463547pt;}
.x43{left:387.023267pt;}
.x27{left:398.134240pt;}
.x46{left:401.007840pt;}
.x3{left:404.408000pt;}
.x44{left:405.693960pt;}
.x5d{left:412.874920pt;}
.x28{left:416.804933pt;}
.x45{left:417.713000pt;}
.x5e{left:419.148960pt;}
.x47{left:424.365093pt;}
.x34{left:428.371587pt;}
.x29{left:435.475627pt;}
.x18{left:436.610107pt;}
.x35{left:437.669187pt;}
.x48{left:443.035800pt;}
.x2a{left:454.146320pt;}
.x4b{left:456.944773pt;}
.x49{left:461.706493pt;}
.x2b{left:472.817053pt;}
.x4a{left:473.725533pt;}
.x4c{left:480.377627pt;}
.x2c{left:491.411987pt;}
.x4d{left:499.048320pt;}
.x58{left:501.618813pt;}
.x2d{left:510.082720pt;}
.x59{left:511.899053pt;}
.x50{left:512.957307pt;}
.x4e{left:517.719027pt;}
.x19{left:518.928013pt;}
.x2e{left:528.753413pt;}
.x4f{left:529.738067pt;}
.x51{left:536.390280pt;}
.x2f{left:547.424107pt;}
.x52{left:555.060987pt;}
.x30{left:566.094813pt;}
.x54{left:569.121200pt;}
.xf{left:570.860027pt;}
.xe{left:572.198320pt;}
.x53{left:573.278667pt;}
.x11{left:579.142987pt;}
.x31{left:584.765507pt;}
.x1a{left:594.896120pt;}
.x32{left:603.436200pt;}
.x33{left:622.106893pt;}
}




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