
    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_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_6f06c1a9691d8d312138f4c8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_79ba4085716344ca549ebe41.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_66f95fb7b8fe278b746e6800.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_acc28a29be960508fe980238.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.710000;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_33aa40d007a71084bd3ce7fd.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2a041ff5e0022fef8b6b75cb.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.743000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_a63381970a459140ffe87958.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734000;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_5745076036f83b0b19d2e32e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_480050012afb82bdf4c5cdfd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_59a4858ed5017a4ba3bfebdf.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;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_e9c6ba08e984c562d46eb5d1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3ab7246b58d7d5eb8079de4e.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_581e7b31375ae158162fc57e.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_af2f013fd79fc71941a0e374.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a3266f07718f89d5dd7bcbf6.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5448d480f5aeec0edaf8b5a5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011230;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);}
.m2{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);}
.m27{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);}
.m29{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);}
.m14{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);}
.m20{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);}
.m26{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);}
.m1e{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m13{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);}
.m15{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);}
.mf{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.mb{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);}
.m22{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);}
.m11{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);}
.m24{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m10{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);}
.m7{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);}
.m19{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);}
.m17{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);}
.m9{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);}
.m8{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);}
.mc{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);}
.me{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);}
.m12{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);}
.m2b{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);}
.m1b{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);}
.m5{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);}
.m1a{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);}
.m4{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);}
.m21{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);}
.m2a{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);}
.m23{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);}
.m1c{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);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.696000px;}
.ls2a{letter-spacing:-3.144276px;}
.ls45{letter-spacing:-0.222444px;}
.ls22{letter-spacing:-0.210420px;}
.ls25{letter-spacing:-0.192384px;}
.ls2d{letter-spacing:-0.180360px;}
.ls31{letter-spacing:-0.168336px;}
.ls20{letter-spacing:-0.162324px;}
.ls43{letter-spacing:-0.150300px;}
.ls2c{letter-spacing:-0.138276px;}
.ls26{letter-spacing:-0.132264px;}
.ls29{letter-spacing:-0.126252px;}
.ls41{letter-spacing:-0.120240px;}
.ls30{letter-spacing:-0.114228px;}
.ls27{letter-spacing:-0.108216px;}
.ls1d{letter-spacing:-0.102204px;}
.ls3a{letter-spacing:-0.096192px;}
.ls2f{letter-spacing:-0.090180px;}
.ls44{letter-spacing:-0.084168px;}
.ls1c{letter-spacing:-0.078156px;}
.ls3f{letter-spacing:-0.072144px;}
.ls42{letter-spacing:-0.066132px;}
.ls2b{letter-spacing:-0.060120px;}
.ls24{letter-spacing:-0.054108px;}
.ls39{letter-spacing:-0.048096px;}
.ls1f{letter-spacing:-0.042084px;}
.ls3e{letter-spacing:-0.036072px;}
.ls38{letter-spacing:-0.030060px;}
.ls1a{letter-spacing:-0.028728px;}
.ls28{letter-spacing:-0.024048px;}
.ls21{letter-spacing:-0.018036px;}
.ls23{letter-spacing:-0.012024px;}
.ls1b{letter-spacing:-0.006012px;}
.ls9{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000088px;}
.ls52{letter-spacing:0.000179px;}
.ls49{letter-spacing:0.000419px;}
.ls51{letter-spacing:0.000453px;}
.ls4d{letter-spacing:0.000676px;}
.ls50{letter-spacing:0.000800px;}
.ls4f{letter-spacing:0.001155px;}
.lsa{letter-spacing:0.001298px;}
.ls48{letter-spacing:0.001899px;}
.ls4a{letter-spacing:0.002544px;}
.ls4b{letter-spacing:0.004800px;}
.ls17{letter-spacing:0.006012px;}
.ls12{letter-spacing:0.012024px;}
.lse{letter-spacing:0.014364px;}
.ls3b{letter-spacing:0.016200px;}
.ls36{letter-spacing:0.018036px;}
.ls33{letter-spacing:0.024048px;}
.ls3c{letter-spacing:0.027000px;}
.ls15{letter-spacing:0.030060px;}
.ls34{letter-spacing:0.032400px;}
.ls14{letter-spacing:0.036072px;}
.ls10{letter-spacing:0.042084px;}
.ls3d{letter-spacing:0.043200px;}
.ls16{letter-spacing:0.048096px;}
.ls35{letter-spacing:0.048600px;}
.ls11{letter-spacing:0.054108px;}
.ls19{letter-spacing:0.060120px;}
.ls13{letter-spacing:0.066132px;}
.ls18{letter-spacing:0.072144px;}
.ls37{letter-spacing:0.078156px;}
.ls2e{letter-spacing:0.096192px;}
.lsf{letter-spacing:0.181944px;}
.lsd{letter-spacing:0.191520px;}
.ls8{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls1e{letter-spacing:2.254500px;}
.ls40{letter-spacing:4.418820px;}
.ls2{letter-spacing:10.461300px;}
.ls7{letter-spacing:11.954850px;}
.ls1{letter-spacing:12.969300px;}
.ls4e{letter-spacing:13.146318px;}
.ls46{letter-spacing:13.448400px;}
.ls47{letter-spacing:13.454400px;}
.lsb{letter-spacing:13.809664px;}
.lsc{letter-spacing:14.824349px;}
.ls32{letter-spacing:15.242778px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.ls4{letter-spacing:72.361200px;}
.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;}
}
.ws63{word-spacing:-14.943900px;}
.wsc9{word-spacing:-13.449600px;}
.ws72{word-spacing:-12.161520px;}
.ws73{word-spacing:-11.970000px;}
.ws32{word-spacing:-11.955150px;}
.ws13{word-spacing:-11.357400px;}
.ws7{word-spacing:-10.460700px;}
.wsef{word-spacing:-4.196275px;}
.ws105{word-spacing:-3.577140px;}
.ws21{word-spacing:-3.347434px;}
.ws54{word-spacing:-3.287658px;}
.ws9c{word-spacing:-3.138264px;}
.wsda{word-spacing:-2.831652px;}
.ws119{word-spacing:-2.825640px;}
.wse5{word-spacing:-2.813616px;}
.wse4{word-spacing:-2.777544px;}
.ws12d{word-spacing:-2.570351px;}
.ws35{word-spacing:-2.450800px;}
.wsbb{word-spacing:-2.367130px;}
.wsed{word-spacing:-2.331248px;}
.ws29{word-spacing:-2.271473px;}
.ws174{word-spacing:-2.259533px;}
.wsb4{word-spacing:-2.211697px;}
.wseb{word-spacing:-2.151922px;}
.wsee{word-spacing:-2.098138px;}
.ws50{word-spacing:-2.092146px;}
.ws102{word-spacing:-2.068128px;}
.ws101{word-spacing:-2.056104px;}
.wsc7{word-spacing:-2.032370px;}
.ws134{word-spacing:-1.990541px;}
.ws1{word-spacing:-1.908367px;}
.ws135{word-spacing:-1.775347px;}
.ws9f{word-spacing:-1.743480px;}
.ws10f{word-spacing:-1.731456px;}
.ws107{word-spacing:-1.719432px;}
.ws74{word-spacing:-1.673717px;}
.ws108{word-spacing:-1.593180px;}
.ws11e{word-spacing:-1.554166px;}
.ws79{word-spacing:-1.388772px;}
.wsce{word-spacing:-1.370736px;}
.ws14e{word-spacing:-1.344960px;}
.ws10d{word-spacing:-1.328652px;}
.ws0{word-spacing:-1.322630px;}
.wsea{word-spacing:-1.315063px;}
.ws114{word-spacing:-1.256508px;}
.wsbe{word-spacing:-1.255288px;}
.ws16f{word-spacing:-1.237363px;}
.ws8{word-spacing:-1.171598px;}
.ws64{word-spacing:-1.135736px;}
.ws11d{word-spacing:-1.075961px;}
.wsa{word-spacing:-1.046070px;}
.wsbd{word-spacing:-1.022170px;}
.wse0{word-spacing:-0.967932px;}
.ws11c{word-spacing:-0.896634px;}
.wsbc{word-spacing:-0.860774px;}
.ws5d{word-spacing:-0.836858px;}
.ws5e{word-spacing:-0.777083px;}
.ws15{word-spacing:-0.699379px;}
.ws2e{word-spacing:-0.657532px;}
.ws163{word-spacing:-0.645581px;}
.ws84{word-spacing:-0.607212px;}
.wsf0{word-spacing:-0.597756px;}
.wsbf{word-spacing:-0.537980px;}
.wsc5{word-spacing:-0.478205px;}
.ws177{word-spacing:-0.430387px;}
.ws47{word-spacing:-0.358654px;}
.ws15b{word-spacing:-0.322790px;}
.ws53{word-spacing:-0.298878px;}
.wsfe{word-spacing:-0.282564px;}
.ws76{word-spacing:-0.277704px;}
.ws8a{word-spacing:-0.276552px;}
.ws14b{word-spacing:-0.268992px;}
.ws78{word-spacing:-0.268128px;}
.ws3c{word-spacing:-0.239102px;}
.ws1d{word-spacing:-0.215194px;}
.ws38{word-spacing:-0.179327px;}
.ws13e{word-spacing:-0.161395px;}
.ws26{word-spacing:-0.119551px;}
.ws130{word-spacing:-0.107597px;}
.ws83{word-spacing:-0.102204px;}
.ws77{word-spacing:-0.100548px;}
.ws2d{word-spacing:-0.059776px;}
.ws75{word-spacing:-0.057456px;}
.ws1b{word-spacing:-0.053798px;}
.ws33{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws140{word-spacing:-0.028282px;}
.ws17c{word-spacing:-0.018084px;}
.ws152{word-spacing:-0.001200px;}
.ws3{word-spacing:0.000000px;}
.wse8{word-spacing:0.018036px;}
.wsf6{word-spacing:0.030060px;}
.ws1e{word-spacing:0.053798px;}
.ws8c{word-spacing:0.054108px;}
.ws23{word-spacing:0.059776px;}
.wsb2{word-spacing:0.066132px;}
.wsfd{word-spacing:0.072144px;}
.ws9e{word-spacing:0.084168px;}
.wsa8{word-spacing:0.090180px;}
.ws93{word-spacing:0.102204px;}
.ws12f{word-spacing:0.107597px;}
.wscf{word-spacing:0.108216px;}
.wsa3{word-spacing:0.114228px;}
.ws27{word-spacing:0.119551px;}
.ws106{word-spacing:0.120240px;}
.wsf7{word-spacing:0.132264px;}
.wsd1{word-spacing:0.135000px;}
.wsa7{word-spacing:0.150300px;}
.wsd0{word-spacing:0.151200px;}
.ws9d{word-spacing:0.156312px;}
.wsca{word-spacing:0.161395px;}
.ws85{word-spacing:0.174348px;}
.ws41{word-spacing:0.179327px;}
.ws16{word-spacing:0.215194px;}
.ws4a{word-spacing:0.239102px;}
.ws10c{word-spacing:0.246492px;}
.ws142{word-spacing:0.268992px;}
.ws51{word-spacing:0.298878px;}
.ws144{word-spacing:0.322790px;}
.ws69{word-spacing:0.358654px;}
.ws131{word-spacing:0.376589px;}
.ws110{word-spacing:0.438876px;}
.wsa0{word-spacing:0.462924px;}
.ws92{word-spacing:0.468936px;}
.ws60{word-spacing:0.478205px;}
.ws111{word-spacing:0.480960px;}
.ws157{word-spacing:0.484186px;}
.ws11f{word-spacing:0.537980px;}
.ws94{word-spacing:0.565128px;}
.ws6d{word-spacing:0.597756px;}
.ws158{word-spacing:0.715624px;}
.ws39{word-spacing:0.717307px;}
.ws9b{word-spacing:0.745488px;}
.ws57{word-spacing:0.777083px;}
.ws7f{word-spacing:0.781560px;}
.ws62{word-spacing:0.836858px;}
.ws8b{word-spacing:0.871740px;}
.wsf3{word-spacing:0.874800px;}
.wsf2{word-spacing:0.891000px;}
.ws15a{word-spacing:0.914573px;}
.ws6a{word-spacing:0.956410px;}
.ws9{word-spacing:1.004227px;}
.ws70{word-spacing:1.016185px;}
.ws149{word-spacing:1.022170px;}
.ws46{word-spacing:1.135736px;}
.wscc{word-spacing:1.190376px;}
.ws67{word-spacing:1.255288px;}
.wsa2{word-spacing:1.286568px;}
.ws13b{word-spacing:1.291162px;}
.ws22{word-spacing:1.315063px;}
.wsa1{word-spacing:1.316628px;}
.ws11b{word-spacing:1.434614px;}
.ws1a{word-spacing:1.452557px;}
.wse6{word-spacing:1.509012px;}
.ws124{word-spacing:1.554166px;}
.ws17{word-spacing:1.560154px;}
.wsf4{word-spacing:1.575144px;}
.ws10a{word-spacing:1.605204px;}
.ws128{word-spacing:1.613941px;}
.ws10b{word-spacing:1.653300px;}
.ws121{word-spacing:1.673717px;}
.ws66{word-spacing:1.733492px;}
.ws137{word-spacing:1.775347px;}
.ws55{word-spacing:1.793268px;}
.ws11a{word-spacing:1.853044px;}
.ws109{word-spacing:1.857708px;}
.ws56{word-spacing:1.912819px;}
.ws17e{word-spacing:1.936742px;}
.wse1{word-spacing:1.989972px;}
.ws2f{word-spacing:2.032370px;}
.ws136{word-spacing:2.044339px;}
.ws42{word-spacing:2.151922px;}
.wsdb{word-spacing:2.248488px;}
.ws172{word-spacing:2.259533px;}
.ws80{word-spacing:2.296584px;}
.ws4b{word-spacing:2.391024px;}
.ws40{word-spacing:2.450800px;}
.ws133{word-spacing:2.474726px;}
.ws2{word-spacing:2.511541px;}
.ws17d{word-spacing:2.528525px;}
.wse7{word-spacing:2.555100px;}
.wsb9{word-spacing:2.570351px;}
.wsd4{word-spacing:2.603196px;}
.wsad{word-spacing:2.639268px;}
.wsd5{word-spacing:2.645280px;}
.wsdd{word-spacing:2.663316px;}
.ws5a{word-spacing:2.689902px;}
.wsf5{word-spacing:2.693376px;}
.wsac{word-spacing:2.705400px;}
.wsae{word-spacing:2.729448px;}
.ws151{word-spacing:2.851315px;}
.ws28{word-spacing:2.869229px;}
.ws14{word-spacing:2.869236px;}
.wsd6{word-spacing:2.915820px;}
.wscb{word-spacing:2.929004px;}
.wsdc{word-spacing:2.951892px;}
.ws1c{word-spacing:2.958912px;}
.wsfc{word-spacing:2.999988px;}
.ws61{word-spacing:3.048556px;}
.ws104{word-spacing:3.084156px;}
.ws103{word-spacing:3.096180px;}
.ws4e{word-spacing:3.108331px;}
.ws15f{word-spacing:3.120307px;}
.ws150{word-spacing:3.218822px;}
.ws180{word-spacing:3.219264px;}
.ws1f{word-spacing:3.219667px;}
.ws139{word-spacing:3.220848px;}
.ws162{word-spacing:3.221597px;}
.ws166{word-spacing:3.222029px;}
.ws173{word-spacing:3.222163px;}
.ws16a{word-spacing:3.223334px;}
.ws17b{word-spacing:3.223584px;}
.ws132{word-spacing:3.224822px;}
.ws45{word-spacing:3.227882px;}
.ws153{word-spacing:3.227904px;}
.wsf1{word-spacing:3.287658px;}
.ws96{word-spacing:3.300588px;}
.ws7c{word-spacing:3.342672px;}
.ws30{word-spacing:3.347434px;}
.wsd7{word-spacing:3.354696px;}
.ws95{word-spacing:3.360708px;}
.ws2c{word-spacing:3.407209px;}
.ws7d{word-spacing:3.414816px;}
.wse2{word-spacing:3.426840px;}
.ws7e{word-spacing:3.438864px;}
.ws3d{word-spacing:3.526760px;}
.ws20{word-spacing:3.586536px;}
.ws3a{word-spacing:3.646312px;}
.ws161{word-spacing:3.712090px;}
.wsff{word-spacing:3.715416px;}
.ws125{word-spacing:3.765863px;}
.ws4c{word-spacing:3.777513px;}
.ws100{word-spacing:3.799584px;}
.ws17a{word-spacing:3.819686px;}
.ws44{word-spacing:3.825638px;}
.ws18{word-spacing:3.873485px;}
.ws145{word-spacing:3.927283px;}
.ws15e{word-spacing:3.981082px;}
.ws87{word-spacing:3.991968px;}
.ws68{word-spacing:4.004965px;}
.ws89{word-spacing:4.022028px;}
.ws117{word-spacing:4.064112px;}
.wsb3{word-spacing:4.064741px;}
.ws88{word-spacing:4.070124px;}
.wse9{word-spacing:4.124516px;}
.ws58{word-spacing:4.184292px;}
.wsc4{word-spacing:4.303843px;}
.wsfb{word-spacing:4.388760px;}
.ws118{word-spacing:4.394772px;}
.ws129{word-spacing:4.423394px;}
.wsf8{word-spacing:4.490964px;}
.ws86{word-spacing:4.629240px;}
.wsfa{word-spacing:4.719420px;}
.ws12b{word-spacing:4.722272px;}
.wsaf{word-spacing:4.731444px;}
.ws10{word-spacing:4.770079px;}
.wsdf{word-spacing:4.779540px;}
.ws37{word-spacing:4.782048px;}
.ws113{word-spacing:4.785552px;}
.ws6e{word-spacing:4.841824px;}
.ws179{word-spacing:4.841856px;}
.ws11{word-spacing:4.853765px;}
.ws112{word-spacing:4.863708px;}
.wsde{word-spacing:4.881744px;}
.ws5b{word-spacing:4.901599px;}
.wsb0{word-spacing:4.947876px;}
.ws168{word-spacing:4.949453px;}
.ws12c{word-spacing:4.961375px;}
.wsf9{word-spacing:5.134248px;}
.ws120{word-spacing:5.200477px;}
.wsb1{word-spacing:5.218416px;}
.ws10e{word-spacing:5.230440px;}
.ws25{word-spacing:5.260253px;}
.ws147{word-spacing:5.272243px;}
.wse3{word-spacing:5.452884px;}
.ws65{word-spacing:5.499355px;}
.ws123{word-spacing:5.798233px;}
.ws7a{word-spacing:5.801580px;}
.ws97{word-spacing:5.807592px;}
.ws7b{word-spacing:5.843664px;}
.ws3b{word-spacing:5.977560px;}
.ws2b{word-spacing:6.037336px;}
.ws3e{word-spacing:6.097111px;}
.ws2a{word-spacing:6.156887px;}
.ws5c{word-spacing:6.216662px;}
.wsb7{word-spacing:6.395989px;}
.wsb8{word-spacing:6.455765px;}
.wsab{word-spacing:6.510996px;}
.wsc6{word-spacing:6.515540px;}
.ws91{word-spacing:6.523020px;}
.wscd{word-spacing:6.529032px;}
.ws8d{word-spacing:6.583140px;}
.wsec{word-spacing:6.635092px;}
.ws12e{word-spacing:6.754643px;}
.ws8e{word-spacing:6.769512px;}
.ws36{word-spacing:6.814418px;}
.wsaa{word-spacing:6.877728px;}
.wsa4{word-spacing:6.883740px;}
.wsa6{word-spacing:6.895764px;}
.wsa9{word-spacing:6.961896px;}
.ws59{word-spacing:7.113296px;}
.wsa5{word-spacing:7.118208px;}
.ws19{word-spacing:7.208986px;}
.wsd2{word-spacing:7.250472px;}
.wsd3{word-spacing:7.280532px;}
.ws98{word-spacing:7.292556px;}
.ws115{word-spacing:7.298568px;}
.ws9a{word-spacing:7.316604px;}
.ws116{word-spacing:7.376724px;}
.ws99{word-spacing:7.424820px;}
.ws43{word-spacing:7.711052px;}
.ws122{word-spacing:7.770828px;}
.wse{word-spacing:7.782761px;}
.wsb6{word-spacing:7.950155px;}
.ws5f{word-spacing:8.189257px;}
.wsb5{word-spacing:8.308808px;}
.wsd8{word-spacing:8.735436px;}
.wsd9{word-spacing:8.759484px;}
.ws6{word-spacing:10.418056px;}
.ws14d{word-spacing:12.050842px;}
.ws170{word-spacing:12.158438px;}
.wsc{word-spacing:12.176255px;}
.ws82{word-spacing:12.667284px;}
.ws81{word-spacing:12.673296px;}
.ws126{word-spacing:12.883396px;}
.ws5{word-spacing:12.929425px;}
.ws15c{word-spacing:13.073011px;}
.ws14c{word-spacing:13.126810px;}
.ws13f{word-spacing:13.234406px;}
.ws14f{word-spacing:13.288205px;}
.ws175{word-spacing:13.342003px;}
.ws167{word-spacing:13.388294px;}
.ws146{word-spacing:13.388544px;}
.ws156{word-spacing:13.388592px;}
.ws15d{word-spacing:13.388822px;}
.ws14a{word-spacing:13.391232px;}
.ws13c{word-spacing:13.392230px;}
.ws16d{word-spacing:13.392336px;}
.ws141{word-spacing:13.395802px;}
.ws164{word-spacing:13.610995px;}
.ws143{word-spacing:13.664794px;}
.ws159{word-spacing:14.095181px;}
.ws8f{word-spacing:14.555052px;}
.ws90{word-spacing:14.633208px;}
.ws6c{word-spacing:14.645022px;}
.ws31{word-spacing:14.776565px;}
.ws34{word-spacing:14.884124px;}
.ws4f{word-spacing:14.904531px;}
.ws24{word-spacing:14.920154px;}
.ws52{word-spacing:14.943900px;}
.ws49{word-spacing:15.117464px;}
.ws6b{word-spacing:15.123227px;}
.ws71{word-spacing:15.840534px;}
.wsd{word-spacing:16.109478px;}
.ws154{word-spacing:16.462310px;}
.ws16e{word-spacing:16.615402px;}
.ws17f{word-spacing:16.615920px;}
.ws176{word-spacing:16.616765px;}
.ws16b{word-spacing:16.618550px;}
.ws138{word-spacing:16.618656px;}
.ws16c{word-spacing:16.618685px;}
.ws171{word-spacing:16.619914px;}
.ws181{word-spacing:16.620134px;}
.ws13d{word-spacing:16.620336px;}
.ws148{word-spacing:16.620518px;}
.ws182{word-spacing:16.621104px;}
.ws160{word-spacing:16.621920px;}
.ws13a{word-spacing:16.623706px;}
.ws155{word-spacing:16.624714px;}
.ws178{word-spacing:16.731302px;}
.ws165{word-spacing:16.785101px;}
.ws4d{word-spacing:17.275148px;}
.ws127{word-spacing:17.813129px;}
.ws48{word-spacing:18.410885px;}
.ws12a{word-spacing:19.295500px;}
.ws6f{word-spacing:19.724130px;}
.ws3f{word-spacing:20.981236px;}
.wsf{word-spacing:26.109907px;}
.ws12{word-spacing:26.791603px;}
.wsb{word-spacing:26.840252px;}
.ws169{word-spacing:32.010048px;}
.wsba{word-spacing:260.868442px;}
.wsc8{word-spacing:890.309722px;}
.wsc1{word-spacing:1025.558899px;}
.wsc0{word-spacing:1059.936077px;}
.wsc3{word-spacing:1067.521651px;}
.wsc2{word-spacing:1098.993715px;}
._a{margin-left:-12.463348px;}
._9{margin-left:-7.962163px;}
._10{margin-left:-6.939994px;}
._3{margin-left:-5.397721px;}
._1a{margin-left:-4.363619px;}
._2{margin-left:-3.096367px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._7{width:2.301354px;}
._b{width:3.478826px;}
._24{width:4.483170px;}
._4{width:10.461779px;}
._15{width:11.955150px;}
._6{width:12.971268px;}
._d{width:13.987584px;}
._16{width:15.454580px;}
._c{width:17.246957px;}
._11{width:18.649987px;}
._14{width:20.204153px;}
._e{width:22.088813px;}
._19{width:23.733412px;}
._26{width:24.901517px;}
._5{width:25.946136px;}
._13{width:27.676103px;}
._23{width:29.058509px;}
._8{width:30.587087px;}
._21{width:31.979946px;}
._25{width:34.019884px;}
._12{width:35.520298px;}
._f{width:38.174534px;}
._1b{width:40.288754px;}
._1e{width:43.053566px;}
._1d{width:44.552398px;}
._29{width:61.868160px;}
._28{width:88.767360px;}
._22{width:174.306816px;}
._17{width:431.580915px;}
._1f{width:574.835904px;}
._20{width:716.917478px;}
._1c{width:1651.000136px;}
._27{width:2009.122694px;}
._18{width:2033.032694px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(40,82,46);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs8{font-size:35.865600px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs7{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fsa{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs3{font-size:56.694600px;}
.fs5{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fs4{font-size:60.474240px;}
.fsd{font-size:65.880000px;}
.fs6{font-size:107.596800px;}
.y16a{bottom:-730.769550px;}
.y169{bottom:-711.509550px;}
.y168{bottom:-692.339550px;}
.y167{bottom:-673.068363px;}
.y166{bottom:-653.808921px;}
.y165{bottom:-634.639659px;}
.y164{bottom:-615.380217px;}
.y163{bottom:-596.210955px;}
.y162{bottom:-576.951513px;}
.y161{bottom:-557.692071px;}
.y160{bottom:-538.522809px;}
.y15f{bottom:-519.263367px;}
.y15e{bottom:-500.094105px;}
.y15d{bottom:-480.834663px;}
.y15c{bottom:-461.575221px;}
.y15b{bottom:-442.405959px;}
.y15a{bottom:-423.146517px;}
.y141{bottom:-413.561487px;}
.y159{bottom:-403.887075px;}
.y140{bottom:-394.302045px;}
.y158{bottom:-384.717813px;}
.y13f{bottom:-375.132783px;}
.y157{bottom:-365.458371px;}
.y13e{bottom:-355.873341px;}
.y156{bottom:-346.289109px;}
.y13d{bottom:-336.613899px;}
.y155{bottom:-327.029667px;}
.y13c{bottom:-317.444637px;}
.y154{bottom:-303.270243px;}
.y13b{bottom:-298.185195px;}
.y13a{bottom:-279.015933px;}
.y153{bottom:-266.099550px;}
.y139{bottom:-259.756491px;}
.y152{bottom:-246.839550px;}
.y138{bottom:-240.497049px;}
.y151{bottom:-227.669550px;}
.y137{bottom:-221.327787px;}
.y150{bottom:-208.405104px;}
.y136{bottom:-202.068345px;}
.y14f{bottom:-189.145662px;}
.y135{bottom:-182.808903px;}
.y14e{bottom:-169.976400px;}
.y134{bottom:-163.639641px;}
.y14d{bottom:-150.716958px;}
.y133{bottom:-144.380199px;}
.y14c{bottom:-131.547696px;}
.y132{bottom:-125.209434px;}
.y14b{bottom:-112.288254px;}
.y131{bottom:-105.949992px;}
.y14a{bottom:-93.028812px;}
.y130{bottom:-86.690550px;}
.y149{bottom:-73.859550px;}
.y12f{bottom:-49.880550px;}
.y148{bottom:-37.050000px;}
.y12e{bottom:-27.468588px;}
.y147{bottom:-19.679550px;}
.ye4{bottom:-9.326106px;}
.y0{bottom:0.000000px;}
.y146{bottom:2.820450px;}
.y3{bottom:3.425340px;}
.y20{bottom:6.350457px;}
.y2{bottom:14.151273px;}
.y1f{bottom:20.308195px;}
.y4b{bottom:31.890000px;}
.y1e{bottom:37.114269px;}
.yea{bottom:91.665000px;}
.y1a4{bottom:100.917000px;}
.y81{bottom:102.709500px;}
.y17c{bottom:103.816500px;}
.y1c{bottom:104.646000px;}
.y112{bottom:104.844000px;}
.y142{bottom:105.126000px;}
.yb4{bottom:107.193000px;}
.y197{bottom:107.641500px;}
.ye9{bottom:110.494500px;}
.y80{bottom:121.539000px;}
.y20f{bottom:121.762500px;}
.y1b{bottom:122.535000px;}
.y17b{bottom:122.646000px;}
.y1da{bottom:123.601500px;}
.y111{bottom:123.673500px;}
.yb3{bottom:126.022500px;}
.y196{bottom:126.471000px;}
.y1a3{bottom:127.456500px;}
.ye8{bottom:129.324000px;}
.y127{bottom:130.543500px;}
.y20e{bottom:139.023000px;}
.y1a{bottom:140.422500px;}
.y1d9{bottom:140.862000px;}
.y17a{bottom:141.475500px;}
.y110{bottom:142.503000px;}
.y7f{bottom:144.852000px;}
.y1a2{bottom:145.030500px;}
.y195{bottom:145.300500px;}
.ye7{bottom:148.153500px;}
.y20d{bottom:156.283500px;}
.y1d8{bottom:158.122500px;}
.y19{bottom:158.310000px;}
.y4a{bottom:158.913000px;}
.y179{bottom:160.305000px;}
.y10f{bottom:161.332500px;}
.y1a1{bottom:162.606000px;}
.yb2{bottom:163.681500px;}
.y194{bottom:164.130000px;}
.ye6{bottom:171.466500px;}
.y20c{bottom:173.544000px;}
.y1d7{bottom:175.383000px;}
.y18{bottom:176.199000px;}
.y49{bottom:177.742500px;}
.y7e{bottom:178.476000px;}
.y178{bottom:179.134500px;}
.y10e{bottom:180.162000px;}
.y1a0{bottom:180.180000px;}
.yb1{bottom:182.511000px;}
.y193{bottom:182.959500px;}
.y20b{bottom:190.804500px;}
.y1d6{bottom:192.643500px;}
.y17{bottom:194.086500px;}
.y48{bottom:196.572000px;}
.y7d{bottom:197.305500px;}
.y10d{bottom:198.991500px;}
.ye5{bottom:200.895000px;}
.yb0{bottom:201.340500px;}
.y192{bottom:201.789000px;}
.y177{bottom:202.447500px;}
.y20a{bottom:208.065000px;}
.y1d5{bottom:209.902500px;}
.y16{bottom:211.974000px;}
.y47{bottom:215.401500px;}
.y19f{bottom:215.686500px;}
.y7c{bottom:216.135000px;}
.yaf{bottom:220.170000px;}
.y191{bottom:220.618500px;}
.y209{bottom:225.325500px;}
.ybd{bottom:226.314600px;}
.y1d4{bottom:227.163000px;}
.y15{bottom:229.863000px;}
.y46{bottom:234.231000px;}
.y19e{bottom:234.516000px;}
.y7b{bottom:234.964500px;}
.y176{bottom:236.071500px;}
.yae{bottom:238.999500px;}
.y190{bottom:239.446500px;}
.y208{bottom:242.586000px;}
.y1d3{bottom:244.423500px;}
.y10c{bottom:244.453500px;}
.y45{bottom:253.060500px;}
.y19d{bottom:253.345500px;}
.y7a{bottom:253.794000px;}
.y175{bottom:254.901000px;}
.yad{bottom:257.829000px;}
.y18f{bottom:258.276000px;}
.y207{bottom:259.846500px;}
.y10b{bottom:260.892000px;}
.y1d2{bottom:261.684000px;}
.y44{bottom:271.888500px;}
.y19c{bottom:272.175000px;}
.y79{bottom:272.623500px;}
.y174{bottom:273.730500px;}
.yac{bottom:276.658500px;}
.y18e{bottom:277.105500px;}
.y10a{bottom:277.330500px;}
.y1d1{bottom:278.944500px;}
.ye3{bottom:288.843543px;}
.y12d{bottom:289.330746px;}
.y43{bottom:290.718000px;}
.y19b{bottom:291.004500px;}
.y78{bottom:291.453000px;}
.y173{bottom:292.560000px;}
.y109{bottom:293.769000px;}
.y206{bottom:294.366000px;}
.yab{bottom:295.488000px;}
.y18d{bottom:295.935000px;}
.y1d0{bottom:296.205000px;}
.y14{bottom:300.154500px;}
.ye2{bottom:308.102985px;}
.y12c{bottom:308.590188px;}
.y42{bottom:309.547500px;}
.y19a{bottom:309.834000px;}
.y77{bottom:310.282500px;}
.y172{bottom:311.389500px;}
.y205{bottom:311.626500px;}
.y1cf{bottom:313.465500px;}
.yaa{bottom:314.317500px;}
.y18c{bottom:314.764500px;}
.y108{bottom:317.409000px;}
.y13{bottom:318.043500px;}
.y145{bottom:320.431035px;}
.ye1{bottom:327.362427px;}
.y12b{bottom:327.759450px;}
.y41{bottom:328.377000px;}
.y199{bottom:328.663500px;}
.y204{bottom:328.887000px;}
.y76{bottom:329.112000px;}
.y171{bottom:330.219000px;}
.y144{bottom:330.240450px;}
.y1ce{bottom:330.726000px;}
.ya9{bottom:333.145500px;}
.y18b{bottom:333.594000px;}
.y12{bottom:335.931000px;}
.y203{bottom:346.147500px;}
.ye0{bottom:346.531689px;}
.y12a{bottom:347.019450px;}
.y40{bottom:347.206500px;}
.y198{bottom:347.493000px;}
.y75{bottom:347.940000px;}
.y1cd{bottom:347.986500px;}
.y107{bottom:349.029000px;}
.y170{bottom:349.048500px;}
.ya8{bottom:351.975000px;}
.y18a{bottom:352.423500px;}
.y11{bottom:353.818500px;}
.y202{bottom:363.408000px;}
.y1cc{bottom:365.245500px;}
.ydf{bottom:365.791131px;}
.y3f{bottom:366.036000px;}
.y74{bottom:366.769500px;}
.y16f{bottom:367.878000px;}
.ya7{bottom:370.804500px;}
.y189{bottom:371.253000px;}
.y201{bottom:380.668500px;}
.y10{bottom:380.673000px;}
.y1cb{bottom:382.506000px;}
.y3e{bottom:384.865500px;}
.yde{bottom:384.960393px;}
.y73{bottom:385.599000px;}
.y106{bottom:386.133000px;}
.y16e{bottom:386.707500px;}
.ya6{bottom:389.634000px;}
.y188{bottom:390.082500px;}
.y200{bottom:397.929000px;}
.yf{bottom:398.562000px;}
.y1ca{bottom:399.766500px;}
.y129{bottom:401.560035px;}
.y3d{bottom:403.695000px;}
.ydd{bottom:404.219835px;}
.y72{bottom:404.428500px;}
.y105{bottom:404.962500px;}
.y16d{bottom:405.537000px;}
.ya5{bottom:408.463500px;}
.y187{bottom:408.912000px;}
.y128{bottom:411.369450px;}
.y1ff{bottom:415.188000px;}
.ye{bottom:416.449500px;}
.y1c9{bottom:417.027000px;}
.y126{bottom:417.060000px;}
.y3c{bottom:422.524500px;}
.y71{bottom:423.258000px;}
.ydc{bottom:423.479277px;}
.y104{bottom:423.792000px;}
.y16c{bottom:424.366500px;}
.ya4{bottom:427.293000px;}
.y186{bottom:427.741500px;}
.y1fe{bottom:432.448500px;}
.y1c8{bottom:434.287500px;}
.y125{bottom:435.889500px;}
.y3b{bottom:441.354000px;}
.y70{bottom:442.087500px;}
.y103{bottom:442.621500px;}
.ydb{bottom:442.650042px;}
.yd{bottom:444.798000px;}
.ya3{bottom:446.122500px;}
.y185{bottom:446.571000px;}
.y1fd{bottom:449.709000px;}
.y1c7{bottom:451.548000px;}
.y124{bottom:454.719000px;}
.y16b{bottom:457.932000px;}
.y3a{bottom:460.183500px;}
.y6f{bottom:460.917000px;}
.y102{bottom:461.451000px;}
.yda{bottom:461.909484px;}
.yc{bottom:462.685500px;}
.ya2{bottom:464.952000px;}
.y184{bottom:465.400500px;}
.y1fc{bottom:466.969500px;}
.y1c6{bottom:468.808500px;}
.y123{bottom:473.548500px;}
.y39{bottom:479.013000px;}
.y6e{bottom:479.746500px;}
.y101{bottom:480.280500px;}
.yd9{bottom:481.168926px;}
.y143{bottom:483.349500px;}
.ya1{bottom:483.781500px;}
.y183{bottom:484.230000px;}
.y1c5{bottom:486.069000px;}
.yb{bottom:489.540000px;}
.y122{bottom:496.860000px;}
.y38{bottom:497.842500px;}
.y6d{bottom:498.576000px;}
.y100{bottom:499.110000px;}
.y1fb{bottom:501.490500px;}
.ya0{bottom:502.611000px;}
.y182{bottom:503.059500px;}
.y1c4{bottom:503.328000px;}
.yd8{bottom:504.928350px;}
.ya{bottom:507.429000px;}
.y6c{bottom:517.405500px;}
.y1fa{bottom:518.751000px;}
.y1c3{bottom:520.588500px;}
.y37{bottom:521.155500px;}
.y9f{bottom:521.440500px;}
.y181{bottom:521.889000px;}
.yff{bottom:522.423000px;}
.y9{bottom:525.316500px;}
.y121{bottom:530.484000px;}
.y1f9{bottom:536.011500px;}
.y6b{bottom:536.235000px;}
.y1c2{bottom:537.849000px;}
.y9e{bottom:540.270000px;}
.y180{bottom:540.718500px;}
.yd7{bottom:542.105289px;}
.y8{bottom:543.204000px;}
.y120{bottom:549.313500px;}
.y1f8{bottom:553.272000px;}
.y6a{bottom:555.064500px;}
.y1c1{bottom:555.109500px;}
.y9d{bottom:559.099500px;}
.y17f{bottom:559.548000px;}
.y7{bottom:561.093000px;}
.yd6{bottom:561.274551px;}
.yfe{bottom:564.745500px;}
.y11f{bottom:568.143000px;}
.y1f7{bottom:570.531000px;}
.y1c0{bottom:572.370000px;}
.yfc{bottom:572.965500px;}
.y69{bottom:573.894000px;}
.ybc{bottom:577.929000px;}
.y17e{bottom:578.377500px;}
.y6{bottom:578.980500px;}
.yd5{bottom:580.533993px;}
.yfd{bottom:581.184000px;}
.y9c{bottom:582.412500px;}
.y11e{bottom:586.972500px;}
.y1f6{bottom:587.791500px;}
.y1bf{bottom:589.630500px;}
.yf8{bottom:591.769500px;}
.y68{bottom:592.723500px;}
.y36{bottom:596.305500px;}
.ybb{bottom:596.758500px;}
.y5{bottom:596.868000px;}
.y17d{bottom:597.207000px;}
.yd4{bottom:599.793435px;}
.yfb{bottom:604.825500px;}
.y1f5{bottom:605.052000px;}
.y1be{bottom:606.891000px;}
.y11d{bottom:610.285500px;}
.y67{bottom:611.553000px;}
.yf9{bottom:613.044000px;}
.y4{bottom:614.757000px;}
.yba{bottom:615.588000px;}
.y9b{bottom:616.036500px;}
.yd3{bottom:618.964200px;}
.yfa{bottom:621.264000px;}
.y1f4{bottom:622.312500px;}
.y1bd{bottom:624.151500px;}
.y66{bottom:630.382500px;}
.y1{bottom:632.644464px;}
.y35{bottom:633.694500px;}
.yb9{bottom:634.417500px;}
.y9a{bottom:634.866000px;}
.yd2{bottom:638.223642px;}
.y1f3{bottom:639.573000px;}
.y1bc{bottom:641.412000px;}
.yf7{bottom:644.904000px;}
.y65{bottom:649.212000px;}
.y11c{bottom:652.609500px;}
.y34{bottom:653.152500px;}
.yb8{bottom:653.247000px;}
.y99{bottom:653.695500px;}
.y1f2{bottom:656.833500px;}
.yd1{bottom:657.394407px;}
.y1bb{bottom:658.671000px;}
.y11a{bottom:660.828000px;}
.y64{bottom:668.041500px;}
.y11b{bottom:669.048000px;}
.yb7{bottom:672.076500px;}
.y98{bottom:672.525000px;}
.y33{bottom:672.609000px;}
.y1f1{bottom:674.094000px;}
.y1ba{bottom:675.931500px;}
.yf6{bottom:676.524000px;}
.yd0{bottom:676.653849px;}
.y63{bottom:686.871000px;}
.yb6{bottom:690.906000px;}
.y97{bottom:691.354500px;}
.y32{bottom:692.067000px;}
.y119{bottom:692.688000px;}
.y1b9{bottom:693.192000px;}
.ycf{bottom:695.913291px;}
.y62{bottom:705.700500px;}
.y1f0{bottom:708.613500px;}
.yf5{bottom:709.735500px;}
.y96{bottom:710.184000px;}
.y1b8{bottom:710.452500px;}
.y31{bottom:711.523500px;}
.yb5{bottom:714.219000px;}
.yce{bottom:715.082553px;}
.y118{bottom:716.329500px;}
.y61{bottom:724.530000px;}
.y1ef{bottom:725.874000px;}
.y1b7{bottom:727.713000px;}
.yf4{bottom:728.565000px;}
.y95{bottom:729.013500px;}
.y30{bottom:730.980000px;}
.ycd{bottom:734.341995px;}
.y1ee{bottom:743.134500px;}
.y60{bottom:743.359500px;}
.y1b6{bottom:744.973500px;}
.yf3{bottom:747.394500px;}
.y94{bottom:747.843000px;}
.y117{bottom:747.948000px;}
.y2f{bottom:750.438000px;}
.ycc{bottom:753.512760px;}
.y1ed{bottom:760.395000px;}
.y5f{bottom:762.189000px;}
.y1b5{bottom:762.234000px;}
.yf2{bottom:766.224000px;}
.y93{bottom:766.671000px;}
.y2e{bottom:769.894500px;}
.ycb{bottom:772.772202px;}
.y1ec{bottom:777.655500px;}
.y1b4{bottom:779.494500px;}
.y5e{bottom:781.018500px;}
.yf1{bottom:785.053500px;}
.y92{bottom:785.500500px;}
.y2d{bottom:789.351000px;}
.yca{bottom:792.031644px;}
.y1eb{bottom:794.916000px;}
.y1b3{bottom:796.753500px;}
.y5d{bottom:799.848000px;}
.yf0{bottom:803.883000px;}
.y91{bottom:804.330000px;}
.y2c{bottom:808.809000px;}
.yc9{bottom:811.200906px;}
.y1ea{bottom:812.176500px;}
.y1b2{bottom:814.014000px;}
.y5c{bottom:818.677500px;}
.yef{bottom:822.712500px;}
.y90{bottom:823.159500px;}
.y2b{bottom:828.265500px;}
.y1e9{bottom:829.437000px;}
.yc8{bottom:830.460348px;}
.y1b1{bottom:831.274500px;}
.y5b{bottom:837.507000px;}
.yee{bottom:841.540500px;}
.y8f{bottom:841.989000px;}
.y1e8{bottom:846.697500px;}
.y1b0{bottom:848.535000px;}
.yc7{bottom:849.719790px;}
.y5a{bottom:856.335000px;}
.yed{bottom:860.370000px;}
.y8e{bottom:860.818500px;}
.y1e7{bottom:863.956500px;}
.y1af{bottom:865.795500px;}
.y2a{bottom:866.851500px;}
.yc6{bottom:868.890555px;}
.y59{bottom:875.164500px;}
.yec{bottom:879.199500px;}
.y8d{bottom:879.648000px;}
.y1e6{bottom:881.217000px;}
.y1ae{bottom:883.056000px;}
.y29{bottom:887.331000px;}
.yc5{bottom:888.149997px;}
.y58{bottom:893.994000px;}
.y116{bottom:898.029000px;}
.y8c{bottom:898.477500px;}
.y28{bottom:899.130000px;}
.y1ad{bottom:900.316500px;}
.yeb{bottom:902.512500px;}
.yc4{bottom:907.320762px;}
.y57{bottom:912.823500px;}
.y1e5{bottom:915.738000px;}
.y115{bottom:916.858500px;}
.y8b{bottom:917.307000px;}
.y27{bottom:919.609500px;}
.y1ac{bottom:922.059000px;}
.yc3{bottom:926.580204px;}
.y26{bottom:931.410000px;}
.y56{bottom:931.653000px;}
.y1e4{bottom:932.998500px;}
.y114{bottom:935.688000px;}
.y8a{bottom:936.136500px;}
.yc2{bottom:945.839646px;}
.y1e3{bottom:950.259000px;}
.y55{bottom:950.482500px;}
.y25{bottom:951.888000px;}
.y89{bottom:954.966000px;}
.y1ab{bottom:955.683000px;}
.y113{bottom:959.001000px;}
.yc1{bottom:965.008908px;}
.y1e2{bottom:967.519500px;}
.y54{bottom:969.312000px;}
.y88{bottom:973.795500px;}
.y1aa{bottom:982.224000px;}
.yc0{bottom:984.268350px;}
.y1e1{bottom:984.780000px;}
.y53{bottom:988.141500px;}
.y87{bottom:992.625000px;}
.y24{bottom:996.565500px;}
.y1a9{bottom:999.798000px;}
.y210{bottom:1002.039000px;}
.y1e0{bottom:1002.040500px;}
.y52{bottom:1006.971000px;}
.y86{bottom:1011.454500px;}
.y1a8{bottom:1017.372000px;}
.y1df{bottom:1019.299500px;}
.y51{bottom:1025.800500px;}
.y85{bottom:1030.284000px;}
.y23{bottom:1036.485000px;}
.y1de{bottom:1036.560000px;}
.ybf{bottom:1038.808935px;}
.y1a7{bottom:1043.913000px;}
.y50{bottom:1044.630000px;}
.ybe{bottom:1048.618350px;}
.y84{bottom:1049.113500px;}
.y1dd{bottom:1053.820500px;}
.y4f{bottom:1063.459500px;}
.y22{bottom:1064.728500px;}
.y83{bottom:1067.943000px;}
.y1a6{bottom:1070.454000px;}
.y1dc{bottom:1071.081000px;}
.y4e{bottom:1082.289000px;}
.y82{bottom:1086.772500px;}
.y1a5{bottom:1088.028000px;}
.y1db{bottom:1088.341500px;}
.y21{bottom:1092.972000px;}
.y4d{bottom:1105.602000px;}
.y1d{bottom:1136.460000px;}
.y4c{bottom:1168.366500px;}
.h2{height:25.508090px;}
.he{height:26.110157px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.hf{height:34.813397px;}
.h17{height:34.951465px;}
.h15{height:35.052500px;}
.h10{height:38.896243px;}
.h11{height:39.165235px;}
.h8{height:39.402747px;}
.h1b{height:39.418945px;}
.h12{height:39.434227px;}
.h9{height:41.001535px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.ha{height:43.815515px;}
.h18{height:43.886426px;}
.h19{height:48.063357px;}
.h7{height:50.931027px;}
.hd{height:54.541601px;}
.hb{height:77.792486px;}
.hc{height:78.115277px;}
.h16{height:257.547900px;}
.h1a{height:267.358500px;}
.h1c{height:278.511000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:215.864690px;}
.w5{width:697.097850px;}
.w6{width:757.951650px;}
.w4{width:770.192400px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x6c{left:-87.283650px;}
.x71{left:-25.730850px;}
.x59{left:-3.887100px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x1{left:53.574073px;}
.x3{left:59.014071px;}
.x58{left:61.148100px;}
.x70{left:67.268850px;}
.x7d{left:85.848000px;}
.x6b{left:97.695150px;}
.x6e{left:108.286350px;}
.x6d{left:140.146350px;}
.x73{left:169.839150px;}
.x5b{left:191.683006px;}
.x74{left:201.699150px;}
.x5a{left:223.542900px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x6a{left:258.556500px;}
.x60{left:259.788000px;}
.x69{left:267.220500px;}
.x5{left:269.914500px;}
.x8{left:281.479500px;}
.xd{left:294.807000px;}
.x5f{left:298.558500px;}
.xe{left:302.278500px;}
.xf{left:306.025500px;}
.x7{left:308.016000px;}
.x40{left:311.628000px;}
.x10{left:313.497000px;}
.x41{left:326.572500px;}
.x25{left:330.198000px;}
.x75{left:334.491000px;}
.x53{left:340.858500px;}
.x26{left:345.141000px;}
.x76{left:349.435500px;}
.x3e{left:356.275500px;}
.x4e{left:359.461500px;}
.x11{left:361.704000px;}
.x2a{left:362.964000px;}
.x12{left:369.175500px;}
.x3f{left:371.218500px;}
.x64{left:377.332500px;}
.x66{left:379.221000px;}
.x3c{left:382.719000px;}
.x65{left:387.096000px;}
.x13{left:390.532500px;}
.x17{left:394.291500px;}
.x3d{left:397.663500px;}
.x14{left:405.477000px;}
.x15{left:409.287000px;}
.x1f{left:413.412000px;}
.x61{left:417.622500px;}
.x16{left:424.231500px;}
.x20{left:428.355000px;}
.x7c{left:430.056000px;}
.x7b{left:433.692000px;}
.x46{left:440.278500px;}
.x47{left:455.223000px;}
.x32{left:475.102500px;}
.x56{left:488.896500px;}
.x33{left:490.045500px;}
.x34{left:497.368500px;}
.x57{left:503.839500px;}
.x28{left:506.616000px;}
.x42{left:508.912500px;}
.x35{left:512.313000px;}
.x4f{left:516.628500px;}
.x29{left:521.560500px;}
.x43{left:523.857000px;}
.x67{left:525.930000px;}
.x44{left:527.637000px;}
.x63{left:530.445000px;}
.x50{left:531.573000px;}
.x1b{left:534.042000px;}
.x62{left:539.130000px;}
.x68{left:540.873000px;}
.x45{left:542.581500px;}
.x1c{left:548.985000px;}
.x36{left:552.484500px;}
.x77{left:565.200000px;}
.x37{left:567.429000px;}
.x38{left:571.209000px;}
.x78{left:580.143000px;}
.x18{left:581.986500px;}
.x79{left:583.917000px;}
.x2b{left:586.261500px;}
.x48{left:594.573000px;}
.x19{left:596.929500px;}
.x7a{left:598.860000px;}
.x2c{left:601.206000px;}
.x54{left:603.499500px;}
.x2d{left:606.867000px;}
.x49{left:609.516000px;}
.x1a{left:612.099000px;}
.x55{left:618.444000px;}
.x2e{left:621.811500px;}
.x31{left:626.997000px;}
.x1d{left:629.412000px;}
.x1e{left:644.355000px;}
.x21{left:648.865500px;}
.x4a{left:659.949000px;}
.x22{left:663.808500px;}
.x80{left:671.295000px;}
.x4b{left:674.893500px;}
.x39{left:678.747000px;}
.x6f{left:697.153532px;}
.x81{left:698.194500px;}
.x51{left:700.879500px;}
.x52{left:715.824000px;}
.x23{left:726.997500px;}
.x9{left:729.811500px;}
.xa{left:737.283000px;}
.x24{left:741.942000px;}
.x5d{left:746.326500px;}
.x4c{left:753.235500px;}
.x72{left:758.709150px;}
.x5e{left:761.271000px;}
.x4d{left:768.180000px;}
.x5c{left:780.550082px;}
.x2f{left:798.379500px;}
.x7e{left:810.292500px;}
.x30{left:813.324000px;}
.x27{left:817.290000px;}
.x3a{left:819.013500px;}
.xb{left:824.422500px;}
.xc{left:831.894000px;}
.x3b{left:833.956500px;}
.x7f{left:837.192000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.285333pt;}
.ls2a{letter-spacing:-2.794912pt;}
.ls45{letter-spacing:-0.197728pt;}
.ls22{letter-spacing:-0.187040pt;}
.ls25{letter-spacing:-0.171008pt;}
.ls2d{letter-spacing:-0.160320pt;}
.ls31{letter-spacing:-0.149632pt;}
.ls20{letter-spacing:-0.144288pt;}
.ls43{letter-spacing:-0.133600pt;}
.ls2c{letter-spacing:-0.122912pt;}
.ls26{letter-spacing:-0.117568pt;}
.ls29{letter-spacing:-0.112224pt;}
.ls41{letter-spacing:-0.106880pt;}
.ls30{letter-spacing:-0.101536pt;}
.ls27{letter-spacing:-0.096192pt;}
.ls1d{letter-spacing:-0.090848pt;}
.ls3a{letter-spacing:-0.085504pt;}
.ls2f{letter-spacing:-0.080160pt;}
.ls44{letter-spacing:-0.074816pt;}
.ls1c{letter-spacing:-0.069472pt;}
.ls3f{letter-spacing:-0.064128pt;}
.ls42{letter-spacing:-0.058784pt;}
.ls2b{letter-spacing:-0.053440pt;}
.ls24{letter-spacing:-0.048096pt;}
.ls39{letter-spacing:-0.042752pt;}
.ls1f{letter-spacing:-0.037408pt;}
.ls3e{letter-spacing:-0.032064pt;}
.ls38{letter-spacing:-0.026720pt;}
.ls1a{letter-spacing:-0.025536pt;}
.ls28{letter-spacing:-0.021376pt;}
.ls21{letter-spacing:-0.016032pt;}
.ls23{letter-spacing:-0.010688pt;}
.ls1b{letter-spacing:-0.005344pt;}
.ls9{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000078pt;}
.ls52{letter-spacing:0.000159pt;}
.ls49{letter-spacing:0.000372pt;}
.ls51{letter-spacing:0.000403pt;}
.ls4d{letter-spacing:0.000600pt;}
.ls50{letter-spacing:0.000711pt;}
.ls4f{letter-spacing:0.001026pt;}
.lsa{letter-spacing:0.001154pt;}
.ls48{letter-spacing:0.001688pt;}
.ls4a{letter-spacing:0.002262pt;}
.ls4b{letter-spacing:0.004267pt;}
.ls17{letter-spacing:0.005344pt;}
.ls12{letter-spacing:0.010688pt;}
.lse{letter-spacing:0.012768pt;}
.ls3b{letter-spacing:0.014400pt;}
.ls36{letter-spacing:0.016032pt;}
.ls33{letter-spacing:0.021376pt;}
.ls3c{letter-spacing:0.024000pt;}
.ls15{letter-spacing:0.026720pt;}
.ls34{letter-spacing:0.028800pt;}
.ls14{letter-spacing:0.032064pt;}
.ls10{letter-spacing:0.037408pt;}
.ls3d{letter-spacing:0.038400pt;}
.ls16{letter-spacing:0.042752pt;}
.ls35{letter-spacing:0.043200pt;}
.ls11{letter-spacing:0.048096pt;}
.ls19{letter-spacing:0.053440pt;}
.ls13{letter-spacing:0.058784pt;}
.ls18{letter-spacing:0.064128pt;}
.ls37{letter-spacing:0.069472pt;}
.ls2e{letter-spacing:0.085504pt;}
.lsf{letter-spacing:0.161728pt;}
.lsd{letter-spacing:0.170240pt;}
.ls8{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls1e{letter-spacing:2.004000pt;}
.ls40{letter-spacing:3.927840pt;}
.ls2{letter-spacing:9.298933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls1{letter-spacing:11.528267pt;}
.ls4e{letter-spacing:11.685616pt;}
.ls46{letter-spacing:11.954133pt;}
.ls47{letter-spacing:11.959467pt;}
.lsb{letter-spacing:12.275257pt;}
.lsc{letter-spacing:13.177199pt;}
.ls32{letter-spacing:13.549136pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ls4{letter-spacing:64.321067pt;}
.ws63{word-spacing:-13.283467pt;}
.wsc9{word-spacing:-11.955200pt;}
.ws72{word-spacing:-10.810240pt;}
.ws73{word-spacing:-10.640000pt;}
.ws32{word-spacing:-10.626800pt;}
.ws13{word-spacing:-10.095467pt;}
.ws7{word-spacing:-9.298400pt;}
.wsef{word-spacing:-3.730022pt;}
.ws105{word-spacing:-3.179680pt;}
.ws21{word-spacing:-2.975497pt;}
.ws54{word-spacing:-2.922363pt;}
.ws9c{word-spacing:-2.789568pt;}
.wsda{word-spacing:-2.517024pt;}
.ws119{word-spacing:-2.511680pt;}
.wse5{word-spacing:-2.500992pt;}
.wse4{word-spacing:-2.468928pt;}
.ws12d{word-spacing:-2.284756pt;}
.ws35{word-spacing:-2.178489pt;}
.wsbb{word-spacing:-2.104115pt;}
.wsed{word-spacing:-2.072221pt;}
.ws29{word-spacing:-2.019087pt;}
.ws174{word-spacing:-2.008474pt;}
.wsb4{word-spacing:-1.965953pt;}
.wseb{word-spacing:-1.912819pt;}
.wsee{word-spacing:-1.865011pt;}
.ws50{word-spacing:-1.859685pt;}
.ws102{word-spacing:-1.838336pt;}
.ws101{word-spacing:-1.827648pt;}
.wsc7{word-spacing:-1.806551pt;}
.ws134{word-spacing:-1.769370pt;}
.ws1{word-spacing:-1.696326pt;}
.ws135{word-spacing:-1.578086pt;}
.ws9f{word-spacing:-1.549760pt;}
.ws10f{word-spacing:-1.539072pt;}
.ws107{word-spacing:-1.528384pt;}
.ws74{word-spacing:-1.487748pt;}
.ws108{word-spacing:-1.416160pt;}
.ws11e{word-spacing:-1.381481pt;}
.ws79{word-spacing:-1.234464pt;}
.wsce{word-spacing:-1.218432pt;}
.ws14e{word-spacing:-1.195520pt;}
.ws10d{word-spacing:-1.181024pt;}
.ws0{word-spacing:-1.175671pt;}
.wsea{word-spacing:-1.168945pt;}
.ws114{word-spacing:-1.116896pt;}
.wsbe{word-spacing:-1.115811pt;}
.ws16f{word-spacing:-1.099878pt;}
.ws8{word-spacing:-1.041421pt;}
.ws64{word-spacing:-1.009543pt;}
.ws11d{word-spacing:-0.956410pt;}
.wsa{word-spacing:-0.929840pt;}
.wsbd{word-spacing:-0.908595pt;}
.wse0{word-spacing:-0.860384pt;}
.ws11c{word-spacing:-0.797008pt;}
.wsbc{word-spacing:-0.765133pt;}
.ws5d{word-spacing:-0.743874pt;}
.ws5e{word-spacing:-0.690740pt;}
.ws15{word-spacing:-0.621670pt;}
.ws2e{word-spacing:-0.584473pt;}
.ws163{word-spacing:-0.573850pt;}
.ws84{word-spacing:-0.539744pt;}
.wsf0{word-spacing:-0.531339pt;}
.wsbf{word-spacing:-0.478205pt;}
.wsc5{word-spacing:-0.425071pt;}
.ws177{word-spacing:-0.382566pt;}
.ws47{word-spacing:-0.318803pt;}
.ws15b{word-spacing:-0.286925pt;}
.ws53{word-spacing:-0.265669pt;}
.wsfe{word-spacing:-0.251168pt;}
.ws76{word-spacing:-0.246848pt;}
.ws8a{word-spacing:-0.245824pt;}
.ws14b{word-spacing:-0.239104pt;}
.ws78{word-spacing:-0.238336pt;}
.ws3c{word-spacing:-0.212535pt;}
.ws1d{word-spacing:-0.191283pt;}
.ws38{word-spacing:-0.159402pt;}
.ws13e{word-spacing:-0.143462pt;}
.ws26{word-spacing:-0.106268pt;}
.ws130{word-spacing:-0.095642pt;}
.ws83{word-spacing:-0.090848pt;}
.ws77{word-spacing:-0.089376pt;}
.ws2d{word-spacing:-0.053134pt;}
.ws75{word-spacing:-0.051072pt;}
.ws1b{word-spacing:-0.047821pt;}
.ws33{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws140{word-spacing:-0.025139pt;}
.ws17c{word-spacing:-0.016075pt;}
.ws152{word-spacing:-0.001067pt;}
.ws3{word-spacing:0.000000pt;}
.wse8{word-spacing:0.016032pt;}
.wsf6{word-spacing:0.026720pt;}
.ws1e{word-spacing:0.047821pt;}
.ws8c{word-spacing:0.048096pt;}
.ws23{word-spacing:0.053134pt;}
.wsb2{word-spacing:0.058784pt;}
.wsfd{word-spacing:0.064128pt;}
.ws9e{word-spacing:0.074816pt;}
.wsa8{word-spacing:0.080160pt;}
.ws93{word-spacing:0.090848pt;}
.ws12f{word-spacing:0.095642pt;}
.wscf{word-spacing:0.096192pt;}
.wsa3{word-spacing:0.101536pt;}
.ws27{word-spacing:0.106268pt;}
.ws106{word-spacing:0.106880pt;}
.wsf7{word-spacing:0.117568pt;}
.wsd1{word-spacing:0.120000pt;}
.wsa7{word-spacing:0.133600pt;}
.wsd0{word-spacing:0.134400pt;}
.ws9d{word-spacing:0.138944pt;}
.wsca{word-spacing:0.143462pt;}
.ws85{word-spacing:0.154976pt;}
.ws41{word-spacing:0.159402pt;}
.ws16{word-spacing:0.191283pt;}
.ws4a{word-spacing:0.212535pt;}
.ws10c{word-spacing:0.219104pt;}
.ws142{word-spacing:0.239104pt;}
.ws51{word-spacing:0.265669pt;}
.ws144{word-spacing:0.286925pt;}
.ws69{word-spacing:0.318803pt;}
.ws131{word-spacing:0.334746pt;}
.ws110{word-spacing:0.390112pt;}
.wsa0{word-spacing:0.411488pt;}
.ws92{word-spacing:0.416832pt;}
.ws60{word-spacing:0.425071pt;}
.ws111{word-spacing:0.427520pt;}
.ws157{word-spacing:0.430387pt;}
.ws11f{word-spacing:0.478205pt;}
.ws94{word-spacing:0.502336pt;}
.ws6d{word-spacing:0.531339pt;}
.ws158{word-spacing:0.636110pt;}
.ws39{word-spacing:0.637606pt;}
.ws9b{word-spacing:0.662656pt;}
.ws57{word-spacing:0.690740pt;}
.ws7f{word-spacing:0.694720pt;}
.ws62{word-spacing:0.743874pt;}
.ws8b{word-spacing:0.774880pt;}
.wsf3{word-spacing:0.777600pt;}
.wsf2{word-spacing:0.792000pt;}
.ws15a{word-spacing:0.812954pt;}
.ws6a{word-spacing:0.850142pt;}
.ws9{word-spacing:0.892646pt;}
.ws70{word-spacing:0.903276pt;}
.ws149{word-spacing:0.908595pt;}
.ws46{word-spacing:1.009543pt;}
.wscc{word-spacing:1.058112pt;}
.ws67{word-spacing:1.115811pt;}
.wsa2{word-spacing:1.143616pt;}
.ws13b{word-spacing:1.147699pt;}
.ws22{word-spacing:1.168945pt;}
.wsa1{word-spacing:1.170336pt;}
.ws11b{word-spacing:1.275213pt;}
.ws1a{word-spacing:1.291162pt;}
.wse6{word-spacing:1.341344pt;}
.ws124{word-spacing:1.381481pt;}
.ws17{word-spacing:1.386803pt;}
.wsf4{word-spacing:1.400128pt;}
.ws10a{word-spacing:1.426848pt;}
.ws128{word-spacing:1.434614pt;}
.ws10b{word-spacing:1.469600pt;}
.ws121{word-spacing:1.487748pt;}
.ws66{word-spacing:1.540882pt;}
.ws137{word-spacing:1.578086pt;}
.ws55{word-spacing:1.594016pt;}
.ws11a{word-spacing:1.647150pt;}
.ws109{word-spacing:1.651296pt;}
.ws56{word-spacing:1.700284pt;}
.ws17e{word-spacing:1.721549pt;}
.wse1{word-spacing:1.768864pt;}
.ws2f{word-spacing:1.806551pt;}
.ws136{word-spacing:1.817190pt;}
.ws42{word-spacing:1.912819pt;}
.wsdb{word-spacing:1.998656pt;}
.ws172{word-spacing:2.008474pt;}
.ws80{word-spacing:2.041408pt;}
.ws4b{word-spacing:2.125355pt;}
.ws40{word-spacing:2.178489pt;}
.ws133{word-spacing:2.199757pt;}
.ws2{word-spacing:2.232481pt;}
.ws17d{word-spacing:2.247578pt;}
.wse7{word-spacing:2.271200pt;}
.wsb9{word-spacing:2.284756pt;}
.wsd4{word-spacing:2.313952pt;}
.wsad{word-spacing:2.346016pt;}
.wsd5{word-spacing:2.351360pt;}
.wsdd{word-spacing:2.367392pt;}
.ws5a{word-spacing:2.391024pt;}
.wsf5{word-spacing:2.394112pt;}
.wsac{word-spacing:2.404800pt;}
.wsae{word-spacing:2.426176pt;}
.ws151{word-spacing:2.534502pt;}
.ws28{word-spacing:2.550426pt;}
.ws14{word-spacing:2.550432pt;}
.wsd6{word-spacing:2.591840pt;}
.wscb{word-spacing:2.603559pt;}
.wsdc{word-spacing:2.623904pt;}
.ws1c{word-spacing:2.630144pt;}
.wsfc{word-spacing:2.666656pt;}
.ws61{word-spacing:2.709827pt;}
.ws104{word-spacing:2.741472pt;}
.ws103{word-spacing:2.752160pt;}
.ws4e{word-spacing:2.762961pt;}
.ws15f{word-spacing:2.773606pt;}
.ws150{word-spacing:2.861175pt;}
.ws180{word-spacing:2.861568pt;}
.ws1f{word-spacing:2.861926pt;}
.ws139{word-spacing:2.862976pt;}
.ws162{word-spacing:2.863642pt;}
.ws166{word-spacing:2.864026pt;}
.ws173{word-spacing:2.864145pt;}
.ws16a{word-spacing:2.865186pt;}
.ws17b{word-spacing:2.865408pt;}
.ws132{word-spacing:2.866509pt;}
.ws45{word-spacing:2.869229pt;}
.ws153{word-spacing:2.869248pt;}
.wsf1{word-spacing:2.922363pt;}
.ws96{word-spacing:2.933856pt;}
.ws7c{word-spacing:2.971264pt;}
.ws30{word-spacing:2.975497pt;}
.wsd7{word-spacing:2.981952pt;}
.ws95{word-spacing:2.987296pt;}
.ws2c{word-spacing:3.028630pt;}
.ws7d{word-spacing:3.035392pt;}
.wse2{word-spacing:3.046080pt;}
.ws7e{word-spacing:3.056768pt;}
.ws3d{word-spacing:3.134898pt;}
.ws20{word-spacing:3.188032pt;}
.ws3a{word-spacing:3.241166pt;}
.ws161{word-spacing:3.299635pt;}
.wsff{word-spacing:3.302592pt;}
.ws125{word-spacing:3.347434pt;}
.ws4c{word-spacing:3.357790pt;}
.ws100{word-spacing:3.377408pt;}
.ws17a{word-spacing:3.395277pt;}
.ws44{word-spacing:3.400567pt;}
.ws18{word-spacing:3.443098pt;}
.ws145{word-spacing:3.490918pt;}
.ws15e{word-spacing:3.538739pt;}
.ws87{word-spacing:3.548416pt;}
.ws68{word-spacing:3.559969pt;}
.ws89{word-spacing:3.575136pt;}
.ws117{word-spacing:3.612544pt;}
.wsb3{word-spacing:3.613103pt;}
.ws88{word-spacing:3.617888pt;}
.wse9{word-spacing:3.666237pt;}
.ws58{word-spacing:3.719371pt;}
.wsc4{word-spacing:3.825638pt;}
.wsfb{word-spacing:3.901120pt;}
.ws118{word-spacing:3.906464pt;}
.ws129{word-spacing:3.931906pt;}
.wsf8{word-spacing:3.991968pt;}
.ws86{word-spacing:4.114880pt;}
.wsfa{word-spacing:4.195040pt;}
.ws12b{word-spacing:4.197575pt;}
.wsaf{word-spacing:4.205728pt;}
.ws10{word-spacing:4.240070pt;}
.wsdf{word-spacing:4.248480pt;}
.ws37{word-spacing:4.250709pt;}
.ws113{word-spacing:4.253824pt;}
.ws6e{word-spacing:4.303843pt;}
.ws179{word-spacing:4.303872pt;}
.ws11{word-spacing:4.314458pt;}
.ws112{word-spacing:4.323296pt;}
.wsde{word-spacing:4.339328pt;}
.ws5b{word-spacing:4.356977pt;}
.wsb0{word-spacing:4.398112pt;}
.ws168{word-spacing:4.399514pt;}
.ws12c{word-spacing:4.410111pt;}
.wsf9{word-spacing:4.563776pt;}
.ws120{word-spacing:4.622646pt;}
.wsb1{word-spacing:4.638592pt;}
.ws10e{word-spacing:4.649280pt;}
.ws25{word-spacing:4.675780pt;}
.ws147{word-spacing:4.686438pt;}
.wse3{word-spacing:4.847008pt;}
.ws65{word-spacing:4.888316pt;}
.ws123{word-spacing:5.153985pt;}
.ws7a{word-spacing:5.156960pt;}
.ws97{word-spacing:5.162304pt;}
.ws7b{word-spacing:5.194368pt;}
.ws3b{word-spacing:5.313387pt;}
.ws2b{word-spacing:5.366521pt;}
.ws3e{word-spacing:5.419654pt;}
.ws2a{word-spacing:5.472788pt;}
.ws5c{word-spacing:5.525922pt;}
.wsb7{word-spacing:5.685324pt;}
.wsb8{word-spacing:5.738458pt;}
.wsab{word-spacing:5.787552pt;}
.wsc6{word-spacing:5.791591pt;}
.ws91{word-spacing:5.798240pt;}
.wscd{word-spacing:5.803584pt;}
.ws8d{word-spacing:5.851680pt;}
.wsec{word-spacing:5.897859pt;}
.ws12e{word-spacing:6.004127pt;}
.ws8e{word-spacing:6.017344pt;}
.ws36{word-spacing:6.057261pt;}
.wsaa{word-spacing:6.113536pt;}
.wsa4{word-spacing:6.118880pt;}
.wsa6{word-spacing:6.129568pt;}
.wsa9{word-spacing:6.188352pt;}
.ws59{word-spacing:6.322930pt;}
.wsa5{word-spacing:6.327296pt;}
.ws19{word-spacing:6.407987pt;}
.wsd2{word-spacing:6.444864pt;}
.wsd3{word-spacing:6.471584pt;}
.ws98{word-spacing:6.482272pt;}
.ws115{word-spacing:6.487616pt;}
.ws9a{word-spacing:6.503648pt;}
.ws116{word-spacing:6.557088pt;}
.ws99{word-spacing:6.599840pt;}
.ws43{word-spacing:6.854269pt;}
.ws122{word-spacing:6.907403pt;}
.wse{word-spacing:6.918010pt;}
.wsb6{word-spacing:7.066804pt;}
.ws5f{word-spacing:7.279340pt;}
.wsb5{word-spacing:7.385607pt;}
.wsd8{word-spacing:7.764832pt;}
.wsd9{word-spacing:7.786208pt;}
.ws6{word-spacing:9.260494pt;}
.ws14d{word-spacing:10.711859pt;}
.ws170{word-spacing:10.807501pt;}
.wsc{word-spacing:10.823338pt;}
.ws82{word-spacing:11.259808pt;}
.ws81{word-spacing:11.265152pt;}
.ws126{word-spacing:11.451907pt;}
.ws5{word-spacing:11.492822pt;}
.ws15c{word-spacing:11.620454pt;}
.ws14c{word-spacing:11.668275pt;}
.ws13f{word-spacing:11.763917pt;}
.ws14f{word-spacing:11.811738pt;}
.ws175{word-spacing:11.859558pt;}
.ws167{word-spacing:11.900706pt;}
.ws146{word-spacing:11.900928pt;}
.ws156{word-spacing:11.900971pt;}
.ws15d{word-spacing:11.901175pt;}
.ws14a{word-spacing:11.903317pt;}
.ws13c{word-spacing:11.904205pt;}
.ws16d{word-spacing:11.904299pt;}
.ws141{word-spacing:11.907379pt;}
.ws164{word-spacing:12.098662pt;}
.ws143{word-spacing:12.146483pt;}
.ws159{word-spacing:12.529050pt;}
.ws8f{word-spacing:12.937824pt;}
.ws90{word-spacing:13.007296pt;}
.ws6c{word-spacing:13.017797pt;}
.ws31{word-spacing:13.134725pt;}
.ws34{word-spacing:13.230333pt;}
.ws4f{word-spacing:13.248472pt;}
.ws24{word-spacing:13.262359pt;}
.ws52{word-spacing:13.283467pt;}
.ws49{word-spacing:13.437746pt;}
.ws6b{word-spacing:13.442868pt;}
.ws71{word-spacing:14.080475pt;}
.wsd{word-spacing:14.319536pt;}
.ws154{word-spacing:14.633165pt;}
.ws16e{word-spacing:14.769246pt;}
.ws17f{word-spacing:14.769707pt;}
.ws176{word-spacing:14.770458pt;}
.ws16b{word-spacing:14.772045pt;}
.ws138{word-spacing:14.772139pt;}
.ws16c{word-spacing:14.772164pt;}
.ws171{word-spacing:14.773257pt;}
.ws181{word-spacing:14.773453pt;}
.ws13d{word-spacing:14.773632pt;}
.ws148{word-spacing:14.773794pt;}
.ws182{word-spacing:14.774315pt;}
.ws160{word-spacing:14.775040pt;}
.ws13a{word-spacing:14.776627pt;}
.ws155{word-spacing:14.777523pt;}
.ws178{word-spacing:14.872269pt;}
.ws165{word-spacing:14.920090pt;}
.ws4d{word-spacing:15.355687pt;}
.ws127{word-spacing:15.833892pt;}
.ws48{word-spacing:16.365231pt;}
.ws12a{word-spacing:17.151556pt;}
.ws6f{word-spacing:17.532560pt;}
.ws3f{word-spacing:18.649987pt;}
.wsf{word-spacing:23.208806pt;}
.ws12{word-spacing:23.814758pt;}
.wsb{word-spacing:23.858002pt;}
.ws169{word-spacing:28.453376pt;}
.wsba{word-spacing:231.883059pt;}
.wsc8{word-spacing:791.386419pt;}
.wsc1{word-spacing:911.607910pt;}
.wsc0{word-spacing:942.165402pt;}
.wsc3{word-spacing:948.908134pt;}
.wsc2{word-spacing:976.883302pt;}
._a{margin-left:-11.078531pt;}
._9{margin-left:-7.077478pt;}
._10{margin-left:-6.168883pt;}
._3{margin-left:-4.797974pt;}
._1a{margin-left:-3.878772pt;}
._2{margin-left:-2.752326pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._7{width:2.045648pt;}
._b{width:3.092290pt;}
._24{width:3.985040pt;}
._4{width:9.299359pt;}
._15{width:10.626800pt;}
._6{width:11.530016pt;}
._d{width:12.433408pt;}
._16{width:13.737404pt;}
._c{width:15.330628pt;}
._11{width:16.577766pt;}
._14{width:17.959247pt;}
._e{width:19.634500pt;}
._19{width:21.096366pt;}
._26{width:22.134682pt;}
._5{width:23.063232pt;}
._13{width:24.600980pt;}
._23{width:25.829786pt;}
._8{width:27.188522pt;}
._21{width:28.426619pt;}
._25{width:30.239897pt;}
._12{width:31.573598pt;}
._f{width:33.932919pt;}
._1b{width:35.812226pt;}
._1e{width:38.269837pt;}
._1d{width:39.602131pt;}
._29{width:54.993920pt;}
._28{width:78.904320pt;}
._22{width:154.939392pt;}
._17{width:383.627480pt;}
._1f{width:510.965248pt;}
._20{width:637.259981pt;}
._1c{width:1467.555676pt;}
._27{width:1785.886839pt;}
._18{width:1807.140172pt;}
.fs8{font-size:31.880533pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs7{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fsa{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs3{font-size:50.395200pt;}
.fs5{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fs4{font-size:53.754880pt;}
.fsd{font-size:58.560000pt;}
.fs6{font-size:95.641600pt;}
.y16a{bottom:-649.572933pt;}
.y169{bottom:-632.452933pt;}
.y168{bottom:-615.412933pt;}
.y167{bottom:-598.282989pt;}
.y166{bottom:-581.163485pt;}
.y165{bottom:-564.124141pt;}
.y164{bottom:-547.004637pt;}
.y163{bottom:-529.965293pt;}
.y162{bottom:-512.845789pt;}
.y161{bottom:-495.726285pt;}
.y160{bottom:-478.686941pt;}
.y15f{bottom:-461.567437pt;}
.y15e{bottom:-444.528093pt;}
.y15d{bottom:-427.408589pt;}
.y15c{bottom:-410.289085pt;}
.y15b{bottom:-393.249741pt;}
.y15a{bottom:-376.130237pt;}
.y141{bottom:-367.610211pt;}
.y159{bottom:-359.010733pt;}
.y140{bottom:-350.490707pt;}
.y158{bottom:-341.971389pt;}
.y13f{bottom:-333.451363pt;}
.y157{bottom:-324.851885pt;}
.y13e{bottom:-316.331859pt;}
.y156{bottom:-307.812541pt;}
.y13d{bottom:-299.212355pt;}
.y155{bottom:-290.693037pt;}
.y13c{bottom:-282.173011pt;}
.y154{bottom:-269.573549pt;}
.y13b{bottom:-265.053507pt;}
.y13a{bottom:-248.014163pt;}
.y153{bottom:-236.532933pt;}
.y139{bottom:-230.894659pt;}
.y152{bottom:-219.412933pt;}
.y138{bottom:-213.775155pt;}
.y151{bottom:-202.372933pt;}
.y137{bottom:-196.735811pt;}
.y150{bottom:-185.248981pt;}
.y136{bottom:-179.616307pt;}
.y14f{bottom:-168.129477pt;}
.y135{bottom:-162.496803pt;}
.y14e{bottom:-151.090133pt;}
.y134{bottom:-145.457459pt;}
.y14d{bottom:-133.970629pt;}
.y133{bottom:-128.337955pt;}
.y14c{bottom:-116.931285pt;}
.y132{bottom:-111.297275pt;}
.y14b{bottom:-99.811781pt;}
.y131{bottom:-94.177771pt;}
.y14a{bottom:-82.692277pt;}
.y130{bottom:-77.058267pt;}
.y149{bottom:-65.652933pt;}
.y12f{bottom:-44.338267pt;}
.y148{bottom:-32.933333pt;}
.y12e{bottom:-24.416523pt;}
.y147{bottom:-17.492933pt;}
.ye4{bottom:-8.289872pt;}
.y0{bottom:0.000000pt;}
.y146{bottom:2.507067pt;}
.y3{bottom:3.044747pt;}
.y20{bottom:5.644850pt;}
.y2{bottom:12.578910pt;}
.y1f{bottom:18.051729pt;}
.y4b{bottom:28.346667pt;}
.y1e{bottom:32.990462pt;}
.yea{bottom:81.480000pt;}
.y1a4{bottom:89.704000pt;}
.y81{bottom:91.297333pt;}
.y17c{bottom:92.281333pt;}
.y1c{bottom:93.018667pt;}
.y112{bottom:93.194667pt;}
.y142{bottom:93.445333pt;}
.yb4{bottom:95.282667pt;}
.y197{bottom:95.681333pt;}
.ye9{bottom:98.217333pt;}
.y80{bottom:108.034667pt;}
.y20f{bottom:108.233333pt;}
.y1b{bottom:108.920000pt;}
.y17b{bottom:109.018667pt;}
.y1da{bottom:109.868000pt;}
.y111{bottom:109.932000pt;}
.yb3{bottom:112.020000pt;}
.y196{bottom:112.418667pt;}
.y1a3{bottom:113.294667pt;}
.ye8{bottom:114.954667pt;}
.y127{bottom:116.038667pt;}
.y20e{bottom:123.576000pt;}
.y1a{bottom:124.820000pt;}
.y1d9{bottom:125.210667pt;}
.y17a{bottom:125.756000pt;}
.y110{bottom:126.669333pt;}
.y7f{bottom:128.757333pt;}
.y1a2{bottom:128.916000pt;}
.y195{bottom:129.156000pt;}
.ye7{bottom:131.692000pt;}
.y20d{bottom:138.918667pt;}
.y1d8{bottom:140.553333pt;}
.y19{bottom:140.720000pt;}
.y4a{bottom:141.256000pt;}
.y179{bottom:142.493333pt;}
.y10f{bottom:143.406667pt;}
.y1a1{bottom:144.538667pt;}
.yb2{bottom:145.494667pt;}
.y194{bottom:145.893333pt;}
.ye6{bottom:152.414667pt;}
.y20c{bottom:154.261333pt;}
.y1d7{bottom:155.896000pt;}
.y18{bottom:156.621333pt;}
.y49{bottom:157.993333pt;}
.y7e{bottom:158.645333pt;}
.y178{bottom:159.230667pt;}
.y10e{bottom:160.144000pt;}
.y1a0{bottom:160.160000pt;}
.yb1{bottom:162.232000pt;}
.y193{bottom:162.630667pt;}
.y20b{bottom:169.604000pt;}
.y1d6{bottom:171.238667pt;}
.y17{bottom:172.521333pt;}
.y48{bottom:174.730667pt;}
.y7d{bottom:175.382667pt;}
.y10d{bottom:176.881333pt;}
.ye5{bottom:178.573333pt;}
.yb0{bottom:178.969333pt;}
.y192{bottom:179.368000pt;}
.y177{bottom:179.953333pt;}
.y20a{bottom:184.946667pt;}
.y1d5{bottom:186.580000pt;}
.y16{bottom:188.421333pt;}
.y47{bottom:191.468000pt;}
.y19f{bottom:191.721333pt;}
.y7c{bottom:192.120000pt;}
.yaf{bottom:195.706667pt;}
.y191{bottom:196.105333pt;}
.y209{bottom:200.289333pt;}
.ybd{bottom:201.168533pt;}
.y1d4{bottom:201.922667pt;}
.y15{bottom:204.322667pt;}
.y46{bottom:208.205333pt;}
.y19e{bottom:208.458667pt;}
.y7b{bottom:208.857333pt;}
.y176{bottom:209.841333pt;}
.yae{bottom:212.444000pt;}
.y190{bottom:212.841333pt;}
.y208{bottom:215.632000pt;}
.y1d3{bottom:217.265333pt;}
.y10c{bottom:217.292000pt;}
.y45{bottom:224.942667pt;}
.y19d{bottom:225.196000pt;}
.y7a{bottom:225.594667pt;}
.y175{bottom:226.578667pt;}
.yad{bottom:229.181333pt;}
.y18f{bottom:229.578667pt;}
.y207{bottom:230.974667pt;}
.y10b{bottom:231.904000pt;}
.y1d2{bottom:232.608000pt;}
.y44{bottom:241.678667pt;}
.y19c{bottom:241.933333pt;}
.y79{bottom:242.332000pt;}
.y174{bottom:243.316000pt;}
.yac{bottom:245.918667pt;}
.y18e{bottom:246.316000pt;}
.y10a{bottom:246.516000pt;}
.y1d1{bottom:247.950667pt;}
.ye3{bottom:256.749816pt;}
.y12d{bottom:257.182885pt;}
.y43{bottom:258.416000pt;}
.y19b{bottom:258.670667pt;}
.y78{bottom:259.069333pt;}
.y173{bottom:260.053333pt;}
.y109{bottom:261.128000pt;}
.y206{bottom:261.658667pt;}
.yab{bottom:262.656000pt;}
.y18d{bottom:263.053333pt;}
.y1d0{bottom:263.293333pt;}
.y14{bottom:266.804000pt;}
.ye2{bottom:273.869320pt;}
.y12c{bottom:274.302389pt;}
.y42{bottom:275.153333pt;}
.y19a{bottom:275.408000pt;}
.y77{bottom:275.806667pt;}
.y172{bottom:276.790667pt;}
.y205{bottom:277.001333pt;}
.y1cf{bottom:278.636000pt;}
.yaa{bottom:279.393333pt;}
.y18c{bottom:279.790667pt;}
.y108{bottom:282.141333pt;}
.y13{bottom:282.705333pt;}
.y145{bottom:284.827587pt;}
.ye1{bottom:290.988824pt;}
.y12b{bottom:291.341733pt;}
.y41{bottom:291.890667pt;}
.y199{bottom:292.145333pt;}
.y204{bottom:292.344000pt;}
.y76{bottom:292.544000pt;}
.y171{bottom:293.528000pt;}
.y144{bottom:293.547067pt;}
.y1ce{bottom:293.978667pt;}
.ya9{bottom:296.129333pt;}
.y18b{bottom:296.528000pt;}
.y12{bottom:298.605333pt;}
.y203{bottom:307.686667pt;}
.ye0{bottom:308.028168pt;}
.y12a{bottom:308.461733pt;}
.y40{bottom:308.628000pt;}
.y198{bottom:308.882667pt;}
.y75{bottom:309.280000pt;}
.y1cd{bottom:309.321333pt;}
.y107{bottom:310.248000pt;}
.y170{bottom:310.265333pt;}
.ya8{bottom:312.866667pt;}
.y18a{bottom:313.265333pt;}
.y11{bottom:314.505333pt;}
.y202{bottom:323.029333pt;}
.y1cc{bottom:324.662667pt;}
.ydf{bottom:325.147672pt;}
.y3f{bottom:325.365333pt;}
.y74{bottom:326.017333pt;}
.y16f{bottom:327.002667pt;}
.ya7{bottom:329.604000pt;}
.y189{bottom:330.002667pt;}
.y201{bottom:338.372000pt;}
.y10{bottom:338.376000pt;}
.y1cb{bottom:340.005333pt;}
.y3e{bottom:342.102667pt;}
.yde{bottom:342.187016pt;}
.y73{bottom:342.754667pt;}
.y106{bottom:343.229333pt;}
.y16e{bottom:343.740000pt;}
.ya6{bottom:346.341333pt;}
.y188{bottom:346.740000pt;}
.y200{bottom:353.714667pt;}
.yf{bottom:354.277333pt;}
.y1ca{bottom:355.348000pt;}
.y129{bottom:356.942253pt;}
.y3d{bottom:358.840000pt;}
.ydd{bottom:359.306520pt;}
.y72{bottom:359.492000pt;}
.y105{bottom:359.966667pt;}
.y16d{bottom:360.477333pt;}
.ya5{bottom:363.078667pt;}
.y187{bottom:363.477333pt;}
.y128{bottom:365.661733pt;}
.y1ff{bottom:369.056000pt;}
.ye{bottom:370.177333pt;}
.y1c9{bottom:370.690667pt;}
.y126{bottom:370.720000pt;}
.y3c{bottom:375.577333pt;}
.y71{bottom:376.229333pt;}
.ydc{bottom:376.426024pt;}
.y104{bottom:376.704000pt;}
.y16c{bottom:377.214667pt;}
.ya4{bottom:379.816000pt;}
.y186{bottom:380.214667pt;}
.y1fe{bottom:384.398667pt;}
.y1c8{bottom:386.033333pt;}
.y125{bottom:387.457333pt;}
.y3b{bottom:392.314667pt;}
.y70{bottom:392.966667pt;}
.y103{bottom:393.441333pt;}
.ydb{bottom:393.466704pt;}
.yd{bottom:395.376000pt;}
.ya3{bottom:396.553333pt;}
.y185{bottom:396.952000pt;}
.y1fd{bottom:399.741333pt;}
.y1c7{bottom:401.376000pt;}
.y124{bottom:404.194667pt;}
.y16b{bottom:407.050667pt;}
.y3a{bottom:409.052000pt;}
.y6f{bottom:409.704000pt;}
.y102{bottom:410.178667pt;}
.yda{bottom:410.586208pt;}
.yc{bottom:411.276000pt;}
.ya2{bottom:413.290667pt;}
.y184{bottom:413.689333pt;}
.y1fc{bottom:415.084000pt;}
.y1c6{bottom:416.718667pt;}
.y123{bottom:420.932000pt;}
.y39{bottom:425.789333pt;}
.y6e{bottom:426.441333pt;}
.y101{bottom:426.916000pt;}
.yd9{bottom:427.705712pt;}
.y143{bottom:429.644000pt;}
.ya1{bottom:430.028000pt;}
.y183{bottom:430.426667pt;}
.y1c5{bottom:432.061333pt;}
.yb{bottom:435.146667pt;}
.y122{bottom:441.653333pt;}
.y38{bottom:442.526667pt;}
.y6d{bottom:443.178667pt;}
.y100{bottom:443.653333pt;}
.y1fb{bottom:445.769333pt;}
.ya0{bottom:446.765333pt;}
.y182{bottom:447.164000pt;}
.y1c4{bottom:447.402667pt;}
.yd8{bottom:448.825200pt;}
.ya{bottom:451.048000pt;}
.y6c{bottom:459.916000pt;}
.y1fa{bottom:461.112000pt;}
.y1c3{bottom:462.745333pt;}
.y37{bottom:463.249333pt;}
.y9f{bottom:463.502667pt;}
.y181{bottom:463.901333pt;}
.yff{bottom:464.376000pt;}
.y9{bottom:466.948000pt;}
.y121{bottom:471.541333pt;}
.y1f9{bottom:476.454667pt;}
.y6b{bottom:476.653333pt;}
.y1c2{bottom:478.088000pt;}
.y9e{bottom:480.240000pt;}
.y180{bottom:480.638667pt;}
.yd7{bottom:481.871368pt;}
.y8{bottom:482.848000pt;}
.y120{bottom:488.278667pt;}
.y1f8{bottom:491.797333pt;}
.y6a{bottom:493.390667pt;}
.y1c1{bottom:493.430667pt;}
.y9d{bottom:496.977333pt;}
.y17f{bottom:497.376000pt;}
.y7{bottom:498.749333pt;}
.yd6{bottom:498.910712pt;}
.yfe{bottom:501.996000pt;}
.y11f{bottom:505.016000pt;}
.y1f7{bottom:507.138667pt;}
.y1c0{bottom:508.773333pt;}
.yfc{bottom:509.302667pt;}
.y69{bottom:510.128000pt;}
.ybc{bottom:513.714667pt;}
.y17e{bottom:514.113333pt;}
.y6{bottom:514.649333pt;}
.yd5{bottom:516.030216pt;}
.yfd{bottom:516.608000pt;}
.y9c{bottom:517.700000pt;}
.y11e{bottom:521.753333pt;}
.y1f6{bottom:522.481333pt;}
.y1bf{bottom:524.116000pt;}
.yf8{bottom:526.017333pt;}
.y68{bottom:526.865333pt;}
.y36{bottom:530.049333pt;}
.ybb{bottom:530.452000pt;}
.y5{bottom:530.549333pt;}
.y17d{bottom:530.850667pt;}
.yd4{bottom:533.149720pt;}
.yfb{bottom:537.622667pt;}
.y1f5{bottom:537.824000pt;}
.y1be{bottom:539.458667pt;}
.y11d{bottom:542.476000pt;}
.y67{bottom:543.602667pt;}
.yf9{bottom:544.928000pt;}
.y4{bottom:546.450667pt;}
.yba{bottom:547.189333pt;}
.y9b{bottom:547.588000pt;}
.yd3{bottom:550.190400pt;}
.yfa{bottom:552.234667pt;}
.y1f4{bottom:553.166667pt;}
.y1bd{bottom:554.801333pt;}
.y66{bottom:560.340000pt;}
.y1{bottom:562.350634pt;}
.y35{bottom:563.284000pt;}
.yb9{bottom:563.926667pt;}
.y9a{bottom:564.325333pt;}
.yd2{bottom:567.309904pt;}
.y1f3{bottom:568.509333pt;}
.y1bc{bottom:570.144000pt;}
.yf7{bottom:573.248000pt;}
.y65{bottom:577.077333pt;}
.y11c{bottom:580.097333pt;}
.y34{bottom:580.580000pt;}
.yb8{bottom:580.664000pt;}
.y99{bottom:581.062667pt;}
.y1f2{bottom:583.852000pt;}
.yd1{bottom:584.350584pt;}
.y1bb{bottom:585.485333pt;}
.y11a{bottom:587.402667pt;}
.y64{bottom:593.814667pt;}
.y11b{bottom:594.709333pt;}
.yb7{bottom:597.401333pt;}
.y98{bottom:597.800000pt;}
.y33{bottom:597.874667pt;}
.y1f1{bottom:599.194667pt;}
.y1ba{bottom:600.828000pt;}
.yf6{bottom:601.354667pt;}
.yd0{bottom:601.470088pt;}
.y63{bottom:610.552000pt;}
.yb6{bottom:614.138667pt;}
.y97{bottom:614.537333pt;}
.y32{bottom:615.170667pt;}
.y119{bottom:615.722667pt;}
.y1b9{bottom:616.170667pt;}
.ycf{bottom:618.589592pt;}
.y62{bottom:627.289333pt;}
.y1f0{bottom:629.878667pt;}
.yf5{bottom:630.876000pt;}
.y96{bottom:631.274667pt;}
.y1b8{bottom:631.513333pt;}
.y31{bottom:632.465333pt;}
.yb5{bottom:634.861333pt;}
.yce{bottom:635.628936pt;}
.y118{bottom:636.737333pt;}
.y61{bottom:644.026667pt;}
.y1ef{bottom:645.221333pt;}
.y1b7{bottom:646.856000pt;}
.yf4{bottom:647.613333pt;}
.y95{bottom:648.012000pt;}
.y30{bottom:649.760000pt;}
.ycd{bottom:652.748440pt;}
.y1ee{bottom:660.564000pt;}
.y60{bottom:660.764000pt;}
.y1b6{bottom:662.198667pt;}
.yf3{bottom:664.350667pt;}
.y94{bottom:664.749333pt;}
.y117{bottom:664.842667pt;}
.y2f{bottom:667.056000pt;}
.ycc{bottom:669.789120pt;}
.y1ed{bottom:675.906667pt;}
.y5f{bottom:677.501333pt;}
.y1b5{bottom:677.541333pt;}
.yf2{bottom:681.088000pt;}
.y93{bottom:681.485333pt;}
.y2e{bottom:684.350667pt;}
.ycb{bottom:686.908624pt;}
.y1ec{bottom:691.249333pt;}
.y1b4{bottom:692.884000pt;}
.y5e{bottom:694.238667pt;}
.yf1{bottom:697.825333pt;}
.y92{bottom:698.222667pt;}
.y2d{bottom:701.645333pt;}
.yca{bottom:704.028128pt;}
.y1eb{bottom:706.592000pt;}
.y1b3{bottom:708.225333pt;}
.y5d{bottom:710.976000pt;}
.yf0{bottom:714.562667pt;}
.y91{bottom:714.960000pt;}
.y2c{bottom:718.941333pt;}
.yc9{bottom:721.067472pt;}
.y1ea{bottom:721.934667pt;}
.y1b2{bottom:723.568000pt;}
.y5c{bottom:727.713333pt;}
.yef{bottom:731.300000pt;}
.y90{bottom:731.697333pt;}
.y2b{bottom:736.236000pt;}
.y1e9{bottom:737.277333pt;}
.yc8{bottom:738.186976pt;}
.y1b1{bottom:738.910667pt;}
.y5b{bottom:744.450667pt;}
.yee{bottom:748.036000pt;}
.y8f{bottom:748.434667pt;}
.y1e8{bottom:752.620000pt;}
.y1b0{bottom:754.253333pt;}
.yc7{bottom:755.306480pt;}
.y5a{bottom:761.186667pt;}
.yed{bottom:764.773333pt;}
.y8e{bottom:765.172000pt;}
.y1e7{bottom:767.961333pt;}
.y1af{bottom:769.596000pt;}
.y2a{bottom:770.534667pt;}
.yc6{bottom:772.347160pt;}
.y59{bottom:777.924000pt;}
.yec{bottom:781.510667pt;}
.y8d{bottom:781.909333pt;}
.y1e6{bottom:783.304000pt;}
.y1ae{bottom:784.938667pt;}
.y29{bottom:788.738667pt;}
.yc5{bottom:789.466664pt;}
.y58{bottom:794.661333pt;}
.y116{bottom:798.248000pt;}
.y8c{bottom:798.646667pt;}
.y28{bottom:799.226667pt;}
.y1ad{bottom:800.281333pt;}
.yeb{bottom:802.233333pt;}
.yc4{bottom:806.507344pt;}
.y57{bottom:811.398667pt;}
.y1e5{bottom:813.989333pt;}
.y115{bottom:814.985333pt;}
.y8b{bottom:815.384000pt;}
.y27{bottom:817.430667pt;}
.y1ac{bottom:819.608000pt;}
.yc3{bottom:823.626848pt;}
.y26{bottom:827.920000pt;}
.y56{bottom:828.136000pt;}
.y1e4{bottom:829.332000pt;}
.y114{bottom:831.722667pt;}
.y8a{bottom:832.121333pt;}
.yc2{bottom:840.746352pt;}
.y1e3{bottom:844.674667pt;}
.y55{bottom:844.873333pt;}
.y25{bottom:846.122667pt;}
.y89{bottom:848.858667pt;}
.y1ab{bottom:849.496000pt;}
.y113{bottom:852.445333pt;}
.yc1{bottom:857.785696pt;}
.y1e2{bottom:860.017333pt;}
.y54{bottom:861.610667pt;}
.y88{bottom:865.596000pt;}
.y1aa{bottom:873.088000pt;}
.yc0{bottom:874.905200pt;}
.y1e1{bottom:875.360000pt;}
.y53{bottom:878.348000pt;}
.y87{bottom:882.333333pt;}
.y24{bottom:885.836000pt;}
.y1a9{bottom:888.709333pt;}
.y210{bottom:890.701333pt;}
.y1e0{bottom:890.702667pt;}
.y52{bottom:895.085333pt;}
.y86{bottom:899.070667pt;}
.y1a8{bottom:904.330667pt;}
.y1df{bottom:906.044000pt;}
.y51{bottom:911.822667pt;}
.y85{bottom:915.808000pt;}
.y23{bottom:921.320000pt;}
.y1de{bottom:921.386667pt;}
.ybf{bottom:923.385720pt;}
.y1a7{bottom:927.922667pt;}
.y50{bottom:928.560000pt;}
.ybe{bottom:932.105200pt;}
.y84{bottom:932.545333pt;}
.y1dd{bottom:936.729333pt;}
.y4f{bottom:945.297333pt;}
.y22{bottom:946.425333pt;}
.y83{bottom:949.282667pt;}
.y1a6{bottom:951.514667pt;}
.y1dc{bottom:952.072000pt;}
.y4e{bottom:962.034667pt;}
.y82{bottom:966.020000pt;}
.y1a5{bottom:967.136000pt;}
.y1db{bottom:967.414667pt;}
.y21{bottom:971.530667pt;}
.y4d{bottom:982.757333pt;}
.y1d{bottom:1010.186667pt;}
.y4c{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.he{height:23.209028pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.hf{height:30.945242pt;}
.h17{height:31.067969pt;}
.h15{height:31.157778pt;}
.h10{height:34.574438pt;}
.h11{height:34.813542pt;}
.h8{height:35.024664pt;}
.h1b{height:35.039062pt;}
.h12{height:35.052646pt;}
.h9{height:36.445809pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.ha{height:38.947124pt;}
.h18{height:39.010156pt;}
.h19{height:42.722984pt;}
.h7{height:45.272024pt;}
.hd{height:48.481423pt;}
.hb{height:69.148877pt;}
.hc{height:69.435802pt;}
.h16{height:228.931467pt;}
.h1a{height:237.652000pt;}
.h1c{height:247.565333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:191.879724pt;}
.w5{width:619.642533pt;}
.w6{width:673.734800pt;}
.w4{width:684.615467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x6c{left:-77.585467pt;}
.x71{left:-22.871867pt;}
.x59{left:-3.455200pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x1{left:47.621398pt;}
.x3{left:52.456952pt;}
.x58{left:54.353867pt;}
.x70{left:59.794533pt;}
.x7d{left:76.309333pt;}
.x6b{left:86.840133pt;}
.x6e{left:96.254533pt;}
.x6d{left:124.574533pt;}
.x73{left:150.968133pt;}
.x5b{left:170.384894pt;}
.x74{left:179.288133pt;}
.x5a{left:198.704800pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x6a{left:229.828000pt;}
.x60{left:230.922667pt;}
.x69{left:237.529333pt;}
.x5{left:239.924000pt;}
.x8{left:250.204000pt;}
.xd{left:262.050667pt;}
.x5f{left:265.385333pt;}
.xe{left:268.692000pt;}
.xf{left:272.022667pt;}
.x7{left:273.792000pt;}
.x40{left:277.002667pt;}
.x10{left:278.664000pt;}
.x41{left:290.286667pt;}
.x25{left:293.509333pt;}
.x75{left:297.325333pt;}
.x53{left:302.985333pt;}
.x26{left:306.792000pt;}
.x76{left:310.609333pt;}
.x3e{left:316.689333pt;}
.x4e{left:319.521333pt;}
.x11{left:321.514667pt;}
.x2a{left:322.634667pt;}
.x12{left:328.156000pt;}
.x3f{left:329.972000pt;}
.x64{left:335.406667pt;}
.x66{left:337.085333pt;}
.x3c{left:340.194667pt;}
.x65{left:344.085333pt;}
.x13{left:347.140000pt;}
.x17{left:350.481333pt;}
.x3d{left:353.478667pt;}
.x14{left:360.424000pt;}
.x15{left:363.810667pt;}
.x1f{left:367.477333pt;}
.x61{left:371.220000pt;}
.x16{left:377.094667pt;}
.x20{left:380.760000pt;}
.x7c{left:382.272000pt;}
.x7b{left:385.504000pt;}
.x46{left:391.358667pt;}
.x47{left:404.642667pt;}
.x32{left:422.313333pt;}
.x56{left:434.574667pt;}
.x33{left:435.596000pt;}
.x34{left:442.105333pt;}
.x57{left:447.857333pt;}
.x28{left:450.325333pt;}
.x42{left:452.366667pt;}
.x35{left:455.389333pt;}
.x4f{left:459.225333pt;}
.x29{left:463.609333pt;}
.x43{left:465.650667pt;}
.x67{left:467.493333pt;}
.x44{left:469.010667pt;}
.x63{left:471.506667pt;}
.x50{left:472.509333pt;}
.x1b{left:474.704000pt;}
.x62{left:479.226667pt;}
.x68{left:480.776000pt;}
.x45{left:482.294667pt;}
.x1c{left:487.986667pt;}
.x36{left:491.097333pt;}
.x77{left:502.400000pt;}
.x37{left:504.381333pt;}
.x38{left:507.741333pt;}
.x78{left:515.682667pt;}
.x18{left:517.321333pt;}
.x79{left:519.037333pt;}
.x2b{left:521.121333pt;}
.x48{left:528.509333pt;}
.x19{left:530.604000pt;}
.x7a{left:532.320000pt;}
.x2c{left:534.405333pt;}
.x54{left:536.444000pt;}
.x2d{left:539.437333pt;}
.x49{left:541.792000pt;}
.x1a{left:544.088000pt;}
.x55{left:549.728000pt;}
.x2e{left:552.721333pt;}
.x31{left:557.330667pt;}
.x1d{left:559.477333pt;}
.x1e{left:572.760000pt;}
.x21{left:576.769333pt;}
.x4a{left:586.621333pt;}
.x22{left:590.052000pt;}
.x80{left:596.706667pt;}
.x4b{left:599.905333pt;}
.x39{left:603.330667pt;}
.x6f{left:619.692029pt;}
.x81{left:620.617333pt;}
.x51{left:623.004000pt;}
.x52{left:636.288000pt;}
.x23{left:646.220000pt;}
.x9{left:648.721333pt;}
.xa{left:655.362667pt;}
.x24{left:659.504000pt;}
.x5d{left:663.401333pt;}
.x4c{left:669.542667pt;}
.x72{left:674.408133pt;}
.x5e{left:676.685333pt;}
.x4d{left:682.826667pt;}
.x5c{left:693.822295pt;}
.x2f{left:709.670667pt;}
.x7e{left:720.260000pt;}
.x30{left:722.954667pt;}
.x27{left:726.480000pt;}
.x3a{left:728.012000pt;}
.xb{left:732.820000pt;}
.xc{left:739.461333pt;}
.x3b{left:741.294667pt;}
.x7f{left:744.170667pt;}
}




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