
    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_7e285515b2f9c3c92348c9ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_3aadb8df7544a2587b307735.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_19c1f4bac9d057ebfe6d4fc0.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_47b24c0abdc296b09b783c73.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.123000;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_1ebda8ae2fd1225a7157067a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7cfcb696841f5e8ba9fee964.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_870aec2488dbe68da86bb7bf.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.663000;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_7821843b324d80c04d775600.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.667000;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_afaa2a55a4464a6ca4c9c506.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_2ff2183c42bce56fa4fa1187.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.173828;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_8b78718cb313b3f6160ce302.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.006348;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_82c5bd735dba406427e6dc8f.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.008301;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_01648a5fff5b042d414e4193.woff2')format("woff");}.fff{font-family:fff;line-height:0.727539;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_fd98a25e77f07893379ff212.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.933594;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_2a62d706608daf3a22f20490.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.861816;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_6986118372a95008eacf60d1.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.667000;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_7ec35d45c75c78c41801cae9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.729000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m26{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m1b{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);}
.m18{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);}
.m1a{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);}
.me{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);}
.m8{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);}
.m22{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);}
.m21{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m2c{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);}
.m20{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);}
.m15{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m29{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);}
.m2b{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);}
.m2a{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);}
.m23{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.ma{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);}
.m12{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);}
.m19{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);}
.m9{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);}
.m3{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);}
.m1f{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);}
.m14{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m13{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);}
.m25{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m16{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);}
.m5{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);}
.m6{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);}
.m7{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);}
.m4{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);}
.m1{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:-10.494000px;}
.v1{vertical-align:-9.228000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:9.678000px;}
.v6{vertical-align:11.640000px;}
.vb{vertical-align:13.890000px;}
.ve{vertical-align:15.186000px;}
.v5{vertical-align:17.358000px;}
.va{vertical-align:19.524000px;}
.v4{vertical-align:21.696000px;}
.v10{vertical-align:25.068000px;}
.v3{vertical-align:26.994000px;}
.v7{vertical-align:28.398000px;}
.v8{vertical-align:29.718000px;}
.v9{vertical-align:32.496000px;}
.vd{vertical-align:33.748650px;}
.vc{vertical-align:38.310000px;}
.ls44{letter-spacing:-0.121743px;}
.ls42{letter-spacing:-0.108216px;}
.ls3a{letter-spacing:-0.094689px;}
.ls35{letter-spacing:-0.090180px;}
.ls32{letter-spacing:-0.081162px;}
.ls3f{letter-spacing:-0.067635px;}
.ls38{letter-spacing:-0.063126px;}
.ls46{letter-spacing:-0.050328px;}
.ls3d{letter-spacing:-0.040581px;}
.ls34{letter-spacing:-0.036072px;}
.ls3b{letter-spacing:-0.031563px;}
.ls39{letter-spacing:-0.027054px;}
.ls43{letter-spacing:-0.022545px;}
.ls30{letter-spacing:-0.021546px;}
.ls33{letter-spacing:-0.018036px;}
.ls37{letter-spacing:-0.013527px;}
.ls40{letter-spacing:-0.012150px;}
.ls36{letter-spacing:-0.009018px;}
.ls45{letter-spacing:-0.008100px;}
.ls3c{letter-spacing:-0.004509px;}
.ls41{letter-spacing:-0.004050px;}
.ls31{letter-spacing:-0.003591px;}
.ls0{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.000600px;}
.ls18{letter-spacing:0.002680px;}
.ls2d{letter-spacing:0.002725px;}
.ls13{letter-spacing:0.003389px;}
.ls29{letter-spacing:0.004050px;}
.ls1f{letter-spacing:0.004509px;}
.ls28{letter-spacing:0.020250px;}
.ls20{letter-spacing:0.022545px;}
.ls24{letter-spacing:0.024300px;}
.ls23{letter-spacing:0.027054px;}
.ls1e{letter-spacing:0.031563px;}
.ls25{letter-spacing:0.036072px;}
.ls1c{letter-spacing:0.040581px;}
.ls21{letter-spacing:0.058617px;}
.ls1d{letter-spacing:0.063126px;}
.ls27{letter-spacing:0.072144px;}
.ls22{letter-spacing:0.090180px;}
.ls1b{letter-spacing:0.132867px;}
.ls1a{letter-spacing:0.143640px;}
.ls26{letter-spacing:0.144288px;}
.ls4d{letter-spacing:0.503764px;}
.ls10{letter-spacing:0.572693px;}
.ls11{letter-spacing:0.578693px;}
.ls3e{letter-spacing:1.690875px;}
.lse{letter-spacing:2.989200px;}
.ls2{letter-spacing:11.954850px;}
.ls12{letter-spacing:14.704798px;}
.ls4a{letter-spacing:14.711607px;}
.lsa{letter-spacing:14.764573px;}
.ls5{letter-spacing:14.824349px;}
.lsf{letter-spacing:14.884124px;}
.ls15{letter-spacing:14.938200px;}
.ls6{letter-spacing:14.943900px;}
.ls14{letter-spacing:14.944200px;}
.ls49{letter-spacing:15.047494px;}
.lsb{letter-spacing:15.123227px;}
.ls2a{letter-spacing:15.170186px;}
.ls2e{letter-spacing:15.183002px;}
.ls2b{letter-spacing:15.242778px;}
.ls4{letter-spacing:15.302554px;}
.ls3{letter-spacing:15.362329px;}
.lsd{letter-spacing:15.422105px;}
.lsc{letter-spacing:15.481880px;}
.ls7{letter-spacing:16.079636px;}
.ls2f{letter-spacing:16.247494px;}
.ls48{letter-spacing:16.376906px;}
.ls47{letter-spacing:16.378514px;}
.ls2c{letter-spacing:17.200435px;}
.ls8{letter-spacing:18.171782px;}
.ls9{letter-spacing:22.834279px;}
.ls1{letter-spacing:28.453654px;}
.ls19{letter-spacing:190.128600px;}
.ls17{letter-spacing:195.043200px;}
.ls16{letter-spacing:238.243200px;}
.ls4b{letter-spacing:252.068100px;}
.ls4f{letter-spacing:503.550600px;}
.ls50{letter-spacing:515.204302px;}
.ls52{letter-spacing:516.645455px;}
.ls51{letter-spacing:518.694049px;}
.ls4c{letter-spacing:523.339151px;}
.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;}
}
.wsc{word-spacing:-22.718660px;}
.ws1e{word-spacing:-14.943900px;}
.wsfd{word-spacing:-13.449600px;}
.ws2a{word-spacing:-11.955150px;}
.ws96{word-spacing:-11.263482px;}
.wsb{word-spacing:-10.460700px;}
.ws93{word-spacing:-9.121140px;}
.ws94{word-spacing:-8.977500px;}
.wsa9{word-spacing:-2.669328px;}
.wsa8{word-spacing:-2.592675px;}
.wsbd{word-spacing:-2.561112px;}
.wse{word-spacing:-2.528525px;}
.ws6e{word-spacing:-2.510575px;}
.wsc9{word-spacing:-2.123739px;}
.ws21{word-spacing:-2.092146px;}
.wsdb{word-spacing:-2.032370px;}
.ws1f{word-spacing:-1.912819px;}
.wsca{word-spacing:-1.889271px;}
.ws10f{word-spacing:-1.882944px;}
.ws20{word-spacing:-1.853044px;}
.wsd0{word-spacing:-1.808109px;}
.ws46{word-spacing:-1.793268px;}
.wsb4{word-spacing:-1.790073px;}
.wsb3{word-spacing:-1.515024px;}
.ws52{word-spacing:-1.494390px;}
.ws1c{word-spacing:-1.315063px;}
.ws1b{word-spacing:-1.255288px;}
.wsd2{word-spacing:-1.217430px;}
.ws61{word-spacing:-1.195512px;}
.wsd1{word-spacing:-1.158813px;}
.ws7d{word-spacing:-1.075961px;}
.ws90{word-spacing:-1.016185px;}
.wsc7{word-spacing:-1.014525px;}
.wsc8{word-spacing:-1.000998px;}
.ws1d{word-spacing:-0.956410px;}
.wsdc{word-spacing:-0.836858px;}
.ws45{word-spacing:-0.717307px;}
.ws64{word-spacing:-0.597756px;}
.wscc{word-spacing:-0.505008px;}
.ws9f{word-spacing:-0.478205px;}
.wsae{word-spacing:-0.455409px;}
.ws40{word-spacing:-0.418429px;}
.wsaf{word-spacing:-0.405810px;}
.ws107{word-spacing:-0.376589px;}
.ws54{word-spacing:-0.358654px;}
.ws108{word-spacing:-0.322790px;}
.ws2e{word-spacing:-0.298878px;}
.ws12{word-spacing:-0.268992px;}
.ws27{word-spacing:-0.239102px;}
.wsd3{word-spacing:-0.234468px;}
.wsc6{word-spacing:-0.225450px;}
.ws11{word-spacing:-0.215194px;}
.wsa2{word-spacing:-0.208278px;}
.wsa7{word-spacing:-0.180360px;}
.ws31{word-spacing:-0.179327px;}
.ws14{word-spacing:-0.161395px;}
.wscb{word-spacing:-0.130761px;}
.ws28{word-spacing:-0.119551px;}
.wsd4{word-spacing:-0.108216px;}
.wsdf{word-spacing:-0.107597px;}
.wsb2{word-spacing:-0.103707px;}
.wsa3{word-spacing:-0.061047px;}
.ws3f{word-spacing:-0.059776px;}
.wsf{word-spacing:-0.053798px;}
.ws71{word-spacing:-0.047821px;}
.ws95{word-spacing:-0.045090px;}
.wsa1{word-spacing:-0.043092px;}
.wse1{word-spacing:-0.041843px;}
.wsff{word-spacing:-0.013066px;}
.ws110{word-spacing:-0.005875px;}
.ws106{word-spacing:-0.005846px;}
.ws2{word-spacing:-0.000779px;}
.ws0{word-spacing:0.000000px;}
.ws29{word-spacing:0.003599px;}
.wsba{word-spacing:0.013527px;}
.wsb0{word-spacing:0.040581px;}
.ws78{word-spacing:0.047821px;}
.wsc4{word-spacing:0.049599px;}
.ws18{word-spacing:0.053798px;}
.ws25{word-spacing:0.059776px;}
.wsb9{word-spacing:0.076653px;}
.wsa6{word-spacing:0.090180px;}
.wscf{word-spacing:0.094689px;}
.ws73{word-spacing:0.095641px;}
.wsb1{word-spacing:0.099198px;}
.ws16{word-spacing:0.107597px;}
.wsbb{word-spacing:0.112725px;}
.wsbf{word-spacing:0.113400px;}
.ws22{word-spacing:0.119551px;}
.wsc5{word-spacing:0.135270px;}
.wsc1{word-spacing:0.141750px;}
.wsc0{word-spacing:0.149850px;}
.wsbe{word-spacing:0.153306px;}
.ws13{word-spacing:0.161395px;}
.ws23{word-spacing:0.179327px;}
.ws10d{word-spacing:0.215194px;}
.ws1a{word-spacing:0.239102px;}
.ws15{word-spacing:0.268992px;}
.ws24{word-spacing:0.298878px;}
.wsdd{word-spacing:0.322790px;}
.ws30{word-spacing:0.358654px;}
.ws10c{word-spacing:0.376589px;}
.ws4b{word-spacing:0.418429px;}
.ws8f{word-spacing:0.478205px;}
.ws47{word-spacing:0.537980px;}
.wsac{word-spacing:0.550098px;}
.ws109{word-spacing:0.591782px;}
.ws38{word-spacing:0.597756px;}
.ws32{word-spacing:0.657532px;}
.wsad{word-spacing:0.703404px;}
.ws9a{word-spacing:0.717307px;}
.ws99{word-spacing:0.836858px;}
.ws112{word-spacing:0.860774px;}
.ws4c{word-spacing:0.896634px;}
.ws117{word-spacing:0.914573px;}
.ws70{word-spacing:0.956410px;}
.ws118{word-spacing:0.960478px;}
.ws119{word-spacing:0.968371px;}
.wsd7{word-spacing:1.016185px;}
.ws53{word-spacing:1.135736px;}
.ws50{word-spacing:1.195512px;}
.ws98{word-spacing:1.255288px;}
.ws9d{word-spacing:1.315063px;}
.ws51{word-spacing:1.434614px;}
.ws4e{word-spacing:1.494390px;}
.ws10b{word-spacing:1.613952px;}
.ws115{word-spacing:1.721549px;}
.ws6b{word-spacing:1.793268px;}
.ws111{word-spacing:1.829146px;}
.ws9c{word-spacing:1.853044px;}
.wsde{word-spacing:1.936742px;}
.wsb5{word-spacing:1.956906px;}
.ws6c{word-spacing:1.972595px;}
.wsb6{word-spacing:1.974942px;}
.ws3a{word-spacing:2.032370px;}
.ws17{word-spacing:2.044339px;}
.ws39{word-spacing:2.092146px;}
.ws36{word-spacing:2.151922px;}
.ws100{word-spacing:2.259533px;}
.ws35{word-spacing:2.271473px;}
.ws34{word-spacing:2.331248px;}
.ws2d{word-spacing:2.391024px;}
.ws10e{word-spacing:2.420928px;}
.ws2c{word-spacing:2.450800px;}
.wsab{word-spacing:2.511513px;}
.ws1{word-spacing:2.511541px;}
.ws105{word-spacing:2.528525px;}
.ws3b{word-spacing:2.570351px;}
.wsaa{word-spacing:2.592675px;}
.wsd6{word-spacing:2.749678px;}
.ws10{word-spacing:2.797517px;}
.ws57{word-spacing:2.809453px;}
.ws4a{word-spacing:2.869229px;}
.wsd{word-spacing:2.869236px;}
.ws92{word-spacing:2.929004px;}
.ws4f{word-spacing:2.988780px;}
.ws113{word-spacing:3.012710px;}
.ws2b{word-spacing:3.048556px;}
.ws44{word-spacing:3.168107px;}
.ws116{word-spacing:3.219734px;}
.wse0{word-spacing:3.224822px;}
.wsa0{word-spacing:3.227882px;}
.wsfc{word-spacing:3.227904px;}
.ws26{word-spacing:3.287658px;}
.wsfe{word-spacing:3.335501px;}
.ws7f{word-spacing:3.347434px;}
.wscd{word-spacing:3.381750px;}
.wsc2{word-spacing:3.404295px;}
.wsc3{word-spacing:3.422331px;}
.ws11a{word-spacing:3.496896px;}
.ws33{word-spacing:3.526760px;}
.wsbc{word-spacing:3.557601px;}
.ws19{word-spacing:3.586536px;}
.ws41{word-spacing:3.646312px;}
.ws42{word-spacing:3.706087px;}
.ws43{word-spacing:3.765863px;}
.ws3c{word-spacing:3.825638px;}
.ws3d{word-spacing:3.885414px;}
.ws6a{word-spacing:4.004965px;}
.ws58{word-spacing:4.064741px;}
.ws59{word-spacing:4.124516px;}
.ws80{word-spacing:4.184292px;}
.ws114{word-spacing:4.250074px;}
.wsa5{word-spacing:4.472928px;}
.ws62{word-spacing:4.483170px;}
.ws11b{word-spacing:4.626662px;}
.wsd8{word-spacing:4.722272px;}
.ws9{word-spacing:4.770079px;}
.ws49{word-spacing:4.841824px;}
.wsa{word-spacing:4.853765px;}
.ws37{word-spacing:4.901599px;}
.wsce{word-spacing:4.932846px;}
.ws4d{word-spacing:4.961375px;}
.wsb7{word-spacing:4.968918px;}
.ws63{word-spacing:5.021150px;}
.ws2f{word-spacing:5.080926px;}
.ws3e{word-spacing:5.140702px;}
.wsb8{word-spacing:5.180841px;}
.ws9b{word-spacing:5.200477px;}
.ws9e{word-spacing:5.320028px;}
.ws102{word-spacing:5.648832px;}
.ws91{word-spacing:5.678682px;}
.ws6f{word-spacing:5.738458px;}
.wsd9{word-spacing:6.515540px;}
.ws104{word-spacing:6.724800px;}
.ws7e{word-spacing:6.933970px;}
.ws101{word-spacing:7.155187px;}
.ws48{word-spacing:7.232848px;}
.ws55{word-spacing:7.711052px;}
.ws7{word-spacing:7.782761px;}
.wsda{word-spacing:8.249033px;}
.ws10a{word-spacing:8.458700px;}
.wsa4{word-spacing:8.715357px;}
.wsd5{word-spacing:10.068597px;}
.ws5{word-spacing:12.176255px;}
.ws3{word-spacing:15.481836px;}
.ws6{word-spacing:16.109478px;}
.ws103{word-spacing:20.658586px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:26.840252px;}
.ws56{word-spacing:27.317449px;}
.ws81{word-spacing:62.459942px;}
.ws72{word-spacing:78.569246px;}
.ws85{word-spacing:88.229007px;}
.ws97{word-spacing:92.846250px;}
.ws8d{word-spacing:102.336084px;}
.ws88{word-spacing:114.291234px;}
.ws84{word-spacing:124.166707px;}
.ws77{word-spacing:135.906145px;}
.ws75{word-spacing:147.861295px;}
.ws87{word-spacing:158.477468px;}
.wsf2{word-spacing:169.379654px;}
.ws8a{word-spacing:170.432618px;}
.ws83{word-spacing:173.876429px;}
.ws76{word-spacing:180.092380px;}
.wse2{word-spacing:190.217369px;}
.wsf9{word-spacing:191.765552px;}
.ws74{word-spacing:192.047530px;}
.wse6{word-spacing:202.226252px;}
.wsfb{word-spacing:207.456602px;}
.wsf1{word-spacing:212.686952px;}
.ws82{word-spacing:226.875955px;}
.wse8{word-spacing:240.889000px;}
.ws86{word-spacing:243.018829px;}
.wsea{word-spacing:251.349700px;}
.wse4{word-spacing:252.019184px;}
.ws67{word-spacing:253.927386px;}
.ws69{word-spacing:253.975207px;}
.ws8c{word-spacing:258.805087px;}
.ws8b{word-spacing:262.144279px;}
.wsec{word-spacing:262.479884px;}
.ws89{word-spacing:266.450605px;}
.ws8e{word-spacing:271.711549px;}
.ws68{word-spacing:273.438191px;}
.ws66{word-spacing:277.837686px;}
.ws7b{word-spacing:283.459050px;}
.ws65{word-spacing:287.975653px;}
.ws7a{word-spacing:296.611350px;}
.ws7c{word-spacing:298.165950px;}
.ws79{word-spacing:311.318250px;}
.ws6d{word-spacing:319.508698px;}
.wse3{word-spacing:339.470636px;}
.ws5c{word-spacing:391.544755px;}
.wsf5{word-spacing:440.534048px;}
.wsf6{word-spacing:441.769630px;}
.wsef{word-spacing:458.256900px;}
.wsf8{word-spacing:458.505730px;}
.wsf7{word-spacing:462.270718px;}
.wsfa{word-spacing:466.876990px;}
.wsee{word-spacing:469.764300px;}
.wsf0{word-spacing:471.119100px;}
.wsf3{word-spacing:479.177700px;}
.wseb{word-spacing:480.327054px;}
.wsed{word-spacing:482.626500px;}
.wse9{word-spacing:488.461903px;}
.wsf4{word-spacing:488.697763px;}
.wse7{word-spacing:496.602752px;}
.wse5{word-spacing:504.743602px;}
.ws5f{word-spacing:552.348173px;}
.ws5e{word-spacing:570.962419px;}
.ws5b{word-spacing:589.576666px;}
.ws5d{word-spacing:594.687514px;}
.ws60{word-spacing:606.469363px;}
.ws5a{word-spacing:617.336640px;}
._12{margin-left:-7.699102px;}
._6{margin-left:-6.635092px;}
._7{margin-left:-5.308087px;}
._0{margin-left:-3.849538px;}
._31{margin-left:-2.630133px;}
._3{margin-left:-1.506341px;}
._69{width:1.267623px;}
._6b{width:3.359205px;}
._4f{width:10.987558px;}
._1{width:12.971268px;}
._c{width:14.824386px;}
._13{width:15.948134px;}
._8{width:17.107877px;}
._a{width:18.291334px;}
._b{width:19.319470px;}
._14{width:20.395430px;}
._10{width:21.542894px;}
._9{width:23.348506px;}
._36{width:25.105752px;}
._f{width:26.265390px;}
._11{width:28.285810px;}
._84{width:29.410697px;}
._2{width:30.587087px;}
._6c{width:31.908229px;}
._4{width:33.355008px;}
._6d{width:35.148053px;}
._3b{width:36.176198px;}
._83{width:38.042198px;}
._6e{width:43.755739px;}
._5{width:69.368860px;}
._18{width:78.922253px;}
._54{width:88.283174px;}
._53{width:89.305344px;}
._56{width:91.618675px;}
._40{width:94.445685px;}
._41{width:100.136336px;}
._5f{width:112.139307px;}
._60{width:116.012776px;}
._3e{width:127.322028px;}
._49{width:129.169997px;}
._3f{width:134.973305px;}
._19{width:143.049946px;}
._3d{width:144.716728px;}
._4c{width:149.200272px;}
._43{width:150.204505px;}
._5a{width:155.315981px;}
._3c{width:162.111427px;}
._5d{width:163.157853px;}
._7c{width:166.492501px;}
._5c{width:168.765581px;}
._52{width:170.193515px;}
._34{width:173.732240px;}
._39{width:177.211930px;}
._71{width:179.840354px;}
._48{width:182.770333px;}
._82{width:190.158755px;}
._47{width:191.426269px;}
._4e{width:194.725483px;}
._5b{width:198.516096px;}
._4d{width:204.337424px;}
._5e{width:211.965696px;}
._64{width:214.618853px;}
._37{width:222.456384px;}
._4a{width:225.235026px;}
._66{width:226.574003px;}
._51{width:237.190176px;}
._68{width:238.529153px;}
._57{width:240.855437px;}
._62{width:246.849937px;}
._44{width:249.145326px;}
._65{width:258.805087px;}
._72{width:261.810400px;}
._25{width:265.882536px;}
._59{width:267.754637px;}
._3a{width:269.691379px;}
._46{width:270.760237px;}
._81{width:272.138567px;}
._22{width:273.772935px;}
._38{width:276.738970px;}
._23{width:277.837686px;}
._4b{width:280.372178px;}
._75{width:282.599267px;}
._2a{width:285.441161px;}
._2b{width:289.792836px;}
._45{width:292.327328px;}
._58{width:297.505152px;}
._33{width:299.022212px;}
._63{width:301.987089px;}
._35{width:304.425940px;}
._24{width:305.908378px;}
._67{width:313.559674px;}
._32{width:320.254558px;}
._74{width:328.015638px;}
._2d{width:339.226583px;}
._80{width:348.885266px;}
._77{width:349.931336px;}
._1b{width:356.306803px;}
._79{width:358.604944px;}
._7a{width:369.943741px;}
._2c{width:385.003651px;}
._29{width:390.981226px;}
._15{width:395.705120px;}
._76{width:405.279432px;}
._2e{width:408.627027px;}
._2f{width:410.539851px;}
._73{width:414.745834px;}
._21{width:423.056578px;}
._28{width:428.855141px;}
._1a{width:431.247974px;}
._30{width:433.445918px;}
._27{width:440.858111px;}
._17{width:447.172301px;}
._20{width:454.104418px;}
._26{width:456.734551px;}
._1f{width:463.429435px;}
._1e{width:472.706631px;}
._1d{width:482.031648px;}
._1c{width:503.263994px;}
._16{width:528.407885px;}
._d{width:905.194337px;}
._61{width:1425.891150px;}
._50{width:1459.770940px;}
._55{width:1472.909866px;}
._42{width:1481.299003px;}
._6a{width:1578.790332px;}
._7d{width:1880.630561px;}
._7b{width:1955.530385px;}
._7f{width:2031.727862px;}
._7e{width:2082.008711px;}
._78{width:2098.427309px;}
._70{width:2118.215998px;}
._6f{width:2536.713300px;}
._e{width:2560.623300px;}
.fc5{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:29.887800px;}
.fsd{font-size:35.865600px;}
.fse{font-size:35.910000px;}
.fs10{font-size:40.500000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs14{font-size:43.600200px;}
.fsf{font-size:45.090000px;}
.fsb{font-size:45.429600px;}
.fs9{font-size:47.820600px;}
.fsc{font-size:49.829400px;}
.fsa{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs12{font-size:62.910000px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y17d{bottom:-300.355537px;}
.y19f{bottom:-256.341204px;}
.y19e{bottom:-241.896622px;}
.y19d{bottom:-227.519676px;}
.y19c{bottom:-213.075094px;}
.y19b{bottom:-195.322034px;}
.y19a{bottom:-177.502466px;}
.y199{bottom:-163.057885px;}
.y198{bottom:-148.680938px;}
.y197{bottom:-134.236357px;}
.y196{bottom:-119.859410px;}
.y195{bottom:-105.414829px;}
.y194{bottom:-90.970247px;}
.y193{bottom:-73.217187px;}
.y192{bottom:-55.397619px;}
.y191{bottom:-40.953037px;}
.y190{bottom:-13.412925px;}
.y0{bottom:0.000000px;}
.y18f{bottom:3.467599px;}
.y37{bottom:9.233944px;}
.y36{bottom:26.903761px;}
.y64{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y1a9{bottom:66.709575px;}
.y1a1{bottom:83.246963px;}
.y1a8{bottom:85.541963px;}
.y1cf{bottom:91.665000px;}
.y151{bottom:95.037000px;}
.y4{bottom:97.125005px;}
.y1a7{bottom:97.894463px;}
.y270{bottom:100.020000px;}
.y1f7{bottom:100.797000px;}
.y126{bottom:102.045000px;}
.ycf{bottom:104.055000px;}
.y34{bottom:104.646000px;}
.y9b{bottom:107.641500px;}
.y150{bottom:109.233000px;}
.y1ce{bottom:110.494500px;}
.y63{bottom:112.575000px;}
.y1a6{bottom:116.794463px;}
.y26f{bottom:117.280500px;}
.y1f6{bottom:118.371000px;}
.y125{bottom:120.874500px;}
.y33{bottom:122.535000px;}
.yce{bottom:122.884500px;}
.y179{bottom:125.769000px;}
.y9a{bottom:126.471000px;}
.y14f{bottom:128.077500px;}
.y1a5{bottom:129.146963px;}
.y1cd{bottom:129.324000px;}
.y239{bottom:129.721500px;}
.y62{bottom:131.404500px;}
.y104{bottom:132.445500px;}
.y26e{bottom:134.541000px;}
.y238{bottom:134.802000px;}
.y14e{bottom:134.938500px;}
.y1f5{bottom:135.945000px;}
.y1a0{bottom:138.934463px;}
.y21{bottom:139.264499px;}
.y124{bottom:139.704000px;}
.y32{bottom:140.422500px;}
.ycd{bottom:141.714000px;}
.y178{bottom:144.598500px;}
.y99{bottom:145.300500px;}
.y103{bottom:146.643000px;}
.y101{bottom:146.992500px;}
.y1cc{bottom:148.153500px;}
.y1a2{bottom:149.059463px;}
.y61{bottom:150.234000px;}
.y26d{bottom:151.800000px;}
.y237{bottom:153.631500px;}
.y31{bottom:158.310000px;}
.y236{bottom:158.616000px;}
.y1a4{bottom:160.331963px;}
.ycc{bottom:160.543500px;}
.y102{bottom:160.839000px;}
.y177{bottom:163.428000px;}
.y98{bottom:164.130000px;}
.y1cb{bottom:166.983000px;}
.y14d{bottom:168.156000px;}
.y26c{bottom:169.060500px;}
.y60{bottom:169.063500px;}
.y1f4{bottom:171.451500px;}
.y14c{bottom:175.017000px;}
.y123{bottom:175.354500px;}
.y30{bottom:176.199000px;}
.y235{bottom:177.541500px;}
.ycb{bottom:179.373000px;}
.y100{bottom:182.238000px;}
.y176{bottom:182.257500px;}
.y234{bottom:182.526000px;}
.y97{bottom:182.959500px;}
.y1ca{bottom:185.812500px;}
.y26b{bottom:186.321000px;}
.y5f{bottom:187.893000px;}
.y122{bottom:189.550500px;}
.y1f3{bottom:190.281000px;}
.y2f{bottom:194.086500px;}
.yff{bottom:196.435500px;}
.y18{bottom:196.933500px;}
.yca{bottom:198.202500px;}
.y175{bottom:201.087000px;}
.y233{bottom:201.451500px;}
.y96{bottom:201.789000px;}
.y26a{bottom:203.581500px;}
.yfc{bottom:203.883000px;}
.y1c9{bottom:204.642000px;}
.y5e{bottom:206.722500px;}
.y121{bottom:207.721500px;}
.y14b{bottom:208.236000px;}
.y1f2{bottom:209.110500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.yfe{bottom:210.631500px;}
.y2e{bottom:211.974000px;}
.y120{bottom:215.170500px;}
.yc9{bottom:217.032000px;}
.y174{bottom:219.916500px;}
.y232{bottom:220.609500px;}
.y95{bottom:220.618500px;}
.y269{bottom:220.842000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1a3{bottom:223.039463px;}
.y1c8{bottom:223.471500px;}
.yfd{bottom:224.829000px;}
.y231{bottom:225.531000px;}
.y5d{bottom:225.552000px;}
.y1f1{bottom:227.940000px;}
.y2d{bottom:229.863000px;}
.y14a{bottom:231.876000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yc8{bottom:235.861500px;}
.y268{bottom:238.102500px;}
.y173{bottom:238.744500px;}
.y94{bottom:239.446500px;}
.y1c7{bottom:242.301000px;}
.y149{bottom:242.920500px;}
.y11f{bottom:243.318000px;}
.y5c{bottom:244.381500px;}
.y230{bottom:244.519500px;}
.yfb{bottom:246.228000px;}
.y1f0{bottom:246.769500px;}
.y11d{bottom:249.208500px;}
.y22f{bottom:249.600000px;}
.yfa{bottom:253.675500px;}
.yc7{bottom:254.689500px;}
.y267{bottom:255.363000px;}
.y148{bottom:255.517500px;}
.y11e{bottom:257.515500px;}
.y172{bottom:257.574000px;}
.y93{bottom:258.276000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1c6{bottom:261.130500px;}
.y18e{bottom:263.139782px;}
.y5b{bottom:263.211000px;}
.y1ef{bottom:265.599000px;}
.y22e{bottom:268.431000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y266{bottom:272.623500px;}
.y22d{bottom:273.351000px;}
.yc6{bottom:273.519000px;}
.y171{bottom:276.403500px;}
.y92{bottom:277.105500px;}
.y18d{bottom:277.584363px;}
.y11c{bottom:278.914500px;}
.y1c5{bottom:279.960000px;}
.yf9{bottom:281.823000px;}
.y5a{bottom:282.040500px;}
.y1ee{bottom:284.428500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y147{bottom:287.136000px;}
.y265{bottom:289.884000px;}
.y18c{bottom:292.028945px;}
.y22c{bottom:292.341000px;}
.yc5{bottom:292.348500px;}
.y170{bottom:295.233000px;}
.y91{bottom:295.935000px;}
.yf8{bottom:296.020500px;}
.y2c{bottom:297.166500px;}
.y22b{bottom:297.421500px;}
.y11b{bottom:300.313500px;}
.y59{bottom:300.870000px;}
.yf5{bottom:303.034500px;}
.y1ed{bottom:303.258000px;}
.y1c4{bottom:306.223500px;}
.y18b{bottom:306.407018px;}
.y264{bottom:307.143000px;}
.yf7{bottom:310.216500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y11a{bottom:310.419000px;}
.y16f{bottom:314.062500px;}
.y90{bottom:314.764500px;}
.y2b{bottom:315.054000px;}
.y22a{bottom:316.251000px;}
.y58{bottom:319.699500px;}
.yc4{bottom:320.145000px;}
.y18a{bottom:320.851600px;}
.y119{bottom:321.712500px;}
.y1ec{bottom:322.087500px;}
.y146{bottom:322.542000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y263{bottom:324.403500px;}
.yf6{bottom:324.414000px;}
.y1c3{bottom:332.485500px;}
.y16e{bottom:332.892000px;}
.y2a{bottom:332.943000px;}
.y8f{bottom:333.594000px;}
.y189{bottom:335.228546px;}
.y229{bottom:335.409000px;}
.y57{bottom:338.529000px;}
.yc3{bottom:338.974500px;}
.y228{bottom:340.329000px;}
.y1eb{bottom:340.917000px;}
.y145{bottom:341.371500px;}
.y262{bottom:341.664000px;}
.yf4{bottom:345.813000px;}
.yf{bottom:348.133500px;}
.y188{bottom:349.673128px;}
.y29{bottom:350.830500px;}
.y1c2{bottom:351.315000px;}
.y16d{bottom:351.721500px;}
.y118{bottom:351.762000px;}
.y8e{bottom:352.423500px;}
.y56{bottom:357.358500px;}
.y261{bottom:358.924500px;}
.y227{bottom:359.319000px;}
.y1ea{bottom:359.746500px;}
.yf3{bottom:360.009000px;}
.y144{bottom:360.201000px;}
.y187{bottom:364.117709px;}
.y226{bottom:364.240500px;}
.yc2{bottom:366.769500px;}
.yf0{bottom:367.458000px;}
.y1c1{bottom:370.144500px;}
.y16c{bottom:370.551000px;}
.y8d{bottom:371.253000px;}
.yf2{bottom:374.206500px;}
.y260{bottom:376.185000px;}
.y55{bottom:376.188000px;}
.y28{bottom:377.685000px;}
.y186{bottom:378.494656px;}
.y1e9{bottom:378.576000px;}
.y143{bottom:379.030500px;}
.y225{bottom:383.229000px;}
.yc1{bottom:385.599000px;}
.y117{bottom:385.818000px;}
.ye{bottom:386.785499px;}
.yf1{bottom:388.402500px;}
.y1c0{bottom:388.974000px;}
.y8c{bottom:390.082500px;}
.y185{bottom:392.939237px;}
.y295{bottom:393.370500px;}
.y25f{bottom:393.445500px;}
.y16b{bottom:393.864000px;}
.y54{bottom:395.017500px;}
.y27{bottom:395.572500px;}
.y1e8{bottom:397.405500px;}
.y142{bottom:397.860000px;}
.y224{bottom:402.387000px;}
.yc0{bottom:404.428500px;}
.y116{bottom:406.257000px;}
.y184{bottom:407.383819px;}
.y223{bottom:407.467500px;}
.y1bf{bottom:407.803500px;}
.yd{bottom:408.044999px;}
.y8b{bottom:408.912000px;}
.yef{bottom:409.801500px;}
.y294{bottom:410.631000px;}
.y25e{bottom:410.706000px;}
.y26{bottom:413.460000px;}
.y53{bottom:413.847000px;}
.y1e7{bottom:416.235000px;}
.y141{bottom:416.689500px;}
.yee{bottom:417.250500px;}
.y183{bottom:421.760765px;}
.ybf{bottom:423.258000px;}
.y222{bottom:426.297000px;}
.y1be{bottom:426.633000px;}
.y115{bottom:426.696000px;}
.y16a{bottom:427.488000px;}
.y8a{bottom:427.741500px;}
.y293{bottom:427.891500px;}
.y25d{bottom:427.966500px;}
.y25{bottom:431.349000px;}
.y221{bottom:431.377500px;}
.y52{bottom:432.675000px;}
.y1e6{bottom:435.064500px;}
.y140{bottom:435.519000px;}
.y182{bottom:436.205347px;}
.ybe{bottom:442.087500px;}
.y25c{bottom:445.225500px;}
.yed{bottom:445.398000px;}
.y1bd{bottom:445.462500px;}
.y169{bottom:446.317500px;}
.y89{bottom:446.571000px;}
.y114{bottom:447.133500px;}
.y24{bottom:449.236500px;}
.y220{bottom:450.207000px;}
.y181{bottom:450.582293px;}
.y1e5{bottom:453.894000px;}
.y13f{bottom:454.348500px;}
.y21f{bottom:455.287500px;}
.y51{bottom:455.988000px;}
.yec{bottom:459.594000px;}
.ybd{bottom:460.917000px;}
.y25b{bottom:462.486000px;}
.y1bc{bottom:464.292000px;}
.y168{bottom:465.147000px;}
.y88{bottom:465.400500px;}
.y292{bottom:466.969500px;}
.y23{bottom:467.124000px;}
.y180{bottom:468.401861px;}
.y113{bottom:470.446500px;}
.y1e4{bottom:472.723500px;}
.y13e{bottom:473.176500px;}
.yeb{bottom:473.791500px;}
.y21e{bottom:474.118500px;}
.ye8{bottom:474.141000px;}
.ybc{bottom:479.746500px;}
.y21d{bottom:479.805000px;}
.y1bb{bottom:483.121500px;}
.y167{bottom:483.976500px;}
.y87{bottom:484.230000px;}
.y22{bottom:485.013000px;}
.yea{bottom:487.987500px;}
.y112{bottom:489.276000px;}
.y1e3{bottom:491.553000px;}
.y13d{bottom:492.006000px;}
.y17f{bottom:496.346389px;}
.y25a{bottom:497.007000px;}
.y21c{bottom:498.028500px;}
.ybb{bottom:498.576000px;}
.y291{bottom:501.490500px;}
.y1ba{bottom:501.951000px;}
.ye9{bottom:502.185000px;}
.y166{bottom:502.806000px;}
.yc{bottom:502.864502px;}
.y86{bottom:503.059500px;}
.y111{bottom:508.105500px;}
.y1e2{bottom:510.382500px;}
.y17e{bottom:510.724463px;}
.y13c{bottom:510.835500px;}
.y259{bottom:514.267500px;}
.y21b{bottom:517.185000px;}
.yba{bottom:517.405500px;}
.y290{bottom:518.751000px;}
.y1b9{bottom:520.780500px;}
.yb{bottom:520.864502px;}
.y165{bottom:521.635500px;}
.y85{bottom:521.889000px;}
.y21a{bottom:522.873000px;}
.ye7{bottom:523.584000px;}
.y110{bottom:526.935000px;}
.y1e1{bottom:529.212000px;}
.y13b{bottom:529.665000px;}
.y50{bottom:531.138000px;}
.y258{bottom:531.528000px;}
.y28f{bottom:536.011500px;}
.yb9{bottom:536.235000px;}
.ya{bottom:538.864499px;}
.y1b8{bottom:539.610000px;}
.y164{bottom:540.465000px;}
.y84{bottom:540.718500px;}
.y219{bottom:541.096500px;}
.y10f{bottom:545.764500px;}
.y218{bottom:546.177000px;}
.y1e0{bottom:548.041500px;}
.y13a{bottom:548.494500px;}
.y257{bottom:548.788500px;}
.y4f{bottom:550.596000px;}
.y17c{bottom:551.764564px;}
.y28e{bottom:553.272000px;}
.ye6{bottom:553.633500px;}
.yb8{bottom:555.064500px;}
.y9{bottom:556.864499px;}
.y1b7{bottom:558.439500px;}
.y17b{bottom:558.986963px;}
.y163{bottom:559.294500px;}
.y83{bottom:559.548000px;}
.y10e{bottom:564.594000px;}
.y217{bottom:565.006500px;}
.y256{bottom:566.049000px;}
.y1df{bottom:566.871000px;}
.y139{bottom:567.324000px;}
.y216{bottom:570.087000px;}
.y28d{bottom:570.531000px;}
.yb7{bottom:573.894000px;}
.y1b6{bottom:577.269000px;}
.y162{bottom:578.124000px;}
.y82{bottom:578.377500px;}
.y255{bottom:583.309500px;}
.y10d{bottom:583.423500px;}
.y1de{bottom:585.700500px;}
.y138{bottom:586.153500px;}
.y28c{bottom:587.791500px;}
.y4e{bottom:587.985000px;}
.y215{bottom:588.916500px;}
.ye5{bottom:590.739000px;}
.yb6{bottom:592.723500px;}
.y214{bottom:594.604500px;}
.y161{bottom:596.953500px;}
.y81{bottom:597.207000px;}
.y254{bottom:600.568500px;}
.y1b5{bottom:603.531000px;}
.y1dd{bottom:604.530000px;}
.y137{bottom:604.983000px;}
.y28b{bottom:605.052000px;}
.y4d{bottom:607.443000px;}
.ye4{bottom:609.568500px;}
.yb5{bottom:611.553000px;}
.y213{bottom:612.826500px;}
.y80{bottom:616.036500px;}
.y253{bottom:617.829000px;}
.y28a{bottom:622.312500px;}
.y1dc{bottom:623.359500px;}
.y4c{bottom:626.899500px;}
.ye3{bottom:628.398000px;}
.y10c{bottom:628.885500px;}
.y1b4{bottom:629.794500px;}
.yb4{bottom:630.382500px;}
.y212{bottom:631.984500px;}
.y160{bottom:632.602500px;}
.y7f{bottom:634.866000px;}
.y252{bottom:635.089500px;}
.y211{bottom:638.268000px;}
.y136{bottom:638.935500px;}
.y289{bottom:639.573000px;}
.y10b{bottom:645.324000px;}
.y8{bottom:645.510000px;}
.y108{bottom:645.642000px;}
.y4b{bottom:646.356000px;}
.y1db{bottom:646.671000px;}
.y15f{bottom:646.800000px;}
.ye2{bottom:647.227500px;}
.y1b3{bottom:648.624000px;}
.yb3{bottom:649.212000px;}
.y251{bottom:652.350000px;}
.y135{bottom:653.131500px;}
.y7e{bottom:653.695500px;}
.y210{bottom:655.894500px;}
.y288{bottom:656.833500px;}
.y20f{bottom:660.816000px;}
.y10a{bottom:661.762500px;}
.y107{bottom:662.080500px;}
.y15e{bottom:664.971000px;}
.y4a{bottom:665.814000px;}
.ye1{bottom:666.055500px;}
.y7{bottom:666.771000px;}
.y1b2{bottom:667.453500px;}
.yb2{bottom:668.041500px;}
.y250{bottom:669.610500px;}
.y15d{bottom:670.861500px;}
.y134{bottom:671.302500px;}
.y7d{bottom:672.525000px;}
.y287{bottom:674.094000px;}
.y133{bottom:678.069000px;}
.y109{bottom:678.199500px;}
.y20e{bottom:679.804500px;}
.y1da{bottom:680.295000px;}
.ye0{bottom:684.885000px;}
.y49{bottom:685.270500px;}
.y1b1{bottom:686.283000px;}
.yb1{bottom:686.871000px;}
.y7c{bottom:691.354500px;}
.y20d{bottom:698.962500px;}
.y1d9{bottom:699.124500px;}
.y15c{bottom:700.567500px;}
.y106{bottom:701.841000px;}
.y20c{bottom:703.930500px;}
.y24f{bottom:704.131500px;}
.y48{bottom:704.727000px;}
.y1b0{bottom:705.112500px;}
.yb0{bottom:705.700500px;}
.y15b{bottom:706.639500px;}
.y132{bottom:706.899000px;}
.ydf{bottom:708.198000px;}
.y286{bottom:708.613500px;}
.y7b{bottom:710.184000px;}
.y131{bottom:712.972500px;}
.y1d8{bottom:717.954000px;}
.y24e{bottom:721.392000px;}
.y20b{bottom:722.872500px;}
.y1af{bottom:723.942000px;}
.y47{bottom:724.185000px;}
.yaf{bottom:724.530000px;}
.y285{bottom:725.874000px;}
.y6{bottom:726.298500px;}
.y20a{bottom:727.840500px;}
.y7a{bottom:729.013500px;}
.y105{bottom:733.461000px;}
.y15a{bottom:736.162500px;}
.y1d7{bottom:736.783500px;}
.y24d{bottom:738.651000px;}
.yde{bottom:741.822000px;}
.y159{bottom:742.053000px;}
.y130{bottom:742.494000px;}
.y1ae{bottom:742.771500px;}
.y284{bottom:743.134500px;}
.yae{bottom:743.359500px;}
.y46{bottom:743.641500px;}
.y209{bottom:746.784000px;}
.y79{bottom:747.843000px;}
.y12f{bottom:748.567500px;}
.y208{bottom:751.752000px;}
.y3{bottom:752.599495px;}
.y24c{bottom:755.911500px;}
.y283{bottom:760.395000px;}
.ydd{bottom:760.651500px;}
.yad{bottom:762.189000px;}
.y1d6{bottom:763.084500px;}
.y45{bottom:763.099500px;}
.y78{bottom:766.671000px;}
.y1ad{bottom:769.035000px;}
.y207{bottom:770.694000px;}
.y158{bottom:771.759000px;}
.y24b{bottom:773.172000px;}
.y206{bottom:775.662000px;}
.y282{bottom:777.655500px;}
.y157{bottom:777.832500px;}
.y12e{bottom:778.090500px;}
.ydc{bottom:779.481000px;}
.yac{bottom:781.018500px;}
.y44{bottom:782.556000px;}
.y12d{bottom:784.857000px;}
.y77{bottom:785.500500px;}
.y1d5{bottom:789.387000px;}
.y24a{bottom:790.432500px;}
.y205{bottom:794.604000px;}
.y281{bottom:794.916000px;}
.y1ac{bottom:795.297000px;}
.ydb{bottom:798.310500px;}
.y204{bottom:799.572000px;}
.yab{bottom:799.848000px;}
.y43{bottom:802.012500px;}
.y76{bottom:804.330000px;}
.y156{bottom:807.354000px;}
.y249{bottom:807.693000px;}
.y1d4{bottom:808.216500px;}
.y280{bottom:812.176500px;}
.y12c{bottom:813.685500px;}
.y1ab{bottom:814.126500px;}
.yda{bottom:817.140000px;}
.yaa{bottom:818.677500px;}
.y42{bottom:821.470500px;}
.y75{bottom:823.159500px;}
.y248{bottom:824.953500px;}
.y203{bottom:825.717000px;}
.y1d3{bottom:827.046000px;}
.y12b{bottom:827.883000px;}
.y155{bottom:828.753000px;}
.y27f{bottom:829.437000px;}
.yd9{bottom:835.969500px;}
.ya9{bottom:837.507000px;}
.y154{bottom:838.858500px;}
.y41{bottom:840.927000px;}
.y74{bottom:841.989000px;}
.y247{bottom:842.214000px;}
.y202{bottom:844.875000px;}
.y1d2{bottom:845.875500px;}
.y27e{bottom:846.697500px;}
.y1aa{bottom:847.615500px;}
.y12a{bottom:849.282000px;}
.y153{bottom:850.152000px;}
.y201{bottom:854.043000px;}
.ya8{bottom:856.335000px;}
.y129{bottom:859.387500px;}
.y246{bottom:859.474500px;}
.y40{bottom:860.383500px;}
.y73{bottom:860.818500px;}
.y27d{bottom:863.956500px;}
.y200{bottom:864.031500px;}
.y1d1{bottom:864.705000px;}
.y17a{bottom:870.045000px;}
.y128{bottom:870.681000px;}
.ya7{bottom:875.164500px;}
.y245{bottom:876.735000px;}
.yd8{bottom:876.948000px;}
.y2{bottom:879.369000px;}
.y72{bottom:879.648000px;}
.y3f{bottom:879.841500px;}
.y152{bottom:880.203000px;}
.y27c{bottom:881.217000px;}
.y1d0{bottom:891.006000px;}
.yd7{bottom:893.386500px;}
.ya6{bottom:893.994000px;}
.y1ff{bottom:895.501500px;}
.y71{bottom:898.477500px;}
.y127{bottom:900.732000px;}
.yd6{bottom:909.825000px;}
.y244{bottom:911.254500px;}
.ya5{bottom:912.823500px;}
.y27b{bottom:915.738000px;}
.y70{bottom:917.307000px;}
.y3e{bottom:918.426000px;}
.yd5{bottom:926.263500px;}
.y1fe{bottom:927.529500px;}
.y243{bottom:928.515000px;}
.ya4{bottom:931.653000px;}
.y27a{bottom:932.998500px;}
.y3d{bottom:934.566000px;}
.y6f{bottom:936.136500px;}
.yd4{bottom:942.702000px;}
.y242{bottom:945.775500px;}
.y279{bottom:950.259000px;}
.ya3{bottom:950.482500px;}
.y3c{bottom:950.706000px;}
.y6e{bottom:954.966000px;}
.y1fd{bottom:955.324500px;}
.yd3{bottom:959.140500px;}
.y241{bottom:963.036000px;}
.y1{bottom:966.726000px;}
.y278{bottom:967.519500px;}
.ya2{bottom:969.312000px;}
.y6d{bottom:973.795500px;}
.yd2{bottom:975.579000px;}
.y240{bottom:980.296500px;}
.y1fc{bottom:981.865500px;}
.y277{bottom:984.780000px;}
.ya1{bottom:988.141500px;}
.y6c{bottom:992.625000px;}
.y23f{bottom:997.557000px;}
.yd1{bottom:999.219000px;}
.y3b{bottom:999.721500px;}
.y276{bottom:1002.040500px;}
.ya0{bottom:1006.971000px;}
.y1fb{bottom:1008.406500px;}
.y6b{bottom:1011.454500px;}
.y23e{bottom:1014.817500px;}
.y275{bottom:1019.299500px;}
.y9f{bottom:1025.800500px;}
.y6a{bottom:1030.284000px;}
.yd0{bottom:1030.839000px;}
.y23d{bottom:1032.076500px;}
.y1fa{bottom:1034.946000px;}
.y3a{bottom:1036.485000px;}
.y274{bottom:1036.560000px;}
.y9e{bottom:1044.630000px;}
.y69{bottom:1049.113500px;}
.y23c{bottom:1049.337000px;}
.y273{bottom:1053.820500px;}
.y1f9{bottom:1061.487000px;}
.y9d{bottom:1063.459500px;}
.y39{bottom:1064.728500px;}
.y23b{bottom:1066.597500px;}
.y68{bottom:1067.943000px;}
.y272{bottom:1071.081000px;}
.y9c{bottom:1082.289000px;}
.y23a{bottom:1083.858000px;}
.y67{bottom:1086.772500px;}
.y1f8{bottom:1088.028000px;}
.y271{bottom:1088.341500px;}
.y38{bottom:1092.972000px;}
.y66{bottom:1105.602000px;}
.y35{bottom:1136.460000px;}
.y65{bottom:1168.366500px;}
.h25{height:26.108394px;}
.h2a{height:27.685547px;}
.h2d{height:30.252344px;}
.h9{height:30.461558px;}
.h24{height:32.070015px;}
.h7{height:32.130000px;}
.h26{height:32.782720px;}
.h27{height:33.201035px;}
.h15{height:34.574294px;}
.h10{height:34.813397px;}
.ha{height:35.440852px;}
.h2e{height:36.794879px;}
.h11{height:38.896243px;}
.h12{height:39.165235px;}
.h28{height:39.260742px;}
.h29{height:40.268364px;}
.h14{height:40.504048px;}
.h2c{height:43.004883px;}
.hf{height:43.217759px;}
.h19{height:43.288829px;}
.h21{height:43.294829px;}
.h13{height:43.516637px;}
.h37{height:45.567245px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h1f{height:49.776344px;}
.hd{height:50.629933px;}
.hb{height:50.930649px;}
.h31{height:53.147558px;}
.h17{height:54.768749px;}
.h18{height:54.774749px;}
.h2{height:55.080000px;}
.h32{height:55.529558px;}
.h34{height:55.535558px;}
.h33{height:57.959558px;}
.h36{height:58.343558px;}
.h2f{height:58.409558px;}
.h30{height:58.595558px;}
.h35{height:58.601558px;}
.h2b{height:61.434197px;}
.hc{height:61.613006px;}
.h16{height:61.807397px;}
.h1a{height:63.211397px;}
.h1b{height:64.531397px;}
.h1e{height:64.537397px;}
.h1d{height:67.303397px;}
.h1c{height:67.309397px;}
.h22{height:68.041397px;}
.h20{height:77.475235px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h23{height:250.501500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w5{width:412.044750px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x4e{left:-144.941625px;}
.x0{left:0.000000px;}
.x4f{left:1.735875px;}
.x50{left:25.630796px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x68{left:68.689500px;}
.x54{left:76.863038px;}
.x55{left:77.875875px;}
.x53{left:81.925538px;}
.x6c{left:85.848000px;}
.x64{left:87.414000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x62{left:113.413500px;}
.x63{left:116.248500px;}
.x61{left:120.522000px;}
.x6b{left:125.433000px;}
.x5b{left:128.085000px;}
.x69{left:136.510500px;}
.x66{left:140.940000px;}
.x6a{left:141.945000px;}
.x65{left:143.293500px;}
.x67{left:144.811500px;}
.x60{left:146.458500px;}
.x5f{left:148.494000px;}
.x5e{left:150.528000px;}
.x5d{left:152.562000px;}
.x5c{left:154.597500px;}
.x52{left:200.860875px;}
.x4{left:203.484001px;}
.x6d{left:238.488000px;}
.x8{left:248.526000px;}
.x7{left:249.591000px;}
.x11{left:258.816000px;}
.x47{left:260.190000px;}
.x3c{left:261.421500px;}
.x32{left:263.137500px;}
.x21{left:266.680500px;}
.x4a{left:267.729000px;}
.x41{left:269.013000px;}
.x12{left:274.848000px;}
.xe{left:276.843000px;}
.xc{left:281.479500px;}
.x14{left:283.308000px;}
.x56{left:285.843375px;}
.x48{left:287.553000px;}
.x40{left:288.768000px;}
.x13{left:296.104500px;}
.x28{left:298.086000px;}
.x10{left:301.383000px;}
.x43{left:303.580500px;}
.x44{left:305.314500px;}
.x9{left:307.789500px;}
.x26{left:309.694500px;}
.xf{left:314.731500px;}
.xb{left:319.888500px;}
.x17{left:323.031000px;}
.x15{left:326.817000px;}
.x45{left:342.712500px;}
.x5a{left:346.687500px;}
.xd{left:352.539000px;}
.x3b{left:387.466500px;}
.x3a{left:389.008500px;}
.x57{left:390.757500px;}
.x49{left:397.639500px;}
.x4d{left:403.668000px;}
.x51{left:406.733711px;}
.x42{left:409.068000px;}
.x58{left:414.651000px;}
.x39{left:430.555500px;}
.x46{left:438.931500px;}
.x4c{left:441.357000px;}
.x37{left:450.529500px;}
.x3f{left:452.157000px;}
.x3{left:454.959000px;}
.x4b{left:466.731000px;}
.x3d{left:472.131000px;}
.x2b{left:480.661500px;}
.x24{left:505.600500px;}
.x23{left:508.588500px;}
.x2c{left:510.132000px;}
.x2a{left:511.990500px;}
.x1d{left:513.712500px;}
.x34{left:516.961500px;}
.x33{left:520.323000px;}
.x25{left:530.646000px;}
.x22{left:535.129500px;}
.x27{left:539.391000px;}
.x1f{left:544.455000px;}
.x29{left:545.602500px;}
.x1e{left:547.443000px;}
.x20{left:548.578500px;}
.x1c{left:550.761000px;}
.x1b{left:553.086000px;}
.x1a{left:555.411000px;}
.x19{left:557.736000px;}
.x18{left:560.062500px;}
.x31{left:684.009000px;}
.x16{left:685.884000px;}
.x35{left:697.260000px;}
.x36{left:716.352000px;}
.x59{left:723.181500px;}
.x38{left:727.686000px;}
.x2d{left:740.391000px;}
.x3e{left:743.887500px;}
.x2f{left:751.423500px;}
.xa{left:778.740000px;}
.x2e{left:792.985500px;}
.x30{left:809.029500px;}
@media print{
.v2{vertical-align:-9.328000pt;}
.v1{vertical-align:-8.202667pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:8.602667pt;}
.v6{vertical-align:10.346667pt;}
.vb{vertical-align:12.346667pt;}
.ve{vertical-align:13.498667pt;}
.v5{vertical-align:15.429333pt;}
.va{vertical-align:17.354667pt;}
.v4{vertical-align:19.285333pt;}
.v10{vertical-align:22.282667pt;}
.v3{vertical-align:23.994667pt;}
.v7{vertical-align:25.242667pt;}
.v8{vertical-align:26.416000pt;}
.v9{vertical-align:28.885333pt;}
.vd{vertical-align:29.998800pt;}
.vc{vertical-align:34.053333pt;}
.ls44{letter-spacing:-0.108216pt;}
.ls42{letter-spacing:-0.096192pt;}
.ls3a{letter-spacing:-0.084168pt;}
.ls35{letter-spacing:-0.080160pt;}
.ls32{letter-spacing:-0.072144pt;}
.ls3f{letter-spacing:-0.060120pt;}
.ls38{letter-spacing:-0.056112pt;}
.ls46{letter-spacing:-0.044736pt;}
.ls3d{letter-spacing:-0.036072pt;}
.ls34{letter-spacing:-0.032064pt;}
.ls3b{letter-spacing:-0.028056pt;}
.ls39{letter-spacing:-0.024048pt;}
.ls43{letter-spacing:-0.020040pt;}
.ls30{letter-spacing:-0.019152pt;}
.ls33{letter-spacing:-0.016032pt;}
.ls37{letter-spacing:-0.012024pt;}
.ls40{letter-spacing:-0.010800pt;}
.ls36{letter-spacing:-0.008016pt;}
.ls45{letter-spacing:-0.007200pt;}
.ls3c{letter-spacing:-0.004008pt;}
.ls41{letter-spacing:-0.003600pt;}
.ls31{letter-spacing:-0.003192pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.000533pt;}
.ls18{letter-spacing:0.002383pt;}
.ls2d{letter-spacing:0.002422pt;}
.ls13{letter-spacing:0.003012pt;}
.ls29{letter-spacing:0.003600pt;}
.ls1f{letter-spacing:0.004008pt;}
.ls28{letter-spacing:0.018000pt;}
.ls20{letter-spacing:0.020040pt;}
.ls24{letter-spacing:0.021600pt;}
.ls23{letter-spacing:0.024048pt;}
.ls1e{letter-spacing:0.028056pt;}
.ls25{letter-spacing:0.032064pt;}
.ls1c{letter-spacing:0.036072pt;}
.ls21{letter-spacing:0.052104pt;}
.ls1d{letter-spacing:0.056112pt;}
.ls27{letter-spacing:0.064128pt;}
.ls22{letter-spacing:0.080160pt;}
.ls1b{letter-spacing:0.118104pt;}
.ls1a{letter-spacing:0.127680pt;}
.ls26{letter-spacing:0.128256pt;}
.ls4d{letter-spacing:0.447791pt;}
.ls10{letter-spacing:0.509060pt;}
.ls11{letter-spacing:0.514393pt;}
.ls3e{letter-spacing:1.503000pt;}
.lse{letter-spacing:2.657067pt;}
.ls2{letter-spacing:10.626533pt;}
.ls12{letter-spacing:13.070931pt;}
.ls4a{letter-spacing:13.076984pt;}
.lsa{letter-spacing:13.124065pt;}
.ls5{letter-spacing:13.177199pt;}
.lsf{letter-spacing:13.230333pt;}
.ls15{letter-spacing:13.278400pt;}
.ls6{letter-spacing:13.283467pt;}
.ls14{letter-spacing:13.283733pt;}
.ls49{letter-spacing:13.375550pt;}
.lsb{letter-spacing:13.442868pt;}
.ls2a{letter-spacing:13.484610pt;}
.ls2e{letter-spacing:13.496002pt;}
.ls2b{letter-spacing:13.549136pt;}
.ls4{letter-spacing:13.602270pt;}
.ls3{letter-spacing:13.655404pt;}
.lsd{letter-spacing:13.708538pt;}
.lsc{letter-spacing:13.761671pt;}
.ls7{letter-spacing:14.293010pt;}
.ls2f{letter-spacing:14.442217pt;}
.ls48{letter-spacing:14.557250pt;}
.ls47{letter-spacing:14.558679pt;}
.ls2c{letter-spacing:15.289276pt;}
.ls8{letter-spacing:16.152695pt;}
.ls9{letter-spacing:20.297137pt;}
.ls1{letter-spacing:25.292137pt;}
.ls19{letter-spacing:169.003200pt;}
.ls17{letter-spacing:173.371733pt;}
.ls16{letter-spacing:211.771733pt;}
.ls4b{letter-spacing:224.060533pt;}
.ls4f{letter-spacing:447.600533pt;}
.ls50{letter-spacing:457.959379pt;}
.ls52{letter-spacing:459.240404pt;}
.ls51{letter-spacing:461.061377pt;}
.ls4c{letter-spacing:465.190356pt;}
.wsc{word-spacing:-20.194365pt;}
.ws1e{word-spacing:-13.283467pt;}
.wsfd{word-spacing:-11.955200pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws96{word-spacing:-10.011984pt;}
.wsb{word-spacing:-9.298400pt;}
.ws93{word-spacing:-8.107680pt;}
.ws94{word-spacing:-7.980000pt;}
.wsa9{word-spacing:-2.372736pt;}
.wsa8{word-spacing:-2.304600pt;}
.wsbd{word-spacing:-2.276544pt;}
.wse{word-spacing:-2.247578pt;}
.ws6e{word-spacing:-2.231622pt;}
.wsc9{word-spacing:-1.887768pt;}
.ws21{word-spacing:-1.859685pt;}
.wsdb{word-spacing:-1.806551pt;}
.ws1f{word-spacing:-1.700284pt;}
.wsca{word-spacing:-1.679352pt;}
.ws10f{word-spacing:-1.673728pt;}
.ws20{word-spacing:-1.647150pt;}
.wsd0{word-spacing:-1.607208pt;}
.ws46{word-spacing:-1.594016pt;}
.wsb4{word-spacing:-1.591176pt;}
.wsb3{word-spacing:-1.346688pt;}
.ws52{word-spacing:-1.328347pt;}
.ws1c{word-spacing:-1.168945pt;}
.ws1b{word-spacing:-1.115811pt;}
.wsd2{word-spacing:-1.082160pt;}
.ws61{word-spacing:-1.062677pt;}
.wsd1{word-spacing:-1.030056pt;}
.ws7d{word-spacing:-0.956410pt;}
.ws90{word-spacing:-0.903276pt;}
.wsc7{word-spacing:-0.901800pt;}
.wsc8{word-spacing:-0.889776pt;}
.ws1d{word-spacing:-0.850142pt;}
.wsdc{word-spacing:-0.743874pt;}
.ws45{word-spacing:-0.637606pt;}
.ws64{word-spacing:-0.531339pt;}
.wscc{word-spacing:-0.448896pt;}
.ws9f{word-spacing:-0.425071pt;}
.wsae{word-spacing:-0.404808pt;}
.ws40{word-spacing:-0.371937pt;}
.wsaf{word-spacing:-0.360720pt;}
.ws107{word-spacing:-0.334746pt;}
.ws54{word-spacing:-0.318803pt;}
.ws108{word-spacing:-0.286925pt;}
.ws2e{word-spacing:-0.265669pt;}
.ws12{word-spacing:-0.239104pt;}
.ws27{word-spacing:-0.212535pt;}
.wsd3{word-spacing:-0.208416pt;}
.wsc6{word-spacing:-0.200400pt;}
.ws11{word-spacing:-0.191283pt;}
.wsa2{word-spacing:-0.185136pt;}
.wsa7{word-spacing:-0.160320pt;}
.ws31{word-spacing:-0.159402pt;}
.ws14{word-spacing:-0.143462pt;}
.wscb{word-spacing:-0.116232pt;}
.ws28{word-spacing:-0.106268pt;}
.wsd4{word-spacing:-0.096192pt;}
.wsdf{word-spacing:-0.095642pt;}
.wsb2{word-spacing:-0.092184pt;}
.wsa3{word-spacing:-0.054264pt;}
.ws3f{word-spacing:-0.053134pt;}
.wsf{word-spacing:-0.047821pt;}
.ws71{word-spacing:-0.042507pt;}
.ws95{word-spacing:-0.040080pt;}
.wsa1{word-spacing:-0.038304pt;}
.wse1{word-spacing:-0.037194pt;}
.wsff{word-spacing:-0.011614pt;}
.ws110{word-spacing:-0.005222pt;}
.ws106{word-spacing:-0.005197pt;}
.ws2{word-spacing:-0.000692pt;}
.ws0{word-spacing:0.000000pt;}
.ws29{word-spacing:0.003199pt;}
.wsba{word-spacing:0.012024pt;}
.wsb0{word-spacing:0.036072pt;}
.ws78{word-spacing:0.042507pt;}
.wsc4{word-spacing:0.044088pt;}
.ws18{word-spacing:0.047821pt;}
.ws25{word-spacing:0.053134pt;}
.wsb9{word-spacing:0.068136pt;}
.wsa6{word-spacing:0.080160pt;}
.wscf{word-spacing:0.084168pt;}
.ws73{word-spacing:0.085014pt;}
.wsb1{word-spacing:0.088176pt;}
.ws16{word-spacing:0.095642pt;}
.wsbb{word-spacing:0.100200pt;}
.wsbf{word-spacing:0.100800pt;}
.ws22{word-spacing:0.106268pt;}
.wsc5{word-spacing:0.120240pt;}
.wsc1{word-spacing:0.126000pt;}
.wsc0{word-spacing:0.133200pt;}
.wsbe{word-spacing:0.136272pt;}
.ws13{word-spacing:0.143462pt;}
.ws23{word-spacing:0.159402pt;}
.ws10d{word-spacing:0.191283pt;}
.ws1a{word-spacing:0.212535pt;}
.ws15{word-spacing:0.239104pt;}
.ws24{word-spacing:0.265669pt;}
.wsdd{word-spacing:0.286925pt;}
.ws30{word-spacing:0.318803pt;}
.ws10c{word-spacing:0.334746pt;}
.ws4b{word-spacing:0.371937pt;}
.ws8f{word-spacing:0.425071pt;}
.ws47{word-spacing:0.478205pt;}
.wsac{word-spacing:0.488976pt;}
.ws109{word-spacing:0.526029pt;}
.ws38{word-spacing:0.531339pt;}
.ws32{word-spacing:0.584473pt;}
.wsad{word-spacing:0.625248pt;}
.ws9a{word-spacing:0.637606pt;}
.ws99{word-spacing:0.743874pt;}
.ws112{word-spacing:0.765133pt;}
.ws4c{word-spacing:0.797008pt;}
.ws117{word-spacing:0.812954pt;}
.ws70{word-spacing:0.850142pt;}
.ws118{word-spacing:0.853758pt;}
.ws119{word-spacing:0.860774pt;}
.wsd7{word-spacing:0.903276pt;}
.ws53{word-spacing:1.009543pt;}
.ws50{word-spacing:1.062677pt;}
.ws98{word-spacing:1.115811pt;}
.ws9d{word-spacing:1.168945pt;}
.ws51{word-spacing:1.275213pt;}
.ws4e{word-spacing:1.328347pt;}
.ws10b{word-spacing:1.434624pt;}
.ws115{word-spacing:1.530266pt;}
.ws6b{word-spacing:1.594016pt;}
.ws111{word-spacing:1.625907pt;}
.ws9c{word-spacing:1.647150pt;}
.wsde{word-spacing:1.721549pt;}
.wsb5{word-spacing:1.739472pt;}
.ws6c{word-spacing:1.753418pt;}
.wsb6{word-spacing:1.755504pt;}
.ws3a{word-spacing:1.806551pt;}
.ws17{word-spacing:1.817190pt;}
.ws39{word-spacing:1.859685pt;}
.ws36{word-spacing:1.912819pt;}
.ws100{word-spacing:2.008474pt;}
.ws35{word-spacing:2.019087pt;}
.ws34{word-spacing:2.072221pt;}
.ws2d{word-spacing:2.125355pt;}
.ws10e{word-spacing:2.151936pt;}
.ws2c{word-spacing:2.178489pt;}
.wsab{word-spacing:2.232456pt;}
.ws1{word-spacing:2.232481pt;}
.ws105{word-spacing:2.247578pt;}
.ws3b{word-spacing:2.284756pt;}
.wsaa{word-spacing:2.304600pt;}
.wsd6{word-spacing:2.444158pt;}
.ws10{word-spacing:2.486682pt;}
.ws57{word-spacing:2.497292pt;}
.ws4a{word-spacing:2.550426pt;}
.wsd{word-spacing:2.550432pt;}
.ws92{word-spacing:2.603559pt;}
.ws4f{word-spacing:2.656693pt;}
.ws113{word-spacing:2.677965pt;}
.ws2b{word-spacing:2.709827pt;}
.ws44{word-spacing:2.816095pt;}
.ws116{word-spacing:2.861986pt;}
.wse0{word-spacing:2.866509pt;}
.wsa0{word-spacing:2.869229pt;}
.wsfc{word-spacing:2.869248pt;}
.ws26{word-spacing:2.922363pt;}
.wsfe{word-spacing:2.964890pt;}
.ws7f{word-spacing:2.975497pt;}
.wscd{word-spacing:3.006000pt;}
.wsc2{word-spacing:3.026040pt;}
.wsc3{word-spacing:3.042072pt;}
.ws11a{word-spacing:3.108352pt;}
.ws33{word-spacing:3.134898pt;}
.wsbc{word-spacing:3.162312pt;}
.ws19{word-spacing:3.188032pt;}
.ws41{word-spacing:3.241166pt;}
.ws42{word-spacing:3.294300pt;}
.ws43{word-spacing:3.347434pt;}
.ws3c{word-spacing:3.400567pt;}
.ws3d{word-spacing:3.453701pt;}
.ws6a{word-spacing:3.559969pt;}
.ws58{word-spacing:3.613103pt;}
.ws59{word-spacing:3.666237pt;}
.ws80{word-spacing:3.719371pt;}
.ws114{word-spacing:3.777843pt;}
.wsa5{word-spacing:3.975936pt;}
.ws62{word-spacing:3.985040pt;}
.ws11b{word-spacing:4.112589pt;}
.wsd8{word-spacing:4.197575pt;}
.ws9{word-spacing:4.240070pt;}
.ws49{word-spacing:4.303843pt;}
.wsa{word-spacing:4.314458pt;}
.ws37{word-spacing:4.356977pt;}
.wsce{word-spacing:4.384752pt;}
.ws4d{word-spacing:4.410111pt;}
.wsb7{word-spacing:4.416816pt;}
.ws63{word-spacing:4.463245pt;}
.ws2f{word-spacing:4.516379pt;}
.ws3e{word-spacing:4.569513pt;}
.wsb8{word-spacing:4.605192pt;}
.ws9b{word-spacing:4.622646pt;}
.ws9e{word-spacing:4.728914pt;}
.ws102{word-spacing:5.021184pt;}
.ws91{word-spacing:5.047717pt;}
.ws6f{word-spacing:5.100851pt;}
.wsd9{word-spacing:5.791591pt;}
.ws104{word-spacing:5.977600pt;}
.ws7e{word-spacing:6.163529pt;}
.ws101{word-spacing:6.360166pt;}
.ws48{word-spacing:6.429198pt;}
.ws55{word-spacing:6.854269pt;}
.ws7{word-spacing:6.918010pt;}
.wsda{word-spacing:7.332474pt;}
.ws10a{word-spacing:7.518845pt;}
.wsa4{word-spacing:7.746984pt;}
.wsd5{word-spacing:8.949864pt;}
.ws5{word-spacing:10.823338pt;}
.ws3{word-spacing:13.761632pt;}
.ws6{word-spacing:14.319536pt;}
.ws103{word-spacing:18.363187pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:23.858002pt;}
.ws56{word-spacing:24.282177pt;}
.ws81{word-spacing:55.519949pt;}
.ws72{word-spacing:69.839330pt;}
.ws85{word-spacing:78.425784pt;}
.ws97{word-spacing:82.530000pt;}
.ws8d{word-spacing:90.965408pt;}
.ws88{word-spacing:101.592208pt;}
.ws84{word-spacing:110.370406pt;}
.ws77{word-spacing:120.805462pt;}
.ws75{word-spacing:131.432262pt;}
.ws87{word-spacing:140.868861pt;}
.wsf2{word-spacing:150.559693pt;}
.ws8a{word-spacing:151.495661pt;}
.ws83{word-spacing:154.556826pt;}
.ws76{word-spacing:160.082115pt;}
.wse2{word-spacing:169.082106pt;}
.wsf9{word-spacing:170.458269pt;}
.ws74{word-spacing:170.708915pt;}
.wse6{word-spacing:179.756669pt;}
.wsfb{word-spacing:184.405869pt;}
.wsf1{word-spacing:189.055069pt;}
.ws82{word-spacing:201.667516pt;}
.wse8{word-spacing:214.123555pt;}
.ws86{word-spacing:216.016737pt;}
.wsea{word-spacing:223.421955pt;}
.wse4{word-spacing:224.017053pt;}
.ws67{word-spacing:225.713232pt;}
.ws69{word-spacing:225.755739pt;}
.ws8c{word-spacing:230.048966pt;}
.ws8b{word-spacing:233.017137pt;}
.wsec{word-spacing:233.315453pt;}
.ws89{word-spacing:236.844982pt;}
.ws8e{word-spacing:241.521377pt;}
.ws68{word-spacing:243.056170pt;}
.ws66{word-spacing:246.966832pt;}
.ws7b{word-spacing:251.963600pt;}
.ws65{word-spacing:255.978358pt;}
.ws7a{word-spacing:263.654533pt;}
.ws7c{word-spacing:265.036400pt;}
.ws79{word-spacing:276.727333pt;}
.ws6d{word-spacing:284.007731pt;}
.wse3{word-spacing:301.751677pt;}
.ws5c{word-spacing:348.039782pt;}
.wsf5{word-spacing:391.585821pt;}
.wsf6{word-spacing:392.684115pt;}
.wsef{word-spacing:407.339467pt;}
.wsf8{word-spacing:407.560649pt;}
.wsf7{word-spacing:410.907305pt;}
.wsfa{word-spacing:415.001769pt;}
.wsee{word-spacing:417.568267pt;}
.wsf0{word-spacing:418.772533pt;}
.wsf3{word-spacing:425.935733pt;}
.wseb{word-spacing:426.957381pt;}
.wsed{word-spacing:429.001333pt;}
.wse9{word-spacing:434.188358pt;}
.wsf4{word-spacing:434.398012pt;}
.wse7{word-spacing:441.424669pt;}
.wse5{word-spacing:448.660979pt;}
.ws5f{word-spacing:490.976154pt;}
.ws5e{word-spacing:507.522150pt;}
.ws5b{word-spacing:524.068147pt;}
.ws5d{word-spacing:528.611123pt;}
.ws60{word-spacing:539.083878pt;}
.ws5a{word-spacing:548.743680pt;}
._12{margin-left:-6.843646pt;}
._6{margin-left:-5.897859pt;}
._7{margin-left:-4.718299pt;}
._0{margin-left:-3.421811pt;}
._31{margin-left:-2.337896pt;}
._3{margin-left:-1.338970pt;}
._69{width:1.126776pt;}
._6b{width:2.985960pt;}
._4f{width:9.766718pt;}
._1{width:11.530016pt;}
._c{width:13.177232pt;}
._13{width:14.176119pt;}
._8{width:15.207002pt;}
._a{width:16.258963pt;}
._b{width:17.172862pt;}
._14{width:18.129271pt;}
._10{width:19.149239pt;}
._9{width:20.754227pt;}
._36{width:22.316224pt;}
._f{width:23.347013pt;}
._11{width:25.142942pt;}
._84{width:26.142842pt;}
._2{width:27.188522pt;}
._6c{width:28.362870pt;}
._4{width:29.648896pt;}
._6d{width:31.242714pt;}
._3b{width:32.156620pt;}
._83{width:33.815287pt;}
._6e{width:38.893990pt;}
._5{width:61.661209pt;}
._18{width:70.153114pt;}
._54{width:78.473933pt;}
._53{width:79.382528pt;}
._56{width:81.438822pt;}
._40{width:83.951720pt;}
._41{width:89.010077pt;}
._5f{width:99.679384pt;}
._60{width:103.122467pt;}
._3e{width:113.175136pt;}
._49{width:114.817775pt;}
._3f{width:119.976271pt;}
._19{width:127.155507pt;}
._3d{width:128.637091pt;}
._4c{width:132.622464pt;}
._43{width:133.515115pt;}
._5a{width:138.058650pt;}
._3c{width:144.099046pt;}
._5d{width:145.029203pt;}
._7c{width:147.993334pt;}
._5c{width:150.013850pt;}
._52{width:151.283125pt;}
._34{width:154.428658pt;}
._39{width:157.521715pt;}
._71{width:159.858093pt;}
._48{width:162.462518pt;}
._82{width:169.030004pt;}
._47{width:170.156683pt;}
._4e{width:173.089318pt;}
._5b{width:176.458752pt;}
._4d{width:181.633266pt;}
._5e{width:188.413952pt;}
._64{width:190.772314pt;}
._37{width:197.739008pt;}
._4a{width:200.208912pt;}
._66{width:201.399114pt;}
._51{width:210.835712pt;}
._68{width:212.025914pt;}
._57{width:214.093722pt;}
._62{width:219.422166pt;}
._44{width:221.462512pt;}
._65{width:230.048966pt;}
._72{width:232.720355pt;}
._25{width:236.340032pt;}
._59{width:238.004122pt;}
._3a{width:239.725670pt;}
._46{width:240.675766pt;}
._81{width:241.900949pt;}
._22{width:243.353720pt;}
._38{width:245.990195pt;}
._23{width:246.966832pt;}
._4b{width:249.219714pt;}
._75{width:251.199349pt;}
._2a{width:253.725477pt;}
._2b{width:257.593632pt;}
._45{width:259.846514pt;}
._58{width:264.449024pt;}
._33{width:265.797522pt;}
._63{width:268.432968pt;}
._35{width:270.600835pt;}
._24{width:271.918558pt;}
._67{width:278.719710pt;}
._32{width:284.670718pt;}
._74{width:291.569456pt;}
._2d{width:301.534741pt;}
._80{width:310.120237pt;}
._77{width:311.050077pt;}
._1b{width:316.717158pt;}
._79{width:318.759950pt;}
._7a{width:328.838881pt;}
._2c{width:342.225467pt;}
._29{width:347.538867pt;}
._15{width:351.737885pt;}
._76{width:360.248384pt;}
._2e{width:363.224024pt;}
._2f{width:364.924312pt;}
._73{width:368.662963pt;}
._21{width:376.050291pt;}
._28{width:381.204570pt;}
._1a{width:383.331533pt;}
._30{width:385.285261pt;}
._27{width:391.873877pt;}
._17{width:397.486490pt;}
._20{width:403.648371pt;}
._26{width:405.986267pt;}
._1f{width:411.937275pt;}
._1e{width:420.183672pt;}
._1d{width:428.472576pt;}
._1c{width:447.345773pt;}
._16{width:469.695898pt;}
._d{width:804.617189pt;}
._61{width:1267.458800pt;}
._50{width:1297.574169pt;}
._55{width:1309.253214pt;}
._42{width:1316.710225pt;}
._6a{width:1403.369184pt;}
._7d{width:1671.671610pt;}
._7b{width:1738.249231pt;}
._7f{width:1805.980322pt;}
._7e{width:1850.674410pt;}
._78{width:1865.268719pt;}
._70{width:1882.858665pt;}
._6f{width:2254.856267pt;}
._e{width:2276.109600pt;}
.fs13{font-size:26.566933pt;}
.fsd{font-size:31.880533pt;}
.fse{font-size:31.920000pt;}
.fs10{font-size:36.000000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs14{font-size:38.755733pt;}
.fsf{font-size:40.080000pt;}
.fsb{font-size:40.381867pt;}
.fs9{font-size:42.507200pt;}
.fsc{font-size:44.292800pt;}
.fsa{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs12{font-size:55.920000pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y17d{bottom:-266.982700pt;}
.y19f{bottom:-227.858848pt;}
.y19e{bottom:-215.019220pt;}
.y19d{bottom:-202.239712pt;}
.y19c{bottom:-189.400084pt;}
.y19b{bottom:-173.619586pt;}
.y19a{bottom:-157.779970pt;}
.y199{bottom:-144.940342pt;}
.y198{bottom:-132.160834pt;}
.y197{bottom:-119.321206pt;}
.y196{bottom:-106.541698pt;}
.y195{bottom:-93.702070pt;}
.y194{bottom:-80.862442pt;}
.y193{bottom:-65.081944pt;}
.y192{bottom:-49.242328pt;}
.y191{bottom:-36.402700pt;}
.y190{bottom:-11.922600pt;}
.y0{bottom:0.000000pt;}
.y18f{bottom:3.082310pt;}
.y37{bottom:8.207950pt;}
.y36{bottom:23.914454pt;}
.y64{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y1a9{bottom:59.297400pt;}
.y1a1{bottom:73.997300pt;}
.y1a8{bottom:76.037300pt;}
.y1cf{bottom:81.480000pt;}
.y151{bottom:84.477333pt;}
.y4{bottom:86.333337pt;}
.y1a7{bottom:87.017300pt;}
.y270{bottom:88.906667pt;}
.y1f7{bottom:89.597333pt;}
.y126{bottom:90.706667pt;}
.ycf{bottom:92.493333pt;}
.y34{bottom:93.018667pt;}
.y9b{bottom:95.681333pt;}
.y150{bottom:97.096000pt;}
.y1ce{bottom:98.217333pt;}
.y63{bottom:100.066667pt;}
.y1a6{bottom:103.817300pt;}
.y26f{bottom:104.249333pt;}
.y1f6{bottom:105.218667pt;}
.y125{bottom:107.444000pt;}
.y33{bottom:108.920000pt;}
.yce{bottom:109.230667pt;}
.y179{bottom:111.794667pt;}
.y9a{bottom:112.418667pt;}
.y14f{bottom:113.846667pt;}
.y1a5{bottom:114.797300pt;}
.y1cd{bottom:114.954667pt;}
.y239{bottom:115.308000pt;}
.y62{bottom:116.804000pt;}
.y104{bottom:117.729333pt;}
.y26e{bottom:119.592000pt;}
.y238{bottom:119.824000pt;}
.y14e{bottom:119.945333pt;}
.y1f5{bottom:120.840000pt;}
.y1a0{bottom:123.497300pt;}
.y21{bottom:123.790666pt;}
.y124{bottom:124.181333pt;}
.y32{bottom:124.820000pt;}
.ycd{bottom:125.968000pt;}
.y178{bottom:128.532000pt;}
.y99{bottom:129.156000pt;}
.y103{bottom:130.349333pt;}
.y101{bottom:130.660000pt;}
.y1cc{bottom:131.692000pt;}
.y1a2{bottom:132.497300pt;}
.y61{bottom:133.541333pt;}
.y26d{bottom:134.933333pt;}
.y237{bottom:136.561333pt;}
.y31{bottom:140.720000pt;}
.y236{bottom:140.992000pt;}
.y1a4{bottom:142.517300pt;}
.ycc{bottom:142.705333pt;}
.y102{bottom:142.968000pt;}
.y177{bottom:145.269333pt;}
.y98{bottom:145.893333pt;}
.y1cb{bottom:148.429333pt;}
.y14d{bottom:149.472000pt;}
.y26c{bottom:150.276000pt;}
.y60{bottom:150.278667pt;}
.y1f4{bottom:152.401333pt;}
.y14c{bottom:155.570667pt;}
.y123{bottom:155.870667pt;}
.y30{bottom:156.621333pt;}
.y235{bottom:157.814667pt;}
.ycb{bottom:159.442667pt;}
.y100{bottom:161.989333pt;}
.y176{bottom:162.006667pt;}
.y234{bottom:162.245333pt;}
.y97{bottom:162.630667pt;}
.y1ca{bottom:165.166667pt;}
.y26b{bottom:165.618667pt;}
.y5f{bottom:167.016000pt;}
.y122{bottom:168.489333pt;}
.y1f3{bottom:169.138667pt;}
.y2f{bottom:172.521333pt;}
.yff{bottom:174.609333pt;}
.y18{bottom:175.052000pt;}
.yca{bottom:176.180000pt;}
.y175{bottom:178.744000pt;}
.y233{bottom:179.068000pt;}
.y96{bottom:179.368000pt;}
.y26a{bottom:180.961333pt;}
.yfc{bottom:181.229333pt;}
.y1c9{bottom:181.904000pt;}
.y5e{bottom:183.753333pt;}
.y121{bottom:184.641333pt;}
.y14b{bottom:185.098667pt;}
.y1f2{bottom:185.876000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.yfe{bottom:187.228000pt;}
.y2e{bottom:188.421333pt;}
.y120{bottom:191.262667pt;}
.yc9{bottom:192.917333pt;}
.y174{bottom:195.481333pt;}
.y232{bottom:196.097333pt;}
.y95{bottom:196.105333pt;}
.y269{bottom:196.304000pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1a3{bottom:198.257300pt;}
.y1c8{bottom:198.641333pt;}
.yfd{bottom:199.848000pt;}
.y231{bottom:200.472000pt;}
.y5d{bottom:200.490667pt;}
.y1f1{bottom:202.613333pt;}
.y2d{bottom:204.322667pt;}
.y14a{bottom:206.112000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yc8{bottom:209.654667pt;}
.y268{bottom:211.646667pt;}
.y173{bottom:212.217333pt;}
.y94{bottom:212.841333pt;}
.y1c7{bottom:215.378667pt;}
.y149{bottom:215.929333pt;}
.y11f{bottom:216.282667pt;}
.y5c{bottom:217.228000pt;}
.y230{bottom:217.350667pt;}
.yfb{bottom:218.869333pt;}
.y1f0{bottom:219.350667pt;}
.y11d{bottom:221.518667pt;}
.y22f{bottom:221.866667pt;}
.yfa{bottom:225.489333pt;}
.yc7{bottom:226.390667pt;}
.y267{bottom:226.989333pt;}
.y148{bottom:227.126667pt;}
.y11e{bottom:228.902667pt;}
.y172{bottom:228.954667pt;}
.y93{bottom:229.578667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1c6{bottom:232.116000pt;}
.y18e{bottom:233.902028pt;}
.y5b{bottom:233.965333pt;}
.y1ef{bottom:236.088000pt;}
.y22e{bottom:238.605333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y266{bottom:242.332000pt;}
.y22d{bottom:242.978667pt;}
.yc6{bottom:243.128000pt;}
.y171{bottom:245.692000pt;}
.y92{bottom:246.316000pt;}
.y18d{bottom:246.741656pt;}
.y11c{bottom:247.924000pt;}
.y1c5{bottom:248.853333pt;}
.yf9{bottom:250.509333pt;}
.y5a{bottom:250.702667pt;}
.y1ee{bottom:252.825333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y147{bottom:255.232000pt;}
.y265{bottom:257.674667pt;}
.y18c{bottom:259.581284pt;}
.y22c{bottom:259.858667pt;}
.yc5{bottom:259.865333pt;}
.y170{bottom:262.429333pt;}
.y91{bottom:263.053333pt;}
.yf8{bottom:263.129333pt;}
.y2c{bottom:264.148000pt;}
.y22b{bottom:264.374667pt;}
.y11b{bottom:266.945333pt;}
.y59{bottom:267.440000pt;}
.yf5{bottom:269.364000pt;}
.y1ed{bottom:269.562667pt;}
.y1c4{bottom:272.198667pt;}
.y18b{bottom:272.361794pt;}
.y264{bottom:273.016000pt;}
.yf7{bottom:275.748000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y11a{bottom:275.928000pt;}
.y16f{bottom:279.166667pt;}
.y90{bottom:279.790667pt;}
.y2b{bottom:280.048000pt;}
.y22a{bottom:281.112000pt;}
.y58{bottom:284.177333pt;}
.yc4{bottom:284.573333pt;}
.y18a{bottom:285.201422pt;}
.y119{bottom:285.966667pt;}
.y1ec{bottom:286.300000pt;}
.y146{bottom:286.704000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y263{bottom:288.358667pt;}
.yf6{bottom:288.368000pt;}
.y1c3{bottom:295.542667pt;}
.y16e{bottom:295.904000pt;}
.y2a{bottom:295.949333pt;}
.y8f{bottom:296.528000pt;}
.y189{bottom:297.980930pt;}
.y229{bottom:298.141333pt;}
.y57{bottom:300.914667pt;}
.yc3{bottom:301.310667pt;}
.y228{bottom:302.514667pt;}
.y1eb{bottom:303.037333pt;}
.y145{bottom:303.441333pt;}
.y262{bottom:303.701333pt;}
.yf4{bottom:307.389333pt;}
.yf{bottom:309.452000pt;}
.y188{bottom:310.820558pt;}
.y29{bottom:311.849333pt;}
.y1c2{bottom:312.280000pt;}
.y16d{bottom:312.641333pt;}
.y118{bottom:312.677333pt;}
.y8e{bottom:313.265333pt;}
.y56{bottom:317.652000pt;}
.y261{bottom:319.044000pt;}
.y227{bottom:319.394667pt;}
.y1ea{bottom:319.774667pt;}
.yf3{bottom:320.008000pt;}
.y144{bottom:320.178667pt;}
.y187{bottom:323.660186pt;}
.y226{bottom:323.769333pt;}
.yc2{bottom:326.017333pt;}
.yf0{bottom:326.629333pt;}
.y1c1{bottom:329.017333pt;}
.y16c{bottom:329.378667pt;}
.y8d{bottom:330.002667pt;}
.yf2{bottom:332.628000pt;}
.y260{bottom:334.386667pt;}
.y55{bottom:334.389333pt;}
.y28{bottom:335.720000pt;}
.y186{bottom:336.439694pt;}
.y1e9{bottom:336.512000pt;}
.y143{bottom:336.916000pt;}
.y225{bottom:340.648000pt;}
.yc1{bottom:342.754667pt;}
.y117{bottom:342.949333pt;}
.ye{bottom:343.809333pt;}
.yf1{bottom:345.246667pt;}
.y1c0{bottom:345.754667pt;}
.y8c{bottom:346.740000pt;}
.y185{bottom:349.279322pt;}
.y295{bottom:349.662667pt;}
.y25f{bottom:349.729333pt;}
.y16b{bottom:350.101333pt;}
.y54{bottom:351.126667pt;}
.y27{bottom:351.620000pt;}
.y1e8{bottom:353.249333pt;}
.y142{bottom:353.653333pt;}
.y224{bottom:357.677333pt;}
.yc0{bottom:359.492000pt;}
.y116{bottom:361.117333pt;}
.y184{bottom:362.118950pt;}
.y223{bottom:362.193333pt;}
.y1bf{bottom:362.492000pt;}
.yd{bottom:362.706666pt;}
.y8b{bottom:363.477333pt;}
.yef{bottom:364.268000pt;}
.y294{bottom:365.005333pt;}
.y25e{bottom:365.072000pt;}
.y26{bottom:367.520000pt;}
.y53{bottom:367.864000pt;}
.y1e7{bottom:369.986667pt;}
.y141{bottom:370.390667pt;}
.yee{bottom:370.889333pt;}
.y183{bottom:374.898458pt;}
.ybf{bottom:376.229333pt;}
.y222{bottom:378.930667pt;}
.y1be{bottom:379.229333pt;}
.y115{bottom:379.285333pt;}
.y16a{bottom:379.989333pt;}
.y8a{bottom:380.214667pt;}
.y293{bottom:380.348000pt;}
.y25d{bottom:380.414667pt;}
.y25{bottom:383.421333pt;}
.y221{bottom:383.446667pt;}
.y52{bottom:384.600000pt;}
.y1e6{bottom:386.724000pt;}
.y140{bottom:387.128000pt;}
.y182{bottom:387.738086pt;}
.ybe{bottom:392.966667pt;}
.y25c{bottom:395.756000pt;}
.yed{bottom:395.909333pt;}
.y1bd{bottom:395.966667pt;}
.y169{bottom:396.726667pt;}
.y89{bottom:396.952000pt;}
.y114{bottom:397.452000pt;}
.y24{bottom:399.321333pt;}
.y220{bottom:400.184000pt;}
.y181{bottom:400.517594pt;}
.y1e5{bottom:403.461333pt;}
.y13f{bottom:403.865333pt;}
.y21f{bottom:404.700000pt;}
.y51{bottom:405.322667pt;}
.yec{bottom:408.528000pt;}
.ybd{bottom:409.704000pt;}
.y25b{bottom:411.098667pt;}
.y1bc{bottom:412.704000pt;}
.y168{bottom:413.464000pt;}
.y88{bottom:413.689333pt;}
.y292{bottom:415.084000pt;}
.y23{bottom:415.221333pt;}
.y180{bottom:416.357210pt;}
.y113{bottom:418.174667pt;}
.y1e4{bottom:420.198667pt;}
.y13e{bottom:420.601333pt;}
.yeb{bottom:421.148000pt;}
.y21e{bottom:421.438667pt;}
.ye8{bottom:421.458667pt;}
.ybc{bottom:426.441333pt;}
.y21d{bottom:426.493333pt;}
.y1bb{bottom:429.441333pt;}
.y167{bottom:430.201333pt;}
.y87{bottom:430.426667pt;}
.y22{bottom:431.122667pt;}
.yea{bottom:433.766667pt;}
.y112{bottom:434.912000pt;}
.y1e3{bottom:436.936000pt;}
.y13d{bottom:437.338667pt;}
.y17f{bottom:441.196790pt;}
.y25a{bottom:441.784000pt;}
.y21c{bottom:442.692000pt;}
.ybb{bottom:443.178667pt;}
.y291{bottom:445.769333pt;}
.y1ba{bottom:446.178667pt;}
.ye9{bottom:446.386667pt;}
.y166{bottom:446.938667pt;}
.yc{bottom:446.990669pt;}
.y86{bottom:447.164000pt;}
.y111{bottom:451.649333pt;}
.y1e2{bottom:453.673333pt;}
.y17e{bottom:453.977300pt;}
.y13c{bottom:454.076000pt;}
.y259{bottom:457.126667pt;}
.y21b{bottom:459.720000pt;}
.yba{bottom:459.916000pt;}
.y290{bottom:461.112000pt;}
.y1b9{bottom:462.916000pt;}
.yb{bottom:462.990669pt;}
.y165{bottom:463.676000pt;}
.y85{bottom:463.901333pt;}
.y21a{bottom:464.776000pt;}
.ye7{bottom:465.408000pt;}
.y110{bottom:468.386667pt;}
.y1e1{bottom:470.410667pt;}
.y13b{bottom:470.813333pt;}
.y50{bottom:472.122667pt;}
.y258{bottom:472.469333pt;}
.y28f{bottom:476.454667pt;}
.yb9{bottom:476.653333pt;}
.ya{bottom:478.990666pt;}
.y1b8{bottom:479.653333pt;}
.y164{bottom:480.413333pt;}
.y84{bottom:480.638667pt;}
.y219{bottom:480.974667pt;}
.y10f{bottom:485.124000pt;}
.y218{bottom:485.490667pt;}
.y1e0{bottom:487.148000pt;}
.y13a{bottom:487.550667pt;}
.y257{bottom:487.812000pt;}
.y4f{bottom:489.418667pt;}
.y17c{bottom:490.457390pt;}
.y28e{bottom:491.797333pt;}
.ye6{bottom:492.118667pt;}
.yb8{bottom:493.390667pt;}
.y9{bottom:494.990666pt;}
.y1b7{bottom:496.390667pt;}
.y17b{bottom:496.877300pt;}
.y163{bottom:497.150667pt;}
.y83{bottom:497.376000pt;}
.y10e{bottom:501.861333pt;}
.y217{bottom:502.228000pt;}
.y256{bottom:503.154667pt;}
.y1df{bottom:503.885333pt;}
.y139{bottom:504.288000pt;}
.y216{bottom:506.744000pt;}
.y28d{bottom:507.138667pt;}
.yb7{bottom:510.128000pt;}
.y1b6{bottom:513.128000pt;}
.y162{bottom:513.888000pt;}
.y82{bottom:514.113333pt;}
.y255{bottom:518.497333pt;}
.y10d{bottom:518.598667pt;}
.y1de{bottom:520.622667pt;}
.y138{bottom:521.025333pt;}
.y28c{bottom:522.481333pt;}
.y4e{bottom:522.653333pt;}
.y215{bottom:523.481333pt;}
.ye5{bottom:525.101333pt;}
.yb6{bottom:526.865333pt;}
.y214{bottom:528.537333pt;}
.y161{bottom:530.625333pt;}
.y81{bottom:530.850667pt;}
.y254{bottom:533.838667pt;}
.y1b5{bottom:536.472000pt;}
.y1dd{bottom:537.360000pt;}
.y137{bottom:537.762667pt;}
.y28b{bottom:537.824000pt;}
.y4d{bottom:539.949333pt;}
.ye4{bottom:541.838667pt;}
.yb5{bottom:543.602667pt;}
.y213{bottom:544.734667pt;}
.y80{bottom:547.588000pt;}
.y253{bottom:549.181333pt;}
.y28a{bottom:553.166667pt;}
.y1dc{bottom:554.097333pt;}
.y4c{bottom:557.244000pt;}
.ye3{bottom:558.576000pt;}
.y10c{bottom:559.009333pt;}
.y1b4{bottom:559.817333pt;}
.yb4{bottom:560.340000pt;}
.y212{bottom:561.764000pt;}
.y160{bottom:562.313333pt;}
.y7f{bottom:564.325333pt;}
.y252{bottom:564.524000pt;}
.y211{bottom:567.349333pt;}
.y136{bottom:567.942667pt;}
.y289{bottom:568.509333pt;}
.y10b{bottom:573.621333pt;}
.y8{bottom:573.786667pt;}
.y108{bottom:573.904000pt;}
.y4b{bottom:574.538667pt;}
.y1db{bottom:574.818667pt;}
.y15f{bottom:574.933333pt;}
.ye2{bottom:575.313333pt;}
.y1b3{bottom:576.554667pt;}
.yb3{bottom:577.077333pt;}
.y251{bottom:579.866667pt;}
.y135{bottom:580.561333pt;}
.y7e{bottom:581.062667pt;}
.y210{bottom:583.017333pt;}
.y288{bottom:583.852000pt;}
.y20f{bottom:587.392000pt;}
.y10a{bottom:588.233333pt;}
.y107{bottom:588.516000pt;}
.y15e{bottom:591.085333pt;}
.y4a{bottom:591.834667pt;}
.ye1{bottom:592.049333pt;}
.y7{bottom:592.685334pt;}
.y1b2{bottom:593.292000pt;}
.yb2{bottom:593.814667pt;}
.y250{bottom:595.209333pt;}
.y15d{bottom:596.321333pt;}
.y134{bottom:596.713333pt;}
.y7d{bottom:597.800000pt;}
.y287{bottom:599.194667pt;}
.y133{bottom:602.728000pt;}
.y109{bottom:602.844000pt;}
.y20e{bottom:604.270667pt;}
.y1da{bottom:604.706667pt;}
.ye0{bottom:608.786667pt;}
.y49{bottom:609.129333pt;}
.y1b1{bottom:610.029333pt;}
.yb1{bottom:610.552000pt;}
.y7c{bottom:614.537333pt;}
.y20d{bottom:621.300000pt;}
.y1d9{bottom:621.444000pt;}
.y15c{bottom:622.726667pt;}
.y106{bottom:623.858667pt;}
.y20c{bottom:625.716000pt;}
.y24f{bottom:625.894667pt;}
.y48{bottom:626.424000pt;}
.y1b0{bottom:626.766667pt;}
.yb0{bottom:627.289333pt;}
.y15b{bottom:628.124000pt;}
.y132{bottom:628.354667pt;}
.ydf{bottom:629.509333pt;}
.y286{bottom:629.878667pt;}
.y7b{bottom:631.274667pt;}
.y131{bottom:633.753333pt;}
.y1d8{bottom:638.181333pt;}
.y24e{bottom:641.237333pt;}
.y20b{bottom:642.553333pt;}
.y1af{bottom:643.504000pt;}
.y47{bottom:643.720000pt;}
.yaf{bottom:644.026667pt;}
.y285{bottom:645.221333pt;}
.y6{bottom:645.598667pt;}
.y20a{bottom:646.969333pt;}
.y7a{bottom:648.012000pt;}
.y105{bottom:651.965333pt;}
.y15a{bottom:654.366667pt;}
.y1d7{bottom:654.918667pt;}
.y24d{bottom:656.578667pt;}
.yde{bottom:659.397333pt;}
.y159{bottom:659.602667pt;}
.y130{bottom:659.994667pt;}
.y1ae{bottom:660.241333pt;}
.y284{bottom:660.564000pt;}
.yae{bottom:660.764000pt;}
.y46{bottom:661.014667pt;}
.y209{bottom:663.808000pt;}
.y79{bottom:664.749333pt;}
.y12f{bottom:665.393333pt;}
.y208{bottom:668.224000pt;}
.y3{bottom:668.977329pt;}
.y24c{bottom:671.921333pt;}
.y283{bottom:675.906667pt;}
.ydd{bottom:676.134667pt;}
.yad{bottom:677.501333pt;}
.y1d6{bottom:678.297333pt;}
.y45{bottom:678.310667pt;}
.y78{bottom:681.485333pt;}
.y1ad{bottom:683.586667pt;}
.y207{bottom:685.061333pt;}
.y158{bottom:686.008000pt;}
.y24b{bottom:687.264000pt;}
.y206{bottom:689.477333pt;}
.y282{bottom:691.249333pt;}
.y157{bottom:691.406667pt;}
.y12e{bottom:691.636000pt;}
.ydc{bottom:692.872000pt;}
.yac{bottom:694.238667pt;}
.y44{bottom:695.605333pt;}
.y12d{bottom:697.650667pt;}
.y77{bottom:698.222667pt;}
.y1d5{bottom:701.677333pt;}
.y24a{bottom:702.606667pt;}
.y205{bottom:706.314667pt;}
.y281{bottom:706.592000pt;}
.y1ac{bottom:706.930667pt;}
.ydb{bottom:709.609333pt;}
.y204{bottom:710.730667pt;}
.yab{bottom:710.976000pt;}
.y43{bottom:712.900000pt;}
.y76{bottom:714.960000pt;}
.y156{bottom:717.648000pt;}
.y249{bottom:717.949333pt;}
.y1d4{bottom:718.414667pt;}
.y280{bottom:721.934667pt;}
.y12c{bottom:723.276000pt;}
.y1ab{bottom:723.668000pt;}
.yda{bottom:726.346667pt;}
.yaa{bottom:727.713333pt;}
.y42{bottom:730.196000pt;}
.y75{bottom:731.697333pt;}
.y248{bottom:733.292000pt;}
.y203{bottom:733.970667pt;}
.y1d3{bottom:735.152000pt;}
.y12b{bottom:735.896000pt;}
.y155{bottom:736.669333pt;}
.y27f{bottom:737.277333pt;}
.yd9{bottom:743.084000pt;}
.ya9{bottom:744.450667pt;}
.y154{bottom:745.652000pt;}
.y41{bottom:747.490667pt;}
.y74{bottom:748.434667pt;}
.y247{bottom:748.634667pt;}
.y202{bottom:751.000000pt;}
.y1d2{bottom:751.889333pt;}
.y27e{bottom:752.620000pt;}
.y1aa{bottom:753.436000pt;}
.y12a{bottom:754.917333pt;}
.y153{bottom:755.690667pt;}
.y201{bottom:759.149333pt;}
.ya8{bottom:761.186667pt;}
.y129{bottom:763.900000pt;}
.y246{bottom:763.977333pt;}
.y40{bottom:764.785333pt;}
.y73{bottom:765.172000pt;}
.y27d{bottom:767.961333pt;}
.y200{bottom:768.028000pt;}
.y1d1{bottom:768.626667pt;}
.y17a{bottom:773.373333pt;}
.y128{bottom:773.938667pt;}
.ya7{bottom:777.924000pt;}
.y245{bottom:779.320000pt;}
.yd8{bottom:779.509333pt;}
.y2{bottom:781.661334pt;}
.y72{bottom:781.909333pt;}
.y3f{bottom:782.081333pt;}
.y152{bottom:782.402667pt;}
.y27c{bottom:783.304000pt;}
.y1d0{bottom:792.005333pt;}
.yd7{bottom:794.121333pt;}
.ya6{bottom:794.661333pt;}
.y1ff{bottom:796.001333pt;}
.y71{bottom:798.646667pt;}
.y127{bottom:800.650667pt;}
.yd6{bottom:808.733333pt;}
.y244{bottom:810.004000pt;}
.ya5{bottom:811.398667pt;}
.y27b{bottom:813.989333pt;}
.y70{bottom:815.384000pt;}
.y3e{bottom:816.378667pt;}
.yd5{bottom:823.345333pt;}
.y1fe{bottom:824.470667pt;}
.y243{bottom:825.346667pt;}
.ya4{bottom:828.136000pt;}
.y27a{bottom:829.332000pt;}
.y3d{bottom:830.725333pt;}
.y6f{bottom:832.121333pt;}
.yd4{bottom:837.957333pt;}
.y242{bottom:840.689333pt;}
.y279{bottom:844.674667pt;}
.ya3{bottom:844.873333pt;}
.y3c{bottom:845.072000pt;}
.y6e{bottom:848.858667pt;}
.y1fd{bottom:849.177333pt;}
.yd3{bottom:852.569333pt;}
.y241{bottom:856.032000pt;}
.y1{bottom:859.312000pt;}
.y278{bottom:860.017333pt;}
.ya2{bottom:861.610667pt;}
.y6d{bottom:865.596000pt;}
.yd2{bottom:867.181333pt;}
.y240{bottom:871.374667pt;}
.y1fc{bottom:872.769333pt;}
.y277{bottom:875.360000pt;}
.ya1{bottom:878.348000pt;}
.y6c{bottom:882.333333pt;}
.y23f{bottom:886.717333pt;}
.yd1{bottom:888.194667pt;}
.y3b{bottom:888.641333pt;}
.y276{bottom:890.702667pt;}
.ya0{bottom:895.085333pt;}
.y1fb{bottom:896.361333pt;}
.y6b{bottom:899.070667pt;}
.y23e{bottom:902.060000pt;}
.y275{bottom:906.044000pt;}
.y9f{bottom:911.822667pt;}
.y6a{bottom:915.808000pt;}
.yd0{bottom:916.301333pt;}
.y23d{bottom:917.401333pt;}
.y1fa{bottom:919.952000pt;}
.y3a{bottom:921.320000pt;}
.y274{bottom:921.386667pt;}
.y9e{bottom:928.560000pt;}
.y69{bottom:932.545333pt;}
.y23c{bottom:932.744000pt;}
.y273{bottom:936.729333pt;}
.y1f9{bottom:943.544000pt;}
.y9d{bottom:945.297333pt;}
.y39{bottom:946.425333pt;}
.y23b{bottom:948.086667pt;}
.y68{bottom:949.282667pt;}
.y272{bottom:952.072000pt;}
.y9c{bottom:962.034667pt;}
.y23a{bottom:963.429333pt;}
.y67{bottom:966.020000pt;}
.y1f8{bottom:967.136000pt;}
.y271{bottom:967.414667pt;}
.y38{bottom:971.530667pt;}
.y66{bottom:982.757333pt;}
.y35{bottom:1010.186667pt;}
.y65{bottom:1038.548000pt;}
.h25{height:23.207461pt;}
.h2a{height:24.609375pt;}
.h2d{height:26.890973pt;}
.h9{height:27.076941pt;}
.h24{height:28.506680pt;}
.h7{height:28.560000pt;}
.h26{height:29.140195pt;}
.h27{height:29.512031pt;}
.h15{height:30.732706pt;}
.h10{height:30.945242pt;}
.ha{height:31.502979pt;}
.h2e{height:32.706559pt;}
.h11{height:34.574438pt;}
.h12{height:34.813542pt;}
.h28{height:34.898438pt;}
.h29{height:35.794102pt;}
.h14{height:36.003598pt;}
.h2c{height:38.226563pt;}
.hf{height:38.415786pt;}
.h19{height:38.478959pt;}
.h21{height:38.484292pt;}
.h13{height:38.681455pt;}
.h37{height:40.504218pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h1f{height:44.245639pt;}
.hd{height:45.004385pt;}
.hb{height:45.271688pt;}
.h31{height:47.242274pt;}
.h17{height:48.683332pt;}
.h18{height:48.688666pt;}
.h2{height:48.960000pt;}
.h32{height:49.359607pt;}
.h34{height:49.364941pt;}
.h33{height:51.519607pt;}
.h36{height:51.860941pt;}
.h2f{height:51.919607pt;}
.h30{height:52.084941pt;}
.h35{height:52.090274pt;}
.h2b{height:54.608175pt;}
.hc{height:54.767117pt;}
.h16{height:54.939908pt;}
.h1a{height:56.187908pt;}
.h1b{height:57.361242pt;}
.h1e{height:57.366575pt;}
.h1d{height:59.825242pt;}
.h1c{height:59.830575pt;}
.h22{height:60.481242pt;}
.h20{height:68.866876pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h23{height:222.668000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w5{width:366.262000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x4e{left:-128.837000pt;}
.x0{left:0.000000pt;}
.x4f{left:1.543000pt;}
.x50{left:22.782930pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x68{left:61.057333pt;}
.x54{left:68.322700pt;}
.x55{left:69.223000pt;}
.x53{left:72.822700pt;}
.x6c{left:76.309333pt;}
.x64{left:77.701333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x62{left:100.812000pt;}
.x63{left:103.332000pt;}
.x61{left:107.130667pt;}
.x6b{left:111.496000pt;}
.x5b{left:113.853333pt;}
.x69{left:121.342667pt;}
.x66{left:125.280000pt;}
.x6a{left:126.173333pt;}
.x65{left:127.372000pt;}
.x67{left:128.721333pt;}
.x60{left:130.185333pt;}
.x5f{left:131.994667pt;}
.x5e{left:133.802667pt;}
.x5d{left:135.610667pt;}
.x5c{left:137.420000pt;}
.x52{left:178.543000pt;}
.x4{left:180.874667pt;}
.x6d{left:211.989333pt;}
.x8{left:220.912000pt;}
.x7{left:221.858667pt;}
.x11{left:230.058667pt;}
.x47{left:231.280000pt;}
.x3c{left:232.374667pt;}
.x32{left:233.900000pt;}
.x21{left:237.049333pt;}
.x4a{left:237.981333pt;}
.x41{left:239.122667pt;}
.x12{left:244.309333pt;}
.xe{left:246.082667pt;}
.xc{left:250.204000pt;}
.x14{left:251.829333pt;}
.x56{left:254.083000pt;}
.x48{left:255.602667pt;}
.x40{left:256.682667pt;}
.x13{left:263.204000pt;}
.x28{left:264.965333pt;}
.x10{left:267.896000pt;}
.x43{left:269.849333pt;}
.x44{left:271.390667pt;}
.x9{left:273.590667pt;}
.x26{left:275.284000pt;}
.xf{left:279.761333pt;}
.xb{left:284.345333pt;}
.x17{left:287.138667pt;}
.x15{left:290.504000pt;}
.x45{left:304.633333pt;}
.x5a{left:308.166667pt;}
.xd{left:313.368000pt;}
.x3b{left:344.414667pt;}
.x3a{left:345.785333pt;}
.x57{left:347.340000pt;}
.x49{left:353.457333pt;}
.x4d{left:358.816000pt;}
.x51{left:361.541077pt;}
.x42{left:363.616000pt;}
.x58{left:368.578667pt;}
.x39{left:382.716000pt;}
.x46{left:390.161333pt;}
.x4c{left:392.317333pt;}
.x37{left:400.470667pt;}
.x3f{left:401.917333pt;}
.x3{left:404.408000pt;}
.x4b{left:414.872000pt;}
.x3d{left:419.672000pt;}
.x2b{left:427.254667pt;}
.x24{left:449.422667pt;}
.x23{left:452.078667pt;}
.x2c{left:453.450667pt;}
.x2a{left:455.102667pt;}
.x1d{left:456.633333pt;}
.x34{left:459.521333pt;}
.x33{left:462.509333pt;}
.x25{left:471.685333pt;}
.x22{left:475.670667pt;}
.x27{left:479.458667pt;}
.x1f{left:483.960000pt;}
.x29{left:484.980000pt;}
.x1e{left:486.616000pt;}
.x20{left:487.625333pt;}
.x1c{left:489.565333pt;}
.x1b{left:491.632000pt;}
.x1a{left:493.698667pt;}
.x19{left:495.765333pt;}
.x18{left:497.833333pt;}
.x31{left:608.008000pt;}
.x16{left:609.674667pt;}
.x35{left:619.786667pt;}
.x36{left:636.757333pt;}
.x59{left:642.828000pt;}
.x38{left:646.832000pt;}
.x2d{left:658.125333pt;}
.x3e{left:661.233333pt;}
.x2f{left:667.932000pt;}
.xa{left:692.213333pt;}
.x2e{left:704.876000pt;}
.x30{left:719.137333pt;}
}




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