
    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_eb0b803d9fff9109f0d0bcf0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_bdb1b24d3ff032b2e1e74879.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.014000;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_be6cf5333dc802ed5fa0ee87.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_c816f595832aa251310381f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_dc154aecaf7bce0dad3e13f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.196000;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_828b06713e3e57f8b7fa5e73.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.015625;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_5a42eb684321940bbaf140d1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000488;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_425386bda2d5d76db2b284e6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.206055;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_91d339a09ec10a2318032cec.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.015625;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_3c054b5e0ecf9f9ce20d929c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;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_34036fdcf67d141218e0691a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.206055;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_1beb9c401600834f04b9c02c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_69fc80d167a04f6f6ebea7bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.015625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c2d2715c4d7fad295eaaafa1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c3699d80ba7dd6587e5f6ea9.woff2')format("woff");}.fff{font-family:fff;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_04adc103751327985f8720a6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9210256507aca1e40c7b9f29.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_3cad434a3c000c0d07f09208.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.522000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_41561ea20c3d086267c0fe8b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.988000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_a3a570d64007f995f15f2228.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.015625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_82fec485bf3da575e4554dab.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_ed59ca1eb5e702c19b0258a8.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f9c49a1c48ffc4f5b2d867c4.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.015625;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_f0a9682da60efa6d24dac9e2.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.206055;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;}
.m2{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);}
.mb{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);}
.m28{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);}
.m14{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);}
.m16{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);}
.m25{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);}
.m9{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);}
.md{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);}
.m12{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);}
.mc{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);}
.m22{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);}
.m1a{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);}
.m26{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);}
.m7{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);}
.m1f{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);}
.m1d{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);}
.m8{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);}
.m24{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);}
.m17{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);}
.m23{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);}
.m18{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);}
.m27{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);}
.m3{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);}
.m20{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);}
.mf{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);}
.m13{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);}
.m5{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);}
.m15{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);}
.ma{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);}
.m1c{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);}
.m4{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);}
.m6{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);}
.m10{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);}
.m1e{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);}
.m1b{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);}
.m21{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);}
.me{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);}
.m29{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);}
.m1{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);}
.m11{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:6.384000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.ls2f{letter-spacing:-0.425400px;}
.ls30{letter-spacing:-0.270000px;}
.ls37{letter-spacing:-0.108000px;}
.ls36{letter-spacing:-0.069600px;}
.ls3b{letter-spacing:-0.065400px;}
.ls39{letter-spacing:-0.060000px;}
.lsb{letter-spacing:0.000000px;}
.ls61{letter-spacing:0.000009px;}
.ls1f{letter-spacing:0.000106px;}
.ls1b{letter-spacing:0.000435px;}
.ls65{letter-spacing:0.000589px;}
.ls63{letter-spacing:0.000676px;}
.ls66{letter-spacing:0.000800px;}
.ls67{letter-spacing:0.001036px;}
.ls68{letter-spacing:0.001155px;}
.ls70{letter-spacing:0.002074px;}
.ls6d{letter-spacing:0.002096px;}
.ls72{letter-spacing:0.002460px;}
.ls2e{letter-spacing:0.002520px;}
.ls53{letter-spacing:0.002725px;}
.ls58{letter-spacing:0.002780px;}
.ls62{letter-spacing:0.002841px;}
.ls32{letter-spacing:0.003226px;}
.ls6f{letter-spacing:0.003437px;}
.ls3{letter-spacing:0.003488px;}
.ls6b{letter-spacing:0.004113px;}
.ls31{letter-spacing:0.004200px;}
.ls64{letter-spacing:0.004221px;}
.ls6a{letter-spacing:0.004749px;}
.ls60{letter-spacing:0.004800px;}
.ls69{letter-spacing:0.005737px;}
.ls2d{letter-spacing:0.012600px;}
.ls56{letter-spacing:0.018000px;}
.ls3c{letter-spacing:0.036000px;}
.ls35{letter-spacing:0.090000px;}
.ls33{letter-spacing:0.108000px;}
.ls54{letter-spacing:0.118440px;}
.ls38{letter-spacing:0.126000px;}
.ls55{letter-spacing:0.140040px;}
.ls34{letter-spacing:0.144000px;}
.ls5a{letter-spacing:0.145200px;}
.ls27{letter-spacing:0.180000px;}
.ls2c{letter-spacing:0.201000px;}
.ls57{letter-spacing:0.206640px;}
.ls3d{letter-spacing:1.074422px;}
.ls0{letter-spacing:2.989200px;}
.lsa{letter-spacing:11.954850px;}
.ls44{letter-spacing:12.522404px;}
.ls43{letter-spacing:12.525337px;}
.ls46{letter-spacing:12.779547px;}
.ls47{letter-spacing:12.782480px;}
.ls12{letter-spacing:12.911530px;}
.lsc{letter-spacing:12.971305px;}
.ls10{letter-spacing:13.329959px;}
.ls6e{letter-spacing:13.359181px;}
.ls13{letter-spacing:13.748388px;}
.ls14{letter-spacing:13.808164px;}
.ls17{letter-spacing:13.954572px;}
.ls3e{letter-spacing:14.118000px;}
.ls3f{letter-spacing:14.124000px;}
.ls18{letter-spacing:14.166817px;}
.ls24{letter-spacing:14.346144px;}
.ls25{letter-spacing:14.405920px;}
.ls71{letter-spacing:14.412919px;}
.ls15{letter-spacing:14.465695px;}
.ls22{letter-spacing:14.645022px;}
.ls7{letter-spacing:14.704798px;}
.ls4d{letter-spacing:14.718082px;}
.ls4f{letter-spacing:14.723965px;}
.ls4e{letter-spacing:14.724137px;}
.ls4c{letter-spacing:14.738453px;}
.ls19{letter-spacing:14.764573px;}
.ls42{letter-spacing:14.794553px;}
.ls41{letter-spacing:14.794725px;}
.ls1c{letter-spacing:14.884124px;}
.ls4a{letter-spacing:14.895924px;}
.ls4b{letter-spacing:14.899413px;}
.ls6c{letter-spacing:14.942331px;}
.ls45{letter-spacing:14.942725px;}
.ls9{letter-spacing:14.943900px;}
.ls8{letter-spacing:14.944766px;}
.ls11{letter-spacing:15.003676px;}
.ls1d{letter-spacing:15.123227px;}
.ls51{letter-spacing:15.194601px;}
.ls50{letter-spacing:15.197472px;}
.ls5b{letter-spacing:15.302554px;}
.ls5c{letter-spacing:15.362329px;}
.ls3a{letter-spacing:15.541656px;}
.ls2a{letter-spacing:15.601432px;}
.ls59{letter-spacing:15.840534px;}
.ls48{letter-spacing:15.918255px;}
.ls49{letter-spacing:15.923965px;}
.ls5e{letter-spacing:16.498066px;}
.ls5d{letter-spacing:16.557841px;}
.ls73{letter-spacing:16.676400px;}
.ls1a{letter-spacing:17.036046px;}
.ls52{letter-spacing:17.275148px;}
.ls16{letter-spacing:17.334924px;}
.ls21{letter-spacing:17.693578px;}
.ls29{letter-spacing:17.753353px;}
.ls1{letter-spacing:17.935200px;}
.ls23{letter-spacing:18.291334px;}
.ls5f{letter-spacing:18.769538px;}
.lsd{letter-spacing:18.829314px;}
.lse{letter-spacing:18.889090px;}
.ls2b{letter-spacing:19.546621px;}
.ls5{letter-spacing:20.981236px;}
.ls1e{letter-spacing:21.220338px;}
.ls20{letter-spacing:21.877870px;}
.lsf{letter-spacing:22.774504px;}
.ls26{letter-spacing:23.192933px;}
.ls6{letter-spacing:25.045976px;}
.ls2{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls40{letter-spacing:253.410600px;}
.ls28{letter-spacing:849.090000px;}
.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;}
}
.ws93{word-spacing:-60.120000px;}
.ws92{word-spacing:-54.000000px;}
.wsf{word-spacing:-22.718660px;}
.ws7e{word-spacing:-15.231000px;}
.wsae{word-spacing:-15.210000px;}
.wsc4{word-spacing:-15.175200px;}
.ws7f{word-spacing:-15.032520px;}
.ws94{word-spacing:-15.030000px;}
.wsac{word-spacing:-14.964600px;}
.ws95{word-spacing:-14.960400px;}
.ws2a{word-spacing:-14.943900px;}
.ws80{word-spacing:-14.604600px;}
.ws9a{word-spacing:-13.644000px;}
.ws98{word-spacing:-13.626000px;}
.ws97{word-spacing:-13.608000px;}
.ws99{word-spacing:-13.590000px;}
.wsad{word-spacing:-13.536000px;}
.ws91{word-spacing:-13.500000px;}
.ws9d{word-spacing:-13.449600px;}
.ws96{word-spacing:-13.392000px;}
.ws7c{word-spacing:-12.150000px;}
.ws7d{word-spacing:-11.970000px;}
.ws30{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws5d{word-spacing:-3.586536px;}
.ws5e{word-spacing:-3.347434px;}
.wsc0{word-spacing:-3.168107px;}
.ws33{word-spacing:-3.108331px;}
.ws78{word-spacing:-2.749678px;}
.ws79{word-spacing:-2.510575px;}
.wsbf{word-spacing:-2.450800px;}
.ws64{word-spacing:-2.391024px;}
.ws63{word-spacing:-2.331248px;}
.wsd4{word-spacing:-2.211697px;}
.wsc1{word-spacing:-2.151922px;}
.wse8{word-spacing:-2.044339px;}
.ws44{word-spacing:-2.032370px;}
.ws45{word-spacing:-1.972595px;}
.ws32{word-spacing:-1.793268px;}
.ws13{word-spacing:-1.775347px;}
.ws46{word-spacing:-1.733492px;}
.ws10b{word-spacing:-1.721549px;}
.ws42{word-spacing:-1.673717px;}
.ws11f{word-spacing:-1.613952px;}
.ws40{word-spacing:-1.613941px;}
.wsd2{word-spacing:-1.434614px;}
.wsd8{word-spacing:-1.398758px;}
.wscf{word-spacing:-1.374839px;}
.wsef{word-spacing:-1.344960px;}
.ws4c{word-spacing:-1.315063px;}
.ws105{word-spacing:-1.291162px;}
.ws50{word-spacing:-1.255288px;}
.ws4b{word-spacing:-1.195512px;}
.ws116{word-spacing:-1.183565px;}
.ws5{word-spacing:-1.171598px;}
.ws4a{word-spacing:-1.135736px;}
.ws125{word-spacing:-1.129766px;}
.ws11c{word-spacing:-1.075968px;}
.ws4f{word-spacing:-1.075961px;}
.ws7{word-spacing:-1.046070px;}
.ws10c{word-spacing:-1.022170px;}
.ws49{word-spacing:-1.016185px;}
.wse7{word-spacing:-0.968371px;}
.ws100{word-spacing:-0.914573px;}
.ws51{word-spacing:-0.896634px;}
.ws4d{word-spacing:-0.836858px;}
.wsd5{word-spacing:-0.806976px;}
.ws4e{word-spacing:-0.777083px;}
.wse6{word-spacing:-0.753178px;}
.ws2e{word-spacing:-0.717307px;}
.ws43{word-spacing:-0.657532px;}
.wsea{word-spacing:-0.645581px;}
.wsbc{word-spacing:-0.621668px;}
.ws122{word-spacing:-0.591782px;}
.wsd6{word-spacing:-0.537984px;}
.ws54{word-spacing:-0.478205px;}
.ws15{word-spacing:-0.430387px;}
.wsd0{word-spacing:-0.418429px;}
.ws57{word-spacing:-0.358654px;}
.wsfe{word-spacing:-0.322790px;}
.ws29{word-spacing:-0.298878px;}
.ws17{word-spacing:-0.268992px;}
.ws2d{word-spacing:-0.239102px;}
.ws16{word-spacing:-0.215194px;}
.ws24{word-spacing:-0.179327px;}
.wsf8{word-spacing:-0.161395px;}
.wsab{word-spacing:-0.143462px;}
.wsbe{word-spacing:-0.143027px;}
.ws22{word-spacing:-0.119551px;}
.ws14{word-spacing:-0.107597px;}
.wsbd{word-spacing:-0.095641px;}
.ws2b{word-spacing:-0.059776px;}
.wsdd{word-spacing:-0.053798px;}
.wsa5{word-spacing:-0.047821px;}
.ws10d{word-spacing:-0.018645px;}
.ws111{word-spacing:-0.013200px;}
.ws107{word-spacing:-0.010339px;}
.wse2{word-spacing:-0.009302px;}
.ws101{word-spacing:-0.006355px;}
.ws108{word-spacing:-0.005798px;}
.ws10a{word-spacing:-0.005501px;}
.ws124{word-spacing:-0.005443px;}
.wsfb{word-spacing:-0.005424px;}
.ws11d{word-spacing:-0.005194px;}
.ws120{word-spacing:-0.004810px;}
.ws12b{word-spacing:-0.004666px;}
.wsde{word-spacing:-0.004646px;}
.wsdb{word-spacing:-0.004493px;}
.ws103{word-spacing:-0.003552px;}
.wse9{word-spacing:-0.003302px;}
.wsda{word-spacing:-0.002179px;}
.ws2{word-spacing:-0.000026px;}
.ws1{word-spacing:0.000000px;}
.wsdc{word-spacing:0.000931px;}
.ws2f{word-spacing:0.003599px;}
.wsbb{word-spacing:0.007411px;}
.ws1a{word-spacing:0.053798px;}
.ws3f{word-spacing:0.059776px;}
.ws19{word-spacing:0.107597px;}
.ws31{word-spacing:0.119551px;}
.ws8c{word-spacing:0.143462px;}
.wse3{word-spacing:0.161395px;}
.ws28{word-spacing:0.179327px;}
.ws1b{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.wseb{word-spacing:0.268992px;}
.ws1f{word-spacing:0.298878px;}
.wsf3{word-spacing:0.322790px;}
.ws5b{word-spacing:0.358654px;}
.ws56{word-spacing:0.418429px;}
.ws38{word-spacing:0.478205px;}
.ws81{word-spacing:0.537980px;}
.wsa7{word-spacing:0.597756px;}
.wsf4{word-spacing:0.645581px;}
.ws73{word-spacing:0.657532px;}
.wsba{word-spacing:0.663062px;}
.wsb8{word-spacing:0.666835px;}
.wsb6{word-spacing:0.667584px;}
.wsb4{word-spacing:0.668189px;}
.wsb5{word-spacing:0.670330px;}
.wsb9{word-spacing:0.689002px;}
.wsb7{word-spacing:0.690787px;}
.ws5f{word-spacing:0.717307px;}
.ws6d{word-spacing:0.836858px;}
.ws110{word-spacing:0.914573px;}
.ws3b{word-spacing:0.956410px;}
.ws1d{word-spacing:0.968371px;}
.ws6{word-spacing:1.004227px;}
.wsc2{word-spacing:1.016185px;}
.ws53{word-spacing:1.075961px;}
.ws52{word-spacing:1.135736px;}
.ws10f{word-spacing:1.237363px;}
.ws5c{word-spacing:1.315063px;}
.wsaa{word-spacing:1.338977px;}
.ws1c{word-spacing:1.344960px;}
.ws6f{word-spacing:1.374839px;}
.wsb0{word-spacing:1.398758px;}
.wscc{word-spacing:1.434614px;}
.wsd3{word-spacing:1.494390px;}
.wse4{word-spacing:1.506355px;}
.wsaf{word-spacing:1.667750px;}
.ws6a{word-spacing:1.673717px;}
.ws68{word-spacing:1.733492px;}
.wsd1{word-spacing:1.853044px;}
.ws123{word-spacing:1.882944px;}
.ws26{word-spacing:1.912819px;}
.wsf9{word-spacing:1.936742px;}
.ws75{word-spacing:1.972595px;}
.ws90{word-spacing:2.032370px;}
.wse0{word-spacing:2.044339px;}
.ws70{word-spacing:2.092146px;}
.ws71{word-spacing:2.151922px;}
.wsc9{word-spacing:2.151936px;}
.ws12{word-spacing:2.259533px;}
.ws2c{word-spacing:2.271473px;}
.ws76{word-spacing:2.331248px;}
.wscd{word-spacing:2.391024px;}
.ws128{word-spacing:2.420928px;}
.ws86{word-spacing:2.450800px;}
.ws37{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.wsa4{word-spacing:2.534492px;}
.ws6e{word-spacing:2.570351px;}
.wsa6{word-spacing:2.630126px;}
.wsfc{word-spacing:2.636122px;}
.wsf0{word-spacing:2.689920px;}
.ws82{word-spacing:2.749678px;}
.ws117{word-spacing:2.797517px;}
.ws102{word-spacing:2.851315px;}
.ws55{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.ws84{word-spacing:2.929004px;}
.ws85{word-spacing:2.988780px;}
.wsf5{word-spacing:3.012710px;}
.ws74{word-spacing:3.048556px;}
.wsd7{word-spacing:3.066509px;}
.ws59{word-spacing:3.108331px;}
.ws3c{word-spacing:3.168107px;}
.ws106{word-spacing:3.174106px;}
.ws12a{word-spacing:3.218554px;}
.ws129{word-spacing:3.218918px;}
.wsfd{word-spacing:3.219494px;}
.ws126{word-spacing:3.219610px;}
.ws121{word-spacing:3.220339px;}
.ws119{word-spacing:3.221213px;}
.wsfa{word-spacing:3.221347px;}
.wsf2{word-spacing:3.221818px;}
.ws127{word-spacing:3.222384px;}
.wse1{word-spacing:3.224016px;}
.wsd9{word-spacing:3.224822px;}
.ws9f{word-spacing:3.227904px;}
.ws35{word-spacing:3.287658px;}
.ws11e{word-spacing:3.335501px;}
.ws34{word-spacing:3.347434px;}
.wsff{word-spacing:3.389299px;}
.ws8e{word-spacing:3.407209px;}
.ws7a{word-spacing:3.466985px;}
.ws104{word-spacing:3.496896px;}
.ws7b{word-spacing:3.526760px;}
.ws1e{word-spacing:3.586536px;}
.wsf7{word-spacing:3.604493px;}
.ws47{word-spacing:3.646312px;}
.ws11b{word-spacing:3.658291px;}
.ws62{word-spacing:3.706087px;}
.ws6b{word-spacing:3.765863px;}
.wsec{word-spacing:3.819686px;}
.wsf1{word-spacing:3.873485px;}
.ws21{word-spacing:3.885414px;}
.ws20{word-spacing:3.945190px;}
.ws61{word-spacing:4.064741px;}
.wse5{word-spacing:4.088678px;}
.ws60{word-spacing:4.124516px;}
.ws88{word-spacing:4.184292px;}
.ws87{word-spacing:4.244068px;}
.wsc3{word-spacing:4.363619px;}
.ws41{word-spacing:4.483170px;}
.ws109{word-spacing:4.519066px;}
.ws67{word-spacing:4.542946px;}
.ws69{word-spacing:4.662497px;}
.wsdf{word-spacing:4.680461px;}
.wsd{word-spacing:4.770079px;}
.ws3a{word-spacing:4.782048px;}
.wse{word-spacing:4.853765px;}
.wsce{word-spacing:5.021150px;}
.ws11a{word-spacing:5.057050px;}
.ws58{word-spacing:5.080926px;}
.ws25{word-spacing:5.320028px;}
.ws113{word-spacing:5.433638px;}
.ws77{word-spacing:5.439580px;}
.ws5a{word-spacing:5.678682px;}
.ws66{word-spacing:5.858009px;}
.ws118{word-spacing:5.917824px;}
.ws9c{word-spacing:6.025421px;}
.ws6c{word-spacing:6.276438px;}
.wsed{word-spacing:6.294413px;}
.ws72{word-spacing:6.395989px;}
.ws9b{word-spacing:6.402010px;}
.ws10e{word-spacing:6.509606px;}
.wsc8{word-spacing:6.563405px;}
.wsc6{word-spacing:6.617203px;}
.ws23{word-spacing:6.635092px;}
.ws18{word-spacing:6.724800px;}
.ws65{word-spacing:6.754643px;}
.ws115{word-spacing:6.832397px;}
.wsc5{word-spacing:6.993792px;}
.wscb{word-spacing:7.113296px;}
.ws114{word-spacing:7.155187px;}
.wsca{word-spacing:7.173072px;}
.ws83{word-spacing:7.232848px;}
.ws112{word-spacing:7.262784px;}
.ws3d{word-spacing:7.352399px;}
.ws3e{word-spacing:7.531726px;}
.ws48{word-spacing:7.591501px;}
.wsb{word-spacing:7.782761px;}
.ws36{word-spacing:8.009930px;}
.ws39{word-spacing:9.085891px;}
.ws9{word-spacing:12.176255px;}
.wsf6{word-spacing:13.395802px;}
.ws3{word-spacing:15.481836px;}
.ws9e{word-spacing:15.493939px;}
.wsee{word-spacing:15.978125px;}
.wsa{word-spacing:16.109478px;}
.ws8f{word-spacing:23.013606px;}
.wsc7{word-spacing:23.470633px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.wsa3{word-spacing:144.233510px;}
.wsa1{word-spacing:144.287309px;}
.wsa2{word-spacing:165.860467px;}
.wsb2{word-spacing:190.623744px;}
.wsa8{word-spacing:193.620442px;}
.ws89{word-spacing:199.494490px;}
.wsa9{word-spacing:231.494515px;}
.wsb3{word-spacing:235.045210px;}
.ws8a{word-spacing:257.035725px;}
.ws8d{word-spacing:257.083546px;}
.wsa0{word-spacing:265.279910px;}
.ws8b{word-spacing:268.990875px;}
.wsb1{word-spacing:611.203622px;}
._18{margin-left:-23.545658px;}
._64{margin-left:-21.196237px;}
._66{margin-left:-20.082519px;}
._65{margin-left:-17.808079px;}
._12{margin-left:-7.519775px;}
._19{margin-left:-6.515540px;}
._8{margin-left:-5.308087px;}
._a{margin-left:-3.981082px;}
._7{margin-left:-2.630133px;}
._1{margin-left:-1.506341px;}
._21{width:1.204200px;}
._2{width:2.301354px;}
._5{width:3.675347px;}
._1f{width:5.149661px;}
._1e{width:6.312600px;}
._20{width:7.623576px;}
._23{width:9.018000px;}
._22{width:10.280520px;}
._3{width:11.582422px;}
._0{width:12.971268px;}
._13{width:14.824386px;}
._9{width:16.300915px;}
._b{width:17.317096px;}
._11{width:19.199918px;}
._d{width:21.196570px;}
._f{width:22.666903px;}
._1b{width:23.802640px;}
._10{width:24.866650px;}
._5f{width:25.942610px;}
._17{width:26.970746px;}
._16{width:28.931390px;}
._4{width:30.587087px;}
._1a{width:31.812570px;}
._1c{width:33.008082px;}
._33{width:35.219032px;}
._c{width:37.443686px;}
._e{width:38.854140px;}
._24{width:40.240930px;}
._6{width:54.429634px;}
._36{width:102.001766px;}
._32{width:103.314000px;}
._35{width:145.309478px;}
._27{width:146.522318px;}
._26{width:161.729269px;}
._37{width:167.313024px;}
._34{width:176.034299px;}
._61{width:186.142464px;}
._39{width:189.047578px;}
._3a{width:190.607731px;}
._4b{width:193.512845px;}
._63{width:201.797798px;}
._3b{width:211.965696px;}
._38{width:218.959488px;}
._25{width:222.843996px;}
._57{width:225.899482px;}
._2a{width:233.747093px;}
._49{width:234.865859px;}
._5a{width:236.390170px;}
._28{width:239.055179px;}
._48{width:245.320704px;}
._62{width:246.342874px;}
._45{width:257.317747px;}
._47{width:261.245030px;}
._42{width:267.593242px;}
._56{width:269.099597px;}
._59{width:278.755069px;}
._29{width:282.237181px;}
._5e{width:285.963712px;}
._44{width:287.982835px;}
._5c{width:289.112602px;}
._4d{width:293.416474px;}
._3e{width:300.356467px;}
._46{width:303.422976px;}
._5d{width:306.059098px;}
._41{width:309.340800px;}
._2c{width:312.220697px;}
._3f{width:314.397850px;}
._2f{width:324.175847px;}
._43{width:335.438958px;}
._31{width:339.095875px;}
._2d{width:344.499602px;}
._3c{width:363.079468px;}
._54{width:367.664200px;}
._55{width:378.688617px;}
._30{width:385.577498px;}
._2e{width:393.993923px;}
._3d{width:396.332813px;}
._2b{width:401.549578px;}
._5b{width:402.627226px;}
._50{width:406.984896px;}
._58{width:417.905971px;}
._52{width:423.925403px;}
._40{width:438.941146px;}
._53{width:521.360294px;}
._4f{width:537.015629px;}
._4c{width:637.833830px;}
._4a{width:659.891174px;}
._51{width:664.679232px;}
._14{width:881.284037px;}
._60{width:2081.185200px;}
._1d{width:2104.945200px;}
._4e{width:2512.803000px;}
._15{width:2536.713000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fsb{font-size:54.120000px;}
.fsc{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs1{font-size:90.874640px;}
.fs3{font-size:107.596800px;}
.y137{bottom:-924.369000px;}
.y16e{bottom:-860.019000px;}
.y16c{bottom:-841.119000px;}
.y16d{bottom:-836.079000px;}
.y16a{bottom:-822.849000px;}
.y16b{bottom:-817.809000px;}
.y168{bottom:-804.669000px;}
.y169{bottom:-799.629000px;}
.y167{bottom:-786.399000px;}
.y165{bottom:-767.499000px;}
.y166{bottom:-762.459000px;}
.y163{bottom:-749.229000px;}
.y164{bottom:-744.279000px;}
.y161{bottom:-731.049000px;}
.y162{bottom:-725.979000px;}
.y15f{bottom:-712.839000px;}
.y160{bottom:-707.799000px;}
.yc9{bottom:-696.466500px;}
.y15e{bottom:-694.569000px;}
.y15c{bottom:-675.669000px;}
.y15d{bottom:-670.629000px;}
.y15a{bottom:-657.399000px;}
.y15b{bottom:-652.359000px;}
.y158{bottom:-639.219000px;}
.y159{bottom:-634.179000px;}
.y156{bottom:-620.949000px;}
.y157{bottom:-615.999000px;}
.y155{bottom:-602.769000px;}
.y154{bottom:-583.779000px;}
.y153{bottom:-564.879000px;}
.y152{bottom:-536.439000px;}
.y214{bottom:-526.801500px;}
.y151{bottom:-500.709000px;}
.ye2{bottom:-496.276500px;}
.y150{bottom:-481.449000px;}
.ye1{bottom:-474.766500px;}
.y233{bottom:-462.541500px;}
.y14f{bottom:-462.279000px;}
.ye0{bottom:-455.506500px;}
.y232{bottom:-443.371500px;}
.y14e{bottom:-443.019000px;}
.ydf{bottom:-436.336500px;}
.y231{bottom:-424.111500px;}
.y14d{bottom:-423.759000px;}
.yde{bottom:-417.076500px;}
.y230{bottom:-404.851500px;}
.y14c{bottom:-404.589000px;}
.ydd{bottom:-397.816500px;}
.y22f{bottom:-385.681500px;}
.y14b{bottom:-385.329000px;}
.ydc{bottom:-378.646500px;}
.y22e{bottom:-366.421500px;}
.y14a{bottom:-366.069000px;}
.ydb{bottom:-359.386500px;}
.y22d{bottom:-347.161500px;}
.y149{bottom:-346.899000px;}
.yda{bottom:-340.216500px;}
.y22c{bottom:-327.961500px;}
.y148{bottom:-327.639000px;}
.yd9{bottom:-320.956500px;}
.y22b{bottom:-308.701500px;}
.y147{bottom:-308.469000px;}
.yd8{bottom:-301.696500px;}
.y22a{bottom:-289.531500px;}
.y146{bottom:-289.179000px;}
.yd7{bottom:-282.526500px;}
.y229{bottom:-270.271500px;}
.y145{bottom:-269.919000px;}
.yd6{bottom:-263.266500px;}
.y228{bottom:-251.011500px;}
.y144{bottom:-250.749000px;}
.yd5{bottom:-244.096500px;}
.y227{bottom:-231.841500px;}
.y143{bottom:-231.489000px;}
.yd4{bottom:-224.836500px;}
.y226{bottom:-212.581500px;}
.y142{bottom:-212.319000px;}
.yd3{bottom:-205.576500px;}
.y225{bottom:-193.411500px;}
.y141{bottom:-193.059000px;}
.yd2{bottom:-186.406500px;}
.y224{bottom:-174.151500px;}
.y140{bottom:-173.799000px;}
.yd1{bottom:-167.146500px;}
.y223{bottom:-154.891500px;}
.y13f{bottom:-154.629000px;}
.yd0{bottom:-147.976500px;}
.y222{bottom:-135.721500px;}
.y13e{bottom:-135.369000px;}
.ycf{bottom:-128.716500px;}
.y221{bottom:-116.461500px;}
.y13d{bottom:-116.199000px;}
.yce{bottom:-109.456500px;}
.y1b3{bottom:-102.447900px;}
.y13c{bottom:-96.939000px;}
.y220{bottom:-92.791500px;}
.ycd{bottom:-85.786500px;}
.y13b{bottom:-73.269000px;}
.ycc{bottom:-61.996500px;}
.y21f{bottom:-55.981500px;}
.y1d7{bottom:-38.727900px;}
.y21e{bottom:-38.521500px;}
.y13a{bottom:-36.369000px;}
.ycb{bottom:-25.186500px;}
.y1d6{bottom:-21.357900px;}
.y21d{bottom:-21.241500px;}
.y139{bottom:-18.999000px;}
.yca{bottom:-2.686500px;}
.y0{bottom:0.000000px;}
.y1d5{bottom:1.052100px;}
.y21c{bottom:1.168500px;}
.y138{bottom:3.411000px;}
.y1b5{bottom:4.050000px;}
.y1b9{bottom:4.140000px;}
.y179{bottom:5.850000px;}
.y1b6{bottom:9.090000px;}
.y1ba{bottom:9.180000px;}
.y1b{bottom:9.233944px;}
.y1a{bottom:26.903761px;}
.y48{bottom:31.890000px;}
.y170{bottom:36.690000px;}
.y176{bottom:47.130000px;}
.y173{bottom:55.200000px;}
.y171{bottom:82.110000px;}
.y177{bottom:92.520000px;}
.y252{bottom:98.079000px;}
.y174{bottom:100.620000px;}
.y1df{bottom:100.684500px;}
.y1a3{bottom:103.525500px;}
.y18{bottom:104.646000px;}
.y7e{bottom:105.847500px;}
.y96{bottom:106.296000px;}
.y2ae{bottom:111.568500px;}
.y100{bottom:113.098500px;}
.y251{bottom:116.908500px;}
.y47{bottom:117.012000px;}
.y1de{bottom:119.514000px;}
.y2e4{bottom:121.762500px;}
.y1a2{bottom:122.353500px;}
.y17{bottom:122.535000px;}
.y7d{bottom:124.677000px;}
.y95{bottom:125.125500px;}
.y172{bottom:127.530000px;}
.y2ad{bottom:128.829000px;}
.y133{bottom:129.927000px;}
.yff{bottom:131.926500px;}
.y210{bottom:132.627000px;}
.y250{bottom:135.738000px;}
.y46{bottom:135.841500px;}
.y178{bottom:137.940000px;}
.y1dd{bottom:138.343500px;}
.y2e3{bottom:139.023000px;}
.y16{bottom:140.422500px;}
.y7c{bottom:143.506500px;}
.y94{bottom:143.955000px;}
.y175{bottom:146.010000px;}
.y2ac{bottom:146.089500px;}
.y132{bottom:148.756500px;}
.yfe{bottom:150.756000px;}
.y20f{bottom:151.456500px;}
.y24f{bottom:154.567500px;}
.y45{bottom:154.671000px;}
.y2e2{bottom:156.283500px;}
.y1dc{bottom:157.173000px;}
.y15{bottom:158.310000px;}
.y7b{bottom:162.336000px;}
.y1a1{bottom:162.487500px;}
.y93{bottom:162.784500px;}
.y2ab{bottom:163.350000px;}
.y131{bottom:167.586000px;}
.yfd{bottom:169.585500px;}
.y20e{bottom:170.284500px;}
.y24e{bottom:173.397000px;}
.y44{bottom:173.500500px;}
.y2e1{bottom:173.544000px;}
.y1db{bottom:176.002500px;}
.y14{bottom:176.199000px;}
.y1a0{bottom:176.685000px;}
.y27c{bottom:178.587000px;}
.y2aa{bottom:180.610500px;}
.y7a{bottom:181.165500px;}
.y92{bottom:181.614000px;}
.y130{bottom:186.415500px;}
.yfc{bottom:188.415000px;}
.y20d{bottom:189.114000px;}
.y2e0{bottom:190.804500px;}
.y19f{bottom:190.881000px;}
.y24d{bottom:192.226500px;}
.y43{bottom:192.330000px;}
.y13{bottom:194.086500px;}
.y27b{bottom:195.025500px;}
.y2a9{bottom:197.871000px;}
.y1da{bottom:199.315500px;}
.y79{bottom:199.995000px;}
.y91{bottom:200.443500px;}
.ybd{bottom:202.684500px;}
.yc5{bottom:204.478500px;}
.y12f{bottom:205.245000px;}
.yfb{bottom:207.244500px;}
.y20c{bottom:207.943500px;}
.y2df{bottom:208.065000px;}
.y24c{bottom:211.054500px;}
.y42{bottom:211.159500px;}
.y27a{bottom:211.464000px;}
.y136{bottom:211.881000px;}
.y12{bottom:211.974000px;}
.y19e{bottom:212.713500px;}
.y2a8{bottom:215.131500px;}
.y78{bottom:218.824500px;}
.y135{bottom:221.511000px;}
.ybc{bottom:221.514000px;}
.yc4{bottom:223.308000px;}
.y90{bottom:223.756500px;}
.y12e{bottom:224.074500px;}
.y2de{bottom:225.325500px;}
.yfa{bottom:226.074000px;}
.y20b{bottom:226.773000px;}
.y279{bottom:227.902500px;}
.y19d{bottom:229.152000px;}
.y1d9{bottom:229.743000px;}
.y11{bottom:229.863000px;}
.y24b{bottom:229.884000px;}
.y41{bottom:229.989000px;}
.y2a7{bottom:232.390500px;}
.y77{bottom:237.654000px;}
.ybb{bottom:240.343500px;}
.yc3{bottom:242.137500px;}
.y2dd{bottom:242.586000px;}
.y278{bottom:244.341000px;}
.y19c{bottom:245.590500px;}
.y20a{bottom:245.602500px;}
.y12d{bottom:247.387500px;}
.y24a{bottom:248.713500px;}
.y40{bottom:248.818500px;}
.y1d8{bottom:248.976000px;}
.yf9{bottom:249.387000px;}
.y2a6{bottom:249.651000px;}
.y76{bottom:256.483500px;}
.y8f{bottom:257.380500px;}
.yba{bottom:259.173000px;}
.y2dc{bottom:259.846500px;}
.y277{bottom:260.779500px;}
.y19b{bottom:262.029000px;}
.y209{bottom:264.432000px;}
.y2a5{bottom:266.911500px;}
.y249{bottom:267.543000px;}
.y3f{bottom:267.648000px;}
.y1b0{bottom:271.404900px;}
.y75{bottom:275.313000px;}
.y8e{bottom:276.210000px;}
.y2db{bottom:277.105500px;}
.yb9{bottom:278.002500px;}
.y19a{bottom:278.467500px;}
.yc2{bottom:278.899500px;}
.y12c{bottom:281.011500px;}
.yf8{bottom:283.011000px;}
.y208{bottom:283.261500px;}
.y2a4{bottom:284.172000px;}
.y276{bottom:284.419500px;}
.y248{bottom:286.372500px;}
.y3e{bottom:286.477500px;}
.y74{bottom:294.142500px;}
.y2da{bottom:294.366000px;}
.y199{bottom:294.906000px;}
.yb8{bottom:296.832000px;}
.y12b{bottom:299.841000px;}
.y10{bottom:300.154500px;}
.y275{bottom:300.858000px;}
.y2a3{bottom:301.432500px;}
.yf7{bottom:301.840500px;}
.y207{bottom:302.091000px;}
.y247{bottom:305.202000px;}
.y3d{bottom:305.307000px;}
.y198{bottom:311.344500px;}
.y2d9{bottom:311.626500px;}
.y73{bottom:312.972000px;}
.yb7{bottom:315.661500px;}
.y274{bottom:317.296500px;}
.yf{bottom:318.043500px;}
.y12a{bottom:318.670500px;}
.y2a2{bottom:318.693000px;}
.yf6{bottom:320.670000px;}
.y206{bottom:320.920500px;}
.y246{bottom:324.031500px;}
.y3c{bottom:324.136500px;}
.y2d8{bottom:328.887000px;}
.y72{bottom:331.801500px;}
.y273{bottom:333.735000px;}
.yb6{bottom:334.491000px;}
.y197{bottom:334.984500px;}
.ye{bottom:335.931000px;}
.y2a1{bottom:335.953500px;}
.y129{bottom:337.500000px;}
.yf5{bottom:339.499500px;}
.y205{bottom:339.750000px;}
.y245{bottom:342.861000px;}
.y3b{bottom:342.966000px;}
.y2d7{bottom:346.147500px;}
.y272{bottom:350.173500px;}
.y71{bottom:350.631000px;}
.y196{bottom:351.423000px;}
.y2a0{bottom:353.214000px;}
.yb5{bottom:353.320500px;}
.yd{bottom:353.818500px;}
.y128{bottom:356.329500px;}
.yf4{bottom:358.329000px;}
.y204{bottom:358.579500px;}
.y244{bottom:361.690500px;}
.y3a{bottom:361.795500px;}
.y2d6{bottom:363.408000px;}
.y195{bottom:367.861500px;}
.y70{bottom:369.460500px;}
.y29f{bottom:370.473000px;}
.yc1{bottom:371.253000px;}
.yb4{bottom:372.150000px;}
.y271{bottom:373.815000px;}
.y127{bottom:375.159000px;}
.yf3{bottom:377.158500px;}
.y203{bottom:377.409000px;}
.y243{bottom:380.520000px;}
.y39{bottom:380.625000px;}
.y2d5{bottom:380.668500px;}
.yc{bottom:380.673000px;}
.y194{bottom:384.300000px;}
.y29e{bottom:387.733500px;}
.y8d{bottom:388.290000px;}
.yc0{bottom:390.082500px;}
.y270{bottom:390.252000px;}
.yb3{bottom:390.979500px;}
.y6f{bottom:392.773500px;}
.y126{bottom:393.988500px;}
.yf2{bottom:395.988000px;}
.y202{bottom:396.238500px;}
.y1d4{bottom:397.352100px;}
.y2d4{bottom:397.929000px;}
.yb{bottom:398.562000px;}
.y242{bottom:399.349500px;}
.y38{bottom:399.454500px;}
.y29d{bottom:404.994000px;}
.y8c{bottom:407.119500px;}
.y193{bottom:407.940000px;}
.ybf{bottom:408.912000px;}
.yb2{bottom:409.809000px;}
.y125{bottom:412.818000px;}
.y6e{bottom:412.947000px;}
.y26f{bottom:413.893500px;}
.yf1{bottom:414.817500px;}
.y201{bottom:415.068000px;}
.y2d3{bottom:415.188000px;}
.ya{bottom:416.449500px;}
.y1d3{bottom:416.522100px;}
.y241{bottom:418.179000px;}
.y37{bottom:418.284000px;}
.y29c{bottom:422.254500px;}
.y192{bottom:424.378500px;}
.y8b{bottom:425.949000px;}
.ybe{bottom:427.741500px;}
.yb1{bottom:428.638500px;}
.y26e{bottom:430.332000px;}
.y124{bottom:431.647500px;}
.y2d2{bottom:432.448500px;}
.yf0{bottom:433.647000px;}
.y200{bottom:433.897500px;}
.y240{bottom:437.008500px;}
.y21b{bottom:439.408500px;}
.y29b{bottom:439.515000px;}
.yc8{bottom:439.783500px;}
.y191{bottom:440.817000px;}
.y36{bottom:441.597000px;}
.y9{bottom:443.304000px;}
.y8a{bottom:444.778500px;}
.y6d{bottom:446.571000px;}
.yb0{bottom:447.468000px;}
.yc7{bottom:449.413500px;}
.y2d1{bottom:449.709000px;}
.y123{bottom:450.477000px;}
.yef{bottom:452.476500px;}
.y1ff{bottom:452.727000px;}
.y1d2{bottom:453.332100px;}
.y26d{bottom:453.972000px;}
.y23f{bottom:455.838000px;}
.y29a{bottom:456.775500px;}
.y190{bottom:457.255500px;}
.y21a{bottom:458.578500px;}
.y8{bottom:461.191500px;}
.y89{bottom:463.608000px;}
.y6c{bottom:465.400500px;}
.yaf{bottom:466.297500px;}
.y2d0{bottom:466.969500px;}
.y122{bottom:469.306500px;}
.y1d1{bottom:470.792100px;}
.yee{bottom:471.306000px;}
.y1fe{bottom:471.556500px;}
.y18f{bottom:473.694000px;}
.y299{bottom:474.036000px;}
.y23e{bottom:474.667500px;}
.y219{bottom:477.838500px;}
.y7{bottom:479.079000px;}
.y88{bottom:482.437500px;}
.y6b{bottom:484.230000px;}
.yae{bottom:485.127000px;}
.y26c{bottom:485.592000px;}
.y1d0{bottom:488.072100px;}
.y121{bottom:488.134500px;}
.yed{bottom:490.135500px;}
.y1fd{bottom:490.386000px;}
.y298{bottom:491.296500px;}
.y23d{bottom:493.497000px;}
.y6{bottom:496.968000px;}
.y218{bottom:497.008500px;}
.y18e{bottom:497.334000px;}
.y87{bottom:501.267000px;}
.y2cf{bottom:501.490500px;}
.y6a{bottom:503.059500px;}
.yad{bottom:503.956500px;}
.y120{bottom:506.964000px;}
.y297{bottom:508.557000px;}
.yec{bottom:508.965000px;}
.y1fc{bottom:509.215500px;}
.y23c{bottom:512.326500px;}
.y18d{bottom:513.772500px;}
.y5{bottom:514.855500px;}
.y35{bottom:515.160000px;}
.y217{bottom:516.298500px;}
.y2ce{bottom:518.751000px;}
.y86{bottom:520.095000px;}
.y69{bottom:521.889000px;}
.yac{bottom:522.786000px;}
.y11f{bottom:525.793500px;}
.y296{bottom:525.816000px;}
.yeb{bottom:527.794500px;}
.y1fb{bottom:528.045000px;}
.y26b{bottom:528.613500px;}
.y18c{bottom:530.211000px;}
.y23b{bottom:531.156000px;}
.y4{bottom:532.743000px;}
.y34{bottom:534.616500px;}
.y216{bottom:535.558500px;}
.y2cd{bottom:536.011500px;}
.y85{bottom:538.924500px;}
.y68{bottom:540.718500px;}
.yab{bottom:541.615500px;}
.y295{bottom:543.076500px;}
.y11e{bottom:544.623000px;}
.yea{bottom:546.624000px;}
.y18b{bottom:546.649500px;}
.y1fa{bottom:546.874500px;}
.y23a{bottom:549.985500px;}
.y3{bottom:550.632000px;}
.y2cc{bottom:553.272000px;}
.y215{bottom:554.728500px;}
.y84{bottom:557.754000px;}
.y67{bottom:559.548000px;}
.y294{bottom:560.337000px;}
.yaa{bottom:560.445000px;}
.y18a{bottom:563.088000px;}
.y11d{bottom:563.452500px;}
.y26a{bottom:565.377000px;}
.ye9{bottom:565.452000px;}
.y1f9{bottom:565.704000px;}
.y2{bottom:568.519500px;}
.y239{bottom:568.815000px;}
.y2cb{bottom:570.531000px;}
.y33{bottom:572.007000px;}
.y83{bottom:576.583500px;}
.y293{bottom:577.597500px;}
.y66{bottom:578.377500px;}
.ya9{bottom:579.274500px;}
.y254{bottom:581.067000px;}
.y11c{bottom:582.282000px;}
.ye8{bottom:584.281500px;}
.y1f8{bottom:584.533500px;}
.y1{bottom:586.407000px;}
.y189{bottom:586.728000px;}
.y238{bottom:587.644500px;}
.y2ca{bottom:587.791500px;}
.y32{bottom:591.463500px;}
.y269{bottom:591.916500px;}
.y292{bottom:594.858000px;}
.y82{bottom:595.413000px;}
.y65{bottom:597.207000px;}
.ya8{bottom:598.104000px;}
.y253{bottom:601.242000px;}
.ye7{bottom:603.111000px;}
.y1f7{bottom:603.363000px;}
.y2c9{bottom:605.052000px;}
.y11b{bottom:605.595000px;}
.y213{bottom:609.448500px;}
.y188{bottom:610.369500px;}
.y31{bottom:610.920000px;}
.y237{bottom:610.956000px;}
.y291{bottom:612.118500px;}
.y81{bottom:614.242500px;}
.y64{bottom:616.036500px;}
.y268{bottom:618.457500px;}
.y212{bottom:619.078500px;}
.ya7{bottom:621.415500px;}
.ye6{bottom:621.940500px;}
.y2c8{bottom:622.312500px;}
.y1c9{bottom:627.332100px;}
.y290{bottom:629.379000px;}
.y30{bottom:630.378000px;}
.y63{bottom:634.866000px;}
.y80{bottom:637.555500px;}
.y11a{bottom:639.219000px;}
.y2c7{bottom:639.573000px;}
.y236{bottom:641.383500px;}
.y1f6{bottom:643.495500px;}
.y187{bottom:644.977500px;}
.y267{bottom:644.998500px;}
.ye5{bottom:645.253500px;}
.y28f{bottom:646.639500px;}
.y2f{bottom:649.834500px;}
.y62{bottom:653.695500px;}
.ya6{bottom:655.039500px;}
.y2c6{bottom:656.833500px;}
.y1f5{bottom:657.693000px;}
.y7f{bottom:657.730500px;}
.y119{bottom:658.048500px;}
.y235{bottom:660.616500px;}
.y1c8{bottom:663.062100px;}
.y28e{bottom:663.898500px;}
.ye4{bottom:665.428500px;}
.y2e{bottom:669.291000px;}
.y266{bottom:671.538000px;}
.y1af{bottom:671.818500px;}
.y1f4{bottom:671.889000px;}
.y61{bottom:672.525000px;}
.y2c5{bottom:674.094000px;}
.y118{bottom:676.878000px;}
.y234{bottom:679.849500px;}
.y28d{bottom:681.159000px;}
.y186{bottom:682.081500px;}
.y1c7{bottom:682.322100px;}
.y2d{bottom:688.749000px;}
.y1ae{bottom:690.648000px;}
.y1f3{bottom:690.733500px;}
.y60{bottom:691.354500px;}
.ya5{bottom:691.803000px;}
.y117{bottom:695.707500px;}
.ye3{bottom:695.856000px;}
.y265{bottom:698.079000px;}
.y28c{bottom:698.419500px;}
.y185{bottom:700.911000px;}
.y1c6{bottom:701.492100px;}
.y211{bottom:702.279000px;}
.y1f2{bottom:707.172000px;}
.y2c{bottom:708.205500px;}
.y2c4{bottom:708.613500px;}
.y5f{bottom:710.184000px;}
.ya4{bottom:710.632500px;}
.y116{bottom:714.537000px;}
.y264{bottom:715.653000px;}
.y28b{bottom:715.680000px;}
.y184{bottom:719.740500px;}
.y1c5{bottom:720.752100px;}
.yc6{bottom:721.273500px;}
.y1f1{bottom:723.610500px;}
.y2c3{bottom:725.874000px;}
.y2b{bottom:727.663500px;}
.y5e{bottom:729.013500px;}
.ya3{bottom:729.460500px;}
.y1ad{bottom:730.782000px;}
.y28a{bottom:732.940500px;}
.y263{bottom:733.227000px;}
.y115{bottom:733.366500px;}
.y183{bottom:738.570000px;}
.y1c4{bottom:739.922100px;}
.y1f0{bottom:740.047500px;}
.y2c2{bottom:743.134500px;}
.y1ac{bottom:744.978000px;}
.y2a{bottom:747.120000px;}
.y5d{bottom:747.843000px;}
.ya2{bottom:748.290000px;}
.y289{bottom:750.201000px;}
.y262{bottom:750.801000px;}
.y114{bottom:752.196000px;}
.y1ef{bottom:756.486000px;}
.y182{bottom:757.399500px;}
.y1ab{bottom:759.175500px;}
.y1c3{bottom:759.182100px;}
.y2c1{bottom:760.395000px;}
.y29{bottom:766.576500px;}
.y5c{bottom:766.671000px;}
.ya1{bottom:767.119500px;}
.y261{bottom:768.375000px;}
.y113{bottom:771.025500px;}
.y288{bottom:771.945000px;}
.y1ee{bottom:772.924500px;}
.y1cf{bottom:774.327000px;}
.y181{bottom:776.229000px;}
.y2c0{bottom:777.655500px;}
.y1aa{bottom:778.018500px;}
.y1c2{bottom:778.442100px;}
.y5b{bottom:785.500500px;}
.ya0{bottom:785.949000px;}
.y28{bottom:786.034500px;}
.y1ed{bottom:789.363000px;}
.y112{bottom:789.855000px;}
.y1ce{bottom:792.627000px;}
.y1a9{bottom:794.457000px;}
.y2bf{bottom:794.916000px;}
.y180{bottom:795.058500px;}
.y1c1{bottom:797.612100px;}
.y260{bottom:803.883000px;}
.y5a{bottom:804.330000px;}
.y9f{bottom:804.778500px;}
.y27{bottom:805.491000px;}
.y1cd{bottom:810.807000px;}
.y1a8{bottom:810.895500px;}
.y287{bottom:812.077500px;}
.y2be{bottom:812.176500px;}
.y1ec{bottom:813.004500px;}
.y17f{bottom:813.888000px;}
.y25f{bottom:822.712500px;}
.y59{bottom:823.159500px;}
.y9e{bottom:823.608000px;}
.y26{bottom:824.947500px;}
.y1a7{bottom:827.334000px;}
.y1cc{bottom:829.077000px;}
.y2bd{bottom:829.437000px;}
.y286{bottom:830.922000px;}
.y17e{bottom:832.717500px;}
.y1c0{bottom:834.422100px;}
.y111{bottom:834.643500px;}
.y25e{bottom:841.540500px;}
.y58{bottom:841.989000px;}
.y9d{bottom:842.437500px;}
.y1a6{bottom:843.772500px;}
.y25{bottom:844.405500px;}
.y1eb{bottom:844.623000px;}
.y2bc{bottom:846.697500px;}
.y1cb{bottom:847.257000px;}
.y285{bottom:847.360500px;}
.y110{bottom:848.841000px;}
.y10e{bottom:849.373500px;}
.y17d{bottom:851.547000px;}
.y1bf{bottom:851.792100px;}
.y25d{bottom:860.370000px;}
.y57{bottom:860.818500px;}
.y9c{bottom:861.267000px;}
.y10f{bottom:863.037000px;}
.y284{bottom:863.797500px;}
.y2bb{bottom:863.956500px;}
.y1ca{bottom:866.247000px;}
.y1a5{bottom:867.412500px;}
.y1be{bottom:869.162100px;}
.y17c{bottom:870.376500px;}
.y25c{bottom:879.199500px;}
.y56{bottom:879.648000px;}
.y9b{bottom:880.096500px;}
.y283{bottom:880.236000px;}
.y2ba{bottom:881.217000px;}
.y1ea{bottom:881.727000px;}
.y24{bottom:882.990000px;}
.y10d{bottom:884.436000px;}
.y282{bottom:896.674500px;}
.y10a{bottom:897.426000px;}
.y25b{bottom:898.029000px;}
.y55{bottom:898.477500px;}
.y10c{bottom:898.633500px;}
.y9a{bottom:898.926000px;}
.y1a4{bottom:899.032500px;}
.y1e9{bottom:900.556500px;}
.y23{bottom:903.469500px;}
.y17b{bottom:903.942000px;}
.y10b{bottom:912.829500px;}
.y281{bottom:913.113000px;}
.y2b9{bottom:915.738000px;}
.y25a{bottom:916.858500px;}
.y54{bottom:917.307000px;}
.y1e8{bottom:919.386000px;}
.y22{bottom:919.609500px;}
.y99{bottom:922.239000px;}
.y17a{bottom:923.175000px;}
.y2b8{bottom:932.998500px;}
.y109{bottom:934.230000px;}
.y259{bottom:935.688000px;}
.y21{bottom:935.749500px;}
.y53{bottom:936.136500px;}
.y280{bottom:936.754500px;}
.y1e7{bottom:938.215500px;}
.y134{bottom:945.604500px;}
.y106{bottom:947.218500px;}
.y108{bottom:948.426000px;}
.y16f{bottom:949.045500px;}
.y2b7{bottom:950.259000px;}
.y20{bottom:951.888000px;}
.y27f{bottom:953.193000px;}
.y258{bottom:954.517500px;}
.y52{bottom:954.966000px;}
.y98{bottom:955.863000px;}
.y1e6{bottom:957.045000px;}
.y107{bottom:962.622000px;}
.y2b6{bottom:967.519500px;}
.y27e{bottom:969.630000px;}
.y257{bottom:973.347000px;}
.y51{bottom:973.795500px;}
.y97{bottom:974.692500px;}
.y105{bottom:984.022500px;}
.y2b5{bottom:984.780000px;}
.y27d{bottom:986.068500px;}
.y256{bottom:992.176500px;}
.y50{bottom:992.625000px;}
.y1f{bottom:996.565500px;}
.y104{bottom:998.218500px;}
.y102{bottom:999.526500px;}
.y2b4{bottom:1002.040500px;}
.y1e5{bottom:1002.507000px;}
.y4f{bottom:1011.454500px;}
.y255{bottom:1015.489500px;}
.y1e4{bottom:1018.945500px;}
.y2b3{bottom:1019.299500px;}
.y103{bottom:1019.617500px;}
.y4e{bottom:1030.284000px;}
.y1b2{bottom:1033.802100px;}
.y1e3{bottom:1035.384000px;}
.y1e{bottom:1036.485000px;}
.y2b2{bottom:1036.560000px;}
.y1b1{bottom:1043.432100px;}
.y4d{bottom:1049.113500px;}
.y101{bottom:1049.668500px;}
.y1e2{bottom:1051.822500px;}
.y2b1{bottom:1053.820500px;}
.y1d{bottom:1064.728500px;}
.y4c{bottom:1067.943000px;}
.y2b0{bottom:1071.081000px;}
.y1e1{bottom:1075.462500px;}
.y4b{bottom:1086.772500px;}
.y2af{bottom:1088.341500px;}
.y1c{bottom:1092.972000px;}
.y4a{bottom:1105.602000px;}
.y1e0{bottom:1107.082500px;}
.y19{bottom:1136.460000px;}
.y1bd{bottom:1155.417000px;}
.y49{bottom:1168.366500px;}
.y1bc{bottom:1173.687000px;}
.y1bb{bottom:1191.867000px;}
.y1b8{bottom:1210.077000px;}
.y1b7{bottom:1228.347000px;}
.y1b4{bottom:1246.527000px;}
.h2c{height:-845.889000px;}
.h2b{height:-826.989000px;}
.h2a{height:-808.719000px;}
.h29{height:-790.539000px;}
.h28{height:-772.269000px;}
.h27{height:-753.369000px;}
.h26{height:-735.099000px;}
.h25{height:-716.889000px;}
.h24{height:-698.709000px;}
.h23{height:-680.439000px;}
.h22{height:-661.539000px;}
.h21{height:-643.269000px;}
.h20{height:-625.089000px;}
.h1f{height:-606.819000px;}
.h31{height:-598.348500px;}
.h1e{height:-588.639000px;}
.h32{height:-580.168500px;}
.h1d{height:-569.649000px;}
.h33{height:-561.898500px;}
.h1b{height:-550.749000px;}
.h34{height:-543.688500px;}
.h35{height:-525.508500px;}
.h36{height:-507.238500px;}
.h37{height:-218.068500px;}
.h38{height:-199.078500px;}
.h39{height:-180.898500px;}
.h3a{height:-162.628500px;}
.h3b{height:-144.448500px;}
.h3c{height:-126.148500px;}
.h9{height:26.217754px;}
.ha{height:26.302208px;}
.h2{height:30.587087px;}
.h3{height:30.712615px;}
.h19{height:34.574294px;}
.hb{height:34.956859px;}
.h11{height:35.100320px;}
.hc{height:38.896243px;}
.hd{height:39.326630px;}
.h1c{height:39.418945px;}
.h2f{height:39.488026px;}
.h18{height:40.958294px;}
.h3e{height:42.500452px;}
.he{height:43.217759px;}
.hf{height:43.695964px;}
.h6{height:43.875290px;}
.h16{height:43.886426px;}
.h17{height:44.062559px;}
.h13{height:44.279648px;}
.h40{height:49.117939px;}
.h15{height:49.939453px;}
.h2e{height:50.050430px;}
.h3d{height:50.117087px;}
.h4{height:50.930649px;}
.h8{height:54.541601px;}
.h10{height:54.575123px;}
.h14{height:55.599258px;}
.h5{height:61.613006px;}
.h7{height:77.792486px;}
.h2d{height:168.750000px;}
.h1a{height:174.942000px;}
.h30{height:376.773600px;}
.h12{height:399.273000px;}
.h3f{height:418.267500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w10{width:-115.018500px;}
.w5{width:-112.843500px;}
.wd{width:-44.121000px;}
.w11{width:-38.608500px;}
.w6{width:-36.433500px;}
.w14{width:-23.866500px;}
.w19{width:13.573500px;}
.wc{width:34.989000px;}
.w13{width:55.243500px;}
.w9{width:74.340000px;}
.wb{width:76.680000px;}
.w8{width:81.180000px;}
.w15{width:90.721500px;}
.wa{width:98.040000px;}
.w17{width:98.190000px;}
.w18{width:98.280000px;}
.w16{width:98.310000px;}
.w12{width:111.901500px;}
.w7{width:114.076500px;}
.w2{width:197.527766px;}
.we{width:473.580000px;}
.w4{width:479.305500px;}
.wf{width:497.385000px;}
.w1a{width:551.605500px;}
.w3{width:600.992550px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x48{left:-194.968500px;}
.x17{left:-192.793500px;}
.x29{left:-188.383500px;}
.x1b{left:-183.523500px;}
.x49{left:-173.278500px;}
.x34{left:-170.473500px;}
.x35{left:-168.043500px;}
.x31{left:-165.433500px;}
.x2e{left:-163.273500px;}
.xc{left:-91.785450px;}
.x4a{left:-88.648500px;}
.x2a{left:-86.473500px;}
.x2f{left:-76.933500px;}
.x1c{left:-21.673500px;}
.x0{left:0.000000px;}
.x72{left:1.185000px;}
.x19{left:2.806500px;}
.x59{left:10.171500px;}
.x1e{left:12.150000px;}
.x54{left:16.110000px;}
.x24{left:19.260000px;}
.x30{left:20.970000px;}
.x32{left:22.050000px;}
.x28{left:23.850000px;}
.x20{left:25.470000px;}
.x2b{left:27.016500px;}
.x58{left:28.081500px;}
.x26{left:29.880000px;}
.x50{left:32.491500px;}
.x1a{left:34.666500px;}
.x2c{left:37.170000px;}
.x22{left:38.880000px;}
.x51{left:41.581500px;}
.x2d{left:45.630000px;}
.x33{left:48.960000px;}
.x1{left:53.574000px;}
.x2{left:58.054042px;}
.x3e{left:65.836500px;}
.x3d{left:71.404500px;}
.x39{left:78.240000px;}
.x42{left:83.073000px;}
.x3a{left:84.780000px;}
.x41{left:86.071500px;}
.x40{left:88.641000px;}
.x3f{left:90.805500px;}
.xe{left:103.814550px;}
.xf{left:135.674550px;}
.xb{left:145.747950px;}
.x3b{left:216.930000px;}
.x4{left:248.526000px;}
.x3{left:249.591000px;}
.x36{left:252.367500px;}
.x10{left:258.090000px;}
.x5e{left:262.791000px;}
.x45{left:267.357000px;}
.x5d{left:272.305500px;}
.x60{left:273.412500px;}
.x77{left:277.086000px;}
.x7{left:281.479500px;}
.x44{left:285.721500px;}
.x47{left:289.582500px;}
.x46{left:292.326000px;}
.x62{left:295.456500px;}
.x5f{left:296.844000px;}
.x61{left:299.565000px;}
.x6e{left:304.719000px;}
.x6a{left:306.726000px;}
.x67{left:307.849500px;}
.x5{left:309.429000px;}
.x3c{left:313.234500px;}
.x5b{left:317.932500px;}
.x6b{left:319.072500px;}
.x6{left:320.530500px;}
.x5c{left:322.660500px;}
.x76{left:337.218000px;}
.x52{left:340.312500px;}
.x14{left:356.776500px;}
.x38{left:361.320000px;}
.x1d{left:363.667500px;}
.x16{left:367.720500px;}
.x8{left:378.705000px;}
.x6c{left:381.570000px;}
.x43{left:383.337000px;}
.x74{left:390.402000px;}
.x6d{left:393.585000px;}
.xa{left:397.462500px;}
.x70{left:403.401000px;}
.x71{left:415.422000px;}
.x9{left:424.006500px;}
.x53{left:438.622500px;}
.x37{left:441.630000px;}
.x4b{left:442.672500px;}
.x1f{left:444.847500px;}
.x64{left:452.916000px;}
.x12{left:473.227500px;}
.x13{left:475.911000px;}
.x18{left:477.616500px;}
.x15{left:479.659500px;}
.x68{left:492.603000px;}
.x5a{left:497.941500px;}
.x75{left:499.653000px;}
.x69{left:504.021000px;}
.x4c{left:517.012500px;}
.x21{left:519.187500px;}
.x55{left:536.812500px;}
.x6f{left:548.514000px;}
.x73{left:551.325000px;}
.xd{left:604.544550px;}
.x4d{left:615.052500px;}
.x23{left:617.227500px;}
.x11{left:619.888500px;}
.x63{left:626.914500px;}
.x56{left:635.122500px;}
.x4e{left:691.732500px;}
.x25{left:693.907500px;}
.x57{left:733.402500px;}
.x4f{left:770.842500px;}
.x27{left:773.017500px;}
.x65{left:778.000500px;}
.x66{left:790.024500px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.674667pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.ls2f{letter-spacing:-0.378133pt;}
.ls30{letter-spacing:-0.240000pt;}
.ls37{letter-spacing:-0.096000pt;}
.ls36{letter-spacing:-0.061867pt;}
.ls3b{letter-spacing:-0.058133pt;}
.ls39{letter-spacing:-0.053333pt;}
.lsb{letter-spacing:0.000000pt;}
.ls61{letter-spacing:0.000008pt;}
.ls1f{letter-spacing:0.000094pt;}
.ls1b{letter-spacing:0.000387pt;}
.ls65{letter-spacing:0.000523pt;}
.ls63{letter-spacing:0.000600pt;}
.ls66{letter-spacing:0.000711pt;}
.ls67{letter-spacing:0.000921pt;}
.ls68{letter-spacing:0.001026pt;}
.ls70{letter-spacing:0.001843pt;}
.ls6d{letter-spacing:0.001863pt;}
.ls72{letter-spacing:0.002187pt;}
.ls2e{letter-spacing:0.002240pt;}
.ls53{letter-spacing:0.002422pt;}
.ls58{letter-spacing:0.002471pt;}
.ls62{letter-spacing:0.002525pt;}
.ls32{letter-spacing:0.002868pt;}
.ls6f{letter-spacing:0.003055pt;}
.ls3{letter-spacing:0.003100pt;}
.ls6b{letter-spacing:0.003656pt;}
.ls31{letter-spacing:0.003733pt;}
.ls64{letter-spacing:0.003752pt;}
.ls6a{letter-spacing:0.004221pt;}
.ls60{letter-spacing:0.004267pt;}
.ls69{letter-spacing:0.005099pt;}
.ls2d{letter-spacing:0.011200pt;}
.ls56{letter-spacing:0.016000pt;}
.ls3c{letter-spacing:0.032000pt;}
.ls35{letter-spacing:0.080000pt;}
.ls33{letter-spacing:0.096000pt;}
.ls54{letter-spacing:0.105280pt;}
.ls38{letter-spacing:0.112000pt;}
.ls55{letter-spacing:0.124480pt;}
.ls34{letter-spacing:0.128000pt;}
.ls5a{letter-spacing:0.129067pt;}
.ls27{letter-spacing:0.160000pt;}
.ls2c{letter-spacing:0.178667pt;}
.ls57{letter-spacing:0.183680pt;}
.ls3d{letter-spacing:0.955042pt;}
.ls0{letter-spacing:2.657067pt;}
.lsa{letter-spacing:10.626533pt;}
.ls44{letter-spacing:11.131026pt;}
.ls43{letter-spacing:11.133633pt;}
.ls46{letter-spacing:11.359597pt;}
.ls47{letter-spacing:11.362205pt;}
.ls12{letter-spacing:11.476915pt;}
.lsc{letter-spacing:11.530049pt;}
.ls10{letter-spacing:11.848852pt;}
.ls6e{letter-spacing:11.874827pt;}
.ls13{letter-spacing:12.220789pt;}
.ls14{letter-spacing:12.273923pt;}
.ls17{letter-spacing:12.404064pt;}
.ls3e{letter-spacing:12.549333pt;}
.ls3f{letter-spacing:12.554667pt;}
.ls18{letter-spacing:12.592726pt;}
.ls24{letter-spacing:12.752128pt;}
.ls25{letter-spacing:12.805262pt;}
.ls71{letter-spacing:12.811484pt;}
.ls15{letter-spacing:12.858396pt;}
.ls22{letter-spacing:13.017797pt;}
.ls7{letter-spacing:13.070931pt;}
.ls4d{letter-spacing:13.082740pt;}
.ls4f{letter-spacing:13.087969pt;}
.ls4e{letter-spacing:13.088122pt;}
.ls4c{letter-spacing:13.100847pt;}
.ls19{letter-spacing:13.124065pt;}
.ls42{letter-spacing:13.150714pt;}
.ls41{letter-spacing:13.150867pt;}
.ls1c{letter-spacing:13.230333pt;}
.ls4a{letter-spacing:13.240821pt;}
.ls4b{letter-spacing:13.243922pt;}
.ls6c{letter-spacing:13.282072pt;}
.ls45{letter-spacing:13.282422pt;}
.ls9{letter-spacing:13.283467pt;}
.ls8{letter-spacing:13.284237pt;}
.ls11{letter-spacing:13.336601pt;}
.ls1d{letter-spacing:13.442868pt;}
.ls51{letter-spacing:13.506312pt;}
.ls50{letter-spacing:13.508864pt;}
.ls5b{letter-spacing:13.602270pt;}
.ls5c{letter-spacing:13.655404pt;}
.ls3a{letter-spacing:13.814805pt;}
.ls2a{letter-spacing:13.867939pt;}
.ls59{letter-spacing:14.080475pt;}
.ls48{letter-spacing:14.149560pt;}
.ls49{letter-spacing:14.154635pt;}
.ls5e{letter-spacing:14.664947pt;}
.ls5d{letter-spacing:14.718081pt;}
.ls73{letter-spacing:14.823467pt;}
.ls1a{letter-spacing:15.143152pt;}
.ls52{letter-spacing:15.355687pt;}
.ls16{letter-spacing:15.408821pt;}
.ls21{letter-spacing:15.727625pt;}
.ls29{letter-spacing:15.780758pt;}
.ls1{letter-spacing:15.942400pt;}
.ls23{letter-spacing:16.258963pt;}
.ls5f{letter-spacing:16.684034pt;}
.lsd{letter-spacing:16.737168pt;}
.lse{letter-spacing:16.790302pt;}
.ls2b{letter-spacing:17.374774pt;}
.ls5{letter-spacing:18.649987pt;}
.ls1e{letter-spacing:18.862523pt;}
.ls20{letter-spacing:19.446995pt;}
.lsf{letter-spacing:20.244003pt;}
.ls26{letter-spacing:20.615940pt;}
.ls6{letter-spacing:22.263090pt;}
.ls2{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls40{letter-spacing:225.253867pt;}
.ls28{letter-spacing:754.746667pt;}
.ws93{word-spacing:-53.440000pt;}
.ws92{word-spacing:-48.000000pt;}
.wsf{word-spacing:-20.194365pt;}
.ws7e{word-spacing:-13.538667pt;}
.wsae{word-spacing:-13.520000pt;}
.wsc4{word-spacing:-13.489067pt;}
.ws7f{word-spacing:-13.362240pt;}
.ws94{word-spacing:-13.360000pt;}
.wsac{word-spacing:-13.301867pt;}
.ws95{word-spacing:-13.298133pt;}
.ws2a{word-spacing:-13.283467pt;}
.ws80{word-spacing:-12.981867pt;}
.ws9a{word-spacing:-12.128000pt;}
.ws98{word-spacing:-12.112000pt;}
.ws97{word-spacing:-12.096000pt;}
.ws99{word-spacing:-12.080000pt;}
.wsad{word-spacing:-12.032000pt;}
.ws91{word-spacing:-12.000000pt;}
.ws9d{word-spacing:-11.955200pt;}
.ws96{word-spacing:-11.904000pt;}
.ws7c{word-spacing:-10.800000pt;}
.ws7d{word-spacing:-10.640000pt;}
.ws30{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws5d{word-spacing:-3.188032pt;}
.ws5e{word-spacing:-2.975497pt;}
.wsc0{word-spacing:-2.816095pt;}
.ws33{word-spacing:-2.762961pt;}
.ws78{word-spacing:-2.444158pt;}
.ws79{word-spacing:-2.231622pt;}
.wsbf{word-spacing:-2.178489pt;}
.ws64{word-spacing:-2.125355pt;}
.ws63{word-spacing:-2.072221pt;}
.wsd4{word-spacing:-1.965953pt;}
.wsc1{word-spacing:-1.912819pt;}
.wse8{word-spacing:-1.817190pt;}
.ws44{word-spacing:-1.806551pt;}
.ws45{word-spacing:-1.753418pt;}
.ws32{word-spacing:-1.594016pt;}
.ws13{word-spacing:-1.578086pt;}
.ws46{word-spacing:-1.540882pt;}
.ws10b{word-spacing:-1.530266pt;}
.ws42{word-spacing:-1.487748pt;}
.ws11f{word-spacing:-1.434624pt;}
.ws40{word-spacing:-1.434614pt;}
.wsd2{word-spacing:-1.275213pt;}
.wsd8{word-spacing:-1.243341pt;}
.wscf{word-spacing:-1.222079pt;}
.wsef{word-spacing:-1.195520pt;}
.ws4c{word-spacing:-1.168945pt;}
.ws105{word-spacing:-1.147699pt;}
.ws50{word-spacing:-1.115811pt;}
.ws4b{word-spacing:-1.062677pt;}
.ws116{word-spacing:-1.052058pt;}
.ws5{word-spacing:-1.041421pt;}
.ws4a{word-spacing:-1.009543pt;}
.ws125{word-spacing:-1.004237pt;}
.ws11c{word-spacing:-0.956416pt;}
.ws4f{word-spacing:-0.956410pt;}
.ws7{word-spacing:-0.929840pt;}
.ws10c{word-spacing:-0.908595pt;}
.ws49{word-spacing:-0.903276pt;}
.wse7{word-spacing:-0.860774pt;}
.ws100{word-spacing:-0.812954pt;}
.ws51{word-spacing:-0.797008pt;}
.ws4d{word-spacing:-0.743874pt;}
.wsd5{word-spacing:-0.717312pt;}
.ws4e{word-spacing:-0.690740pt;}
.wse6{word-spacing:-0.669491pt;}
.ws2e{word-spacing:-0.637606pt;}
.ws43{word-spacing:-0.584473pt;}
.wsea{word-spacing:-0.573850pt;}
.wsbc{word-spacing:-0.552594pt;}
.ws122{word-spacing:-0.526029pt;}
.wsd6{word-spacing:-0.478208pt;}
.ws54{word-spacing:-0.425071pt;}
.ws15{word-spacing:-0.382566pt;}
.wsd0{word-spacing:-0.371937pt;}
.ws57{word-spacing:-0.318803pt;}
.wsfe{word-spacing:-0.286925pt;}
.ws29{word-spacing:-0.265669pt;}
.ws17{word-spacing:-0.239104pt;}
.ws2d{word-spacing:-0.212535pt;}
.ws16{word-spacing:-0.191283pt;}
.ws24{word-spacing:-0.159402pt;}
.wsf8{word-spacing:-0.143462pt;}
.wsab{word-spacing:-0.127522pt;}
.wsbe{word-spacing:-0.127135pt;}
.ws22{word-spacing:-0.106268pt;}
.ws14{word-spacing:-0.095642pt;}
.wsbd{word-spacing:-0.085014pt;}
.ws2b{word-spacing:-0.053134pt;}
.wsdd{word-spacing:-0.047821pt;}
.wsa5{word-spacing:-0.042507pt;}
.ws10d{word-spacing:-0.016573pt;}
.ws111{word-spacing:-0.011733pt;}
.ws107{word-spacing:-0.009190pt;}
.wse2{word-spacing:-0.008269pt;}
.ws101{word-spacing:-0.005649pt;}
.ws108{word-spacing:-0.005154pt;}
.ws10a{word-spacing:-0.004890pt;}
.ws124{word-spacing:-0.004838pt;}
.wsfb{word-spacing:-0.004821pt;}
.ws11d{word-spacing:-0.004617pt;}
.ws120{word-spacing:-0.004275pt;}
.ws12b{word-spacing:-0.004147pt;}
.wsde{word-spacing:-0.004130pt;}
.wsdb{word-spacing:-0.003994pt;}
.ws103{word-spacing:-0.003157pt;}
.wse9{word-spacing:-0.002935pt;}
.wsda{word-spacing:-0.001937pt;}
.ws2{word-spacing:-0.000023pt;}
.ws1{word-spacing:0.000000pt;}
.wsdc{word-spacing:0.000828pt;}
.ws2f{word-spacing:0.003199pt;}
.wsbb{word-spacing:0.006588pt;}
.ws1a{word-spacing:0.047821pt;}
.ws3f{word-spacing:0.053134pt;}
.ws19{word-spacing:0.095642pt;}
.ws31{word-spacing:0.106268pt;}
.ws8c{word-spacing:0.127522pt;}
.wse3{word-spacing:0.143462pt;}
.ws28{word-spacing:0.159402pt;}
.ws1b{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.wseb{word-spacing:0.239104pt;}
.ws1f{word-spacing:0.265669pt;}
.wsf3{word-spacing:0.286925pt;}
.ws5b{word-spacing:0.318803pt;}
.ws56{word-spacing:0.371937pt;}
.ws38{word-spacing:0.425071pt;}
.ws81{word-spacing:0.478205pt;}
.wsa7{word-spacing:0.531339pt;}
.wsf4{word-spacing:0.573850pt;}
.ws73{word-spacing:0.584473pt;}
.wsba{word-spacing:0.589389pt;}
.wsb8{word-spacing:0.592742pt;}
.wsb6{word-spacing:0.593408pt;}
.wsb4{word-spacing:0.593946pt;}
.wsb5{word-spacing:0.595849pt;}
.wsb9{word-spacing:0.612446pt;}
.wsb7{word-spacing:0.614033pt;}
.ws5f{word-spacing:0.637606pt;}
.ws6d{word-spacing:0.743874pt;}
.ws110{word-spacing:0.812954pt;}
.ws3b{word-spacing:0.850142pt;}
.ws1d{word-spacing:0.860774pt;}
.ws6{word-spacing:0.892646pt;}
.wsc2{word-spacing:0.903276pt;}
.ws53{word-spacing:0.956410pt;}
.ws52{word-spacing:1.009543pt;}
.ws10f{word-spacing:1.099878pt;}
.ws5c{word-spacing:1.168945pt;}
.wsaa{word-spacing:1.190202pt;}
.ws1c{word-spacing:1.195520pt;}
.ws6f{word-spacing:1.222079pt;}
.wsb0{word-spacing:1.243341pt;}
.wscc{word-spacing:1.275213pt;}
.wsd3{word-spacing:1.328347pt;}
.wse4{word-spacing:1.338982pt;}
.wsaf{word-spacing:1.482445pt;}
.ws6a{word-spacing:1.487748pt;}
.ws68{word-spacing:1.540882pt;}
.wsd1{word-spacing:1.647150pt;}
.ws123{word-spacing:1.673728pt;}
.ws26{word-spacing:1.700284pt;}
.wsf9{word-spacing:1.721549pt;}
.ws75{word-spacing:1.753418pt;}
.ws90{word-spacing:1.806551pt;}
.wse0{word-spacing:1.817190pt;}
.ws70{word-spacing:1.859685pt;}
.ws71{word-spacing:1.912819pt;}
.wsc9{word-spacing:1.912832pt;}
.ws12{word-spacing:2.008474pt;}
.ws2c{word-spacing:2.019087pt;}
.ws76{word-spacing:2.072221pt;}
.wscd{word-spacing:2.125355pt;}
.ws128{word-spacing:2.151936pt;}
.ws86{word-spacing:2.178489pt;}
.ws37{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.wsa4{word-spacing:2.252882pt;}
.ws6e{word-spacing:2.284756pt;}
.wsa6{word-spacing:2.337890pt;}
.wsfc{word-spacing:2.343219pt;}
.wsf0{word-spacing:2.391040pt;}
.ws82{word-spacing:2.444158pt;}
.ws117{word-spacing:2.486682pt;}
.ws102{word-spacing:2.534502pt;}
.ws55{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.ws84{word-spacing:2.603559pt;}
.ws85{word-spacing:2.656693pt;}
.wsf5{word-spacing:2.677965pt;}
.ws74{word-spacing:2.709827pt;}
.wsd7{word-spacing:2.725786pt;}
.ws59{word-spacing:2.762961pt;}
.ws3c{word-spacing:2.816095pt;}
.ws106{word-spacing:2.821427pt;}
.ws12a{word-spacing:2.860937pt;}
.ws129{word-spacing:2.861261pt;}
.wsfd{word-spacing:2.861773pt;}
.ws126{word-spacing:2.861875pt;}
.ws121{word-spacing:2.862524pt;}
.ws119{word-spacing:2.863300pt;}
.wsfa{word-spacing:2.863420pt;}
.wsf2{word-spacing:2.863838pt;}
.ws127{word-spacing:2.864341pt;}
.wse1{word-spacing:2.865792pt;}
.wsd9{word-spacing:2.866509pt;}
.ws9f{word-spacing:2.869248pt;}
.ws35{word-spacing:2.922363pt;}
.ws11e{word-spacing:2.964890pt;}
.ws34{word-spacing:2.975497pt;}
.wsff{word-spacing:3.012710pt;}
.ws8e{word-spacing:3.028630pt;}
.ws7a{word-spacing:3.081764pt;}
.ws104{word-spacing:3.108352pt;}
.ws7b{word-spacing:3.134898pt;}
.ws1e{word-spacing:3.188032pt;}
.wsf7{word-spacing:3.203994pt;}
.ws47{word-spacing:3.241166pt;}
.ws11b{word-spacing:3.251814pt;}
.ws62{word-spacing:3.294300pt;}
.ws6b{word-spacing:3.347434pt;}
.wsec{word-spacing:3.395277pt;}
.wsf1{word-spacing:3.443098pt;}
.ws21{word-spacing:3.453701pt;}
.ws20{word-spacing:3.506835pt;}
.ws61{word-spacing:3.613103pt;}
.wse5{word-spacing:3.634381pt;}
.ws60{word-spacing:3.666237pt;}
.ws88{word-spacing:3.719371pt;}
.ws87{word-spacing:3.772505pt;}
.wsc3{word-spacing:3.878772pt;}
.ws41{word-spacing:3.985040pt;}
.ws109{word-spacing:4.016947pt;}
.ws67{word-spacing:4.038174pt;}
.ws69{word-spacing:4.144442pt;}
.wsdf{word-spacing:4.160410pt;}
.wsd{word-spacing:4.240070pt;}
.ws3a{word-spacing:4.250709pt;}
.wse{word-spacing:4.314458pt;}
.wsce{word-spacing:4.463245pt;}
.ws11a{word-spacing:4.495155pt;}
.ws58{word-spacing:4.516379pt;}
.ws25{word-spacing:4.728914pt;}
.ws113{word-spacing:4.829901pt;}
.ws77{word-spacing:4.835182pt;}
.ws5a{word-spacing:5.047717pt;}
.ws66{word-spacing:5.207119pt;}
.ws118{word-spacing:5.260288pt;}
.ws9c{word-spacing:5.355930pt;}
.ws6c{word-spacing:5.579056pt;}
.wsed{word-spacing:5.595034pt;}
.ws72{word-spacing:5.685324pt;}
.ws9b{word-spacing:5.690675pt;}
.ws10e{word-spacing:5.786317pt;}
.wsc8{word-spacing:5.834138pt;}
.wsc6{word-spacing:5.881958pt;}
.ws23{word-spacing:5.897859pt;}
.ws18{word-spacing:5.977600pt;}
.ws65{word-spacing:6.004127pt;}
.ws115{word-spacing:6.073242pt;}
.wsc5{word-spacing:6.216704pt;}
.wscb{word-spacing:6.322930pt;}
.ws114{word-spacing:6.360166pt;}
.wsca{word-spacing:6.376064pt;}
.ws83{word-spacing:6.429198pt;}
.ws112{word-spacing:6.455808pt;}
.ws3d{word-spacing:6.535466pt;}
.ws3e{word-spacing:6.694867pt;}
.ws48{word-spacing:6.748001pt;}
.wsb{word-spacing:6.918010pt;}
.ws36{word-spacing:7.119938pt;}
.ws39{word-spacing:8.076348pt;}
.ws9{word-spacing:10.823338pt;}
.wsf6{word-spacing:11.907379pt;}
.ws3{word-spacing:13.761632pt;}
.ws9e{word-spacing:13.772390pt;}
.wsee{word-spacing:14.202778pt;}
.wsa{word-spacing:14.319536pt;}
.ws8f{word-spacing:20.456539pt;}
.wsc7{word-spacing:20.862785pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.wsa3{word-spacing:128.207565pt;}
.wsa1{word-spacing:128.255386pt;}
.wsa2{word-spacing:147.431526pt;}
.wsb2{word-spacing:169.443328pt;}
.wsa8{word-spacing:172.107059pt;}
.ws89{word-spacing:177.328436pt;}
.wsa9{word-spacing:205.772902pt;}
.wsb3{word-spacing:208.929075pt;}
.ws8a{word-spacing:228.476200pt;}
.ws8d{word-spacing:228.518707pt;}
.wsa0{word-spacing:235.804365pt;}
.ws8b{word-spacing:239.103000pt;}
.wsb1{word-spacing:543.292109pt;}
._18{margin-left:-20.929474pt;}
._64{margin-left:-18.841100pt;}
._66{margin-left:-17.851128pt;}
._65{margin-left:-15.829404pt;}
._12{margin-left:-6.684244pt;}
._19{margin-left:-5.791591pt;}
._8{margin-left:-4.718299pt;}
._a{margin-left:-3.538739pt;}
._7{margin-left:-2.337896pt;}
._1{margin-left:-1.338970pt;}
._21{width:1.070400pt;}
._2{width:2.045648pt;}
._5{width:3.266975pt;}
._1f{width:4.577476pt;}
._1e{width:5.611200pt;}
._20{width:6.776512pt;}
._23{width:8.016000pt;}
._22{width:9.138240pt;}
._3{width:10.295486pt;}
._0{width:11.530016pt;}
._13{width:13.177232pt;}
._9{width:14.489702pt;}
._b{width:15.392974pt;}
._11{width:17.066594pt;}
._d{width:18.841395pt;}
._f{width:20.148358pt;}
._1b{width:21.157902pt;}
._10{width:22.103689pt;}
._5f{width:23.060098pt;}
._17{width:23.973997pt;}
._16{width:25.716791pt;}
._4{width:27.188522pt;}
._1a{width:28.277840pt;}
._1c{width:29.340517pt;}
._33{width:31.305806pt;}
._c{width:33.283277pt;}
._e{width:34.537013pt;}
._24{width:35.769715pt;}
._6{width:48.381897pt;}
._36{width:90.668237pt;}
._32{width:91.834667pt;}
._35{width:129.163981pt;}
._27{width:130.242061pt;}
._26{width:143.759350pt;}
._37{width:148.722688pt;}
._34{width:156.474932pt;}
._61{width:165.459968pt;}
._39{width:168.042291pt;}
._3a{width:169.429094pt;}
._4b{width:172.011418pt;}
._63{width:179.375821pt;}
._3b{width:188.413952pt;}
._38{width:194.630656pt;}
._25{width:198.083552pt;}
._57{width:200.799539pt;}
._2a{width:207.775194pt;}
._49{width:208.769653pt;}
._5a{width:210.124595pt;}
._28{width:212.493493pt;}
._48{width:218.062848pt;}
._62{width:218.971443pt;}
._45{width:228.726886pt;}
._47{width:232.217805pt;}
._42{width:237.860659pt;}
._56{width:239.199642pt;}
._59{width:247.782283pt;}
._29{width:250.877494pt;}
._5e{width:254.189966pt;}
._44{width:255.984742pt;}
._5c{width:256.988979pt;}
._4d{width:260.814643pt;}
._3e{width:266.983526pt;}
._46{width:269.709312pt;}
._5d{width:272.052531pt;}
._41{width:274.969600pt;}
._2c{width:277.529509pt;}
._3f{width:279.464755pt;}
._2f{width:288.156309pt;}
._43{width:298.167963pt;}
._31{width:301.418555pt;}
._2d{width:306.221869pt;}
._3c{width:322.737305pt;}
._54{width:326.812622pt;}
._55{width:336.612104pt;}
._30{width:342.735554pt;}
._2e{width:350.216821pt;}
._3d{width:352.295834pt;}
._2b{width:356.932958pt;}
._5b{width:357.890867pt;}
._50{width:361.764352pt;}
._58{width:371.471974pt;}
._52{width:376.822581pt;}
._40{width:390.169907pt;}
._53{width:463.431373pt;}
._4f{width:477.347226pt;}
._4c{width:566.963405pt;}
._4a{width:586.569933pt;}
._51{width:590.825984pt;}
._14{width:783.363589pt;}
._60{width:1849.942400pt;}
._1d{width:1871.062400pt;}
._4e{width:2233.602667pt;}
._15{width:2254.856000pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fsb{font-size:48.106667pt;}
.fsc{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs1{font-size:80.777458pt;}
.fs3{font-size:95.641600pt;}
.y137{bottom:-821.661333pt;}
.y16e{bottom:-764.461333pt;}
.y16c{bottom:-747.661333pt;}
.y16d{bottom:-743.181333pt;}
.y16a{bottom:-731.421333pt;}
.y16b{bottom:-726.941333pt;}
.y168{bottom:-715.261333pt;}
.y169{bottom:-710.781333pt;}
.y167{bottom:-699.021333pt;}
.y165{bottom:-682.221333pt;}
.y166{bottom:-677.741333pt;}
.y163{bottom:-665.981333pt;}
.y164{bottom:-661.581333pt;}
.y161{bottom:-649.821333pt;}
.y162{bottom:-645.314667pt;}
.y15f{bottom:-633.634667pt;}
.y160{bottom:-629.154667pt;}
.yc9{bottom:-619.081333pt;}
.y15e{bottom:-617.394667pt;}
.y15c{bottom:-600.594667pt;}
.y15d{bottom:-596.114667pt;}
.y15a{bottom:-584.354667pt;}
.y15b{bottom:-579.874667pt;}
.y158{bottom:-568.194667pt;}
.y159{bottom:-563.714667pt;}
.y156{bottom:-551.954667pt;}
.y157{bottom:-547.554667pt;}
.y155{bottom:-535.794667pt;}
.y154{bottom:-518.914667pt;}
.y153{bottom:-502.114667pt;}
.y152{bottom:-476.834667pt;}
.y214{bottom:-468.268000pt;}
.y151{bottom:-445.074667pt;}
.ye2{bottom:-441.134667pt;}
.y150{bottom:-427.954667pt;}
.ye1{bottom:-422.014667pt;}
.y233{bottom:-411.148000pt;}
.y14f{bottom:-410.914667pt;}
.ye0{bottom:-404.894667pt;}
.y232{bottom:-394.108000pt;}
.y14e{bottom:-393.794667pt;}
.ydf{bottom:-387.854667pt;}
.y231{bottom:-376.988000pt;}
.y14d{bottom:-376.674667pt;}
.yde{bottom:-370.734667pt;}
.y230{bottom:-359.868000pt;}
.y14c{bottom:-359.634667pt;}
.ydd{bottom:-353.614667pt;}
.y22f{bottom:-342.828000pt;}
.y14b{bottom:-342.514667pt;}
.ydc{bottom:-336.574667pt;}
.y22e{bottom:-325.708000pt;}
.y14a{bottom:-325.394667pt;}
.ydb{bottom:-319.454667pt;}
.y22d{bottom:-308.588000pt;}
.y149{bottom:-308.354667pt;}
.yda{bottom:-302.414667pt;}
.y22c{bottom:-291.521333pt;}
.y148{bottom:-291.234667pt;}
.yd9{bottom:-285.294667pt;}
.y22b{bottom:-274.401333pt;}
.y147{bottom:-274.194667pt;}
.yd8{bottom:-268.174667pt;}
.y22a{bottom:-257.361333pt;}
.y146{bottom:-257.048000pt;}
.yd7{bottom:-251.134667pt;}
.y229{bottom:-240.241333pt;}
.y145{bottom:-239.928000pt;}
.yd6{bottom:-234.014667pt;}
.y228{bottom:-223.121333pt;}
.y144{bottom:-222.888000pt;}
.yd5{bottom:-216.974667pt;}
.y227{bottom:-206.081333pt;}
.y143{bottom:-205.768000pt;}
.yd4{bottom:-199.854667pt;}
.y226{bottom:-188.961333pt;}
.y142{bottom:-188.728000pt;}
.yd3{bottom:-182.734667pt;}
.y225{bottom:-171.921333pt;}
.y141{bottom:-171.608000pt;}
.yd2{bottom:-165.694667pt;}
.y224{bottom:-154.801333pt;}
.y140{bottom:-154.488000pt;}
.yd1{bottom:-148.574667pt;}
.y223{bottom:-137.681333pt;}
.y13f{bottom:-137.448000pt;}
.yd0{bottom:-131.534667pt;}
.y222{bottom:-120.641333pt;}
.y13e{bottom:-120.328000pt;}
.ycf{bottom:-114.414667pt;}
.y221{bottom:-103.521333pt;}
.y13d{bottom:-103.288000pt;}
.yce{bottom:-97.294667pt;}
.y1b3{bottom:-91.064800pt;}
.y13c{bottom:-86.168000pt;}
.y220{bottom:-82.481333pt;}
.ycd{bottom:-76.254667pt;}
.y13b{bottom:-65.128000pt;}
.ycc{bottom:-55.108000pt;}
.y21f{bottom:-49.761333pt;}
.y1d7{bottom:-34.424800pt;}
.y21e{bottom:-34.241333pt;}
.y13a{bottom:-32.328000pt;}
.ycb{bottom:-22.388000pt;}
.y1d6{bottom:-18.984800pt;}
.y21d{bottom:-18.881333pt;}
.y139{bottom:-16.888000pt;}
.yca{bottom:-2.388000pt;}
.y0{bottom:0.000000pt;}
.y1d5{bottom:0.935200pt;}
.y21c{bottom:1.038667pt;}
.y138{bottom:3.032000pt;}
.y1b5{bottom:3.600000pt;}
.y1b9{bottom:3.680000pt;}
.y179{bottom:5.200000pt;}
.y1b6{bottom:8.080000pt;}
.y1ba{bottom:8.160000pt;}
.y1b{bottom:8.207950pt;}
.y1a{bottom:23.914454pt;}
.y48{bottom:28.346667pt;}
.y170{bottom:32.613333pt;}
.y176{bottom:41.893333pt;}
.y173{bottom:49.066667pt;}
.y171{bottom:72.986667pt;}
.y177{bottom:82.240000pt;}
.y252{bottom:87.181333pt;}
.y174{bottom:89.440000pt;}
.y1df{bottom:89.497333pt;}
.y1a3{bottom:92.022667pt;}
.y18{bottom:93.018667pt;}
.y7e{bottom:94.086667pt;}
.y96{bottom:94.485333pt;}
.y2ae{bottom:99.172000pt;}
.y100{bottom:100.532000pt;}
.y251{bottom:103.918667pt;}
.y47{bottom:104.010667pt;}
.y1de{bottom:106.234667pt;}
.y2e4{bottom:108.233333pt;}
.y1a2{bottom:108.758667pt;}
.y17{bottom:108.920000pt;}
.y7d{bottom:110.824000pt;}
.y95{bottom:111.222667pt;}
.y172{bottom:113.360000pt;}
.y2ad{bottom:114.514667pt;}
.y133{bottom:115.490667pt;}
.yff{bottom:117.268000pt;}
.y210{bottom:117.890667pt;}
.y250{bottom:120.656000pt;}
.y46{bottom:120.748000pt;}
.y178{bottom:122.613333pt;}
.y1dd{bottom:122.972000pt;}
.y2e3{bottom:123.576000pt;}
.y16{bottom:124.820000pt;}
.y7c{bottom:127.561333pt;}
.y94{bottom:127.960000pt;}
.y175{bottom:129.786667pt;}
.y2ac{bottom:129.857333pt;}
.y132{bottom:132.228000pt;}
.yfe{bottom:134.005333pt;}
.y20f{bottom:134.628000pt;}
.y24f{bottom:137.393333pt;}
.y45{bottom:137.485333pt;}
.y2e2{bottom:138.918667pt;}
.y1dc{bottom:139.709333pt;}
.y15{bottom:140.720000pt;}
.y7b{bottom:144.298667pt;}
.y1a1{bottom:144.433333pt;}
.y93{bottom:144.697333pt;}
.y2ab{bottom:145.200000pt;}
.y131{bottom:148.965333pt;}
.yfd{bottom:150.742667pt;}
.y20e{bottom:151.364000pt;}
.y24e{bottom:154.130667pt;}
.y44{bottom:154.222667pt;}
.y2e1{bottom:154.261333pt;}
.y1db{bottom:156.446667pt;}
.y14{bottom:156.621333pt;}
.y1a0{bottom:157.053333pt;}
.y27c{bottom:158.744000pt;}
.y2aa{bottom:160.542667pt;}
.y7a{bottom:161.036000pt;}
.y92{bottom:161.434667pt;}
.y130{bottom:165.702667pt;}
.yfc{bottom:167.480000pt;}
.y20d{bottom:168.101333pt;}
.y2e0{bottom:169.604000pt;}
.y19f{bottom:169.672000pt;}
.y24d{bottom:170.868000pt;}
.y43{bottom:170.960000pt;}
.y13{bottom:172.521333pt;}
.y27b{bottom:173.356000pt;}
.y2a9{bottom:175.885333pt;}
.y1da{bottom:177.169333pt;}
.y79{bottom:177.773333pt;}
.y91{bottom:178.172000pt;}
.ybd{bottom:180.164000pt;}
.yc5{bottom:181.758667pt;}
.y12f{bottom:182.440000pt;}
.yfb{bottom:184.217333pt;}
.y20c{bottom:184.838667pt;}
.y2df{bottom:184.946667pt;}
.y24c{bottom:187.604000pt;}
.y42{bottom:187.697333pt;}
.y27a{bottom:187.968000pt;}
.y136{bottom:188.338667pt;}
.y12{bottom:188.421333pt;}
.y19e{bottom:189.078667pt;}
.y2a8{bottom:191.228000pt;}
.y78{bottom:194.510667pt;}
.y135{bottom:196.898667pt;}
.ybc{bottom:196.901333pt;}
.yc4{bottom:198.496000pt;}
.y90{bottom:198.894667pt;}
.y12e{bottom:199.177333pt;}
.y2de{bottom:200.289333pt;}
.yfa{bottom:200.954667pt;}
.y20b{bottom:201.576000pt;}
.y279{bottom:202.580000pt;}
.y19d{bottom:203.690667pt;}
.y1d9{bottom:204.216000pt;}
.y11{bottom:204.322667pt;}
.y24b{bottom:204.341333pt;}
.y41{bottom:204.434667pt;}
.y2a7{bottom:206.569333pt;}
.y77{bottom:211.248000pt;}
.ybb{bottom:213.638667pt;}
.yc3{bottom:215.233333pt;}
.y2dd{bottom:215.632000pt;}
.y278{bottom:217.192000pt;}
.y19c{bottom:218.302667pt;}
.y20a{bottom:218.313333pt;}
.y12d{bottom:219.900000pt;}
.y24a{bottom:221.078667pt;}
.y40{bottom:221.172000pt;}
.y1d8{bottom:221.312000pt;}
.yf9{bottom:221.677333pt;}
.y2a6{bottom:221.912000pt;}
.y76{bottom:227.985333pt;}
.y8f{bottom:228.782667pt;}
.yba{bottom:230.376000pt;}
.y2dc{bottom:230.974667pt;}
.y277{bottom:231.804000pt;}
.y19b{bottom:232.914667pt;}
.y209{bottom:235.050667pt;}
.y2a5{bottom:237.254667pt;}
.y249{bottom:237.816000pt;}
.y3f{bottom:237.909333pt;}
.y1b0{bottom:241.248800pt;}
.y75{bottom:244.722667pt;}
.y8e{bottom:245.520000pt;}
.y2db{bottom:246.316000pt;}
.yb9{bottom:247.113333pt;}
.y19a{bottom:247.526667pt;}
.yc2{bottom:247.910667pt;}
.y12c{bottom:249.788000pt;}
.yf8{bottom:251.565333pt;}
.y208{bottom:251.788000pt;}
.y2a4{bottom:252.597333pt;}
.y276{bottom:252.817333pt;}
.y248{bottom:254.553333pt;}
.y3e{bottom:254.646667pt;}
.y74{bottom:261.460000pt;}
.y2da{bottom:261.658667pt;}
.y199{bottom:262.138667pt;}
.yb8{bottom:263.850667pt;}
.y12b{bottom:266.525333pt;}
.y10{bottom:266.804000pt;}
.y275{bottom:267.429333pt;}
.y2a3{bottom:267.940000pt;}
.yf7{bottom:268.302667pt;}
.y207{bottom:268.525333pt;}
.y247{bottom:271.290667pt;}
.y3d{bottom:271.384000pt;}
.y198{bottom:276.750667pt;}
.y2d9{bottom:277.001333pt;}
.y73{bottom:278.197333pt;}
.yb7{bottom:280.588000pt;}
.y274{bottom:282.041333pt;}
.yf{bottom:282.705333pt;}
.y12a{bottom:283.262667pt;}
.y2a2{bottom:283.282667pt;}
.yf6{bottom:285.040000pt;}
.y206{bottom:285.262667pt;}
.y246{bottom:288.028000pt;}
.y3c{bottom:288.121333pt;}
.y2d8{bottom:292.344000pt;}
.y72{bottom:294.934667pt;}
.y273{bottom:296.653333pt;}
.yb6{bottom:297.325333pt;}
.y197{bottom:297.764000pt;}
.ye{bottom:298.605333pt;}
.y2a1{bottom:298.625333pt;}
.y129{bottom:300.000000pt;}
.yf5{bottom:301.777333pt;}
.y205{bottom:302.000000pt;}
.y245{bottom:304.765333pt;}
.y3b{bottom:304.858667pt;}
.y2d7{bottom:307.686667pt;}
.y272{bottom:311.265333pt;}
.y71{bottom:311.672000pt;}
.y196{bottom:312.376000pt;}
.y2a0{bottom:313.968000pt;}
.yb5{bottom:314.062667pt;}
.yd{bottom:314.505333pt;}
.y128{bottom:316.737333pt;}
.yf4{bottom:318.514667pt;}
.y204{bottom:318.737333pt;}
.y244{bottom:321.502667pt;}
.y3a{bottom:321.596000pt;}
.y2d6{bottom:323.029333pt;}
.y195{bottom:326.988000pt;}
.y70{bottom:328.409333pt;}
.y29f{bottom:329.309333pt;}
.yc1{bottom:330.002667pt;}
.yb4{bottom:330.800000pt;}
.y271{bottom:332.280000pt;}
.y127{bottom:333.474667pt;}
.yf3{bottom:335.252000pt;}
.y203{bottom:335.474667pt;}
.y243{bottom:338.240000pt;}
.y39{bottom:338.333333pt;}
.y2d5{bottom:338.372000pt;}
.yc{bottom:338.376000pt;}
.y194{bottom:341.600000pt;}
.y29e{bottom:344.652000pt;}
.y8d{bottom:345.146667pt;}
.yc0{bottom:346.740000pt;}
.y270{bottom:346.890667pt;}
.yb3{bottom:347.537333pt;}
.y6f{bottom:349.132000pt;}
.y126{bottom:350.212000pt;}
.yf2{bottom:351.989333pt;}
.y202{bottom:352.212000pt;}
.y1d4{bottom:353.201867pt;}
.y2d4{bottom:353.714667pt;}
.yb{bottom:354.277333pt;}
.y242{bottom:354.977333pt;}
.y38{bottom:355.070667pt;}
.y29d{bottom:359.994667pt;}
.y8c{bottom:361.884000pt;}
.y193{bottom:362.613333pt;}
.ybf{bottom:363.477333pt;}
.yb2{bottom:364.274667pt;}
.y125{bottom:366.949333pt;}
.y6e{bottom:367.064000pt;}
.y26f{bottom:367.905333pt;}
.yf1{bottom:368.726667pt;}
.y201{bottom:368.949333pt;}
.y2d3{bottom:369.056000pt;}
.ya{bottom:370.177333pt;}
.y1d3{bottom:370.241867pt;}
.y241{bottom:371.714667pt;}
.y37{bottom:371.808000pt;}
.y29c{bottom:375.337333pt;}
.y192{bottom:377.225333pt;}
.y8b{bottom:378.621333pt;}
.ybe{bottom:380.214667pt;}
.yb1{bottom:381.012000pt;}
.y26e{bottom:382.517333pt;}
.y124{bottom:383.686667pt;}
.y2d2{bottom:384.398667pt;}
.yf0{bottom:385.464000pt;}
.y200{bottom:385.686667pt;}
.y240{bottom:388.452000pt;}
.y21b{bottom:390.585333pt;}
.y29b{bottom:390.680000pt;}
.yc8{bottom:390.918667pt;}
.y191{bottom:391.837333pt;}
.y36{bottom:392.530667pt;}
.y9{bottom:394.048000pt;}
.y8a{bottom:395.358667pt;}
.y6d{bottom:396.952000pt;}
.yb0{bottom:397.749333pt;}
.yc7{bottom:399.478667pt;}
.y2d1{bottom:399.741333pt;}
.y123{bottom:400.424000pt;}
.yef{bottom:402.201333pt;}
.y1ff{bottom:402.424000pt;}
.y1d2{bottom:402.961867pt;}
.y26d{bottom:403.530667pt;}
.y23f{bottom:405.189333pt;}
.y29a{bottom:406.022667pt;}
.y190{bottom:406.449333pt;}
.y21a{bottom:407.625333pt;}
.y8{bottom:409.948000pt;}
.y89{bottom:412.096000pt;}
.y6c{bottom:413.689333pt;}
.yaf{bottom:414.486667pt;}
.y2d0{bottom:415.084000pt;}
.y122{bottom:417.161333pt;}
.y1d1{bottom:418.481867pt;}
.yee{bottom:418.938667pt;}
.y1fe{bottom:419.161333pt;}
.y18f{bottom:421.061333pt;}
.y299{bottom:421.365333pt;}
.y23e{bottom:421.926667pt;}
.y219{bottom:424.745333pt;}
.y7{bottom:425.848000pt;}
.y88{bottom:428.833333pt;}
.y6b{bottom:430.426667pt;}
.yae{bottom:431.224000pt;}
.y26c{bottom:431.637333pt;}
.y1d0{bottom:433.841867pt;}
.y121{bottom:433.897333pt;}
.yed{bottom:435.676000pt;}
.y1fd{bottom:435.898667pt;}
.y298{bottom:436.708000pt;}
.y23d{bottom:438.664000pt;}
.y6{bottom:441.749333pt;}
.y218{bottom:441.785333pt;}
.y18e{bottom:442.074667pt;}
.y87{bottom:445.570667pt;}
.y2cf{bottom:445.769333pt;}
.y6a{bottom:447.164000pt;}
.yad{bottom:447.961333pt;}
.y120{bottom:450.634667pt;}
.y297{bottom:452.050667pt;}
.yec{bottom:452.413333pt;}
.y1fc{bottom:452.636000pt;}
.y23c{bottom:455.401333pt;}
.y18d{bottom:456.686667pt;}
.y5{bottom:457.649333pt;}
.y35{bottom:457.920000pt;}
.y217{bottom:458.932000pt;}
.y2ce{bottom:461.112000pt;}
.y86{bottom:462.306667pt;}
.y69{bottom:463.901333pt;}
.yac{bottom:464.698667pt;}
.y11f{bottom:467.372000pt;}
.y296{bottom:467.392000pt;}
.yeb{bottom:469.150667pt;}
.y1fb{bottom:469.373333pt;}
.y26b{bottom:469.878667pt;}
.y18c{bottom:471.298667pt;}
.y23b{bottom:472.138667pt;}
.y4{bottom:473.549333pt;}
.y34{bottom:475.214667pt;}
.y216{bottom:476.052000pt;}
.y2cd{bottom:476.454667pt;}
.y85{bottom:479.044000pt;}
.y68{bottom:480.638667pt;}
.yab{bottom:481.436000pt;}
.y295{bottom:482.734667pt;}
.y11e{bottom:484.109333pt;}
.yea{bottom:485.888000pt;}
.y18b{bottom:485.910667pt;}
.y1fa{bottom:486.110667pt;}
.y23a{bottom:488.876000pt;}
.y3{bottom:489.450667pt;}
.y2cc{bottom:491.797333pt;}
.y215{bottom:493.092000pt;}
.y84{bottom:495.781333pt;}
.y67{bottom:497.376000pt;}
.y294{bottom:498.077333pt;}
.yaa{bottom:498.173333pt;}
.y18a{bottom:500.522667pt;}
.y11d{bottom:500.846667pt;}
.y26a{bottom:502.557333pt;}
.ye9{bottom:502.624000pt;}
.y1f9{bottom:502.848000pt;}
.y2{bottom:505.350667pt;}
.y239{bottom:505.613333pt;}
.y2cb{bottom:507.138667pt;}
.y33{bottom:508.450667pt;}
.y83{bottom:512.518667pt;}
.y293{bottom:513.420000pt;}
.y66{bottom:514.113333pt;}
.ya9{bottom:514.910667pt;}
.y254{bottom:516.504000pt;}
.y11c{bottom:517.584000pt;}
.ye8{bottom:519.361333pt;}
.y1f8{bottom:519.585333pt;}
.y1{bottom:521.250667pt;}
.y189{bottom:521.536000pt;}
.y238{bottom:522.350667pt;}
.y2ca{bottom:522.481333pt;}
.y32{bottom:525.745333pt;}
.y269{bottom:526.148000pt;}
.y292{bottom:528.762667pt;}
.y82{bottom:529.256000pt;}
.y65{bottom:530.850667pt;}
.ya8{bottom:531.648000pt;}
.y253{bottom:534.437333pt;}
.ye7{bottom:536.098667pt;}
.y1f7{bottom:536.322667pt;}
.y2c9{bottom:537.824000pt;}
.y11b{bottom:538.306667pt;}
.y213{bottom:541.732000pt;}
.y188{bottom:542.550667pt;}
.y31{bottom:543.040000pt;}
.y237{bottom:543.072000pt;}
.y291{bottom:544.105333pt;}
.y81{bottom:545.993333pt;}
.y64{bottom:547.588000pt;}
.y268{bottom:549.740000pt;}
.y212{bottom:550.292000pt;}
.ya7{bottom:552.369333pt;}
.ye6{bottom:552.836000pt;}
.y2c8{bottom:553.166667pt;}
.y1c9{bottom:557.628533pt;}
.y290{bottom:559.448000pt;}
.y30{bottom:560.336000pt;}
.y63{bottom:564.325333pt;}
.y80{bottom:566.716000pt;}
.y11a{bottom:568.194667pt;}
.y2c7{bottom:568.509333pt;}
.y236{bottom:570.118667pt;}
.y1f6{bottom:571.996000pt;}
.y187{bottom:573.313333pt;}
.y267{bottom:573.332000pt;}
.ye5{bottom:573.558667pt;}
.y28f{bottom:574.790667pt;}
.y2f{bottom:577.630667pt;}
.y62{bottom:581.062667pt;}
.ya6{bottom:582.257333pt;}
.y2c6{bottom:583.852000pt;}
.y1f5{bottom:584.616000pt;}
.y7f{bottom:584.649333pt;}
.y119{bottom:584.932000pt;}
.y235{bottom:587.214667pt;}
.y1c8{bottom:589.388533pt;}
.y28e{bottom:590.132000pt;}
.ye4{bottom:591.492000pt;}
.y2e{bottom:594.925333pt;}
.y266{bottom:596.922667pt;}
.y1af{bottom:597.172000pt;}
.y1f4{bottom:597.234667pt;}
.y61{bottom:597.800000pt;}
.y2c5{bottom:599.194667pt;}
.y118{bottom:601.669333pt;}
.y234{bottom:604.310667pt;}
.y28d{bottom:605.474667pt;}
.y186{bottom:606.294667pt;}
.y1c7{bottom:606.508533pt;}
.y2d{bottom:612.221333pt;}
.y1ae{bottom:613.909333pt;}
.y1f3{bottom:613.985333pt;}
.y60{bottom:614.537333pt;}
.ya5{bottom:614.936000pt;}
.y117{bottom:618.406667pt;}
.ye3{bottom:618.538667pt;}
.y265{bottom:620.514667pt;}
.y28c{bottom:620.817333pt;}
.y185{bottom:623.032000pt;}
.y1c6{bottom:623.548533pt;}
.y211{bottom:624.248000pt;}
.y1f2{bottom:628.597333pt;}
.y2c{bottom:629.516000pt;}
.y2c4{bottom:629.878667pt;}
.y5f{bottom:631.274667pt;}
.ya4{bottom:631.673333pt;}
.y116{bottom:635.144000pt;}
.y264{bottom:636.136000pt;}
.y28b{bottom:636.160000pt;}
.y184{bottom:639.769333pt;}
.y1c5{bottom:640.668533pt;}
.yc6{bottom:641.132000pt;}
.y1f1{bottom:643.209333pt;}
.y2c3{bottom:645.221333pt;}
.y2b{bottom:646.812000pt;}
.y5e{bottom:648.012000pt;}
.ya3{bottom:648.409333pt;}
.y1ad{bottom:649.584000pt;}
.y28a{bottom:651.502667pt;}
.y263{bottom:651.757333pt;}
.y115{bottom:651.881333pt;}
.y183{bottom:656.506667pt;}
.y1c4{bottom:657.708533pt;}
.y1f0{bottom:657.820000pt;}
.y2c2{bottom:660.564000pt;}
.y1ac{bottom:662.202667pt;}
.y2a{bottom:664.106667pt;}
.y5d{bottom:664.749333pt;}
.ya2{bottom:665.146667pt;}
.y289{bottom:666.845333pt;}
.y262{bottom:667.378667pt;}
.y114{bottom:668.618667pt;}
.y1ef{bottom:672.432000pt;}
.y182{bottom:673.244000pt;}
.y1ab{bottom:674.822667pt;}
.y1c3{bottom:674.828533pt;}
.y2c1{bottom:675.906667pt;}
.y29{bottom:681.401333pt;}
.y5c{bottom:681.485333pt;}
.ya1{bottom:681.884000pt;}
.y261{bottom:683.000000pt;}
.y113{bottom:685.356000pt;}
.y288{bottom:686.173333pt;}
.y1ee{bottom:687.044000pt;}
.y1cf{bottom:688.290667pt;}
.y181{bottom:689.981333pt;}
.y2c0{bottom:691.249333pt;}
.y1aa{bottom:691.572000pt;}
.y1c2{bottom:691.948533pt;}
.y5b{bottom:698.222667pt;}
.ya0{bottom:698.621333pt;}
.y28{bottom:698.697333pt;}
.y1ed{bottom:701.656000pt;}
.y112{bottom:702.093333pt;}
.y1ce{bottom:704.557333pt;}
.y1a9{bottom:706.184000pt;}
.y2bf{bottom:706.592000pt;}
.y180{bottom:706.718667pt;}
.y1c1{bottom:708.988533pt;}
.y260{bottom:714.562667pt;}
.y5a{bottom:714.960000pt;}
.y9f{bottom:715.358667pt;}
.y27{bottom:715.992000pt;}
.y1cd{bottom:720.717333pt;}
.y1a8{bottom:720.796000pt;}
.y287{bottom:721.846667pt;}
.y2be{bottom:721.934667pt;}
.y1ec{bottom:722.670667pt;}
.y17f{bottom:723.456000pt;}
.y25f{bottom:731.300000pt;}
.y59{bottom:731.697333pt;}
.y9e{bottom:732.096000pt;}
.y26{bottom:733.286667pt;}
.y1a7{bottom:735.408000pt;}
.y1cc{bottom:736.957333pt;}
.y2bd{bottom:737.277333pt;}
.y286{bottom:738.597333pt;}
.y17e{bottom:740.193333pt;}
.y1c0{bottom:741.708533pt;}
.y111{bottom:741.905333pt;}
.y25e{bottom:748.036000pt;}
.y58{bottom:748.434667pt;}
.y9d{bottom:748.833333pt;}
.y1a6{bottom:750.020000pt;}
.y25{bottom:750.582667pt;}
.y1eb{bottom:750.776000pt;}
.y2bc{bottom:752.620000pt;}
.y1cb{bottom:753.117333pt;}
.y285{bottom:753.209333pt;}
.y110{bottom:754.525333pt;}
.y10e{bottom:754.998667pt;}
.y17d{bottom:756.930667pt;}
.y1bf{bottom:757.148533pt;}
.y25d{bottom:764.773333pt;}
.y57{bottom:765.172000pt;}
.y9c{bottom:765.570667pt;}
.y10f{bottom:767.144000pt;}
.y284{bottom:767.820000pt;}
.y2bb{bottom:767.961333pt;}
.y1ca{bottom:769.997333pt;}
.y1a5{bottom:771.033333pt;}
.y1be{bottom:772.588533pt;}
.y17c{bottom:773.668000pt;}
.y25c{bottom:781.510667pt;}
.y56{bottom:781.909333pt;}
.y9b{bottom:782.308000pt;}
.y283{bottom:782.432000pt;}
.y2ba{bottom:783.304000pt;}
.y1ea{bottom:783.757333pt;}
.y24{bottom:784.880000pt;}
.y10d{bottom:786.165333pt;}
.y282{bottom:797.044000pt;}
.y10a{bottom:797.712000pt;}
.y25b{bottom:798.248000pt;}
.y55{bottom:798.646667pt;}
.y10c{bottom:798.785333pt;}
.y9a{bottom:799.045333pt;}
.y1a4{bottom:799.140000pt;}
.y1e9{bottom:800.494667pt;}
.y23{bottom:803.084000pt;}
.y17b{bottom:803.504000pt;}
.y10b{bottom:811.404000pt;}
.y281{bottom:811.656000pt;}
.y2b9{bottom:813.989333pt;}
.y25a{bottom:814.985333pt;}
.y54{bottom:815.384000pt;}
.y1e8{bottom:817.232000pt;}
.y22{bottom:817.430667pt;}
.y99{bottom:819.768000pt;}
.y17a{bottom:820.600000pt;}
.y2b8{bottom:829.332000pt;}
.y109{bottom:830.426667pt;}
.y259{bottom:831.722667pt;}
.y21{bottom:831.777333pt;}
.y53{bottom:832.121333pt;}
.y280{bottom:832.670667pt;}
.y1e7{bottom:833.969333pt;}
.y134{bottom:840.537333pt;}
.y106{bottom:841.972000pt;}
.y108{bottom:843.045333pt;}
.y16f{bottom:843.596000pt;}
.y2b7{bottom:844.674667pt;}
.y20{bottom:846.122667pt;}
.y27f{bottom:847.282667pt;}
.y258{bottom:848.460000pt;}
.y52{bottom:848.858667pt;}
.y98{bottom:849.656000pt;}
.y1e6{bottom:850.706667pt;}
.y107{bottom:855.664000pt;}
.y2b6{bottom:860.017333pt;}
.y27e{bottom:861.893333pt;}
.y257{bottom:865.197333pt;}
.y51{bottom:865.596000pt;}
.y97{bottom:866.393333pt;}
.y105{bottom:874.686667pt;}
.y2b5{bottom:875.360000pt;}
.y27d{bottom:876.505333pt;}
.y256{bottom:881.934667pt;}
.y50{bottom:882.333333pt;}
.y1f{bottom:885.836000pt;}
.y104{bottom:887.305333pt;}
.y102{bottom:888.468000pt;}
.y2b4{bottom:890.702667pt;}
.y1e5{bottom:891.117333pt;}
.y4f{bottom:899.070667pt;}
.y255{bottom:902.657333pt;}
.y1e4{bottom:905.729333pt;}
.y2b3{bottom:906.044000pt;}
.y103{bottom:906.326667pt;}
.y4e{bottom:915.808000pt;}
.y1b2{bottom:918.935200pt;}
.y1e3{bottom:920.341333pt;}
.y1e{bottom:921.320000pt;}
.y2b2{bottom:921.386667pt;}
.y1b1{bottom:927.495200pt;}
.y4d{bottom:932.545333pt;}
.y101{bottom:933.038667pt;}
.y1e2{bottom:934.953333pt;}
.y2b1{bottom:936.729333pt;}
.y1d{bottom:946.425333pt;}
.y4c{bottom:949.282667pt;}
.y2b0{bottom:952.072000pt;}
.y1e1{bottom:955.966667pt;}
.y4b{bottom:966.020000pt;}
.y2af{bottom:967.414667pt;}
.y1c{bottom:971.530667pt;}
.y4a{bottom:982.757333pt;}
.y1e0{bottom:984.073333pt;}
.y19{bottom:1010.186667pt;}
.y1bd{bottom:1027.037333pt;}
.y49{bottom:1038.548000pt;}
.y1bc{bottom:1043.277333pt;}
.y1bb{bottom:1059.437333pt;}
.y1b8{bottom:1075.624000pt;}
.y1b7{bottom:1091.864000pt;}
.y1b4{bottom:1108.024000pt;}
.h2c{height:-751.901333pt;}
.h2b{height:-735.101333pt;}
.h2a{height:-718.861333pt;}
.h29{height:-702.701333pt;}
.h28{height:-686.461333pt;}
.h27{height:-669.661333pt;}
.h26{height:-653.421333pt;}
.h25{height:-637.234667pt;}
.h24{height:-621.074667pt;}
.h23{height:-604.834667pt;}
.h22{height:-588.034667pt;}
.h21{height:-571.794667pt;}
.h20{height:-555.634667pt;}
.h1f{height:-539.394667pt;}
.h31{height:-531.865333pt;}
.h1e{height:-523.234667pt;}
.h32{height:-515.705333pt;}
.h1d{height:-506.354667pt;}
.h33{height:-499.465333pt;}
.h1b{height:-489.554667pt;}
.h34{height:-483.278667pt;}
.h35{height:-467.118667pt;}
.h36{height:-450.878667pt;}
.h37{height:-193.838667pt;}
.h38{height:-176.958667pt;}
.h39{height:-160.798667pt;}
.h3a{height:-144.558667pt;}
.h3b{height:-128.398667pt;}
.h3c{height:-112.132000pt;}
.h9{height:23.304670pt;}
.ha{height:23.379740pt;}
.h2{height:27.188522pt;}
.h3{height:27.300102pt;}
.h19{height:30.732706pt;}
.hb{height:31.072763pt;}
.h11{height:31.200285pt;}
.hc{height:34.574438pt;}
.hd{height:34.957005pt;}
.h1c{height:35.039062pt;}
.h2f{height:35.100467pt;}
.h18{height:36.407372pt;}
.h3e{height:37.778179pt;}
.he{height:38.415786pt;}
.hf{height:38.840857pt;}
.h6{height:39.000258pt;}
.h16{height:39.010156pt;}
.h17{height:39.166719pt;}
.h13{height:39.359687pt;}
.h40{height:43.660390pt;}
.h15{height:44.390625pt;}
.h2e{height:44.489271pt;}
.h3d{height:44.548522pt;}
.h4{height:45.271688pt;}
.h8{height:48.481423pt;}
.h10{height:48.511220pt;}
.h14{height:49.421563pt;}
.h5{height:54.767117pt;}
.h7{height:69.148877pt;}
.h2d{height:150.000000pt;}
.h1a{height:155.504000pt;}
.h30{height:334.909867pt;}
.h12{height:354.909333pt;}
.h3f{height:371.793333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w10{width:-102.238667pt;}
.w5{width:-100.305333pt;}
.wd{width:-39.218667pt;}
.w11{width:-34.318667pt;}
.w6{width:-32.385333pt;}
.w14{width:-21.214667pt;}
.w19{width:12.065333pt;}
.wc{width:31.101333pt;}
.w13{width:49.105333pt;}
.w9{width:66.080000pt;}
.wb{width:68.160000pt;}
.w8{width:72.160000pt;}
.w15{width:80.641333pt;}
.wa{width:87.146667pt;}
.w17{width:87.280000pt;}
.w18{width:87.360000pt;}
.w16{width:87.386667pt;}
.w12{width:99.468000pt;}
.w7{width:101.401333pt;}
.w2{width:175.580236pt;}
.we{width:420.960000pt;}
.w4{width:426.049333pt;}
.wf{width:442.120000pt;}
.w1a{width:490.316000pt;}
.w3{width:534.215600pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x48{left:-173.305333pt;}
.x17{left:-171.372000pt;}
.x29{left:-167.452000pt;}
.x1b{left:-163.132000pt;}
.x49{left:-154.025333pt;}
.x34{left:-151.532000pt;}
.x35{left:-149.372000pt;}
.x31{left:-147.052000pt;}
.x2e{left:-145.132000pt;}
.xc{left:-81.587067pt;}
.x4a{left:-78.798667pt;}
.x2a{left:-76.865333pt;}
.x2f{left:-68.385333pt;}
.x1c{left:-19.265333pt;}
.x0{left:0.000000pt;}
.x72{left:1.053333pt;}
.x19{left:2.494667pt;}
.x59{left:9.041333pt;}
.x1e{left:10.800000pt;}
.x54{left:14.320000pt;}
.x24{left:17.120000pt;}
.x30{left:18.640000pt;}
.x32{left:19.600000pt;}
.x28{left:21.200000pt;}
.x20{left:22.640000pt;}
.x2b{left:24.014667pt;}
.x58{left:24.961333pt;}
.x26{left:26.560000pt;}
.x50{left:28.881333pt;}
.x1a{left:30.814667pt;}
.x2c{left:33.040000pt;}
.x22{left:34.560000pt;}
.x51{left:36.961333pt;}
.x2d{left:40.560000pt;}
.x33{left:43.520000pt;}
.x1{left:47.621333pt;}
.x2{left:51.603593pt;}
.x3e{left:58.521333pt;}
.x3d{left:63.470667pt;}
.x39{left:69.546667pt;}
.x42{left:73.842667pt;}
.x3a{left:75.360000pt;}
.x41{left:76.508000pt;}
.x40{left:78.792000pt;}
.x3f{left:80.716000pt;}
.xe{left:92.279600pt;}
.xf{left:120.599600pt;}
.xb{left:129.553733pt;}
.x3b{left:192.826667pt;}
.x4{left:220.912000pt;}
.x3{left:221.858667pt;}
.x36{left:224.326667pt;}
.x10{left:229.413333pt;}
.x5e{left:233.592000pt;}
.x45{left:237.650667pt;}
.x5d{left:242.049333pt;}
.x60{left:243.033333pt;}
.x77{left:246.298667pt;}
.x7{left:250.204000pt;}
.x44{left:253.974667pt;}
.x47{left:257.406667pt;}
.x46{left:259.845333pt;}
.x62{left:262.628000pt;}
.x5f{left:263.861333pt;}
.x61{left:266.280000pt;}
.x6e{left:270.861333pt;}
.x6a{left:272.645333pt;}
.x67{left:273.644000pt;}
.x5{left:275.048000pt;}
.x3c{left:278.430667pt;}
.x5b{left:282.606667pt;}
.x6b{left:283.620000pt;}
.x6{left:284.916000pt;}
.x5c{left:286.809333pt;}
.x76{left:299.749333pt;}
.x52{left:302.500000pt;}
.x14{left:317.134667pt;}
.x38{left:321.173333pt;}
.x1d{left:323.260000pt;}
.x16{left:326.862667pt;}
.x8{left:336.626667pt;}
.x6c{left:339.173333pt;}
.x43{left:340.744000pt;}
.x74{left:347.024000pt;}
.x6d{left:349.853333pt;}
.xa{left:353.300000pt;}
.x70{left:358.578667pt;}
.x71{left:369.264000pt;}
.x9{left:376.894667pt;}
.x53{left:389.886667pt;}
.x37{left:392.560000pt;}
.x4b{left:393.486667pt;}
.x1f{left:395.420000pt;}
.x64{left:402.592000pt;}
.x12{left:420.646667pt;}
.x13{left:423.032000pt;}
.x18{left:424.548000pt;}
.x15{left:426.364000pt;}
.x68{left:437.869333pt;}
.x5a{left:442.614667pt;}
.x75{left:444.136000pt;}
.x69{left:448.018667pt;}
.x4c{left:459.566667pt;}
.x21{left:461.500000pt;}
.x55{left:477.166667pt;}
.x6f{left:487.568000pt;}
.x73{left:490.066667pt;}
.xd{left:537.372933pt;}
.x4d{left:546.713333pt;}
.x23{left:548.646667pt;}
.x11{left:551.012000pt;}
.x63{left:557.257333pt;}
.x56{left:564.553333pt;}
.x4e{left:614.873333pt;}
.x25{left:616.806667pt;}
.x57{left:651.913333pt;}
.x4f{left:685.193333pt;}
.x27{left:687.126667pt;}
.x65{left:691.556000pt;}
.x66{left:702.244000pt;}
}




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