
    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_4e232315f6d789033961c8f3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_cee34b1eacd80c77c4ee2790.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c40055da92e9197f48d0f3e9.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_05a5f2ed2c319ff9d4ad43a3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ab510d105f09159b8830a609.woff')format("woff");}.ff5{font-family:ff5;line-height:1.676000;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_4b5989b06b33239d6de655cb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.665000;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_4ad5e13741503f8aa30b5fac.woff')format("woff");}.ff7{font-family:ff7;line-height:0.769000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_208a8b6873427930145a8a7b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.580000;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_941907d2b630a72d16a4ef09.woff')format("woff");}.ff9{font-family:ff9;line-height:2.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_04bc26111ee0329b617ae8f2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b16c89dd8e7a51f08211e27a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_a68255bbd3a8c861553a1f30.woff')format("woff");}.ffc{font-family:ffc;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bced055fa4712275d4a9dfb7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.698000;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;}
.m7{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);}
.m12{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);}
.mb{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);}
.m1c{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);}
.m19{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);}
.m5{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);}
.m2{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);}
.m26{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);}
.m1e{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);}
.m29{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);}
.m20{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);}
.m1f{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);}
.m14{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);}
.m13{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);}
.m22{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);}
.m1{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);}
.mf{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);}
.m27{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);}
.mc{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);}
.m6{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);}
.m8{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);}
.m9{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);}
.m17{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);}
.m1d{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);}
.m10{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);}
.m4{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);}
.m11{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);}
.m24{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);}
.m1b{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);}
.m1a{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);}
.m28{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);}
.m18{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);}
.m21{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);}
.m15{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);}
.m3{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);}
.m16{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);}
.md{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);}
.m23{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);}
.ma{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);}
.me{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);}
.vd{vertical-align:-21.702000px;}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v6{vertical-align:-10.854000px;}
.v4{vertical-align:-8.964000px;}
.v16{vertical-align:-6.666000px;}
.v0{vertical-align:0.000000px;}
.v15{vertical-align:5.496000px;}
.v13{vertical-align:12.528000px;}
.v17{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v14{vertical-align:27.936000px;}
.ve{vertical-align:29.028000px;}
.va{vertical-align:30.156000px;}
.v8{vertical-align:35.874000px;}
.v5{vertical-align:40.464000px;}
.v7{vertical-align:44.838000px;}
.vf{vertical-align:52.446000px;}
.v12{vertical-align:68.940000px;}
.v11{vertical-align:70.032000px;}
.vc{vertical-align:76.884000px;}
.v10{vertical-align:81.474000px;}
.vb{vertical-align:85.848000px;}
.v9{vertical-align:89.454000px;}
.ls6{letter-spacing:0.000000px;}
.ls3a{letter-spacing:0.000145px;}
.lsc{letter-spacing:0.000612px;}
.ls99{letter-spacing:0.004800px;}
.ls3c{letter-spacing:0.148200px;}
.ls3d{letter-spacing:0.154200px;}
.ls5e{letter-spacing:0.384600px;}
.ls9e{letter-spacing:0.503764px;}
.ls63{letter-spacing:0.542815px;}
.ls45{letter-spacing:0.565200px;}
.ls5d{letter-spacing:0.567886px;}
.ls49{letter-spacing:0.568514px;}
.ls3b{letter-spacing:0.571200px;}
.ls95{letter-spacing:0.579161px;}
.ls96{letter-spacing:0.585161px;}
.ls66{letter-spacing:0.670013px;}
.ls78{letter-spacing:0.670741px;}
.ls8a{letter-spacing:0.671530px;}
.ls8{letter-spacing:0.676741px;}
.ls26{letter-spacing:0.705507px;}
.ls5b{letter-spacing:0.714783px;}
.lsb{letter-spacing:0.717483px;}
.ls88{letter-spacing:0.741901px;}
.ls7f{letter-spacing:0.743675px;}
.ls67{letter-spacing:0.744145px;}
.ls89{letter-spacing:0.744476px;}
.ls9{letter-spacing:0.744583px;}
.ls83{letter-spacing:0.746725px;}
.ls65{letter-spacing:0.747901px;}
.ls1f{letter-spacing:0.748200px;}
.ls68{letter-spacing:0.750145px;}
.ls87{letter-spacing:0.752725px;}
.ls6b{letter-spacing:0.820741px;}
.ls64{letter-spacing:1.044017px;}
.ls84{letter-spacing:1.050017px;}
.ls47{letter-spacing:1.132766px;}
.ls42{letter-spacing:1.138766px;}
.ls94{letter-spacing:1.194716px;}
.ls7c{letter-spacing:1.312766px;}
.ls32{letter-spacing:1.394570px;}
.ls29{letter-spacing:1.400570px;}
.ls17{letter-spacing:1.420741px;}
.ls76{letter-spacing:1.462617px;}
.ls59{letter-spacing:1.464783px;}
.ls16{letter-spacing:1.490570px;}
.ls6a{letter-spacing:1.494374px;}
.ls7{letter-spacing:1.497986px;}
.ls5a{letter-spacing:1.498766px;}
.ls86{letter-spacing:1.614017px;}
.ls30{letter-spacing:1.622570px;}
.ls34{letter-spacing:1.628570px;}
.ls8b{letter-spacing:1.915555px;}
.ls24{letter-spacing:1.996766px;}
.ls48{letter-spacing:2.043662px;}
.ls52{letter-spacing:2.049662px;}
.ls70{letter-spacing:2.076017px;}
.ls7e{letter-spacing:2.082017px;}
.ls58{letter-spacing:2.092200px;}
.ls2d{letter-spacing:2.224766px;}
.ls77{letter-spacing:2.314741px;}
.ls11{letter-spacing:2.318725px;}
.ls22{letter-spacing:2.324725px;}
.ls81{letter-spacing:2.376017px;}
.ls69{letter-spacing:2.452954px;}
.ls1a{letter-spacing:2.686954px;}
.ls18{letter-spacing:2.692954px;}
.ls62{letter-spacing:2.811586px;}
.ls4a{letter-spacing:2.989200px;}
.ls91{letter-spacing:3.288583px;}
.ls71{letter-spacing:3.511151px;}
.ls39{letter-spacing:3.553200px;}
.ls37{letter-spacing:3.559200px;}
.ls6c{letter-spacing:4.008017px;}
.ls14{letter-spacing:4.303200px;}
.ls19{letter-spacing:4.305886px;}
.ls31{letter-spacing:4.306457px;}
.ls15{letter-spacing:4.485986px;}
.ls2a{letter-spacing:5.305829px;}
.ls7d{letter-spacing:7.223675px;}
.ls0{letter-spacing:8.367300px;}
.ls21{letter-spacing:8.816383px;}
.ls20{letter-spacing:10.760143px;}
.ls9d{letter-spacing:11.109088px;}
.ls55{letter-spacing:11.438576px;}
.ls2e{letter-spacing:11.476457px;}
.ls6d{letter-spacing:11.495675px;}
.ls5{letter-spacing:11.960850px;}
.ls1c{letter-spacing:12.339483px;}
.ls27{letter-spacing:12.370200px;}
.ls25{letter-spacing:12.481829px;}
.ls33{letter-spacing:13.077507px;}
.ls28{letter-spacing:13.083483px;}
.ls2f{letter-spacing:13.089483px;}
.ls9a{letter-spacing:13.223609px;}
.ls98{letter-spacing:13.448400px;}
.lsa0{letter-spacing:13.454400px;}
.ls9b{letter-spacing:13.457307px;}
.ls10{letter-spacing:14.704798px;}
.lsf{letter-spacing:14.884124px;}
.ls8f{letter-spacing:14.936773px;}
.lsd{letter-spacing:15.123227px;}
.lse{letter-spacing:15.183002px;}
.ls4b{letter-spacing:15.508514px;}
.ls4f{letter-spacing:15.514514px;}
.ls8e{letter-spacing:15.594088px;}
.ls6f{letter-spacing:15.690172px;}
.ls9f{letter-spacing:16.434600px;}
.ls8d{letter-spacing:16.553510px;}
.ls61{letter-spacing:16.604238px;}
.ls1e{letter-spacing:17.319483px;}
.ls80{letter-spacing:17.325483px;}
.ls54{letter-spacing:18.069483px;}
.ls75{letter-spacing:18.101675px;}
.ls8c{letter-spacing:18.399634px;}
.ls4{letter-spacing:18.465634px;}
.ls35{letter-spacing:18.496457px;}
.ls82{letter-spacing:18.502514px;}
.ls56{letter-spacing:18.626400px;}
.lsa1{letter-spacing:19.268047px;}
.ls1d{letter-spacing:19.294954px;}
.ls9c{letter-spacing:19.656282px;}
.ls5c{letter-spacing:19.965050px;}
.ls57{letter-spacing:20.259483px;}
.ls93{letter-spacing:20.275654px;}
.ls50{letter-spacing:20.335200px;}
.ls3e{letter-spacing:20.341200px;}
.ls6e{letter-spacing:20.689200px;}
.ls53{letter-spacing:20.908514px;}
.ls7a{letter-spacing:20.911142px;}
.ls3f{letter-spacing:21.057483px;}
.ls60{letter-spacing:21.220338px;}
.ls38{letter-spacing:21.825100px;}
.ls41{letter-spacing:23.046783px;}
.ls46{letter-spacing:23.052783px;}
.ls43{letter-spacing:24.366783px;}
.ls72{letter-spacing:24.645483px;}
.lsa{letter-spacing:24.897634px;}
.ls51{letter-spacing:25.239483px;}
.ls4e{letter-spacing:25.245483px;}
.ls40{letter-spacing:25.321200px;}
.ls4c{letter-spacing:28.233483px;}
.ls4d{letter-spacing:28.627200px;}
.ls12{letter-spacing:29.938766px;}
.ls36{letter-spacing:30.007351px;}
.ls5f{letter-spacing:30.026871px;}
.ls13{letter-spacing:32.901483px;}
.ls97{letter-spacing:35.019634px;}
.ls2c{letter-spacing:37.149483px;}
.ls23{letter-spacing:38.781483px;}
.ls1b{letter-spacing:38.794741px;}
.ls1{letter-spacing:57.415200px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls79{letter-spacing:71.384100px;}
.ls44{letter-spacing:73.472100px;}
.ls74{letter-spacing:79.067400px;}
.ls73{letter-spacing:97.364725px;}
.ls2b{letter-spacing:133.250100px;}
.ls85{letter-spacing:179.630725px;}
.ls92{letter-spacing:285.466741px;}
.ls7b{letter-spacing:413.644741px;}
.ls90{letter-spacing:465.529200px;}
.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;}
}
.ws26{word-spacing:-14.943900px;}
.wsb7{word-spacing:-13.449600px;}
.ws1f{word-spacing:-11.955150px;}
.ws8{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.wsfd{word-spacing:-4.088664px;}
.wsc6{word-spacing:-3.347434px;}
.ws84{word-spacing:-3.287658px;}
.ws29{word-spacing:-2.988780px;}
.ws106{word-spacing:-2.929004px;}
.wsc7{word-spacing:-2.749678px;}
.ws10b{word-spacing:-2.743718px;}
.ws11e{word-spacing:-2.700332px;}
.wsa0{word-spacing:-2.689902px;}
.ws11f{word-spacing:-2.677729px;}
.ws8c{word-spacing:-2.630126px;}
.ws57{word-spacing:-2.570351px;}
.ws53{word-spacing:-2.510575px;}
.ws7f{word-spacing:-2.450800px;}
.ws69{word-spacing:-2.271473px;}
.ws30{word-spacing:-2.211697px;}
.ws13{word-spacing:-2.151922px;}
.ws3{word-spacing:-2.093494px;}
.wsf5{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.wsc5{word-spacing:-2.032370px;}
.wse7{word-spacing:-1.912819px;}
.wsf{word-spacing:-1.853044px;}
.ws6f{word-spacing:-1.829146px;}
.wsef{word-spacing:-1.793268px;}
.ws2d{word-spacing:-1.733492px;}
.wse8{word-spacing:-1.697355px;}
.ws16{word-spacing:-1.673717px;}
.ws12a{word-spacing:-1.613952px;}
.ws81{word-spacing:-1.554166px;}
.wsee{word-spacing:-1.494390px;}
.ws13e{word-spacing:-1.452557px;}
.wse9{word-spacing:-1.315063px;}
.ws9c{word-spacing:-1.255288px;}
.wsec{word-spacing:-1.242853px;}
.ws140{word-spacing:-1.237363px;}
.ws18{word-spacing:-1.195512px;}
.wsf6{word-spacing:-1.135736px;}
.ws123{word-spacing:-1.075968px;}
.ws3d{word-spacing:-1.075961px;}
.ws9d{word-spacing:-1.016185px;}
.ws2a{word-spacing:-0.956410px;}
.ws60{word-spacing:-0.896634px;}
.ws1c{word-spacing:-0.836858px;}
.ws1b{word-spacing:-0.777083px;}
.ws2b{word-spacing:-0.717307px;}
.ws78{word-spacing:-0.657532px;}
.wsb4{word-spacing:-0.597756px;}
.ws13c{word-spacing:-0.537984px;}
.ws24{word-spacing:-0.537980px;}
.ws10a{word-spacing:-0.484186px;}
.ws49{word-spacing:-0.478205px;}
.ws4f{word-spacing:-0.418429px;}
.ws14{word-spacing:-0.358654px;}
.ws109{word-spacing:-0.322790px;}
.ws77{word-spacing:-0.313379px;}
.ws108{word-spacing:-0.309369px;}
.ws73{word-spacing:-0.305694px;}
.ws2c{word-spacing:-0.298878px;}
.ws128{word-spacing:-0.268992px;}
.ws68{word-spacing:-0.248164px;}
.wsc{word-spacing:-0.239102px;}
.ws130{word-spacing:-0.234303px;}
.ws121{word-spacing:-0.215194px;}
.ws119{word-spacing:-0.207031px;}
.ws118{word-spacing:-0.186606px;}
.wsd{word-spacing:-0.179327px;}
.ws7c{word-spacing:-0.178368px;}
.ws7b{word-spacing:-0.172445px;}
.ws5b{word-spacing:-0.161395px;}
.ws11{word-spacing:-0.119551px;}
.wsbf{word-spacing:-0.107597px;}
.wsd3{word-spacing:-0.103047px;}
.ws52{word-spacing:-0.085870px;}
.ws97{word-spacing:-0.082584px;}
.wsf8{word-spacing:-0.062287px;}
.wse5{word-spacing:-0.060320px;}
.ws12{word-spacing:-0.059776px;}
.wse4{word-spacing:-0.057932px;}
.wsd1{word-spacing:-0.053798px;}
.ws111{word-spacing:-0.013018px;}
.ws12c{word-spacing:-0.009427px;}
.ws146{word-spacing:-0.006221px;}
.ws13b{word-spacing:-0.003427px;}
.ws1e{word-spacing:-0.002857px;}
.ws6{word-spacing:0.000000px;}
.ws138{word-spacing:0.000650px;}
.ws39{word-spacing:0.002700px;}
.ws38{word-spacing:0.004500px;}
.ws76{word-spacing:0.004808px;}
.ws132{word-spacing:0.008415px;}
.ws59{word-spacing:0.053798px;}
.ws10{word-spacing:0.059776px;}
.wsb1{word-spacing:0.068049px;}
.ws5a{word-spacing:0.107597px;}
.ws56{word-spacing:0.116704px;}
.ws27{word-spacing:0.119551px;}
.ws11a{word-spacing:0.143460px;}
.ws28{word-spacing:0.146974px;}
.ws5c{word-spacing:0.161395px;}
.wsb{word-spacing:0.179327px;}
.ws120{word-spacing:0.189038px;}
.wsce{word-spacing:0.215194px;}
.wse1{word-spacing:0.233512px;}
.wse{word-spacing:0.239102px;}
.ws41{word-spacing:0.257642px;}
.ws12e{word-spacing:0.268992px;}
.ws22{word-spacing:0.298878px;}
.ws122{word-spacing:0.322790px;}
.ws3b{word-spacing:0.346649px;}
.ws3c{word-spacing:0.351422px;}
.ws23{word-spacing:0.358654px;}
.ws55{word-spacing:0.418429px;}
.ws2{word-spacing:0.420133px;}
.ws5{word-spacing:0.422252px;}
.ws37{word-spacing:0.474618px;}
.ws36{word-spacing:0.478205px;}
.wsad{word-spacing:0.534396px;}
.wsac{word-spacing:0.537980px;}
.ws134{word-spacing:0.591782px;}
.ws58{word-spacing:0.597756px;}
.ws5f{word-spacing:0.657532px;}
.ws148{word-spacing:0.697147px;}
.ws149{word-spacing:0.699379px;}
.wsa3{word-spacing:0.777083px;}
.wsdf{word-spacing:0.806976px;}
.wsc1{word-spacing:0.836858px;}
.ws4e{word-spacing:0.896634px;}
.ws4c{word-spacing:0.912612px;}
.wsf2{word-spacing:0.914573px;}
.ws4d{word-spacing:0.936672px;}
.ws3f{word-spacing:0.956410px;}
.ws31{word-spacing:1.016185px;}
.ws32{word-spacing:1.075961px;}
.ws129{word-spacing:1.129766px;}
.wsa4{word-spacing:1.135736px;}
.ws83{word-spacing:1.195512px;}
.ws10d{word-spacing:1.237363px;}
.wsc8{word-spacing:1.255288px;}
.wsd2{word-spacing:1.284874px;}
.wscc{word-spacing:1.291162px;}
.ws67{word-spacing:1.315063px;}
.ws2e{word-spacing:1.374839px;}
.ws137{word-spacing:1.398758px;}
.wsb8{word-spacing:1.452557px;}
.wsf9{word-spacing:1.494390px;}
.ws6b{word-spacing:1.554166px;}
.wsaa{word-spacing:1.613941px;}
.wsbe{word-spacing:1.667750px;}
.ws65{word-spacing:1.756610px;}
.ws9f{word-spacing:1.763446px;}
.ws6e{word-spacing:1.793268px;}
.ws15{word-spacing:1.853044px;}
.ws12f{word-spacing:1.882944px;}
.ws45{word-spacing:1.912819px;}
.ws102{word-spacing:1.916653px;}
.wsde{word-spacing:1.936742px;}
.ws11c{word-spacing:1.972595px;}
.ws11d{word-spacing:2.032370px;}
.ws135{word-spacing:2.044339px;}
.ws61{word-spacing:2.211697px;}
.wsae{word-spacing:2.220715px;}
.ws20{word-spacing:2.271473px;}
.ws80{word-spacing:2.331248px;}
.ws8d{word-spacing:2.391024px;}
.wsa5{word-spacing:2.450800px;}
.wsa6{word-spacing:2.479539px;}
.wsa7{word-spacing:2.510575px;}
.wsd5{word-spacing:2.630126px;}
.ws44{word-spacing:2.689902px;}
.ws117{word-spacing:2.725774px;}
.wsc9{word-spacing:2.749678px;}
.wsb0{word-spacing:2.802365px;}
.wsaf{word-spacing:2.809453px;}
.wsf1{word-spacing:2.869229px;}
.wsa{word-spacing:2.869236px;}
.wscb{word-spacing:2.905114px;}
.ws127{word-spacing:2.923125px;}
.wsa1{word-spacing:2.929004px;}
.wsd0{word-spacing:2.958912px;}
.wsca{word-spacing:2.988780px;}
.wscf{word-spacing:3.012710px;}
.ws6a{word-spacing:3.048556px;}
.ws35{word-spacing:3.168107px;}
.ws139{word-spacing:3.174106px;}
.ws17{word-spacing:3.219067px;}
.ws133{word-spacing:3.221030px;}
.ws14a{word-spacing:3.224006px;}
.ws141{word-spacing:3.225466px;}
.ws13d{word-spacing:3.226637px;}
.wse6{word-spacing:3.227904px;}
.wsb9{word-spacing:3.287658px;}
.ws3a{word-spacing:3.466985px;}
.ws14e{word-spacing:3.496896px;}
.ws2f{word-spacing:3.526760px;}
.ws1d{word-spacing:3.586536px;}
.ws13a{word-spacing:3.604493px;}
.ws113{word-spacing:3.625264px;}
.ws21{word-spacing:3.646312px;}
.ws40{word-spacing:3.706087px;}
.ws12b{word-spacing:3.712090px;}
.ws5e{word-spacing:3.765863px;}
.wsf4{word-spacing:3.765888px;}
.ws75{word-spacing:3.825638px;}
.ws25{word-spacing:3.945190px;}
.ws82{word-spacing:4.004965px;}
.wscd{word-spacing:4.088678px;}
.ws42{word-spacing:4.124516px;}
.wse0{word-spacing:4.142477px;}
.ws8f{word-spacing:4.148822px;}
.ws8e{word-spacing:4.154772px;}
.ws94{word-spacing:4.154822px;}
.wsff{word-spacing:4.184292px;}
.ws107{word-spacing:4.196275px;}
.ws100{word-spacing:4.210028px;}
.ws90{word-spacing:4.220772px;}
.ws96{word-spacing:4.220822px;}
.ws95{word-spacing:4.226772px;}
.ws91{word-spacing:4.226822px;}
.ws101{word-spacing:4.244068px;}
.wsb5{word-spacing:4.276820px;}
.wsb6{word-spacing:4.295275px;}
.ws1a{word-spacing:4.303872px;}
.wsf3{word-spacing:4.357670px;}
.ws3e{word-spacing:4.363619px;}
.ws33{word-spacing:4.423394px;}
.wsa9{word-spacing:4.483170px;}
.ws74{word-spacing:4.542946px;}
.ws112{word-spacing:4.565141px;}
.wsba{word-spacing:4.602721px;}
.ws14b{word-spacing:4.617632px;}
.wsd8{word-spacing:4.626662px;}
.ws131{word-spacing:4.734259px;}
.ws34{word-spacing:4.782048px;}
.wse3{word-spacing:4.841824px;}
.ws14d{word-spacing:4.841856px;}
.ws125{word-spacing:4.895654px;}
.ws10f{word-spacing:4.901599px;}
.wsc3{word-spacing:4.934396px;}
.wsc4{word-spacing:4.938362px;}
.ws4b{word-spacing:4.961375px;}
.wsab{word-spacing:5.021150px;}
.ws147{word-spacing:5.057050px;}
.wsea{word-spacing:5.080926px;}
.ws7e{word-spacing:5.140702px;}
.wsbc{word-spacing:5.200477px;}
.wsbb{word-spacing:5.215447px;}
.ws142{word-spacing:5.244938px;}
.ws143{word-spacing:5.272243px;}
.wsd6{word-spacing:5.487437px;}
.ws7a{word-spacing:5.618906px;}
.wsdb{word-spacing:5.633270px;}
.ws72{word-spacing:5.678682px;}
.wsfc{word-spacing:5.798233px;}
.ws14c{word-spacing:5.810227px;}
.wsfb{word-spacing:5.858009px;}
.ws7d{word-spacing:5.917784px;}
.ws46{word-spacing:5.977560px;}
.wsf0{word-spacing:6.037336px;}
.ws54{word-spacing:6.156887px;}
.wsb3{word-spacing:6.276438px;}
.ws126{word-spacing:6.294413px;}
.ws79{word-spacing:6.336214px;}
.ws43{word-spacing:6.395989px;}
.ws8a{word-spacing:6.571416px;}
.ws103{word-spacing:6.572772px;}
.wsda{word-spacing:6.576372px;}
.ws86{word-spacing:6.613416px;}
.ws47{word-spacing:6.814418px;}
.wsbd{word-spacing:6.874194px;}
.ws85{word-spacing:6.933970px;}
.wsdc{word-spacing:6.996158px;}
.ws12d{word-spacing:7.047590px;}
.wsa8{word-spacing:7.053521px;}
.ws71{word-spacing:7.223965px;}
.ws50{word-spacing:7.232848px;}
.wse2{word-spacing:7.292623px;}
.wsfe{word-spacing:7.352399px;}
.wsdd{word-spacing:7.370381px;}
.ws110{word-spacing:7.471950px;}
.ws11b{word-spacing:7.591501px;}
.wsfa{word-spacing:7.770828px;}
.wsc0{word-spacing:7.830604px;}
.ws145{word-spacing:7.854566px;}
.ws51{word-spacing:7.950155px;}
.wsc2{word-spacing:8.069706px;}
.ws144{word-spacing:8.284954px;}
.wsa2{word-spacing:8.428360px;}
.ws10e{word-spacing:8.488135px;}
.ws87{word-spacing:8.982216px;}
.wsf7{word-spacing:8.983697px;}
.wseb{word-spacing:8.984150px;}
.ws63{word-spacing:9.544610px;}
.ws136{word-spacing:9.791309px;}
.ws62{word-spacing:10.549130px;}
.ws70{word-spacing:10.819384px;}
.ws99{word-spacing:12.283416px;}
.wsb2{word-spacing:12.373549px;}
.ws5d{word-spacing:12.911530px;}
.ws124{word-spacing:13.272940px;}
.ws10c{word-spacing:13.664794px;}
.ws88{word-spacing:14.528772px;}
.ws89{word-spacing:14.534822px;}
.ws114{word-spacing:14.884124px;}
.ws19{word-spacing:15.003676px;}
.ws6d{word-spacing:15.063451px;}
.ws6c{word-spacing:15.123227px;}
.wsd4{word-spacing:15.481880px;}
.ws9a{word-spacing:17.263416px;}
.wsd7{word-spacing:17.602805px;}
.ws48{word-spacing:17.938541px;}
.ws104{word-spacing:18.449184px;}
.ws13f{word-spacing:19.900253px;}
.ws1{word-spacing:22.179541px;}
.ws93{word-spacing:30.634009px;}
.ws92{word-spacing:44.749416px;}
.ws7{word-spacing:46.059600px;}
.ws9{word-spacing:60.999600px;}
.ws98{word-spacing:123.675716px;}
.ws9b{word-spacing:129.593501px;}
.wsd9{word-spacing:178.082408px;}
.ws116{word-spacing:222.245681px;}
.ws115{word-spacing:237.189581px;}
.ws8b{word-spacing:337.552813px;}
.ws9e{word-spacing:343.496567px;}
.ws64{word-spacing:452.501292px;}
.ws105{word-spacing:462.364266px;}
.ws66{word-spacing:666.199062px;}
.ws4a{word-spacing:834.407600px;}
.wsed{word-spacing:836.260644px;}
._20{margin-left:-1332.780333px;}
._47{margin-left:-20.542482px;}
._3{margin-left:-11.943245px;}
._35{margin-left:-9.992517px;}
._f{margin-left:-7.770828px;}
._6{margin-left:-6.168857px;}
._1b{margin-left:-5.080926px;}
._2{margin-left:-3.849538px;}
._1{margin-left:-2.301354px;}
._7{margin-left:-1.075961px;}
._12{width:1.494390px;}
._4{width:2.986099px;}
._11{width:4.900217px;}
._24{width:8.015962px;}
._10{width:9.205474px;}
._0{width:10.879128px;}
._28{width:12.373632px;}
._1c{width:13.479391px;}
._34{width:14.495576px;}
._a{width:15.613389px;}
._c{width:17.394700px;}
._8{width:18.530436px;}
._9{width:19.546621px;}
._16{width:20.981236px;}
._17{width:22.236523px;}
._19{width:23.563557px;}
._1a{width:25.261396px;}
._1e{width:26.899020px;}
._13{width:28.811839px;}
._18{width:30.545332px;}
._14{width:32.278824px;}
._15{width:33.414560px;}
._25{width:34.789399px;}
._33{width:35.865360px;}
._b{width:37.539077px;}
._1d{width:38.704694px;}
._22{width:40.288754px;}
._3d{width:41.364715px;}
._36{width:42.380900px;}
._5{width:54.429634px;}
._3c{width:58.224848px;}
._46{width:61.868160px;}
._29{width:72.478937px;}
._27{width:93.548814px;}
._26{width:96.537594px;}
._37{width:120.746712px;}
._1f{width:127.268845px;}
._3f{width:154.221048px;}
._40{width:161.932100px;}
._2b{width:164.442644px;}
._38{width:169.266173px;}
._2e{width:186.858494px;}
._2a{width:203.356591px;}
._30{width:214.415046px;}
._42{width:252.133481px;}
._44{width:259.605431px;}
._31{width:275.744843px;}
._2c{width:290.688743px;}
._2f{width:298.160693px;}
._2d{width:348.133063px;}
._21{width:362.109838px;}
._45{width:436.302104px;}
._43{width:484.301911px;}
._32{width:516.102499px;}
._41{width:562.607947px;}
._3a{width:569.781019px;}
._3b{width:717.187649px;}
._39{width:747.075449px;}
._3e{width:780.669336px;}
._d{width:1940.198700px;}
._23{width:2533.412700px;}
._e{width:2557.322700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fsc{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs8{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fsb{font-size:49.829400px;}
.fs9{font-size:53.798400px;}
.fsa{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y40{bottom:45.921000px;}
.y3f{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y176{bottom:107.251500px;}
.y11a{bottom:109.075500px;}
.yd0{bottom:110.053500px;}
.y8d{bottom:111.967500px;}
.y141{bottom:113.299500px;}
.y14{bottom:118.147500px;}
.y3e{bottom:120.610500px;}
.y25b{bottom:120.747000px;}
.y2c8{bottom:125.112000px;}
.ya9{bottom:125.161500px;}
.y1d7{bottom:125.865000px;}
.y265{bottom:127.285500px;}
.y175{bottom:128.142000px;}
.y119{bottom:129.967500px;}
.yce{bottom:130.945500px;}
.y8c{bottom:132.859500px;}
.y140{bottom:134.191500px;}
.y13{bottom:136.035000px;}
.ycf{bottom:136.371000px;}
.yf4{bottom:136.408500px;}
.y73{bottom:137.298000px;}
.y3d{bottom:141.502500px;}
.y25a{bottom:141.637500px;}
.y183{bottom:142.014000px;}
.y2c7{bottom:144.262500px;}
.ya8{bottom:146.053500px;}
.y1d6{bottom:146.757000px;}
.y174{bottom:149.034000px;}
.y1bd{bottom:149.611500px;}
.y118{bottom:150.859500px;}
.y1a5{bottom:150.952500px;}
.ycd{bottom:151.837500px;}
.y8b{bottom:153.750000px;}
.y12{bottom:153.924000px;}
.y13f{bottom:155.083500px;}
.y296{bottom:155.098500px;}
.y264{bottom:155.751000px;}
.yf3{bottom:157.299000px;}
.y72{bottom:158.190000px;}
.y201{bottom:160.234500px;}
.y182{bottom:161.247000px;}
.y3c{bottom:162.394500px;}
.y259{bottom:162.529500px;}
.y2c6{bottom:163.413000px;}
.ya7{bottom:166.945500px;}
.y1d5{bottom:167.649000px;}
.y173{bottom:169.926000px;}
.y1bc{bottom:170.502000px;}
.y117{bottom:171.751500px;}
.y11{bottom:171.811500px;}
.y1a4{bottom:171.844500px;}
.y295{bottom:174.249000px;}
.y8a{bottom:174.642000px;}
.y13e{bottom:175.974000px;}
.ycc{bottom:177.211500px;}
.yf2{bottom:178.191000px;}
.y71{bottom:179.082000px;}
.y181{bottom:180.480000px;}
.y200{bottom:181.126500px;}
.y2c5{bottom:182.563500px;}
.y3b{bottom:183.285000px;}
.y258{bottom:183.421500px;}
.y263{bottom:184.216500px;}
.ya6{bottom:187.836000px;}
.y1d4{bottom:188.539500px;}
.y10{bottom:189.699000px;}
.y172{bottom:190.816500px;}
.y1bb{bottom:191.394000px;}
.y116{bottom:192.642000px;}
.y1a3{bottom:192.735000px;}
.y294{bottom:193.399500px;}
.y13d{bottom:196.866000px;}
.y180{bottom:199.713000px;}
.y70{bottom:199.972500px;}
.y89{bottom:200.017500px;}
.y2c4{bottom:201.714000px;}
.y1ff{bottom:202.018500px;}
.y262{bottom:203.715000px;}
.y154{bottom:204.177000px;}
.y257{bottom:204.313500px;}
.yf{bottom:207.586500px;}
.y3a{bottom:208.660500px;}
.ya5{bottom:208.728000px;}
.ycb{bottom:209.358000px;}
.y1d3{bottom:209.431500px;}
.y223{bottom:209.704500px;}
.y171{bottom:211.708500px;}
.y1ba{bottom:212.286000px;}
.y293{bottom:212.550000px;}
.yf1{bottom:212.707500px;}
.y115{bottom:213.534000px;}
.y1a2{bottom:213.627000px;}
.y13c{bottom:217.758000px;}
.y17f{bottom:218.946000px;}
.y6f{bottom:220.864500px;}
.y1fe{bottom:222.909000px;}
.yf0{bottom:222.958500px;}
.y261{bottom:223.213500px;}
.y153{bottom:225.069000px;}
.y256{bottom:225.204000px;}
.ye{bottom:225.475500px;}
.yca{bottom:228.591000px;}
.ya4{bottom:229.620000px;}
.y1d2{bottom:230.323500px;}
.y222{bottom:230.596500px;}
.y292{bottom:231.700500px;}
.y170{bottom:232.600500px;}
.y114{bottom:234.426000px;}
.y1a1{bottom:234.519000px;}
.y88{bottom:235.359000px;}
.y13b{bottom:238.648500px;}
.y2c3{bottom:240.015000px;}
.y6e{bottom:241.756500px;}
.y1fd{bottom:243.801000px;}
.y152{bottom:245.961000px;}
.y255{bottom:246.096000px;}
.yc9{bottom:247.824000px;}
.y1b9{bottom:247.914000px;}
.y236{bottom:250.443000px;}
.ya3{bottom:250.510500px;}
.y291{bottom:250.851000px;}
.y1d1{bottom:251.214000px;}
.y221{bottom:251.487000px;}
.y260{bottom:251.679000px;}
.yd{bottom:252.330000px;}
.y16f{bottom:253.492500px;}
.y113{bottom:255.316500px;}
.y1a0{bottom:255.409500px;}
.y87{bottom:256.251000px;}
.y2c2{bottom:259.165500px;}
.y13a{bottom:259.540500px;}
.y6d{bottom:262.647000px;}
.y1fc{bottom:264.693000px;}
.y151{bottom:266.851500px;}
.y254{bottom:266.988000px;}
.y1b8{bottom:267.145500px;}
.yef{bottom:267.711000px;}
.y290{bottom:270.001500px;}
.yc{bottom:270.217500px;}
.y25f{bottom:271.177500px;}
.ya2{bottom:271.402500px;}
.y1d0{bottom:272.106000px;}
.y16e{bottom:274.383000px;}
.y112{bottom:276.208500px;}
.y19f{bottom:276.301500px;}
.y86{bottom:277.143000px;}
.y2c1{bottom:278.316000px;}
.y139{bottom:280.432500px;}
.y6c{bottom:283.539000px;}
.y1fb{bottom:285.583500px;}
.y235{bottom:285.786000px;}
.y1b7{bottom:286.378500px;}
.y150{bottom:287.743500px;}
.y39{bottom:287.872500px;}
.y253{bottom:287.878500px;}
.yb{bottom:288.105000px;}
.yee{bottom:288.603000px;}
.y28f{bottom:289.152000px;}
.y25e{bottom:290.676000px;}
.ya1{bottom:292.294500px;}
.y1cf{bottom:292.998000px;}
.y111{bottom:297.100500px;}
.y19e{bottom:297.193500px;}
.y2c0{bottom:297.466500px;}
.y85{bottom:298.033500px;}
.y220{bottom:299.460000px;}
.y16d{bottom:299.758500px;}
.y138{bottom:301.323000px;}
.y6b{bottom:304.431000px;}
.y1b6{bottom:305.611500px;}
.ya{bottom:305.994000px;}
.y234{bottom:306.678000px;}
.y28e{bottom:308.302500px;}
.y14f{bottom:308.635500px;}
.y38{bottom:308.763000px;}
.y252{bottom:308.770500px;}
.yed{bottom:309.495000px;}
.y25d{bottom:310.174500px;}
.y1fa{bottom:310.959000px;}
.ya0{bottom:313.186500px;}
.y1ce{bottom:313.888500px;}
.y2bf{bottom:316.617000px;}
.y21f{bottom:317.392500px;}
.y110{bottom:317.991000px;}
.y19d{bottom:318.084000px;}
.y84{bottom:318.925500px;}
.y137{bottom:322.215000px;}
.y9{bottom:323.881500px;}
.y1b5{bottom:324.844500px;}
.y6a{bottom:325.323000px;}
.y28d{bottom:327.453000px;}
.y233{bottom:327.568500px;}
.y14e{bottom:329.526000px;}
.y37{bottom:329.655000px;}
.y251{bottom:329.662500px;}
.y25c{bottom:329.674500px;}
.y9f{bottom:334.077000px;}
.y16c{bottom:335.100000px;}
.y21e{bottom:335.325000px;}
.y2be{bottom:335.767500px;}
.y10f{bottom:338.883000px;}
.y19c{bottom:338.976000px;}
.y1cd{bottom:339.264000px;}
.y83{bottom:339.817500px;}
.y8{bottom:341.769000px;}
.y136{bottom:343.107000px;}
.yec{bottom:343.342500px;}
.y69{bottom:346.213500px;}
.y1f9{bottom:346.302000px;}
.y28c{bottom:346.603500px;}
.y232{bottom:348.460500px;}
.y14d{bottom:350.418000px;}
.y250{bottom:350.553000px;}
.yeb{bottom:353.593500px;}
.y2bd{bottom:354.918000px;}
.y9e{bottom:354.969000px;}
.y16b{bottom:355.992000px;}
.y7{bottom:359.658000px;}
.y10e{bottom:359.775000px;}
.y19b{bottom:359.868000px;}
.y82{bottom:360.708000px;}
.y21d{bottom:360.759000px;}
.y135{bottom:363.999000px;}
.y28b{bottom:365.754000px;}
.y68{bottom:367.105500px;}
.y1f8{bottom:367.192500px;}
.y36{bottom:368.479500px;}
.y231{bottom:369.352500px;}
.y24f{bottom:371.445000px;}
.y2bc{bottom:374.070000px;}
.y1cc{bottom:374.605500px;}
.y14c{bottom:375.792000px;}
.y9d{bottom:375.861000px;}
.y16a{bottom:376.884000px;}
.y6{bottom:377.545500px;}
.y19a{bottom:380.760000px;}
.y81{bottom:381.600000px;}
.y134{bottom:384.889500px;}
.y28a{bottom:384.904500px;}
.y67{bottom:387.997500px;}
.y1f7{bottom:388.084500px;}
.y35{bottom:389.371500px;}
.y230{bottom:390.243000px;}
.y24e{bottom:392.337000px;}
.y2bb{bottom:393.220500px;}
.y21c{bottom:393.424500px;}
.y10d{bottom:395.403000px;}
.y1cb{bottom:395.497500px;}
.y9c{bottom:396.751500px;}
.y169{bottom:397.774500px;}
.yea{bottom:398.875500px;}
.y5{bottom:401.410500px;}
.y199{bottom:401.650500px;}
.y80{bottom:402.492000px;}
.y289{bottom:404.055000px;}
.y133{bottom:405.781500px;}
.y66{bottom:408.888000px;}
.y1f6{bottom:408.976500px;}
.y34{bottom:410.262000px;}
.y14b{bottom:411.135000px;}
.y2ba{bottom:412.371000px;}
.y17e{bottom:412.731000px;}
.y24d{bottom:413.227500px;}
.y1ca{bottom:416.389500px;}
.y9b{bottom:417.643500px;}
.y168{bottom:418.666500px;}
.y4{bottom:419.299500px;}
.ye9{bottom:419.767500px;}
.y198{bottom:422.542500px;}
.y288{bottom:423.205500px;}
.y7f{bottom:423.382500px;}
.y132{bottom:426.673500px;}
.y10c{bottom:428.247000px;}
.y65{bottom:429.780000px;}
.y1f5{bottom:429.867000px;}
.y21b{bottom:430.528500px;}
.y33{bottom:431.154000px;}
.y2b9{bottom:431.521500px;}
.y14a{bottom:432.027000px;}
.y17d{bottom:433.621500px;}
.y24c{bottom:434.119500px;}
.y3{bottom:437.187000px;}
.y1c9{bottom:437.281500px;}
.y9a{bottom:438.535500px;}
.y167{bottom:439.558500px;}
.ye8{bottom:440.659500px;}
.y287{bottom:442.357500px;}
.y197{bottom:443.434500px;}
.y131{bottom:447.564000px;}
.y7e{bottom:448.758000px;}
.y64{bottom:450.672000px;}
.y1f4{bottom:450.759000px;}
.y21a{bottom:451.420500px;}
.y32{bottom:452.046000px;}
.y149{bottom:452.917500px;}
.y17c{bottom:454.513500px;}
.y24b{bottom:455.011500px;}
.y2{bottom:455.074500px;}
.y1c8{bottom:458.172000px;}
.y99{bottom:459.426000px;}
.y166{bottom:460.449000px;}
.y286{bottom:461.508000px;}
.ye7{bottom:461.550000px;}
.yc8{bottom:462.420000px;}
.y196{bottom:464.325000px;}
.y22f{bottom:465.604500px;}
.y130{bottom:468.456000px;}
.y2b8{bottom:469.822500px;}
.y63{bottom:471.562500px;}
.y1f3{bottom:471.651000px;}
.y219{bottom:472.312500px;}
.y31{bottom:472.936500px;}
.y148{bottom:473.809500px;}
.y17b{bottom:475.405500px;}
.y10b{bottom:475.617000px;}
.y24a{bottom:475.902000px;}
.y1{bottom:478.941000px;}
.y1c7{bottom:479.064000px;}
.y285{bottom:480.658500px;}
.y165{bottom:481.341000px;}
.ye6{bottom:482.442000px;}
.yc7{bottom:483.310500px;}
.y7d{bottom:484.099500px;}
.y22e{bottom:484.837500px;}
.y195{bottom:485.217000px;}
.y2b7{bottom:488.973000px;}
.y62{bottom:492.454500px;}
.y1f2{bottom:492.541500px;}
.y218{bottom:493.204500px;}
.y30{bottom:493.828500px;}
.y12f{bottom:493.830000px;}
.y147{bottom:494.701500px;}
.y98{bottom:495.054000px;}
.y17a{bottom:496.296000px;}
.y249{bottom:496.794000px;}
.y284{bottom:499.809000px;}
.y164{bottom:502.233000px;}
.ye5{bottom:503.334000px;}
.y22d{bottom:504.070500px;}
.yc6{bottom:504.202500px;}
.y194{bottom:506.109000px;}
.y2b6{bottom:508.123500px;}
.y7c{bottom:512.301000px;}
.y61{bottom:513.346500px;}
.y1f1{bottom:513.433500px;}
.y217{bottom:514.095000px;}
.y97{bottom:514.287000px;}
.y1c6{bottom:514.692000px;}
.y2f{bottom:514.720500px;}
.y248{bottom:517.686000px;}
.y283{bottom:518.959500px;}
.y179{bottom:521.671500px;}
.y7b{bottom:522.553500px;}
.y10a{bottom:522.987000px;}
.ye4{bottom:524.224500px;}
.yc5{bottom:525.094500px;}
.y193{bottom:526.999500px;}
.y2b5{bottom:527.274000px;}
.y146{bottom:527.358000px;}
.y163{bottom:527.607000px;}
.y12e{bottom:529.173000px;}
.y96{bottom:533.520000px;}
.y1c5{bottom:533.925000px;}
.y60{bottom:534.237000px;}
.y1f0{bottom:534.325500px;}
.y2e{bottom:535.612500px;}
.y282{bottom:538.110000px;}
.y247{bottom:538.578000px;}
.y216{bottom:539.470500px;}
.ye3{bottom:545.116500px;}
.yc4{bottom:545.985000px;}
.y2b4{bottom:546.424500px;}
.y145{bottom:546.591000px;}
.y192{bottom:547.891500px;}
.y7a{bottom:550.065000px;}
.y95{bottom:552.753000px;}
.y1c4{bottom:553.158000px;}
.y178{bottom:553.816500px;}
.y5f{bottom:555.129000px;}
.y1ef{bottom:555.216000px;}
.y2d{bottom:556.503000px;}
.y281{bottom:557.260500px;}
.y162{bottom:562.950000px;}
.y246{bottom:563.952000px;}
.y2b3{bottom:565.575000px;}
.yc3{bottom:566.877000px;}
.y191{bottom:568.783500px;}
.y108{bottom:570.357000px;}
.y109{bottom:570.538500px;}
.y79{bottom:570.955500px;}
.y94{bottom:571.986000px;}
.y1c3{bottom:572.389500px;}
.y177{bottom:573.049500px;}
.y215{bottom:574.812000px;}
.y5e{bottom:576.021000px;}
.y1ee{bottom:576.108000px;}
.y280{bottom:576.411000px;}
.y1b4{bottom:576.648000px;}
.y2c{bottom:577.395000px;}
.ye2{bottom:583.417500px;}
.y161{bottom:583.842000px;}
.y2b2{bottom:584.725500px;}
.yc2{bottom:587.769000px;}
.y190{bottom:589.674000px;}
.y78{bottom:591.847500px;}
.y27f{bottom:595.561500px;}
.y214{bottom:595.704000px;}
.y5d{bottom:596.913000px;}
.y1ed{bottom:597.000000px;}
.y1b3{bottom:597.540000px;}
.y2b{bottom:598.287000px;}
.y2cb{bottom:602.134500px;}
.y245{bottom:602.776500px;}
.y2b1{bottom:603.876000px;}
.y160{bottom:604.732500px;}
.yc1{bottom:608.659500px;}
.y18f{bottom:610.566000px;}
.y77{bottom:612.739500px;}
.y27e{bottom:614.712000px;}
.y107{bottom:616.351500px;}
.y213{bottom:616.596000px;}
.y5c{bottom:617.803500px;}
.y1ec{bottom:617.892000px;}
.y1b2{bottom:618.430500px;}
.y2a{bottom:619.177500px;}
.y2ca{bottom:621.286500px;}
.ye1{bottom:621.718500px;}
.y2b0{bottom:623.026500px;}
.y244{bottom:623.668500px;}
.y15f{bottom:625.624500px;}
.yc0{bottom:629.551500px;}
.y18e{bottom:631.458000px;}
.y76{bottom:633.631500px;}
.y27d{bottom:633.862500px;}
.y212{bottom:637.486500px;}
.y5b{bottom:638.695500px;}
.y1eb{bottom:638.782500px;}
.y1b1{bottom:639.322500px;}
.y29{bottom:640.069500px;}
.y2c9{bottom:640.437000px;}
.y2af{bottom:642.177000px;}
.ye0{bottom:642.610500px;}
.y243{bottom:644.559000px;}
.y15e{bottom:646.516500px;}
.ybf{bottom:650.443500px;}
.y27c{bottom:653.013000px;}
.y12d{bottom:654.522000px;}
.y106{bottom:657.061500px;}
.y211{bottom:658.378500px;}
.y75{bottom:659.005500px;}
.y5a{bottom:659.587500px;}
.y1ea{bottom:659.674500px;}
.y28{bottom:660.961500px;}
.y2ae{bottom:661.327500px;}
.ydf{bottom:663.502500px;}
.y18d{bottom:667.086000px;}
.y15d{bottom:667.407000px;}
.ybe{bottom:671.334000px;}
.y27b{bottom:672.163500px;}
.y12c{bottom:675.414000px;}
.y105{bottom:677.953500px;}
.y210{bottom:679.270500px;}
.y59{bottom:680.478000px;}
.y1e9{bottom:680.566500px;}
.y242{bottom:680.778000px;}
.y27{bottom:681.852000px;}
.y74{bottom:683.437500px;}
.yde{bottom:684.393000px;}
.y18c{bottom:686.319000px;}
.y1b0{bottom:687.295500px;}
.y15c{bottom:688.299000px;}
.y27a{bottom:691.314000px;}
.ybd{bottom:692.226000px;}
.y12b{bottom:696.306000px;}
.y241{bottom:696.946500px;}
.y2ad{bottom:699.628500px;}
.y20f{bottom:700.161000px;}
.y240{bottom:701.286000px;}
.y58{bottom:701.370000px;}
.y1e8{bottom:701.457000px;}
.y26{bottom:702.744000px;}
.y104{bottom:703.327500px;}
.y1af{bottom:705.228000px;}
.y18b{bottom:705.550500px;}
.y15b{bottom:709.191000px;}
.ydd{bottom:709.768500px;}
.y279{bottom:710.464500px;}
.ybc{bottom:713.118000px;}
.y12a{bottom:717.196500px;}
.y2ac{bottom:718.779000px;}
.y23f{bottom:718.833000px;}
.y57{bottom:722.262000px;}
.y1ae{bottom:723.160500px;}
.y25{bottom:723.636000px;}
.y1e7{bottom:726.832500px;}
.y278{bottom:729.615000px;}
.y20e{bottom:729.945000px;}
.y15a{bottom:730.081500px;}
.ybb{bottom:734.010000px;}
.y2ab{bottom:737.929500px;}
.y129{bottom:738.088500px;}
.y103{bottom:738.670500px;}
.y20d{bottom:740.196000px;}
.y56{bottom:743.152500px;}
.y23e{bottom:744.267000px;}
.y24{bottom:744.526500px;}
.ydc{bottom:745.110000px;}
.y22c{bottom:747.774000px;}
.y1ad{bottom:748.594500px;}
.y277{bottom:748.765500px;}
.y159{bottom:750.973500px;}
.yba{bottom:754.900500px;}
.y2aa{bottom:757.081500px;}
.y128{bottom:758.980500px;}
.y102{bottom:759.561000px;}
.y1e6{bottom:762.174000px;}
.y23d{bottom:762.942000px;}
.y54{bottom:764.044500px;}
.y23{bottom:765.418500px;}
.ydb{bottom:766.002000px;}
.y276{bottom:767.916000px;}
.y22b{bottom:768.666000px;}
.y55{bottom:769.468500px;}
.yb9{bottom:775.792500px;}
.y2a9{bottom:776.232000px;}
.y127{bottom:779.871000px;}
.y101{bottom:780.453000px;}
.y23c{bottom:780.874500px;}
.y1ac{bottom:781.260000px;}
.y1e5{bottom:783.066000px;}
.y20c{bottom:783.765000px;}
.y53{bottom:784.936500px;}
.y22{bottom:786.310500px;}
.y158{bottom:786.601500px;}
.yda{bottom:786.894000px;}
.y275{bottom:787.066500px;}
.y22a{bottom:789.558000px;}
.y144{bottom:790.119000px;}
.y2a8{bottom:795.382500px;}
.yb8{bottom:796.684500px;}
.y23b{bottom:798.807000px;}
.y126{bottom:800.763000px;}
.y100{bottom:801.345000px;}
.y1e4{bottom:803.958000px;}
.y20b{bottom:804.657000px;}
.y52{bottom:805.827000px;}
.y157{bottom:805.834500px;}
.y274{bottom:806.217000px;}
.y93{bottom:807.784500px;}
.y143{bottom:809.352000px;}
.y229{bottom:810.448500px;}
.y1ab{bottom:814.471500px;}
.y2a7{bottom:814.533000px;}
.y21{bottom:816.168000px;}
.y23a{bottom:816.741000px;}
.yb7{bottom:817.575000px;}
.y125{bottom:821.655000px;}
.yff{bottom:822.235500px;}
.y1c2{bottom:824.193000px;}
.y1e3{bottom:824.848500px;}
.y156{bottom:825.067500px;}
.y20a{bottom:825.547500px;}
.y51{bottom:826.719000px;}
.y142{bottom:828.585000px;}
.y92{bottom:828.676500px;}
.y273{bottom:829.851000px;}
.y2a6{bottom:833.683500px;}
.y1aa{bottom:835.363500px;}
.y228{bottom:835.824000px;}
.y239{bottom:842.175000px;}
.y124{bottom:842.545500px;}
.yb6{bottom:842.950500px;}
.yfe{bottom:843.127500px;}
.y155{bottom:844.300500px;}
.y1c1{bottom:845.085000px;}
.y1e2{bottom:845.740500px;}
.y50{bottom:847.611000px;}
.y91{bottom:849.568500px;}
.y2a5{bottom:852.834000px;}
.y20{bottom:853.674000px;}
.y1a9{bottom:860.737500px;}
.y209{bottom:861.175500px;}
.y123{bottom:863.437500px;}
.yfd{bottom:864.019500px;}
.y227{bottom:865.920000px;}
.y1c0{bottom:865.977000px;}
.y1e1{bottom:866.632500px;}
.y4f{bottom:868.503000px;}
.y272{bottom:868.675500px;}
.y1f{bottom:869.814000px;}
.y90{bottom:870.460500px;}
.y2a4{bottom:871.984500px;}
.y238{bottom:874.840500px;}
.y208{bottom:880.408500px;}
.yb5{bottom:881.775000px;}
.y122{bottom:884.329500px;}
.yfc{bottom:884.910000px;}
.y226{bottom:885.153000px;}
.y1bf{bottom:886.867500px;}
.y1e0{bottom:887.523000px;}
.y271{bottom:888.174000px;}
.y4e{bottom:889.393500px;}
.y1e{bottom:890.292000px;}
.y2a2{bottom:891.135000px;}
.y2a3{bottom:891.343500px;}
.y8f{bottom:891.351000px;}
.y1a8{bottom:892.884000px;}
.y237{bottom:894.072000px;}
.y207{bottom:899.641500px;}
.y1d{bottom:902.092500px;}
.yb4{bottom:902.665500px;}
.y225{bottom:904.386000px;}
.y121{bottom:905.220000px;}
.yfb{bottom:905.802000px;}
.y270{bottom:907.674000px;}
.y1be{bottom:907.759500px;}
.y1df{bottom:908.415000px;}
.y4d{bottom:910.285500px;}
.y1a7{bottom:912.117000px;}
.yd9{bottom:912.243000px;}
.y8e{bottom:916.726500px;}
.y206{bottom:918.874500px;}
.y1c{bottom:922.572000px;}
.y224{bottom:923.619000px;}
.y120{bottom:926.112000px;}
.yfa{bottom:926.694000px;}
.y26f{bottom:927.172500px;}
.y1de{bottom:929.307000px;}
.y2a1{bottom:929.436000px;}
.y4c{bottom:931.177500px;}
.y1a6{bottom:931.350000px;}
.yd8{bottom:933.135000px;}
.yb2{bottom:935.202000px;}
.y205{bottom:938.107500px;}
.y1b{bottom:938.710500px;}
.yb1{bottom:945.454500px;}
.y26e{bottom:946.671000px;}
.y11f{bottom:947.004000px;}
.yf9{bottom:947.584500px;}
.y2a0{bottom:948.586500px;}
.y1dd{bottom:950.199000px;}
.y4b{bottom:952.068000px;}
.yd7{bottom:954.025500px;}
.yb3{bottom:955.570500px;}
.y204{bottom:957.340500px;}
.y18a{bottom:965.488500px;}
.y29f{bottom:967.737000px;}
.y11e{bottom:967.896000px;}
.yf8{bottom:968.476500px;}
.y1dc{bottom:971.089500px;}
.y4a{bottom:972.960000px;}
.yd6{bottom:974.917500px;}
.y26d{bottom:975.136500px;}
.y203{bottom:976.573500px;}
.y1a{bottom:980.874000px;}
.y189{bottom:986.379000px;}
.y29e{bottom:986.887500px;}
.y11d{bottom:988.786500px;}
.yb0{bottom:989.023500px;}
.yf7{bottom:989.368500px;}
.y1db{bottom:991.981500px;}
.y49{bottom:993.852000px;}
.y26c{bottom:994.635000px;}
.y202{bottom:995.806500px;}
.yd5{bottom:995.809500px;}
.y19{bottom:1001.764500px;}
.y29d{bottom:1006.038000px;}
.y188{bottom:1007.271000px;}
.yf6{bottom:1010.260500px;}
.y1da{bottom:1012.873500px;}
.y26b{bottom:1014.133500px;}
.y11c{bottom:1014.162000px;}
.yaf{bottom:1014.538500px;}
.y48{bottom:1014.742500px;}
.yd4{bottom:1016.700000px;}
.yae{bottom:1024.791000px;}
.y29c{bottom:1025.188500px;}
.y187{bottom:1028.163000px;}
.yf5{bottom:1031.151000px;}
.y26a{bottom:1033.632000px;}
.y47{bottom:1035.634500px;}
.yd3{bottom:1037.592000px;}
.y11b{bottom:1038.594000px;}
.y18{bottom:1040.589000px;}
.y1d9{bottom:1041.007500px;}
.y29b{bottom:1044.339000px;}
.y186{bottom:1049.053500px;}
.y1d8{bottom:1051.258500px;}
.yad{bottom:1052.043000px;}
.y269{bottom:1053.130500px;}
.y46{bottom:1056.526500px;}
.yd2{bottom:1058.484000px;}
.y29a{bottom:1063.489500px;}
.y185{bottom:1069.945500px;}
.y17{bottom:1071.927000px;}
.y268{bottom:1072.629000px;}
.yac{bottom:1072.935000px;}
.y45{bottom:1077.417000px;}
.y299{bottom:1082.640000px;}
.yd1{bottom:1083.858000px;}
.y184{bottom:1090.837500px;}
.y267{bottom:1092.129000px;}
.yab{bottom:1093.825500px;}
.y44{bottom:1098.309000px;}
.y298{bottom:1101.790500px;}
.y16{bottom:1103.263500px;}
.y266{bottom:1111.627500px;}
.yaa{bottom:1114.717500px;}
.y43{bottom:1119.201000px;}
.y297{bottom:1120.941000px;}
.y42{bottom:1140.091500px;}
.y41{bottom:1200.543000px;}
.h16{height:29.469371px;}
.h7{height:32.565965px;}
.h11{height:33.634764px;}
.hd{height:33.893722px;}
.h1a{height:37.240199px;}
.h23{height:37.372050px;}
.h2{height:37.993262px;}
.h22{height:38.143066px;}
.h1e{height:39.434227px;}
.h1d{height:40.137528px;}
.h21{height:42.380900px;}
.h9{height:43.217759px;}
.h1f{height:43.397086px;}
.h8{height:43.421105px;}
.h3{height:43.815515px;}
.he{height:44.597206px;}
.hb{height:46.714950px;}
.h12{height:48.848947px;}
.h1b{height:48.917105px;}
.hc{height:51.861658px;}
.ha{height:54.276245px;}
.h6{height:54.541601px;}
.h5{height:54.547601px;}
.h26{height:57.523262px;}
.h1c{height:62.946077px;}
.h20{height:62.952077px;}
.h24{height:76.729850px;}
.h25{height:76.969850px;}
.h4{height:77.792486px;}
.h15{height:84.285515px;}
.h19{height:84.413206px;}
.hf{height:87.178950px;}
.h13{height:88.653515px;}
.h18{height:95.280245px;}
.h10{height:95.286245px;}
.h17{height:125.289515px;}
.h14{height:129.663515px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x118{left:85.848000px;}
.xd4{left:247.513500px;}
.x4{left:248.526000px;}
.x2{left:249.591000px;}
.x108{left:254.359500px;}
.xe1{left:258.556500px;}
.xb9{left:262.234500px;}
.x7c{left:264.124500px;}
.x56{left:266.097000px;}
.x3{left:269.914500px;}
.x9e{left:271.005000px;}
.xec{left:272.181000px;}
.xf{left:273.301500px;}
.x6a{left:274.945500px;}
.x68{left:276.784500px;}
.x92{left:278.653500px;}
.x12{left:281.479500px;}
.x8e{left:283.480500px;}
.xed{left:287.124000px;}
.xa4{left:290.676000px;}
.x7d{left:292.338000px;}
.x2f{left:295.414500px;}
.xae{left:296.979000px;}
.xac{left:300.360000px;}
.x10{left:301.516500px;}
.x114{left:303.040500px;}
.x65{left:305.331000px;}
.xf6{left:306.583500px;}
.x78{left:308.161500px;}
.x6b{left:310.030500px;}
.xb7{left:311.280000px;}
.x3a{left:314.743500px;}
.xe0{left:318.369000px;}
.x66{left:320.275500px;}
.xf7{left:321.291000px;}
.x79{left:323.106000px;}
.x43{left:325.203000px;}
.xfb{left:326.509500px;}
.x67{left:327.897000px;}
.x10b{left:329.566500px;}
.xee{left:332.973000px;}
.x9b{left:336.375000px;}
.x9f{left:339.777000px;}
.x3b{left:342.958500px;}
.x8f{left:345.588000px;}
.x5a{left:347.269500px;}
.xe4{left:348.543000px;}
.xa2{left:350.424000px;}
.x119{left:353.482500px;}
.xa5{left:354.580500px;}
.x113{left:355.758000px;}
.x44{left:357.168000px;}
.x8c{left:358.765500px;}
.x20{left:361.729500px;}
.x90{left:362.989500px;}
.xfc{left:364.212000px;}
.x84{left:368.322000px;}
.x1c{left:371.095500px;}
.xce{left:372.474000px;}
.x101{left:373.519500px;}
.x9a{left:374.838000px;}
.xa6{left:376.975500px;}
.x1d{left:378.568500px;}
.x21{left:381.664500px;}
.x87{left:383.316000px;}
.xaf{left:386.487000px;}
.x75{left:388.603500px;}
.xe2{left:390.394500px;}
.x115{left:393.117000px;}
.x36{left:395.359500px;}
.xe3{left:398.265000px;}
.xcf{left:400.687500px;}
.x76{left:403.546500px;}
.xa7{left:405.301500px;}
.x5b{left:407.350500px;}
.x91{left:408.448500px;}
.x45{left:410.220000px;}
.xef{left:413.892000px;}
.xf8{left:416.452500px;}
.x17{left:418.737000px;}
.x77{left:422.152500px;}
.x18{left:426.208500px;}
.x3c{left:428.760000px;}
.x19{left:429.937500px;}
.x5c{left:431.305500px;}
.x116{left:433.123500px;}
.x89{left:435.994500px;}
.x1a{left:437.409000px;}
.x10e{left:438.553500px;}
.x60{left:440.062500px;}
.x37{left:441.495000px;}
.xb0{left:443.340000px;}
.x57{left:444.435000px;}
.xd6{left:447.556500px;}
.xa0{left:449.329500px;}
.xb6{left:450.424500px;}
.xc7{left:451.726500px;}
.x10f{left:453.498000px;}
.x61{left:455.007000px;}
.x9{left:456.946500px;}
.x95{left:458.376000px;}
.xc3{left:461.142000px;}
.xd3{left:463.365000px;}
.xdd{left:465.366000px;}
.xcb{left:467.488500px;}
.x53{left:471.810000px;}
.x96{left:473.320500px;}
.xdb{left:475.153500px;}
.x58{left:478.053000px;}
.xf2{left:479.425500px;}
.xc6{left:481.405500px;}
.x26{left:483.451500px;}
.xa{left:484.657500px;}
.x30{left:486.742500px;}
.x109{left:487.836000px;}
.xc4{left:489.357000px;}
.xc9{left:490.698000px;}
.xc8{left:492.565500px;}
.xdf{left:494.203500px;}
.xdc{left:495.790500px;}
.x27{left:498.396000px;}
.x8a{left:500.428500px;}
.x63{left:502.242000px;}
.xb8{left:503.721000px;}
.x6c{left:505.108500px;}
.xa3{left:506.373000px;}
.xbe{left:508.221000px;}
.x3d{left:513.808500px;}
.x3f{left:515.458500px;}
.x64{left:517.186500px;}
.xca{left:518.913000px;}
.x8b{left:522.687000px;}
.x70{left:523.900500px;}
.xa1{left:525.670500px;}
.x104{left:526.990500px;}
.x4e{left:528.576000px;}
.x40{left:530.403000px;}
.x31{left:534.330000px;}
.x71{left:536.191500px;}
.x59{left:537.967500px;}
.xd7{left:539.013000px;}
.xd2{left:540.177000px;}
.x93{left:542.823000px;}
.x6d{left:544.737000px;}
.x72{left:546.304500px;}
.x9c{left:548.002500px;}
.x10a{left:549.174000px;}
.xde{left:555.471000px;}
.xb{left:556.915500px;}
.x7e{left:558.616500px;}
.x4f{left:561.714000px;}
.xbf{left:563.826000px;}
.x73{left:570.078000px;}
.xba{left:571.264500px;}
.x9d{left:572.781000px;}
.xf5{left:575.089500px;}
.x94{left:576.477000px;}
.xb4{left:578.313000px;}
.xa8{left:580.320000px;}
.x10c{left:581.817000px;}
.x54{left:584.614500px;}
.x7f{left:586.831500px;}
.xc{left:588.876000px;}
.xcc{left:590.709000px;}
.xc0{left:592.039500px;}
.x10d{left:596.761500px;}
.x34{left:597.889500px;}
.x55{left:599.557500px;}
.x4c{left:601.302000px;}
.x88{left:603.687000px;}
.x1e{left:605.443500px;}
.xe6{left:609.436500px;}
.x42{left:611.431500px;}
.xd9{left:612.565500px;}
.xb3{left:614.454000px;}
.x4d{left:616.246500px;}
.xcd{left:618.922500px;}
.xf3{left:620.056500px;}
.x38{left:623.523000px;}
.x1f{left:624.541500px;}
.xbd{left:627.367500px;}
.xf9{left:629.191500px;}
.xf0{left:630.348000px;}
.xa9{left:631.497000px;}
.x105{left:632.815500px;}
.x50{left:637.065000px;}
.x35{left:638.830500px;}
.x28{left:640.006500px;}
.xd8{left:643.978500px;}
.xad{left:647.067000px;}
.xf4{left:648.270000px;}
.xb1{left:651.295500px;}
.x29{left:654.951000px;}
.xb5{left:656.749500px;}
.x2a{left:658.612500px;}
.xf1{left:659.695500px;}
.x51{left:660.703500px;}
.x48{left:663.585000px;}
.x102{left:666.948000px;}
.xd0{left:668.229000px;}
.x6e{left:670.170000px;}
.xe7{left:671.817000px;}
.x2b{left:673.555500px;}
.xea{left:674.898000px;}
.x49{left:678.529500px;}
.x110{left:679.770000px;}
.x117{left:681.649500px;}
.xbb{left:682.777500px;}
.xd1{left:684.306000px;}
.x4a{left:686.151000px;}
.xfd{left:688.279500px;}
.x2c{left:691.743000px;}
.x82{left:694.401000px;}
.xda{left:696.001500px;}
.xc2{left:699.312000px;}
.x4b{left:701.095500px;}
.x6f{left:702.310500px;}
.x5d{left:703.375500px;}
.xfe{left:706.794000px;}
.xc5{left:708.912000px;}
.x46{left:710.676000px;}
.x111{left:712.917000px;}
.x83{left:714.306000px;}
.x81{left:715.962000px;}
.x5e{left:718.320000px;}
.x2d{left:719.956500px;}
.x5{left:721.854000px;}
.xbc{left:723.187500px;}
.x47{left:725.620500px;}
.x7a{left:727.314000px;}
.x52{left:729.949500px;}
.xff{left:733.363500px;}
.x39{left:735.160500px;}
.x112{left:736.545000px;}
.x74{left:739.005000px;}
.x5f{left:740.886000px;}
.x7b{left:742.257000px;}
.x6{left:745.492500px;}
.x97{left:749.368500px;}
.x62{left:751.077000px;}
.xe8{left:752.224500px;}
.x106{left:753.919500px;}
.xb2{left:755.289000px;}
.x107{left:756.655500px;}
.x41{left:758.221500px;}
.xd5{left:762.312000px;}
.x100{left:764.236500px;}
.x11{left:766.600500px;}
.x13{left:769.489500px;}
.xab{left:770.956500px;}
.xfa{left:772.786500px;}
.xeb{left:774.400500px;}
.x99{left:775.567500px;}
.x14{left:776.961000px;}
.x103{left:778.554000px;}
.x15{left:780.622500px;}
.x98{left:782.947500px;}
.xaa{left:785.797500px;}
.x16{left:788.094000px;}
.x86{left:789.802500px;}
.x69{left:790.890000px;}
.x2e{left:792.594000px;}
.xd{left:793.897500px;}
.x32{left:795.132000px;}
.x3e{left:798.276000px;}
.x80{left:802.164000px;}
.xc1{left:805.812000px;}
.x22{left:806.838000px;}
.x7{left:808.834500px;}
.x33{left:810.076500px;}
.xe5{left:812.926500px;}
.x23{left:814.311000px;}
.x24{left:817.993500px;}
.x8d{left:819.007500px;}
.xe9{left:820.554000px;}
.x85{left:822.714000px;}
.xe{left:825.856500px;}
.x25{left:832.938000px;}
.x1b{left:833.947500px;}
.x8{left:837.049500px;}
@media print{
.vd{vertical-align:-19.290667pt;}
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v6{vertical-align:-9.648000pt;}
.v4{vertical-align:-7.968000pt;}
.v16{vertical-align:-5.925333pt;}
.v0{vertical-align:0.000000pt;}
.v15{vertical-align:4.885333pt;}
.v13{vertical-align:11.136000pt;}
.v17{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v14{vertical-align:24.832000pt;}
.ve{vertical-align:25.802667pt;}
.va{vertical-align:26.805333pt;}
.v8{vertical-align:31.888000pt;}
.v5{vertical-align:35.968000pt;}
.v7{vertical-align:39.856000pt;}
.vf{vertical-align:46.618667pt;}
.v12{vertical-align:61.280000pt;}
.v11{vertical-align:62.250667pt;}
.vc{vertical-align:68.341333pt;}
.v10{vertical-align:72.421333pt;}
.vb{vertical-align:76.309333pt;}
.v9{vertical-align:79.514667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3a{letter-spacing:0.000129pt;}
.lsc{letter-spacing:0.000544pt;}
.ls99{letter-spacing:0.004267pt;}
.ls3c{letter-spacing:0.131733pt;}
.ls3d{letter-spacing:0.137067pt;}
.ls5e{letter-spacing:0.341867pt;}
.ls9e{letter-spacing:0.447791pt;}
.ls63{letter-spacing:0.482502pt;}
.ls45{letter-spacing:0.502400pt;}
.ls5d{letter-spacing:0.504787pt;}
.ls49{letter-spacing:0.505346pt;}
.ls3b{letter-spacing:0.507733pt;}
.ls95{letter-spacing:0.514810pt;}
.ls96{letter-spacing:0.520143pt;}
.ls66{letter-spacing:0.595567pt;}
.ls78{letter-spacing:0.596214pt;}
.ls8a{letter-spacing:0.596915pt;}
.ls8{letter-spacing:0.601548pt;}
.ls26{letter-spacing:0.627118pt;}
.ls5b{letter-spacing:0.635362pt;}
.lsb{letter-spacing:0.637762pt;}
.ls88{letter-spacing:0.659468pt;}
.ls7f{letter-spacing:0.661044pt;}
.ls67{letter-spacing:0.661462pt;}
.ls89{letter-spacing:0.661757pt;}
.ls9{letter-spacing:0.661852pt;}
.ls83{letter-spacing:0.663756pt;}
.ls65{letter-spacing:0.664801pt;}
.ls1f{letter-spacing:0.665067pt;}
.ls68{letter-spacing:0.666796pt;}
.ls87{letter-spacing:0.669089pt;}
.ls6b{letter-spacing:0.729548pt;}
.ls64{letter-spacing:0.928015pt;}
.ls84{letter-spacing:0.933348pt;}
.ls47{letter-spacing:1.006903pt;}
.ls42{letter-spacing:1.012237pt;}
.ls94{letter-spacing:1.061970pt;}
.ls7c{letter-spacing:1.166903pt;}
.ls32{letter-spacing:1.239618pt;}
.ls29{letter-spacing:1.244951pt;}
.ls17{letter-spacing:1.262881pt;}
.ls76{letter-spacing:1.300104pt;}
.ls59{letter-spacing:1.302029pt;}
.ls16{letter-spacing:1.324951pt;}
.ls6a{letter-spacing:1.328333pt;}
.ls7{letter-spacing:1.331543pt;}
.ls5a{letter-spacing:1.332237pt;}
.ls86{letter-spacing:1.434682pt;}
.ls30{letter-spacing:1.442285pt;}
.ls34{letter-spacing:1.447618pt;}
.ls8b{letter-spacing:1.702716pt;}
.ls24{letter-spacing:1.774903pt;}
.ls48{letter-spacing:1.816589pt;}
.ls52{letter-spacing:1.821922pt;}
.ls70{letter-spacing:1.845348pt;}
.ls7e{letter-spacing:1.850682pt;}
.ls58{letter-spacing:1.859733pt;}
.ls2d{letter-spacing:1.977570pt;}
.ls77{letter-spacing:2.057548pt;}
.ls11{letter-spacing:2.061089pt;}
.ls22{letter-spacing:2.066422pt;}
.ls81{letter-spacing:2.112015pt;}
.ls69{letter-spacing:2.180403pt;}
.ls1a{letter-spacing:2.388403pt;}
.ls18{letter-spacing:2.393737pt;}
.ls62{letter-spacing:2.499187pt;}
.ls4a{letter-spacing:2.657067pt;}
.ls91{letter-spacing:2.923185pt;}
.ls71{letter-spacing:3.121023pt;}
.ls39{letter-spacing:3.158400pt;}
.ls37{letter-spacing:3.163733pt;}
.ls6c{letter-spacing:3.562682pt;}
.ls14{letter-spacing:3.825067pt;}
.ls19{letter-spacing:3.827454pt;}
.ls31{letter-spacing:3.827962pt;}
.ls15{letter-spacing:3.987543pt;}
.ls2a{letter-spacing:4.716292pt;}
.ls7d{letter-spacing:6.421044pt;}
.ls0{letter-spacing:7.437600pt;}
.ls21{letter-spacing:7.836785pt;}
.ls20{letter-spacing:9.564572pt;}
.ls9d{letter-spacing:9.874745pt;}
.ls55{letter-spacing:10.167623pt;}
.ls2e{letter-spacing:10.201295pt;}
.ls6d{letter-spacing:10.218378pt;}
.ls5{letter-spacing:10.631867pt;}
.ls1c{letter-spacing:10.968429pt;}
.ls27{letter-spacing:10.995733pt;}
.ls25{letter-spacing:11.094959pt;}
.ls33{letter-spacing:11.624451pt;}
.ls28{letter-spacing:11.629762pt;}
.ls2f{letter-spacing:11.635096pt;}
.ls9a{letter-spacing:11.754319pt;}
.ls98{letter-spacing:11.954133pt;}
.lsa0{letter-spacing:11.959467pt;}
.ls9b{letter-spacing:11.962051pt;}
.ls10{letter-spacing:13.070931pt;}
.lsf{letter-spacing:13.230333pt;}
.ls8f{letter-spacing:13.277132pt;}
.lsd{letter-spacing:13.442868pt;}
.lse{letter-spacing:13.496002pt;}
.ls4b{letter-spacing:13.785346pt;}
.ls4f{letter-spacing:13.790679pt;}
.ls8e{letter-spacing:13.861411pt;}
.ls6f{letter-spacing:13.946819pt;}
.ls9f{letter-spacing:14.608533pt;}
.ls8d{letter-spacing:14.714231pt;}
.ls61{letter-spacing:14.759323pt;}
.ls1e{letter-spacing:15.395096pt;}
.ls80{letter-spacing:15.400429pt;}
.ls54{letter-spacing:16.061762pt;}
.ls75{letter-spacing:16.090378pt;}
.ls8c{letter-spacing:16.355230pt;}
.ls4{letter-spacing:16.413897pt;}
.ls35{letter-spacing:16.441295pt;}
.ls82{letter-spacing:16.446679pt;}
.ls56{letter-spacing:16.556800pt;}
.lsa1{letter-spacing:17.127153pt;}
.ls1d{letter-spacing:17.151070pt;}
.ls9c{letter-spacing:17.472251pt;}
.ls5c{letter-spacing:17.746711pt;}
.ls57{letter-spacing:18.008429pt;}
.ls93{letter-spacing:18.022803pt;}
.ls50{letter-spacing:18.075733pt;}
.ls3e{letter-spacing:18.081067pt;}
.ls6e{letter-spacing:18.390400pt;}
.ls53{letter-spacing:18.585346pt;}
.ls7a{letter-spacing:18.587682pt;}
.ls3f{letter-spacing:18.717762pt;}
.ls60{letter-spacing:18.862523pt;}
.ls38{letter-spacing:19.400089pt;}
.ls41{letter-spacing:20.486029pt;}
.ls46{letter-spacing:20.491362pt;}
.ls43{letter-spacing:21.659362pt;}
.ls72{letter-spacing:21.907096pt;}
.lsa{letter-spacing:22.131230pt;}
.ls51{letter-spacing:22.435096pt;}
.ls4e{letter-spacing:22.440429pt;}
.ls40{letter-spacing:22.507733pt;}
.ls4c{letter-spacing:25.096429pt;}
.ls4d{letter-spacing:25.446400pt;}
.ls12{letter-spacing:26.612237pt;}
.ls36{letter-spacing:26.673201pt;}
.ls5f{letter-spacing:26.690552pt;}
.ls13{letter-spacing:29.245762pt;}
.ls97{letter-spacing:31.128563pt;}
.ls2c{letter-spacing:33.021762pt;}
.ls23{letter-spacing:34.472429pt;}
.ls1b{letter-spacing:34.484214pt;}
.ls1{letter-spacing:51.035733pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls79{letter-spacing:63.452533pt;}
.ls44{letter-spacing:65.308533pt;}
.ls74{letter-spacing:70.282133pt;}
.ls73{letter-spacing:86.546422pt;}
.ls2b{letter-spacing:118.444533pt;}
.ls85{letter-spacing:159.671756pt;}
.ls92{letter-spacing:253.748214pt;}
.ls7b{letter-spacing:367.684214pt;}
.ls90{letter-spacing:413.803733pt;}
.ws26{word-spacing:-13.283467pt;}
.wsb7{word-spacing:-11.955200pt;}
.ws1f{word-spacing:-10.626800pt;}
.ws8{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.wsfd{word-spacing:-3.634368pt;}
.wsc6{word-spacing:-2.975497pt;}
.ws84{word-spacing:-2.922363pt;}
.ws29{word-spacing:-2.656693pt;}
.ws106{word-spacing:-2.603559pt;}
.wsc7{word-spacing:-2.444158pt;}
.ws10b{word-spacing:-2.438861pt;}
.ws11e{word-spacing:-2.400295pt;}
.wsa0{word-spacing:-2.391024pt;}
.ws11f{word-spacing:-2.380204pt;}
.ws8c{word-spacing:-2.337890pt;}
.ws57{word-spacing:-2.284756pt;}
.ws53{word-spacing:-2.231622pt;}
.ws7f{word-spacing:-2.178489pt;}
.ws69{word-spacing:-2.019087pt;}
.ws30{word-spacing:-1.965953pt;}
.ws13{word-spacing:-1.912819pt;}
.ws3{word-spacing:-1.860883pt;}
.wsf5{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.wsc5{word-spacing:-1.806551pt;}
.wse7{word-spacing:-1.700284pt;}
.wsf{word-spacing:-1.647150pt;}
.ws6f{word-spacing:-1.625907pt;}
.wsef{word-spacing:-1.594016pt;}
.ws2d{word-spacing:-1.540882pt;}
.wse8{word-spacing:-1.508760pt;}
.ws16{word-spacing:-1.487748pt;}
.ws12a{word-spacing:-1.434624pt;}
.ws81{word-spacing:-1.381481pt;}
.wsee{word-spacing:-1.328347pt;}
.ws13e{word-spacing:-1.291162pt;}
.wse9{word-spacing:-1.168945pt;}
.ws9c{word-spacing:-1.115811pt;}
.wsec{word-spacing:-1.104758pt;}
.ws140{word-spacing:-1.099878pt;}
.ws18{word-spacing:-1.062677pt;}
.wsf6{word-spacing:-1.009543pt;}
.ws123{word-spacing:-0.956416pt;}
.ws3d{word-spacing:-0.956410pt;}
.ws9d{word-spacing:-0.903276pt;}
.ws2a{word-spacing:-0.850142pt;}
.ws60{word-spacing:-0.797008pt;}
.ws1c{word-spacing:-0.743874pt;}
.ws1b{word-spacing:-0.690740pt;}
.ws2b{word-spacing:-0.637606pt;}
.ws78{word-spacing:-0.584473pt;}
.wsb4{word-spacing:-0.531339pt;}
.ws13c{word-spacing:-0.478208pt;}
.ws24{word-spacing:-0.478205pt;}
.ws10a{word-spacing:-0.430387pt;}
.ws49{word-spacing:-0.425071pt;}
.ws4f{word-spacing:-0.371937pt;}
.ws14{word-spacing:-0.318803pt;}
.ws109{word-spacing:-0.286925pt;}
.ws77{word-spacing:-0.278559pt;}
.ws108{word-spacing:-0.274994pt;}
.ws73{word-spacing:-0.271728pt;}
.ws2c{word-spacing:-0.265669pt;}
.ws128{word-spacing:-0.239104pt;}
.ws68{word-spacing:-0.220590pt;}
.wsc{word-spacing:-0.212535pt;}
.ws130{word-spacing:-0.208270pt;}
.ws121{word-spacing:-0.191283pt;}
.ws119{word-spacing:-0.184028pt;}
.ws118{word-spacing:-0.165872pt;}
.wsd{word-spacing:-0.159402pt;}
.ws7c{word-spacing:-0.158549pt;}
.ws7b{word-spacing:-0.153284pt;}
.ws5b{word-spacing:-0.143462pt;}
.ws11{word-spacing:-0.106268pt;}
.wsbf{word-spacing:-0.095642pt;}
.wsd3{word-spacing:-0.091598pt;}
.ws52{word-spacing:-0.076329pt;}
.ws97{word-spacing:-0.073408pt;}
.wsf8{word-spacing:-0.055366pt;}
.wse5{word-spacing:-0.053618pt;}
.ws12{word-spacing:-0.053134pt;}
.wse4{word-spacing:-0.051495pt;}
.wsd1{word-spacing:-0.047821pt;}
.ws111{word-spacing:-0.011572pt;}
.ws12c{word-spacing:-0.008380pt;}
.ws146{word-spacing:-0.005530pt;}
.ws13b{word-spacing:-0.003046pt;}
.ws1e{word-spacing:-0.002540pt;}
.ws6{word-spacing:0.000000pt;}
.ws138{word-spacing:0.000578pt;}
.ws39{word-spacing:0.002400pt;}
.ws38{word-spacing:0.004000pt;}
.ws76{word-spacing:0.004274pt;}
.ws132{word-spacing:0.007480pt;}
.ws59{word-spacing:0.047821pt;}
.ws10{word-spacing:0.053134pt;}
.wsb1{word-spacing:0.060488pt;}
.ws5a{word-spacing:0.095642pt;}
.ws56{word-spacing:0.103737pt;}
.ws27{word-spacing:0.106268pt;}
.ws11a{word-spacing:0.127520pt;}
.ws28{word-spacing:0.130643pt;}
.ws5c{word-spacing:0.143462pt;}
.wsb{word-spacing:0.159402pt;}
.ws120{word-spacing:0.168034pt;}
.wsce{word-spacing:0.191283pt;}
.wse1{word-spacing:0.207566pt;}
.wse{word-spacing:0.212535pt;}
.ws41{word-spacing:0.229015pt;}
.ws12e{word-spacing:0.239104pt;}
.ws22{word-spacing:0.265669pt;}
.ws122{word-spacing:0.286925pt;}
.ws3b{word-spacing:0.308133pt;}
.ws3c{word-spacing:0.312375pt;}
.ws23{word-spacing:0.318803pt;}
.ws55{word-spacing:0.371937pt;}
.ws2{word-spacing:0.373452pt;}
.ws5{word-spacing:0.375335pt;}
.ws37{word-spacing:0.421882pt;}
.ws36{word-spacing:0.425071pt;}
.wsad{word-spacing:0.475018pt;}
.wsac{word-spacing:0.478205pt;}
.ws134{word-spacing:0.526029pt;}
.ws58{word-spacing:0.531339pt;}
.ws5f{word-spacing:0.584473pt;}
.ws148{word-spacing:0.619686pt;}
.ws149{word-spacing:0.621670pt;}
.wsa3{word-spacing:0.690740pt;}
.wsdf{word-spacing:0.717312pt;}
.wsc1{word-spacing:0.743874pt;}
.ws4e{word-spacing:0.797008pt;}
.ws4c{word-spacing:0.811211pt;}
.wsf2{word-spacing:0.812954pt;}
.ws4d{word-spacing:0.832597pt;}
.ws3f{word-spacing:0.850142pt;}
.ws31{word-spacing:0.903276pt;}
.ws32{word-spacing:0.956410pt;}
.ws129{word-spacing:1.004237pt;}
.wsa4{word-spacing:1.009543pt;}
.ws83{word-spacing:1.062677pt;}
.ws10d{word-spacing:1.099878pt;}
.wsc8{word-spacing:1.115811pt;}
.wsd2{word-spacing:1.142110pt;}
.wscc{word-spacing:1.147699pt;}
.ws67{word-spacing:1.168945pt;}
.ws2e{word-spacing:1.222079pt;}
.ws137{word-spacing:1.243341pt;}
.wsb8{word-spacing:1.291162pt;}
.wsf9{word-spacing:1.328347pt;}
.ws6b{word-spacing:1.381481pt;}
.wsaa{word-spacing:1.434614pt;}
.wsbe{word-spacing:1.482445pt;}
.ws65{word-spacing:1.561431pt;}
.ws9f{word-spacing:1.567507pt;}
.ws6e{word-spacing:1.594016pt;}
.ws15{word-spacing:1.647150pt;}
.ws12f{word-spacing:1.673728pt;}
.ws45{word-spacing:1.700284pt;}
.ws102{word-spacing:1.703692pt;}
.wsde{word-spacing:1.721549pt;}
.ws11c{word-spacing:1.753418pt;}
.ws11d{word-spacing:1.806551pt;}
.ws135{word-spacing:1.817190pt;}
.ws61{word-spacing:1.965953pt;}
.wsae{word-spacing:1.973969pt;}
.ws20{word-spacing:2.019087pt;}
.ws80{word-spacing:2.072221pt;}
.ws8d{word-spacing:2.125355pt;}
.wsa5{word-spacing:2.178489pt;}
.wsa6{word-spacing:2.204034pt;}
.wsa7{word-spacing:2.231622pt;}
.wsd5{word-spacing:2.337890pt;}
.ws44{word-spacing:2.391024pt;}
.ws117{word-spacing:2.422910pt;}
.wsc9{word-spacing:2.444158pt;}
.wsb0{word-spacing:2.490991pt;}
.wsaf{word-spacing:2.497292pt;}
.wsf1{word-spacing:2.550426pt;}
.wsa{word-spacing:2.550432pt;}
.wscb{word-spacing:2.582323pt;}
.ws127{word-spacing:2.598333pt;}
.wsa1{word-spacing:2.603559pt;}
.wsd0{word-spacing:2.630144pt;}
.wsca{word-spacing:2.656693pt;}
.wscf{word-spacing:2.677965pt;}
.ws6a{word-spacing:2.709827pt;}
.ws35{word-spacing:2.816095pt;}
.ws139{word-spacing:2.821427pt;}
.ws17{word-spacing:2.861393pt;}
.ws133{word-spacing:2.863138pt;}
.ws14a{word-spacing:2.865783pt;}
.ws141{word-spacing:2.867081pt;}
.ws13d{word-spacing:2.868122pt;}
.wse6{word-spacing:2.869248pt;}
.wsb9{word-spacing:2.922363pt;}
.ws3a{word-spacing:3.081764pt;}
.ws14e{word-spacing:3.108352pt;}
.ws2f{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.188032pt;}
.ws13a{word-spacing:3.203994pt;}
.ws113{word-spacing:3.222457pt;}
.ws21{word-spacing:3.241166pt;}
.ws40{word-spacing:3.294300pt;}
.ws12b{word-spacing:3.299635pt;}
.ws5e{word-spacing:3.347434pt;}
.wsf4{word-spacing:3.347456pt;}
.ws75{word-spacing:3.400567pt;}
.ws25{word-spacing:3.506835pt;}
.ws82{word-spacing:3.559969pt;}
.wscd{word-spacing:3.634381pt;}
.ws42{word-spacing:3.666237pt;}
.wse0{word-spacing:3.682202pt;}
.ws8f{word-spacing:3.687842pt;}
.ws8e{word-spacing:3.693131pt;}
.ws94{word-spacing:3.693175pt;}
.wsff{word-spacing:3.719371pt;}
.ws107{word-spacing:3.730022pt;}
.ws100{word-spacing:3.742247pt;}
.ws90{word-spacing:3.751797pt;}
.ws96{word-spacing:3.751842pt;}
.ws95{word-spacing:3.757131pt;}
.ws91{word-spacing:3.757175pt;}
.ws101{word-spacing:3.772505pt;}
.wsb5{word-spacing:3.801617pt;}
.wsb6{word-spacing:3.818022pt;}
.ws1a{word-spacing:3.825664pt;}
.wsf3{word-spacing:3.873485pt;}
.ws3e{word-spacing:3.878772pt;}
.ws33{word-spacing:3.931906pt;}
.wsa9{word-spacing:3.985040pt;}
.ws74{word-spacing:4.038174pt;}
.ws112{word-spacing:4.057903pt;}
.wsba{word-spacing:4.091308pt;}
.ws14b{word-spacing:4.104561pt;}
.wsd8{word-spacing:4.112589pt;}
.ws131{word-spacing:4.208230pt;}
.ws34{word-spacing:4.250709pt;}
.wse3{word-spacing:4.303843pt;}
.ws14d{word-spacing:4.303872pt;}
.ws125{word-spacing:4.351693pt;}
.ws10f{word-spacing:4.356977pt;}
.wsc3{word-spacing:4.386129pt;}
.wsc4{word-spacing:4.389655pt;}
.ws4b{word-spacing:4.410111pt;}
.wsab{word-spacing:4.463245pt;}
.ws147{word-spacing:4.495155pt;}
.wsea{word-spacing:4.516379pt;}
.ws7e{word-spacing:4.569513pt;}
.wsbc{word-spacing:4.622646pt;}
.wsbb{word-spacing:4.635953pt;}
.ws142{word-spacing:4.662167pt;}
.ws143{word-spacing:4.686438pt;}
.wsd6{word-spacing:4.877722pt;}
.ws7a{word-spacing:4.994583pt;}
.wsdb{word-spacing:5.007351pt;}
.ws72{word-spacing:5.047717pt;}
.wsfc{word-spacing:5.153985pt;}
.ws14c{word-spacing:5.164646pt;}
.wsfb{word-spacing:5.207119pt;}
.ws7d{word-spacing:5.260253pt;}
.ws46{word-spacing:5.313387pt;}
.wsf0{word-spacing:5.366521pt;}
.ws54{word-spacing:5.472788pt;}
.wsb3{word-spacing:5.579056pt;}
.ws126{word-spacing:5.595034pt;}
.ws79{word-spacing:5.632190pt;}
.ws43{word-spacing:5.685324pt;}
.ws8a{word-spacing:5.841259pt;}
.ws103{word-spacing:5.842464pt;}
.wsda{word-spacing:5.845664pt;}
.ws86{word-spacing:5.878592pt;}
.ws47{word-spacing:6.057261pt;}
.wsbd{word-spacing:6.110395pt;}
.ws85{word-spacing:6.163529pt;}
.wsdc{word-spacing:6.218807pt;}
.ws12d{word-spacing:6.264525pt;}
.wsa8{word-spacing:6.269796pt;}
.ws71{word-spacing:6.421302pt;}
.ws50{word-spacing:6.429198pt;}
.wse2{word-spacing:6.482332pt;}
.wsfe{word-spacing:6.535466pt;}
.wsdd{word-spacing:6.551450pt;}
.ws110{word-spacing:6.641733pt;}
.ws11b{word-spacing:6.748001pt;}
.wsfa{word-spacing:6.907403pt;}
.wsc0{word-spacing:6.960537pt;}
.ws145{word-spacing:6.981837pt;}
.ws51{word-spacing:7.066804pt;}
.wsc2{word-spacing:7.173072pt;}
.ws144{word-spacing:7.364403pt;}
.wsa2{word-spacing:7.491875pt;}
.ws10e{word-spacing:7.545009pt;}
.ws87{word-spacing:7.984192pt;}
.wsf7{word-spacing:7.985508pt;}
.wseb{word-spacing:7.985911pt;}
.ws63{word-spacing:8.484098pt;}
.ws136{word-spacing:8.703386pt;}
.ws62{word-spacing:9.377005pt;}
.ws70{word-spacing:9.617230pt;}
.ws99{word-spacing:10.918592pt;}
.wsb2{word-spacing:10.998710pt;}
.ws5d{word-spacing:11.476915pt;}
.ws124{word-spacing:11.798169pt;}
.ws10c{word-spacing:12.146483pt;}
.ws88{word-spacing:12.914464pt;}
.ws89{word-spacing:12.919842pt;}
.ws114{word-spacing:13.230333pt;}
.ws19{word-spacing:13.336601pt;}
.ws6d{word-spacing:13.389734pt;}
.ws6c{word-spacing:13.442868pt;}
.wsd4{word-spacing:13.761671pt;}
.ws9a{word-spacing:15.345259pt;}
.wsd7{word-spacing:15.646938pt;}
.ws48{word-spacing:15.945370pt;}
.ws104{word-spacing:16.399275pt;}
.ws13f{word-spacing:17.689114pt;}
.ws1{word-spacing:19.715148pt;}
.ws93{word-spacing:27.230230pt;}
.ws92{word-spacing:39.777259pt;}
.ws7{word-spacing:40.941867pt;}
.ws9{word-spacing:54.221867pt;}
.ws98{word-spacing:109.933970pt;}
.ws9b{word-spacing:115.194223pt;}
.wsd9{word-spacing:158.295474pt;}
.ws116{word-spacing:197.551716pt;}
.ws115{word-spacing:210.835183pt;}
.ws8b{word-spacing:300.046945pt;}
.ws9e{word-spacing:305.330282pt;}
.ws64{word-spacing:402.223371pt;}
.ws105{word-spacing:410.990459pt;}
.ws66{word-spacing:592.176944pt;}
.ws4a{word-spacing:741.695645pt;}
.wsed{word-spacing:743.342795pt;}
._20{margin-left:-1184.693629pt;}
._47{margin-left:-18.259984pt;}
._3{margin-left:-10.616218pt;}
._35{margin-left:-8.882238pt;}
._f{margin-left:-6.907403pt;}
._6{margin-left:-5.483429pt;}
._1b{margin-left:-4.516379pt;}
._2{margin-left:-3.421811pt;}
._1{margin-left:-2.045648pt;}
._7{margin-left:-0.956410pt;}
._12{width:1.328347pt;}
._4{width:2.654310pt;}
._11{width:4.355748pt;}
._24{width:7.125299pt;}
._10{width:8.182643pt;}
._0{width:9.670336pt;}
._28{width:10.998784pt;}
._1c{width:11.981681pt;}
._34{width:12.884957pt;}
._a{width:13.878568pt;}
._c{width:15.461955pt;}
._8{width:16.471499pt;}
._9{width:17.374774pt;}
._16{width:18.649987pt;}
._17{width:19.765798pt;}
._19{width:20.945384pt;}
._1a{width:22.454575pt;}
._1e{width:23.910240pt;}
._13{width:25.610524pt;}
._18{width:27.151406pt;}
._14{width:28.692288pt;}
._15{width:29.701831pt;}
._25{width:30.923910pt;}
._33{width:31.880320pt;}
._b{width:33.368068pt;}
._1d{width:34.404173pt;}
._22{width:35.812226pt;}
._3d{width:36.768636pt;}
._36{width:37.671911pt;}
._5{width:48.381897pt;}
._3c{width:51.755420pt;}
._46{width:54.993920pt;}
._29{width:64.425722pt;}
._27{width:83.154501pt;}
._26{width:85.811195pt;}
._37{width:107.330411pt;}
._1f{width:113.127862pt;}
._3f{width:137.085376pt;}
._40{width:143.939645pt;}
._2b{width:146.171239pt;}
._38{width:150.458821pt;}
._2e{width:166.096439pt;}
._2a{width:180.761414pt;}
._30{width:190.591152pt;}
._42{width:224.118650pt;}
._44{width:230.760383pt;}
._31{width:245.106527pt;}
._2c{width:258.389994pt;}
._2f{width:265.031727pt;}
._2d{width:309.451612pt;}
._21{width:321.875412pt;}
._45{width:387.824093pt;}
._43{width:430.490588pt;}
._32{width:458.757777pt;}
._41{width:500.095953pt;}
._3a{width:506.472017pt;}
._3b{width:637.500132pt;}
._39{width:664.067066pt;}
._3e{width:693.928299pt;}
._d{width:1724.621067pt;}
._23{width:2251.922400pt;}
._e{width:2273.175733pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fsc{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs8{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fsb{font-size:44.292800pt;}
.fs9{font-size:47.820800pt;}
.fsa{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y40{bottom:40.818667pt;}
.y3f{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y176{bottom:95.334667pt;}
.y11a{bottom:96.956000pt;}
.yd0{bottom:97.825333pt;}
.y8d{bottom:99.526667pt;}
.y141{bottom:100.710667pt;}
.y14{bottom:105.020000pt;}
.y3e{bottom:107.209333pt;}
.y25b{bottom:107.330667pt;}
.y2c8{bottom:111.210667pt;}
.ya9{bottom:111.254667pt;}
.y1d7{bottom:111.880000pt;}
.y265{bottom:113.142667pt;}
.y175{bottom:113.904000pt;}
.y119{bottom:115.526667pt;}
.yce{bottom:116.396000pt;}
.y8c{bottom:118.097333pt;}
.y140{bottom:119.281333pt;}
.y13{bottom:120.920000pt;}
.ycf{bottom:121.218667pt;}
.yf4{bottom:121.252000pt;}
.y73{bottom:122.042667pt;}
.y3d{bottom:125.780000pt;}
.y25a{bottom:125.900000pt;}
.y183{bottom:126.234667pt;}
.y2c7{bottom:128.233333pt;}
.ya8{bottom:129.825333pt;}
.y1d6{bottom:130.450667pt;}
.y174{bottom:132.474667pt;}
.y1bd{bottom:132.988000pt;}
.y118{bottom:134.097333pt;}
.y1a5{bottom:134.180000pt;}
.ycd{bottom:134.966667pt;}
.y8b{bottom:136.666667pt;}
.y12{bottom:136.821333pt;}
.y13f{bottom:137.852000pt;}
.y296{bottom:137.865333pt;}
.y264{bottom:138.445333pt;}
.yf3{bottom:139.821333pt;}
.y72{bottom:140.613333pt;}
.y201{bottom:142.430667pt;}
.y182{bottom:143.330667pt;}
.y3c{bottom:144.350667pt;}
.y259{bottom:144.470667pt;}
.y2c6{bottom:145.256000pt;}
.ya7{bottom:148.396000pt;}
.y1d5{bottom:149.021333pt;}
.y173{bottom:151.045333pt;}
.y1bc{bottom:151.557333pt;}
.y117{bottom:152.668000pt;}
.y11{bottom:152.721333pt;}
.y1a4{bottom:152.750667pt;}
.y295{bottom:154.888000pt;}
.y8a{bottom:155.237333pt;}
.y13e{bottom:156.421333pt;}
.ycc{bottom:157.521333pt;}
.yf2{bottom:158.392000pt;}
.y71{bottom:159.184000pt;}
.y181{bottom:160.426667pt;}
.y200{bottom:161.001333pt;}
.y2c5{bottom:162.278667pt;}
.y3b{bottom:162.920000pt;}
.y258{bottom:163.041333pt;}
.y263{bottom:163.748000pt;}
.ya6{bottom:166.965333pt;}
.y1d4{bottom:167.590667pt;}
.y10{bottom:168.621333pt;}
.y172{bottom:169.614667pt;}
.y1bb{bottom:170.128000pt;}
.y116{bottom:171.237333pt;}
.y1a3{bottom:171.320000pt;}
.y294{bottom:171.910667pt;}
.y13d{bottom:174.992000pt;}
.y180{bottom:177.522667pt;}
.y70{bottom:177.753333pt;}
.y89{bottom:177.793333pt;}
.y2c4{bottom:179.301333pt;}
.y1ff{bottom:179.572000pt;}
.y262{bottom:181.080000pt;}
.y154{bottom:181.490667pt;}
.y257{bottom:181.612000pt;}
.yf{bottom:184.521333pt;}
.y3a{bottom:185.476000pt;}
.ya5{bottom:185.536000pt;}
.ycb{bottom:186.096000pt;}
.y1d3{bottom:186.161333pt;}
.y223{bottom:186.404000pt;}
.y171{bottom:188.185333pt;}
.y1ba{bottom:188.698667pt;}
.y293{bottom:188.933333pt;}
.yf1{bottom:189.073333pt;}
.y115{bottom:189.808000pt;}
.y1a2{bottom:189.890667pt;}
.y13c{bottom:193.562667pt;}
.y17f{bottom:194.618667pt;}
.y6f{bottom:196.324000pt;}
.y1fe{bottom:198.141333pt;}
.yf0{bottom:198.185333pt;}
.y261{bottom:198.412000pt;}
.y153{bottom:200.061333pt;}
.y256{bottom:200.181333pt;}
.ye{bottom:200.422667pt;}
.yca{bottom:203.192000pt;}
.ya4{bottom:204.106667pt;}
.y1d2{bottom:204.732000pt;}
.y222{bottom:204.974667pt;}
.y292{bottom:205.956000pt;}
.y170{bottom:206.756000pt;}
.y114{bottom:208.378667pt;}
.y1a1{bottom:208.461333pt;}
.y88{bottom:209.208000pt;}
.y13b{bottom:212.132000pt;}
.y2c3{bottom:213.346667pt;}
.y6e{bottom:214.894667pt;}
.y1fd{bottom:216.712000pt;}
.y152{bottom:218.632000pt;}
.y255{bottom:218.752000pt;}
.yc9{bottom:220.288000pt;}
.y1b9{bottom:220.368000pt;}
.y236{bottom:222.616000pt;}
.ya3{bottom:222.676000pt;}
.y291{bottom:222.978667pt;}
.y1d1{bottom:223.301333pt;}
.y221{bottom:223.544000pt;}
.y260{bottom:223.714667pt;}
.yd{bottom:224.293333pt;}
.y16f{bottom:225.326667pt;}
.y113{bottom:226.948000pt;}
.y1a0{bottom:227.030667pt;}
.y87{bottom:227.778667pt;}
.y2c2{bottom:230.369333pt;}
.y13a{bottom:230.702667pt;}
.y6d{bottom:233.464000pt;}
.y1fc{bottom:235.282667pt;}
.y151{bottom:237.201333pt;}
.y254{bottom:237.322667pt;}
.y1b8{bottom:237.462667pt;}
.yef{bottom:237.965333pt;}
.y290{bottom:240.001333pt;}
.yc{bottom:240.193333pt;}
.y25f{bottom:241.046667pt;}
.ya2{bottom:241.246667pt;}
.y1d0{bottom:241.872000pt;}
.y16e{bottom:243.896000pt;}
.y112{bottom:245.518667pt;}
.y19f{bottom:245.601333pt;}
.y86{bottom:246.349333pt;}
.y2c1{bottom:247.392000pt;}
.y139{bottom:249.273333pt;}
.y6c{bottom:252.034667pt;}
.y1fb{bottom:253.852000pt;}
.y235{bottom:254.032000pt;}
.y1b7{bottom:254.558667pt;}
.y150{bottom:255.772000pt;}
.y39{bottom:255.886667pt;}
.y253{bottom:255.892000pt;}
.yb{bottom:256.093333pt;}
.yee{bottom:256.536000pt;}
.y28f{bottom:257.024000pt;}
.y25e{bottom:258.378667pt;}
.ya1{bottom:259.817333pt;}
.y1cf{bottom:260.442667pt;}
.y111{bottom:264.089333pt;}
.y19e{bottom:264.172000pt;}
.y2c0{bottom:264.414667pt;}
.y85{bottom:264.918667pt;}
.y220{bottom:266.186667pt;}
.y16d{bottom:266.452000pt;}
.y138{bottom:267.842667pt;}
.y6b{bottom:270.605333pt;}
.y1b6{bottom:271.654667pt;}
.ya{bottom:271.994667pt;}
.y234{bottom:272.602667pt;}
.y28e{bottom:274.046667pt;}
.y14f{bottom:274.342667pt;}
.y38{bottom:274.456000pt;}
.y252{bottom:274.462667pt;}
.yed{bottom:275.106667pt;}
.y25d{bottom:275.710667pt;}
.y1fa{bottom:276.408000pt;}
.ya0{bottom:278.388000pt;}
.y1ce{bottom:279.012000pt;}
.y2bf{bottom:281.437333pt;}
.y21f{bottom:282.126667pt;}
.y110{bottom:282.658667pt;}
.y19d{bottom:282.741333pt;}
.y84{bottom:283.489333pt;}
.y137{bottom:286.413333pt;}
.y9{bottom:287.894667pt;}
.y1b5{bottom:288.750667pt;}
.y6a{bottom:289.176000pt;}
.y28d{bottom:291.069333pt;}
.y233{bottom:291.172000pt;}
.y14e{bottom:292.912000pt;}
.y37{bottom:293.026667pt;}
.y251{bottom:293.033333pt;}
.y25c{bottom:293.044000pt;}
.y9f{bottom:296.957333pt;}
.y16c{bottom:297.866667pt;}
.y21e{bottom:298.066667pt;}
.y2be{bottom:298.460000pt;}
.y10f{bottom:301.229333pt;}
.y19c{bottom:301.312000pt;}
.y1cd{bottom:301.568000pt;}
.y83{bottom:302.060000pt;}
.y8{bottom:303.794667pt;}
.y136{bottom:304.984000pt;}
.yec{bottom:305.193333pt;}
.y69{bottom:307.745333pt;}
.y1f9{bottom:307.824000pt;}
.y28c{bottom:308.092000pt;}
.y232{bottom:309.742667pt;}
.y14d{bottom:311.482667pt;}
.y250{bottom:311.602667pt;}
.yeb{bottom:314.305333pt;}
.y2bd{bottom:315.482667pt;}
.y9e{bottom:315.528000pt;}
.y16b{bottom:316.437333pt;}
.y7{bottom:319.696000pt;}
.y10e{bottom:319.800000pt;}
.y19b{bottom:319.882667pt;}
.y82{bottom:320.629333pt;}
.y21d{bottom:320.674667pt;}
.y135{bottom:323.554667pt;}
.y28b{bottom:325.114667pt;}
.y68{bottom:326.316000pt;}
.y1f8{bottom:326.393333pt;}
.y36{bottom:327.537333pt;}
.y231{bottom:328.313333pt;}
.y24f{bottom:330.173333pt;}
.y2bc{bottom:332.506667pt;}
.y1cc{bottom:332.982667pt;}
.y14c{bottom:334.037333pt;}
.y9d{bottom:334.098667pt;}
.y16a{bottom:335.008000pt;}
.y6{bottom:335.596000pt;}
.y19a{bottom:338.453333pt;}
.y81{bottom:339.200000pt;}
.y134{bottom:342.124000pt;}
.y28a{bottom:342.137333pt;}
.y67{bottom:344.886667pt;}
.y1f7{bottom:344.964000pt;}
.y35{bottom:346.108000pt;}
.y230{bottom:346.882667pt;}
.y24e{bottom:348.744000pt;}
.y2bb{bottom:349.529333pt;}
.y21c{bottom:349.710667pt;}
.y10d{bottom:351.469333pt;}
.y1cb{bottom:351.553333pt;}
.y9c{bottom:352.668000pt;}
.y169{bottom:353.577333pt;}
.yea{bottom:354.556000pt;}
.y5{bottom:356.809333pt;}
.y199{bottom:357.022667pt;}
.y80{bottom:357.770667pt;}
.y289{bottom:359.160000pt;}
.y133{bottom:360.694667pt;}
.y66{bottom:363.456000pt;}
.y1f6{bottom:363.534667pt;}
.y34{bottom:364.677333pt;}
.y14b{bottom:365.453333pt;}
.y2ba{bottom:366.552000pt;}
.y17e{bottom:366.872000pt;}
.y24d{bottom:367.313333pt;}
.y1ca{bottom:370.124000pt;}
.y9b{bottom:371.238667pt;}
.y168{bottom:372.148000pt;}
.y4{bottom:372.710667pt;}
.ye9{bottom:373.126667pt;}
.y198{bottom:375.593333pt;}
.y288{bottom:376.182667pt;}
.y7f{bottom:376.340000pt;}
.y132{bottom:379.265333pt;}
.y10c{bottom:380.664000pt;}
.y65{bottom:382.026667pt;}
.y1f5{bottom:382.104000pt;}
.y21b{bottom:382.692000pt;}
.y33{bottom:383.248000pt;}
.y2b9{bottom:383.574667pt;}
.y14a{bottom:384.024000pt;}
.y17d{bottom:385.441333pt;}
.y24c{bottom:385.884000pt;}
.y3{bottom:388.610667pt;}
.y1c9{bottom:388.694667pt;}
.y9a{bottom:389.809333pt;}
.y167{bottom:390.718667pt;}
.ye8{bottom:391.697333pt;}
.y287{bottom:393.206667pt;}
.y197{bottom:394.164000pt;}
.y131{bottom:397.834667pt;}
.y7e{bottom:398.896000pt;}
.y64{bottom:400.597333pt;}
.y1f4{bottom:400.674667pt;}
.y21a{bottom:401.262667pt;}
.y32{bottom:401.818667pt;}
.y149{bottom:402.593333pt;}
.y17c{bottom:404.012000pt;}
.y24b{bottom:404.454667pt;}
.y2{bottom:404.510667pt;}
.y1c8{bottom:407.264000pt;}
.y99{bottom:408.378667pt;}
.y166{bottom:409.288000pt;}
.y286{bottom:410.229333pt;}
.ye7{bottom:410.266667pt;}
.yc8{bottom:411.040000pt;}
.y196{bottom:412.733333pt;}
.y22f{bottom:413.870667pt;}
.y130{bottom:416.405333pt;}
.y2b8{bottom:417.620000pt;}
.y63{bottom:419.166667pt;}
.y1f3{bottom:419.245333pt;}
.y219{bottom:419.833333pt;}
.y31{bottom:420.388000pt;}
.y148{bottom:421.164000pt;}
.y17b{bottom:422.582667pt;}
.y10b{bottom:422.770667pt;}
.y24a{bottom:423.024000pt;}
.y1{bottom:425.725333pt;}
.y1c7{bottom:425.834667pt;}
.y285{bottom:427.252000pt;}
.y165{bottom:427.858667pt;}
.ye6{bottom:428.837333pt;}
.yc7{bottom:429.609333pt;}
.y7d{bottom:430.310667pt;}
.y22e{bottom:430.966667pt;}
.y195{bottom:431.304000pt;}
.y2b7{bottom:434.642667pt;}
.y62{bottom:437.737333pt;}
.y1f2{bottom:437.814667pt;}
.y218{bottom:438.404000pt;}
.y30{bottom:438.958667pt;}
.y12f{bottom:438.960000pt;}
.y147{bottom:439.734667pt;}
.y98{bottom:440.048000pt;}
.y17a{bottom:441.152000pt;}
.y249{bottom:441.594667pt;}
.y284{bottom:444.274667pt;}
.y164{bottom:446.429333pt;}
.ye5{bottom:447.408000pt;}
.y22d{bottom:448.062667pt;}
.yc6{bottom:448.180000pt;}
.y194{bottom:449.874667pt;}
.y2b6{bottom:451.665333pt;}
.y7c{bottom:455.378667pt;}
.y61{bottom:456.308000pt;}
.y1f1{bottom:456.385333pt;}
.y217{bottom:456.973333pt;}
.y97{bottom:457.144000pt;}
.y1c6{bottom:457.504000pt;}
.y2f{bottom:457.529333pt;}
.y248{bottom:460.165333pt;}
.y283{bottom:461.297333pt;}
.y179{bottom:463.708000pt;}
.y7b{bottom:464.492000pt;}
.y10a{bottom:464.877333pt;}
.ye4{bottom:465.977333pt;}
.yc5{bottom:466.750667pt;}
.y193{bottom:468.444000pt;}
.y2b5{bottom:468.688000pt;}
.y146{bottom:468.762667pt;}
.y163{bottom:468.984000pt;}
.y12e{bottom:470.376000pt;}
.y96{bottom:474.240000pt;}
.y1c5{bottom:474.600000pt;}
.y60{bottom:474.877333pt;}
.y1f0{bottom:474.956000pt;}
.y2e{bottom:476.100000pt;}
.y282{bottom:478.320000pt;}
.y247{bottom:478.736000pt;}
.y216{bottom:479.529333pt;}
.ye3{bottom:484.548000pt;}
.yc4{bottom:485.320000pt;}
.y2b4{bottom:485.710667pt;}
.y145{bottom:485.858667pt;}
.y192{bottom:487.014667pt;}
.y7a{bottom:488.946667pt;}
.y95{bottom:491.336000pt;}
.y1c4{bottom:491.696000pt;}
.y178{bottom:492.281333pt;}
.y5f{bottom:493.448000pt;}
.y1ef{bottom:493.525333pt;}
.y2d{bottom:494.669333pt;}
.y281{bottom:495.342667pt;}
.y162{bottom:500.400000pt;}
.y246{bottom:501.290667pt;}
.y2b3{bottom:502.733333pt;}
.yc3{bottom:503.890667pt;}
.y191{bottom:505.585333pt;}
.y108{bottom:506.984000pt;}
.y109{bottom:507.145333pt;}
.y79{bottom:507.516000pt;}
.y94{bottom:508.432000pt;}
.y1c3{bottom:508.790667pt;}
.y177{bottom:509.377333pt;}
.y215{bottom:510.944000pt;}
.y5e{bottom:512.018667pt;}
.y1ee{bottom:512.096000pt;}
.y280{bottom:512.365333pt;}
.y1b4{bottom:512.576000pt;}
.y2c{bottom:513.240000pt;}
.ye2{bottom:518.593333pt;}
.y161{bottom:518.970667pt;}
.y2b2{bottom:519.756000pt;}
.yc2{bottom:522.461333pt;}
.y190{bottom:524.154667pt;}
.y78{bottom:526.086667pt;}
.y27f{bottom:529.388000pt;}
.y214{bottom:529.514667pt;}
.y5d{bottom:530.589333pt;}
.y1ed{bottom:530.666667pt;}
.y1b3{bottom:531.146667pt;}
.y2b{bottom:531.810667pt;}
.y2cb{bottom:535.230667pt;}
.y245{bottom:535.801333pt;}
.y2b1{bottom:536.778667pt;}
.y160{bottom:537.540000pt;}
.yc1{bottom:541.030667pt;}
.y18f{bottom:542.725333pt;}
.y77{bottom:544.657333pt;}
.y27e{bottom:546.410667pt;}
.y107{bottom:547.868000pt;}
.y213{bottom:548.085333pt;}
.y5c{bottom:549.158667pt;}
.y1ec{bottom:549.237333pt;}
.y1b2{bottom:549.716000pt;}
.y2a{bottom:550.380000pt;}
.y2ca{bottom:552.254667pt;}
.ye1{bottom:552.638667pt;}
.y2b0{bottom:553.801333pt;}
.y244{bottom:554.372000pt;}
.y15f{bottom:556.110667pt;}
.yc0{bottom:559.601333pt;}
.y18e{bottom:561.296000pt;}
.y76{bottom:563.228000pt;}
.y27d{bottom:563.433333pt;}
.y212{bottom:566.654667pt;}
.y5b{bottom:567.729333pt;}
.y1eb{bottom:567.806667pt;}
.y1b1{bottom:568.286667pt;}
.y29{bottom:568.950667pt;}
.y2c9{bottom:569.277333pt;}
.y2af{bottom:570.824000pt;}
.ye0{bottom:571.209333pt;}
.y243{bottom:572.941333pt;}
.y15e{bottom:574.681333pt;}
.ybf{bottom:578.172000pt;}
.y27c{bottom:580.456000pt;}
.y12d{bottom:581.797333pt;}
.y106{bottom:584.054667pt;}
.y211{bottom:585.225333pt;}
.y75{bottom:585.782667pt;}
.y5a{bottom:586.300000pt;}
.y1ea{bottom:586.377333pt;}
.y28{bottom:587.521333pt;}
.y2ae{bottom:587.846667pt;}
.ydf{bottom:589.780000pt;}
.y18d{bottom:592.965333pt;}
.y15d{bottom:593.250667pt;}
.ybe{bottom:596.741333pt;}
.y27b{bottom:597.478667pt;}
.y12c{bottom:600.368000pt;}
.y105{bottom:602.625333pt;}
.y210{bottom:603.796000pt;}
.y59{bottom:604.869333pt;}
.y1e9{bottom:604.948000pt;}
.y242{bottom:605.136000pt;}
.y27{bottom:606.090667pt;}
.y74{bottom:607.500000pt;}
.yde{bottom:608.349333pt;}
.y18c{bottom:610.061333pt;}
.y1b0{bottom:610.929333pt;}
.y15c{bottom:611.821333pt;}
.y27a{bottom:614.501333pt;}
.ybd{bottom:615.312000pt;}
.y12b{bottom:618.938667pt;}
.y241{bottom:619.508000pt;}
.y2ad{bottom:621.892000pt;}
.y20f{bottom:622.365333pt;}
.y240{bottom:623.365333pt;}
.y58{bottom:623.440000pt;}
.y1e8{bottom:623.517333pt;}
.y26{bottom:624.661333pt;}
.y104{bottom:625.180000pt;}
.y1af{bottom:626.869333pt;}
.y18b{bottom:627.156000pt;}
.y15b{bottom:630.392000pt;}
.ydd{bottom:630.905333pt;}
.y279{bottom:631.524000pt;}
.ybc{bottom:633.882667pt;}
.y12a{bottom:637.508000pt;}
.y2ac{bottom:638.914667pt;}
.y23f{bottom:638.962667pt;}
.y57{bottom:642.010667pt;}
.y1ae{bottom:642.809333pt;}
.y25{bottom:643.232000pt;}
.y1e7{bottom:646.073333pt;}
.y278{bottom:648.546667pt;}
.y20e{bottom:648.840000pt;}
.y15a{bottom:648.961333pt;}
.ybb{bottom:652.453333pt;}
.y2ab{bottom:655.937333pt;}
.y129{bottom:656.078667pt;}
.y103{bottom:656.596000pt;}
.y20d{bottom:657.952000pt;}
.y56{bottom:660.580000pt;}
.y23e{bottom:661.570667pt;}
.y24{bottom:661.801333pt;}
.ydc{bottom:662.320000pt;}
.y22c{bottom:664.688000pt;}
.y1ad{bottom:665.417333pt;}
.y277{bottom:665.569333pt;}
.y159{bottom:667.532000pt;}
.yba{bottom:671.022667pt;}
.y2aa{bottom:672.961333pt;}
.y128{bottom:674.649333pt;}
.y102{bottom:675.165333pt;}
.y1e6{bottom:677.488000pt;}
.y23d{bottom:678.170667pt;}
.y54{bottom:679.150667pt;}
.y23{bottom:680.372000pt;}
.ydb{bottom:680.890667pt;}
.y276{bottom:682.592000pt;}
.y22b{bottom:683.258667pt;}
.y55{bottom:683.972000pt;}
.yb9{bottom:689.593333pt;}
.y2a9{bottom:689.984000pt;}
.y127{bottom:693.218667pt;}
.y101{bottom:693.736000pt;}
.y23c{bottom:694.110667pt;}
.y1ac{bottom:694.453333pt;}
.y1e5{bottom:696.058667pt;}
.y20c{bottom:696.680000pt;}
.y53{bottom:697.721333pt;}
.y22{bottom:698.942667pt;}
.y158{bottom:699.201333pt;}
.yda{bottom:699.461333pt;}
.y275{bottom:699.614667pt;}
.y22a{bottom:701.829333pt;}
.y144{bottom:702.328000pt;}
.y2a8{bottom:707.006667pt;}
.yb8{bottom:708.164000pt;}
.y23b{bottom:710.050667pt;}
.y126{bottom:711.789333pt;}
.y100{bottom:712.306667pt;}
.y1e4{bottom:714.629333pt;}
.y20b{bottom:715.250667pt;}
.y52{bottom:716.290667pt;}
.y157{bottom:716.297333pt;}
.y274{bottom:716.637333pt;}
.y93{bottom:718.030667pt;}
.y143{bottom:719.424000pt;}
.y229{bottom:720.398667pt;}
.y1ab{bottom:723.974667pt;}
.y2a7{bottom:724.029333pt;}
.y21{bottom:725.482667pt;}
.y23a{bottom:725.992000pt;}
.yb7{bottom:726.733333pt;}
.y125{bottom:730.360000pt;}
.yff{bottom:730.876000pt;}
.y1c2{bottom:732.616000pt;}
.y1e3{bottom:733.198667pt;}
.y156{bottom:733.393333pt;}
.y20a{bottom:733.820000pt;}
.y51{bottom:734.861333pt;}
.y142{bottom:736.520000pt;}
.y92{bottom:736.601333pt;}
.y273{bottom:737.645333pt;}
.y2a6{bottom:741.052000pt;}
.y1aa{bottom:742.545333pt;}
.y228{bottom:742.954667pt;}
.y239{bottom:748.600000pt;}
.y124{bottom:748.929333pt;}
.yb6{bottom:749.289333pt;}
.yfe{bottom:749.446667pt;}
.y155{bottom:750.489333pt;}
.y1c1{bottom:751.186667pt;}
.y1e2{bottom:751.769333pt;}
.y50{bottom:753.432000pt;}
.y91{bottom:755.172000pt;}
.y2a5{bottom:758.074667pt;}
.y20{bottom:758.821333pt;}
.y1a9{bottom:765.100000pt;}
.y209{bottom:765.489333pt;}
.y123{bottom:767.500000pt;}
.yfd{bottom:768.017333pt;}
.y227{bottom:769.706667pt;}
.y1c0{bottom:769.757333pt;}
.y1e1{bottom:770.340000pt;}
.y4f{bottom:772.002667pt;}
.y272{bottom:772.156000pt;}
.y1f{bottom:773.168000pt;}
.y90{bottom:773.742667pt;}
.y2a4{bottom:775.097333pt;}
.y238{bottom:777.636000pt;}
.y208{bottom:782.585333pt;}
.yb5{bottom:783.800000pt;}
.y122{bottom:786.070667pt;}
.yfc{bottom:786.586667pt;}
.y226{bottom:786.802667pt;}
.y1bf{bottom:788.326667pt;}
.y1e0{bottom:788.909333pt;}
.y271{bottom:789.488000pt;}
.y4e{bottom:790.572000pt;}
.y1e{bottom:791.370667pt;}
.y2a2{bottom:792.120000pt;}
.y2a3{bottom:792.305333pt;}
.y8f{bottom:792.312000pt;}
.y1a8{bottom:793.674667pt;}
.y237{bottom:794.730667pt;}
.y207{bottom:799.681333pt;}
.y1d{bottom:801.860000pt;}
.yb4{bottom:802.369333pt;}
.y225{bottom:803.898667pt;}
.y121{bottom:804.640000pt;}
.yfb{bottom:805.157333pt;}
.y270{bottom:806.821333pt;}
.y1be{bottom:806.897333pt;}
.y1df{bottom:807.480000pt;}
.y4d{bottom:809.142667pt;}
.y1a7{bottom:810.770667pt;}
.yd9{bottom:810.882667pt;}
.y8e{bottom:814.868000pt;}
.y206{bottom:816.777333pt;}
.y1c{bottom:820.064000pt;}
.y224{bottom:820.994667pt;}
.y120{bottom:823.210667pt;}
.yfa{bottom:823.728000pt;}
.y26f{bottom:824.153333pt;}
.y1de{bottom:826.050667pt;}
.y2a1{bottom:826.165333pt;}
.y4c{bottom:827.713333pt;}
.y1a6{bottom:827.866667pt;}
.yd8{bottom:829.453333pt;}
.yb2{bottom:831.290667pt;}
.y205{bottom:833.873333pt;}
.y1b{bottom:834.409333pt;}
.yb1{bottom:840.404000pt;}
.y26e{bottom:841.485333pt;}
.y11f{bottom:841.781333pt;}
.yf9{bottom:842.297333pt;}
.y2a0{bottom:843.188000pt;}
.y1dd{bottom:844.621333pt;}
.y4b{bottom:846.282667pt;}
.yd7{bottom:848.022667pt;}
.yb3{bottom:849.396000pt;}
.y204{bottom:850.969333pt;}
.y18a{bottom:858.212000pt;}
.y29f{bottom:860.210667pt;}
.y11e{bottom:860.352000pt;}
.yf8{bottom:860.868000pt;}
.y1dc{bottom:863.190667pt;}
.y4a{bottom:864.853333pt;}
.yd6{bottom:866.593333pt;}
.y26d{bottom:866.788000pt;}
.y203{bottom:868.065333pt;}
.y1a{bottom:871.888000pt;}
.y189{bottom:876.781333pt;}
.y29e{bottom:877.233333pt;}
.y11d{bottom:878.921333pt;}
.yb0{bottom:879.132000pt;}
.yf7{bottom:879.438667pt;}
.y1db{bottom:881.761333pt;}
.y49{bottom:883.424000pt;}
.y26c{bottom:884.120000pt;}
.y202{bottom:885.161333pt;}
.yd5{bottom:885.164000pt;}
.y19{bottom:890.457333pt;}
.y29d{bottom:894.256000pt;}
.y188{bottom:895.352000pt;}
.yf6{bottom:898.009333pt;}
.y1da{bottom:900.332000pt;}
.y26b{bottom:901.452000pt;}
.y11c{bottom:901.477333pt;}
.yaf{bottom:901.812000pt;}
.y48{bottom:901.993333pt;}
.yd4{bottom:903.733333pt;}
.yae{bottom:910.925333pt;}
.y29c{bottom:911.278667pt;}
.y187{bottom:913.922667pt;}
.yf5{bottom:916.578667pt;}
.y26a{bottom:918.784000pt;}
.y47{bottom:920.564000pt;}
.yd3{bottom:922.304000pt;}
.y11b{bottom:923.194667pt;}
.y18{bottom:924.968000pt;}
.y1d9{bottom:925.340000pt;}
.y29b{bottom:928.301333pt;}
.y186{bottom:932.492000pt;}
.y1d8{bottom:934.452000pt;}
.yad{bottom:935.149333pt;}
.y269{bottom:936.116000pt;}
.y46{bottom:939.134667pt;}
.yd2{bottom:940.874667pt;}
.y29a{bottom:945.324000pt;}
.y185{bottom:951.062667pt;}
.y17{bottom:952.824000pt;}
.y268{bottom:953.448000pt;}
.yac{bottom:953.720000pt;}
.y45{bottom:957.704000pt;}
.y299{bottom:962.346667pt;}
.yd1{bottom:963.429333pt;}
.y184{bottom:969.633333pt;}
.y267{bottom:970.781333pt;}
.yab{bottom:972.289333pt;}
.y44{bottom:976.274667pt;}
.y298{bottom:979.369333pt;}
.y16{bottom:980.678667pt;}
.y266{bottom:988.113333pt;}
.yaa{bottom:990.860000pt;}
.y43{bottom:994.845333pt;}
.y297{bottom:996.392000pt;}
.y42{bottom:1013.414667pt;}
.y41{bottom:1067.149333pt;}
.h16{height:26.194996pt;}
.h7{height:28.947524pt;}
.h11{height:29.897568pt;}
.hd{height:30.127753pt;}
.h1a{height:33.102399pt;}
.h23{height:33.219600pt;}
.h2{height:33.771789pt;}
.h22{height:33.904947pt;}
.h1e{height:35.052646pt;}
.h1d{height:35.677803pt;}
.h21{height:37.671911pt;}
.h9{height:38.415786pt;}
.h1f{height:38.575187pt;}
.h8{height:38.596538pt;}
.h3{height:38.947124pt;}
.he{height:39.641961pt;}
.hb{height:41.524400pt;}
.h12{height:43.421286pt;}
.h1b{height:43.481871pt;}
.hc{height:46.099251pt;}
.ha{height:48.245551pt;}
.h6{height:48.481423pt;}
.h5{height:48.486756pt;}
.h26{height:51.131789pt;}
.h1c{height:55.952068pt;}
.h20{height:55.957402pt;}
.h24{height:68.204311pt;}
.h25{height:68.417645pt;}
.h4{height:69.148877pt;}
.h15{height:74.920458pt;}
.h19{height:75.033961pt;}
.hf{height:77.492400pt;}
.h13{height:78.803124pt;}
.h18{height:84.693551pt;}
.h10{height:84.698884pt;}
.h17{height:111.368458pt;}
.h14{height:115.256458pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x118{left:76.309333pt;}
.xd4{left:220.012000pt;}
.x4{left:220.912000pt;}
.x2{left:221.858667pt;}
.x108{left:226.097333pt;}
.xe1{left:229.828000pt;}
.xb9{left:233.097333pt;}
.x7c{left:234.777333pt;}
.x56{left:236.530667pt;}
.x3{left:239.924000pt;}
.x9e{left:240.893333pt;}
.xec{left:241.938667pt;}
.xf{left:242.934667pt;}
.x6a{left:244.396000pt;}
.x68{left:246.030667pt;}
.x92{left:247.692000pt;}
.x12{left:250.204000pt;}
.x8e{left:251.982667pt;}
.xed{left:255.221333pt;}
.xa4{left:258.378667pt;}
.x7d{left:259.856000pt;}
.x2f{left:262.590667pt;}
.xae{left:263.981333pt;}
.xac{left:266.986667pt;}
.x10{left:268.014667pt;}
.x114{left:269.369333pt;}
.x65{left:271.405333pt;}
.xf6{left:272.518667pt;}
.x78{left:273.921333pt;}
.x6b{left:275.582667pt;}
.xb7{left:276.693333pt;}
.x3a{left:279.772000pt;}
.xe0{left:282.994667pt;}
.x66{left:284.689333pt;}
.xf7{left:285.592000pt;}
.x79{left:287.205333pt;}
.x43{left:289.069333pt;}
.xfb{left:290.230667pt;}
.x67{left:291.464000pt;}
.x10b{left:292.948000pt;}
.xee{left:295.976000pt;}
.x9b{left:299.000000pt;}
.x9f{left:302.024000pt;}
.x3b{left:304.852000pt;}
.x8f{left:307.189333pt;}
.x5a{left:308.684000pt;}
.xe4{left:309.816000pt;}
.xa2{left:311.488000pt;}
.x119{left:314.206667pt;}
.xa5{left:315.182667pt;}
.x113{left:316.229333pt;}
.x44{left:317.482667pt;}
.x8c{left:318.902667pt;}
.x20{left:321.537333pt;}
.x90{left:322.657333pt;}
.xfc{left:323.744000pt;}
.x84{left:327.397333pt;}
.x1c{left:329.862667pt;}
.xce{left:331.088000pt;}
.x101{left:332.017333pt;}
.x9a{left:333.189333pt;}
.xa6{left:335.089333pt;}
.x1d{left:336.505333pt;}
.x21{left:339.257333pt;}
.x87{left:340.725333pt;}
.xaf{left:343.544000pt;}
.x75{left:345.425333pt;}
.xe2{left:347.017333pt;}
.x115{left:349.437333pt;}
.x36{left:351.430667pt;}
.xe3{left:354.013333pt;}
.xcf{left:356.166667pt;}
.x76{left:358.708000pt;}
.xa7{left:360.268000pt;}
.x5b{left:362.089333pt;}
.x91{left:363.065333pt;}
.x45{left:364.640000pt;}
.xef{left:367.904000pt;}
.xf8{left:370.180000pt;}
.x17{left:372.210667pt;}
.x77{left:375.246667pt;}
.x18{left:378.852000pt;}
.x3c{left:381.120000pt;}
.x19{left:382.166667pt;}
.x5c{left:383.382667pt;}
.x116{left:384.998667pt;}
.x89{left:387.550667pt;}
.x1a{left:388.808000pt;}
.x10e{left:389.825333pt;}
.x60{left:391.166667pt;}
.x37{left:392.440000pt;}
.xb0{left:394.080000pt;}
.x57{left:395.053333pt;}
.xd6{left:397.828000pt;}
.xa0{left:399.404000pt;}
.xb6{left:400.377333pt;}
.xc7{left:401.534667pt;}
.x10f{left:403.109333pt;}
.x61{left:404.450667pt;}
.x9{left:406.174667pt;}
.x95{left:407.445333pt;}
.xc3{left:409.904000pt;}
.xd3{left:411.880000pt;}
.xdd{left:413.658667pt;}
.xcb{left:415.545333pt;}
.x53{left:419.386667pt;}
.x96{left:420.729333pt;}
.xdb{left:422.358667pt;}
.x58{left:424.936000pt;}
.xf2{left:426.156000pt;}
.xc6{left:427.916000pt;}
.x26{left:429.734667pt;}
.xa{left:430.806667pt;}
.x30{left:432.660000pt;}
.x109{left:433.632000pt;}
.xc4{left:434.984000pt;}
.xc9{left:436.176000pt;}
.xc8{left:437.836000pt;}
.xdf{left:439.292000pt;}
.xdc{left:440.702667pt;}
.x27{left:443.018667pt;}
.x8a{left:444.825333pt;}
.x63{left:446.437333pt;}
.xb8{left:447.752000pt;}
.x6c{left:448.985333pt;}
.xa3{left:450.109333pt;}
.xbe{left:451.752000pt;}
.x3d{left:456.718667pt;}
.x3f{left:458.185333pt;}
.x64{left:459.721333pt;}
.xca{left:461.256000pt;}
.x8b{left:464.610667pt;}
.x70{left:465.689333pt;}
.xa1{left:467.262667pt;}
.x104{left:468.436000pt;}
.x4e{left:469.845333pt;}
.x40{left:471.469333pt;}
.x31{left:474.960000pt;}
.x71{left:476.614667pt;}
.x59{left:478.193333pt;}
.xd7{left:479.122667pt;}
.xd2{left:480.157333pt;}
.x93{left:482.509333pt;}
.x6d{left:484.210667pt;}
.x72{left:485.604000pt;}
.x9c{left:487.113333pt;}
.x10a{left:488.154667pt;}
.xde{left:493.752000pt;}
.xb{left:495.036000pt;}
.x7e{left:496.548000pt;}
.x4f{left:499.301333pt;}
.xbf{left:501.178667pt;}
.x73{left:506.736000pt;}
.xba{left:507.790667pt;}
.x9d{left:509.138667pt;}
.xf5{left:511.190667pt;}
.x94{left:512.424000pt;}
.xb4{left:514.056000pt;}
.xa8{left:515.840000pt;}
.x10c{left:517.170667pt;}
.x54{left:519.657333pt;}
.x7f{left:521.628000pt;}
.xc{left:523.445333pt;}
.xcc{left:525.074667pt;}
.xc0{left:526.257333pt;}
.x10d{left:530.454667pt;}
.x34{left:531.457333pt;}
.x55{left:532.940000pt;}
.x4c{left:534.490667pt;}
.x88{left:536.610667pt;}
.x1e{left:538.172000pt;}
.xe6{left:541.721333pt;}
.x42{left:543.494667pt;}
.xd9{left:544.502667pt;}
.xb3{left:546.181333pt;}
.x4d{left:547.774667pt;}
.xcd{left:550.153333pt;}
.xf3{left:551.161333pt;}
.x38{left:554.242667pt;}
.x1f{left:555.148000pt;}
.xbd{left:557.660000pt;}
.xf9{left:559.281333pt;}
.xf0{left:560.309333pt;}
.xa9{left:561.330667pt;}
.x105{left:562.502667pt;}
.x50{left:566.280000pt;}
.x35{left:567.849333pt;}
.x28{left:568.894667pt;}
.xd8{left:572.425333pt;}
.xad{left:575.170667pt;}
.xf4{left:576.240000pt;}
.xb1{left:578.929333pt;}
.x29{left:582.178667pt;}
.xb5{left:583.777333pt;}
.x2a{left:585.433333pt;}
.xf1{left:586.396000pt;}
.x51{left:587.292000pt;}
.x48{left:589.853333pt;}
.x102{left:592.842667pt;}
.xd0{left:593.981333pt;}
.x6e{left:595.706667pt;}
.xe7{left:597.170667pt;}
.x2b{left:598.716000pt;}
.xea{left:599.909333pt;}
.x49{left:603.137333pt;}
.x110{left:604.240000pt;}
.x117{left:605.910667pt;}
.xbb{left:606.913333pt;}
.xd1{left:608.272000pt;}
.x4a{left:609.912000pt;}
.xfd{left:611.804000pt;}
.x2c{left:614.882667pt;}
.x82{left:617.245333pt;}
.xda{left:618.668000pt;}
.xc2{left:621.610667pt;}
.x4b{left:623.196000pt;}
.x6f{left:624.276000pt;}
.x5d{left:625.222667pt;}
.xfe{left:628.261333pt;}
.xc5{left:630.144000pt;}
.x46{left:631.712000pt;}
.x111{left:633.704000pt;}
.x83{left:634.938667pt;}
.x81{left:636.410667pt;}
.x5e{left:638.506667pt;}
.x2d{left:639.961333pt;}
.x5{left:641.648000pt;}
.xbc{left:642.833333pt;}
.x47{left:644.996000pt;}
.x7a{left:646.501333pt;}
.x52{left:648.844000pt;}
.xff{left:651.878667pt;}
.x39{left:653.476000pt;}
.x112{left:654.706667pt;}
.x74{left:656.893333pt;}
.x5f{left:658.565333pt;}
.x7b{left:659.784000pt;}
.x6{left:662.660000pt;}
.x97{left:666.105333pt;}
.x62{left:667.624000pt;}
.xe8{left:668.644000pt;}
.x106{left:670.150667pt;}
.xb2{left:671.368000pt;}
.x107{left:672.582667pt;}
.x41{left:673.974667pt;}
.xd5{left:677.610667pt;}
.x100{left:679.321333pt;}
.x11{left:681.422667pt;}
.x13{left:683.990667pt;}
.xab{left:685.294667pt;}
.xfa{left:686.921333pt;}
.xeb{left:688.356000pt;}
.x99{left:689.393333pt;}
.x14{left:690.632000pt;}
.x103{left:692.048000pt;}
.x15{left:693.886667pt;}
.x98{left:695.953333pt;}
.xaa{left:698.486667pt;}
.x16{left:700.528000pt;}
.x86{left:702.046667pt;}
.x69{left:703.013333pt;}
.x2e{left:704.528000pt;}
.xd{left:705.686667pt;}
.x32{left:706.784000pt;}
.x3e{left:709.578667pt;}
.x80{left:713.034667pt;}
.xc1{left:716.277333pt;}
.x22{left:717.189333pt;}
.x7{left:718.964000pt;}
.x33{left:720.068000pt;}
.xe5{left:722.601333pt;}
.x23{left:723.832000pt;}
.x24{left:727.105333pt;}
.x8d{left:728.006667pt;}
.xe9{left:729.381333pt;}
.x85{left:731.301333pt;}
.xe{left:734.094667pt;}
.x25{left:740.389333pt;}
.x1b{left:741.286667pt;}
.x8{left:744.044000pt;}
}




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