
    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_5b2c6dd1683cbc59e9fcc320.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_d74d9c0c050d9386b6806d0a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;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_eb75e7a18876d94d3a793963.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_f28a427585383c41eb9d9a4b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.943000;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_7242b1d64dac18ea086b0413.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_f46faaa2b5c14b3bb08ad4c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.773000;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_7141cfee5f31d2bcdfe3692c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_1e6068e167c8bbe94757d7d6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_2e4fa0fcc648898d3c188ee7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.726000;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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{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:-19.530000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:16.019520px;}
.v7{vertical-align:17.358000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.vd{vertical-align:24.415560px;}
.vb{vertical-align:25.667640px;}
.va{vertical-align:26.961600px;}
.v8{vertical-align:28.171800px;}
.v9{vertical-align:29.926800px;}
.v3{vertical-align:31.302000px;}
.v6{vertical-align:33.252000px;}
.v5{vertical-align:36.108000px;}
.lsa{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.000583px;}
.ls50{letter-spacing:0.000800px;}
.ls2f{letter-spacing:0.000929px;}
.ls49{letter-spacing:0.000994px;}
.ls48{letter-spacing:0.001195px;}
.ls46{letter-spacing:0.001484px;}
.ls14{letter-spacing:0.001932px;}
.ls45{letter-spacing:0.002544px;}
.ls2{letter-spacing:0.004200px;}
.ls47{letter-spacing:0.004800px;}
.ls29{letter-spacing:0.572693px;}
.ls11{letter-spacing:0.717483px;}
.ls13{letter-spacing:0.723483px;}
.ls27{letter-spacing:2.988600px;}
.ls10{letter-spacing:2.989200px;}
.ls0{letter-spacing:2.998354px;}
.ls3a{letter-spacing:10.486390px;}
.ls39{letter-spacing:10.491070px;}
.ls30{letter-spacing:11.024153px;}
.ls31{letter-spacing:11.029073px;}
.ls55{letter-spacing:11.860604px;}
.ls2d{letter-spacing:11.951700px;}
.ls9{letter-spacing:11.954850px;}
.ls2e{letter-spacing:11.957700px;}
.ls3b{letter-spacing:12.010108px;}
.ls2c{letter-spacing:12.105081px;}
.ls2b{letter-spacing:12.530693px;}
.ls4a{letter-spacing:13.318717px;}
.ls53{letter-spacing:13.365141px;}
.ls40{letter-spacing:13.448400px;}
.ls51{letter-spacing:13.451102px;}
.ls3f{letter-spacing:13.454400px;}
.ls43{letter-spacing:13.605502px;}
.ls52{letter-spacing:13.662635px;}
.ls4d{letter-spacing:13.678971px;}
.ls4c{letter-spacing:13.691576px;}
.ls44{letter-spacing:13.756282px;}
.ls56{letter-spacing:14.368047px;}
.lse{letter-spacing:14.635228px;}
.ls1f{letter-spacing:14.677717px;}
.ls25{letter-spacing:14.713970px;}
.ls23{letter-spacing:14.718320px;}
.ls24{letter-spacing:14.740545px;}
.ls19{letter-spacing:14.773586px;}
.ls22{letter-spacing:14.914200px;}
.ls2a{letter-spacing:14.941200px;}
.ls1{letter-spacing:14.944200px;}
.ls16{letter-spacing:15.056264px;}
.ls8{letter-spacing:15.057655px;}
.ls1d{letter-spacing:15.088006px;}
.ls1c{letter-spacing:15.141612px;}
.lsd{letter-spacing:15.173176px;}
.ls3e{letter-spacing:15.191308px;}
.ls15{letter-spacing:15.206616px;}
.ls1e{letter-spacing:15.209960px;}
.ls21{letter-spacing:15.246894px;}
.ls18{letter-spacing:15.308118px;}
.ls42{letter-spacing:15.479812px;}
.ls1b{letter-spacing:15.741612px;}
.lsc{letter-spacing:16.029847px;}
.ls20{letter-spacing:16.123965px;}
.ls3d{letter-spacing:16.394553px;}
.ls7{letter-spacing:17.641612px;}
.ls12{letter-spacing:17.935200px;}
.ls54{letter-spacing:18.091576px;}
.ls41{letter-spacing:18.115106px;}
.ls4e{letter-spacing:18.126871px;}
.ls4f{letter-spacing:18.750400px;}
.ls17{letter-spacing:19.367294px;}
.lsb{letter-spacing:19.771024px;}
.ls3c{letter-spacing:20.059259px;}
.ls1a{letter-spacing:20.847494px;}
.ls4b{letter-spacing:25.285694px;}
.ls5{letter-spacing:70.236600px;}
.ls4{letter-spacing:70.242600px;}
.ls6{letter-spacing:72.353510px;}
.ls32{letter-spacing:88.523044px;}
.ls33{letter-spacing:91.361884px;}
.lsf{letter-spacing:94.286700px;}
.ls35{letter-spacing:156.783124px;}
.ls36{letter-spacing:170.923204px;}
.ls34{letter-spacing:176.753404px;}
.ls38{letter-spacing:194.854084px;}
.ls37{letter-spacing:198.809764px;}
.ls28{letter-spacing:507.907133px;}
.ls26{letter-spacing:1392.904090px;}
.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;}
}
.ws2{word-spacing:-14.943900px;}
.ws4{word-spacing:-14.355754px;}
.wsb9{word-spacing:-13.449600px;}
.ws19{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.ws89{word-spacing:-11.028672px;}
.wsf{word-spacing:-4.184292px;}
.wsa6{word-spacing:-3.048556px;}
.ws11{word-spacing:-2.988780px;}
.wsb6{word-spacing:-2.749678px;}
.wsed{word-spacing:-2.528525px;}
.wseb{word-spacing:-2.522652px;}
.ws47{word-spacing:-2.510575px;}
.wse3{word-spacing:-2.474726px;}
.wsf3{word-spacing:-2.420928px;}
.ws37{word-spacing:-2.391024px;}
.ws60{word-spacing:-2.271473px;}
.ws102{word-spacing:-2.044339px;}
.ws61{word-spacing:-2.032370px;}
.wsaf{word-spacing:-1.972595px;}
.wse{word-spacing:-1.912819px;}
.ws71{word-spacing:-1.853044px;}
.ws2f{word-spacing:-1.793268px;}
.wsa5{word-spacing:-1.733492px;}
.wsfa{word-spacing:-1.613952px;}
.ws7f{word-spacing:-1.613941px;}
.wsec{word-spacing:-1.560154px;}
.ws77{word-spacing:-1.554166px;}
.wsbb{word-spacing:-1.506355px;}
.ws5e{word-spacing:-1.494390px;}
.ws5d{word-spacing:-1.434614px;}
.wse5{word-spacing:-1.344960px;}
.ws4f{word-spacing:-1.315063px;}
.ws5b{word-spacing:-1.195512px;}
.ws10{word-spacing:-1.135736px;}
.wsd6{word-spacing:-1.129766px;}
.ws81{word-spacing:-1.075961px;}
.ws107{word-spacing:-1.022170px;}
.ws76{word-spacing:-1.016185px;}
.ws6c{word-spacing:-0.896634px;}
.ws14{word-spacing:-0.836858px;}
.ws5f{word-spacing:-0.777083px;}
.wsbe{word-spacing:-0.753178px;}
.ws24{word-spacing:-0.717307px;}
.ws9e{word-spacing:-0.657532px;}
.wscd{word-spacing:-0.645581px;}
.ws67{word-spacing:-0.597756px;}
.ws80{word-spacing:-0.537980px;}
.ws5a{word-spacing:-0.478205px;}
.wsf2{word-spacing:-0.376589px;}
.wsc{word-spacing:-0.358654px;}
.wsc0{word-spacing:-0.322790px;}
.wsf1{word-spacing:-0.317914px;}
.ws34{word-spacing:-0.298878px;}
.wsba{word-spacing:-0.268992px;}
.ws45{word-spacing:-0.239102px;}
.ws58{word-spacing:-0.229038px;}
.wsbd{word-spacing:-0.215194px;}
.ws23{word-spacing:-0.179327px;}
.wsc7{word-spacing:-0.161395px;}
.ws8f{word-spacing:-0.143462px;}
.ws13{word-spacing:-0.119551px;}
.wsbc{word-spacing:-0.107597px;}
.ws1{word-spacing:-0.059776px;}
.wsc6{word-spacing:-0.053798px;}
.wse0{word-spacing:-0.006998px;}
.wsd5{word-spacing:-0.006288px;}
.ws110{word-spacing:-0.005866px;}
.ws94{word-spacing:-0.005810px;}
.ws93{word-spacing:-0.003596px;}
.wsea{word-spacing:-0.002755px;}
.ws8a{word-spacing:-0.001094px;}
.wsff{word-spacing:-0.000998px;}
.ws0{word-spacing:0.000000px;}
.ws5{word-spacing:0.000350px;}
.ws18{word-spacing:0.000629px;}
.ws6{word-spacing:0.002201px;}
.ws3{word-spacing:0.002375px;}
.ws98{word-spacing:0.047821px;}
.ws95{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.ws8b{word-spacing:0.088229px;}
.wsc5{word-spacing:0.107597px;}
.ws17{word-spacing:0.119551px;}
.ws8e{word-spacing:0.143462px;}
.ws96{word-spacing:0.161395px;}
.ws4a{word-spacing:0.179327px;}
.ws97{word-spacing:0.191282px;}
.ws1c{word-spacing:0.207436px;}
.wsbf{word-spacing:0.215194px;}
.wsb{word-spacing:0.239102px;}
.ws82{word-spacing:0.268992px;}
.ws15{word-spacing:0.298878px;}
.ws63{word-spacing:0.358654px;}
.ws9d{word-spacing:0.418429px;}
.ws111{word-spacing:0.430387px;}
.ws29{word-spacing:0.537980px;}
.wsc4{word-spacing:0.537984px;}
.ws88{word-spacing:0.597583px;}
.wsd{word-spacing:0.597756px;}
.ws26{word-spacing:0.657532px;}
.ws10b{word-spacing:0.699379px;}
.ws7b{word-spacing:0.717307px;}
.ws6a{word-spacing:0.777083px;}
.ws49{word-spacing:0.836858px;}
.ws43{word-spacing:0.896634px;}
.ws10d{word-spacing:0.914573px;}
.ws54{word-spacing:0.956410px;}
.ws92{word-spacing:0.956412px;}
.ws10f{word-spacing:0.968371px;}
.ws53{word-spacing:1.016185px;}
.ws1b{word-spacing:1.075961px;}
.wse9{word-spacing:1.129766px;}
.ws6b{word-spacing:1.135736px;}
.wsdb{word-spacing:1.183565px;}
.ws12{word-spacing:1.195512px;}
.wsc2{word-spacing:1.237363px;}
.ws51{word-spacing:1.255288px;}
.ws99{word-spacing:1.315063px;}
.ws91{word-spacing:1.344960px;}
.wsa8{word-spacing:1.374839px;}
.wse8{word-spacing:1.398758px;}
.ws2b{word-spacing:1.434614px;}
.ws52{word-spacing:1.494390px;}
.ws4c{word-spacing:1.554166px;}
.wsc1{word-spacing:1.560154px;}
.ws44{word-spacing:1.613941px;}
.ws90{word-spacing:1.613952px;}
.wscb{word-spacing:1.667750px;}
.ws73{word-spacing:1.673717px;}
.ws31{word-spacing:1.733492px;}
.ws50{word-spacing:1.793268px;}
.wsb2{word-spacing:1.853044px;}
.wsa9{word-spacing:1.912819px;}
.wsaa{word-spacing:1.972595px;}
.ws7a{word-spacing:2.032370px;}
.ws101{word-spacing:2.044339px;}
.ws39{word-spacing:2.092146px;}
.wscc{word-spacing:2.098138px;}
.wse4{word-spacing:2.151936px;}
.wsdd{word-spacing:2.205734px;}
.wsad{word-spacing:2.211697px;}
.ws9c{word-spacing:2.271473px;}
.wsfd{word-spacing:2.313331px;}
.wsb4{word-spacing:2.331248px;}
.ws55{word-spacing:2.391024px;}
.ws9f{word-spacing:2.450800px;}
.wse6{word-spacing:2.474726px;}
.ws2d{word-spacing:2.510575px;}
.wsda{word-spacing:2.636122px;}
.ws16{word-spacing:2.689902px;}
.ws87{word-spacing:2.725774px;}
.ws106{word-spacing:2.743718px;}
.ws20{word-spacing:2.749678px;}
.ws103{word-spacing:2.797517px;}
.wsae{word-spacing:2.809453px;}
.wsc3{word-spacing:2.851315px;}
.ws78{word-spacing:2.869229px;}
.ws10a{word-spacing:2.958912px;}
.wsa4{word-spacing:2.988780px;}
.wsac{word-spacing:3.048556px;}
.wsa3{word-spacing:3.108331px;}
.wsd7{word-spacing:3.120307px;}
.wsfc{word-spacing:3.220579px;}
.wsf6{word-spacing:3.221914px;}
.wsde{word-spacing:3.222845px;}
.wsee{word-spacing:3.226397px;}
.wse7{word-spacing:3.226886px;}
.ws108{word-spacing:3.227837px;}
.ws72{word-spacing:3.227882px;}
.wsd1{word-spacing:3.227904px;}
.wsd3{word-spacing:3.228000px;}
.ws105{word-spacing:3.228624px;}
.wsf5{word-spacing:3.335501px;}
.wsa{word-spacing:3.347434px;}
.ws28{word-spacing:3.407209px;}
.ws4e{word-spacing:3.526760px;}
.wsf8{word-spacing:3.550694px;}
.ws1e{word-spacing:3.583475px;}
.ws1f{word-spacing:3.586536px;}
.wsce{word-spacing:3.658291px;}
.wscf{word-spacing:3.712090px;}
.ws2e{word-spacing:3.765863px;}
.wsb0{word-spacing:3.825638px;}
.ws30{word-spacing:3.885414px;}
.ws10e{word-spacing:3.927283px;}
.ws9b{word-spacing:3.945190px;}
.ws1d{word-spacing:4.064741px;}
.ws69{word-spacing:4.124516px;}
.wsf4{word-spacing:4.142477px;}
.ws59{word-spacing:4.184292px;}
.wse1{word-spacing:4.196275px;}
.ws21{word-spacing:4.244068px;}
.wsd8{word-spacing:4.250074px;}
.ws48{word-spacing:4.303843px;}
.ws40{word-spacing:4.423394px;}
.wsb3{word-spacing:4.542946px;}
.wsdc{word-spacing:4.572864px;}
.wsa2{word-spacing:4.602721px;}
.wsd9{word-spacing:4.626662px;}
.wsd0{word-spacing:4.680461px;}
.ws33{word-spacing:4.722272px;}
.wsa7{word-spacing:4.782048px;}
.ws1a{word-spacing:4.841824px;}
.ws7d{word-spacing:5.021150px;}
.ws2a{word-spacing:5.140702px;}
.wsf9{word-spacing:5.164646px;}
.ws42{word-spacing:5.200477px;}
.ws100{word-spacing:5.272243px;}
.ws7c{word-spacing:5.320028px;}
.wsfb{word-spacing:5.326042px;}
.wse2{word-spacing:5.379840px;}
.ws9{word-spacing:5.499355px;}
.wsb1{word-spacing:5.618906px;}
.ws46{word-spacing:5.738458px;}
.ws10c{word-spacing:5.756429px;}
.ws25{word-spacing:5.798233px;}
.ws65{word-spacing:5.917784px;}
.ws74{word-spacing:5.977560px;}
.ws9a{word-spacing:6.037336px;}
.wsd4{word-spacing:6.079219px;}
.ws56{word-spacing:6.216662px;}
.wsd2{word-spacing:6.240614px;}
.ws6f{word-spacing:6.276438px;}
.ws35{word-spacing:6.575316px;}
.ws3c{word-spacing:6.635092px;}
.ws27{word-spacing:6.694867px;}
.ws70{word-spacing:6.874194px;}
.ws109{word-spacing:6.886195px;}
.wsa0{word-spacing:6.993745px;}
.ws4b{word-spacing:7.053521px;}
.wsa1{word-spacing:7.113296px;}
.wsb5{word-spacing:7.173072px;}
.ws64{word-spacing:7.232848px;}
.ws66{word-spacing:7.292623px;}
.wsab{word-spacing:7.471950px;}
.ws68{word-spacing:7.591501px;}
.ws36{word-spacing:7.651277px;}
.ws7e{word-spacing:7.830604px;}
.ws62{word-spacing:8.129482px;}
.wsb8{word-spacing:8.231155px;}
.ws104{word-spacing:8.392550px;}
.ws79{word-spacing:8.428360px;}
.wsf7{word-spacing:8.500147px;}
.wsb7{word-spacing:8.607744px;}
.ws75{word-spacing:8.846789px;}
.ws5c{word-spacing:9.145667px;}
.ws4d{word-spacing:9.205442px;}
.ws3e{word-spacing:9.265218px;}
.ws41{word-spacing:9.324994px;}
.wsef{word-spacing:9.414720px;}
.ws32{word-spacing:9.504320px;}
.ws57{word-spacing:9.564096px;}
.ws6e{word-spacing:10.460730px;}
.ws3a{word-spacing:10.580281px;}
.ws6d{word-spacing:11.058486px;}
.wsf0{word-spacing:11.835648px;}
.ws38{word-spacing:12.791978px;}
.ws3d{word-spacing:13.509286px;}
.wsfe{word-spacing:14.686963px;}
.wsdf{word-spacing:15.816730px;}
.ws22{word-spacing:16.856719px;}
.ws3b{word-spacing:19.905275px;}
.ws3f{word-spacing:27.377225px;}
.ws8{word-spacing:46.324500px;}
.ws8c{word-spacing:164.503588px;}
.ws8d{word-spacing:173.408788px;}
.wsc9{word-spacing:281.365632px;}
.wsca{word-spacing:281.796019px;}
.wsc8{word-spacing:302.293210px;}
.ws85{word-spacing:418.228762px;}
.ws86{word-spacing:418.282560px;}
.ws84{word-spacing:431.732160px;}
.ws83{word-spacing:472.027162px;}
._1{margin-left:-7.962163px;}
._2{margin-left:-6.726214px;}
._5{margin-left:-5.217031px;}
._1d{margin-left:-4.060181px;}
._3{margin-left:-3.001696px;}
._0{margin-left:-1.936742px;}
._bf{width:1.666174px;}
._4{width:2.998396px;}
._bd{width:10.849282px;}
._6{width:12.427430px;}
._b{width:13.473433px;}
._b6{width:14.556290px;}
._7{width:15.709133px;}
._8{width:17.645875px;}
._a{width:18.673910px;}
._15{width:19.749871px;}
._9{width:20.981236px;}
._11{width:21.997421px;}
._f{width:23.432035px;}
._16{width:24.747098px;}
._b9{width:25.769434px;}
._12{width:26.899020px;}
._1b{width:27.998904px;}
._bc{width:29.169934px;}
._14{width:30.425780px;}
._17{width:31.441966px;}
._13{width:33.175458px;}
._1a{width:34.729624px;}
._e{width:35.949059px;}
._1e{width:37.675182px;}
._10{width:39.153018px;}
._b8{width:40.169203px;}
._1c{width:41.675587px;}
._be{width:44.933402px;}
._19{width:49.255094px;}
._18{width:50.869036px;}
._a6{width:71.765600px;}
._81{width:72.884707px;}
._82{width:89.509966px;}
._6b{width:91.737777px;}
._6c{width:96.431480px;}
._6a{width:102.301961px;}
._20{width:110.932301px;}
._a4{width:116.768767px;}
._69{width:118.461890px;}
._6f{width:125.790960px;}
._4e{width:129.568067px;}
._4a{width:131.215966px;}
._89{width:139.745840px;}
._21{width:148.806374px;}
._4b{width:151.788318px;}
._ba{width:153.755827px;}
._22{width:158.274893px;}
._66{width:160.513722px;}
._76{width:165.149038px;}
._49{width:169.384262px;}
._70{width:173.635412px;}
._7e{width:174.662325px;}
._6d{width:176.007122px;}
._83{width:182.616158px;}
._62{width:183.796854px;}
._71{width:185.619544px;}
._65{width:186.801845px;}
._5c{width:188.396617px;}
._4f{width:190.489375px;}
._84{width:192.384154px;}
._67{width:196.030610px;}
._86{width:198.869014px;}
._53{width:200.614623px;}
._5b{width:202.195907px;}
._6e{width:206.765543px;}
._5f{width:208.006134px;}
._52{width:210.023574px;}
._57{width:212.605897px;}
._40{width:215.247398px;}
._b1{width:216.359949px;}
._75{width:217.456361px;}
._7b{width:218.661445px;}
._4d{width:221.563331px;}
._79{width:223.554815px;}
._42{width:226.276070px;}
._51{width:227.341279px;}
._73{width:228.994170px;}
._72{width:231.700824px;}
._a7{width:232.986168px;}
._41{width:234.453427px;}
._60{width:238.343052px;}
._2a{width:239.725670px;}
._24{width:242.146598px;}
._7f{width:243.467870px;}
._a9{width:244.474993px;}
._7a{width:245.768967px;}
._74{width:247.008489px;}
._56{width:250.614467px;}
._26{width:253.175270px;}
._2c{width:255.590947px;}
._5a{width:257.877251px;}
._2b{width:261.352627px;}
._77{width:262.659928px;}
._8a{width:263.673490px;}
._2e{width:266.624870px;}
._5d{width:267.803055px;}
._37{width:269.045798px;}
._9b{width:270.589321px;}
._b0{width:271.697993px;}
._87{width:272.761116px;}
._8c{width:274.702162px;}
._39{width:280.074470px;}
._55{width:282.086531px;}
._8e{width:283.789788px;}
._97{width:284.886806px;}
._44{width:286.799270px;}
._25{width:288.251827px;}
._90{width:289.964768px;}
._58{width:292.012335px;}
._96{width:296.345258px;}
._95{width:297.846100px;}
._bb{width:298.957709px;}
._28{width:301.701427px;}
._3d{width:310.524365px;}
._85{width:313.092924px;}
._2d{width:315.151027px;}
._88{width:318.022786px;}
._a3{width:319.865854px;}
._91{width:322.566599px;}
._5e{width:325.938393px;}
._a0{width:327.535285px;}
._aa{width:329.229270px;}
._a5{width:330.945933px;}
._a8{width:333.313891px;}
._8d{width:334.609908px;}
._7c{width:336.317001px;}
._9d{width:337.378151px;}
._a1{width:338.530266px;}
._38{width:342.050227px;}
._78{width:345.976354px;}
._9a{width:347.314939px;}
._9e{width:348.947182px;}
._98{width:351.108802px;}
._ac{width:352.430269px;}
._8f{width:354.874422px;}
._7d{width:356.829849px;}
._8b{width:359.267831px;}
._b5{width:360.902395px;}
._94{width:362.137474px;}
._63{width:366.222876px;}
._b2{width:368.159667px;}
._93{width:370.333508px;}
._b3{width:372.656195px;}
._af{width:378.112371px;}
._99{width:380.109921px;}
._ad{width:382.490484px;}
._ab{width:387.112369px;}
._45{width:389.123827px;}
._9c{width:390.591448px;}
._80{width:397.517454px;}
._b4{width:405.671176px;}
._68{width:407.036119px;}
._3e{width:410.266598px;}
._43{width:413.215840px;}
._92{width:416.310311px;}
._9f{width:417.394100px;}
._a2{width:420.413378px;}
._3f{width:421.727318px;}
._ae{width:429.824469px;}
._3b{width:431.678362px;}
._50{width:435.860836px;}
._59{width:437.907367px;}
._54{width:442.918351px;}
._32{width:458.577562px;}
._64{width:465.604865px;}
._34{width:472.834138px;}
._61{width:476.206595px;}
._30{width:485.476762px;}
._4c{width:499.641169px;}
._35{width:518.618830px;}
._36{width:580.812890px;}
._3a{width:642.514291px;}
._46{width:645.634598px;}
._29{width:674.312294px;}
._27{width:679.663850px;}
._23{width:681.442733px;}
._47{width:687.866342px;}
._3c{width:696.689280px;}
._2f{width:765.174643px;}
._33{width:781.852147px;}
._31{width:831.561869px;}
._c{width:954.162932px;}
._b7{width:2049.255300px;}
._d{width:2073.165300px;}
._48{width:3528.939300px;}
._1f{width:3552.855300px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(41,66,37);}
.fsc{font-size:34.311096px;}
.fs9{font-size:35.865600px;}
.fs4{font-size:41.842800px;}
.fsd{font-size:41.962752px;}
.fsb{font-size:44.114688px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fsa{font-size:48.418560px;}
.fs8{font-size:49.829400px;}
.fs5{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs7{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y2{bottom:14.814771px;}
.y33{bottom:63.780000px;}
.y1cf{bottom:101.325000px;}
.y291{bottom:108.957000px;}
.y22a{bottom:111.315000px;}
.y1a0{bottom:113.503500px;}
.y1ce{bottom:115.522500px;}
.y173{bottom:118.539000px;}
.yca{bottom:119.058000px;}
.y32{bottom:119.803500px;}
.y1f1{bottom:119.863500px;}
.y144{bottom:121.083000px;}
.y208{bottom:123.121500px;}
.yf2{bottom:123.241500px;}
.y60{bottom:123.585000px;}
.y8c{bottom:126.589500px;}
.y19f{bottom:127.699500px;}
.y290{bottom:128.325000px;}
.y1cd{bottom:129.718500px;}
.y229{bottom:129.891000px;}
.y25d{bottom:130.573500px;}
.y172{bottom:132.736500px;}
.yc9{bottom:139.321500px;}
.y31{bottom:140.067000px;}
.y1f0{bottom:140.128500px;}
.y143{bottom:141.978750px;}
.y207{bottom:143.386500px;}
.yf1{bottom:143.505000px;}
.y5f{bottom:143.850000px;}
.y171{bottom:146.932500px;}
.y28f{bottom:147.691500px;}
.y19e{bottom:147.898680px;}
.y8b{bottom:148.347000px;}
.y228{bottom:148.465500px;}
.y142{bottom:149.359200px;}
.y1cc{bottom:149.564190px;}
.y25c{bottom:149.941500px;}
.y19d{bottom:154.623090px;}
.y1cb{bottom:155.960580px;}
.yb5{bottom:157.134000px;}
.yc8{bottom:159.585000px;}
.y30{bottom:160.330500px;}
.y1ef{bottom:160.392000px;}
.y206{bottom:163.650000px;}
.yf0{bottom:163.770000px;}
.y227{bottom:167.041500px;}
.y28e{bottom:167.059500px;}
.y170{bottom:167.131680px;}
.y25b{bottom:169.308000px;}
.y141{bottom:171.701700px;}
.y5e{bottom:173.080500px;}
.y16f{bottom:173.856090px;}
.y19c{bottom:174.980820px;}
.y1ca{bottom:175.324080px;}
.yb4{bottom:177.399000px;}
.y140{bottom:179.082150px;}
.yc7{bottom:179.850000px;}
.y2f{bottom:180.595500px;}
.y1ee{bottom:180.657000px;}
.y19b{bottom:181.704000px;}
.y1c9{bottom:181.720470px;}
.y8a{bottom:183.555000px;}
.y205{bottom:183.913500px;}
.yef{bottom:184.033500px;}
.y226{bottom:185.616000px;}
.y28d{bottom:186.427500px;}
.y25a{bottom:188.676000px;}
.y16e{bottom:194.213820px;}
.yb3{bottom:197.662500px;}
.yc6{bottom:200.113500px;}
.y2e{bottom:200.859000px;}
.y1ed{bottom:200.920500px;}
.y16d{bottom:200.937000px;}
.y1c8{bottom:201.085140px;}
.y13f{bottom:201.426000px;}
.y19a{bottom:202.061730px;}
.y89{bottom:203.820000px;}
.y204{bottom:204.178500px;}
.y225{bottom:204.192000px;}
.yee{bottom:204.297000px;}
.y28c{bottom:205.794000px;}
.y1c7{bottom:207.481530px;}
.y5d{bottom:207.900000px;}
.y259{bottom:208.044000px;}
.y199{bottom:208.786140px;}
.y13e{bottom:208.806450px;}
.yb2{bottom:217.927500px;}
.yc5{bottom:220.378500px;}
.y11d{bottom:220.996500px;}
.y2d{bottom:221.124000px;}
.y1ec{bottom:221.184000px;}
.y16c{bottom:221.294730px;}
.y88{bottom:224.083500px;}
.y203{bottom:224.442000px;}
.yed{bottom:224.562000px;}
.y28b{bottom:225.162000px;}
.y1c6{bottom:226.845030px;}
.y258{bottom:227.410500px;}
.y16b{bottom:228.019140px;}
.y198{bottom:229.143870px;}
.y13d{bottom:231.148950px;}
.y224{bottom:232.722000px;}
.y1c5{bottom:233.621670px;}
.y11c{bottom:235.192500px;}
.y197{bottom:236.266800px;}
.yb1{bottom:238.191000px;}
.y13c{bottom:238.968150px;}
.yc4{bottom:240.642000px;}
.y2c{bottom:241.387500px;}
.y1eb{bottom:241.449000px;}
.y5c{bottom:242.719500px;}
.y87{bottom:244.348500px;}
.y28a{bottom:244.528500px;}
.y202{bottom:244.707000px;}
.yec{bottom:244.825500px;}
.y257{bottom:246.778500px;}
.y16a{bottom:248.376870px;}
.y1c4{bottom:252.606090px;}
.y169{bottom:255.499800px;}
.y196{bottom:256.224780px;}
.y11b{bottom:256.968000px;}
.yb0{bottom:258.454500px;}
.y1c3{bottom:259.002480px;}
.y13b{bottom:260.873250px;}
.yc3{bottom:260.905500px;}
.y2b{bottom:261.651000px;}
.y1ea{bottom:261.712500px;}
.y195{bottom:262.949190px;}
.y5b{bottom:262.983000px;}
.y289{bottom:263.896500px;}
.y86{bottom:264.612000px;}
.y201{bottom:264.970500px;}
.yeb{bottom:265.090500px;}
.y256{bottom:266.145000px;}
.y223{bottom:267.541500px;}
.y13a{bottom:268.253700px;}
.y11a{bottom:273.481500px;}
.y168{bottom:275.457780px;}
.y1c2{bottom:278.365980px;}
.yaf{bottom:278.719500px;}
.yc2{bottom:281.170500px;}
.y2a{bottom:281.916000px;}
.y1e9{bottom:281.977500px;}
.y167{bottom:282.182190px;}
.y222{bottom:282.739500px;}
.y5a{bottom:283.248000px;}
.y288{bottom:283.264500px;}
.y194{bottom:283.306920px;}
.y85{bottom:284.875500px;}
.y1c1{bottom:285.142620px;}
.y200{bottom:285.234000px;}
.yea{bottom:285.354000px;}
.y255{bottom:285.513000px;}
.y119{bottom:289.995000px;}
.y193{bottom:290.429850px;}
.y139{bottom:290.596200px;}
.y221{bottom:297.937500px;}
.y138{bottom:298.415400px;}
.y118{bottom:298.681500px;}
.yae{bottom:298.983000px;}
.y29{bottom:302.179500px;}
.y1e8{bottom:302.241000px;}
.y166{bottom:302.539920px;}
.y287{bottom:302.631000px;}
.y59{bottom:303.511500px;}
.y1c0{bottom:304.127040px;}
.y254{bottom:304.881000px;}
.y84{bottom:305.140500px;}
.y1ff{bottom:305.499000px;}
.ye9{bottom:305.617500px;}
.y165{bottom:309.662850px;}
.y192{bottom:310.387830px;}
.yc1{bottom:310.401000px;}
.y1bf{bottom:310.903680px;}
.y220{bottom:313.135500px;}
.y191{bottom:317.511990px;}
.yad{bottom:319.248000px;}
.y137{bottom:320.320500px;}
.y286{bottom:321.999000px;}
.y28{bottom:322.444500px;}
.y1e7{bottom:322.504500px;}
.y117{bottom:323.020500px;}
.y58{bottom:323.775000px;}
.y253{bottom:324.247500px;}
.y83{bottom:325.404000px;}
.y1fe{bottom:325.762500px;}
.ye8{bottom:325.882500px;}
.y136{bottom:328.139700px;}
.y164{bottom:329.620830px;}
.y1be{bottom:329.886930px;}
.y116{bottom:331.708500px;}
.y1bd{bottom:336.663570px;}
.y162{bottom:336.744990px;}
.y21f{bottom:337.299000px;}
.y190{bottom:337.469970px;}
.yac{bottom:339.511500px;}
.y285{bottom:341.367000px;}
.y27{bottom:342.708000px;}
.y1e6{bottom:342.769500px;}
.y163{bottom:343.161900px;}
.y252{bottom:343.615500px;}
.y57{bottom:344.040000px;}
.y18f{bottom:344.592900px;}
.yc0{bottom:345.220500px;}
.y1fd{bottom:346.027500px;}
.ye7{bottom:346.146000px;}
.y135{bottom:350.043450px;}
.y21e{bottom:352.498500px;}
.y82{bottom:354.634500px;}
.y1bc{bottom:355.647990px;}
.y115{bottom:356.047500px;}
.y161{bottom:356.702970px;}
.y134{bottom:357.862650px;}
.yab{bottom:359.775000px;}
.y284{bottom:360.733500px;}
.y1bb{bottom:362.424630px;}
.y26{bottom:362.971500px;}
.y251{bottom:362.982000px;}
.y1e5{bottom:363.033000px;}
.y160{bottom:363.825900px;}
.y56{bottom:364.303500px;}
.y18e{bottom:364.550880px;}
.ybf{bottom:365.484000px;}
.y1fc{bottom:366.291000px;}
.ye6{bottom:366.411000px;}
.y21d{bottom:367.696500px;}
.y18d{bottom:371.675040px;}
.y114{bottom:372.561000px;}
.y133{bottom:379.767750px;}
.yaa{bottom:380.040000px;}
.y283{bottom:380.101500px;}
.y250{bottom:382.350000px;}
.y21c{bottom:382.894500px;}
.y25{bottom:383.236500px;}
.y1e4{bottom:383.298000px;}
.y15f{bottom:383.783880px;}
.y55{bottom:384.568500px;}
.ybe{bottom:385.749000px;}
.y1fb{bottom:386.554500px;}
.ye5{bottom:386.674500px;}
.y1ba{bottom:386.967720px;}
.y132{bottom:387.586950px;}
.y113{bottom:389.073000px;}
.y81{bottom:389.454000px;}
.y15e{bottom:390.908040px;}
.y1b8{bottom:393.379320px;}
.y18b{bottom:397.476750px;}
.y21b{bottom:398.092500px;}
.y282{bottom:399.468000px;}
.y1b7{bottom:399.789750px;}
.ya9{bottom:400.303500px;}
.y24f{bottom:401.718000px;}
.y24{bottom:403.500000px;}
.y1e3{bottom:403.561500px;}
.y18a{bottom:404.217150px;}
.y54{bottom:404.832000px;}
.y112{bottom:405.586500px;}
.ybd{bottom:406.012500px;}
.y1fa{bottom:406.819500px;}
.ye4{bottom:406.938000px;}
.y80{bottom:409.719000px;}
.y18c{bottom:410.956320px;}
.y1b9{bottom:412.611780px;}
.y21a{bottom:413.290500px;}
.y131{bottom:415.973400px;}
.y15c{bottom:416.709750px;}
.y281{bottom:418.836000px;}
.ya8{bottom:420.568500px;}
.y24e{bottom:421.084500px;}
.y111{bottom:422.100000px;}
.y15b{bottom:423.450150px;}
.y23{bottom:423.765000px;}
.y1e2{bottom:423.825000px;}
.y53{bottom:425.095500px;}
.ybc{bottom:426.276000px;}
.y1f9{bottom:427.083000px;}
.ye3{bottom:427.203000px;}
.y219{bottom:428.488500px;}
.y7f{bottom:429.982500px;}
.y15d{bottom:430.189320px;}
.y189{bottom:430.403850px;}
.y110{bottom:430.786500px;}
.y1b6{bottom:431.109480px;}
.y188{bottom:437.127030px;}
.y130{bottom:437.316900px;}
.y1b5{bottom:437.505870px;}
.y280{bottom:438.204000px;}
.y24d{bottom:440.452500px;}
.ya7{bottom:440.832000px;}
.y22{bottom:444.028500px;}
.y1e1{bottom:444.090000px;}
.y12f{bottom:444.697350px;}
.y52{bottom:445.360500px;}
.ybb{bottom:446.541000px;}
.y1f8{bottom:447.348000px;}
.ye2{bottom:447.466500px;}
.y15a{bottom:449.635620px;}
.y7e{bottom:450.246000px;}
.y218{bottom:452.652000px;}
.y10f{bottom:455.125500px;}
.y159{bottom:456.360030px;}
.y1b4{bottom:456.870540px;}
.y187{bottom:457.484760px;}
.y27f{bottom:457.570500px;}
.y24c{bottom:459.819000px;}
.ya6{bottom:461.095500px;}
.y1b3{bottom:463.265760px;}
.y10e{bottom:463.326000px;}
.y186{bottom:464.209170px;}
.y1e0{bottom:464.353500px;}
.y51{bottom:465.624000px;}
.yba{bottom:466.804500px;}
.y12e{bottom:467.041200px;}
.y1f7{bottom:467.611500px;}
.ye1{bottom:467.731500px;}
.y217{bottom:467.850000px;}
.y7c{bottom:470.511000px;}
.y12d{bottom:474.420300px;}
.y7d{bottom:475.935000px;}
.y158{bottom:476.717760px;}
.y27e{bottom:476.938500px;}
.y24b{bottom:479.187000px;}
.y21{bottom:479.460000px;}
.y1b2{bottom:482.630430px;}
.y157{bottom:483.442170px;}
.y185{bottom:484.566900px;}
.y1df{bottom:484.618500px;}
.y50{bottom:485.889000px;}
.yb9{bottom:487.069500px;}
.y1f6{bottom:487.875000px;}
.ye0{bottom:487.995000px;}
.y10d{bottom:488.152500px;}
.y1b1{bottom:489.026820px;}
.ya5{bottom:490.326000px;}
.y7a{bottom:490.774500px;}
.y184{bottom:491.290080px;}
.y216{bottom:492.015000px;}
.y7b{bottom:496.200000px;}
.y27d{bottom:496.305000px;}
.y12c{bottom:496.764150px;}
.y24a{bottom:498.555000px;}
.y156{bottom:503.798670px;}
.y12b{bottom:504.144600px;}
.y10c{bottom:504.666000px;}
.y1de{bottom:504.882000px;}
.y4f{bottom:506.152500px;}
.y20{bottom:506.584500px;}
.y215{bottom:507.213000px;}
.y1f5{bottom:508.140000px;}
.ydf{bottom:508.258500px;}
.y1b0{bottom:508.391490px;}
.y155{bottom:510.523080px;}
.y79{bottom:511.039500px;}
.y183{bottom:511.647810px;}
.y1af{bottom:515.166960px;}
.y27c{bottom:515.673000px;}
.yb8{bottom:516.300000px;}
.y249{bottom:517.921500px;}
.y182{bottom:518.771970px;}
.y10b{bottom:521.178000px;}
.y214{bottom:522.411000px;}
.ya4{bottom:525.145500px;}
.y4e{bottom:526.416000px;}
.y12a{bottom:526.488450px;}
.y1f4{bottom:528.403500px;}
.yde{bottom:528.523500px;}
.y1f{bottom:529.623000px;}
.y154{bottom:530.880810px;}
.y77{bottom:531.303000px;}
.y1ae{bottom:534.151380px;}
.y129{bottom:534.306300px;}
.y27b{bottom:535.041000px;}
.y78{bottom:536.727000px;}
.y248{bottom:537.289500px;}
.y213{bottom:537.609000px;}
.y10a{bottom:537.691500px;}
.y153{bottom:538.004970px;}
.y181{bottom:538.729950px;}
.y1ad{bottom:540.547770px;}
.ya3{bottom:545.410500px;}
.y180{bottom:545.453130px;}
.y4d{bottom:546.681000px;}
.y1e{bottom:547.780500px;}
.y1f3{bottom:548.667000px;}
.ydd{bottom:548.787000px;}
.yb7{bottom:551.119500px;}
.y76{bottom:551.566500px;}
.y212{bottom:552.807000px;}
.y109{bottom:554.205000px;}
.y1dd{bottom:554.376000px;}
.y27a{bottom:554.407500px;}
.y128{bottom:556.211400px;}
.y247{bottom:556.656000px;}
.y152{bottom:557.962950px;}
.y1ac{bottom:559.912440px;}
.y1d{bottom:561.055500px;}
.y108{bottom:561.691500px;}
.y127{bottom:563.591850px;}
.y151{bottom:564.686130px;}
.ya2{bottom:565.674000px;}
.y17f{bottom:565.810860px;}
.y1ab{bottom:566.687910px;}
.y4c{bottom:566.944500px;}
.y211{bottom:568.005000px;}
.y1f2{bottom:568.932000px;}
.ydc{bottom:569.052000px;}
.y75{bottom:571.831500px;}
.y17e{bottom:572.935020px;}
.y279{bottom:573.775500px;}
.y246{bottom:576.024000px;}
.y210{bottom:583.203000px;}
.y1c{bottom:584.094000px;}
.y150{bottom:585.043860px;}
.y1aa{bottom:585.672330px;}
.y126{bottom:585.935700px;}
.ya1{bottom:585.939000px;}
.y4b{bottom:587.209500px;}
.y107{bottom:587.230500px;}
.y1dc{bottom:589.195500px;}
.ydb{bottom:589.315500px;}
.y73{bottom:592.095000px;}
.y14f{bottom:592.168020px;}
.y1a9{bottom:592.448970px;}
.y17d{bottom:592.893000px;}
.y278{bottom:593.142000px;}
.y125{bottom:593.753550px;}
.y245{bottom:595.392000px;}
.y106{bottom:595.918500px;}
.y1b{bottom:597.369000px;}
.y74{bottom:597.520500px;}
.y20f{bottom:598.401000px;}
.y17c{bottom:600.015930px;}
.y294{bottom:600.231000px;}
.ya0{bottom:606.202500px;}
.y4a{bottom:607.473000px;}
.y1db{bottom:609.460500px;}
.yda{bottom:609.579000px;}
.y1a8{bottom:611.433390px;}
.y14e{bottom:612.126000px;}
.y72{bottom:612.360000px;}
.y277{bottom:612.510000px;}
.y20e{bottom:613.599000px;}
.y244{bottom:614.758500px;}
.y1a{bottom:615.526500px;}
.y124{bottom:615.658650px;}
.y1a7{bottom:618.208860px;}
.y14c{bottom:619.248930px;}
.y293{bottom:619.599000px;}
.y17b{bottom:619.973910px;}
.y105{bottom:620.257500px;}
.y123{bottom:623.477850px;}
.y14d{bottom:625.665840px;}
.y9f{bottom:626.466000px;}
.y17a{bottom:627.098070px;}
.y49{bottom:627.736500px;}
.y20d{bottom:628.798500px;}
.y104{bottom:628.944000px;}
.y1da{bottom:629.724000px;}
.yd9{bottom:629.844000px;}
.y276{bottom:631.878000px;}
.y70{bottom:632.623500px;}
.y243{bottom:634.126500px;}
.y1a6{bottom:637.193280px;}
.y71{bottom:638.047500px;}
.y19{bottom:638.565000px;}
.y292{bottom:638.967000px;}
.y14b{bottom:639.206910px;}
.y1a5{bottom:643.969920px;}
.y20c{bottom:643.996500px;}
.y122{bottom:645.382950px;}
.y14a{bottom:646.331070px;}
.y9e{bottom:646.731000px;}
.y179{bottom:647.056050px;}
.y48{bottom:648.001500px;}
.y1d9{bottom:649.987500px;}
.yd8{bottom:650.107500px;}
.y275{bottom:651.244500px;}
.y18{bottom:651.840000px;}
.y6f{bottom:652.887000px;}
.y121{bottom:653.200800px;}
.y103{bottom:653.283000px;}
.y242{bottom:653.493000px;}
.y178{bottom:654.178980px;}
.y20b{bottom:659.194500px;}
.y102{bottom:661.971000px;}
.y149{bottom:666.287820px;}
.y9d{bottom:666.994500px;}
.y47{bottom:668.265000px;}
.y1a4{bottom:668.514180px;}
.y17{bottom:669.997500px;}
.y1d8{bottom:670.252500px;}
.yd7{bottom:670.372500px;}
.y274{bottom:670.612500px;}
.y241{bottom:672.861000px;}
.y6d{bottom:673.152000px;}
.y148{bottom:673.411980px;}
.y20a{bottom:674.392500px;}
.y16{bottom:674.878500px;}
.y1a2{bottom:674.924610px;}
.y120{bottom:675.105900px;}
.y6e{bottom:678.576000px;}
.y176{bottom:679.981920px;}
.y1a1{bottom:681.336210px;}
.y11f{bottom:682.925100px;}
.y101{bottom:686.310000px;}
.y175{bottom:686.721090px;}
.y9c{bottom:687.258000px;}
.y15{bottom:688.153500px;}
.y46{bottom:688.530000px;}
.y273{bottom:689.979000px;}
.y1d7{bottom:690.516000px;}
.yd6{bottom:690.636000px;}
.y240{bottom:692.229000px;}
.y6c{bottom:693.415500px;}
.y177{bottom:693.461490px;}
.y1a3{bottom:694.157070px;}
.y146{bottom:699.214920px;}
.y145{bottom:705.954090px;}
.y9b{bottom:707.523000px;}
.y45{bottom:708.793500px;}
.y272{bottom:709.347000px;}
.y100{bottom:710.025000px;}
.y1d6{bottom:710.781000px;}
.yd5{bottom:710.899500px;}
.y14{bottom:711.193500px;}
.y11e{bottom:711.311550px;}
.y23f{bottom:711.595500px;}
.y147{bottom:712.694490px;}
.y6b{bottom:722.646000px;}
.y13{bottom:724.468500px;}
.y9a{bottom:727.786500px;}
.y174{bottom:728.389500px;}
.y271{bottom:728.715000px;}
.y44{bottom:729.057000px;}
.y23e{bottom:730.963500px;}
.y1d5{bottom:731.044500px;}
.yd4{bottom:731.164500px;}
.y12{bottom:742.624500px;}
.yff{bottom:747.622500px;}
.y99{bottom:748.051500px;}
.y270{bottom:748.081500px;}
.y43{bottom:749.322000px;}
.y23d{bottom:750.330000px;}
.y1d4{bottom:751.308000px;}
.yd3{bottom:751.428000px;}
.y6a{bottom:757.465500px;}
.y11{bottom:765.664500px;}
.y26f{bottom:767.449500px;}
.y98{bottom:768.315000px;}
.y42{bottom:769.585500px;}
.y23c{bottom:769.698000px;}
.y1d3{bottom:771.573000px;}
.yd2{bottom:771.693000px;}
.y69{bottom:777.730500px;}
.y10{bottom:778.939500px;}
.y26e{bottom:786.816000px;}
.y97{bottom:788.578500px;}
.y23b{bottom:789.066000px;}
.y41{bottom:789.850500px;}
.y1d2{bottom:791.836500px;}
.yd1{bottom:791.956500px;}
.y68{bottom:797.994000px;}
.yfe{bottom:798.445500px;}
.yfd{bottom:800.923500px;}
.yf{bottom:801.978000px;}
.y26d{bottom:806.184000px;}
.y23a{bottom:808.432500px;}
.y96{bottom:808.843500px;}
.y40{bottom:810.114000px;}
.y1d1{bottom:812.101500px;}
.yd0{bottom:812.220000px;}
.ye{bottom:815.253000px;}
.yfc{bottom:817.809000px;}
.y67{bottom:818.257500px;}
.y26c{bottom:825.552000px;}
.y239{bottom:827.800500px;}
.y95{bottom:829.107000px;}
.y1d0{bottom:832.365000px;}
.ycf{bottom:832.485000px;}
.yd{bottom:838.291500px;}
.y66{bottom:838.522500px;}
.y3f{bottom:839.344500px;}
.y26b{bottom:844.918500px;}
.y238{bottom:847.167000px;}
.y94{bottom:849.372000px;}
.yc{bottom:851.566500px;}
.yfb{bottom:852.628500px;}
.yce{bottom:852.748500px;}
.y209{bottom:858.337500px;}
.y26a{bottom:864.286500px;}
.y237{bottom:866.535000px;}
.y93{bottom:869.635500px;}
.yfa{bottom:872.893500px;}
.yf7{bottom:873.013500px;}
.y65{bottom:873.730500px;}
.yb{bottom:874.606500px;}
.ycd{bottom:881.979000px;}
.y269{bottom:883.653000px;}
.y236{bottom:885.903000px;}
.y92{bottom:889.899000px;}
.yf9{bottom:893.157000px;}
.yf6{bottom:893.277000px;}
.y64{bottom:895.488000px;}
.ya{bottom:896.847000px;}
.ycc{bottom:898.866000px;}
.y268{bottom:903.021000px;}
.y235{bottom:905.269500px;}
.y91{bottom:910.164000px;}
.yf8{bottom:913.422000px;}
.yf5{bottom:913.540500px;}
.y3e{bottom:915.753000px;}
.y9{bottom:917.112000px;}
.y267{bottom:922.389000px;}
.y90{bottom:930.427500px;}
.y234{bottom:933.603000px;}
.ycb{bottom:933.685500px;}
.y8{bottom:937.375500px;}
.y63{bottom:937.512000px;}
.yb6{bottom:939.394500px;}
.y266{bottom:941.755500px;}
.yf4{bottom:942.771000px;}
.y8f{bottom:950.692500px;}
.y3d{bottom:953.949000px;}
.y62{bottom:959.269500px;}
.yf3{bottom:959.658000px;}
.y265{bottom:961.123500px;}
.y233{bottom:969.400500px;}
.y8e{bottom:970.956000px;}
.y3c{bottom:974.214000px;}
.y61{bottom:979.534500px;}
.y7{bottom:980.055000px;}
.y264{bottom:980.490000px;}
.y232{bottom:987.976500px;}
.y3b{bottom:994.477500px;}
.y263{bottom:999.858000px;}
.y8d{bottom:1000.186500px;}
.y231{bottom:1006.551000px;}
.y6{bottom:1010.451000px;}
.y3a{bottom:1014.742500px;}
.y262{bottom:1019.226000px;}
.y230{bottom:1025.127000px;}
.y39{bottom:1035.006000px;}
.y261{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y22f{bottom:1043.701500px;}
.y38{bottom:1055.269500px;}
.y260{bottom:1057.960500px;}
.y22e{bottom:1062.277500px;}
.y4{bottom:1071.244500px;}
.y37{bottom:1075.534500px;}
.y25f{bottom:1077.327000px;}
.y22d{bottom:1080.853500px;}
.y36{bottom:1095.798000px;}
.y25e{bottom:1096.695000px;}
.y22c{bottom:1099.428000px;}
.y3{bottom:1100.145000px;}
.y35{bottom:1116.063000px;}
.y22b{bottom:1118.004000px;}
.y1{bottom:1137.954000px;}
.y34{bottom:1168.366500px;}
.h29{height:30.339070px;}
.h8{height:30.461558px;}
.h2b{height:30.548883px;}
.h1a{height:31.691498px;}
.h23{height:31.894919px;}
.h25{height:32.115493px;}
.he{height:33.072749px;}
.h19{height:34.813397px;}
.h1c{height:35.006619px;}
.hc{height:35.052500px;}
.h1e{height:35.248712px;}
.h13{height:38.896243px;}
.h9{height:39.165235px;}
.h14{height:39.434227px;}
.hd{height:39.614278px;}
.ha{height:43.217759px;}
.h1b{height:43.468157px;}
.hb{height:43.516637px;}
.h4{height:43.815515px;}
.h30{height:49.117939px;}
.h2{height:50.931027px;}
.h7{height:54.547601px;}
.h10{height:54.768749px;}
.hf{height:54.774749px;}
.h2a{height:54.964443px;}
.h2c{height:54.969123px;}
.h6{height:55.352206px;}
.h28{height:55.980790px;}
.h2f{height:55.985470px;}
.h2d{height:56.485443px;}
.h2e{height:56.490123px;}
.h24{height:57.783133px;}
.h27{height:58.851599px;}
.h22{height:58.856519px;}
.h26{height:59.382133px;}
.h1d{height:63.420512px;}
.h1f{height:63.425912px;}
.h20{height:65.175512px;}
.h21{height:65.180912px;}
.h15{height:70.467235px;}
.h16{height:70.473235px;}
.h18{height:72.417235px;}
.h17{height:75.273235px;}
.h5{height:77.792486px;}
.h3{height:102.503837px;}
.h11{height:892.914000px;}
.h12{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:198.814733px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:1262.835000px;}
.w4{width:1263.000000px;}
.x0{left:0.000000px;}
.x2{left:58.056593px;}
.x41{left:112.561500px;}
.x1{left:114.802500px;}
.x65{left:119.385000px;}
.x5{left:122.110500px;}
.x3{left:123.306000px;}
.x4{left:146.170500px;}
.x3a{left:148.203000px;}
.x50{left:152.625000px;}
.x7b{left:156.760500px;}
.xbd{left:162.135000px;}
.xb7{left:163.212000px;}
.xb5{left:164.268000px;}
.x51{left:167.568000px;}
.xbf{left:171.477000px;}
.x10{left:173.458500px;}
.xc0{left:175.183500px;}
.x66{left:177.009000px;}
.x7a{left:179.916000px;}
.x4b{left:181.138500px;}
.xc1{left:182.655000px;}
.x8a{left:183.804000px;}
.x6{left:191.296500px;}
.x4c{left:196.081500px;}
.x67{left:197.491500px;}
.x4d{left:199.822500px;}
.x61{left:207.675000px;}
.x8d{left:212.018970px;}
.xaa{left:213.190500px;}
.x4e{left:214.765500px;}
.xac{left:215.991000px;}
.x3f{left:217.063500px;}
.x95{left:218.763060px;}
.x89{left:220.328850px;}
.xa3{left:226.261740px;}
.xae{left:228.870000px;}
.x1e{left:230.587500px;}
.x40{left:232.008000px;}
.xba{left:233.676000px;}
.x87{left:235.371750px;}
.x76{left:236.830350px;}
.x8c{left:238.233960px;}
.x22{left:244.068000px;}
.x1f{left:245.532000px;}
.x8e{left:246.703740px;}
.x20{left:249.342000px;}
.xab{left:250.699500px;}
.xcf{left:252.129000px;}
.xa4{left:253.484130px;}
.x94{left:255.691350px;}
.xc5{left:257.082000px;}
.x23{left:259.011000px;}
.xa2{left:261.388650px;}
.x24{left:262.695000px;}
.x21{left:264.286500px;}
.x63{left:265.440000px;}
.xb6{left:266.475000px;}
.x70{left:268.738500px;}
.x92{left:270.734250px;}
.x96{left:273.596460px;}
.xa1{left:275.697750px;}
.x25{left:277.639500px;}
.x98{left:279.192960px;}
.x97{left:281.608680px;}
.xa6{left:283.743840px;}
.xa5{left:286.041720px;}
.xb1{left:289.221000px;}
.x2e{left:292.503000px;}
.x71{left:293.667000px;}
.x75{left:295.421700px;}
.x77{left:296.450400px;}
.x3b{left:297.709500px;}
.xaf{left:300.624000px;}
.x79{left:303.155850px;}
.xb2{left:304.164000px;}
.x78{left:305.807250px;}
.xe{left:307.072500px;}
.x74{left:311.932200px;}
.xb0{left:315.568500px;}
.x73{left:320.084850px;}
.x72{left:321.601500px;}
.x26{left:324.096000px;}
.x27{left:339.040500px;}
.x28{left:342.850500px;}
.x6b{left:345.525000px;}
.x33{left:347.952000px;}
.x6e{left:351.721500px;}
.x29{left:357.795000px;}
.x34{left:360.897000px;}
.x49{left:362.535000px;}
.x6f{left:365.265000px;}
.xf{left:372.166500px;}
.x4a{left:377.479500px;}
.x6c{left:382.393500px;}
.x6a{left:387.127500px;}
.x69{left:388.384500px;}
.x59{left:391.513500px;}
.x5a{left:395.290500px;}
.x3c{left:397.473000px;}
.x6d{left:398.982000px;}
.x3d{left:409.765500px;}
.x68{left:418.417500px;}
.x53{left:422.835000px;}
.x4f{left:425.593500px;}
.x8b{left:433.598550px;}
.x88{left:435.864210px;}
.x54{left:437.778000px;}
.x37{left:446.389500px;}
.x7c{left:447.693120px;}
.x1b{left:453.558000px;}
.x1c{left:468.502500px;}
.x19{left:471.565500px;}
.x2a{left:474.343500px;}
.x3e{left:477.259500px;}
.x1a{left:479.037000px;}
.x93{left:482.174940px;}
.x99{left:485.968980px;}
.x2b{left:489.288000px;}
.x2c{left:493.098000px;}
.x31{left:501.642000px;}
.x2d{left:508.042500px;}
.x5d{left:512.893500px;}
.x32{left:517.386000px;}
.x55{left:519.730500px;}
.x7d{left:523.297530px;}
.xb3{left:524.493000px;}
.x5e{left:527.836500px;}
.x56{left:534.675000px;}
.x57{left:538.392000px;}
.xb4{left:539.436000px;}
.xa8{left:542.373000px;}
.x9a{left:546.450960px;}
.x58{left:553.335000px;}
.xbe{left:558.660000px;}
.xa9{left:561.127500px;}
.x9b{left:562.133640px;}
.x9c{left:566.051970px;}
.x15{left:570.790500px;}
.xb8{left:572.595000px;}
.xb9{left:576.366000px;}
.x16{left:578.263500px;}
.xa{left:583.095000px;}
.x17{left:585.802500px;}
.x2f{left:589.609500px;}
.x18{left:593.274000px;}
.xbb{left:597.387000px;}
.x30{left:603.193500px;}
.xce{left:606.975000px;}
.xcd{left:615.832500px;}
.xa7{left:618.003000px;}
.x7e{left:623.943510px;}
.xc3{left:625.467000px;}
.x38{left:630.246000px;}
.x8{left:633.883500px;}
.x8f{left:639.923670px;}
.x7f{left:641.302500px;}
.x5b{left:651.865500px;}
.x5f{left:656.836500px;}
.x62{left:661.093500px;}
.x7{left:662.683500px;}
.x5c{left:664.156500px;}
.xcc{left:665.725500px;}
.x47{left:667.056000px;}
.xc9{left:668.730000px;}
.xc8{left:670.453500px;}
.x60{left:671.781000px;}
.x48{left:682.000500px;}
.x64{left:684.337500px;}
.xad{left:686.065500px;}
.x42{left:687.900000px;}
.xca{left:689.224500px;}
.x9d{left:693.007500px;}
.x9e{left:696.454320px;}
.x9f{left:697.749510px;}
.x43{left:700.191000px;}
.xc2{left:702.268500px;}
.x91{left:707.502330px;}
.xb{left:710.043000px;}
.x11{left:716.937000px;}
.xc{left:718.543500px;}
.xc6{left:728.368500px;}
.xcb{left:729.769500px;}
.xbc{left:730.911000px;}
.x44{left:734.329500px;}
.x35{left:736.993500px;}
.x52{left:738.141000px;}
.xc4{left:746.085000px;}
.x80{left:747.207960px;}
.x45{left:749.274000px;}
.x36{left:752.304000px;}
.x12{left:753.582000px;}
.xc7{left:755.266500px;}
.x46{left:756.895500px;}
.x1d{left:758.091000px;}
.x13{left:761.055000px;}
.x9{left:764.586000px;}
.x39{left:771.091500px;}
.x14{left:772.188000px;}
.xd{left:776.167500px;}
.xa0{left:822.522990px;}
.x82{left:853.113420px;}
.x81{left:854.712420px;}
.x90{left:855.871080px;}
.x83{left:943.634040px;}
.x84{left:945.465510px;}
.x86{left:1020.821460px;}
.x85{left:1022.972730px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:14.239573pt;}
.v7{vertical-align:15.429333pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.vd{vertical-align:21.702720pt;}
.vb{vertical-align:22.815680pt;}
.va{vertical-align:23.965867pt;}
.v8{vertical-align:25.041600pt;}
.v9{vertical-align:26.601600pt;}
.v3{vertical-align:27.824000pt;}
.v6{vertical-align:29.557333pt;}
.v5{vertical-align:32.096000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.000518pt;}
.ls50{letter-spacing:0.000711pt;}
.ls2f{letter-spacing:0.000826pt;}
.ls49{letter-spacing:0.000883pt;}
.ls48{letter-spacing:0.001062pt;}
.ls46{letter-spacing:0.001319pt;}
.ls14{letter-spacing:0.001717pt;}
.ls45{letter-spacing:0.002262pt;}
.ls2{letter-spacing:0.003733pt;}
.ls47{letter-spacing:0.004267pt;}
.ls29{letter-spacing:0.509060pt;}
.ls11{letter-spacing:0.637762pt;}
.ls13{letter-spacing:0.643096pt;}
.ls27{letter-spacing:2.656533pt;}
.ls10{letter-spacing:2.657067pt;}
.ls0{letter-spacing:2.665203pt;}
.ls3a{letter-spacing:9.321235pt;}
.ls39{letter-spacing:9.325395pt;}
.ls30{letter-spacing:9.799248pt;}
.ls31{letter-spacing:9.803621pt;}
.ls55{letter-spacing:10.542759pt;}
.ls2d{letter-spacing:10.623733pt;}
.ls9{letter-spacing:10.626533pt;}
.ls2e{letter-spacing:10.629067pt;}
.ls3b{letter-spacing:10.675652pt;}
.ls2c{letter-spacing:10.760072pt;}
.ls2b{letter-spacing:11.138393pt;}
.ls4a{letter-spacing:11.838859pt;}
.ls53{letter-spacing:11.880125pt;}
.ls40{letter-spacing:11.954133pt;}
.ls51{letter-spacing:11.956535pt;}
.ls3f{letter-spacing:11.959467pt;}
.ls43{letter-spacing:12.093780pt;}
.ls52{letter-spacing:12.144564pt;}
.ls4d{letter-spacing:12.159086pt;}
.ls4c{letter-spacing:12.170290pt;}
.ls44{letter-spacing:12.227807pt;}
.ls56{letter-spacing:12.771597pt;}
.lse{letter-spacing:13.009091pt;}
.ls1f{letter-spacing:13.046860pt;}
.ls25{letter-spacing:13.079084pt;}
.ls23{letter-spacing:13.082951pt;}
.ls24{letter-spacing:13.102707pt;}
.ls19{letter-spacing:13.132077pt;}
.ls22{letter-spacing:13.257067pt;}
.ls2a{letter-spacing:13.281067pt;}
.ls1{letter-spacing:13.283733pt;}
.ls16{letter-spacing:13.383346pt;}
.ls8{letter-spacing:13.384582pt;}
.ls1d{letter-spacing:13.411561pt;}
.ls1c{letter-spacing:13.459210pt;}
.lsd{letter-spacing:13.487267pt;}
.ls3e{letter-spacing:13.503384pt;}
.ls15{letter-spacing:13.516992pt;}
.ls1e{letter-spacing:13.519964pt;}
.ls21{letter-spacing:13.552795pt;}
.ls18{letter-spacing:13.607216pt;}
.ls42{letter-spacing:13.759833pt;}
.ls1b{letter-spacing:13.992544pt;}
.lsc{letter-spacing:14.248753pt;}
.ls20{letter-spacing:14.332413pt;}
.ls3d{letter-spacing:14.572936pt;}
.ls7{letter-spacing:15.681433pt;}
.ls12{letter-spacing:15.942400pt;}
.ls54{letter-spacing:16.081401pt;}
.ls41{letter-spacing:16.102316pt;}
.ls4e{letter-spacing:16.112774pt;}
.ls4f{letter-spacing:16.667022pt;}
.ls17{letter-spacing:17.215373pt;}
.lsb{letter-spacing:17.574243pt;}
.ls3c{letter-spacing:17.830452pt;}
.ls1a{letter-spacing:18.531106pt;}
.ls4b{letter-spacing:22.476173pt;}
.ls5{letter-spacing:62.432533pt;}
.ls4{letter-spacing:62.437867pt;}
.ls6{letter-spacing:64.314231pt;}
.ls32{letter-spacing:78.687150pt;}
.ls33{letter-spacing:81.210563pt;}
.lsf{letter-spacing:83.810400pt;}
.ls35{letter-spacing:139.362777pt;}
.ls36{letter-spacing:151.931737pt;}
.ls34{letter-spacing:157.114137pt;}
.ls38{letter-spacing:173.203630pt;}
.ls37{letter-spacing:176.719790pt;}
.ls28{letter-spacing:451.473007pt;}
.ls26{letter-spacing:1238.136969pt;}
.ws2{word-spacing:-13.283467pt;}
.ws4{word-spacing:-12.760670pt;}
.wsb9{word-spacing:-11.955200pt;}
.ws19{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.ws89{word-spacing:-9.803264pt;}
.wsf{word-spacing:-3.719371pt;}
.wsa6{word-spacing:-2.709827pt;}
.ws11{word-spacing:-2.656693pt;}
.wsb6{word-spacing:-2.444158pt;}
.wsed{word-spacing:-2.247578pt;}
.wseb{word-spacing:-2.242358pt;}
.ws47{word-spacing:-2.231622pt;}
.wse3{word-spacing:-2.199757pt;}
.wsf3{word-spacing:-2.151936pt;}
.ws37{word-spacing:-2.125355pt;}
.ws60{word-spacing:-2.019087pt;}
.ws102{word-spacing:-1.817190pt;}
.ws61{word-spacing:-1.806551pt;}
.wsaf{word-spacing:-1.753418pt;}
.wse{word-spacing:-1.700284pt;}
.ws71{word-spacing:-1.647150pt;}
.ws2f{word-spacing:-1.594016pt;}
.wsa5{word-spacing:-1.540882pt;}
.wsfa{word-spacing:-1.434624pt;}
.ws7f{word-spacing:-1.434614pt;}
.wsec{word-spacing:-1.386803pt;}
.ws77{word-spacing:-1.381481pt;}
.wsbb{word-spacing:-1.338982pt;}
.ws5e{word-spacing:-1.328347pt;}
.ws5d{word-spacing:-1.275213pt;}
.wse5{word-spacing:-1.195520pt;}
.ws4f{word-spacing:-1.168945pt;}
.ws5b{word-spacing:-1.062677pt;}
.ws10{word-spacing:-1.009543pt;}
.wsd6{word-spacing:-1.004237pt;}
.ws81{word-spacing:-0.956410pt;}
.ws107{word-spacing:-0.908595pt;}
.ws76{word-spacing:-0.903276pt;}
.ws6c{word-spacing:-0.797008pt;}
.ws14{word-spacing:-0.743874pt;}
.ws5f{word-spacing:-0.690740pt;}
.wsbe{word-spacing:-0.669491pt;}
.ws24{word-spacing:-0.637606pt;}
.ws9e{word-spacing:-0.584473pt;}
.wscd{word-spacing:-0.573850pt;}
.ws67{word-spacing:-0.531339pt;}
.ws80{word-spacing:-0.478205pt;}
.ws5a{word-spacing:-0.425071pt;}
.wsf2{word-spacing:-0.334746pt;}
.wsc{word-spacing:-0.318803pt;}
.wsc0{word-spacing:-0.286925pt;}
.wsf1{word-spacing:-0.282590pt;}
.ws34{word-spacing:-0.265669pt;}
.wsba{word-spacing:-0.239104pt;}
.ws45{word-spacing:-0.212535pt;}
.ws58{word-spacing:-0.203589pt;}
.wsbd{word-spacing:-0.191283pt;}
.ws23{word-spacing:-0.159402pt;}
.wsc7{word-spacing:-0.143462pt;}
.ws8f{word-spacing:-0.127522pt;}
.ws13{word-spacing:-0.106268pt;}
.wsbc{word-spacing:-0.095642pt;}
.ws1{word-spacing:-0.053134pt;}
.wsc6{word-spacing:-0.047821pt;}
.wse0{word-spacing:-0.006221pt;}
.wsd5{word-spacing:-0.005589pt;}
.ws110{word-spacing:-0.005214pt;}
.ws94{word-spacing:-0.005164pt;}
.ws93{word-spacing:-0.003197pt;}
.wsea{word-spacing:-0.002449pt;}
.ws8a{word-spacing:-0.000973pt;}
.wsff{word-spacing:-0.000887pt;}
.ws0{word-spacing:0.000000pt;}
.ws5{word-spacing:0.000311pt;}
.ws18{word-spacing:0.000559pt;}
.ws6{word-spacing:0.001956pt;}
.ws3{word-spacing:0.002111pt;}
.ws98{word-spacing:0.042507pt;}
.ws95{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.ws8b{word-spacing:0.078426pt;}
.wsc5{word-spacing:0.095642pt;}
.ws17{word-spacing:0.106268pt;}
.ws8e{word-spacing:0.127522pt;}
.ws96{word-spacing:0.143462pt;}
.ws4a{word-spacing:0.159402pt;}
.ws97{word-spacing:0.170029pt;}
.ws1c{word-spacing:0.184388pt;}
.wsbf{word-spacing:0.191283pt;}
.wsb{word-spacing:0.212535pt;}
.ws82{word-spacing:0.239104pt;}
.ws15{word-spacing:0.265669pt;}
.ws63{word-spacing:0.318803pt;}
.ws9d{word-spacing:0.371937pt;}
.ws111{word-spacing:0.382566pt;}
.ws29{word-spacing:0.478205pt;}
.wsc4{word-spacing:0.478208pt;}
.ws88{word-spacing:0.531185pt;}
.wsd{word-spacing:0.531339pt;}
.ws26{word-spacing:0.584473pt;}
.ws10b{word-spacing:0.621670pt;}
.ws7b{word-spacing:0.637606pt;}
.ws6a{word-spacing:0.690740pt;}
.ws49{word-spacing:0.743874pt;}
.ws43{word-spacing:0.797008pt;}
.ws10d{word-spacing:0.812954pt;}
.ws54{word-spacing:0.850142pt;}
.ws92{word-spacing:0.850144pt;}
.ws10f{word-spacing:0.860774pt;}
.ws53{word-spacing:0.903276pt;}
.ws1b{word-spacing:0.956410pt;}
.wse9{word-spacing:1.004237pt;}
.ws6b{word-spacing:1.009543pt;}
.wsdb{word-spacing:1.052058pt;}
.ws12{word-spacing:1.062677pt;}
.wsc2{word-spacing:1.099878pt;}
.ws51{word-spacing:1.115811pt;}
.ws99{word-spacing:1.168945pt;}
.ws91{word-spacing:1.195520pt;}
.wsa8{word-spacing:1.222079pt;}
.wse8{word-spacing:1.243341pt;}
.ws2b{word-spacing:1.275213pt;}
.ws52{word-spacing:1.328347pt;}
.ws4c{word-spacing:1.381481pt;}
.wsc1{word-spacing:1.386803pt;}
.ws44{word-spacing:1.434614pt;}
.ws90{word-spacing:1.434624pt;}
.wscb{word-spacing:1.482445pt;}
.ws73{word-spacing:1.487748pt;}
.ws31{word-spacing:1.540882pt;}
.ws50{word-spacing:1.594016pt;}
.wsb2{word-spacing:1.647150pt;}
.wsa9{word-spacing:1.700284pt;}
.wsaa{word-spacing:1.753418pt;}
.ws7a{word-spacing:1.806551pt;}
.ws101{word-spacing:1.817190pt;}
.ws39{word-spacing:1.859685pt;}
.wscc{word-spacing:1.865011pt;}
.wse4{word-spacing:1.912832pt;}
.wsdd{word-spacing:1.960653pt;}
.wsad{word-spacing:1.965953pt;}
.ws9c{word-spacing:2.019087pt;}
.wsfd{word-spacing:2.056294pt;}
.wsb4{word-spacing:2.072221pt;}
.ws55{word-spacing:2.125355pt;}
.ws9f{word-spacing:2.178489pt;}
.wse6{word-spacing:2.199757pt;}
.ws2d{word-spacing:2.231622pt;}
.wsda{word-spacing:2.343219pt;}
.ws16{word-spacing:2.391024pt;}
.ws87{word-spacing:2.422910pt;}
.ws106{word-spacing:2.438861pt;}
.ws20{word-spacing:2.444158pt;}
.ws103{word-spacing:2.486682pt;}
.wsae{word-spacing:2.497292pt;}
.wsc3{word-spacing:2.534502pt;}
.ws78{word-spacing:2.550426pt;}
.ws10a{word-spacing:2.630144pt;}
.wsa4{word-spacing:2.656693pt;}
.wsac{word-spacing:2.709827pt;}
.wsa3{word-spacing:2.762961pt;}
.wsd7{word-spacing:2.773606pt;}
.wsfc{word-spacing:2.862737pt;}
.wsf6{word-spacing:2.863923pt;}
.wsde{word-spacing:2.864751pt;}
.wsee{word-spacing:2.867908pt;}
.wse7{word-spacing:2.868343pt;}
.ws108{word-spacing:2.869188pt;}
.ws72{word-spacing:2.869229pt;}
.wsd1{word-spacing:2.869248pt;}
.wsd3{word-spacing:2.869333pt;}
.ws105{word-spacing:2.869888pt;}
.wsf5{word-spacing:2.964890pt;}
.wsa{word-spacing:2.975497pt;}
.ws28{word-spacing:3.028630pt;}
.ws4e{word-spacing:3.134898pt;}
.wsf8{word-spacing:3.156173pt;}
.ws1e{word-spacing:3.185311pt;}
.ws1f{word-spacing:3.188032pt;}
.wsce{word-spacing:3.251814pt;}
.wscf{word-spacing:3.299635pt;}
.ws2e{word-spacing:3.347434pt;}
.wsb0{word-spacing:3.400567pt;}
.ws30{word-spacing:3.453701pt;}
.ws10e{word-spacing:3.490918pt;}
.ws9b{word-spacing:3.506835pt;}
.ws1d{word-spacing:3.613103pt;}
.ws69{word-spacing:3.666237pt;}
.wsf4{word-spacing:3.682202pt;}
.ws59{word-spacing:3.719371pt;}
.wse1{word-spacing:3.730022pt;}
.ws21{word-spacing:3.772505pt;}
.wsd8{word-spacing:3.777843pt;}
.ws48{word-spacing:3.825638pt;}
.ws40{word-spacing:3.931906pt;}
.wsb3{word-spacing:4.038174pt;}
.wsdc{word-spacing:4.064768pt;}
.wsa2{word-spacing:4.091308pt;}
.wsd9{word-spacing:4.112589pt;}
.wsd0{word-spacing:4.160410pt;}
.ws33{word-spacing:4.197575pt;}
.wsa7{word-spacing:4.250709pt;}
.ws1a{word-spacing:4.303843pt;}
.ws7d{word-spacing:4.463245pt;}
.ws2a{word-spacing:4.569513pt;}
.wsf9{word-spacing:4.590797pt;}
.ws42{word-spacing:4.622646pt;}
.ws100{word-spacing:4.686438pt;}
.ws7c{word-spacing:4.728914pt;}
.wsfb{word-spacing:4.734259pt;}
.wse2{word-spacing:4.782080pt;}
.ws9{word-spacing:4.888316pt;}
.wsb1{word-spacing:4.994583pt;}
.ws46{word-spacing:5.100851pt;}
.ws10c{word-spacing:5.116826pt;}
.ws25{word-spacing:5.153985pt;}
.ws65{word-spacing:5.260253pt;}
.ws74{word-spacing:5.313387pt;}
.ws9a{word-spacing:5.366521pt;}
.wsd4{word-spacing:5.403750pt;}
.ws56{word-spacing:5.525922pt;}
.wsd2{word-spacing:5.547213pt;}
.ws6f{word-spacing:5.579056pt;}
.ws35{word-spacing:5.844725pt;}
.ws3c{word-spacing:5.897859pt;}
.ws27{word-spacing:5.950993pt;}
.ws70{word-spacing:6.110395pt;}
.ws109{word-spacing:6.121062pt;}
.wsa0{word-spacing:6.216662pt;}
.ws4b{word-spacing:6.269796pt;}
.wsa1{word-spacing:6.322930pt;}
.wsb5{word-spacing:6.376064pt;}
.ws64{word-spacing:6.429198pt;}
.ws66{word-spacing:6.482332pt;}
.wsab{word-spacing:6.641733pt;}
.ws68{word-spacing:6.748001pt;}
.ws36{word-spacing:6.801135pt;}
.ws7e{word-spacing:6.960537pt;}
.ws62{word-spacing:7.226206pt;}
.wsb8{word-spacing:7.316582pt;}
.ws104{word-spacing:7.460045pt;}
.ws79{word-spacing:7.491875pt;}
.wsf7{word-spacing:7.555686pt;}
.wsb7{word-spacing:7.651328pt;}
.ws75{word-spacing:7.863812pt;}
.ws5c{word-spacing:8.129482pt;}
.ws4d{word-spacing:8.182615pt;}
.ws3e{word-spacing:8.235749pt;}
.ws41{word-spacing:8.288883pt;}
.wsef{word-spacing:8.368640pt;}
.ws32{word-spacing:8.448285pt;}
.ws57{word-spacing:8.501419pt;}
.ws6e{word-spacing:9.298427pt;}
.ws3a{word-spacing:9.404694pt;}
.ws6d{word-spacing:9.829765pt;}
.wsf0{word-spacing:10.520576pt;}
.ws38{word-spacing:11.370647pt;}
.ws3d{word-spacing:12.008254pt;}
.wsfe{word-spacing:13.055078pt;}
.wsdf{word-spacing:14.059315pt;}
.ws22{word-spacing:14.983750pt;}
.ws3b{word-spacing:17.693578pt;}
.ws3f{word-spacing:24.335311pt;}
.ws8{word-spacing:41.177333pt;}
.ws8c{word-spacing:146.225411pt;}
.ws8d{word-spacing:154.141145pt;}
.wsc9{word-spacing:250.102784pt;}
.wsca{word-spacing:250.485350pt;}
.wsc8{word-spacing:268.705075pt;}
.ws85{word-spacing:371.758899pt;}
.ws86{word-spacing:371.806720pt;}
.ws84{word-spacing:383.761920pt;}
.ws83{word-spacing:419.579699pt;}
._1{margin-left:-7.077478pt;}
._2{margin-left:-5.978857pt;}
._5{margin-left:-4.637361pt;}
._1d{margin-left:-3.609050pt;}
._3{margin-left:-2.668174pt;}
._0{margin-left:-1.721549pt;}
._bf{width:1.481043pt;}
._4{width:2.665241pt;}
._bd{width:9.643806pt;}
._6{width:11.046605pt;}
._b{width:11.976385pt;}
._b6{width:12.938924pt;}
._7{width:13.963674pt;}
._8{width:15.685222pt;}
._a{width:16.599031pt;}
._15{width:17.555441pt;}
._9{width:18.649987pt;}
._11{width:19.553263pt;}
._f{width:20.828476pt;}
._16{width:21.997421pt;}
._b9{width:22.906163pt;}
._12{width:23.910240pt;}
._1b{width:24.887915pt;}
._bc{width:25.928830pt;}
._14{width:27.045138pt;}
._17{width:27.948414pt;}
._13{width:29.489296pt;}
._1a{width:30.870777pt;}
._e{width:31.954719pt;}
._1e{width:33.489051pt;}
._10{width:34.802683pt;}
._b8{width:35.705958pt;}
._1c{width:37.044966pt;}
._be{width:39.940802pt;}
._19{width:43.782306pt;}
._18{width:45.216921pt;}
._a6{width:63.791645pt;}
._81{width:64.786406pt;}
._82{width:79.564414pt;}
._6b{width:81.544691pt;}
._6c{width:85.716871pt;}
._6a{width:90.935077pt;}
._20{width:98.606490pt;}
._a4{width:103.794460pt;}
._69{width:105.299458pt;}
._6f{width:111.814186pt;}
._4e{width:115.171615pt;}
._4a{width:116.636414pt;}
._89{width:124.218525pt;}
._21{width:132.272333pt;}
._4b{width:134.922949pt;}
._ba{width:136.671846pt;}
._22{width:140.688794pt;}
._66{width:142.678864pt;}
._76{width:146.799145pt;}
._49{width:150.563789pt;}
._70{width:154.342588pt;}
._7e{width:155.255400pt;}
._6d{width:156.450775pt;}
._83{width:162.325474pt;}
._62{width:163.374981pt;}
._71{width:164.995150pt;}
._65{width:166.046085pt;}
._5c{width:167.463660pt;}
._4f{width:169.323889pt;}
._84{width:171.008137pt;}
._67{width:174.249431pt;}
._86{width:176.772456pt;}
._53{width:178.324109pt;}
._5b{width:179.729695pt;}
._6e{width:183.791593pt;}
._5f{width:184.894341pt;}
._52{width:186.687621pt;}
._57{width:188.983020pt;}
._40{width:191.331021pt;}
._b1{width:192.319955pt;}
._75{width:193.294543pt;}
._7b{width:194.365729pt;}
._4d{width:196.945183pt;}
._79{width:198.715391pt;}
._42{width:201.134285pt;}
._51{width:202.081137pt;}
._73{width:203.550373pt;}
._72{width:205.956288pt;}
._a7{width:207.098816pt;}
._41{width:208.403046pt;}
._60{width:211.860490pt;}
._2a{width:213.089485pt;}
._24{width:215.241421pt;}
._7f{width:216.415884pt;}
._a9{width:217.311105pt;}
._7a{width:218.461304pt;}
._74{width:219.563102pt;}
._56{width:222.768415pt;}
._26{width:225.044685pt;}
._2c{width:227.191953pt;}
._5a{width:229.224223pt;}
._2b{width:232.313446pt;}
._77{width:233.475492pt;}
._8a{width:234.376436pt;}
._2e{width:236.999885pt;}
._5d{width:238.047160pt;}
._37{width:239.151821pt;}
._9b{width:240.523841pt;}
._b0{width:241.509327pt;}
._87{width:242.454325pt;}
._8c{width:244.179700pt;}
._39{width:248.955085pt;}
._55{width:250.743583pt;}
._8e{width:252.257589pt;}
._97{width:253.232716pt;}
._44{width:254.932685pt;}
._25{width:256.223846pt;}
._90{width:257.746461pt;}
._58{width:259.566520pt;}
._96{width:263.418008pt;}
._95{width:264.752089pt;}
._bb{width:265.740186pt;}
._28{width:268.179046pt;}
._3d{width:276.021658pt;}
._85{width:278.304821pt;}
._2d{width:280.134246pt;}
._88{width:282.686921pt;}
._a3{width:284.325204pt;}
._91{width:286.725865pt;}
._5e{width:289.723016pt;}
._a0{width:291.142476pt;}
._aa{width:292.648240pt;}
._a5{width:294.174162pt;}
._a8{width:296.279014pt;}
._8d{width:297.431030pt;}
._7c{width:298.948445pt;}
._9d{width:299.891690pt;}
._a1{width:300.915792pt;}
._38{width:304.044646pt;}
._78{width:307.534537pt;}
._9a{width:308.724390pt;}
._9e{width:310.175273pt;}
._98{width:312.096713pt;}
._ac{width:313.271350pt;}
._8f{width:315.443931pt;}
._7d{width:317.182088pt;}
._8b{width:319.349183pt;}
._b5{width:320.802129pt;}
._94{width:321.899977pt;}
._63{width:325.531446pt;}
._b2{width:327.253037pt;}
._93{width:329.185341pt;}
._b3{width:331.249951pt;}
._af{width:336.099885pt;}
._99{width:337.875485pt;}
._ad{width:339.991542pt;}
._ab{width:344.099884pt;}
._45{width:345.887846pt;}
._9c{width:347.192398pt;}
._80{width:353.348848pt;}
._b4{width:360.596600pt;}
._68{width:361.809883pt;}
._3e{width:364.681421pt;}
._43{width:367.302969pt;}
._92{width:370.053609pt;}
._9f{width:371.016978pt;}
._a2{width:373.700781pt;}
._3f{width:374.868727pt;}
._ae{width:382.066194pt;}
._3b{width:383.714099pt;}
._50{width:387.431855pt;}
._59{width:389.250993pt;}
._54{width:393.705201pt;}
._32{width:407.624499pt;}
._64{width:413.870991pt;}
._34{width:420.297011pt;}
._61{width:423.294751pt;}
._30{width:431.534899pt;}
._4c{width:444.125484pt;}
._35{width:460.994515pt;}
._36{width:516.278125pt;}
._3a{width:571.123814pt;}
._46{width:573.897421pt;}
._29{width:599.388706pt;}
._27{width:604.145645pt;}
._23{width:605.726874pt;}
._47{width:611.436749pt;}
._3c{width:619.279360pt;}
._2f{width:680.155238pt;}
._33{width:694.979686pt;}
._31{width:739.166106pt;}
._c{width:848.144828pt;}
._b7{width:1821.560267pt;}
._d{width:1842.813600pt;}
._48{width:3136.834933pt;}
._1f{width:3158.093600pt;}
.fsc{font-size:30.498752pt;}
.fs9{font-size:31.880533pt;}
.fs4{font-size:37.193600pt;}
.fsd{font-size:37.300224pt;}
.fsb{font-size:39.213056pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fsa{font-size:43.038720pt;}
.fs8{font-size:44.292800pt;}
.fs5{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs7{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:13.168686pt;}
.y33{bottom:56.693333pt;}
.y1cf{bottom:90.066667pt;}
.y291{bottom:96.850667pt;}
.y22a{bottom:98.946667pt;}
.y1a0{bottom:100.892000pt;}
.y1ce{bottom:102.686667pt;}
.y173{bottom:105.368000pt;}
.yca{bottom:105.829333pt;}
.y32{bottom:106.492000pt;}
.y1f1{bottom:106.545333pt;}
.y144{bottom:107.629333pt;}
.y208{bottom:109.441333pt;}
.yf2{bottom:109.548000pt;}
.y60{bottom:109.853333pt;}
.y8c{bottom:112.524000pt;}
.y19f{bottom:113.510667pt;}
.y290{bottom:114.066667pt;}
.y1cd{bottom:115.305333pt;}
.y229{bottom:115.458667pt;}
.y25d{bottom:116.065333pt;}
.y172{bottom:117.988000pt;}
.yc9{bottom:123.841333pt;}
.y31{bottom:124.504000pt;}
.y1f0{bottom:124.558667pt;}
.y143{bottom:126.203333pt;}
.y207{bottom:127.454667pt;}
.yf1{bottom:127.560000pt;}
.y5f{bottom:127.866667pt;}
.y171{bottom:130.606667pt;}
.y28f{bottom:131.281333pt;}
.y19e{bottom:131.465493pt;}
.y8b{bottom:131.864000pt;}
.y228{bottom:131.969333pt;}
.y142{bottom:132.763733pt;}
.y1cc{bottom:132.945947pt;}
.y25c{bottom:133.281333pt;}
.y19d{bottom:137.442747pt;}
.y1cb{bottom:138.631627pt;}
.yb5{bottom:139.674667pt;}
.yc8{bottom:141.853333pt;}
.y30{bottom:142.516000pt;}
.y1ef{bottom:142.570667pt;}
.y206{bottom:145.466667pt;}
.yf0{bottom:145.573333pt;}
.y227{bottom:148.481333pt;}
.y28e{bottom:148.497333pt;}
.y170{bottom:148.561493pt;}
.y25b{bottom:150.496000pt;}
.y141{bottom:152.623733pt;}
.y5e{bottom:153.849333pt;}
.y16f{bottom:154.538747pt;}
.y19c{bottom:155.538507pt;}
.y1ca{bottom:155.843627pt;}
.yb4{bottom:157.688000pt;}
.y140{bottom:159.184133pt;}
.yc7{bottom:159.866667pt;}
.y2f{bottom:160.529333pt;}
.y1ee{bottom:160.584000pt;}
.y19b{bottom:161.514667pt;}
.y1c9{bottom:161.529307pt;}
.y8a{bottom:163.160000pt;}
.y205{bottom:163.478667pt;}
.yef{bottom:163.585333pt;}
.y226{bottom:164.992000pt;}
.y28d{bottom:165.713333pt;}
.y25a{bottom:167.712000pt;}
.y16e{bottom:172.634507pt;}
.yb3{bottom:175.700000pt;}
.yc6{bottom:177.878667pt;}
.y2e{bottom:178.541333pt;}
.y1ed{bottom:178.596000pt;}
.y16d{bottom:178.610667pt;}
.y1c8{bottom:178.742347pt;}
.y13f{bottom:179.045333pt;}
.y19a{bottom:179.610427pt;}
.y89{bottom:181.173333pt;}
.y204{bottom:181.492000pt;}
.y225{bottom:181.504000pt;}
.yee{bottom:181.597333pt;}
.y28c{bottom:182.928000pt;}
.y1c7{bottom:184.428027pt;}
.y5d{bottom:184.800000pt;}
.y259{bottom:184.928000pt;}
.y199{bottom:185.587680pt;}
.y13e{bottom:185.605733pt;}
.yb2{bottom:193.713333pt;}
.yc5{bottom:195.892000pt;}
.y11d{bottom:196.441333pt;}
.y2d{bottom:196.554667pt;}
.y1ec{bottom:196.608000pt;}
.y16c{bottom:196.706427pt;}
.y88{bottom:199.185333pt;}
.y203{bottom:199.504000pt;}
.yed{bottom:199.610667pt;}
.y28b{bottom:200.144000pt;}
.y1c6{bottom:201.640027pt;}
.y258{bottom:202.142667pt;}
.y16b{bottom:202.683680pt;}
.y198{bottom:203.683440pt;}
.y13d{bottom:205.465733pt;}
.y224{bottom:206.864000pt;}
.y1c5{bottom:207.663707pt;}
.y11c{bottom:209.060000pt;}
.y197{bottom:210.014933pt;}
.yb1{bottom:211.725333pt;}
.y13c{bottom:212.416133pt;}
.yc4{bottom:213.904000pt;}
.y2c{bottom:214.566667pt;}
.y1eb{bottom:214.621333pt;}
.y5c{bottom:215.750667pt;}
.y87{bottom:217.198667pt;}
.y28a{bottom:217.358667pt;}
.y202{bottom:217.517333pt;}
.yec{bottom:217.622667pt;}
.y257{bottom:219.358667pt;}
.y16a{bottom:220.779440pt;}
.y1c4{bottom:224.538747pt;}
.y169{bottom:227.110933pt;}
.y196{bottom:227.755360pt;}
.y11b{bottom:228.416000pt;}
.yb0{bottom:229.737333pt;}
.y1c3{bottom:230.224427pt;}
.y13b{bottom:231.887333pt;}
.yc3{bottom:231.916000pt;}
.y2b{bottom:232.578667pt;}
.y1ea{bottom:232.633333pt;}
.y195{bottom:233.732613pt;}
.y5b{bottom:233.762667pt;}
.y289{bottom:234.574667pt;}
.y86{bottom:235.210667pt;}
.y201{bottom:235.529333pt;}
.yeb{bottom:235.636000pt;}
.y256{bottom:236.573333pt;}
.y223{bottom:237.814667pt;}
.y13a{bottom:238.447733pt;}
.y11a{bottom:243.094667pt;}
.y168{bottom:244.851360pt;}
.y1c2{bottom:247.436427pt;}
.yaf{bottom:247.750667pt;}
.yc2{bottom:249.929333pt;}
.y2a{bottom:250.592000pt;}
.y1e9{bottom:250.646667pt;}
.y167{bottom:250.828613pt;}
.y222{bottom:251.324000pt;}
.y5a{bottom:251.776000pt;}
.y288{bottom:251.790667pt;}
.y194{bottom:251.828373pt;}
.y85{bottom:253.222667pt;}
.y1c1{bottom:253.460107pt;}
.y200{bottom:253.541333pt;}
.yea{bottom:253.648000pt;}
.y255{bottom:253.789333pt;}
.y119{bottom:257.773333pt;}
.y193{bottom:258.159867pt;}
.y139{bottom:258.307733pt;}
.y221{bottom:264.833333pt;}
.y138{bottom:265.258133pt;}
.y118{bottom:265.494667pt;}
.yae{bottom:265.762667pt;}
.y29{bottom:268.604000pt;}
.y1e8{bottom:268.658667pt;}
.y166{bottom:268.924373pt;}
.y287{bottom:269.005333pt;}
.y59{bottom:269.788000pt;}
.y1c0{bottom:270.335147pt;}
.y254{bottom:271.005333pt;}
.y84{bottom:271.236000pt;}
.y1ff{bottom:271.554667pt;}
.ye9{bottom:271.660000pt;}
.y165{bottom:275.255867pt;}
.y192{bottom:275.900293pt;}
.yc1{bottom:275.912000pt;}
.y1bf{bottom:276.358827pt;}
.y220{bottom:278.342667pt;}
.y191{bottom:282.232880pt;}
.yad{bottom:283.776000pt;}
.y137{bottom:284.729333pt;}
.y286{bottom:286.221333pt;}
.y28{bottom:286.617333pt;}
.y1e7{bottom:286.670667pt;}
.y117{bottom:287.129333pt;}
.y58{bottom:287.800000pt;}
.y253{bottom:288.220000pt;}
.y83{bottom:289.248000pt;}
.y1fe{bottom:289.566667pt;}
.ye8{bottom:289.673333pt;}
.y136{bottom:291.679733pt;}
.y164{bottom:292.996293pt;}
.y1be{bottom:293.232827pt;}
.y116{bottom:294.852000pt;}
.y1bd{bottom:299.256507pt;}
.y162{bottom:299.328880pt;}
.y21f{bottom:299.821333pt;}
.y190{bottom:299.973307pt;}
.yac{bottom:301.788000pt;}
.y285{bottom:303.437333pt;}
.y27{bottom:304.629333pt;}
.y1e6{bottom:304.684000pt;}
.y163{bottom:305.032800pt;}
.y252{bottom:305.436000pt;}
.y57{bottom:305.813333pt;}
.y18f{bottom:306.304800pt;}
.yc0{bottom:306.862667pt;}
.y1fd{bottom:307.580000pt;}
.ye7{bottom:307.685333pt;}
.y135{bottom:311.149733pt;}
.y21e{bottom:313.332000pt;}
.y82{bottom:315.230667pt;}
.y1bc{bottom:316.131547pt;}
.y115{bottom:316.486667pt;}
.y161{bottom:317.069307pt;}
.y134{bottom:318.100133pt;}
.yab{bottom:319.800000pt;}
.y284{bottom:320.652000pt;}
.y1bb{bottom:322.155227pt;}
.y26{bottom:322.641333pt;}
.y251{bottom:322.650667pt;}
.y1e5{bottom:322.696000pt;}
.y160{bottom:323.400800pt;}
.y56{bottom:323.825333pt;}
.y18e{bottom:324.045227pt;}
.ybf{bottom:324.874667pt;}
.y1fc{bottom:325.592000pt;}
.ye6{bottom:325.698667pt;}
.y21d{bottom:326.841333pt;}
.y18d{bottom:330.377813pt;}
.y114{bottom:331.165333pt;}
.y133{bottom:337.571333pt;}
.yaa{bottom:337.813333pt;}
.y283{bottom:337.868000pt;}
.y250{bottom:339.866667pt;}
.y21c{bottom:340.350667pt;}
.y25{bottom:340.654667pt;}
.y1e4{bottom:340.709333pt;}
.y15f{bottom:341.141227pt;}
.y55{bottom:341.838667pt;}
.ybe{bottom:342.888000pt;}
.y1fb{bottom:343.604000pt;}
.ye5{bottom:343.710667pt;}
.y1ba{bottom:343.971307pt;}
.y132{bottom:344.521733pt;}
.y113{bottom:345.842667pt;}
.y81{bottom:346.181333pt;}
.y15e{bottom:347.473813pt;}
.y1b8{bottom:349.670507pt;}
.y18b{bottom:353.312667pt;}
.y21b{bottom:353.860000pt;}
.y282{bottom:355.082667pt;}
.y1b7{bottom:355.368667pt;}
.ya9{bottom:355.825333pt;}
.y24f{bottom:357.082667pt;}
.y24{bottom:358.666667pt;}
.y1e3{bottom:358.721333pt;}
.y18a{bottom:359.304133pt;}
.y54{bottom:359.850667pt;}
.y112{bottom:360.521333pt;}
.ybd{bottom:360.900000pt;}
.y1fa{bottom:361.617333pt;}
.ye4{bottom:361.722667pt;}
.y80{bottom:364.194667pt;}
.y18c{bottom:365.294507pt;}
.y1b9{bottom:366.766027pt;}
.y21a{bottom:367.369333pt;}
.y131{bottom:369.754133pt;}
.y15c{bottom:370.408667pt;}
.y281{bottom:372.298667pt;}
.ya8{bottom:373.838667pt;}
.y24e{bottom:374.297333pt;}
.y111{bottom:375.200000pt;}
.y15b{bottom:376.400133pt;}
.y23{bottom:376.680000pt;}
.y1e2{bottom:376.733333pt;}
.y53{bottom:377.862667pt;}
.ybc{bottom:378.912000pt;}
.y1f9{bottom:379.629333pt;}
.ye3{bottom:379.736000pt;}
.y219{bottom:380.878667pt;}
.y7f{bottom:382.206667pt;}
.y15d{bottom:382.390507pt;}
.y189{bottom:382.581200pt;}
.y110{bottom:382.921333pt;}
.y1b6{bottom:383.208427pt;}
.y188{bottom:388.557360pt;}
.y130{bottom:388.726133pt;}
.y1b5{bottom:388.894107pt;}
.y280{bottom:389.514667pt;}
.y24d{bottom:391.513333pt;}
.ya7{bottom:391.850667pt;}
.y22{bottom:394.692000pt;}
.y1e1{bottom:394.746667pt;}
.y12f{bottom:395.286533pt;}
.y52{bottom:395.876000pt;}
.ybb{bottom:396.925333pt;}
.y1f8{bottom:397.642667pt;}
.ye2{bottom:397.748000pt;}
.y15a{bottom:399.676107pt;}
.y7e{bottom:400.218667pt;}
.y218{bottom:402.357333pt;}
.y10f{bottom:404.556000pt;}
.y159{bottom:405.653360pt;}
.y1b4{bottom:406.107147pt;}
.y187{bottom:406.653120pt;}
.y27f{bottom:406.729333pt;}
.y24c{bottom:408.728000pt;}
.ya6{bottom:409.862667pt;}
.y1b3{bottom:411.791787pt;}
.y10e{bottom:411.845333pt;}
.y186{bottom:412.630373pt;}
.y1e0{bottom:412.758667pt;}
.y51{bottom:413.888000pt;}
.yba{bottom:414.937333pt;}
.y12e{bottom:415.147733pt;}
.y1f7{bottom:415.654667pt;}
.ye1{bottom:415.761333pt;}
.y217{bottom:415.866667pt;}
.y7c{bottom:418.232000pt;}
.y12d{bottom:421.706933pt;}
.y7d{bottom:423.053333pt;}
.y158{bottom:423.749120pt;}
.y27e{bottom:423.945333pt;}
.y24b{bottom:425.944000pt;}
.y21{bottom:426.186667pt;}
.y1b2{bottom:429.004827pt;}
.y157{bottom:429.726373pt;}
.y185{bottom:430.726133pt;}
.y1df{bottom:430.772000pt;}
.y50{bottom:431.901333pt;}
.yb9{bottom:432.950667pt;}
.y1f6{bottom:433.666667pt;}
.ye0{bottom:433.773333pt;}
.y10d{bottom:433.913333pt;}
.y1b1{bottom:434.690507pt;}
.ya5{bottom:435.845333pt;}
.y7a{bottom:436.244000pt;}
.y184{bottom:436.702293pt;}
.y216{bottom:437.346667pt;}
.y7b{bottom:441.066667pt;}
.y27d{bottom:441.160000pt;}
.y12c{bottom:441.568133pt;}
.y24a{bottom:443.160000pt;}
.y156{bottom:447.821040pt;}
.y12b{bottom:448.128533pt;}
.y10c{bottom:448.592000pt;}
.y1de{bottom:448.784000pt;}
.y4f{bottom:449.913333pt;}
.y20{bottom:450.297333pt;}
.y215{bottom:450.856000pt;}
.y1f5{bottom:451.680000pt;}
.ydf{bottom:451.785333pt;}
.y1b0{bottom:451.903547pt;}
.y155{bottom:453.798293pt;}
.y79{bottom:454.257333pt;}
.y183{bottom:454.798053pt;}
.y1af{bottom:457.926187pt;}
.y27c{bottom:458.376000pt;}
.yb8{bottom:458.933333pt;}
.y249{bottom:460.374667pt;}
.y182{bottom:461.130640pt;}
.y10b{bottom:463.269333pt;}
.y214{bottom:464.365333pt;}
.ya4{bottom:466.796000pt;}
.y4e{bottom:467.925333pt;}
.y12a{bottom:467.989733pt;}
.y1f4{bottom:469.692000pt;}
.yde{bottom:469.798667pt;}
.y1f{bottom:470.776000pt;}
.y154{bottom:471.894053pt;}
.y77{bottom:472.269333pt;}
.y1ae{bottom:474.801227pt;}
.y129{bottom:474.938933pt;}
.y27b{bottom:475.592000pt;}
.y78{bottom:477.090667pt;}
.y248{bottom:477.590667pt;}
.y213{bottom:477.874667pt;}
.y10a{bottom:477.948000pt;}
.y153{bottom:478.226640pt;}
.y181{bottom:478.871067pt;}
.y1ad{bottom:480.486907pt;}
.ya3{bottom:484.809333pt;}
.y180{bottom:484.847227pt;}
.y4d{bottom:485.938667pt;}
.y1e{bottom:486.916000pt;}
.y1f3{bottom:487.704000pt;}
.ydd{bottom:487.810667pt;}
.yb7{bottom:489.884000pt;}
.y76{bottom:490.281333pt;}
.y212{bottom:491.384000pt;}
.y109{bottom:492.626667pt;}
.y1dd{bottom:492.778667pt;}
.y27a{bottom:492.806667pt;}
.y128{bottom:494.410133pt;}
.y247{bottom:494.805333pt;}
.y152{bottom:495.967067pt;}
.y1ac{bottom:497.699947pt;}
.y1d{bottom:498.716000pt;}
.y108{bottom:499.281333pt;}
.y127{bottom:500.970533pt;}
.y151{bottom:501.943227pt;}
.ya2{bottom:502.821333pt;}
.y17f{bottom:502.942987pt;}
.y1ab{bottom:503.722587pt;}
.y4c{bottom:503.950667pt;}
.y211{bottom:504.893333pt;}
.y1f2{bottom:505.717333pt;}
.ydc{bottom:505.824000pt;}
.y75{bottom:508.294667pt;}
.y17e{bottom:509.275573pt;}
.y279{bottom:510.022667pt;}
.y246{bottom:512.021333pt;}
.y210{bottom:518.402667pt;}
.y1c{bottom:519.194667pt;}
.y150{bottom:520.038987pt;}
.y1aa{bottom:520.597627pt;}
.y126{bottom:520.831733pt;}
.ya1{bottom:520.834667pt;}
.y4b{bottom:521.964000pt;}
.y107{bottom:521.982667pt;}
.y1dc{bottom:523.729333pt;}
.ydb{bottom:523.836000pt;}
.y73{bottom:526.306667pt;}
.y14f{bottom:526.371573pt;}
.y1a9{bottom:526.621307pt;}
.y17d{bottom:527.016000pt;}
.y278{bottom:527.237333pt;}
.y125{bottom:527.780933pt;}
.y245{bottom:529.237333pt;}
.y106{bottom:529.705333pt;}
.y1b{bottom:530.994667pt;}
.y74{bottom:531.129333pt;}
.y20f{bottom:531.912000pt;}
.y17c{bottom:533.347493pt;}
.y294{bottom:533.538667pt;}
.ya0{bottom:538.846667pt;}
.y4a{bottom:539.976000pt;}
.y1db{bottom:541.742667pt;}
.yda{bottom:541.848000pt;}
.y1a8{bottom:543.496347pt;}
.y14e{bottom:544.112000pt;}
.y72{bottom:544.320000pt;}
.y277{bottom:544.453333pt;}
.y20e{bottom:545.421333pt;}
.y244{bottom:546.452000pt;}
.y1a{bottom:547.134667pt;}
.y124{bottom:547.252133pt;}
.y1a7{bottom:549.518987pt;}
.y14c{bottom:550.443493pt;}
.y293{bottom:550.754667pt;}
.y17b{bottom:551.087920pt;}
.y105{bottom:551.340000pt;}
.y123{bottom:554.202533pt;}
.y14d{bottom:556.147413pt;}
.y9f{bottom:556.858667pt;}
.y17a{bottom:557.420507pt;}
.y49{bottom:557.988000pt;}
.y20d{bottom:558.932000pt;}
.y104{bottom:559.061333pt;}
.y1da{bottom:559.754667pt;}
.yd9{bottom:559.861333pt;}
.y276{bottom:561.669333pt;}
.y70{bottom:562.332000pt;}
.y243{bottom:563.668000pt;}
.y1a6{bottom:566.394027pt;}
.y71{bottom:567.153333pt;}
.y19{bottom:567.613333pt;}
.y292{bottom:567.970667pt;}
.y14b{bottom:568.183920pt;}
.y1a5{bottom:572.417707pt;}
.y20c{bottom:572.441333pt;}
.y122{bottom:573.673733pt;}
.y14a{bottom:574.516507pt;}
.y9e{bottom:574.872000pt;}
.y179{bottom:575.160933pt;}
.y48{bottom:576.001333pt;}
.y1d9{bottom:577.766667pt;}
.yd8{bottom:577.873333pt;}
.y275{bottom:578.884000pt;}
.y18{bottom:579.413333pt;}
.y6f{bottom:580.344000pt;}
.y121{bottom:580.622933pt;}
.y103{bottom:580.696000pt;}
.y242{bottom:580.882667pt;}
.y178{bottom:581.492427pt;}
.y20b{bottom:585.950667pt;}
.y102{bottom:588.418667pt;}
.y149{bottom:592.255840pt;}
.y9d{bottom:592.884000pt;}
.y47{bottom:594.013333pt;}
.y1a4{bottom:594.234827pt;}
.y17{bottom:595.553333pt;}
.y1d8{bottom:595.780000pt;}
.yd7{bottom:595.886667pt;}
.y274{bottom:596.100000pt;}
.y241{bottom:598.098667pt;}
.y6d{bottom:598.357333pt;}
.y148{bottom:598.588427pt;}
.y20a{bottom:599.460000pt;}
.y16{bottom:599.892000pt;}
.y1a2{bottom:599.932987pt;}
.y120{bottom:600.094133pt;}
.y6e{bottom:603.178667pt;}
.y176{bottom:604.428373pt;}
.y1a1{bottom:605.632187pt;}
.y11f{bottom:607.044533pt;}
.y101{bottom:610.053333pt;}
.y175{bottom:610.418747pt;}
.y9c{bottom:610.896000pt;}
.y15{bottom:611.692000pt;}
.y46{bottom:612.026667pt;}
.y273{bottom:613.314667pt;}
.y1d7{bottom:613.792000pt;}
.yd6{bottom:613.898667pt;}
.y240{bottom:615.314667pt;}
.y6c{bottom:616.369333pt;}
.y177{bottom:616.410213pt;}
.y1a3{bottom:617.028507pt;}
.y146{bottom:621.524373pt;}
.y145{bottom:627.514747pt;}
.y9b{bottom:628.909333pt;}
.y45{bottom:630.038667pt;}
.y272{bottom:630.530667pt;}
.y100{bottom:631.133333pt;}
.y1d6{bottom:631.805333pt;}
.yd5{bottom:631.910667pt;}
.y14{bottom:632.172000pt;}
.y11e{bottom:632.276933pt;}
.y23f{bottom:632.529333pt;}
.y147{bottom:633.506213pt;}
.y6b{bottom:642.352000pt;}
.y13{bottom:643.972000pt;}
.y9a{bottom:646.921333pt;}
.y174{bottom:647.457333pt;}
.y271{bottom:647.746667pt;}
.y44{bottom:648.050667pt;}
.y23e{bottom:649.745333pt;}
.y1d5{bottom:649.817333pt;}
.yd4{bottom:649.924000pt;}
.y12{bottom:660.110667pt;}
.yff{bottom:664.553333pt;}
.y99{bottom:664.934667pt;}
.y270{bottom:664.961333pt;}
.y43{bottom:666.064000pt;}
.y23d{bottom:666.960000pt;}
.y1d4{bottom:667.829333pt;}
.yd3{bottom:667.936000pt;}
.y6a{bottom:673.302667pt;}
.y11{bottom:680.590667pt;}
.y26f{bottom:682.177333pt;}
.y98{bottom:682.946667pt;}
.y42{bottom:684.076000pt;}
.y23c{bottom:684.176000pt;}
.y1d3{bottom:685.842667pt;}
.yd2{bottom:685.949333pt;}
.y69{bottom:691.316000pt;}
.y10{bottom:692.390667pt;}
.y26e{bottom:699.392000pt;}
.y97{bottom:700.958667pt;}
.y23b{bottom:701.392000pt;}
.y41{bottom:702.089333pt;}
.y1d2{bottom:703.854667pt;}
.yd1{bottom:703.961333pt;}
.y68{bottom:709.328000pt;}
.yfe{bottom:709.729333pt;}
.yfd{bottom:711.932000pt;}
.yf{bottom:712.869333pt;}
.y26d{bottom:716.608000pt;}
.y23a{bottom:718.606667pt;}
.y96{bottom:718.972000pt;}
.y40{bottom:720.101333pt;}
.y1d1{bottom:721.868000pt;}
.yd0{bottom:721.973333pt;}
.ye{bottom:724.669333pt;}
.yfc{bottom:726.941333pt;}
.y67{bottom:727.340000pt;}
.y26c{bottom:733.824000pt;}
.y239{bottom:735.822667pt;}
.y95{bottom:736.984000pt;}
.y1d0{bottom:739.880000pt;}
.ycf{bottom:739.986667pt;}
.yd{bottom:745.148000pt;}
.y66{bottom:745.353333pt;}
.y3f{bottom:746.084000pt;}
.y26b{bottom:751.038667pt;}
.y238{bottom:753.037333pt;}
.y94{bottom:754.997333pt;}
.yc{bottom:756.948000pt;}
.yfb{bottom:757.892000pt;}
.yce{bottom:757.998667pt;}
.y209{bottom:762.966667pt;}
.y26a{bottom:768.254667pt;}
.y237{bottom:770.253333pt;}
.y93{bottom:773.009333pt;}
.yfa{bottom:775.905333pt;}
.yf7{bottom:776.012000pt;}
.y65{bottom:776.649333pt;}
.yb{bottom:777.428000pt;}
.ycd{bottom:783.981333pt;}
.y269{bottom:785.469333pt;}
.y236{bottom:787.469333pt;}
.y92{bottom:791.021333pt;}
.yf9{bottom:793.917333pt;}
.yf6{bottom:794.024000pt;}
.y64{bottom:795.989333pt;}
.ya{bottom:797.197333pt;}
.ycc{bottom:798.992000pt;}
.y268{bottom:802.685333pt;}
.y235{bottom:804.684000pt;}
.y91{bottom:809.034667pt;}
.yf8{bottom:811.930667pt;}
.yf5{bottom:812.036000pt;}
.y3e{bottom:814.002667pt;}
.y9{bottom:815.210667pt;}
.y267{bottom:819.901333pt;}
.y90{bottom:827.046667pt;}
.y234{bottom:829.869333pt;}
.ycb{bottom:829.942667pt;}
.y8{bottom:833.222667pt;}
.y63{bottom:833.344000pt;}
.yb6{bottom:835.017333pt;}
.y266{bottom:837.116000pt;}
.yf4{bottom:838.018667pt;}
.y8f{bottom:845.060000pt;}
.y3d{bottom:847.954667pt;}
.y62{bottom:852.684000pt;}
.yf3{bottom:853.029333pt;}
.y265{bottom:854.332000pt;}
.y233{bottom:861.689333pt;}
.y8e{bottom:863.072000pt;}
.y3c{bottom:865.968000pt;}
.y61{bottom:870.697333pt;}
.y7{bottom:871.160000pt;}
.y264{bottom:871.546667pt;}
.y232{bottom:878.201333pt;}
.y3b{bottom:883.980000pt;}
.y263{bottom:888.762667pt;}
.y8d{bottom:889.054667pt;}
.y231{bottom:894.712000pt;}
.y6{bottom:898.178667pt;}
.y3a{bottom:901.993333pt;}
.y262{bottom:905.978667pt;}
.y230{bottom:911.224000pt;}
.y39{bottom:920.005333pt;}
.y261{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y22f{bottom:927.734667pt;}
.y38{bottom:938.017333pt;}
.y260{bottom:940.409333pt;}
.y22e{bottom:944.246667pt;}
.y4{bottom:952.217333pt;}
.y37{bottom:956.030667pt;}
.y25f{bottom:957.624000pt;}
.y22d{bottom:960.758667pt;}
.y36{bottom:974.042667pt;}
.y25e{bottom:974.840000pt;}
.y22c{bottom:977.269333pt;}
.y3{bottom:977.906667pt;}
.y35{bottom:992.056000pt;}
.y22b{bottom:993.781333pt;}
.y1{bottom:1011.514667pt;}
.y34{bottom:1038.548000pt;}
.h29{height:26.968062pt;}
.h8{height:27.076941pt;}
.h2b{height:27.154563pt;}
.h1a{height:28.170221pt;}
.h23{height:28.351039pt;}
.h25{height:28.547105pt;}
.he{height:29.397999pt;}
.h19{height:30.945242pt;}
.h1c{height:31.116995pt;}
.hc{height:31.157778pt;}
.h1e{height:31.332188pt;}
.h13{height:34.574438pt;}
.h9{height:34.813542pt;}
.h14{height:35.052646pt;}
.hd{height:35.212691pt;}
.ha{height:38.415786pt;}
.h1b{height:38.638362pt;}
.hb{height:38.681455pt;}
.h4{height:38.947124pt;}
.h30{height:43.660390pt;}
.h2{height:45.272024pt;}
.h7{height:48.486756pt;}
.h10{height:48.683332pt;}
.hf{height:48.688666pt;}
.h2a{height:48.857283pt;}
.h2c{height:48.861443pt;}
.h6{height:49.201961pt;}
.h28{height:49.760702pt;}
.h2f{height:49.764862pt;}
.h2d{height:50.209283pt;}
.h2e{height:50.213443pt;}
.h24{height:51.362785pt;}
.h27{height:52.312533pt;}
.h22{height:52.316906pt;}
.h26{height:52.784118pt;}
.h1d{height:56.373788pt;}
.h1f{height:56.378588pt;}
.h20{height:57.933788pt;}
.h21{height:57.938588pt;}
.h15{height:62.637542pt;}
.h16{height:62.642876pt;}
.h18{height:64.370876pt;}
.h17{height:66.909542pt;}
.h5{height:69.148877pt;}
.h3{height:91.114522pt;}
.h11{height:793.701333pt;}
.h12{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:176.724208pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:1122.520000pt;}
.w4{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x2{left:51.605861pt;}
.x41{left:100.054667pt;}
.x1{left:102.046667pt;}
.x65{left:106.120000pt;}
.x5{left:108.542667pt;}
.x3{left:109.605333pt;}
.x4{left:129.929333pt;}
.x3a{left:131.736000pt;}
.x50{left:135.666667pt;}
.x7b{left:139.342667pt;}
.xbd{left:144.120000pt;}
.xb7{left:145.077333pt;}
.xb5{left:146.016000pt;}
.x51{left:148.949333pt;}
.xbf{left:152.424000pt;}
.x10{left:154.185333pt;}
.xc0{left:155.718667pt;}
.x66{left:157.341333pt;}
.x7a{left:159.925333pt;}
.x4b{left:161.012000pt;}
.xc1{left:162.360000pt;}
.x8a{left:163.381333pt;}
.x6{left:170.041333pt;}
.x4c{left:174.294667pt;}
.x67{left:175.548000pt;}
.x4d{left:177.620000pt;}
.x61{left:184.600000pt;}
.x8d{left:188.461307pt;}
.xaa{left:189.502667pt;}
.x4e{left:190.902667pt;}
.xac{left:191.992000pt;}
.x3f{left:192.945333pt;}
.x95{left:194.456053pt;}
.x89{left:195.847867pt;}
.xa3{left:201.121547pt;}
.xae{left:203.440000pt;}
.x1e{left:204.966667pt;}
.x40{left:206.229333pt;}
.xba{left:207.712000pt;}
.x87{left:209.219333pt;}
.x76{left:210.515867pt;}
.x8c{left:211.763520pt;}
.x22{left:216.949333pt;}
.x1f{left:218.250667pt;}
.x8e{left:219.292213pt;}
.x20{left:221.637333pt;}
.xab{left:222.844000pt;}
.xcf{left:224.114667pt;}
.xa4{left:225.319227pt;}
.x94{left:227.281200pt;}
.xc5{left:228.517333pt;}
.x23{left:230.232000pt;}
.xa2{left:232.345467pt;}
.x24{left:233.506667pt;}
.x21{left:234.921333pt;}
.x63{left:235.946667pt;}
.xb6{left:236.866667pt;}
.x70{left:238.878667pt;}
.x92{left:240.652667pt;}
.x96{left:243.196853pt;}
.xa1{left:245.064667pt;}
.x25{left:246.790667pt;}
.x98{left:248.171520pt;}
.x97{left:250.318827pt;}
.xa6{left:252.216747pt;}
.xa5{left:254.259307pt;}
.xb1{left:257.085333pt;}
.x2e{left:260.002667pt;}
.x71{left:261.037333pt;}
.x75{left:262.597067pt;}
.x77{left:263.511467pt;}
.x3b{left:264.630667pt;}
.xaf{left:267.221333pt;}
.x79{left:269.471867pt;}
.xb2{left:270.368000pt;}
.x78{left:271.828667pt;}
.xe{left:272.953333pt;}
.x74{left:277.273067pt;}
.xb0{left:280.505333pt;}
.x73{left:284.519867pt;}
.x72{left:285.868000pt;}
.x26{left:288.085333pt;}
.x27{left:301.369333pt;}
.x28{left:304.756000pt;}
.x6b{left:307.133333pt;}
.x33{left:309.290667pt;}
.x6e{left:312.641333pt;}
.x29{left:318.040000pt;}
.x34{left:320.797333pt;}
.x49{left:322.253333pt;}
.x6f{left:324.680000pt;}
.xf{left:330.814667pt;}
.x4a{left:335.537333pt;}
.x6c{left:339.905333pt;}
.x6a{left:344.113333pt;}
.x69{left:345.230667pt;}
.x59{left:348.012000pt;}
.x5a{left:351.369333pt;}
.x3c{left:353.309333pt;}
.x6d{left:354.650667pt;}
.x3d{left:364.236000pt;}
.x68{left:371.926667pt;}
.x53{left:375.853333pt;}
.x4f{left:378.305333pt;}
.x8b{left:385.420933pt;}
.x88{left:387.434853pt;}
.x54{left:389.136000pt;}
.x37{left:396.790667pt;}
.x7c{left:397.949440pt;}
.x1b{left:403.162667pt;}
.x1c{left:416.446667pt;}
.x19{left:419.169333pt;}
.x2a{left:421.638667pt;}
.x3e{left:424.230667pt;}
.x1a{left:425.810667pt;}
.x93{left:428.599947pt;}
.x99{left:431.972427pt;}
.x2b{left:434.922667pt;}
.x2c{left:438.309333pt;}
.x31{left:445.904000pt;}
.x2d{left:451.593333pt;}
.x5d{left:455.905333pt;}
.x32{left:459.898667pt;}
.x55{left:461.982667pt;}
.x7d{left:465.153360pt;}
.xb3{left:466.216000pt;}
.x5e{left:469.188000pt;}
.x56{left:475.266667pt;}
.x57{left:478.570667pt;}
.xb4{left:479.498667pt;}
.xa8{left:482.109333pt;}
.x9a{left:485.734187pt;}
.x58{left:491.853333pt;}
.xbe{left:496.586667pt;}
.xa9{left:498.780000pt;}
.x9b{left:499.674347pt;}
.x9c{left:503.157307pt;}
.x15{left:507.369333pt;}
.xb8{left:508.973333pt;}
.xb9{left:512.325333pt;}
.x16{left:514.012000pt;}
.xa{left:518.306667pt;}
.x17{left:520.713333pt;}
.x2f{left:524.097333pt;}
.x18{left:527.354667pt;}
.xbb{left:531.010667pt;}
.x30{left:536.172000pt;}
.xce{left:539.533333pt;}
.xcd{left:547.406667pt;}
.xa7{left:549.336000pt;}
.x7e{left:554.616453pt;}
.xc3{left:555.970667pt;}
.x38{left:560.218667pt;}
.x8{left:563.452000pt;}
.x8f{left:568.821040pt;}
.x7f{left:570.046667pt;}
.x5b{left:579.436000pt;}
.x5f{left:583.854667pt;}
.x62{left:587.638667pt;}
.x7{left:589.052000pt;}
.x5c{left:590.361333pt;}
.xcc{left:591.756000pt;}
.x47{left:592.938667pt;}
.xc9{left:594.426667pt;}
.xc8{left:595.958667pt;}
.x60{left:597.138667pt;}
.x48{left:606.222667pt;}
.x64{left:608.300000pt;}
.xad{left:609.836000pt;}
.x42{left:611.466667pt;}
.xca{left:612.644000pt;}
.x9d{left:616.006667pt;}
.x9e{left:619.070507pt;}
.x9f{left:620.221787pt;}
.x43{left:622.392000pt;}
.xc2{left:624.238667pt;}
.x91{left:628.890960pt;}
.xb{left:631.149333pt;}
.x11{left:637.277333pt;}
.xc{left:638.705333pt;}
.xc6{left:647.438667pt;}
.xcb{left:648.684000pt;}
.xbc{left:649.698667pt;}
.x44{left:652.737333pt;}
.x35{left:655.105333pt;}
.x52{left:656.125333pt;}
.xc4{left:663.186667pt;}
.x80{left:664.184853pt;}
.x45{left:666.021333pt;}
.x36{left:668.714667pt;}
.x12{left:669.850667pt;}
.xc7{left:671.348000pt;}
.x46{left:672.796000pt;}
.x1d{left:673.858667pt;}
.x13{left:676.493333pt;}
.x9{left:679.632000pt;}
.x39{left:685.414667pt;}
.x14{left:686.389333pt;}
.xd{left:689.926667pt;}
.xa0{left:731.131547pt;}
.x82{left:758.323040pt;}
.x81{left:759.744373pt;}
.x90{left:760.774293pt;}
.x83{left:838.785813pt;}
.x84{left:840.413787pt;}
.x86{left:907.396853pt;}
.x85{left:909.309093pt;}
}




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