
    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_c20b1f83ff7d0d6425c0d4a5.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_cd12523ce31d36ea146f1aec.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_50fa1178ebb761dbd235eb5b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_3ac6d6aef8504fad2f6d1daf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.834473;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_f990da9b92e2e26162fbdf2c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a04a9d817372c06ac9cfe5a.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_97c608cfba63034e170a6713.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.057000;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_e262d68f2d24f654c3110f2b.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_13492f64d38a48540fa61b4c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c0aa64cb12518801cddde1a7.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_60c7c412c02b8fba198ea8f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.007000;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_d186075df2e9a65159e6bfcd.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_b5bce67b21d7e4b5e08ca77b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.750000;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_c0cbab331187c2ce642c9878.woff2')format("woff");}.fff{font-family:fff;line-height:0.740723;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_f1207197ff9ec9b3984e52f3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.123535;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;}
.m61{transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.125000,0.000000,0.000000,0.250000,0,0);}
.m60{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m5f{transform:matrix(0.244994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244994,0.000000,0.000000,0.250000,0,0);}
.m57{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);}
.m55{transform:matrix(0.245042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245042,0.000000,0.000000,0.250000,0,0);}
.m5c{transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245220,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.245777,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245777,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245777,0.000000,0.000000,0.250000,0,0);}
.m59{transform:matrix(0.246188,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246188,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246188,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246210,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246235,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246765,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.246798,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246798,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246798,0.000000,0.000000,0.250000,0,0);}
.m5b{transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247190,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247355,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247543,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247863,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247905,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247913,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248095,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248160,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248197,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248280,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248457,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248475,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248522,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248592,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248630,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248642,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248665,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248670,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248768,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248828,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248867,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248894,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248895,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248908,0.000000,0.000000,0.250000,0,0);}
.m5e{transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248915,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248918,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248950,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248980,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248990,0.000000,0.000000,0.250000,0,0);}
.m54{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);}
.m23{transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249068,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249070,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249118,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249130,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249180,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249207,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249235,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249240,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249245,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249275,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249298,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249330,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249357,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249430,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249450,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249495,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249543,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249560,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249569,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249608,0.000000,0.000000,0.250000,0,0);}
.m5d{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249650,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249668,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249678,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249680,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249690,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249700,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249705,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249717,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249720,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249725,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249735,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249743,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249755,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249763,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249795,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249808,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249835,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249865,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249903,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249910,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249918,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249925,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249927,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249931,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249932,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249945,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249957,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249970,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249972,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249980,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249980,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);}
.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:-30.000000px;}
.v5{vertical-align:-19.980000px;}
.v6{vertical-align:-13.986000px;}
.v3{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:8.471400px;}
.v7{vertical-align:15.984000px;}
.v4{vertical-align:19.980000px;}
.ls1f{letter-spacing:-7.344000px;}
.ls21{letter-spacing:-5.832000px;}
.ls2a{letter-spacing:-5.688000px;}
.ls22{letter-spacing:-5.544000px;}
.ls2c{letter-spacing:-5.400000px;}
.ls3{letter-spacing:-5.220000px;}
.ls4{letter-spacing:-5.040000px;}
.ls2{letter-spacing:-4.860000px;}
.ls2b{letter-spacing:-4.824000px;}
.ls29{letter-spacing:-4.752000px;}
.ls23{letter-spacing:-4.680000px;}
.ls1c{letter-spacing:-4.320000px;}
.ls46{letter-spacing:-3.816000px;}
.ls24{letter-spacing:-3.024000px;}
.ls3f{letter-spacing:-2.484000px;}
.ls2e{letter-spacing:-2.448000px;}
.ls33{letter-spacing:-2.232000px;}
.lsa{letter-spacing:-2.160000px;}
.ls37{letter-spacing:-2.088000px;}
.ls36{letter-spacing:-1.944000px;}
.lse{letter-spacing:-1.872000px;}
.ls44{letter-spacing:-1.860000px;}
.ls9{letter-spacing:-1.800000px;}
.ls42{letter-spacing:-1.680000px;}
.ls40{letter-spacing:-1.656000px;}
.ls25{letter-spacing:-1.560000px;}
.ls31{letter-spacing:-1.500000px;}
.lsb{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-1.380000px;}
.ls2d{letter-spacing:-1.368000px;}
.ls5{letter-spacing:-1.320000px;}
.ls8{letter-spacing:-1.260000px;}
.ls3d{letter-spacing:-1.224000px;}
.ls34{letter-spacing:-1.215000px;}
.ls6{letter-spacing:-1.200000px;}
.ls32{letter-spacing:-1.008000px;}
.ls1d{letter-spacing:-0.960000px;}
.ls38{letter-spacing:-0.945000px;}
.ls26{letter-spacing:-0.909480px;}
.ls28{letter-spacing:-0.900000px;}
.lsf{letter-spacing:-0.864000px;}
.ls16{letter-spacing:-0.840000px;}
.ls20{letter-spacing:-0.804540px;}
.ls1a{letter-spacing:-0.769560px;}
.ls27{letter-spacing:-0.734580px;}
.ls11{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.699600px;}
.ls43{letter-spacing:-0.576000px;}
.ls1e{letter-spacing:-0.559680px;}
.ls3a{letter-spacing:-0.524700px;}
.ls17{letter-spacing:-0.489720px;}
.ls48{letter-spacing:-0.486000px;}
.ls3b{letter-spacing:-0.432000px;}
.ls35{letter-spacing:-0.288000px;}
.ls3e{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls41{letter-spacing:0.072000px;}
.ls30{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls14{letter-spacing:0.792000px;}
.ls3c{letter-spacing:1.224000px;}
.ls10{letter-spacing:1.368000px;}
.ls45{letter-spacing:1.728000px;}
.ls47{letter-spacing:5.850000px;}
.ls1b{letter-spacing:25.839600px;}
.ls12{letter-spacing:25.970400px;}
.lsd{letter-spacing:34.141800px;}
.ls13{letter-spacing:71.040408px;}
.ls1{letter-spacing:101.516400px;}
.lsc{letter-spacing:112.064400px;}
.ls39{letter-spacing:141.098100px;}
.ls2f{letter-spacing:466.610400px;}
.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;}
}
.ws1d{word-spacing:-24.300000px;}
.wse6{word-spacing:-23.976000px;}
.ws4{word-spacing:-14.400000px;}
.wsc0{word-spacing:-11.520000px;}
.wsfc{word-spacing:-10.920000px;}
.ws32{word-spacing:-9.094800px;}
.ws33{word-spacing:-8.395200px;}
.wsa0{word-spacing:-8.360220px;}
.ws7a{word-spacing:-8.290260px;}
.ws9a{word-spacing:-8.185320px;}
.ws9b{word-spacing:-6.716160px;}
.wsd3{word-spacing:-6.296400px;}
.ws6a{word-spacing:-5.820000px;}
.wsf6{word-spacing:-5.280000px;}
.ws51{word-spacing:-4.800000px;}
.ws14{word-spacing:-3.960000px;}
.ws5{word-spacing:-3.900000px;}
.wsdb{word-spacing:-3.840000px;}
.wsa{word-spacing:-3.780000px;}
.wsc8{word-spacing:-3.720000px;}
.wsf1{word-spacing:-3.660000px;}
.wse8{word-spacing:-3.600000px;}
.wsed{word-spacing:-3.540000px;}
.wscc{word-spacing:-3.480000px;}
.wsf2{word-spacing:-3.420000px;}
.ws88{word-spacing:-3.360000px;}
.wsc7{word-spacing:-3.300000px;}
.ws48{word-spacing:-3.240000px;}
.ws11{word-spacing:-3.180000px;}
.ws55{word-spacing:-3.120000px;}
.wsa5{word-spacing:-3.060000px;}
.ws36{word-spacing:-3.000000px;}
.ws50{word-spacing:-2.940000px;}
.ws6{word-spacing:-2.880000px;}
.wse7{word-spacing:-2.820000px;}
.ws8d{word-spacing:-2.760000px;}
.wse4{word-spacing:-2.700000px;}
.ws53{word-spacing:-2.640000px;}
.ws3c{word-spacing:-2.580000px;}
.ws61{word-spacing:-2.460000px;}
.ws1b{word-spacing:-2.400000px;}
.ws81{word-spacing:-2.340000px;}
.wsac{word-spacing:-2.310000px;}
.wsc1{word-spacing:-2.280000px;}
.wsab{word-spacing:-2.220000px;}
.ws2d{word-spacing:-2.160000px;}
.ws82{word-spacing:-2.142000px;}
.ws3e{word-spacing:-2.100000px;}
.ws7e{word-spacing:-2.040000px;}
.ws41{word-spacing:-1.980000px;}
.ws3f{word-spacing:-1.920000px;}
.ws42{word-spacing:-1.860000px;}
.wsb2{word-spacing:-1.800000px;}
.ws94{word-spacing:-1.740000px;}
.ws12{word-spacing:-1.680000px;}
.ws4f{word-spacing:-1.620000px;}
.wsb1{word-spacing:-1.560000px;}
.wsa4{word-spacing:-1.536000px;}
.wscb{word-spacing:-1.500000px;}
.wsaa{word-spacing:-1.440000px;}
.ws1f{word-spacing:-1.380000px;}
.wsa1{word-spacing:-1.320000px;}
.ws21{word-spacing:-1.260000px;}
.ws4d{word-spacing:-1.200000px;}
.ws8f{word-spacing:-1.176000px;}
.wsbb{word-spacing:-1.140000px;}
.ws91{word-spacing:-1.134000px;}
.ws29{word-spacing:-1.080000px;}
.ws3b{word-spacing:-1.020000px;}
.wsc{word-spacing:-0.960000px;}
.ws76{word-spacing:-0.900000px;}
.ws98{word-spacing:-0.882000px;}
.ws18{word-spacing:-0.840000px;}
.ws35{word-spacing:-0.780000px;}
.wsf{word-spacing:-0.720000px;}
.wsd5{word-spacing:-0.675000px;}
.ws3d{word-spacing:-0.660000px;}
.ws7c{word-spacing:-0.600000px;}
.wsfe{word-spacing:-0.594000px;}
.ws1e{word-spacing:-0.540000px;}
.ws10{word-spacing:-0.480000px;}
.ws5d{word-spacing:-0.420000px;}
.ws4b{word-spacing:-0.360000px;}
.ws6d{word-spacing:-0.300000px;}
.ws63{word-spacing:-0.240000px;}
.ws44{word-spacing:-0.180000px;}
.ws37{word-spacing:-0.120000px;}
.ws8b{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsfd{word-spacing:0.048000px;}
.ws24{word-spacing:0.060000px;}
.ws23{word-spacing:0.120000px;}
.ws8e{word-spacing:0.126000px;}
.ws62{word-spacing:0.180000px;}
.ws43{word-spacing:0.240000px;}
.ws7{word-spacing:0.300000px;}
.ws95{word-spacing:0.360000px;}
.ws70{word-spacing:0.420000px;}
.ws25{word-spacing:0.480000px;}
.ws22{word-spacing:0.540000px;}
.ws78{word-spacing:0.559680px;}
.ws71{word-spacing:0.600000px;}
.ws52{word-spacing:0.660000px;}
.ws77{word-spacing:0.699600px;}
.ws4c{word-spacing:0.720000px;}
.wsd2{word-spacing:0.765000px;}
.ws69{word-spacing:0.769560px;}
.ws58{word-spacing:0.780000px;}
.ws46{word-spacing:0.840000px;}
.ws26{word-spacing:0.900000px;}
.wsd1{word-spacing:0.945000px;}
.ws67{word-spacing:0.960000px;}
.wsc2{word-spacing:1.008000px;}
.ws80{word-spacing:1.020000px;}
.wscf{word-spacing:1.080000px;}
.wse0{word-spacing:1.140000px;}
.wsb{word-spacing:1.200000px;}
.wsc9{word-spacing:1.215000px;}
.ws1{word-spacing:1.260000px;}
.ws6b{word-spacing:1.320000px;}
.ws27{word-spacing:1.380000px;}
.ws3{word-spacing:1.440000px;}
.wsb3{word-spacing:1.470000px;}
.ws39{word-spacing:1.500000px;}
.ws65{word-spacing:1.560000px;}
.ws2{word-spacing:1.620000px;}
.ws38{word-spacing:1.680000px;}
.wsa2{word-spacing:1.740000px;}
.ws5c{word-spacing:1.800000px;}
.ws5f{word-spacing:1.860000px;}
.ws74{word-spacing:1.920000px;}
.ws6e{word-spacing:1.980000px;}
.ws90{word-spacing:2.016000px;}
.ws60{word-spacing:2.040000px;}
.wsc5{word-spacing:2.100000px;}
.ws17{word-spacing:2.160000px;}
.ws13{word-spacing:2.220000px;}
.ws7d{word-spacing:2.280000px;}
.ws1a{word-spacing:2.340000px;}
.ws6c{word-spacing:2.400000px;}
.ws45{word-spacing:2.460000px;}
.ws66{word-spacing:2.520000px;}
.wsb6{word-spacing:2.580000px;}
.wsb8{word-spacing:2.640000px;}
.ws5e{word-spacing:2.700000px;}
.ws54{word-spacing:2.760000px;}
.ws89{word-spacing:2.820000px;}
.wsb0{word-spacing:2.880000px;}
.wsb9{word-spacing:2.940000px;}
.ws97{word-spacing:3.000000px;}
.ws9e{word-spacing:3.024000px;}
.wsbd{word-spacing:3.060000px;}
.ws19{word-spacing:3.120000px;}
.ws8a{word-spacing:3.180000px;}
.ws9{word-spacing:3.240000px;}
.ws96{word-spacing:3.300000px;}
.ws68{word-spacing:3.360000px;}
.ws8{word-spacing:3.420000px;}
.ws4a{word-spacing:3.480000px;}
.ws20{word-spacing:3.540000px;}
.ws3a{word-spacing:3.600000px;}
.ws59{word-spacing:3.660000px;}
.wsbc{word-spacing:3.720000px;}
.ws49{word-spacing:3.780000px;}
.wsba{word-spacing:3.840000px;}
.ws7f{word-spacing:3.900000px;}
.ws40{word-spacing:3.960000px;}
.ws28{word-spacing:4.020000px;}
.wsd{word-spacing:4.080000px;}
.wsee{word-spacing:4.140000px;}
.ws4e{word-spacing:4.200000px;}
.wsa9{word-spacing:4.260000px;}
.ws75{word-spacing:4.320000px;}
.wsf7{word-spacing:4.380000px;}
.wsa3{word-spacing:4.440000px;}
.ws9f{word-spacing:4.500000px;}
.ws5a{word-spacing:4.560000px;}
.ws8c{word-spacing:4.620000px;}
.wsd8{word-spacing:4.680000px;}
.wse3{word-spacing:4.740000px;}
.ws57{word-spacing:4.800000px;}
.ws6f{word-spacing:4.860000px;}
.wsdc{word-spacing:4.920000px;}
.wsdf{word-spacing:5.100000px;}
.wsdd{word-spacing:5.280000px;}
.wsec{word-spacing:5.340000px;}
.wsf5{word-spacing:5.400000px;}
.wseb{word-spacing:5.460000px;}
.wse{word-spacing:5.520000px;}
.wsa8{word-spacing:5.580000px;}
.wsae{word-spacing:5.640000px;}
.wsf3{word-spacing:5.700000px;}
.wsf9{word-spacing:5.820000px;}
.ws16{word-spacing:5.880000px;}
.wsd4{word-spacing:6.060000px;}
.wsd7{word-spacing:6.180000px;}
.ws87{word-spacing:6.300000px;}
.ws56{word-spacing:6.780000px;}
.ws86{word-spacing:6.960000px;}
.wsc4{word-spacing:7.020000px;}
.ws15{word-spacing:7.260000px;}
.wsef{word-spacing:7.860000px;}
.wse9{word-spacing:9.060000px;}
.wsfa{word-spacing:11.160000px;}
.wse2{word-spacing:38.620944px;}
.wsa7{word-spacing:52.135416px;}
.ws7b{word-spacing:52.136016px;}
.ws93{word-spacing:52.136616px;}
.ws34{word-spacing:52.137216px;}
.ws73{word-spacing:52.137816px;}
.ws85{word-spacing:52.138416px;}
.ws84{word-spacing:52.139016px;}
.wsf8{word-spacing:190.650600px;}
.ws2c{word-spacing:191.694600px;}
.wsde{word-spacing:192.126600px;}
.ws31{word-spacing:193.422600px;}
.wsc3{word-spacing:194.286600px;}
.ws5b{word-spacing:194.322600px;}
.ws64{word-spacing:194.502600px;}
.wsbe{word-spacing:195.150600px;}
.wsf0{word-spacing:195.618600px;}
.wse5{word-spacing:196.266600px;}
.wsca{word-spacing:196.662600px;}
.wsda{word-spacing:197.094600px;}
.wsf4{word-spacing:197.562600px;}
.ws2e{word-spacing:197.994600px;}
.ws2b{word-spacing:198.426600px;}
.wsd0{word-spacing:198.858600px;}
.wse1{word-spacing:199.470600px;}
.wsb5{word-spacing:199.902600px;}
.wsd9{word-spacing:200.154600px;}
.wsea{word-spacing:200.766600px;}
.ws1c{word-spacing:201.198600px;}
.ws47{word-spacing:201.234600px;}
.ws2a{word-spacing:201.414600px;}
.wscd{word-spacing:201.630600px;}
.wsce{word-spacing:202.062600px;}
.wsd6{word-spacing:202.314600px;}
.wsc6{word-spacing:202.494600px;}
.wsb7{word-spacing:203.178600px;}
.wsfb{word-spacing:207.246600px;}
.ws72{word-spacing:208.794600px;}
.ws99{word-spacing:209.874600px;}
.wsa6{word-spacing:210.090600px;}
.wsaf{word-spacing:210.270600px;}
.wsb4{word-spacing:211.998600px;}
.ws92{word-spacing:212.430600px;}
.wsad{word-spacing:212.898600px;}
.ws83{word-spacing:213.294600px;}
.ws79{word-spacing:217.830600px;}
.wsbf{word-spacing:224.692800px;}
.ws30{word-spacing:445.020000px;}
.ws2f{word-spacing:510.780000px;}
.ws9c{word-spacing:720.367800px;}
.ws9d{word-spacing:746.815800px;}
._0{margin-left:-86.142600px;}
._e{margin-left:-75.199800px;}
._11{margin-left:-68.363400px;}
._31{margin-left:-53.731200px;}
._2d{margin-left:-7.182000px;}
._3{margin-left:-6.030000px;}
._a{margin-left:-4.608000px;}
._5{margin-left:-2.736000px;}
._2{margin-left:-1.350000px;}
._1{width:1.458000px;}
._7{width:2.766000px;}
._4{width:4.248000px;}
._6{width:5.652000px;}
._9{width:12.960000px;}
._14{width:14.391600px;}
._10{width:15.861600px;}
._30{width:26.688600px;}
._8{width:28.356600px;}
._12{width:33.300000px;}
._1a{width:48.462000px;}
._25{width:71.588400px;}
._20{width:105.374400px;}
._32{width:179.576400px;}
._38{width:203.074800px;}
._3b{width:282.264000px;}
._3c{width:290.406000px;}
._19{width:320.340000px;}
._3a{width:324.312000px;}
._3d{width:365.208000px;}
._3e{width:390.408000px;}
._39{width:405.240000px;}
._2b{width:413.664000px;}
._2f{width:456.822000px;}
._2e{width:464.688000px;}
._21{width:534.096000px;}
._29{width:622.800000px;}
._17{width:687.930000px;}
._16{width:721.890000px;}
._18{width:768.540000px;}
._22{width:862.320000px;}
._1f{width:899.616000px;}
._1b{width:939.120000px;}
._2a{width:1074.048000px;}
._28{width:1142.640000px;}
._34{width:1144.432800px;}
._24{width:1151.040000px;}
._35{width:1243.888800px;}
._33{width:1285.936800px;}
._37{width:1352.032800px;}
._36{width:1353.280800px;}
._23{width:1589.808000px;}
._15{width:1696.860000px;}
._2c{width:1723.920000px;}
._26{width:1757.040000px;}
._13{width:1759.050000px;}
._1e{width:1803.456000px;}
._c{width:1837.680000px;}
._f{width:1839.648000px;}
._1c{width:1898.028000px;}
._27{width:1981.584000px;}
._1d{width:2011.632000px;}
._d{width:2038.080000px;}
._b{width:2072.736000px;}
.fc6{color:rgb(229,0,125);}
.fc5{color:rgb(0,0,255);}
.fc3{color:rgb(35,0,80);}
.fc2{color:rgb(30,45,190);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(250,60,75);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:24.486000px;}
.fs10{font-size:26.235000px;}
.fse{font-size:27.984000px;}
.fsc{font-size:34.980000px;}
.fs11{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:66.000000px;}
.fsb{font-size:67.200000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs6{font-size:180.000000px;}
.fs12{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:66.525004px;}
.y346{bottom:82.780950px;}
.y34d{bottom:87.421650px;}
.y345{bottom:94.780950px;}
.y4{bottom:97.125005px;}
.y34c{bottom:98.591400px;}
.y344{bottom:106.780950px;}
.y183{bottom:114.803250px;}
.y110{bottom:118.299750px;}
.ydb{bottom:118.299900px;}
.y265{bottom:118.549500px;}
.y343{bottom:118.780950px;}
.y2ec{bottom:122.424750px;}
.y182{bottom:128.303250px;}
.y153{bottom:128.303400px;}
.y342{bottom:130.780950px;}
.y185{bottom:131.799750px;}
.y10f{bottom:131.799900px;}
.yda{bottom:131.800050px;}
.y335{bottom:132.900900px;}
.y52{bottom:138.736500px;}
.y21{bottom:139.264499px;}
.y2eb{bottom:139.974750px;}
.y1c7{bottom:141.803550px;}
.y341{bottom:142.780950px;}
.y181{bottom:145.299750px;}
.y152{bottom:145.299900px;}
.y10e{bottom:145.300050px;}
.yd9{bottom:145.300200px;}
.y30e{bottom:150.451050px;}
.y32b{bottom:151.609650px;}
.y340{bottom:154.780950px;}
.y180{bottom:155.303400px;}
.y1b2{bottom:155.303700px;}
.y51{bottom:156.286500px;}
.y2ea{bottom:157.524750px;}
.y285{bottom:158.799900px;}
.y151{bottom:158.800050px;}
.y10d{bottom:158.800200px;}
.yd8{bottom:158.800350px;}
.y30d{bottom:168.001050px;}
.y17f{bottom:168.803400px;}
.y32a{bottom:169.159650px;}
.y236{bottom:171.296700px;}
.y284{bottom:172.300050px;}
.y150{bottom:172.300200px;}
.y10c{bottom:172.300350px;}
.yd7{bottom:172.300500px;}
.y50{bottom:173.836650px;}
.y264{bottom:180.037650px;}
.y223{bottom:180.523350px;}
.y17e{bottom:182.303400px;}
.y34b{bottom:182.591400px;}
.y34e{bottom:184.077450px;}
.y283{bottom:185.800200px;}
.y14f{bottom:185.800350px;}
.y10b{bottom:185.800500px;}
.yd6{bottom:185.800650px;}
.y2ac{bottom:186.661350px;}
.y329{bottom:186.709650px;}
.y33f{bottom:187.284450px;}
.y235{bottom:188.846700px;}
.y263{bottom:193.537650px;}
.y2e9{bottom:193.783500px;}
.y17d{bottom:195.803400px;}
.y13f{bottom:195.804300px;}
.y18{bottom:196.933500px;}
.y222{bottom:198.073500px;}
.y22f{bottom:198.892050px;}
.y14e{bottom:199.300500px;}
.y10a{bottom:199.300650px;}
.yd5{bottom:199.300800px;}
.y2ab{bottom:204.211350px;}
.y30c{bottom:204.259650px;}
.y4f{bottom:205.843200px;}
.y234{bottom:206.396700px;}
.y262{bottom:207.037650px;}
.y13e{bottom:209.304300px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2e8{bottom:211.333350px;}
.y8c{bottom:212.656350px;}
.y17c{bottom:212.799900px;}
.y14d{bottom:212.800650px;}
.y109{bottom:212.800800px;}
.yd4{bottom:212.800950px;}
.y1dd{bottom:212.888250px;}
.y22e{bottom:216.442050px;}
.y2aa{bottom:221.761350px;}
.y30b{bottom:221.809650px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1f1{bottom:222.394050px;}
.y328{bottom:222.968400px;}
.y4e{bottom:223.393200px;}
.y1a2{bottom:224.515650px;}
.y1c6{bottom:225.021150px;}
.y17b{bottom:226.300050px;}
.y13d{bottom:226.300800px;}
.y108{bottom:226.300950px;}
.yd3{bottom:226.301100px;}
.y1dc{bottom:226.388250px;}
.y260{bottom:228.803250px;}
.y24b{bottom:229.814550px;}
.y233{bottom:232.450500px;}
.y22d{bottom:233.992050px;}
.y221{bottom:234.332100px;}
.y2b7{bottom:234.554850px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y8b{bottom:237.660300px;}
.y2a9{bottom:239.311350px;}
.y30a{bottom:239.359650px;}
.y17a{bottom:239.800200px;}
.y107{bottom:239.801100px;}
.yd2{bottom:239.801250px;}
.y1f0{bottom:239.944050px;}
.y327{bottom:240.518250px;}
.y4d{bottom:240.943200px;}
.y1b1{bottom:241.985850px;}
.y1a1{bottom:242.065650px;}
.y1c5{bottom:242.571150px;}
.y232{bottom:245.950500px;}
.y25f{bottom:246.353250px;}
.y24a{bottom:247.364550px;}
.y2e7{bottom:247.592100px;}
.y282{bottom:249.516150px;}
.y217{bottom:250.338900px;}
.y22c{bottom:251.542050px;}
.y220{bottom:251.882100px;}
.y2b6{bottom:252.104850px;}
.y106{bottom:253.301250px;}
.yd1{bottom:253.301400px;}
.y1ef{bottom:257.494050px;}
.y334{bottom:258.068250px;}
.y1b0{bottom:259.535850px;}
.y1a0{bottom:259.615650px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1c4{bottom:260.121150px;}
.y25e{bottom:263.903250px;}
.y249{bottom:264.914550px;}
.y2e6{bottom:265.142100px;}
.y34a{bottom:265.948800px;}
.y105{bottom:266.801400px;}
.yd0{bottom:266.801550px;}
.y281{bottom:267.066150px;}
.y22b{bottom:269.092050px;}
.y21f{bottom:269.432100px;}
.y148{bottom:269.457300px;}
.y2b5{bottom:269.655000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y4c{bottom:272.949900px;}
.y1ee{bottom:275.044050px;}
.y216{bottom:275.166750px;}
.y2a8{bottom:275.569950px;}
.y309{bottom:275.618250px;}
.y326{bottom:276.777000px;}
.y1af{bottom:277.085850px;}
.y19f{bottom:277.165650px;}
.y1c3{bottom:277.671150px;}
.y104{bottom:280.301550px;}
.y25d{bottom:281.453250px;}
.y349{bottom:282.448800px;}
.y248{bottom:282.464700px;}
.y2e5{bottom:282.692100px;}
.y280{bottom:284.616150px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y21e{bottom:286.982100px;}
.y147{bottom:287.007450px;}
.y2b4{bottom:287.205000px;}
.y13c{bottom:289.374900px;}
.y4b{bottom:290.499900px;}
.y1ed{bottom:292.594050px;}
.y2a7{bottom:293.119950px;}
.y308{bottom:293.168400px;}
.y325{bottom:294.327000px;}
.y1ae{bottom:294.635850px;}
.y19e{bottom:294.715650px;}
.y22a{bottom:295.146000px;}
.y1c2{bottom:295.221150px;}
.y348{bottom:298.948800px;}
.y25c{bottom:299.003250px;}
.y215{bottom:299.994600px;}
.y247{bottom:300.014550px;}
.y8a{bottom:300.931950px;}
.y179{bottom:302.166000px;}
.y21d{bottom:304.532100px;}
.y146{bottom:304.557450px;}
.y2b3{bottom:304.754850px;}
.y13b{bottom:306.924900px;}
.y4a{bottom:308.049900px;}
.y229{bottom:308.646000px;}
.y1ec{bottom:310.144050px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y2a6{bottom:310.669950px;}
.y333{bottom:311.877000px;}
.y1ad{bottom:312.185850px;}
.y19d{bottom:312.265650px;}
.y1c1{bottom:312.771150px;}
.y209{bottom:313.153500px;}
.y25b{bottom:316.553250px;}
.y246{bottom:317.564550px;}
.y279{bottom:318.430050px;}
.y2e4{bottom:318.950700px;}
.y178{bottom:319.716000px;}
.y21c{bottom:322.082100px;}
.y145{bottom:322.107450px;}
.y2b2{bottom:322.304850px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y13a{bottom:324.474750px;}
.y214{bottom:324.822450px;}
.y49{bottom:325.599900px;}
.y1eb{bottom:327.694050px;}
.y2a5{bottom:328.220100px;}
.ycf{bottom:328.220250px;}
.y307{bottom:329.427000px;}
.y1ac{bottom:329.735850px;}
.y19c{bottom:329.815650px;}
.y1c0{bottom:330.321150px;}
.y324{bottom:330.585600px;}
.y208{bottom:330.703650px;}
.y347{bottom:331.204800px;}
.y25a{bottom:334.103250px;}
.y245{bottom:335.114550px;}
.y278{bottom:335.980050px;}
.y177{bottom:337.266150px;}
.y103{bottom:339.854850px;}
.y213{bottom:342.372450px;}
.y1ea{bottom:345.244050px;}
.y2a4{bottom:345.770100px;}
.yce{bottom:345.770250px;}
.y306{bottom:346.977000px;}
.y1ab{bottom:347.285850px;}
.y19b{bottom:347.365650px;}
.y1bf{bottom:347.871150px;}
.yf{bottom:348.133500px;}
.y323{bottom:348.135600px;}
.y21b{bottom:348.136050px;}
.y207{bottom:348.253650px;}
.y259{bottom:351.653250px;}
.y244{bottom:352.664550px;}
.y48{bottom:352.929450px;}
.y277{bottom:353.530050px;}
.y176{bottom:354.816150px;}
.y2e3{bottom:355.209300px;}
.y102{bottom:357.405000px;}
.y144{bottom:358.366050px;}
.y139{bottom:360.733500px;}
.y21a{bottom:361.636050px;}
.y1e9{bottom:362.794050px;}
.y2a3{bottom:363.319950px;}
.ycd{bottom:363.320250px;}
.y305{bottom:364.527000px;}
.y1aa{bottom:364.835850px;}
.y19a{bottom:364.915650px;}
.y1be{bottom:365.421150px;}
.y33d{bottom:365.685600px;}
.y206{bottom:365.803500px;}
.y212{bottom:367.200300px;}
.y89{bottom:367.203600px;}
.y258{bottom:369.203250px;}
.y1d5{bottom:369.595200px;}
.y7c{bottom:369.630600px;}
.y243{bottom:370.214550px;}
.y276{bottom:371.080050px;}
.y27f{bottom:372.366000px;}
.y2e2{bottom:372.759450px;}
.y101{bottom:374.954850px;}
.y143{bottom:375.916050px;}
.y138{bottom:378.283500px;}
.y1e8{bottom:380.344050px;}
.y2a2{bottom:380.869950px;}
.ycc{bottom:380.870250px;}
.y1a9{bottom:382.385850px;}
.y199{bottom:382.465650px;}
.y1bd{bottom:382.971150px;}
.y33c{bottom:383.235600px;}
.y205{bottom:383.353650px;}
.y322{bottom:384.394350px;}
.y47{bottom:384.936450px;}
.y257{bottom:386.753250px;}
.ye{bottom:386.785499px;}
.y1d4{bottom:387.145200px;}
.y7b{bottom:387.180600px;}
.y242{bottom:387.764550px;}
.y275{bottom:388.630050px;}
.y2e1{bottom:390.309450px;}
.y175{bottom:391.074750px;}
.y211{bottom:392.028000px;}
.y100{bottom:392.505000px;}
.y142{bottom:393.466050px;}
.y137{bottom:395.833500px;}
.y1e7{bottom:397.894050px;}
.y2a1{bottom:398.419950px;}
.ycb{bottom:398.420250px;}
.y1a8{bottom:399.935850px;}
.y198{bottom:400.015650px;}
.y1bc{bottom:400.521150px;}
.y304{bottom:400.785600px;}
.y321{bottom:401.944350px;}
.y256{bottom:404.303250px;}
.y1d3{bottom:404.695200px;}
.y7a{bottom:404.730600px;}
.y241{bottom:405.314550px;}
.y274{bottom:406.180050px;}
.yd{bottom:408.044999px;}
.y174{bottom:408.624750px;}
.yff{bottom:410.055000px;}
.y141{bottom:411.016050px;}
.y136{bottom:413.383500px;}
.y1e6{bottom:415.444050px;}
.y2a0{bottom:415.970100px;}
.yca{bottom:415.970250px;}
.y210{bottom:416.855850px;}
.y46{bottom:416.943150px;}
.y1a7{bottom:417.485850px;}
.y197{bottom:417.565650px;}
.y1bb{bottom:418.071150px;}
.y303{bottom:418.335600px;}
.y320{bottom:419.494350px;}
.y204{bottom:419.612250px;}
.y255{bottom:421.853250px;}
.y1d2{bottom:422.245200px;}
.y240{bottom:422.864550px;}
.y273{bottom:423.730050px;}
.y173{bottom:426.174750px;}
.y2e0{bottom:426.568050px;}
.yfe{bottom:427.604850px;}
.y135{bottom:430.933500px;}
.y1e5{bottom:432.994050px;}
.y88{bottom:433.475250px;}
.y29f{bottom:433.519950px;}
.y45{bottom:434.493150px;}
.y196{bottom:435.115650px;}
.y1ba{bottom:435.621150px;}
.y302{bottom:435.885600px;}
.y33b{bottom:437.044350px;}
.y203{bottom:437.162250px;}
.y254{bottom:439.403250px;}
.y1d1{bottom:439.795200px;}
.y23f{bottom:440.414550px;}
.y79{bottom:440.989350px;}
.y272{bottom:441.280050px;}
.y20f{bottom:441.683700px;}
.y1a6{bottom:443.539800px;}
.y172{bottom:443.724750px;}
.y2df{bottom:444.118050px;}
.yfd{bottom:445.155000px;}
.y134{bottom:448.483500px;}
.y1e4{bottom:450.544050px;}
.y29e{bottom:451.069950px;}
.y44{bottom:452.043150px;}
.yc9{bottom:452.228850px;}
.y195{bottom:452.665650px;}
.y332{bottom:454.594350px;}
.y202{bottom:454.712250px;}
.y31f{bottom:455.752950px;}
.y253{bottom:456.953250px;}
.y1d0{bottom:457.345200px;}
.y23e{bottom:457.964550px;}
.y78{bottom:458.539350px;}
.y271{bottom:458.830050px;}
.y20e{bottom:459.233700px;}
.y171{bottom:461.274750px;}
.y2de{bottom:461.668050px;}
.y1b9{bottom:461.675100px;}
.yfc{bottom:462.704850px;}
.y2b1{bottom:463.863600px;}
.y133{bottom:466.033500px;}
.yc8{bottom:469.778850px;}
.y301{bottom:472.144350px;}
.y201{bottom:472.262250px;}
.y31e{bottom:473.302950px;}
.y252{bottom:474.503250px;}
.y1cf{bottom:474.895200px;}
.y23d{bottom:475.514550px;}
.y77{bottom:476.089350px;}
.y270{bottom:476.380050px;}
.y1e3{bottom:476.598000px;}
.y226{bottom:477.056550px;}
.y170{bottom:478.824750px;}
.y43{bottom:479.372700px;}
.yfb{bottom:480.255000px;}
.y2b0{bottom:481.413600px;}
.y132{bottom:483.583500px;}
.y1b8{bottom:483.679050px;}
.y29d{bottom:487.328700px;}
.yc7{bottom:487.328850px;}
.y194{bottom:488.924400px;}
.y300{bottom:489.694350px;}
.y200{bottom:489.812250px;}
.y1e2{bottom:490.098000px;}
.y33a{bottom:490.852950px;}
.y251{bottom:492.053250px;}
.y1ce{bottom:492.445200px;}
.y23c{bottom:493.064550px;}
.y76{bottom:493.639350px;}
.y26f{bottom:493.930050px;}
.y16f{bottom:496.374750px;}
.yfa{bottom:497.805000px;}
.y2dd{bottom:497.926650px;}
.y2af{bottom:498.963600px;}
.y87{bottom:499.746900px;}
.y131{bottom:501.133500px;}
.y20d{bottom:502.309800px;}
.yc{bottom:502.864502px;}
.y29c{bottom:504.878700px;}
.yc6{bottom:504.878850px;}
.y1ff{bottom:507.362250px;}
.y331{bottom:508.402950px;}
.y31d{bottom:509.561550px;}
.y250{bottom:509.603250px;}
.y1cd{bottom:509.995200px;}
.y23b{bottom:510.614550px;}
.y75{bottom:511.189350px;}
.y42{bottom:511.379400px;}
.y26e{bottom:511.480050px;}
.y16e{bottom:513.924750px;}
.y193{bottom:515.353200px;}
.yf9{bottom:515.354850px;}
.y2ae{bottom:516.513600px;}
.y130{bottom:518.683500px;}
.ya6{bottom:520.227300px;}
.yb{bottom:520.864502px;}
.y29b{bottom:522.428700px;}
.yc5{bottom:522.428850px;}
.y1fe{bottom:524.912250px;}
.y2ff{bottom:525.952950px;}
.y31c{bottom:527.111550px;}
.y1cc{bottom:527.545200px;}
.y23a{bottom:528.164550px;}
.y41{bottom:528.929400px;}
.y26d{bottom:529.030050px;}
.y16d{bottom:531.474750px;}
.y2c9{bottom:532.905000px;}
.y2ad{bottom:534.063600px;}
.y2dc{bottom:534.185400px;}
.y24f{bottom:535.657200px;}
.y12f{bottom:536.233500px;}
.ya5{bottom:536.727300px;}
.ya{bottom:538.864499px;}
.y29a{bottom:539.978700px;}
.yc4{bottom:539.978850px;}
.y192{bottom:540.181050px;}
.y1fd{bottom:542.462250px;}
.y2fe{bottom:543.502950px;}
.y31b{bottom:544.661700px;}
.y1cb{bottom:545.095200px;}
.y26c{bottom:546.580050px;}
.y74{bottom:547.447950px;}
.y16c{bottom:549.024750px;}
.y24e{bottom:549.157200px;}
.y2c8{bottom:550.454850px;}
.yf8{bottom:551.613600px;}
.y2db{bottom:551.735400px;}
.y12e{bottom:553.783500px;}
.y239{bottom:554.218500px;}
.y9{bottom:556.864499px;}
.y299{bottom:557.528700px;}
.yc3{bottom:557.528850px;}
.y1fc{bottom:560.012250px;}
.y40{bottom:560.936100px;}
.ya4{bottom:561.731250px;}
.y330{bottom:562.211550px;}
.y24d{bottom:562.657200px;}
.y73{bottom:564.997950px;}
.y191{bottom:565.008900px;}
.y86{bottom:566.018550px;}
.y16b{bottom:566.574750px;}
.y238{bottom:567.718500px;}
.y2c7{bottom:568.005000px;}
.yf7{bottom:569.163600px;}
.y2da{bottom:569.285400px;}
.y1ca{bottom:571.149150px;}
.y12d{bottom:571.333500px;}
.y26b{bottom:572.634000px;}
.y298{bottom:575.078700px;}
.yc2{bottom:575.078850px;}
.y24c{bottom:576.157200px;}
.y1fb{bottom:577.562250px;}
.y3f{bottom:578.486100px;}
.y2fd{bottom:579.761700px;}
.y31a{bottom:580.920300px;}
.y72{bottom:582.547950px;}
.y16a{bottom:584.124750px;}
.y2c6{bottom:585.555000px;}
.y26a{bottom:586.134000px;}
.yf6{bottom:586.713600px;}
.ya3{bottom:586.735200px;}
.y12c{bottom:588.883500px;}
.y190{bottom:589.836750px;}
.y297{bottom:592.628700px;}
.yc1{bottom:592.628850px;}
.y1c9{bottom:593.153100px;}
.y1fa{bottom:595.112250px;}
.y3e{bottom:596.036100px;}
.y2fc{bottom:597.311550px;}
.y319{bottom:598.470300px;}
.y269{bottom:599.634000px;}
.y169{bottom:601.674750px;}
.y2c4{bottom:603.104850px;}
.ya2{bottom:603.235200px;}
.yf5{bottom:604.263600px;}
.y2d9{bottom:605.544000px;}
.y12b{bottom:606.433500px;}
.y2c5{bottom:608.099850px;}
.y296{bottom:610.178700px;}
.y1f9{bottom:612.662250px;}
.y268{bottom:613.134000px;}
.y3d{bottom:613.586100px;}
.y18f{bottom:614.664600px;}
.y1db{bottom:615.518400px;}
.y318{bottom:616.020300px;}
.y168{bottom:619.224750px;}
.yf4{bottom:621.813600px;}
.y2d8{bottom:623.094000px;}
.y12a{bottom:623.983500px;}
.y295{bottom:627.728700px;}
.ya1{bottom:628.239150px;}
.yc0{bottom:628.887600px;}
.y1da{bottom:629.918400px;}
.y1f8{bottom:630.212250px;}
.y85{bottom:632.290200px;}
.y2fb{bottom:633.570300px;}
.y167{bottom:636.774750px;}
.yf3{bottom:639.363600px;}
.y18e{bottom:639.492300px;}
.y2d7{bottom:640.644000px;}
.y129{bottom:641.533500px;}
.y71{bottom:642.617700px;}
.ya0{bottom:644.739150px;}
.y294{bottom:645.278700px;}
.y8{bottom:645.510000px;}
.y3c{bottom:645.592800px;}
.ybf{bottom:646.437450px;}
.y2fa{bottom:651.120300px;}
.y228{bottom:651.777150px;}
.y317{bottom:652.278900px;}
.y20c{bottom:654.324750px;}
.y27e{bottom:655.483350px;}
.yf2{bottom:656.913600px;}
.y128{bottom:659.083500px;}
.y293{bottom:662.828700px;}
.y3b{bottom:663.142800px;}
.ybe{bottom:663.987600px;}
.y227{bottom:666.177150px;}
.y1f7{bottom:666.470850px;}
.y7{bottom:666.771000px;}
.y2f9{bottom:668.670300px;}
.y9f{bottom:669.743100px;}
.y316{bottom:669.828900px;}
.y20b{bottom:671.874750px;}
.y166{bottom:673.033350px;}
.yf1{bottom:674.463600px;}
.y287{bottom:675.622200px;}
.y1d9{bottom:676.633350px;}
.y127{bottom:676.633500px;}
.y2d6{bottom:676.902750px;}
.y292{bottom:680.378700px;}
.y3a{bottom:680.692800px;}
.ybd{bottom:681.537450px;}
.y18d{bottom:682.568400px;}
.y1f6{bottom:684.020850px;}
.y9e{bottom:686.243100px;}
.y315{bottom:687.378900px;}
.y165{bottom:690.583350px;}
.y2c3{bottom:692.013600px;}
.y286{bottom:693.172200px;}
.y14c{bottom:693.172350px;}
.y1d8{bottom:694.183350px;}
.y2d5{bottom:694.452750px;}
.y291{bottom:697.928700px;}
.y84{bottom:698.561850px;}
.ybc{bottom:699.087450px;}
.y1f5{bottom:701.570850px;}
.y2f8{bottom:704.928900px;}
.y339{bottom:706.087650px;}
.y164{bottom:708.133350px;}
.y2c2{bottom:709.563600px;}
.yf0{bottom:710.722200px;}
.y14b{bottom:710.722350px;}
.y9d{bottom:711.247050px;}
.y1d7{bottom:711.733350px;}
.y2d4{bottom:712.002750px;}
.y39{bottom:712.699500px;}
.y125{bottom:712.892100px;}
.y25{bottom:714.549450px;}
.y290{bottom:715.478700px;}
.ybb{bottom:716.637600px;}
.y261{bottom:717.668400px;}
.y126{bottom:717.887100px;}
.y1f4{bottom:719.120850px;}
.y2f7{bottom:722.478900px;}
.y314{bottom:723.637650px;}
.y163{bottom:725.683350px;}
.y6{bottom:726.298500px;}
.y2c1{bottom:727.113600px;}
.y9c{bottom:727.747050px;}
.yef{bottom:728.272200px;}
.y14a{bottom:728.272350px;}
.y18c{bottom:729.283350px;}
.y38{bottom:730.249500px;}
.y124{bottom:730.442100px;}
.y28f{bottom:733.028700px;}
.yba{bottom:734.187450px;}
.y70{bottom:735.346050px;}
.y313{bottom:741.187650px;}
.y162{bottom:743.233500px;}
.y2c0{bottom:744.663600px;}
.y1f3{bottom:745.174800px;}
.yee{bottom:745.822200px;}
.y149{bottom:745.822350px;}
.y18b{bottom:746.833350px;}
.y37{bottom:747.799500px;}
.y123{bottom:747.992100px;}
.y2d3{bottom:748.261350px;}
.y28e{bottom:750.578700px;}
.yb9{bottom:751.737600px;}
.y3{bottom:752.599495px;}
.y9b{bottom:752.751000px;}
.y6f{bottom:752.896050px;}
.y219{bottom:754.907250px;}
.y1f2{bottom:758.674800px;}
.y2f6{bottom:758.737650px;}
.y338{bottom:759.896250px;}
.y161{bottom:760.783350px;}
.y2bf{bottom:762.213600px;}
.yed{bottom:763.372350px;}
.y18a{bottom:764.383350px;}
.y83{bottom:764.833500px;}
.y36{bottom:765.349500px;}
.y122{bottom:765.542100px;}
.y2d2{bottom:765.811350px;}
.y28d{bottom:768.128700px;}
.y9a{bottom:769.251000px;}
.yb8{bottom:769.287450px;}
.y218{bottom:769.307250px;}
.y6e{bottom:770.446050px;}
.y2f5{bottom:776.287650px;}
.y337{bottom:777.446250px;}
.y160{bottom:778.333350px;}
.y2be{bottom:779.763600px;}
.yec{bottom:780.922350px;}
.y189{bottom:781.933350px;}
.y121{bottom:783.092100px;}
.y2d1{bottom:783.361350px;}
.y99{bottom:785.751000px;}
.yb7{bottom:786.837450px;}
.y6d{bottom:787.996050px;}
.y2f4{bottom:793.837650px;}
.y312{bottom:794.996250px;}
.y15f{bottom:795.883350px;}
.y2bd{bottom:797.313600px;}
.y35{bottom:797.356200px;}
.yeb{bottom:798.472200px;}
.y188{bottom:799.483500px;}
.y120{bottom:800.642100px;}
.y28c{bottom:804.387300px;}
.yb6{bottom:804.387600px;}
.y140{bottom:804.407250px;}
.y6c{bottom:805.545900px;}
.y98{bottom:810.754800px;}
.y311{bottom:812.546250px;}
.y15e{bottom:813.433350px;}
.y2bc{bottom:814.863600px;}
.y34{bottom:814.906200px;}
.yea{bottom:816.022200px;}
.y187{bottom:817.033500px;}
.y11f{bottom:818.192100px;}
.y2d0{bottom:819.619950px;}
.y28b{bottom:821.937450px;}
.yb5{bottom:821.937600px;}
.y6b{bottom:823.096050px;}
.y97{bottom:827.254800px;}
.y2f3{bottom:830.096250px;}
.y15d{bottom:830.983500px;}
.y82{bottom:831.105150px;}
.y336{bottom:831.254850px;}
.y27d{bottom:832.142100px;}
.y2bb{bottom:832.413600px;}
.y33{bottom:832.456200px;}
.ye9{bottom:833.572200px;}
.y186{bottom:834.583350px;}
.y11e{bottom:835.742100px;}
.y2cf{bottom:837.169950px;}
.y28a{bottom:839.487300px;}
.y6a{bottom:840.646050px;}
.y1b7{bottom:840.666000px;}
.y24{bottom:845.326650px;}
.y2f2{bottom:847.646250px;}
.y15c{bottom:848.533500px;}
.y32f{bottom:848.804850px;}
.y27c{bottom:849.692100px;}
.y2ba{bottom:849.963600px;}
.y32{bottom:850.006200px;}
.y81{bottom:850.605150px;}
.ye8{bottom:851.122350px;}
.y1d6{bottom:852.133350px;}
.y96{bottom:852.258750px;}
.y5c{bottom:853.290750px;}
.y11d{bottom:853.292100px;}
.y289{bottom:857.037300px;}
.y69{bottom:858.196050px;}
.yb4{bottom:858.196200px;}
.y2f1{bottom:865.196250px;}
.y15b{bottom:866.083350px;}
.y32e{bottom:866.354850px;}
.y27b{bottom:867.242100px;}
.y2b9{bottom:867.513600px;}
.ye7{bottom:868.672350px;}
.y5b{bottom:870.840750px;}
.y11c{bottom:870.842100px;}
.y2ce{bottom:873.428700px;}
.y288{bottom:874.587300px;}
.y68{bottom:875.746050px;}
.yb3{bottom:875.746200px;}
.y95{bottom:877.262850px;}
.y225{bottom:878.916000px;}
.y2{bottom:879.369000px;}
.y31{bottom:882.012750px;}
.y20a{bottom:883.633350px;}
.y310{bottom:883.905000px;}
.y27a{bottom:884.792100px;}
.y2b8{bottom:885.063600px;}
.ye6{bottom:886.222200px;}
.y1b6{bottom:887.380950px;}
.y5a{bottom:888.390750px;}
.y11b{bottom:888.392100px;}
.y2cd{bottom:890.978700px;}
.y67{bottom:893.295900px;}
.yb2{bottom:893.296200px;}
.y224{bottom:893.315850px;}
.y94{bottom:893.762850px;}
.y23{bottom:894.826650px;}
.y30{bottom:899.562900px;}
.y2f0{bottom:901.455000px;}
.y15a{bottom:902.342100px;}
.ye5{bottom:903.772200px;}
.y1b5{bottom:904.930950px;}
.y59{bottom:905.940750px;}
.y11a{bottom:905.942100px;}
.y2cc{bottom:908.528700px;}
.y66{bottom:910.846050px;}
.yb1{bottom:910.846200px;}
.y267{bottom:914.016000px;}
.y80{bottom:916.876800px;}
.y2f{bottom:917.112900px;}
.y93{bottom:918.766650px;}
.y2ef{bottom:919.004850px;}
.y159{bottom:919.892100px;}
.y32d{bottom:920.163600px;}
.ye4{bottom:921.322200px;}
.y1b4{bottom:922.480950px;}
.y119{bottom:923.492100px;}
.y65{bottom:928.396050px;}
.yb0{bottom:928.396200px;}
.y266{bottom:928.416000px;}
.y92{bottom:935.266650px;}
.y158{bottom:937.442100px;}
.y32c{bottom:937.713600px;}
.y112{bottom:938.872350px;}
.y1b3{bottom:940.030950px;}
.y118{bottom:941.042100px;}
.y2cb{bottom:944.787300px;}
.y64{bottom:945.946050px;}
.yaf{bottom:945.946200px;}
.y2e{bottom:949.119450px;}
.y22{bottom:951.826650px;}
.yab{bottom:952.495950px;}
.y157{bottom:954.992100px;}
.y2ee{bottom:955.263600px;}
.y111{bottom:956.422200px;}
.ye3{bottom:957.580950px;}
.y117{bottom:958.592100px;}
.y91{bottom:960.270600px;}
.y2ca{bottom:962.337300px;}
.y63{bottom:963.496050px;}
.yae{bottom:963.496200px;}
.y237{bottom:963.516000px;}
.y2d{bottom:966.669600px;}
.y1{bottom:966.726000px;}
.y58{bottom:966.860850px;}
.y156{bottom:972.542100px;}
.y2ed{bottom:972.813600px;}
.y184{bottom:973.972200px;}
.ye2{bottom:975.130950px;}
.y116{bottom:976.142100px;}
.y33e{bottom:979.887300px;}
.y62{bottom:981.045900px;}
.yad{bottom:981.046200px;}
.y7f{bottom:983.148600px;}
.y231{bottom:984.216000px;}
.y2c{bottom:984.219600px;}
.y90{bottom:985.274550px;}
.y155{bottom:990.092100px;}
.y30f{bottom:990.363600px;}
.yaa{bottom:990.853650px;}
.y1a5{bottom:991.522200px;}
.ye1{bottom:992.680950px;}
.y61{bottom:998.596050px;}
.y230{bottom:998.616000px;}
.y57{bottom:998.867550px;}
.y2b{bottom:1001.769600px;}
.y115{bottom:1002.196050px;}
.y154{bottom:1007.642100px;}
.y7e{bottom:1008.152400px;}
.y1a4{bottom:1009.072200px;}
.ya8{bottom:1009.215450px;}
.ye0{bottom:1010.230950px;}
.y8f{bottom:1010.278500px;}
.y60{bottom:1016.146050px;}
.y2a{bottom:1019.319600px;}
.y1a3{bottom:1026.622350px;}
.ydf{bottom:1027.780950px;}
.ya9{bottom:1029.211350px;}
.y56{bottom:1030.874250px;}
.y7d{bottom:1033.156350px;}
.y5f{bottom:1033.696050px;}
.y1c8{bottom:1033.716000px;}
.ya7{bottom:1034.219400px;}
.y8e{bottom:1035.282450px;}
.y1df{bottom:1044.172200px;}
.yde{bottom:1045.330950px;}
.y55{bottom:1048.424250px;}
.y1de{bottom:1061.722200px;}
.y114{bottom:1062.265650px;}
.ydd{bottom:1062.880950px;}
.y54{bottom:1065.974250px;}
.ydc{bottom:1080.430950px;}
.y1e1{bottom:1086.787950px;}
.y5e{bottom:1093.765650px;}
.y8d{bottom:1093.765800px;}
.y113{bottom:1096.765650px;}
.yac{bottom:1096.765800px;}
.y53{bottom:1097.980950px;}
.y1e0{bottom:1101.187800px;}
.y29{bottom:1122.429750px;}
.y27{bottom:1146.437100px;}
.y28{bottom:1180.146900px;}
.y26{bottom:1180.856550px;}
.y5d{bottom:1186.203150px;}
.h14{height:20.005062px;}
.h13{height:20.328000px;}
.h1d{height:21.780000px;}
.h20{height:28.393066px;}
.h17{height:28.578660px;}
.h7{height:32.130000px;}
.h18{height:34.314000px;}
.h1a{height:34.425000px;}
.hf{height:36.720000px;}
.h1c{height:36.765000px;}
.h1b{height:37.382812px;}
.h19{height:37.391760px;}
.h1f{height:39.216000px;}
.h22{height:41.040000px;}
.h16{height:45.000000px;}
.hc{height:45.600000px;}
.h6{height:45.900000px;}
.h11{height:46.728516px;}
.h3{height:48.195000px;}
.h15{height:48.558660px;}
.hd{height:49.020000px;}
.hb{height:50.490000px;}
.h10{height:51.401367px;}
.h1e{height:52.335937px;}
.h2{height:55.080000px;}
.h12{height:65.976000px;}
.he{height:77.976000px;}
.h5{height:78.030000px;}
.h9{height:99.960000px;}
.h4{height:119.055004px;}
.ha{height:129.960000px;}
.h21{height:316.406250px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:63.779550px;}
.x1f{left:78.223200px;}
.x5{left:80.537700px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:110.551200px;}
.x9{left:127.559100px;}
.x13{left:133.934100px;}
.xa{left:140.314950px;}
.xd{left:142.069050px;}
.xf{left:148.818900px;}
.x1d{left:159.448800px;}
.xc{left:170.078700px;}
.xe{left:191.338650px;}
.x4{left:203.484001px;}
.x16{left:224.946600px;}
.x1c{left:271.760100px;}
.x17{left:329.930850px;}
.x12{left:356.631300px;}
.x18{left:407.109150px;}
.x14{left:442.856850px;}
.x3{left:454.959000px;}
.x15{left:474.394650px;}
.x19{left:512.093400px;}
.x1a{left:589.271550px;}
.x7{left:615.755700px;}
.x8{left:621.425100px;}
.x20{left:667.027500px;}
.x1b{left:694.255800px;}
.x1e{left:750.703650px;}
.x10{left:755.583600px;}
.x11{left:765.354300px;}
@media print{
.v1{vertical-align:-26.666667pt;}
.v5{vertical-align:-17.760000pt;}
.v6{vertical-align:-12.432000pt;}
.v3{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:7.530133pt;}
.v7{vertical-align:14.208000pt;}
.v4{vertical-align:17.760000pt;}
.ls1f{letter-spacing:-6.528000pt;}
.ls21{letter-spacing:-5.184000pt;}
.ls2a{letter-spacing:-5.056000pt;}
.ls22{letter-spacing:-4.928000pt;}
.ls2c{letter-spacing:-4.800000pt;}
.ls3{letter-spacing:-4.640000pt;}
.ls4{letter-spacing:-4.480000pt;}
.ls2{letter-spacing:-4.320000pt;}
.ls2b{letter-spacing:-4.288000pt;}
.ls29{letter-spacing:-4.224000pt;}
.ls23{letter-spacing:-4.160000pt;}
.ls1c{letter-spacing:-3.840000pt;}
.ls46{letter-spacing:-3.392000pt;}
.ls24{letter-spacing:-2.688000pt;}
.ls3f{letter-spacing:-2.208000pt;}
.ls2e{letter-spacing:-2.176000pt;}
.ls33{letter-spacing:-1.984000pt;}
.lsa{letter-spacing:-1.920000pt;}
.ls37{letter-spacing:-1.856000pt;}
.ls36{letter-spacing:-1.728000pt;}
.lse{letter-spacing:-1.664000pt;}
.ls44{letter-spacing:-1.653333pt;}
.ls9{letter-spacing:-1.600000pt;}
.ls42{letter-spacing:-1.493333pt;}
.ls40{letter-spacing:-1.472000pt;}
.ls25{letter-spacing:-1.386667pt;}
.ls31{letter-spacing:-1.333333pt;}
.lsb{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-1.226667pt;}
.ls2d{letter-spacing:-1.216000pt;}
.ls5{letter-spacing:-1.173333pt;}
.ls8{letter-spacing:-1.120000pt;}
.ls3d{letter-spacing:-1.088000pt;}
.ls34{letter-spacing:-1.080000pt;}
.ls6{letter-spacing:-1.066667pt;}
.ls32{letter-spacing:-0.896000pt;}
.ls1d{letter-spacing:-0.853333pt;}
.ls38{letter-spacing:-0.840000pt;}
.ls26{letter-spacing:-0.808427pt;}
.ls28{letter-spacing:-0.800000pt;}
.lsf{letter-spacing:-0.768000pt;}
.ls16{letter-spacing:-0.746667pt;}
.ls20{letter-spacing:-0.715147pt;}
.ls1a{letter-spacing:-0.684053pt;}
.ls27{letter-spacing:-0.652960pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.621867pt;}
.ls43{letter-spacing:-0.512000pt;}
.ls1e{letter-spacing:-0.497493pt;}
.ls3a{letter-spacing:-0.466400pt;}
.ls17{letter-spacing:-0.435307pt;}
.ls48{letter-spacing:-0.432000pt;}
.ls3b{letter-spacing:-0.384000pt;}
.ls35{letter-spacing:-0.256000pt;}
.ls3e{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls41{letter-spacing:0.064000pt;}
.ls30{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls14{letter-spacing:0.704000pt;}
.ls3c{letter-spacing:1.088000pt;}
.ls10{letter-spacing:1.216000pt;}
.ls45{letter-spacing:1.536000pt;}
.ls47{letter-spacing:5.200000pt;}
.ls1b{letter-spacing:22.968533pt;}
.ls12{letter-spacing:23.084800pt;}
.lsd{letter-spacing:30.348267pt;}
.ls13{letter-spacing:63.147029pt;}
.ls1{letter-spacing:90.236800pt;}
.lsc{letter-spacing:99.612800pt;}
.ls39{letter-spacing:125.420533pt;}
.ls2f{letter-spacing:414.764800pt;}
.ws1d{word-spacing:-21.600000pt;}
.wse6{word-spacing:-21.312000pt;}
.ws4{word-spacing:-12.800000pt;}
.wsc0{word-spacing:-10.240000pt;}
.wsfc{word-spacing:-9.706667pt;}
.ws32{word-spacing:-8.084267pt;}
.ws33{word-spacing:-7.462400pt;}
.wsa0{word-spacing:-7.431307pt;}
.ws7a{word-spacing:-7.369120pt;}
.ws9a{word-spacing:-7.275840pt;}
.ws9b{word-spacing:-5.969920pt;}
.wsd3{word-spacing:-5.596800pt;}
.ws6a{word-spacing:-5.173333pt;}
.wsf6{word-spacing:-4.693333pt;}
.ws51{word-spacing:-4.266667pt;}
.ws14{word-spacing:-3.520000pt;}
.ws5{word-spacing:-3.466667pt;}
.wsdb{word-spacing:-3.413333pt;}
.wsa{word-spacing:-3.360000pt;}
.wsc8{word-spacing:-3.306667pt;}
.wsf1{word-spacing:-3.253333pt;}
.wse8{word-spacing:-3.200000pt;}
.wsed{word-spacing:-3.146667pt;}
.wscc{word-spacing:-3.093333pt;}
.wsf2{word-spacing:-3.040000pt;}
.ws88{word-spacing:-2.986667pt;}
.wsc7{word-spacing:-2.933333pt;}
.ws48{word-spacing:-2.880000pt;}
.ws11{word-spacing:-2.826667pt;}
.ws55{word-spacing:-2.773333pt;}
.wsa5{word-spacing:-2.720000pt;}
.ws36{word-spacing:-2.666667pt;}
.ws50{word-spacing:-2.613333pt;}
.ws6{word-spacing:-2.560000pt;}
.wse7{word-spacing:-2.506667pt;}
.ws8d{word-spacing:-2.453333pt;}
.wse4{word-spacing:-2.400000pt;}
.ws53{word-spacing:-2.346667pt;}
.ws3c{word-spacing:-2.293333pt;}
.ws61{word-spacing:-2.186667pt;}
.ws1b{word-spacing:-2.133333pt;}
.ws81{word-spacing:-2.080000pt;}
.wsac{word-spacing:-2.053333pt;}
.wsc1{word-spacing:-2.026667pt;}
.wsab{word-spacing:-1.973333pt;}
.ws2d{word-spacing:-1.920000pt;}
.ws82{word-spacing:-1.904000pt;}
.ws3e{word-spacing:-1.866667pt;}
.ws7e{word-spacing:-1.813333pt;}
.ws41{word-spacing:-1.760000pt;}
.ws3f{word-spacing:-1.706667pt;}
.ws42{word-spacing:-1.653333pt;}
.wsb2{word-spacing:-1.600000pt;}
.ws94{word-spacing:-1.546667pt;}
.ws12{word-spacing:-1.493333pt;}
.ws4f{word-spacing:-1.440000pt;}
.wsb1{word-spacing:-1.386667pt;}
.wsa4{word-spacing:-1.365333pt;}
.wscb{word-spacing:-1.333333pt;}
.wsaa{word-spacing:-1.280000pt;}
.ws1f{word-spacing:-1.226667pt;}
.wsa1{word-spacing:-1.173333pt;}
.ws21{word-spacing:-1.120000pt;}
.ws4d{word-spacing:-1.066667pt;}
.ws8f{word-spacing:-1.045333pt;}
.wsbb{word-spacing:-1.013333pt;}
.ws91{word-spacing:-1.008000pt;}
.ws29{word-spacing:-0.960000pt;}
.ws3b{word-spacing:-0.906667pt;}
.wsc{word-spacing:-0.853333pt;}
.ws76{word-spacing:-0.800000pt;}
.ws98{word-spacing:-0.784000pt;}
.ws18{word-spacing:-0.746667pt;}
.ws35{word-spacing:-0.693333pt;}
.wsf{word-spacing:-0.640000pt;}
.wsd5{word-spacing:-0.600000pt;}
.ws3d{word-spacing:-0.586667pt;}
.ws7c{word-spacing:-0.533333pt;}
.wsfe{word-spacing:-0.528000pt;}
.ws1e{word-spacing:-0.480000pt;}
.ws10{word-spacing:-0.426667pt;}
.ws5d{word-spacing:-0.373333pt;}
.ws4b{word-spacing:-0.320000pt;}
.ws6d{word-spacing:-0.266667pt;}
.ws63{word-spacing:-0.213333pt;}
.ws44{word-spacing:-0.160000pt;}
.ws37{word-spacing:-0.106667pt;}
.ws8b{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsfd{word-spacing:0.042667pt;}
.ws24{word-spacing:0.053333pt;}
.ws23{word-spacing:0.106667pt;}
.ws8e{word-spacing:0.112000pt;}
.ws62{word-spacing:0.160000pt;}
.ws43{word-spacing:0.213333pt;}
.ws7{word-spacing:0.266667pt;}
.ws95{word-spacing:0.320000pt;}
.ws70{word-spacing:0.373333pt;}
.ws25{word-spacing:0.426667pt;}
.ws22{word-spacing:0.480000pt;}
.ws78{word-spacing:0.497493pt;}
.ws71{word-spacing:0.533333pt;}
.ws52{word-spacing:0.586667pt;}
.ws77{word-spacing:0.621867pt;}
.ws4c{word-spacing:0.640000pt;}
.wsd2{word-spacing:0.680000pt;}
.ws69{word-spacing:0.684053pt;}
.ws58{word-spacing:0.693333pt;}
.ws46{word-spacing:0.746667pt;}
.ws26{word-spacing:0.800000pt;}
.wsd1{word-spacing:0.840000pt;}
.ws67{word-spacing:0.853333pt;}
.wsc2{word-spacing:0.896000pt;}
.ws80{word-spacing:0.906667pt;}
.wscf{word-spacing:0.960000pt;}
.wse0{word-spacing:1.013333pt;}
.wsb{word-spacing:1.066667pt;}
.wsc9{word-spacing:1.080000pt;}
.ws1{word-spacing:1.120000pt;}
.ws6b{word-spacing:1.173333pt;}
.ws27{word-spacing:1.226667pt;}
.ws3{word-spacing:1.280000pt;}
.wsb3{word-spacing:1.306667pt;}
.ws39{word-spacing:1.333333pt;}
.ws65{word-spacing:1.386667pt;}
.ws2{word-spacing:1.440000pt;}
.ws38{word-spacing:1.493333pt;}
.wsa2{word-spacing:1.546667pt;}
.ws5c{word-spacing:1.600000pt;}
.ws5f{word-spacing:1.653333pt;}
.ws74{word-spacing:1.706667pt;}
.ws6e{word-spacing:1.760000pt;}
.ws90{word-spacing:1.792000pt;}
.ws60{word-spacing:1.813333pt;}
.wsc5{word-spacing:1.866667pt;}
.ws17{word-spacing:1.920000pt;}
.ws13{word-spacing:1.973333pt;}
.ws7d{word-spacing:2.026667pt;}
.ws1a{word-spacing:2.080000pt;}
.ws6c{word-spacing:2.133333pt;}
.ws45{word-spacing:2.186667pt;}
.ws66{word-spacing:2.240000pt;}
.wsb6{word-spacing:2.293333pt;}
.wsb8{word-spacing:2.346667pt;}
.ws5e{word-spacing:2.400000pt;}
.ws54{word-spacing:2.453333pt;}
.ws89{word-spacing:2.506667pt;}
.wsb0{word-spacing:2.560000pt;}
.wsb9{word-spacing:2.613333pt;}
.ws97{word-spacing:2.666667pt;}
.ws9e{word-spacing:2.688000pt;}
.wsbd{word-spacing:2.720000pt;}
.ws19{word-spacing:2.773333pt;}
.ws8a{word-spacing:2.826667pt;}
.ws9{word-spacing:2.880000pt;}
.ws96{word-spacing:2.933333pt;}
.ws68{word-spacing:2.986667pt;}
.ws8{word-spacing:3.040000pt;}
.ws4a{word-spacing:3.093333pt;}
.ws20{word-spacing:3.146667pt;}
.ws3a{word-spacing:3.200000pt;}
.ws59{word-spacing:3.253333pt;}
.wsbc{word-spacing:3.306667pt;}
.ws49{word-spacing:3.360000pt;}
.wsba{word-spacing:3.413333pt;}
.ws7f{word-spacing:3.466667pt;}
.ws40{word-spacing:3.520000pt;}
.ws28{word-spacing:3.573333pt;}
.wsd{word-spacing:3.626667pt;}
.wsee{word-spacing:3.680000pt;}
.ws4e{word-spacing:3.733333pt;}
.wsa9{word-spacing:3.786667pt;}
.ws75{word-spacing:3.840000pt;}
.wsf7{word-spacing:3.893333pt;}
.wsa3{word-spacing:3.946667pt;}
.ws9f{word-spacing:4.000000pt;}
.ws5a{word-spacing:4.053333pt;}
.ws8c{word-spacing:4.106667pt;}
.wsd8{word-spacing:4.160000pt;}
.wse3{word-spacing:4.213333pt;}
.ws57{word-spacing:4.266667pt;}
.ws6f{word-spacing:4.320000pt;}
.wsdc{word-spacing:4.373333pt;}
.wsdf{word-spacing:4.533333pt;}
.wsdd{word-spacing:4.693333pt;}
.wsec{word-spacing:4.746667pt;}
.wsf5{word-spacing:4.800000pt;}
.wseb{word-spacing:4.853333pt;}
.wse{word-spacing:4.906667pt;}
.wsa8{word-spacing:4.960000pt;}
.wsae{word-spacing:5.013333pt;}
.wsf3{word-spacing:5.066667pt;}
.wsf9{word-spacing:5.173333pt;}
.ws16{word-spacing:5.226667pt;}
.wsd4{word-spacing:5.386667pt;}
.wsd7{word-spacing:5.493333pt;}
.ws87{word-spacing:5.600000pt;}
.ws56{word-spacing:6.026667pt;}
.ws86{word-spacing:6.186667pt;}
.wsc4{word-spacing:6.240000pt;}
.ws15{word-spacing:6.453333pt;}
.wsef{word-spacing:6.986667pt;}
.wse9{word-spacing:8.053333pt;}
.wsfa{word-spacing:9.920000pt;}
.wse2{word-spacing:34.329728pt;}
.wsa7{word-spacing:46.342592pt;}
.ws7b{word-spacing:46.343125pt;}
.ws93{word-spacing:46.343659pt;}
.ws34{word-spacing:46.344192pt;}
.ws73{word-spacing:46.344725pt;}
.ws85{word-spacing:46.345259pt;}
.ws84{word-spacing:46.345792pt;}
.wsf8{word-spacing:169.467200pt;}
.ws2c{word-spacing:170.395200pt;}
.wsde{word-spacing:170.779200pt;}
.ws31{word-spacing:171.931200pt;}
.wsc3{word-spacing:172.699200pt;}
.ws5b{word-spacing:172.731200pt;}
.ws64{word-spacing:172.891200pt;}
.wsbe{word-spacing:173.467200pt;}
.wsf0{word-spacing:173.883200pt;}
.wse5{word-spacing:174.459200pt;}
.wsca{word-spacing:174.811200pt;}
.wsda{word-spacing:175.195200pt;}
.wsf4{word-spacing:175.611200pt;}
.ws2e{word-spacing:175.995200pt;}
.ws2b{word-spacing:176.379200pt;}
.wsd0{word-spacing:176.763200pt;}
.wse1{word-spacing:177.307200pt;}
.wsb5{word-spacing:177.691200pt;}
.wsd9{word-spacing:177.915200pt;}
.wsea{word-spacing:178.459200pt;}
.ws1c{word-spacing:178.843200pt;}
.ws47{word-spacing:178.875200pt;}
.ws2a{word-spacing:179.035200pt;}
.wscd{word-spacing:179.227200pt;}
.wsce{word-spacing:179.611200pt;}
.wsd6{word-spacing:179.835200pt;}
.wsc6{word-spacing:179.995200pt;}
.wsb7{word-spacing:180.603200pt;}
.wsfb{word-spacing:184.219200pt;}
.ws72{word-spacing:185.595200pt;}
.ws99{word-spacing:186.555200pt;}
.wsa6{word-spacing:186.747200pt;}
.wsaf{word-spacing:186.907200pt;}
.wsb4{word-spacing:188.443200pt;}
.ws92{word-spacing:188.827200pt;}
.wsad{word-spacing:189.243200pt;}
.ws83{word-spacing:189.595200pt;}
.ws79{word-spacing:193.627200pt;}
.wsbf{word-spacing:199.726933pt;}
.ws30{word-spacing:395.573333pt;}
.ws2f{word-spacing:454.026667pt;}
.ws9c{word-spacing:640.326933pt;}
.ws9d{word-spacing:663.836267pt;}
._0{margin-left:-76.571200pt;}
._e{margin-left:-66.844267pt;}
._11{margin-left:-60.767467pt;}
._31{margin-left:-47.761067pt;}
._2d{margin-left:-6.384000pt;}
._3{margin-left:-5.360000pt;}
._a{margin-left:-4.096000pt;}
._5{margin-left:-2.432000pt;}
._2{margin-left:-1.200000pt;}
._1{width:1.296000pt;}
._7{width:2.458667pt;}
._4{width:3.776000pt;}
._6{width:5.024000pt;}
._9{width:11.520000pt;}
._14{width:12.792533pt;}
._10{width:14.099200pt;}
._30{width:23.723200pt;}
._8{width:25.205867pt;}
._12{width:29.600000pt;}
._1a{width:43.077333pt;}
._25{width:63.634133pt;}
._20{width:93.666133pt;}
._32{width:159.623467pt;}
._38{width:180.510933pt;}
._3b{width:250.901333pt;}
._3c{width:258.138667pt;}
._19{width:284.746667pt;}
._3a{width:288.277333pt;}
._3d{width:324.629333pt;}
._3e{width:347.029333pt;}
._39{width:360.213333pt;}
._2b{width:367.701333pt;}
._2f{width:406.064000pt;}
._2e{width:413.056000pt;}
._21{width:474.752000pt;}
._29{width:553.600000pt;}
._17{width:611.493333pt;}
._16{width:641.680000pt;}
._18{width:683.146667pt;}
._22{width:766.506667pt;}
._1f{width:799.658667pt;}
._1b{width:834.773333pt;}
._2a{width:954.709333pt;}
._28{width:1015.680000pt;}
._34{width:1017.273600pt;}
._24{width:1023.146667pt;}
._35{width:1105.678933pt;}
._33{width:1143.054933pt;}
._37{width:1201.806933pt;}
._36{width:1202.916267pt;}
._23{width:1413.162667pt;}
._15{width:1508.320000pt;}
._2c{width:1532.373333pt;}
._26{width:1561.813333pt;}
._13{width:1563.600000pt;}
._1e{width:1603.072000pt;}
._c{width:1633.493333pt;}
._f{width:1635.242667pt;}
._1c{width:1687.136000pt;}
._27{width:1761.408000pt;}
._1d{width:1788.117333pt;}
._d{width:1811.626667pt;}
._b{width:1842.432000pt;}
.fsd{font-size:21.765333pt;}
.fs10{font-size:23.320000pt;}
.fse{font-size:24.874667pt;}
.fsc{font-size:31.093333pt;}
.fs11{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:58.666667pt;}
.fsb{font-size:59.733333pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs6{font-size:160.000000pt;}
.fs12{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:59.133337pt;}
.y346{bottom:73.583067pt;}
.y34d{bottom:77.708133pt;}
.y345{bottom:84.249733pt;}
.y4{bottom:86.333337pt;}
.y34c{bottom:87.636800pt;}
.y344{bottom:94.916400pt;}
.y183{bottom:102.047333pt;}
.y110{bottom:105.155333pt;}
.ydb{bottom:105.155467pt;}
.y265{bottom:105.377333pt;}
.y343{bottom:105.583067pt;}
.y2ec{bottom:108.822000pt;}
.y182{bottom:114.047333pt;}
.y153{bottom:114.047467pt;}
.y342{bottom:116.249733pt;}
.y185{bottom:117.155333pt;}
.y10f{bottom:117.155467pt;}
.yda{bottom:117.155600pt;}
.y335{bottom:118.134133pt;}
.y52{bottom:123.321333pt;}
.y21{bottom:123.790666pt;}
.y2eb{bottom:124.422000pt;}
.y1c7{bottom:126.047600pt;}
.y341{bottom:126.916400pt;}
.y181{bottom:129.155333pt;}
.y152{bottom:129.155467pt;}
.y10e{bottom:129.155600pt;}
.yd9{bottom:129.155733pt;}
.y30e{bottom:133.734267pt;}
.y32b{bottom:134.764133pt;}
.y340{bottom:137.583067pt;}
.y180{bottom:138.047467pt;}
.y1b2{bottom:138.047733pt;}
.y51{bottom:138.921333pt;}
.y2ea{bottom:140.022000pt;}
.y285{bottom:141.155467pt;}
.y151{bottom:141.155600pt;}
.y10d{bottom:141.155733pt;}
.yd8{bottom:141.155867pt;}
.y30d{bottom:149.334267pt;}
.y17f{bottom:150.047467pt;}
.y32a{bottom:150.364133pt;}
.y236{bottom:152.263733pt;}
.y284{bottom:153.155600pt;}
.y150{bottom:153.155733pt;}
.y10c{bottom:153.155867pt;}
.yd7{bottom:153.156000pt;}
.y50{bottom:154.521467pt;}
.y264{bottom:160.033467pt;}
.y223{bottom:160.465200pt;}
.y17e{bottom:162.047467pt;}
.y34b{bottom:162.303467pt;}
.y34e{bottom:163.624400pt;}
.y283{bottom:165.155733pt;}
.y14f{bottom:165.155867pt;}
.y10b{bottom:165.156000pt;}
.yd6{bottom:165.156133pt;}
.y2ac{bottom:165.921200pt;}
.y329{bottom:165.964133pt;}
.y33f{bottom:166.475067pt;}
.y235{bottom:167.863733pt;}
.y263{bottom:172.033467pt;}
.y2e9{bottom:172.252000pt;}
.y17d{bottom:174.047467pt;}
.y13f{bottom:174.048267pt;}
.y18{bottom:175.052000pt;}
.y222{bottom:176.065333pt;}
.y22f{bottom:176.792933pt;}
.y14e{bottom:177.156000pt;}
.y10a{bottom:177.156133pt;}
.yd5{bottom:177.156267pt;}
.y2ab{bottom:181.521200pt;}
.y30c{bottom:181.564133pt;}
.y4f{bottom:182.971733pt;}
.y234{bottom:183.463733pt;}
.y262{bottom:184.033467pt;}
.y13e{bottom:186.048267pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2e8{bottom:187.851867pt;}
.y8c{bottom:189.027867pt;}
.y17c{bottom:189.155467pt;}
.y14d{bottom:189.156133pt;}
.y109{bottom:189.156267pt;}
.yd4{bottom:189.156400pt;}
.y1dd{bottom:189.234000pt;}
.y22e{bottom:192.392933pt;}
.y2aa{bottom:197.121200pt;}
.y30b{bottom:197.164133pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1f1{bottom:197.683600pt;}
.y328{bottom:198.194133pt;}
.y4e{bottom:198.571733pt;}
.y1a2{bottom:199.569467pt;}
.y1c6{bottom:200.018800pt;}
.y17b{bottom:201.155600pt;}
.y13d{bottom:201.156267pt;}
.y108{bottom:201.156400pt;}
.yd3{bottom:201.156533pt;}
.y1dc{bottom:201.234000pt;}
.y260{bottom:203.380667pt;}
.y24b{bottom:204.279600pt;}
.y233{bottom:206.622667pt;}
.y22d{bottom:207.992933pt;}
.y221{bottom:208.295200pt;}
.y2b7{bottom:208.493200pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y8b{bottom:211.253600pt;}
.y2a9{bottom:212.721200pt;}
.y30a{bottom:212.764133pt;}
.y17a{bottom:213.155733pt;}
.y107{bottom:213.156533pt;}
.yd2{bottom:213.156667pt;}
.y1f0{bottom:213.283600pt;}
.y327{bottom:213.794000pt;}
.y4d{bottom:214.171733pt;}
.y1b1{bottom:215.098533pt;}
.y1a1{bottom:215.169467pt;}
.y1c5{bottom:215.618800pt;}
.y232{bottom:218.622667pt;}
.y25f{bottom:218.980667pt;}
.y24a{bottom:219.879600pt;}
.y2e7{bottom:220.081867pt;}
.y282{bottom:221.792133pt;}
.y217{bottom:222.523467pt;}
.y22c{bottom:223.592933pt;}
.y220{bottom:223.895200pt;}
.y2b6{bottom:224.093200pt;}
.y106{bottom:225.156667pt;}
.yd1{bottom:225.156800pt;}
.y1ef{bottom:228.883600pt;}
.y334{bottom:229.394000pt;}
.y1b0{bottom:230.698533pt;}
.y1a0{bottom:230.769467pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1c4{bottom:231.218800pt;}
.y25e{bottom:234.580667pt;}
.y249{bottom:235.479600pt;}
.y2e6{bottom:235.681867pt;}
.y34a{bottom:236.398933pt;}
.y105{bottom:237.156800pt;}
.yd0{bottom:237.156933pt;}
.y281{bottom:237.392133pt;}
.y22b{bottom:239.192933pt;}
.y21f{bottom:239.495200pt;}
.y148{bottom:239.517600pt;}
.y2b5{bottom:239.693333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y4c{bottom:242.622133pt;}
.y1ee{bottom:244.483600pt;}
.y216{bottom:244.592667pt;}
.y2a8{bottom:244.951067pt;}
.y309{bottom:244.994000pt;}
.y326{bottom:246.024000pt;}
.y1af{bottom:246.298533pt;}
.y19f{bottom:246.369467pt;}
.y1c3{bottom:246.818800pt;}
.y104{bottom:249.156933pt;}
.y25d{bottom:250.180667pt;}
.y349{bottom:251.065600pt;}
.y248{bottom:251.079733pt;}
.y2e5{bottom:251.281867pt;}
.y280{bottom:252.992133pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y21e{bottom:255.095200pt;}
.y147{bottom:255.117733pt;}
.y2b4{bottom:255.293333pt;}
.y13c{bottom:257.222133pt;}
.y4b{bottom:258.222133pt;}
.y1ed{bottom:260.083600pt;}
.y2a7{bottom:260.551067pt;}
.y308{bottom:260.594133pt;}
.y325{bottom:261.624000pt;}
.y1ae{bottom:261.898533pt;}
.y19e{bottom:261.969467pt;}
.y22a{bottom:262.352000pt;}
.y1c2{bottom:262.418800pt;}
.y348{bottom:265.732267pt;}
.y25c{bottom:265.780667pt;}
.y215{bottom:266.661867pt;}
.y247{bottom:266.679600pt;}
.y8a{bottom:267.495067pt;}
.y179{bottom:268.592000pt;}
.y21d{bottom:270.695200pt;}
.y146{bottom:270.717733pt;}
.y2b3{bottom:270.893200pt;}
.y13b{bottom:272.822133pt;}
.y4a{bottom:273.822133pt;}
.y229{bottom:274.352000pt;}
.y1ec{bottom:275.683600pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y2a6{bottom:276.151067pt;}
.y333{bottom:277.224000pt;}
.y1ad{bottom:277.498533pt;}
.y19d{bottom:277.569467pt;}
.y1c1{bottom:278.018800pt;}
.y209{bottom:278.358667pt;}
.y25b{bottom:281.380667pt;}
.y246{bottom:282.279600pt;}
.y279{bottom:283.048933pt;}
.y2e4{bottom:283.511733pt;}
.y178{bottom:284.192000pt;}
.y21c{bottom:286.295200pt;}
.y145{bottom:286.317733pt;}
.y2b2{bottom:286.493200pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y13a{bottom:288.422000pt;}
.y214{bottom:288.731067pt;}
.y49{bottom:289.422133pt;}
.y1eb{bottom:291.283600pt;}
.y2a5{bottom:291.751200pt;}
.ycf{bottom:291.751333pt;}
.y307{bottom:292.824000pt;}
.y1ac{bottom:293.098533pt;}
.y19c{bottom:293.169467pt;}
.y1c0{bottom:293.618800pt;}
.y324{bottom:293.853867pt;}
.y208{bottom:293.958800pt;}
.y347{bottom:294.404267pt;}
.y25a{bottom:296.980667pt;}
.y245{bottom:297.879600pt;}
.y278{bottom:298.648933pt;}
.y177{bottom:299.792133pt;}
.y103{bottom:302.093200pt;}
.y213{bottom:304.331067pt;}
.y1ea{bottom:306.883600pt;}
.y2a4{bottom:307.351200pt;}
.yce{bottom:307.351333pt;}
.y306{bottom:308.424000pt;}
.y1ab{bottom:308.698533pt;}
.y19b{bottom:308.769467pt;}
.y1bf{bottom:309.218800pt;}
.yf{bottom:309.452000pt;}
.y323{bottom:309.453867pt;}
.y21b{bottom:309.454267pt;}
.y207{bottom:309.558800pt;}
.y259{bottom:312.580667pt;}
.y244{bottom:313.479600pt;}
.y48{bottom:313.715067pt;}
.y277{bottom:314.248933pt;}
.y176{bottom:315.392133pt;}
.y2e3{bottom:315.741600pt;}
.y102{bottom:317.693333pt;}
.y144{bottom:318.547600pt;}
.y139{bottom:320.652000pt;}
.y21a{bottom:321.454267pt;}
.y1e9{bottom:322.483600pt;}
.y2a3{bottom:322.951067pt;}
.ycd{bottom:322.951333pt;}
.y305{bottom:324.024000pt;}
.y1aa{bottom:324.298533pt;}
.y19a{bottom:324.369467pt;}
.y1be{bottom:324.818800pt;}
.y33d{bottom:325.053867pt;}
.y206{bottom:325.158667pt;}
.y212{bottom:326.400267pt;}
.y89{bottom:326.403200pt;}
.y258{bottom:328.180667pt;}
.y1d5{bottom:328.529067pt;}
.y7c{bottom:328.560533pt;}
.y243{bottom:329.079600pt;}
.y276{bottom:329.848933pt;}
.y27f{bottom:330.992000pt;}
.y2e2{bottom:331.341733pt;}
.y101{bottom:333.293200pt;}
.y143{bottom:334.147600pt;}
.y138{bottom:336.252000pt;}
.y1e8{bottom:338.083600pt;}
.y2a2{bottom:338.551067pt;}
.ycc{bottom:338.551333pt;}
.y1a9{bottom:339.898533pt;}
.y199{bottom:339.969467pt;}
.y1bd{bottom:340.418800pt;}
.y33c{bottom:340.653867pt;}
.y205{bottom:340.758800pt;}
.y322{bottom:341.683867pt;}
.y47{bottom:342.165733pt;}
.y257{bottom:343.780667pt;}
.ye{bottom:343.809333pt;}
.y1d4{bottom:344.129067pt;}
.y7b{bottom:344.160533pt;}
.y242{bottom:344.679600pt;}
.y275{bottom:345.448933pt;}
.y2e1{bottom:346.941733pt;}
.y175{bottom:347.622000pt;}
.y211{bottom:348.469333pt;}
.y100{bottom:348.893333pt;}
.y142{bottom:349.747600pt;}
.y137{bottom:351.852000pt;}
.y1e7{bottom:353.683600pt;}
.y2a1{bottom:354.151067pt;}
.ycb{bottom:354.151333pt;}
.y1a8{bottom:355.498533pt;}
.y198{bottom:355.569467pt;}
.y1bc{bottom:356.018800pt;}
.y304{bottom:356.253867pt;}
.y321{bottom:357.283867pt;}
.y256{bottom:359.380667pt;}
.y1d3{bottom:359.729067pt;}
.y7a{bottom:359.760533pt;}
.y241{bottom:360.279600pt;}
.y274{bottom:361.048933pt;}
.yd{bottom:362.706666pt;}
.y174{bottom:363.222000pt;}
.yff{bottom:364.493333pt;}
.y141{bottom:365.347600pt;}
.y136{bottom:367.452000pt;}
.y1e6{bottom:369.283600pt;}
.y2a0{bottom:369.751200pt;}
.yca{bottom:369.751333pt;}
.y210{bottom:370.538533pt;}
.y46{bottom:370.616133pt;}
.y1a7{bottom:371.098533pt;}
.y197{bottom:371.169467pt;}
.y1bb{bottom:371.618800pt;}
.y303{bottom:371.853867pt;}
.y320{bottom:372.883867pt;}
.y204{bottom:372.988667pt;}
.y255{bottom:374.980667pt;}
.y1d2{bottom:375.329067pt;}
.y240{bottom:375.879600pt;}
.y273{bottom:376.648933pt;}
.y173{bottom:378.822000pt;}
.y2e0{bottom:379.171600pt;}
.yfe{bottom:380.093200pt;}
.y135{bottom:383.052000pt;}
.y1e5{bottom:384.883600pt;}
.y88{bottom:385.311333pt;}
.y29f{bottom:385.351067pt;}
.y45{bottom:386.216133pt;}
.y196{bottom:386.769467pt;}
.y1ba{bottom:387.218800pt;}
.y302{bottom:387.453867pt;}
.y33b{bottom:388.483867pt;}
.y203{bottom:388.588667pt;}
.y254{bottom:390.580667pt;}
.y1d1{bottom:390.929067pt;}
.y23f{bottom:391.479600pt;}
.y79{bottom:391.990533pt;}
.y272{bottom:392.248933pt;}
.y20f{bottom:392.607733pt;}
.y1a6{bottom:394.257600pt;}
.y172{bottom:394.422000pt;}
.y2df{bottom:394.771600pt;}
.yfd{bottom:395.693333pt;}
.y134{bottom:398.652000pt;}
.y1e4{bottom:400.483600pt;}
.y29e{bottom:400.951067pt;}
.y44{bottom:401.816133pt;}
.yc9{bottom:401.981200pt;}
.y195{bottom:402.369467pt;}
.y332{bottom:404.083867pt;}
.y202{bottom:404.188667pt;}
.y31f{bottom:405.113733pt;}
.y253{bottom:406.180667pt;}
.y1d0{bottom:406.529067pt;}
.y23e{bottom:407.079600pt;}
.y78{bottom:407.590533pt;}
.y271{bottom:407.848933pt;}
.y20e{bottom:408.207733pt;}
.y171{bottom:410.022000pt;}
.y2de{bottom:410.371600pt;}
.y1b9{bottom:410.377867pt;}
.yfc{bottom:411.293200pt;}
.y2b1{bottom:412.323200pt;}
.y133{bottom:414.252000pt;}
.yc8{bottom:417.581200pt;}
.y301{bottom:419.683867pt;}
.y201{bottom:419.788667pt;}
.y31e{bottom:420.713733pt;}
.y252{bottom:421.780667pt;}
.y1cf{bottom:422.129067pt;}
.y23d{bottom:422.679600pt;}
.y77{bottom:423.190533pt;}
.y270{bottom:423.448933pt;}
.y1e3{bottom:423.642667pt;}
.y226{bottom:424.050267pt;}
.y170{bottom:425.622000pt;}
.y43{bottom:426.109067pt;}
.yfb{bottom:426.893333pt;}
.y2b0{bottom:427.923200pt;}
.y132{bottom:429.852000pt;}
.y1b8{bottom:429.936933pt;}
.y29d{bottom:433.181067pt;}
.yc7{bottom:433.181200pt;}
.y194{bottom:434.599467pt;}
.y300{bottom:435.283867pt;}
.y200{bottom:435.388667pt;}
.y1e2{bottom:435.642667pt;}
.y33a{bottom:436.313733pt;}
.y251{bottom:437.380667pt;}
.y1ce{bottom:437.729067pt;}
.y23c{bottom:438.279600pt;}
.y76{bottom:438.790533pt;}
.y26f{bottom:439.048933pt;}
.y16f{bottom:441.222000pt;}
.yfa{bottom:442.493333pt;}
.y2dd{bottom:442.601467pt;}
.y2af{bottom:443.523200pt;}
.y87{bottom:444.219467pt;}
.y131{bottom:445.452000pt;}
.y20d{bottom:446.497600pt;}
.yc{bottom:446.990669pt;}
.y29c{bottom:448.781067pt;}
.yc6{bottom:448.781200pt;}
.y1ff{bottom:450.988667pt;}
.y331{bottom:451.913733pt;}
.y31d{bottom:452.943600pt;}
.y250{bottom:452.980667pt;}
.y1cd{bottom:453.329067pt;}
.y23b{bottom:453.879600pt;}
.y75{bottom:454.390533pt;}
.y42{bottom:454.559467pt;}
.y26e{bottom:454.648933pt;}
.y16e{bottom:456.822000pt;}
.y193{bottom:458.091733pt;}
.yf9{bottom:458.093200pt;}
.y2ae{bottom:459.123200pt;}
.y130{bottom:461.052000pt;}
.ya6{bottom:462.424267pt;}
.yb{bottom:462.990669pt;}
.y29b{bottom:464.381067pt;}
.yc5{bottom:464.381200pt;}
.y1fe{bottom:466.588667pt;}
.y2ff{bottom:467.513733pt;}
.y31c{bottom:468.543600pt;}
.y1cc{bottom:468.929067pt;}
.y23a{bottom:469.479600pt;}
.y41{bottom:470.159467pt;}
.y26d{bottom:470.248933pt;}
.y16d{bottom:472.422000pt;}
.y2c9{bottom:473.693333pt;}
.y2ad{bottom:474.723200pt;}
.y2dc{bottom:474.831467pt;}
.y24f{bottom:476.139733pt;}
.y12f{bottom:476.652000pt;}
.ya5{bottom:477.090933pt;}
.ya{bottom:478.990666pt;}
.y29a{bottom:479.981067pt;}
.yc4{bottom:479.981200pt;}
.y192{bottom:480.160933pt;}
.y1fd{bottom:482.188667pt;}
.y2fe{bottom:483.113733pt;}
.y31b{bottom:484.143733pt;}
.y1cb{bottom:484.529067pt;}
.y26c{bottom:485.848933pt;}
.y74{bottom:486.620400pt;}
.y16c{bottom:488.022000pt;}
.y24e{bottom:488.139733pt;}
.y2c8{bottom:489.293200pt;}
.yf8{bottom:490.323200pt;}
.y2db{bottom:490.431467pt;}
.y12e{bottom:492.252000pt;}
.y239{bottom:492.638667pt;}
.y9{bottom:494.990666pt;}
.y299{bottom:495.581067pt;}
.yc3{bottom:495.581200pt;}
.y1fc{bottom:497.788667pt;}
.y40{bottom:498.609867pt;}
.ya4{bottom:499.316667pt;}
.y330{bottom:499.743600pt;}
.y24d{bottom:500.139733pt;}
.y73{bottom:502.220400pt;}
.y191{bottom:502.230133pt;}
.y86{bottom:503.127600pt;}
.y16b{bottom:503.622000pt;}
.y238{bottom:504.638667pt;}
.y2c7{bottom:504.893333pt;}
.yf7{bottom:505.923200pt;}
.y2da{bottom:506.031467pt;}
.y1ca{bottom:507.688133pt;}
.y12d{bottom:507.852000pt;}
.y26b{bottom:509.008000pt;}
.y298{bottom:511.181067pt;}
.yc2{bottom:511.181200pt;}
.y24c{bottom:512.139733pt;}
.y1fb{bottom:513.388667pt;}
.y3f{bottom:514.209867pt;}
.y2fd{bottom:515.343733pt;}
.y31a{bottom:516.373600pt;}
.y72{bottom:517.820400pt;}
.y16a{bottom:519.222000pt;}
.y2c6{bottom:520.493333pt;}
.y26a{bottom:521.008000pt;}
.yf6{bottom:521.523200pt;}
.ya3{bottom:521.542400pt;}
.y12c{bottom:523.452000pt;}
.y190{bottom:524.299333pt;}
.y297{bottom:526.781067pt;}
.yc1{bottom:526.781200pt;}
.y1c9{bottom:527.247200pt;}
.y1fa{bottom:528.988667pt;}
.y3e{bottom:529.809867pt;}
.y2fc{bottom:530.943600pt;}
.y319{bottom:531.973600pt;}
.y269{bottom:533.008000pt;}
.y169{bottom:534.822000pt;}
.y2c4{bottom:536.093200pt;}
.ya2{bottom:536.209067pt;}
.yf5{bottom:537.123200pt;}
.y2d9{bottom:538.261333pt;}
.y12b{bottom:539.052000pt;}
.y2c5{bottom:540.533200pt;}
.y296{bottom:542.381067pt;}
.y1f9{bottom:544.588667pt;}
.y268{bottom:545.008000pt;}
.y3d{bottom:545.409867pt;}
.y18f{bottom:546.368533pt;}
.y1db{bottom:547.127467pt;}
.y318{bottom:547.573600pt;}
.y168{bottom:550.422000pt;}
.yf4{bottom:552.723200pt;}
.y2d8{bottom:553.861333pt;}
.y12a{bottom:554.652000pt;}
.y295{bottom:557.981067pt;}
.ya1{bottom:558.434800pt;}
.yc0{bottom:559.011200pt;}
.y1da{bottom:559.927467pt;}
.y1f8{bottom:560.188667pt;}
.y85{bottom:562.035733pt;}
.y2fb{bottom:563.173600pt;}
.y167{bottom:566.022000pt;}
.yf3{bottom:568.323200pt;}
.y18e{bottom:568.437600pt;}
.y2d7{bottom:569.461333pt;}
.y129{bottom:570.252000pt;}
.y71{bottom:571.215733pt;}
.ya0{bottom:573.101467pt;}
.y294{bottom:573.581067pt;}
.y8{bottom:573.786667pt;}
.y3c{bottom:573.860267pt;}
.ybf{bottom:574.611067pt;}
.y2fa{bottom:578.773600pt;}
.y228{bottom:579.357467pt;}
.y317{bottom:579.803467pt;}
.y20c{bottom:581.622000pt;}
.y27e{bottom:582.651867pt;}
.yf2{bottom:583.923200pt;}
.y128{bottom:585.852000pt;}
.y293{bottom:589.181067pt;}
.y3b{bottom:589.460267pt;}
.ybe{bottom:590.211200pt;}
.y227{bottom:592.157467pt;}
.y1f7{bottom:592.418533pt;}
.y7{bottom:592.685334pt;}
.y2f9{bottom:594.373600pt;}
.y9f{bottom:595.327200pt;}
.y316{bottom:595.403467pt;}
.y20b{bottom:597.222000pt;}
.y166{bottom:598.251867pt;}
.yf1{bottom:599.523200pt;}
.y287{bottom:600.553067pt;}
.y1d9{bottom:601.451867pt;}
.y127{bottom:601.452000pt;}
.y2d6{bottom:601.691333pt;}
.y292{bottom:604.781067pt;}
.y3a{bottom:605.060267pt;}
.ybd{bottom:605.811067pt;}
.y18d{bottom:606.727467pt;}
.y1f6{bottom:608.018533pt;}
.y9e{bottom:609.993867pt;}
.y315{bottom:611.003467pt;}
.y165{bottom:613.851867pt;}
.y2c3{bottom:615.123200pt;}
.y286{bottom:616.153067pt;}
.y14c{bottom:616.153200pt;}
.y1d8{bottom:617.051867pt;}
.y2d5{bottom:617.291333pt;}
.y291{bottom:620.381067pt;}
.y84{bottom:620.943867pt;}
.ybc{bottom:621.411067pt;}
.y1f5{bottom:623.618533pt;}
.y2f8{bottom:626.603467pt;}
.y339{bottom:627.633467pt;}
.y164{bottom:629.451867pt;}
.y2c2{bottom:630.723200pt;}
.yf0{bottom:631.753067pt;}
.y14b{bottom:631.753200pt;}
.y9d{bottom:632.219600pt;}
.y1d7{bottom:632.651867pt;}
.y2d4{bottom:632.891333pt;}
.y39{bottom:633.510667pt;}
.y125{bottom:633.681867pt;}
.y25{bottom:635.155067pt;}
.y290{bottom:635.981067pt;}
.ybb{bottom:637.011200pt;}
.y261{bottom:637.927467pt;}
.y126{bottom:638.121867pt;}
.y1f4{bottom:639.218533pt;}
.y2f7{bottom:642.203467pt;}
.y314{bottom:643.233467pt;}
.y163{bottom:645.051867pt;}
.y6{bottom:645.598667pt;}
.y2c1{bottom:646.323200pt;}
.y9c{bottom:646.886267pt;}
.yef{bottom:647.353067pt;}
.y14a{bottom:647.353200pt;}
.y18c{bottom:648.251867pt;}
.y38{bottom:649.110667pt;}
.y124{bottom:649.281867pt;}
.y28f{bottom:651.581067pt;}
.yba{bottom:652.611067pt;}
.y70{bottom:653.640933pt;}
.y313{bottom:658.833467pt;}
.y162{bottom:660.652000pt;}
.y2c0{bottom:661.923200pt;}
.y1f3{bottom:662.377600pt;}
.yee{bottom:662.953067pt;}
.y149{bottom:662.953200pt;}
.y18b{bottom:663.851867pt;}
.y37{bottom:664.710667pt;}
.y123{bottom:664.881867pt;}
.y2d3{bottom:665.121200pt;}
.y28e{bottom:667.181067pt;}
.yb9{bottom:668.211200pt;}
.y3{bottom:668.977329pt;}
.y9b{bottom:669.112000pt;}
.y6f{bottom:669.240933pt;}
.y219{bottom:671.028667pt;}
.y1f2{bottom:674.377600pt;}
.y2f6{bottom:674.433467pt;}
.y338{bottom:675.463333pt;}
.y161{bottom:676.251867pt;}
.y2bf{bottom:677.523200pt;}
.yed{bottom:678.553200pt;}
.y18a{bottom:679.451867pt;}
.y83{bottom:679.852000pt;}
.y36{bottom:680.310667pt;}
.y122{bottom:680.481867pt;}
.y2d2{bottom:680.721200pt;}
.y28d{bottom:682.781067pt;}
.y9a{bottom:683.778667pt;}
.yb8{bottom:683.811067pt;}
.y218{bottom:683.828667pt;}
.y6e{bottom:684.840933pt;}
.y2f5{bottom:690.033467pt;}
.y337{bottom:691.063333pt;}
.y160{bottom:691.851867pt;}
.y2be{bottom:693.123200pt;}
.yec{bottom:694.153200pt;}
.y189{bottom:695.051867pt;}
.y121{bottom:696.081867pt;}
.y2d1{bottom:696.321200pt;}
.y99{bottom:698.445333pt;}
.yb7{bottom:699.411067pt;}
.y6d{bottom:700.440933pt;}
.y2f4{bottom:705.633467pt;}
.y312{bottom:706.663333pt;}
.y15f{bottom:707.451867pt;}
.y2bd{bottom:708.723200pt;}
.y35{bottom:708.761067pt;}
.yeb{bottom:709.753067pt;}
.y188{bottom:710.652000pt;}
.y120{bottom:711.681867pt;}
.y28c{bottom:715.010933pt;}
.yb6{bottom:715.011200pt;}
.y140{bottom:715.028667pt;}
.y6c{bottom:716.040800pt;}
.y98{bottom:720.670933pt;}
.y311{bottom:722.263333pt;}
.y15e{bottom:723.051867pt;}
.y2bc{bottom:724.323200pt;}
.y34{bottom:724.361067pt;}
.yea{bottom:725.353067pt;}
.y187{bottom:726.252000pt;}
.y11f{bottom:727.281867pt;}
.y2d0{bottom:728.551067pt;}
.y28b{bottom:730.611067pt;}
.yb5{bottom:730.611200pt;}
.y6b{bottom:731.640933pt;}
.y97{bottom:735.337600pt;}
.y2f3{bottom:737.863333pt;}
.y15d{bottom:738.652000pt;}
.y82{bottom:738.760133pt;}
.y336{bottom:738.893200pt;}
.y27d{bottom:739.681867pt;}
.y2bb{bottom:739.923200pt;}
.y33{bottom:739.961067pt;}
.ye9{bottom:740.953067pt;}
.y186{bottom:741.851867pt;}
.y11e{bottom:742.881867pt;}
.y2cf{bottom:744.151067pt;}
.y28a{bottom:746.210933pt;}
.y6a{bottom:747.240933pt;}
.y1b7{bottom:747.258667pt;}
.y24{bottom:751.401467pt;}
.y2f2{bottom:753.463333pt;}
.y15c{bottom:754.252000pt;}
.y32f{bottom:754.493200pt;}
.y27c{bottom:755.281867pt;}
.y2ba{bottom:755.523200pt;}
.y32{bottom:755.561067pt;}
.y81{bottom:756.093467pt;}
.ye8{bottom:756.553200pt;}
.y1d6{bottom:757.451867pt;}
.y96{bottom:757.563333pt;}
.y5c{bottom:758.480667pt;}
.y11d{bottom:758.481867pt;}
.y289{bottom:761.810933pt;}
.y69{bottom:762.840933pt;}
.yb4{bottom:762.841067pt;}
.y2f1{bottom:769.063333pt;}
.y15b{bottom:769.851867pt;}
.y32e{bottom:770.093200pt;}
.y27b{bottom:770.881867pt;}
.y2b9{bottom:771.123200pt;}
.ye7{bottom:772.153200pt;}
.y5b{bottom:774.080667pt;}
.y11c{bottom:774.081867pt;}
.y2ce{bottom:776.381067pt;}
.y288{bottom:777.410933pt;}
.y68{bottom:778.440933pt;}
.yb3{bottom:778.441067pt;}
.y95{bottom:779.789200pt;}
.y225{bottom:781.258667pt;}
.y2{bottom:781.661334pt;}
.y31{bottom:784.011333pt;}
.y20a{bottom:785.451867pt;}
.y310{bottom:785.693333pt;}
.y27a{bottom:786.481867pt;}
.y2b8{bottom:786.723200pt;}
.ye6{bottom:787.753067pt;}
.y1b6{bottom:788.783067pt;}
.y5a{bottom:789.680667pt;}
.y11b{bottom:789.681867pt;}
.y2cd{bottom:791.981067pt;}
.y67{bottom:794.040800pt;}
.yb2{bottom:794.041067pt;}
.y224{bottom:794.058533pt;}
.y94{bottom:794.455867pt;}
.y23{bottom:795.401467pt;}
.y30{bottom:799.611467pt;}
.y2f0{bottom:801.293333pt;}
.y15a{bottom:802.081867pt;}
.ye5{bottom:803.353067pt;}
.y1b5{bottom:804.383067pt;}
.y59{bottom:805.280667pt;}
.y11a{bottom:805.281867pt;}
.y2cc{bottom:807.581067pt;}
.y66{bottom:809.640933pt;}
.yb1{bottom:809.641067pt;}
.y267{bottom:812.458667pt;}
.y80{bottom:815.001600pt;}
.y2f{bottom:815.211467pt;}
.y93{bottom:816.681467pt;}
.y2ef{bottom:816.893200pt;}
.y159{bottom:817.681867pt;}
.y32d{bottom:817.923200pt;}
.ye4{bottom:818.953067pt;}
.y1b4{bottom:819.983067pt;}
.y119{bottom:820.881867pt;}
.y65{bottom:825.240933pt;}
.yb0{bottom:825.241067pt;}
.y266{bottom:825.258667pt;}
.y92{bottom:831.348133pt;}
.y158{bottom:833.281867pt;}
.y32c{bottom:833.523200pt;}
.y112{bottom:834.553200pt;}
.y1b3{bottom:835.583067pt;}
.y118{bottom:836.481867pt;}
.y2cb{bottom:839.810933pt;}
.y64{bottom:840.840933pt;}
.yaf{bottom:840.841067pt;}
.y2e{bottom:843.661733pt;}
.y22{bottom:846.068133pt;}
.yab{bottom:846.663067pt;}
.y157{bottom:848.881867pt;}
.y2ee{bottom:849.123200pt;}
.y111{bottom:850.153067pt;}
.ye3{bottom:851.183067pt;}
.y117{bottom:852.081867pt;}
.y91{bottom:853.573867pt;}
.y2ca{bottom:855.410933pt;}
.y63{bottom:856.440933pt;}
.yae{bottom:856.441067pt;}
.y237{bottom:856.458667pt;}
.y2d{bottom:859.261867pt;}
.y1{bottom:859.312000pt;}
.y58{bottom:859.431867pt;}
.y156{bottom:864.481867pt;}
.y2ed{bottom:864.723200pt;}
.y184{bottom:865.753067pt;}
.ye2{bottom:866.783067pt;}
.y116{bottom:867.681867pt;}
.y33e{bottom:871.010933pt;}
.y62{bottom:872.040800pt;}
.yad{bottom:872.041067pt;}
.y7f{bottom:873.909867pt;}
.y231{bottom:874.858667pt;}
.y2c{bottom:874.861867pt;}
.y90{bottom:875.799600pt;}
.y155{bottom:880.081867pt;}
.y30f{bottom:880.323200pt;}
.yaa{bottom:880.758800pt;}
.y1a5{bottom:881.353067pt;}
.ye1{bottom:882.383067pt;}
.y61{bottom:887.640933pt;}
.y230{bottom:887.658667pt;}
.y57{bottom:887.882267pt;}
.y2b{bottom:890.461867pt;}
.y115{bottom:890.840933pt;}
.y154{bottom:895.681867pt;}
.y7e{bottom:896.135467pt;}
.y1a4{bottom:896.953067pt;}
.ya8{bottom:897.080400pt;}
.ye0{bottom:897.983067pt;}
.y8f{bottom:898.025333pt;}
.y60{bottom:903.240933pt;}
.y2a{bottom:906.061867pt;}
.y1a3{bottom:912.553200pt;}
.ydf{bottom:913.583067pt;}
.ya9{bottom:914.854533pt;}
.y56{bottom:916.332667pt;}
.y7d{bottom:918.361200pt;}
.y5f{bottom:918.840933pt;}
.y1c8{bottom:918.858667pt;}
.ya7{bottom:919.306133pt;}
.y8e{bottom:920.251067pt;}
.y1df{bottom:928.153067pt;}
.yde{bottom:929.183067pt;}
.y55{bottom:931.932667pt;}
.y1de{bottom:943.753067pt;}
.y114{bottom:944.236133pt;}
.ydd{bottom:944.783067pt;}
.y54{bottom:947.532667pt;}
.ydc{bottom:960.383067pt;}
.y1e1{bottom:966.033733pt;}
.y5e{bottom:972.236133pt;}
.y8d{bottom:972.236267pt;}
.y113{bottom:974.902800pt;}
.yac{bottom:974.902933pt;}
.y53{bottom:975.983067pt;}
.y1e0{bottom:978.833600pt;}
.y29{bottom:997.715333pt;}
.y27{bottom:1019.055200pt;}
.y28{bottom:1049.019467pt;}
.y26{bottom:1049.650267pt;}
.y5d{bottom:1054.402800pt;}
.h14{height:17.782277pt;}
.h13{height:18.069333pt;}
.h1d{height:19.360000pt;}
.h20{height:25.238281pt;}
.h17{height:25.403253pt;}
.h7{height:28.560000pt;}
.h18{height:30.501333pt;}
.h1a{height:30.600000pt;}
.hf{height:32.640000pt;}
.h1c{height:32.680000pt;}
.h1b{height:33.229167pt;}
.h19{height:33.237120pt;}
.h1f{height:34.858667pt;}
.h22{height:36.480000pt;}
.h16{height:40.000000pt;}
.hc{height:40.533333pt;}
.h6{height:40.800000pt;}
.h11{height:41.536458pt;}
.h3{height:42.840000pt;}
.h15{height:43.163253pt;}
.hd{height:43.573333pt;}
.hb{height:44.880000pt;}
.h10{height:45.690104pt;}
.h1e{height:46.520833pt;}
.h2{height:48.960000pt;}
.h12{height:58.645333pt;}
.he{height:69.312000pt;}
.h5{height:69.360000pt;}
.h9{height:88.853333pt;}
.h4{height:105.826671pt;}
.ha{height:115.520000pt;}
.h21{height:281.250000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:56.692933pt;}
.x1f{left:69.531733pt;}
.x5{left:71.589067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:98.267733pt;}
.x9{left:113.385867pt;}
.x13{left:119.052533pt;}
.xa{left:124.724400pt;}
.xd{left:126.283600pt;}
.xf{left:132.283467pt;}
.x1d{left:141.732267pt;}
.xc{left:151.181067pt;}
.xe{left:170.078800pt;}
.x4{left:180.874667pt;}
.x16{left:199.952533pt;}
.x1c{left:241.564533pt;}
.x17{left:293.271867pt;}
.x12{left:317.005600pt;}
.x18{left:361.874800pt;}
.x14{left:393.650533pt;}
.x3{left:404.408000pt;}
.x15{left:421.684133pt;}
.x19{left:455.194133pt;}
.x1a{left:523.796933pt;}
.x7{left:547.338400pt;}
.x8{left:552.377867pt;}
.x20{left:592.913333pt;}
.x1b{left:617.116267pt;}
.x1e{left:667.292133pt;}
.x10{left:671.629867pt;}
.x11{left:680.314933pt;}
}




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