
    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_3d39175f7f27434b7fc50197.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.892000;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_beaa1357f9b13ac115ba10ee.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_88b78fa0aff792b2c9e71d24.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_2f742fad44420e8ad34ca149.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8b39c7bd9f773a66d251b68a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.482000;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_193d5ca59c2a6139943b63e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.665000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_b936b62b4c3dacd6cda6a583.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.712000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d1f6f40e51fdaa8d996db909.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b2d86d4866635eb8dcd30411.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_dc212bf5c57169cda2237faf.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.723000;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_9f1f78af5b3acf97706eeeeb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_c0f49345182d726faedfa0c8.woff2')format("woff");}.fff{font-family:fff;line-height:0.684000;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_37a348ae5a1e7fc78e085435.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.580000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{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);}
.m8{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);}
.mc{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);}
.mf{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);}
.m3{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);}
.md{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);}
.m24{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);}
.m15{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m28{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);}
.m10{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);}
.m29{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);}
.m2{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);}
.ma{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);}
.m4{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);}
.m26{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);}
.m13{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);}
.m1a{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);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m18{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);}
.m6{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);}
.m23{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);}
.m14{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);}
.m11{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);}
.m27{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);}
.m7{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);}
.m1c{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);}
.m9{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);}
.m16{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);}
.m19{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);}
.m17{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);}
.m1b{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);}
.m1d{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);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.ve{vertical-align:-66.384000px;}
.v5{vertical-align:-12.510000px;}
.va{vertical-align:-11.442000px;}
.v23{vertical-align:-10.068000px;}
.v1{vertical-align:-8.070000px;}
.v15{vertical-align:-6.816000px;}
.v8{vertical-align:-5.382000px;}
.v1c{vertical-align:-3.132000px;}
.v2{vertical-align:-1.248000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:8.970000px;}
.v24{vertical-align:10.068000px;}
.v1f{vertical-align:11.190000px;}
.vd{vertical-align:12.510000px;}
.v3{vertical-align:18.276000px;}
.v4{vertical-align:19.524000px;}
.v21{vertical-align:21.702000px;}
.v22{vertical-align:24.690000px;}
.v9{vertical-align:28.320000px;}
.v25{vertical-align:29.604000px;}
.v1e{vertical-align:30.912000px;}
.v1d{vertical-align:35.868000px;}
.vb{vertical-align:40.470000px;}
.v12{vertical-align:42.060000px;}
.v1a{vertical-align:48.324000px;}
.v10{vertical-align:49.434000px;}
.v7{vertical-align:52.314000px;}
.v14{vertical-align:60.930000px;}
.v6{vertical-align:66.378000px;}
.v13{vertical-align:67.746000px;}
.v20{vertical-align:74.724000px;}
.v18{vertical-align:99.882000px;}
.v11{vertical-align:102.246000px;}
.vc{vertical-align:107.388000px;}
.v17{vertical-align:111.030000px;}
.v1b{vertical-align:113.934000px;}
.v19{vertical-align:150.570000px;}
.v16{vertical-align:171.216000px;}
.ls3{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000263px;}
.lsab{letter-spacing:0.000422px;}
.lsa9{letter-spacing:0.001133px;}
.lsb3{letter-spacing:0.004800px;}
.ls2f{letter-spacing:0.109200px;}
.ls2c{letter-spacing:0.115200px;}
.ls17{letter-spacing:0.496185px;}
.lsa7{letter-spacing:0.497764px;}
.lsa3{letter-spacing:0.503764px;}
.ls52{letter-spacing:0.542815px;}
.ls56{letter-spacing:0.548815px;}
.ls53{letter-spacing:0.565200px;}
.lsa{letter-spacing:0.642088px;}
.lsa4{letter-spacing:0.648088px;}
.ls85{letter-spacing:0.676741px;}
.ls61{letter-spacing:0.730893px;}
.ls39{letter-spacing:0.734012px;}
.ls5e{letter-spacing:0.735962px;}
.ls9a{letter-spacing:0.742200px;}
.ls20{letter-spacing:0.748200px;}
.ls88{letter-spacing:0.820741px;}
.ls3d{letter-spacing:0.822583px;}
.ls3a{letter-spacing:0.828583px;}
.ls5c{letter-spacing:0.874893px;}
.ls1a{letter-spacing:0.893645px;}
.ls6a{letter-spacing:0.895694px;}
.ls16{letter-spacing:0.896227px;}
.ls1d{letter-spacing:0.928963px;}
.ls62{letter-spacing:1.013675px;}
.ls55{letter-spacing:1.015200px;}
.ls50{letter-spacing:1.021200px;}
.ls54{letter-spacing:1.112815px;}
.ls4{letter-spacing:1.275394px;}
.ls7f{letter-spacing:1.312766px;}
.lsd{letter-spacing:1.313675px;}
.ls81{letter-spacing:1.318766px;}
.ls44{letter-spacing:1.319675px;}
.ls94{letter-spacing:1.342200px;}
.ls38{letter-spacing:1.420741px;}
.ls5f{letter-spacing:1.479962px;}
.ls14{letter-spacing:1.484012px;}
.ls75{letter-spacing:1.489694px;}
.ls96{letter-spacing:1.492200px;}
.ls84{letter-spacing:1.492766px;}
.ls68{letter-spacing:1.493108px;}
.ls72{letter-spacing:1.495694px;}
.ls69{letter-spacing:1.497986px;}
.ls82{letter-spacing:1.521483px;}
.ls19{letter-spacing:1.598370px;}
.ls66{letter-spacing:1.791634px;}
.ls6b{letter-spacing:1.797634px;}
.ls0{letter-spacing:1.861130px;}
.ls2b{letter-spacing:2.091986px;}
.ls2a{letter-spacing:2.094017px;}
.ls35{letter-spacing:2.200741px;}
.lsc{letter-spacing:2.318725px;}
.ls10{letter-spacing:2.324725px;}
.ls18{letter-spacing:2.401037px;}
.ls34{letter-spacing:2.427943px;}
.ls2e{letter-spacing:2.433943px;}
.ls93{letter-spacing:2.440741px;}
.ls60{letter-spacing:2.494893px;}
.ls8c{letter-spacing:2.611200px;}
.ls8f{letter-spacing:2.614741px;}
.ls67{letter-spacing:2.689694px;}
.ls90{letter-spacing:2.927108px;}
.ls8b{letter-spacing:2.989200px;}
.ls89{letter-spacing:3.285762px;}
.lsb{letter-spacing:3.513900px;}
.ls3f{letter-spacing:3.705886px;}
.ls57{letter-spacing:3.733200px;}
.ls1c{letter-spacing:3.888701px;}
.ls51{letter-spacing:4.002701px;}
.lsaa{letter-spacing:4.034170px;}
.ls31{letter-spacing:4.472012px;}
.ls2d{letter-spacing:4.479634px;}
.ls33{letter-spacing:4.485634px;}
.ls13{letter-spacing:4.759258px;}
.ls1b{letter-spacing:5.680282px;}
.ls5b{letter-spacing:6.856200px;}
.ls45{letter-spacing:7.287886px;}
.ls3e{letter-spacing:7.291200px;}
.ls25{letter-spacing:7.293886px;}
.ls41{letter-spacing:7.297200px;}
.ls48{letter-spacing:7.918200px;}
.ls15{letter-spacing:8.367292px;}
.ls92{letter-spacing:9.560383px;}
.ls8e{letter-spacing:9.566383px;}
.ls5a{letter-spacing:10.426893px;}
.ls95{letter-spacing:10.712100px;}
.ls42{letter-spacing:10.879200px;}
.ls87{letter-spacing:10.909200px;}
.lsac{letter-spacing:11.244088px;}
.ls7c{letter-spacing:11.451762px;}
.ls2{letter-spacing:11.954850px;}
.lsb4{letter-spacing:12.257910px;}
.ls1f{letter-spacing:12.339483px;}
.ls47{letter-spacing:12.370200px;}
.lsb6{letter-spacing:12.486464px;}
.ls79{letter-spacing:12.489483px;}
.ls59{letter-spacing:13.083483px;}
.ls7e{letter-spacing:13.086783px;}
.ls32{letter-spacing:13.089483px;}
.ls9e{letter-spacing:13.092783px;}
.ls58{letter-spacing:13.102893px;}
.ls21{letter-spacing:13.106012px;}
.ls9f{letter-spacing:13.114200px;}
.ls7b{letter-spacing:13.119292px;}
.ls74{letter-spacing:13.120200px;}
.lsae{letter-spacing:13.326871px;}
.lsb2{letter-spacing:13.366727px;}
.lsb1{letter-spacing:13.383733px;}
.ls6c{letter-spacing:13.425634px;}
.lsa0{letter-spacing:13.447344px;}
.lsad{letter-spacing:13.448400px;}
.lsb0{letter-spacing:13.454400px;}
.ls99{letter-spacing:13.714200px;}
.ls37{letter-spacing:13.863483px;}
.ls83{letter-spacing:14.075675px;}
.ls9{letter-spacing:14.094088px;}
.ls9d{letter-spacing:14.100783px;}
.ls8a{letter-spacing:14.103483px;}
.ls98{letter-spacing:14.106783px;}
.ls63{letter-spacing:14.121178px;}
.ls24{letter-spacing:14.283483px;}
.ls36{letter-spacing:14.549108px;}
.lsa8{letter-spacing:14.645022px;}
.ls8{letter-spacing:14.704798px;}
.ls29{letter-spacing:14.729780px;}
.ls28{letter-spacing:14.732571px;}
.ls26{letter-spacing:14.750218px;}
.ls6{letter-spacing:14.764573px;}
.ls5{letter-spacing:14.884124px;}
.ls7{letter-spacing:14.943900px;}
.ls71{letter-spacing:15.039483px;}
.ls70{letter-spacing:15.070200px;}
.ls91{letter-spacing:15.123227px;}
.ls40{letter-spacing:15.177483px;}
.lsb5{letter-spacing:15.179812px;}
.ls6d{letter-spacing:15.223965px;}
.ls9b{letter-spacing:15.361200px;}
.lsa1{letter-spacing:15.588088px;}
.ls43{letter-spacing:15.624017px;}
.ls23{letter-spacing:15.630017px;}
.ls12{letter-spacing:15.931200px;}
.ls11{letter-spacing:16.077483px;}
.lsa6{letter-spacing:16.260088px;}
.lsa2{letter-spacing:16.266088px;}
.ls9c{letter-spacing:16.371483px;}
.ls97{letter-spacing:16.377483px;}
.lsaf{letter-spacing:16.697459px;}
.ls77{letter-spacing:17.319483px;}
.ls4b{letter-spacing:17.475483px;}
.ls4d{letter-spacing:18.069483px;}
.ls78{letter-spacing:18.093292px;}
.ls73{letter-spacing:18.094766px;}
.ls76{letter-spacing:18.099762px;}
.ls5d{letter-spacing:18.100200px;}
.ls7a{letter-spacing:18.100766px;}
.ls80{letter-spacing:18.190766px;}
.ls4c{letter-spacing:18.694200px;}
.ls22{letter-spacing:19.659483px;}
.ls3c{letter-spacing:20.163483px;}
.ls49{letter-spacing:20.335200px;}
.ls3b{letter-spacing:20.905771px;}
.lse{letter-spacing:20.906153px;}
.lsf{letter-spacing:21.057483px;}
.ls4a{letter-spacing:21.063483px;}
.ls86{letter-spacing:21.999483px;}
.ls8d{letter-spacing:25.857483px;}
.ls64{letter-spacing:26.650650px;}
.ls6f{letter-spacing:27.831483px;}
.ls6e{letter-spacing:27.856766px;}
.ls7d{letter-spacing:35.365609px;}
.ls1{letter-spacing:37.063654px;}
.ls4e{letter-spacing:44.452893px;}
.ls46{letter-spacing:51.693483px;}
.ls30{letter-spacing:57.591483px;}
.ls1e{letter-spacing:74.682701px;}
.ls4f{letter-spacing:111.232200px;}
.lsa5{letter-spacing:271.746600px;}
.ls65{letter-spacing:288.183178px;}
.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;}
}
.ws6f{word-spacing:-47.324343px;}
.ws0{word-spacing:-28.532313px;}
.ws61{word-spacing:-14.943900px;}
.ws50{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.ws6{word-spacing:-10.460700px;}
.ws71{word-spacing:-3.347434px;}
.wsc3{word-spacing:-3.048556px;}
.ws75{word-spacing:-2.630126px;}
.wsb0{word-spacing:-2.450800px;}
.ws1c{word-spacing:-2.313331px;}
.ws55{word-spacing:-2.271473px;}
.ws2a{word-spacing:-2.211697px;}
.ws51{word-spacing:-2.092146px;}
.ws3{word-spacing:-1.908367px;}
.ws14{word-spacing:-1.829146px;}
.wsbe{word-spacing:-1.673717px;}
.wsf6{word-spacing:-1.560154px;}
.wsc0{word-spacing:-1.434614px;}
.ws2{word-spacing:-1.322630px;}
.ws64{word-spacing:-1.255288px;}
.ws57{word-spacing:-1.195512px;}
.wsf1{word-spacing:-1.183565px;}
.ws41{word-spacing:-1.075961px;}
.ws53{word-spacing:-1.016185px;}
.wsfa{word-spacing:-0.968371px;}
.wsb7{word-spacing:-0.806976px;}
.ws3c{word-spacing:-0.777083px;}
.ws86{word-spacing:-0.657532px;}
.wsb9{word-spacing:-0.591782px;}
.wsb8{word-spacing:-0.537984px;}
.ws4d{word-spacing:-0.537980px;}
.wsa8{word-spacing:-0.484186px;}
.ws29{word-spacing:-0.418429px;}
.ws38{word-spacing:-0.358654px;}
.ws35{word-spacing:-0.298878px;}
.wsaa{word-spacing:-0.268992px;}
.ws33{word-spacing:-0.239102px;}
.wsa9{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.ws19{word-spacing:-0.161395px;}
.ws34{word-spacing:-0.119551px;}
.wsd7{word-spacing:-0.107597px;}
.ws26{word-spacing:-0.059776px;}
.ws4a{word-spacing:-0.053798px;}
.ws2d{word-spacing:-0.047821px;}
.ws5a{word-spacing:-0.045430px;}
.ws7{word-spacing:-0.041843px;}
.ws5f{word-spacing:-0.035866px;}
.ws1{word-spacing:0.000000px;}
.wsc8{word-spacing:0.053798px;}
.ws23{word-spacing:0.059776px;}
.ws15{word-spacing:0.107597px;}
.ws22{word-spacing:0.119551px;}
.wsde{word-spacing:0.161395px;}
.ws36{word-spacing:0.179327px;}
.ws9{word-spacing:0.209214px;}
.ws16{word-spacing:0.215194px;}
.ws27{word-spacing:0.239102px;}
.wsd8{word-spacing:0.268992px;}
.wsb{word-spacing:0.292900px;}
.ws24{word-spacing:0.298878px;}
.ws87{word-spacing:0.321049px;}
.wsdb{word-spacing:0.322790px;}
.ws2e{word-spacing:0.358654px;}
.wsc9{word-spacing:0.376589px;}
.wsc5{word-spacing:0.418429px;}
.ws97{word-spacing:0.478205px;}
.ws2f{word-spacing:0.537980px;}
.ws9a{word-spacing:0.657532px;}
.ws48{word-spacing:0.661670px;}
.ws62{word-spacing:0.717307px;}
.ws99{word-spacing:0.836858px;}
.wsec{word-spacing:0.860774px;}
.ws59{word-spacing:0.956410px;}
.ws31{word-spacing:1.016185px;}
.wsa5{word-spacing:1.135736px;}
.ws37{word-spacing:1.195512px;}
.wsc4{word-spacing:1.255288px;}
.ws18{word-spacing:1.291162px;}
.ws96{word-spacing:1.315063px;}
.wsf3{word-spacing:1.344960px;}
.ws45{word-spacing:1.374839px;}
.wseb{word-spacing:1.398758px;}
.ws68{word-spacing:1.434614px;}
.ws1a{word-spacing:1.452557px;}
.ws1f{word-spacing:1.494390px;}
.wse0{word-spacing:1.613952px;}
.ws6c{word-spacing:1.762009px;}
.wsea{word-spacing:1.775347px;}
.ws30{word-spacing:1.793268px;}
.ws32{word-spacing:1.853044px;}
.wsa{word-spacing:2.008454px;}
.ws95{word-spacing:2.032370px;}
.ws7d{word-spacing:2.092146px;}
.wsa7{word-spacing:2.151922px;}
.wsd5{word-spacing:2.205734px;}
.wsa6{word-spacing:2.211697px;}
.ws40{word-spacing:2.450800px;}
.ws3f{word-spacing:2.510575px;}
.wsbf{word-spacing:2.570351px;}
.ws28{word-spacing:2.630126px;}
.wse8{word-spacing:2.636122px;}
.ws1b{word-spacing:2.689920px;}
.wsaf{word-spacing:2.809453px;}
.wsca{word-spacing:2.851315px;}
.ws58{word-spacing:2.869229px;}
.ws13{word-spacing:2.869236px;}
.ws76{word-spacing:2.929004px;}
.ws17{word-spacing:2.958912px;}
.ws7c{word-spacing:3.227882px;}
.wse1{word-spacing:3.227904px;}
.wsd2{word-spacing:3.281702px;}
.wsab{word-spacing:3.347434px;}
.ws3b{word-spacing:3.466985px;}
.wsc1{word-spacing:3.526760px;}
.ws1d{word-spacing:3.586536px;}
.ws20{word-spacing:3.825638px;}
.wsb5{word-spacing:3.873485px;}
.wsad{word-spacing:3.927283px;}
.ws9c{word-spacing:3.999000px;}
.ws52{word-spacing:4.004965px;}
.ws9d{word-spacing:4.005000px;}
.ws1e{word-spacing:4.124516px;}
.wsac{word-spacing:4.250074px;}
.wse2{word-spacing:4.357670px;}
.ws42{word-spacing:4.363619px;}
.wsb2{word-spacing:4.423394px;}
.ws4e{word-spacing:4.542946px;}
.wsb4{word-spacing:4.602721px;}
.ws7e{word-spacing:4.841824px;}
.ws7f{word-spacing:4.901599px;}
.wsb1{word-spacing:4.961375px;}
.ws46{word-spacing:5.200477px;}
.wsf5{word-spacing:5.379840px;}
.ws3d{word-spacing:5.499355px;}
.ws39{word-spacing:5.559131px;}
.ws91{word-spacing:5.618906px;}
.ws83{word-spacing:5.858009px;}
.wsb6{word-spacing:5.971622px;}
.wsae{word-spacing:6.025421px;}
.wsb3{word-spacing:6.037336px;}
.ws11{word-spacing:6.067206px;}
.ws12{word-spacing:6.150892px;}
.ws90{word-spacing:6.156887px;}
.ws5b{word-spacing:6.216662px;}
.wsba{word-spacing:6.443791px;}
.ws73{word-spacing:6.455765px;}
.ws82{word-spacing:6.575316px;}
.ws80{word-spacing:6.635092px;}
.wsc2{word-spacing:6.754643px;}
.ws44{word-spacing:6.814418px;}
.ws63{word-spacing:6.996158px;}
.ws74{word-spacing:7.113296px;}
.wsbb{word-spacing:7.173072px;}
.wsbc{word-spacing:7.232848px;}
.ws3e{word-spacing:7.412174px;}
.ws54{word-spacing:7.651277px;}
.wsc6{word-spacing:7.854566px;}
.ws21{word-spacing:7.890379px;}
.wsbd{word-spacing:7.950155px;}
.ws72{word-spacing:8.129482px;}
.wsa2{word-spacing:8.140500px;}
.ws9f{word-spacing:8.146500px;}
.ws3a{word-spacing:8.189257px;}
.ws81{word-spacing:8.368584px;}
.wsf{word-spacing:8.661460px;}
.wsd3{word-spacing:9.141206px;}
.wsf8{word-spacing:9.142243px;}
.wsf7{word-spacing:9.142522px;}
.wse7{word-spacing:9.143270px;}
.wse9{word-spacing:9.144509px;}
.wsd0{word-spacing:9.144758px;}
.wsfd{word-spacing:9.146803px;}
.wsc7{word-spacing:9.360922px;}
.ws8{word-spacing:10.460700px;}
.ws2b{word-spacing:11.904929px;}
.ws5{word-spacing:12.929425px;}
.ws8e{word-spacing:13.057892px;}
.wsef{word-spacing:13.180608px;}
.wsdd{word-spacing:13.234406px;}
.wse4{word-spacing:13.342003px;}
.wsf0{word-spacing:13.386384px;}
.wsee{word-spacing:13.388746px;}
.wse3{word-spacing:13.391779px;}
.wsfc{word-spacing:13.392029px;}
.wse6{word-spacing:13.392374px;}
.wsf9{word-spacing:13.392499px;}
.wsdf{word-spacing:13.392826px;}
.wsd4{word-spacing:13.395802px;}
.wsd9{word-spacing:13.610995px;}
.ws92{word-spacing:14.704798px;}
.wsf4{word-spacing:14.740762px;}
.ws43{word-spacing:14.884124px;}
.ws94{word-spacing:15.063451px;}
.wsf2{word-spacing:15.386342px;}
.wsfb{word-spacing:15.762931px;}
.ws8d{word-spacing:15.878537px;}
.ws5c{word-spacing:15.880082px;}
.ws88{word-spacing:15.882811px;}
.ws5e{word-spacing:15.886082px;}
.wsc{word-spacing:16.142252px;}
.wsd{word-spacing:16.151321px;}
.wsda{word-spacing:16.620787px;}
.wsd1{word-spacing:16.620883px;}
.wsd6{word-spacing:16.623706px;}
.wse5{word-spacing:16.838899px;}
.wse{word-spacing:17.699504px;}
.ws9b{word-spacing:17.938541px;}
.wsdc{word-spacing:18.022464px;}
.ws6d{word-spacing:18.457138px;}
.ws6b{word-spacing:18.458537px;}
.wsed{word-spacing:19.636416px;}
.ws8c{word-spacing:20.856811px;}
.ws65{word-spacing:20.860082px;}
.ws8a{word-spacing:20.862545px;}
.ws69{word-spacing:20.863138px;}
.ws98{word-spacing:20.880245px;}
.ws93{word-spacing:22.981219px;}
.ws10{word-spacing:27.448877px;}
.ws6e{word-spacing:28.355462px;}
.ws4{word-spacing:28.455541px;}
.ws70{word-spacing:44.831700px;}
.ws9e{word-spacing:128.517540px;}
.wscc{word-spacing:138.261888px;}
.wscd{word-spacing:183.183552px;}
.wsce{word-spacing:190.392538px;}
.wscb{word-spacing:204.111130px;}
.wscf{word-spacing:239.564275px;}
.wsa3{word-spacing:266.847600px;}
.wsa4{word-spacing:271.284000px;}
.ws78{word-spacing:282.979584px;}
.ws79{word-spacing:294.277248px;}
.ws7b{word-spacing:295.138022px;}
.wsa1{word-spacing:296.274000px;}
.ws77{word-spacing:299.388096px;}
.ws7a{word-spacing:330.268378px;}
.wsa0{word-spacing:345.630000px;}
.ws67{word-spacing:447.241039px;}
.ws4f{word-spacing:513.182938px;}
.ws60{word-spacing:561.890640px;}
.ws47{word-spacing:562.892659px;}
.ws66{word-spacing:592.675074px;}
.ws49{word-spacing:606.469363px;}
.ws56{word-spacing:653.327770px;}
.ws8f{word-spacing:694.472921px;}
.ws4c{word-spacing:716.002906px;}
.ws4b{word-spacing:724.371218px;}
.ws8b{word-spacing:801.949450px;}
.ws85{word-spacing:859.812230px;}
.ws5d{word-spacing:874.968768px;}
.ws89{word-spacing:899.874545px;}
.ws84{word-spacing:901.834477px;}
.ws6a{word-spacing:915.702416px;}
._66{margin-left:-21.628518px;}
._0{margin-left:-11.943245px;}
._2c{margin-left:-8.659895px;}
._f{margin-left:-7.307443px;}
._1{margin-left:-5.917824px;}
._35{margin-left:-4.774481px;}
._6{margin-left:-3.765852px;}
._b{margin-left:-2.630133px;}
._4{margin-left:-1.322630px;}
._5{width:1.091170px;}
._9{width:2.301354px;}
._3f{width:4.251635px;}
._4d{width:5.260439px;}
._3e{width:6.491955px;}
._3d{width:11.009586px;}
._7{width:12.969672px;}
._e{width:14.304386px;}
._c{width:16.009594px;}
._d{width:17.994146px;}
._13{width:19.307519px;}
._11{width:20.577626px;}
._19{width:22.116972px;}
._17{width:23.738480px;}
._12{width:24.926425px;}
._8{width:25.943736px;}
._14{width:26.958796px;}
._18{width:29.058509px;}
._10{width:30.425780px;}
._51{width:31.441966px;}
._a{width:32.637384px;}
._1b{width:33.840557px;}
._3c{width:35.566482px;}
._64{width:37.189651px;}
._40{width:38.689948px;}
._52{width:39.698566px;}
._1a{width:41.970045px;}
._63{width:45.938831px;}
._2{width:54.426185px;}
._65{width:61.868160px;}
._59{width:71.713267px;}
._3{width:79.335067px;}
._60{width:104.584090px;}
._53{width:140.037235px;}
._56{width:172.262477px;}
._61{width:175.651776px;}
._57{width:177.803712px;}
._54{width:181.246810px;}
._58{width:186.572851px;}
._55{width:187.971610px;}
._5b{width:193.297651px;}
._62{width:199.538266px;}
._5e{width:205.509888px;}
._5a{width:211.320115px;}
._5c{width:215.946778px;}
._5f{width:223.532352px;}
._5d{width:228.159014px;}
._47{width:296.429184px;}
._44{width:305.413517px;}
._45{width:307.726848px;}
._4b{width:309.448397px;}
._43{width:314.451648px;}
._4c{width:318.281299px;}
._4a{width:319.939085px;}
._42{width:325.221293px;}
._48{width:326.287296px;}
._41{width:335.217830px;}
._46{width:337.584960px;}
._2a{width:340.749101px;}
._49{width:343.717978px;}
._28{width:355.284634px;}
._31{width:437.273395px;}
._24{width:440.447501px;}
._33{width:451.314778px;}
._2f{width:466.916314px;}
._29{width:469.300694px;}
._22{width:476.922816px;}
._4f{width:489.328742px;}
._20{width:494.245901px;}
._3a{width:498.119386px;}
._21{width:506.135347px;}
._2d{width:511.515187px;}
._50{width:522.781382px;}
._1d{width:525.502771px;}
._2b{width:531.391795px;}
._1e{width:535.832064px;}
._38{width:555.091891px;}
._36{width:578.386598px;}
._27{width:579.570163px;}
._37{width:586.563955px;}
._1c{width:634.552128px;}
._26{width:641.115533px;}
._3b{width:674.233421px;}
._39{width:681.464333px;}
._25{width:697.227264px;}
._2e{width:706.372992px;}
._1f{width:716.756083px;}
._23{width:722.082125px;}
._32{width:724.287859px;}
._34{width:736.177306px;}
._30{width:737.737459px;}
._15{width:913.795980px;}
._4e{width:2487.714700px;}
._16{width:2511.624700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,73,130);}
.fsc{font-size:35.865600px;}
.fsd{font-size:37.371600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs9{font-size:43.600200px;}
.fsa{font-size:45.429600px;}
.fs3{font-size:47.236800px;}
.fse{font-size:47.337600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs8{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:62.286600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:114.129254px;}
.y0{bottom:0.000000px;}
.y3{bottom:1.739201px;}
.ya{bottom:3.425340px;}
.y9{bottom:14.151273px;}
.y2{bottom:30.271042px;}
.y4b{bottom:31.890000px;}
.y20e{bottom:89.047500px;}
.y9e{bottom:90.123000px;}
.y181{bottom:91.203000px;}
.y153{bottom:92.116500px;}
.y190{bottom:92.503500px;}
.y1d5{bottom:93.426000px;}
.yeb{bottom:95.971500px;}
.y21{bottom:102.823500px;}
.y247{bottom:103.557000px;}
.y4a{bottom:103.621500px;}
.y20d{bottom:106.308000px;}
.y9d{bottom:108.952500px;}
.y82{bottom:109.366500px;}
.y180{bottom:110.032500px;}
.y152{bottom:110.946000px;}
.y18f{bottom:111.333000px;}
.yea{bottom:114.801000px;}
.y1d4{bottom:119.965500px;}
.y20{bottom:120.711000px;}
.y246{bottom:120.817500px;}
.y49{bottom:122.449500px;}
.y20c{bottom:123.568500px;}
.y16a{bottom:125.377500px;}
.y9c{bottom:127.782000px;}
.y81{bottom:128.196000px;}
.y151{bottom:129.775500px;}
.y18e{bottom:130.162500px;}
.y17f{bottom:133.345500px;}
.ye9{bottom:133.630500px;}
.yc6{bottom:136.137000px;}
.y1d3{bottom:137.539500px;}
.y245{bottom:138.078000px;}
.y1f{bottom:138.600000px;}
.y20b{bottom:140.829000px;}
.y48{bottom:141.279000px;}
.y1a9{bottom:146.502000px;}
.y9b{bottom:146.611500px;}
.y80{bottom:147.025500px;}
.y150{bottom:148.605000px;}
.y18d{bottom:148.992000px;}
.ye8{bottom:152.460000px;}
.y122{bottom:153.979500px;}
.yc5{bottom:154.966500px;}
.y244{bottom:155.338500px;}
.y1e{bottom:156.487500px;}
.y20a{bottom:158.088000px;}
.y169{bottom:159.898500px;}
.y47{bottom:160.108500px;}
.y17e{bottom:163.773000px;}
.y1d2{bottom:164.080500px;}
.y1a8{bottom:165.331500px;}
.y7f{bottom:165.855000px;}
.y14f{bottom:167.434500px;}
.y18c{bottom:167.821500px;}
.y243{bottom:172.599000px;}
.yc4{bottom:173.796000px;}
.y1d{bottom:174.375000px;}
.y209{bottom:175.348500px;}
.ye7{bottom:175.773000px;}
.y131{bottom:177.589500px;}
.y121{bottom:177.918000px;}
.y168{bottom:178.728000px;}
.y46{bottom:178.938000px;}
.y17d{bottom:183.006000px;}
.y1a7{bottom:184.161000px;}
.y7e{bottom:184.684500px;}
.y14e{bottom:186.264000px;}
.y18b{bottom:186.649500px;}
.y242{bottom:189.858000px;}
.y1d1{bottom:190.621500px;}
.y9a{bottom:192.073500px;}
.y1c{bottom:192.264000px;}
.y208{bottom:192.609000px;}
.yc3{bottom:192.625500px;}
.y130{bottom:196.419000px;}
.y167{bottom:197.557500px;}
.y45{bottom:197.767500px;}
.y120{bottom:201.858000px;}
.y1a6{bottom:202.990500px;}
.y7d{bottom:203.514000px;}
.y14d{bottom:205.093500px;}
.y241{bottom:207.118500px;}
.y99{bottom:208.512000px;}
.ye6{bottom:209.419500px;}
.y207{bottom:209.869500px;}
.y18a{bottom:209.962500px;}
.y1b{bottom:210.151500px;}
.yc2{bottom:211.455000px;}
.y12f{bottom:215.248500px;}
.y166{bottom:216.387000px;}
.y44{bottom:216.597000px;}
.y1d0{bottom:217.161000px;}
.ye4{bottom:219.670500px;}
.y1a5{bottom:221.820000px;}
.y7c{bottom:222.343500px;}
.ye5{bottom:222.708000px;}
.y14b{bottom:223.923000px;}
.y240{bottom:224.379000px;}
.y98{bottom:224.950500px;}
.y11f{bottom:225.798000px;}
.y206{bottom:227.130000px;}
.y1a{bottom:228.039000px;}
.y14c{bottom:229.348500px;}
.yc1{bottom:230.284500px;}
.y12e{bottom:234.078000px;}
.y1cf{bottom:234.735000px;}
.y165{bottom:235.216500px;}
.y43{bottom:235.426500px;}
.y189{bottom:240.390000px;}
.y1a4{bottom:240.649500px;}
.y7b{bottom:241.173000px;}
.y97{bottom:241.389000px;}
.y23f{bottom:241.639500px;}
.y14a{bottom:242.752500px;}
.y205{bottom:244.390500px;}
.yc0{bottom:249.114000px;}
.y11e{bottom:249.738000px;}
.y1ce{bottom:252.310500px;}
.y12d{bottom:252.907500px;}
.y164{bottom:254.046000px;}
.y42{bottom:254.256000px;}
.ye2{bottom:256.680000px;}
.y96{bottom:257.827500px;}
.y23e{bottom:258.900000px;}
.y1a3{bottom:259.479000px;}
.y187{bottom:259.623000px;}
.y7a{bottom:260.002500px;}
.y149{bottom:261.582000px;}
.y204{bottom:261.651000px;}
.y188{bottom:264.505500px;}
.ye3{bottom:268.366500px;}
.y12c{bottom:271.737000px;}
.y163{bottom:272.875500px;}
.y41{bottom:273.085500px;}
.y11d{bottom:273.676500px;}
.y95{bottom:274.266000px;}
.y23d{bottom:276.160500px;}
.y1a2{bottom:278.308500px;}
.y79{bottom:278.832000px;}
.y1cd{bottom:278.850000px;}
.y203{bottom:278.911500px;}
.ye1{bottom:279.993000px;}
.y193{bottom:280.254000px;}
.y148{bottom:280.411500px;}
.y94{bottom:290.704500px;}
.y162{bottom:291.705000px;}
.y40{bottom:291.915000px;}
.y23c{bottom:293.421000px;}
.ybf{bottom:294.576000px;}
.y202{bottom:296.172000px;}
.y1cc{bottom:296.424000px;}
.y1a1{bottom:297.138000px;}
.y78{bottom:297.661500px;}
.ye0{bottom:298.881000px;}
.y191{bottom:299.487000px;}
.y17a{bottom:300.771000px;}
.y147{bottom:303.724500px;}
.y192{bottom:304.369500px;}
.y12b{bottom:305.302500px;}
.y11c{bottom:305.611500px;}
.y93{bottom:307.143000px;}
.y19{bottom:307.299000px;}
.y161{bottom:310.534500px;}
.y23b{bottom:310.681500px;}
.y3f{bottom:310.744500px;}
.ybe{bottom:311.014500px;}
.y201{bottom:313.431000px;}
.y1cb{bottom:313.998000px;}
.y1a0{bottom:315.967500px;}
.y77{bottom:316.491000px;}
.ydf{bottom:317.710500px;}
.y179{bottom:319.600500px;}
.y146{bottom:323.898000px;}
.y18{bottom:325.186500px;}
.ybd{bottom:327.453000px;}
.y23a{bottom:327.940500px;}
.y160{bottom:329.364000px;}
.y3e{bottom:329.574000px;}
.y200{bottom:330.691500px;}
.y92{bottom:331.081500px;}
.y1ca{bottom:331.572000px;}
.y19f{bottom:334.797000px;}
.y76{bottom:335.320500px;}
.yde{bottom:336.540000px;}
.y178{bottom:338.430000px;}
.y17{bottom:343.074000px;}
.ybc{bottom:343.891500px;}
.y11b{bottom:344.272500px;}
.y239{bottom:345.201000px;}
.y1ff{bottom:347.952000px;}
.y15f{bottom:348.193500px;}
.y3d{bottom:348.403500px;}
.y1c9{bottom:349.147500px;}
.y19e{bottom:353.626500px;}
.y75{bottom:354.150000px;}
.ydd{bottom:355.369500px;}
.y145{bottom:356.994000px;}
.y177{bottom:357.259500px;}
.ybb{bottom:360.330000px;}
.y16{bottom:360.963000px;}
.y238{bottom:362.461500px;}
.y91{bottom:362.701500px;}
.y1fe{bottom:365.212500px;}
.y15e{bottom:367.023000px;}
.y3c{bottom:367.233000px;}
.y144{bottom:367.245000px;}
.y19d{bottom:372.456000px;}
.y74{bottom:372.979500px;}
.y176{bottom:376.089000px;}
.yba{bottom:376.768500px;}
.y237{bottom:379.722000px;}
.y1fd{bottom:382.473000px;}
.y1c8{bottom:384.654000px;}
.y15d{bottom:385.852500px;}
.y3b{bottom:386.062500px;}
.ydc{bottom:389.635500px;}
.y19c{bottom:391.285500px;}
.y73{bottom:391.809000px;}
.y90{bottom:392.395500px;}
.y175{bottom:394.918500px;}
.y236{bottom:396.982500px;}
.y15{bottom:399.024000px;}
.y1fc{bottom:399.733500px;}
.ydb{bottom:399.886500px;}
.yb9{bottom:400.707000px;}
.y1c7{bottom:403.483500px;}
.y15c{bottom:404.682000px;}
.y3a{bottom:404.892000px;}
.y143{bottom:405.300000px;}
.y19b{bottom:410.115000px;}
.y72{bottom:410.638500px;}
.y174{bottom:413.748000px;}
.y235{bottom:414.243000px;}
.y14{bottom:416.913000px;}
.y1fb{bottom:416.994000px;}
.y1c6{bottom:422.313000px;}
.y15b{bottom:423.511500px;}
.y39{bottom:423.721500px;}
.y142{bottom:424.129500px;}
.y19a{bottom:428.944500px;}
.y71{bottom:429.468000px;}
.y234{bottom:431.503500px;}
.yb8{bottom:432.327000px;}
.y173{bottom:432.577500px;}
.y1fa{bottom:434.254500px;}
.y13{bottom:434.800500px;}
.y1c5{bottom:441.142500px;}
.y15a{bottom:442.341000px;}
.y38{bottom:442.551000px;}
.y141{bottom:442.959000px;}
.yda{bottom:443.985000px;}
.y199{bottom:447.772500px;}
.y70{bottom:448.297500px;}
.y233{bottom:448.764000px;}
.y172{bottom:451.407000px;}
.y1f8{bottom:451.513500px;}
.y1f9{bottom:451.515000px;}
.y1c4{bottom:459.972000px;}
.y37{bottom:461.380500px;}
.y140{bottom:461.788500px;}
.yd9{bottom:462.814500px;}
.y232{bottom:466.024500px;}
.y198{bottom:466.602000px;}
.y6f{bottom:467.127000px;}
.y1f7{bottom:468.774000px;}
.yb7{bottom:469.431000px;}
.y12{bottom:470.622000px;}
.y159{bottom:475.906500px;}
.y1c3{bottom:478.801500px;}
.y36{bottom:480.210000px;}
.yd8{bottom:481.644000px;}
.y11a{bottom:482.472000px;}
.y231{bottom:483.283500px;}
.y171{bottom:484.972500px;}
.y197{bottom:485.431500px;}
.y6e{bottom:485.956500px;}
.y1f6{bottom:486.034500px;}
.yb6{bottom:488.260500px;}
.y13f{bottom:490.032000px;}
.y1c2{bottom:497.631000px;}
.y35{bottom:499.039500px;}
.yd7{bottom:500.473500px;}
.y230{bottom:500.544000px;}
.y119{bottom:501.300000px;}
.y1f5{bottom:503.295000px;}
.y6d{bottom:504.786000px;}
.y11{bottom:506.442000px;}
.yb5{bottom:507.090000px;}
.y196{bottom:508.744500px;}
.y1c1{bottom:516.460500px;}
.y22f{bottom:517.804500px;}
.y34{bottom:517.869000px;}
.y13e{bottom:518.277000px;}
.yd6{bottom:519.303000px;}
.y118{bottom:520.129500px;}
.y1f4{bottom:520.555500px;}
.y6c{bottom:523.615500px;}
.y10{bottom:524.329500px;}
.yb4{bottom:525.919500px;}
.y22e{bottom:535.065000px;}
.y1c0{bottom:535.290000px;}
.y13d{bottom:537.106500px;}
.y1f3{bottom:537.816000px;}
.yd5{bottom:538.132500px;}
.y117{bottom:538.959000px;}
.y195{bottom:539.283000px;}
.y33{bottom:541.180500px;}
.yf{bottom:542.218500px;}
.y6b{bottom:542.445000px;}
.yb3{bottom:544.749000px;}
.y22d{bottom:552.325500px;}
.y1bf{bottom:554.118000px;}
.y1f2{bottom:555.076500px;}
.y13b{bottom:555.936000px;}
.y116{bottom:557.788500px;}
.y194{bottom:558.516000px;}
.y13c{bottom:559.455000px;}
.ye{bottom:560.106000px;}
.y6a{bottom:561.274500px;}
.yd4{bottom:563.088000px;}
.yb2{bottom:563.578500px;}
.y22c{bottom:569.586000px;}
.y1f1{bottom:572.337000px;}
.y1be{bottom:572.947500px;}
.yd2{bottom:573.340500px;}
.y13a{bottom:574.765500px;}
.yd3{bottom:576.376500px;}
.y115{bottom:576.618000px;}
.yd{bottom:577.993500px;}
.y69{bottom:580.104000px;}
.y12a{bottom:584.809500px;}
.y22b{bottom:586.846500px;}
.y1f0{bottom:589.597500px;}
.y1bd{bottom:591.777000px;}
.y139{bottom:593.595000px;}
.y114{bottom:595.447500px;}
.yc{bottom:595.882500px;}
.y68{bottom:598.932000px;}
.y129{bottom:603.639000px;}
.y22a{bottom:604.107000px;}
.yb1{bottom:609.040500px;}
.y1bc{bottom:610.606500px;}
.y1ef{bottom:611.340000px;}
.yb{bottom:613.770000px;}
.y113{bottom:614.277000px;}
.y32{bottom:616.330500px;}
.yd1{bottom:617.244000px;}
.y67{bottom:617.761500px;}
.y229{bottom:621.366000px;}
.y128{bottom:622.468500px;}
.yb0{bottom:625.479000px;}
.y138{bottom:626.523000px;}
.y1bb{bottom:629.436000px;}
.y112{bottom:633.106500px;}
.y8{bottom:636.141055px;}
.y66{bottom:636.591000px;}
.y228{bottom:638.626500px;}
.y127{bottom:641.298000px;}
.yaf{bottom:641.917500px;}
.y17c{bottom:644.658000px;}
.y1ee{bottom:647.023500px;}
.y1ba{bottom:648.265500px;}
.yd0{bottom:651.765000px;}
.y111{bottom:651.936000px;}
.y31{bottom:653.721000px;}
.y65{bottom:655.420500px;}
.y227{bottom:655.887000px;}
.yae{bottom:658.356000px;}
.y126{bottom:660.127500px;}
.y137{bottom:662.380500px;}
.y17b{bottom:663.891000px;}
.y1ed{bottom:664.597500px;}
.y1b9{bottom:667.095000px;}
.ycf{bottom:670.594500px;}
.y110{bottom:670.765500px;}
.y226{bottom:673.147500px;}
.y30{bottom:673.177500px;}
.y64{bottom:674.250000px;}
.yad{bottom:674.794500px;}
.y125{bottom:678.957000px;}
.y136{bottom:681.210000px;}
.y1ec{bottom:682.171500px;}
.y1b8{bottom:685.924500px;}
.y10f{bottom:689.595000px;}
.y225{bottom:690.408000px;}
.y2f{bottom:692.635500px;}
.y63{bottom:693.079500px;}
.yac{bottom:698.733000px;}
.y1eb{bottom:699.745500px;}
.y135{bottom:700.039500px;}
.y124{bottom:702.270000px;}
.yce{bottom:704.160000px;}
.y1b7{bottom:704.754000px;}
.y224{bottom:707.668500px;}
.y10e{bottom:708.424500px;}
.y62{bottom:711.909000px;}
.y2e{bottom:712.092000px;}
.y1ea{bottom:717.319500px;}
.y134{bottom:718.869000px;}
.y1b6{bottom:723.583500px;}
.y223{bottom:724.929000px;}
.y10d{bottom:727.254000px;}
.yab{bottom:730.353000px;}
.y61{bottom:730.738500px;}
.y2d{bottom:731.550000px;}
.y123{bottom:732.697500px;}
.y1e9{bottom:734.895000px;}
.y133{bottom:742.182000px;}
.y222{bottom:742.189500px;}
.y1b5{bottom:742.413000px;}
.y10c{bottom:746.083500px;}
.y60{bottom:749.568000px;}
.y2c{bottom:751.006500px;}
.y1e8{bottom:752.469000px;}
.y221{bottom:759.450000px;}
.y1b4{bottom:761.242500px;}
.yaa{bottom:763.564500px;}
.y10b{bottom:764.913000px;}
.y5f{bottom:768.397500px;}
.y1e7{bottom:770.043000px;}
.y2b{bottom:770.463000px;}
.y132{bottom:772.609500px;}
.y220{bottom:776.709000px;}
.y1b3{bottom:780.072000px;}
.ya9{bottom:782.394000px;}
.y10a{bottom:783.742500px;}
.y5e{bottom:787.227000px;}
.y1e6{bottom:787.617000px;}
.y2a{bottom:789.921000px;}
.y21f{bottom:793.969500px;}
.y1b2{bottom:798.901500px;}
.ya8{bottom:801.223500px;}
.y1e5{bottom:805.191000px;}
.y5d{bottom:806.056500px;}
.y109{bottom:807.055500px;}
.y29{bottom:809.377500px;}
.y21e{bottom:811.230000px;}
.y1b1{bottom:817.731000px;}
.ya7{bottom:820.053000px;}
.y1e4{bottom:822.765000px;}
.y5c{bottom:824.886000px;}
.y21d{bottom:828.490500px;}
.y28{bottom:828.834000px;}
.y1b0{bottom:836.560500px;}
.ya6{bottom:838.882500px;}
.y1e3{bottom:840.339000px;}
.y5b{bottom:843.715500px;}
.y107{bottom:844.245000px;}
.y21c{bottom:845.751000px;}
.y27{bottom:848.292000px;}
.yfe{bottom:853.605000px;}
.y1af{bottom:855.390000px;}
.y106{bottom:856.324500px;}
.ya5{bottom:857.712000px;}
.y1e2{bottom:857.913000px;}
.y8f{bottom:858.079500px;}
.yfd{bottom:858.088500px;}
.y186{bottom:859.873500px;}
.y5a{bottom:862.545000px;}
.yfc{bottom:862.572000px;}
.y21b{bottom:863.011500px;}
.yfb{bottom:867.055500px;}
.y26{bottom:867.748500px;}
.yfa{bottom:871.537500px;}
.y1ae{bottom:874.219500px;}
.y1e1{bottom:875.487000px;}
.yf9{bottom:876.021000px;}
.ya4{bottom:876.541500px;}
.y8e{bottom:876.909000px;}
.y185{bottom:878.703000px;}
.y21a{bottom:880.272000px;}
.yf8{bottom:880.504500px;}
.y59{bottom:881.374500px;}
.y108{bottom:890.218500px;}
.y1ad{bottom:893.049000px;}
.y1e0{bottom:893.061000px;}
.y8d{bottom:895.738500px;}
.y184{bottom:897.532500px;}
.y58{bottom:900.204000px;}
.y25{bottom:904.342500px;}
.y103{bottom:906.868500px;}
.yf7{bottom:907.404000px;}
.y1df{bottom:910.635000px;}
.y1ac{bottom:911.878500px;}
.yf6{bottom:911.886000px;}
.y105{bottom:912.030000px;}
.y8c{bottom:914.568000px;}
.y248{bottom:914.791500px;}
.y219{bottom:914.793000px;}
.y183{bottom:916.362000px;}
.yf5{bottom:916.369500px;}
.y104{bottom:917.917500px;}
.y102{bottom:918.451500px;}
.y57{bottom:919.033500px;}
.y24{bottom:920.482500px;}
.yf4{bottom:920.853000px;}
.ya3{bottom:922.003500px;}
.y100{bottom:924.111000px;}
.yff{bottom:924.327000px;}
.yf3{bottom:925.336500px;}
.y1de{bottom:928.209000px;}
.y101{bottom:929.470500px;}
.yf2{bottom:929.820000px;}
.y1ab{bottom:930.708000px;}
.y218{bottom:932.052000px;}
.y8b{bottom:933.397500px;}
.yf1{bottom:934.302000px;}
.y182{bottom:935.191500px;}
.y23{bottom:936.621000px;}
.y56{bottom:937.863000px;}
.ya2{bottom:938.754000px;}
.y1dd{bottom:945.783000px;}
.yf0{bottom:947.752500px;}
.y217{bottom:949.312500px;}
.y1aa{bottom:949.537500px;}
.y8a{bottom:952.227000px;}
.y22{bottom:952.761000px;}
.y158{bottom:954.021000px;}
.ya1{bottom:955.504500px;}
.y55{bottom:956.692500px;}
.y1dc{bottom:963.357000px;}
.y216{bottom:966.573000px;}
.ycd{bottom:968.367000px;}
.yef{bottom:970.675500px;}
.y89{bottom:971.056500px;}
.y157{bottom:972.849000px;}
.y54{bottom:975.522000px;}
.ya0{bottom:979.444500px;}
.y1db{bottom:980.931000px;}
.y215{bottom:983.833500px;}
.y170{bottom:985.480500px;}
.ycc{bottom:987.196500px;}
.yee{bottom:989.505000px;}
.y156{bottom:991.678500px;}
.y53{bottom:994.351500px;}
.y88{bottom:994.369500px;}
.y7{bottom:995.302500px;}
.y1da{bottom:998.506500px;}
.y214{bottom:1001.094000px;}
.y16f{bottom:1002.438000px;}
.ycb{bottom:1006.026000px;}
.y155{bottom:1010.508000px;}
.y9f{bottom:1011.063000px;}
.y52{bottom:1013.181000px;}
.y87{bottom:1014.543000px;}
.y1d9{bottom:1016.080500px;}
.y213{bottom:1018.354500px;}
.yed{bottom:1018.788000px;}
.yca{bottom:1024.855500px;}
.y16e{bottom:1026.637500px;}
.yec{bottom:1029.039000px;}
.y154{bottom:1029.337500px;}
.y51{bottom:1032.010500px;}
.y1d8{bottom:1033.654500px;}
.y212{bottom:1035.615000px;}
.y6{bottom:1041.199500px;}
.yc9{bottom:1043.685000px;}
.y86{bottom:1048.167000px;}
.y16d{bottom:1050.577500px;}
.y50{bottom:1050.840000px;}
.y1d7{bottom:1051.228500px;}
.y211{bottom:1052.875500px;}
.yc8{bottom:1062.513000px;}
.y85{bottom:1066.996500px;}
.y5{bottom:1069.443000px;}
.y4f{bottom:1069.669500px;}
.y210{bottom:1070.134500px;}
.y16c{bottom:1074.517500px;}
.yc7{bottom:1081.342500px;}
.y1d6{bottom:1082.598000px;}
.y84{bottom:1085.826000px;}
.y20f{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y4{bottom:1097.688000px;}
.y83{bottom:1104.655500px;}
.y16b{bottom:1106.137500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h18{height:2.391024px;}
.h2b{height:21.407698px;}
.h25{height:23.242762px;}
.h7{height:25.508090px;}
.h10{height:27.855430px;}
.h20{height:30.582721px;}
.h9{height:33.112997px;}
.h1a{height:33.299897px;}
.h8{height:34.199443px;}
.ha{height:37.993262px;}
.hc{height:38.734848px;}
.h22{height:39.364848px;}
.h1b{height:41.250077px;}
.h2a{height:42.380900px;}
.h6{height:43.038432px;}
.hb{height:43.421105px;}
.h4{height:43.815515px;}
.h15{height:46.714950px;}
.hd{height:48.848947px;}
.h21{height:49.924848px;}
.h2{height:50.931027px;}
.he{height:54.276245px;}
.hf{height:56.269262px;}
.h29{height:56.479262px;}
.h28{height:56.485262px;}
.h26{height:62.952077px;}
.h27{height:65.940077px;}
.h12{height:75.034950px;}
.h23{height:76.875936px;}
.h3{height:77.379634px;}
.h5{height:77.469696px;}
.h11{height:80.342700px;}
.h16{height:80.348700px;}
.h13{height:84.285515px;}
.h24{height:94.746245px;}
.h17{height:95.280245px;}
.h1f{height:104.643024px;}
.h19{height:108.996077px;}
.h14{height:109.779024px;}
.h1e{height:152.961024px;}
.h1d{height:155.184077px;}
.h1c{height:173.607024px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:207.609956px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:58.054042px;}
.xc2{left:85.890000px;}
.xbb{left:93.489000px;}
.xba{left:99.103500px;}
.xb9{left:102.828000px;}
.xcc{left:149.569500px;}
.xc3{left:154.117500px;}
.xac{left:186.244500px;}
.xb8{left:244.291500px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.xcd{left:261.759000px;}
.x8c{left:267.996000px;}
.x3c{left:269.730000px;}
.xc1{left:270.994500px;}
.x25{left:272.962500px;}
.x3b{left:275.485500px;}
.x3e{left:277.248000px;}
.x8{left:282.786000px;}
.x3d{left:284.706000px;}
.x26{left:287.907000px;}
.x86{left:290.200500px;}
.x3a{left:291.202500px;}
.x30{left:292.932000px;}
.x87{left:295.413000px;}
.x39{left:296.938500px;}
.xc4{left:298.230000px;}
.x36{left:300.261000px;}
.x81{left:301.798500px;}
.xc5{left:304.954500px;}
.x44{left:306.501000px;}
.x27{left:307.800000px;}
.x6{left:309.183000px;}
.x8d{left:310.252500px;}
.x31{left:311.679000px;}
.x38{left:313.420500px;}
.xbf{left:314.838000px;}
.x37{left:317.521500px;}
.x7{left:319.852500px;}
.x28{left:322.744500px;}
.x29{left:326.554500px;}
.x45{left:328.225500px;}
.x43{left:329.680500px;}
.x1a{left:330.987000px;}
.x32{left:332.074500px;}
.xa2{left:333.175500px;}
.x9{left:334.464000px;}
.x8e{left:338.824500px;}
.xa{left:341.935500px;}
.x46{left:343.170000px;}
.x2e{left:344.299500px;}
.x1b{left:345.930000px;}
.x33{left:347.017500px;}
.x34{left:350.829000px;}
.x82{left:354.252000px;}
.x4d{left:357.864000px;}
.x2f{left:359.244000px;}
.x1f{left:360.342000px;}
.xb3{left:364.467000px;}
.x35{left:365.772000px;}
.x8b{left:368.284500px;}
.x4e{left:372.808500px;}
.x5a{left:373.939500px;}
.x83{left:376.500000px;}
.xb4{left:379.411500px;}
.x8f{left:382.515000px;}
.x73{left:384.796500px;}
.xb5{left:386.988000px;}
.x9c{left:390.153000px;}
.x5b{left:391.546500px;}
.x91{left:393.540000px;}
.x9e{left:397.009500px;}
.x22{left:400.908000px;}
.xb6{left:401.931000px;}
.x92{left:410.964000px;}
.x56{left:413.461500px;}
.x23{left:415.852500px;}
.x6a{left:417.328500px;}
.x7a{left:419.614500px;}
.x64{left:421.161000px;}
.x2a{left:422.974500px;}
.x9f{left:426.331500px;}
.xc6{left:428.568000px;}
.x6b{left:431.985000px;}
.x7c{left:433.512000px;}
.x7b{left:436.449000px;}
.x2b{left:437.917500px;}
.x84{left:440.700000px;}
.xa0{left:442.303500px;}
.xc7{left:446.100000px;}
.xce{left:449.947500px;}
.xa5{left:453.331500px;}
.xcb{left:454.387500px;}
.x99{left:457.264500px;}
.x65{left:462.214500px;}
.x16{left:463.665000px;}
.xaf{left:471.613500px;}
.x7d{left:472.980000px;}
.x1c{left:474.477000px;}
.x17{left:478.608000px;}
.xa1{left:480.199500px;}
.xb{left:481.264500px;}
.x55{left:487.119000px;}
.xc{left:488.736000px;}
.x85{left:490.206000px;}
.x62{left:496.737000px;}
.x78{left:501.013500px;}
.x71{left:508.884000px;}
.x90{left:511.368000px;}
.x70{left:513.352500px;}
.x5d{left:516.139500px;}
.x80{left:519.702000px;}
.x7e{left:522.490500px;}
.x57{left:523.528500px;}
.x63{left:524.689500px;}
.x6c{left:526.786500px;}
.xcf{left:532.047000px;}
.x5e{left:533.563500px;}
.xd0{left:538.018500px;}
.x6d{left:545.911500px;}
.x79{left:549.697500px;}
.xad{left:552.885000px;}
.xc0{left:555.733500px;}
.xbc{left:559.039500px;}
.x7f{left:563.406000px;}
.xbd{left:565.765500px;}
.xae{left:567.828000px;}
.xb0{left:574.912500px;}
.xb1{left:581.592000px;}
.xc8{left:582.940500px;}
.x5f{left:587.596500px;}
.xc9{left:588.912000px;}
.x4f{left:590.037000px;}
.xf{left:594.810000px;}
.xa6{left:597.598500px;}
.x10{left:602.281500px;}
.x13{left:605.911500px;}
.x50{left:607.461000px;}
.x5c{left:616.230000px;}
.x4a{left:617.559000px;}
.x9d{left:619.848000px;}
.x14{left:620.854500px;}
.xd1{left:627.580500px;}
.x95{left:628.648500px;}
.x58{left:632.485500px;}
.x15{left:635.803500px;}
.x76{left:640.147500px;}
.x60{left:646.398000px;}
.x66{left:649.269000px;}
.x4b{left:656.286000px;}
.x77{left:657.571500px;}
.x74{left:661.150500px;}
.xa3{left:666.223500px;}
.x67{left:667.669500px;}
.xa7{left:671.943000px;}
.x59{left:673.546500px;}
.x4c{left:675.628500px;}
.xa8{left:678.750000px;}
.xa4{left:683.649000px;}
.x11{left:690.627000px;}
.x51{left:691.890000px;}
.xb7{left:693.036000px;}
.x12{left:698.100000px;}
.x3f{left:700.227000px;}
.x75{left:702.211500px;}
.x96{left:703.297500px;}
.xd2{left:704.302500px;}
.x20{left:707.634000px;}
.x40{left:709.456500px;}
.xd3{left:711.028500px;}
.x52{left:713.544000px;}
.x47{left:717.616500px;}
.x21{left:722.578500px;}
.xb2{left:724.047000px;}
.x1d{left:727.119000px;}
.x93{left:728.466000px;}
.x48{left:733.918500px;}
.xd6{left:736.447500px;}
.x1e{left:742.062000px;}
.x53{left:745.680000px;}
.x18{left:748.945500px;}
.xaa{left:750.684000px;}
.x97{left:753.160500px;}
.xbe{left:754.440000px;}
.x88{left:756.877500px;}
.xd7{left:758.391000px;}
.x49{left:759.703500px;}
.x54{left:761.520000px;}
.x19{left:763.888500px;}
.xab{left:765.627000px;}
.x68{left:769.012500px;}
.x89{left:771.822000px;}
.x98{left:775.887000px;}
.xca{left:780.318000px;}
.x69{left:785.529000px;}
.x41{left:789.015000px;}
.x9a{left:791.134500px;}
.xd5{left:795.556500px;}
.x42{left:798.246000px;}
.x8a{left:800.248500px;}
.xd4{left:810.306000px;}
.x94{left:813.106500px;}
.x9b{left:814.119000px;}
.xa9{left:815.520000px;}
.x24{left:817.819500px;}
.x2c{left:819.093000px;}
.x6e{left:820.390500px;}
.x72{left:821.488500px;}
.xd{left:825.370500px;}
.x61{left:828.409500px;}
.xe{left:832.842000px;}
.x2d{left:834.036000px;}
.x6f{left:837.814500px;}
@media print{
.ve{vertical-align:-59.008000pt;}
.v5{vertical-align:-11.120000pt;}
.va{vertical-align:-10.170667pt;}
.v23{vertical-align:-8.949333pt;}
.v1{vertical-align:-7.173333pt;}
.v15{vertical-align:-6.058667pt;}
.v8{vertical-align:-4.784000pt;}
.v1c{vertical-align:-2.784000pt;}
.v2{vertical-align:-1.109333pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:7.973333pt;}
.v24{vertical-align:8.949333pt;}
.v1f{vertical-align:9.946667pt;}
.vd{vertical-align:11.120000pt;}
.v3{vertical-align:16.245333pt;}
.v4{vertical-align:17.354667pt;}
.v21{vertical-align:19.290667pt;}
.v22{vertical-align:21.946667pt;}
.v9{vertical-align:25.173333pt;}
.v25{vertical-align:26.314667pt;}
.v1e{vertical-align:27.477333pt;}
.v1d{vertical-align:31.882667pt;}
.vb{vertical-align:35.973333pt;}
.v12{vertical-align:37.386667pt;}
.v1a{vertical-align:42.954667pt;}
.v10{vertical-align:43.941333pt;}
.v7{vertical-align:46.501333pt;}
.v14{vertical-align:54.160000pt;}
.v6{vertical-align:59.002667pt;}
.v13{vertical-align:60.218667pt;}
.v20{vertical-align:66.421333pt;}
.v18{vertical-align:88.784000pt;}
.v11{vertical-align:90.885333pt;}
.vc{vertical-align:95.456000pt;}
.v17{vertical-align:98.693333pt;}
.v1b{vertical-align:101.274667pt;}
.v19{vertical-align:133.840000pt;}
.v16{vertical-align:152.192000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000234pt;}
.lsab{letter-spacing:0.000375pt;}
.lsa9{letter-spacing:0.001007pt;}
.lsb3{letter-spacing:0.004267pt;}
.ls2f{letter-spacing:0.097067pt;}
.ls2c{letter-spacing:0.102400pt;}
.ls17{letter-spacing:0.441053pt;}
.lsa7{letter-spacing:0.442457pt;}
.lsa3{letter-spacing:0.447791pt;}
.ls52{letter-spacing:0.482502pt;}
.ls56{letter-spacing:0.487835pt;}
.ls53{letter-spacing:0.502400pt;}
.lsa{letter-spacing:0.570745pt;}
.lsa4{letter-spacing:0.576078pt;}
.ls85{letter-spacing:0.601548pt;}
.ls61{letter-spacing:0.649682pt;}
.ls39{letter-spacing:0.652455pt;}
.ls5e{letter-spacing:0.654188pt;}
.ls9a{letter-spacing:0.659733pt;}
.ls20{letter-spacing:0.665067pt;}
.ls88{letter-spacing:0.729548pt;}
.ls3d{letter-spacing:0.731185pt;}
.ls3a{letter-spacing:0.736518pt;}
.ls5c{letter-spacing:0.777682pt;}
.ls1a{letter-spacing:0.794351pt;}
.ls6a{letter-spacing:0.796173pt;}
.ls16{letter-spacing:0.796646pt;}
.ls1d{letter-spacing:0.825745pt;}
.ls62{letter-spacing:0.901044pt;}
.ls55{letter-spacing:0.902400pt;}
.ls50{letter-spacing:0.907733pt;}
.ls54{letter-spacing:0.989169pt;}
.ls4{letter-spacing:1.133683pt;}
.ls7f{letter-spacing:1.166903pt;}
.lsd{letter-spacing:1.167711pt;}
.ls81{letter-spacing:1.172237pt;}
.ls44{letter-spacing:1.173044pt;}
.ls94{letter-spacing:1.193067pt;}
.ls38{letter-spacing:1.262881pt;}
.ls5f{letter-spacing:1.315521pt;}
.ls14{letter-spacing:1.319121pt;}
.ls75{letter-spacing:1.324173pt;}
.ls96{letter-spacing:1.326400pt;}
.ls84{letter-spacing:1.326903pt;}
.ls68{letter-spacing:1.327207pt;}
.ls72{letter-spacing:1.329506pt;}
.ls69{letter-spacing:1.331543pt;}
.ls82{letter-spacing:1.352429pt;}
.ls19{letter-spacing:1.420773pt;}
.ls66{letter-spacing:1.592563pt;}
.ls6b{letter-spacing:1.597897pt;}
.ls0{letter-spacing:1.654338pt;}
.ls2b{letter-spacing:1.859543pt;}
.ls2a{letter-spacing:1.861348pt;}
.ls35{letter-spacing:1.956214pt;}
.lsc{letter-spacing:2.061089pt;}
.ls10{letter-spacing:2.066422pt;}
.ls18{letter-spacing:2.134255pt;}
.ls34{letter-spacing:2.158172pt;}
.ls2e{letter-spacing:2.163505pt;}
.ls93{letter-spacing:2.169548pt;}
.ls60{letter-spacing:2.217682pt;}
.ls8c{letter-spacing:2.321067pt;}
.ls8f{letter-spacing:2.324214pt;}
.ls67{letter-spacing:2.390839pt;}
.ls90{letter-spacing:2.601874pt;}
.ls8b{letter-spacing:2.657067pt;}
.ls89{letter-spacing:2.920677pt;}
.lsb{letter-spacing:3.123467pt;}
.ls3f{letter-spacing:3.294121pt;}
.ls57{letter-spacing:3.318400pt;}
.ls1c{letter-spacing:3.456623pt;}
.ls51{letter-spacing:3.557956pt;}
.lsaa{letter-spacing:3.585929pt;}
.ls31{letter-spacing:3.975121pt;}
.ls2d{letter-spacing:3.981897pt;}
.ls33{letter-spacing:3.987230pt;}
.ls13{letter-spacing:4.230451pt;}
.ls1b{letter-spacing:5.049139pt;}
.ls5b{letter-spacing:6.094400pt;}
.ls45{letter-spacing:6.478121pt;}
.ls3e{letter-spacing:6.481067pt;}
.ls25{letter-spacing:6.483454pt;}
.ls41{letter-spacing:6.486400pt;}
.ls48{letter-spacing:7.038400pt;}
.ls15{letter-spacing:7.437593pt;}
.ls92{letter-spacing:8.498118pt;}
.ls8e{letter-spacing:8.503452pt;}
.ls5a{letter-spacing:9.268349pt;}
.ls95{letter-spacing:9.521867pt;}
.ls42{letter-spacing:9.670400pt;}
.ls87{letter-spacing:9.697067pt;}
.lsac{letter-spacing:9.994745pt;}
.ls7c{letter-spacing:10.179344pt;}
.ls2{letter-spacing:10.626533pt;}
.lsb4{letter-spacing:10.895920pt;}
.ls1f{letter-spacing:10.968429pt;}
.ls47{letter-spacing:10.995733pt;}
.lsb6{letter-spacing:11.099079pt;}
.ls79{letter-spacing:11.101762pt;}
.ls59{letter-spacing:11.629762pt;}
.ls7e{letter-spacing:11.632696pt;}
.ls32{letter-spacing:11.635096pt;}
.ls9e{letter-spacing:11.638029pt;}
.ls58{letter-spacing:11.647016pt;}
.ls21{letter-spacing:11.649788pt;}
.ls9f{letter-spacing:11.657067pt;}
.ls7b{letter-spacing:11.661593pt;}
.ls74{letter-spacing:11.662400pt;}
.lsae{letter-spacing:11.846107pt;}
.lsb2{letter-spacing:11.881535pt;}
.lsb1{letter-spacing:11.896652pt;}
.ls6c{letter-spacing:11.933897pt;}
.lsa0{letter-spacing:11.953195pt;}
.lsad{letter-spacing:11.954133pt;}
.lsb0{letter-spacing:11.959467pt;}
.ls99{letter-spacing:12.190400pt;}
.ls37{letter-spacing:12.323096pt;}
.ls83{letter-spacing:12.511711pt;}
.ls9{letter-spacing:12.528078pt;}
.ls9d{letter-spacing:12.534029pt;}
.ls8a{letter-spacing:12.536429pt;}
.ls98{letter-spacing:12.539362pt;}
.ls63{letter-spacing:12.552158pt;}
.ls24{letter-spacing:12.696429pt;}
.ls36{letter-spacing:12.932541pt;}
.lsa8{letter-spacing:13.017797pt;}
.ls8{letter-spacing:13.070931pt;}
.ls29{letter-spacing:13.093137pt;}
.ls28{letter-spacing:13.095618pt;}
.ls26{letter-spacing:13.111305pt;}
.ls6{letter-spacing:13.124065pt;}
.ls5{letter-spacing:13.230333pt;}
.ls7{letter-spacing:13.283467pt;}
.ls71{letter-spacing:13.368429pt;}
.ls70{letter-spacing:13.395733pt;}
.ls91{letter-spacing:13.442868pt;}
.ls40{letter-spacing:13.491096pt;}
.lsb5{letter-spacing:13.493166pt;}
.ls6d{letter-spacing:13.532413pt;}
.ls9b{letter-spacing:13.654400pt;}
.lsa1{letter-spacing:13.856078pt;}
.ls43{letter-spacing:13.888015pt;}
.ls23{letter-spacing:13.893348pt;}
.ls12{letter-spacing:14.161067pt;}
.ls11{letter-spacing:14.291096pt;}
.lsa6{letter-spacing:14.453411pt;}
.lsa2{letter-spacing:14.458745pt;}
.ls9c{letter-spacing:14.552429pt;}
.ls97{letter-spacing:14.557762pt;}
.lsaf{letter-spacing:14.842186pt;}
.ls77{letter-spacing:15.395096pt;}
.ls4b{letter-spacing:15.533762pt;}
.ls4d{letter-spacing:16.061762pt;}
.ls78{letter-spacing:16.082926pt;}
.ls73{letter-spacing:16.084237pt;}
.ls76{letter-spacing:16.088677pt;}
.ls5d{letter-spacing:16.089067pt;}
.ls7a{letter-spacing:16.089570pt;}
.ls80{letter-spacing:16.169570pt;}
.ls4c{letter-spacing:16.617067pt;}
.ls22{letter-spacing:17.475096pt;}
.ls3c{letter-spacing:17.923096pt;}
.ls49{letter-spacing:18.075733pt;}
.ls3b{letter-spacing:18.582908pt;}
.lse{letter-spacing:18.583247pt;}
.lsf{letter-spacing:18.717762pt;}
.ls4a{letter-spacing:18.723096pt;}
.ls86{letter-spacing:19.555096pt;}
.ls8d{letter-spacing:22.984429pt;}
.ls64{letter-spacing:23.689467pt;}
.ls6f{letter-spacing:24.739096pt;}
.ls6e{letter-spacing:24.761570pt;}
.ls7d{letter-spacing:31.436097pt;}
.ls1{letter-spacing:32.945470pt;}
.ls4e{letter-spacing:39.513682pt;}
.ls46{letter-spacing:45.949762pt;}
.ls30{letter-spacing:51.192429pt;}
.ls1e{letter-spacing:66.384623pt;}
.ls4f{letter-spacing:98.873067pt;}
.lsa5{letter-spacing:241.552533pt;}
.ls65{letter-spacing:256.162825pt;}
.ws6f{word-spacing:-42.066082pt;}
.ws0{word-spacing:-25.362056pt;}
.ws61{word-spacing:-13.283467pt;}
.ws50{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws6{word-spacing:-9.298400pt;}
.ws71{word-spacing:-2.975497pt;}
.wsc3{word-spacing:-2.709827pt;}
.ws75{word-spacing:-2.337890pt;}
.wsb0{word-spacing:-2.178489pt;}
.ws1c{word-spacing:-2.056294pt;}
.ws55{word-spacing:-2.019087pt;}
.ws2a{word-spacing:-1.965953pt;}
.ws51{word-spacing:-1.859685pt;}
.ws3{word-spacing:-1.696326pt;}
.ws14{word-spacing:-1.625907pt;}
.wsbe{word-spacing:-1.487748pt;}
.wsf6{word-spacing:-1.386803pt;}
.wsc0{word-spacing:-1.275213pt;}
.ws2{word-spacing:-1.175671pt;}
.ws64{word-spacing:-1.115811pt;}
.ws57{word-spacing:-1.062677pt;}
.wsf1{word-spacing:-1.052058pt;}
.ws41{word-spacing:-0.956410pt;}
.ws53{word-spacing:-0.903276pt;}
.wsfa{word-spacing:-0.860774pt;}
.wsb7{word-spacing:-0.717312pt;}
.ws3c{word-spacing:-0.690740pt;}
.ws86{word-spacing:-0.584473pt;}
.wsb9{word-spacing:-0.526029pt;}
.wsb8{word-spacing:-0.478208pt;}
.ws4d{word-spacing:-0.478205pt;}
.wsa8{word-spacing:-0.430387pt;}
.ws29{word-spacing:-0.371937pt;}
.ws38{word-spacing:-0.318803pt;}
.ws35{word-spacing:-0.265669pt;}
.wsaa{word-spacing:-0.239104pt;}
.ws33{word-spacing:-0.212535pt;}
.wsa9{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.ws19{word-spacing:-0.143462pt;}
.ws34{word-spacing:-0.106268pt;}
.wsd7{word-spacing:-0.095642pt;}
.ws26{word-spacing:-0.053134pt;}
.ws4a{word-spacing:-0.047821pt;}
.ws2d{word-spacing:-0.042507pt;}
.ws5a{word-spacing:-0.040382pt;}
.ws7{word-spacing:-0.037194pt;}
.ws5f{word-spacing:-0.031881pt;}
.ws1{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.047821pt;}
.ws23{word-spacing:0.053134pt;}
.ws15{word-spacing:0.095642pt;}
.ws22{word-spacing:0.106268pt;}
.wsde{word-spacing:0.143462pt;}
.ws36{word-spacing:0.159402pt;}
.ws9{word-spacing:0.185968pt;}
.ws16{word-spacing:0.191283pt;}
.ws27{word-spacing:0.212535pt;}
.wsd8{word-spacing:0.239104pt;}
.wsb{word-spacing:0.260355pt;}
.ws24{word-spacing:0.265669pt;}
.ws87{word-spacing:0.285377pt;}
.wsdb{word-spacing:0.286925pt;}
.ws2e{word-spacing:0.318803pt;}
.wsc9{word-spacing:0.334746pt;}
.wsc5{word-spacing:0.371937pt;}
.ws97{word-spacing:0.425071pt;}
.ws2f{word-spacing:0.478205pt;}
.ws9a{word-spacing:0.584473pt;}
.ws48{word-spacing:0.588151pt;}
.ws62{word-spacing:0.637606pt;}
.ws99{word-spacing:0.743874pt;}
.wsec{word-spacing:0.765133pt;}
.ws59{word-spacing:0.850142pt;}
.ws31{word-spacing:0.903276pt;}
.wsa5{word-spacing:1.009543pt;}
.ws37{word-spacing:1.062677pt;}
.wsc4{word-spacing:1.115811pt;}
.ws18{word-spacing:1.147699pt;}
.ws96{word-spacing:1.168945pt;}
.wsf3{word-spacing:1.195520pt;}
.ws45{word-spacing:1.222079pt;}
.wseb{word-spacing:1.243341pt;}
.ws68{word-spacing:1.275213pt;}
.ws1a{word-spacing:1.291162pt;}
.ws1f{word-spacing:1.328347pt;}
.wse0{word-spacing:1.434624pt;}
.ws6c{word-spacing:1.566230pt;}
.wsea{word-spacing:1.578086pt;}
.ws30{word-spacing:1.594016pt;}
.ws32{word-spacing:1.647150pt;}
.wsa{word-spacing:1.785293pt;}
.ws95{word-spacing:1.806551pt;}
.ws7d{word-spacing:1.859685pt;}
.wsa7{word-spacing:1.912819pt;}
.wsd5{word-spacing:1.960653pt;}
.wsa6{word-spacing:1.965953pt;}
.ws40{word-spacing:2.178489pt;}
.ws3f{word-spacing:2.231622pt;}
.wsbf{word-spacing:2.284756pt;}
.ws28{word-spacing:2.337890pt;}
.wse8{word-spacing:2.343219pt;}
.ws1b{word-spacing:2.391040pt;}
.wsaf{word-spacing:2.497292pt;}
.wsca{word-spacing:2.534502pt;}
.ws58{word-spacing:2.550426pt;}
.ws13{word-spacing:2.550432pt;}
.ws76{word-spacing:2.603559pt;}
.ws17{word-spacing:2.630144pt;}
.ws7c{word-spacing:2.869229pt;}
.wse1{word-spacing:2.869248pt;}
.wsd2{word-spacing:2.917069pt;}
.wsab{word-spacing:2.975497pt;}
.ws3b{word-spacing:3.081764pt;}
.wsc1{word-spacing:3.134898pt;}
.ws1d{word-spacing:3.188032pt;}
.ws20{word-spacing:3.400567pt;}
.wsb5{word-spacing:3.443098pt;}
.wsad{word-spacing:3.490918pt;}
.ws9c{word-spacing:3.554667pt;}
.ws52{word-spacing:3.559969pt;}
.ws9d{word-spacing:3.560000pt;}
.ws1e{word-spacing:3.666237pt;}
.wsac{word-spacing:3.777843pt;}
.wse2{word-spacing:3.873485pt;}
.ws42{word-spacing:3.878772pt;}
.wsb2{word-spacing:3.931906pt;}
.ws4e{word-spacing:4.038174pt;}
.wsb4{word-spacing:4.091308pt;}
.ws7e{word-spacing:4.303843pt;}
.ws7f{word-spacing:4.356977pt;}
.wsb1{word-spacing:4.410111pt;}
.ws46{word-spacing:4.622646pt;}
.wsf5{word-spacing:4.782080pt;}
.ws3d{word-spacing:4.888316pt;}
.ws39{word-spacing:4.941450pt;}
.ws91{word-spacing:4.994583pt;}
.ws83{word-spacing:5.207119pt;}
.wsb6{word-spacing:5.308109pt;}
.wsae{word-spacing:5.355930pt;}
.wsb3{word-spacing:5.366521pt;}
.ws11{word-spacing:5.393072pt;}
.ws12{word-spacing:5.467459pt;}
.ws90{word-spacing:5.472788pt;}
.ws5b{word-spacing:5.525922pt;}
.wsba{word-spacing:5.727814pt;}
.ws73{word-spacing:5.738458pt;}
.ws82{word-spacing:5.844725pt;}
.ws80{word-spacing:5.897859pt;}
.wsc2{word-spacing:6.004127pt;}
.ws44{word-spacing:6.057261pt;}
.ws63{word-spacing:6.218807pt;}
.ws74{word-spacing:6.322930pt;}
.wsbb{word-spacing:6.376064pt;}
.wsbc{word-spacing:6.429198pt;}
.ws3e{word-spacing:6.588599pt;}
.ws54{word-spacing:6.801135pt;}
.wsc6{word-spacing:6.981837pt;}
.ws21{word-spacing:7.013670pt;}
.wsbd{word-spacing:7.066804pt;}
.ws72{word-spacing:7.226206pt;}
.wsa2{word-spacing:7.236000pt;}
.ws9f{word-spacing:7.241333pt;}
.ws3a{word-spacing:7.279340pt;}
.ws81{word-spacing:7.438741pt;}
.wsf{word-spacing:7.699075pt;}
.wsd3{word-spacing:8.125517pt;}
.wsf8{word-spacing:8.126438pt;}
.wsf7{word-spacing:8.126686pt;}
.wse7{word-spacing:8.127351pt;}
.wse9{word-spacing:8.128452pt;}
.wsd0{word-spacing:8.128674pt;}
.wsfd{word-spacing:8.130492pt;}
.wsc7{word-spacing:8.320819pt;}
.ws8{word-spacing:9.298400pt;}
.ws2b{word-spacing:10.582159pt;}
.ws5{word-spacing:11.492822pt;}
.ws8e{word-spacing:11.607015pt;}
.wsef{word-spacing:11.716096pt;}
.wsdd{word-spacing:11.763917pt;}
.wse4{word-spacing:11.859558pt;}
.wsf0{word-spacing:11.899008pt;}
.wsee{word-spacing:11.901107pt;}
.wse3{word-spacing:11.903804pt;}
.wsfc{word-spacing:11.904026pt;}
.wse6{word-spacing:11.904333pt;}
.wsf9{word-spacing:11.904444pt;}
.wsdf{word-spacing:11.904734pt;}
.wsd4{word-spacing:11.907379pt;}
.wsd9{word-spacing:12.098662pt;}
.ws92{word-spacing:13.070931pt;}
.wsf4{word-spacing:13.102899pt;}
.ws43{word-spacing:13.230333pt;}
.ws94{word-spacing:13.389734pt;}
.wsf2{word-spacing:13.676749pt;}
.wsfb{word-spacing:14.011494pt;}
.ws8d{word-spacing:14.114255pt;}
.ws5c{word-spacing:14.115629pt;}
.ws88{word-spacing:14.118054pt;}
.ws5e{word-spacing:14.120962pt;}
.wsc{word-spacing:14.348669pt;}
.wsd{word-spacing:14.356730pt;}
.wsda{word-spacing:14.774033pt;}
.wsd1{word-spacing:14.774118pt;}
.wsd6{word-spacing:14.776627pt;}
.wse5{word-spacing:14.967910pt;}
.wse{word-spacing:15.732893pt;}
.ws9b{word-spacing:15.945370pt;}
.wsdc{word-spacing:16.019968pt;}
.ws6d{word-spacing:16.406345pt;}
.ws6b{word-spacing:16.407588pt;}
.wsed{word-spacing:17.454592pt;}
.ws8c{word-spacing:18.539388pt;}
.ws65{word-spacing:18.542295pt;}
.ws8a{word-spacing:18.544484pt;}
.ws69{word-spacing:18.545011pt;}
.ws98{word-spacing:18.560218pt;}
.ws93{word-spacing:20.427750pt;}
.ws10{word-spacing:24.399002pt;}
.ws6e{word-spacing:25.204855pt;}
.ws4{word-spacing:25.293814pt;}
.ws70{word-spacing:39.850400pt;}
.ws9e{word-spacing:114.237813pt;}
.wscc{word-spacing:122.899456pt;}
.wscd{word-spacing:162.829824pt;}
.wsce{word-spacing:169.237811pt;}
.wscb{word-spacing:181.432115pt;}
.wscf{word-spacing:212.946022pt;}
.wsa3{word-spacing:237.197867pt;}
.wsa4{word-spacing:241.141333pt;}
.ws78{word-spacing:251.537408pt;}
.ws79{word-spacing:261.579776pt;}
.ws7b{word-spacing:262.344909pt;}
.wsa1{word-spacing:263.354667pt;}
.ws77{word-spacing:266.122752pt;}
.ws7a{word-spacing:293.571891pt;}
.wsa0{word-spacing:307.226667pt;}
.ws67{word-spacing:397.547590pt;}
.ws4f{word-spacing:456.162611pt;}
.ws60{word-spacing:499.458347pt;}
.ws47{word-spacing:500.349030pt;}
.ws66{word-spacing:526.822288pt;}
.ws49{word-spacing:539.083878pt;}
.ws56{word-spacing:580.735795pt;}
.ws8f{word-spacing:617.309263pt;}
.ws4c{word-spacing:636.447027pt;}
.ws4b{word-spacing:643.885527pt;}
.ws8b{word-spacing:712.843955pt;}
.ws85{word-spacing:764.277538pt;}
.ws5d{word-spacing:777.750016pt;}
.ws89{word-spacing:799.888484pt;}
.ws84{word-spacing:801.630646pt;}
.ws6a{word-spacing:813.957703pt;}
._66{margin-left:-19.225349pt;}
._0{margin-left:-10.616218pt;}
._2c{margin-left:-7.697684pt;}
._f{margin-left:-6.495505pt;}
._1{margin-left:-5.260288pt;}
._35{margin-left:-4.243983pt;}
._6{margin-left:-3.347424pt;}
._b{margin-left:-2.337896pt;}
._4{margin-left:-1.175671pt;}
._5{width:0.969929pt;}
._9{width:2.045648pt;}
._3f{width:3.779231pt;}
._4d{width:4.675946pt;}
._3e{width:5.770627pt;}
._3d{width:9.786298pt;}
._7{width:11.528597pt;}
._e{width:12.715010pt;}
._c{width:14.230750pt;}
._d{width:15.994796pt;}
._13{width:17.162239pt;}
._11{width:18.291223pt;}
._19{width:19.659531pt;}
._17{width:21.100871pt;}
._12{width:22.156822pt;}
._8{width:23.061099pt;}
._14{width:23.963374pt;}
._18{width:25.829786pt;}
._10{width:27.045138pt;}
._51{width:27.948414pt;}
._a{width:29.011008pt;}
._1b{width:30.080495pt;}
._3c{width:31.614651pt;}
._64{width:33.057468pt;}
._40{width:34.391065pt;}
._52{width:35.287614pt;}
._1a{width:37.306707pt;}
._63{width:40.834517pt;}
._2{width:48.378831pt;}
._65{width:54.993920pt;}
._59{width:63.745126pt;}
._3{width:70.520060pt;}
._60{width:92.963635pt;}
._53{width:124.477542pt;}
._56{width:153.122202pt;}
._61{width:156.134912pt;}
._57{width:158.047744pt;}
._54{width:161.108275pt;}
._58{width:165.842534pt;}
._55{width:167.085875pt;}
._5b{width:171.820134pt;}
._62{width:177.367347pt;}
._5e{width:182.675456pt;}
._5a{width:187.840102pt;}
._5c{width:191.952691pt;}
._5f{width:198.695424pt;}
._5d{width:202.808013pt;}
._47{width:263.492608pt;}
._44{width:271.478682pt;}
._45{width:273.534976pt;}
._4b{width:275.065242pt;}
._43{width:279.512576pt;}
._4c{width:282.916710pt;}
._4a{width:284.390298pt;}
._42{width:289.085594pt;}
._48{width:290.033152pt;}
._41{width:297.971405pt;}
._46{width:300.075520pt;}
._2a{width:302.888090pt;}
._49{width:305.527091pt;}
._28{width:315.808563pt;}
._31{width:388.687462pt;}
._24{width:391.508890pt;}
._33{width:401.168691pt;}
._2f{width:415.036723pt;}
._29{width:417.156173pt;}
._22{width:423.931392pt;}
._4f{width:434.958882pt;}
._20{width:439.329690pt;}
._3a{width:442.772787pt;}
._21{width:449.898086pt;}
._2d{width:454.680166pt;}
._50{width:464.694562pt;}
._1d{width:467.113574pt;}
._2b{width:472.348262pt;}
._1e{width:476.295168pt;}
._38{width:493.415014pt;}
._36{width:514.121421pt;}
._27{width:515.173478pt;}
._37{width:521.390182pt;}
._1c{width:564.046336pt;}
._26{width:569.880474pt;}
._3b{width:599.318596pt;}
._39{width:605.746074pt;}
._25{width:619.757568pt;}
._2e{width:627.887104pt;}
._1f{width:637.116518pt;}
._23{width:641.850778pt;}
._32{width:643.811430pt;}
._34{width:654.379827pt;}
._30{width:655.766630pt;}
._15{width:812.263093pt;}
._4e{width:2211.301956pt;}
._16{width:2232.555289pt;}
.fsc{font-size:31.880533pt;}
.fsd{font-size:33.219200pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs9{font-size:38.755733pt;}
.fsa{font-size:40.381867pt;}
.fs3{font-size:41.988267pt;}
.fse{font-size:42.077867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs8{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:55.365867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:101.448225pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:1.545957pt;}
.ya{bottom:3.044747pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:26.907593pt;}
.y4b{bottom:28.346667pt;}
.y20e{bottom:79.153333pt;}
.y9e{bottom:80.109333pt;}
.y181{bottom:81.069333pt;}
.y153{bottom:81.881333pt;}
.y190{bottom:82.225333pt;}
.y1d5{bottom:83.045333pt;}
.yeb{bottom:85.308000pt;}
.y21{bottom:91.398667pt;}
.y247{bottom:92.050667pt;}
.y4a{bottom:92.108000pt;}
.y20d{bottom:94.496000pt;}
.y9d{bottom:96.846667pt;}
.y82{bottom:97.214667pt;}
.y180{bottom:97.806667pt;}
.y152{bottom:98.618667pt;}
.y18f{bottom:98.962667pt;}
.yea{bottom:102.045333pt;}
.y1d4{bottom:106.636000pt;}
.y20{bottom:107.298667pt;}
.y246{bottom:107.393333pt;}
.y49{bottom:108.844000pt;}
.y20c{bottom:109.838667pt;}
.y16a{bottom:111.446667pt;}
.y9c{bottom:113.584000pt;}
.y81{bottom:113.952000pt;}
.y151{bottom:115.356000pt;}
.y18e{bottom:115.700000pt;}
.y17f{bottom:118.529333pt;}
.ye9{bottom:118.782667pt;}
.yc6{bottom:121.010667pt;}
.y1d3{bottom:122.257333pt;}
.y245{bottom:122.736000pt;}
.y1f{bottom:123.200000pt;}
.y20b{bottom:125.181333pt;}
.y48{bottom:125.581333pt;}
.y1a9{bottom:130.224000pt;}
.y9b{bottom:130.321333pt;}
.y80{bottom:130.689333pt;}
.y150{bottom:132.093333pt;}
.y18d{bottom:132.437333pt;}
.ye8{bottom:135.520000pt;}
.y122{bottom:136.870667pt;}
.yc5{bottom:137.748000pt;}
.y244{bottom:138.078667pt;}
.y1e{bottom:139.100000pt;}
.y20a{bottom:140.522667pt;}
.y169{bottom:142.132000pt;}
.y47{bottom:142.318667pt;}
.y17e{bottom:145.576000pt;}
.y1d2{bottom:145.849333pt;}
.y1a8{bottom:146.961333pt;}
.y7f{bottom:147.426667pt;}
.y14f{bottom:148.830667pt;}
.y18c{bottom:149.174667pt;}
.y243{bottom:153.421333pt;}
.yc4{bottom:154.485333pt;}
.y1d{bottom:155.000000pt;}
.y209{bottom:155.865333pt;}
.ye7{bottom:156.242667pt;}
.y131{bottom:157.857333pt;}
.y121{bottom:158.149333pt;}
.y168{bottom:158.869333pt;}
.y46{bottom:159.056000pt;}
.y17d{bottom:162.672000pt;}
.y1a7{bottom:163.698667pt;}
.y7e{bottom:164.164000pt;}
.y14e{bottom:165.568000pt;}
.y18b{bottom:165.910667pt;}
.y242{bottom:168.762667pt;}
.y1d1{bottom:169.441333pt;}
.y9a{bottom:170.732000pt;}
.y1c{bottom:170.901333pt;}
.y208{bottom:171.208000pt;}
.yc3{bottom:171.222667pt;}
.y130{bottom:174.594667pt;}
.y167{bottom:175.606667pt;}
.y45{bottom:175.793333pt;}
.y120{bottom:179.429333pt;}
.y1a6{bottom:180.436000pt;}
.y7d{bottom:180.901333pt;}
.y14d{bottom:182.305333pt;}
.y241{bottom:184.105333pt;}
.y99{bottom:185.344000pt;}
.ye6{bottom:186.150667pt;}
.y207{bottom:186.550667pt;}
.y18a{bottom:186.633333pt;}
.y1b{bottom:186.801333pt;}
.yc2{bottom:187.960000pt;}
.y12f{bottom:191.332000pt;}
.y166{bottom:192.344000pt;}
.y44{bottom:192.530667pt;}
.y1d0{bottom:193.032000pt;}
.ye4{bottom:195.262667pt;}
.y1a5{bottom:197.173333pt;}
.y7c{bottom:197.638667pt;}
.ye5{bottom:197.962667pt;}
.y14b{bottom:199.042667pt;}
.y240{bottom:199.448000pt;}
.y98{bottom:199.956000pt;}
.y11f{bottom:200.709333pt;}
.y206{bottom:201.893333pt;}
.y1a{bottom:202.701333pt;}
.y14c{bottom:203.865333pt;}
.yc1{bottom:204.697333pt;}
.y12e{bottom:208.069333pt;}
.y1cf{bottom:208.653333pt;}
.y165{bottom:209.081333pt;}
.y43{bottom:209.268000pt;}
.y189{bottom:213.680000pt;}
.y1a4{bottom:213.910667pt;}
.y7b{bottom:214.376000pt;}
.y97{bottom:214.568000pt;}
.y23f{bottom:214.790667pt;}
.y14a{bottom:215.780000pt;}
.y205{bottom:217.236000pt;}
.yc0{bottom:221.434667pt;}
.y11e{bottom:221.989333pt;}
.y1ce{bottom:224.276000pt;}
.y12d{bottom:224.806667pt;}
.y164{bottom:225.818667pt;}
.y42{bottom:226.005333pt;}
.ye2{bottom:228.160000pt;}
.y96{bottom:229.180000pt;}
.y23e{bottom:230.133333pt;}
.y1a3{bottom:230.648000pt;}
.y187{bottom:230.776000pt;}
.y7a{bottom:231.113333pt;}
.y149{bottom:232.517333pt;}
.y204{bottom:232.578667pt;}
.y188{bottom:235.116000pt;}
.ye3{bottom:238.548000pt;}
.y12c{bottom:241.544000pt;}
.y163{bottom:242.556000pt;}
.y41{bottom:242.742667pt;}
.y11d{bottom:243.268000pt;}
.y95{bottom:243.792000pt;}
.y23d{bottom:245.476000pt;}
.y1a2{bottom:247.385333pt;}
.y79{bottom:247.850667pt;}
.y1cd{bottom:247.866667pt;}
.y203{bottom:247.921333pt;}
.ye1{bottom:248.882667pt;}
.y193{bottom:249.114667pt;}
.y148{bottom:249.254667pt;}
.y94{bottom:258.404000pt;}
.y162{bottom:259.293333pt;}
.y40{bottom:259.480000pt;}
.y23c{bottom:260.818667pt;}
.ybf{bottom:261.845333pt;}
.y202{bottom:263.264000pt;}
.y1cc{bottom:263.488000pt;}
.y1a1{bottom:264.122667pt;}
.y78{bottom:264.588000pt;}
.ye0{bottom:265.672000pt;}
.y191{bottom:266.210667pt;}
.y17a{bottom:267.352000pt;}
.y147{bottom:269.977333pt;}
.y192{bottom:270.550667pt;}
.y12b{bottom:271.380000pt;}
.y11c{bottom:271.654667pt;}
.y93{bottom:273.016000pt;}
.y19{bottom:273.154667pt;}
.y161{bottom:276.030667pt;}
.y23b{bottom:276.161333pt;}
.y3f{bottom:276.217333pt;}
.ybe{bottom:276.457333pt;}
.y201{bottom:278.605333pt;}
.y1cb{bottom:279.109333pt;}
.y1a0{bottom:280.860000pt;}
.y77{bottom:281.325333pt;}
.ydf{bottom:282.409333pt;}
.y179{bottom:284.089333pt;}
.y146{bottom:287.909333pt;}
.y18{bottom:289.054667pt;}
.ybd{bottom:291.069333pt;}
.y23a{bottom:291.502667pt;}
.y160{bottom:292.768000pt;}
.y3e{bottom:292.954667pt;}
.y200{bottom:293.948000pt;}
.y92{bottom:294.294667pt;}
.y1ca{bottom:294.730667pt;}
.y19f{bottom:297.597333pt;}
.y76{bottom:298.062667pt;}
.yde{bottom:299.146667pt;}
.y178{bottom:300.826667pt;}
.y17{bottom:304.954667pt;}
.ybc{bottom:305.681333pt;}
.y11b{bottom:306.020000pt;}
.y239{bottom:306.845333pt;}
.y1ff{bottom:309.290667pt;}
.y15f{bottom:309.505333pt;}
.y3d{bottom:309.692000pt;}
.y1c9{bottom:310.353333pt;}
.y19e{bottom:314.334667pt;}
.y75{bottom:314.800000pt;}
.ydd{bottom:315.884000pt;}
.y145{bottom:317.328000pt;}
.y177{bottom:317.564000pt;}
.ybb{bottom:320.293333pt;}
.y16{bottom:320.856000pt;}
.y238{bottom:322.188000pt;}
.y91{bottom:322.401333pt;}
.y1fe{bottom:324.633333pt;}
.y15e{bottom:326.242667pt;}
.y3c{bottom:326.429333pt;}
.y144{bottom:326.440000pt;}
.y19d{bottom:331.072000pt;}
.y74{bottom:331.537333pt;}
.y176{bottom:334.301333pt;}
.yba{bottom:334.905333pt;}
.y237{bottom:337.530667pt;}
.y1fd{bottom:339.976000pt;}
.y1c8{bottom:341.914667pt;}
.y15d{bottom:342.980000pt;}
.y3b{bottom:343.166667pt;}
.ydc{bottom:346.342667pt;}
.y19c{bottom:347.809333pt;}
.y73{bottom:348.274667pt;}
.y90{bottom:348.796000pt;}
.y175{bottom:351.038667pt;}
.y236{bottom:352.873333pt;}
.y15{bottom:354.688000pt;}
.y1fc{bottom:355.318667pt;}
.ydb{bottom:355.454667pt;}
.yb9{bottom:356.184000pt;}
.y1c7{bottom:358.652000pt;}
.y15c{bottom:359.717333pt;}
.y3a{bottom:359.904000pt;}
.y143{bottom:360.266667pt;}
.y19b{bottom:364.546667pt;}
.y72{bottom:365.012000pt;}
.y174{bottom:367.776000pt;}
.y235{bottom:368.216000pt;}
.y14{bottom:370.589333pt;}
.y1fb{bottom:370.661333pt;}
.y1c6{bottom:375.389333pt;}
.y15b{bottom:376.454667pt;}
.y39{bottom:376.641333pt;}
.y142{bottom:377.004000pt;}
.y19a{bottom:381.284000pt;}
.y71{bottom:381.749333pt;}
.y234{bottom:383.558667pt;}
.yb8{bottom:384.290667pt;}
.y173{bottom:384.513333pt;}
.y1fa{bottom:386.004000pt;}
.y13{bottom:386.489333pt;}
.y1c5{bottom:392.126667pt;}
.y15a{bottom:393.192000pt;}
.y38{bottom:393.378667pt;}
.y141{bottom:393.741333pt;}
.yda{bottom:394.653333pt;}
.y199{bottom:398.020000pt;}
.y70{bottom:398.486667pt;}
.y233{bottom:398.901333pt;}
.y172{bottom:401.250667pt;}
.y1f8{bottom:401.345333pt;}
.y1f9{bottom:401.346667pt;}
.y1c4{bottom:408.864000pt;}
.y37{bottom:410.116000pt;}
.y140{bottom:410.478667pt;}
.yd9{bottom:411.390667pt;}
.y232{bottom:414.244000pt;}
.y198{bottom:414.757333pt;}
.y6f{bottom:415.224000pt;}
.y1f7{bottom:416.688000pt;}
.yb7{bottom:417.272000pt;}
.y12{bottom:418.330667pt;}
.y159{bottom:423.028000pt;}
.y1c3{bottom:425.601333pt;}
.y36{bottom:426.853333pt;}
.yd8{bottom:428.128000pt;}
.y11a{bottom:428.864000pt;}
.y231{bottom:429.585333pt;}
.y171{bottom:431.086667pt;}
.y197{bottom:431.494667pt;}
.y6e{bottom:431.961333pt;}
.y1f6{bottom:432.030667pt;}
.yb6{bottom:434.009333pt;}
.y13f{bottom:435.584000pt;}
.y1c2{bottom:442.338667pt;}
.y35{bottom:443.590667pt;}
.yd7{bottom:444.865333pt;}
.y230{bottom:444.928000pt;}
.y119{bottom:445.600000pt;}
.y1f5{bottom:447.373333pt;}
.y6d{bottom:448.698667pt;}
.y11{bottom:450.170667pt;}
.yb5{bottom:450.746667pt;}
.y196{bottom:452.217333pt;}
.y1c1{bottom:459.076000pt;}
.y22f{bottom:460.270667pt;}
.y34{bottom:460.328000pt;}
.y13e{bottom:460.690667pt;}
.yd6{bottom:461.602667pt;}
.y118{bottom:462.337333pt;}
.y1f4{bottom:462.716000pt;}
.y6c{bottom:465.436000pt;}
.y10{bottom:466.070667pt;}
.yb4{bottom:467.484000pt;}
.y22e{bottom:475.613333pt;}
.y1c0{bottom:475.813333pt;}
.y13d{bottom:477.428000pt;}
.y1f3{bottom:478.058667pt;}
.yd5{bottom:478.340000pt;}
.y117{bottom:479.074667pt;}
.y195{bottom:479.362667pt;}
.y33{bottom:481.049333pt;}
.yf{bottom:481.972000pt;}
.y6b{bottom:482.173333pt;}
.yb3{bottom:484.221333pt;}
.y22d{bottom:490.956000pt;}
.y1bf{bottom:492.549333pt;}
.y1f2{bottom:493.401333pt;}
.y13b{bottom:494.165333pt;}
.y116{bottom:495.812000pt;}
.y194{bottom:496.458667pt;}
.y13c{bottom:497.293333pt;}
.ye{bottom:497.872000pt;}
.y6a{bottom:498.910667pt;}
.yd4{bottom:500.522667pt;}
.yb2{bottom:500.958667pt;}
.y22c{bottom:506.298667pt;}
.y1f1{bottom:508.744000pt;}
.y1be{bottom:509.286667pt;}
.yd2{bottom:509.636000pt;}
.y13a{bottom:510.902667pt;}
.yd3{bottom:512.334667pt;}
.y115{bottom:512.549333pt;}
.yd{bottom:513.772000pt;}
.y69{bottom:515.648000pt;}
.y12a{bottom:519.830667pt;}
.y22b{bottom:521.641333pt;}
.y1f0{bottom:524.086667pt;}
.y1bd{bottom:526.024000pt;}
.y139{bottom:527.640000pt;}
.y114{bottom:529.286667pt;}
.yc{bottom:529.673333pt;}
.y68{bottom:532.384000pt;}
.y129{bottom:536.568000pt;}
.y22a{bottom:536.984000pt;}
.yb1{bottom:541.369333pt;}
.y1bc{bottom:542.761333pt;}
.y1ef{bottom:543.413333pt;}
.yb{bottom:545.573333pt;}
.y113{bottom:546.024000pt;}
.y32{bottom:547.849333pt;}
.yd1{bottom:548.661333pt;}
.y67{bottom:549.121333pt;}
.y229{bottom:552.325333pt;}
.y128{bottom:553.305333pt;}
.yb0{bottom:555.981333pt;}
.y138{bottom:556.909333pt;}
.y1bb{bottom:559.498667pt;}
.y112{bottom:562.761333pt;}
.y8{bottom:565.458715pt;}
.y66{bottom:565.858667pt;}
.y228{bottom:567.668000pt;}
.y127{bottom:570.042667pt;}
.yaf{bottom:570.593333pt;}
.y17c{bottom:573.029333pt;}
.y1ee{bottom:575.132000pt;}
.y1ba{bottom:576.236000pt;}
.yd0{bottom:579.346667pt;}
.y111{bottom:579.498667pt;}
.y31{bottom:581.085333pt;}
.y65{bottom:582.596000pt;}
.y227{bottom:583.010667pt;}
.yae{bottom:585.205333pt;}
.y126{bottom:586.780000pt;}
.y137{bottom:588.782667pt;}
.y17b{bottom:590.125333pt;}
.y1ed{bottom:590.753333pt;}
.y1b9{bottom:592.973333pt;}
.ycf{bottom:596.084000pt;}
.y110{bottom:596.236000pt;}
.y226{bottom:598.353333pt;}
.y30{bottom:598.380000pt;}
.y64{bottom:599.333333pt;}
.yad{bottom:599.817333pt;}
.y125{bottom:603.517333pt;}
.y136{bottom:605.520000pt;}
.y1ec{bottom:606.374667pt;}
.y1b8{bottom:609.710667pt;}
.y10f{bottom:612.973333pt;}
.y225{bottom:613.696000pt;}
.y2f{bottom:615.676000pt;}
.y63{bottom:616.070667pt;}
.yac{bottom:621.096000pt;}
.y1eb{bottom:621.996000pt;}
.y135{bottom:622.257333pt;}
.y124{bottom:624.240000pt;}
.yce{bottom:625.920000pt;}
.y1b7{bottom:626.448000pt;}
.y224{bottom:629.038667pt;}
.y10e{bottom:629.710667pt;}
.y62{bottom:632.808000pt;}
.y2e{bottom:632.970667pt;}
.y1ea{bottom:637.617333pt;}
.y134{bottom:638.994667pt;}
.y1b6{bottom:643.185333pt;}
.y223{bottom:644.381333pt;}
.y10d{bottom:646.448000pt;}
.yab{bottom:649.202667pt;}
.y61{bottom:649.545333pt;}
.y2d{bottom:650.266667pt;}
.y123{bottom:651.286667pt;}
.y1e9{bottom:653.240000pt;}
.y133{bottom:659.717333pt;}
.y222{bottom:659.724000pt;}
.y1b5{bottom:659.922667pt;}
.y10c{bottom:663.185333pt;}
.y60{bottom:666.282667pt;}
.y2c{bottom:667.561333pt;}
.y1e8{bottom:668.861333pt;}
.y221{bottom:675.066667pt;}
.y1b4{bottom:676.660000pt;}
.yaa{bottom:678.724000pt;}
.y10b{bottom:679.922667pt;}
.y5f{bottom:683.020000pt;}
.y1e7{bottom:684.482667pt;}
.y2b{bottom:684.856000pt;}
.y132{bottom:686.764000pt;}
.y220{bottom:690.408000pt;}
.y1b3{bottom:693.397333pt;}
.ya9{bottom:695.461333pt;}
.y10a{bottom:696.660000pt;}
.y5e{bottom:699.757333pt;}
.y1e6{bottom:700.104000pt;}
.y2a{bottom:702.152000pt;}
.y21f{bottom:705.750667pt;}
.y1b2{bottom:710.134667pt;}
.ya8{bottom:712.198667pt;}
.y1e5{bottom:715.725333pt;}
.y5d{bottom:716.494667pt;}
.y109{bottom:717.382667pt;}
.y29{bottom:719.446667pt;}
.y21e{bottom:721.093333pt;}
.y1b1{bottom:726.872000pt;}
.ya7{bottom:728.936000pt;}
.y1e4{bottom:731.346667pt;}
.y5c{bottom:733.232000pt;}
.y21d{bottom:736.436000pt;}
.y28{bottom:736.741333pt;}
.y1b0{bottom:743.609333pt;}
.ya6{bottom:745.673333pt;}
.y1e3{bottom:746.968000pt;}
.y5b{bottom:749.969333pt;}
.y107{bottom:750.440000pt;}
.y21c{bottom:751.778667pt;}
.y27{bottom:754.037333pt;}
.yfe{bottom:758.760000pt;}
.y1af{bottom:760.346667pt;}
.y106{bottom:761.177333pt;}
.ya5{bottom:762.410667pt;}
.y1e2{bottom:762.589333pt;}
.y8f{bottom:762.737333pt;}
.yfd{bottom:762.745333pt;}
.y186{bottom:764.332000pt;}
.y5a{bottom:766.706667pt;}
.yfc{bottom:766.730667pt;}
.y21b{bottom:767.121333pt;}
.yfb{bottom:770.716000pt;}
.y26{bottom:771.332000pt;}
.yfa{bottom:774.700000pt;}
.y1ae{bottom:777.084000pt;}
.y1e1{bottom:778.210667pt;}
.yf9{bottom:778.685333pt;}
.ya4{bottom:779.148000pt;}
.y8e{bottom:779.474667pt;}
.y185{bottom:781.069333pt;}
.y21a{bottom:782.464000pt;}
.yf8{bottom:782.670667pt;}
.y59{bottom:783.444000pt;}
.y108{bottom:791.305333pt;}
.y1ad{bottom:793.821333pt;}
.y1e0{bottom:793.832000pt;}
.y8d{bottom:796.212000pt;}
.y184{bottom:797.806667pt;}
.y58{bottom:800.181333pt;}
.y25{bottom:803.860000pt;}
.y103{bottom:806.105333pt;}
.yf7{bottom:806.581333pt;}
.y1df{bottom:809.453333pt;}
.y1ac{bottom:810.558667pt;}
.yf6{bottom:810.565333pt;}
.y105{bottom:810.693333pt;}
.y8c{bottom:812.949333pt;}
.y248{bottom:813.148000pt;}
.y219{bottom:813.149333pt;}
.y183{bottom:814.544000pt;}
.yf5{bottom:814.550667pt;}
.y104{bottom:815.926667pt;}
.y102{bottom:816.401333pt;}
.y57{bottom:816.918667pt;}
.y24{bottom:818.206667pt;}
.yf4{bottom:818.536000pt;}
.ya3{bottom:819.558667pt;}
.y100{bottom:821.432000pt;}
.yff{bottom:821.624000pt;}
.yf3{bottom:822.521333pt;}
.y1de{bottom:825.074667pt;}
.y101{bottom:826.196000pt;}
.yf2{bottom:826.506667pt;}
.y1ab{bottom:827.296000pt;}
.y218{bottom:828.490667pt;}
.y8b{bottom:829.686667pt;}
.yf1{bottom:830.490667pt;}
.y182{bottom:831.281333pt;}
.y23{bottom:832.552000pt;}
.y56{bottom:833.656000pt;}
.ya2{bottom:834.448000pt;}
.y1dd{bottom:840.696000pt;}
.yf0{bottom:842.446667pt;}
.y217{bottom:843.833333pt;}
.y1aa{bottom:844.033333pt;}
.y8a{bottom:846.424000pt;}
.y22{bottom:846.898667pt;}
.y158{bottom:848.018667pt;}
.ya1{bottom:849.337333pt;}
.y55{bottom:850.393333pt;}
.y1dc{bottom:856.317333pt;}
.y216{bottom:859.176000pt;}
.ycd{bottom:860.770667pt;}
.yef{bottom:862.822667pt;}
.y89{bottom:863.161333pt;}
.y157{bottom:864.754667pt;}
.y54{bottom:867.130667pt;}
.ya0{bottom:870.617333pt;}
.y1db{bottom:871.938667pt;}
.y215{bottom:874.518667pt;}
.y170{bottom:875.982667pt;}
.ycc{bottom:877.508000pt;}
.yee{bottom:879.560000pt;}
.y156{bottom:881.492000pt;}
.y53{bottom:883.868000pt;}
.y88{bottom:883.884000pt;}
.y7{bottom:884.713333pt;}
.y1da{bottom:887.561333pt;}
.y214{bottom:889.861333pt;}
.y16f{bottom:891.056000pt;}
.ycb{bottom:894.245333pt;}
.y155{bottom:898.229333pt;}
.y9f{bottom:898.722667pt;}
.y52{bottom:900.605333pt;}
.y87{bottom:901.816000pt;}
.y1d9{bottom:903.182667pt;}
.y213{bottom:905.204000pt;}
.yed{bottom:905.589333pt;}
.yca{bottom:910.982667pt;}
.y16e{bottom:912.566667pt;}
.yec{bottom:914.701333pt;}
.y154{bottom:914.966667pt;}
.y51{bottom:917.342667pt;}
.y1d8{bottom:918.804000pt;}
.y212{bottom:920.546667pt;}
.y6{bottom:925.510667pt;}
.yc9{bottom:927.720000pt;}
.y86{bottom:931.704000pt;}
.y16d{bottom:933.846667pt;}
.y50{bottom:934.080000pt;}
.y1d7{bottom:934.425333pt;}
.y211{bottom:935.889333pt;}
.yc8{bottom:944.456000pt;}
.y85{bottom:948.441333pt;}
.y5{bottom:950.616000pt;}
.y4f{bottom:950.817333pt;}
.y210{bottom:951.230667pt;}
.y16c{bottom:955.126667pt;}
.yc7{bottom:961.193333pt;}
.y1d6{bottom:962.309333pt;}
.y84{bottom:965.178667pt;}
.y20f{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y4{bottom:975.722667pt;}
.y83{bottom:981.916000pt;}
.y16b{bottom:983.233333pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h18{height:2.125355pt;}
.h2b{height:19.029065pt;}
.h25{height:20.660233pt;}
.h7{height:22.673858pt;}
.h10{height:24.760382pt;}
.h20{height:27.184641pt;}
.h9{height:29.433775pt;}
.h1a{height:29.599908pt;}
.h8{height:30.399505pt;}
.ha{height:33.771789pt;}
.hc{height:34.430976pt;}
.h22{height:34.990976pt;}
.h1b{height:36.666735pt;}
.h2a{height:37.671911pt;}
.h6{height:38.256384pt;}
.hb{height:38.596538pt;}
.h4{height:38.947124pt;}
.h15{height:41.524400pt;}
.hd{height:43.421286pt;}
.h21{height:44.377643pt;}
.h2{height:45.272024pt;}
.he{height:48.245551pt;}
.hf{height:50.017122pt;}
.h29{height:50.203789pt;}
.h28{height:50.209122pt;}
.h26{height:55.957402pt;}
.h27{height:58.613402pt;}
.h12{height:66.697733pt;}
.h23{height:68.334165pt;}
.h3{height:68.781897pt;}
.h5{height:68.861952pt;}
.h11{height:71.415733pt;}
.h16{height:71.421067pt;}
.h13{height:74.920458pt;}
.h24{height:84.218884pt;}
.h17{height:84.693551pt;}
.h1f{height:93.016021pt;}
.h19{height:96.885402pt;}
.h14{height:97.581355pt;}
.h1e{height:135.965355pt;}
.h1d{height:137.941402pt;}
.h1c{height:154.317355pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:184.542183pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.603593pt;}
.xc2{left:76.346667pt;}
.xbb{left:83.101333pt;}
.xba{left:88.092000pt;}
.xb9{left:91.402667pt;}
.xcc{left:132.950667pt;}
.xc3{left:136.993333pt;}
.xac{left:165.550667pt;}
.xb8{left:217.148000pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.xcd{left:232.674667pt;}
.x8c{left:238.218667pt;}
.x3c{left:239.760000pt;}
.xc1{left:240.884000pt;}
.x25{left:242.633333pt;}
.x3b{left:244.876000pt;}
.x3e{left:246.442667pt;}
.x8{left:251.365333pt;}
.x3d{left:253.072000pt;}
.x26{left:255.917333pt;}
.x86{left:257.956000pt;}
.x3a{left:258.846667pt;}
.x30{left:260.384000pt;}
.x87{left:262.589333pt;}
.x39{left:263.945333pt;}
.xc4{left:265.093333pt;}
.x36{left:266.898667pt;}
.x81{left:268.265333pt;}
.xc5{left:271.070667pt;}
.x44{left:272.445333pt;}
.x27{left:273.600000pt;}
.x6{left:274.829333pt;}
.x8d{left:275.780000pt;}
.x31{left:277.048000pt;}
.x38{left:278.596000pt;}
.xbf{left:279.856000pt;}
.x37{left:282.241333pt;}
.x7{left:284.313333pt;}
.x28{left:286.884000pt;}
.x29{left:290.270667pt;}
.x45{left:291.756000pt;}
.x43{left:293.049333pt;}
.x1a{left:294.210667pt;}
.x32{left:295.177333pt;}
.xa2{left:296.156000pt;}
.x9{left:297.301333pt;}
.x8e{left:301.177333pt;}
.xa{left:303.942667pt;}
.x46{left:305.040000pt;}
.x2e{left:306.044000pt;}
.x1b{left:307.493333pt;}
.x33{left:308.460000pt;}
.x34{left:311.848000pt;}
.x82{left:314.890667pt;}
.x4d{left:318.101333pt;}
.x2f{left:319.328000pt;}
.x1f{left:320.304000pt;}
.xb3{left:323.970667pt;}
.x35{left:325.130667pt;}
.x8b{left:327.364000pt;}
.x4e{left:331.385333pt;}
.x5a{left:332.390667pt;}
.x83{left:334.666667pt;}
.xb4{left:337.254667pt;}
.x8f{left:340.013333pt;}
.x73{left:342.041333pt;}
.xb5{left:343.989333pt;}
.x9c{left:346.802667pt;}
.x5b{left:348.041333pt;}
.x91{left:349.813333pt;}
.x9e{left:352.897333pt;}
.x22{left:356.362667pt;}
.xb6{left:357.272000pt;}
.x92{left:365.301333pt;}
.x56{left:367.521333pt;}
.x23{left:369.646667pt;}
.x6a{left:370.958667pt;}
.x7a{left:372.990667pt;}
.x64{left:374.365333pt;}
.x2a{left:375.977333pt;}
.x9f{left:378.961333pt;}
.xc6{left:380.949333pt;}
.x6b{left:383.986667pt;}
.x7c{left:385.344000pt;}
.x7b{left:387.954667pt;}
.x2b{left:389.260000pt;}
.x84{left:391.733333pt;}
.xa0{left:393.158667pt;}
.xc7{left:396.533333pt;}
.xce{left:399.953333pt;}
.xa5{left:402.961333pt;}
.xcb{left:403.900000pt;}
.x99{left:406.457333pt;}
.x65{left:410.857333pt;}
.x16{left:412.146667pt;}
.xaf{left:419.212000pt;}
.x7d{left:420.426667pt;}
.x1c{left:421.757333pt;}
.x17{left:425.429333pt;}
.xa1{left:426.844000pt;}
.xb{left:427.790667pt;}
.x55{left:432.994667pt;}
.xc{left:434.432000pt;}
.x85{left:435.738667pt;}
.x62{left:441.544000pt;}
.x78{left:445.345333pt;}
.x71{left:452.341333pt;}
.x90{left:454.549333pt;}
.x70{left:456.313333pt;}
.x5d{left:458.790667pt;}
.x80{left:461.957333pt;}
.x7e{left:464.436000pt;}
.x57{left:465.358667pt;}
.x63{left:466.390667pt;}
.x6c{left:468.254667pt;}
.xcf{left:472.930667pt;}
.x5e{left:474.278667pt;}
.xd0{left:478.238667pt;}
.x6d{left:485.254667pt;}
.x79{left:488.620000pt;}
.xad{left:491.453333pt;}
.xc0{left:493.985333pt;}
.xbc{left:496.924000pt;}
.x7f{left:500.805333pt;}
.xbd{left:502.902667pt;}
.xae{left:504.736000pt;}
.xb0{left:511.033333pt;}
.xb1{left:516.970667pt;}
.xc8{left:518.169333pt;}
.x5f{left:522.308000pt;}
.xc9{left:523.477333pt;}
.x4f{left:524.477333pt;}
.xf{left:528.720000pt;}
.xa6{left:531.198667pt;}
.x10{left:535.361333pt;}
.x13{left:538.588000pt;}
.x50{left:539.965333pt;}
.x5c{left:547.760000pt;}
.x4a{left:548.941333pt;}
.x9d{left:550.976000pt;}
.x14{left:551.870667pt;}
.xd1{left:557.849333pt;}
.x95{left:558.798667pt;}
.x58{left:562.209333pt;}
.x15{left:565.158667pt;}
.x76{left:569.020000pt;}
.x60{left:574.576000pt;}
.x66{left:577.128000pt;}
.x4b{left:583.365333pt;}
.x77{left:584.508000pt;}
.x74{left:587.689333pt;}
.xa3{left:592.198667pt;}
.x67{left:593.484000pt;}
.xa7{left:597.282667pt;}
.x59{left:598.708000pt;}
.x4c{left:600.558667pt;}
.xa8{left:603.333333pt;}
.xa4{left:607.688000pt;}
.x11{left:613.890667pt;}
.x51{left:615.013333pt;}
.xb7{left:616.032000pt;}
.x12{left:620.533333pt;}
.x3f{left:622.424000pt;}
.x75{left:624.188000pt;}
.x96{left:625.153333pt;}
.xd2{left:626.046667pt;}
.x20{left:629.008000pt;}
.x40{left:630.628000pt;}
.xd3{left:632.025333pt;}
.x52{left:634.261333pt;}
.x47{left:637.881333pt;}
.x21{left:642.292000pt;}
.xb2{left:643.597333pt;}
.x1d{left:646.328000pt;}
.x93{left:647.525333pt;}
.x48{left:652.372000pt;}
.xd6{left:654.620000pt;}
.x1e{left:659.610667pt;}
.x53{left:662.826667pt;}
.x18{left:665.729333pt;}
.xaa{left:667.274667pt;}
.x97{left:669.476000pt;}
.xbe{left:670.613333pt;}
.x88{left:672.780000pt;}
.xd7{left:674.125333pt;}
.x49{left:675.292000pt;}
.x54{left:676.906667pt;}
.x19{left:679.012000pt;}
.xab{left:680.557333pt;}
.x68{left:683.566667pt;}
.x89{left:686.064000pt;}
.x98{left:689.677333pt;}
.xca{left:693.616000pt;}
.x69{left:698.248000pt;}
.x41{left:701.346667pt;}
.x9a{left:703.230667pt;}
.xd5{left:707.161333pt;}
.x42{left:709.552000pt;}
.x8a{left:711.332000pt;}
.xd4{left:720.272000pt;}
.x94{left:722.761333pt;}
.x9b{left:723.661333pt;}
.xa9{left:724.906667pt;}
.x24{left:726.950667pt;}
.x2c{left:728.082667pt;}
.x6e{left:729.236000pt;}
.x72{left:730.212000pt;}
.xd{left:733.662667pt;}
.x61{left:736.364000pt;}
.xe{left:740.304000pt;}
.x2d{left:741.365333pt;}
.x6f{left:744.724000pt;}
}




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