
    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_b20aaf462624c4cb463eda99.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_f0bac060d6f1b5a27c1243c0.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c8c818a28dacf3d27b61eb0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_341c2781725b0558c399f4d9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1a0bd67e5dc3e25f581c13eb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_410cb91dc1f93c477f2265ee.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d705f0339afaf15505ebbb24.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.900000;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_d9e0b976cc7607a8a04dbd7d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_fb6f8d3d29697479aafe0818.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.014160;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_7a52ec2496fe30266c5fe25b.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_55e0d8b939fa03aab4ad70bf.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.021484;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_ae5ce9b61e2a30c9d1fedb46.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.726000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-10.920000px;}
.v3{vertical-align:-8.970000px;}
.v7{vertical-align:-7.624500px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:1.248000px;}
.v4{vertical-align:10.494000px;}
.v8{vertical-align:19.530000px;}
.v6{vertical-align:27.723600px;}
.v5{vertical-align:30.024000px;}
.v2{vertical-align:35.604000px;}
.ls46{letter-spacing:-0.256500px;}
.ls45{letter-spacing:-0.085500px;}
.ls0{letter-spacing:0.000000px;}
.ls4a{letter-spacing:0.000422px;}
.ls29{letter-spacing:0.000435px;}
.ls48{letter-spacing:0.001036px;}
.ls13{letter-spacing:0.001148px;}
.ls49{letter-spacing:0.001155px;}
.ls47{letter-spacing:0.001449px;}
.ls24{letter-spacing:0.002467px;}
.lsc{letter-spacing:0.003226px;}
.ls1a{letter-spacing:0.003965px;}
.ls11{letter-spacing:0.004665px;}
.ls44{letter-spacing:0.171000px;}
.ls15{letter-spacing:0.548815px;}
.ls36{letter-spacing:0.642088px;}
.ls35{letter-spacing:0.648088px;}
.ls34{letter-spacing:0.717483px;}
.ls7{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls19{letter-spacing:2.540820px;}
.ls23{letter-spacing:2.988600px;}
.lsf{letter-spacing:2.989200px;}
.ls21{letter-spacing:2.994600px;}
.ls31{letter-spacing:11.775793px;}
.ls38{letter-spacing:11.951700px;}
.ls6{letter-spacing:11.954850px;}
.ls37{letter-spacing:11.955787px;}
.ls2b{letter-spacing:12.697288px;}
.ls18{letter-spacing:12.702388px;}
.ls3a{letter-spacing:12.944853px;}
.ls3b{letter-spacing:12.950976px;}
.ls1b{letter-spacing:13.308860px;}
.ls1c{letter-spacing:13.313960px;}
.ls20{letter-spacing:13.449600px;}
.ls4b{letter-spacing:13.451510px;}
.ls2f{letter-spacing:13.509286px;}
.ls3e{letter-spacing:14.094088px;}
.ls41{letter-spacing:14.100088px;}
.ls39{letter-spacing:14.465695px;}
.ls30{letter-spacing:14.764573px;}
.ls9{letter-spacing:14.884124px;}
.ls16{letter-spacing:14.937986px;}
.ls4{letter-spacing:14.943900px;}
.lsd{letter-spacing:14.943986px;}
.ls32{letter-spacing:14.944665px;}
.ls8{letter-spacing:15.123227px;}
.ls2a{letter-spacing:15.239820px;}
.ls2d{letter-spacing:15.242158px;}
.lsa{letter-spacing:15.242778px;}
.ls17{letter-spacing:15.244920px;}
.ls5{letter-spacing:15.302554px;}
.ls33{letter-spacing:15.687986px;}
.lsb{letter-spacing:15.720983px;}
.ls2c{letter-spacing:15.877320px;}
.ls25{letter-spacing:16.434600px;}
.ls27{letter-spacing:16.440600px;}
.ls40{letter-spacing:17.106600px;}
.ls3f{letter-spacing:17.112600px;}
.ls10{letter-spacing:17.929200px;}
.ls14{letter-spacing:17.931950px;}
.ls12{letter-spacing:17.931986px;}
.lse{letter-spacing:17.935200px;}
.ls3{letter-spacing:17.992456px;}
.ls1e{letter-spacing:19.845499px;}
.ls1d{letter-spacing:20.921460px;}
.ls2e{letter-spacing:23.252708px;}
.ls43{letter-spacing:23.730913px;}
.ls1f{letter-spacing:24.627547px;}
.ls1{letter-spacing:32.009510px;}
.ls28{letter-spacing:169.188600px;}
.ls26{letter-spacing:210.894600px;}
.ls22{letter-spacing:323.100600px;}
.ls3d{letter-spacing:371.712600px;}
.ls3c{letter-spacing:393.498600px;}
.ls42{letter-spacing:454.812845px;}
.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;}
}
.ws6c{word-spacing:-45.088735px;}
.ws74{word-spacing:-38.325425px;}
.ws98{word-spacing:-26.899200px;}
.ws1{word-spacing:-22.718660px;}
.ws52{word-spacing:-14.943900px;}
.wsc5{word-spacing:-14.449500px;}
.ws99{word-spacing:-13.449600px;}
.wsc6{word-spacing:-12.825000px;}
.ws78{word-spacing:-12.702315px;}
.ws21{word-spacing:-11.955150px;}
.ws6e{word-spacing:-11.357400px;}
.ws7d{word-spacing:-9.653790px;}
.wsa8{word-spacing:-3.108331px;}
.wsf9{word-spacing:-2.905114px;}
.ws85{word-spacing:-2.869229px;}
.wsb7{word-spacing:-2.749678px;}
.ws67{word-spacing:-2.630126px;}
.ws83{word-spacing:-2.570351px;}
.ws81{word-spacing:-2.450800px;}
.ws8d{word-spacing:-2.391024px;}
.wsc7{word-spacing:-2.331248px;}
.ws104{word-spacing:-2.313331px;}
.ws92{word-spacing:-2.271473px;}
.ws30{word-spacing:-2.211697px;}
.ws31{word-spacing:-2.151922px;}
.wsb5{word-spacing:-2.032370px;}
.wsb6{word-spacing:-1.995136px;}
.wsb4{word-spacing:-1.989013px;}
.ws80{word-spacing:-1.972595px;}
.wscc{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws39{word-spacing:-1.853044px;}
.ws49{word-spacing:-1.793268px;}
.wsee{word-spacing:-1.775347px;}
.ws2a{word-spacing:-1.733492px;}
.wsf6{word-spacing:-1.721549px;}
.ws8{word-spacing:-1.673717px;}
.ws111{word-spacing:-1.613952px;}
.ws9a{word-spacing:-1.613941px;}
.wsfb{word-spacing:-1.560154px;}
.ws8e{word-spacing:-1.554166px;}
.ws4c{word-spacing:-1.494390px;}
.wsd8{word-spacing:-1.452557px;}
.ws4f{word-spacing:-1.434614px;}
.ws89{word-spacing:-1.374839px;}
.wsd9{word-spacing:-1.344960px;}
.ws2{word-spacing:-1.322630px;}
.ws2c{word-spacing:-1.315063px;}
.ws103{word-spacing:-1.291162px;}
.ws4b{word-spacing:-1.255288px;}
.wsf3{word-spacing:-1.237363px;}
.wsb{word-spacing:-1.195512px;}
.ws23{word-spacing:-1.135736px;}
.ws29{word-spacing:-1.075961px;}
.ws4e{word-spacing:-0.956410px;}
.ws3e{word-spacing:-0.777083px;}
.wsde{word-spacing:-0.699379px;}
.ws42{word-spacing:-0.657532px;}
.wsdc{word-spacing:-0.645581px;}
.ws4a{word-spacing:-0.537980px;}
.ws5a{word-spacing:-0.478205px;}
.ws87{word-spacing:-0.358654px;}
.ws17{word-spacing:-0.298878px;}
.ws10{word-spacing:-0.239102px;}
.wsd5{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.wse4{word-spacing:-0.161395px;}
.ws1b{word-spacing:-0.119551px;}
.wse1{word-spacing:-0.107597px;}
.ws1a{word-spacing:-0.059776px;}
.wsdd{word-spacing:-0.053798px;}
.ws22{word-spacing:-0.047821px;}
.ws7c{word-spacing:-0.008409px;}
.ws75{word-spacing:-0.007780px;}
.ws7b{word-spacing:-0.006925px;}
.ws7a{word-spacing:-0.004786px;}
.ws73{word-spacing:-0.002438px;}
.ws76{word-spacing:-0.000795px;}
.ws77{word-spacing:-0.000522px;}
.ws79{word-spacing:-0.000252px;}
.ws0{word-spacing:0.000000px;}
.wsf7{word-spacing:0.053798px;}
.ws13{word-spacing:0.059776px;}
.wsea{word-spacing:0.107597px;}
.wsd{word-spacing:0.119551px;}
.wsd6{word-spacing:0.161395px;}
.ws2e{word-spacing:0.179327px;}
.ws10e{word-spacing:0.215194px;}
.ws19{word-spacing:0.239102px;}
.ws1f{word-spacing:0.298878px;}
.wsc{word-spacing:0.358654px;}
.ws51{word-spacing:0.418429px;}
.ws1e{word-spacing:0.537980px;}
.ws7f{word-spacing:0.635102px;}
.ws7e{word-spacing:0.635602px;}
.ws28{word-spacing:0.657532px;}
.wsb9{word-spacing:0.667450px;}
.wsba{word-spacing:0.673450px;}
.ws108{word-spacing:0.699379px;}
.ws3c{word-spacing:0.717307px;}
.ws18{word-spacing:0.777083px;}
.ws33{word-spacing:0.836858px;}
.ws37{word-spacing:0.896634px;}
.wsa7{word-spacing:0.956410px;}
.wsd1{word-spacing:1.016185px;}
.wsa2{word-spacing:1.075961px;}
.ws102{word-spacing:1.075968px;}
.ws60{word-spacing:1.135736px;}
.ws5f{word-spacing:1.195512px;}
.ws59{word-spacing:1.255288px;}
.wscb{word-spacing:1.315063px;}
.wsca{word-spacing:1.374839px;}
.ws101{word-spacing:1.398758px;}
.ws4d{word-spacing:1.494390px;}
.wsd0{word-spacing:1.613941px;}
.ws61{word-spacing:1.733492px;}
.ws97{word-spacing:1.853044px;}
.wsdb{word-spacing:1.882944px;}
.ws15{word-spacing:1.912819px;}
.ws41{word-spacing:1.972595px;}
.ws3a{word-spacing:2.032370px;}
.wsf5{word-spacing:2.044339px;}
.ws40{word-spacing:2.151922px;}
.wsc4{word-spacing:2.211697px;}
.wse6{word-spacing:2.259533px;}
.wsa6{word-spacing:2.391024px;}
.wsf2{word-spacing:2.420928px;}
.ws9{word-spacing:2.450800px;}
.ws84{word-spacing:2.570351px;}
.ws3b{word-spacing:2.630126px;}
.ws16{word-spacing:2.689902px;}
.ws44{word-spacing:2.749678px;}
.wscf{word-spacing:2.809453px;}
.ws66{word-spacing:2.929004px;}
.wsc8{word-spacing:2.988780px;}
.ws27{word-spacing:3.048556px;}
.ws32{word-spacing:3.108331px;}
.ws57{word-spacing:3.168107px;}
.wse3{word-spacing:3.174106px;}
.wsd7{word-spacing:3.222576px;}
.wse7{word-spacing:3.225917px;}
.wse0{word-spacing:3.227904px;}
.ws106{word-spacing:3.228874px;}
.ws109{word-spacing:3.229891px;}
.ws10d{word-spacing:3.281702px;}
.ws9e{word-spacing:3.287658px;}
.ws5e{word-spacing:3.347434px;}
.ws93{word-spacing:3.407209px;}
.ws100{word-spacing:3.443098px;}
.ws25{word-spacing:3.466985px;}
.ws110{word-spacing:3.496896px;}
.ws24{word-spacing:3.526760px;}
.wse{word-spacing:3.583475px;}
.wsf{word-spacing:3.586536px;}
.wsfc{word-spacing:3.604493px;}
.wsb8{word-spacing:3.646312px;}
.ws56{word-spacing:3.765863px;}
.ws105{word-spacing:3.765888px;}
.wsfd{word-spacing:3.819686px;}
.ws9d{word-spacing:3.825638px;}
.ws94{word-spacing:3.885414px;}
.ws4{word-spacing:3.945190px;}
.wsec{word-spacing:4.034880px;}
.ws5c{word-spacing:4.064741px;}
.ws5d{word-spacing:4.244068px;}
.ws58{word-spacing:4.303843px;}
.ws47{word-spacing:4.423394px;}
.ws54{word-spacing:4.483170px;}
.ws91{word-spacing:4.602721px;}
.ws7{word-spacing:4.662497px;}
.ws34{word-spacing:4.722272px;}
.ws8c{word-spacing:4.782048px;}
.ws8a{word-spacing:4.841824px;}
.ws1c{word-spacing:4.901599px;}
.ws1d{word-spacing:4.961375px;}
.ws9b{word-spacing:5.021150px;}
.ws86{word-spacing:5.200477px;}
.wsa4{word-spacing:5.439580px;}
.ws9f{word-spacing:5.586656px;}
.wsa0{word-spacing:5.591756px;}
.wsa5{word-spacing:5.798233px;}
.ws8b{word-spacing:5.977560px;}
.ws9c{word-spacing:6.037336px;}
.ws64{word-spacing:6.097111px;}
.ws35{word-spacing:6.216662px;}
.wsa1{word-spacing:6.224156px;}
.wsa9{word-spacing:6.336214px;}
.ws95{word-spacing:6.395989px;}
.ws46{word-spacing:6.515540px;}
.ws6d{word-spacing:6.572537px;}
.ws5{word-spacing:6.575316px;}
.ws6b{word-spacing:6.578537px;}
.ws36{word-spacing:6.635092px;}
.wsd4{word-spacing:6.778598px;}
.ws70{word-spacing:6.814418px;}
.wsf8{word-spacing:6.939994px;}
.ws45{word-spacing:7.053521px;}
.ws72{word-spacing:7.113296px;}
.ws50{word-spacing:7.173072px;}
.wsa{word-spacing:7.232848px;}
.ws12{word-spacing:7.471950px;}
.ws14{word-spacing:7.531726px;}
.ws2b{word-spacing:7.591501px;}
.ws5b{word-spacing:7.651277px;}
.ws3d{word-spacing:7.711052px;}
.ws2d{word-spacing:7.950155px;}
.ws69{word-spacing:8.189257px;}
.ws38{word-spacing:8.308808px;}
.wscd{word-spacing:8.368584px;}
.ws68{word-spacing:8.488135px;}
.ws82{word-spacing:8.667462px;}
.wsc1{word-spacing:8.787013px;}
.ws11{word-spacing:8.846789px;}
.ws3f{word-spacing:8.906564px;}
.ws48{word-spacing:9.205442px;}
.wse9{word-spacing:9.414720px;}
.ws90{word-spacing:9.504320px;}
.wsf0{word-spacing:9.576115px;}
.ws6{word-spacing:9.623872px;}
.ws8f{word-spacing:9.743423px;}
.ws10a{word-spacing:9.952704px;}
.ws71{word-spacing:10.161852px;}
.ws6a{word-spacing:10.281403px;}
.wsfa{word-spacing:10.490688px;}
.wsc3{word-spacing:10.520506px;}
.wsa3{word-spacing:10.998710px;}
.wsef{word-spacing:11.620454px;}
.ws96{word-spacing:11.775793px;}
.ws112{word-spacing:11.781850px;}
.ws20{word-spacing:11.910929px;}
.ws62{word-spacing:11.955120px;}
.wsda{word-spacing:12.050842px;}
.wsf4{word-spacing:12.158438px;}
.wsc2{word-spacing:12.194222px;}
.wsd3{word-spacing:12.588826px;}
.wsd2{word-spacing:13.126810px;}
.wse5{word-spacing:13.180608px;}
.wse2{word-spacing:13.288205px;}
.wsdf{word-spacing:13.342003px;}
.ws10c{word-spacing:13.382582px;}
.wsf1{word-spacing:13.384694px;}
.wsfe{word-spacing:13.385462px;}
.ws55{word-spacing:13.389734px;}
.ws107{word-spacing:13.392749px;}
.wse8{word-spacing:13.395802px;}
.wsc9{word-spacing:13.449510px;}
.ws10b{word-spacing:13.503398px;}
.wsff{word-spacing:13.557197px;}
.ws10f{word-spacing:13.557664px;}
.wseb{word-spacing:13.718592px;}
.wsce{word-spacing:14.645022px;}
.ws2f{word-spacing:14.884124px;}
.wsaa{word-spacing:17.054093px;}
.wsed{word-spacing:17.430682px;}
.ws88{word-spacing:18.470660px;}
.ws65{word-spacing:18.889090px;}
.ws43{word-spacing:23.910240px;}
.ws63{word-spacing:26.301264px;}
.ws53{word-spacing:26.839244px;}
.wsb1{word-spacing:78.453197px;}
.wsac{word-spacing:84.732480px;}
.wsb2{word-spacing:88.916774px;}
.wsaf{word-spacing:127.763664px;}
.ws6f{word-spacing:128.648537px;}
.wsb3{word-spacing:129.240576px;}
.wsb0{word-spacing:136.720531px;}
.wsae{word-spacing:147.154310px;}
.wsab{word-spacing:203.938733px;}
.wsad{word-spacing:211.418688px;}
.wsbc{word-spacing:288.807418px;}
.wsbb{word-spacing:293.327971px;}
.wsbe{word-spacing:310.593418px;}
.wsbd{word-spacing:315.113971px;}
.wsc0{word-spacing:347.995594px;}
.wsbf{word-spacing:368.247456px;}
._20{margin-left:-13.449600px;}
._17{margin-left:-8.772778px;}
._2{margin-left:-7.711052px;}
._0{margin-left:-5.917824px;}
._4{margin-left:-4.232192px;}
._3{margin-left:-2.958912px;}
._7{margin-left:-1.322630px;}
._8{width:1.091170px;}
._19{width:2.982166px;}
._45{width:4.893336px;}
._44{width:5.996970px;}
._42{width:10.226940px;}
._1d{width:11.938739px;}
._d{width:13.971149px;}
._5{width:15.709133px;}
._6{width:17.645875px;}
._f{width:19.255310px;}
._15{width:20.682397px;}
._14{width:21.818094px;}
._46{width:22.845600px;}
._c{width:24.037398px;}
._e{width:25.285118px;}
._a{width:27.265241px;}
._4a{width:28.360790px;}
._12{width:29.529146px;}
._21{width:30.971328px;}
._18{width:32.039722px;}
._1{width:33.355008px;}
._1e{width:35.095844px;}
._1f{width:37.113922px;}
._9{width:38.491178px;}
._1c{width:40.356058px;}
._13{width:42.523153px;}
._1b{width:43.935066px;}
._b{width:45.556574px;}
._49{width:46.826118px;}
._1a{width:49.920193px;}
._41{width:51.055930px;}
._48{width:57.685774px;}
._47{width:59.058293px;}
._2a{width:63.751104px;}
._27{width:86.669222px;}
._29{width:89.305344px;}
._16{width:90.388314px;}
._28{width:97.805491px;}
._2c{width:102.384720px;}
._31{width:105.947222px;}
._3a{width:120.050352px;}
._2e{width:124.543296px;}
._32{width:128.401325px;}
._23{width:137.024525px;}
._2b{width:141.382195px;}
._2d{width:144.932890px;}
._3b{width:147.784205px;}
._2f{width:150.205133px;}
._26{width:153.217843px;}
._30{width:167.366822px;}
._33{width:170.041594px;}
._24{width:187.756416px;}
._25{width:214.440422px;}
._35{width:215.696410px;}
._34{width:232.193894px;}
._37{width:236.605363px;}
._36{width:253.767053px;}
._38{width:271.090138px;}
._40{width:294.841200px;}
._3c{width:330.053184px;}
._3d{width:336.024806px;}
._3e{width:340.920461px;}
._3f{width:404.079782px;}
._10{width:925.032653px;}
._43{width:1538.800500px;}
._39{width:2073.346837px;}
._11{width:2097.256837px;}
._22{width:3553.030837px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:38.615160px;}
.fs11{font-size:41.842800px;}
.fsa{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:45.429600px;}
.fs14{font-size:45.486000px;}
.fs9{font-size:47.236800px;}
.fsd{font-size:47.337600px;}
.fsb{font-size:47.820600px;}
.fse{font-size:50.809260px;}
.fs16{font-size:51.300000px;}
.fs10{font-size:52.943610px;}
.fs8{font-size:53.798400px;}
.fs13{font-size:56.058000px;}
.fs15{font-size:57.114000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs12{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y1b9{bottom:-457.484850px;}
.y1d3{bottom:-428.414850px;}
.y1d2{bottom:-409.177350px;}
.y1d1{bottom:-389.939850px;}
.y1d0{bottom:-370.702350px;}
.y1cf{bottom:-351.464850px;}
.y1ce{bottom:-332.227350px;}
.y1cd{bottom:-313.046850px;}
.y1cc{bottom:-293.809350px;}
.y1cb{bottom:-274.571850px;}
.y1ca{bottom:-255.334350px;}
.y1c9{bottom:-236.096850px;}
.y1c8{bottom:-216.859350px;}
.y1c7{bottom:-197.621850px;}
.y1c6{bottom:-178.469850px;}
.y1c5{bottom:-159.232350px;}
.y1c4{bottom:-139.994850px;}
.y1c3{bottom:-120.757350px;}
.y1c2{bottom:-92.969850px;}
.y1c1{bottom:-56.546850px;}
.y1c0{bottom:-20.722350px;}
.y0{bottom:0.000000px;}
.y1bf{bottom:2.533650px;}
.y30{bottom:3.425340px;}
.y24{bottom:9.233944px;}
.y2f{bottom:14.151273px;}
.y23{bottom:26.903761px;}
.y52{bottom:63.780000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y51{bottom:108.612000px;}
.y1ff{bottom:112.302000px;}
.yee{bottom:113.349000px;}
.y186{bottom:113.934000px;}
.y233{bottom:119.239500px;}
.y11c{bottom:121.591500px;}
.y13b{bottom:122.314500px;}
.ya3{bottom:123.121500px;}
.yc5{bottom:124.527000px;}
.y81{bottom:128.023500px;}
.y50{bottom:128.875500px;}
.yed{bottom:133.612500px;}
.y185{bottom:134.199000px;}
.y1fe{bottom:136.467000px;}
.y232{bottom:138.606000px;}
.y21{bottom:139.264499px;}
.y11b{bottom:141.855000px;}
.y13a{bottom:142.579500px;}
.ya2{bottom:143.386500px;}
.yc4{bottom:144.790500px;}
.y15a{bottom:146.656500px;}
.y80{bottom:148.288500px;}
.y4f{bottom:149.139000px;}
.y1b6{bottom:152.250000px;}
.yec{bottom:153.877500px;}
.y184{bottom:154.462500px;}
.y231{bottom:157.974000px;}
.y1fd{bottom:160.632000px;}
.y11a{bottom:162.120000px;}
.y139{bottom:162.843000px;}
.ya1{bottom:163.650000px;}
.yc3{bottom:165.055500px;}
.y159{bottom:166.920000px;}
.y7f{bottom:168.552000px;}
.y4e{bottom:169.404000px;}
.y1b5{bottom:174.025500px;}
.yeb{bottom:174.141000px;}
.y183{bottom:174.727500px;}
.y1fc{bottom:175.830000px;}
.y230{bottom:177.340500px;}
.y119{bottom:182.383500px;}
.y138{bottom:183.108000px;}
.ya0{bottom:183.913500px;}
.yc2{bottom:185.319000px;}
.y158{bottom:187.183500px;}
.y7e{bottom:188.815500px;}
.y4d{bottom:189.667500px;}
.yea{bottom:194.404500px;}
.y182{bottom:194.991000px;}
.y22f{bottom:196.708500px;}
.y18{bottom:196.933500px;}
.y1b4{bottom:197.740500px;}
.y1fb{bottom:199.993500px;}
.y118{bottom:202.648500px;}
.y137{bottom:203.371500px;}
.y9f{bottom:204.178500px;}
.yc1{bottom:205.582500px;}
.y157{bottom:207.448500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y4c{bottom:209.932500px;}
.y1b3{bottom:214.254000px;}
.ye9{bottom:214.669500px;}
.y1fa{bottom:215.191500px;}
.y181{bottom:215.254500px;}
.y22e{bottom:216.076500px;}
.y7d{bottom:218.046000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y117{bottom:222.912000px;}
.y136{bottom:223.635000px;}
.y9e{bottom:224.442000px;}
.yc0{bottom:225.847500px;}
.y156{bottom:227.712000px;}
.y4b{bottom:230.196000px;}
.y1f9{bottom:230.389500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ye8{bottom:234.933000px;}
.y22d{bottom:235.443000px;}
.y180{bottom:235.519500px;}
.y1b2{bottom:237.969000px;}
.y116{bottom:243.175500px;}
.y135{bottom:243.900000px;}
.y9d{bottom:244.707000px;}
.y1f8{bottom:245.589000px;}
.ybf{bottom:246.111000px;}
.y155{bottom:247.977000px;}
.y4a{bottom:250.459500px;}
.y7c{bottom:252.865500px;}
.y1b1{bottom:254.482500px;}
.y22c{bottom:254.811000px;}
.ye7{bottom:255.198000px;}
.y17f{bottom:255.783000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y115{bottom:263.440500px;}
.y134{bottom:264.163500px;}
.y9c{bottom:264.970500px;}
.ybe{bottom:266.376000px;}
.y154{bottom:268.240500px;}
.y49{bottom:270.724500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y7b{bottom:273.130500px;}
.y22b{bottom:274.177500px;}
.ye6{bottom:275.461500px;}
.y17e{bottom:276.048000px;}
.y1b0{bottom:278.197500px;}
.y1f7{bottom:278.719500px;}
.y114{bottom:283.704000px;}
.y133{bottom:284.428500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y9b{bottom:285.234000px;}
.ybd{bottom:286.639500px;}
.y153{bottom:288.504000px;}
.y48{bottom:290.988000px;}
.y7a{bottom:293.394000px;}
.y22a{bottom:293.545500px;}
.y1af{bottom:294.711000px;}
.ye5{bottom:295.725000px;}
.y17d{bottom:296.311500px;}
.y1f6{bottom:298.983000px;}
.y113{bottom:303.969000px;}
.y132{bottom:304.692000px;}
.y9a{bottom:305.499000px;}
.ybc{bottom:306.903000px;}
.y152{bottom:308.769000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y47{bottom:311.253000px;}
.y229{bottom:312.913500px;}
.y79{bottom:313.659000px;}
.ye4{bottom:315.990000px;}
.y17c{bottom:316.575000px;}
.y1ae{bottom:318.426000px;}
.y1f5{bottom:319.248000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y112{bottom:324.232500px;}
.y99{bottom:325.762500px;}
.ybb{bottom:327.168000px;}
.y151{bottom:329.032500px;}
.y46{bottom:331.516500px;}
.y228{bottom:332.280000px;}
.y78{bottom:333.922500px;}
.y1ad{bottom:334.939500px;}
.ye3{bottom:336.253500px;}
.y1f4{bottom:339.511500px;}
.y111{bottom:344.496000px;}
.y17b{bottom:345.805500px;}
.y98{bottom:346.027500px;}
.yba{bottom:347.431500px;}
.yf{bottom:348.133500px;}
.y150{bottom:349.297500px;}
.y227{bottom:351.648000px;}
.y45{bottom:351.780000px;}
.y77{bottom:354.186000px;}
.ye2{bottom:356.518500px;}
.y1ac{bottom:358.656000px;}
.y1f3{bottom:359.775000px;}
.y1d6{bottom:360.747000px;}
.y110{bottom:364.761000px;}
.y97{bottom:366.291000px;}
.yb9{bottom:367.696500px;}
.y131{bottom:368.742000px;}
.y14f{bottom:369.561000px;}
.y226{bottom:371.014500px;}
.y44{bottom:372.045000px;}
.y76{bottom:374.451000px;}
.y1ab{bottom:375.168000px;}
.y1f2{bottom:380.040000px;}
.y17a{bottom:380.625000px;}
.y10f{bottom:385.024500px;}
.y96{bottom:386.554500px;}
.ye{bottom:386.785499px;}
.yb8{bottom:387.960000px;}
.y130{bottom:389.005500px;}
.y14e{bottom:389.824500px;}
.y225{bottom:390.382500px;}
.y43{bottom:392.308500px;}
.ye1{bottom:393.669000px;}
.y75{bottom:394.714500px;}
.y1d5{bottom:395.566500px;}
.y1aa{bottom:398.884500px;}
.y1f1{bottom:400.303500px;}
.y179{bottom:400.890000px;}
.y10e{bottom:405.289500px;}
.y95{bottom:406.819500px;}
.yd{bottom:408.044999px;}
.yb7{bottom:408.223500px;}
.y12f{bottom:409.270500px;}
.y224{bottom:409.750500px;}
.y14d{bottom:410.089500px;}
.y42{bottom:412.573500px;}
.y74{bottom:414.979500px;}
.y1a9{bottom:415.321500px;}
.y1f0{bottom:420.568500px;}
.y178{bottom:421.153500px;}
.y1d4{bottom:425.512500px;}
.y10d{bottom:425.553000px;}
.y94{bottom:427.083000px;}
.yb6{bottom:428.488500px;}
.y223{bottom:429.117000px;}
.y12e{bottom:429.534000px;}
.y14c{bottom:430.353000px;}
.ye0{bottom:430.819500px;}
.y41{bottom:432.837000px;}
.y73{bottom:435.243000px;}
.y1a8{bottom:439.662000px;}
.y1ef{bottom:440.832000px;}
.y177{bottom:441.418500px;}
.y10c{bottom:445.816500px;}
.y93{bottom:447.348000px;}
.y1b7{bottom:447.942000px;}
.y222{bottom:448.485000px;}
.yb5{bottom:448.752000px;}
.y12d{bottom:449.799000px;}
.y14b{bottom:450.616500px;}
.ydf{bottom:451.083000px;}
.y40{bottom:453.100500px;}
.y72{bottom:455.506500px;}
.y1a7{bottom:456.100500px;}
.y1ee{bottom:461.095500px;}
.y176{bottom:461.682000px;}
.y10b{bottom:466.081500px;}
.y92{bottom:467.611500px;}
.y221{bottom:467.851500px;}
.yb4{bottom:469.017000px;}
.y12c{bottom:470.062500px;}
.y14a{bottom:470.881500px;}
.yde{bottom:471.348000px;}
.y3f{bottom:473.365500px;}
.y71{bottom:475.771500px;}
.y1a6{bottom:480.441000px;}
.y1ed{bottom:481.360500px;}
.y175{bottom:481.945500px;}
.y1be{bottom:482.416650px;}
.y253{bottom:484.027500px;}
.y10a{bottom:486.345000px;}
.y220{bottom:487.219500px;}
.y91{bottom:487.875000px;}
.yb3{bottom:489.280500px;}
.y12b{bottom:490.326000px;}
.y149{bottom:491.145000px;}
.ydd{bottom:491.611500px;}
.y3e{bottom:493.629000px;}
.y70{bottom:496.035000px;}
.y1a5{bottom:496.879500px;}
.y1bd{bottom:501.654150px;}
.yc{bottom:502.864502px;}
.y252{bottom:503.394000px;}
.y21f{bottom:506.587500px;}
.y109{bottom:506.610000px;}
.y90{bottom:508.140000px;}
.yb2{bottom:509.544000px;}
.y12a{bottom:510.591000px;}
.y174{bottom:511.176000px;}
.y148{bottom:511.410000px;}
.ydc{bottom:511.876500px;}
.y6f{bottom:516.300000px;}
.yb{bottom:520.864502px;}
.y1bc{bottom:520.891650px;}
.y1a4{bottom:521.220000px;}
.y251{bottom:522.762000px;}
.y3d{bottom:522.859500px;}
.y21e{bottom:525.954000px;}
.y108{bottom:526.873500px;}
.y8f{bottom:528.403500px;}
.yb1{bottom:529.809000px;}
.y129{bottom:530.854500px;}
.y147{bottom:531.673500px;}
.ydb{bottom:532.140000px;}
.y6e{bottom:536.563500px;}
.y1a3{bottom:537.657000px;}
.ya{bottom:538.864499px;}
.y1bb{bottom:540.043650px;}
.y21d{bottom:545.322000px;}
.y1ec{bottom:545.410500px;}
.y173{bottom:545.995500px;}
.y107{bottom:547.137000px;}
.y8e{bottom:548.667000px;}
.yb0{bottom:550.072500px;}
.y128{bottom:551.119500px;}
.y146{bottom:551.937000px;}
.yda{bottom:552.403500px;}
.y250{bottom:554.407500px;}
.y192{bottom:554.919000px;}
.y6d{bottom:556.827000px;}
.y9{bottom:556.864499px;}
.y1ba{bottom:559.281150px;}
.y1a2{bottom:561.997500px;}
.y21c{bottom:564.688500px;}
.y1eb{bottom:565.674000px;}
.y172{bottom:566.260500px;}
.y106{bottom:567.402000px;}
.y8d{bottom:568.932000px;}
.yaf{bottom:570.337500px;}
.y127{bottom:571.383000px;}
.y145{bottom:572.202000px;}
.yd9{bottom:572.668500px;}
.y24f{bottom:573.775500px;}
.y191{bottom:576.696000px;}
.y6c{bottom:577.092000px;}
.y1a1{bottom:578.511000px;}
.y21b{bottom:584.056500px;}
.y1ea{bottom:585.939000px;}
.y171{bottom:586.524000px;}
.y105{bottom:587.665500px;}
.y8c{bottom:589.195500px;}
.yae{bottom:590.601000px;}
.y126{bottom:591.646500px;}
.y144{bottom:592.465500px;}
.yd8{bottom:592.932000px;}
.y24e{bottom:593.142000px;}
.y190{bottom:593.208000px;}
.y1b8{bottom:594.849150px;}
.y6b{bottom:597.355500px;}
.y3c{bottom:599.268000px;}
.y1a0{bottom:602.226000px;}
.y21a{bottom:603.424500px;}
.y1e9{bottom:606.202500px;}
.y170{bottom:606.789000px;}
.y104{bottom:607.930500px;}
.y8b{bottom:609.460500px;}
.y18f{bottom:609.721500px;}
.yad{bottom:610.864500px;}
.y125{bottom:611.911500px;}
.y24d{bottom:612.510000px;}
.y143{bottom:612.730500px;}
.yd7{bottom:613.197000px;}
.y6a{bottom:617.619000px;}
.y19f{bottom:618.739500px;}
.y219{bottom:622.791000px;}
.y18e{bottom:626.235000px;}
.y1e8{bottom:626.466000px;}
.y103{bottom:628.194000px;}
.y8a{bottom:629.724000px;}
.yac{bottom:631.129500px;}
.y24c{bottom:631.878000px;}
.y124{bottom:632.175000px;}
.y142{bottom:632.994000px;}
.yd6{bottom:633.460500px;}
.y16f{bottom:636.019500px;}
.y3b{bottom:637.465500px;}
.y69{bottom:637.884000px;}
.y218{bottom:642.159000px;}
.y19e{bottom:642.454500px;}
.y18d{bottom:642.748500px;}
.y8{bottom:645.510000px;}
.y1e7{bottom:646.731000px;}
.y102{bottom:648.457500px;}
.y89{bottom:649.987500px;}
.y24b{bottom:651.244500px;}
.yab{bottom:651.393000px;}
.y123{bottom:652.438500px;}
.y141{bottom:653.257500px;}
.yd5{bottom:653.724000px;}
.y3a{bottom:657.729000px;}
.y68{bottom:658.147500px;}
.y19d{bottom:658.968000px;}
.y18c{bottom:659.260500px;}
.y217{bottom:661.527000px;}
.y7{bottom:666.771000px;}
.y1e6{bottom:666.994500px;}
.y101{bottom:668.722500px;}
.y88{bottom:670.252500px;}
.y24a{bottom:670.612500px;}
.y16e{bottom:670.839000px;}
.yaa{bottom:671.658000px;}
.y122{bottom:672.703500px;}
.y140{bottom:673.522500px;}
.yd4{bottom:673.989000px;}
.y18b{bottom:675.774000px;}
.y39{bottom:677.992500px;}
.y67{bottom:678.412500px;}
.y216{bottom:680.893500px;}
.y19c{bottom:682.683000px;}
.y1e5{bottom:687.258000px;}
.y100{bottom:688.986000px;}
.y249{bottom:689.979000px;}
.y87{bottom:690.516000px;}
.y16d{bottom:691.102500px;}
.ya9{bottom:691.921500px;}
.y18a{bottom:692.287500px;}
.y121{bottom:692.967000px;}
.y13f{bottom:693.786000px;}
.yd3{bottom:694.252500px;}
.y38{bottom:698.257500px;}
.y19b{bottom:699.196500px;}
.y215{bottom:700.261500px;}
.y1e4{bottom:707.523000px;}
.y66{bottom:707.643000px;}
.yff{bottom:709.251000px;}
.y248{bottom:709.347000px;}
.y86{bottom:710.781000px;}
.y16b{bottom:711.366000px;}
.ya8{bottom:712.185000px;}
.y120{bottom:713.232000px;}
.yd2{bottom:714.517500px;}
.y189{bottom:716.002500px;}
.y16c{bottom:716.791500px;}
.y37{bottom:718.521000px;}
.y214{bottom:719.628000px;}
.y19a{bottom:722.911500px;}
.y6{bottom:726.298500px;}
.y1e3{bottom:727.786500px;}
.y247{bottom:728.715000px;}
.y85{bottom:731.044500px;}
.y16a{bottom:731.631000px;}
.y11f{bottom:733.495500px;}
.yd1{bottom:734.781000px;}
.y13e{bottom:734.860500px;}
.y36{bottom:738.786000px;}
.y213{bottom:738.996000px;}
.y199{bottom:739.350000px;}
.ya7{bottom:741.415500px;}
.y65{bottom:742.462500px;}
.yfd{bottom:743.611050px;}
.y188{bottom:747.622500px;}
.y1e2{bottom:748.051500px;}
.y246{bottom:748.081500px;}
.y84{bottom:751.308000px;}
.y169{bottom:751.894500px;}
.y3{bottom:752.599495px;}
.y13d{bottom:753.789000px;}
.yd0{bottom:755.044500px;}
.y212{bottom:758.364000px;}
.y35{bottom:759.049500px;}
.y11e{bottom:762.726000px;}
.y198{bottom:763.690500px;}
.yfc{bottom:764.646000px;}
.y245{bottom:767.449500px;}
.y1e1{bottom:768.315000px;}
.y83{bottom:771.573000px;}
.y13c{bottom:772.717500px;}
.yfe{bottom:775.432500px;}
.ya6{bottom:776.235000px;}
.y64{bottom:777.282000px;}
.y211{bottom:777.730500px;}
.y34{bottom:779.313000px;}
.y197{bottom:780.129000px;}
.y168{bottom:781.125000px;}
.ycf{bottom:784.275000px;}
.yfb{bottom:785.680950px;}
.y244{bottom:786.816000px;}
.y1e0{bottom:788.578500px;}
.y82{bottom:791.836500px;}
.ya5{bottom:796.500000px;}
.y210{bottom:797.098500px;}
.y11d{bottom:797.545500px;}
.y187{bottom:798.445500px;}
.y33{bottom:799.578000px;}
.y196{bottom:804.469500px;}
.y243{bottom:806.184000px;}
.yfa{bottom:806.715900px;}
.y1df{bottom:808.843500px;}
.y63{bottom:812.101500px;}
.y167{bottom:815.944500px;}
.y20f{bottom:816.465000px;}
.yce{bottom:819.094500px;}
.y32{bottom:819.841500px;}
.y195{bottom:820.983000px;}
.y242{bottom:825.552000px;}
.y1de{bottom:829.107000px;}
.y62{bottom:832.365000px;}
.ya4{bottom:834.696000px;}
.y20e{bottom:835.833000px;}
.y166{bottom:836.209500px;}
.ycd{bottom:839.359500px;}
.y31{bottom:840.106500px;}
.yf9{bottom:841.369500px;}
.y194{bottom:844.698000px;}
.y241{bottom:844.918500px;}
.y1dd{bottom:849.372000px;}
.y61{bottom:852.628500px;}
.y20d{bottom:855.201000px;}
.y165{bottom:856.473000px;}
.yf8{bottom:861.633000px;}
.y240{bottom:864.286500px;}
.y1dc{bottom:869.635500px;}
.y2e{bottom:870.053964px;}
.y2d{bottom:870.447000px;}
.y60{bottom:872.893500px;}
.y20c{bottom:874.567500px;}
.y193{bottom:876.318000px;}
.y164{bottom:876.736500px;}
.ycc{bottom:877.555500px;}
.y2{bottom:879.369000px;}
.yf7{bottom:881.898000px;}
.y23f{bottom:883.653000px;}
.y1db{bottom:889.899000px;}
.y5f{bottom:893.157000px;}
.y20b{bottom:893.935500px;}
.ycb{bottom:897.820500px;}
.yf6{bottom:902.161500px;}
.y23e{bottom:903.021000px;}
.y163{bottom:905.967000px;}
.y2c{bottom:909.819000px;}
.y1da{bottom:910.164000px;}
.y20a{bottom:913.302000px;}
.y5e{bottom:913.422000px;}
.yca{bottom:918.084000px;}
.y23d{bottom:922.389000px;}
.yf5{bottom:922.425000px;}
.y2b{bottom:927.976500px;}
.y1d9{bottom:930.427500px;}
.y209{bottom:932.670000px;}
.y5d{bottom:933.685500px;}
.yc9{bottom:938.349000px;}
.y162{bottom:940.786500px;}
.y23c{bottom:941.755500px;}
.yf4{bottom:942.690000px;}
.y2a{bottom:946.132500px;}
.y1d8{bottom:950.692500px;}
.y208{bottom:952.038000px;}
.y5c{bottom:953.949000px;}
.yc8{bottom:958.612500px;}
.y23b{bottom:961.123500px;}
.yf3{bottom:962.953500px;}
.y1{bottom:966.726000px;}
.y29{bottom:967.771500px;}
.y207{bottom:971.404500px;}
.y5b{bottom:974.214000px;}
.y160{bottom:977.202225px;}
.y1d7{bottom:979.923000px;}
.y23a{bottom:980.490000px;}
.yf2{bottom:983.218500px;}
.y206{bottom:990.772500px;}
.y15f{bottom:994.427475px;}
.y5a{bottom:994.477500px;}
.y161{bottom:994.696500px;}
.yc7{bottom:996.808500px;}
.y239{bottom:999.858000px;}
.y205{bottom:1010.139000px;}
.y28{bottom:1010.451000px;}
.y15e{bottom:1011.651450px;}
.y59{bottom:1014.742500px;}
.yc6{bottom:1017.073500px;}
.yf0{bottom:1018.491000px;}
.y238{bottom:1019.226000px;}
.yf1{bottom:1028.938500px;}
.y204{bottom:1029.507000px;}
.y58{bottom:1035.006000px;}
.y237{bottom:1038.592500px;}
.yef{bottom:1038.754500px;}
.y27{bottom:1040.848500px;}
.y15d{bottom:1046.304000px;}
.y203{bottom:1048.875000px;}
.y57{bottom:1055.269500px;}
.y236{bottom:1057.960500px;}
.y15c{bottom:1066.567500px;}
.y202{bottom:1068.241500px;}
.y26{bottom:1071.244500px;}
.y56{bottom:1075.534500px;}
.y235{bottom:1077.327000px;}
.y15b{bottom:1086.832500px;}
.y201{bottom:1087.609500px;}
.y55{bottom:1095.798000px;}
.y234{bottom:1096.695000px;}
.y25{bottom:1100.145000px;}
.y200{bottom:1115.943000px;}
.y54{bottom:1116.063000px;}
.y22{bottom:1137.954000px;}
.y53{bottom:1168.366500px;}
.hf{height:25.508090px;}
.h19{height:30.582721px;}
.h7{height:32.130000px;}
.h18{height:33.072749px;}
.h11{height:33.112997px;}
.h21{height:33.203892px;}
.h20{height:33.337151px;}
.h10{height:34.199443px;}
.h13{height:35.052500px;}
.h15{height:36.989141px;}
.h23{height:37.447998px;}
.h1c{height:38.734848px;}
.he{height:39.165235px;}
.h1e{height:39.434227px;}
.h22{height:41.692104px;}
.h1d{height:41.723369px;}
.h24{height:41.859431px;}
.hd{height:43.038432px;}
.h12{height:43.516637px;}
.hb{height:43.815515px;}
.h6{height:45.900000px;}
.h17{height:46.553436px;}
.h3{height:48.195000px;}
.h16{height:49.991558px;}
.h9{height:50.930649px;}
.h2{height:55.080000px;}
.h14{height:57.756749px;}
.ha{height:61.613006px;}
.hc{height:77.469696px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h1f{height:463.781925px;}
.h1a{height:892.914000px;}
.h1b{height:893.250000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:197.527766px;}
.w8{width:636.985260px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.w6{width:1262.835000px;}
.w7{width:1263.000000px;}
.x0{left:0.000000px;}
.x52{left:3.145260px;}
.xa{left:29.274117px;}
.x55{left:33.440760px;}
.x6{left:58.054042px;}
.x54{left:94.744260px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x1e{left:112.546500px;}
.x5{left:114.802500px;}
.xd{left:119.385000px;}
.x8{left:122.110500px;}
.x7{left:123.307500px;}
.x3b{left:128.496000px;}
.x23{left:132.959775px;}
.x24{left:136.293900px;}
.xc{left:146.692500px;}
.x3c{left:151.224000px;}
.x1c{left:158.662275px;}
.x39{left:160.525500px;}
.x1d{left:161.838300px;}
.x3d{left:163.216500px;}
.x19{left:166.482000px;}
.x37{left:170.235000px;}
.x38{left:172.474500px;}
.x36{left:175.084500px;}
.x35{left:189.280500px;}
.xb{left:190.516500px;}
.xf{left:200.614500px;}
.x4{left:203.484001px;}
.x31{left:208.285500px;}
.x56{left:211.839000px;}
.x17{left:214.507500px;}
.x18{left:216.813000px;}
.x58{left:252.097500px;}
.x59{left:253.657500px;}
.x1f{left:254.752500px;}
.xe{left:259.335000px;}
.x57{left:265.753500px;}
.x51{left:274.327500px;}
.x34{left:275.940000px;}
.x22{left:279.040500px;}
.x32{left:288.288000px;}
.x1a{left:295.809000px;}
.x27{left:298.324500px;}
.x21{left:303.648000px;}
.x28{left:308.503500px;}
.x47{left:326.131500px;}
.x20{left:328.255500px;}
.x48{left:329.433000px;}
.x10{left:333.688500px;}
.x11{left:339.234000px;}
.x29{left:364.429500px;}
.x4f{left:366.163500px;}
.x2a{left:370.855500px;}
.x4b{left:373.248000px;}
.x49{left:374.751000px;}
.x4a{left:376.236000px;}
.x4c{left:377.467500px;}
.x4d{left:383.580000px;}
.x4e{left:388.267500px;}
.x46{left:389.865000px;}
.x50{left:399.423000px;}
.x3e{left:401.082000px;}
.x3f{left:410.683500px;}
.x12{left:424.803000px;}
.x13{left:432.285000px;}
.x3{left:454.959000px;}
.x45{left:522.474000px;}
.x44{left:526.395000px;}
.x33{left:542.731500px;}
.x2b{left:562.384500px;}
.x2c{left:574.675500px;}
.x14{left:581.619000px;}
.x15{left:589.101000px;}
.x3a{left:604.189500px;}
.x2d{left:626.521500px;}
.x53{left:633.194760px;}
.x2e{left:638.814000px;}
.x40{left:645.078000px;}
.x41{left:654.679500px;}
.x16{left:656.094000px;}
.x25{left:669.390000px;}
.x42{left:677.409000px;}
.x43{left:689.401500px;}
.x9{left:701.339982px;}
.x2f{left:721.959000px;}
.x30{left:734.250000px;}
.x1b{left:760.686000px;}
.x26{left:774.684000px;}
@media print{
.v1{vertical-align:-9.706667pt;}
.v3{vertical-align:-7.973333pt;}
.v7{vertical-align:-6.777333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:1.109333pt;}
.v4{vertical-align:9.328000pt;}
.v8{vertical-align:17.360000pt;}
.v6{vertical-align:24.643200pt;}
.v5{vertical-align:26.688000pt;}
.v2{vertical-align:31.648000pt;}
.ls46{letter-spacing:-0.228000pt;}
.ls45{letter-spacing:-0.076000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4a{letter-spacing:0.000375pt;}
.ls29{letter-spacing:0.000387pt;}
.ls48{letter-spacing:0.000921pt;}
.ls13{letter-spacing:0.001021pt;}
.ls49{letter-spacing:0.001026pt;}
.ls47{letter-spacing:0.001288pt;}
.ls24{letter-spacing:0.002193pt;}
.lsc{letter-spacing:0.002868pt;}
.ls1a{letter-spacing:0.003525pt;}
.ls11{letter-spacing:0.004147pt;}
.ls44{letter-spacing:0.152000pt;}
.ls15{letter-spacing:0.487835pt;}
.ls36{letter-spacing:0.570745pt;}
.ls35{letter-spacing:0.576078pt;}
.ls34{letter-spacing:0.637762pt;}
.ls7{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls19{letter-spacing:2.258507pt;}
.ls23{letter-spacing:2.656533pt;}
.lsf{letter-spacing:2.657067pt;}
.ls21{letter-spacing:2.661867pt;}
.ls31{letter-spacing:10.467372pt;}
.ls38{letter-spacing:10.623733pt;}
.ls6{letter-spacing:10.626533pt;}
.ls37{letter-spacing:10.627366pt;}
.ls2b{letter-spacing:11.286479pt;}
.ls18{letter-spacing:11.291012pt;}
.ls3a{letter-spacing:11.506536pt;}
.ls3b{letter-spacing:11.511978pt;}
.ls1b{letter-spacing:11.830098pt;}
.ls1c{letter-spacing:11.834631pt;}
.ls20{letter-spacing:11.955200pt;}
.ls4b{letter-spacing:11.956898pt;}
.ls2f{letter-spacing:12.008254pt;}
.ls3e{letter-spacing:12.528078pt;}
.ls41{letter-spacing:12.533411pt;}
.ls39{letter-spacing:12.858396pt;}
.ls30{letter-spacing:13.124065pt;}
.ls9{letter-spacing:13.230333pt;}
.ls16{letter-spacing:13.278210pt;}
.ls4{letter-spacing:13.283467pt;}
.lsd{letter-spacing:13.283543pt;}
.ls32{letter-spacing:13.284147pt;}
.ls8{letter-spacing:13.442868pt;}
.ls2a{letter-spacing:13.546507pt;}
.ls2d{letter-spacing:13.548585pt;}
.lsa{letter-spacing:13.549136pt;}
.ls17{letter-spacing:13.551040pt;}
.ls5{letter-spacing:13.602270pt;}
.ls33{letter-spacing:13.944877pt;}
.lsb{letter-spacing:13.974207pt;}
.ls2c{letter-spacing:14.113173pt;}
.ls25{letter-spacing:14.608533pt;}
.ls27{letter-spacing:14.613867pt;}
.ls40{letter-spacing:15.205867pt;}
.ls3f{letter-spacing:15.211200pt;}
.ls10{letter-spacing:15.937067pt;}
.ls14{letter-spacing:15.939511pt;}
.ls12{letter-spacing:15.939543pt;}
.lse{letter-spacing:15.942400pt;}
.ls3{letter-spacing:15.993294pt;}
.ls1e{letter-spacing:17.640444pt;}
.ls1d{letter-spacing:18.596853pt;}
.ls2e{letter-spacing:20.669074pt;}
.ls43{letter-spacing:21.094145pt;}
.ls1f{letter-spacing:21.891153pt;}
.ls1{letter-spacing:28.452898pt;}
.ls28{letter-spacing:150.389867pt;}
.ls26{letter-spacing:187.461867pt;}
.ls22{letter-spacing:287.200533pt;}
.ls3d{letter-spacing:330.411200pt;}
.ls3c{letter-spacing:349.776533pt;}
.ls42{letter-spacing:404.278084pt;}
.ws6c{word-spacing:-40.078876pt;}
.ws74{word-spacing:-34.067044pt;}
.ws98{word-spacing:-23.910400pt;}
.ws1{word-spacing:-20.194365pt;}
.ws52{word-spacing:-13.283467pt;}
.wsc5{word-spacing:-12.844000pt;}
.ws99{word-spacing:-11.955200pt;}
.wsc6{word-spacing:-11.400000pt;}
.ws78{word-spacing:-11.290947pt;}
.ws21{word-spacing:-10.626800pt;}
.ws6e{word-spacing:-10.095467pt;}
.ws7d{word-spacing:-8.581147pt;}
.wsa8{word-spacing:-2.762961pt;}
.wsf9{word-spacing:-2.582323pt;}
.ws85{word-spacing:-2.550426pt;}
.wsb7{word-spacing:-2.444158pt;}
.ws67{word-spacing:-2.337890pt;}
.ws83{word-spacing:-2.284756pt;}
.ws81{word-spacing:-2.178489pt;}
.ws8d{word-spacing:-2.125355pt;}
.wsc7{word-spacing:-2.072221pt;}
.ws104{word-spacing:-2.056294pt;}
.ws92{word-spacing:-2.019087pt;}
.ws30{word-spacing:-1.965953pt;}
.ws31{word-spacing:-1.912819pt;}
.wsb5{word-spacing:-1.806551pt;}
.wsb6{word-spacing:-1.773454pt;}
.wsb4{word-spacing:-1.768012pt;}
.ws80{word-spacing:-1.753418pt;}
.wscc{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws39{word-spacing:-1.647150pt;}
.ws49{word-spacing:-1.594016pt;}
.wsee{word-spacing:-1.578086pt;}
.ws2a{word-spacing:-1.540882pt;}
.wsf6{word-spacing:-1.530266pt;}
.ws8{word-spacing:-1.487748pt;}
.ws111{word-spacing:-1.434624pt;}
.ws9a{word-spacing:-1.434614pt;}
.wsfb{word-spacing:-1.386803pt;}
.ws8e{word-spacing:-1.381481pt;}
.ws4c{word-spacing:-1.328347pt;}
.wsd8{word-spacing:-1.291162pt;}
.ws4f{word-spacing:-1.275213pt;}
.ws89{word-spacing:-1.222079pt;}
.wsd9{word-spacing:-1.195520pt;}
.ws2{word-spacing:-1.175671pt;}
.ws2c{word-spacing:-1.168945pt;}
.ws103{word-spacing:-1.147699pt;}
.ws4b{word-spacing:-1.115811pt;}
.wsf3{word-spacing:-1.099878pt;}
.wsb{word-spacing:-1.062677pt;}
.ws23{word-spacing:-1.009543pt;}
.ws29{word-spacing:-0.956410pt;}
.ws4e{word-spacing:-0.850142pt;}
.ws3e{word-spacing:-0.690740pt;}
.wsde{word-spacing:-0.621670pt;}
.ws42{word-spacing:-0.584473pt;}
.wsdc{word-spacing:-0.573850pt;}
.ws4a{word-spacing:-0.478205pt;}
.ws5a{word-spacing:-0.425071pt;}
.ws87{word-spacing:-0.318803pt;}
.ws17{word-spacing:-0.265669pt;}
.ws10{word-spacing:-0.212535pt;}
.wsd5{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.wse4{word-spacing:-0.143462pt;}
.ws1b{word-spacing:-0.106268pt;}
.wse1{word-spacing:-0.095642pt;}
.ws1a{word-spacing:-0.053134pt;}
.wsdd{word-spacing:-0.047821pt;}
.ws22{word-spacing:-0.042507pt;}
.ws7c{word-spacing:-0.007475pt;}
.ws75{word-spacing:-0.006915pt;}
.ws7b{word-spacing:-0.006155pt;}
.ws7a{word-spacing:-0.004254pt;}
.ws73{word-spacing:-0.002167pt;}
.ws76{word-spacing:-0.000706pt;}
.ws77{word-spacing:-0.000464pt;}
.ws79{word-spacing:-0.000224pt;}
.ws0{word-spacing:0.000000pt;}
.wsf7{word-spacing:0.047821pt;}
.ws13{word-spacing:0.053134pt;}
.wsea{word-spacing:0.095642pt;}
.wsd{word-spacing:0.106268pt;}
.wsd6{word-spacing:0.143462pt;}
.ws2e{word-spacing:0.159402pt;}
.ws10e{word-spacing:0.191283pt;}
.ws19{word-spacing:0.212535pt;}
.ws1f{word-spacing:0.265669pt;}
.wsc{word-spacing:0.318803pt;}
.ws51{word-spacing:0.371937pt;}
.ws1e{word-spacing:0.478205pt;}
.ws7f{word-spacing:0.564535pt;}
.ws7e{word-spacing:0.564979pt;}
.ws28{word-spacing:0.584473pt;}
.wsb9{word-spacing:0.593289pt;}
.wsba{word-spacing:0.598622pt;}
.ws108{word-spacing:0.621670pt;}
.ws3c{word-spacing:0.637606pt;}
.ws18{word-spacing:0.690740pt;}
.ws33{word-spacing:0.743874pt;}
.ws37{word-spacing:0.797008pt;}
.wsa7{word-spacing:0.850142pt;}
.wsd1{word-spacing:0.903276pt;}
.wsa2{word-spacing:0.956410pt;}
.ws102{word-spacing:0.956416pt;}
.ws60{word-spacing:1.009543pt;}
.ws5f{word-spacing:1.062677pt;}
.ws59{word-spacing:1.115811pt;}
.wscb{word-spacing:1.168945pt;}
.wsca{word-spacing:1.222079pt;}
.ws101{word-spacing:1.243341pt;}
.ws4d{word-spacing:1.328347pt;}
.wsd0{word-spacing:1.434614pt;}
.ws61{word-spacing:1.540882pt;}
.ws97{word-spacing:1.647150pt;}
.wsdb{word-spacing:1.673728pt;}
.ws15{word-spacing:1.700284pt;}
.ws41{word-spacing:1.753418pt;}
.ws3a{word-spacing:1.806551pt;}
.wsf5{word-spacing:1.817190pt;}
.ws40{word-spacing:1.912819pt;}
.wsc4{word-spacing:1.965953pt;}
.wse6{word-spacing:2.008474pt;}
.wsa6{word-spacing:2.125355pt;}
.wsf2{word-spacing:2.151936pt;}
.ws9{word-spacing:2.178489pt;}
.ws84{word-spacing:2.284756pt;}
.ws3b{word-spacing:2.337890pt;}
.ws16{word-spacing:2.391024pt;}
.ws44{word-spacing:2.444158pt;}
.wscf{word-spacing:2.497292pt;}
.ws66{word-spacing:2.603559pt;}
.wsc8{word-spacing:2.656693pt;}
.ws27{word-spacing:2.709827pt;}
.ws32{word-spacing:2.762961pt;}
.ws57{word-spacing:2.816095pt;}
.wse3{word-spacing:2.821427pt;}
.wsd7{word-spacing:2.864512pt;}
.wse7{word-spacing:2.867482pt;}
.wse0{word-spacing:2.869248pt;}
.ws106{word-spacing:2.870110pt;}
.ws109{word-spacing:2.871014pt;}
.ws10d{word-spacing:2.917069pt;}
.ws9e{word-spacing:2.922363pt;}
.ws5e{word-spacing:2.975497pt;}
.ws93{word-spacing:3.028630pt;}
.ws100{word-spacing:3.060531pt;}
.ws25{word-spacing:3.081764pt;}
.ws110{word-spacing:3.108352pt;}
.ws24{word-spacing:3.134898pt;}
.wse{word-spacing:3.185311pt;}
.wsf{word-spacing:3.188032pt;}
.wsfc{word-spacing:3.203994pt;}
.wsb8{word-spacing:3.241166pt;}
.ws56{word-spacing:3.347434pt;}
.ws105{word-spacing:3.347456pt;}
.wsfd{word-spacing:3.395277pt;}
.ws9d{word-spacing:3.400567pt;}
.ws94{word-spacing:3.453701pt;}
.ws4{word-spacing:3.506835pt;}
.wsec{word-spacing:3.586560pt;}
.ws5c{word-spacing:3.613103pt;}
.ws5d{word-spacing:3.772505pt;}
.ws58{word-spacing:3.825638pt;}
.ws47{word-spacing:3.931906pt;}
.ws54{word-spacing:3.985040pt;}
.ws91{word-spacing:4.091308pt;}
.ws7{word-spacing:4.144442pt;}
.ws34{word-spacing:4.197575pt;}
.ws8c{word-spacing:4.250709pt;}
.ws8a{word-spacing:4.303843pt;}
.ws1c{word-spacing:4.356977pt;}
.ws1d{word-spacing:4.410111pt;}
.ws9b{word-spacing:4.463245pt;}
.ws86{word-spacing:4.622646pt;}
.wsa4{word-spacing:4.835182pt;}
.ws9f{word-spacing:4.965917pt;}
.wsa0{word-spacing:4.970450pt;}
.wsa5{word-spacing:5.153985pt;}
.ws8b{word-spacing:5.313387pt;}
.ws9c{word-spacing:5.366521pt;}
.ws64{word-spacing:5.419654pt;}
.ws35{word-spacing:5.525922pt;}
.wsa1{word-spacing:5.532583pt;}
.wsa9{word-spacing:5.632190pt;}
.ws95{word-spacing:5.685324pt;}
.ws46{word-spacing:5.791591pt;}
.ws6d{word-spacing:5.842255pt;}
.ws5{word-spacing:5.844725pt;}
.ws6b{word-spacing:5.847588pt;}
.ws36{word-spacing:5.897859pt;}
.wsd4{word-spacing:6.025421pt;}
.ws70{word-spacing:6.057261pt;}
.wsf8{word-spacing:6.168883pt;}
.ws45{word-spacing:6.269796pt;}
.ws72{word-spacing:6.322930pt;}
.ws50{word-spacing:6.376064pt;}
.wsa{word-spacing:6.429198pt;}
.ws12{word-spacing:6.641733pt;}
.ws14{word-spacing:6.694867pt;}
.ws2b{word-spacing:6.748001pt;}
.ws5b{word-spacing:6.801135pt;}
.ws3d{word-spacing:6.854269pt;}
.ws2d{word-spacing:7.066804pt;}
.ws69{word-spacing:7.279340pt;}
.ws38{word-spacing:7.385607pt;}
.wscd{word-spacing:7.438741pt;}
.ws68{word-spacing:7.545009pt;}
.ws82{word-spacing:7.704411pt;}
.wsc1{word-spacing:7.810678pt;}
.ws11{word-spacing:7.863812pt;}
.ws3f{word-spacing:7.916946pt;}
.ws48{word-spacing:8.182615pt;}
.wse9{word-spacing:8.368640pt;}
.ws90{word-spacing:8.448285pt;}
.wsf0{word-spacing:8.512102pt;}
.ws6{word-spacing:8.554553pt;}
.ws8f{word-spacing:8.660820pt;}
.ws10a{word-spacing:8.846848pt;}
.ws71{word-spacing:9.032757pt;}
.ws6a{word-spacing:9.139025pt;}
.wsfa{word-spacing:9.325056pt;}
.wsc3{word-spacing:9.351561pt;}
.wsa3{word-spacing:9.776631pt;}
.wsef{word-spacing:10.329293pt;}
.ws96{word-spacing:10.467372pt;}
.ws112{word-spacing:10.472755pt;}
.ws20{word-spacing:10.587492pt;}
.ws62{word-spacing:10.626773pt;}
.wsda{word-spacing:10.711859pt;}
.wsf4{word-spacing:10.807501pt;}
.wsc2{word-spacing:10.839309pt;}
.wsd3{word-spacing:11.190067pt;}
.wsd2{word-spacing:11.668275pt;}
.wse5{word-spacing:11.716096pt;}
.wse2{word-spacing:11.811738pt;}
.wsdf{word-spacing:11.859558pt;}
.ws10c{word-spacing:11.895629pt;}
.wsf1{word-spacing:11.897506pt;}
.wsfe{word-spacing:11.898189pt;}
.ws55{word-spacing:11.901986pt;}
.ws107{word-spacing:11.904666pt;}
.wse8{word-spacing:11.907379pt;}
.wsc9{word-spacing:11.955120pt;}
.ws10b{word-spacing:12.003021pt;}
.wsff{word-spacing:12.050842pt;}
.ws10f{word-spacing:12.051257pt;}
.wseb{word-spacing:12.194304pt;}
.wsce{word-spacing:13.017797pt;}
.ws2f{word-spacing:13.230333pt;}
.wsaa{word-spacing:15.159194pt;}
.wsed{word-spacing:15.493939pt;}
.ws88{word-spacing:16.418365pt;}
.ws65{word-spacing:16.790302pt;}
.ws43{word-spacing:21.253547pt;}
.ws63{word-spacing:23.378901pt;}
.ws53{word-spacing:23.857106pt;}
.wsb1{word-spacing:69.736175pt;}
.wsac{word-spacing:75.317760pt;}
.wsb2{word-spacing:79.037133pt;}
.wsaf{word-spacing:113.567701pt;}
.ws6f{word-spacing:114.354255pt;}
.wsb3{word-spacing:114.880512pt;}
.wsb0{word-spacing:121.529361pt;}
.wsae{word-spacing:130.803831pt;}
.wsab{word-spacing:181.278874pt;}
.wsad{word-spacing:187.927723pt;}
.wsbc{word-spacing:256.717705pt;}
.wsbb{word-spacing:260.735974pt;}
.wsbe{word-spacing:276.083038pt;}
.wsbd{word-spacing:280.101308pt;}
.wsc0{word-spacing:309.329417pt;}
.wsbf{word-spacing:327.331072pt;}
._20{margin-left:-11.955200pt;}
._17{margin-left:-7.798025pt;}
._2{margin-left:-6.854269pt;}
._0{margin-left:-5.260288pt;}
._4{margin-left:-3.761949pt;}
._3{margin-left:-2.630144pt;}
._7{margin-left:-1.175671pt;}
._8{width:0.969929pt;}
._19{width:2.650814pt;}
._45{width:4.349632pt;}
._44{width:5.330640pt;}
._42{width:9.090613pt;}
._1d{width:10.612212pt;}
._d{width:12.418799pt;}
._5{width:13.963674pt;}
._6{width:15.685222pt;}
._f{width:17.115831pt;}
._15{width:18.384353pt;}
._14{width:19.393861pt;}
._46{width:20.307200pt;}
._c{width:21.366576pt;}
._e{width:22.475661pt;}
._a{width:24.235770pt;}
._4a{width:25.209591pt;}
._12{width:26.248130pt;}
._21{width:27.530069pt;}
._18{width:28.479753pt;}
._1{width:29.648896pt;}
._1e{width:31.196306pt;}
._1f{width:32.990153pt;}
._9{width:34.214381pt;}
._1c{width:35.872051pt;}
._13{width:37.798358pt;}
._1b{width:39.053392pt;}
._b{width:40.494733pt;}
._49{width:41.623216pt;}
._1a{width:44.373505pt;}
._41{width:45.383049pt;}
._48{width:51.276243pt;}
._47{width:52.496260pt;}
._2a{width:56.667648pt;}
._27{width:77.039309pt;}
._29{width:79.382528pt;}
._16{width:80.345168pt;}
._28{width:86.938214pt;}
._2c{width:91.008640pt;}
._31{width:94.175309pt;}
._3a{width:106.711424pt;}
._2e{width:110.705152pt;}
._32{width:114.134511pt;}
._23{width:121.799578pt;}
._2b{width:125.673062pt;}
._2d{width:128.829235pt;}
._3b{width:131.363738pt;}
._2f{width:133.515674pt;}
._26{width:136.193638pt;}
._30{width:148.770509pt;}
._33{width:151.148083pt;}
._24{width:166.894592pt;}
._25{width:190.613709pt;}
._35{width:191.730142pt;}
._34{width:206.394573pt;}
._37{width:210.315878pt;}
._36{width:225.570714pt;}
._38{width:240.969011pt;}
._40{width:262.081067pt;}
._3c{width:293.380608pt;}
._3d{width:298.688717pt;}
._3e{width:303.040410pt;}
._3f{width:359.182029pt;}
._10{width:822.251247pt;}
._43{width:1367.822667pt;}
._39{width:1842.974966pt;}
._11{width:1864.228300pt;}
._22{width:3158.249633pt;}
.fsf{font-size:34.324587pt;}
.fs11{font-size:37.193600pt;}
.fsa{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:40.381867pt;}
.fs14{font-size:40.432000pt;}
.fs9{font-size:41.988267pt;}
.fsd{font-size:42.077867pt;}
.fsb{font-size:42.507200pt;}
.fse{font-size:45.163787pt;}
.fs16{font-size:45.600000pt;}
.fs10{font-size:47.060987pt;}
.fs8{font-size:47.820800pt;}
.fs13{font-size:49.829333pt;}
.fs15{font-size:50.768000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs12{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y1b9{bottom:-406.653200pt;}
.y1d3{bottom:-380.813200pt;}
.y1d2{bottom:-363.713200pt;}
.y1d1{bottom:-346.613200pt;}
.y1d0{bottom:-329.513200pt;}
.y1cf{bottom:-312.413200pt;}
.y1ce{bottom:-295.313200pt;}
.y1cd{bottom:-278.263867pt;}
.y1cc{bottom:-261.163867pt;}
.y1cb{bottom:-244.063867pt;}
.y1ca{bottom:-226.963867pt;}
.y1c9{bottom:-209.863867pt;}
.y1c8{bottom:-192.763867pt;}
.y1c7{bottom:-175.663867pt;}
.y1c6{bottom:-158.639867pt;}
.y1c5{bottom:-141.539867pt;}
.y1c4{bottom:-124.439867pt;}
.y1c3{bottom:-107.339867pt;}
.y1c2{bottom:-82.639867pt;}
.y1c1{bottom:-50.263867pt;}
.y1c0{bottom:-18.419867pt;}
.y0{bottom:0.000000pt;}
.y1bf{bottom:2.252133pt;}
.y30{bottom:3.044747pt;}
.y24{bottom:8.207950pt;}
.y2f{bottom:12.578910pt;}
.y23{bottom:23.914454pt;}
.y52{bottom:56.693333pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y51{bottom:96.544000pt;}
.y1ff{bottom:99.824000pt;}
.yee{bottom:100.754667pt;}
.y186{bottom:101.274667pt;}
.y233{bottom:105.990667pt;}
.y11c{bottom:108.081333pt;}
.y13b{bottom:108.724000pt;}
.ya3{bottom:109.441333pt;}
.yc5{bottom:110.690667pt;}
.y81{bottom:113.798667pt;}
.y50{bottom:114.556000pt;}
.yed{bottom:118.766667pt;}
.y185{bottom:119.288000pt;}
.y1fe{bottom:121.304000pt;}
.y232{bottom:123.205333pt;}
.y21{bottom:123.790666pt;}
.y11b{bottom:126.093333pt;}
.y13a{bottom:126.737333pt;}
.ya2{bottom:127.454667pt;}
.yc4{bottom:128.702667pt;}
.y15a{bottom:130.361333pt;}
.y80{bottom:131.812000pt;}
.y4f{bottom:132.568000pt;}
.y1b6{bottom:135.333333pt;}
.yec{bottom:136.780000pt;}
.y184{bottom:137.300000pt;}
.y231{bottom:140.421333pt;}
.y1fd{bottom:142.784000pt;}
.y11a{bottom:144.106667pt;}
.y139{bottom:144.749333pt;}
.ya1{bottom:145.466667pt;}
.yc3{bottom:146.716000pt;}
.y159{bottom:148.373333pt;}
.y7f{bottom:149.824000pt;}
.y4e{bottom:150.581333pt;}
.y1b5{bottom:154.689333pt;}
.yeb{bottom:154.792000pt;}
.y183{bottom:155.313333pt;}
.y1fc{bottom:156.293333pt;}
.y230{bottom:157.636000pt;}
.y119{bottom:162.118667pt;}
.y138{bottom:162.762667pt;}
.ya0{bottom:163.478667pt;}
.yc2{bottom:164.728000pt;}
.y158{bottom:166.385333pt;}
.y7e{bottom:167.836000pt;}
.y4d{bottom:168.593333pt;}
.yea{bottom:172.804000pt;}
.y182{bottom:173.325333pt;}
.y22f{bottom:174.852000pt;}
.y18{bottom:175.052000pt;}
.y1b4{bottom:175.769333pt;}
.y1fb{bottom:177.772000pt;}
.y118{bottom:180.132000pt;}
.y137{bottom:180.774667pt;}
.y9f{bottom:181.492000pt;}
.yc1{bottom:182.740000pt;}
.y157{bottom:184.398667pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y4c{bottom:186.606667pt;}
.y1b3{bottom:190.448000pt;}
.ye9{bottom:190.817333pt;}
.y1fa{bottom:191.281333pt;}
.y181{bottom:191.337333pt;}
.y22e{bottom:192.068000pt;}
.y7d{bottom:193.818667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y117{bottom:198.144000pt;}
.y136{bottom:198.786667pt;}
.y9e{bottom:199.504000pt;}
.yc0{bottom:200.753333pt;}
.y156{bottom:202.410667pt;}
.y4b{bottom:204.618667pt;}
.y1f9{bottom:204.790667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ye8{bottom:208.829333pt;}
.y22d{bottom:209.282667pt;}
.y180{bottom:209.350667pt;}
.y1b2{bottom:211.528000pt;}
.y116{bottom:216.156000pt;}
.y135{bottom:216.800000pt;}
.y9d{bottom:217.517333pt;}
.y1f8{bottom:218.301333pt;}
.ybf{bottom:218.765333pt;}
.y155{bottom:220.424000pt;}
.y4a{bottom:222.630667pt;}
.y7c{bottom:224.769333pt;}
.y1b1{bottom:226.206667pt;}
.y22c{bottom:226.498667pt;}
.ye7{bottom:226.842667pt;}
.y17f{bottom:227.362667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y115{bottom:234.169333pt;}
.y134{bottom:234.812000pt;}
.y9c{bottom:235.529333pt;}
.ybe{bottom:236.778667pt;}
.y154{bottom:238.436000pt;}
.y49{bottom:240.644000pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y7b{bottom:242.782667pt;}
.y22b{bottom:243.713333pt;}
.ye6{bottom:244.854667pt;}
.y17e{bottom:245.376000pt;}
.y1b0{bottom:247.286667pt;}
.y1f7{bottom:247.750667pt;}
.y114{bottom:252.181333pt;}
.y133{bottom:252.825333pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y9b{bottom:253.541333pt;}
.ybd{bottom:254.790667pt;}
.y153{bottom:256.448000pt;}
.y48{bottom:258.656000pt;}
.y7a{bottom:260.794667pt;}
.y22a{bottom:260.929333pt;}
.y1af{bottom:261.965333pt;}
.ye5{bottom:262.866667pt;}
.y17d{bottom:263.388000pt;}
.y1f6{bottom:265.762667pt;}
.y113{bottom:270.194667pt;}
.y132{bottom:270.837333pt;}
.y9a{bottom:271.554667pt;}
.ybc{bottom:272.802667pt;}
.y152{bottom:274.461333pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y47{bottom:276.669333pt;}
.y229{bottom:278.145333pt;}
.y79{bottom:278.808000pt;}
.ye4{bottom:280.880000pt;}
.y17c{bottom:281.400000pt;}
.y1ae{bottom:283.045333pt;}
.y1f5{bottom:283.776000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y112{bottom:288.206667pt;}
.y99{bottom:289.566667pt;}
.ybb{bottom:290.816000pt;}
.y151{bottom:292.473333pt;}
.y46{bottom:294.681333pt;}
.y228{bottom:295.360000pt;}
.y78{bottom:296.820000pt;}
.y1ad{bottom:297.724000pt;}
.ye3{bottom:298.892000pt;}
.y1f4{bottom:301.788000pt;}
.y111{bottom:306.218667pt;}
.y17b{bottom:307.382667pt;}
.y98{bottom:307.580000pt;}
.yba{bottom:308.828000pt;}
.yf{bottom:309.452000pt;}
.y150{bottom:310.486667pt;}
.y227{bottom:312.576000pt;}
.y45{bottom:312.693333pt;}
.y77{bottom:314.832000pt;}
.ye2{bottom:316.905333pt;}
.y1ac{bottom:318.805333pt;}
.y1f3{bottom:319.800000pt;}
.y1d6{bottom:320.664000pt;}
.y110{bottom:324.232000pt;}
.y97{bottom:325.592000pt;}
.yb9{bottom:326.841333pt;}
.y131{bottom:327.770667pt;}
.y14f{bottom:328.498667pt;}
.y226{bottom:329.790667pt;}
.y44{bottom:330.706667pt;}
.y76{bottom:332.845333pt;}
.y1ab{bottom:333.482667pt;}
.y1f2{bottom:337.813333pt;}
.y17a{bottom:338.333333pt;}
.y10f{bottom:342.244000pt;}
.y96{bottom:343.604000pt;}
.ye{bottom:343.809333pt;}
.yb8{bottom:344.853333pt;}
.y130{bottom:345.782667pt;}
.y14e{bottom:346.510667pt;}
.y225{bottom:347.006667pt;}
.y43{bottom:348.718667pt;}
.ye1{bottom:349.928000pt;}
.y75{bottom:350.857333pt;}
.y1d5{bottom:351.614667pt;}
.y1aa{bottom:354.564000pt;}
.y1f1{bottom:355.825333pt;}
.y179{bottom:356.346667pt;}
.y10e{bottom:360.257333pt;}
.y95{bottom:361.617333pt;}
.yd{bottom:362.706666pt;}
.yb7{bottom:362.865333pt;}
.y12f{bottom:363.796000pt;}
.y224{bottom:364.222667pt;}
.y14d{bottom:364.524000pt;}
.y42{bottom:366.732000pt;}
.y74{bottom:368.870667pt;}
.y1a9{bottom:369.174667pt;}
.y1f0{bottom:373.838667pt;}
.y178{bottom:374.358667pt;}
.y1d4{bottom:378.233333pt;}
.y10d{bottom:378.269333pt;}
.y94{bottom:379.629333pt;}
.yb6{bottom:380.878667pt;}
.y223{bottom:381.437333pt;}
.y12e{bottom:381.808000pt;}
.y14c{bottom:382.536000pt;}
.ye0{bottom:382.950667pt;}
.y41{bottom:384.744000pt;}
.y73{bottom:386.882667pt;}
.y1a8{bottom:390.810667pt;}
.y1ef{bottom:391.850667pt;}
.y177{bottom:392.372000pt;}
.y10c{bottom:396.281333pt;}
.y93{bottom:397.642667pt;}
.y1b7{bottom:398.170667pt;}
.y222{bottom:398.653333pt;}
.yb5{bottom:398.890667pt;}
.y12d{bottom:399.821333pt;}
.y14b{bottom:400.548000pt;}
.ydf{bottom:400.962667pt;}
.y40{bottom:402.756000pt;}
.y72{bottom:404.894667pt;}
.y1a7{bottom:405.422667pt;}
.y1ee{bottom:409.862667pt;}
.y176{bottom:410.384000pt;}
.y10b{bottom:414.294667pt;}
.y92{bottom:415.654667pt;}
.y221{bottom:415.868000pt;}
.yb4{bottom:416.904000pt;}
.y12c{bottom:417.833333pt;}
.y14a{bottom:418.561333pt;}
.yde{bottom:418.976000pt;}
.y3f{bottom:420.769333pt;}
.y71{bottom:422.908000pt;}
.y1a6{bottom:427.058667pt;}
.y1ed{bottom:427.876000pt;}
.y175{bottom:428.396000pt;}
.y1be{bottom:428.814800pt;}
.y253{bottom:430.246667pt;}
.y10a{bottom:432.306667pt;}
.y220{bottom:433.084000pt;}
.y91{bottom:433.666667pt;}
.yb3{bottom:434.916000pt;}
.y12b{bottom:435.845333pt;}
.y149{bottom:436.573333pt;}
.ydd{bottom:436.988000pt;}
.y3e{bottom:438.781333pt;}
.y70{bottom:440.920000pt;}
.y1a5{bottom:441.670667pt;}
.y1bd{bottom:445.914800pt;}
.yc{bottom:446.990669pt;}
.y252{bottom:447.461333pt;}
.y21f{bottom:450.300000pt;}
.y109{bottom:450.320000pt;}
.y90{bottom:451.680000pt;}
.yb2{bottom:452.928000pt;}
.y12a{bottom:453.858667pt;}
.y174{bottom:454.378667pt;}
.y148{bottom:454.586667pt;}
.ydc{bottom:455.001333pt;}
.y6f{bottom:458.933333pt;}
.yb{bottom:462.990669pt;}
.y1bc{bottom:463.014800pt;}
.y1a4{bottom:463.306667pt;}
.y251{bottom:464.677333pt;}
.y3d{bottom:464.764000pt;}
.y21e{bottom:467.514667pt;}
.y108{bottom:468.332000pt;}
.y8f{bottom:469.692000pt;}
.yb1{bottom:470.941333pt;}
.y129{bottom:471.870667pt;}
.y147{bottom:472.598667pt;}
.ydb{bottom:473.013333pt;}
.y6e{bottom:476.945333pt;}
.y1a3{bottom:477.917333pt;}
.ya{bottom:478.990666pt;}
.y1bb{bottom:480.038800pt;}
.y21d{bottom:484.730667pt;}
.y1ec{bottom:484.809333pt;}
.y173{bottom:485.329333pt;}
.y107{bottom:486.344000pt;}
.y8e{bottom:487.704000pt;}
.yb0{bottom:488.953333pt;}
.y128{bottom:489.884000pt;}
.y146{bottom:490.610667pt;}
.yda{bottom:491.025333pt;}
.y250{bottom:492.806667pt;}
.y192{bottom:493.261333pt;}
.y6d{bottom:494.957333pt;}
.y9{bottom:494.990666pt;}
.y1ba{bottom:497.138800pt;}
.y1a2{bottom:499.553333pt;}
.y21c{bottom:501.945333pt;}
.y1eb{bottom:502.821333pt;}
.y172{bottom:503.342667pt;}
.y106{bottom:504.357333pt;}
.y8d{bottom:505.717333pt;}
.yaf{bottom:506.966667pt;}
.y127{bottom:507.896000pt;}
.y145{bottom:508.624000pt;}
.yd9{bottom:509.038667pt;}
.y24f{bottom:510.022667pt;}
.y191{bottom:512.618667pt;}
.y6c{bottom:512.970667pt;}
.y1a1{bottom:514.232000pt;}
.y21b{bottom:519.161333pt;}
.y1ea{bottom:520.834667pt;}
.y171{bottom:521.354667pt;}
.y105{bottom:522.369333pt;}
.y8c{bottom:523.729333pt;}
.yae{bottom:524.978667pt;}
.y126{bottom:525.908000pt;}
.y144{bottom:526.636000pt;}
.yd8{bottom:527.050667pt;}
.y24e{bottom:527.237333pt;}
.y190{bottom:527.296000pt;}
.y1b8{bottom:528.754800pt;}
.y6b{bottom:530.982667pt;}
.y3c{bottom:532.682667pt;}
.y1a0{bottom:535.312000pt;}
.y21a{bottom:536.377333pt;}
.y1e9{bottom:538.846667pt;}
.y170{bottom:539.368000pt;}
.y104{bottom:540.382667pt;}
.y8b{bottom:541.742667pt;}
.y18f{bottom:541.974667pt;}
.yad{bottom:542.990667pt;}
.y125{bottom:543.921333pt;}
.y24d{bottom:544.453333pt;}
.y143{bottom:544.649333pt;}
.yd7{bottom:545.064000pt;}
.y6a{bottom:548.994667pt;}
.y19f{bottom:549.990667pt;}
.y219{bottom:553.592000pt;}
.y18e{bottom:556.653333pt;}
.y1e8{bottom:556.858667pt;}
.y103{bottom:558.394667pt;}
.y8a{bottom:559.754667pt;}
.yac{bottom:561.004000pt;}
.y24c{bottom:561.669333pt;}
.y124{bottom:561.933333pt;}
.y142{bottom:562.661333pt;}
.yd6{bottom:563.076000pt;}
.y16f{bottom:565.350667pt;}
.y3b{bottom:566.636000pt;}
.y69{bottom:567.008000pt;}
.y218{bottom:570.808000pt;}
.y19e{bottom:571.070667pt;}
.y18d{bottom:571.332000pt;}
.y8{bottom:573.786667pt;}
.y1e7{bottom:574.872000pt;}
.y102{bottom:576.406667pt;}
.y89{bottom:577.766667pt;}
.y24b{bottom:578.884000pt;}
.yab{bottom:579.016000pt;}
.y123{bottom:579.945333pt;}
.y141{bottom:580.673333pt;}
.yd5{bottom:581.088000pt;}
.y3a{bottom:584.648000pt;}
.y68{bottom:585.020000pt;}
.y19d{bottom:585.749333pt;}
.y18c{bottom:586.009333pt;}
.y217{bottom:588.024000pt;}
.y7{bottom:592.685334pt;}
.y1e6{bottom:592.884000pt;}
.y101{bottom:594.420000pt;}
.y88{bottom:595.780000pt;}
.y24a{bottom:596.100000pt;}
.y16e{bottom:596.301333pt;}
.yaa{bottom:597.029333pt;}
.y122{bottom:597.958667pt;}
.y140{bottom:598.686667pt;}
.yd4{bottom:599.101333pt;}
.y18b{bottom:600.688000pt;}
.y39{bottom:602.660000pt;}
.y67{bottom:603.033333pt;}
.y216{bottom:605.238667pt;}
.y19c{bottom:606.829333pt;}
.y1e5{bottom:610.896000pt;}
.y100{bottom:612.432000pt;}
.y249{bottom:613.314667pt;}
.y87{bottom:613.792000pt;}
.y16d{bottom:614.313333pt;}
.ya9{bottom:615.041333pt;}
.y18a{bottom:615.366667pt;}
.y121{bottom:615.970667pt;}
.y13f{bottom:616.698667pt;}
.yd3{bottom:617.113333pt;}
.y38{bottom:620.673333pt;}
.y19b{bottom:621.508000pt;}
.y215{bottom:622.454667pt;}
.y1e4{bottom:628.909333pt;}
.y66{bottom:629.016000pt;}
.yff{bottom:630.445333pt;}
.y248{bottom:630.530667pt;}
.y86{bottom:631.805333pt;}
.y16b{bottom:632.325333pt;}
.ya8{bottom:633.053333pt;}
.y120{bottom:633.984000pt;}
.yd2{bottom:635.126667pt;}
.y189{bottom:636.446667pt;}
.y16c{bottom:637.148000pt;}
.y37{bottom:638.685333pt;}
.y214{bottom:639.669333pt;}
.y19a{bottom:642.588000pt;}
.y6{bottom:645.598667pt;}
.y1e3{bottom:646.921333pt;}
.y247{bottom:647.746667pt;}
.y85{bottom:649.817333pt;}
.y16a{bottom:650.338667pt;}
.y11f{bottom:651.996000pt;}
.yd1{bottom:653.138667pt;}
.y13e{bottom:653.209333pt;}
.y36{bottom:656.698667pt;}
.y213{bottom:656.885333pt;}
.y199{bottom:657.200000pt;}
.ya7{bottom:659.036000pt;}
.y65{bottom:659.966667pt;}
.yfd{bottom:660.987600pt;}
.y188{bottom:664.553333pt;}
.y1e2{bottom:664.934667pt;}
.y246{bottom:664.961333pt;}
.y84{bottom:667.829333pt;}
.y169{bottom:668.350667pt;}
.y3{bottom:668.977329pt;}
.y13d{bottom:670.034667pt;}
.yd0{bottom:671.150667pt;}
.y212{bottom:674.101333pt;}
.y35{bottom:674.710667pt;}
.y11e{bottom:677.978667pt;}
.y198{bottom:678.836000pt;}
.yfc{bottom:679.685333pt;}
.y245{bottom:682.177333pt;}
.y1e1{bottom:682.946667pt;}
.y83{bottom:685.842667pt;}
.y13c{bottom:686.860000pt;}
.yfe{bottom:689.273333pt;}
.ya6{bottom:689.986667pt;}
.y64{bottom:690.917333pt;}
.y211{bottom:691.316000pt;}
.y34{bottom:692.722667pt;}
.y197{bottom:693.448000pt;}
.y168{bottom:694.333333pt;}
.ycf{bottom:697.133333pt;}
.yfb{bottom:698.383067pt;}
.y244{bottom:699.392000pt;}
.y1e0{bottom:700.958667pt;}
.y82{bottom:703.854667pt;}
.ya5{bottom:708.000000pt;}
.y210{bottom:708.532000pt;}
.y11d{bottom:708.929333pt;}
.y187{bottom:709.729333pt;}
.y33{bottom:710.736000pt;}
.y196{bottom:715.084000pt;}
.y243{bottom:716.608000pt;}
.yfa{bottom:717.080800pt;}
.y1df{bottom:718.972000pt;}
.y63{bottom:721.868000pt;}
.y167{bottom:725.284000pt;}
.y20f{bottom:725.746667pt;}
.yce{bottom:728.084000pt;}
.y32{bottom:728.748000pt;}
.y195{bottom:729.762667pt;}
.y242{bottom:733.824000pt;}
.y1de{bottom:736.984000pt;}
.y62{bottom:739.880000pt;}
.ya4{bottom:741.952000pt;}
.y20e{bottom:742.962667pt;}
.y166{bottom:743.297333pt;}
.ycd{bottom:746.097333pt;}
.y31{bottom:746.761333pt;}
.yf9{bottom:747.884000pt;}
.y194{bottom:750.842667pt;}
.y241{bottom:751.038667pt;}
.y1dd{bottom:754.997333pt;}
.y61{bottom:757.892000pt;}
.y20d{bottom:760.178667pt;}
.y165{bottom:761.309333pt;}
.yf8{bottom:765.896000pt;}
.y240{bottom:768.254667pt;}
.y1dc{bottom:773.009333pt;}
.y2e{bottom:773.381301pt;}
.y2d{bottom:773.730667pt;}
.y60{bottom:775.905333pt;}
.y20c{bottom:777.393333pt;}
.y193{bottom:778.949333pt;}
.y164{bottom:779.321333pt;}
.ycc{bottom:780.049333pt;}
.y2{bottom:781.661334pt;}
.yf7{bottom:783.909333pt;}
.y23f{bottom:785.469333pt;}
.y1db{bottom:791.021333pt;}
.y5f{bottom:793.917333pt;}
.y20b{bottom:794.609333pt;}
.ycb{bottom:798.062667pt;}
.yf6{bottom:801.921333pt;}
.y23e{bottom:802.685333pt;}
.y163{bottom:805.304000pt;}
.y2c{bottom:808.728000pt;}
.y1da{bottom:809.034667pt;}
.y20a{bottom:811.824000pt;}
.y5e{bottom:811.930667pt;}
.yca{bottom:816.074667pt;}
.y23d{bottom:819.901333pt;}
.yf5{bottom:819.933333pt;}
.y2b{bottom:824.868000pt;}
.y1d9{bottom:827.046667pt;}
.y209{bottom:829.040000pt;}
.y5d{bottom:829.942667pt;}
.yc9{bottom:834.088000pt;}
.y162{bottom:836.254667pt;}
.y23c{bottom:837.116000pt;}
.yf4{bottom:837.946667pt;}
.y2a{bottom:841.006667pt;}
.y1d8{bottom:845.060000pt;}
.y208{bottom:846.256000pt;}
.y5c{bottom:847.954667pt;}
.yc8{bottom:852.100000pt;}
.y23b{bottom:854.332000pt;}
.yf3{bottom:855.958667pt;}
.y1{bottom:859.312000pt;}
.y29{bottom:860.241333pt;}
.y207{bottom:863.470667pt;}
.y5b{bottom:865.968000pt;}
.y160{bottom:868.624200pt;}
.y1d7{bottom:871.042667pt;}
.y23a{bottom:871.546667pt;}
.yf2{bottom:873.972000pt;}
.y206{bottom:880.686667pt;}
.y15f{bottom:883.935533pt;}
.y5a{bottom:883.980000pt;}
.y161{bottom:884.174667pt;}
.yc7{bottom:886.052000pt;}
.y239{bottom:888.762667pt;}
.y205{bottom:897.901333pt;}
.y28{bottom:898.178667pt;}
.y15e{bottom:899.245733pt;}
.y59{bottom:901.993333pt;}
.yc6{bottom:904.065333pt;}
.yf0{bottom:905.325333pt;}
.y238{bottom:905.978667pt;}
.yf1{bottom:914.612000pt;}
.y204{bottom:915.117333pt;}
.y58{bottom:920.005333pt;}
.y237{bottom:923.193333pt;}
.yef{bottom:923.337333pt;}
.y27{bottom:925.198667pt;}
.y15d{bottom:930.048000pt;}
.y203{bottom:932.333333pt;}
.y57{bottom:938.017333pt;}
.y236{bottom:940.409333pt;}
.y15c{bottom:948.060000pt;}
.y202{bottom:949.548000pt;}
.y26{bottom:952.217333pt;}
.y56{bottom:956.030667pt;}
.y235{bottom:957.624000pt;}
.y15b{bottom:966.073333pt;}
.y201{bottom:966.764000pt;}
.y55{bottom:974.042667pt;}
.y234{bottom:974.840000pt;}
.y25{bottom:977.906667pt;}
.y200{bottom:991.949333pt;}
.y54{bottom:992.056000pt;}
.y22{bottom:1011.514667pt;}
.y53{bottom:1038.548000pt;}
.hf{height:22.673858pt;}
.h19{height:27.184641pt;}
.h7{height:28.560000pt;}
.h18{height:29.397999pt;}
.h11{height:29.433775pt;}
.h21{height:29.514570pt;}
.h20{height:29.633023pt;}
.h10{height:30.399505pt;}
.h13{height:31.157778pt;}
.h15{height:32.879237pt;}
.h23{height:33.287109pt;}
.h1c{height:34.430976pt;}
.he{height:34.813542pt;}
.h1e{height:35.052646pt;}
.h22{height:37.059648pt;}
.h1d{height:37.087439pt;}
.h24{height:37.208383pt;}
.hd{height:38.256384pt;}
.h12{height:38.681455pt;}
.hb{height:38.947124pt;}
.h6{height:40.800000pt;}
.h17{height:41.380832pt;}
.h3{height:42.840000pt;}
.h16{height:44.436941pt;}
.h9{height:45.271688pt;}
.h2{height:48.960000pt;}
.h14{height:51.339332pt;}
.ha{height:54.767117pt;}
.hc{height:68.861952pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h1f{height:412.250600pt;}
.h1a{height:793.701333pt;}
.h1b{height:794.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:175.580236pt;}
.w8{width:566.209120pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.w6{width:1122.520000pt;}
.w7{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x52{left:2.795787pt;}
.xa{left:26.021437pt;}
.x55{left:29.725120pt;}
.x6{left:51.603593pt;}
.x54{left:84.217120pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x1e{left:100.041333pt;}
.x5{left:102.046667pt;}
.xd{left:106.120000pt;}
.x8{left:108.542667pt;}
.x7{left:109.606667pt;}
.x3b{left:114.218667pt;}
.x23{left:118.186467pt;}
.x24{left:121.150133pt;}
.xc{left:130.393333pt;}
.x3c{left:134.421333pt;}
.x1c{left:141.033133pt;}
.x39{left:142.689333pt;}
.x1d{left:143.856267pt;}
.x3d{left:145.081333pt;}
.x19{left:147.984000pt;}
.x37{left:151.320000pt;}
.x38{left:153.310667pt;}
.x36{left:155.630667pt;}
.x35{left:168.249333pt;}
.xb{left:169.348000pt;}
.xf{left:178.324000pt;}
.x4{left:180.874667pt;}
.x31{left:185.142667pt;}
.x56{left:188.301333pt;}
.x17{left:190.673333pt;}
.x18{left:192.722667pt;}
.x58{left:224.086667pt;}
.x59{left:225.473333pt;}
.x1f{left:226.446667pt;}
.xe{left:230.520000pt;}
.x57{left:236.225333pt;}
.x51{left:243.846667pt;}
.x34{left:245.280000pt;}
.x22{left:248.036000pt;}
.x32{left:256.256000pt;}
.x1a{left:262.941333pt;}
.x27{left:265.177333pt;}
.x21{left:269.909333pt;}
.x28{left:274.225333pt;}
.x47{left:289.894667pt;}
.x20{left:291.782667pt;}
.x48{left:292.829333pt;}
.x10{left:296.612000pt;}
.x11{left:301.541333pt;}
.x29{left:323.937333pt;}
.x4f{left:325.478667pt;}
.x2a{left:329.649333pt;}
.x4b{left:331.776000pt;}
.x49{left:333.112000pt;}
.x4a{left:334.432000pt;}
.x4c{left:335.526667pt;}
.x4d{left:340.960000pt;}
.x4e{left:345.126667pt;}
.x46{left:346.546667pt;}
.x50{left:355.042667pt;}
.x3e{left:356.517333pt;}
.x3f{left:365.052000pt;}
.x12{left:377.602667pt;}
.x13{left:384.253333pt;}
.x3{left:404.408000pt;}
.x45{left:464.421333pt;}
.x44{left:467.906667pt;}
.x33{left:482.428000pt;}
.x2b{left:499.897333pt;}
.x2c{left:510.822667pt;}
.x14{left:516.994667pt;}
.x15{left:523.645333pt;}
.x3a{left:537.057333pt;}
.x2d{left:556.908000pt;}
.x53{left:562.839787pt;}
.x2e{left:567.834667pt;}
.x40{left:573.402667pt;}
.x41{left:581.937333pt;}
.x16{left:583.194667pt;}
.x25{left:595.013333pt;}
.x42{left:602.141333pt;}
.x43{left:612.801333pt;}
.x9{left:623.413317pt;}
.x2f{left:641.741333pt;}
.x30{left:652.666667pt;}
.x1b{left:676.165333pt;}
.x26{left:688.608000pt;}
}




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