
    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_26cc25876de7843d5bbf1be6.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_99a028ad7b8fff492fb1084a.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_32f12d3504fd405d02679416.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_6ef66ac46c7fcff61ae8caa7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_888e89a8649ec5dd285a50ea.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.223000;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_30a4cd0ba47390dbfd8e7bb3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.136000;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_52ab3cd82841d2bdeb0f9384.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.239000;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_15920667fad97b52b7c6325a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.952000;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_09b8c8c0f0da0854d565be75.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.722656;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_41db0495c2596bd611f200cd.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.126000;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_9890eefac980ec933f2655db.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_218f3c743fd2037e3fc9caba.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.673000;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_ae8627407f7969353feb8f9c.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.450000;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_a90a34f63ff86e05f5698307.woff2')format("woff");}.fff{font-family:fff;line-height:0.554000;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_16f7b92a3e3b5d22cb8d8627.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.861000;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_710e7e5b842c0865d5a9fe6e.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.328000;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_042029d7cbdb3677f387f3cf.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.861000;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_9f5537b8529f776ee24e42fd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_9909f76bfefa43d55c2fae1d.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.243000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5a00315262d3b9a4591f7e42.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.861000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e746d1219bb8c4b57672d5e6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.860000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_4909300dd3a74e4e503e7b62.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.817000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_a54f09d7124d85b1973fde55.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.859000;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:ff19;src:url('chunks/assets/font_0c3ff498fef856ac42fed93b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.624000;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:ff1a;src:url('chunks/assets/font_040afde778ab52db39777884.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.470000;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:ff1b;src:url('chunks/assets/font_91233094f285c953c829c199.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.653000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_8b118075bac2d8fcee1cc974.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.859000;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:ff1d;src:url('chunks/assets/font_495a3557edcba94731c57967.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.588000;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:ff1e;src:url('chunks/assets/font_426b9bb04c41b8424d68a66a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.851000;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:ff1f;src:url('chunks/assets/font_806fa6ea30a6e6d7a435b1bb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.460000;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:ff20;src:url('chunks/assets/font_7b0bbb435d64230bb1f9ce58.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.671000;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:ff21;src:url('chunks/assets/font_f0205e760e0ebe5714226bc0.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.144000;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;}
.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);}
.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:-20.400009px;}
.v3{vertical-align:-15.011353px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.lsa8{letter-spacing:-2.091000px;}
.ls86{letter-spacing:-1.836000px;}
.lsa5{letter-spacing:-1.530000px;}
.ls43{letter-spacing:-1.505085px;}
.lsa6{letter-spacing:-1.479000px;}
.lsa7{letter-spacing:-1.428000px;}
.lsa9{letter-spacing:-1.326000px;}
.ls85{letter-spacing:-1.275000px;}
.ls80{letter-spacing:-1.224000px;}
.ls11{letter-spacing:-1.200000px;}
.ls83{letter-spacing:-1.173000px;}
.ls13{letter-spacing:-1.140000px;}
.ls3a{letter-spacing:-1.020000px;}
.ls7c{letter-spacing:-0.969000px;}
.ls55{letter-spacing:-0.966235px;}
.ls12{letter-spacing:-0.960000px;}
.lsf{letter-spacing:-0.900000px;}
.lse{letter-spacing:-0.840000px;}
.ls82{letter-spacing:-0.816000px;}
.ls10{letter-spacing:-0.780000px;}
.ls7e{letter-spacing:-0.765000px;}
.ls38{letter-spacing:-0.720000px;}
.ls81{letter-spacing:-0.663000px;}
.ls57{letter-spacing:-0.660165px;}
.ls39{letter-spacing:-0.600000px;}
.ls9f{letter-spacing:-0.561000px;}
.ls37{letter-spacing:-0.540000px;}
.ls84{letter-spacing:-0.510000px;}
.ls3f{letter-spacing:-0.480000px;}
.ls3b{letter-spacing:-0.420000px;}
.ls77{letter-spacing:-0.408000px;}
.ls2f{letter-spacing:-0.360000px;}
.ls7a{letter-spacing:-0.357000px;}
.ls7f{letter-spacing:-0.306000px;}
.ls30{letter-spacing:-0.300000px;}
.ls9e{letter-spacing:-0.255000px;}
.ls32{letter-spacing:-0.240000px;}
.ls44{letter-spacing:-0.237645px;}
.ls7b{letter-spacing:-0.204000px;}
.ls31{letter-spacing:-0.180000px;}
.ls78{letter-spacing:-0.153000px;}
.ls2e{letter-spacing:-0.120000px;}
.ls7d{letter-spacing:-0.102000px;}
.ls41{letter-spacing:-0.079215px;}
.ls36{letter-spacing:-0.060000px;}
.ls76{letter-spacing:-0.051000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000037px;}
.ls8b{letter-spacing:0.025500px;}
.ls3c{letter-spacing:0.030000px;}
.ls65{letter-spacing:0.051000px;}
.ls2c{letter-spacing:0.060000px;}
.ls40{letter-spacing:0.079215px;}
.ls5c{letter-spacing:0.090000px;}
.ls62{letter-spacing:0.102000px;}
.ls33{letter-spacing:0.120000px;}
.ls98{letter-spacing:0.127500px;}
.ls69{letter-spacing:0.153000px;}
.lsb{letter-spacing:0.178791px;}
.ls29{letter-spacing:0.180000px;}
.ls5e{letter-spacing:0.204000px;}
.ls3d{letter-spacing:0.210000px;}
.ls42{letter-spacing:0.237645px;}
.ls2{letter-spacing:0.240000px;}
.lsc{letter-spacing:0.255000px;}
.ls64{letter-spacing:0.264000px;}
.ls9d{letter-spacing:0.280500px;}
.ls67{letter-spacing:0.288000px;}
.ls26{letter-spacing:0.300000px;}
.ls97{letter-spacing:0.306000px;}
.ls9a{letter-spacing:0.311100px;}
.ls8e{letter-spacing:0.326400px;}
.ls95{letter-spacing:0.331489px;}
.ls9c{letter-spacing:0.331492px;}
.ls8d{letter-spacing:0.331500px;}
.ls99{letter-spacing:0.336600px;}
.ls66{letter-spacing:0.357000px;}
.ls28{letter-spacing:0.360000px;}
.lsa1{letter-spacing:0.382500px;}
.ls5f{letter-spacing:0.408000px;}
.ls21{letter-spacing:0.420000px;}
.ls46{letter-spacing:0.450000px;}
.ls61{letter-spacing:0.459000px;}
.ls20{letter-spacing:0.480000px;}
.ls3e{letter-spacing:0.510000px;}
.lsa0{letter-spacing:0.535500px;}
.ls2a{letter-spacing:0.540000px;}
.ls60{letter-spacing:0.561000px;}
.ls34{letter-spacing:0.570000px;}
.ls8c{letter-spacing:0.571180px;}
.ls15{letter-spacing:0.600000px;}
.ls6c{letter-spacing:0.612000px;}
.ls5a{letter-spacing:0.630000px;}
.ls75{letter-spacing:0.637500px;}
.ls2d{letter-spacing:0.660000px;}
.ls6d{letter-spacing:0.663000px;}
.ls89{letter-spacing:0.673200px;}
.ls45{letter-spacing:0.712935px;}
.ls6a{letter-spacing:0.714000px;}
.ls35{letter-spacing:0.720000px;}
.ls68{letter-spacing:0.739500px;}
.ls88{letter-spacing:0.765000px;}
.ls25{letter-spacing:0.780000px;}
.ls6e{letter-spacing:0.790500px;}
.ls6f{letter-spacing:0.816000px;}
.ls1e{letter-spacing:0.840000px;}
.ls74{letter-spacing:0.867000px;}
.ls47{letter-spacing:0.870000px;}
.ls4b{letter-spacing:0.871868px;}
.ls23{letter-spacing:0.900000px;}
.ls73{letter-spacing:0.918000px;}
.ls27{letter-spacing:0.924000px;}
.ls3{letter-spacing:0.930000px;}
.lsa2{letter-spacing:0.943500px;}
.ls22{letter-spacing:0.960000px;}
.ls56{letter-spacing:0.966000px;}
.ls63{letter-spacing:0.969000px;}
.ls2b{letter-spacing:1.020000px;}
.ls70{letter-spacing:1.071000px;}
.ls4{letter-spacing:1.080000px;}
.ls8a{letter-spacing:1.122000px;}
.lsa{letter-spacing:1.140000px;}
.ls6b{letter-spacing:1.173000px;}
.ls17{letter-spacing:1.200000px;}
.ls90{letter-spacing:1.224000px;}
.ls1b{letter-spacing:1.260000px;}
.ls79{letter-spacing:1.275000px;}
.ls5d{letter-spacing:1.290000px;}
.ls58{letter-spacing:1.320000px;}
.ls92{letter-spacing:1.326000px;}
.ls91{letter-spacing:1.377000px;}
.ls16{letter-spacing:1.380000px;}
.ls5b{letter-spacing:1.410000px;}
.lsa4{letter-spacing:1.428000px;}
.ls7{letter-spacing:1.440000px;}
.ls71{letter-spacing:1.479000px;}
.ls19{letter-spacing:1.500000px;}
.ls18{letter-spacing:1.560000px;}
.ls9b{letter-spacing:1.581000px;}
.ls1c{letter-spacing:1.620000px;}
.ls96{letter-spacing:1.632000px;}
.ls59{letter-spacing:1.680000px;}
.ls93{letter-spacing:1.683000px;}
.ls94{letter-spacing:1.718700px;}
.ls1d{letter-spacing:1.740000px;}
.ls24{letter-spacing:1.800000px;}
.ls14{letter-spacing:1.860000px;}
.ls8f{letter-spacing:1.887000px;}
.ls5{letter-spacing:1.920000px;}
.ls8{letter-spacing:1.980000px;}
.lsa3{letter-spacing:2.040000px;}
.ls9{letter-spacing:2.100000px;}
.ls1f{letter-spacing:2.160000px;}
.ls1a{letter-spacing:2.220000px;}
.ls6{letter-spacing:2.520000px;}
.ls72{letter-spacing:2.856000px;}
.ls87{letter-spacing:3.034477px;}
.ls51{letter-spacing:3.900975px;}
.ls1{letter-spacing:3.990000px;}
.ls53{letter-spacing:4.201050px;}
.ls4d{letter-spacing:9.962490px;}
.ls4a{letter-spacing:10.022505px;}
.ls48{letter-spacing:13.323329px;}
.ls49{letter-spacing:13.383344px;}
.ls54{letter-spacing:14.403599px;}
.ls52{letter-spacing:15.963989px;}
.ls4f{letter-spacing:16.684169px;}
.ls4c{letter-spacing:16.744184px;}
.ls50{letter-spacing:17.102598px;}
.ls4e{letter-spacing:20.451230px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws63{word-spacing:-20.041395px;}
.ws64{word-spacing:-18.298665px;}
.ws6f{word-spacing:-16.744184px;}
.ws1a{word-spacing:-15.960000px;}
.ws45{word-spacing:-15.600000px;}
.ws46{word-spacing:-15.360000px;}
.ws1b{word-spacing:-15.000000px;}
.ws94{word-spacing:-14.832000px;}
.ws5b{word-spacing:-14.544000px;}
.wscc{word-spacing:-13.719000px;}
.ws97{word-spacing:-13.566000px;}
.ws96{word-spacing:-13.005000px;}
.ws93{word-spacing:-12.852000px;}
.ws78{word-spacing:-12.750000px;}
.ws81{word-spacing:-12.474000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.360000px;}
.wsc1{word-spacing:-12.240000px;}
.ws95{word-spacing:-11.526000px;}
.ws6{word-spacing:-11.520000px;}
.wsc0{word-spacing:-11.475000px;}
.ws6e{word-spacing:-11.466000px;}
.ws92{word-spacing:-10.761000px;}
.ws91{word-spacing:-10.200000px;}
.ws2{word-spacing:-9.996000px;}
.ws7{word-spacing:-8.925000px;}
.ws4{word-spacing:-8.694000px;}
.ws20{word-spacing:-2.220000px;}
.ws28{word-spacing:-2.160000px;}
.ws13{word-spacing:-1.920000px;}
.wsce{word-spacing:-1.632000px;}
.ws22{word-spacing:-1.620000px;}
.ws1e{word-spacing:-1.560000px;}
.wse{word-spacing:-1.500000px;}
.ws2f{word-spacing:-1.440000px;}
.ws31{word-spacing:-1.380000px;}
.ws9c{word-spacing:-1.326000px;}
.ws57{word-spacing:-1.320000px;}
.ws9a{word-spacing:-1.275000px;}
.ws39{word-spacing:-1.260000px;}
.ws1d{word-spacing:-1.200000px;}
.wscb{word-spacing:-1.173000px;}
.ws2c{word-spacing:-1.140000px;}
.wsba{word-spacing:-1.122000px;}
.ws3d{word-spacing:-1.080000px;}
.wsa3{word-spacing:-1.071000px;}
.ws7f{word-spacing:-1.020000px;}
.wsa1{word-spacing:-0.969000px;}
.ws4b{word-spacing:-0.960000px;}
.ws35{word-spacing:-0.900000px;}
.wsbd{word-spacing:-0.867000px;}
.ws26{word-spacing:-0.840000px;}
.wsc3{word-spacing:-0.816000px;}
.ws79{word-spacing:-0.780000px;}
.wsa4{word-spacing:-0.765000px;}
.ws10{word-spacing:-0.720000px;}
.wsa5{word-spacing:-0.714000px;}
.ws6a{word-spacing:-0.712935px;}
.wsb8{word-spacing:-0.663000px;}
.ws62{word-spacing:-0.660000px;}
.ws19{word-spacing:-0.612000px;}
.ws4f{word-spacing:-0.600000px;}
.ws8{word-spacing:-0.570000px;}
.ws5a{word-spacing:-0.540000px;}
.wsd4{word-spacing:-0.510000px;}
.ws54{word-spacing:-0.480000px;}
.wsaf{word-spacing:-0.459000px;}
.ws2e{word-spacing:-0.420000px;}
.ws33{word-spacing:-0.360000px;}
.wsc7{word-spacing:-0.357000px;}
.ws34{word-spacing:-0.300000px;}
.ws9e{word-spacing:-0.264000px;}
.wsab{word-spacing:-0.255000px;}
.ws77{word-spacing:-0.240000px;}
.wsb0{word-spacing:-0.204000px;}
.ws49{word-spacing:-0.180000px;}
.wsb6{word-spacing:-0.153000px;}
.ws36{word-spacing:-0.120000px;}
.wsae{word-spacing:-0.102000px;}
.ws67{word-spacing:-0.079215px;}
.ws6c{word-spacing:-0.060015px;}
.wsa{word-spacing:-0.060000px;}
.ws7e{word-spacing:-0.051000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsb9{word-spacing:0.051000px;}
.ws41{word-spacing:0.060000px;}
.ws68{word-spacing:0.079215px;}
.ws38{word-spacing:0.120000px;}
.ws3a{word-spacing:0.180000px;}
.ws69{word-spacing:0.237645px;}
.wsf{word-spacing:0.240000px;}
.ws98{word-spacing:0.255000px;}
.ws58{word-spacing:0.300000px;}
.wsb3{word-spacing:0.306000px;}
.ws99{word-spacing:0.357000px;}
.ws3e{word-spacing:0.360000px;}
.ws76{word-spacing:0.420000px;}
.wsa7{word-spacing:0.459000px;}
.ws40{word-spacing:0.480000px;}
.ws2a{word-spacing:0.540000px;}
.wsc4{word-spacing:0.561000px;}
.ws25{word-spacing:0.600000px;}
.ws71{word-spacing:0.600150px;}
.wsb{word-spacing:0.660000px;}
.ws8f{word-spacing:0.720000px;}
.wsa8{word-spacing:0.765000px;}
.ws55{word-spacing:0.780000px;}
.ws80{word-spacing:0.840000px;}
.wsd9{word-spacing:0.867000px;}
.ws87{word-spacing:0.900000px;}
.ws6d{word-spacing:0.924224px;}
.ws7c{word-spacing:0.960000px;}
.ws9f{word-spacing:0.969000px;}
.wsd{word-spacing:1.020000px;}
.wsd3{word-spacing:1.071000px;}
.ws86{word-spacing:1.080000px;}
.wsa9{word-spacing:1.122000px;}
.ws44{word-spacing:1.140000px;}
.wsa2{word-spacing:1.173000px;}
.wsc{word-spacing:1.200000px;}
.wsa0{word-spacing:1.224000px;}
.ws17{word-spacing:1.260000px;}
.ws9b{word-spacing:1.275000px;}
.ws60{word-spacing:1.320000px;}
.wsda{word-spacing:1.326000px;}
.wsd1{word-spacing:1.377000px;}
.ws84{word-spacing:1.380000px;}
.wsc9{word-spacing:1.428000px;}
.ws65{word-spacing:1.440000px;}
.wsb7{word-spacing:1.479000px;}
.ws9{word-spacing:1.500000px;}
.wsac{word-spacing:1.530000px;}
.ws59{word-spacing:1.560000px;}
.wsb5{word-spacing:1.581000px;}
.ws82{word-spacing:1.620000px;}
.ws47{word-spacing:1.680000px;}
.ws21{word-spacing:1.740000px;}
.wsaa{word-spacing:1.785000px;}
.ws52{word-spacing:1.800000px;}
.wsb1{word-spacing:1.836000px;}
.ws51{word-spacing:1.860000px;}
.ws72{word-spacing:1.920000px;}
.wsc6{word-spacing:1.938000px;}
.ws5e{word-spacing:1.980000px;}
.wscf{word-spacing:1.989000px;}
.ws30{word-spacing:2.040000px;}
.ws73{word-spacing:2.100000px;}
.ws24{word-spacing:2.160000px;}
.wsc2{word-spacing:2.193000px;}
.ws43{word-spacing:2.220000px;}
.wsb4{word-spacing:2.244000px;}
.ws61{word-spacing:2.280000px;}
.wsd0{word-spacing:2.295000px;}
.ws2b{word-spacing:2.340000px;}
.wsbc{word-spacing:2.397000px;}
.ws3f{word-spacing:2.400000px;}
.wsd7{word-spacing:2.448000px;}
.ws8e{word-spacing:2.460000px;}
.wsd2{word-spacing:2.499000px;}
.ws53{word-spacing:2.520000px;}
.wsc5{word-spacing:2.550000px;}
.ws42{word-spacing:2.580000px;}
.wsbb{word-spacing:2.601000px;}
.ws4a{word-spacing:2.640000px;}
.wsa6{word-spacing:2.652000px;}
.ws2d{word-spacing:2.700000px;}
.wscd{word-spacing:2.754000px;}
.ws85{word-spacing:2.760000px;}
.wsbe{word-spacing:2.805000px;}
.ws4c{word-spacing:2.820000px;}
.wsca{word-spacing:2.856000px;}
.ws4e{word-spacing:2.880000px;}
.wsdb{word-spacing:2.907000px;}
.ws1c{word-spacing:2.940000px;}
.ws75{word-spacing:3.000000px;}
.wsbf{word-spacing:3.009000px;}
.ws8b{word-spacing:3.060000px;}
.ws32{word-spacing:3.120000px;}
.ws12{word-spacing:3.180000px;}
.wsd8{word-spacing:3.213000px;}
.ws56{word-spacing:3.240000px;}
.ws23{word-spacing:3.300000px;}
.wsd5{word-spacing:3.366000px;}
.ws5d{word-spacing:3.420000px;}
.ws15{word-spacing:3.480000px;}
.wsc8{word-spacing:3.519000px;}
.ws83{word-spacing:3.540000px;}
.wsd6{word-spacing:3.570000px;}
.ws3c{word-spacing:3.600000px;}
.ws6b{word-spacing:3.621000px;}
.ws74{word-spacing:3.780000px;}
.ws66{word-spacing:3.840000px;}
.wsad{word-spacing:3.876000px;}
.ws16{word-spacing:3.900000px;}
.wsb2{word-spacing:3.927000px;}
.ws7b{word-spacing:3.960000px;}
.ws8d{word-spacing:4.140000px;}
.wsdc{word-spacing:4.233000px;}
.ws7a{word-spacing:4.260000px;}
.ws9d{word-spacing:4.284000px;}
.ws27{word-spacing:4.320000px;}
.ws29{word-spacing:4.380000px;}
.ws1f{word-spacing:4.500000px;}
.ws89{word-spacing:4.560000px;}
.ws50{word-spacing:4.680000px;}
.ws4d{word-spacing:4.740000px;}
.ws88{word-spacing:4.800000px;}
.ws8a{word-spacing:4.860000px;}
.ws37{word-spacing:4.980000px;}
.wsde{word-spacing:5.202000px;}
.ws3b{word-spacing:5.340000px;}
.ws8c{word-spacing:5.400000px;}
.ws5c{word-spacing:5.580000px;}
.ws14{word-spacing:6.060000px;}
.ws7d{word-spacing:6.120000px;}
.ws90{word-spacing:7.020000px;}
.ws48{word-spacing:7.260000px;}
.ws5f{word-spacing:7.560000px;}
.wsdd{word-spacing:8.211000px;}
.ws70{word-spacing:9.962490px;}
.ws11{word-spacing:21.456000px;}
.ws18{word-spacing:72.267000px;}
._b{margin-left:-72.675000px;}
._7{margin-left:-16.575000px;}
._13{margin-left:-14.640000px;}
._15{margin-left:-12.474000px;}
._e{margin-left:-8.640000px;}
._1b{margin-left:-6.813600px;}
._1{margin-left:-4.622700px;}
._3{margin-left:-3.468000px;}
._0{margin-left:-1.632000px;}
._6{width:1.578000px;}
._2{width:2.668800px;}
._d{width:4.590000px;}
._19{width:8.721000px;}
._18{width:10.710000px;}
._17{width:11.741400px;}
._1a{width:14.433000px;}
._12{width:15.606000px;}
._8{width:18.360000px;}
._14{width:20.526000px;}
._16{width:33.000000px;}
._f{width:36.642000px;}
._5{width:39.337484px;}
._4{width:40.698586px;}
._a{width:54.621000px;}
._9{width:72.267000px;}
._11{width:1214.049066px;}
._10{width:1264.033755px;}
._c{width:2748.441092px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:35.699999px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:42.010200px;}
.fs5{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs7{font-size:57.000000px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:60.014997px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:79.215000px;}
.fs8{font-size:96.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y12a{bottom:0.044128px;}
.y133{bottom:0.194000px;}
.y112{bottom:0.195465px;}
.y135{bottom:0.345337px;}
.y115{bottom:0.345474px;}
.y126{bottom:2.745438px;}
.y120{bottom:3.043762px;}
.y11d{bottom:3.045273px;}
.y12d{bottom:3.870438px;}
.y123{bottom:3.943954px;}
.y119{bottom:5.895309px;}
.y5{bottom:66.525004px;}
.y23{bottom:68.829002px;}
.y4{bottom:97.125005px;}
.y4e{bottom:112.944300px;}
.y8f{bottom:113.415344px;}
.yc5{bottom:114.735260px;}
.yde{bottom:114.735306px;}
.yf1{bottom:114.874786px;}
.y16d{bottom:114.874947px;}
.y1fe{bottom:116.767773px;}
.y281{bottom:116.997307px;}
.y1bc{bottom:127.477793px;}
.y4d{bottom:127.938300px;}
.y23f{bottom:131.608823px;}
.y1fd{bottom:131.761773px;}
.y280{bottom:131.991307px;}
.y8e{bottom:132.165344px;}
.yc4{bottom:133.485260px;}
.ydd{bottom:133.485306px;}
.yf0{bottom:133.624786px;}
.y16c{bottom:133.624947px;}
.y22{bottom:139.264499px;}
.y1bb{bottom:142.471793px;}
.y23e{bottom:146.602823px;}
.y1fc{bottom:146.755773px;}
.y27f{bottom:146.985307px;}
.y4c{bottom:148.032303px;}
.y8d{bottom:150.915344px;}
.yc3{bottom:152.235260px;}
.ydc{bottom:152.235306px;}
.yef{bottom:152.374786px;}
.y16b{bottom:152.374947px;}
.y1ba{bottom:157.465793px;}
.y23d{bottom:161.596823px;}
.y1fb{bottom:161.749773px;}
.y27e{bottom:161.979307px;}
.y4b{bottom:165.485553px;}
.y59{bottom:165.527995px;}
.y8c{bottom:169.665344px;}
.yc2{bottom:170.985260px;}
.ydb{bottom:170.985306px;}
.yee{bottom:171.124786px;}
.y16a{bottom:171.124947px;}
.y1b9{bottom:172.459793px;}
.y23c{bottom:176.590823px;}
.y1fa{bottom:176.743773px;}
.y27d{bottom:176.973307px;}
.y58{bottom:180.521995px;}
.y4a{bottom:185.579556px;}
.y1b8{bottom:187.453793px;}
.y8b{bottom:188.415344px;}
.yc1{bottom:189.735260px;}
.yda{bottom:189.735306px;}
.yed{bottom:189.874786px;}
.y169{bottom:189.874947px;}
.y23b{bottom:191.584823px;}
.y1f9{bottom:191.737773px;}
.y27c{bottom:191.967307px;}
.y57{bottom:195.515995px;}
.y19{bottom:196.933500px;}
.y1b7{bottom:202.447793px;}
.y23a{bottom:206.578823px;}
.y1f8{bottom:206.731773px;}
.y27b{bottom:206.961307px;}
.y8a{bottom:207.165344px;}
.yc0{bottom:208.485260px;}
.yd9{bottom:208.485306px;}
.yec{bottom:208.624786px;}
.y168{bottom:208.624947px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y49{bottom:210.613805px;}
.y56{bottom:215.609848px;}
.y1b6{bottom:217.441793px;}
.y239{bottom:221.572823px;}
.y1f7{bottom:221.725773px;}
.y27a{bottom:221.955307px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y48{bottom:225.607805px;}
.y89{bottom:225.915344px;}
.ybf{bottom:227.235260px;}
.yd8{bottom:227.235306px;}
.yeb{bottom:227.374786px;}
.y167{bottom:227.374947px;}
.y1b5{bottom:232.435793px;}
.y55{bottom:233.063098px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y238{bottom:236.566823px;}
.y1f6{bottom:236.719773px;}
.y279{bottom:236.949307px;}
.y88{bottom:244.665344px;}
.ybe{bottom:245.985260px;}
.yd7{bottom:245.985306px;}
.yea{bottom:246.124786px;}
.y166{bottom:246.124947px;}
.y1b4{bottom:247.429793px;}
.y47{bottom:248.149805px;}
.y237{bottom:251.560823px;}
.y1f5{bottom:251.713773px;}
.y278{bottom:251.943307px;}
.y54{bottom:253.157089px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y1b3{bottom:262.423793px;}
.y46{bottom:263.143805px;}
.y87{bottom:263.415344px;}
.ybd{bottom:264.735260px;}
.yd6{bottom:264.735306px;}
.ye9{bottom:264.874786px;}
.y165{bottom:264.874947px;}
.y236{bottom:266.554823px;}
.y1f4{bottom:266.707773px;}
.y277{bottom:266.937307px;}
.y13e{bottom:270.427790px;}
.y53{bottom:270.616500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y1b2{bottom:277.417793px;}
.y235{bottom:281.548823px;}
.y1f3{bottom:281.701773px;}
.y276{bottom:281.931307px;}
.y86{bottom:282.165344px;}
.ybc{bottom:283.485260px;}
.yd5{bottom:283.485306px;}
.ye8{bottom:283.624786px;}
.y164{bottom:283.624947px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y13d{bottom:285.421790px;}
.y52{bottom:285.610500px;}
.y45{bottom:285.685805px;}
.y1b1{bottom:292.411793px;}
.y234{bottom:296.542823px;}
.y1f2{bottom:296.695773px;}
.y275{bottom:296.925307px;}
.y13c{bottom:300.415790px;}
.y44{bottom:300.679805px;}
.y85{bottom:300.915344px;}
.ybb{bottom:302.235260px;}
.yd4{bottom:302.235306px;}
.ye7{bottom:302.374786px;}
.y180{bottom:302.374947px;}
.y51{bottom:305.704491px;}
.y1b0{bottom:307.405793px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y233{bottom:311.536823px;}
.y1f1{bottom:311.689773px;}
.y274{bottom:311.919307px;}
.y13b{bottom:315.409790px;}
.y84{bottom:319.665344px;}
.yba{bottom:320.985260px;}
.yd3{bottom:320.985306px;}
.ye6{bottom:321.124786px;}
.y163{bottom:321.124947px;}
.y1af{bottom:322.399793px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y50{bottom:323.157741px;}
.y43{bottom:323.221805px;}
.y232{bottom:326.530823px;}
.y1f0{bottom:326.683773px;}
.y273{bottom:326.913307px;}
.y1ae{bottom:337.393793px;}
.y42{bottom:338.215805px;}
.y83{bottom:338.415344px;}
.yb9{bottom:339.735260px;}
.yd2{bottom:339.735306px;}
.ye5{bottom:339.874786px;}
.y17f{bottom:339.874947px;}
.y231{bottom:341.524823px;}
.y1ef{bottom:341.677773px;}
.y272{bottom:341.907307px;}
.y4f{bottom:343.251755px;}
.y10{bottom:348.133500px;}
.y1ad{bottom:352.387793px;}
.y230{bottom:356.518823px;}
.y1ee{bottom:356.671773px;}
.y271{bottom:356.901307px;}
.y82{bottom:357.165344px;}
.yb8{bottom:358.485260px;}
.yd1{bottom:358.485306px;}
.ye4{bottom:358.624786px;}
.y17e{bottom:358.624947px;}
.y1ac{bottom:367.381793px;}
.y22f{bottom:371.512823px;}
.y1ed{bottom:371.665773px;}
.y270{bottom:371.895307px;}
.y81{bottom:375.915344px;}
.yb7{bottom:377.235260px;}
.yd0{bottom:377.235306px;}
.ye3{bottom:377.374786px;}
.y17d{bottom:377.374947px;}
.y1ab{bottom:382.375793px;}
.y40{bottom:384.961349px;}
.y22e{bottom:386.506823px;}
.y1ec{bottom:386.659773px;}
.yf{bottom:386.785499px;}
.y26f{bottom:386.889307px;}
.y80{bottom:394.665344px;}
.yb6{bottom:395.985260px;}
.ycf{bottom:395.985306px;}
.ye2{bottom:396.124786px;}
.y17c{bottom:396.124947px;}
.y1aa{bottom:397.369793px;}
.y22d{bottom:401.500823px;}
.y1eb{bottom:401.653773px;}
.y26e{bottom:401.883307px;}
.y3f{bottom:403.711349px;}
.ye{bottom:408.044999px;}
.y1a9{bottom:412.363793px;}
.y7f{bottom:413.415344px;}
.yb5{bottom:414.735260px;}
.yce{bottom:414.735306px;}
.ye1{bottom:414.874786px;}
.y17b{bottom:414.874947px;}
.y22c{bottom:416.494823px;}
.y1ea{bottom:416.647773px;}
.y26d{bottom:416.877307px;}
.y3e{bottom:422.461349px;}
.y1a8{bottom:427.357793px;}
.y162{bottom:429.493803px;}
.y22b{bottom:431.488823px;}
.y1e9{bottom:431.641773px;}
.y26c{bottom:431.871307px;}
.y7e{bottom:432.165344px;}
.yb4{bottom:433.485260px;}
.ycd{bottom:433.485306px;}
.ye0{bottom:433.624786px;}
.y17a{bottom:433.624947px;}
.y131{bottom:438.907800px;}
.y41{bottom:441.211349px;}
.y1a7{bottom:442.351793px;}
.y161{bottom:444.487803px;}
.y22a{bottom:446.482823px;}
.y1e8{bottom:446.635773px;}
.y26b{bottom:446.865307px;}
.y7d{bottom:450.915344px;}
.yb3{bottom:452.235260px;}
.ycc{bottom:452.235306px;}
.ydf{bottom:452.374786px;}
.y179{bottom:452.374947px;}
.y130{bottom:453.901800px;}
.y1a6{bottom:457.345793px;}
.y160{bottom:459.481803px;}
.y3d{bottom:459.961349px;}
.y229{bottom:461.476823px;}
.y1e7{bottom:461.629773px;}
.y26a{bottom:461.859307px;}
.y12f{bottom:468.895800px;}
.y7c{bottom:469.665344px;}
.yb2{bottom:470.985260px;}
.ycb{bottom:470.985306px;}
.y148{bottom:471.124786px;}
.y178{bottom:471.124947px;}
.y1a5{bottom:472.339793px;}
.y15f{bottom:474.475803px;}
.y228{bottom:476.470823px;}
.y1e6{bottom:476.623773px;}
.y269{bottom:476.853307px;}
.y12e{bottom:483.889800px;}
.yd{bottom:484.864502px;}
.y1a4{bottom:487.333793px;}
.y7b{bottom:488.415344px;}
.y15e{bottom:489.469803px;}
.yb1{bottom:489.735260px;}
.yca{bottom:489.735306px;}
.y14b{bottom:489.874786px;}
.y177{bottom:489.874947px;}
.y227{bottom:491.464823px;}
.y1e5{bottom:491.617773px;}
.y268{bottom:491.847307px;}
.yf7{bottom:497.409580px;}
.y1a3{bottom:502.327793px;}
.yc{bottom:502.864502px;}
.y2bc{bottom:502.963685px;}
.y226{bottom:506.458823px;}
.y1e4{bottom:506.611773px;}
.y267{bottom:506.841307px;}
.y7a{bottom:507.165344px;}
.yb0{bottom:508.485260px;}
.yc9{bottom:508.485306px;}
.y147{bottom:508.624786px;}
.y176{bottom:508.624947px;}
.yf6{bottom:512.403580px;}
.y3c{bottom:516.211395px;}
.y1a2{bottom:517.321793px;}
.y2bb{bottom:517.957685px;}
.yb{bottom:520.864502px;}
.y225{bottom:521.452823px;}
.y1e3{bottom:521.605773px;}
.y266{bottom:521.835307px;}
.y128{bottom:522.470993px;}
.y129{bottom:522.617981px;}
.y127{bottom:522.660461px;}
.yfb{bottom:522.735306px;}
.y79{bottom:525.915344px;}
.yaf{bottom:527.235260px;}
.yc8{bottom:527.235306px;}
.y14a{bottom:527.374786px;}
.y175{bottom:527.374947px;}
.y15d{bottom:527.554779px;}
.y2ba{bottom:532.951685px;}
.y3b{bottom:534.961395px;}
.y224{bottom:536.446823px;}
.y2a3{bottom:536.459571px;}
.y1e2{bottom:536.599773px;}
.y265{bottom:536.829307px;}
.y125{bottom:538.656006px;}
.ya{bottom:538.864499px;}
.y124{bottom:541.410461px;}
.yfa{bottom:541.485306px;}
.y78{bottom:544.665344px;}
.yae{bottom:545.985260px;}
.yc7{bottom:545.985306px;}
.y149{bottom:546.124786px;}
.y174{bottom:546.124947px;}
.y15c{bottom:546.304779px;}
.y2b9{bottom:547.945685px;}
.y1a1{bottom:551.071793px;}
.y223{bottom:551.440823px;}
.y2a2{bottom:551.453571px;}
.y1e1{bottom:551.593773px;}
.y264{bottom:551.823307px;}
.yf3{bottom:553.549766px;}
.y122{bottom:556.219482px;}
.y9{bottom:556.864499px;}
.y121{bottom:560.160461px;}
.yf9{bottom:560.235306px;}
.y2b8{bottom:562.939685px;}
.y77{bottom:563.415344px;}
.yad{bottom:564.735260px;}
.y184{bottom:564.735306px;}
.y146{bottom:564.874786px;}
.y173{bottom:564.874947px;}
.y15b{bottom:565.054779px;}
.y222{bottom:566.434823px;}
.y2a1{bottom:566.447571px;}
.y1e0{bottom:566.587773px;}
.y263{bottom:566.817307px;}
.y3a{bottom:572.461395px;}
.y11f{bottom:575.860519px;}
.y2b7{bottom:577.933685px;}
.y11e{bottom:578.910461px;}
.y221{bottom:581.428823px;}
.y2a0{bottom:581.441571px;}
.y1df{bottom:581.581773px;}
.y262{bottom:581.811307px;}
.y76{bottom:582.165344px;}
.yac{bottom:583.485260px;}
.yc6{bottom:583.485306px;}
.y145{bottom:583.624786px;}
.y172{bottom:583.624947px;}
.y15a{bottom:583.804779px;}
.y39{bottom:591.211395px;}
.y11b{bottom:591.773987px;}
.y2b6{bottom:592.927685px;}
.y11c{bottom:594.609009px;}
.y220{bottom:596.422823px;}
.y29f{bottom:596.435571px;}
.y1de{bottom:596.575773px;}
.y261{bottom:596.805307px;}
.y11a{bottom:597.660461px;}
.yf8{bottom:597.735306px;}
.y75{bottom:600.915344px;}
.yab{bottom:602.235260px;}
.y183{bottom:602.235306px;}
.y144{bottom:602.374786px;}
.y171{bottom:602.374947px;}
.y159{bottom:602.554779px;}
.y1a0{bottom:607.393088px;}
.y2b5{bottom:607.921685px;}
.y38{bottom:609.961395px;}
.y118{bottom:610.523987px;}
.y21f{bottom:611.416823px;}
.y29e{bottom:611.429571px;}
.y1dd{bottom:611.569773px;}
.y260{bottom:611.799307px;}
.y117{bottom:616.410461px;}
.y74{bottom:619.665344px;}
.yaa{bottom:620.985260px;}
.y182{bottom:620.985306px;}
.y143{bottom:621.124786px;}
.y170{bottom:621.124947px;}
.y158{bottom:621.304779px;}
.y19f{bottom:622.387088px;}
.y2b4{bottom:622.915685px;}
.y21e{bottom:626.410823px;}
.y29d{bottom:626.423571px;}
.y1dc{bottom:626.563773px;}
.y25f{bottom:626.793307px;}
.y37{bottom:628.711395px;}
.y116{bottom:635.160461px;}
.y19e{bottom:637.381088px;}
.y2b3{bottom:637.909685px;}
.y73{bottom:638.415344px;}
.ya9{bottom:639.735260px;}
.y142{bottom:639.874786px;}
.y16f{bottom:639.874947px;}
.y157{bottom:640.054779px;}
.y21d{bottom:641.404823px;}
.y29c{bottom:641.417571px;}
.y1db{bottom:641.557773px;}
.y25e{bottom:641.787307px;}
.y8{bottom:645.510000px;}
.y36{bottom:647.461395px;}
.y19d{bottom:652.375088px;}
.y2b2{bottom:652.903685px;}
.y114{bottom:653.558990px;}
.y111{bottom:653.720993px;}
.y113{bottom:653.910461px;}
.y21c{bottom:656.398823px;}
.y29b{bottom:656.411571px;}
.y1da{bottom:656.551773px;}
.y25d{bottom:656.781307px;}
.y72{bottom:657.165344px;}
.ya8{bottom:658.485260px;}
.y181{bottom:658.485306px;}
.y141{bottom:658.624786px;}
.y16e{bottom:658.624947px;}
.y156{bottom:658.804779px;}
.y35{bottom:666.211395px;}
.y7{bottom:666.771000px;}
.y19c{bottom:667.369088px;}
.y2b1{bottom:667.897685px;}
.y21b{bottom:671.392823px;}
.y29a{bottom:671.405571px;}
.y1d9{bottom:671.545773px;}
.y25c{bottom:671.775307px;}
.y71{bottom:675.915344px;}
.ya7{bottom:677.235260px;}
.y140{bottom:677.374786px;}
.y155{bottom:677.554779px;}
.y12c{bottom:682.035004px;}
.y19b{bottom:682.363088px;}
.y2b0{bottom:682.891685px;}
.y12b{bottom:683.385461px;}
.y34{bottom:684.961395px;}
.y21a{bottom:686.386823px;}
.y299{bottom:686.399571px;}
.y1d8{bottom:686.539773px;}
.y25b{bottom:686.769307px;}
.y70{bottom:694.665344px;}
.ya6{bottom:695.985260px;}
.y13f{bottom:696.124786px;}
.y19a{bottom:697.357088px;}
.y2af{bottom:697.885685px;}
.y219{bottom:701.380823px;}
.y298{bottom:701.393571px;}
.y1d7{bottom:701.533773px;}
.y25a{bottom:701.763307px;}
.y33{bottom:703.711395px;}
.y199{bottom:712.351088px;}
.y6f{bottom:713.415344px;}
.ya5{bottom:714.735260px;}
.y110{bottom:714.735294px;}
.y218{bottom:716.374823px;}
.y297{bottom:716.387571px;}
.y1d6{bottom:716.527773px;}
.y259{bottom:716.757307px;}
.y32{bottom:722.461395px;}
.y6{bottom:726.298500px;}
.y198{bottom:727.345088px;}
.y217{bottom:731.368823px;}
.y1d5{bottom:731.521773px;}
.y258{bottom:731.751307px;}
.y6e{bottom:732.165344px;}
.ya4{bottom:733.485260px;}
.y10f{bottom:733.485294px;}
.y31{bottom:741.211395px;}
.y197{bottom:742.339088px;}
.y2ae{bottom:742.880435px;}
.y216{bottom:746.362823px;}
.y1d4{bottom:746.515773px;}
.y257{bottom:746.745307px;}
.y6d{bottom:750.915344px;}
.ya3{bottom:752.235260px;}
.y10e{bottom:752.235294px;}
.y3{bottom:752.599495px;}
.y196{bottom:757.333088px;}
.y2ad{bottom:757.874435px;}
.y30{bottom:759.961395px;}
.y215{bottom:761.356823px;}
.y296{bottom:761.382321px;}
.y1d3{bottom:761.509773px;}
.y256{bottom:761.739307px;}
.y6c{bottom:769.665344px;}
.ya2{bottom:770.985260px;}
.y10d{bottom:770.985294px;}
.y195{bottom:772.327088px;}
.y2ac{bottom:772.868435px;}
.y214{bottom:776.350823px;}
.y295{bottom:776.376321px;}
.y1d2{bottom:776.503773px;}
.y255{bottom:776.733307px;}
.y2f{bottom:778.711395px;}
.y2ab{bottom:787.862435px;}
.y6b{bottom:788.415344px;}
.ya1{bottom:789.735260px;}
.y10c{bottom:789.735294px;}
.y213{bottom:791.344823px;}
.y294{bottom:791.370321px;}
.y1d1{bottom:791.497773px;}
.y254{bottom:791.727307px;}
.yf5{bottom:795.156510px;}
.y2e{bottom:797.461395px;}
.y194{bottom:802.327838px;}
.y2aa{bottom:802.856435px;}
.y212{bottom:806.338823px;}
.y293{bottom:806.364321px;}
.y1d0{bottom:806.491773px;}
.y253{bottom:806.721307px;}
.y6a{bottom:807.165344px;}
.ya0{bottom:808.485260px;}
.y10b{bottom:808.485294px;}
.y2d{bottom:816.211395px;}
.y193{bottom:817.321838px;}
.y2a9{bottom:817.850435px;}
.y211{bottom:821.332823px;}
.y292{bottom:821.358321px;}
.y1cf{bottom:821.485773px;}
.y252{bottom:821.715307px;}
.y69{bottom:825.915344px;}
.y9f{bottom:827.235260px;}
.y10a{bottom:827.235294px;}
.yf2{bottom:832.386566px;}
.y2a8{bottom:832.844435px;}
.y2c{bottom:834.961395px;}
.y210{bottom:836.326823px;}
.y291{bottom:836.352321px;}
.y1ce{bottom:836.479773px;}
.y251{bottom:836.709307px;}
.y68{bottom:844.665344px;}
.y9e{bottom:845.985260px;}
.y109{bottom:845.985294px;}
.y192{bottom:847.321838px;}
.y2a7{bottom:847.838435px;}
.y20f{bottom:851.320823px;}
.y290{bottom:851.346321px;}
.y1cd{bottom:851.473773px;}
.y250{bottom:851.703307px;}
.y2a6{bottom:862.832435px;}
.y67{bottom:863.415344px;}
.y9d{bottom:864.735260px;}
.y108{bottom:864.735294px;}
.y20e{bottom:866.314823px;}
.y28f{bottom:866.340321px;}
.y1cc{bottom:866.467773px;}
.y24f{bottom:866.697307px;}
.y2a5{bottom:877.826435px;}
.y2b{bottom:879.144153px;}
.y2{bottom:879.369000px;}
.y191{bottom:881.130338px;}
.y20d{bottom:881.308823px;}
.y28e{bottom:881.334321px;}
.y1cb{bottom:881.461773px;}
.y24e{bottom:881.691307px;}
.y66{bottom:882.165344px;}
.y9c{bottom:883.485260px;}
.y107{bottom:883.485294px;}
.y2a4{bottom:892.820435px;}
.y2a{bottom:894.138153px;}
.y190{bottom:896.124338px;}
.y20c{bottom:896.302823px;}
.y28d{bottom:896.328321px;}
.y1ca{bottom:896.455773px;}
.y24d{bottom:896.685307px;}
.y65{bottom:900.915344px;}
.y9b{bottom:902.235260px;}
.y106{bottom:902.235294px;}
.y20b{bottom:911.296823px;}
.y28c{bottom:911.322321px;}
.y1c9{bottom:911.449773px;}
.y24c{bottom:911.679307px;}
.y64{bottom:919.665344px;}
.y9a{bottom:920.985260px;}
.y105{bottom:920.985294px;}
.y18f{bottom:926.125088px;}
.y20a{bottom:926.290823px;}
.y28b{bottom:926.316321px;}
.y1c8{bottom:926.443773px;}
.y24b{bottom:926.673307px;}
.y29{bottom:936.738190px;}
.y63{bottom:938.415344px;}
.y99{bottom:939.735260px;}
.y104{bottom:939.735294px;}
.y18e{bottom:941.119088px;}
.y209{bottom:941.284823px;}
.y28a{bottom:941.310321px;}
.y1c7{bottom:941.437773px;}
.y24a{bottom:941.667307px;}
.y18d{bottom:956.113088px;}
.y208{bottom:956.278823px;}
.y289{bottom:956.304321px;}
.y1c6{bottom:956.431773px;}
.y249{bottom:956.661307px;}
.y62{bottom:957.165344px;}
.y98{bottom:958.485260px;}
.y103{bottom:958.485294px;}
.y1{bottom:966.726000px;}
.y154{bottom:970.150844px;}
.y18c{bottom:971.107088px;}
.y207{bottom:971.272823px;}
.y288{bottom:971.298321px;}
.y1c5{bottom:971.425773px;}
.y248{bottom:971.655307px;}
.y61{bottom:975.915344px;}
.y97{bottom:977.235260px;}
.y102{bottom:977.235294px;}
.y28{bottom:981.424622px;}
.y153{bottom:985.144844px;}
.y18b{bottom:986.101088px;}
.y206{bottom:986.266823px;}
.y287{bottom:986.292321px;}
.y1c4{bottom:986.419773px;}
.y247{bottom:986.649307px;}
.y60{bottom:994.665344px;}
.y96{bottom:995.985260px;}
.y101{bottom:995.985294px;}
.y152{bottom:1000.138844px;}
.y18a{bottom:1001.095088px;}
.y205{bottom:1001.260823px;}
.y286{bottom:1001.286321px;}
.y1c3{bottom:1001.413773px;}
.y246{bottom:1001.643307px;}
.y27{bottom:1008.424622px;}
.y5f{bottom:1013.415344px;}
.y134{bottom:1014.383972px;}
.y95{bottom:1014.735260px;}
.y100{bottom:1014.735294px;}
.y13a{bottom:1014.735306px;}
.y151{bottom:1015.132844px;}
.y189{bottom:1016.089088px;}
.y204{bottom:1016.254823px;}
.y285{bottom:1016.280321px;}
.y1c2{bottom:1016.407773px;}
.y245{bottom:1016.637307px;}
.y150{bottom:1030.126844px;}
.y188{bottom:1031.083088px;}
.y203{bottom:1031.248823px;}
.y284{bottom:1031.274321px;}
.y1c1{bottom:1031.401773px;}
.y244{bottom:1031.631307px;}
.y5e{bottom:1032.165344px;}
.y132{bottom:1033.297485px;}
.y94{bottom:1033.485260px;}
.yff{bottom:1033.485294px;}
.y139{bottom:1033.485306px;}
.y14f{bottom:1045.120844px;}
.y187{bottom:1046.077088px;}
.y202{bottom:1046.242823px;}
.y283{bottom:1046.268321px;}
.y1c0{bottom:1046.395773px;}
.y243{bottom:1046.625307px;}
.y5d{bottom:1050.915344px;}
.y93{bottom:1052.235260px;}
.yfe{bottom:1052.235294px;}
.y138{bottom:1052.235306px;}
.y14e{bottom:1060.114844px;}
.y201{bottom:1061.236823px;}
.y282{bottom:1061.262321px;}
.y1bf{bottom:1061.389773px;}
.y242{bottom:1061.619307px;}
.y5c{bottom:1069.665344px;}
.y92{bottom:1070.985260px;}
.yfd{bottom:1070.985294px;}
.y137{bottom:1070.985306px;}
.yf4{bottom:1072.210968px;}
.y14d{bottom:1075.108844px;}
.y186{bottom:1076.077838px;}
.y26{bottom:1076.132080px;}
.y200{bottom:1076.230823px;}
.y1be{bottom:1076.383773px;}
.y241{bottom:1076.613307px;}
.y5b{bottom:1088.415344px;}
.y91{bottom:1089.735260px;}
.yfc{bottom:1089.735294px;}
.y136{bottom:1089.735306px;}
.y14c{bottom:1090.102844px;}
.y185{bottom:1091.071838px;}
.y1ff{bottom:1091.224823px;}
.y1bd{bottom:1091.377773px;}
.y240{bottom:1091.607307px;}
.y25{bottom:1109.586556px;}
.y24{bottom:1126.582306px;}
.y5a{bottom:1127.482361px;}
.y90{bottom:1127.482544px;}
.h2a{height:6.900000px;}
.h25{height:7.050000px;}
.h19{height:8.250000px;}
.h23{height:9.450000px;}
.h27{height:9.900000px;}
.h2c{height:10.198500px;}
.h17{height:10.200000px;}
.h1b{height:12.601500px;}
.h1e{height:12.900000px;}
.h1f{height:13.348500px;}
.h21{height:13.800000px;}
.h28{height:13.951499px;}
.h14{height:26.203799px;}
.h24{height:26.466614px;}
.h2b{height:27.006749px;}
.h26{height:27.606899px;}
.h1a{height:31.747934px;}
.h7{height:32.130000px;}
.ha{height:33.840000px;}
.h13{height:37.434000px;}
.h22{height:39.189793px;}
.h1c{height:39.249808px;}
.h18{height:39.729928px;}
.h29{height:40.090018px;}
.h20{height:40.990243px;}
.h10{height:44.040000px;}
.hb{height:44.676000px;}
.h16{height:45.186000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h2e{height:52.173000px;}
.h11{height:53.160000px;}
.h15{height:55.054425px;}
.h2{height:55.080000px;}
.hc{height:55.461000px;}
.h2d{height:59.004000px;}
.hf{height:59.340000px;}
.h1d{height:61.380000px;}
.he{height:64.866000px;}
.h12{height:71.208000px;}
.h5{height:78.030000px;}
.hd{height:85.056000px;}
.h4{height:119.055004px;}
.h8{height:1186.299000px;}
.h9{height:1186.500000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.wb{width:5.730000px;}
.we{width:6.585000px;}
.wa{width:6.630000px;}
.wc{width:10.260000px;}
.wf{width:12.525000px;}
.w7{width:13.873499px;}
.w4{width:13.921500px;}
.w6{width:15.375000px;}
.w9{width:21.015000px;}
.w5{width:30.675000px;}
.w8{width:102.165000px;}
.wd{width:147.689999px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x1b{left:-1.071304px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x23{left:83.195400px;}
.x7{left:85.181849px;}
.xb{left:93.545402px;}
.x9{left:97.796100px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xf{left:107.416798px;}
.x4{left:203.484001px;}
.x2b{left:222.556645px;}
.x27{left:226.895393px;}
.x2a{left:227.975395px;}
.x28{left:252.408143px;}
.x24{left:270.836998px;}
.x25{left:283.621193px;}
.x3{left:454.959000px;}
.x8{left:459.215399px;}
.x10{left:473.128647px;}
.xc{left:476.210391px;}
.xa{left:480.466799px;}
.xe{left:483.230379px;}
.x26{left:484.688405px;}
.x1a{left:491.175018px;}
.x11{left:507.390015px;}
.x1c{left:512.264694px;}
.x12{left:538.062286px;}
.x18{left:612.259506px;}
.x29{left:613.896145px;}
.x1f{left:646.408493px;}
.x20{left:652.166565px;}
.x13{left:657.347992px;}
.x14{left:672.756592px;}
.x19{left:714.643661px;}
.x5{left:728.220612px;}
.x1d{left:729.626999px;}
.x1e{left:736.332733px;}
.x15{left:742.218018px;}
.x16{left:757.657059px;}
.x21{left:784.182037px;}
.x22{left:794.470367px;}
.xd{left:798.209564px;}
.x17{left:802.503021px;}
@media print{
.v2{vertical-align:-18.133341pt;}
.v3{vertical-align:-13.343424pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.lsa8{letter-spacing:-1.858667pt;}
.ls86{letter-spacing:-1.632000pt;}
.lsa5{letter-spacing:-1.360000pt;}
.ls43{letter-spacing:-1.337853pt;}
.lsa6{letter-spacing:-1.314667pt;}
.lsa7{letter-spacing:-1.269333pt;}
.lsa9{letter-spacing:-1.178667pt;}
.ls85{letter-spacing:-1.133333pt;}
.ls80{letter-spacing:-1.088000pt;}
.ls11{letter-spacing:-1.066667pt;}
.ls83{letter-spacing:-1.042667pt;}
.ls13{letter-spacing:-1.013333pt;}
.ls3a{letter-spacing:-0.906667pt;}
.ls7c{letter-spacing:-0.861333pt;}
.ls55{letter-spacing:-0.858875pt;}
.ls12{letter-spacing:-0.853333pt;}
.lsf{letter-spacing:-0.800000pt;}
.lse{letter-spacing:-0.746667pt;}
.ls82{letter-spacing:-0.725333pt;}
.ls10{letter-spacing:-0.693333pt;}
.ls7e{letter-spacing:-0.680000pt;}
.ls38{letter-spacing:-0.640000pt;}
.ls81{letter-spacing:-0.589333pt;}
.ls57{letter-spacing:-0.586813pt;}
.ls39{letter-spacing:-0.533333pt;}
.ls9f{letter-spacing:-0.498667pt;}
.ls37{letter-spacing:-0.480000pt;}
.ls84{letter-spacing:-0.453333pt;}
.ls3f{letter-spacing:-0.426667pt;}
.ls3b{letter-spacing:-0.373333pt;}
.ls77{letter-spacing:-0.362667pt;}
.ls2f{letter-spacing:-0.320000pt;}
.ls7a{letter-spacing:-0.317333pt;}
.ls7f{letter-spacing:-0.272000pt;}
.ls30{letter-spacing:-0.266667pt;}
.ls9e{letter-spacing:-0.226667pt;}
.ls32{letter-spacing:-0.213333pt;}
.ls44{letter-spacing:-0.211240pt;}
.ls7b{letter-spacing:-0.181333pt;}
.ls31{letter-spacing:-0.160000pt;}
.ls78{letter-spacing:-0.136000pt;}
.ls2e{letter-spacing:-0.106667pt;}
.ls7d{letter-spacing:-0.090667pt;}
.ls41{letter-spacing:-0.070413pt;}
.ls36{letter-spacing:-0.053333pt;}
.ls76{letter-spacing:-0.045333pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000033pt;}
.ls8b{letter-spacing:0.022667pt;}
.ls3c{letter-spacing:0.026667pt;}
.ls65{letter-spacing:0.045333pt;}
.ls2c{letter-spacing:0.053333pt;}
.ls40{letter-spacing:0.070413pt;}
.ls5c{letter-spacing:0.080000pt;}
.ls62{letter-spacing:0.090667pt;}
.ls33{letter-spacing:0.106667pt;}
.ls98{letter-spacing:0.113333pt;}
.ls69{letter-spacing:0.136000pt;}
.lsb{letter-spacing:0.158926pt;}
.ls29{letter-spacing:0.160000pt;}
.ls5e{letter-spacing:0.181333pt;}
.ls3d{letter-spacing:0.186667pt;}
.ls42{letter-spacing:0.211240pt;}
.ls2{letter-spacing:0.213333pt;}
.lsc{letter-spacing:0.226667pt;}
.ls64{letter-spacing:0.234667pt;}
.ls9d{letter-spacing:0.249333pt;}
.ls67{letter-spacing:0.256000pt;}
.ls26{letter-spacing:0.266667pt;}
.ls97{letter-spacing:0.272000pt;}
.ls9a{letter-spacing:0.276533pt;}
.ls8e{letter-spacing:0.290133pt;}
.ls95{letter-spacing:0.294657pt;}
.ls9c{letter-spacing:0.294660pt;}
.ls8d{letter-spacing:0.294667pt;}
.ls99{letter-spacing:0.299200pt;}
.ls66{letter-spacing:0.317333pt;}
.ls28{letter-spacing:0.320000pt;}
.lsa1{letter-spacing:0.340000pt;}
.ls5f{letter-spacing:0.362667pt;}
.ls21{letter-spacing:0.373333pt;}
.ls46{letter-spacing:0.400000pt;}
.ls61{letter-spacing:0.408000pt;}
.ls20{letter-spacing:0.426667pt;}
.ls3e{letter-spacing:0.453333pt;}
.lsa0{letter-spacing:0.476000pt;}
.ls2a{letter-spacing:0.480000pt;}
.ls60{letter-spacing:0.498667pt;}
.ls34{letter-spacing:0.506667pt;}
.ls8c{letter-spacing:0.507716pt;}
.ls15{letter-spacing:0.533333pt;}
.ls6c{letter-spacing:0.544000pt;}
.ls5a{letter-spacing:0.560000pt;}
.ls75{letter-spacing:0.566667pt;}
.ls2d{letter-spacing:0.586667pt;}
.ls6d{letter-spacing:0.589333pt;}
.ls89{letter-spacing:0.598400pt;}
.ls45{letter-spacing:0.633720pt;}
.ls6a{letter-spacing:0.634667pt;}
.ls35{letter-spacing:0.640000pt;}
.ls68{letter-spacing:0.657333pt;}
.ls88{letter-spacing:0.680000pt;}
.ls25{letter-spacing:0.693333pt;}
.ls6e{letter-spacing:0.702667pt;}
.ls6f{letter-spacing:0.725333pt;}
.ls1e{letter-spacing:0.746667pt;}
.ls74{letter-spacing:0.770667pt;}
.ls47{letter-spacing:0.773333pt;}
.ls4b{letter-spacing:0.774993pt;}
.ls23{letter-spacing:0.800000pt;}
.ls73{letter-spacing:0.816000pt;}
.ls27{letter-spacing:0.821333pt;}
.ls3{letter-spacing:0.826667pt;}
.lsa2{letter-spacing:0.838667pt;}
.ls22{letter-spacing:0.853333pt;}
.ls56{letter-spacing:0.858667pt;}
.ls63{letter-spacing:0.861333pt;}
.ls2b{letter-spacing:0.906667pt;}
.ls70{letter-spacing:0.952000pt;}
.ls4{letter-spacing:0.960000pt;}
.ls8a{letter-spacing:0.997333pt;}
.lsa{letter-spacing:1.013333pt;}
.ls6b{letter-spacing:1.042667pt;}
.ls17{letter-spacing:1.066667pt;}
.ls90{letter-spacing:1.088000pt;}
.ls1b{letter-spacing:1.120000pt;}
.ls79{letter-spacing:1.133333pt;}
.ls5d{letter-spacing:1.146667pt;}
.ls58{letter-spacing:1.173333pt;}
.ls92{letter-spacing:1.178667pt;}
.ls91{letter-spacing:1.224000pt;}
.ls16{letter-spacing:1.226667pt;}
.ls5b{letter-spacing:1.253333pt;}
.lsa4{letter-spacing:1.269333pt;}
.ls7{letter-spacing:1.280000pt;}
.ls71{letter-spacing:1.314667pt;}
.ls19{letter-spacing:1.333333pt;}
.ls18{letter-spacing:1.386667pt;}
.ls9b{letter-spacing:1.405333pt;}
.ls1c{letter-spacing:1.440000pt;}
.ls96{letter-spacing:1.450667pt;}
.ls59{letter-spacing:1.493333pt;}
.ls93{letter-spacing:1.496000pt;}
.ls94{letter-spacing:1.527733pt;}
.ls1d{letter-spacing:1.546667pt;}
.ls24{letter-spacing:1.600000pt;}
.ls14{letter-spacing:1.653333pt;}
.ls8f{letter-spacing:1.677333pt;}
.ls5{letter-spacing:1.706667pt;}
.ls8{letter-spacing:1.760000pt;}
.lsa3{letter-spacing:1.813333pt;}
.ls9{letter-spacing:1.866667pt;}
.ls1f{letter-spacing:1.920000pt;}
.ls1a{letter-spacing:1.973333pt;}
.ls6{letter-spacing:2.240000pt;}
.ls72{letter-spacing:2.538667pt;}
.ls87{letter-spacing:2.697313pt;}
.ls51{letter-spacing:3.467533pt;}
.ls1{letter-spacing:3.546667pt;}
.ls53{letter-spacing:3.734267pt;}
.ls4d{letter-spacing:8.855546pt;}
.ls4a{letter-spacing:8.908893pt;}
.ls48{letter-spacing:11.842960pt;}
.ls49{letter-spacing:11.896306pt;}
.ls54{letter-spacing:12.803199pt;}
.ls52{letter-spacing:14.190213pt;}
.ls4f{letter-spacing:14.830373pt;}
.ls4c{letter-spacing:14.883719pt;}
.ls50{letter-spacing:15.202309pt;}
.ls4e{letter-spacing:18.178871pt;}
.ws63{word-spacing:-17.814573pt;}
.ws64{word-spacing:-16.265480pt;}
.ws6f{word-spacing:-14.883719pt;}
.ws1a{word-spacing:-14.186667pt;}
.ws45{word-spacing:-13.866667pt;}
.ws46{word-spacing:-13.653333pt;}
.ws1b{word-spacing:-13.333333pt;}
.ws94{word-spacing:-13.184000pt;}
.ws5b{word-spacing:-12.928000pt;}
.wscc{word-spacing:-12.194667pt;}
.ws97{word-spacing:-12.058667pt;}
.ws96{word-spacing:-11.560000pt;}
.ws93{word-spacing:-11.424000pt;}
.ws78{word-spacing:-11.333333pt;}
.ws81{word-spacing:-11.088000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.986667pt;}
.wsc1{word-spacing:-10.880000pt;}
.ws95{word-spacing:-10.245333pt;}
.ws6{word-spacing:-10.240000pt;}
.wsc0{word-spacing:-10.200000pt;}
.ws6e{word-spacing:-10.192000pt;}
.ws92{word-spacing:-9.565333pt;}
.ws91{word-spacing:-9.066667pt;}
.ws2{word-spacing:-8.885333pt;}
.ws7{word-spacing:-7.933333pt;}
.ws4{word-spacing:-7.728000pt;}
.ws20{word-spacing:-1.973333pt;}
.ws28{word-spacing:-1.920000pt;}
.ws13{word-spacing:-1.706667pt;}
.wsce{word-spacing:-1.450667pt;}
.ws22{word-spacing:-1.440000pt;}
.ws1e{word-spacing:-1.386667pt;}
.wse{word-spacing:-1.333333pt;}
.ws2f{word-spacing:-1.280000pt;}
.ws31{word-spacing:-1.226667pt;}
.ws9c{word-spacing:-1.178667pt;}
.ws57{word-spacing:-1.173333pt;}
.ws9a{word-spacing:-1.133333pt;}
.ws39{word-spacing:-1.120000pt;}
.ws1d{word-spacing:-1.066667pt;}
.wscb{word-spacing:-1.042667pt;}
.ws2c{word-spacing:-1.013333pt;}
.wsba{word-spacing:-0.997333pt;}
.ws3d{word-spacing:-0.960000pt;}
.wsa3{word-spacing:-0.952000pt;}
.ws7f{word-spacing:-0.906667pt;}
.wsa1{word-spacing:-0.861333pt;}
.ws4b{word-spacing:-0.853333pt;}
.ws35{word-spacing:-0.800000pt;}
.wsbd{word-spacing:-0.770667pt;}
.ws26{word-spacing:-0.746667pt;}
.wsc3{word-spacing:-0.725333pt;}
.ws79{word-spacing:-0.693333pt;}
.wsa4{word-spacing:-0.680000pt;}
.ws10{word-spacing:-0.640000pt;}
.wsa5{word-spacing:-0.634667pt;}
.ws6a{word-spacing:-0.633720pt;}
.wsb8{word-spacing:-0.589333pt;}
.ws62{word-spacing:-0.586667pt;}
.ws19{word-spacing:-0.544000pt;}
.ws4f{word-spacing:-0.533333pt;}
.ws8{word-spacing:-0.506667pt;}
.ws5a{word-spacing:-0.480000pt;}
.wsd4{word-spacing:-0.453333pt;}
.ws54{word-spacing:-0.426667pt;}
.wsaf{word-spacing:-0.408000pt;}
.ws2e{word-spacing:-0.373333pt;}
.ws33{word-spacing:-0.320000pt;}
.wsc7{word-spacing:-0.317333pt;}
.ws34{word-spacing:-0.266667pt;}
.ws9e{word-spacing:-0.234667pt;}
.wsab{word-spacing:-0.226667pt;}
.ws77{word-spacing:-0.213333pt;}
.wsb0{word-spacing:-0.181333pt;}
.ws49{word-spacing:-0.160000pt;}
.wsb6{word-spacing:-0.136000pt;}
.ws36{word-spacing:-0.106667pt;}
.wsae{word-spacing:-0.090667pt;}
.ws67{word-spacing:-0.070413pt;}
.ws6c{word-spacing:-0.053347pt;}
.wsa{word-spacing:-0.053333pt;}
.ws7e{word-spacing:-0.045333pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.045333pt;}
.ws41{word-spacing:0.053333pt;}
.ws68{word-spacing:0.070413pt;}
.ws38{word-spacing:0.106667pt;}
.ws3a{word-spacing:0.160000pt;}
.ws69{word-spacing:0.211240pt;}
.wsf{word-spacing:0.213333pt;}
.ws98{word-spacing:0.226667pt;}
.ws58{word-spacing:0.266667pt;}
.wsb3{word-spacing:0.272000pt;}
.ws99{word-spacing:0.317333pt;}
.ws3e{word-spacing:0.320000pt;}
.ws76{word-spacing:0.373333pt;}
.wsa7{word-spacing:0.408000pt;}
.ws40{word-spacing:0.426667pt;}
.ws2a{word-spacing:0.480000pt;}
.wsc4{word-spacing:0.498667pt;}
.ws25{word-spacing:0.533333pt;}
.ws71{word-spacing:0.533467pt;}
.wsb{word-spacing:0.586667pt;}
.ws8f{word-spacing:0.640000pt;}
.wsa8{word-spacing:0.680000pt;}
.ws55{word-spacing:0.693333pt;}
.ws80{word-spacing:0.746667pt;}
.wsd9{word-spacing:0.770667pt;}
.ws87{word-spacing:0.800000pt;}
.ws6d{word-spacing:0.821533pt;}
.ws7c{word-spacing:0.853333pt;}
.ws9f{word-spacing:0.861333pt;}
.wsd{word-spacing:0.906667pt;}
.wsd3{word-spacing:0.952000pt;}
.ws86{word-spacing:0.960000pt;}
.wsa9{word-spacing:0.997333pt;}
.ws44{word-spacing:1.013333pt;}
.wsa2{word-spacing:1.042667pt;}
.wsc{word-spacing:1.066667pt;}
.wsa0{word-spacing:1.088000pt;}
.ws17{word-spacing:1.120000pt;}
.ws9b{word-spacing:1.133333pt;}
.ws60{word-spacing:1.173333pt;}
.wsda{word-spacing:1.178667pt;}
.wsd1{word-spacing:1.224000pt;}
.ws84{word-spacing:1.226667pt;}
.wsc9{word-spacing:1.269333pt;}
.ws65{word-spacing:1.280000pt;}
.wsb7{word-spacing:1.314667pt;}
.ws9{word-spacing:1.333333pt;}
.wsac{word-spacing:1.360000pt;}
.ws59{word-spacing:1.386667pt;}
.wsb5{word-spacing:1.405333pt;}
.ws82{word-spacing:1.440000pt;}
.ws47{word-spacing:1.493333pt;}
.ws21{word-spacing:1.546667pt;}
.wsaa{word-spacing:1.586667pt;}
.ws52{word-spacing:1.600000pt;}
.wsb1{word-spacing:1.632000pt;}
.ws51{word-spacing:1.653333pt;}
.ws72{word-spacing:1.706667pt;}
.wsc6{word-spacing:1.722667pt;}
.ws5e{word-spacing:1.760000pt;}
.wscf{word-spacing:1.768000pt;}
.ws30{word-spacing:1.813333pt;}
.ws73{word-spacing:1.866667pt;}
.ws24{word-spacing:1.920000pt;}
.wsc2{word-spacing:1.949333pt;}
.ws43{word-spacing:1.973333pt;}
.wsb4{word-spacing:1.994667pt;}
.ws61{word-spacing:2.026667pt;}
.wsd0{word-spacing:2.040000pt;}
.ws2b{word-spacing:2.080000pt;}
.wsbc{word-spacing:2.130667pt;}
.ws3f{word-spacing:2.133333pt;}
.wsd7{word-spacing:2.176000pt;}
.ws8e{word-spacing:2.186667pt;}
.wsd2{word-spacing:2.221333pt;}
.ws53{word-spacing:2.240000pt;}
.wsc5{word-spacing:2.266667pt;}
.ws42{word-spacing:2.293333pt;}
.wsbb{word-spacing:2.312000pt;}
.ws4a{word-spacing:2.346667pt;}
.wsa6{word-spacing:2.357333pt;}
.ws2d{word-spacing:2.400000pt;}
.wscd{word-spacing:2.448000pt;}
.ws85{word-spacing:2.453333pt;}
.wsbe{word-spacing:2.493333pt;}
.ws4c{word-spacing:2.506667pt;}
.wsca{word-spacing:2.538667pt;}
.ws4e{word-spacing:2.560000pt;}
.wsdb{word-spacing:2.584000pt;}
.ws1c{word-spacing:2.613333pt;}
.ws75{word-spacing:2.666667pt;}
.wsbf{word-spacing:2.674667pt;}
.ws8b{word-spacing:2.720000pt;}
.ws32{word-spacing:2.773333pt;}
.ws12{word-spacing:2.826667pt;}
.wsd8{word-spacing:2.856000pt;}
.ws56{word-spacing:2.880000pt;}
.ws23{word-spacing:2.933333pt;}
.wsd5{word-spacing:2.992000pt;}
.ws5d{word-spacing:3.040000pt;}
.ws15{word-spacing:3.093333pt;}
.wsc8{word-spacing:3.128000pt;}
.ws83{word-spacing:3.146667pt;}
.wsd6{word-spacing:3.173333pt;}
.ws3c{word-spacing:3.200000pt;}
.ws6b{word-spacing:3.218667pt;}
.ws74{word-spacing:3.360000pt;}
.ws66{word-spacing:3.413333pt;}
.wsad{word-spacing:3.445333pt;}
.ws16{word-spacing:3.466667pt;}
.wsb2{word-spacing:3.490667pt;}
.ws7b{word-spacing:3.520000pt;}
.ws8d{word-spacing:3.680000pt;}
.wsdc{word-spacing:3.762667pt;}
.ws7a{word-spacing:3.786667pt;}
.ws9d{word-spacing:3.808000pt;}
.ws27{word-spacing:3.840000pt;}
.ws29{word-spacing:3.893333pt;}
.ws1f{word-spacing:4.000000pt;}
.ws89{word-spacing:4.053333pt;}
.ws50{word-spacing:4.160000pt;}
.ws4d{word-spacing:4.213333pt;}
.ws88{word-spacing:4.266667pt;}
.ws8a{word-spacing:4.320000pt;}
.ws37{word-spacing:4.426667pt;}
.wsde{word-spacing:4.624000pt;}
.ws3b{word-spacing:4.746667pt;}
.ws8c{word-spacing:4.800000pt;}
.ws5c{word-spacing:4.960000pt;}
.ws14{word-spacing:5.386667pt;}
.ws7d{word-spacing:5.440000pt;}
.ws90{word-spacing:6.240000pt;}
.ws48{word-spacing:6.453333pt;}
.ws5f{word-spacing:6.720000pt;}
.wsdd{word-spacing:7.298667pt;}
.ws70{word-spacing:8.855546pt;}
.ws11{word-spacing:19.072000pt;}
.ws18{word-spacing:64.237333pt;}
._b{margin-left:-64.600000pt;}
._7{margin-left:-14.733333pt;}
._13{margin-left:-13.013333pt;}
._15{margin-left:-11.088000pt;}
._e{margin-left:-7.680000pt;}
._1b{margin-left:-6.056533pt;}
._1{margin-left:-4.109067pt;}
._3{margin-left:-3.082667pt;}
._0{margin-left:-1.450667pt;}
._6{width:1.402667pt;}
._2{width:2.372267pt;}
._d{width:4.080000pt;}
._19{width:7.752000pt;}
._18{width:9.520000pt;}
._17{width:10.436800pt;}
._1a{width:12.829333pt;}
._12{width:13.872000pt;}
._8{width:16.320000pt;}
._14{width:18.245333pt;}
._16{width:29.333333pt;}
._f{width:32.570667pt;}
._5{width:34.966652pt;}
._4{width:36.176521pt;}
._a{width:48.552000pt;}
._9{width:64.237333pt;}
._11{width:1079.154725pt;}
._10{width:1123.585560pt;}
._c{width:2443.058748pt;}
.fs9{font-size:31.733332pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:37.342400pt;}
.fs5{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs7{font-size:50.666667pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:53.346664pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:70.413333pt;}
.fs8{font-size:85.333333pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y12a{bottom:0.039225pt;}
.y133{bottom:0.172445pt;}
.y112{bottom:0.173747pt;}
.y135{bottom:0.306966pt;}
.y115{bottom:0.307088pt;}
.y126{bottom:2.440389pt;}
.y120{bottom:2.705566pt;}
.y11d{bottom:2.706909pt;}
.y12d{bottom:3.440389pt;}
.y123{bottom:3.505737pt;}
.y119{bottom:5.240275pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:61.181335pt;}
.y4{bottom:86.333337pt;}
.y4e{bottom:100.394933pt;}
.y8f{bottom:100.813639pt;}
.yc5{bottom:101.986898pt;}
.yde{bottom:101.986938pt;}
.yf1{bottom:102.110921pt;}
.y16d{bottom:102.111064pt;}
.y1fe{bottom:103.793576pt;}
.y281{bottom:103.997606pt;}
.y1bc{bottom:113.313593pt;}
.y4d{bottom:113.722933pt;}
.y23f{bottom:116.985620pt;}
.y1fd{bottom:117.121576pt;}
.y280{bottom:117.325606pt;}
.y8e{bottom:117.480306pt;}
.yc4{bottom:118.653564pt;}
.ydd{bottom:118.653605pt;}
.yf0{bottom:118.777588pt;}
.y16c{bottom:118.777730pt;}
.y22{bottom:123.790666pt;}
.y1bb{bottom:126.641593pt;}
.y23e{bottom:130.313620pt;}
.y1fc{bottom:130.449576pt;}
.y27f{bottom:130.653606pt;}
.y4c{bottom:131.584269pt;}
.y8d{bottom:134.146973pt;}
.yc3{bottom:135.320231pt;}
.ydc{bottom:135.320272pt;}
.yef{bottom:135.444255pt;}
.y16b{bottom:135.444397pt;}
.y1ba{bottom:139.969593pt;}
.y23d{bottom:143.641620pt;}
.y1fb{bottom:143.777576pt;}
.y27e{bottom:143.981606pt;}
.y4b{bottom:147.098270pt;}
.y59{bottom:147.135995pt;}
.y8c{bottom:150.813639pt;}
.yc2{bottom:151.986898pt;}
.ydb{bottom:151.986938pt;}
.yee{bottom:152.110921pt;}
.y16a{bottom:152.111064pt;}
.y1b9{bottom:153.297593pt;}
.y23c{bottom:156.969620pt;}
.y1fa{bottom:157.105576pt;}
.y27d{bottom:157.309606pt;}
.y58{bottom:160.463995pt;}
.y4a{bottom:164.959605pt;}
.y1b8{bottom:166.625593pt;}
.y8b{bottom:167.480306pt;}
.yc1{bottom:168.653564pt;}
.yda{bottom:168.653605pt;}
.yed{bottom:168.777588pt;}
.y169{bottom:168.777730pt;}
.y23b{bottom:170.297620pt;}
.y1f9{bottom:170.433576pt;}
.y27c{bottom:170.637606pt;}
.y57{bottom:173.791995pt;}
.y19{bottom:175.052000pt;}
.y1b7{bottom:179.953593pt;}
.y23a{bottom:183.625620pt;}
.y1f8{bottom:183.761576pt;}
.y27b{bottom:183.965606pt;}
.y8a{bottom:184.146973pt;}
.yc0{bottom:185.320231pt;}
.yd9{bottom:185.320272pt;}
.yec{bottom:185.444255pt;}
.y168{bottom:185.444397pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y49{bottom:187.212271pt;}
.y56{bottom:191.653198pt;}
.y1b6{bottom:193.281593pt;}
.y239{bottom:196.953620pt;}
.y1f7{bottom:197.089576pt;}
.y27a{bottom:197.293606pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y48{bottom:200.540271pt;}
.y89{bottom:200.813639pt;}
.ybf{bottom:201.986898pt;}
.yd8{bottom:201.986938pt;}
.yeb{bottom:202.110921pt;}
.y167{bottom:202.111064pt;}
.y1b5{bottom:206.609593pt;}
.y55{bottom:207.167199pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y238{bottom:210.281620pt;}
.y1f6{bottom:210.417576pt;}
.y279{bottom:210.621606pt;}
.y88{bottom:217.480306pt;}
.ybe{bottom:218.653564pt;}
.yd7{bottom:218.653605pt;}
.yea{bottom:218.777588pt;}
.y166{bottom:218.777730pt;}
.y1b4{bottom:219.937593pt;}
.y47{bottom:220.577604pt;}
.y237{bottom:223.609620pt;}
.y1f5{bottom:223.745576pt;}
.y278{bottom:223.949606pt;}
.y54{bottom:225.028524pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y1b3{bottom:233.265593pt;}
.y46{bottom:233.905604pt;}
.y87{bottom:234.146973pt;}
.ybd{bottom:235.320231pt;}
.yd6{bottom:235.320272pt;}
.ye9{bottom:235.444255pt;}
.y165{bottom:235.444397pt;}
.y236{bottom:236.937620pt;}
.y1f4{bottom:237.073576pt;}
.y277{bottom:237.277606pt;}
.y13e{bottom:240.380258pt;}
.y53{bottom:240.548000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y1b2{bottom:246.593593pt;}
.y235{bottom:250.265620pt;}
.y1f3{bottom:250.401576pt;}
.y276{bottom:250.605606pt;}
.y86{bottom:250.813639pt;}
.ybc{bottom:251.986898pt;}
.yd5{bottom:251.986938pt;}
.ye8{bottom:252.110921pt;}
.y164{bottom:252.111064pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y13d{bottom:253.708258pt;}
.y52{bottom:253.876000pt;}
.y45{bottom:253.942938pt;}
.y1b1{bottom:259.921593pt;}
.y234{bottom:263.593620pt;}
.y1f2{bottom:263.729576pt;}
.y275{bottom:263.933606pt;}
.y13c{bottom:267.036258pt;}
.y44{bottom:267.270938pt;}
.y85{bottom:267.480306pt;}
.ybb{bottom:268.653564pt;}
.yd4{bottom:268.653605pt;}
.ye7{bottom:268.777588pt;}
.y180{bottom:268.777730pt;}
.y51{bottom:271.737325pt;}
.y1b0{bottom:273.249593pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y233{bottom:276.921620pt;}
.y1f1{bottom:277.057576pt;}
.y274{bottom:277.261606pt;}
.y13b{bottom:280.364258pt;}
.y84{bottom:284.146973pt;}
.yba{bottom:285.320231pt;}
.yd3{bottom:285.320272pt;}
.ye6{bottom:285.444255pt;}
.y163{bottom:285.444397pt;}
.y1af{bottom:286.577593pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y50{bottom:287.251325pt;}
.y43{bottom:287.308271pt;}
.y232{bottom:290.249620pt;}
.y1f0{bottom:290.385576pt;}
.y273{bottom:290.589606pt;}
.y1ae{bottom:299.905593pt;}
.y42{bottom:300.636271pt;}
.y83{bottom:300.813639pt;}
.yb9{bottom:301.986898pt;}
.yd2{bottom:301.986938pt;}
.ye5{bottom:302.110921pt;}
.y17f{bottom:302.111064pt;}
.y231{bottom:303.577620pt;}
.y1ef{bottom:303.713576pt;}
.y272{bottom:303.917606pt;}
.y4f{bottom:305.112671pt;}
.y10{bottom:309.452000pt;}
.y1ad{bottom:313.233593pt;}
.y230{bottom:316.905620pt;}
.y1ee{bottom:317.041576pt;}
.y271{bottom:317.245606pt;}
.y82{bottom:317.480306pt;}
.yb8{bottom:318.653564pt;}
.yd1{bottom:318.653605pt;}
.ye4{bottom:318.777588pt;}
.y17e{bottom:318.777730pt;}
.y1ac{bottom:326.561593pt;}
.y22f{bottom:330.233620pt;}
.y1ed{bottom:330.369576pt;}
.y270{bottom:330.573606pt;}
.y81{bottom:334.146973pt;}
.yb7{bottom:335.320231pt;}
.yd0{bottom:335.320272pt;}
.ye3{bottom:335.444255pt;}
.y17d{bottom:335.444397pt;}
.y1ab{bottom:339.889593pt;}
.y40{bottom:342.187866pt;}
.y22e{bottom:343.561620pt;}
.y1ec{bottom:343.697576pt;}
.yf{bottom:343.809333pt;}
.y26f{bottom:343.901606pt;}
.y80{bottom:350.813639pt;}
.yb6{bottom:351.986898pt;}
.ycf{bottom:351.986938pt;}
.ye2{bottom:352.110921pt;}
.y17c{bottom:352.111064pt;}
.y1aa{bottom:353.217593pt;}
.y22d{bottom:356.889620pt;}
.y1eb{bottom:357.025576pt;}
.y26e{bottom:357.229606pt;}
.y3f{bottom:358.854533pt;}
.ye{bottom:362.706666pt;}
.y1a9{bottom:366.545593pt;}
.y7f{bottom:367.480306pt;}
.yb5{bottom:368.653564pt;}
.yce{bottom:368.653605pt;}
.ye1{bottom:368.777588pt;}
.y17b{bottom:368.777730pt;}
.y22c{bottom:370.217620pt;}
.y1ea{bottom:370.353576pt;}
.y26d{bottom:370.557606pt;}
.y3e{bottom:375.521200pt;}
.y1a8{bottom:379.873593pt;}
.y162{bottom:381.772269pt;}
.y22b{bottom:383.545620pt;}
.y1e9{bottom:383.681576pt;}
.y26c{bottom:383.885606pt;}
.y7e{bottom:384.146973pt;}
.yb4{bottom:385.320231pt;}
.ycd{bottom:385.320272pt;}
.ye0{bottom:385.444255pt;}
.y17a{bottom:385.444397pt;}
.y131{bottom:390.140267pt;}
.y41{bottom:392.187866pt;}
.y1a7{bottom:393.201593pt;}
.y161{bottom:395.100269pt;}
.y22a{bottom:396.873620pt;}
.y1e8{bottom:397.009576pt;}
.y26b{bottom:397.213606pt;}
.y7d{bottom:400.813639pt;}
.yb3{bottom:401.986898pt;}
.ycc{bottom:401.986938pt;}
.ydf{bottom:402.110921pt;}
.y179{bottom:402.111064pt;}
.y130{bottom:403.468267pt;}
.y1a6{bottom:406.529593pt;}
.y160{bottom:408.428269pt;}
.y3d{bottom:408.854533pt;}
.y229{bottom:410.201620pt;}
.y1e7{bottom:410.337576pt;}
.y26a{bottom:410.541606pt;}
.y12f{bottom:416.796267pt;}
.y7c{bottom:417.480306pt;}
.yb2{bottom:418.653564pt;}
.ycb{bottom:418.653605pt;}
.y148{bottom:418.777588pt;}
.y178{bottom:418.777730pt;}
.y1a5{bottom:419.857593pt;}
.y15f{bottom:421.756269pt;}
.y228{bottom:423.529620pt;}
.y1e6{bottom:423.665576pt;}
.y269{bottom:423.869606pt;}
.y12e{bottom:430.124267pt;}
.yd{bottom:430.990669pt;}
.y1a4{bottom:433.185593pt;}
.y7b{bottom:434.146973pt;}
.y15e{bottom:435.084269pt;}
.yb1{bottom:435.320231pt;}
.yca{bottom:435.320272pt;}
.y14b{bottom:435.444255pt;}
.y177{bottom:435.444397pt;}
.y227{bottom:436.857620pt;}
.y1e5{bottom:436.993576pt;}
.y268{bottom:437.197606pt;}
.yf7{bottom:442.141849pt;}
.y1a3{bottom:446.513593pt;}
.yc{bottom:446.990669pt;}
.y2bc{bottom:447.078831pt;}
.y226{bottom:450.185620pt;}
.y1e4{bottom:450.321576pt;}
.y267{bottom:450.525606pt;}
.y7a{bottom:450.813639pt;}
.yb0{bottom:451.986898pt;}
.yc9{bottom:451.986938pt;}
.y147{bottom:452.110921pt;}
.y176{bottom:452.111064pt;}
.yf6{bottom:455.469849pt;}
.y3c{bottom:458.854574pt;}
.y1a2{bottom:459.841593pt;}
.y2bb{bottom:460.406831pt;}
.yb{bottom:462.990669pt;}
.y225{bottom:463.513620pt;}
.y1e3{bottom:463.649576pt;}
.y266{bottom:463.853606pt;}
.y128{bottom:464.418660pt;}
.y129{bottom:464.549316pt;}
.y127{bottom:464.587077pt;}
.yfb{bottom:464.653605pt;}
.y79{bottom:467.480306pt;}
.yaf{bottom:468.653564pt;}
.yc8{bottom:468.653605pt;}
.y14a{bottom:468.777588pt;}
.y175{bottom:468.777730pt;}
.y15d{bottom:468.937581pt;}
.y2ba{bottom:473.734831pt;}
.y3b{bottom:475.521240pt;}
.y224{bottom:476.841620pt;}
.y2a3{bottom:476.852952pt;}
.y1e2{bottom:476.977576pt;}
.y265{bottom:477.181606pt;}
.y125{bottom:478.805339pt;}
.ya{bottom:478.990666pt;}
.y124{bottom:481.253743pt;}
.yfa{bottom:481.320272pt;}
.y78{bottom:484.146973pt;}
.yae{bottom:485.320231pt;}
.yc7{bottom:485.320272pt;}
.y149{bottom:485.444255pt;}
.y174{bottom:485.444397pt;}
.y15c{bottom:485.604248pt;}
.y2b9{bottom:487.062831pt;}
.y1a1{bottom:489.841593pt;}
.y223{bottom:490.169620pt;}
.y2a2{bottom:490.180952pt;}
.y1e1{bottom:490.305576pt;}
.y264{bottom:490.509606pt;}
.yf3{bottom:492.044237pt;}
.y122{bottom:494.417318pt;}
.y9{bottom:494.990666pt;}
.y121{bottom:497.920410pt;}
.yf9{bottom:497.986938pt;}
.y2b8{bottom:500.390831pt;}
.y77{bottom:500.813639pt;}
.yad{bottom:501.986898pt;}
.y184{bottom:501.986938pt;}
.y146{bottom:502.110921pt;}
.y173{bottom:502.111064pt;}
.y15b{bottom:502.270915pt;}
.y222{bottom:503.497620pt;}
.y2a1{bottom:503.508952pt;}
.y1e0{bottom:503.633576pt;}
.y263{bottom:503.837606pt;}
.y3a{bottom:508.854574pt;}
.y11f{bottom:511.876017pt;}
.y2b7{bottom:513.718831pt;}
.y11e{bottom:514.587077pt;}
.y221{bottom:516.825620pt;}
.y2a0{bottom:516.836952pt;}
.y1df{bottom:516.961576pt;}
.y262{bottom:517.165606pt;}
.y76{bottom:517.480306pt;}
.yac{bottom:518.653564pt;}
.yc6{bottom:518.653605pt;}
.y145{bottom:518.777588pt;}
.y172{bottom:518.777730pt;}
.y15a{bottom:518.937581pt;}
.y39{bottom:525.521240pt;}
.y11b{bottom:526.021322pt;}
.y2b6{bottom:527.046831pt;}
.y11c{bottom:528.541341pt;}
.y220{bottom:530.153620pt;}
.y29f{bottom:530.164952pt;}
.y1de{bottom:530.289576pt;}
.y261{bottom:530.493606pt;}
.y11a{bottom:531.253743pt;}
.yf8{bottom:531.320272pt;}
.y75{bottom:534.146973pt;}
.yab{bottom:535.320231pt;}
.y183{bottom:535.320272pt;}
.y144{bottom:535.444255pt;}
.y171{bottom:535.444397pt;}
.y159{bottom:535.604248pt;}
.y1a0{bottom:539.904967pt;}
.y2b5{bottom:540.374831pt;}
.y38{bottom:542.187907pt;}
.y118{bottom:542.687988pt;}
.y21f{bottom:543.481620pt;}
.y29e{bottom:543.492952pt;}
.y1dd{bottom:543.617576pt;}
.y260{bottom:543.821606pt;}
.y117{bottom:547.920410pt;}
.y74{bottom:550.813639pt;}
.yaa{bottom:551.986898pt;}
.y182{bottom:551.986938pt;}
.y143{bottom:552.110921pt;}
.y170{bottom:552.111064pt;}
.y158{bottom:552.270915pt;}
.y19f{bottom:553.232967pt;}
.y2b4{bottom:553.702831pt;}
.y21e{bottom:556.809620pt;}
.y29d{bottom:556.820952pt;}
.y1dc{bottom:556.945576pt;}
.y25f{bottom:557.149606pt;}
.y37{bottom:558.854574pt;}
.y116{bottom:564.587077pt;}
.y19e{bottom:566.560967pt;}
.y2b3{bottom:567.030831pt;}
.y73{bottom:567.480306pt;}
.ya9{bottom:568.653564pt;}
.y142{bottom:568.777588pt;}
.y16f{bottom:568.777730pt;}
.y157{bottom:568.937581pt;}
.y21d{bottom:570.137620pt;}
.y29c{bottom:570.148952pt;}
.y1db{bottom:570.273576pt;}
.y25e{bottom:570.477606pt;}
.y8{bottom:573.786667pt;}
.y36{bottom:575.521240pt;}
.y19d{bottom:579.888967pt;}
.y2b2{bottom:580.358831pt;}
.y114{bottom:580.941325pt;}
.y111{bottom:581.085327pt;}
.y113{bottom:581.253743pt;}
.y21c{bottom:583.465620pt;}
.y29b{bottom:583.476952pt;}
.y1da{bottom:583.601576pt;}
.y25d{bottom:583.805606pt;}
.y72{bottom:584.146973pt;}
.ya8{bottom:585.320231pt;}
.y181{bottom:585.320272pt;}
.y141{bottom:585.444255pt;}
.y16e{bottom:585.444397pt;}
.y156{bottom:585.604248pt;}
.y35{bottom:592.187907pt;}
.y7{bottom:592.685334pt;}
.y19c{bottom:593.216967pt;}
.y2b1{bottom:593.686831pt;}
.y21b{bottom:596.793620pt;}
.y29a{bottom:596.804952pt;}
.y1d9{bottom:596.929576pt;}
.y25c{bottom:597.133606pt;}
.y71{bottom:600.813639pt;}
.ya7{bottom:601.986898pt;}
.y140{bottom:602.110921pt;}
.y155{bottom:602.270915pt;}
.y12c{bottom:606.253337pt;}
.y19b{bottom:606.544967pt;}
.y2b0{bottom:607.014831pt;}
.y12b{bottom:607.453743pt;}
.y34{bottom:608.854574pt;}
.y21a{bottom:610.121620pt;}
.y299{bottom:610.132952pt;}
.y1d8{bottom:610.257576pt;}
.y25b{bottom:610.461606pt;}
.y70{bottom:617.480306pt;}
.ya6{bottom:618.653564pt;}
.y13f{bottom:618.777588pt;}
.y19a{bottom:619.872967pt;}
.y2af{bottom:620.342831pt;}
.y219{bottom:623.449620pt;}
.y298{bottom:623.460952pt;}
.y1d7{bottom:623.585576pt;}
.y25a{bottom:623.789606pt;}
.y33{bottom:625.521240pt;}
.y199{bottom:633.200967pt;}
.y6f{bottom:634.146973pt;}
.ya5{bottom:635.320231pt;}
.y110{bottom:635.320262pt;}
.y218{bottom:636.777620pt;}
.y297{bottom:636.788952pt;}
.y1d6{bottom:636.913576pt;}
.y259{bottom:637.117606pt;}
.y32{bottom:642.187907pt;}
.y6{bottom:645.598667pt;}
.y198{bottom:646.528967pt;}
.y217{bottom:650.105620pt;}
.y1d5{bottom:650.241576pt;}
.y258{bottom:650.445606pt;}
.y6e{bottom:650.813639pt;}
.ya4{bottom:651.986898pt;}
.y10f{bottom:651.986928pt;}
.y31{bottom:658.854574pt;}
.y197{bottom:659.856967pt;}
.y2ae{bottom:660.338164pt;}
.y216{bottom:663.433620pt;}
.y1d4{bottom:663.569576pt;}
.y257{bottom:663.773606pt;}
.y6d{bottom:667.480306pt;}
.ya3{bottom:668.653564pt;}
.y10e{bottom:668.653595pt;}
.y3{bottom:668.977329pt;}
.y196{bottom:673.184967pt;}
.y2ad{bottom:673.666164pt;}
.y30{bottom:675.521240pt;}
.y215{bottom:676.761620pt;}
.y296{bottom:676.784285pt;}
.y1d3{bottom:676.897576pt;}
.y256{bottom:677.101606pt;}
.y6c{bottom:684.146973pt;}
.ya2{bottom:685.320231pt;}
.y10d{bottom:685.320262pt;}
.y195{bottom:686.512967pt;}
.y2ac{bottom:686.994164pt;}
.y214{bottom:690.089620pt;}
.y295{bottom:690.112285pt;}
.y1d2{bottom:690.225576pt;}
.y255{bottom:690.429606pt;}
.y2f{bottom:692.187907pt;}
.y2ab{bottom:700.322164pt;}
.y6b{bottom:700.813639pt;}
.ya1{bottom:701.986898pt;}
.y10c{bottom:701.986928pt;}
.y213{bottom:703.417620pt;}
.y294{bottom:703.440285pt;}
.y1d1{bottom:703.553576pt;}
.y254{bottom:703.757606pt;}
.yf5{bottom:706.805787pt;}
.y2e{bottom:708.854574pt;}
.y194{bottom:713.180301pt;}
.y2aa{bottom:713.650164pt;}
.y212{bottom:716.745620pt;}
.y293{bottom:716.768285pt;}
.y1d0{bottom:716.881576pt;}
.y253{bottom:717.085606pt;}
.y6a{bottom:717.480306pt;}
.ya0{bottom:718.653564pt;}
.y10b{bottom:718.653595pt;}
.y2d{bottom:725.521240pt;}
.y193{bottom:726.508301pt;}
.y2a9{bottom:726.978164pt;}
.y211{bottom:730.073620pt;}
.y292{bottom:730.096285pt;}
.y1cf{bottom:730.209576pt;}
.y252{bottom:730.413606pt;}
.y69{bottom:734.146973pt;}
.y9f{bottom:735.320231pt;}
.y10a{bottom:735.320262pt;}
.yf2{bottom:739.899170pt;}
.y2a8{bottom:740.306164pt;}
.y2c{bottom:742.187907pt;}
.y210{bottom:743.401620pt;}
.y291{bottom:743.424285pt;}
.y1ce{bottom:743.537576pt;}
.y251{bottom:743.741606pt;}
.y68{bottom:750.813639pt;}
.y9e{bottom:751.986898pt;}
.y109{bottom:751.986928pt;}
.y192{bottom:753.174967pt;}
.y2a7{bottom:753.634164pt;}
.y20f{bottom:756.729620pt;}
.y290{bottom:756.752285pt;}
.y1cd{bottom:756.865576pt;}
.y250{bottom:757.069606pt;}
.y2a6{bottom:766.962164pt;}
.y67{bottom:767.480306pt;}
.y9d{bottom:768.653564pt;}
.y108{bottom:768.653595pt;}
.y20e{bottom:770.057620pt;}
.y28f{bottom:770.080285pt;}
.y1cc{bottom:770.193576pt;}
.y24f{bottom:770.397606pt;}
.y2a5{bottom:780.290164pt;}
.y2b{bottom:781.461469pt;}
.y2{bottom:781.661334pt;}
.y191{bottom:783.226967pt;}
.y20d{bottom:783.385620pt;}
.y28e{bottom:783.408285pt;}
.y1cb{bottom:783.521576pt;}
.y24e{bottom:783.725606pt;}
.y66{bottom:784.146973pt;}
.y9c{bottom:785.320231pt;}
.y107{bottom:785.320262pt;}
.y2a4{bottom:793.618164pt;}
.y2a{bottom:794.789469pt;}
.y190{bottom:796.554967pt;}
.y20c{bottom:796.713620pt;}
.y28d{bottom:796.736285pt;}
.y1ca{bottom:796.849576pt;}
.y24d{bottom:797.053606pt;}
.y65{bottom:800.813639pt;}
.y9b{bottom:801.986898pt;}
.y106{bottom:801.986928pt;}
.y20b{bottom:810.041620pt;}
.y28c{bottom:810.064285pt;}
.y1c9{bottom:810.177576pt;}
.y24c{bottom:810.381606pt;}
.y64{bottom:817.480306pt;}
.y9a{bottom:818.653564pt;}
.y105{bottom:818.653595pt;}
.y18f{bottom:823.222301pt;}
.y20a{bottom:823.369620pt;}
.y28b{bottom:823.392285pt;}
.y1c8{bottom:823.505576pt;}
.y24b{bottom:823.709606pt;}
.y29{bottom:832.656169pt;}
.y63{bottom:834.146973pt;}
.y99{bottom:835.320231pt;}
.y104{bottom:835.320262pt;}
.y18e{bottom:836.550301pt;}
.y209{bottom:836.697620pt;}
.y28a{bottom:836.720285pt;}
.y1c7{bottom:836.833576pt;}
.y24a{bottom:837.037606pt;}
.y18d{bottom:849.878301pt;}
.y208{bottom:850.025620pt;}
.y289{bottom:850.048285pt;}
.y1c6{bottom:850.161576pt;}
.y249{bottom:850.365606pt;}
.y62{bottom:850.813639pt;}
.y98{bottom:851.986898pt;}
.y103{bottom:851.986928pt;}
.y1{bottom:859.312000pt;}
.y154{bottom:862.356306pt;}
.y18c{bottom:863.206301pt;}
.y207{bottom:863.353620pt;}
.y288{bottom:863.376285pt;}
.y1c5{bottom:863.489576pt;}
.y248{bottom:863.693606pt;}
.y61{bottom:867.480306pt;}
.y97{bottom:868.653564pt;}
.y102{bottom:868.653595pt;}
.y28{bottom:872.377441pt;}
.y153{bottom:875.684306pt;}
.y18b{bottom:876.534301pt;}
.y206{bottom:876.681620pt;}
.y287{bottom:876.704285pt;}
.y1c4{bottom:876.817576pt;}
.y247{bottom:877.021606pt;}
.y60{bottom:884.146973pt;}
.y96{bottom:885.320231pt;}
.y101{bottom:885.320262pt;}
.y152{bottom:889.012306pt;}
.y18a{bottom:889.862301pt;}
.y205{bottom:890.009620pt;}
.y286{bottom:890.032285pt;}
.y1c3{bottom:890.145576pt;}
.y246{bottom:890.349606pt;}
.y27{bottom:896.377441pt;}
.y5f{bottom:900.813639pt;}
.y134{bottom:901.674642pt;}
.y95{bottom:901.986898pt;}
.y100{bottom:901.986928pt;}
.y13a{bottom:901.986938pt;}
.y151{bottom:902.340306pt;}
.y189{bottom:903.190301pt;}
.y204{bottom:903.337620pt;}
.y285{bottom:903.360285pt;}
.y1c2{bottom:903.473576pt;}
.y245{bottom:903.677606pt;}
.y150{bottom:915.668306pt;}
.y188{bottom:916.518301pt;}
.y203{bottom:916.665620pt;}
.y284{bottom:916.688285pt;}
.y1c1{bottom:916.801576pt;}
.y244{bottom:917.005606pt;}
.y5e{bottom:917.480306pt;}
.y132{bottom:918.486654pt;}
.y94{bottom:918.653564pt;}
.yff{bottom:918.653595pt;}
.y139{bottom:918.653605pt;}
.y14f{bottom:928.996306pt;}
.y187{bottom:929.846301pt;}
.y202{bottom:929.993620pt;}
.y283{bottom:930.016285pt;}
.y1c0{bottom:930.129576pt;}
.y243{bottom:930.333606pt;}
.y5d{bottom:934.146973pt;}
.y93{bottom:935.320231pt;}
.yfe{bottom:935.320262pt;}
.y138{bottom:935.320272pt;}
.y14e{bottom:942.324306pt;}
.y201{bottom:943.321620pt;}
.y282{bottom:943.344285pt;}
.y1bf{bottom:943.457576pt;}
.y242{bottom:943.661606pt;}
.y5c{bottom:950.813639pt;}
.y92{bottom:951.986898pt;}
.yfd{bottom:951.986928pt;}
.y137{bottom:951.986938pt;}
.yf4{bottom:953.076416pt;}
.y14d{bottom:955.652306pt;}
.y186{bottom:956.513634pt;}
.y26{bottom:956.561849pt;}
.y200{bottom:956.649620pt;}
.y1be{bottom:956.785576pt;}
.y241{bottom:956.989606pt;}
.y5b{bottom:967.480306pt;}
.y91{bottom:968.653564pt;}
.yfc{bottom:968.653595pt;}
.y136{bottom:968.653605pt;}
.y14c{bottom:968.980306pt;}
.y185{bottom:969.841634pt;}
.y1ff{bottom:969.977620pt;}
.y1bd{bottom:970.113576pt;}
.y240{bottom:970.317606pt;}
.y25{bottom:986.299161pt;}
.y24{bottom:1001.406494pt;}
.y5a{bottom:1002.206543pt;}
.y90{bottom:1002.206706pt;}
.h2a{height:6.133333pt;}
.h25{height:6.266666pt;}
.h19{height:7.333333pt;}
.h23{height:8.400000pt;}
.h27{height:8.800000pt;}
.h2c{height:9.065333pt;}
.h17{height:9.066667pt;}
.h1b{height:11.201333pt;}
.h1e{height:11.466667pt;}
.h1f{height:11.865333pt;}
.h21{height:12.266666pt;}
.h28{height:12.401333pt;}
.h14{height:23.292266pt;}
.h24{height:23.525879pt;}
.h2b{height:24.005999pt;}
.h26{height:24.539466pt;}
.h1a{height:28.220385pt;}
.h7{height:28.560000pt;}
.ha{height:30.080000pt;}
.h13{height:33.274667pt;}
.h22{height:34.835372pt;}
.h1c{height:34.888719pt;}
.h18{height:35.315492pt;}
.h29{height:35.635572pt;}
.h20{height:36.435772pt;}
.h10{height:39.146667pt;}
.hb{height:39.712000pt;}
.h16{height:40.165333pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h2e{height:46.376000pt;}
.h11{height:47.253333pt;}
.h15{height:48.937267pt;}
.h2{height:48.960000pt;}
.hc{height:49.298667pt;}
.h2d{height:52.448000pt;}
.hf{height:52.746667pt;}
.h1d{height:54.560000pt;}
.he{height:57.658667pt;}
.h12{height:63.296000pt;}
.h5{height:69.360000pt;}
.hd{height:75.605333pt;}
.h4{height:105.826671pt;}
.h8{height:1054.488000pt;}
.h9{height:1054.666667pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.wb{width:5.093333pt;}
.we{width:5.853333pt;}
.wa{width:5.893333pt;}
.wc{width:9.120000pt;}
.wf{width:11.133333pt;}
.w7{width:12.331999pt;}
.w4{width:12.374667pt;}
.w6{width:13.666667pt;}
.w9{width:18.680000pt;}
.w5{width:27.266667pt;}
.w8{width:90.813333pt;}
.wd{width:131.279999pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x1b{left:-0.952271pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x23{left:73.951467pt;}
.x7{left:75.717199pt;}
.xb{left:83.151469pt;}
.x9{left:86.929867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xf{left:95.481598pt;}
.x4{left:180.874667pt;}
.x2b{left:197.828129pt;}
.x27{left:201.684794pt;}
.x2a{left:202.644796pt;}
.x28{left:224.362794pt;}
.x24{left:240.743998pt;}
.x25{left:252.107727pt;}
.x3{left:404.408000pt;}
.x8{left:408.191466pt;}
.x10{left:420.558797pt;}
.xc{left:423.298125pt;}
.xa{left:427.081599pt;}
.xe{left:429.538114pt;}
.x26{left:430.834138pt;}
.x1a{left:436.600016pt;}
.x11{left:451.013346pt;}
.x1c{left:455.346395pt;}
.x12{left:478.277588pt;}
.x18{left:544.230672pt;}
.x29{left:545.685462pt;}
.x1f{left:574.585327pt;}
.x20{left:579.703613pt;}
.x13{left:584.309326pt;}
.x14{left:598.005859pt;}
.x19{left:635.238810pt;}
.x5{left:647.307210pt;}
.x1d{left:648.557332pt;}
.x1e{left:654.517985pt;}
.x15{left:659.749349pt;}
.x16{left:673.472941pt;}
.x21{left:697.050700pt;}
.x22{left:706.195882pt;}
.xd{left:709.519613pt;}
.x17{left:713.336019pt;}
}




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