
    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_e622bf0ce53fc791ca4b6a87.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e1291e10ae24a11ba4c97e24.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7422cb0e64daa13763ce3751.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.014000;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_4796a267f6d2ffdf2f7e0b42.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6ea8ea8ad148b961e395a2d3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_eade3b2a02fa7e8e501bed7c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ea8e38d16dc67d40c9aac68d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.522000;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_32dbb0fd33cc1e574fc308bd.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_026ab6affc2ca19b9bf6870f.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b37c72bbb2e4b6ebad97faa4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_81388b1407fd857f17008578.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;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;}
.m20{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);}
.m9{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);}
.m1c{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m17{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v3{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.078000px;}
.v2{vertical-align:21.696000px;}
.v4{vertical-align:28.392000px;}
.v5{vertical-align:34.644000px;}
.ls38{letter-spacing:-0.108216px;}
.ls39{letter-spacing:-0.081000px;}
.ls3e{letter-spacing:-0.058617px;}
.ls3f{letter-spacing:-0.036072px;}
.ls3c{letter-spacing:-0.031563px;}
.ls40{letter-spacing:-0.027054px;}
.ls41{letter-spacing:-0.022545px;}
.ls3a{letter-spacing:-0.012150px;}
.ls37{letter-spacing:-0.009018px;}
.ls3d{letter-spacing:-0.004509px;}
.ls36{letter-spacing:-0.003591px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.003746px;}
.ls2a{letter-spacing:0.004509px;}
.ls20{letter-spacing:0.013527px;}
.ls2c{letter-spacing:0.016200px;}
.ls2f{letter-spacing:0.018036px;}
.ls1d{letter-spacing:0.021546px;}
.ls21{letter-spacing:0.022545px;}
.ls29{letter-spacing:0.024300px;}
.ls22{letter-spacing:0.027054px;}
.ls25{letter-spacing:0.028350px;}
.ls26{letter-spacing:0.032400px;}
.ls31{letter-spacing:0.036072px;}
.ls28{letter-spacing:0.036450px;}
.ls32{letter-spacing:0.040581px;}
.ls2d{letter-spacing:0.045090px;}
.ls27{letter-spacing:0.048600px;}
.ls30{letter-spacing:0.049599px;}
.ls23{letter-spacing:0.052650px;}
.ls33{letter-spacing:0.058617px;}
.ls2b{letter-spacing:0.064800px;}
.ls24{letter-spacing:0.072900px;}
.ls3b{letter-spacing:0.090180px;}
.ls1f{letter-spacing:0.136458px;}
.ls1e{letter-spacing:0.143640px;}
.ls13{letter-spacing:0.572693px;}
.ls14{letter-spacing:0.578693px;}
.ls12{letter-spacing:0.594600px;}
.ls15{letter-spacing:0.600600px;}
.ls19{letter-spacing:0.648088px;}
.ls2{letter-spacing:3.088050px;}
.ls7{letter-spacing:11.954850px;}
.ls35{letter-spacing:11.955150px;}
.ls16{letter-spacing:11.957700px;}
.ls11{letter-spacing:12.552600px;}
.ls17{letter-spacing:14.118000px;}
.ls18{letter-spacing:14.124000px;}
.ls8{letter-spacing:14.824349px;}
.lsf{letter-spacing:14.884124px;}
.lsa{letter-spacing:14.943900px;}
.lse{letter-spacing:15.003676px;}
.lsb{letter-spacing:15.123227px;}
.ls9{letter-spacing:15.183002px;}
.ls1a{letter-spacing:15.242778px;}
.ls1{letter-spacing:15.598050px;}
.ls2e{letter-spacing:16.638210px;}
.ls4{letter-spacing:17.935200px;}
.lsd{letter-spacing:18.410885px;}
.lsc{letter-spacing:20.861684px;}
.ls1c{letter-spacing:21.578992px;}
.ls1b{letter-spacing:24.029791px;}
.ls34{letter-spacing:47.700711px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.ws2e{word-spacing:-14.943900px;}
.ws10b{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.wse{word-spacing:-11.357400px;}
.wsc2{word-spacing:-11.331117px;}
.wsc1{word-spacing:-11.277009px;}
.wsd{word-spacing:-10.460700px;}
.wsbf{word-spacing:-9.121140px;}
.wsc0{word-spacing:-8.977500px;}
.ws24{word-spacing:-3.347434px;}
.ws6b{word-spacing:-2.988780px;}
.ws6c{word-spacing:-2.929004px;}
.ws80{word-spacing:-2.689902px;}
.ws23{word-spacing:-2.450800px;}
.ws124{word-spacing:-2.367130px;}
.ws3e{word-spacing:-2.271473px;}
.ws1c{word-spacing:-2.098138px;}
.wsb6{word-spacing:-2.092146px;}
.ws52{word-spacing:-2.032370px;}
.ws42{word-spacing:-1.972595px;}
.ws75{word-spacing:-1.912819px;}
.ws5e{word-spacing:-1.793268px;}
.ws12c{word-spacing:-1.775347px;}
.ws78{word-spacing:-1.733492px;}
.wsa2{word-spacing:-1.673717px;}
.ws39{word-spacing:-1.494390px;}
.ws122{word-spacing:-1.452557px;}
.ws71{word-spacing:-1.434614px;}
.ws12f{word-spacing:-1.398758px;}
.ws43{word-spacing:-1.374839px;}
.ws12b{word-spacing:-1.344960px;}
.wsb4{word-spacing:-1.315063px;}
.wscc{word-spacing:-1.307610px;}
.ws132{word-spacing:-1.291162px;}
.wsb5{word-spacing:-1.195512px;}
.wscb{word-spacing:-1.172340px;}
.ws3{word-spacing:-1.171598px;}
.ws144{word-spacing:-1.129766px;}
.ws5{word-spacing:-1.046070px;}
.ws4d{word-spacing:-0.896634px;}
.ws82{word-spacing:-0.777083px;}
.wsca{word-spacing:-0.753003px;}
.wsc9{word-spacing:-0.730458px;}
.ws3a{word-spacing:-0.717307px;}
.ws5f{word-spacing:-0.657532px;}
.ws50{word-spacing:-0.597756px;}
.ws64{word-spacing:-0.537980px;}
.ws137{word-spacing:-0.430387px;}
.ws22{word-spacing:-0.358654px;}
.ws121{word-spacing:-0.322790px;}
.ws20{word-spacing:-0.298878px;}
.wsdf{word-spacing:-0.288576px;}
.ws13{word-spacing:-0.268992px;}
.ws1e{word-spacing:-0.239102px;}
.wsec{word-spacing:-0.238977px;}
.wse9{word-spacing:-0.220941px;}
.wse3{word-spacing:-0.216432px;}
.ws112{word-spacing:-0.215194px;}
.wse8{word-spacing:-0.211923px;}
.wsc4{word-spacing:-0.208278px;}
.wsda{word-spacing:-0.202905px;}
.wsd9{word-spacing:-0.202500px;}
.wsd7{word-spacing:-0.189378px;}
.ws27{word-spacing:-0.179327px;}
.wsd4{word-spacing:-0.166050px;}
.wseb{word-spacing:-0.162324px;}
.ws127{word-spacing:-0.161395px;}
.ws1f{word-spacing:-0.119551px;}
.ws111{word-spacing:-0.107597px;}
.wsc5{word-spacing:-0.061047px;}
.ws38{word-spacing:-0.059776px;}
.ws14{word-spacing:-0.053798px;}
.ws13a{word-spacing:-0.012154px;}
.ws138{word-spacing:-0.010771px;}
.ws145{word-spacing:-0.010752px;}
.ws11d{word-spacing:-0.010733px;}
.ws10e{word-spacing:-0.010637px;}
.ws13e{word-spacing:-0.009302px;}
.ws110{word-spacing:-0.008554px;}
.ws13d{word-spacing:-0.008467px;}
.ws115{word-spacing:-0.008400px;}
.ws12d{word-spacing:-0.007910px;}
.ws126{word-spacing:-0.006355px;}
.ws117{word-spacing:-0.005558px;}
.ws120{word-spacing:-0.003542px;}
.ws10f{word-spacing:-0.003302px;}
.ws11a{word-spacing:-0.003072px;}
.ws2b{word-spacing:-0.000448px;}
.ws0{word-spacing:0.000000px;}
.wse6{word-spacing:0.027054px;}
.wse7{word-spacing:0.036072px;}
.wsf9{word-spacing:0.047821px;}
.wse0{word-spacing:0.049599px;}
.wsbc{word-spacing:0.053798px;}
.wsee{word-spacing:0.054108px;}
.ws33{word-spacing:0.059776px;}
.wsea{word-spacing:0.067635px;}
.wsde{word-spacing:0.072144px;}
.wsdb{word-spacing:0.072900px;}
.wse2{word-spacing:0.076653px;}
.wsed{word-spacing:0.099198px;}
.wsd8{word-spacing:0.101250px;}
.wse1{word-spacing:0.103707px;}
.wsd3{word-spacing:0.105300px;}
.ws1b{word-spacing:0.107597px;}
.wsd5{word-spacing:0.113400px;}
.ws32{word-spacing:0.119551px;}
.wsdc{word-spacing:0.121500px;}
.wsd2{word-spacing:0.137700px;}
.wsf{word-spacing:0.143462px;}
.wsd6{word-spacing:0.149850px;}
.ws17{word-spacing:0.161395px;}
.ws31{word-spacing:0.179327px;}
.ws1a{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.wsbd{word-spacing:0.268992px;}
.ws45{word-spacing:0.298878px;}
.ws135{word-spacing:0.318127px;}
.ws19{word-spacing:0.322790px;}
.ws51{word-spacing:0.358654px;}
.wsbb{word-spacing:0.418429px;}
.ws140{word-spacing:0.430387px;}
.ws70{word-spacing:0.478205px;}
.ws40{word-spacing:0.537980px;}
.ws114{word-spacing:0.537984px;}
.ws18{word-spacing:0.591782px;}
.ws8f{word-spacing:0.594354px;}
.ws86{word-spacing:0.594733px;}
.ws9c{word-spacing:0.595930px;}
.ws3f{word-spacing:0.597756px;}
.ws8c{word-spacing:0.600016px;}
.ws95{word-spacing:0.600037px;}
.ws89{word-spacing:0.600116px;}
.ws92{word-spacing:0.601930px;}
.ws7b{word-spacing:0.657532px;}
.wsa8{word-spacing:0.667085px;}
.wsa7{word-spacing:0.669974px;}
.wsa5{word-spacing:0.671856px;}
.wsa9{word-spacing:0.672422px;}
.wsa6{word-spacing:0.673085px;}
.ws13c{word-spacing:0.699379px;}
.ws3d{word-spacing:0.717307px;}
.ws3c{word-spacing:0.777083px;}
.ws35{word-spacing:0.836858px;}
.ws7a{word-spacing:0.896634px;}
.ws46{word-spacing:0.956410px;}
.ws4{word-spacing:1.004227px;}
.ws44{word-spacing:1.016185px;}
.ws4e{word-spacing:1.075961px;}
.ws128{word-spacing:1.075968px;}
.ws56{word-spacing:1.135736px;}
.ws26{word-spacing:1.195512px;}
.ws113{word-spacing:1.237363px;}
.ws3b{word-spacing:1.255288px;}
.ws2f{word-spacing:1.434614px;}
.ws30{word-spacing:1.494390px;}
.ws25{word-spacing:1.554166px;}
.ws76{word-spacing:1.613941px;}
.ws125{word-spacing:1.613952px;}
.ws29{word-spacing:1.673717px;}
.ws61{word-spacing:1.733492px;}
.ws83{word-spacing:1.793268px;}
.ws4b{word-spacing:1.853044px;}
.wsa0{word-spacing:1.912819px;}
.wsae{word-spacing:1.972595px;}
.wsd1{word-spacing:1.996650px;}
.wsd0{word-spacing:2.000700px;}
.ws2a{word-spacing:2.032370px;}
.ws12a{word-spacing:2.044339px;}
.ws60{word-spacing:2.151922px;}
.ws49{word-spacing:2.211697px;}
.ws4c{word-spacing:2.271473px;}
.ws13f{word-spacing:2.313331px;}
.ws73{word-spacing:2.331248px;}
.ws139{word-spacing:2.367130px;}
.ws37{word-spacing:2.391024px;}
.ws7e{word-spacing:2.450800px;}
.ws11{word-spacing:2.474726px;}
.ws81{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws5d{word-spacing:2.570351px;}
.ws54{word-spacing:2.630126px;}
.ws28{word-spacing:2.689902px;}
.ws134{word-spacing:2.689920px;}
.ws34{word-spacing:2.809453px;}
.ws9f{word-spacing:2.867060px;}
.ws10{word-spacing:2.869236px;}
.ws119{word-spacing:2.905114px;}
.ws15{word-spacing:2.958912px;}
.ws47{word-spacing:2.988780px;}
.wscf{word-spacing:3.037500px;}
.wsb1{word-spacing:3.048556px;}
.ws5a{word-spacing:3.108331px;}
.ws11e{word-spacing:3.120307px;}
.ws143{word-spacing:3.219686px;}
.ws123{word-spacing:3.220339px;}
.ws11f{word-spacing:3.223642px;}
.ws130{word-spacing:3.224093px;}
.wsbe{word-spacing:3.224822px;}
.ws36{word-spacing:3.227882px;}
.ws10a{word-spacing:3.227904px;}
.ws118{word-spacing:3.281702px;}
.ws41{word-spacing:3.347434px;}
.ws12e{word-spacing:3.389299px;}
.ws13b{word-spacing:3.433091px;}
.ws10d{word-spacing:3.443098px;}
.ws11b{word-spacing:3.496896px;}
.ws48{word-spacing:3.526760px;}
.ws6d{word-spacing:3.585325px;}
.ws1d{word-spacing:3.586536px;}
.ws65{word-spacing:3.646312px;}
.ws136{word-spacing:3.658291px;}
.ws77{word-spacing:3.706087px;}
.ws7d{word-spacing:3.765863px;}
.ws66{word-spacing:3.825638px;}
.ws12{word-spacing:3.873485px;}
.ws4a{word-spacing:3.885414px;}
.ws2d{word-spacing:3.945190px;}
.ws63{word-spacing:4.004965px;}
.ws5c{word-spacing:4.064741px;}
.ws11c{word-spacing:4.088678px;}
.ws10c{word-spacing:4.250074px;}
.wsab{word-spacing:4.303843px;}
.wsb0{word-spacing:4.363619px;}
.wsb8{word-spacing:4.423394px;}
.ws7f{word-spacing:4.542946px;}
.ws146{word-spacing:4.572864px;}
.ws116{word-spacing:4.626662px;}
.ws7c{word-spacing:4.662497px;}
.ws62{word-spacing:4.722272px;}
.ws16{word-spacing:4.734259px;}
.wsb{word-spacing:4.770079px;}
.wsb9{word-spacing:4.782048px;}
.wsc{word-spacing:4.853765px;}
.ws141{word-spacing:4.949453px;}
.ws72{word-spacing:5.021150px;}
.ws68{word-spacing:5.140702px;}
.ws5b{word-spacing:5.200477px;}
.ws79{word-spacing:5.260253px;}
.ws53{word-spacing:5.320028px;}
.wsb3{word-spacing:5.379804px;}
.ws67{word-spacing:5.439580px;}
.ws4f{word-spacing:5.559131px;}
.ws59{word-spacing:5.618906px;}
.ws129{word-spacing:5.648832px;}
.wsb2{word-spacing:5.858009px;}
.ws131{word-spacing:5.864026px;}
.wsac{word-spacing:5.917784px;}
.wsad{word-spacing:5.977560px;}
.ws6f{word-spacing:6.156887px;}
.wscd{word-spacing:6.297750px;}
.wsce{word-spacing:6.431400px;}
.ws57{word-spacing:6.635092px;}
.wsa1{word-spacing:6.874194px;}
.wsb7{word-spacing:6.933970px;}
.ws55{word-spacing:7.053521px;}
.ws58{word-spacing:7.113296px;}
.wsc7{word-spacing:7.349670px;}
.wsc8{word-spacing:7.611192px;}
.ws6a{word-spacing:7.711052px;}
.ws69{word-spacing:7.770828px;}
.ws9{word-spacing:7.782761px;}
.wsba{word-spacing:8.488135px;}
.wsc6{word-spacing:8.711766px;}
.ws133{word-spacing:8.822938px;}
.wsaf{word-spacing:10.042301px;}
.wse4{word-spacing:11.096649px;}
.wse5{word-spacing:11.119194px;}
.ws7{word-spacing:12.176255px;}
.ws142{word-spacing:12.696422px;}
.ws2{word-spacing:15.481836px;}
.ws6e{word-spacing:15.661207px;}
.ws8{word-spacing:16.109478px;}
.ws74{word-spacing:16.199188px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.wsef{word-spacing:215.336162px;}
.ws84{word-spacing:251.440715px;}
.wsfa{word-spacing:269.745178px;}
.wsff{word-spacing:272.435098px;}
.ws96{word-spacing:281.514733px;}
.wsfd{word-spacing:281.849818px;}
.ws90{word-spacing:282.428464px;}
.ws8e{word-spacing:286.444840px;}
.ws9a{word-spacing:286.683665px;}
.ws93{word-spacing:292.614251px;}
.ws91{word-spacing:302.599990px;}
.ws9d{word-spacing:302.841665px;}
.ws94{word-spacing:304.876840px;}
.wsaa{word-spacing:308.172106px;}
.ws99{word-spacing:310.042840px;}
.ws87{word-spacing:311.599030px;}
.ws8d{word-spacing:311.694671px;}
.ws85{word-spacing:315.592840px;}
.ws8b{word-spacing:315.682840px;}
.ws9b{word-spacing:326.206840px;}
.ws9e{word-spacing:328.474840px;}
.ws88{word-spacing:335.242840px;}
.wsa3{word-spacing:335.811955px;}
.ws97{word-spacing:336.484800px;}
.ws107{word-spacing:345.600922px;}
.wsf5{word-spacing:349.951151px;}
.ws100{word-spacing:350.819366px;}
.ws108{word-spacing:352.971302px;}
.ws98{word-spacing:355.833085px;}
.ws105{word-spacing:356.145408px;}
.wsf1{word-spacing:358.080653px;}
.wsfc{word-spacing:360.126490px;}
.wsfe{word-spacing:360.503078px;}
.wsf4{word-spacing:361.906301px;}
.ws103{word-spacing:362.170829px;}
.ws106{word-spacing:362.547418px;}
.ws102{word-spacing:362.762611px;}
.wsfb{word-spacing:363.838579px;}
.ws101{word-spacing:363.892378px;}
.wsf0{word-spacing:370.035803px;}
.ws109{word-spacing:372.177331px;}
.wsf8{word-spacing:373.909271px;}
.ws104{word-spacing:374.275469px;}
.ws8a{word-spacing:375.822095px;}
.wsa4{word-spacing:378.686938px;}
.wsf7{word-spacing:385.816601px;}
.wsf6{word-spacing:385.864421px;}
.wsf2{word-spacing:411.878828px;}
.wsf3{word-spacing:574.388485px;}
.wsdd{word-spacing:848.431476px;}
.wsc3{word-spacing:2170.085217px;}
._6d{margin-left:-24.585869px;}
._6b{margin-left:-22.160664px;}
._1e{margin-left:-7.412147px;}
._9{margin-left:-5.971622px;}
._1{margin-left:-4.644551px;}
._15{margin-left:-3.574664px;}
._0{margin-left:-2.301354px;}
._c{margin-left:-1.075968px;}
._31{width:1.106028px;}
._4{width:2.301354px;}
._7{width:3.785581px;}
._1c{width:4.943281px;}
._6c{width:6.617203px;}
._38{width:9.067973px;}
._36{width:10.070704px;}
._3{width:12.219661px;}
._2{width:13.849967px;}
._d{width:15.978125px;}
._f{width:17.107891px;}
._18{width:18.111994px;}
._b{width:19.116320px;}
._1d{width:20.156256px;}
._14{width:21.399672px;}
._1b{width:22.714728px;}
._10{width:23.850464px;}
._11{width:25.105759px;}
._e{width:26.349239px;}
._a{width:27.759974px;}
._19{width:28.985078px;}
._5{width:30.587087px;}
._17{width:31.860409px;}
._6{width:33.355008px;}
._16{width:34.908965px;}
._2e{width:37.413588px;}
._30{width:39.930115px;}
._1a{width:42.082030px;}
._8{width:54.295591px;}
._21{width:287.997866px;}
._1f{width:293.475022px;}
._29{width:299.818483px;}
._64{width:301.109645px;}
._20{width:303.230425px;}
._27{width:309.896672px;}
._2a{width:321.355732px;}
._65{width:331.021555px;}
._25{width:336.417921px;}
._24{width:343.208446px;}
._2b{width:353.939674px;}
._4c{width:361.906301px;}
._57{width:364.775537px;}
._2d{width:367.389274px;}
._44{width:373.861451px;}
._34{width:375.679179px;}
._66{width:377.772365px;}
._46{width:382.899544px;}
._4e{width:385.816601px;}
._22{width:387.813185px;}
._59{width:393.946103px;}
._4a{width:397.819571px;}
._26{width:400.044902px;}
._23{width:401.693040px;}
._41{width:405.901253px;}
._45{width:417.904223px;}
._62{width:421.448900px;}
._55{width:423.881798px;}
._5a{width:428.711679px;}
._56{width:430.401561px;}
._58{width:436.410796px;}
._33{width:439.830405px;}
._4b{width:441.957985px;}
._60{width:446.214019px;}
._5b{width:451.330823px;}
._54{width:459.173401px;}
._5d{width:460.321096px;}
._28{width:468.261274px;}
._5c{width:472.276246px;}
._2c{width:473.390010px;}
._63{width:477.201767px;}
._4d{width:483.514087px;}
._47{width:486.574605px;}
._52{width:489.928012px;}
._61{width:491.547947px;}
._49{width:503.413409px;}
._40{width:510.341443px;}
._4f{width:511.967344px;}
._53{width:514.406194px;}
._50{width:526.887371px;}
._5f{width:538.842521px;}
._43{width:542.046501px;}
._48{width:547.689332px;}
._3d{width:558.496787px;}
._5e{width:560.935638px;}
._42{width:565.287313px;}
._3e{width:570.451937px;}
._51{width:578.677081px;}
._3f{width:582.407087px;}
._12{width:724.833041px;}
._3c{width:762.834211px;}
._67{width:1254.955277px;}
._68{width:1315.532275px;}
._69{width:1330.811021px;}
._6a{width:1342.001088px;}
._32{width:1549.652958px;}
._37{width:1679.924067px;}
._35{width:1749.024834px;}
._3b{width:1917.735911px;}
._39{width:1923.043997px;}
._3a{width:1944.371985px;}
._2f{width:2500.851000px;}
._13{width:2524.761000px;}
.fc2{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc1{color:rgb(77,128,114);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:29.887800px;}
.fsb{font-size:35.865600px;}
.fs11{font-size:35.910000px;}
.fs13{font-size:40.500000px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs12{font-size:45.090000px;}
.fsa{font-size:45.429600px;}
.fsc{font-size:47.820600px;}
.fse{font-size:49.829400px;}
.fsd{font-size:53.798400px;}
.fs10{font-size:56.058000px;}
.fs8{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:107.596800px;}
.fs7{font-size:128.507760px;}
.y1aa{bottom:-381.130355px;}
.y1a9{bottom:-365.942916px;}
.y1ab{bottom:-358.314815px;}
.y1a8{bottom:-350.755477px;}
.y1a7{bottom:-335.568038px;}
.y1a6{bottom:-319.840425px;}
.y1a5{bottom:-304.112039px;}
.y1a4{bottom:-288.924599px;}
.y1a3{bottom:-273.737160px;}
.y1a2{bottom:-258.549721px;}
.y1a1{bottom:-243.362281px;}
.y1a0{bottom:-228.242477px;}
.y19f{bottom:-213.055038px;}
.y19e{bottom:-197.867599px;}
.y19d{bottom:-182.680159px;}
.y19c{bottom:-167.492720px;}
.y19b{bottom:-152.305281px;}
.y19a{bottom:-137.117842px;}
.y199{bottom:-121.998038px;}
.y198{bottom:-106.203038px;}
.y197{bottom:-90.475425px;}
.y196{bottom:-68.537925px;}
.y195{bottom:-41.740538px;}
.y194{bottom:-14.133038px;}
.y0{bottom:0.000000px;}
.y193{bottom:2.809382px;}
.y40{bottom:16.704213px;}
.y6f{bottom:31.890000px;}
.y6{bottom:66.525004px;}
.y5{bottom:97.125005px;}
.y6e{bottom:103.621500px;}
.y278{bottom:104.503500px;}
.y16d{bottom:104.610000px;}
.y3e{bottom:104.646000px;}
.ya6{bottom:107.641500px;}
.y109{bottom:109.434000px;}
.y150{bottom:110.970000px;}
.y277{bottom:121.762500px;}
.y6d{bottom:122.449500px;}
.y3d{bottom:122.535000px;}
.y242{bottom:122.850000px;}
.y16c{bottom:123.439500px;}
.yb9{bottom:124.677000px;}
.y127{bottom:126.022500px;}
.ya5{bottom:126.471000px;}
.y108{bottom:128.263500px;}
.y14f{bottom:128.776500px;}
.yeb{bottom:132.298500px;}
.y276{bottom:139.023000px;}
.y22{bottom:139.264499px;}
.y241{bottom:140.110500px;}
.y3c{bottom:140.422500px;}
.y6c{bottom:141.279000px;}
.y16b{bottom:142.269000px;}
.y14e{bottom:142.974000px;}
.yb8{bottom:143.506500px;}
.y126{bottom:144.852000px;}
.ya4{bottom:145.300500px;}
.y107{bottom:147.093000px;}
.y275{bottom:156.283500px;}
.y14d{bottom:157.170000px;}
.y240{bottom:157.371000px;}
.y1d6{bottom:157.854000px;}
.y3b{bottom:158.310000px;}
.yea{bottom:160.095000px;}
.y6b{bottom:160.108500px;}
.y16a{bottom:161.098500px;}
.yb7{bottom:162.336000px;}
.y125{bottom:163.681500px;}
.ya3{bottom:164.130000px;}
.y106{bottom:165.922500px;}
.y14c{bottom:171.367500px;}
.y1d5{bottom:172.051500px;}
.y274{bottom:173.544000px;}
.y23f{bottom:174.631500px;}
.y3a{bottom:176.199000px;}
.y6a{bottom:178.938000px;}
.y169{bottom:179.928000px;}
.yb6{bottom:181.165500px;}
.y124{bottom:182.511000px;}
.ya2{bottom:182.959500px;}
.y105{bottom:184.752000px;}
.y14b{bottom:185.563500px;}
.y1d4{bottom:186.247500px;}
.ye9{bottom:187.890000px;}
.y273{bottom:190.804500px;}
.y23e{bottom:191.892000px;}
.y39{bottom:194.086500px;}
.y192{bottom:196.736963px;}
.y19{bottom:196.933500px;}
.y69{bottom:197.767500px;}
.y168{bottom:198.757500px;}
.y14a{bottom:199.761000px;}
.yb5{bottom:199.995000px;}
.y1d3{bottom:200.445000px;}
.y123{bottom:201.340500px;}
.ya1{bottom:201.789000px;}
.y104{bottom:203.581500px;}
.y272{bottom:208.065000px;}
.y23d{bottom:209.152500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y38{bottom:211.974000px;}
.y149{bottom:213.957000px;}
.ye8{bottom:215.686500px;}
.y68{bottom:216.597000px;}
.y167{bottom:217.587000px;}
.yb4{bottom:218.824500px;}
.y122{bottom:220.170000px;}
.y1d2{bottom:220.350000px;}
.ya0{bottom:220.618500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y191{bottom:224.343450px;}
.y271{bottom:225.325500px;}
.y23c{bottom:226.413000px;}
.y103{bottom:226.894500px;}
.y148{bottom:228.154500px;}
.y37{bottom:229.863000px;}
.ye7{bottom:234.516000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y67{bottom:235.426500px;}
.y166{bottom:236.416500px;}
.yb3{bottom:237.654000px;}
.y1d1{bottom:238.012500px;}
.y121{bottom:238.999500px;}
.y9f{bottom:239.446500px;}
.y147{bottom:242.350500px;}
.y270{bottom:242.586000px;}
.y23b{bottom:243.672000px;}
.y190{bottom:244.120613px;}
.y102{bottom:247.069500px;}
.y1d0{bottom:252.210000px;}
.ye6{bottom:253.345500px;}
.y66{bottom:254.256000px;}
.y165{bottom:255.246000px;}
.y184{bottom:255.408000px;}
.yb2{bottom:256.483500px;}
.y120{bottom:257.829000px;}
.y9e{bottom:258.276000px;}
.y26f{bottom:259.846500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y23a{bottom:260.932500px;}
.y146{bottom:263.749500px;}
.y18f{bottom:263.830950px;}
.y1cf{bottom:266.406000px;}
.ye5{bottom:272.175000px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y65{bottom:273.085500px;}
.y164{bottom:274.075500px;}
.yb1{bottom:275.313000px;}
.y11f{bottom:276.658500px;}
.y9d{bottom:277.105500px;}
.y239{bottom:278.193000px;}
.y1ce{bottom:280.603500px;}
.y101{bottom:280.693500px;}
.y183{bottom:281.947500px;}
.y18e{bottom:283.541288px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.ye4{bottom:291.004500px;}
.y64{bottom:291.915000px;}
.y163{bottom:292.905000px;}
.y145{bottom:293.800500px;}
.yb0{bottom:294.142500px;}
.y26e{bottom:294.366000px;}
.y238{bottom:295.453500px;}
.y11e{bottom:295.488000px;}
.y9c{bottom:295.935000px;}
.y18d{bottom:296.569125px;}
.y36{bottom:300.154500px;}
.y1cd{bottom:300.508500px;}
.y1cc{bottom:307.606500px;}
.y100{bottom:308.488500px;}
.y18c{bottom:309.596963px;}
.ye3{bottom:309.834000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y63{bottom:310.744500px;}
.y26d{bottom:311.626500px;}
.y162{bottom:311.733000px;}
.y237{bottom:312.714000px;}
.yaf{bottom:312.972000px;}
.y11d{bottom:314.317500px;}
.y9b{bottom:314.764500px;}
.y35{bottom:318.043500px;}
.y18b{bottom:322.556963px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.ye2{bottom:328.663500px;}
.y26c{bottom:328.887000px;}
.y62{bottom:329.574000px;}
.y236{bottom:329.974500px;}
.y161{bottom:330.562500px;}
.y144{bottom:330.904500px;}
.yae{bottom:331.801500px;}
.y1cb{bottom:332.367000px;}
.y11c{bottom:333.145500px;}
.y9a{bottom:333.594000px;}
.y182{bottom:335.029500px;}
.y34{bottom:335.931000px;}
.yff{bottom:336.285000px;}
.y26b{bottom:346.147500px;}
.y1ca{bottom:346.564500px;}
.y235{bottom:347.235000px;}
.ye1{bottom:347.493000px;}
.y10{bottom:348.133500px;}
.y61{bottom:348.403500px;}
.y18a{bottom:349.286807px;}
.y160{bottom:349.392000px;}
.y143{bottom:349.734000px;}
.yad{bottom:350.631000px;}
.y11b{bottom:351.975000px;}
.y99{bottom:352.423500px;}
.y181{bottom:352.603500px;}
.y33{bottom:353.818500px;}
.y1c9{bottom:360.760500px;}
.y26a{bottom:363.408000px;}
.y189{bottom:363.731389px;}
.yfe{bottom:364.080000px;}
.y234{bottom:364.495500px;}
.ye0{bottom:366.322500px;}
.y60{bottom:367.233000px;}
.y15f{bottom:368.221500px;}
.yac{bottom:369.460500px;}
.y180{bottom:370.177500px;}
.y11a{bottom:370.804500px;}
.y98{bottom:371.253000px;}
.y142{bottom:373.047000px;}
.y1c8{bottom:374.958000px;}
.y188{bottom:378.109463px;}
.y269{bottom:380.668500px;}
.y32{bottom:380.673000px;}
.y233{bottom:381.754500px;}
.ydf{bottom:385.152000px;}
.y5f{bottom:386.062500px;}
.yf{bottom:386.785499px;}
.y20b{bottom:387.265500px;}
.y17f{bottom:387.751500px;}
.yab{bottom:388.290000px;}
.y1c7{bottom:389.154000px;}
.y119{bottom:389.634000px;}
.y97{bottom:390.082500px;}
.y15e{bottom:391.534500px;}
.yfd{bottom:391.876500px;}
.y268{bottom:397.929000px;}
.y31{bottom:398.562000px;}
.y20a{bottom:402.172500px;}
.y232{bottom:403.498500px;}
.yde{bottom:403.981500px;}
.y5e{bottom:404.892000px;}
.y141{bottom:406.671000px;}
.yaa{bottom:407.119500px;}
.ye{bottom:408.044999px;}
.y118{bottom:408.463500px;}
.y96{bottom:408.912000px;}
.y1c6{bottom:409.059000px;}
.y207{bottom:409.975500px;}
.yfc{bottom:410.706000px;}
.y267{bottom:415.188000px;}
.y1c5{bottom:416.158500px;}
.y30{bottom:416.449500px;}
.y209{bottom:417.078000px;}
.y187{bottom:419.149564px;}
.ydd{bottom:422.811000px;}
.y17e{bottom:423.258000px;}
.y140{bottom:425.500500px;}
.ya9{bottom:425.949000px;}
.y186{bottom:426.371963px;}
.y117{bottom:427.293000px;}
.y95{bottom:427.741500px;}
.y5d{bottom:428.205000px;}
.yfb{bottom:429.535500px;}
.y208{bottom:431.985000px;}
.y266{bottom:432.448500px;}
.y15d{bottom:433.858500px;}
.y1c4{bottom:440.919000px;}
.ydc{bottom:441.639000px;}
.y17d{bottom:442.087500px;}
.y13f{bottom:444.330000px;}
.y2f{bottom:444.798000px;}
.y116{bottom:446.122500px;}
.y94{bottom:446.571000px;}
.y231{bottom:447.391500px;}
.yfa{bottom:448.365000px;}
.ya8{bottom:449.260500px;}
.y265{bottom:449.709000px;}
.y15c{bottom:450.297000px;}
.y206{bottom:454.093500px;}
.y1c3{bottom:455.116500px;}
.ydb{bottom:460.468500px;}
.y17c{bottom:460.917000px;}
.y2e{bottom:461.166000px;}
.y2d{bottom:462.685500px;}
.y13e{bottom:463.159500px;}
.y230{bottom:463.830000px;}
.y115{bottom:464.952000px;}
.y93{bottom:465.400500px;}
.y15b{bottom:466.735500px;}
.y264{bottom:466.969500px;}
.yf9{bottom:467.194500px;}
.y202{bottom:467.785500px;}
.y205{bottom:469.000500px;}
.y1c2{bottom:469.312500px;}
.ya7{bottom:469.435500px;}
.yda{bottom:479.298000px;}
.y17b{bottom:479.746500px;}
.y22f{bottom:480.268500px;}
.y2c{bottom:480.574500px;}
.y13d{bottom:481.989000px;}
.y201{bottom:482.692500px;}
.y1c1{bottom:483.510000px;}
.y114{bottom:483.781500px;}
.y204{bottom:483.907500px;}
.y92{bottom:484.230000px;}
.yf8{bottom:486.024000px;}
.y15a{bottom:490.375500px;}
.y22e{bottom:496.707000px;}
.y1c0{bottom:497.706000px;}
.yd9{bottom:498.127500px;}
.y2b{bottom:498.462000px;}
.y17a{bottom:498.576000px;}
.y203{bottom:498.814500px;}
.y13c{bottom:500.818500px;}
.y263{bottom:501.490500px;}
.y113{bottom:502.611000px;}
.yd{bottom:502.864502px;}
.y91{bottom:503.059500px;}
.y5c{bottom:503.355000px;}
.yf7{bottom:504.853500px;}
.y22d{bottom:513.145500px;}
.y1bf{bottom:516.387000px;}
.yd8{bottom:516.957000px;}
.y179{bottom:517.405500px;}
.y262{bottom:518.751000px;}
.y13b{bottom:519.648000px;}
.yc{bottom:520.864502px;}
.y200{bottom:520.923000px;}
.y112{bottom:521.440500px;}
.y90{bottom:521.889000px;}
.y159{bottom:521.995500px;}
.y5b{bottom:522.811500px;}
.yf6{bottom:523.683000px;}
.y2a{bottom:525.316500px;}
.y22c{bottom:529.584000px;}
.y1be{bottom:535.066500px;}
.yd7{bottom:535.786500px;}
.y1ff{bottom:535.830000px;}
.y261{bottom:536.011500px;}
.y178{bottom:536.235000px;}
.y13a{bottom:538.477500px;}
.yb{bottom:538.864499px;}
.y111{bottom:540.270000px;}
.y8f{bottom:540.718500px;}
.y1fb{bottom:542.068500px;}
.yf5{bottom:542.511000px;}
.y29{bottom:543.204000px;}
.y22b{bottom:546.022500px;}
.y1bd{bottom:549.262500px;}
.y1fe{bottom:550.735500px;}
.y260{bottom:553.272000px;}
.yd6{bottom:554.616000px;}
.y177{bottom:555.064500px;}
.ya{bottom:556.864499px;}
.y1fa{bottom:556.974000px;}
.y139{bottom:557.307000px;}
.y110{bottom:559.099500px;}
.y8e{bottom:559.548000px;}
.y5a{bottom:560.202000px;}
.y28{bottom:561.093000px;}
.yf4{bottom:561.340500px;}
.y22a{bottom:562.459500px;}
.y1bc{bottom:563.460000px;}
.y1fd{bottom:565.642500px;}
.y25f{bottom:570.531000px;}
.yd5{bottom:573.445500px;}
.y176{bottom:573.894000px;}
.y138{bottom:576.136500px;}
.y10f{bottom:577.929000px;}
.y8d{bottom:578.377500px;}
.y229{bottom:578.898000px;}
.y27{bottom:578.980500px;}
.y59{bottom:579.658500px;}
.yf3{bottom:580.170000px;}
.y1fc{bottom:580.549500px;}
.y1bb{bottom:582.139500px;}
.y25e{bottom:587.791500px;}
.yd4{bottom:592.275000px;}
.y175{bottom:592.723500px;}
.y137{bottom:594.964500px;}
.y228{bottom:595.336500px;}
.y10e{bottom:596.758500px;}
.y26{bottom:596.868000px;}
.y8c{bottom:597.207000px;}
.yf2{bottom:598.999500px;}
.y58{bottom:599.115000px;}
.y1f9{bottom:602.658000px;}
.y1ba{bottom:603.538500px;}
.y25d{bottom:605.052000px;}
.yd3{bottom:611.104500px;}
.y174{bottom:611.553000px;}
.y227{bottom:611.775000px;}
.y25{bottom:614.757000px;}
.y10d{bottom:615.588000px;}
.y8b{bottom:616.036500px;}
.y1f8{bottom:617.565000px;}
.yf1{bottom:617.829000px;}
.y136{bottom:618.277500px;}
.y57{bottom:618.573000px;}
.y1b9{bottom:621.202500px;}
.y25c{bottom:622.312500px;}
.y226{bottom:628.213500px;}
.yd1{bottom:629.934000px;}
.yd2{bottom:630.166500px;}
.y173{bottom:630.382500px;}
.y1f7{bottom:632.472000px;}
.y24{bottom:632.644500px;}
.y10c{bottom:634.417500px;}
.y8a{bottom:634.866000px;}
.y1b8{bottom:635.398500px;}
.yf0{bottom:636.658500px;}
.y56{bottom:638.029500px;}
.y25b{bottom:639.573000px;}
.y225{bottom:644.652000px;}
.y9{bottom:645.510000px;}
.y1f6{bottom:647.379000px;}
.y1f2{bottom:647.728500px;}
.yd0{bottom:648.763500px;}
.y172{bottom:649.212000px;}
.y1b7{bottom:649.596000px;}
.y23{bottom:650.532000px;}
.y135{bottom:651.901500px;}
.y10b{bottom:653.247000px;}
.y89{bottom:653.695500px;}
.yef{bottom:655.488000px;}
.y25a{bottom:656.833500px;}
.y55{bottom:657.487500px;}
.y224{bottom:661.090500px;}
.y1f5{bottom:662.284500px;}
.y8{bottom:666.771000px;}
.ycf{bottom:667.593000px;}
.y171{bottom:668.041500px;}
.y1b6{bottom:668.275500px;}
.y134{bottom:670.731000px;}
.y158{bottom:672.076500px;}
.y88{bottom:672.525000px;}
.y259{bottom:674.094000px;}
.y10a{bottom:676.560000px;}
.y54{bottom:676.944000px;}
.y1f4{bottom:677.191500px;}
.y223{bottom:677.529000px;}
.yee{bottom:683.284500px;}
.yce{bottom:686.422500px;}
.y170{bottom:686.871000px;}
.y1b5{bottom:686.955000px;}
.y133{bottom:689.560500px;}
.y157{bottom:690.906000px;}
.y87{bottom:691.354500px;}
.y1f3{bottom:692.098500px;}
.y222{bottom:693.967500px;}
.y53{bottom:696.400500px;}
.y1b4{bottom:701.152500px;}
.y16f{bottom:705.700500px;}
.y132{bottom:708.390000px;}
.y258{bottom:708.613500px;}
.ycd{bottom:709.735500px;}
.y86{bottom:710.184000px;}
.y221{bottom:710.406000px;}
.yed{bottom:711.079500px;}
.y1f1{bottom:714.207000px;}
.y1b3{bottom:715.348500px;}
.y52{bottom:715.858500px;}
.y16e{bottom:724.530000px;}
.y257{bottom:725.874000px;}
.y7{bottom:726.298500px;}
.y220{bottom:726.843000px;}
.y131{bottom:727.219500px;}
.y156{bottom:728.565000px;}
.y85{bottom:729.013500px;}
.y1f0{bottom:729.114000px;}
.y1b2{bottom:734.029500px;}
.y51{bottom:735.315000px;}
.y1ed{bottom:736.917000px;}
.yec{bottom:738.876000px;}
.y256{bottom:743.134500px;}
.y21f{bottom:743.281500px;}
.ycc{bottom:743.359500px;}
.y1ef{bottom:744.019500px;}
.y130{bottom:746.049000px;}
.y155{bottom:747.394500px;}
.y84{bottom:747.843000px;}
.y1b1{bottom:748.225500px;}
.y4{bottom:752.599495px;}
.y50{bottom:754.771500px;}
.y1ee{bottom:758.926500px;}
.y21e{bottom:759.720000px;}
.y255{bottom:760.395000px;}
.ycb{bottom:762.189000px;}
.y12f{bottom:764.878500px;}
.y154{bottom:766.224000px;}
.y83{bottom:766.671000px;}
.y1b0{bottom:769.624500px;}
.y4f{bottom:774.229500px;}
.y21d{bottom:776.158500px;}
.y254{bottom:777.655500px;}
.yca{bottom:781.018500px;}
.y1ec{bottom:781.036500px;}
.y12e{bottom:783.708000px;}
.y153{bottom:785.053500px;}
.y82{bottom:785.500500px;}
.y1af{bottom:791.023500px;}
.y21c{bottom:792.597000px;}
.y4e{bottom:793.686000px;}
.y253{bottom:794.916000px;}
.y1eb{bottom:795.942000px;}
.yc9{bottom:799.848000px;}
.y12d{bottom:802.537500px;}
.y152{bottom:803.883000px;}
.y81{bottom:804.330000px;}
.y21b{bottom:809.035500px;}
.y1ea{bottom:810.849000px;}
.y252{bottom:812.176500px;}
.y4d{bottom:813.144000px;}
.yc8{bottom:818.677500px;}
.y12c{bottom:821.367000px;}
.y80{bottom:823.159500px;}
.y1ae{bottom:824.062500px;}
.y21a{bottom:825.474000px;}
.y1e9{bottom:825.756000px;}
.y151{bottom:827.194500px;}
.y251{bottom:829.437000px;}
.y4c{bottom:832.600500px;}
.y1e4{bottom:833.740500px;}
.yc7{bottom:837.507000px;}
.y12b{bottom:840.196500px;}
.y1e8{bottom:840.663000px;}
.y219{bottom:841.912500px;}
.y7f{bottom:841.989000px;}
.y250{bottom:846.697500px;}
.y1ad{bottom:852.141000px;}
.y1e7{bottom:855.568500px;}
.yc6{bottom:856.335000px;}
.y218{bottom:858.351000px;}
.y12a{bottom:859.026000px;}
.y7e{bottom:860.818500px;}
.y24f{bottom:863.956500px;}
.y1e6{bottom:870.475500px;}
.y4b{bottom:870.651000px;}
.y217{bottom:874.789500px;}
.yc5{bottom:875.164500px;}
.y3{bottom:879.369000px;}
.y7d{bottom:879.648000px;}
.y24e{bottom:881.217000px;}
.y129{bottom:882.339000px;}
.y1e5{bottom:885.382500px;}
.y1ac{bottom:885.706500px;}
.y4a{bottom:886.789500px;}
.y216{bottom:891.226500px;}
.yc4{bottom:893.994000px;}
.y7c{bottom:898.477500px;}
.y128{bottom:902.512500px;}
.y49{bottom:907.269000px;}
.y1e3{bottom:907.491000px;}
.y215{bottom:907.665000px;}
.y185{bottom:908.136000px;}
.yc3{bottom:912.823500px;}
.y24d{bottom:915.738000px;}
.y7b{bottom:917.307000px;}
.y48{bottom:919.069500px;}
.y1e0{bottom:921.190500px;}
.y1e2{bottom:922.398000px;}
.y47{bottom:923.409000px;}
.y214{bottom:924.103500px;}
.yc2{bottom:931.653000px;}
.y24c{bottom:932.998500px;}
.y7a{bottom:936.136500px;}
.y1e1{bottom:937.305000px;}
.y46{bottom:939.549000px;}
.y213{bottom:940.542000px;}
.y2{bottom:945.126001px;}
.y24b{bottom:950.259000px;}
.yc1{bottom:950.482500px;}
.y79{bottom:954.966000px;}
.y45{bottom:955.687500px;}
.y212{bottom:956.980500px;}
.y1df{bottom:959.413500px;}
.y1de{bottom:965.659500px;}
.y1{bottom:966.726000px;}
.y24a{bottom:967.519500px;}
.yc0{bottom:969.312000px;}
.y211{bottom:973.419000px;}
.y78{bottom:973.795500px;}
.y249{bottom:984.780000px;}
.ybf{bottom:988.141500px;}
.y210{bottom:989.857500px;}
.y77{bottom:992.625000px;}
.y1dd{bottom:996.429000px;}
.y44{bottom:999.829500px;}
.y248{bottom:1002.040500px;}
.y20f{bottom:1006.296000px;}
.ybe{bottom:1006.971000px;}
.y1dc{bottom:1011.336000px;}
.y76{bottom:1011.454500px;}
.y247{bottom:1019.299500px;}
.y20e{bottom:1022.734500px;}
.ybd{bottom:1025.800500px;}
.y1db{bottom:1026.241500px;}
.y1d8{bottom:1026.774000px;}
.y75{bottom:1030.284000px;}
.y246{bottom:1036.560000px;}
.y43{bottom:1036.591500px;}
.y1da{bottom:1041.148500px;}
.ybc{bottom:1044.630000px;}
.y20d{bottom:1046.374500px;}
.y74{bottom:1049.113500px;}
.y245{bottom:1053.820500px;}
.y1d9{bottom:1056.055500px;}
.ybb{bottom:1063.459500px;}
.y42{bottom:1064.835000px;}
.y73{bottom:1067.943000px;}
.y244{bottom:1071.081000px;}
.y20c{bottom:1077.994500px;}
.y1d7{bottom:1078.164000px;}
.yba{bottom:1082.289000px;}
.y72{bottom:1086.772500px;}
.y243{bottom:1088.341500px;}
.y41{bottom:1093.080000px;}
.y71{bottom:1105.602000px;}
.y279{bottom:1105.810500px;}
.y3f{bottom:1136.566500px;}
.y70{bottom:1168.366500px;}
.h1b{height:26.213599px;}
.h11{height:26.217754px;}
.h1d{height:29.564209px;}
.h9{height:30.587087px;}
.ha{height:30.670772px;}
.h19{height:31.828453px;}
.h7{height:32.130000px;}
.h1e{height:32.716670px;}
.h1c{height:32.914819px;}
.h18{height:34.430832px;}
.h12{height:34.956859px;}
.h17{height:35.052500px;}
.hb{height:36.665087px;}
.h13{height:38.734848px;}
.h14{height:39.326630px;}
.h21{height:39.434227px;}
.h15{height:43.038432px;}
.h16{height:43.695964px;}
.he{height:43.815515px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hc{height:50.930649px;}
.h10{height:54.405312px;}
.h2{height:55.080000px;}
.h1f{height:63.348859px;}
.h20{height:69.600859px;}
.hf{height:77.469696px;}
.h5{height:78.030000px;}
.hd{height:87.128261px;}
.h4{height:119.055004px;}
.h1a{height:182.850750px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:168.922125px;}
.w4{width:197.247128px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x22{left:-144.136125px;}
.x0{left:0.000000px;}
.x23{left:2.541375px;}
.x25{left:8.616375px;}
.x26{left:46.889264px;}
.x5{left:53.574000px;}
.x8{left:58.056593px;}
.x28{left:62.541000px;}
.x52{left:84.220500px;}
.x53{left:85.848000px;}
.x29{left:94.893000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x55{left:108.465000px;}
.x54{left:110.004000px;}
.x6{left:122.695500px;}
.x24{left:167.916177px;}
.x7{left:173.335500px;}
.x57{left:174.444000px;}
.x56{left:175.984500px;}
.x4{left:203.484001px;}
.xb{left:248.526000px;}
.x9{left:249.591000px;}
.x27{left:252.223774px;}
.x3d{left:258.585000px;}
.x46{left:264.204000px;}
.x1e{left:268.362000px;}
.xa{left:269.764500px;}
.x1f{left:271.227000px;}
.x20{left:273.546000px;}
.x15{left:276.315000px;}
.x1c{left:278.802000px;}
.xe{left:281.479500px;}
.x33{left:286.780500px;}
.x1d{left:291.094500px;}
.x36{left:292.633500px;}
.x4e{left:295.584000px;}
.x16{left:299.059500px;}
.x17{left:300.555000px;}
.x51{left:302.194500px;}
.x31{left:303.595500px;}
.x44{left:305.808000px;}
.x47{left:307.738500px;}
.xc{left:309.534000px;}
.x2d{left:312.186000px;}
.xd{left:319.599000px;}
.x13{left:327.022500px;}
.x1a{left:351.633000px;}
.x1b{left:363.924000px;}
.x21{left:390.727500px;}
.x50{left:410.059500px;}
.x2c{left:411.388500px;}
.x4d{left:413.683500px;}
.x4f{left:417.228000px;}
.x34{left:436.128000px;}
.x40{left:439.828500px;}
.x35{left:444.364500px;}
.x43{left:449.841000px;}
.x42{left:451.543500px;}
.x4b{left:453.702000px;}
.x3{left:454.959000px;}
.x3f{left:456.033000px;}
.x41{left:457.521000px;}
.x39{left:458.908500px;}
.x3e{left:460.444500px;}
.x4a{left:461.455500px;}
.x45{left:463.498500px;}
.x4c{left:464.730000px;}
.x3a{left:466.308000px;}
.x38{left:468.240000px;}
.x30{left:470.241000px;}
.x49{left:471.520500px;}
.x3c{left:474.169500px;}
.x3b{left:476.410500px;}
.x48{left:480.141000px;}
.x37{left:482.352000px;}
.x32{left:483.930000px;}
.x2e{left:488.043000px;}
.x2f{left:491.031000px;}
.x2a{left:638.166000px;}
.x14{left:645.570000px;}
.x18{left:654.777000px;}
.x19{left:667.069500px;}
.xf{left:712.725000px;}
.x12{left:737.025000px;}
.x2b{left:769.093500px;}
.x11{left:802.792500px;}
.x10{left:804.504000px;}
@media print{
.v3{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.402667pt;}
.v2{vertical-align:19.285333pt;}
.v4{vertical-align:25.237333pt;}
.v5{vertical-align:30.794667pt;}
.ls38{letter-spacing:-0.096192pt;}
.ls39{letter-spacing:-0.072000pt;}
.ls3e{letter-spacing:-0.052104pt;}
.ls3f{letter-spacing:-0.032064pt;}
.ls3c{letter-spacing:-0.028056pt;}
.ls40{letter-spacing:-0.024048pt;}
.ls41{letter-spacing:-0.020040pt;}
.ls3a{letter-spacing:-0.010800pt;}
.ls37{letter-spacing:-0.008016pt;}
.ls3d{letter-spacing:-0.004008pt;}
.ls36{letter-spacing:-0.003192pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.003330pt;}
.ls2a{letter-spacing:0.004008pt;}
.ls20{letter-spacing:0.012024pt;}
.ls2c{letter-spacing:0.014400pt;}
.ls2f{letter-spacing:0.016032pt;}
.ls1d{letter-spacing:0.019152pt;}
.ls21{letter-spacing:0.020040pt;}
.ls29{letter-spacing:0.021600pt;}
.ls22{letter-spacing:0.024048pt;}
.ls25{letter-spacing:0.025200pt;}
.ls26{letter-spacing:0.028800pt;}
.ls31{letter-spacing:0.032064pt;}
.ls28{letter-spacing:0.032400pt;}
.ls32{letter-spacing:0.036072pt;}
.ls2d{letter-spacing:0.040080pt;}
.ls27{letter-spacing:0.043200pt;}
.ls30{letter-spacing:0.044088pt;}
.ls23{letter-spacing:0.046800pt;}
.ls33{letter-spacing:0.052104pt;}
.ls2b{letter-spacing:0.057600pt;}
.ls24{letter-spacing:0.064800pt;}
.ls3b{letter-spacing:0.080160pt;}
.ls1f{letter-spacing:0.121296pt;}
.ls1e{letter-spacing:0.127680pt;}
.ls13{letter-spacing:0.509060pt;}
.ls14{letter-spacing:0.514393pt;}
.ls12{letter-spacing:0.528533pt;}
.ls15{letter-spacing:0.533867pt;}
.ls19{letter-spacing:0.576078pt;}
.ls2{letter-spacing:2.744933pt;}
.ls7{letter-spacing:10.626533pt;}
.ls35{letter-spacing:10.626800pt;}
.ls16{letter-spacing:10.629067pt;}
.ls11{letter-spacing:11.157867pt;}
.ls17{letter-spacing:12.549333pt;}
.ls18{letter-spacing:12.554667pt;}
.ls8{letter-spacing:13.177199pt;}
.lsf{letter-spacing:13.230333pt;}
.lsa{letter-spacing:13.283467pt;}
.lse{letter-spacing:13.336601pt;}
.lsb{letter-spacing:13.442868pt;}
.ls9{letter-spacing:13.496002pt;}
.ls1a{letter-spacing:13.549136pt;}
.ls1{letter-spacing:13.864933pt;}
.ls2e{letter-spacing:14.789520pt;}
.ls4{letter-spacing:15.942400pt;}
.lsd{letter-spacing:16.365231pt;}
.lsc{letter-spacing:18.543719pt;}
.ls1c{letter-spacing:19.181326pt;}
.ls1b{letter-spacing:21.359814pt;}
.ls34{letter-spacing:42.400632pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.ws2e{word-spacing:-13.283467pt;}
.ws10b{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.wse{word-spacing:-10.095467pt;}
.wsc2{word-spacing:-10.072104pt;}
.wsc1{word-spacing:-10.024008pt;}
.wsd{word-spacing:-9.298400pt;}
.wsbf{word-spacing:-8.107680pt;}
.wsc0{word-spacing:-7.980000pt;}
.ws24{word-spacing:-2.975497pt;}
.ws6b{word-spacing:-2.656693pt;}
.ws6c{word-spacing:-2.603559pt;}
.ws80{word-spacing:-2.391024pt;}
.ws23{word-spacing:-2.178489pt;}
.ws124{word-spacing:-2.104115pt;}
.ws3e{word-spacing:-2.019087pt;}
.ws1c{word-spacing:-1.865011pt;}
.wsb6{word-spacing:-1.859685pt;}
.ws52{word-spacing:-1.806551pt;}
.ws42{word-spacing:-1.753418pt;}
.ws75{word-spacing:-1.700284pt;}
.ws5e{word-spacing:-1.594016pt;}
.ws12c{word-spacing:-1.578086pt;}
.ws78{word-spacing:-1.540882pt;}
.wsa2{word-spacing:-1.487748pt;}
.ws39{word-spacing:-1.328347pt;}
.ws122{word-spacing:-1.291162pt;}
.ws71{word-spacing:-1.275213pt;}
.ws12f{word-spacing:-1.243341pt;}
.ws43{word-spacing:-1.222079pt;}
.ws12b{word-spacing:-1.195520pt;}
.wsb4{word-spacing:-1.168945pt;}
.wscc{word-spacing:-1.162320pt;}
.ws132{word-spacing:-1.147699pt;}
.wsb5{word-spacing:-1.062677pt;}
.wscb{word-spacing:-1.042080pt;}
.ws3{word-spacing:-1.041421pt;}
.ws144{word-spacing:-1.004237pt;}
.ws5{word-spacing:-0.929840pt;}
.ws4d{word-spacing:-0.797008pt;}
.ws82{word-spacing:-0.690740pt;}
.wsca{word-spacing:-0.669336pt;}
.wsc9{word-spacing:-0.649296pt;}
.ws3a{word-spacing:-0.637606pt;}
.ws5f{word-spacing:-0.584473pt;}
.ws50{word-spacing:-0.531339pt;}
.ws64{word-spacing:-0.478205pt;}
.ws137{word-spacing:-0.382566pt;}
.ws22{word-spacing:-0.318803pt;}
.ws121{word-spacing:-0.286925pt;}
.ws20{word-spacing:-0.265669pt;}
.wsdf{word-spacing:-0.256512pt;}
.ws13{word-spacing:-0.239104pt;}
.ws1e{word-spacing:-0.212535pt;}
.wsec{word-spacing:-0.212424pt;}
.wse9{word-spacing:-0.196392pt;}
.wse3{word-spacing:-0.192384pt;}
.ws112{word-spacing:-0.191283pt;}
.wse8{word-spacing:-0.188376pt;}
.wsc4{word-spacing:-0.185136pt;}
.wsda{word-spacing:-0.180360pt;}
.wsd9{word-spacing:-0.180000pt;}
.wsd7{word-spacing:-0.168336pt;}
.ws27{word-spacing:-0.159402pt;}
.wsd4{word-spacing:-0.147600pt;}
.wseb{word-spacing:-0.144288pt;}
.ws127{word-spacing:-0.143462pt;}
.ws1f{word-spacing:-0.106268pt;}
.ws111{word-spacing:-0.095642pt;}
.wsc5{word-spacing:-0.054264pt;}
.ws38{word-spacing:-0.053134pt;}
.ws14{word-spacing:-0.047821pt;}
.ws13a{word-spacing:-0.010803pt;}
.ws138{word-spacing:-0.009574pt;}
.ws145{word-spacing:-0.009557pt;}
.ws11d{word-spacing:-0.009540pt;}
.ws10e{word-spacing:-0.009455pt;}
.ws13e{word-spacing:-0.008269pt;}
.ws110{word-spacing:-0.007603pt;}
.ws13d{word-spacing:-0.007526pt;}
.ws115{word-spacing:-0.007467pt;}
.ws12d{word-spacing:-0.007031pt;}
.ws126{word-spacing:-0.005649pt;}
.ws117{word-spacing:-0.004941pt;}
.ws120{word-spacing:-0.003149pt;}
.ws10f{word-spacing:-0.002935pt;}
.ws11a{word-spacing:-0.002731pt;}
.ws2b{word-spacing:-0.000398pt;}
.ws0{word-spacing:0.000000pt;}
.wse6{word-spacing:0.024048pt;}
.wse7{word-spacing:0.032064pt;}
.wsf9{word-spacing:0.042507pt;}
.wse0{word-spacing:0.044088pt;}
.wsbc{word-spacing:0.047821pt;}
.wsee{word-spacing:0.048096pt;}
.ws33{word-spacing:0.053134pt;}
.wsea{word-spacing:0.060120pt;}
.wsde{word-spacing:0.064128pt;}
.wsdb{word-spacing:0.064800pt;}
.wse2{word-spacing:0.068136pt;}
.wsed{word-spacing:0.088176pt;}
.wsd8{word-spacing:0.090000pt;}
.wse1{word-spacing:0.092184pt;}
.wsd3{word-spacing:0.093600pt;}
.ws1b{word-spacing:0.095642pt;}
.wsd5{word-spacing:0.100800pt;}
.ws32{word-spacing:0.106268pt;}
.wsdc{word-spacing:0.108000pt;}
.wsd2{word-spacing:0.122400pt;}
.wsf{word-spacing:0.127522pt;}
.wsd6{word-spacing:0.133200pt;}
.ws17{word-spacing:0.143462pt;}
.ws31{word-spacing:0.159402pt;}
.ws1a{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.wsbd{word-spacing:0.239104pt;}
.ws45{word-spacing:0.265669pt;}
.ws135{word-spacing:0.282779pt;}
.ws19{word-spacing:0.286925pt;}
.ws51{word-spacing:0.318803pt;}
.wsbb{word-spacing:0.371937pt;}
.ws140{word-spacing:0.382566pt;}
.ws70{word-spacing:0.425071pt;}
.ws40{word-spacing:0.478205pt;}
.ws114{word-spacing:0.478208pt;}
.ws18{word-spacing:0.526029pt;}
.ws8f{word-spacing:0.528315pt;}
.ws86{word-spacing:0.528652pt;}
.ws9c{word-spacing:0.529715pt;}
.ws3f{word-spacing:0.531339pt;}
.ws8c{word-spacing:0.533347pt;}
.ws95{word-spacing:0.533366pt;}
.ws89{word-spacing:0.533437pt;}
.ws92{word-spacing:0.535049pt;}
.ws7b{word-spacing:0.584473pt;}
.wsa8{word-spacing:0.592964pt;}
.wsa7{word-spacing:0.595533pt;}
.wsa5{word-spacing:0.597205pt;}
.wsa9{word-spacing:0.597709pt;}
.wsa6{word-spacing:0.598298pt;}
.ws13c{word-spacing:0.621670pt;}
.ws3d{word-spacing:0.637606pt;}
.ws3c{word-spacing:0.690740pt;}
.ws35{word-spacing:0.743874pt;}
.ws7a{word-spacing:0.797008pt;}
.ws46{word-spacing:0.850142pt;}
.ws4{word-spacing:0.892646pt;}
.ws44{word-spacing:0.903276pt;}
.ws4e{word-spacing:0.956410pt;}
.ws128{word-spacing:0.956416pt;}
.ws56{word-spacing:1.009543pt;}
.ws26{word-spacing:1.062677pt;}
.ws113{word-spacing:1.099878pt;}
.ws3b{word-spacing:1.115811pt;}
.ws2f{word-spacing:1.275213pt;}
.ws30{word-spacing:1.328347pt;}
.ws25{word-spacing:1.381481pt;}
.ws76{word-spacing:1.434614pt;}
.ws125{word-spacing:1.434624pt;}
.ws29{word-spacing:1.487748pt;}
.ws61{word-spacing:1.540882pt;}
.ws83{word-spacing:1.594016pt;}
.ws4b{word-spacing:1.647150pt;}
.wsa0{word-spacing:1.700284pt;}
.wsae{word-spacing:1.753418pt;}
.wsd1{word-spacing:1.774800pt;}
.wsd0{word-spacing:1.778400pt;}
.ws2a{word-spacing:1.806551pt;}
.ws12a{word-spacing:1.817190pt;}
.ws60{word-spacing:1.912819pt;}
.ws49{word-spacing:1.965953pt;}
.ws4c{word-spacing:2.019087pt;}
.ws13f{word-spacing:2.056294pt;}
.ws73{word-spacing:2.072221pt;}
.ws139{word-spacing:2.104115pt;}
.ws37{word-spacing:2.125355pt;}
.ws7e{word-spacing:2.178489pt;}
.ws11{word-spacing:2.199757pt;}
.ws81{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws5d{word-spacing:2.284756pt;}
.ws54{word-spacing:2.337890pt;}
.ws28{word-spacing:2.391024pt;}
.ws134{word-spacing:2.391040pt;}
.ws34{word-spacing:2.497292pt;}
.ws9f{word-spacing:2.548498pt;}
.ws10{word-spacing:2.550432pt;}
.ws119{word-spacing:2.582323pt;}
.ws15{word-spacing:2.630144pt;}
.ws47{word-spacing:2.656693pt;}
.wscf{word-spacing:2.700000pt;}
.wsb1{word-spacing:2.709827pt;}
.ws5a{word-spacing:2.762961pt;}
.ws11e{word-spacing:2.773606pt;}
.ws143{word-spacing:2.861943pt;}
.ws123{word-spacing:2.862524pt;}
.ws11f{word-spacing:2.865459pt;}
.ws130{word-spacing:2.865860pt;}
.wsbe{word-spacing:2.866509pt;}
.ws36{word-spacing:2.869229pt;}
.ws10a{word-spacing:2.869248pt;}
.ws118{word-spacing:2.917069pt;}
.ws41{word-spacing:2.975497pt;}
.ws12e{word-spacing:3.012710pt;}
.ws13b{word-spacing:3.051637pt;}
.ws10d{word-spacing:3.060531pt;}
.ws11b{word-spacing:3.108352pt;}
.ws48{word-spacing:3.134898pt;}
.ws6d{word-spacing:3.186956pt;}
.ws1d{word-spacing:3.188032pt;}
.ws65{word-spacing:3.241166pt;}
.ws136{word-spacing:3.251814pt;}
.ws77{word-spacing:3.294300pt;}
.ws7d{word-spacing:3.347434pt;}
.ws66{word-spacing:3.400567pt;}
.ws12{word-spacing:3.443098pt;}
.ws4a{word-spacing:3.453701pt;}
.ws2d{word-spacing:3.506835pt;}
.ws63{word-spacing:3.559969pt;}
.ws5c{word-spacing:3.613103pt;}
.ws11c{word-spacing:3.634381pt;}
.ws10c{word-spacing:3.777843pt;}
.wsab{word-spacing:3.825638pt;}
.wsb0{word-spacing:3.878772pt;}
.wsb8{word-spacing:3.931906pt;}
.ws7f{word-spacing:4.038174pt;}
.ws146{word-spacing:4.064768pt;}
.ws116{word-spacing:4.112589pt;}
.ws7c{word-spacing:4.144442pt;}
.ws62{word-spacing:4.197575pt;}
.ws16{word-spacing:4.208230pt;}
.wsb{word-spacing:4.240070pt;}
.wsb9{word-spacing:4.250709pt;}
.wsc{word-spacing:4.314458pt;}
.ws141{word-spacing:4.399514pt;}
.ws72{word-spacing:4.463245pt;}
.ws68{word-spacing:4.569513pt;}
.ws5b{word-spacing:4.622646pt;}
.ws79{word-spacing:4.675780pt;}
.ws53{word-spacing:4.728914pt;}
.wsb3{word-spacing:4.782048pt;}
.ws67{word-spacing:4.835182pt;}
.ws4f{word-spacing:4.941450pt;}
.ws59{word-spacing:4.994583pt;}
.ws129{word-spacing:5.021184pt;}
.wsb2{word-spacing:5.207119pt;}
.ws131{word-spacing:5.212467pt;}
.wsac{word-spacing:5.260253pt;}
.wsad{word-spacing:5.313387pt;}
.ws6f{word-spacing:5.472788pt;}
.wscd{word-spacing:5.598000pt;}
.wsce{word-spacing:5.716800pt;}
.ws57{word-spacing:5.897859pt;}
.wsa1{word-spacing:6.110395pt;}
.wsb7{word-spacing:6.163529pt;}
.ws55{word-spacing:6.269796pt;}
.ws58{word-spacing:6.322930pt;}
.wsc7{word-spacing:6.533040pt;}
.wsc8{word-spacing:6.765504pt;}
.ws6a{word-spacing:6.854269pt;}
.ws69{word-spacing:6.907403pt;}
.ws9{word-spacing:6.918010pt;}
.wsba{word-spacing:7.545009pt;}
.wsc6{word-spacing:7.743792pt;}
.ws133{word-spacing:7.842611pt;}
.wsaf{word-spacing:8.926490pt;}
.wse4{word-spacing:9.863688pt;}
.wse5{word-spacing:9.883728pt;}
.ws7{word-spacing:10.823338pt;}
.ws142{word-spacing:11.285709pt;}
.ws2{word-spacing:13.761632pt;}
.ws6e{word-spacing:13.921073pt;}
.ws8{word-spacing:14.319536pt;}
.ws74{word-spacing:14.399278pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.wsef{word-spacing:191.409922pt;}
.ws84{word-spacing:223.502858pt;}
.wsfa{word-spacing:239.773491pt;}
.wsff{word-spacing:242.164531pt;}
.ws96{word-spacing:250.235318pt;}
.wsfd{word-spacing:250.533171pt;}
.ws90{word-spacing:251.047523pt;}
.ws8e{word-spacing:254.617636pt;}
.ws9a{word-spacing:254.829925pt;}
.ws93{word-spacing:260.101557pt;}
.ws91{word-spacing:268.977769pt;}
.ws9d{word-spacing:269.192591pt;}
.ws94{word-spacing:271.001636pt;}
.wsaa{word-spacing:273.930761pt;}
.ws99{word-spacing:275.593636pt;}
.ws87{word-spacing:276.976915pt;}
.ws8d{word-spacing:277.061930pt;}
.ws85{word-spacing:280.526969pt;}
.ws8b{word-spacing:280.606969pt;}
.ws9b{word-spacing:289.961636pt;}
.ws9e{word-spacing:291.977636pt;}
.ws88{word-spacing:297.993636pt;}
.wsa3{word-spacing:298.499516pt;}
.ws97{word-spacing:299.097600pt;}
.ws107{word-spacing:307.200819pt;}
.wsf5{word-spacing:311.067690pt;}
.ws100{word-spacing:311.839437pt;}
.ws108{word-spacing:313.752269pt;}
.ws98{word-spacing:316.296075pt;}
.ws105{word-spacing:316.573696pt;}
.wsf1{word-spacing:318.293914pt;}
.wsfc{word-spacing:320.112435pt;}
.wsfe{word-spacing:320.447181pt;}
.wsf4{word-spacing:321.694490pt;}
.ws103{word-spacing:321.929626pt;}
.ws106{word-spacing:322.264371pt;}
.ws102{word-spacing:322.455654pt;}
.wsfb{word-spacing:323.412070pt;}
.ws101{word-spacing:323.459891pt;}
.wsf0{word-spacing:328.920714pt;}
.ws109{word-spacing:330.824294pt;}
.wsf8{word-spacing:332.363797pt;}
.ws104{word-spacing:332.689306pt;}
.ws8a{word-spacing:334.064085pt;}
.wsa4{word-spacing:336.610611pt;}
.wsf7{word-spacing:342.948090pt;}
.wsf6{word-spacing:342.990597pt;}
.wsf2{word-spacing:366.114514pt;}
.wsf3{word-spacing:510.567542pt;}
.wsdd{word-spacing:754.161312pt;}
.wsc3{word-spacing:1928.964637pt;}
._6d{margin-left:-21.854106pt;}
._6b{margin-left:-19.698368pt;}
._1e{margin-left:-6.588575pt;}
._9{margin-left:-5.308109pt;}
._1{margin-left:-4.128490pt;}
._15{margin-left:-3.177479pt;}
._0{margin-left:-2.045648pt;}
._c{margin-left:-0.956416pt;}
._31{width:0.983136pt;}
._4{width:2.045648pt;}
._7{width:3.364961pt;}
._1c{width:4.394028pt;}
._6c{width:5.881958pt;}
._38{width:8.060421pt;}
._36{width:8.951737pt;}
._3{width:10.861921pt;}
._2{width:12.311082pt;}
._d{width:14.202778pt;}
._f{width:15.207014pt;}
._18{width:16.099550pt;}
._b{width:16.992285pt;}
._1d{width:17.916672pt;}
._14{width:19.021931pt;}
._1b{width:20.190869pt;}
._10{width:21.200413pt;}
._11{width:22.316230pt;}
._e{width:23.421546pt;}
._a{width:24.675533pt;}
._19{width:25.764514pt;}
._5{width:27.188522pt;}
._17{width:28.320364pt;}
._6{width:29.648896pt;}
._16{width:31.030191pt;}
._2e{width:33.256523pt;}
._30{width:35.493436pt;}
._1a{width:37.406249pt;}
._8{width:48.262748pt;}
._21{width:255.998103pt;}
._1f{width:260.866686pt;}
._29{width:266.505318pt;}
._64{width:267.653018pt;}
._20{width:269.538155pt;}
._27{width:275.463709pt;}
._2a{width:285.649539pt;}
._65{width:294.241382pt;}
._25{width:299.038152pt;}
._24{width:305.074174pt;}
._2b{width:314.613043pt;}
._4c{width:321.694490pt;}
._57{width:324.244922pt;}
._2d{width:326.568243pt;}
._44{width:332.321290pt;}
._34{width:333.937048pt;}
._66{width:335.797658pt;}
._46{width:340.355150pt;}
._4e{width:342.948090pt;}
._22{width:344.722831pt;}
._59{width:350.174314pt;}
._4a{width:353.617397pt;}
._26{width:355.595469pt;}
._23{width:357.060480pt;}
._41{width:360.801114pt;}
._45{width:371.470421pt;}
._62{width:374.621245pt;}
._55{width:376.783821pt;}
._5a{width:381.077048pt;}
._56{width:382.579165pt;}
._58{width:387.920707pt;}
._33{width:390.960360pt;}
._4b{width:392.851542pt;}
._60{width:396.634683pt;}
._5b{width:401.182954pt;}
._54{width:408.154134pt;}
._5d{width:409.174307pt;}
._28{width:416.232243pt;}
._5c{width:419.801107pt;}
._2c{width:420.791120pt;}
._63{width:424.179349pt;}
._4d{width:429.790299pt;}
._47{width:432.510760pt;}
._52{width:435.491566pt;}
._61{width:436.931509pt;}
._49{width:447.478586pt;}
._40{width:453.636838pt;}
._4f{width:455.082083pt;}
._53{width:457.249950pt;}
._50{width:468.344330pt;}
._5f{width:478.971130pt;}
._43{width:481.819112pt;}
._48{width:486.834962pt;}
._3d{width:496.441589pt;}
._5e{width:498.609456pt;}
._42{width:502.477611pt;}
._3e{width:507.068389pt;}
._51{width:514.379627pt;}
._3f{width:517.695189pt;}
._12{width:644.296037pt;}
._3c{width:678.074854pt;}
._67{width:1115.515802pt;}
._68{width:1169.362022pt;}
._69{width:1182.943130pt;}
._6a{width:1192.889856pt;}
._32{width:1377.469296pt;}
._37{width:1493.265837pt;}
._35{width:1554.688741pt;}
._3b{width:1704.654143pt;}
._39{width:1709.372442pt;}
._3a{width:1728.330653pt;}
._2f{width:2222.978667pt;}
._13{width:2244.232000pt;}
.fs6{font-size:26.566933pt;}
.fsb{font-size:31.880533pt;}
.fs11{font-size:31.920000pt;}
.fs13{font-size:36.000000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs12{font-size:40.080000pt;}
.fsa{font-size:40.381867pt;}
.fsc{font-size:42.507200pt;}
.fse{font-size:44.292800pt;}
.fsd{font-size:47.820800pt;}
.fs10{font-size:49.829333pt;}
.fs8{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:95.641600pt;}
.fs7{font-size:114.229120pt;}
.y1aa{bottom:-338.782538pt;}
.y1a9{bottom:-325.282592pt;}
.y1ab{bottom:-318.502058pt;}
.y1a8{bottom:-311.782646pt;}
.y1a7{bottom:-298.282700pt;}
.y1a6{bottom:-284.302600pt;}
.y1a5{bottom:-270.321812pt;}
.y1a4{bottom:-256.821866pt;}
.y1a3{bottom:-243.321920pt;}
.y1a2{bottom:-229.821974pt;}
.y1a1{bottom:-216.322028pt;}
.y1a0{bottom:-202.882202pt;}
.y19f{bottom:-189.382256pt;}
.y19e{bottom:-175.882310pt;}
.y19d{bottom:-162.382364pt;}
.y19c{bottom:-148.882418pt;}
.y19b{bottom:-135.382472pt;}
.y19a{bottom:-121.882526pt;}
.y199{bottom:-108.442700pt;}
.y198{bottom:-94.402700pt;}
.y197{bottom:-80.422600pt;}
.y196{bottom:-60.922600pt;}
.y195{bottom:-37.102700pt;}
.y194{bottom:-12.562700pt;}
.y0{bottom:0.000000pt;}
.y193{bottom:2.497228pt;}
.y40{bottom:14.848190pt;}
.y6f{bottom:28.346667pt;}
.y6{bottom:59.133337pt;}
.y5{bottom:86.333337pt;}
.y6e{bottom:92.108000pt;}
.y278{bottom:92.892000pt;}
.y16d{bottom:92.986667pt;}
.y3e{bottom:93.018667pt;}
.ya6{bottom:95.681333pt;}
.y109{bottom:97.274667pt;}
.y150{bottom:98.640000pt;}
.y277{bottom:108.233333pt;}
.y6d{bottom:108.844000pt;}
.y3d{bottom:108.920000pt;}
.y242{bottom:109.200000pt;}
.y16c{bottom:109.724000pt;}
.yb9{bottom:110.824000pt;}
.y127{bottom:112.020000pt;}
.ya5{bottom:112.418667pt;}
.y108{bottom:114.012000pt;}
.y14f{bottom:114.468000pt;}
.yeb{bottom:117.598667pt;}
.y276{bottom:123.576000pt;}
.y22{bottom:123.790666pt;}
.y241{bottom:124.542667pt;}
.y3c{bottom:124.820000pt;}
.y6c{bottom:125.581333pt;}
.y16b{bottom:126.461333pt;}
.y14e{bottom:127.088000pt;}
.yb8{bottom:127.561333pt;}
.y126{bottom:128.757333pt;}
.ya4{bottom:129.156000pt;}
.y107{bottom:130.749333pt;}
.y275{bottom:138.918667pt;}
.y14d{bottom:139.706667pt;}
.y240{bottom:139.885333pt;}
.y1d6{bottom:140.314667pt;}
.y3b{bottom:140.720000pt;}
.yea{bottom:142.306667pt;}
.y6b{bottom:142.318667pt;}
.y16a{bottom:143.198667pt;}
.yb7{bottom:144.298667pt;}
.y125{bottom:145.494667pt;}
.ya3{bottom:145.893333pt;}
.y106{bottom:147.486667pt;}
.y14c{bottom:152.326667pt;}
.y1d5{bottom:152.934667pt;}
.y274{bottom:154.261333pt;}
.y23f{bottom:155.228000pt;}
.y3a{bottom:156.621333pt;}
.y6a{bottom:159.056000pt;}
.y169{bottom:159.936000pt;}
.yb6{bottom:161.036000pt;}
.y124{bottom:162.232000pt;}
.ya2{bottom:162.630667pt;}
.y105{bottom:164.224000pt;}
.y14b{bottom:164.945333pt;}
.y1d4{bottom:165.553333pt;}
.ye9{bottom:167.013333pt;}
.y273{bottom:169.604000pt;}
.y23e{bottom:170.570667pt;}
.y39{bottom:172.521333pt;}
.y192{bottom:174.877300pt;}
.y19{bottom:175.052000pt;}
.y69{bottom:175.793333pt;}
.y168{bottom:176.673333pt;}
.y14a{bottom:177.565333pt;}
.yb5{bottom:177.773333pt;}
.y1d3{bottom:178.173333pt;}
.y123{bottom:178.969333pt;}
.ya1{bottom:179.368000pt;}
.y104{bottom:180.961333pt;}
.y272{bottom:184.946667pt;}
.y23d{bottom:185.913333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y38{bottom:188.421333pt;}
.y149{bottom:190.184000pt;}
.ye8{bottom:191.721333pt;}
.y68{bottom:192.530667pt;}
.y167{bottom:193.410667pt;}
.yb4{bottom:194.510667pt;}
.y122{bottom:195.706667pt;}
.y1d2{bottom:195.866667pt;}
.ya0{bottom:196.105333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y191{bottom:199.416400pt;}
.y271{bottom:200.289333pt;}
.y23c{bottom:201.256000pt;}
.y103{bottom:201.684000pt;}
.y148{bottom:202.804000pt;}
.y37{bottom:204.322667pt;}
.ye7{bottom:208.458667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y67{bottom:209.268000pt;}
.y166{bottom:210.148000pt;}
.yb3{bottom:211.248000pt;}
.y1d1{bottom:211.566667pt;}
.y121{bottom:212.444000pt;}
.y9f{bottom:212.841333pt;}
.y147{bottom:215.422667pt;}
.y270{bottom:215.632000pt;}
.y23b{bottom:216.597333pt;}
.y190{bottom:216.996100pt;}
.y102{bottom:219.617333pt;}
.y1d0{bottom:224.186667pt;}
.ye6{bottom:225.196000pt;}
.y66{bottom:226.005333pt;}
.y165{bottom:226.885333pt;}
.y184{bottom:227.029333pt;}
.yb2{bottom:227.985333pt;}
.y120{bottom:229.181333pt;}
.y9e{bottom:229.578667pt;}
.y26f{bottom:230.974667pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y23a{bottom:231.940000pt;}
.y146{bottom:234.444000pt;}
.y18f{bottom:234.516400pt;}
.y1cf{bottom:236.805333pt;}
.ye5{bottom:241.933333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y65{bottom:242.742667pt;}
.y164{bottom:243.622667pt;}
.yb1{bottom:244.722667pt;}
.y11f{bottom:245.918667pt;}
.y9d{bottom:246.316000pt;}
.y239{bottom:247.282667pt;}
.y1ce{bottom:249.425333pt;}
.y101{bottom:249.505333pt;}
.y183{bottom:250.620000pt;}
.y18e{bottom:252.036700pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.ye4{bottom:258.670667pt;}
.y64{bottom:259.480000pt;}
.y163{bottom:260.360000pt;}
.y145{bottom:261.156000pt;}
.yb0{bottom:261.460000pt;}
.y26e{bottom:261.658667pt;}
.y238{bottom:262.625333pt;}
.y11e{bottom:262.656000pt;}
.y9c{bottom:263.053333pt;}
.y18d{bottom:263.617000pt;}
.y36{bottom:266.804000pt;}
.y1cd{bottom:267.118667pt;}
.y1cc{bottom:273.428000pt;}
.y100{bottom:274.212000pt;}
.y18c{bottom:275.197300pt;}
.ye3{bottom:275.408000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y63{bottom:276.217333pt;}
.y26d{bottom:277.001333pt;}
.y162{bottom:277.096000pt;}
.y237{bottom:277.968000pt;}
.yaf{bottom:278.197333pt;}
.y11d{bottom:279.393333pt;}
.y9b{bottom:279.790667pt;}
.y35{bottom:282.705333pt;}
.y18b{bottom:286.717300pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.ye2{bottom:292.145333pt;}
.y26c{bottom:292.344000pt;}
.y62{bottom:292.954667pt;}
.y236{bottom:293.310667pt;}
.y161{bottom:293.833333pt;}
.y144{bottom:294.137333pt;}
.yae{bottom:294.934667pt;}
.y1cb{bottom:295.437333pt;}
.y11c{bottom:296.129333pt;}
.y9a{bottom:296.528000pt;}
.y182{bottom:297.804000pt;}
.y34{bottom:298.605333pt;}
.yff{bottom:298.920000pt;}
.y26b{bottom:307.686667pt;}
.y1ca{bottom:308.057333pt;}
.y235{bottom:308.653333pt;}
.ye1{bottom:308.882667pt;}
.y10{bottom:309.452000pt;}
.y61{bottom:309.692000pt;}
.y18a{bottom:310.477162pt;}
.y160{bottom:310.570667pt;}
.y143{bottom:310.874667pt;}
.yad{bottom:311.672000pt;}
.y11b{bottom:312.866667pt;}
.y99{bottom:313.265333pt;}
.y181{bottom:313.425333pt;}
.y33{bottom:314.505333pt;}
.y1c9{bottom:320.676000pt;}
.y26a{bottom:323.029333pt;}
.y189{bottom:323.316790pt;}
.yfe{bottom:323.626667pt;}
.y234{bottom:323.996000pt;}
.ye0{bottom:325.620000pt;}
.y60{bottom:326.429333pt;}
.y15f{bottom:327.308000pt;}
.yac{bottom:328.409333pt;}
.y180{bottom:329.046667pt;}
.y11a{bottom:329.604000pt;}
.y98{bottom:330.002667pt;}
.y142{bottom:331.597333pt;}
.y1c8{bottom:333.296000pt;}
.y188{bottom:336.097300pt;}
.y269{bottom:338.372000pt;}
.y32{bottom:338.376000pt;}
.y233{bottom:339.337333pt;}
.ydf{bottom:342.357333pt;}
.y5f{bottom:343.166667pt;}
.yf{bottom:343.809333pt;}
.y20b{bottom:344.236000pt;}
.y17f{bottom:344.668000pt;}
.yab{bottom:345.146667pt;}
.y1c7{bottom:345.914667pt;}
.y119{bottom:346.341333pt;}
.y97{bottom:346.740000pt;}
.y15e{bottom:348.030667pt;}
.yfd{bottom:348.334667pt;}
.y268{bottom:353.714667pt;}
.y31{bottom:354.277333pt;}
.y20a{bottom:357.486667pt;}
.y232{bottom:358.665333pt;}
.yde{bottom:359.094667pt;}
.y5e{bottom:359.904000pt;}
.y141{bottom:361.485333pt;}
.yaa{bottom:361.884000pt;}
.ye{bottom:362.706666pt;}
.y118{bottom:363.078667pt;}
.y96{bottom:363.477333pt;}
.y1c6{bottom:363.608000pt;}
.y207{bottom:364.422667pt;}
.yfc{bottom:365.072000pt;}
.y267{bottom:369.056000pt;}
.y1c5{bottom:369.918667pt;}
.y30{bottom:370.177333pt;}
.y209{bottom:370.736000pt;}
.y187{bottom:372.577390pt;}
.ydd{bottom:375.832000pt;}
.y17e{bottom:376.229333pt;}
.y140{bottom:378.222667pt;}
.ya9{bottom:378.621333pt;}
.y186{bottom:378.997300pt;}
.y117{bottom:379.816000pt;}
.y95{bottom:380.214667pt;}
.y5d{bottom:380.626667pt;}
.yfb{bottom:381.809333pt;}
.y208{bottom:383.986667pt;}
.y266{bottom:384.398667pt;}
.y15d{bottom:385.652000pt;}
.y1c4{bottom:391.928000pt;}
.ydc{bottom:392.568000pt;}
.y17d{bottom:392.966667pt;}
.y13f{bottom:394.960000pt;}
.y2f{bottom:395.376000pt;}
.y116{bottom:396.553333pt;}
.y94{bottom:396.952000pt;}
.y231{bottom:397.681333pt;}
.yfa{bottom:398.546667pt;}
.ya8{bottom:399.342667pt;}
.y265{bottom:399.741333pt;}
.y15c{bottom:400.264000pt;}
.y206{bottom:403.638667pt;}
.y1c3{bottom:404.548000pt;}
.ydb{bottom:409.305333pt;}
.y17c{bottom:409.704000pt;}
.y2e{bottom:409.925333pt;}
.y2d{bottom:411.276000pt;}
.y13e{bottom:411.697333pt;}
.y230{bottom:412.293333pt;}
.y115{bottom:413.290667pt;}
.y93{bottom:413.689333pt;}
.y15b{bottom:414.876000pt;}
.y264{bottom:415.084000pt;}
.yf9{bottom:415.284000pt;}
.y202{bottom:415.809333pt;}
.y205{bottom:416.889333pt;}
.y1c2{bottom:417.166667pt;}
.ya7{bottom:417.276000pt;}
.yda{bottom:426.042667pt;}
.y17b{bottom:426.441333pt;}
.y22f{bottom:426.905333pt;}
.y2c{bottom:427.177333pt;}
.y13d{bottom:428.434667pt;}
.y201{bottom:429.060000pt;}
.y1c1{bottom:429.786667pt;}
.y114{bottom:430.028000pt;}
.y204{bottom:430.140000pt;}
.y92{bottom:430.426667pt;}
.yf8{bottom:432.021333pt;}
.y15a{bottom:435.889333pt;}
.y22e{bottom:441.517333pt;}
.y1c0{bottom:442.405333pt;}
.yd9{bottom:442.780000pt;}
.y2b{bottom:443.077333pt;}
.y17a{bottom:443.178667pt;}
.y203{bottom:443.390667pt;}
.y13c{bottom:445.172000pt;}
.y263{bottom:445.769333pt;}
.y113{bottom:446.765333pt;}
.yd{bottom:446.990669pt;}
.y91{bottom:447.164000pt;}
.y5c{bottom:447.426667pt;}
.yf7{bottom:448.758667pt;}
.y22d{bottom:456.129333pt;}
.y1bf{bottom:459.010667pt;}
.yd8{bottom:459.517333pt;}
.y179{bottom:459.916000pt;}
.y262{bottom:461.112000pt;}
.y13b{bottom:461.909333pt;}
.yc{bottom:462.990669pt;}
.y200{bottom:463.042667pt;}
.y112{bottom:463.502667pt;}
.y90{bottom:463.901333pt;}
.y159{bottom:463.996000pt;}
.y5b{bottom:464.721333pt;}
.yf6{bottom:465.496000pt;}
.y2a{bottom:466.948000pt;}
.y22c{bottom:470.741333pt;}
.y1be{bottom:475.614667pt;}
.yd7{bottom:476.254667pt;}
.y1ff{bottom:476.293333pt;}
.y261{bottom:476.454667pt;}
.y178{bottom:476.653333pt;}
.y13a{bottom:478.646667pt;}
.yb{bottom:478.990666pt;}
.y111{bottom:480.240000pt;}
.y8f{bottom:480.638667pt;}
.y1fb{bottom:481.838667pt;}
.yf5{bottom:482.232000pt;}
.y29{bottom:482.848000pt;}
.y22b{bottom:485.353333pt;}
.y1bd{bottom:488.233333pt;}
.y1fe{bottom:489.542667pt;}
.y260{bottom:491.797333pt;}
.yd6{bottom:492.992000pt;}
.y177{bottom:493.390667pt;}
.ya{bottom:494.990666pt;}
.y1fa{bottom:495.088000pt;}
.y139{bottom:495.384000pt;}
.y110{bottom:496.977333pt;}
.y8e{bottom:497.376000pt;}
.y5a{bottom:497.957333pt;}
.y28{bottom:498.749333pt;}
.yf4{bottom:498.969333pt;}
.y22a{bottom:499.964000pt;}
.y1bc{bottom:500.853333pt;}
.y1fd{bottom:502.793333pt;}
.y25f{bottom:507.138667pt;}
.yd5{bottom:509.729333pt;}
.y176{bottom:510.128000pt;}
.y138{bottom:512.121333pt;}
.y10f{bottom:513.714667pt;}
.y8d{bottom:514.113333pt;}
.y229{bottom:514.576000pt;}
.y27{bottom:514.649333pt;}
.y59{bottom:515.252000pt;}
.yf3{bottom:515.706667pt;}
.y1fc{bottom:516.044000pt;}
.y1bb{bottom:517.457333pt;}
.y25e{bottom:522.481333pt;}
.yd4{bottom:526.466667pt;}
.y175{bottom:526.865333pt;}
.y137{bottom:528.857333pt;}
.y228{bottom:529.188000pt;}
.y10e{bottom:530.452000pt;}
.y26{bottom:530.549333pt;}
.y8c{bottom:530.850667pt;}
.yf2{bottom:532.444000pt;}
.y58{bottom:532.546667pt;}
.y1f9{bottom:535.696000pt;}
.y1ba{bottom:536.478667pt;}
.y25d{bottom:537.824000pt;}
.yd3{bottom:543.204000pt;}
.y174{bottom:543.602667pt;}
.y227{bottom:543.800000pt;}
.y25{bottom:546.450667pt;}
.y10d{bottom:547.189333pt;}
.y8b{bottom:547.588000pt;}
.y1f8{bottom:548.946667pt;}
.yf1{bottom:549.181333pt;}
.y136{bottom:549.580000pt;}
.y57{bottom:549.842667pt;}
.y1b9{bottom:552.180000pt;}
.y25c{bottom:553.166667pt;}
.y226{bottom:558.412000pt;}
.yd1{bottom:559.941333pt;}
.yd2{bottom:560.148000pt;}
.y173{bottom:560.340000pt;}
.y1f7{bottom:562.197333pt;}
.y24{bottom:562.350667pt;}
.y10c{bottom:563.926667pt;}
.y8a{bottom:564.325333pt;}
.y1b8{bottom:564.798667pt;}
.yf0{bottom:565.918667pt;}
.y56{bottom:567.137333pt;}
.y25b{bottom:568.509333pt;}
.y225{bottom:573.024000pt;}
.y9{bottom:573.786667pt;}
.y1f6{bottom:575.448000pt;}
.y1f2{bottom:575.758667pt;}
.yd0{bottom:576.678667pt;}
.y172{bottom:577.077333pt;}
.y1b7{bottom:577.418667pt;}
.y23{bottom:578.250667pt;}
.y135{bottom:579.468000pt;}
.y10b{bottom:580.664000pt;}
.y89{bottom:581.062667pt;}
.yef{bottom:582.656000pt;}
.y25a{bottom:583.852000pt;}
.y55{bottom:584.433333pt;}
.y224{bottom:587.636000pt;}
.y1f5{bottom:588.697333pt;}
.y8{bottom:592.685334pt;}
.ycf{bottom:593.416000pt;}
.y171{bottom:593.814667pt;}
.y1b6{bottom:594.022667pt;}
.y134{bottom:596.205333pt;}
.y158{bottom:597.401333pt;}
.y88{bottom:597.800000pt;}
.y259{bottom:599.194667pt;}
.y10a{bottom:601.386667pt;}
.y54{bottom:601.728000pt;}
.y1f4{bottom:601.948000pt;}
.y223{bottom:602.248000pt;}
.yee{bottom:607.364000pt;}
.yce{bottom:610.153333pt;}
.y170{bottom:610.552000pt;}
.y1b5{bottom:610.626667pt;}
.y133{bottom:612.942667pt;}
.y157{bottom:614.138667pt;}
.y87{bottom:614.537333pt;}
.y1f3{bottom:615.198667pt;}
.y222{bottom:616.860000pt;}
.y53{bottom:619.022667pt;}
.y1b4{bottom:623.246667pt;}
.y16f{bottom:627.289333pt;}
.y132{bottom:629.680000pt;}
.y258{bottom:629.878667pt;}
.ycd{bottom:630.876000pt;}
.y86{bottom:631.274667pt;}
.y221{bottom:631.472000pt;}
.yed{bottom:632.070667pt;}
.y1f1{bottom:634.850667pt;}
.y1b3{bottom:635.865333pt;}
.y52{bottom:636.318667pt;}
.y16e{bottom:644.026667pt;}
.y257{bottom:645.221333pt;}
.y7{bottom:645.598667pt;}
.y220{bottom:646.082667pt;}
.y131{bottom:646.417333pt;}
.y156{bottom:647.613333pt;}
.y85{bottom:648.012000pt;}
.y1f0{bottom:648.101333pt;}
.y1b2{bottom:652.470667pt;}
.y51{bottom:653.613333pt;}
.y1ed{bottom:655.037333pt;}
.yec{bottom:656.778667pt;}
.y256{bottom:660.564000pt;}
.y21f{bottom:660.694667pt;}
.ycc{bottom:660.764000pt;}
.y1ef{bottom:661.350667pt;}
.y130{bottom:663.154667pt;}
.y155{bottom:664.350667pt;}
.y84{bottom:664.749333pt;}
.y1b1{bottom:665.089333pt;}
.y4{bottom:668.977329pt;}
.y50{bottom:670.908000pt;}
.y1ee{bottom:674.601333pt;}
.y21e{bottom:675.306667pt;}
.y255{bottom:675.906667pt;}
.ycb{bottom:677.501333pt;}
.y12f{bottom:679.892000pt;}
.y154{bottom:681.088000pt;}
.y83{bottom:681.485333pt;}
.y1b0{bottom:684.110667pt;}
.y4f{bottom:688.204000pt;}
.y21d{bottom:689.918667pt;}
.y254{bottom:691.249333pt;}
.yca{bottom:694.238667pt;}
.y1ec{bottom:694.254667pt;}
.y12e{bottom:696.629333pt;}
.y153{bottom:697.825333pt;}
.y82{bottom:698.222667pt;}
.y1af{bottom:703.132000pt;}
.y21c{bottom:704.530667pt;}
.y4e{bottom:705.498667pt;}
.y253{bottom:706.592000pt;}
.y1eb{bottom:707.504000pt;}
.yc9{bottom:710.976000pt;}
.y12d{bottom:713.366667pt;}
.y152{bottom:714.562667pt;}
.y81{bottom:714.960000pt;}
.y21b{bottom:719.142667pt;}
.y1ea{bottom:720.754667pt;}
.y252{bottom:721.934667pt;}
.y4d{bottom:722.794667pt;}
.yc8{bottom:727.713333pt;}
.y12c{bottom:730.104000pt;}
.y80{bottom:731.697333pt;}
.y1ae{bottom:732.500000pt;}
.y21a{bottom:733.754667pt;}
.y1e9{bottom:734.005333pt;}
.y151{bottom:735.284000pt;}
.y251{bottom:737.277333pt;}
.y4c{bottom:740.089333pt;}
.y1e4{bottom:741.102667pt;}
.yc7{bottom:744.450667pt;}
.y12b{bottom:746.841333pt;}
.y1e8{bottom:747.256000pt;}
.y219{bottom:748.366667pt;}
.y7f{bottom:748.434667pt;}
.y250{bottom:752.620000pt;}
.y1ad{bottom:757.458667pt;}
.y1e7{bottom:760.505333pt;}
.yc6{bottom:761.186667pt;}
.y218{bottom:762.978667pt;}
.y12a{bottom:763.578667pt;}
.y7e{bottom:765.172000pt;}
.y24f{bottom:767.961333pt;}
.y1e6{bottom:773.756000pt;}
.y4b{bottom:773.912000pt;}
.y217{bottom:777.590667pt;}
.yc5{bottom:777.924000pt;}
.y3{bottom:781.661334pt;}
.y7d{bottom:781.909333pt;}
.y24e{bottom:783.304000pt;}
.y129{bottom:784.301333pt;}
.y1e5{bottom:787.006667pt;}
.y1ac{bottom:787.294667pt;}
.y4a{bottom:788.257333pt;}
.y216{bottom:792.201333pt;}
.yc4{bottom:794.661333pt;}
.y7c{bottom:798.646667pt;}
.y128{bottom:802.233333pt;}
.y49{bottom:806.461333pt;}
.y1e3{bottom:806.658667pt;}
.y215{bottom:806.813333pt;}
.y185{bottom:807.232000pt;}
.yc3{bottom:811.398667pt;}
.y24d{bottom:813.989333pt;}
.y7b{bottom:815.384000pt;}
.y48{bottom:816.950667pt;}
.y1e0{bottom:818.836000pt;}
.y1e2{bottom:819.909333pt;}
.y47{bottom:820.808000pt;}
.y214{bottom:821.425333pt;}
.yc2{bottom:828.136000pt;}
.y24c{bottom:829.332000pt;}
.y7a{bottom:832.121333pt;}
.y1e1{bottom:833.160000pt;}
.y46{bottom:835.154667pt;}
.y213{bottom:836.037333pt;}
.y2{bottom:840.112001pt;}
.y24b{bottom:844.674667pt;}
.yc1{bottom:844.873333pt;}
.y79{bottom:848.858667pt;}
.y45{bottom:849.500000pt;}
.y212{bottom:850.649333pt;}
.y1df{bottom:852.812000pt;}
.y1de{bottom:858.364000pt;}
.y1{bottom:859.312000pt;}
.y24a{bottom:860.017333pt;}
.yc0{bottom:861.610667pt;}
.y211{bottom:865.261333pt;}
.y78{bottom:865.596000pt;}
.y249{bottom:875.360000pt;}
.ybf{bottom:878.348000pt;}
.y210{bottom:879.873333pt;}
.y77{bottom:882.333333pt;}
.y1dd{bottom:885.714667pt;}
.y44{bottom:888.737333pt;}
.y248{bottom:890.702667pt;}
.y20f{bottom:894.485333pt;}
.ybe{bottom:895.085333pt;}
.y1dc{bottom:898.965333pt;}
.y76{bottom:899.070667pt;}
.y247{bottom:906.044000pt;}
.y20e{bottom:909.097333pt;}
.ybd{bottom:911.822667pt;}
.y1db{bottom:912.214667pt;}
.y1d8{bottom:912.688000pt;}
.y75{bottom:915.808000pt;}
.y246{bottom:921.386667pt;}
.y43{bottom:921.414667pt;}
.y1da{bottom:925.465333pt;}
.ybc{bottom:928.560000pt;}
.y20d{bottom:930.110667pt;}
.y74{bottom:932.545333pt;}
.y245{bottom:936.729333pt;}
.y1d9{bottom:938.716000pt;}
.ybb{bottom:945.297333pt;}
.y42{bottom:946.520000pt;}
.y73{bottom:949.282667pt;}
.y244{bottom:952.072000pt;}
.y20c{bottom:958.217333pt;}
.y1d7{bottom:958.368000pt;}
.yba{bottom:962.034667pt;}
.y72{bottom:966.020000pt;}
.y243{bottom:967.414667pt;}
.y41{bottom:971.626667pt;}
.y71{bottom:982.757333pt;}
.y279{bottom:982.942667pt;}
.y3f{bottom:1010.281333pt;}
.y70{bottom:1038.548000pt;}
.h1b{height:23.300977pt;}
.h11{height:23.304670pt;}
.h1d{height:26.279297pt;}
.h9{height:27.188522pt;}
.ha{height:27.262909pt;}
.h19{height:28.291958pt;}
.h7{height:28.560000pt;}
.h1e{height:29.081484pt;}
.h1c{height:29.257617pt;}
.h18{height:30.605184pt;}
.h12{height:31.072763pt;}
.h17{height:31.157778pt;}
.hb{height:32.591188pt;}
.h13{height:34.430976pt;}
.h14{height:34.957005pt;}
.h21{height:35.052646pt;}
.h15{height:38.256384pt;}
.h16{height:38.840857pt;}
.he{height:38.947124pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hc{height:45.271688pt;}
.h10{height:48.360277pt;}
.h2{height:48.960000pt;}
.h1f{height:56.310097pt;}
.h20{height:61.867430pt;}
.hf{height:68.861952pt;}
.h5{height:69.360000pt;}
.hd{height:77.447343pt;}
.h4{height:105.826671pt;}
.h1a{height:162.534000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:150.153000pt;}
.w4{width:175.330780pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x22{left:-128.121000pt;}
.x0{left:0.000000pt;}
.x23{left:2.259000pt;}
.x25{left:7.659000pt;}
.x26{left:41.679346pt;}
.x5{left:47.621333pt;}
.x8{left:51.605861pt;}
.x28{left:55.592000pt;}
.x52{left:74.862667pt;}
.x53{left:76.309333pt;}
.x29{left:84.349333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x55{left:96.413333pt;}
.x54{left:97.781333pt;}
.x6{left:109.062667pt;}
.x24{left:149.258824pt;}
.x7{left:154.076000pt;}
.x57{left:155.061333pt;}
.x56{left:156.430667pt;}
.x4{left:180.874667pt;}
.xb{left:220.912000pt;}
.x9{left:221.858667pt;}
.x27{left:224.198910pt;}
.x3d{left:229.853333pt;}
.x46{left:234.848000pt;}
.x1e{left:238.544000pt;}
.xa{left:239.790667pt;}
.x1f{left:241.090667pt;}
.x20{left:243.152000pt;}
.x15{left:245.613333pt;}
.x1c{left:247.824000pt;}
.xe{left:250.204000pt;}
.x33{left:254.916000pt;}
.x1d{left:258.750667pt;}
.x36{left:260.118667pt;}
.x4e{left:262.741333pt;}
.x16{left:265.830667pt;}
.x17{left:267.160000pt;}
.x51{left:268.617333pt;}
.x31{left:269.862667pt;}
.x44{left:271.829333pt;}
.x47{left:273.545333pt;}
.xc{left:275.141333pt;}
.x2d{left:277.498667pt;}
.xd{left:284.088000pt;}
.x13{left:290.686667pt;}
.x1a{left:312.562667pt;}
.x1b{left:323.488000pt;}
.x21{left:347.313333pt;}
.x50{left:364.497333pt;}
.x2c{left:365.678667pt;}
.x4d{left:367.718667pt;}
.x4f{left:370.869333pt;}
.x34{left:387.669333pt;}
.x40{left:390.958667pt;}
.x35{left:394.990667pt;}
.x43{left:399.858667pt;}
.x42{left:401.372000pt;}
.x4b{left:403.290667pt;}
.x3{left:404.408000pt;}
.x3f{left:405.362667pt;}
.x41{left:406.685333pt;}
.x39{left:407.918667pt;}
.x3e{left:409.284000pt;}
.x4a{left:410.182667pt;}
.x45{left:411.998667pt;}
.x4c{left:413.093333pt;}
.x3a{left:414.496000pt;}
.x38{left:416.213333pt;}
.x30{left:417.992000pt;}
.x49{left:419.129333pt;}
.x3c{left:421.484000pt;}
.x3b{left:423.476000pt;}
.x48{left:426.792000pt;}
.x37{left:428.757333pt;}
.x32{left:430.160000pt;}
.x2e{left:433.816000pt;}
.x2f{left:436.472000pt;}
.x2a{left:567.258667pt;}
.x14{left:573.840000pt;}
.x18{left:582.024000pt;}
.x19{left:592.950667pt;}
.xf{left:633.533333pt;}
.x12{left:655.133333pt;}
.x2b{left:683.638667pt;}
.x11{left:713.593333pt;}
.x10{left:715.114667pt;}
}




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