
    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_86146945ca4dc29745644a56.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_3294663e5ade4a80f217ce01.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919000;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_84bb4ea9e0c606cbd6d405ff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_d15803d3f03892eea71d1412.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dcbb52a64c132e684ca1ef63.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.001000;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_a2e80f16a5e92a35d1aa8b22.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.001000;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_44aed65f27943c56fd312d78.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.706000;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_9847502d86e05c0a09a53c9f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b9efe8c6fc334dfdbfad1c58.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.803000;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_cc70e19bcae11d862ef2b030.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.518000;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_5dbbae6edaf8aeddb8a92b70.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.769000;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_e8a4ff40927ea71f3a293905.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c1863a5ac33e3aac01f9fdbe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.887000;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_24e473e8d1ce20045f167135.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_10b43aeb7defbbdad4c66519.woff2')format("woff");}.fff{font-family:fff;line-height:1.400000;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_b5b07b8324dfb61f3e69b886.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.618000;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_9cd5ade956f494686072ca49.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.715000;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_5b4e1b01e1cc1d9037c51934.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.896000;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_ab313f778b161ff7af864ebc.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.001000;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_47d3bb49a7d3fdc5a277d11b.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.695000;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_af295ffd71f30b890507a025.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_1600abae5fddb6cdc75db7b3.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.664000;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;}
.ff17{font-family:sans-serif;visibility:hidden;}
.ff18{font-family:sans-serif;visibility:hidden;}
.ff19{font-family:sans-serif;visibility:hidden;}
.ff1a{font-family:sans-serif;visibility:hidden;}
.ff1b{font-family:sans-serif;visibility:hidden;}
.ff1c{font-family:sans-serif;visibility:hidden;}
.ff1d{font-family:sans-serif;visibility:hidden;}
.ff1e{font-family:sans-serif;visibility:hidden;}
.ff1f{font-family:sans-serif;visibility:hidden;}
.ff20{font-family:sans-serif;visibility:hidden;}
.ff21{font-family:sans-serif;visibility:hidden;}
.ff22{font-family:sans-serif;visibility:hidden;}
.ff23{font-family:sans-serif;visibility:hidden;}
.ff24{font-family:sans-serif;visibility:hidden;}
.ff25{font-family:sans-serif;visibility:hidden;}
.ff26{font-family:sans-serif;visibility:hidden;}
.ff27{font-family:sans-serif;visibility:hidden;}
.ff28{font-family:sans-serif;visibility:hidden;}
.ff29{font-family:sans-serif;visibility:hidden;}
.ff2a{font-family:sans-serif;visibility:hidden;}
.ff2b{font-family:sans-serif;visibility:hidden;}
.m2{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);}
.m3{transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-ms-transform:matrix(0.176777,-0.176777,0.176777,0.176777,0,0);-webkit-transform:matrix(0.176777,-0.176777,0.176777,0.176777,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);}
.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);}
.v2{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:6.366000px;}
.v5{vertical-align:9.822000px;}
.v6{vertical-align:16.182000px;}
.v8{vertical-align:21.690000px;}
.va{vertical-align:23.754000px;}
.v1{vertical-align:27.030000px;}
.v9{vertical-align:28.119580px;}
.v4{vertical-align:34.458000px;}
.v3{vertical-align:44.280000px;}
.ls1{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.000493px;}
.ls22{letter-spacing:0.001026px;}
.ls1a{letter-spacing:0.001059px;}
.ls1d{letter-spacing:0.002137px;}
.ls40{letter-spacing:0.003791px;}
.lsa{letter-spacing:0.004338px;}
.ls3c{letter-spacing:0.005725px;}
.ls27{letter-spacing:0.006493px;}
.ls29{letter-spacing:0.009740px;}
.ls3f{letter-spacing:0.011725px;}
.ls1f{letter-spacing:0.014645px;}
.ls2b{letter-spacing:0.016282px;}
.ls24{letter-spacing:0.018469px;}
.ls10{letter-spacing:0.022727px;}
.ls14{letter-spacing:0.023834px;}
.lsb{letter-spacing:0.027636px;}
.ls21{letter-spacing:2.240091px;}
.ls2a{letter-spacing:2.246091px;}
.lsc{letter-spacing:2.984915px;}
.ls16{letter-spacing:2.985056px;}
.ls12{letter-spacing:2.991056px;}
.ls30{letter-spacing:4.664677px;}
.ls47{letter-spacing:5.160285px;}
.lsf{letter-spacing:5.301823px;}
.ls34{letter-spacing:6.737053px;}
.ls5{letter-spacing:14.530921px;}
.ls4{letter-spacing:14.596376px;}
.ls1c{letter-spacing:14.792740px;}
.ls2f{letter-spacing:16.617617px;}
.ls28{letter-spacing:17.528915px;}
.ls23{letter-spacing:17.533289px;}
.ls1e{letter-spacing:17.539289px;}
.ls3{letter-spacing:18.130924px;}
.ls2{letter-spacing:18.196379px;}
.ls37{letter-spacing:18.589106px;}
.ls31{letter-spacing:19.592525px;}
.ls13{letter-spacing:19.701835px;}
.ls32{letter-spacing:19.905275px;}
.ls33{letter-spacing:19.965050px;}
.ls3a{letter-spacing:20.094562px;}
.ls3d{letter-spacing:20.160017px;}
.ls2d{letter-spacing:20.467289px;}
.ls18{letter-spacing:21.141836px;}
.ls48{letter-spacing:21.164915px;}
.ls1b{letter-spacing:21.169289px;}
.ls19{letter-spacing:21.207290px;}
.lsd{letter-spacing:21.534563px;}
.ls8{letter-spacing:21.665473px;}
.lse{letter-spacing:21.730927px;}
.ls17{letter-spacing:22.450928px;}
.ls44{letter-spacing:23.040019px;}
.ls46{letter-spacing:24.021838px;}
.ls45{letter-spacing:24.152747px;}
.ls38{letter-spacing:24.741839px;}
.ls39{letter-spacing:24.807293px;}
.ls2e{letter-spacing:25.003657px;}
.ls11{letter-spacing:25.461839px;}
.ls3e{letter-spacing:26.574568px;}
.ls3b{letter-spacing:26.640022px;}
.ls43{letter-spacing:26.836386px;}
.ls7{letter-spacing:30.109116px;}
.ls36{letter-spacing:30.370934px;}
.ls0{letter-spacing:32.727300px;}
.ls41{letter-spacing:33.054573px;}
.ls35{letter-spacing:33.250937px;}
.ls9{letter-spacing:37.229412px;}
.ls25{letter-spacing:68.071289px;}
.ls42{letter-spacing:107.343756px;}
.ls26{letter-spacing:356.793025px;}
.ls2c{letter-spacing:494.771321px;}
.ls15{letter-spacing:1019.389940px;}
.ls6{letter-spacing:1097.111971px;}
.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;}
}
.wsbf{word-spacing:-107.343756px;}
.ws6{word-spacing:-48.645859px;}
.ws8{word-spacing:-48.514950px;}
.ws27{word-spacing:-47.938949px;}
.ws19{word-spacing:-42.637126px;}
.wse6{word-spacing:-37.387668px;}
.ws7{word-spacing:-35.227666px;}
.ws23{word-spacing:-32.544027px;}
.ws9{word-spacing:-31.954936px;}
.wsb{word-spacing:-31.889481px;}
.ws3e{word-spacing:-25.397521px;}
.wse2{word-spacing:-24.506202px;}
.ws35{word-spacing:-20.762199px;}
.ws77{word-spacing:-20.042199px;}
.ws9c{word-spacing:-19.322198px;}
.ws36{word-spacing:-18.078561px;}
.ws3d{word-spacing:-17.947651px;}
.ws82{word-spacing:-17.685833px;}
.wsc8{word-spacing:-17.633469px;}
.ws76{word-spacing:-17.424015px;}
.ws80{word-spacing:-16.900378px;}
.ws9b{word-spacing:-16.769469px;}
.ws92{word-spacing:-16.573105px;}
.wsdc{word-spacing:-16.507650px;}
.wse8{word-spacing:-16.442196px;}
.ws7d{word-spacing:-16.049468px;}
.wsed{word-spacing:-15.984013px;}
.wsce{word-spacing:-15.787650px;}
.wsa6{word-spacing:-15.722195px;}
.wsf0{word-spacing:-15.656740px;}
.wse{word-spacing:-15.591286px;}
.wsee{word-spacing:-15.394922px;}
.ws12{word-spacing:-15.329467px;}
.wsaf{word-spacing:-15.198558px;}
.ws3f{word-spacing:-15.067649px;}
.wsca{word-spacing:-14.871285px;}
.wsf2{word-spacing:-14.740376px;}
.ws7f{word-spacing:-14.674921px;}
.wsf6{word-spacing:-14.478558px;}
.ws3c{word-spacing:-14.413103px;}
.wsec{word-spacing:-14.151285px;}
.wsac{word-spacing:-14.020375px;}
.ws89{word-spacing:-13.954921px;}
.ws8b{word-spacing:-13.889466px;}
.ws1d{word-spacing:-13.824012px;}
.ws81{word-spacing:-13.758557px;}
.ws87{word-spacing:-13.562193px;}
.ws15{word-spacing:-13.514158px;}
.ws40{word-spacing:-13.496739px;}
.wsd{word-spacing:-13.442427px;}
.wsc3{word-spacing:-13.431284px;}
.ws8a{word-spacing:-13.300375px;}
.wsaa{word-spacing:-13.169466px;}
.wsb4{word-spacing:-13.104011px;}
.wsd7{word-spacing:-13.038556px;}
.ws48{word-spacing:-12.973102px;}
.wse4{word-spacing:-12.907647px;}
.wse1{word-spacing:-12.776738px;}
.ws24{word-spacing:-12.645829px;}
.ws14{word-spacing:-12.514920px;}
.ws4{word-spacing:-12.449465px;}
.ws43{word-spacing:-12.384010px;}
.ws9f{word-spacing:-12.122192px;}
.ws1e{word-spacing:-12.056737px;}
.wsf{word-spacing:-11.991283px;}
.ws83{word-spacing:-11.925828px;}
.ws86{word-spacing:-11.860374px;}
.ws88{word-spacing:-11.794919px;}
.wsc2{word-spacing:-11.664010px;}
.ws1c{word-spacing:-11.467646px;}
.ws10{word-spacing:-11.336737px;}
.ws26{word-spacing:-11.074918px;}
.ws25{word-spacing:-11.009464px;}
.wsa7{word-spacing:-10.944009px;}
.ws11{word-spacing:-10.878555px;}
.ws13{word-spacing:-10.813100px;}
.wse7{word-spacing:-10.747645px;}
.wsb7{word-spacing:-10.682191px;}
.ws3b{word-spacing:-10.616736px;}
.ws63{word-spacing:-10.574304px;}
.ws9d{word-spacing:-10.551282px;}
.ws38{word-spacing:-10.420372px;}
.wsdd{word-spacing:-10.289463px;}
.wsc4{word-spacing:-10.224009px;}
.wsb6{word-spacing:-10.158554px;}
.ws34{word-spacing:-10.093099px;}
.wsc5{word-spacing:-10.027645px;}
.ws5c{word-spacing:-9.976548px;}
.ws73{word-spacing:-9.916772px;}
.wsa5{word-spacing:-9.896736px;}
.wse3{word-spacing:-9.831281px;}
.ws21{word-spacing:-9.700372px;}
.wsb5{word-spacing:-9.569463px;}
.wsd0{word-spacing:-9.504008px;}
.wsbb{word-spacing:-9.438553px;}
.ws44{word-spacing:-9.373099px;}
.ws39{word-spacing:-9.111280px;}
.ws2e{word-spacing:-9.045826px;}
.wse5{word-spacing:-8.980371px;}
.ws4b{word-spacing:-8.849462px;}
.ws41{word-spacing:-8.718553px;}
.wsd8{word-spacing:-8.653098px;}
.ws2c{word-spacing:-8.587644px;}
.ws46{word-spacing:-8.522189px;}
.ws22{word-spacing:-8.456734px;}
.ws7c{word-spacing:-8.391280px;}
.ws2f{word-spacing:-8.194916px;}
.ws45{word-spacing:-8.129461px;}
.ws8e{word-spacing:-7.933098px;}
.wsde{word-spacing:-7.867643px;}
.ws42{word-spacing:-7.605825px;}
.ws2d{word-spacing:-7.474915px;}
.ws47{word-spacing:-7.409461px;}
.wsdf{word-spacing:-7.278552px;}
.ws30{word-spacing:-7.147642px;}
.ws93{word-spacing:-6.951279px;}
.ws78{word-spacing:-6.885824px;}
.wsad{word-spacing:-6.820369px;}
.wsc7{word-spacing:-6.754915px;}
.wseb{word-spacing:-6.427642px;}
.wscf{word-spacing:-6.231278px;}
.wse9{word-spacing:-5.904005px;}
.ws33{word-spacing:-4.922186px;}
.wsea{word-spacing:-4.856731px;}
.wsef{word-spacing:-4.660368px;}
.wsd6{word-spacing:-4.594913px;}
.wsbc{word-spacing:-4.529458px;}
.wsae{word-spacing:-4.229045px;}
.wsa8{word-spacing:-4.223045px;}
.ws9e{word-spacing:-4.005822px;}
.ws79{word-spacing:-3.613094px;}
.wsd9{word-spacing:-3.547639px;}
.ws1f{word-spacing:-3.482185px;}
.ws16{word-spacing:-3.416730px;}
.ws74{word-spacing:-3.341456px;}
.ws8c{word-spacing:-3.154912px;}
.ws8d{word-spacing:-3.089457px;}
.ws20{word-spacing:-3.024003px;}
.ws4a{word-spacing:-2.696730px;}
.ws18{word-spacing:-2.434911px;}
.ws4c{word-spacing:-2.173093px;}
.wsbd{word-spacing:-1.976729px;}
.wscd{word-spacing:-1.714911px;}
.ws99{word-spacing:-1.387638px;}
.wsda{word-spacing:-0.733092px;}
.wsdb{word-spacing:-0.667637px;}
.wscb{word-spacing:-0.602182px;}
.wscc{word-spacing:-0.471273px;}
.wsf4{word-spacing:-0.274909px;}
.ws98{word-spacing:-0.144000px;}
.ws3{word-spacing:-0.086077px;}
.ws17{word-spacing:-0.065455px;}
.wsa{word-spacing:0.000000px;}
.ws5{word-spacing:0.183273px;}
.wsf3{word-spacing:1.819638px;}
.wsc9{word-spacing:8.692371px;}
.ws37{word-spacing:14.465467px;}
.ws72{word-spacing:16.498066px;}
.ws71{word-spacing:16.557841px;}
.ws29{word-spacing:17.472598px;}
.wsa9{word-spacing:18.130924px;}
.wsf1{word-spacing:18.720016px;}
.ws49{word-spacing:19.505471px;}
.ws3a{word-spacing:21.076381px;}
.ws28{word-spacing:21.105362px;}
.ws1a{word-spacing:21.122879px;}
.ws31{word-spacing:22.547995px;}
.ws97{word-spacing:23.067694px;}
.ws96{word-spacing:23.073694px;}
.ws58{word-spacing:23.170928px;}
.ws32{word-spacing:23.301838px;}
.ws1{word-spacing:23.312640px;}
.ws2{word-spacing:23.384371px;}
.wse0{word-spacing:24.087293px;}
.ws2b{word-spacing:24.630598px;}
.ws1b{word-spacing:24.644879px;}
.ws94{word-spacing:24.676384px;}
.ws95{word-spacing:24.741839px;}
.wsc6{word-spacing:25.723658px;}
.wsa2{word-spacing:27.467058px;}
.wsa3{word-spacing:27.505712px;}
.ws90{word-spacing:27.528658px;}
.ws7b{word-spacing:28.865479px;}
.ws62{word-spacing:29.648698px;}
.ws5f{word-spacing:29.947576px;}
.ws5b{word-spacing:30.007351px;}
.ws7a{word-spacing:30.305480px;}
.wsc{word-spacing:31.504255px;}
.wsf5{word-spacing:32.858209px;}
.wsbe{word-spacing:32.923664px;}
.ws91{word-spacing:36.628166px;}
.ws0{word-spacing:37.081972px;}
.ws57{word-spacing:38.016032px;}
.ws53{word-spacing:39.194214px;}
.wsb0{word-spacing:44.426909px;}
.wsa0{word-spacing:46.053457px;}
.wsb8{word-spacing:54.118359px;}
.ws4f{word-spacing:55.426955px;}
.ws59{word-spacing:63.674235px;}
.ws5a{word-spacing:63.739689px;}
.wsa4{word-spacing:73.263976px;}
.ws85{word-spacing:79.831107px;}
.ws5e{word-spacing:82.328796px;}
.ws5d{word-spacing:82.394250px;}
.wsb1{word-spacing:87.296151px;}
.ws4d{word-spacing:87.565164px;}
.ws75{word-spacing:92.837868px;}
.ws8f{word-spacing:102.108702px;}
.ws84{word-spacing:102.282552px;}
.wsa1{word-spacing:102.496446px;}
.ws4e{word-spacing:105.696088px;}
.wsb2{word-spacing:107.472275px;}
.wsb9{word-spacing:107.782240px;}
.wsba{word-spacing:109.889919px;}
.wsc0{word-spacing:112.318440px;}
.wsc1{word-spacing:119.465420px;}
.ws7e{word-spacing:120.742816px;}
.wsab{word-spacing:123.910622px;}
.wsb3{word-spacing:130.699571px;}
.ws55{word-spacing:147.587032px;}
.ws70{word-spacing:166.896139px;}
.ws54{word-spacing:181.885242px;}
.wsd3{word-spacing:227.899826px;}
.wsd2{word-spacing:227.965281px;}
.ws51{word-spacing:259.645307px;}
.wsd1{word-spacing:260.496217px;}
.ws52{word-spacing:303.107162px;}
.ws50{word-spacing:315.739899px;}
.ws6d{word-spacing:328.896274px;}
.ws9a{word-spacing:353.896489px;}
.ws64{word-spacing:408.423613px;}
.ws69{word-spacing:410.190887px;}
.ws66{word-spacing:436.830909px;}
.ws67{word-spacing:453.980015px;}
.ws6e{word-spacing:456.729108px;}
.ws65{word-spacing:459.085473px;}
.ws68{word-spacing:482.060038px;}
.ws6b{word-spacing:500.125508px;}
.ws6c{word-spacing:502.874601px;}
.ws6f{word-spacing:511.841881px;}
.ws6a{word-spacing:520.874616px;}
.ws61{word-spacing:673.645652px;}
.wsd5{word-spacing:685.100207px;}
.ws60{word-spacing:689.943848px;}
.wsd4{word-spacing:785.442109px;}
.ws2a{word-spacing:946.342607px;}
.ws56{word-spacing:2272.128919px;}
._a5{margin-left:-107.343756px;}
._19{margin-left:-38.225486px;}
._18{margin-left:-36.261848px;}
._17{margin-left:-34.681982px;}
._d{margin-left:-32.727300px;}
._f{margin-left:-10.996373px;}
._a4{margin-left:-8.756679px;}
._38{margin-left:-7.488724px;}
._1{margin-left:-5.881958px;}
._27{margin-left:-4.552219px;}
._0{margin-left:-3.098772px;}
._3{margin-left:-1.936742px;}
._2{width:2.080205px;}
._32{width:3.375425px;}
._31{width:4.712731px;}
._20{width:6.943574px;}
._34{width:17.318573px;}
._28{width:18.618710px;}
._8{width:20.160017px;}
._7{width:21.730927px;}
._1a{width:23.536760px;}
._1f{width:24.619885px;}
._11{width:26.827430px;}
._a2{width:27.829868px;}
._14{width:28.865479px;}
._23{width:30.611244px;}
._35{width:32.307677px;}
._12{width:33.831073px;}
._33{width:35.529295px;}
._1b{width:36.867990px;}
._c{width:38.000416px;}
._ca{width:39.992761px;}
._e{width:41.694580px;}
._9f{width:44.416778px;}
._1d{width:45.683742px;}
._a3{width:46.707689px;}
._ab{width:47.980011px;}
._15{width:49.325873px;}
._9a{width:50.661860px;}
._b{width:52.027451px;}
._10{width:53.289897px;}
._37{width:55.266678px;}
._13{width:56.944612px;}
._21{width:58.786297px;}
._4{width:60.218232px;}
._a1{width:63.060067px;}
._1e{width:65.157820px;}
._6{width:66.501874px;}
._2a{width:71.738242px;}
._a{width:74.421880px;}
._b9{width:79.434989px;}
._26{width:80.697600px;}
._90{width:83.716433px;}
._9d{width:84.807584px;}
._87{width:87.185527px;}
._8d{width:89.842270px;}
._9e{width:93.565366px;}
._25{width:94.684920px;}
._be{width:97.069172px;}
._9{width:98.509173px;}
._75{width:99.716041px;}
._7a{width:101.425945px;}
._8c{width:105.316451px;}
._48{width:106.991375px;}
._86{width:110.973433px;}
._98{width:112.516457px;}
._7c{width:114.691691px;}
._42{width:116.807755px;}
._99{width:118.746081px;}
._8a{width:121.641542px;}
._88{width:122.727375px;}
._71{width:127.234787px;}
._9b{width:129.109383px;}
._81{width:131.171018px;}
._8f{width:133.003747px;}
._74{width:135.871196px;}
._9c{width:138.213381px;}
._89{width:147.534668px;}
._72{width:158.072859px;}
._c4{width:166.581957px;}
._c7{width:173.730851px;}
._a9{width:175.549237px;}
._66{width:176.596511px;}
._af{width:178.167421px;}
._29{width:182.487425px;}
._7e{width:186.349246px;}
._ba{width:189.949249px;}
._bc{width:191.781978px;}
._8e{width:194.806340px;}
._c6{width:199.963803px;}
._a8{width:201.011077px;}
._64{width:205.069262px;}
._b4{width:210.554895px;}
._7b{width:212.057672px;}
._c0{width:213.197296px;}
._40{width:214.494724px;}
._76{width:220.320184px;}
._65{width:222.143957px;}
._95{width:228.109281px;}
._7d{width:235.806028px;}
._94{width:237.047876px;}
._2f{width:243.306412px;}
._80{width:244.342022px;}
._93{width:247.016705px;}
._96{width:248.082808px;}
._4b{width:250.494754px;}
._73{width:255.784024px;}
._68{width:261.267868px;}
._92{width:263.912947px;}
._60{width:273.376969px;}
._39{width:275.471516px;}
._91{width:280.145688px;}
._55{width:281.380370px;}
._97{width:282.751319px;}
._3c{width:284.596601px;}
._4a{width:285.905693px;}
._aa{width:287.996642px;}
._4f{width:295.500623px;}
._bd{width:297.318120px;}
._52{width:301.287524px;}
._6b{width:302.307902px;}
._bf{width:307.411550px;}
._61{width:311.236623px;}
._41{width:313.003897px;}
._6d{width:314.128289px;}
._84{width:317.624282px;}
._51{width:319.222084px;}
._a7{width:320.527579px;}
._85{width:322.845414px;}
._4c{width:327.469364px;}
._44{width:330.218457px;}
._49{width:331.920277px;}
._3e{width:335.258461px;}
._a0{width:336.427925px;}
._2b{width:337.813898px;}
._2c{width:339.565912px;}
._59{width:341.187934px;}
._62{width:344.683924px;}
._54{width:346.451198px;}
._69{width:349.304305px;}
._43{width:352.603930px;}
._50{width:355.025750px;}
._6c{width:357.316661px;}
._4e{width:358.682252px;}
._4d{width:360.916664px;}
._5e{width:363.665758px;}
._5a{width:376.298495px;}
._5c{width:379.151602px;}
._8b{width:380.787967px;}
._2e{width:384.279467px;}
._53{width:385.593049px;}
._6e{width:388.014869px;}
._3f{width:389.389415px;}
._47{width:391.483963px;}
._56{width:393.120328px;}
._46{width:398.880332px;}
._6a{width:402.480335px;}
._58{width:413.345799px;}
._bb{width:427.507319px;}
._5f{width:428.662175px;}
._2d{width:433.963998px;}
._63{width:436.713091px;}
._77{width:438.087638px;}
._3b{width:439.593094px;}
._78{width:440.940745px;}
._c2{width:444.751454px;}
._45{width:457.173485px;}
._3d{width:460.333246px;}
._57{width:467.515312px;}
._3a{width:477.033125px;}
._7f{width:480.055700px;}
._30{width:485.018586px;}
._82{width:487.178588px;}
._5d{width:492.807683px;}
._6f{width:519.617174px;}
._a6{width:534.362399px;}
._c9{width:543.841628px;}
._b3{width:556.364100px;}
._ae{width:561.142286px;}
._c1{width:573.682673px;}
._70{width:579.133345px;}
._c8{width:583.658668px;}
._67{width:589.025945px;}
._ad{width:599.171408px;}
._5b{width:600.911787px;}
._83{width:622.996883px;}
._79{width:624.969476px;}
._b2{width:634.058710px;}
._b0{width:664.887827px;}
._ac{width:670.451468px;}
._b6{width:673.855107px;}
._b1{width:677.127837px;}
._b8{width:711.818775px;}
._c5{width:720.720601px;}
._b5{width:734.924249px;}
._c3{width:756.253493px;}
._b7{width:774.917009px;}
._36{width:1007.860975px;}
._24{width:1767.574577px;}
._22{width:1776.869131px;}
._5{width:1869.109004px;}
._1c{width:1914.258336px;}
._16{width:1946.845771px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs1b{font-size:26.178600px;}
.fs16{font-size:26.181900px;}
.fsc{font-size:26.184900px;}
.fs22{font-size:26.188200px;}
.fs11{font-size:26.191500px;}
.fs18{font-size:31.414320px;}
.fs14{font-size:31.418280px;}
.fsa{font-size:31.421880px;}
.fs12{font-size:31.423680px;}
.fs1f{font-size:31.425840px;}
.fse{font-size:31.429800px;}
.fs1c{font-size:31.653720px;}
.fs7{font-size:31.814640px;}
.fs19{font-size:36.650040px;}
.fs15{font-size:36.654660px;}
.fsb{font-size:36.658860px;}
.fs13{font-size:36.660960px;}
.fs20{font-size:36.663480px;}
.fsf{font-size:36.668100px;}
.fs1d{font-size:36.929340px;}
.fs8{font-size:37.117080px;}
.fs6{font-size:41.842800px;}
.fs1a{font-size:41.885760px;}
.fs17{font-size:41.891040px;}
.fsd{font-size:41.895840px;}
.fs21{font-size:41.901120px;}
.fs10{font-size:41.906400px;}
.fs1e{font-size:42.204960px;}
.fs9{font-size:42.419520px;}
.fs4{font-size:47.820600px;}
.fs5{font-size:59.775600px;}
.fs3{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y200{bottom:10.603586px;}
.y218{bottom:11.248650px;}
.y1d6{bottom:11.346787px;}
.y1a8{bottom:11.348217px;}
.y13e{bottom:11.349518px;}
.y191{bottom:11.350168px;}
.y25c{bottom:11.350948px;}
.y161{bottom:11.352378px;}
.y1e5{bottom:11.449047px;}
.y241{bottom:11.451802px;}
.y16e{bottom:11.454689px;}
.yfd{bottom:11.491382px;}
.y226{bottom:18.519968px;}
.y179{bottom:19.296705px;}
.y1fe{bottom:20.803972px;}
.y201{bottom:22.130022px;}
.y217{bottom:24.608724px;}
.y1d5{bottom:24.804224px;}
.y1a7{bottom:24.807350px;}
.y13d{bottom:24.810193px;}
.y190{bottom:24.811614px;}
.y25b{bottom:24.813320px;}
.y160{bottom:24.816446px;}
.yfc{bottom:25.120309px;}
.y225{bottom:25.549863px;}
.y1ff{bottom:26.195604px;}
.y178{bottom:26.229268px;}
.y1f7{bottom:30.575049px;}
.y26d{bottom:36.792375px;}
.y162{bottom:36.797011px;}
.yfe{bottom:37.247570px;}
.y16f{bottom:42.042632px;}
.y266{bottom:42.837867px;}
.y1f6{bottom:44.135041px;}
.y1d7{bottom:44.756190px;}
.y235{bottom:45.237470px;}
.y219{bottom:45.395139px;}
.y25d{bottom:46.737839px;}
.y1e4{bottom:46.790157px;}
.y240{bottom:46.801417px;}
.y1ce{bottom:48.219696px;}
.y24a{bottom:49.686959px;}
.y242{bottom:49.905738px;}
.y19b{bottom:50.246904px;}
.y152{bottom:50.826088px;}
.y227{bottom:51.462000px;}
.y117{bottom:53.152391px;}
.y196{bottom:53.514357px;}
.y1dc{bottom:53.535496px;}
.y24b{bottom:54.312003px;}
.y1cc{bottom:54.782527px;}
.y249{bottom:56.642323px;}
.y1e6{bottom:58.131306px;}
.y13f{bottom:58.140492px;}
.y221{bottom:58.257455px;}
.y163{bottom:59.918056px;}
.y14b{bottom:60.787658px;}
.y1ed{bottom:60.943461px;}
.y236{bottom:62.969074px;}
.y1cb{bottom:63.087098px;}
.y27{bottom:63.168000px;}
.y116{bottom:63.603997px;}
.y1f8{bottom:64.232910px;}
.yff{bottom:65.616264px;}
.y192{bottom:65.722457px;}
.y26e{bottom:67.193240px;}
.y170{bottom:67.602099px;}
.y1fd{bottom:67.722832px;}
.y1ec{bottom:67.872609px;}
.y1a9{bottom:68.003231px;}
.y207{bottom:70.926202px;}
.y21a{bottom:72.707525px;}
.y1e1{bottom:72.959410px;}
.y25e{bottom:73.011057px;}
.y209{bottom:73.871250px;}
.y115{bottom:74.055603px;}
.y228{bottom:75.162159px;}
.y153{bottom:75.297843px;}
.y24c{bottom:76.886090px;}
.y267{bottom:76.903675px;}
.y243{bottom:77.163377px;}
.y146{bottom:77.295364px;}
.y19c{bottom:78.119757px;}
.y140{bottom:79.815340px;}
.y237{bottom:80.700677px;}
.y164{bottom:83.039101px;}
.y114{bottom:84.507210px;}
.y1dd{bottom:85.516736px;}
.y248{bottom:85.834163px;}
.y1aa{bottom:86.639141px;}
.y14c{bottom:87.801170px;}
.y151{bottom:89.518393px;}
.y222{bottom:92.258369px;}
.y171{bottom:93.161565px;}
.y100{bottom:93.984959px;}
.y20a{bottom:94.065867px;}
.y26b{bottom:94.253848px;}
.y113{bottom:94.958816px;}
.y177{bottom:95.170627px;}
.y1e7{bottom:96.345925px;}
.y26f{bottom:97.594106px;}
.y21f{bottom:97.888212px;}
.y1d8{bottom:97.938201px;}
.y238{bottom:98.432280px;}
.y229{bottom:98.862318px;}
.y25f{bottom:99.284274px;}
.y24d{bottom:99.460177px;}
.y154{bottom:99.769598px;}
.y21b{bottom:100.019910px;}
.y206{bottom:100.376685px;}
.y193{bottom:101.271359px;}
.y141{bottom:101.490189px;}
.y105{bottom:101.752297px;}
.y244{bottom:104.421016px;}
.y1ab{bottom:105.275051px;}
.y112{bottom:105.410422px;}
.y273{bottom:105.741875px;}
.y19d{bottom:105.992611px;}
.y208{bottom:106.046565px;}
.y165{bottom:106.160146px;}
.y1eb{bottom:107.298371px;}
.y253{bottom:107.324193px;}
.y264{bottom:107.337718px;}
.y77{bottom:108.000000px;}
.y26{bottom:110.457000px;}
.y268{bottom:110.969484px;}
.y20b{bottom:114.260484px;}
.y14d{bottom:114.814682px;}
.y2a8{bottom:114.970500px;}
.y16b{bottom:115.070029px;}
.y111{bottom:115.862029px;}
.y239{bottom:116.163884px;}
.y1de{bottom:117.497977px;}
.y1f9{bottom:117.779243px;}
.y172{bottom:118.721032px;}
.y24e{bottom:122.034264px;}
.y101{bottom:122.353653px;}
.y22a{bottom:122.562477px;}
.y142{bottom:123.165037px;}
.y1ac{bottom:123.910961px;}
.y155{bottom:124.241353px;}
.y260{bottom:125.557492px;}
.y223{bottom:126.259283px;}
.y110{bottom:126.313635px;}
.y21c{bottom:127.332296px;}
.y270{bottom:127.994971px;}
.y76{bottom:128.323500px;}
.y166{bottom:129.281191px;}
.y205{bottom:129.827167px;}
.y211{bottom:130.075366px;}
.y25{bottom:130.780500px;}
.y245{bottom:131.678655px;}
.y2a7{bottom:132.903000px;}
.y23a{bottom:133.854573px;}
.y19e{bottom:133.865464px;}
.y20c{bottom:134.455100px;}
.y1e8{bottom:134.560545px;}
.y10f{bottom:136.765241px;}
.y194{bottom:136.820262px;}
.y14e{bottom:141.828194px;}
.y1ad{bottom:142.546870px;}
.y173{bottom:144.280499px;}
.y24f{bottom:144.608351px;}
.y143{bottom:144.839886px;}
.y2de{bottom:144.973500px;}
.y269{bottom:145.035293px;}
.y22b{bottom:146.262636px;}
.y10e{bottom:147.216848px;}
.y75{bottom:148.647000px;}
.y97{bottom:148.648500px;}
.y156{bottom:148.713108px;}
.y1df{bottom:149.479218px;}
.y102{bottom:150.722348px;}
.y2a6{bottom:150.835500px;}
.y24{bottom:151.105500px;}
.y1d9{bottom:151.120213px;}
.y23b{bottom:151.627091px;}
.y261{bottom:151.830709px;}
.y167{bottom:152.402236px;}
.y21d{bottom:154.644682px;}
.y20d{bottom:154.649717px;}
.y10d{bottom:157.668454px;}
.y271{bottom:158.395836px;}
.y246{bottom:158.936294px;}
.y204{bottom:159.277650px;}
.y50{bottom:159.664500px;}
.y224{bottom:160.260196px;}
.y1ae{bottom:161.182780px;}
.y19f{bottom:161.738317px;}
.y2dd{bottom:165.297000px;}
.y144{bottom:166.514734px;}
.y250{bottom:167.182438px;}
.y10c{bottom:168.120060px;}
.y2a5{bottom:168.768000px;}
.y14f{bottom:168.841706px;}
.y74{bottom:168.972000px;}
.y23c{bottom:169.358694px;}
.y174{bottom:169.839966px;}
.y22c{bottom:169.962795px;}
.y1fa{bottom:171.325575px;}
.y23{bottom:171.429000px;}
.y199{bottom:171.625244px;}
.y195{bottom:172.369165px;}
.y1d3{bottom:172.536000px;}
.y1e9{bottom:172.775164px;}
.y157{bottom:173.184863px;}
.y149{bottom:174.774294px;}
.y20e{bottom:174.844334px;}
.y168{bottom:175.523281px;}
.y262{bottom:178.103927px;}
.y10b{bottom:178.571667px;}
.y103{bottom:179.091043px;}
.y26a{bottom:179.101101px;}
.y1af{bottom:179.818690px;}
.y4f{bottom:179.988000px;}
.y198{bottom:180.058083px;}
.y1e0{bottom:181.460458px;}
.y148{bottom:181.791029px;}
.y2fd{bottom:181.819500px;}
.y21e{bottom:181.957068px;}
.y2dc{bottom:185.620500px;}
.y96{bottom:185.895000px;}
.y247{bottom:186.193934px;}
.y23d{bottom:187.090298px;}
.y276{bottom:187.720939px;}
.y145{bottom:188.189583px;}
.y197{bottom:188.486831px;}
.y203{bottom:188.728133px;}
.y272{bottom:188.796701px;}
.y147{bottom:188.820038px;}
.y10a{bottom:189.023273px;}
.y73{bottom:189.295500px;}
.y1a0{bottom:189.611170px;}
.y251{bottom:189.756525px;}
.y22{bottom:191.752500px;}
.y1e3{bottom:192.266103px;}
.y1d2{bottom:192.859500px;}
.y22d{bottom:193.662954px;}
.y275{bottom:194.750834px;}
.y20f{bottom:195.038951px;}
.y175{bottom:195.399433px;}
.y150{bottom:195.855218px;}
.y158{bottom:197.656618px;}
.y1b0{bottom:198.454600px;}
.y169{bottom:198.644326px;}
.y2a4{bottom:198.906000px;}
.y109{bottom:199.474879px;}
.y4e{bottom:200.311500px;}
.y1e2{bottom:200.692340px;}
.y274{bottom:201.707075px;}
.y2fc{bottom:202.143000px;}
.y1da{bottom:204.251095px;}
.y220{bottom:204.332599px;}
.y263{bottom:204.377145px;}
.y26c{bottom:204.511142px;}
.y1ee{bottom:204.517981px;}
.y23e{bottom:204.821901px;}
.y104{bottom:207.459737px;}
.y14a{bottom:209.460367px;}
.y72{bottom:209.619000px;}
.y19a{bottom:210.100839px;}
.y1ea{bottom:210.989783px;}
.y21{bottom:212.076000px;}
.y252{bottom:212.330613px;}
.y108{bottom:212.589165px;}
.y1d1{bottom:213.183000px;}
.ybc{bottom:214.213500px;}
.y210{bottom:215.233567px;}
.y1b1{bottom:217.090510px;}
.y202{bottom:218.178616px;}
.y2a3{bottom:219.229500px;}
.y95{bottom:219.331500px;}
.y2db{bottom:219.394500px;}
.y176{bottom:220.958900px;}
.y16d{bottom:221.128544px;}
.y16a{bottom:221.765371px;}
.y2fb{bottom:222.466500px;}
.y1db{bottom:222.945261px;}
.y23f{bottom:222.998914px;}
.y265{bottom:223.027017px;}
.y107{bottom:223.836137px;}
.y1fb{bottom:224.871907px;}
.y120{bottom:229.075312px;}
.y181{bottom:229.088434px;}
.y71{bottom:229.942500px;}
.y4d{bottom:231.201000px;}
.y20{bottom:232.399500px;}
.y1d0{bottom:233.506500px;}
.y1b2{bottom:235.726419px;}
.y259{bottom:238.675500px;}
.y2a2{bottom:239.554500px;}
.y94{bottom:239.655000px;}
.y2da{bottom:239.718000px;}
.y215{bottom:241.182000px;}
.y16c{bottom:241.684779px;}
.y11f{bottom:242.535987px;}
.y180{bottom:242.549880px;}
.ybb{bottom:242.748000px;}
.y1fc{bottom:243.650872px;}
.y106{bottom:244.644072px;}
.y70{bottom:250.266000px;}
.y1f{bottom:252.724500px;}
.y1cf{bottom:253.831500px;}
.y1b3{bottom:254.362329px;}
.y2fa{bottom:255.639000px;}
.y258{bottom:258.999000px;}
.y2a1{bottom:259.878000px;}
.y2d9{bottom:260.041500px;}
.y134{bottom:260.663084px;}
.y121{bottom:260.959512px;}
.y214{bottom:261.505500px;}
.yba{bottom:263.071500px;}
.y12d{bottom:270.685393px;}
.y186{bottom:271.252623px;}
.y1b4{bottom:272.998239px;}
.y1e{bottom:273.048000px;}
.y93{bottom:273.091500px;}
.y4c{bottom:274.416000px;}
.ydb{bottom:275.023500px;}
.y2f9{bottom:275.962500px;}
.y6f{bottom:276.568500px;}
.y128{bottom:276.926983px;}
.y182{bottom:278.360837px;}
.y133{bottom:278.716966px;}
.y257{bottom:279.324000px;}
.y2a0{bottom:280.201500px;}
.y135{bottom:281.320169px;}
.y213{bottom:281.829000px;}
.yfa{bottom:282.258000px;}
.y18b{bottom:282.485635px;}
.yb9{bottom:283.395000px;}
.y122{bottom:284.498773px;}
.y1a6{bottom:289.098000px;}
.y1b5{bottom:291.634149px;}
.yda{bottom:292.956000px;}
.y1d{bottom:293.371500px;}
.y92{bottom:293.416500px;}
.y2d8{bottom:293.815500px;}
.y13c{bottom:295.788293px;}
.y12e{bottom:295.904671px;}
.y2f8{bottom:296.286000px;}
.y256{bottom:299.647500px;}
.yf9{bottom:300.190500px;}
.y4b{bottom:300.349500px;}
.y29f{bottom:300.525000px;}
.y136{bottom:301.977254px;}
.y212{bottom:302.152500px;}
.yb8{bottom:303.718500px;}
.y2bf{bottom:306.409500px;}
.y123{bottom:308.038034px;}
.y1b6{bottom:310.270059px;}
.y4a{bottom:311.574000px;}
.y18c{bottom:311.876667px;}
.y1c{bottom:313.695000px;}
.y183{bottom:313.775782px;}
.y2d7{bottom:314.139000px;}
.y6e{bottom:317.215500px;}
.y255{bottom:319.971000px;}
.y29e{bottom:320.848500px;}
.y12f{bottom:321.123949px;}
.y137{bottom:322.634338px;}
.yd9{bottom:324.007500px;}
.yb7{bottom:324.042000px;}
.y2be{bottom:324.342000px;}
.y91{bottom:326.853000px;}
.y1b7{bottom:328.905968px;}
.y2f7{bottom:329.458500px;}
.y124{bottom:331.577295px;}
.yf8{bottom:332.200500px;}
.y1b{bottom:334.018500px;}
.y1f5{bottom:337.420500px;}
.y254{bottom:340.294500px;}
.y29d{bottom:341.173500px;}
.y18d{bottom:341.267699px;}
.y2bd{bottom:342.274500px;}
.y138{bottom:343.291423px;}
.yd8{bottom:344.331000px;}
.yb6{bottom:344.367000px;}
.y130{bottom:346.343227px;}
.y1b8{bottom:347.541878px;}
.y2d6{bottom:347.913000px;}
.y6d{bottom:348.105000px;}
.y184{bottom:349.190728px;}
.y2f6{bottom:349.782000px;}
.y49{bottom:352.221000px;}
.y1a{bottom:354.343500px;}
.y125{bottom:355.116556px;}
.y2bc{bottom:360.207000px;}
.yf7{bottom:360.733500px;}
.y29c{bottom:361.497000px;}
.y139{bottom:363.948507px;}
.y90{bottom:364.099500px;}
.yd7{bottom:364.654500px;}
.yb5{bottom:364.690500px;}
.y1b9{bottom:366.177788px;}
.y2d5{bottom:368.236500px;}
.y2f5{bottom:370.105500px;}
.y18e{bottom:370.658731px;}
.y286{bottom:371.092500px;}
.y131{bottom:371.562505px;}
.y48{bottom:372.544500px;}
.y19{bottom:374.667000px;}
.y234{bottom:375.562500px;}
.y126{bottom:378.655817px;}
.yf6{bottom:381.057000px;}
.y29b{bottom:381.820500px;}
.y8f{bottom:384.423000px;}
.y13a{bottom:384.605592px;}
.y185{bottom:384.605674px;}
.y1ba{bottom:384.813698px;}
.yd6{bottom:384.979500px;}
.yb4{bottom:385.014000px;}
.y285{bottom:389.025000px;}
.y189{bottom:389.363511px;}
.y6c{bottom:390.744000px;}
.y2bb{bottom:391.258500px;}
.y12b{bottom:392.500088px;}
.y18{bottom:394.990500px;}
.y132{bottom:396.781783px;}
.y188{bottom:397.796350px;}
.y12a{bottom:399.516823px;}
.y18f{bottom:400.049762px;}
.yf5{bottom:401.382000px;}
.y29a{bottom:402.144000px;}
.y127{bottom:402.195078px;}
.y47{bottom:402.582000px;}
.y1bb{bottom:403.449608px;}
.y13b{bottom:405.262677px;}
.yd5{bottom:405.303000px;}
.yb3{bottom:405.337500px;}
.y187{bottom:406.225097px;}
.y2d4{bottom:406.492500px;}
.y129{bottom:406.545832px;}
.y2f4{bottom:406.557000px;}
.y284{bottom:406.957500px;}
.y6b{bottom:411.067500px;}
.y2ba{bottom:411.582000px;}
.y8e{bottom:415.312500px;}
.yf4{bottom:421.705500px;}
.y1bc{bottom:422.085517px;}
.yd4{bottom:425.626500px;}
.yb2{bottom:425.661000px;}
.y2d3{bottom:426.817500px;}
.y12c{bottom:427.186161px;}
.y18a{bottom:427.839106px;}
.y299{bottom:430.677000px;}
.y6a{bottom:431.392500px;}
.y17{bottom:431.584500px;}
.y2b9{bottom:431.907000px;}
.y283{bottom:437.095500px;}
.y2f3{bottom:437.446500px;}
.y1bd{bottom:440.721427px;}
.yf3{bottom:442.029000px;}
.y46{bottom:443.230500px;}
.yd3{bottom:445.950000px;}
.yb1{bottom:445.984500px;}
.y69{bottom:451.716000px;}
.y16{bottom:451.908000px;}
.y15e{bottom:452.562000px;}
.y298{bottom:455.460000px;}
.y282{bottom:457.420500px;}
.y2d2{bottom:457.705500px;}
.y8d{bottom:458.967000px;}
.y1be{bottom:459.357337px;}
.y2b8{bottom:460.440000px;}
.yf2{bottom:462.352500px;}
.y45{bottom:463.554000px;}
.yd2{bottom:466.273500px;}
.yb0{bottom:466.309500px;}
.y1a5{bottom:469.585500px;}
.y68{bottom:472.039500px;}
.y15{bottom:472.233000px;}
.y15d{bottom:472.885500px;}
.y281{bottom:477.744000px;}
.y1bf{bottom:477.993247px;}
.y8c{bottom:479.292000px;}
.y2b7{bottom:480.763500px;}
.y2f2{bottom:480.976500px;}
.yf1{bottom:482.676000px;}
.yaf{bottom:486.633000px;}
.y1a4{bottom:489.910500px;}
.y67{bottom:492.363000px;}
.y14{bottom:492.556500px;}
.y15c{bottom:493.209000px;}
.y44{bottom:494.443500px;}
.yd1{bottom:494.806500px;}
.y1c0{bottom:496.629157px;}
.y280{bottom:498.067500px;}
.y8b{bottom:499.615500px;}
.y2f1{bottom:501.301500px;}
.y2d1{bottom:501.519000px;}
.yf0{bottom:503.001000px;}
.yae{bottom:506.956500px;}
.y2b6{bottom:509.296500px;}
.y1a3{bottom:510.234000px;}
.y65{bottom:512.742000px;}
.y13{bottom:512.880000px;}
.y15b{bottom:513.532500px;}
.y297{bottom:515.152500px;}
.y1c1{bottom:515.265066px;}
.yd0{bottom:519.589500px;}
.y2f0{bottom:521.625000px;}
.y2d0{bottom:521.844000px;}
.yef{bottom:523.324500px;}
.y27f{bottom:526.600500px;}
.yad{bottom:527.280000px;}
.y66{bottom:528.327000px;}
.y1a2{bottom:530.557500px;}
.y62{bottom:532.372500px;}
.y12{bottom:533.203500px;}
.y15a{bottom:533.856000px;}
.y1c2{bottom:533.900976px;}
.y8a{bottom:536.862000px;}
.y2b5{bottom:537.829500px;}
.y2ef{bottom:541.948500px;}
.y2cf{bottom:542.167500px;}
.y43{bottom:543.513000px;}
.yee{bottom:543.648000px;}
.yac{bottom:547.603500px;}
.y64{bottom:547.917000px;}
.y1a1{bottom:550.881000px;}
.y27e{bottom:551.382000px;}
.y1c3{bottom:552.536886px;}
.y63{bottom:552.826500px;}
.y159{bottom:554.179500px;}
.y89{bottom:557.185500px;}
.y296{bottom:558.966000px;}
.y2ee{bottom:562.272000px;}
.y2b4{bottom:562.611000px;}
.yed{bottom:563.971500px;}
.yab{bottom:567.927000px;}
.y11{bottom:569.799000px;}
.y1c4{bottom:571.172796px;}
.y42{bottom:572.047500px;}
.ycf{bottom:575.796000px;}
.y295{bottom:579.289500px;}
.y2ce{bottom:580.423500px;}
.y2ed{bottom:582.595500px;}
.yec{bottom:584.295000px;}
.y61{bottom:584.451000px;}
.y17f{bottom:586.149000px;}
.yaa{bottom:588.252000px;}
.y11e{bottom:589.447500px;}
.y1c5{bottom:589.808706px;}
.y10{bottom:590.122500px;}
.y88{bottom:590.622000px;}
.y41{bottom:592.371000px;}
.y11d{bottom:594.283500px;}
.y2ec{bottom:602.920500px;}
.yeb{bottom:604.618500px;}
.y60{bottom:604.774500px;}
.y1c6{bottom:608.444615px;}
.ya9{bottom:608.575500px;}
.yf{bottom:610.446000px;}
.y87{bottom:610.947000px;}
.y27d{bottom:611.076000px;}
.y40{bottom:612.694500px;}
.y2cd{bottom:614.197500px;}
.y11c{bottom:614.607000px;}
.y294{bottom:617.545500px;}
.yce{bottom:617.554500px;}
.y2b3{bottom:622.303500px;}
.y2eb{bottom:623.244000px;}
.yea{bottom:624.943500px;}
.y5f{bottom:625.098000px;}
.y1c7{bottom:627.080525px;}
.ya8{bottom:628.899000px;}
.ye{bottom:630.769500px;}
.y1f4{bottom:631.609500px;}
.y3f{bottom:633.018000px;}
.y11b{bottom:634.932000px;}
.y86{bottom:644.383500px;}
.ye9{bottom:645.267000px;}
.y1c8{bottom:645.716435px;}
.ycd{bottom:647.694000px;}
.y2cc{bottom:647.970000px;}
.y233{bottom:649.098000px;}
.ya7{bottom:649.222500px;}
.yd{bottom:651.093000px;}
.y293{bottom:651.319500px;}
.y27c{bottom:653.110500px;}
.y3e{bottom:653.341500px;}
.y2ea{bottom:654.133500px;}
.y11a{bottom:655.255500px;}
.y5e{bottom:655.987500px;}
.y17e{bottom:658.384500px;}
.y1c9{bottom:664.352345px;}
.y85{bottom:664.707000px;}
.y2b2{bottom:664.893000px;}
.ycc{bottom:668.017500px;}
.y2cb{bottom:668.295000px;}
.ya6{bottom:669.546000px;}
.yc{bottom:671.418000px;}
.y27b{bottom:673.434000px;}
.y1f3{bottom:673.645500px;}
.ye8{bottom:673.800000px;}
.y119{bottom:675.579000px;}
.y17d{bottom:678.708000px;}
.y3d{bottom:681.874500px;}
.y2b1{bottom:682.827000px;}
.y1ca{bottom:682.988254px;}
.y292{bottom:685.092000px;}
.ycb{bottom:688.341000px;}
.ya5{bottom:689.871000px;}
.y232{bottom:691.132500px;}
.yb{bottom:691.741500px;}
.y27a{bottom:693.757500px;}
.y1f2{bottom:693.969000px;}
.y30b{bottom:695.580000px;}
.y118{bottom:695.902500px;}
.y2e9{bottom:697.663500px;}
.y84{bottom:698.143500px;}
.ye7{bottom:698.581500px;}
.y5d{bottom:698.626500px;}
.y17c{bottom:699.031500px;}
.y2b0{bottom:700.759500px;}
.y291{bottom:705.417000px;}
.y2ca{bottom:706.551000px;}
.y3c{bottom:706.657500px;}
.yca{bottom:708.664500px;}
.ya4{bottom:710.194500px;}
.y231{bottom:711.456000px;}
.ya{bottom:712.065000px;}
.y279{bottom:714.082500px;}
.y1f1{bottom:714.292500px;}
.y30a{bottom:715.903500px;}
.y2e8{bottom:717.987000px;}
.y83{bottom:718.467000px;}
.y17b{bottom:719.355000px;}
.y1cd{bottom:723.934128px;}
.y5c{bottom:726.174000px;}
.y2c9{bottom:726.874500px;}
.yc9{bottom:728.988000px;}
.ya3{bottom:730.518000px;}
.y2af{bottom:730.897500px;}
.yfb{bottom:731.170500px;}
.y230{bottom:731.781000px;}
.y9{bottom:732.388500px;}
.y278{bottom:734.406000px;}
.y1f0{bottom:734.616000px;}
.y17a{bottom:739.680000px;}
.y290{bottom:743.673000px;}
.y2c8{bottom:747.198000px;}
.yc8{bottom:749.311500px;}
.y309{bottom:749.677500px;}
.ya2{bottom:750.841500px;}
.y2ae{bottom:751.221000px;}
.y22f{bottom:752.104500px;}
.y8{bottom:752.712000px;}
.y2e7{bottom:754.438500px;}
.y277{bottom:754.729500px;}
.y1ef{bottom:754.941000px;}
.y82{bottom:755.713500px;}
.y5b{bottom:757.456500px;}
.ye6{bottom:758.274000px;}
.y28f{bottom:763.996500px;}
.y3b{bottom:766.044000px;}
.y308{bottom:770.001000px;}
.ya1{bottom:771.165000px;}
.y2ad{bottom:771.544500px;}
.y22e{bottom:772.428000px;}
.y7{bottom:773.037000px;}
.y2e6{bottom:774.762000px;}
.y15f{bottom:774.946500px;}
.yc7{bottom:777.846000px;}
.y2c7{bottom:778.087500px;}
.y28e{bottom:784.320000px;}
.y81{bottom:786.603000px;}
.y5a{bottom:788.739000px;}
.y25a{bottom:789.997500px;}
.y1d4{bottom:790.207500px;}
.y307{bottom:790.324500px;}
.ya0{bottom:791.488500px;}
.y2ac{bottom:791.868000px;}
.y6{bottom:793.360500px;}
.y2e5{bottom:795.085500px;}
.yc6{bottom:798.169500px;}
.ye5{bottom:800.863500px;}
.y216{bottom:807.696000px;}
.y3a{bottom:809.260500px;}
.y9f{bottom:811.813500px;}
.y5{bottom:813.684000px;}
.y28d{bottom:815.209500px;}
.ye4{bottom:818.796000px;}
.y59{bottom:820.021500px;}
.y2ab{bottom:820.402500px;}
.y2c6{bottom:821.901000px;}
.y306{bottom:824.098500px;}
.yc5{bottom:826.702500px;}
.y2e4{bottom:828.258000px;}
.y39{bottom:829.584000px;}
.y80{bottom:830.259000px;}
.y9e{bottom:832.137000px;}
.y2aa{bottom:840.726000px;}
.y2c5{bottom:842.224500px;}
.y305{bottom:844.422000px;}
.yc4{bottom:847.026000px;}
.y58{bottom:847.567500px;}
.y31{bottom:848.106000px;}
.y2e3{bottom:848.581500px;}
.ye3{bottom:848.935500px;}
.y4{bottom:850.278000px;}
.y7f{bottom:850.582500px;}
.y9d{bottom:852.460500px;}
.y28c{bottom:859.023000px;}
.y38{bottom:860.473500px;}
.y2a9{bottom:861.049500px;}
.yc3{bottom:867.349500px;}
.ye2{bottom:869.259000px;}
.y7e{bottom:870.906000px;}
.y9c{bottom:872.784000px;}
.y2c4{bottom:875.998500px;}
.y304{bottom:878.196000px;}
.y57{bottom:878.352000px;}
.y28b{bottom:879.346500px;}
.y2e2{bottom:881.754000px;}
.y30{bottom:884.700000px;}
.yc2{bottom:887.673000px;}
.ye1{bottom:889.582500px;}
.y9b{bottom:893.107500px;}
.y2c3{bottom:896.322000px;}
.y303{bottom:898.519500px;}
.y56{bottom:898.675500px;}
.y2e1{bottom:902.077500px;}
.y7d{bottom:902.613000px;}
.y37{bottom:903.690000px;}
.y2f{bottom:905.025000px;}
.y7c{bottom:906.658500px;}
.yc1{bottom:907.998000px;}
.ye0{bottom:909.906000px;}
.y28a{bottom:913.120500px;}
.y9a{bottom:913.431000px;}
.y2c2{bottom:916.645500px;}
.y3{bottom:919.764000px;}
.y36{bottom:924.013500px;}
.y2e{bottom:925.348500px;}
.y7b{bottom:927.420000px;}
.yc0{bottom:928.321500px;}
.y55{bottom:929.958000px;}
.ydf{bottom:930.229500px;}
.y7a{bottom:931.465500px;}
.y302{bottom:932.292000px;}
.y289{bottom:933.444000px;}
.y2e0{bottom:935.248500px;}
.y99{bottom:941.965500px;}
.y35{bottom:944.337000px;}
.y2d{bottom:945.672000px;}
.ybf{bottom:948.645000px;}
.y54{bottom:950.281500px;}
.yde{bottom:950.554500px;}
.y301{bottom:952.617000px;}
.y288{bottom:953.767500px;}
.y2c1{bottom:954.903000px;}
.y2df{bottom:955.573500px;}
.y79{bottom:956.272500px;}
.y34{bottom:964.660500px;}
.y2{bottom:965.091000px;}
.y2c{bottom:965.995500px;}
.y98{bottom:966.747000px;}
.y2c0{bottom:975.226500px;}
.ybe{bottom:977.178000px;}
.ydd{bottom:979.087500px;}
.y53{bottom:981.564000px;}
.y2b{bottom:986.319000px;}
.y300{bottom:986.389500px;}
.y287{bottom:992.025000px;}
.y33{bottom:995.550000px;}
.y1{bottom:998.143500px;}
.y52{bottom:1001.887500px;}
.ybd{bottom:1002.868500px;}
.ydc{bottom:1003.869000px;}
.y2a{bottom:1006.644000px;}
.y2ff{bottom:1006.713000px;}
.y78{bottom:1012.348500px;}
.y32{bottom:1026.439500px;}
.y2fe{bottom:1027.038000px;}
.y51{bottom:1032.672000px;}
.y29{bottom:1043.238000px;}
.y28{bottom:1063.561500px;}
.hb{height:0.000000px;}
.h2c{height:23.717812px;}
.h26{height:23.720801px;}
.h19{height:23.723519px;}
.h35{height:23.726509px;}
.h1f{height:23.729499px;}
.h29{height:28.461374px;}
.h24{height:28.464962px;}
.h17{height:28.468223px;}
.h21{height:28.469854px;}
.h32{height:28.471811px;}
.h1c{height:28.475399px;}
.h2e{height:28.678270px;}
.h12{height:28.824064px;}
.ha{height:32.661470px;}
.h2a{height:33.204936px;}
.h25{height:33.209122px;}
.h18{height:33.212927px;}
.h22{height:33.214830px;}
.h33{height:33.217113px;}
.h1d{height:33.221299px;}
.h2f{height:33.457982px;}
.h13{height:33.628074px;}
.h15{height:34.481767px;}
.h2b{height:37.948499px;}
.h27{height:37.953282px;}
.h1a{height:37.957631px;}
.h34{height:37.962415px;}
.h1e{height:37.967198px;}
.h30{height:38.237694px;}
.h14{height:38.432085px;}
.hf{height:44.891476px;}
.h8{height:46.538221px;}
.h9{height:49.090950px;}
.h4{height:49.156405px;}
.h10{height:49.473619px;}
.h2{height:51.287808px;}
.h36{height:51.846089px;}
.he{height:53.755715px;}
.h5{height:53.870131px;}
.h39{height:55.554699px;}
.hc{height:58.824699px;}
.h6{height:58.830699px;}
.h3{height:60.340117px;}
.hd{height:65.338405px;}
.h1{height:72.407972px;}
.h7{height:90.818221px;}
.h31{height:221.391756px;}
.h28{height:239.875452px;}
.h37{height:240.055921px;}
.h38{height:240.086175px;}
.h1b{height:258.623314px;}
.h2d{height:260.710084px;}
.h11{height:261.790009px;}
.h20{height:443.935558px;}
.h16{height:444.120427px;}
.h23{height:740.989182px;}
.h0{height:1188.000000px;}
.w3{width:666.898575px;}
.w8{width:666.903752px;}
.w7{width:666.906053px;}
.w5{width:666.910227px;}
.w6{width:666.911249px;}
.w9{width:666.922000px;}
.w4{width:666.925016px;}
.w2{width:666.926091px;}
.w1{width:666.926712px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5a{left:9.814122px;}
.x58{left:11.205035px;}
.x5b{left:12.473221px;}
.x59{left:13.802770px;}
.x2e{left:16.193155px;}
.x85{left:18.304882px;}
.x2d{left:23.442584px;}
.x74{left:25.796957px;}
.x43{left:27.537907px;}
.x61{left:29.937683px;}
.x73{left:31.546559px;}
.x62{left:34.314418px;}
.x44{left:41.083823px;}
.x32{left:43.472048px;}
.x7b{left:44.866561px;}
.x36{left:47.742437px;}
.x8f{left:51.375742px;}
.x2b{left:52.776884px;}
.x86{left:55.352424px;}
.x2f{left:57.100651px;}
.x5c{left:61.606337px;}
.x33{left:69.307332px;}
.x5f{left:70.897989px;}
.x63{left:76.261534px;}
.x87{left:79.573456px;}
.x71{left:84.088415px;}
.x90{left:86.983691px;}
.x2c{left:94.377813px;}
.x75{left:97.776198px;}
.x4{left:108.000000px;}
.x20{left:112.003500px;}
.x9{left:116.967000px;}
.x84{left:118.606869px;}
.x9d{left:120.201000px;}
.x42{left:121.765502px;}
.x23{left:122.992500px;}
.x4c{left:124.138665px;}
.xe{left:128.070000px;}
.x9a{left:130.831500px;}
.x5{left:132.406500px;}
.x60{left:136.607836px;}
.x9b{left:138.073500px;}
.x2{left:140.259000px;}
.x9e{left:144.340500px;}
.xf{left:148.909500px;}
.x98{left:155.320500px;}
.x72{left:159.317894px;}
.x29{left:165.684000px;}
.x6{left:169.828500px;}
.x34{left:172.292620px;}
.x40{left:174.481514px;}
.x35{left:183.196176px;}
.x25{left:186.664500px;}
.xa1{left:188.070000px;}
.x26{left:200.265000px;}
.x1d{left:216.783000px;}
.x17{left:217.995000px;}
.xa0{left:220.885500px;}
.x22{left:222.567000px;}
.x91{left:234.157686px;}
.x39{left:235.470973px;}
.x9f{left:239.170500px;}
.x28{left:240.406500px;}
.x38{left:242.630907px;}
.x7d{left:247.249535px;}
.x21{left:248.275500px;}
.x7e{left:251.627875px;}
.x1e{left:253.968000px;}
.x89{left:255.206494px;}
.x97{left:256.339500px;}
.x66{left:259.222393px;}
.x37{left:262.847491px;}
.x7f{left:265.166969px;}
.x65{left:266.380604px;}
.x8{left:267.435000px;}
.x5d{left:269.033321px;}
.x1f{left:270.240000px;}
.x8c{left:273.121670px;}
.x4e{left:275.103785px;}
.x4d{left:278.616189px;}
.x1a{left:281.346000px;}
.x30{left:284.191261px;}
.x68{left:286.484951px;}
.x18{left:287.721000px;}
.x1{left:290.338500px;}
.x67{left:294.523880px;}
.x57{left:297.587956px;}
.x9c{left:302.895000px;}
.x88{left:305.455431px;}
.x64{left:309.414262px;}
.x24{left:319.723500px;}
.x7c{left:321.298915px;}
.x27{left:328.375500px;}
.x1c{left:333.820500px;}
.x48{left:339.550679px;}
.x52{left:345.178467px;}
.x46{left:351.301045px;}
.x51{left:352.338811px;}
.x47{left:355.679937px;}
.x99{left:359.065500px;}
.x78{left:360.142554px;}
.x2a{left:363.382500px;}
.x10{left:365.395500px;}
.x3{left:370.939500px;}
.x4f{left:372.556553px;}
.x4b{left:375.789075px;}
.x56{left:376.827187px;}
.x16{left:384.504000px;}
.x76{left:389.788233px;}
.x45{left:393.701052px;}
.x31{left:394.753882px;}
.xa{left:402.324000px;}
.x8b{left:407.543156px;}
.x8a{left:412.638216px;}
.xb{left:417.367500px;}
.x69{left:419.469226px;}
.xa2{left:436.755000px;}
.x12{left:442.177500px;}
.x13{left:443.718000px;}
.x11{left:448.317000px;}
.x41{left:450.864000px;}
.x50{left:453.220680px;}
.x7{left:454.932000px;}
.x1b{left:458.697000px;}
.x94{left:460.769896px;}
.x3c{left:462.006350px;}
.x6d{left:467.052922px;}
.x14{left:468.541500px;}
.x82{left:471.030965px;}
.xc{left:473.160000px;}
.x15{left:476.211000px;}
.x8d{left:477.353528px;}
.x6c{left:478.797501px;}
.x3a{left:482.222934px;}
.x83{left:484.570059px;}
.x3f{left:486.493323px;}
.x8e{left:490.890917px;}
.x19{left:495.133500px;}
.x6f{left:496.708368px;}
.x6a{left:498.545567px;}
.x6e{left:502.076801px;}
.x4a{left:503.155056px;}
.x3b{left:508.058218px;}
.x49{left:509.968938px;}
.x93{left:511.002131px;}
.x92{left:518.262665px;}
.x70{left:520.923573px;}
.x6b{left:547.268373px;}
.x77{left:550.385995px;}
.x80{left:559.545233px;}
.x95{left:593.920104px;}
.x55{left:604.185799px;}
.x5e{left:605.742763px;}
.x53{left:607.698203px;}
.x3d{left:613.232400px;}
.x81{left:614.599170px;}
.x54{left:616.665255px;}
.x3e{left:621.947062px;}
.x96{left:625.039051px;}
.x79{left:635.879843px;}
.x7a{left:655.740697px;}
.xd{left:789.207000px;}
@media print{
.v2{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:5.658667pt;}
.v5{vertical-align:8.730667pt;}
.v6{vertical-align:14.384000pt;}
.v8{vertical-align:19.280000pt;}
.va{vertical-align:21.114667pt;}
.v1{vertical-align:24.026667pt;}
.v9{vertical-align:24.995182pt;}
.v4{vertical-align:30.629333pt;}
.v3{vertical-align:39.360000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.000438pt;}
.ls22{letter-spacing:0.000912pt;}
.ls1a{letter-spacing:0.000942pt;}
.ls1d{letter-spacing:0.001899pt;}
.ls40{letter-spacing:0.003370pt;}
.lsa{letter-spacing:0.003856pt;}
.ls3c{letter-spacing:0.005089pt;}
.ls27{letter-spacing:0.005771pt;}
.ls29{letter-spacing:0.008658pt;}
.ls3f{letter-spacing:0.010422pt;}
.ls1f{letter-spacing:0.013017pt;}
.ls2b{letter-spacing:0.014473pt;}
.ls24{letter-spacing:0.016417pt;}
.ls10{letter-spacing:0.020202pt;}
.ls14{letter-spacing:0.021186pt;}
.lsb{letter-spacing:0.024565pt;}
.ls21{letter-spacing:1.991192pt;}
.ls2a{letter-spacing:1.996526pt;}
.lsc{letter-spacing:2.653258pt;}
.ls16{letter-spacing:2.653383pt;}
.ls12{letter-spacing:2.658717pt;}
.ls30{letter-spacing:4.146380pt;}
.ls47{letter-spacing:4.586920pt;}
.lsf{letter-spacing:4.712731pt;}
.ls34{letter-spacing:5.988492pt;}
.ls5{letter-spacing:12.916374pt;}
.ls4{letter-spacing:12.974556pt;}
.ls1c{letter-spacing:13.149102pt;}
.ls2f{letter-spacing:14.771215pt;}
.ls28{letter-spacing:15.581258pt;}
.ls23{letter-spacing:15.585146pt;}
.ls1e{letter-spacing:15.590479pt;}
.ls3{letter-spacing:16.116377pt;}
.ls2{letter-spacing:16.174559pt;}
.ls37{letter-spacing:16.523650pt;}
.ls31{letter-spacing:17.415578pt;}
.ls13{letter-spacing:17.512742pt;}
.ls32{letter-spacing:17.693578pt;}
.ls33{letter-spacing:17.746711pt;}
.ls3a{letter-spacing:17.861833pt;}
.ls3d{letter-spacing:17.920015pt;}
.ls2d{letter-spacing:18.193146pt;}
.ls18{letter-spacing:18.792743pt;}
.ls48{letter-spacing:18.813258pt;}
.ls1b{letter-spacing:18.817146pt;}
.ls19{letter-spacing:18.850925pt;}
.lsd{letter-spacing:19.141834pt;}
.ls8{letter-spacing:19.258198pt;}
.lse{letter-spacing:19.316380pt;}
.ls17{letter-spacing:19.956380pt;}
.ls44{letter-spacing:20.480017pt;}
.ls46{letter-spacing:21.352745pt;}
.ls45{letter-spacing:21.469109pt;}
.ls38{letter-spacing:21.992746pt;}
.ls39{letter-spacing:22.050927pt;}
.ls2e{letter-spacing:22.225473pt;}
.ls11{letter-spacing:22.632746pt;}
.ls3e{letter-spacing:23.621838pt;}
.ls3b{letter-spacing:23.680020pt;}
.ls43{letter-spacing:23.854565pt;}
.ls7{letter-spacing:26.763659pt;}
.ls36{letter-spacing:26.996386pt;}
.ls0{letter-spacing:29.090933pt;}
.ls41{letter-spacing:29.381843pt;}
.ls35{letter-spacing:29.556388pt;}
.ls9{letter-spacing:33.092811pt;}
.ls25{letter-spacing:60.507812pt;}
.ls42{letter-spacing:95.416672pt;}
.ls26{letter-spacing:317.149355pt;}
.ls2c{letter-spacing:439.796730pt;}
.ls15{letter-spacing:906.124391pt;}
.ls6{letter-spacing:975.210641pt;}
.wsbf{word-spacing:-95.416672pt;}
.ws6{word-spacing:-43.240763pt;}
.ws8{word-spacing:-43.124400pt;}
.ws27{word-spacing:-42.612399pt;}
.ws19{word-spacing:-37.899668pt;}
.wse6{word-spacing:-33.233482pt;}
.ws7{word-spacing:-31.313481pt;}
.ws23{word-spacing:-28.928024pt;}
.ws9{word-spacing:-28.404387pt;}
.wsb{word-spacing:-28.346205pt;}
.ws3e{word-spacing:-22.575574pt;}
.wse2{word-spacing:-21.783291pt;}
.ws35{word-spacing:-18.455288pt;}
.ws77{word-spacing:-17.815288pt;}
.ws9c{word-spacing:-17.175287pt;}
.ws36{word-spacing:-16.069832pt;}
.ws3d{word-spacing:-15.953468pt;}
.ws82{word-spacing:-15.720740pt;}
.wsc8{word-spacing:-15.674195pt;}
.ws76{word-spacing:-15.488013pt;}
.ws80{word-spacing:-15.022558pt;}
.ws9b{word-spacing:-14.906194pt;}
.ws92{word-spacing:-14.731649pt;}
.wsdc{word-spacing:-14.673467pt;}
.wse8{word-spacing:-14.615285pt;}
.ws7d{word-spacing:-14.266194pt;}
.wsed{word-spacing:-14.208012pt;}
.wsce{word-spacing:-14.033466pt;}
.wsa6{word-spacing:-13.975284pt;}
.wsf0{word-spacing:-13.917103pt;}
.wse{word-spacing:-13.858921pt;}
.wsee{word-spacing:-13.684375pt;}
.ws12{word-spacing:-13.626193pt;}
.wsaf{word-spacing:-13.509829pt;}
.ws3f{word-spacing:-13.393466pt;}
.wsca{word-spacing:-13.218920pt;}
.wsf2{word-spacing:-13.102556pt;}
.ws7f{word-spacing:-13.044375pt;}
.wsf6{word-spacing:-12.869829pt;}
.ws3c{word-spacing:-12.811647pt;}
.wsec{word-spacing:-12.578920pt;}
.wsac{word-spacing:-12.462556pt;}
.ws89{word-spacing:-12.404374pt;}
.ws8b{word-spacing:-12.346192pt;}
.ws1d{word-spacing:-12.288010pt;}
.ws81{word-spacing:-12.229828pt;}
.ws87{word-spacing:-12.055283pt;}
.ws15{word-spacing:-12.012585pt;}
.ws40{word-spacing:-11.997101pt;}
.wsd{word-spacing:-11.948824pt;}
.wsc3{word-spacing:-11.938919pt;}
.ws8a{word-spacing:-11.822555pt;}
.wsaa{word-spacing:-11.706192pt;}
.wsb4{word-spacing:-11.648010pt;}
.wsd7{word-spacing:-11.589828pt;}
.ws48{word-spacing:-11.531646pt;}
.wse4{word-spacing:-11.473464pt;}
.wse1{word-spacing:-11.357100pt;}
.ws24{word-spacing:-11.240737pt;}
.ws14{word-spacing:-11.124373pt;}
.ws4{word-spacing:-11.066191pt;}
.ws43{word-spacing:-11.008009pt;}
.ws9f{word-spacing:-10.775282pt;}
.ws1e{word-spacing:-10.717100pt;}
.wsf{word-spacing:-10.658918pt;}
.ws83{word-spacing:-10.600736pt;}
.ws86{word-spacing:-10.542554pt;}
.ws88{word-spacing:-10.484372pt;}
.wsc2{word-spacing:-10.368009pt;}
.ws1c{word-spacing:-10.193463pt;}
.ws10{word-spacing:-10.077099pt;}
.ws26{word-spacing:-9.844372pt;}
.ws25{word-spacing:-9.786190pt;}
.wsa7{word-spacing:-9.728008pt;}
.ws11{word-spacing:-9.669826pt;}
.ws13{word-spacing:-9.611644pt;}
.wse7{word-spacing:-9.553463pt;}
.wsb7{word-spacing:-9.495281pt;}
.ws3b{word-spacing:-9.437099pt;}
.ws63{word-spacing:-9.399381pt;}
.ws9d{word-spacing:-9.378917pt;}
.ws38{word-spacing:-9.262553pt;}
.wsdd{word-spacing:-9.146189pt;}
.wsc4{word-spacing:-9.088008pt;}
.wsb6{word-spacing:-9.029826pt;}
.ws34{word-spacing:-8.971644pt;}
.wsc5{word-spacing:-8.913462pt;}
.ws5c{word-spacing:-8.868042pt;}
.ws73{word-spacing:-8.814908pt;}
.wsa5{word-spacing:-8.797098pt;}
.wse3{word-spacing:-8.738916pt;}
.ws21{word-spacing:-8.622553pt;}
.wsb5{word-spacing:-8.506189pt;}
.wsd0{word-spacing:-8.448007pt;}
.wsbb{word-spacing:-8.389825pt;}
.ws44{word-spacing:-8.331643pt;}
.ws39{word-spacing:-8.098916pt;}
.ws2e{word-spacing:-8.040734pt;}
.wse5{word-spacing:-7.982552pt;}
.ws4b{word-spacing:-7.866188pt;}
.ws41{word-spacing:-7.749825pt;}
.wsd8{word-spacing:-7.691643pt;}
.ws2c{word-spacing:-7.633461pt;}
.ws46{word-spacing:-7.575279pt;}
.ws22{word-spacing:-7.517097pt;}
.ws7c{word-spacing:-7.458915pt;}
.ws2f{word-spacing:-7.284370pt;}
.ws45{word-spacing:-7.226188pt;}
.ws8e{word-spacing:-7.051642pt;}
.wsde{word-spacing:-6.993460pt;}
.ws42{word-spacing:-6.760733pt;}
.ws2d{word-spacing:-6.644369pt;}
.ws47{word-spacing:-6.586187pt;}
.wsdf{word-spacing:-6.469824pt;}
.ws30{word-spacing:-6.353460pt;}
.ws93{word-spacing:-6.178914pt;}
.ws78{word-spacing:-6.120732pt;}
.wsad{word-spacing:-6.062551pt;}
.wsc7{word-spacing:-6.004369pt;}
.wseb{word-spacing:-5.713459pt;}
.wscf{word-spacing:-5.538914pt;}
.wse9{word-spacing:-5.248004pt;}
.ws33{word-spacing:-4.375276pt;}
.wsea{word-spacing:-4.317095pt;}
.wsef{word-spacing:-4.142549pt;}
.wsd6{word-spacing:-4.084367pt;}
.wsbc{word-spacing:-4.026185pt;}
.wsae{word-spacing:-3.759151pt;}
.wsa8{word-spacing:-3.753818pt;}
.ws9e{word-spacing:-3.560730pt;}
.ws79{word-spacing:-3.211639pt;}
.wsd9{word-spacing:-3.153457pt;}
.ws1f{word-spacing:-3.095275pt;}
.ws16{word-spacing:-3.037093pt;}
.ws74{word-spacing:-2.970183pt;}
.ws8c{word-spacing:-2.804366pt;}
.ws8d{word-spacing:-2.746184pt;}
.ws20{word-spacing:-2.688002pt;}
.ws4a{word-spacing:-2.397093pt;}
.ws18{word-spacing:-2.164365pt;}
.ws4c{word-spacing:-1.931638pt;}
.wsbd{word-spacing:-1.757092pt;}
.wscd{word-spacing:-1.524365pt;}
.ws99{word-spacing:-1.233456pt;}
.wsda{word-spacing:-0.651637pt;}
.wsdb{word-spacing:-0.593455pt;}
.wscb{word-spacing:-0.535273pt;}
.wscc{word-spacing:-0.418909pt;}
.wsf4{word-spacing:-0.244364pt;}
.ws98{word-spacing:-0.128000pt;}
.ws3{word-spacing:-0.076513pt;}
.ws17{word-spacing:-0.058182pt;}
.wsa{word-spacing:0.000000pt;}
.ws5{word-spacing:0.162909pt;}
.wsf3{word-spacing:1.617456pt;}
.wsc9{word-spacing:7.726552pt;}
.ws37{word-spacing:12.858193pt;}
.ws72{word-spacing:14.664947pt;}
.ws71{word-spacing:14.718081pt;}
.ws29{word-spacing:15.531198pt;}
.wsa9{word-spacing:16.116377pt;}
.wsf1{word-spacing:16.640014pt;}
.ws49{word-spacing:17.338196pt;}
.ws3a{word-spacing:18.734561pt;}
.ws28{word-spacing:18.760322pt;}
.ws1a{word-spacing:18.775892pt;}
.ws31{word-spacing:20.042662pt;}
.ws97{word-spacing:20.504617pt;}
.ws96{word-spacing:20.509950pt;}
.ws58{word-spacing:20.596381pt;}
.ws32{word-spacing:20.712745pt;}
.ws1{word-spacing:20.722347pt;}
.ws2{word-spacing:20.786108pt;}
.wse0{word-spacing:21.410927pt;}
.ws2b{word-spacing:21.893864pt;}
.ws1b{word-spacing:21.906559pt;}
.ws94{word-spacing:21.934564pt;}
.ws95{word-spacing:21.992746pt;}
.wsc6{word-spacing:22.865474pt;}
.wsa2{word-spacing:24.415162pt;}
.wsa3{word-spacing:24.449522pt;}
.ws90{word-spacing:24.469918pt;}
.ws7b{word-spacing:25.658203pt;}
.ws62{word-spacing:26.354398pt;}
.ws5f{word-spacing:26.620067pt;}
.ws5b{word-spacing:26.673201pt;}
.ws7a{word-spacing:26.938204pt;}
.wsc{word-spacing:28.003782pt;}
.wsf5{word-spacing:29.207297pt;}
.wsbe{word-spacing:29.265479pt;}
.ws91{word-spacing:32.558369pt;}
.ws0{word-spacing:32.961753pt;}
.ws57{word-spacing:33.792028pt;}
.ws53{word-spacing:34.839302pt;}
.wsb0{word-spacing:39.490586pt;}
.wsa0{word-spacing:40.936406pt;}
.wsb8{word-spacing:48.105208pt;}
.ws4f{word-spacing:49.268405pt;}
.ws59{word-spacing:56.599320pt;}
.ws5a{word-spacing:56.657502pt;}
.wsa4{word-spacing:65.123534pt;}
.ws85{word-spacing:70.960984pt;}
.ws5e{word-spacing:73.181152pt;}
.ws5d{word-spacing:73.239334pt;}
.wsb1{word-spacing:77.596578pt;}
.ws4d{word-spacing:77.835701pt;}
.ws75{word-spacing:82.522550pt;}
.ws8f{word-spacing:90.763290pt;}
.ws84{word-spacing:90.917824pt;}
.wsa1{word-spacing:91.107952pt;}
.ws4e{word-spacing:93.952078pt;}
.wsb2{word-spacing:95.530911pt;}
.wsb9{word-spacing:95.806436pt;}
.wsba{word-spacing:97.679928pt;}
.wsc0{word-spacing:99.838614pt;}
.wsc1{word-spacing:106.191484pt;}
.ws7e{word-spacing:107.326948pt;}
.wsab{word-spacing:110.142775pt;}
.wsb3{word-spacing:116.177397pt;}
.ws55{word-spacing:131.188473pt;}
.ws70{word-spacing:148.352124pt;}
.ws54{word-spacing:161.675771pt;}
.wsd3{word-spacing:202.577623pt;}
.wsd2{word-spacing:202.635805pt;}
.ws51{word-spacing:230.795829pt;}
.wsd1{word-spacing:231.552193pt;}
.ws52{word-spacing:269.428588pt;}
.ws50{word-spacing:280.657688pt;}
.ws6d{word-spacing:292.352244pt;}
.ws9a{word-spacing:314.574657pt;}
.ws64{word-spacing:363.043212pt;}
.ws69{word-spacing:364.614122pt;}
.ws66{word-spacing:388.294142pt;}
.ws67{word-spacing:403.537791pt;}
.ws6e{word-spacing:405.981429pt;}
.ws65{word-spacing:408.075976pt;}
.ws68{word-spacing:428.497812pt;}
.ws6b{word-spacing:444.556007pt;}
.ws6c{word-spacing:446.999645pt;}
.ws6f{word-spacing:454.970561pt;}
.ws6a{word-spacing:462.999659pt;}
.ws61{word-spacing:598.796135pt;}
.wsd5{word-spacing:608.977962pt;}
.ws60{word-spacing:613.283420pt;}
.wsd4{word-spacing:698.170764pt;}
.ws2a{word-spacing:841.193428pt;}
.ws56{word-spacing:2019.670150pt;}
._a5{margin-left:-95.416672pt;}
._19{margin-left:-33.978210pt;}
._18{margin-left:-32.232754pt;}
._17{margin-left:-30.828429pt;}
._d{margin-left:-29.090933pt;}
._f{margin-left:-9.774554pt;}
._a4{margin-left:-7.783715pt;}
._38{margin-left:-6.656643pt;}
._1{margin-left:-5.228407pt;}
._27{margin-left:-4.046417pt;}
._0{margin-left:-2.754464pt;}
._3{margin-left:-1.721549pt;}
._2{width:1.849071pt;}
._32{width:3.000378pt;}
._31{width:4.189094pt;}
._20{width:6.172066pt;}
._34{width:15.394287pt;}
._28{width:16.549964pt;}
._8{width:17.920015pt;}
._7{width:19.316380pt;}
._1a{width:20.921565pt;}
._1f{width:21.884342pt;}
._11{width:23.846605pt;}
._a2{width:24.737661pt;}
._14{width:25.658203pt;}
._23{width:27.209995pt;}
._35{width:28.717935pt;}
._12{width:30.072065pt;}
._33{width:31.581595pt;}
._1b{width:32.771547pt;}
._c{width:33.778148pt;}
._ca{width:35.549121pt;}
._e{width:37.061849pt;}
._9f{width:39.481580pt;}
._1d{width:40.607771pt;}
._a3{width:41.517946pt;}
._ab{width:42.648899pt;}
._15{width:43.845220pt;}
._9a{width:45.032765pt;}
._b{width:46.246623pt;}
._10{width:47.368797pt;}
._37{width:49.125936pt;}
._13{width:50.617433pt;}
._21{width:52.254486pt;}
._4{width:53.527317pt;}
._a1{width:56.053393pt;}
._1e{width:57.918062pt;}
._6{width:59.112777pt;}
._2a{width:63.767326pt;}
._a{width:66.152782pt;}
._b9{width:70.608879pt;}
._26{width:71.731200pt;}
._90{width:74.414607pt;}
._9d{width:75.384519pt;}
._87{width:77.498246pt;}
._8d{width:79.859796pt;}
._9e{width:83.169215pt;}
._25{width:84.164373pt;}
._be{width:86.283708pt;}
._9{width:87.563709pt;}
._75{width:88.636481pt;}
._7a{width:90.156396pt;}
._8c{width:93.614623pt;}
._48{width:95.103445pt;}
._86{width:98.643052pt;}
._98{width:100.014629pt;}
._7c{width:101.948170pt;}
._42{width:103.829115pt;}
._99{width:105.552072pt;}
._8a{width:108.125815pt;}
._88{width:109.091000pt;}
._71{width:113.097588pt;}
._9b{width:114.763896pt;}
._81{width:116.596461pt;}
._8f{width:118.225553pt;}
._74{width:120.774397pt;}
._9c{width:122.856339pt;}
._89{width:131.141927pt;}
._72{width:140.509208pt;}
._c4{width:148.072851pt;}
._c7{width:154.427423pt;}
._a9{width:156.043766pt;}
._66{width:156.974676pt;}
._af{width:158.371041pt;}
._29{width:162.211044pt;}
._7e{width:165.643774pt;}
._ba{width:168.843777pt;}
._bc{width:170.472869pt;}
._8e{width:173.161191pt;}
._c6{width:177.745603pt;}
._a8{width:178.676513pt;}
._64{width:182.283788pt;}
._b4{width:187.159907pt;}
._7b{width:188.495708pt;}
._c0{width:189.508707pt;}
._40{width:190.661977pt;}
._76{width:195.840163pt;}
._65{width:197.461295pt;}
._95{width:202.763805pt;}
._7d{width:209.605358pt;}
._94{width:210.709223pt;}
._2f{width:216.272366pt;}
._80{width:217.192908pt;}
._93{width:219.570404pt;}
._96{width:220.518052pt;}
._4b{width:222.662004pt;}
._73{width:227.363577pt;}
._68{width:232.238105pt;}
._92{width:234.589286pt;}
._60{width:243.001750pt;}
._39{width:244.863570pt;}
._91{width:249.018389pt;}
._55{width:250.115884pt;}
._97{width:251.334506pt;}
._3c{width:252.974756pt;}
._4a{width:254.138394pt;}
._aa{width:255.997015pt;}
._4f{width:262.667221pt;}
._bd{width:264.282773pt;}
._52{width:267.811132pt;}
._6b{width:268.718135pt;}
._bf{width:273.254711pt;}
._61{width:276.654776pt;}
._41{width:278.225686pt;}
._6d{width:279.225146pt;}
._84{width:282.332695pt;}
._51{width:283.752964pt;}
._a7{width:284.913403pt;}
._85{width:286.973701pt;}
._4c{width:291.083879pt;}
._44{width:293.527517pt;}
._49{width:295.040246pt;}
._3e{width:298.007521pt;}
._a0{width:299.047045pt;}
._2b{width:300.279021pt;}
._2c{width:301.836366pt;}
._59{width:303.278164pt;}
._62{width:306.385710pt;}
._54{width:307.956620pt;}
._69{width:310.492715pt;}
._43{width:313.425716pt;}
._50{width:315.578445pt;}
._6c{width:317.614810pt;}
._4e{width:318.828669pt;}
._4d{width:320.814813pt;}
._5e{width:323.258451pt;}
._5a{width:334.487551pt;}
._5c{width:337.023646pt;}
._8b{width:338.478193pt;}
._2e{width:341.581748pt;}
._53{width:342.749377pt;}
._6e{width:344.902106pt;}
._3f{width:346.123925pt;}
._47{width:347.985745pt;}
._56{width:349.440291pt;}
._46{width:354.560295pt;}
._6a{width:357.760298pt;}
._58{width:367.418488pt;}
._bb{width:380.006506pt;}
._5f{width:381.033045pt;}
._2d{width:385.745776pt;}
._63{width:388.189414pt;}
._77{width:389.411234pt;}
._3b{width:390.749417pt;}
._78{width:391.947329pt;}
._c2{width:395.334626pt;}
._45{width:406.376431pt;}
._3d{width:409.185108pt;}
._57{width:415.569166pt;}
._3a{width:424.029444pt;}
._7f{width:426.716178pt;}
._30{width:431.127632pt;}
._82{width:433.047634pt;}
._5d{width:438.051274pt;}
._6f{width:461.881932pt;}
._a6{width:474.988799pt;}
._c9{width:483.414781pt;}
._b3{width:494.545867pt;}
._ae{width:498.793143pt;}
._c1{width:509.940154pt;}
._70{width:514.785196pt;}
._c8{width:518.807705pt;}
._67{width:523.578618pt;}
._ad{width:532.596807pt;}
._5b{width:534.143811pt;}
._83{width:553.775007pt;}
._79{width:555.528423pt;}
._b2{width:563.607742pt;}
._b0{width:591.011402pt;}
._ac{width:595.956860pt;}
._b6{width:598.982317pt;}
._b1{width:601.891411pt;}
._b8{width:632.727800pt;}
._c5{width:640.640534pt;}
._b5{width:653.265999pt;}
._c3{width:672.225327pt;}
._b7{width:688.815119pt;}
._36{width:895.876422pt;}
._24{width:1571.177402pt;}
._22{width:1579.439227pt;}
._5{width:1661.430226pt;}
._1c{width:1701.562965pt;}
._16{width:1730.529574pt;}
.fs1b{font-size:23.269867pt;}
.fs16{font-size:23.272800pt;}
.fsc{font-size:23.275467pt;}
.fs22{font-size:23.278400pt;}
.fs11{font-size:23.281333pt;}
.fs18{font-size:27.923840pt;}
.fs14{font-size:27.927360pt;}
.fsa{font-size:27.930560pt;}
.fs12{font-size:27.932160pt;}
.fs1f{font-size:27.934080pt;}
.fse{font-size:27.937600pt;}
.fs1c{font-size:28.136640pt;}
.fs7{font-size:28.279680pt;}
.fs19{font-size:32.577813pt;}
.fs15{font-size:32.581920pt;}
.fsb{font-size:32.585653pt;}
.fs13{font-size:32.587520pt;}
.fs20{font-size:32.589760pt;}
.fsf{font-size:32.593867pt;}
.fs1d{font-size:32.826080pt;}
.fs8{font-size:32.992960pt;}
.fs6{font-size:37.193600pt;}
.fs1a{font-size:37.231787pt;}
.fs17{font-size:37.236480pt;}
.fsd{font-size:37.240747pt;}
.fs21{font-size:37.245440pt;}
.fs10{font-size:37.250133pt;}
.fs1e{font-size:37.515520pt;}
.fs9{font-size:37.706240pt;}
.fs4{font-size:42.507200pt;}
.fs5{font-size:53.133867pt;}
.fs3{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y200{bottom:9.425410pt;}
.y218{bottom:9.998800pt;}
.y1d6{bottom:10.086033pt;}
.y1a8{bottom:10.087304pt;}
.y13e{bottom:10.088460pt;}
.y191{bottom:10.089038pt;}
.y25c{bottom:10.089731pt;}
.y161{bottom:10.091003pt;}
.y1e5{bottom:10.176931pt;}
.y241{bottom:10.179380pt;}
.y16e{bottom:10.181946pt;}
.yfd{bottom:10.214562pt;}
.y226{bottom:16.462193pt;}
.y179{bottom:17.152627pt;}
.y1fe{bottom:18.492419pt;}
.y201{bottom:19.671131pt;}
.y217{bottom:21.874422pt;}
.y1d5{bottom:22.048199pt;}
.y1a7{bottom:22.050978pt;}
.y13d{bottom:22.053505pt;}
.y190{bottom:22.054768pt;}
.y25b{bottom:22.056284pt;}
.y160{bottom:22.059063pt;}
.yfc{bottom:22.329164pt;}
.y225{bottom:22.710989pt;}
.y1ff{bottom:23.284981pt;}
.y178{bottom:23.314905pt;}
.y1f7{bottom:27.177821pt;}
.y26d{bottom:32.704333pt;}
.y162{bottom:32.708454pt;}
.yfe{bottom:33.108951pt;}
.y16f{bottom:37.371228pt;}
.y266{bottom:38.078104pt;}
.y1f6{bottom:39.231147pt;}
.y1d7{bottom:39.783280pt;}
.y235{bottom:40.211085pt;}
.y219{bottom:40.351234pt;}
.y25d{bottom:41.544746pt;}
.y1e4{bottom:41.591251pt;}
.y240{bottom:41.601260pt;}
.y1ce{bottom:42.861952pt;}
.y24a{bottom:44.166185pt;}
.y242{bottom:44.360656pt;}
.y19b{bottom:44.663915pt;}
.y152{bottom:45.178745pt;}
.y227{bottom:45.744000pt;}
.y117{bottom:47.246569pt;}
.y196{bottom:47.568317pt;}
.y1dc{bottom:47.587107pt;}
.y24b{bottom:48.277336pt;}
.y1cc{bottom:48.695579pt;}
.y249{bottom:50.348731pt;}
.y1e6{bottom:51.672272pt;}
.y13f{bottom:51.680437pt;}
.y221{bottom:51.784405pt;}
.y163{bottom:53.260494pt;}
.y14b{bottom:54.033474pt;}
.y1ed{bottom:54.171965pt;}
.y236{bottom:55.972510pt;}
.y1cb{bottom:56.077421pt;}
.y27{bottom:56.149333pt;}
.y116{bottom:56.536886pt;}
.y1f8{bottom:57.095920pt;}
.yff{bottom:58.325568pt;}
.y192{bottom:58.419962pt;}
.y26e{bottom:59.727325pt;}
.y170{bottom:60.090754pt;}
.y1fd{bottom:60.198073pt;}
.y1ec{bottom:60.331208pt;}
.y1a9{bottom:60.447317pt;}
.y207{bottom:63.045513pt;}
.y21a{bottom:64.628911pt;}
.y1e1{bottom:64.852809pt;}
.y25e{bottom:64.898717pt;}
.y209{bottom:65.663333pt;}
.y115{bottom:65.827203pt;}
.y228{bottom:66.810808pt;}
.y153{bottom:66.931416pt;}
.y24c{bottom:68.343191pt;}
.y267{bottom:68.358823pt;}
.y243{bottom:68.589669pt;}
.y146{bottom:68.706990pt;}
.y19c{bottom:69.439784pt;}
.y140{bottom:70.946969pt;}
.y237{bottom:71.733935pt;}
.y164{bottom:73.812535pt;}
.y114{bottom:75.117520pt;}
.y1dd{bottom:76.014877pt;}
.y248{bottom:76.297034pt;}
.y1aa{bottom:77.012570pt;}
.y14c{bottom:78.045485pt;}
.y151{bottom:79.571905pt;}
.y222{bottom:82.007439pt;}
.y171{bottom:82.810280pt;}
.y100{bottom:83.542186pt;}
.y20a{bottom:83.614104pt;}
.y26b{bottom:83.781198pt;}
.y113{bottom:84.407836pt;}
.y177{bottom:84.596113pt;}
.y1e7{bottom:85.640823pt;}
.y26f{bottom:86.750316pt;}
.y21f{bottom:87.011744pt;}
.y1d8{bottom:87.056179pt;}
.y238{bottom:87.495360pt;}
.y229{bottom:87.877616pt;}
.y25f{bottom:88.252688pt;}
.y24d{bottom:88.409046pt;}
.y154{bottom:88.684087pt;}
.y21b{bottom:88.906587pt;}
.y206{bottom:89.223720pt;}
.y193{bottom:90.018986pt;}
.y141{bottom:90.213501pt;}
.y105{bottom:90.446486pt;}
.y244{bottom:92.818681pt;}
.y1ab{bottom:93.577823pt;}
.y112{bottom:93.698153pt;}
.y273{bottom:93.992778pt;}
.y19d{bottom:94.215654pt;}
.y208{bottom:94.263613pt;}
.y165{bottom:94.364575pt;}
.y1eb{bottom:95.376330pt;}
.y253{bottom:95.399282pt;}
.y264{bottom:95.411305pt;}
.y77{bottom:96.000000pt;}
.y26{bottom:98.184000pt;}
.y268{bottom:98.639541pt;}
.y20b{bottom:101.564874pt;}
.y14d{bottom:102.057495pt;}
.y2a8{bottom:102.196000pt;}
.y16b{bottom:102.284470pt;}
.y111{bottom:102.988470pt;}
.y239{bottom:103.256786pt;}
.y1de{bottom:104.442646pt;}
.y1f9{bottom:104.692660pt;}
.y172{bottom:105.529806pt;}
.y24e{bottom:108.474901pt;}
.y101{bottom:108.758803pt;}
.y22a{bottom:108.944424pt;}
.y142{bottom:109.480033pt;}
.y1ac{bottom:110.143076pt;}
.y155{bottom:110.436758pt;}
.y260{bottom:111.606659pt;}
.y223{bottom:112.230474pt;}
.y110{bottom:112.278787pt;}
.y21c{bottom:113.184263pt;}
.y270{bottom:113.773307pt;}
.y76{bottom:114.065333pt;}
.y166{bottom:114.916615pt;}
.y205{bottom:115.401927pt;}
.y211{bottom:115.622547pt;}
.y25{bottom:116.249333pt;}
.y245{bottom:117.047694pt;}
.y2a7{bottom:118.136000pt;}
.y23a{bottom:118.981843pt;}
.y19e{bottom:118.991523pt;}
.y20c{bottom:119.515645pt;}
.y1e8{bottom:119.609373pt;}
.y10f{bottom:121.569103pt;}
.y194{bottom:121.618011pt;}
.y14e{bottom:126.069506pt;}
.y1ad{bottom:126.708329pt;}
.y173{bottom:128.249333pt;}
.y24f{bottom:128.540757pt;}
.y143{bottom:128.746565pt;}
.y2de{bottom:128.865333pt;}
.y269{bottom:128.920260pt;}
.y22b{bottom:130.011232pt;}
.y10e{bottom:130.859420pt;}
.y75{bottom:132.130667pt;}
.y97{bottom:132.132000pt;}
.y156{bottom:132.189430pt;}
.y1df{bottom:132.870416pt;}
.y102{bottom:133.975421pt;}
.y2a6{bottom:134.076000pt;}
.y24{bottom:134.316000pt;}
.y1d9{bottom:134.329078pt;}
.y23b{bottom:134.779636pt;}
.y261{bottom:134.960631pt;}
.y167{bottom:135.468655pt;}
.y21d{bottom:137.461940pt;}
.y20d{bottom:137.466415pt;}
.y10d{bottom:140.149737pt;}
.y271{bottom:140.796299pt;}
.y246{bottom:141.276706pt;}
.y204{bottom:141.580133pt;}
.y50{bottom:141.924000pt;}
.y224{bottom:142.453508pt;}
.y1ae{bottom:143.273582pt;}
.y19f{bottom:143.767393pt;}
.y2dd{bottom:146.930667pt;}
.y144{bottom:148.013097pt;}
.y250{bottom:148.606612pt;}
.y10c{bottom:149.440054pt;}
.y2a5{bottom:150.016000pt;}
.y14f{bottom:150.081516pt;}
.y74{bottom:150.197333pt;}
.y23c{bottom:150.541061pt;}
.y174{bottom:150.968859pt;}
.y22c{bottom:151.078040pt;}
.y1fa{bottom:152.289400pt;}
.y23{bottom:152.381333pt;}
.y199{bottom:152.555773pt;}
.y195{bottom:153.217035pt;}
.y1d3{bottom:153.365333pt;}
.y1e9{bottom:153.577923pt;}
.y157{bottom:153.942101pt;}
.y149{bottom:155.354928pt;}
.y20e{bottom:155.417186pt;}
.y168{bottom:156.020695pt;}
.y262{bottom:158.314602pt;}
.y10b{bottom:158.730370pt;}
.y103{bottom:159.192038pt;}
.y26a{bottom:159.200979pt;}
.y1af{bottom:159.838836pt;}
.y4f{bottom:159.989333pt;}
.y198{bottom:160.051630pt;}
.y1e0{bottom:161.298185pt;}
.y148{bottom:161.592026pt;}
.y2fd{bottom:161.617333pt;}
.y21e{bottom:161.739616pt;}
.y2dc{bottom:164.996000pt;}
.y96{bottom:165.240000pt;}
.y247{bottom:165.505719pt;}
.y23d{bottom:166.302487pt;}
.y276{bottom:166.863057pt;}
.y145{bottom:167.279629pt;}
.y197{bottom:167.543850pt;}
.y203{bottom:167.758340pt;}
.y272{bottom:167.819290pt;}
.y147{bottom:167.840034pt;}
.y10a{bottom:168.020687pt;}
.y73{bottom:168.262667pt;}
.y1a0{bottom:168.543263pt;}
.y251{bottom:168.672467pt;}
.y22{bottom:170.446667pt;}
.y1e3{bottom:170.903203pt;}
.y1d2{bottom:171.430667pt;}
.y22d{bottom:172.144848pt;}
.y275{bottom:173.111853pt;}
.y20f{bottom:173.367956pt;}
.y175{bottom:173.688385pt;}
.y150{bottom:174.093527pt;}
.y158{bottom:175.694772pt;}
.y1b0{bottom:176.404089pt;}
.y169{bottom:176.572735pt;}
.y2a4{bottom:176.805333pt;}
.y109{bottom:177.311004pt;}
.y4e{bottom:178.054667pt;}
.y1e2{bottom:178.393191pt;}
.y274{bottom:179.295178pt;}
.y2fc{bottom:179.682667pt;}
.y1da{bottom:181.556529pt;}
.y220{bottom:181.628977pt;}
.y263{bottom:181.668573pt;}
.y26c{bottom:181.787681pt;}
.y1ee{bottom:181.793761pt;}
.y23e{bottom:182.063912pt;}
.y104{bottom:184.408655pt;}
.y14a{bottom:186.186993pt;}
.y72{bottom:186.328000pt;}
.y19a{bottom:186.756302pt;}
.y1ea{bottom:187.546474pt;}
.y21{bottom:188.512000pt;}
.y252{bottom:188.738322pt;}
.y108{bottom:188.968147pt;}
.y1d1{bottom:189.496000pt;}
.ybc{bottom:190.412000pt;}
.y210{bottom:191.318727pt;}
.y1b1{bottom:192.969342pt;}
.y202{bottom:193.936547pt;}
.y2a3{bottom:194.870667pt;}
.y95{bottom:194.961333pt;}
.y2db{bottom:195.017333pt;}
.y176{bottom:196.407911pt;}
.y16d{bottom:196.558706pt;}
.y16a{bottom:197.124775pt;}
.y2fb{bottom:197.748000pt;}
.y1db{bottom:198.173565pt;}
.y23f{bottom:198.221257pt;}
.y265{bottom:198.246238pt;}
.y107{bottom:198.965456pt;}
.y1fb{bottom:199.886140pt;}
.y120{bottom:203.622499pt;}
.y181{bottom:203.634164pt;}
.y71{bottom:204.393333pt;}
.y4d{bottom:205.512000pt;}
.y20{bottom:206.577333pt;}
.y1d0{bottom:207.561333pt;}
.y1b2{bottom:209.534595pt;}
.y259{bottom:212.156000pt;}
.y2a2{bottom:212.937333pt;}
.y94{bottom:213.026667pt;}
.y2da{bottom:213.082667pt;}
.y215{bottom:214.384000pt;}
.y16c{bottom:214.830915pt;}
.y11f{bottom:215.587544pt;}
.y180{bottom:215.599894pt;}
.ybb{bottom:215.776000pt;}
.y1fc{bottom:216.578553pt;}
.y106{bottom:217.461397pt;}
.y70{bottom:222.458667pt;}
.y1f{bottom:224.644000pt;}
.y1cf{bottom:225.628000pt;}
.y1b3{bottom:226.099848pt;}
.y2fa{bottom:227.234667pt;}
.y258{bottom:230.221333pt;}
.y2a1{bottom:231.002667pt;}
.y2d9{bottom:231.148000pt;}
.y134{bottom:231.700519pt;}
.y121{bottom:231.964011pt;}
.y214{bottom:232.449333pt;}
.yba{bottom:233.841333pt;}
.y12d{bottom:240.609238pt;}
.y186{bottom:241.113443pt;}
.y1b4{bottom:242.665101pt;}
.y1e{bottom:242.709333pt;}
.y93{bottom:242.748000pt;}
.y4c{bottom:243.925333pt;}
.ydb{bottom:244.465333pt;}
.y2f9{bottom:245.300000pt;}
.y6f{bottom:245.838667pt;}
.y128{bottom:246.157318pt;}
.y182{bottom:247.431855pt;}
.y133{bottom:247.748414pt;}
.y257{bottom:248.288000pt;}
.y2a0{bottom:249.068000pt;}
.y135{bottom:250.062372pt;}
.y213{bottom:250.514667pt;}
.yfa{bottom:250.896000pt;}
.y18b{bottom:251.098342pt;}
.yb9{bottom:251.906667pt;}
.y122{bottom:252.887798pt;}
.y1a6{bottom:256.976000pt;}
.y1b5{bottom:259.230354pt;}
.yda{bottom:260.405333pt;}
.y1d{bottom:260.774667pt;}
.y92{bottom:260.814667pt;}
.y2d8{bottom:261.169333pt;}
.y13c{bottom:262.922927pt;}
.y12e{bottom:263.026374pt;}
.y2f8{bottom:263.365333pt;}
.y256{bottom:266.353333pt;}
.yf9{bottom:266.836000pt;}
.y4b{bottom:266.977333pt;}
.y29f{bottom:267.133333pt;}
.y136{bottom:268.424225pt;}
.y212{bottom:268.580000pt;}
.yb8{bottom:269.972000pt;}
.y2bf{bottom:272.364000pt;}
.y123{bottom:273.811586pt;}
.y1b6{bottom:275.795608pt;}
.y4a{bottom:276.954667pt;}
.y18c{bottom:277.223704pt;}
.y1c{bottom:278.840000pt;}
.y183{bottom:278.911807pt;}
.y2d7{bottom:279.234667pt;}
.y6e{bottom:281.969333pt;}
.y255{bottom:284.418667pt;}
.y29e{bottom:285.198667pt;}
.y12f{bottom:285.443510pt;}
.y137{bottom:286.786078pt;}
.yd9{bottom:288.006667pt;}
.yb7{bottom:288.037333pt;}
.y2be{bottom:288.304000pt;}
.y91{bottom:290.536000pt;}
.y1b7{bottom:292.360861pt;}
.y2f7{bottom:292.852000pt;}
.y124{bottom:294.735373pt;}
.yf8{bottom:295.289333pt;}
.y1b{bottom:296.905333pt;}
.y1f5{bottom:299.929333pt;}
.y254{bottom:302.484000pt;}
.y29d{bottom:303.265333pt;}
.y18d{bottom:303.349065pt;}
.y2bd{bottom:304.244000pt;}
.y138{bottom:305.147931pt;}
.yd8{bottom:306.072000pt;}
.yb6{bottom:306.104000pt;}
.y130{bottom:307.860646pt;}
.y1b8{bottom:308.926114pt;}
.y2d6{bottom:309.256000pt;}
.y6d{bottom:309.426667pt;}
.y184{bottom:310.391758pt;}
.y2f6{bottom:310.917333pt;}
.y49{bottom:313.085333pt;}
.y1a{bottom:314.972000pt;}
.y125{bottom:315.659161pt;}
.y2bc{bottom:320.184000pt;}
.yf7{bottom:320.652000pt;}
.y29c{bottom:321.330667pt;}
.y139{bottom:323.509784pt;}
.y90{bottom:323.644000pt;}
.yd7{bottom:324.137333pt;}
.yb5{bottom:324.169333pt;}
.y1b9{bottom:325.491367pt;}
.y2d5{bottom:327.321333pt;}
.y2f5{bottom:328.982667pt;}
.y18e{bottom:329.474427pt;}
.y286{bottom:329.860000pt;}
.y131{bottom:330.277782pt;}
.y48{bottom:331.150667pt;}
.y19{bottom:333.037333pt;}
.y234{bottom:333.833333pt;}
.y126{bottom:336.582948pt;}
.yf6{bottom:338.717333pt;}
.y29b{bottom:339.396000pt;}
.y8f{bottom:341.709333pt;}
.y13a{bottom:341.871637pt;}
.y185{bottom:341.871710pt;}
.y1ba{bottom:342.056620pt;}
.yd6{bottom:342.204000pt;}
.yb4{bottom:342.234667pt;}
.y285{bottom:345.800000pt;}
.y189{bottom:346.100898pt;}
.y6c{bottom:347.328000pt;}
.y2bb{bottom:347.785333pt;}
.y12b{bottom:348.888967pt;}
.y18{bottom:351.102667pt;}
.y132{bottom:352.694918pt;}
.y188{bottom:353.596755pt;}
.y12a{bottom:355.126065pt;}
.y18f{bottom:355.599789pt;}
.yf5{bottom:356.784000pt;}
.y29a{bottom:357.461333pt;}
.y127{bottom:357.506736pt;}
.y47{bottom:357.850667pt;}
.y1bb{bottom:358.621873pt;}
.y13b{bottom:360.233490pt;}
.yd5{bottom:360.269333pt;}
.yb3{bottom:360.300000pt;}
.y187{bottom:361.088975pt;}
.y2d4{bottom:361.326667pt;}
.y129{bottom:361.374073pt;}
.y2f4{bottom:361.384000pt;}
.y284{bottom:361.740000pt;}
.y6b{bottom:365.393333pt;}
.y2ba{bottom:365.850667pt;}
.y8e{bottom:369.166667pt;}
.yf4{bottom:374.849333pt;}
.y1bc{bottom:375.187127pt;}
.yd4{bottom:378.334667pt;}
.yb2{bottom:378.365333pt;}
.y2d3{bottom:379.393333pt;}
.y12c{bottom:379.721032pt;}
.y18a{bottom:380.301427pt;}
.y299{bottom:382.824000pt;}
.y6a{bottom:383.460000pt;}
.y17{bottom:383.630667pt;}
.y2b9{bottom:383.917333pt;}
.y283{bottom:388.529333pt;}
.y2f3{bottom:388.841333pt;}
.y1bd{bottom:391.752380pt;}
.yf3{bottom:392.914667pt;}
.y46{bottom:393.982667pt;}
.yd3{bottom:396.400000pt;}
.yb1{bottom:396.430667pt;}
.y69{bottom:401.525333pt;}
.y16{bottom:401.696000pt;}
.y15e{bottom:402.277333pt;}
.y298{bottom:404.853333pt;}
.y282{bottom:406.596000pt;}
.y2d2{bottom:406.849333pt;}
.y8d{bottom:407.970667pt;}
.y1be{bottom:408.317633pt;}
.y2b8{bottom:409.280000pt;}
.yf2{bottom:410.980000pt;}
.y45{bottom:412.048000pt;}
.yd2{bottom:414.465333pt;}
.yb0{bottom:414.497333pt;}
.y1a5{bottom:417.409333pt;}
.y68{bottom:419.590667pt;}
.y15{bottom:419.762667pt;}
.y15d{bottom:420.342667pt;}
.y281{bottom:424.661333pt;}
.y1bf{bottom:424.882886pt;}
.y8c{bottom:426.037333pt;}
.y2b7{bottom:427.345333pt;}
.y2f2{bottom:427.534667pt;}
.yf1{bottom:429.045333pt;}
.yaf{bottom:432.562667pt;}
.y1a4{bottom:435.476000pt;}
.y67{bottom:437.656000pt;}
.y14{bottom:437.828000pt;}
.y15c{bottom:438.408000pt;}
.y44{bottom:439.505333pt;}
.yd1{bottom:439.828000pt;}
.y1c0{bottom:441.448139pt;}
.y280{bottom:442.726667pt;}
.y8b{bottom:444.102667pt;}
.y2f1{bottom:445.601333pt;}
.y2d1{bottom:445.794667pt;}
.yf0{bottom:447.112000pt;}
.yae{bottom:450.628000pt;}
.y2b6{bottom:452.708000pt;}
.y1a3{bottom:453.541333pt;}
.y65{bottom:455.770667pt;}
.y13{bottom:455.893333pt;}
.y15b{bottom:456.473333pt;}
.y297{bottom:457.913333pt;}
.y1c1{bottom:458.013392pt;}
.yd0{bottom:461.857333pt;}
.y2f0{bottom:463.666667pt;}
.y2d0{bottom:463.861333pt;}
.yef{bottom:465.177333pt;}
.y27f{bottom:468.089333pt;}
.yad{bottom:468.693333pt;}
.y66{bottom:469.624000pt;}
.y1a2{bottom:471.606667pt;}
.y62{bottom:473.220000pt;}
.y12{bottom:473.958667pt;}
.y15a{bottom:474.538667pt;}
.y1c2{bottom:474.578645pt;}
.y8a{bottom:477.210667pt;}
.y2b5{bottom:478.070667pt;}
.y2ef{bottom:481.732000pt;}
.y2cf{bottom:481.926667pt;}
.y43{bottom:483.122667pt;}
.yee{bottom:483.242667pt;}
.yac{bottom:486.758667pt;}
.y64{bottom:487.037333pt;}
.y1a1{bottom:489.672000pt;}
.y27e{bottom:490.117333pt;}
.y1c3{bottom:491.143899pt;}
.y63{bottom:491.401333pt;}
.y159{bottom:492.604000pt;}
.y89{bottom:495.276000pt;}
.y296{bottom:496.858667pt;}
.y2ee{bottom:499.797333pt;}
.y2b4{bottom:500.098667pt;}
.yed{bottom:501.308000pt;}
.yab{bottom:504.824000pt;}
.y11{bottom:506.488000pt;}
.y1c4{bottom:507.709152pt;}
.y42{bottom:508.486667pt;}
.ycf{bottom:511.818667pt;}
.y295{bottom:514.924000pt;}
.y2ce{bottom:515.932000pt;}
.y2ed{bottom:517.862667pt;}
.yec{bottom:519.373333pt;}
.y61{bottom:519.512000pt;}
.y17f{bottom:521.021333pt;}
.yaa{bottom:522.890667pt;}
.y11e{bottom:523.953333pt;}
.y1c5{bottom:524.274405pt;}
.y10{bottom:524.553333pt;}
.y88{bottom:524.997333pt;}
.y41{bottom:526.552000pt;}
.y11d{bottom:528.252000pt;}
.y2ec{bottom:535.929333pt;}
.yeb{bottom:537.438667pt;}
.y60{bottom:537.577333pt;}
.y1c6{bottom:540.839658pt;}
.ya9{bottom:540.956000pt;}
.yf{bottom:542.618667pt;}
.y87{bottom:543.064000pt;}
.y27d{bottom:543.178667pt;}
.y40{bottom:544.617333pt;}
.y2cd{bottom:545.953333pt;}
.y11c{bottom:546.317333pt;}
.y294{bottom:548.929333pt;}
.yce{bottom:548.937333pt;}
.y2b3{bottom:553.158667pt;}
.y2eb{bottom:553.994667pt;}
.yea{bottom:555.505333pt;}
.y5f{bottom:555.642667pt;}
.y1c7{bottom:557.404911pt;}
.ya8{bottom:559.021333pt;}
.ye{bottom:560.684000pt;}
.y1f4{bottom:561.430667pt;}
.y3f{bottom:562.682667pt;}
.y11b{bottom:564.384000pt;}
.y86{bottom:572.785333pt;}
.ye9{bottom:573.570667pt;}
.y1c8{bottom:573.970164pt;}
.ycd{bottom:575.728000pt;}
.y2cc{bottom:575.973333pt;}
.y233{bottom:576.976000pt;}
.ya7{bottom:577.086667pt;}
.yd{bottom:578.749333pt;}
.y293{bottom:578.950667pt;}
.y27c{bottom:580.542667pt;}
.y3e{bottom:580.748000pt;}
.y2ea{bottom:581.452000pt;}
.y11a{bottom:582.449333pt;}
.y5e{bottom:583.100000pt;}
.y17e{bottom:585.230667pt;}
.y1c9{bottom:590.535418pt;}
.y85{bottom:590.850667pt;}
.y2b2{bottom:591.016000pt;}
.ycc{bottom:593.793333pt;}
.y2cb{bottom:594.040000pt;}
.ya6{bottom:595.152000pt;}
.yc{bottom:596.816000pt;}
.y27b{bottom:598.608000pt;}
.y1f3{bottom:598.796000pt;}
.ye8{bottom:598.933333pt;}
.y119{bottom:600.514667pt;}
.y17d{bottom:603.296000pt;}
.y3d{bottom:606.110667pt;}
.y2b1{bottom:606.957333pt;}
.y1ca{bottom:607.100671pt;}
.y292{bottom:608.970667pt;}
.ycb{bottom:611.858667pt;}
.ya5{bottom:613.218667pt;}
.y232{bottom:614.340000pt;}
.yb{bottom:614.881333pt;}
.y27a{bottom:616.673333pt;}
.y1f2{bottom:616.861333pt;}
.y30b{bottom:618.293333pt;}
.y118{bottom:618.580000pt;}
.y2e9{bottom:620.145333pt;}
.y84{bottom:620.572000pt;}
.ye7{bottom:620.961333pt;}
.y5d{bottom:621.001333pt;}
.y17c{bottom:621.361333pt;}
.y2b0{bottom:622.897333pt;}
.y291{bottom:627.037333pt;}
.y2ca{bottom:628.045333pt;}
.y3c{bottom:628.140000pt;}
.yca{bottom:629.924000pt;}
.ya4{bottom:631.284000pt;}
.y231{bottom:632.405333pt;}
.ya{bottom:632.946667pt;}
.y279{bottom:634.740000pt;}
.y1f1{bottom:634.926667pt;}
.y30a{bottom:636.358667pt;}
.y2e8{bottom:638.210667pt;}
.y83{bottom:638.637333pt;}
.y17b{bottom:639.426667pt;}
.y1cd{bottom:643.497003pt;}
.y5c{bottom:645.488000pt;}
.y2c9{bottom:646.110667pt;}
.yc9{bottom:647.989333pt;}
.ya3{bottom:649.349333pt;}
.y2af{bottom:649.686667pt;}
.yfb{bottom:649.929333pt;}
.y230{bottom:650.472000pt;}
.y9{bottom:651.012000pt;}
.y278{bottom:652.805333pt;}
.y1f0{bottom:652.992000pt;}
.y17a{bottom:657.493333pt;}
.y290{bottom:661.042667pt;}
.y2c8{bottom:664.176000pt;}
.yc8{bottom:666.054667pt;}
.y309{bottom:666.380000pt;}
.ya2{bottom:667.414667pt;}
.y2ae{bottom:667.752000pt;}
.y22f{bottom:668.537333pt;}
.y8{bottom:669.077333pt;}
.y2e7{bottom:670.612000pt;}
.y277{bottom:670.870667pt;}
.y1ef{bottom:671.058667pt;}
.y82{bottom:671.745333pt;}
.y5b{bottom:673.294667pt;}
.ye6{bottom:674.021333pt;}
.y28f{bottom:679.108000pt;}
.y3b{bottom:680.928000pt;}
.y308{bottom:684.445333pt;}
.ya1{bottom:685.480000pt;}
.y2ad{bottom:685.817333pt;}
.y22e{bottom:686.602667pt;}
.y7{bottom:687.144000pt;}
.y2e6{bottom:688.677333pt;}
.y15f{bottom:688.841333pt;}
.yc7{bottom:691.418667pt;}
.y2c7{bottom:691.633333pt;}
.y28e{bottom:697.173333pt;}
.y81{bottom:699.202667pt;}
.y5a{bottom:701.101333pt;}
.y25a{bottom:702.220000pt;}
.y1d4{bottom:702.406667pt;}
.y307{bottom:702.510667pt;}
.ya0{bottom:703.545333pt;}
.y2ac{bottom:703.882667pt;}
.y6{bottom:705.209333pt;}
.y2e5{bottom:706.742667pt;}
.yc6{bottom:709.484000pt;}
.ye5{bottom:711.878667pt;}
.y216{bottom:717.952000pt;}
.y3a{bottom:719.342667pt;}
.y9f{bottom:721.612000pt;}
.y5{bottom:723.274667pt;}
.y28d{bottom:724.630667pt;}
.ye4{bottom:727.818667pt;}
.y59{bottom:728.908000pt;}
.y2ab{bottom:729.246667pt;}
.y2c6{bottom:730.578667pt;}
.y306{bottom:732.532000pt;}
.yc5{bottom:734.846667pt;}
.y2e4{bottom:736.229333pt;}
.y39{bottom:737.408000pt;}
.y80{bottom:738.008000pt;}
.y9e{bottom:739.677333pt;}
.y2aa{bottom:747.312000pt;}
.y2c5{bottom:748.644000pt;}
.y305{bottom:750.597333pt;}
.yc4{bottom:752.912000pt;}
.y58{bottom:753.393333pt;}
.y31{bottom:753.872000pt;}
.y2e3{bottom:754.294667pt;}
.ye3{bottom:754.609333pt;}
.y4{bottom:755.802667pt;}
.y7f{bottom:756.073333pt;}
.y9d{bottom:757.742667pt;}
.y28c{bottom:763.576000pt;}
.y38{bottom:764.865333pt;}
.y2a9{bottom:765.377333pt;}
.yc3{bottom:770.977333pt;}
.ye2{bottom:772.674667pt;}
.y7e{bottom:774.138667pt;}
.y9c{bottom:775.808000pt;}
.y2c4{bottom:778.665333pt;}
.y304{bottom:780.618667pt;}
.y57{bottom:780.757333pt;}
.y28b{bottom:781.641333pt;}
.y2e2{bottom:783.781333pt;}
.y30{bottom:786.400000pt;}
.yc2{bottom:789.042667pt;}
.ye1{bottom:790.740000pt;}
.y9b{bottom:793.873333pt;}
.y2c3{bottom:796.730667pt;}
.y303{bottom:798.684000pt;}
.y56{bottom:798.822667pt;}
.y2e1{bottom:801.846667pt;}
.y7d{bottom:802.322667pt;}
.y37{bottom:803.280000pt;}
.y2f{bottom:804.466667pt;}
.y7c{bottom:805.918667pt;}
.yc1{bottom:807.109333pt;}
.ye0{bottom:808.805333pt;}
.y28a{bottom:811.662667pt;}
.y9a{bottom:811.938667pt;}
.y2c2{bottom:814.796000pt;}
.y3{bottom:817.568000pt;}
.y36{bottom:821.345333pt;}
.y2e{bottom:822.532000pt;}
.y7b{bottom:824.373333pt;}
.yc0{bottom:825.174667pt;}
.y55{bottom:826.629333pt;}
.ydf{bottom:826.870667pt;}
.y7a{bottom:827.969333pt;}
.y302{bottom:828.704000pt;}
.y289{bottom:829.728000pt;}
.y2e0{bottom:831.332000pt;}
.y99{bottom:837.302667pt;}
.y35{bottom:839.410667pt;}
.y2d{bottom:840.597333pt;}
.ybf{bottom:843.240000pt;}
.y54{bottom:844.694667pt;}
.yde{bottom:844.937333pt;}
.y301{bottom:846.770667pt;}
.y288{bottom:847.793333pt;}
.y2c1{bottom:848.802667pt;}
.y2df{bottom:849.398667pt;}
.y79{bottom:850.020000pt;}
.y34{bottom:857.476000pt;}
.y2{bottom:857.858667pt;}
.y2c{bottom:858.662667pt;}
.y98{bottom:859.330667pt;}
.y2c0{bottom:866.868000pt;}
.ybe{bottom:868.602667pt;}
.ydd{bottom:870.300000pt;}
.y53{bottom:872.501333pt;}
.y2b{bottom:876.728000pt;}
.y300{bottom:876.790667pt;}
.y287{bottom:881.800000pt;}
.y33{bottom:884.933333pt;}
.y1{bottom:887.238667pt;}
.y52{bottom:890.566667pt;}
.ybd{bottom:891.438667pt;}
.ydc{bottom:892.328000pt;}
.y2a{bottom:894.794667pt;}
.y2ff{bottom:894.856000pt;}
.y78{bottom:899.865333pt;}
.y32{bottom:912.390667pt;}
.y2fe{bottom:912.922667pt;}
.y51{bottom:917.930667pt;}
.y29{bottom:927.322667pt;}
.y28{bottom:945.388000pt;}
.hb{height:0.000000pt;}
.h2c{height:21.082499pt;}
.h26{height:21.085157pt;}
.h19{height:21.087573pt;}
.h35{height:21.090230pt;}
.h1f{height:21.092888pt;}
.h29{height:25.298999pt;}
.h24{height:25.302188pt;}
.h17{height:25.305087pt;}
.h21{height:25.306537pt;}
.h32{height:25.308276pt;}
.h1c{height:25.311466pt;}
.h2e{height:25.491796pt;}
.h12{height:25.621390pt;}
.ha{height:29.032418pt;}
.h2a{height:29.515499pt;}
.h25{height:29.519220pt;}
.h18{height:29.522602pt;}
.h22{height:29.524293pt;}
.h33{height:29.526323pt;}
.h1d{height:29.530043pt;}
.h2f{height:29.740428pt;}
.h13{height:29.891622pt;}
.h15{height:30.650460pt;}
.h2b{height:33.731999pt;}
.h27{height:33.736251pt;}
.h1a{height:33.740116pt;}
.h34{height:33.744369pt;}
.h1e{height:33.748621pt;}
.h30{height:33.989061pt;}
.h14{height:34.161853pt;}
.hf{height:39.903534pt;}
.h8{height:41.367307pt;}
.h9{height:43.636400pt;}
.h4{height:43.694582pt;}
.h10{height:43.976550pt;}
.h2{height:45.589163pt;}
.h36{height:46.085412pt;}
.he{height:47.782858pt;}
.h5{height:47.884561pt;}
.h39{height:49.381955pt;}
.hc{height:52.288621pt;}
.h6{height:52.293955pt;}
.h3{height:53.635660pt;}
.hd{height:58.078582pt;}
.h1{height:64.362642pt;}
.h7{height:80.727307pt;}
.h31{height:196.792672pt;}
.h28{height:213.222624pt;}
.h37{height:213.383041pt;}
.h38{height:213.409933pt;}
.h1b{height:229.887390pt;}
.h2d{height:231.742297pt;}
.h11{height:232.702230pt;}
.h20{height:394.609385pt;}
.h16{height:394.773713pt;}
.h23{height:658.657050pt;}
.h0{height:1056.000000pt;}
.w3{width:592.798733pt;}
.w8{width:592.803335pt;}
.w7{width:592.805380pt;}
.w5{width:592.809091pt;}
.w6{width:592.810000pt;}
.w9{width:592.819555pt;}
.w4{width:592.822237pt;}
.w2{width:592.823192pt;}
.w1{width:592.823744pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5a{left:8.723664pt;}
.x58{left:9.960031pt;}
.x5b{left:11.087307pt;}
.x59{left:12.269129pt;}
.x2e{left:14.393915pt;}
.x85{left:16.271006pt;}
.x2d{left:20.837853pt;}
.x74{left:22.930629pt;}
.x43{left:24.478139pt;}
.x61{left:26.611274pt;}
.x73{left:28.041386pt;}
.x62{left:30.501705pt;}
.x44{left:36.518954pt;}
.x32{left:38.641821pt;}
.x7b{left:39.881388pt;}
.x36{left:42.437722pt;}
.x8f{left:45.667327pt;}
.x2b{left:46.912786pt;}
.x86{left:49.202154pt;}
.x2f{left:50.756134pt;}
.x5c{left:54.761189pt;}
.x33{left:61.606518pt;}
.x5f{left:63.020435pt;}
.x63{left:67.788030pt;}
.x87{left:70.731961pt;}
.x71{left:74.745258pt;}
.x90{left:77.318836pt;}
.x2c{left:83.891389pt;}
.x75{left:86.912176pt;}
.x4{left:96.000000pt;}
.x20{left:99.558667pt;}
.x9{left:103.970667pt;}
.x84{left:105.428328pt;}
.x9d{left:106.845333pt;}
.x42{left:108.236001pt;}
.x23{left:109.326667pt;}
.x4c{left:110.345480pt;}
.xe{left:113.840000pt;}
.x9a{left:116.294667pt;}
.x5{left:117.694667pt;}
.x60{left:121.429188pt;}
.x9b{left:122.732000pt;}
.x2{left:124.674667pt;}
.x9e{left:128.302667pt;}
.xf{left:132.364000pt;}
.x98{left:138.062667pt;}
.x72{left:141.615906pt;}
.x29{left:147.274667pt;}
.x6{left:150.958667pt;}
.x34{left:153.148996pt;}
.x40{left:155.094679pt;}
.x35{left:162.841046pt;}
.x25{left:165.924000pt;}
.xa1{left:167.173333pt;}
.x26{left:178.013333pt;}
.x1d{left:192.696000pt;}
.x17{left:193.773333pt;}
.xa0{left:196.342667pt;}
.x22{left:197.837333pt;}
.x91{left:208.140165pt;}
.x39{left:209.307532pt;}
.x9f{left:212.596000pt;}
.x28{left:213.694667pt;}
.x38{left:215.671917pt;}
.x7d{left:219.777364pt;}
.x21{left:220.689333pt;}
.x7e{left:223.669222pt;}
.x1e{left:225.749333pt;}
.x89{left:226.850217pt;}
.x97{left:227.857333pt;}
.x66{left:230.419905pt;}
.x37{left:233.642214pt;}
.x7f{left:235.703973pt;}
.x65{left:236.782759pt;}
.x8{left:237.720000pt;}
.x5d{left:239.140730pt;}
.x1f{left:240.213333pt;}
.x8c{left:242.774818pt;}
.x4e{left:244.536697pt;}
.x4d{left:247.658835pt;}
.x1a{left:250.085333pt;}
.x30{left:252.614454pt;}
.x68{left:254.653290pt;}
.x18{left:255.752000pt;}
.x1{left:258.078667pt;}
.x67{left:261.799005pt;}
.x57{left:264.522628pt;}
.x9c{left:269.240000pt;}
.x88{left:271.515939pt;}
.x64{left:275.034900pt;}
.x24{left:284.198667pt;}
.x7c{left:285.599035pt;}
.x27{left:291.889333pt;}
.x1c{left:296.729333pt;}
.x48{left:301.822826pt;}
.x52{left:306.825304pt;}
.x46{left:312.267596pt;}
.x51{left:313.190054pt;}
.x47{left:316.159944pt;}
.x99{left:319.169333pt;}
.x78{left:320.126714pt;}
.x2a{left:323.006667pt;}
.x10{left:324.796000pt;}
.x3{left:329.724000pt;}
.x4f{left:331.161380pt;}
.x4b{left:334.034733pt;}
.x56{left:334.957499pt;}
.x16{left:341.781333pt;}
.x76{left:346.478430pt;}
.x45{left:349.956491pt;}
.x31{left:350.892340pt;}
.xa{left:357.621333pt;}
.x8b{left:362.260583pt;}
.x8a{left:366.789525pt;}
.xb{left:370.993333pt;}
.x69{left:372.861535pt;}
.xa2{left:388.226667pt;}
.x12{left:393.046667pt;}
.x13{left:394.416000pt;}
.x11{left:398.504000pt;}
.x41{left:400.768000pt;}
.x50{left:402.862827pt;}
.x7{left:404.384000pt;}
.x1b{left:407.730667pt;}
.x94{left:409.573241pt;}
.x3c{left:410.672311pt;}
.x6d{left:415.158153pt;}
.x14{left:416.481333pt;}
.x82{left:418.694191pt;}
.xc{left:420.586667pt;}
.x15{left:423.298667pt;}
.x8d{left:424.314247pt;}
.x6c{left:425.597779pt;}
.x3a{left:428.642608pt;}
.x83{left:430.728942pt;}
.x3f{left:432.438509pt;}
.x8e{left:436.347482pt;}
.x19{left:440.118667pt;}
.x6f{left:441.518549pt;}
.x6a{left:443.151615pt;}
.x6e{left:446.290490pt;}
.x4a{left:447.248938pt;}
.x3b{left:451.607305pt;}
.x49{left:453.305723pt;}
.x93{left:454.224116pt;}
.x92{left:460.677925pt;}
.x70{left:463.043176pt;}
.x6b{left:486.460776pt;}
.x77{left:489.231995pt;}
.x80{left:497.373540pt;}
.x95{left:527.928981pt;}
.x55{left:537.054044pt;}
.x5e{left:538.438012pt;}
.x53{left:540.176181pt;}
.x3d{left:545.095466pt;}
.x81{left:546.310373pt;}
.x54{left:548.146894pt;}
.x3e{left:552.841833pt;}
.x96{left:555.590267pt;}
.x79{left:565.226527pt;}
.x7a{left:582.880620pt;}
.xd{left:701.517333pt;}
}




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