
    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_cb7497f6d4de76fbfe9eebb2.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_48aa114a93c6ee07a1644871.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4a8e5a4c3ba1441f780f9625.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_1d8bdf1b8af7b22dfbad34e5.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_d74efa75994c40bdde7843e6.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_043aa5f6b5ded3e081594549.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6b8cffb8a1339aac1efb7086.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6ffe89edf750cd639d61a199.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_bd6a9b6f12e917fd0040d3a3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006836;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_b79ceccaee2361faa733f26a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_37d3fca4b121e98c505f02ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1a887ca25b0274d99500cff5.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.745117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_10230c3610f5837ab0bc9633.woff2')format("woff");}.fff{font-family:fff;line-height:0.933000;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;}
.m4{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);}
.m1f{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);}
.m17{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);}
.m2{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);}
.m15{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);}
.m19{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);}
.m29{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);}
.m23{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);}
.mc{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);}
.m12{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);}
.m11{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);}
.m5{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);}
.m1d{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);}
.m27{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);}
.m16{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);}
.mf{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);}
.m7{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);}
.mb{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m25{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);}
.md{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);}
.m10{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);}
.m13{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);}
.m9{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);}
.m18{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);}
.m1a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m20{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);}
.m1c{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);}
.ma{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);}
.m21{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);}
.m24{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);}
.me{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m26{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);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.910000px;}
.v2{vertical-align:28.398000px;}
.v5{vertical-align:32.880000px;}
.v3{vertical-align:56.790000px;}
.ls40{letter-spacing:-0.124200px;}
.ls3a{letter-spacing:-0.120240px;}
.ls35{letter-spacing:-0.102204px;}
.ls38{letter-spacing:-0.090180px;}
.ls41{letter-spacing:-0.072144px;}
.ls37{letter-spacing:-0.054108px;}
.ls39{letter-spacing:-0.036072px;}
.ls36{letter-spacing:-0.030060px;}
.ls31{letter-spacing:-0.028728px;}
.ls3b{letter-spacing:-0.018036px;}
.ls34{letter-spacing:-0.012024px;}
.ls42{letter-spacing:-0.010800px;}
.ls33{letter-spacing:-0.006012px;}
.ls32{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.000406px;}
.ls54{letter-spacing:0.000800px;}
.ls59{letter-spacing:0.001155px;}
.ls46{letter-spacing:0.003403px;}
.ls56{letter-spacing:0.003668px;}
.ls57{letter-spacing:0.003846px;}
.ls28{letter-spacing:0.005400px;}
.ls1d{letter-spacing:0.006012px;}
.ls2b{letter-spacing:0.010800px;}
.ls1f{letter-spacing:0.012024px;}
.ls2e{letter-spacing:0.016200px;}
.ls24{letter-spacing:0.018036px;}
.ls2d{letter-spacing:0.027000px;}
.ls23{letter-spacing:0.036072px;}
.ls26{letter-spacing:0.048096px;}
.ls2f{letter-spacing:0.048600px;}
.ls22{letter-spacing:0.054108px;}
.ls29{letter-spacing:0.064800px;}
.ls25{letter-spacing:0.078156px;}
.ls2a{letter-spacing:0.090180px;}
.ls30{letter-spacing:0.120240px;}
.ls3d{letter-spacing:0.126252px;}
.ls3c{letter-spacing:0.132264px;}
.ls21{letter-spacing:0.138276px;}
.ls3f{letter-spacing:0.150300px;}
.ls3e{letter-spacing:0.156312px;}
.ls1c{letter-spacing:0.177156px;}
.ls27{letter-spacing:0.180360px;}
.ls2c{letter-spacing:0.183600px;}
.ls1b{letter-spacing:0.191520px;}
.ls20{letter-spacing:0.192384px;}
.ls1e{letter-spacing:0.456912px;}
.ls47{letter-spacing:0.503764px;}
.ls45{letter-spacing:0.572693px;}
.ls44{letter-spacing:0.578693px;}
.ls48{letter-spacing:10.981800px;}
.ls49{letter-spacing:10.987800px;}
.ls6{letter-spacing:11.954850px;}
.ls17{letter-spacing:11.957700px;}
.ls55{letter-spacing:13.109860px;}
.ls58{letter-spacing:13.789390px;}
.ls13{letter-spacing:14.226593px;}
.ls5{letter-spacing:14.525471px;}
.ls1a{letter-spacing:14.645022px;}
.lsa{letter-spacing:14.704798px;}
.ls4c{letter-spacing:14.723965px;}
.ls11{letter-spacing:14.824349px;}
.ls19{letter-spacing:14.841612px;}
.ls15{letter-spacing:14.853528px;}
.ls12{letter-spacing:14.884124px;}
.ls4{letter-spacing:14.943900px;}
.ls4f{letter-spacing:14.944200px;}
.ls4d{letter-spacing:14.992200px;}
.ls3{letter-spacing:15.003676px;}
.ls9{letter-spacing:15.183002px;}
.ls4b{letter-spacing:15.240249px;}
.ls51{letter-spacing:15.242778px;}
.lsd{letter-spacing:15.302554px;}
.ls4e{letter-spacing:15.663483px;}
.lsf{letter-spacing:17.334924px;}
.lse{letter-spacing:17.394700px;}
.ls14{letter-spacing:17.500435px;}
.ls16{letter-spacing:17.547494px;}
.ls52{letter-spacing:17.872904px;}
.ls2{letter-spacing:18.112007px;}
.ls4a{letter-spacing:18.406318px;}
.ls50{letter-spacing:18.470660px;}
.ls18{letter-spacing:18.629847px;}
.lsb{letter-spacing:18.769538px;}
.ls7{letter-spacing:18.948865px;}
.lsc{letter-spacing:19.666172px;}
.ls43{letter-spacing:19.865141px;}
.ls10{letter-spacing:22.057196px;}
.ls8{letter-spacing:26.181713px;}
.ls1{letter-spacing:28.453654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-22.718660px;}
.ws9d{word-spacing:-15.030000px;}
.ws73{word-spacing:-14.943900px;}
.ws90{word-spacing:-13.449600px;}
.ws9b{word-spacing:-12.161520px;}
.ws9c{word-spacing:-11.970000px;}
.ws2f{word-spacing:-11.955150px;}
.ws5{word-spacing:-10.460700px;}
.wsd3{word-spacing:-3.865716px;}
.wsd2{word-spacing:-3.504996px;}
.ws5e{word-spacing:-3.227882px;}
.wsc9{word-spacing:-3.150288px;}
.ws16{word-spacing:-2.958912px;}
.wsf0{word-spacing:-2.749678px;}
.ws4e{word-spacing:-2.570351px;}
.ws3a{word-spacing:-2.510575px;}
.wscc{word-spacing:-2.500992px;}
.wsd5{word-spacing:-2.450800px;}
.wsf6{word-spacing:-2.331248px;}
.wsfc{word-spacing:-2.151922px;}
.ws50{word-spacing:-2.092146px;}
.wscb{word-spacing:-2.062116px;}
.ws48{word-spacing:-1.972595px;}
.ws8c{word-spacing:-1.912819px;}
.ws40{word-spacing:-1.853044px;}
.ws41{word-spacing:-1.793268px;}
.wsbc{word-spacing:-1.394784px;}
.wsbd{word-spacing:-1.340676px;}
.wsd0{word-spacing:-1.328652px;}
.wsd1{word-spacing:-1.316628px;}
.ws111{word-spacing:-1.291162px;}
.wsed{word-spacing:-1.195512px;}
.ws60{word-spacing:-1.135736px;}
.wsae{word-spacing:-1.124244px;}
.ws124{word-spacing:-1.075968px;}
.ws39{word-spacing:-1.075961px;}
.ws9f{word-spacing:-0.968371px;}
.wsf9{word-spacing:-0.956410px;}
.ws5f{word-spacing:-0.896634px;}
.wsad{word-spacing:-0.895788px;}
.wsac{word-spacing:-0.883764px;}
.ws49{word-spacing:-0.836858px;}
.ws11{word-spacing:-0.806976px;}
.ws2d{word-spacing:-0.777083px;}
.wsf5{word-spacing:-0.753178px;}
.wsf8{word-spacing:-0.657532px;}
.ws137{word-spacing:-0.645581px;}
.ws78{word-spacing:-0.478205px;}
.ws4f{word-spacing:-0.418429px;}
.ws56{word-spacing:-0.358654px;}
.ws133{word-spacing:-0.322790px;}
.ws3f{word-spacing:-0.298878px;}
.wsa1{word-spacing:-0.277704px;}
.wsc1{word-spacing:-0.270540px;}
.wsc2{word-spacing:-0.258516px;}
.ws1d{word-spacing:-0.239102px;}
.wsc8{word-spacing:-0.228456px;}
.ws17{word-spacing:-0.215194px;}
.ws22{word-spacing:-0.179327px;}
.ws103{word-spacing:-0.161395px;}
.ws2a{word-spacing:-0.119551px;}
.ws11a{word-spacing:-0.107597px;}
.wsa2{word-spacing:-0.081396px;}
.ws9e{word-spacing:-0.060120px;}
.ws20{word-spacing:-0.059776px;}
.wsa0{word-spacing:-0.057456px;}
.wsc6{word-spacing:-0.054108px;}
.ws8f{word-spacing:-0.053798px;}
.wsd9{word-spacing:-0.047821px;}
.wse2{word-spacing:-0.041843px;}
.wsc4{word-spacing:-0.036072px;}
.wsc5{word-spacing:-0.030060px;}
.ws11d{word-spacing:-0.014794px;}
.ws13c{word-spacing:-0.014769px;}
.ws131{word-spacing:-0.013315px;}
.ws123{word-spacing:-0.006710px;}
.ws12b{word-spacing:-0.004838px;}
.ws130{word-spacing:-0.004733px;}
.ws10b{word-spacing:-0.003898px;}
.ws99{word-spacing:-0.003790px;}
.ws107{word-spacing:-0.003302px;}
.ws129{word-spacing:-0.001066px;}
.wsef{word-spacing:-0.000900px;}
.ws3{word-spacing:-0.000026px;}
.ws0{word-spacing:0.000000px;}
.ws12e{word-spacing:0.001402px;}
.ws2e{word-spacing:0.003599px;}
.ws19{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.wsa8{word-spacing:0.084168px;}
.wsc3{word-spacing:0.102204px;}
.ws104{word-spacing:0.107597px;}
.wsbf{word-spacing:0.118800px;}
.ws25{word-spacing:0.119551px;}
.wsde{word-spacing:0.125528px;}
.wsa9{word-spacing:0.126252px;}
.wscf{word-spacing:0.135000px;}
.wsc7{word-spacing:0.156600px;}
.ws15{word-spacing:0.161395px;}
.ws2{word-spacing:0.167371px;}
.wsbe{word-spacing:0.178200px;}
.ws21{word-spacing:0.179327px;}
.wsce{word-spacing:0.194400px;}
.ws10{word-spacing:0.215194px;}
.ws34{word-spacing:0.239102px;}
.ws116{word-spacing:0.255915px;}
.ws119{word-spacing:0.268992px;}
.ws3e{word-spacing:0.298878px;}
.ws11e{word-spacing:0.322790px;}
.wsea{word-spacing:0.328071px;}
.ws33{word-spacing:0.358654px;}
.ws27{word-spacing:0.418429px;}
.ws121{word-spacing:0.430387px;}
.wsa6{word-spacing:0.468936px;}
.ws3b{word-spacing:0.478205px;}
.ws13b{word-spacing:0.484186px;}
.wsb4{word-spacing:0.492984px;}
.wse5{word-spacing:0.520273px;}
.wse6{word-spacing:0.521800px;}
.wsf{word-spacing:0.537984px;}
.wsa7{word-spacing:0.559116px;}
.wsb5{word-spacing:0.577152px;}
.ws120{word-spacing:0.591782px;}
.ws68{word-spacing:0.597756px;}
.ws118{word-spacing:0.645581px;}
.wsf7{word-spacing:0.657532px;}
.ws117{word-spacing:0.699379px;}
.wsb8{word-spacing:0.739476px;}
.wsee{word-spacing:0.747463px;}
.ws65{word-spacing:0.777083px;}
.ws32{word-spacing:0.836858px;}
.ws81{word-spacing:0.896634px;}
.ws77{word-spacing:0.956410px;}
.ws57{word-spacing:1.016185px;}
.ws80{word-spacing:1.075961px;}
.ws134{word-spacing:1.075968px;}
.wsaf{word-spacing:1.124244px;}
.ws5c{word-spacing:1.135736px;}
.wsb0{word-spacing:1.142280px;}
.wsb9{word-spacing:1.160316px;}
.wsb3{word-spacing:1.184364px;}
.ws8a{word-spacing:1.195512px;}
.ws83{word-spacing:1.255288px;}
.wsec{word-spacing:1.315063px;}
.ws10e{word-spacing:1.344960px;}
.ws2c{word-spacing:1.374839px;}
.wsb{word-spacing:1.380812px;}
.ws4b{word-spacing:1.434614px;}
.ws139{word-spacing:1.452557px;}
.ws29{word-spacing:1.494390px;}
.ws28{word-spacing:1.554166px;}
.wsab{word-spacing:1.569132px;}
.wsaa{word-spacing:1.593180px;}
.wscd{word-spacing:1.609200px;}
.ws42{word-spacing:1.613941px;}
.ws13f{word-spacing:1.613952px;}
.ws6d{word-spacing:1.673717px;}
.ws10a{word-spacing:1.721549px;}
.ws109{word-spacing:1.775347px;}
.ws47{word-spacing:1.793268px;}
.ws94{word-spacing:1.853044px;}
.ws12f{word-spacing:1.882944px;}
.ws66{word-spacing:1.912819px;}
.wsca{word-spacing:1.965924px;}
.ws23{word-spacing:1.972595px;}
.ws24{word-spacing:2.032370px;}
.ws122{word-spacing:2.098138px;}
.ws51{word-spacing:2.151922px;}
.ws76{word-spacing:2.211697px;}
.ws89{word-spacing:2.331248px;}
.ws69{word-spacing:2.391024px;}
.ws45{word-spacing:2.450800px;}
.ws5d{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws31{word-spacing:2.570351px;}
.wsb6{word-spacing:2.597184px;}
.wsb7{word-spacing:2.627244px;}
.ws93{word-spacing:2.630126px;}
.ws128{word-spacing:2.743718px;}
.ws3c{word-spacing:2.749678px;}
.ws11c{word-spacing:2.797517px;}
.ws2b{word-spacing:2.869229px;}
.wsd{word-spacing:2.869236px;}
.ws112{word-spacing:2.905114px;}
.ws4c{word-spacing:2.929004px;}
.ws101{word-spacing:2.958912px;}
.ws1f{word-spacing:2.988780px;}
.ws1e{word-spacing:3.048556px;}
.ws12d{word-spacing:3.120307px;}
.ws10f{word-spacing:3.216451px;}
.ws12a{word-spacing:3.219734px;}
.ws10d{word-spacing:3.220032px;}
.ws135{word-spacing:3.221750px;}
.ws126{word-spacing:3.222931px;}
.ws132{word-spacing:3.223037px;}
.ws12c{word-spacing:3.223229px;}
.ws108{word-spacing:3.223296px;}
.ws102{word-spacing:3.224822px;}
.ws9a{word-spacing:3.227882px;}
.ws105{word-spacing:3.227904px;}
.ws110{word-spacing:3.281702px;}
.ws138{word-spacing:3.389299px;}
.wse9{word-spacing:3.407209px;}
.wse8{word-spacing:3.466985px;}
.ws140{word-spacing:3.496896px;}
.wsd4{word-spacing:3.526760px;}
.ws11f{word-spacing:3.550694px;}
.ws1c{word-spacing:3.586536px;}
.ws7e{word-spacing:3.646312px;}
.ws127{word-spacing:3.658291px;}
.ws6e{word-spacing:3.706087px;}
.ws125{word-spacing:3.712090px;}
.ws53{word-spacing:3.825638px;}
.ws35{word-spacing:3.885414px;}
.ws106{word-spacing:3.927283px;}
.ws55{word-spacing:3.945190px;}
.ws5a{word-spacing:4.004965px;}
.ws10c{word-spacing:4.142477px;}
.ws59{word-spacing:4.184292px;}
.ws115{word-spacing:4.303872px;}
.ws12{word-spacing:4.357670px;}
.ws30{word-spacing:4.363619px;}
.ws13{word-spacing:4.411469px;}
.ws8b{word-spacing:4.423394px;}
.wse{word-spacing:4.439449px;}
.ws64{word-spacing:4.662497px;}
.ws18{word-spacing:4.680461px;}
.wsfb{word-spacing:4.722272px;}
.ws14{word-spacing:4.734259px;}
.ws58{word-spacing:4.782048px;}
.ws79{word-spacing:4.841824px;}
.ws7f{word-spacing:4.901599px;}
.ws36{word-spacing:4.961375px;}
.ws136{word-spacing:5.057050px;}
.ws6a{word-spacing:5.080926px;}
.ws6c{word-spacing:5.140702px;}
.ws100{word-spacing:5.218445px;}
.ws74{word-spacing:5.260253px;}
.ws13e{word-spacing:5.326042px;}
.ws54{word-spacing:5.439580px;}
.ws9{word-spacing:5.481407px;}
.wseb{word-spacing:5.499355px;}
.ws114{word-spacing:5.541235px;}
.ws8d{word-spacing:5.559131px;}
.wsfe{word-spacing:5.618906px;}
.ws63{word-spacing:5.858009px;}
.wsb1{word-spacing:5.861700px;}
.wsb2{word-spacing:5.891760px;}
.ws11b{word-spacing:5.971622px;}
.wsa5{word-spacing:6.210396px;}
.ws37{word-spacing:6.216662px;}
.wsa4{word-spacing:6.222420px;}
.ws7a{word-spacing:6.336214px;}
.wsff{word-spacing:6.395989px;}
.ws62{word-spacing:6.455765px;}
.ws61{word-spacing:6.515540px;}
.ws67{word-spacing:6.694867px;}
.ws13d{word-spacing:6.724800px;}
.ws46{word-spacing:6.874194px;}
.ws7d{word-spacing:6.933970px;}
.ws38{word-spacing:6.993745px;}
.ws70{word-spacing:7.232848px;}
.ws3d{word-spacing:7.352399px;}
.wsfd{word-spacing:7.471950px;}
.ws75{word-spacing:7.591501px;}
.ws92{word-spacing:7.651277px;}
.ws52{word-spacing:7.711052px;}
.wsfa{word-spacing:7.770828px;}
.ws6f{word-spacing:7.830604px;}
.ws44{word-spacing:7.890379px;}
.ws43{word-spacing:7.950155px;}
.ws82{word-spacing:8.368584px;}
.ws1b{word-spacing:8.822938px;}
.ws113{word-spacing:9.199526px;}
.ws7{word-spacing:9.833058px;}
.ws13a{word-spacing:10.006502px;}
.wsbb{word-spacing:10.893744px;}
.wsba{word-spacing:10.917792px;}
.wsa3{word-spacing:11.620476px;}
.ws8{word-spacing:11.841512px;}
.ws71{word-spacing:13.821325px;}
.ws4{word-spacing:15.481836px;}
.ws5b{word-spacing:16.139412px;}
.ws7c{word-spacing:18.321981px;}
.ws4d{word-spacing:18.525325px;}
.ws7b{word-spacing:18.927277px;}
.ws6b{word-spacing:19.546621px;}
.ws1a{word-spacing:21.076608px;}
.ws6{word-spacing:22.339429px;}
.wsa{word-spacing:22.720640px;}
.ws72{word-spacing:26.837208px;}
.ws4a{word-spacing:55.411981px;}
.wsd8{word-spacing:144.270206px;}
.ws96{word-spacing:162.727738px;}
.wsda{word-spacing:170.241336px;}
.ws86{word-spacing:179.823958px;}
.wse3{word-spacing:199.631999px;}
.ws88{word-spacing:200.750879px;}
.ws85{word-spacing:223.991690px;}
.ws87{word-spacing:231.499525px;}
.wse1{word-spacing:235.396943px;}
.wsd7{word-spacing:249.348750px;}
.wsdd{word-spacing:253.611470px;}
.ws97{word-spacing:255.118957px;}
.ws95{word-spacing:268.248490px;}
.wsdc{word-spacing:289.636500px;}
.ws84{word-spacing:309.208000px;}
.wse7{word-spacing:309.501000px;}
.wsd6{word-spacing:313.831730px;}
.ws98{word-spacing:317.120197px;}
.wsdb{word-spacing:328.957907px;}
.wse4{word-spacing:343.905973px;}
.wse0{word-spacing:353.864560px;}
.wsdf{word-spacing:384.255000px;}
.wsc0{word-spacing:402.737868px;}
.wsf1{word-spacing:502.266662px;}
.wsf3{word-spacing:649.249450px;}
.wsf2{word-spacing:651.283430px;}
.wsf4{word-spacing:659.622182px;}
.ws8e{word-spacing:900.214762px;}
.ws91{word-spacing:1027.872230px;}
._38{margin-left:-402.235290px;}
._6f{margin-left:-20.267145px;}
._70{margin-left:-18.751666px;}
._5{margin-left:-11.943245px;}
._11{margin-left:-7.651415px;}
._6{margin-left:-6.635092px;}
._19{margin-left:-5.618906px;}
._0{margin-left:-4.602708px;}
._1a{margin-left:-3.287658px;}
._3{margin-left:-1.464498px;}
._36{width:1.254456px;}
._6d{width:2.594264px;}
._6e{width:3.903401px;}
._b{width:9.468518px;}
._d{width:11.692141px;}
._1{width:12.971268px;}
._12{width:14.824386px;}
._c{width:16.312856px;}
._8{width:17.335026px;}
._6c{width:18.351316px;}
._a{width:19.367424px;}
._15{width:20.503031px;}
._17{width:22.356061px;}
._10{width:23.820572px;}
._2{width:25.314894px;}
._e{width:26.845402px;}
._f{width:28.632512px;}
._9{width:29.840137px;}
._21{width:31.471849px;}
._4{width:33.355008px;}
._20{width:35.058385px;}
._16{width:36.971204px;}
._1d{width:38.764472px;}
._1b{width:39.930101px;}
._1f{width:41.334970px;}
._1e{width:42.679778px;}
._71{width:47.988568px;}
._7{width:69.363692px;}
._18{width:71.611169px;}
._49{width:83.066486px;}
._1c{width:84.223820px;}
._43{width:141.610230px;}
._2f{width:154.724356px;}
._52{width:156.073644px;}
._22{width:159.852585px;}
._2e{width:172.728007px;}
._59{width:179.711309px;}
._5f{width:181.806966px;}
._46{width:183.094142px;}
._4a{width:189.748314px;}
._4e{width:194.199457px;}
._2b{width:203.285371px;}
._5c{width:220.595242px;}
._32{width:222.891817px;}
._35{width:229.491059px;}
._58{width:232.256335px;}
._34{width:241.780954px;}
._26{width:243.406854px;}
._40{width:251.397792px;}
._4b{width:257.160264px;}
._23{width:258.482273px;}
._30{width:260.287526px;}
._3b{width:261.461880px;}
._4f{width:265.554202px;}
._5b{width:268.003134px;}
._53{width:278.045406px;}
._2c{width:279.320125px;}
._25{width:285.297700px;}
._27{width:286.636676px;}
._47{width:289.904652px;}
._44{width:293.181192px;}
._55{width:294.647506px;}
._4c{width:297.778876px;}
._3d{width:300.359520px;}
._3c{width:303.599988px;}
._5a{width:311.184904px;}
._2d{width:316.524551px;}
._50{width:320.971867px;}
._29{width:327.092904px;}
._28{width:333.118300px;}
._5e{width:336.918226px;}
._42{width:338.966154px;}
._51{width:340.913057px;}
._4d{width:343.543190px;}
._33{width:347.894865px;}
._5d{width:351.270306px;}
._54{width:359.471495px;}
._64{width:360.780576px;}
._24{width:364.297331px;}
._2a{width:370.322726px;}
._6a{width:397.390796px;}
._56{width:411.649466px;}
._31{width:427.611805px;}
._57{width:429.139757px;}
._61{width:435.390451px;}
._3f{width:439.059942px;}
._39{width:495.554706px;}
._69{width:514.474099px;}
._62{width:521.898278px;}
._3a{width:549.574956px;}
._65{width:556.544448px;}
._67{width:573.437146px;}
._41{width:588.990780px;}
._48{width:596.319408px;}
._45{width:611.986680px;}
._66{width:621.479117px;}
._3e{width:635.631876px;}
._63{width:664.679232px;}
._68{width:673.071782px;}
._6b{width:724.664448px;}
._13{width:881.284037px;}
._37{width:2105.489484px;}
._60{width:2512.803000px;}
._14{width:2536.713000px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(81,125,151);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fs10{font-size:43.600200px;}
.fs9{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsf{font-size:49.829400px;}
.fsa{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs7{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsd{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:90.874640px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:107.596800px;}
.y17b{bottom:-172.900050px;}
.y19d{bottom:-91.359492px;}
.y19c{bottom:-72.100050px;}
.y19b{bottom:-35.379600px;}
.y19a{bottom:-17.920050px;}
.y0{bottom:0.000000px;}
.y199{bottom:4.490310px;}
.y38{bottom:9.233944px;}
.y37{bottom:26.903761px;}
.y65{bottom:31.890000px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y1fa{bottom:103.621500px;}
.y35{bottom:104.646000px;}
.y9a{bottom:108.388500px;}
.y23f{bottom:108.658500px;}
.y1d9{bottom:111.405000px;}
.y64{bottom:111.928500px;}
.ye4{bottom:115.113000px;}
.y1a3{bottom:115.399500px;}
.y276{bottom:116.458500px;}
.y217{bottom:119.148000px;}
.y1f9{bottom:122.449500px;}
.y34{bottom:122.535000px;}
.y108{bottom:122.734500px;}
.y23e{bottom:125.917500px;}
.y99{bottom:127.218000px;}
.y1d8{bottom:130.234500px;}
.y63{bottom:130.758000px;}
.y275{bottom:133.719000px;}
.ye3{bottom:133.942500px;}
.y1a2{bottom:134.229000px;}
.y216{bottom:137.977500px;}
.y21{bottom:139.264499px;}
.y33{bottom:140.422500px;}
.y1f8{bottom:141.279000px;}
.y107{bottom:141.564000px;}
.y23d{bottom:143.178000px;}
.y98{bottom:146.047500px;}
.y1d7{bottom:149.064000px;}
.y62{bottom:149.587500px;}
.y274{bottom:150.978000px;}
.ye2{bottom:152.772000px;}
.y1a1{bottom:153.058500px;}
.y12f{bottom:154.864500px;}
.y215{bottom:156.807000px;}
.y32{bottom:158.310000px;}
.y23c{bottom:160.438500px;}
.y1f7{bottom:164.592000px;}
.y97{bottom:164.877000px;}
.y1d6{bottom:167.893500px;}
.y273{bottom:168.238500px;}
.y61{bottom:168.417000px;}
.ye1{bottom:171.601500px;}
.y1a0{bottom:171.888000px;}
.y12e{bottom:173.694000px;}
.y214{bottom:175.636500px;}
.y31{bottom:176.199000px;}
.yb8{bottom:177.430500px;}
.y23b{bottom:177.699000px;}
.y106{bottom:178.326000px;}
.y96{bottom:183.706500px;}
.y272{bottom:185.499000px;}
.y1d5{bottom:186.723000px;}
.y60{bottom:187.246500px;}
.ye0{bottom:190.431000px;}
.y12d{bottom:192.523500px;}
.y30{bottom:194.086500px;}
.y213{bottom:194.466000px;}
.y23a{bottom:194.959500px;}
.y18{bottom:196.933500px;}
.y1f6{bottom:198.216000px;}
.y95{bottom:202.536000px;}
.y271{bottom:202.759500px;}
.y19f{bottom:205.453500px;}
.y1d4{bottom:205.552500px;}
.y5f{bottom:206.076000px;}
.ydf{bottom:209.260500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y2f{bottom:211.974000px;}
.y239{bottom:212.220000px;}
.y212{bottom:213.295500px;}
.yb7{bottom:214.192500px;}
.y105{bottom:215.088000px;}
.y12c{bottom:215.836500px;}
.y1f5{bottom:217.045500px;}
.y270{bottom:220.020000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1d3{bottom:224.382000px;}
.y19e{bottom:224.686500px;}
.y5e{bottom:224.905500px;}
.y94{bottom:225.849000px;}
.yde{bottom:228.090000px;}
.y238{bottom:229.480500px;}
.y2e{bottom:229.863000px;}
.y211{bottom:232.125000px;}
.yb6{bottom:233.022000px;}
.y104{bottom:233.917500px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y15c{bottom:235.036500px;}
.y1f4{bottom:235.875000px;}
.y26f{bottom:237.280500px;}
.y5d{bottom:243.735000px;}
.y237{bottom:246.741000px;}
.ydd{bottom:246.919500px;}
.y178{bottom:247.116000px;}
.y12b{bottom:249.460500px;}
.y210{bottom:250.954500px;}
.yb5{bottom:251.851500px;}
.y103{bottom:252.747000px;}
.y15b{bottom:253.866000px;}
.y26e{bottom:254.541000px;}
.y1f3{bottom:254.704500px;}
.y93{bottom:259.473000px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y1d2{bottom:261.400500px;}
.y5c{bottom:262.564500px;}
.y236{bottom:264.000000px;}
.ydc{bottom:265.749000px;}
.y12a{bottom:268.290000px;}
.y20f{bottom:269.784000px;}
.yb4{bottom:270.681000px;}
.y102{bottom:271.576500px;}
.y26d{bottom:271.801500px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y15a{bottom:272.695500px;}
.y1f2{bottom:273.534000px;}
.y92{bottom:278.301000px;}
.y235{bottom:281.260500px;}
.y5b{bottom:281.394000px;}
.y1d0{bottom:281.889000px;}
.ydb{bottom:284.578500px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y129{bottom:287.119500px;}
.y20e{bottom:288.613500px;}
.y26c{bottom:289.062000px;}
.yb3{bottom:289.509000px;}
.y101{bottom:290.406000px;}
.y159{bottom:291.525000px;}
.y1cf{bottom:293.844000px;}
.y91{bottom:297.130500px;}
.y234{bottom:298.521000px;}
.y1d1{bottom:299.821500px;}
.y2d{bottom:299.892000px;}
.y5a{bottom:300.223500px;}
.y1ce{bottom:305.799000px;}
.y128{bottom:305.949000px;}
.y26b{bottom:306.321000px;}
.y20d{bottom:307.443000px;}
.yda{bottom:307.891500px;}
.yb2{bottom:308.338500px;}
.y1f1{bottom:309.138000px;}
.y100{bottom:309.235500px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y158{bottom:310.354500px;}
.y90{bottom:315.960000px;}
.y1cd{bottom:317.754000px;}
.y2c{bottom:317.779500px;}
.y59{bottom:319.053000px;}
.y233{bottom:320.265000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y26a{bottom:323.581500px;}
.y20c{bottom:326.272500px;}
.yb1{bottom:327.168000px;}
.y1f0{bottom:327.982500px;}
.yff{bottom:328.065000px;}
.y157{bottom:329.184000px;}
.y127{bottom:329.260500px;}
.y198{bottom:332.990499px;}
.y8f{bottom:334.789500px;}
.y2b{bottom:335.667000px;}
.y1cc{bottom:336.912000px;}
.y58{bottom:337.882500px;}
.y269{bottom:340.842000px;}
.yd9{bottom:341.515500px;}
.y1ef{bottom:344.421000px;}
.y20b{bottom:345.102000px;}
.yb0{bottom:345.997500px;}
.yfe{bottom:346.894500px;}
.y156{bottom:348.013500px;}
.yf{bottom:348.133500px;}
.y1cb{bottom:348.867000px;}
.y197{bottom:352.249941px;}
.y2a{bottom:353.554500px;}
.y8e{bottom:353.619000px;}
.y232{bottom:353.889000px;}
.y57{bottom:356.712000px;}
.y268{bottom:358.102500px;}
.yd8{bottom:360.345000px;}
.y1ca{bottom:360.822000px;}
.y1ee{bottom:360.859500px;}
.y126{bottom:362.884500px;}
.yaf{bottom:364.827000px;}
.yfd{bottom:365.724000px;}
.y155{bottom:366.841500px;}
.y20a{bottom:368.413500px;}
.y196{bottom:371.419203px;}
.y8d{bottom:372.448500px;}
.y267{bottom:375.363000px;}
.y56{bottom:375.541500px;}
.y1ed{bottom:377.298000px;}
.yd7{bottom:379.174500px;}
.y1c9{bottom:379.980000px;}
.y29{bottom:380.409000px;}
.y231{bottom:380.430000px;}
.y125{bottom:381.714000px;}
.yae{bottom:383.656500px;}
.yfc{bottom:384.553500px;}
.y154{bottom:385.671000px;}
.ye{bottom:386.785499px;}
.y8c{bottom:391.278000px;}
.y1c8{bottom:391.935000px;}
.y266{bottom:392.623500px;}
.y1ec{bottom:393.735000px;}
.y55{bottom:394.371000px;}
.y195{bottom:395.089950px;}
.yd6{bottom:398.002500px;}
.y230{bottom:398.004000px;}
.y28{bottom:398.298000px;}
.y124{bottom:400.543500px;}
.y209{bottom:402.037500px;}
.yad{bottom:402.486000px;}
.yfb{bottom:403.383000px;}
.y1c7{bottom:403.890000px;}
.yd{bottom:408.044999px;}
.y153{bottom:408.984000px;}
.y265{bottom:409.884000px;}
.y8b{bottom:410.107500px;}
.y1eb{bottom:410.173500px;}
.y54{bottom:413.200500px;}
.y22f{bottom:415.578000px;}
.y27{bottom:416.185500px;}
.yd5{bottom:416.832000px;}
.y123{bottom:419.373000px;}
.y208{bottom:420.867000px;}
.yac{bottom:421.315500px;}
.yfa{bottom:422.212500px;}
.y1c6{bottom:423.048000px;}
.y1ea{bottom:426.612000px;}
.y264{bottom:427.144500px;}
.y8a{bottom:428.937000px;}
.y194{bottom:431.989950px;}
.y53{bottom:432.030000px;}
.y26{bottom:434.073000px;}
.y1c5{bottom:435.003000px;}
.yd4{bottom:435.661500px;}
.y122{bottom:438.202500px;}
.y207{bottom:439.696500px;}
.yab{bottom:440.145000px;}
.yf9{bottom:441.042000px;}
.y22e{bottom:442.117500px;}
.y152{bottom:442.864500px;}
.y263{bottom:444.403500px;}
.y89{bottom:447.766500px;}
.y1e9{bottom:450.253500px;}
.y52{bottom:450.858000px;}
.y193{bottom:451.430193px;}
.y25{bottom:451.962000px;}
.yd3{bottom:454.491000px;}
.y121{bottom:457.032000px;}
.y1e8{bottom:458.472000px;}
.y206{bottom:458.526000px;}
.yaa{bottom:458.974500px;}
.yf8{bottom:459.871500px;}
.y262{bottom:461.664000px;}
.y151{bottom:461.709000px;}
.y1c4{bottom:466.473000px;}
.y88{bottom:466.596000px;}
.y22d{bottom:468.658500px;}
.y51{bottom:469.687500px;}
.y24{bottom:469.849500px;}
.y192{bottom:471.680112px;}
.yd2{bottom:473.320500px;}
.y120{bottom:475.861500px;}
.y205{bottom:477.355500px;}
.ya9{bottom:477.804000px;}
.yf7{bottom:478.701000px;}
.y261{bottom:478.924500px;}
.y150{bottom:485.349000px;}
.y87{bottom:485.425500px;}
.y23{bottom:487.737000px;}
.y50{bottom:488.517000px;}
.y191{bottom:491.930031px;}
.yd1{bottom:492.150000px;}
.y11f{bottom:494.691000px;}
.y1c3{bottom:495.136500px;}
.y22c{bottom:495.199500px;}
.y204{bottom:496.185000px;}
.ya8{bottom:496.633500px;}
.yf6{bottom:497.530500px;}
.y1e7{bottom:498.310500px;}
.yc{bottom:502.864502px;}
.y86{bottom:504.255000px;}
.y22{bottom:505.626000px;}
.y4f{bottom:507.346500px;}
.yd0{bottom:510.979500px;}
.y190{bottom:512.179950px;}
.y260{bottom:513.445500px;}
.y11e{bottom:513.520500px;}
.y203{bottom:515.014500px;}
.ya7{bottom:515.463000px;}
.y1c1{bottom:515.623500px;}
.yf5{bottom:516.360000px;}
.y14f{bottom:516.969000px;}
.yb{bottom:520.864502px;}
.y1c2{bottom:521.601000px;}
.y22b{bottom:521.739000px;}
.y85{bottom:523.084500px;}
.y1e6{bottom:525.034500px;}
.y1c0{bottom:527.578500px;}
.ycf{bottom:529.809000px;}
.y4e{bottom:530.659500px;}
.y25f{bottom:530.706000px;}
.y11d{bottom:532.350000px;}
.y18f{bottom:532.429950px;}
.y202{bottom:533.844000px;}
.ya6{bottom:534.292500px;}
.yf4{bottom:535.189500px;}
.ya{bottom:538.864499px;}
.y22a{bottom:539.314500px;}
.y1e5{bottom:543.864000px;}
.y84{bottom:546.397500px;}
.y1bf{bottom:546.736500px;}
.y25e{bottom:547.966500px;}
.yce{bottom:548.638500px;}
.y14e{bottom:550.180500px;}
.y201{bottom:552.673500px;}
.ya5{bottom:553.122000px;}
.y18e{bottom:553.399329px;}
.yf3{bottom:554.019000px;}
.y11c{bottom:555.663000px;}
.y9{bottom:556.864499px;}
.y229{bottom:556.888500px;}
.y1e4{bottom:562.693500px;}
.y18c{bottom:563.479950px;}
.y25d{bottom:565.227000px;}
.y83{bottom:566.571000px;}
.ycd{bottom:567.468000px;}
.y14d{bottom:569.010000px;}
.y200{bottom:571.503000px;}
.ya4{bottom:571.951500px;}
.yf2{bottom:572.848500px;}
.y18d{bottom:573.649248px;}
.y228{bottom:574.462500px;}
.y1be{bottom:578.206500px;}
.y177{bottom:578.820000px;}
.y1e3{bottom:581.523000px;}
.y25c{bottom:582.487500px;}
.ycc{bottom:586.297500px;}
.y14c{bottom:587.839500px;}
.y11b{bottom:589.287000px;}
.y1ff{bottom:590.332500px;}
.ya3{bottom:590.781000px;}
.yf1{bottom:591.678000px;}
.y227{bottom:592.036500px;}
.y176{bottom:597.648000px;}
.y25b{bottom:599.746500px;}
.y82{bottom:600.195000px;}
.y1e2{bottom:600.352500px;}
.y18b{bottom:603.709950px;}
.y4d{bottom:605.809500px;}
.y14b{bottom:606.669000px;}
.y1bd{bottom:606.870000px;}
.y11a{bottom:608.116500px;}
.y1fe{bottom:609.162000px;}
.ycb{bottom:609.610500px;}
.yf0{bottom:610.507500px;}
.ya2{bottom:614.094000px;}
.y175{bottom:616.477500px;}
.y25a{bottom:617.007000px;}
.y81{bottom:619.024500px;}
.y1e1{bottom:619.182000px;}
.y4c{bottom:625.267500px;}
.y119{bottom:626.946000px;}
.y226{bottom:627.543000px;}
.y1fd{bottom:627.991500px;}
.y1bb{bottom:628.030500px;}
.yef{bottom:629.337000px;}
.y14a{bottom:629.982000px;}
.y259{bottom:634.267500px;}
.y1bc{bottom:635.128500px;}
.y80{bottom:637.854000px;}
.y1e0{bottom:638.011500px;}
.y18a{bottom:639.445836px;}
.y174{bottom:639.790500px;}
.y1ba{bottom:642.228000px;}
.yca{bottom:643.234500px;}
.y8{bottom:645.510000px;}
.y225{bottom:646.372500px;}
.y1fc{bottom:646.821000px;}
.ya1{bottom:647.718000px;}
.yee{bottom:648.166500px;}
.y258{bottom:651.528000px;}
.y118{bottom:653.247000px;}
.y1b9{bottom:656.424000px;}
.y7f{bottom:656.683500px;}
.y189{bottom:658.616601px;}
.y4b{bottom:662.656500px;}
.y149{bottom:663.606000px;}
.y224{bottom:665.202000px;}
.y1fb{bottom:665.650500px;}
.y7{bottom:666.771000px;}
.yed{bottom:666.996000px;}
.y257{bottom:668.788500px;}
.y117{bottom:672.076500px;}
.y173{bottom:673.414500px;}
.y1df{bottom:673.615500px;}
.y1b7{bottom:677.823000px;}
.y188{bottom:677.876043px;}
.y7e{bottom:679.996500px;}
.y4a{bottom:682.113000px;}
.y148{bottom:682.435500px;}
.y223{bottom:684.031500px;}
.ya0{bottom:684.480000px;}
.yec{bottom:685.825500px;}
.y256{bottom:686.049000px;}
.y116{bottom:690.906000px;}
.y1b6{bottom:692.020500px;}
.y172{bottom:692.244000px;}
.y1de{bottom:692.458500px;}
.y187{bottom:697.045305px;}
.y7d{bottom:698.826000px;}
.y1b8{bottom:699.118500px;}
.y147{bottom:701.265000px;}
.y49{bottom:701.571000px;}
.y222{bottom:702.861000px;}
.y9f{bottom:703.309500px;}
.yeb{bottom:704.653500px;}
.y1b5{bottom:706.216500px;}
.y1dd{bottom:708.897000px;}
.y115{bottom:709.735500px;}
.y171{bottom:711.073500px;}
.y186{bottom:716.304747px;}
.y7c{bottom:717.655500px;}
.y146{bottom:720.093000px;}
.y1b4{bottom:720.414000px;}
.y255{bottom:720.570000px;}
.y48{bottom:721.027500px;}
.y221{bottom:721.690500px;}
.y9e{bottom:722.139000px;}
.yea{bottom:723.483000px;}
.y1dc{bottom:725.335500px;}
.y6{bottom:726.298500px;}
.y114{bottom:728.565000px;}
.y170{bottom:729.903000px;}
.y185{bottom:735.564189px;}
.y7b{bottom:736.485000px;}
.y254{bottom:737.829000px;}
.y145{bottom:738.922500px;}
.y47{bottom:740.485500px;}
.y220{bottom:740.520000px;}
.y9d{bottom:740.968500px;}
.y1b3{bottom:741.813000px;}
.ye9{bottom:742.312500px;}
.y113{bottom:747.394500px;}
.y16f{bottom:748.732500px;}
.y1db{bottom:748.977000px;}
.y3{bottom:752.599495px;}
.y184{bottom:754.733451px;}
.y253{bottom:755.089500px;}
.y7a{bottom:755.314500px;}
.y1b2{bottom:756.009000px;}
.y144{bottom:757.752000px;}
.y21f{bottom:759.349500px;}
.y9c{bottom:759.798000px;}
.y46{bottom:759.942000px;}
.ye8{bottom:765.625500px;}
.y112{bottom:766.224000px;}
.y16e{bottom:767.562000px;}
.y1b1{bottom:770.206500px;}
.y252{bottom:772.350000px;}
.y183{bottom:773.992893px;}
.y79{bottom:774.144000px;}
.y143{bottom:776.581500px;}
.y21e{bottom:778.179000px;}
.y9b{bottom:778.627500px;}
.y45{bottom:779.398500px;}
.y1da{bottom:780.595500px;}
.y111{bottom:785.053500px;}
.y16d{bottom:786.391500px;}
.y251{bottom:789.610500px;}
.y1b0{bottom:791.605500px;}
.yc9{bottom:792.973500px;}
.y182{bottom:793.252335px;}
.y142{bottom:795.411000px;}
.y21d{bottom:797.008500px;}
.y78{bottom:797.457000px;}
.y44{bottom:798.856500px;}
.ye7{bottom:799.249500px;}
.y279{bottom:802.312500px;}
.y110{bottom:803.883000px;}
.y16c{bottom:805.221000px;}
.y1af{bottom:805.801500px;}
.y250{bottom:806.871000px;}
.yc8{bottom:811.803000px;}
.y181{bottom:812.421597px;}
.y141{bottom:814.240500px;}
.y21c{bottom:815.838000px;}
.y77{bottom:816.286500px;}
.ye6{bottom:818.079000px;}
.y43{bottom:818.313000px;}
.y278{bottom:819.573000px;}
.y10f{bottom:822.712500px;}
.y16b{bottom:824.050500px;}
.y24f{bottom:824.131500px;}
.y1ae{bottom:827.200500px;}
.yc7{bottom:830.632500px;}
.y180{bottom:831.681039px;}
.y140{bottom:833.070000px;}
.y21b{bottom:834.667500px;}
.y76{bottom:835.114500px;}
.y277{bottom:836.833500px;}
.y42{bottom:837.769500px;}
.y24e{bottom:841.392000px;}
.y1ad{bottom:841.398000px;}
.y10e{bottom:841.540500px;}
.y16a{bottom:842.880000px;}
.yc6{bottom:849.462000px;}
.y17f{bottom:850.850301px;}
.y13f{bottom:851.899500px;}
.y21a{bottom:853.497000px;}
.y75{bottom:853.944000px;}
.ye5{bottom:854.841000px;}
.y1ac{bottom:855.594000px;}
.y41{bottom:857.227500px;}
.y24d{bottom:858.652500px;}
.y10d{bottom:860.370000px;}
.y169{bottom:861.709500px;}
.yc5{bottom:868.291500px;}
.y17e{bottom:870.109743px;}
.y13e{bottom:870.729000px;}
.y219{bottom:872.326500px;}
.y74{bottom:872.773500px;}
.y24c{bottom:875.913000px;}
.y40{bottom:876.684000px;}
.y1ab{bottom:876.993000px;}
.y10c{bottom:879.199500px;}
.y2{bottom:879.369000px;}
.y168{bottom:880.539000px;}
.yc4{bottom:887.121000px;}
.y17d{bottom:889.369185px;}
.y13d{bottom:889.558500px;}
.y1aa{bottom:891.190500px;}
.y73{bottom:891.603000px;}
.y24b{bottom:893.172000px;}
.y218{bottom:895.638000px;}
.y10b{bottom:898.029000px;}
.y167{bottom:899.368500px;}
.y1a9{bottom:905.386500px;}
.yc3{bottom:905.950500px;}
.y13c{bottom:908.388000px;}
.y17c{bottom:908.539950px;}
.y72{bottom:910.432500px;}
.y3f{bottom:915.270000px;}
.y166{bottom:918.198000px;}
.y10a{bottom:924.331500px;}
.yc2{bottom:924.778500px;}
.y1a8{bottom:926.787000px;}
.y13b{bottom:927.217500px;}
.y24a{bottom:927.693000px;}
.y71{bottom:929.262000px;}
.y3e{bottom:931.410000px;}
.y1a7{bottom:940.983000px;}
.yc1{bottom:943.608000px;}
.y249{bottom:944.953500px;}
.y3d{bottom:947.548500px;}
.y109{bottom:947.643000px;}
.y70{bottom:948.091500px;}
.y165{bottom:958.258500px;}
.y248{bottom:962.214000px;}
.y1a6{bottom:962.382000px;}
.yc0{bottom:962.437500px;}
.y17a{bottom:963.260085px;}
.y13a{bottom:964.237500px;}
.y1{bottom:966.726000px;}
.y6f{bottom:966.921000px;}
.y179{bottom:972.889950px;}
.y1a5{bottom:976.579500px;}
.y164{bottom:979.419000px;}
.y247{bottom:979.474500px;}
.ybf{bottom:981.267000px;}
.y139{bottom:982.408500px;}
.y6e{bottom:985.750500px;}
.y163{bottom:993.616500px;}
.y3c{bottom:996.565500px;}
.y138{bottom:996.604500px;}
.y246{bottom:996.735000px;}
.ybe{bottom:1000.096500px;}
.y6d{bottom:1004.580000px;}
.y162{bottom:1007.812500px;}
.y1a4{bottom:1009.618500px;}
.y137{bottom:1010.802000px;}
.y245{bottom:1013.995500px;}
.ybd{bottom:1018.926000px;}
.y161{bottom:1022.010000px;}
.y6c{bottom:1023.409500px;}
.y136{bottom:1024.998000px;}
.y244{bottom:1031.254500px;}
.y160{bottom:1036.206000px;}
.y3b{bottom:1036.485000px;}
.ybc{bottom:1037.755500px;}
.y135{bottom:1039.195500px;}
.y6b{bottom:1042.239000px;}
.y243{bottom:1048.515000px;}
.y15f{bottom:1050.403500px;}
.y134{bottom:1053.391500px;}
.ybb{bottom:1056.585000px;}
.y6a{bottom:1061.068500px;}
.y3a{bottom:1064.728500px;}
.y242{bottom:1065.775500px;}
.y15e{bottom:1071.802500px;}
.y132{bottom:1074.790500px;}
.yba{bottom:1075.414500px;}
.y15d{bottom:1078.900500px;}
.y69{bottom:1079.898000px;}
.y131{bottom:1081.888500px;}
.y241{bottom:1083.036000px;}
.y133{bottom:1088.988000px;}
.y39{bottom:1092.972000px;}
.yb9{bottom:1094.244000px;}
.y68{bottom:1098.727500px;}
.y240{bottom:1100.296500px;}
.y67{bottom:1117.557000px;}
.y130{bottom:1119.037500px;}
.y36{bottom:1136.460000px;}
.y66{bottom:1177.662000px;}
.h22{height:30.252344px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h14{height:31.828453px;}
.h7{height:32.130000px;}
.h16{height:34.574294px;}
.h10{height:34.813397px;}
.h13{height:35.100320px;}
.h18{height:38.896243px;}
.h11{height:39.165235px;}
.h27{height:39.488026px;}
.hf{height:43.217759px;}
.h20{height:43.269961px;}
.h12{height:43.516637px;}
.hd{height:43.875290px;}
.h1f{height:44.268047px;}
.h1c{height:44.279648px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h28{height:49.117939px;}
.h1e{height:49.939453px;}
.hb{height:50.930649px;}
.h23{height:54.162344px;}
.h2{height:55.080000px;}
.h1d{height:55.599258px;}
.hc{height:61.613006px;}
.h19{height:62.966294px;}
.h15{height:62.972294px;}
.h17{height:63.205397px;}
.h25{height:71.776243px;}
.h26{height:72.039235px;}
.h24{height:72.045235px;}
.he{height:77.792486px;}
.h5{height:78.030000px;}
.h1a{height:91.358294px;}
.h21{height:91.364294px;}
.h4{height:119.055004px;}
.h1b{height:317.029500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:197.527766px;}
.w5{width:539.956500px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x24{left:-192.453000px;}
.x30{left:-173.823000px;}
.x32{left:-125.763547px;}
.x34{left:-123.783384px;}
.x33{left:-119.913202px;}
.x31{left:-114.153000px;}
.x27{left:-89.133000px;}
.x0{left:0.000000px;}
.x26{left:3.117106px;}
.x25{left:34.977000px;}
.x7{left:52.525500px;}
.x5{left:53.574000px;}
.x6{left:58.054042px;}
.x42{left:62.236500px;}
.x21{left:66.024000px;}
.x23{left:67.458000px;}
.x3e{left:68.530500px;}
.x22{left:70.530000px;}
.x1f{left:72.424500px;}
.x3c{left:73.881000px;}
.x20{left:75.157500px;}
.x1e{left:76.347000px;}
.x3b{left:83.953500px;}
.x53{left:85.848000px;}
.x41{left:91.443000px;}
.x46{left:92.718000px;}
.x1b{left:96.072000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x36{left:198.048000px;}
.x1c{left:201.660000px;}
.x4{left:203.484001px;}
.x40{left:225.078000px;}
.x3d{left:229.920000px;}
.x37{left:234.211500px;}
.x9{left:248.526000px;}
.x8{left:249.591000px;}
.x45{left:253.201500px;}
.x44{left:256.956000px;}
.x52{left:258.556500px;}
.x18{left:260.272500px;}
.x17{left:261.874500px;}
.x16{left:263.799000px;}
.x43{left:266.197500px;}
.x15{left:272.914500px;}
.x14{left:274.015500px;}
.x50{left:277.941000px;}
.xa{left:281.479500px;}
.xb{left:284.184000px;}
.x4c{left:295.432500px;}
.x4a{left:296.971500px;}
.x28{left:304.345560px;}
.x29{left:305.606074px;}
.x4b{left:306.972000px;}
.x4f{left:316.434000px;}
.x38{left:317.811000px;}
.x51{left:329.560500px;}
.xc{left:336.318000px;}
.x39{left:345.345000px;}
.x19{left:354.211500px;}
.x2b{left:362.665723px;}
.x2a{left:373.555118px;}
.x1a{left:381.790500px;}
.x2d{left:436.735546px;}
.x2c{left:441.685954px;}
.xd{left:445.650000px;}
.x3{left:454.959000px;}
.x4d{left:502.195500px;}
.x49{left:515.490000px;}
.x2f{left:523.224206px;}
.x2e{left:531.954653px;}
.x35{left:538.794715px;}
.x3a{left:540.667500px;}
.xf{left:545.293500px;}
.xe{left:552.508500px;}
.x47{left:562.236000px;}
.x48{left:574.527000px;}
.x1d{left:624.799500px;}
.x11{left:637.614000px;}
.x10{left:641.595000px;}
.x4e{left:686.532000px;}
.x13{left:730.860000px;}
.x12{left:741.147000px;}
.x3f{left:755.010000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.253333pt;}
.v2{vertical-align:25.242667pt;}
.v5{vertical-align:29.226667pt;}
.v3{vertical-align:50.480000pt;}
.ls40{letter-spacing:-0.110400pt;}
.ls3a{letter-spacing:-0.106880pt;}
.ls35{letter-spacing:-0.090848pt;}
.ls38{letter-spacing:-0.080160pt;}
.ls41{letter-spacing:-0.064128pt;}
.ls37{letter-spacing:-0.048096pt;}
.ls39{letter-spacing:-0.032064pt;}
.ls36{letter-spacing:-0.026720pt;}
.ls31{letter-spacing:-0.025536pt;}
.ls3b{letter-spacing:-0.016032pt;}
.ls34{letter-spacing:-0.010688pt;}
.ls42{letter-spacing:-0.009600pt;}
.ls33{letter-spacing:-0.005344pt;}
.ls32{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.000361pt;}
.ls54{letter-spacing:0.000711pt;}
.ls59{letter-spacing:0.001026pt;}
.ls46{letter-spacing:0.003025pt;}
.ls56{letter-spacing:0.003261pt;}
.ls57{letter-spacing:0.003418pt;}
.ls28{letter-spacing:0.004800pt;}
.ls1d{letter-spacing:0.005344pt;}
.ls2b{letter-spacing:0.009600pt;}
.ls1f{letter-spacing:0.010688pt;}
.ls2e{letter-spacing:0.014400pt;}
.ls24{letter-spacing:0.016032pt;}
.ls2d{letter-spacing:0.024000pt;}
.ls23{letter-spacing:0.032064pt;}
.ls26{letter-spacing:0.042752pt;}
.ls2f{letter-spacing:0.043200pt;}
.ls22{letter-spacing:0.048096pt;}
.ls29{letter-spacing:0.057600pt;}
.ls25{letter-spacing:0.069472pt;}
.ls2a{letter-spacing:0.080160pt;}
.ls30{letter-spacing:0.106880pt;}
.ls3d{letter-spacing:0.112224pt;}
.ls3c{letter-spacing:0.117568pt;}
.ls21{letter-spacing:0.122912pt;}
.ls3f{letter-spacing:0.133600pt;}
.ls3e{letter-spacing:0.138944pt;}
.ls1c{letter-spacing:0.157472pt;}
.ls27{letter-spacing:0.160320pt;}
.ls2c{letter-spacing:0.163200pt;}
.ls1b{letter-spacing:0.170240pt;}
.ls20{letter-spacing:0.171008pt;}
.ls1e{letter-spacing:0.406144pt;}
.ls47{letter-spacing:0.447791pt;}
.ls45{letter-spacing:0.509060pt;}
.ls44{letter-spacing:0.514393pt;}
.ls48{letter-spacing:9.761600pt;}
.ls49{letter-spacing:9.766933pt;}
.ls6{letter-spacing:10.626533pt;}
.ls17{letter-spacing:10.629067pt;}
.ls55{letter-spacing:11.653209pt;}
.ls58{letter-spacing:12.257235pt;}
.ls13{letter-spacing:12.645860pt;}
.ls5{letter-spacing:12.911530pt;}
.ls1a{letter-spacing:13.017797pt;}
.lsa{letter-spacing:13.070931pt;}
.ls4c{letter-spacing:13.087969pt;}
.ls11{letter-spacing:13.177199pt;}
.ls19{letter-spacing:13.192544pt;}
.ls15{letter-spacing:13.203136pt;}
.ls12{letter-spacing:13.230333pt;}
.ls4{letter-spacing:13.283467pt;}
.ls4f{letter-spacing:13.283733pt;}
.ls4d{letter-spacing:13.326400pt;}
.ls3{letter-spacing:13.336601pt;}
.ls9{letter-spacing:13.496002pt;}
.ls4b{letter-spacing:13.546888pt;}
.ls51{letter-spacing:13.549136pt;}
.lsd{letter-spacing:13.602270pt;}
.ls4e{letter-spacing:13.923096pt;}
.lsf{letter-spacing:15.408821pt;}
.lse{letter-spacing:15.461955pt;}
.ls14{letter-spacing:15.555942pt;}
.ls16{letter-spacing:15.597773pt;}
.ls52{letter-spacing:15.887026pt;}
.ls2{letter-spacing:16.099562pt;}
.ls4a{letter-spacing:16.361171pt;}
.ls50{letter-spacing:16.418365pt;}
.ls18{letter-spacing:16.559864pt;}
.lsb{letter-spacing:16.684034pt;}
.ls7{letter-spacing:16.843436pt;}
.lsc{letter-spacing:17.481042pt;}
.ls43{letter-spacing:17.657903pt;}
.ls10{letter-spacing:19.606397pt;}
.ls8{letter-spacing:23.272634pt;}
.ls1{letter-spacing:25.292137pt;}
.wsc{word-spacing:-20.194365pt;}
.ws9d{word-spacing:-13.360000pt;}
.ws73{word-spacing:-13.283467pt;}
.ws90{word-spacing:-11.955200pt;}
.ws9b{word-spacing:-10.810240pt;}
.ws9c{word-spacing:-10.640000pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws5{word-spacing:-9.298400pt;}
.wsd3{word-spacing:-3.436192pt;}
.wsd2{word-spacing:-3.115552pt;}
.ws5e{word-spacing:-2.869229pt;}
.wsc9{word-spacing:-2.800256pt;}
.ws16{word-spacing:-2.630144pt;}
.wsf0{word-spacing:-2.444158pt;}
.ws4e{word-spacing:-2.284756pt;}
.ws3a{word-spacing:-2.231622pt;}
.wscc{word-spacing:-2.223104pt;}
.wsd5{word-spacing:-2.178489pt;}
.wsf6{word-spacing:-2.072221pt;}
.wsfc{word-spacing:-1.912819pt;}
.ws50{word-spacing:-1.859685pt;}
.wscb{word-spacing:-1.832992pt;}
.ws48{word-spacing:-1.753418pt;}
.ws8c{word-spacing:-1.700284pt;}
.ws40{word-spacing:-1.647150pt;}
.ws41{word-spacing:-1.594016pt;}
.wsbc{word-spacing:-1.239808pt;}
.wsbd{word-spacing:-1.191712pt;}
.wsd0{word-spacing:-1.181024pt;}
.wsd1{word-spacing:-1.170336pt;}
.ws111{word-spacing:-1.147699pt;}
.wsed{word-spacing:-1.062677pt;}
.ws60{word-spacing:-1.009543pt;}
.wsae{word-spacing:-0.999328pt;}
.ws124{word-spacing:-0.956416pt;}
.ws39{word-spacing:-0.956410pt;}
.ws9f{word-spacing:-0.860774pt;}
.wsf9{word-spacing:-0.850142pt;}
.ws5f{word-spacing:-0.797008pt;}
.wsad{word-spacing:-0.796256pt;}
.wsac{word-spacing:-0.785568pt;}
.ws49{word-spacing:-0.743874pt;}
.ws11{word-spacing:-0.717312pt;}
.ws2d{word-spacing:-0.690740pt;}
.wsf5{word-spacing:-0.669491pt;}
.wsf8{word-spacing:-0.584473pt;}
.ws137{word-spacing:-0.573850pt;}
.ws78{word-spacing:-0.425071pt;}
.ws4f{word-spacing:-0.371937pt;}
.ws56{word-spacing:-0.318803pt;}
.ws133{word-spacing:-0.286925pt;}
.ws3f{word-spacing:-0.265669pt;}
.wsa1{word-spacing:-0.246848pt;}
.wsc1{word-spacing:-0.240480pt;}
.wsc2{word-spacing:-0.229792pt;}
.ws1d{word-spacing:-0.212535pt;}
.wsc8{word-spacing:-0.203072pt;}
.ws17{word-spacing:-0.191283pt;}
.ws22{word-spacing:-0.159402pt;}
.ws103{word-spacing:-0.143462pt;}
.ws2a{word-spacing:-0.106268pt;}
.ws11a{word-spacing:-0.095642pt;}
.wsa2{word-spacing:-0.072352pt;}
.ws9e{word-spacing:-0.053440pt;}
.ws20{word-spacing:-0.053134pt;}
.wsa0{word-spacing:-0.051072pt;}
.wsc6{word-spacing:-0.048096pt;}
.ws8f{word-spacing:-0.047821pt;}
.wsd9{word-spacing:-0.042507pt;}
.wse2{word-spacing:-0.037194pt;}
.wsc4{word-spacing:-0.032064pt;}
.wsc5{word-spacing:-0.026720pt;}
.ws11d{word-spacing:-0.013150pt;}
.ws13c{word-spacing:-0.013128pt;}
.ws131{word-spacing:-0.011836pt;}
.ws123{word-spacing:-0.005965pt;}
.ws12b{word-spacing:-0.004301pt;}
.ws130{word-spacing:-0.004207pt;}
.ws10b{word-spacing:-0.003465pt;}
.ws99{word-spacing:-0.003369pt;}
.ws107{word-spacing:-0.002935pt;}
.ws129{word-spacing:-0.000947pt;}
.wsef{word-spacing:-0.000800pt;}
.ws3{word-spacing:-0.000023pt;}
.ws0{word-spacing:0.000000pt;}
.ws12e{word-spacing:0.001246pt;}
.ws2e{word-spacing:0.003199pt;}
.ws19{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.wsa8{word-spacing:0.074816pt;}
.wsc3{word-spacing:0.090848pt;}
.ws104{word-spacing:0.095642pt;}
.wsbf{word-spacing:0.105600pt;}
.ws25{word-spacing:0.106268pt;}
.wsde{word-spacing:0.111581pt;}
.wsa9{word-spacing:0.112224pt;}
.wscf{word-spacing:0.120000pt;}
.wsc7{word-spacing:0.139200pt;}
.ws15{word-spacing:0.143462pt;}
.ws2{word-spacing:0.148774pt;}
.wsbe{word-spacing:0.158400pt;}
.ws21{word-spacing:0.159402pt;}
.wsce{word-spacing:0.172800pt;}
.ws10{word-spacing:0.191283pt;}
.ws34{word-spacing:0.212535pt;}
.ws116{word-spacing:0.227480pt;}
.ws119{word-spacing:0.239104pt;}
.ws3e{word-spacing:0.265669pt;}
.ws11e{word-spacing:0.286925pt;}
.wsea{word-spacing:0.291618pt;}
.ws33{word-spacing:0.318803pt;}
.ws27{word-spacing:0.371937pt;}
.ws121{word-spacing:0.382566pt;}
.wsa6{word-spacing:0.416832pt;}
.ws3b{word-spacing:0.425071pt;}
.ws13b{word-spacing:0.430387pt;}
.wsb4{word-spacing:0.438208pt;}
.wse5{word-spacing:0.462465pt;}
.wse6{word-spacing:0.463822pt;}
.wsf{word-spacing:0.478208pt;}
.wsa7{word-spacing:0.496992pt;}
.wsb5{word-spacing:0.513024pt;}
.ws120{word-spacing:0.526029pt;}
.ws68{word-spacing:0.531339pt;}
.ws118{word-spacing:0.573850pt;}
.wsf7{word-spacing:0.584473pt;}
.ws117{word-spacing:0.621670pt;}
.wsb8{word-spacing:0.657312pt;}
.wsee{word-spacing:0.664412pt;}
.ws65{word-spacing:0.690740pt;}
.ws32{word-spacing:0.743874pt;}
.ws81{word-spacing:0.797008pt;}
.ws77{word-spacing:0.850142pt;}
.ws57{word-spacing:0.903276pt;}
.ws80{word-spacing:0.956410pt;}
.ws134{word-spacing:0.956416pt;}
.wsaf{word-spacing:0.999328pt;}
.ws5c{word-spacing:1.009543pt;}
.wsb0{word-spacing:1.015360pt;}
.wsb9{word-spacing:1.031392pt;}
.wsb3{word-spacing:1.052768pt;}
.ws8a{word-spacing:1.062677pt;}
.ws83{word-spacing:1.115811pt;}
.wsec{word-spacing:1.168945pt;}
.ws10e{word-spacing:1.195520pt;}
.ws2c{word-spacing:1.222079pt;}
.wsb{word-spacing:1.227389pt;}
.ws4b{word-spacing:1.275213pt;}
.ws139{word-spacing:1.291162pt;}
.ws29{word-spacing:1.328347pt;}
.ws28{word-spacing:1.381481pt;}
.wsab{word-spacing:1.394784pt;}
.wsaa{word-spacing:1.416160pt;}
.wscd{word-spacing:1.430400pt;}
.ws42{word-spacing:1.434614pt;}
.ws13f{word-spacing:1.434624pt;}
.ws6d{word-spacing:1.487748pt;}
.ws10a{word-spacing:1.530266pt;}
.ws109{word-spacing:1.578086pt;}
.ws47{word-spacing:1.594016pt;}
.ws94{word-spacing:1.647150pt;}
.ws12f{word-spacing:1.673728pt;}
.ws66{word-spacing:1.700284pt;}
.wsca{word-spacing:1.747488pt;}
.ws23{word-spacing:1.753418pt;}
.ws24{word-spacing:1.806551pt;}
.ws122{word-spacing:1.865011pt;}
.ws51{word-spacing:1.912819pt;}
.ws76{word-spacing:1.965953pt;}
.ws89{word-spacing:2.072221pt;}
.ws69{word-spacing:2.125355pt;}
.ws45{word-spacing:2.178489pt;}
.ws5d{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws31{word-spacing:2.284756pt;}
.wsb6{word-spacing:2.308608pt;}
.wsb7{word-spacing:2.335328pt;}
.ws93{word-spacing:2.337890pt;}
.ws128{word-spacing:2.438861pt;}
.ws3c{word-spacing:2.444158pt;}
.ws11c{word-spacing:2.486682pt;}
.ws2b{word-spacing:2.550426pt;}
.wsd{word-spacing:2.550432pt;}
.ws112{word-spacing:2.582323pt;}
.ws4c{word-spacing:2.603559pt;}
.ws101{word-spacing:2.630144pt;}
.ws1f{word-spacing:2.656693pt;}
.ws1e{word-spacing:2.709827pt;}
.ws12d{word-spacing:2.773606pt;}
.ws10f{word-spacing:2.859068pt;}
.ws12a{word-spacing:2.861986pt;}
.ws10d{word-spacing:2.862251pt;}
.ws135{word-spacing:2.863778pt;}
.ws126{word-spacing:2.864828pt;}
.ws132{word-spacing:2.864922pt;}
.ws12c{word-spacing:2.865092pt;}
.ws108{word-spacing:2.865152pt;}
.ws102{word-spacing:2.866509pt;}
.ws9a{word-spacing:2.869229pt;}
.ws105{word-spacing:2.869248pt;}
.ws110{word-spacing:2.917069pt;}
.ws138{word-spacing:3.012710pt;}
.wse9{word-spacing:3.028630pt;}
.wse8{word-spacing:3.081764pt;}
.ws140{word-spacing:3.108352pt;}
.wsd4{word-spacing:3.134898pt;}
.ws11f{word-spacing:3.156173pt;}
.ws1c{word-spacing:3.188032pt;}
.ws7e{word-spacing:3.241166pt;}
.ws127{word-spacing:3.251814pt;}
.ws6e{word-spacing:3.294300pt;}
.ws125{word-spacing:3.299635pt;}
.ws53{word-spacing:3.400567pt;}
.ws35{word-spacing:3.453701pt;}
.ws106{word-spacing:3.490918pt;}
.ws55{word-spacing:3.506835pt;}
.ws5a{word-spacing:3.559969pt;}
.ws10c{word-spacing:3.682202pt;}
.ws59{word-spacing:3.719371pt;}
.ws115{word-spacing:3.825664pt;}
.ws12{word-spacing:3.873485pt;}
.ws30{word-spacing:3.878772pt;}
.ws13{word-spacing:3.921306pt;}
.ws8b{word-spacing:3.931906pt;}
.wse{word-spacing:3.946177pt;}
.ws64{word-spacing:4.144442pt;}
.ws18{word-spacing:4.160410pt;}
.wsfb{word-spacing:4.197575pt;}
.ws14{word-spacing:4.208230pt;}
.ws58{word-spacing:4.250709pt;}
.ws79{word-spacing:4.303843pt;}
.ws7f{word-spacing:4.356977pt;}
.ws36{word-spacing:4.410111pt;}
.ws136{word-spacing:4.495155pt;}
.ws6a{word-spacing:4.516379pt;}
.ws6c{word-spacing:4.569513pt;}
.ws100{word-spacing:4.638618pt;}
.ws74{word-spacing:4.675780pt;}
.ws13e{word-spacing:4.734259pt;}
.ws54{word-spacing:4.835182pt;}
.ws9{word-spacing:4.872362pt;}
.wseb{word-spacing:4.888316pt;}
.ws114{word-spacing:4.925542pt;}
.ws8d{word-spacing:4.941450pt;}
.wsfe{word-spacing:4.994583pt;}
.ws63{word-spacing:5.207119pt;}
.wsb1{word-spacing:5.210400pt;}
.wsb2{word-spacing:5.237120pt;}
.ws11b{word-spacing:5.308109pt;}
.wsa5{word-spacing:5.520352pt;}
.ws37{word-spacing:5.525922pt;}
.wsa4{word-spacing:5.531040pt;}
.ws7a{word-spacing:5.632190pt;}
.wsff{word-spacing:5.685324pt;}
.ws62{word-spacing:5.738458pt;}
.ws61{word-spacing:5.791591pt;}
.ws67{word-spacing:5.950993pt;}
.ws13d{word-spacing:5.977600pt;}
.ws46{word-spacing:6.110395pt;}
.ws7d{word-spacing:6.163529pt;}
.ws38{word-spacing:6.216662pt;}
.ws70{word-spacing:6.429198pt;}
.ws3d{word-spacing:6.535466pt;}
.wsfd{word-spacing:6.641733pt;}
.ws75{word-spacing:6.748001pt;}
.ws92{word-spacing:6.801135pt;}
.ws52{word-spacing:6.854269pt;}
.wsfa{word-spacing:6.907403pt;}
.ws6f{word-spacing:6.960537pt;}
.ws44{word-spacing:7.013670pt;}
.ws43{word-spacing:7.066804pt;}
.ws82{word-spacing:7.438741pt;}
.ws1b{word-spacing:7.842611pt;}
.ws113{word-spacing:8.177357pt;}
.ws7{word-spacing:8.740496pt;}
.ws13a{word-spacing:8.894669pt;}
.wsbb{word-spacing:9.683328pt;}
.wsba{word-spacing:9.704704pt;}
.wsa3{word-spacing:10.329312pt;}
.ws8{word-spacing:10.525789pt;}
.ws71{word-spacing:12.285622pt;}
.ws4{word-spacing:13.761632pt;}
.ws5b{word-spacing:14.346144pt;}
.ws7c{word-spacing:16.286206pt;}
.ws4d{word-spacing:16.466956pt;}
.ws7b{word-spacing:16.824246pt;}
.ws6b{word-spacing:17.374774pt;}
.ws1a{word-spacing:18.734763pt;}
.ws6{word-spacing:19.857270pt;}
.wsa{word-spacing:20.196125pt;}
.ws72{word-spacing:23.855296pt;}
.ws4a{word-spacing:49.255094pt;}
.wsd8{word-spacing:128.240183pt;}
.ws96{word-spacing:144.646878pt;}
.wsda{word-spacing:151.325632pt;}
.ws86{word-spacing:159.843518pt;}
.wse3{word-spacing:177.450666pt;}
.ws88{word-spacing:178.445226pt;}
.ws85{word-spacing:199.103725pt;}
.ws87{word-spacing:205.777355pt;}
.wse1{word-spacing:209.241727pt;}
.wsd7{word-spacing:221.643333pt;}
.wsdd{word-spacing:225.432418pt;}
.ws97{word-spacing:226.772406pt;}
.ws95{word-spacing:238.443102pt;}
.wsdc{word-spacing:257.454667pt;}
.ws84{word-spacing:274.851555pt;}
.wse7{word-spacing:275.112000pt;}
.wsd6{word-spacing:278.961538pt;}
.ws98{word-spacing:281.884619pt;}
.wsdb{word-spacing:292.407029pt;}
.wse4{word-spacing:305.694198pt;}
.wse0{word-spacing:314.546275pt;}
.wsdf{word-spacing:341.560000pt;}
.wsc0{word-spacing:357.989216pt;}
.wsf1{word-spacing:446.459255pt;}
.wsf3{word-spacing:577.110622pt;}
.wsf2{word-spacing:578.918605pt;}
.wsf4{word-spacing:586.330829pt;}
.ws8e{word-spacing:800.190899pt;}
.ws91{word-spacing:913.664205pt;}
._38{margin-left:-357.542480pt;}
._6f{margin-left:-18.015240pt;}
._70{margin-left:-16.668147pt;}
._5{margin-left:-10.616218pt;}
._11{margin-left:-6.801258pt;}
._6{margin-left:-5.897859pt;}
._19{margin-left:-4.994583pt;}
._0{margin-left:-4.091296pt;}
._1a{margin-left:-2.922363pt;}
._3{margin-left:-1.301776pt;}
._36{width:1.115072pt;}
._6d{width:2.306013pt;}
._6e{width:3.469690pt;}
._b{width:8.416461pt;}
._d{width:10.393014pt;}
._1{width:11.530016pt;}
._12{width:13.177232pt;}
._c{width:14.500317pt;}
._8{width:15.408912pt;}
._6c{width:16.312281pt;}
._a{width:17.215488pt;}
._15{width:18.224916pt;}
._17{width:19.872054pt;}
._10{width:21.173842pt;}
._2{width:22.502128pt;}
._e{width:23.862579pt;}
._f{width:25.451122pt;}
._9{width:26.524566pt;}
._21{width:27.974977pt;}
._4{width:29.648896pt;}
._20{width:31.163009pt;}
._16{width:32.863293pt;}
._1d{width:34.457309pt;}
._1b{width:35.493423pt;}
._1f{width:36.742195pt;}
._1e{width:37.937581pt;}
._71{width:42.656505pt;}
._7{width:61.656615pt;}
._18{width:63.654372pt;}
._49{width:73.836877pt;}
._1c{width:74.865618pt;}
._43{width:125.875760pt;}
._2f{width:137.532761pt;}
._52{width:138.732128pt;}
._22{width:142.091187pt;}
._2e{width:153.536006pt;}
._59{width:159.743386pt;}
._5f{width:161.606192pt;}
._46{width:162.750349pt;}
._4a{width:168.665168pt;}
._4e{width:172.621739pt;}
._2b{width:180.698107pt;}
._5c{width:196.084659pt;}
._32{width:198.126059pt;}
._35{width:203.992053pt;}
._58{width:206.450075pt;}
._34{width:214.916403pt;}
._26{width:216.361648pt;}
._40{width:223.464704pt;}
._4b{width:228.586901pt;}
._23{width:229.762021pt;}
._30{width:231.366690pt;}
._3b{width:232.410560pt;}
._4f{width:236.048179pt;}
._5b{width:238.225008pt;}
._53{width:247.151472pt;}
._2c{width:248.284555pt;}
._25{width:253.597955pt;}
._27{width:254.788157pt;}
._47{width:257.693024pt;}
._44{width:260.605504pt;}
._55{width:261.908894pt;}
._4c{width:264.692334pt;}
._3d{width:266.986240pt;}
._3c{width:269.866656pt;}
._5a{width:276.608803pt;}
._2d{width:281.355157pt;}
._50{width:285.308326pt;}
._29{width:290.749248pt;}
._28{width:296.105155pt;}
._5e{width:299.482867pt;}
._42{width:301.303248pt;}
._51{width:303.033829pt;}
._4d{width:305.371725pt;}
._33{width:309.239880pt;}
._5d{width:312.240272pt;}
._54{width:319.530218pt;}
._64{width:320.693845pt;}
._24{width:323.819850pt;}
._2a{width:329.175757pt;}
._6a{width:353.236263pt;}
._56{width:365.910637pt;}
._31{width:380.099382pt;}
._57{width:381.457562pt;}
._61{width:387.013734pt;}
._3f{width:390.275504pt;}
._39{width:440.493072pt;}
._69{width:457.310310pt;}
._62{width:463.909581pt;}
._3a{width:488.511072pt;}
._65{width:494.706176pt;}
._67{width:509.721907pt;}
._41{width:523.547360pt;}
._48{width:530.061696pt;}
._45{width:543.988160pt;}
._66{width:552.425882pt;}
._3e{width:565.006112pt;}
._63{width:590.825984pt;}
._68{width:598.286029pt;}
._6b{width:644.146176pt;}
._13{width:783.363589pt;}
._37{width:1871.546208pt;}
._60{width:2233.602667pt;}
._14{width:2254.856000pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fs10{font-size:38.755733pt;}
.fs9{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsf{font-size:44.292800pt;}
.fsa{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs7{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsd{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:80.777458pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:95.641600pt;}
.y17b{bottom:-153.688933pt;}
.y19d{bottom:-81.208437pt;}
.y19c{bottom:-64.088933pt;}
.y19b{bottom:-31.448533pt;}
.y19a{bottom:-15.928933pt;}
.y0{bottom:0.000000pt;}
.y199{bottom:3.991387pt;}
.y38{bottom:8.207950pt;}
.y37{bottom:23.914454pt;}
.y65{bottom:28.346667pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y1fa{bottom:92.108000pt;}
.y35{bottom:93.018667pt;}
.y9a{bottom:96.345333pt;}
.y23f{bottom:96.585333pt;}
.y1d9{bottom:99.026667pt;}
.y64{bottom:99.492000pt;}
.ye4{bottom:102.322667pt;}
.y1a3{bottom:102.577333pt;}
.y276{bottom:103.518667pt;}
.y217{bottom:105.909333pt;}
.y1f9{bottom:108.844000pt;}
.y34{bottom:108.920000pt;}
.y108{bottom:109.097333pt;}
.y23e{bottom:111.926667pt;}
.y99{bottom:113.082667pt;}
.y1d8{bottom:115.764000pt;}
.y63{bottom:116.229333pt;}
.y275{bottom:118.861333pt;}
.ye3{bottom:119.060000pt;}
.y1a2{bottom:119.314667pt;}
.y216{bottom:122.646667pt;}
.y21{bottom:123.790666pt;}
.y33{bottom:124.820000pt;}
.y1f8{bottom:125.581333pt;}
.y107{bottom:125.834667pt;}
.y23d{bottom:127.269333pt;}
.y98{bottom:129.820000pt;}
.y1d7{bottom:132.501333pt;}
.y62{bottom:132.966667pt;}
.y274{bottom:134.202667pt;}
.ye2{bottom:135.797333pt;}
.y1a1{bottom:136.052000pt;}
.y12f{bottom:137.657333pt;}
.y215{bottom:139.384000pt;}
.y32{bottom:140.720000pt;}
.y23c{bottom:142.612000pt;}
.y1f7{bottom:146.304000pt;}
.y97{bottom:146.557333pt;}
.y1d6{bottom:149.238667pt;}
.y273{bottom:149.545333pt;}
.y61{bottom:149.704000pt;}
.ye1{bottom:152.534667pt;}
.y1a0{bottom:152.789333pt;}
.y12e{bottom:154.394667pt;}
.y214{bottom:156.121333pt;}
.y31{bottom:156.621333pt;}
.yb8{bottom:157.716000pt;}
.y23b{bottom:157.954667pt;}
.y106{bottom:158.512000pt;}
.y96{bottom:163.294667pt;}
.y272{bottom:164.888000pt;}
.y1d5{bottom:165.976000pt;}
.y60{bottom:166.441333pt;}
.ye0{bottom:169.272000pt;}
.y12d{bottom:171.132000pt;}
.y30{bottom:172.521333pt;}
.y213{bottom:172.858667pt;}
.y23a{bottom:173.297333pt;}
.y18{bottom:175.052000pt;}
.y1f6{bottom:176.192000pt;}
.y95{bottom:180.032000pt;}
.y271{bottom:180.230667pt;}
.y19f{bottom:182.625333pt;}
.y1d4{bottom:182.713333pt;}
.y5f{bottom:183.178667pt;}
.ydf{bottom:186.009333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y2f{bottom:188.421333pt;}
.y239{bottom:188.640000pt;}
.y212{bottom:189.596000pt;}
.yb7{bottom:190.393333pt;}
.y105{bottom:191.189333pt;}
.y12c{bottom:191.854667pt;}
.y1f5{bottom:192.929333pt;}
.y270{bottom:195.573333pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1d3{bottom:199.450667pt;}
.y19e{bottom:199.721333pt;}
.y5e{bottom:199.916000pt;}
.y94{bottom:200.754667pt;}
.yde{bottom:202.746667pt;}
.y238{bottom:203.982667pt;}
.y2e{bottom:204.322667pt;}
.y211{bottom:206.333333pt;}
.yb6{bottom:207.130667pt;}
.y104{bottom:207.926667pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y15c{bottom:208.921333pt;}
.y1f4{bottom:209.666667pt;}
.y26f{bottom:210.916000pt;}
.y5d{bottom:216.653333pt;}
.y237{bottom:219.325333pt;}
.ydd{bottom:219.484000pt;}
.y178{bottom:219.658667pt;}
.y12b{bottom:221.742667pt;}
.y210{bottom:223.070667pt;}
.yb5{bottom:223.868000pt;}
.y103{bottom:224.664000pt;}
.y15b{bottom:225.658667pt;}
.y26e{bottom:226.258667pt;}
.y1f3{bottom:226.404000pt;}
.y93{bottom:230.642667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y1d2{bottom:232.356000pt;}
.y5c{bottom:233.390667pt;}
.y236{bottom:234.666667pt;}
.ydc{bottom:236.221333pt;}
.y12a{bottom:238.480000pt;}
.y20f{bottom:239.808000pt;}
.yb4{bottom:240.605333pt;}
.y102{bottom:241.401333pt;}
.y26d{bottom:241.601333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y15a{bottom:242.396000pt;}
.y1f2{bottom:243.141333pt;}
.y92{bottom:247.378667pt;}
.y235{bottom:250.009333pt;}
.y5b{bottom:250.128000pt;}
.y1d0{bottom:250.568000pt;}
.ydb{bottom:252.958667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y129{bottom:255.217333pt;}
.y20e{bottom:256.545333pt;}
.y26c{bottom:256.944000pt;}
.yb3{bottom:257.341333pt;}
.y101{bottom:258.138667pt;}
.y159{bottom:259.133333pt;}
.y1cf{bottom:261.194667pt;}
.y91{bottom:264.116000pt;}
.y234{bottom:265.352000pt;}
.y1d1{bottom:266.508000pt;}
.y2d{bottom:266.570667pt;}
.y5a{bottom:266.865333pt;}
.y1ce{bottom:271.821333pt;}
.y128{bottom:271.954667pt;}
.y26b{bottom:272.285333pt;}
.y20d{bottom:273.282667pt;}
.yda{bottom:273.681333pt;}
.yb2{bottom:274.078667pt;}
.y1f1{bottom:274.789333pt;}
.y100{bottom:274.876000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y158{bottom:275.870667pt;}
.y90{bottom:280.853333pt;}
.y1cd{bottom:282.448000pt;}
.y2c{bottom:282.470667pt;}
.y59{bottom:283.602667pt;}
.y233{bottom:284.680000pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y26a{bottom:287.628000pt;}
.y20c{bottom:290.020000pt;}
.yb1{bottom:290.816000pt;}
.y1f0{bottom:291.540000pt;}
.yff{bottom:291.613333pt;}
.y157{bottom:292.608000pt;}
.y127{bottom:292.676000pt;}
.y198{bottom:295.991555pt;}
.y8f{bottom:297.590667pt;}
.y2b{bottom:298.370667pt;}
.y1cc{bottom:299.477333pt;}
.y58{bottom:300.340000pt;}
.y269{bottom:302.970667pt;}
.yd9{bottom:303.569333pt;}
.y1ef{bottom:306.152000pt;}
.y20b{bottom:306.757333pt;}
.yb0{bottom:307.553333pt;}
.yfe{bottom:308.350667pt;}
.y156{bottom:309.345333pt;}
.yf{bottom:309.452000pt;}
.y1cb{bottom:310.104000pt;}
.y197{bottom:313.111059pt;}
.y2a{bottom:314.270667pt;}
.y8e{bottom:314.328000pt;}
.y232{bottom:314.568000pt;}
.y57{bottom:317.077333pt;}
.y268{bottom:318.313333pt;}
.yd8{bottom:320.306667pt;}
.y1ca{bottom:320.730667pt;}
.y1ee{bottom:320.764000pt;}
.y126{bottom:322.564000pt;}
.yaf{bottom:324.290667pt;}
.yfd{bottom:325.088000pt;}
.y155{bottom:326.081333pt;}
.y20a{bottom:327.478667pt;}
.y196{bottom:330.150403pt;}
.y8d{bottom:331.065333pt;}
.y267{bottom:333.656000pt;}
.y56{bottom:333.814667pt;}
.y1ed{bottom:335.376000pt;}
.yd7{bottom:337.044000pt;}
.y1c9{bottom:337.760000pt;}
.y29{bottom:338.141333pt;}
.y231{bottom:338.160000pt;}
.y125{bottom:339.301333pt;}
.yae{bottom:341.028000pt;}
.yfc{bottom:341.825333pt;}
.y154{bottom:342.818667pt;}
.ye{bottom:343.809333pt;}
.y8c{bottom:347.802667pt;}
.y1c8{bottom:348.386667pt;}
.y266{bottom:348.998667pt;}
.y1ec{bottom:349.986667pt;}
.y55{bottom:350.552000pt;}
.y195{bottom:351.191067pt;}
.yd6{bottom:353.780000pt;}
.y230{bottom:353.781333pt;}
.y28{bottom:354.042667pt;}
.y124{bottom:356.038667pt;}
.y209{bottom:357.366667pt;}
.yad{bottom:357.765333pt;}
.yfb{bottom:358.562667pt;}
.y1c7{bottom:359.013333pt;}
.yd{bottom:362.706666pt;}
.y153{bottom:363.541333pt;}
.y265{bottom:364.341333pt;}
.y8b{bottom:364.540000pt;}
.y1eb{bottom:364.598667pt;}
.y54{bottom:367.289333pt;}
.y22f{bottom:369.402667pt;}
.y27{bottom:369.942667pt;}
.yd5{bottom:370.517333pt;}
.y123{bottom:372.776000pt;}
.y208{bottom:374.104000pt;}
.yac{bottom:374.502667pt;}
.yfa{bottom:375.300000pt;}
.y1c6{bottom:376.042667pt;}
.y1ea{bottom:379.210667pt;}
.y264{bottom:379.684000pt;}
.y8a{bottom:381.277333pt;}
.y194{bottom:383.991067pt;}
.y53{bottom:384.026667pt;}
.y26{bottom:385.842667pt;}
.y1c5{bottom:386.669333pt;}
.yd4{bottom:387.254667pt;}
.y122{bottom:389.513333pt;}
.y207{bottom:390.841333pt;}
.yab{bottom:391.240000pt;}
.yf9{bottom:392.037333pt;}
.y22e{bottom:392.993333pt;}
.y152{bottom:393.657333pt;}
.y263{bottom:395.025333pt;}
.y89{bottom:398.014667pt;}
.y1e9{bottom:400.225333pt;}
.y52{bottom:400.762667pt;}
.y193{bottom:401.271283pt;}
.y25{bottom:401.744000pt;}
.yd3{bottom:403.992000pt;}
.y121{bottom:406.250667pt;}
.y1e8{bottom:407.530667pt;}
.y206{bottom:407.578667pt;}
.yaa{bottom:407.977333pt;}
.yf8{bottom:408.774667pt;}
.y262{bottom:410.368000pt;}
.y151{bottom:410.408000pt;}
.y1c4{bottom:414.642667pt;}
.y88{bottom:414.752000pt;}
.y22d{bottom:416.585333pt;}
.y51{bottom:417.500000pt;}
.y24{bottom:417.644000pt;}
.y192{bottom:419.271211pt;}
.yd2{bottom:420.729333pt;}
.y120{bottom:422.988000pt;}
.y205{bottom:424.316000pt;}
.ya9{bottom:424.714667pt;}
.yf7{bottom:425.512000pt;}
.y261{bottom:425.710667pt;}
.y150{bottom:431.421333pt;}
.y87{bottom:431.489333pt;}
.y23{bottom:433.544000pt;}
.y50{bottom:434.237333pt;}
.y191{bottom:437.271139pt;}
.yd1{bottom:437.466667pt;}
.y11f{bottom:439.725333pt;}
.y1c3{bottom:440.121333pt;}
.y22c{bottom:440.177333pt;}
.y204{bottom:441.053333pt;}
.ya8{bottom:441.452000pt;}
.yf6{bottom:442.249333pt;}
.y1e7{bottom:442.942667pt;}
.yc{bottom:446.990669pt;}
.y86{bottom:448.226667pt;}
.y22{bottom:449.445333pt;}
.y4f{bottom:450.974667pt;}
.yd0{bottom:454.204000pt;}
.y190{bottom:455.271067pt;}
.y260{bottom:456.396000pt;}
.y11e{bottom:456.462667pt;}
.y203{bottom:457.790667pt;}
.ya7{bottom:458.189333pt;}
.y1c1{bottom:458.332000pt;}
.yf5{bottom:458.986667pt;}
.y14f{bottom:459.528000pt;}
.yb{bottom:462.990669pt;}
.y1c2{bottom:463.645333pt;}
.y22b{bottom:463.768000pt;}
.y85{bottom:464.964000pt;}
.y1e6{bottom:466.697333pt;}
.y1c0{bottom:468.958667pt;}
.ycf{bottom:470.941333pt;}
.y4e{bottom:471.697333pt;}
.y25f{bottom:471.738667pt;}
.y11d{bottom:473.200000pt;}
.y18f{bottom:473.271067pt;}
.y202{bottom:474.528000pt;}
.ya6{bottom:474.926667pt;}
.yf4{bottom:475.724000pt;}
.ya{bottom:478.990666pt;}
.y22a{bottom:479.390667pt;}
.y1e5{bottom:483.434667pt;}
.y84{bottom:485.686667pt;}
.y1bf{bottom:485.988000pt;}
.y25e{bottom:487.081333pt;}
.yce{bottom:487.678667pt;}
.y14e{bottom:489.049333pt;}
.y201{bottom:491.265333pt;}
.ya5{bottom:491.664000pt;}
.y18e{bottom:491.910515pt;}
.yf3{bottom:492.461333pt;}
.y11c{bottom:493.922667pt;}
.y9{bottom:494.990666pt;}
.y229{bottom:495.012000pt;}
.y1e4{bottom:500.172000pt;}
.y18c{bottom:500.871067pt;}
.y25d{bottom:502.424000pt;}
.y83{bottom:503.618667pt;}
.ycd{bottom:504.416000pt;}
.y14d{bottom:505.786667pt;}
.y200{bottom:508.002667pt;}
.ya4{bottom:508.401333pt;}
.yf2{bottom:509.198667pt;}
.y18d{bottom:509.910443pt;}
.y228{bottom:510.633333pt;}
.y1be{bottom:513.961333pt;}
.y177{bottom:514.506667pt;}
.y1e3{bottom:516.909333pt;}
.y25c{bottom:517.766667pt;}
.ycc{bottom:521.153333pt;}
.y14c{bottom:522.524000pt;}
.y11b{bottom:523.810667pt;}
.y1ff{bottom:524.740000pt;}
.ya3{bottom:525.138667pt;}
.yf1{bottom:525.936000pt;}
.y227{bottom:526.254667pt;}
.y176{bottom:531.242667pt;}
.y25b{bottom:533.108000pt;}
.y82{bottom:533.506667pt;}
.y1e2{bottom:533.646667pt;}
.y18b{bottom:536.631067pt;}
.y4d{bottom:538.497333pt;}
.y14b{bottom:539.261333pt;}
.y1bd{bottom:539.440000pt;}
.y11a{bottom:540.548000pt;}
.y1fe{bottom:541.477333pt;}
.ycb{bottom:541.876000pt;}
.yf0{bottom:542.673333pt;}
.ya2{bottom:545.861333pt;}
.y175{bottom:547.980000pt;}
.y25a{bottom:548.450667pt;}
.y81{bottom:550.244000pt;}
.y1e1{bottom:550.384000pt;}
.y4c{bottom:555.793333pt;}
.y119{bottom:557.285333pt;}
.y226{bottom:557.816000pt;}
.y1fd{bottom:558.214667pt;}
.y1bb{bottom:558.249333pt;}
.yef{bottom:559.410667pt;}
.y14a{bottom:559.984000pt;}
.y259{bottom:563.793333pt;}
.y1bc{bottom:564.558667pt;}
.y80{bottom:566.981333pt;}
.y1e0{bottom:567.121333pt;}
.y18a{bottom:568.396299pt;}
.y174{bottom:568.702667pt;}
.y1ba{bottom:570.869333pt;}
.yca{bottom:571.764000pt;}
.y8{bottom:573.786667pt;}
.y225{bottom:574.553333pt;}
.y1fc{bottom:574.952000pt;}
.ya1{bottom:575.749333pt;}
.yee{bottom:576.148000pt;}
.y258{bottom:579.136000pt;}
.y118{bottom:580.664000pt;}
.y1b9{bottom:583.488000pt;}
.y7f{bottom:583.718667pt;}
.y189{bottom:585.436979pt;}
.y4b{bottom:589.028000pt;}
.y149{bottom:589.872000pt;}
.y224{bottom:591.290667pt;}
.y1fb{bottom:591.689333pt;}
.y7{bottom:592.685334pt;}
.yed{bottom:592.885333pt;}
.y257{bottom:594.478667pt;}
.y117{bottom:597.401333pt;}
.y173{bottom:598.590667pt;}
.y1df{bottom:598.769333pt;}
.y1b7{bottom:602.509333pt;}
.y188{bottom:602.556483pt;}
.y7e{bottom:604.441333pt;}
.y4a{bottom:606.322667pt;}
.y148{bottom:606.609333pt;}
.y223{bottom:608.028000pt;}
.ya0{bottom:608.426667pt;}
.yec{bottom:609.622667pt;}
.y256{bottom:609.821333pt;}
.y116{bottom:614.138667pt;}
.y1b6{bottom:615.129333pt;}
.y172{bottom:615.328000pt;}
.y1de{bottom:615.518667pt;}
.y187{bottom:619.595827pt;}
.y7d{bottom:621.178667pt;}
.y1b8{bottom:621.438667pt;}
.y147{bottom:623.346667pt;}
.y49{bottom:623.618667pt;}
.y222{bottom:624.765333pt;}
.y9f{bottom:625.164000pt;}
.yeb{bottom:626.358667pt;}
.y1b5{bottom:627.748000pt;}
.y1dd{bottom:630.130667pt;}
.y115{bottom:630.876000pt;}
.y171{bottom:632.065333pt;}
.y186{bottom:636.715331pt;}
.y7c{bottom:637.916000pt;}
.y146{bottom:640.082667pt;}
.y1b4{bottom:640.368000pt;}
.y255{bottom:640.506667pt;}
.y48{bottom:640.913333pt;}
.y221{bottom:641.502667pt;}
.y9e{bottom:641.901333pt;}
.yea{bottom:643.096000pt;}
.y1dc{bottom:644.742667pt;}
.y6{bottom:645.598667pt;}
.y114{bottom:647.613333pt;}
.y170{bottom:648.802667pt;}
.y185{bottom:653.834835pt;}
.y7b{bottom:654.653333pt;}
.y254{bottom:655.848000pt;}
.y145{bottom:656.820000pt;}
.y47{bottom:658.209333pt;}
.y220{bottom:658.240000pt;}
.y9d{bottom:658.638667pt;}
.y1b3{bottom:659.389333pt;}
.ye9{bottom:659.833333pt;}
.y113{bottom:664.350667pt;}
.y16f{bottom:665.540000pt;}
.y1db{bottom:665.757333pt;}
.y3{bottom:668.977329pt;}
.y184{bottom:670.874179pt;}
.y253{bottom:671.190667pt;}
.y7a{bottom:671.390667pt;}
.y1b2{bottom:672.008000pt;}
.y144{bottom:673.557333pt;}
.y21f{bottom:674.977333pt;}
.y9c{bottom:675.376000pt;}
.y46{bottom:675.504000pt;}
.ye8{bottom:680.556000pt;}
.y112{bottom:681.088000pt;}
.y16e{bottom:682.277333pt;}
.y1b1{bottom:684.628000pt;}
.y252{bottom:686.533333pt;}
.y183{bottom:687.993683pt;}
.y79{bottom:688.128000pt;}
.y143{bottom:690.294667pt;}
.y21e{bottom:691.714667pt;}
.y9b{bottom:692.113333pt;}
.y45{bottom:692.798667pt;}
.y1da{bottom:693.862667pt;}
.y111{bottom:697.825333pt;}
.y16d{bottom:699.014667pt;}
.y251{bottom:701.876000pt;}
.y1b0{bottom:703.649333pt;}
.yc9{bottom:704.865333pt;}
.y182{bottom:705.113187pt;}
.y142{bottom:707.032000pt;}
.y21d{bottom:708.452000pt;}
.y78{bottom:708.850667pt;}
.y44{bottom:710.094667pt;}
.ye7{bottom:710.444000pt;}
.y279{bottom:713.166667pt;}
.y110{bottom:714.562667pt;}
.y16c{bottom:715.752000pt;}
.y1af{bottom:716.268000pt;}
.y250{bottom:717.218667pt;}
.yc8{bottom:721.602667pt;}
.y181{bottom:722.152531pt;}
.y141{bottom:723.769333pt;}
.y21c{bottom:725.189333pt;}
.y77{bottom:725.588000pt;}
.ye6{bottom:727.181333pt;}
.y43{bottom:727.389333pt;}
.y278{bottom:728.509333pt;}
.y10f{bottom:731.300000pt;}
.y16b{bottom:732.489333pt;}
.y24f{bottom:732.561333pt;}
.y1ae{bottom:735.289333pt;}
.yc7{bottom:738.340000pt;}
.y180{bottom:739.272035pt;}
.y140{bottom:740.506667pt;}
.y21b{bottom:741.926667pt;}
.y76{bottom:742.324000pt;}
.y277{bottom:743.852000pt;}
.y42{bottom:744.684000pt;}
.y24e{bottom:747.904000pt;}
.y1ad{bottom:747.909333pt;}
.y10e{bottom:748.036000pt;}
.y16a{bottom:749.226667pt;}
.yc6{bottom:755.077333pt;}
.y17f{bottom:756.311379pt;}
.y13f{bottom:757.244000pt;}
.y21a{bottom:758.664000pt;}
.y75{bottom:759.061333pt;}
.ye5{bottom:759.858667pt;}
.y1ac{bottom:760.528000pt;}
.y41{bottom:761.980000pt;}
.y24d{bottom:763.246667pt;}
.y10d{bottom:764.773333pt;}
.y169{bottom:765.964000pt;}
.yc5{bottom:771.814667pt;}
.y17e{bottom:773.430883pt;}
.y13e{bottom:773.981333pt;}
.y219{bottom:775.401333pt;}
.y74{bottom:775.798667pt;}
.y24c{bottom:778.589333pt;}
.y40{bottom:779.274667pt;}
.y1ab{bottom:779.549333pt;}
.y10c{bottom:781.510667pt;}
.y2{bottom:781.661334pt;}
.y168{bottom:782.701333pt;}
.yc4{bottom:788.552000pt;}
.y17d{bottom:790.550387pt;}
.y13d{bottom:790.718667pt;}
.y1aa{bottom:792.169333pt;}
.y73{bottom:792.536000pt;}
.y24b{bottom:793.930667pt;}
.y218{bottom:796.122667pt;}
.y10b{bottom:798.248000pt;}
.y167{bottom:799.438667pt;}
.y1a9{bottom:804.788000pt;}
.yc3{bottom:805.289333pt;}
.y13c{bottom:807.456000pt;}
.y17c{bottom:807.591067pt;}
.y72{bottom:809.273333pt;}
.y3f{bottom:813.573333pt;}
.y166{bottom:816.176000pt;}
.y10a{bottom:821.628000pt;}
.yc2{bottom:822.025333pt;}
.y1a8{bottom:823.810667pt;}
.y13b{bottom:824.193333pt;}
.y24a{bottom:824.616000pt;}
.y71{bottom:826.010667pt;}
.y3e{bottom:827.920000pt;}
.y1a7{bottom:836.429333pt;}
.yc1{bottom:838.762667pt;}
.y249{bottom:839.958667pt;}
.y3d{bottom:842.265333pt;}
.y109{bottom:842.349333pt;}
.y70{bottom:842.748000pt;}
.y165{bottom:851.785333pt;}
.y248{bottom:855.301333pt;}
.y1a6{bottom:855.450667pt;}
.yc0{bottom:855.500000pt;}
.y17a{bottom:856.231187pt;}
.y13a{bottom:857.100000pt;}
.y1{bottom:859.312000pt;}
.y6f{bottom:859.485333pt;}
.y179{bottom:864.791067pt;}
.y1a5{bottom:868.070667pt;}
.y164{bottom:870.594667pt;}
.y247{bottom:870.644000pt;}
.ybf{bottom:872.237333pt;}
.y139{bottom:873.252000pt;}
.y6e{bottom:876.222667pt;}
.y163{bottom:883.214667pt;}
.y3c{bottom:885.836000pt;}
.y138{bottom:885.870667pt;}
.y246{bottom:885.986667pt;}
.ybe{bottom:888.974667pt;}
.y6d{bottom:892.960000pt;}
.y162{bottom:895.833333pt;}
.y1a4{bottom:897.438667pt;}
.y137{bottom:898.490667pt;}
.y245{bottom:901.329333pt;}
.ybd{bottom:905.712000pt;}
.y161{bottom:908.453333pt;}
.y6c{bottom:909.697333pt;}
.y136{bottom:911.109333pt;}
.y244{bottom:916.670667pt;}
.y160{bottom:921.072000pt;}
.y3b{bottom:921.320000pt;}
.ybc{bottom:922.449333pt;}
.y135{bottom:923.729333pt;}
.y6b{bottom:926.434667pt;}
.y243{bottom:932.013333pt;}
.y15f{bottom:933.692000pt;}
.y134{bottom:936.348000pt;}
.ybb{bottom:939.186667pt;}
.y6a{bottom:943.172000pt;}
.y3a{bottom:946.425333pt;}
.y242{bottom:947.356000pt;}
.y15e{bottom:952.713333pt;}
.y132{bottom:955.369333pt;}
.yba{bottom:955.924000pt;}
.y15d{bottom:959.022667pt;}
.y69{bottom:959.909333pt;}
.y131{bottom:961.678667pt;}
.y241{bottom:962.698667pt;}
.y133{bottom:967.989333pt;}
.y39{bottom:971.530667pt;}
.yb9{bottom:972.661333pt;}
.y68{bottom:976.646667pt;}
.y240{bottom:978.041333pt;}
.y67{bottom:993.384000pt;}
.y130{bottom:994.700000pt;}
.y36{bottom:1010.186667pt;}
.y66{bottom:1046.810667pt;}
.h22{height:26.890973pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h14{height:28.291958pt;}
.h7{height:28.560000pt;}
.h16{height:30.732706pt;}
.h10{height:30.945242pt;}
.h13{height:31.200285pt;}
.h18{height:34.574438pt;}
.h11{height:34.813542pt;}
.h27{height:35.100467pt;}
.hf{height:38.415786pt;}
.h20{height:38.462187pt;}
.h12{height:38.681455pt;}
.hd{height:39.000258pt;}
.h1f{height:39.349375pt;}
.h1c{height:39.359687pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h28{height:43.660390pt;}
.h1e{height:44.390625pt;}
.hb{height:45.271688pt;}
.h23{height:48.144306pt;}
.h2{height:48.960000pt;}
.h1d{height:49.421563pt;}
.hc{height:54.767117pt;}
.h19{height:55.970039pt;}
.h15{height:55.975372pt;}
.h17{height:56.182575pt;}
.h25{height:63.801105pt;}
.h26{height:64.034876pt;}
.h24{height:64.040209pt;}
.he{height:69.148877pt;}
.h5{height:69.360000pt;}
.h1a{height:81.207372pt;}
.h21{height:81.212706pt;}
.h4{height:105.826671pt;}
.h1b{height:281.804000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:175.580236pt;}
.w5{width:479.961333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x24{left:-171.069333pt;}
.x30{left:-154.509333pt;}
.x32{left:-111.789820pt;}
.x34{left:-110.029675pt;}
.x33{left:-106.589513pt;}
.x31{left:-101.469333pt;}
.x27{left:-79.229333pt;}
.x0{left:0.000000pt;}
.x26{left:2.770761pt;}
.x25{left:31.090667pt;}
.x7{left:46.689333pt;}
.x5{left:47.621333pt;}
.x6{left:51.603593pt;}
.x42{left:55.321333pt;}
.x21{left:58.688000pt;}
.x23{left:59.962667pt;}
.x3e{left:60.916000pt;}
.x22{left:62.693333pt;}
.x1f{left:64.377333pt;}
.x3c{left:65.672000pt;}
.x20{left:66.806667pt;}
.x1e{left:67.864000pt;}
.x3b{left:74.625333pt;}
.x53{left:76.309333pt;}
.x41{left:81.282667pt;}
.x46{left:82.416000pt;}
.x1b{left:85.397333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x36{left:176.042667pt;}
.x1c{left:179.253333pt;}
.x4{left:180.874667pt;}
.x40{left:200.069333pt;}
.x3d{left:204.373333pt;}
.x37{left:208.188000pt;}
.x9{left:220.912000pt;}
.x8{left:221.858667pt;}
.x45{left:225.068000pt;}
.x44{left:228.405333pt;}
.x52{left:229.828000pt;}
.x18{left:231.353333pt;}
.x17{left:232.777333pt;}
.x16{left:234.488000pt;}
.x43{left:236.620000pt;}
.x15{left:242.590667pt;}
.x14{left:243.569333pt;}
.x50{left:247.058667pt;}
.xa{left:250.204000pt;}
.xb{left:252.608000pt;}
.x4c{left:262.606667pt;}
.x4a{left:263.974667pt;}
.x28{left:270.529387pt;}
.x29{left:271.649843pt;}
.x4b{left:272.864000pt;}
.x4f{left:281.274667pt;}
.x38{left:282.498667pt;}
.x51{left:292.942667pt;}
.xc{left:298.949333pt;}
.x39{left:306.973333pt;}
.x19{left:314.854667pt;}
.x2b{left:322.369532pt;}
.x2a{left:332.048994pt;}
.x1a{left:339.369333pt;}
.x2d{left:388.209374pt;}
.x2c{left:392.609737pt;}
.xd{left:396.133333pt;}
.x3{left:404.408000pt;}
.x4d{left:446.396000pt;}
.x49{left:458.213333pt;}
.x2f{left:465.088183pt;}
.x2e{left:472.848580pt;}
.x35{left:478.928636pt;}
.x3a{left:480.593333pt;}
.xf{left:484.705333pt;}
.xe{left:491.118667pt;}
.x47{left:499.765333pt;}
.x48{left:510.690667pt;}
.x1d{left:555.377333pt;}
.x11{left:566.768000pt;}
.x10{left:570.306667pt;}
.x4e{left:610.250667pt;}
.x13{left:649.653333pt;}
.x12{left:658.797333pt;}
.x3f{left:671.120000pt;}
}




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