
    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_42a654e00180ec1a3af0f5bb.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7bc7be080fe714ab6ae554ac.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d4ebe5169b37a403bb572e2a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e6467a88a5816bf751172a06.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_43171097988d627bab78877e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.191000;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_f2eddce8bf34ca2b7af9373b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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_23044718bd329c104cfad7ee.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.738281;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_9e131325d2739cd3dfa60aaa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.995117;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_543b5fe769c83225c33bd34e.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.004883;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_dc245f1eade08162a98def20.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;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_0b76642791d7ddcecfb95643.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.996094;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_1fed3ce5ffa8d199215854f8.woff2')format("woff");}.fff{font-family:fff;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_99c8bafc2a0fb1589be1f2a6.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.004883;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fa1239af4acfa239de88cb6c.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.998047;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_068186cf66a613658d307ef0.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.982422;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_83ad3aee3da94555124cb1a0.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.004883;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_47b5b44c1addb2b097de3a56.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.738281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3afaf87436db1d5379df27b5.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.995117;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b02f52863dd9e0b4a786b321.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.008301;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;}
.mb{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);}
.m2a{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);}
.m20{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m21{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);}
.m8{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);}
.m22{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);}
.m10{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);}
.m1a{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);}
.m1f{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);}
.m6{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);}
.m1b{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);}
.m17{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);}
.mc{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);}
.m12{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);}
.mf{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);}
.m3{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);}
.m18{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);}
.m2{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);}
.m24{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);}
.m26{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);}
.m25{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);}
.m14{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);}
.m9{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);}
.m1d{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);}
.m5{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);}
.m23{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);}
.ma{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);}
.m15{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);}
.m2b{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);}
.m27{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);}
.md{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);}
.m4{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);}
.me{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);}
.m19{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);}
.m29{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);}
.m2c{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m13{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);}
.m16{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);}
.m1{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);}
.m11{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);}
.v0{vertical-align:0.000000px;}
.ls4a{letter-spacing:-0.253800px;}
.ls4c{letter-spacing:-0.240480px;}
.ls20{letter-spacing:-0.234468px;}
.ls49{letter-spacing:-0.210420px;}
.ls33{letter-spacing:-0.192384px;}
.ls44{letter-spacing:-0.180360px;}
.ls45{letter-spacing:-0.168336px;}
.ls39{letter-spacing:-0.150300px;}
.ls30{letter-spacing:-0.138276px;}
.ls36{letter-spacing:-0.132264px;}
.ls32{letter-spacing:-0.126252px;}
.ls4d{letter-spacing:-0.120240px;}
.ls21{letter-spacing:-0.108216px;}
.ls25{letter-spacing:-0.102204px;}
.ls4b{letter-spacing:-0.096192px;}
.ls2e{letter-spacing:-0.090972px;}
.ls31{letter-spacing:-0.090180px;}
.ls1f{letter-spacing:-0.086184px;}
.ls38{letter-spacing:-0.084168px;}
.ls2f{letter-spacing:-0.078156px;}
.ls3d{letter-spacing:-0.072144px;}
.ls37{letter-spacing:-0.066132px;}
.ls3c{letter-spacing:-0.060120px;}
.ls35{letter-spacing:-0.054108px;}
.ls43{letter-spacing:-0.054000px;}
.ls4e{letter-spacing:-0.048096px;}
.ls3b{letter-spacing:-0.042084px;}
.ls24{letter-spacing:-0.036072px;}
.ls22{letter-spacing:-0.030060px;}
.ls34{letter-spacing:-0.024048px;}
.ls42{letter-spacing:-0.021600px;}
.ls23{letter-spacing:-0.018036px;}
.ls3a{letter-spacing:-0.012024px;}
.ls41{letter-spacing:-0.006012px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.003178px;}
.ls52{letter-spacing:0.003583px;}
.ls8{letter-spacing:0.004800px;}
.lse{letter-spacing:0.006012px;}
.ls1a{letter-spacing:0.010800px;}
.ls10{letter-spacing:0.012024px;}
.lsf{letter-spacing:0.018036px;}
.ls13{letter-spacing:0.021600px;}
.ls11{letter-spacing:0.024048px;}
.ls2c{letter-spacing:0.027000px;}
.ls15{letter-spacing:0.030060px;}
.ls12{letter-spacing:0.032400px;}
.ls28{letter-spacing:0.033516px;}
.ls14{letter-spacing:0.036072px;}
.ls1d{letter-spacing:0.037800px;}
.ls2d{letter-spacing:0.042084px;}
.lsc{letter-spacing:0.043092px;}
.ls19{letter-spacing:0.043200px;}
.lsa{letter-spacing:0.052668px;}
.ls3f{letter-spacing:0.054000px;}
.ls16{letter-spacing:0.054108px;}
.ls1b{letter-spacing:0.059400px;}
.ls17{letter-spacing:0.060120px;}
.ls2a{letter-spacing:0.066132px;}
.ls40{letter-spacing:0.078156px;}
.ls48{letter-spacing:0.081000px;}
.ls2b{letter-spacing:0.138276px;}
.ls1c{letter-spacing:0.140400px;}
.ls18{letter-spacing:0.150300px;}
.ls29{letter-spacing:0.167580px;}
.lsd{letter-spacing:0.177156px;}
.ls27{letter-spacing:0.181944px;}
.lsb{letter-spacing:0.191520px;}
.ls26{letter-spacing:0.378756px;}
.ls7{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls3{letter-spacing:10.461300px;}
.ls5{letter-spacing:11.954850px;}
.ls4f{letter-spacing:13.448400px;}
.ls50{letter-spacing:13.454400px;}
.ls51{letter-spacing:13.487210px;}
.ls3e{letter-spacing:13.987490px;}
.ls46{letter-spacing:14.884124px;}
.ls0{letter-spacing:14.942725px;}
.ls47{letter-spacing:18.231558px;}
.ls4{letter-spacing:28.453654px;}
.ls1{letter-spacing:84.316766px;}
.ls1e{letter-spacing:849.309228px;}
.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;}
}
.ws64{word-spacing:-60.270300px;}
.ws65{word-spacing:-15.030000px;}
.ws1{word-spacing:-14.943900px;}
.ws88{word-spacing:-13.500000px;}
.ws66{word-spacing:-13.449600px;}
.ws63{word-spacing:-12.161520px;}
.ws87{word-spacing:-12.151944px;}
.ws2f{word-spacing:-11.955150px;}
.ws6{word-spacing:-10.460700px;}
.ws5f{word-spacing:-3.347434px;}
.wsd8{word-spacing:-2.801592px;}
.wsde{word-spacing:-2.795580px;}
.wsdd{word-spacing:-2.735460px;}
.wsea{word-spacing:-2.630126px;}
.ws30{word-spacing:-2.391024px;}
.ws9f{word-spacing:-2.362716px;}
.ws48{word-spacing:-2.151922px;}
.ws108{word-spacing:-2.056104px;}
.ws43{word-spacing:-2.032370px;}
.ws4d{word-spacing:-1.972595px;}
.ws3c{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws111{word-spacing:-1.743480px;}
.ws137{word-spacing:-1.721549px;}
.ws45{word-spacing:-1.673717px;}
.ws107{word-spacing:-1.671336px;}
.ws27{word-spacing:-1.613941px;}
.wsdf{word-spacing:-1.599192px;}
.wse0{word-spacing:-1.569132px;}
.ws42{word-spacing:-1.494390px;}
.ws113{word-spacing:-1.400796px;}
.ws51{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.ws38{word-spacing:-1.315063px;}
.wsf6{word-spacing:-1.255288px;}
.ws40{word-spacing:-1.195512px;}
.ws3b{word-spacing:-1.135736px;}
.wsbf{word-spacing:-1.016185px;}
.wsd0{word-spacing:-1.004004px;}
.ws6c{word-spacing:-0.991980px;}
.wsbd{word-spacing:-0.967932px;}
.wse7{word-spacing:-0.956410px;}
.wsbe{word-spacing:-0.919836px;}
.ws8b{word-spacing:-0.896634px;}
.wsc6{word-spacing:-0.860774px;}
.ws6b{word-spacing:-0.751500px;}
.wsa8{word-spacing:-0.685368px;}
.wsef{word-spacing:-0.657532px;}
.ws72{word-spacing:-0.649296px;}
.ws28{word-spacing:-0.358654px;}
.wsd9{word-spacing:-0.348696px;}
.ws105{word-spacing:-0.342684px;}
.ws80{word-spacing:-0.324648px;}
.wsaa{word-spacing:-0.300600px;}
.ws29{word-spacing:-0.298878px;}
.ws103{word-spacing:-0.253800px;}
.wsb2{word-spacing:-0.246492px;}
.ws2a{word-spacing:-0.239102px;}
.ws19{word-spacing:-0.215194px;}
.wsbb{word-spacing:-0.180360px;}
.ws33{word-spacing:-0.179327px;}
.wsb1{word-spacing:-0.162324px;}
.ws12d{word-spacing:-0.161395px;}
.ws93{word-spacing:-0.144288px;}
.ws95{word-spacing:-0.132264px;}
.ws69{word-spacing:-0.129276px;}
.ws8e{word-spacing:-0.124488px;}
.ws24{word-spacing:-0.119551px;}
.ws1d{word-spacing:-0.107597px;}
.wsdc{word-spacing:-0.090180px;}
.ws94{word-spacing:-0.078156px;}
.ws21{word-spacing:-0.059776px;}
.ws122{word-spacing:-0.053798px;}
.ws12{word-spacing:-0.047821px;}
.ws7{word-spacing:-0.041843px;}
.ws0{word-spacing:0.000000px;}
.wsa1{word-spacing:0.024048px;}
.ws129{word-spacing:0.053798px;}
.ws20{word-spacing:0.059776px;}
.wsba{word-spacing:0.066132px;}
.ws7d{word-spacing:0.078156px;}
.ws119{word-spacing:0.084168px;}
.ws73{word-spacing:0.090180px;}
.wsc9{word-spacing:0.096192px;}
.ws17{word-spacing:0.107597px;}
.ws7a{word-spacing:0.114228px;}
.ws25{word-spacing:0.119551px;}
.wsca{word-spacing:0.120240px;}
.ws82{word-spacing:0.124200px;}
.ws74{word-spacing:0.132264px;}
.ws81{word-spacing:0.140400px;}
.ws98{word-spacing:0.144288px;}
.ws83{word-spacing:0.145800px;}
.ws75{word-spacing:0.151200px;}
.ws104{word-spacing:0.156600px;}
.ws12b{word-spacing:0.161395px;}
.ws76{word-spacing:0.162000px;}
.wsa3{word-spacing:0.167400px;}
.ws8f{word-spacing:0.168336px;}
.wse5{word-spacing:0.174348px;}
.wsa2{word-spacing:0.178200px;}
.ws23{word-spacing:0.179327px;}
.ws115{word-spacing:0.186372px;}
.ws79{word-spacing:0.198396px;}
.ws8{word-spacing:0.209214px;}
.ws127{word-spacing:0.215194px;}
.ws114{word-spacing:0.216432px;}
.ws3d{word-spacing:0.239102px;}
.ws125{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws37{word-spacing:0.298878px;}
.ws22{word-spacing:0.358654px;}
.ws1b{word-spacing:0.376589px;}
.ws109{word-spacing:0.402804px;}
.wsd3{word-spacing:0.414828px;}
.wsf5{word-spacing:0.418429px;}
.wscc{word-spacing:0.420840px;}
.ws123{word-spacing:0.430387px;}
.wsb4{word-spacing:0.468936px;}
.wsb5{word-spacing:0.486972px;}
.ws34{word-spacing:0.657532px;}
.ws50{word-spacing:0.717307px;}
.ws58{word-spacing:0.777083px;}
.wsb0{word-spacing:0.787572px;}
.wsa0{word-spacing:0.835668px;}
.ws4c{word-spacing:0.836858px;}
.ws12e{word-spacing:0.860774px;}
.ws99{word-spacing:0.865728px;}
.ws9a{word-spacing:0.913824px;}
.ws5c{word-spacing:0.956410px;}
.wsf8{word-spacing:0.968371px;}
.ws11f{word-spacing:1.022170px;}
.wse3{word-spacing:1.118232px;}
.ws3a{word-spacing:1.135736px;}
.ws71{word-spacing:1.166328px;}
.ws61{word-spacing:1.195512px;}
.ws70{word-spacing:1.196388px;}
.wsf7{word-spacing:1.237363px;}
.wse4{word-spacing:1.244484px;}
.wsa5{word-spacing:1.262520px;}
.wsc3{word-spacing:1.315063px;}
.ws11e{word-spacing:1.344960px;}
.ws84{word-spacing:1.374839px;}
.ws16{word-spacing:1.398758px;}
.ws36{word-spacing:1.434614px;}
.wse6{word-spacing:1.494390px;}
.wsd5{word-spacing:1.539072px;}
.wsd6{word-spacing:1.557108px;}
.ws121{word-spacing:1.560154px;}
.wse8{word-spacing:1.613941px;}
.ws18{word-spacing:1.667750px;}
.ws5b{word-spacing:1.733492px;}
.ws2c{word-spacing:1.793268px;}
.ws46{word-spacing:1.853044px;}
.ws10c{word-spacing:1.869732px;}
.ws116{word-spacing:1.911816px;}
.ws53{word-spacing:1.912819px;}
.ws117{word-spacing:1.923840px;}
.ws9{word-spacing:2.008454px;}
.ws44{word-spacing:2.032370px;}
.wsfa{word-spacing:2.151922px;}
.wsab{word-spacing:2.206404px;}
.ws5a{word-spacing:2.211697px;}
.wscb{word-spacing:2.230452px;}
.wsf0{word-spacing:2.271473px;}
.wsae{word-spacing:2.272536px;}
.wsaf{word-spacing:2.290572px;}
.wsac{word-spacing:2.314620px;}
.ws85{word-spacing:2.331248px;}
.ws91{word-spacing:2.338668px;}
.ws90{word-spacing:2.386764px;}
.ws26{word-spacing:2.391024px;}
.ws3e{word-spacing:2.450800px;}
.ws1a{word-spacing:2.474726px;}
.ws124{word-spacing:2.528525px;}
.wsc4{word-spacing:2.630126px;}
.ws4e{word-spacing:2.689902px;}
.ws59{word-spacing:2.749678px;}
.ws41{word-spacing:2.809453px;}
.ws13{word-spacing:2.869236px;}
.wsb9{word-spacing:2.945880px;}
.ws10a{word-spacing:2.951892px;}
.ws118{word-spacing:2.963916px;}
.ws10b{word-spacing:2.975940px;}
.ws52{word-spacing:2.988780px;}
.ws11b{word-spacing:2.993976px;}
.ws11a{word-spacing:3.024036px;}
.wsdb{word-spacing:3.036060px;}
.ws15{word-spacing:3.066509px;}
.ws12c{word-spacing:3.223987px;}
.ws131{word-spacing:3.225725px;}
.ws139{word-spacing:3.226051px;}
.ws130{word-spacing:3.227904px;}
.ws13a{word-spacing:3.228778px;}
.ws7f{word-spacing:3.282552px;}
.wsf1{word-spacing:3.287658px;}
.wsb8{word-spacing:3.300588px;}
.ws7e{word-spacing:3.312612px;}
.ws14{word-spacing:3.335501px;}
.wsc7{word-spacing:3.336660px;}
.wsd2{word-spacing:3.364200px;}
.ws102{word-spacing:3.375000px;}
.wsb7{word-spacing:3.390768px;}
.wsfd{word-spacing:3.407209px;}
.wsa4{word-spacing:3.414816px;}
.wsd1{word-spacing:3.439800px;}
.wsc8{word-spacing:3.456900px;}
.ws49{word-spacing:3.466985px;}
.ws1f{word-spacing:3.586536px;}
.ws86{word-spacing:3.646312px;}
.wsda{word-spacing:3.673332px;}
.ws11c{word-spacing:3.679344px;}
.ws11d{word-spacing:3.691368px;}
.ws2b{word-spacing:3.706087px;}
.ws101{word-spacing:3.731400px;}
.ws100{word-spacing:3.747600px;}
.wsff{word-spacing:3.753000px;}
.wscf{word-spacing:3.781548px;}
.ws4f{word-spacing:3.825638px;}
.ws8c{word-spacing:3.885414px;}
.ws54{word-spacing:3.945190px;}
.wsd7{word-spacing:4.016016px;}
.wsb3{word-spacing:4.022028px;}
.ws6d{word-spacing:4.040064px;}
.ws77{word-spacing:4.058100px;}
.ws3f{word-spacing:4.064741px;}
.ws78{word-spacing:4.094172px;}
.wsce{word-spacing:4.136256px;}
.ws6e{word-spacing:4.166316px;}
.ws4b{word-spacing:4.184292px;}
.ws120{word-spacing:4.196275px;}
.ws31{word-spacing:4.244068px;}
.wse9{word-spacing:4.303843px;}
.ws97{word-spacing:4.340664px;}
.wsa9{word-spacing:4.376736px;}
.wse2{word-spacing:4.382748px;}
.ws10d{word-spacing:4.418820px;}
.ws10e{word-spacing:4.430844px;}
.ws96{word-spacing:4.707396px;}
.ws55{word-spacing:4.722272px;}
.ws1c{word-spacing:4.734259px;}
.ws89{word-spacing:4.841824px;}
.ws39{word-spacing:4.901599px;}
.wse1{word-spacing:4.935852px;}
.ws5e{word-spacing:4.961375px;}
.ws4a{word-spacing:5.080926px;}
.ws7c{word-spacing:5.104188px;}
.ws7b{word-spacing:5.170320px;}
.ws68{word-spacing:5.260253px;}
.ws62{word-spacing:5.439580px;}
.wsfb{word-spacing:5.678682px;}
.wsc1{word-spacing:5.756429px;}
.ws32{word-spacing:5.858009px;}
.ws56{word-spacing:5.977560px;}
.ws10{word-spacing:6.067206px;}
.wsc5{word-spacing:6.097111px;}
.wsc0{word-spacing:6.133018px;}
.ws11{word-spacing:6.150892px;}
.ws67{word-spacing:6.156887px;}
.ws9c{word-spacing:6.234444px;}
.wsf9{word-spacing:6.276438px;}
.ws9b{word-spacing:6.342660px;}
.ws9e{word-spacing:6.589152px;}
.ws6f{word-spacing:6.607188px;}
.ws112{word-spacing:6.637248px;}
.ws9d{word-spacing:6.679332px;}
.ws8a{word-spacing:6.754643px;}
.wsd4{word-spacing:6.919812px;}
.ws2d{word-spacing:7.113296px;}
.wsbc{word-spacing:7.286544px;}
.wsa7{word-spacing:7.304580px;}
.wsad{word-spacing:7.346664px;}
.ws8d{word-spacing:7.352399px;}
.ws60{word-spacing:7.412174px;}
.ws1e{word-spacing:7.424179px;}
.wsa6{word-spacing:7.442856px;}
.ws47{word-spacing:7.471950px;}
.wsc2{word-spacing:7.651277px;}
.ws5d{word-spacing:7.830604px;}
.ws92{word-spacing:8.044056px;}
.wsfc{word-spacing:8.249033px;}
.wse{word-spacing:8.661460px;}
.ws5{word-spacing:10.415351px;}
.ws106{word-spacing:10.527012px;}
.wsb6{word-spacing:11.218392px;}
.wsfe{word-spacing:11.615688px;}
.ws6a{word-spacing:11.620476px;}
.ws2e{word-spacing:11.905687px;}
.ws138{word-spacing:13.234406px;}
.ws132{word-spacing:13.288205px;}
.ws135{word-spacing:13.342003px;}
.ws13b{word-spacing:13.389475px;}
.ws13c{word-spacing:13.394045px;}
.ws12a{word-spacing:13.395802px;}
.ws133{word-spacing:13.449600px;}
.ws136{word-spacing:13.557197px;}
.wscd{word-spacing:14.819580px;}
.ws35{word-spacing:14.884124px;}
.ws4{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.ws126{word-spacing:16.619261px;}
.ws12f{word-spacing:16.619520px;}
.ws134{word-spacing:16.622669px;}
.ws128{word-spacing:16.623706px;}
.wsd{word-spacing:17.699504px;}
.ws10f{word-spacing:19.202328px;}
.ws110{word-spacing:19.424772px;}
.ws57{word-spacing:21.937645px;}
.wsf{word-spacing:27.448877px;}
.wsed{word-spacing:237.250944px;}
.wsf4{word-spacing:239.618074px;}
.wsee{word-spacing:239.671872px;}
.wseb{word-spacing:245.482099px;}
.wsec{word-spacing:247.849229px;}
.wsf2{word-spacing:248.172019px;}
.wsf3{word-spacing:250.592947px;}
._2{margin-left:-21.578992px;}
._d{margin-left:-18.648872px;}
._6{margin-left:-15.607369px;}
._0{margin-left:-7.962163px;}
._e{margin-left:-6.567769px;}
._7{margin-left:-5.397721px;}
._1a{margin-left:-4.303843px;}
._8{margin-left:-3.096367px;}
._5{margin-left:-1.322630px;}
._1{width:1.673717px;}
._b{width:2.719782px;}
._3c{width:3.861593px;}
._a{width:12.971268px;}
._16{width:14.822586px;}
._22{width:15.834445px;}
._10{width:16.892698px;}
._12{width:17.946336px;}
._14{width:19.068416px;}
._19{width:20.234422px;}
._f{width:21.411763px;}
._1e{width:22.714728px;}
._11{width:23.725094px;}
._9{width:25.946136px;}
._1c{width:27.773714px;}
._1f{width:29.596489px;}
._13{width:30.920890px;}
._c{width:32.637384px;}
._1b{width:34.498088px;}
._21{width:37.240199px;}
._15{width:40.714751px;}
._1d{width:42.380900px;}
._4{width:54.420376px;}
._3d{width:61.868160px;}
._3{width:69.371784px;}
._26{width:180.170842px;}
._2f{width:182.860762px;}
._32{width:185.281690px;}
._24{width:219.497472px;}
._25{width:249.463181px;}
._30{width:254.574029px;}
._38{width:255.824980px;}
._2e{width:259.379968px;}
._31{width:261.747097px;}
._39{width:264.042547px;}
._2b{width:292.950169px;}
._2d{width:295.371097px;}
._28{width:308.605504px;}
._2a{width:311.026432px;}
._34{width:312.730099px;}
._36{width:320.907456px;}
._33{width:323.328384px;}
._35{width:339.629299px;}
._3a{width:346.838285px;}
._27{width:353.078899px;}
._37{width:360.287885px;}
._2c{width:365.183539px;}
._29{width:380.838874px;}
._17{width:889.654442px;}
._3b{width:2086.337484px;}
._20{width:2110.109904px;}
._23{width:2493.266700px;}
._18{width:2517.176700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(137,92,52);}
.fs5{font-size:41.842800px;}
.fs4{font-size:41.936104px;}
.fs3{font-size:47.236800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:47.880000px;}
.fs7{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fs9{font-size:60.120000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:147.405960px;}
.y12e{bottom:-652.642050px;}
.ye7{bottom:-531.215550px;}
.y1ab{bottom:-528.845550px;}
.y10e{bottom:-469.104363px;}
.y1cb{bottom:-463.225608px;}
.y10d{bottom:-449.935101px;}
.y1ca{bottom:-444.056346px;}
.y10c{bottom:-426.175677px;}
.y1c9{bottom:-424.796904px;}
.y1c8{bottom:-405.627642px;}
.y14b{bottom:-403.516461px;}
.y10b{bottom:-388.916307px;}
.y1c7{bottom:-386.368200px;}
.y14a{bottom:-384.257019px;}
.y10a{bottom:-369.747045px;}
.y1c6{bottom:-367.108758px;}
.y149{bottom:-364.997577px;}
.y109{bottom:-350.487603px;}
.y1c5{bottom:-347.939496px;}
.y148{bottom:-345.828315px;}
.y108{bottom:-331.228161px;}
.y1c4{bottom:-328.680054px;}
.y147{bottom:-326.568873px;}
.y107{bottom:-312.058899px;}
.y1c3{bottom:-309.509289px;}
.y146{bottom:-307.399611px;}
.y106{bottom:-292.799457px;}
.y1c2{bottom:-290.249847px;}
.y145{bottom:-288.140169px;}
.y105{bottom:-273.630195px;}
.y1c1{bottom:-270.990405px;}
.y144{bottom:-268.880727px;}
.y104{bottom:-254.370753px;}
.y1c0{bottom:-251.821143px;}
.y143{bottom:-249.709962px;}
.y103{bottom:-235.111311px;}
.y1bf{bottom:-232.561701px;}
.y142{bottom:-230.450520px;}
.y102{bottom:-215.942049px;}
.y1be{bottom:-213.302259px;}
.y141{bottom:-206.779773px;}
.y101{bottom:-196.682607px;}
.y1bd{bottom:-194.132997px;}
.y100{bottom:-177.513345px;}
.y1bc{bottom:-174.873555px;}
.y140{bottom:-169.520403px;}
.yc9{bottom:-165.586050px;}
.yff{bottom:-158.253903px;}
.y1bb{bottom:-155.704293px;}
.y13f{bottom:-150.260961px;}
.yfe{bottom:-138.994461px;}
.y1ba{bottom:-136.444851px;}
.y13e{bottom:-131.091699px;}
.yfd{bottom:-119.825199px;}
.y1b9{bottom:-117.185409px;}
.y13d{bottom:-111.832257px;}
.yfc{bottom:-100.565757px;}
.y1b8{bottom:-98.016147px;}
.y13c{bottom:-92.572815px;}
.yfb{bottom:-81.394992px;}
.y1b7{bottom:-74.345400px;}
.y13b{bottom:-73.402050px;}
.ydd{bottom:-63.346050px;}
.yfa{bottom:-62.135550px;}
.y1b6{bottom:-37.446000px;}
.y13a{bottom:-36.592500px;}
.yf9{bottom:-25.325550px;}
.ydc{bottom:-23.565900px;}
.y1b5{bottom:-20.075550px;}
.y139{bottom:-19.222050px;}
.y0{bottom:0.000000px;}
.y138{bottom:3.192000px;}
.y9{bottom:3.425340px;}
.yf6{bottom:6.174513px;}
.yf8{bottom:6.264513px;}
.y1b4{bottom:6.835674px;}
.yd9{bottom:7.937568px;}
.y1b2{bottom:10.254999px;}
.ydb{bottom:10.997676px;}
.y8{bottom:14.151273px;}
.y2{bottom:15.837920px;}
.yf5{bottom:21.924450px;}
.yf7{bottom:22.014450px;}
.yd8{bottom:23.687505px;}
.yda{bottom:26.837793px;}
.y1b3{bottom:27.085593px;}
.y1b1{bottom:30.504918px;}
.y4b{bottom:31.890000px;}
.ye3{bottom:89.773500px;}
.y1a7{bottom:90.807000px;}
.y162{bottom:100.344000px;}
.y12a{bottom:101.217000px;}
.y21{bottom:102.823500px;}
.y4a{bottom:103.621500px;}
.y208{bottom:106.561500px;}
.y80{bottom:108.471000px;}
.ye2{bottom:108.603000px;}
.y1a6{bottom:109.636500px;}
.y1dc{bottom:114.960000px;}
.yb8{bottom:118.299000px;}
.y161{bottom:119.173500px;}
.y129{bottom:120.046500px;}
.y20{bottom:120.711000px;}
.y49{bottom:122.449500px;}
.y207{bottom:123.822000px;}
.y7f{bottom:127.300500px;}
.ye1{bottom:127.432500px;}
.y1a5{bottom:128.466000px;}
.y1db{bottom:133.789500px;}
.y98{bottom:136.648500px;}
.y1f{bottom:138.600000px;}
.y128{bottom:138.876000px;}
.y206{bottom:141.082500px;}
.y48{bottom:141.279000px;}
.y160{bottom:142.486500px;}
.y7e{bottom:146.130000px;}
.ye0{bottom:146.262000px;}
.y1a4{bottom:147.295500px;}
.y1da{bottom:152.617500px;}
.y1e{bottom:156.487500px;}
.y127{bottom:157.704000px;}
.y205{bottom:158.341500px;}
.y47{bottom:160.108500px;}
.y7d{bottom:164.959500px;}
.y1a3{bottom:166.125000px;}
.ydf{bottom:169.575000px;}
.y9f{bottom:170.446500px;}
.y1d9{bottom:171.447000px;}
.y15f{bottom:172.914000px;}
.y1d{bottom:174.375000px;}
.y204{bottom:175.602000px;}
.y126{bottom:176.533500px;}
.y46{bottom:178.938000px;}
.y7c{bottom:183.789000px;}
.y171{bottom:188.730000px;}
.y9e{bottom:189.276000px;}
.y1d8{bottom:190.276500px;}
.y1c{bottom:192.264000px;}
.y203{bottom:192.862500px;}
.y125{bottom:195.363000px;}
.y45{bottom:197.767500px;}
.y7b{bottom:202.618500px;}
.y170{bottom:207.559500px;}
.y9d{bottom:208.105500px;}
.yde{bottom:208.968000px;}
.y1d7{bottom:209.106000px;}
.y202{bottom:210.123000px;}
.y1b{bottom:210.151500px;}
.y1a2{bottom:211.587000px;}
.y124{bottom:214.192500px;}
.y44{bottom:216.597000px;}
.y7a{bottom:221.448000px;}
.y173{bottom:224.892000px;}
.y16f{bottom:226.389000px;}
.y9c{bottom:226.935000px;}
.y201{bottom:227.383500px;}
.y1d6{bottom:227.935500px;}
.y1a1{bottom:228.025500px;}
.y1a{bottom:228.039000px;}
.yc6{bottom:231.397500px;}
.y123{bottom:233.022000px;}
.y43{bottom:235.426500px;}
.y79{bottom:240.276000px;}
.y1a0{bottom:244.464000px;}
.y200{bottom:244.644000px;}
.y16e{bottom:245.218500px;}
.y9b{bottom:245.764500px;}
.y1d5{bottom:246.765000px;}
.y42{bottom:254.256000px;}
.y122{bottom:256.335000px;}
.y78{bottom:259.105500px;}
.y19f{bottom:260.902500px;}
.y1ff{bottom:261.904500px;}
.y16d{bottom:264.048000px;}
.y1d4{bottom:265.594500px;}
.y9a{bottom:269.077500px;}
.y137{bottom:272.921883px;}
.y41{bottom:273.085500px;}
.y1ae{bottom:275.394720px;}
.y19e{bottom:277.341000px;}
.y77{bottom:277.935000px;}
.y1fe{bottom:279.165000px;}
.y16c{bottom:282.876000px;}
.y1d3{bottom:284.424000px;}
.y1b0{bottom:287.544972px;}
.y121{bottom:289.959000px;}
.y40{bottom:291.915000px;}
.y136{bottom:292.181325px;}
.y19d{bottom:293.779500px;}
.y1ad{bottom:295.644639px;}
.y1fd{bottom:296.425500px;}
.y76{bottom:296.764500px;}
.y16b{bottom:301.705500px;}
.y1d2{bottom:303.253500px;}
.y19{bottom:307.299000px;}
.y1af{bottom:307.794891px;}
.y99{bottom:308.470500px;}
.y120{bottom:308.788500px;}
.y19c{bottom:310.216500px;}
.y3f{bottom:310.744500px;}
.y135{bottom:311.440767px;}
.yf4{bottom:312.900813px;}
.y1fc{bottom:313.684500px;}
.y75{bottom:315.594000px;}
.y16a{bottom:320.535000px;}
.y1d1{bottom:322.083000px;}
.y18{bottom:325.186500px;}
.y19b{bottom:326.655000px;}
.y11f{bottom:327.618000px;}
.y3e{bottom:329.574000px;}
.y134{bottom:330.610029px;}
.y1fb{bottom:330.945000px;}
.yf3{bottom:332.160255px;}
.y74{bottom:334.423500px;}
.y169{bottom:339.364500px;}
.yb7{bottom:340.408500px;}
.y1d0{bottom:340.912500px;}
.y17{bottom:343.074000px;}
.y19a{bottom:343.093500px;}
.y11e{bottom:346.447500px;}
.y1fa{bottom:348.205500px;}
.y3d{bottom:348.403500px;}
.y133{bottom:349.869471px;}
.yf2{bottom:351.419697px;}
.y73{bottom:353.253000px;}
.y168{bottom:358.194000px;}
.yb6{bottom:359.238000px;}
.y199{bottom:359.532000px;}
.y1cf{bottom:359.742000px;}
.y16{bottom:360.963000px;}
.y11d{bottom:365.277000px;}
.y1f9{bottom:365.466000px;}
.y3c{bottom:367.233000px;}
.y132{bottom:369.038733px;}
.yf1{bottom:370.679139px;}
.y72{bottom:372.082500px;}
.y198{bottom:375.970500px;}
.y167{bottom:377.023500px;}
.yb5{bottom:378.067500px;}
.y1f8{bottom:382.726500px;}
.y1ce{bottom:383.055000px;}
.y11c{bottom:384.106500px;}
.y3b{bottom:386.062500px;}
.y131{bottom:388.298175px;}
.yf0{bottom:389.848401px;}
.y71{bottom:390.912000px;}
.y166{bottom:395.853000px;}
.yb4{bottom:396.897000px;}
.y15{bottom:399.024000px;}
.y197{bottom:399.612000px;}
.y1f7{bottom:399.987000px;}
.y11b{bottom:402.936000px;}
.y3a{bottom:404.892000px;}
.y130{bottom:407.557617px;}
.yef{bottom:409.107843px;}
.y70{bottom:409.741500px;}
.yd7{bottom:410.507100px;}
.y165{bottom:414.682500px;}
.yb3{bottom:415.726500px;}
.y14{bottom:416.913000px;}
.y1f6{bottom:417.247500px;}
.y15e{bottom:419.143500px;}
.y11a{bottom:421.765500px;}
.y39{bottom:423.721500px;}
.y1cd{bottom:423.943500px;}
.y12f{bottom:426.728382px;}
.yee{bottom:428.367285px;}
.y6f{bottom:428.571000px;}
.yd6{bottom:429.766542px;}
.y196{bottom:431.230500px;}
.y1f5{bottom:434.508000px;}
.yb2{bottom:434.556000px;}
.y13{bottom:434.800500px;}
.y15d{bottom:437.973000px;}
.y164{bottom:437.995500px;}
.y119{bottom:440.595000px;}
.y38{bottom:442.551000px;}
.y1cc{bottom:443.176500px;}
.y6e{bottom:447.400500px;}
.yed{bottom:447.536547px;}
.yd5{bottom:448.935804px;}
.y1f4{bottom:451.767000px;}
.y15c{bottom:456.802500px;}
.yb1{bottom:457.869000px;}
.y118{bottom:459.424500px;}
.y37{bottom:461.380500px;}
.y195{bottom:464.442000px;}
.y1a8{bottom:465.604500px;}
.y6d{bottom:466.230000px;}
.yec{bottom:466.795989px;}
.yd4{bottom:468.195246px;}
.y1f3{bottom:469.027500px;}
.y12{bottom:470.622000px;}
.y15b{bottom:475.632000px;}
.y117{bottom:478.254000px;}
.y163{bottom:478.884000px;}
.y36{bottom:480.210000px;}
.y12d{bottom:481.448085px;}
.y194{bottom:483.271500px;}
.y6c{bottom:485.059500px;}
.yeb{bottom:485.965251px;}
.y1f2{bottom:486.288000px;}
.yd3{bottom:487.454688px;}
.y11{bottom:488.509500px;}
.y12c{bottom:491.077950px;}
.yb0{bottom:491.493000px;}
.y15a{bottom:494.461500px;}
.y116{bottom:497.083500px;}
.y193{bottom:502.101000px;}
.y35{bottom:503.523000px;}
.y1f1{bottom:503.548500px;}
.y6b{bottom:503.889000px;}
.yea{bottom:505.224693px;}
.y10{bottom:506.397000px;}
.yd2{bottom:506.623950px;}
.yaf{bottom:510.322500px;}
.y159{bottom:513.291000px;}
.y115{bottom:515.913000px;}
.y1f0{bottom:520.809000px;}
.y192{bottom:520.930500px;}
.y6a{bottom:522.718500px;}
.ye9{bottom:524.484135px;}
.yae{bottom:529.152000px;}
.y158{bottom:532.120500px;}
.y114{bottom:534.742500px;}
.y1ef{bottom:538.069500px;}
.y191{bottom:539.760000px;}
.y69{bottom:541.548000px;}
.yf{bottom:542.218500px;}
.yd1{bottom:543.433950px;}
.y1ac{bottom:545.304963px;}
.yad{bottom:547.981500px;}
.ye8{bottom:548.154882px;}
.y157{bottom:550.950000px;}
.y113{bottom:553.572000px;}
.y1ee{bottom:555.330000px;}
.y190{bottom:558.589500px;}
.ye{bottom:560.106000px;}
.y68{bottom:564.861000px;}
.yd0{bottom:565.936074px;}
.yac{bottom:566.809500px;}
.y156{bottom:569.779500px;}
.y112{bottom:572.400000px;}
.y1ed{bottom:572.590500px;}
.y18f{bottom:577.419000px;}
.yd{bottom:577.993500px;}
.y34{bottom:578.673000px;}
.yab{bottom:585.639000px;}
.y155{bottom:588.609000px;}
.y1ec{bottom:589.851000px;}
.y111{bottom:591.229500px;}
.yc{bottom:595.882500px;}
.y18e{bottom:596.248500px;}
.y33{bottom:598.129500px;}
.y67{bottom:598.485000px;}
.ye6{bottom:602.874585px;}
.yaa{bottom:604.468500px;}
.y1aa{bottom:605.244585px;}
.y110{bottom:610.059000px;}
.y1eb{bottom:611.593500px;}
.y154{bottom:611.920500px;}
.ye5{bottom:612.504450px;}
.yb{bottom:613.770000px;}
.y1a9{bottom:614.874450px;}
.y18d{bottom:615.078000px;}
.y66{bottom:617.314500px;}
.y223{bottom:621.366000px;}
.ya9{bottom:623.298000px;}
.ya{bottom:631.657500px;}
.y18c{bottom:633.907500px;}
.yc5{bottom:634.362000px;}
.y32{bottom:635.518500px;}
.y65{bottom:636.144000px;}
.y222{bottom:638.626500px;}
.ya8{bottom:642.127500px;}
.y10f{bottom:643.626000px;}
.y1ea{bottom:645.217500px;}
.y153{bottom:645.544500px;}
.y18b{bottom:652.737000px;}
.yc4{bottom:653.191500px;}
.y7{bottom:654.028555px;}
.y64{bottom:654.973500px;}
.y31{bottom:654.976500px;}
.y221{bottom:655.887000px;}
.ya7{bottom:660.957000px;}
.y152{bottom:664.374000px;}
.ye4{bottom:666.054000px;}
.y97{bottom:671.130000px;}
.y18a{bottom:671.566500px;}
.y1e9{bottom:671.758500px;}
.yc3{bottom:672.021000px;}
.y220{bottom:673.147500px;}
.y63{bottom:673.801500px;}
.y30{bottom:674.433000px;}
.ya6{bottom:679.786500px;}
.y172{bottom:681.192000px;}
.y151{bottom:683.203500px;}
.y1e8{bottom:689.332500px;}
.y96{bottom:689.959500px;}
.y189{bottom:690.396000px;}
.y21f{bottom:690.408000px;}
.yc2{bottom:690.850500px;}
.y62{bottom:692.631000px;}
.y2f{bottom:693.891000px;}
.ya5{bottom:698.616000px;}
.y150{bottom:702.033000px;}
.y1e7{bottom:706.906500px;}
.y21e{bottom:707.668500px;}
.y95{bottom:708.789000px;}
.y188{bottom:709.225500px;}
.yc1{bottom:709.678500px;}
.y61{bottom:711.460500px;}
.y2e{bottom:713.347500px;}
.ya4{bottom:717.445500px;}
.y14f{bottom:720.862500px;}
.y21d{bottom:724.929000px;}
.y94{bottom:727.618500px;}
.y187{bottom:728.055000px;}
.yc0{bottom:728.508000px;}
.y60{bottom:730.290000px;}
.y2d{bottom:732.804000px;}
.y1e6{bottom:733.447500px;}
.ya3{bottom:736.275000px;}
.y14e{bottom:739.692000px;}
.y21c{bottom:742.189500px;}
.y93{bottom:746.448000px;}
.y186{bottom:746.884500px;}
.ybf{bottom:747.337500px;}
.y5f{bottom:749.119500px;}
.y2c{bottom:752.262000px;}
.ya2{bottom:755.104500px;}
.y21b{bottom:759.450000px;}
.y1e5{bottom:759.987000px;}
.y92{bottom:765.277500px;}
.y185{bottom:765.714000px;}
.ybe{bottom:766.167000px;}
.y5e{bottom:767.949000px;}
.y2b{bottom:771.718500px;}
.y14d{bottom:773.257500px;}
.y21a{bottom:776.709000px;}
.ya1{bottom:778.417500px;}
.y184{bottom:784.542000px;}
.ybd{bottom:784.996500px;}
.y1e4{bottom:786.528000px;}
.y5d{bottom:786.778500px;}
.y91{bottom:788.590500px;}
.y2a{bottom:791.175000px;}
.y14c{bottom:792.490500px;}
.y219{bottom:793.969500px;}
.y183{bottom:803.371500px;}
.ybc{bottom:803.826000px;}
.y1e3{bottom:804.102000px;}
.y5c{bottom:805.608000px;}
.y29{bottom:810.633000px;}
.y218{bottom:811.230000px;}
.y12b{bottom:814.920000px;}
.ycf{bottom:817.666029px;}
.ya0{bottom:817.810500px;}
.y1e2{bottom:821.676000px;}
.y182{bottom:822.201000px;}
.y90{bottom:822.214500px;}
.ybb{bottom:822.655500px;}
.y5b{bottom:824.437500px;}
.y217{bottom:828.490500px;}
.y28{bottom:830.089500px;}
.yce{bottom:836.925471px;}
.y181{bottom:841.030500px;}
.y8f{bottom:841.044000px;}
.yba{bottom:841.485000px;}
.y216{bottom:845.751000px;}
.y5a{bottom:847.750500px;}
.y1e1{bottom:848.217000px;}
.y27{bottom:849.547500px;}
.ycd{bottom:856.094733px;}
.y8e{bottom:859.873500px;}
.y215{bottom:863.011500px;}
.y1e0{bottom:865.791000px;}
.y26{bottom:869.004000px;}
.yb9{bottom:875.050500px;}
.ycc{bottom:875.354175px;}
.y8d{bottom:878.703000px;}
.y214{bottom:880.272000px;}
.y59{bottom:881.374500px;}
.y1df{bottom:883.365000px;}
.y180{bottom:886.492500px;}
.ycb{bottom:894.613617px;}
.y8c{bottom:897.532500px;}
.y58{bottom:900.204000px;}
.y1de{bottom:900.939000px;}
.y17f{bottom:902.931000px;}
.y25{bottom:906.549000px;}
.yca{bottom:913.784382px;}
.y213{bottom:914.793000px;}
.y8b{bottom:916.362000px;}
.y1dd{bottom:918.513000px;}
.y57{bottom:919.033500px;}
.y17e{bottom:919.369500px;}
.y24{bottom:922.687500px;}
.y212{bottom:932.052000px;}
.y8a{bottom:935.191500px;}
.y17d{bottom:935.808000px;}
.y56{bottom:937.863000px;}
.y23{bottom:938.827500px;}
.y211{bottom:949.312500px;}
.y17c{bottom:952.246500px;}
.y89{bottom:954.021000px;}
.y22{bottom:954.967500px;}
.y55{bottom:956.692500px;}
.y210{bottom:966.573000px;}
.yc8{bottom:968.504085px;}
.y17b{bottom:968.685000px;}
.y88{bottom:972.849000px;}
.y54{bottom:975.522000px;}
.yc7{bottom:978.133950px;}
.y20f{bottom:983.833500px;}
.y17a{bottom:985.123500px;}
.y87{bottom:991.678500px;}
.y53{bottom:994.351500px;}
.y6{bottom:998.460000px;}
.y20e{bottom:1001.094000px;}
.y179{bottom:1001.562000px;}
.y86{bottom:1010.508000px;}
.y52{bottom:1013.181000px;}
.y178{bottom:1018.000500px;}
.y20d{bottom:1018.354500px;}
.y85{bottom:1029.337500px;}
.y51{bottom:1032.010500px;}
.y177{bottom:1034.439000px;}
.y20c{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y84{bottom:1048.167000px;}
.y50{bottom:1050.840000px;}
.y176{bottom:1050.876000px;}
.y20b{bottom:1052.875500px;}
.y83{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4f{bottom:1069.669500px;}
.y20a{bottom:1070.134500px;}
.y175{bottom:1074.517500px;}
.y82{bottom:1085.826000px;}
.y209{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y81{bottom:1104.655500px;}
.y174{bottom:1106.137500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h7{height:25.508090px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.h12{height:34.647539px;}
.h1b{height:34.811191px;}
.h11{height:34.834570px;}
.ha{height:37.993262px;}
.hc{height:38.734848px;}
.h19{height:39.076172px;}
.h14{height:39.287109px;}
.he{height:43.038432px;}
.h17{height:43.181895px;}
.hb{height:43.421105px;}
.h13{height:43.504805px;}
.h1c{height:43.710293px;}
.h15{height:43.739648px;}
.h4{height:43.815515px;}
.h6{height:44.473046px;}
.hd{height:48.848947px;}
.h2{height:50.930649px;}
.hf{height:54.276245px;}
.h5{height:77.469696px;}
.h3{height:99.941241px;}
.h18{height:235.908000px;}
.h16{height:290.626500px;}
.h10{height:388.290000px;}
.h1a{height:558.922500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:198.822293px;}
.w5{width:586.510500px;}
.w4{width:651.853050px;}
.w6{width:651.853500px;}
.w7{width:701.608650px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x48{left:-194.583000px;}
.x3f{left:-75.241950px;}
.x4f{left:-65.647500px;}
.x5c{left:-40.598850px;}
.x50{left:-33.787500px;}
.x62{left:-8.738850px;}
.x4e{left:-3.153000px;}
.x0{left:0.000000px;}
.x3{left:29.274117px;}
.x49{left:32.847954px;}
.x1{left:54.000000px;}
.x2{left:57.551633px;}
.x52{left:85.890000px;}
.x5b{left:95.653350px;}
.x34{left:108.930000px;}
.x3e{left:120.531450px;}
.x45{left:129.063000px;}
.x43{left:134.009010px;}
.x4b{left:137.877486px;}
.x57{left:145.398000px;}
.x53{left:149.266500px;}
.x65{left:151.078500px;}
.x40{left:152.186855px;}
.x63{left:154.971150px;}
.x56{left:158.679000px;}
.x51{left:161.782500px;}
.x5f{left:169.190276px;}
.x5d{left:177.920723px;}
.x64{left:186.831044px;}
.x39{left:241.258500px;}
.x55{left:248.655000px;}
.x5{left:249.832500px;}
.x4{left:250.897500px;}
.x58{left:276.822000px;}
.x8{left:282.786000px;}
.x4a{left:289.437000px;}
.x42{left:291.957824px;}
.x33{left:298.393500px;}
.x59{left:301.104000px;}
.x5a{left:302.227500px;}
.xd{left:304.959000px;}
.x54{left:308.023500px;}
.x6{left:311.277000px;}
.xe{left:312.432000px;}
.x2d{left:319.798500px;}
.x7{left:325.117500px;}
.x5e{left:343.609902px;}
.x21{left:357.051000px;}
.x37{left:361.503000px;}
.x15{left:370.453500px;}
.x22{left:371.995500px;}
.x69{left:374.061000px;}
.x38{left:376.446000px;}
.x16{left:385.398000px;}
.x68{left:393.019500px;}
.x4d{left:433.706577px;}
.xf{left:438.198000px;}
.x10{left:445.671000px;}
.x41{left:478.075444px;}
.x25{left:479.776500px;}
.x26{left:494.721000px;}
.x27{left:498.382500px;}
.x23{left:505.369500px;}
.x2f{left:507.001500px;}
.x28{left:513.325500px;}
.x61{left:516.408438px;}
.x24{left:520.314000px;}
.x30{left:521.946000px;}
.x31{left:525.756000px;}
.x32{left:540.700500px;}
.x11{left:576.591000px;}
.x4c{left:583.467000px;}
.x12{left:591.534000px;}
.x2e{left:597.745500px;}
.x9{left:605.439000px;}
.xa{left:612.910500px;}
.xb{left:620.256000px;}
.xc{left:627.727500px;}
.x1d{left:637.986000px;}
.x44{left:648.807872px;}
.x1e{left:652.929000px;}
.x17{left:688.326000px;}
.x1f{left:689.815500px;}
.x60{left:691.818145px;}
.x18{left:695.799000px;}
.x19{left:699.601500px;}
.x20{left:704.758500px;}
.x1a{left:714.546000px;}
.x1b{left:718.348500px;}
.x66{left:719.535000px;}
.x13{left:722.880000px;}
.x67{left:726.259500px;}
.x14{left:730.351500px;}
.x1c{left:733.293000px;}
.x46{left:738.696000px;}
.x3c{left:747.859500px;}
.x47{left:753.640500px;}
.x35{left:783.142500px;}
.x3d{left:801.835500px;}
.x29{left:806.166000px;}
.x6a{left:810.303000px;}
.x2a{left:813.637500px;}
.x2b{left:817.299000px;}
.x3a{left:818.893500px;}
.x2c{left:832.243500px;}
.x3b{left:833.838000px;}
.x36{left:837.120000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4a{letter-spacing:-0.225600pt;}
.ls4c{letter-spacing:-0.213760pt;}
.ls20{letter-spacing:-0.208416pt;}
.ls49{letter-spacing:-0.187040pt;}
.ls33{letter-spacing:-0.171008pt;}
.ls44{letter-spacing:-0.160320pt;}
.ls45{letter-spacing:-0.149632pt;}
.ls39{letter-spacing:-0.133600pt;}
.ls30{letter-spacing:-0.122912pt;}
.ls36{letter-spacing:-0.117568pt;}
.ls32{letter-spacing:-0.112224pt;}
.ls4d{letter-spacing:-0.106880pt;}
.ls21{letter-spacing:-0.096192pt;}
.ls25{letter-spacing:-0.090848pt;}
.ls4b{letter-spacing:-0.085504pt;}
.ls2e{letter-spacing:-0.080864pt;}
.ls31{letter-spacing:-0.080160pt;}
.ls1f{letter-spacing:-0.076608pt;}
.ls38{letter-spacing:-0.074816pt;}
.ls2f{letter-spacing:-0.069472pt;}
.ls3d{letter-spacing:-0.064128pt;}
.ls37{letter-spacing:-0.058784pt;}
.ls3c{letter-spacing:-0.053440pt;}
.ls35{letter-spacing:-0.048096pt;}
.ls43{letter-spacing:-0.048000pt;}
.ls4e{letter-spacing:-0.042752pt;}
.ls3b{letter-spacing:-0.037408pt;}
.ls24{letter-spacing:-0.032064pt;}
.ls22{letter-spacing:-0.026720pt;}
.ls34{letter-spacing:-0.021376pt;}
.ls42{letter-spacing:-0.019200pt;}
.ls23{letter-spacing:-0.016032pt;}
.ls3a{letter-spacing:-0.010688pt;}
.ls41{letter-spacing:-0.005344pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.002825pt;}
.ls52{letter-spacing:0.003184pt;}
.ls8{letter-spacing:0.004267pt;}
.lse{letter-spacing:0.005344pt;}
.ls1a{letter-spacing:0.009600pt;}
.ls10{letter-spacing:0.010688pt;}
.lsf{letter-spacing:0.016032pt;}
.ls13{letter-spacing:0.019200pt;}
.ls11{letter-spacing:0.021376pt;}
.ls2c{letter-spacing:0.024000pt;}
.ls15{letter-spacing:0.026720pt;}
.ls12{letter-spacing:0.028800pt;}
.ls28{letter-spacing:0.029792pt;}
.ls14{letter-spacing:0.032064pt;}
.ls1d{letter-spacing:0.033600pt;}
.ls2d{letter-spacing:0.037408pt;}
.lsc{letter-spacing:0.038304pt;}
.ls19{letter-spacing:0.038400pt;}
.lsa{letter-spacing:0.046816pt;}
.ls3f{letter-spacing:0.048000pt;}
.ls16{letter-spacing:0.048096pt;}
.ls1b{letter-spacing:0.052800pt;}
.ls17{letter-spacing:0.053440pt;}
.ls2a{letter-spacing:0.058784pt;}
.ls40{letter-spacing:0.069472pt;}
.ls48{letter-spacing:0.072000pt;}
.ls2b{letter-spacing:0.122912pt;}
.ls1c{letter-spacing:0.124800pt;}
.ls18{letter-spacing:0.133600pt;}
.ls29{letter-spacing:0.148960pt;}
.lsd{letter-spacing:0.157472pt;}
.ls27{letter-spacing:0.161728pt;}
.lsb{letter-spacing:0.170240pt;}
.ls26{letter-spacing:0.336672pt;}
.ls7{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls3{letter-spacing:9.298933pt;}
.ls5{letter-spacing:10.626533pt;}
.ls4f{letter-spacing:11.954133pt;}
.ls50{letter-spacing:11.959467pt;}
.ls51{letter-spacing:11.988631pt;}
.ls3e{letter-spacing:12.433325pt;}
.ls46{letter-spacing:13.230333pt;}
.ls0{letter-spacing:13.282422pt;}
.ls47{letter-spacing:16.205829pt;}
.ls4{letter-spacing:25.292137pt;}
.ls1{letter-spacing:74.948237pt;}
.ls1e{letter-spacing:754.941536pt;}
.ws64{word-spacing:-53.573600pt;}
.ws65{word-spacing:-13.360000pt;}
.ws1{word-spacing:-13.283467pt;}
.ws88{word-spacing:-12.000000pt;}
.ws66{word-spacing:-11.955200pt;}
.ws63{word-spacing:-10.810240pt;}
.ws87{word-spacing:-10.801728pt;}
.ws2f{word-spacing:-10.626800pt;}
.ws6{word-spacing:-9.298400pt;}
.ws5f{word-spacing:-2.975497pt;}
.wsd8{word-spacing:-2.490304pt;}
.wsde{word-spacing:-2.484960pt;}
.wsdd{word-spacing:-2.431520pt;}
.wsea{word-spacing:-2.337890pt;}
.ws30{word-spacing:-2.125355pt;}
.ws9f{word-spacing:-2.100192pt;}
.ws48{word-spacing:-1.912819pt;}
.ws108{word-spacing:-1.827648pt;}
.ws43{word-spacing:-1.806551pt;}
.ws4d{word-spacing:-1.753418pt;}
.ws3c{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws111{word-spacing:-1.549760pt;}
.ws137{word-spacing:-1.530266pt;}
.ws45{word-spacing:-1.487748pt;}
.ws107{word-spacing:-1.485632pt;}
.ws27{word-spacing:-1.434614pt;}
.wsdf{word-spacing:-1.421504pt;}
.wse0{word-spacing:-1.394784pt;}
.ws42{word-spacing:-1.328347pt;}
.ws113{word-spacing:-1.245152pt;}
.ws51{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.ws38{word-spacing:-1.168945pt;}
.wsf6{word-spacing:-1.115811pt;}
.ws40{word-spacing:-1.062677pt;}
.ws3b{word-spacing:-1.009543pt;}
.wsbf{word-spacing:-0.903276pt;}
.wsd0{word-spacing:-0.892448pt;}
.ws6c{word-spacing:-0.881760pt;}
.wsbd{word-spacing:-0.860384pt;}
.wse7{word-spacing:-0.850142pt;}
.wsbe{word-spacing:-0.817632pt;}
.ws8b{word-spacing:-0.797008pt;}
.wsc6{word-spacing:-0.765133pt;}
.ws6b{word-spacing:-0.668000pt;}
.wsa8{word-spacing:-0.609216pt;}
.wsef{word-spacing:-0.584473pt;}
.ws72{word-spacing:-0.577152pt;}
.ws28{word-spacing:-0.318803pt;}
.wsd9{word-spacing:-0.309952pt;}
.ws105{word-spacing:-0.304608pt;}
.ws80{word-spacing:-0.288576pt;}
.wsaa{word-spacing:-0.267200pt;}
.ws29{word-spacing:-0.265669pt;}
.ws103{word-spacing:-0.225600pt;}
.wsb2{word-spacing:-0.219104pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws19{word-spacing:-0.191283pt;}
.wsbb{word-spacing:-0.160320pt;}
.ws33{word-spacing:-0.159402pt;}
.wsb1{word-spacing:-0.144288pt;}
.ws12d{word-spacing:-0.143462pt;}
.ws93{word-spacing:-0.128256pt;}
.ws95{word-spacing:-0.117568pt;}
.ws69{word-spacing:-0.114912pt;}
.ws8e{word-spacing:-0.110656pt;}
.ws24{word-spacing:-0.106268pt;}
.ws1d{word-spacing:-0.095642pt;}
.wsdc{word-spacing:-0.080160pt;}
.ws94{word-spacing:-0.069472pt;}
.ws21{word-spacing:-0.053134pt;}
.ws122{word-spacing:-0.047821pt;}
.ws12{word-spacing:-0.042507pt;}
.ws7{word-spacing:-0.037194pt;}
.ws0{word-spacing:0.000000pt;}
.wsa1{word-spacing:0.021376pt;}
.ws129{word-spacing:0.047821pt;}
.ws20{word-spacing:0.053134pt;}
.wsba{word-spacing:0.058784pt;}
.ws7d{word-spacing:0.069472pt;}
.ws119{word-spacing:0.074816pt;}
.ws73{word-spacing:0.080160pt;}
.wsc9{word-spacing:0.085504pt;}
.ws17{word-spacing:0.095642pt;}
.ws7a{word-spacing:0.101536pt;}
.ws25{word-spacing:0.106268pt;}
.wsca{word-spacing:0.106880pt;}
.ws82{word-spacing:0.110400pt;}
.ws74{word-spacing:0.117568pt;}
.ws81{word-spacing:0.124800pt;}
.ws98{word-spacing:0.128256pt;}
.ws83{word-spacing:0.129600pt;}
.ws75{word-spacing:0.134400pt;}
.ws104{word-spacing:0.139200pt;}
.ws12b{word-spacing:0.143462pt;}
.ws76{word-spacing:0.144000pt;}
.wsa3{word-spacing:0.148800pt;}
.ws8f{word-spacing:0.149632pt;}
.wse5{word-spacing:0.154976pt;}
.wsa2{word-spacing:0.158400pt;}
.ws23{word-spacing:0.159402pt;}
.ws115{word-spacing:0.165664pt;}
.ws79{word-spacing:0.176352pt;}
.ws8{word-spacing:0.185968pt;}
.ws127{word-spacing:0.191283pt;}
.ws114{word-spacing:0.192384pt;}
.ws3d{word-spacing:0.212535pt;}
.ws125{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws37{word-spacing:0.265669pt;}
.ws22{word-spacing:0.318803pt;}
.ws1b{word-spacing:0.334746pt;}
.ws109{word-spacing:0.358048pt;}
.wsd3{word-spacing:0.368736pt;}
.wsf5{word-spacing:0.371937pt;}
.wscc{word-spacing:0.374080pt;}
.ws123{word-spacing:0.382566pt;}
.wsb4{word-spacing:0.416832pt;}
.wsb5{word-spacing:0.432864pt;}
.ws34{word-spacing:0.584473pt;}
.ws50{word-spacing:0.637606pt;}
.ws58{word-spacing:0.690740pt;}
.wsb0{word-spacing:0.700064pt;}
.wsa0{word-spacing:0.742816pt;}
.ws4c{word-spacing:0.743874pt;}
.ws12e{word-spacing:0.765133pt;}
.ws99{word-spacing:0.769536pt;}
.ws9a{word-spacing:0.812288pt;}
.ws5c{word-spacing:0.850142pt;}
.wsf8{word-spacing:0.860774pt;}
.ws11f{word-spacing:0.908595pt;}
.wse3{word-spacing:0.993984pt;}
.ws3a{word-spacing:1.009543pt;}
.ws71{word-spacing:1.036736pt;}
.ws61{word-spacing:1.062677pt;}
.ws70{word-spacing:1.063456pt;}
.wsf7{word-spacing:1.099878pt;}
.wse4{word-spacing:1.106208pt;}
.wsa5{word-spacing:1.122240pt;}
.wsc3{word-spacing:1.168945pt;}
.ws11e{word-spacing:1.195520pt;}
.ws84{word-spacing:1.222079pt;}
.ws16{word-spacing:1.243341pt;}
.ws36{word-spacing:1.275213pt;}
.wse6{word-spacing:1.328347pt;}
.wsd5{word-spacing:1.368064pt;}
.wsd6{word-spacing:1.384096pt;}
.ws121{word-spacing:1.386803pt;}
.wse8{word-spacing:1.434614pt;}
.ws18{word-spacing:1.482445pt;}
.ws5b{word-spacing:1.540882pt;}
.ws2c{word-spacing:1.594016pt;}
.ws46{word-spacing:1.647150pt;}
.ws10c{word-spacing:1.661984pt;}
.ws116{word-spacing:1.699392pt;}
.ws53{word-spacing:1.700284pt;}
.ws117{word-spacing:1.710080pt;}
.ws9{word-spacing:1.785293pt;}
.ws44{word-spacing:1.806551pt;}
.wsfa{word-spacing:1.912819pt;}
.wsab{word-spacing:1.961248pt;}
.ws5a{word-spacing:1.965953pt;}
.wscb{word-spacing:1.982624pt;}
.wsf0{word-spacing:2.019087pt;}
.wsae{word-spacing:2.020032pt;}
.wsaf{word-spacing:2.036064pt;}
.wsac{word-spacing:2.057440pt;}
.ws85{word-spacing:2.072221pt;}
.ws91{word-spacing:2.078816pt;}
.ws90{word-spacing:2.121568pt;}
.ws26{word-spacing:2.125355pt;}
.ws3e{word-spacing:2.178489pt;}
.ws1a{word-spacing:2.199757pt;}
.ws124{word-spacing:2.247578pt;}
.wsc4{word-spacing:2.337890pt;}
.ws4e{word-spacing:2.391024pt;}
.ws59{word-spacing:2.444158pt;}
.ws41{word-spacing:2.497292pt;}
.ws13{word-spacing:2.550432pt;}
.wsb9{word-spacing:2.618560pt;}
.ws10a{word-spacing:2.623904pt;}
.ws118{word-spacing:2.634592pt;}
.ws10b{word-spacing:2.645280pt;}
.ws52{word-spacing:2.656693pt;}
.ws11b{word-spacing:2.661312pt;}
.ws11a{word-spacing:2.688032pt;}
.wsdb{word-spacing:2.698720pt;}
.ws15{word-spacing:2.725786pt;}
.ws12c{word-spacing:2.865766pt;}
.ws131{word-spacing:2.867311pt;}
.ws139{word-spacing:2.867601pt;}
.ws130{word-spacing:2.869248pt;}
.ws13a{word-spacing:2.870025pt;}
.ws7f{word-spacing:2.917824pt;}
.wsf1{word-spacing:2.922363pt;}
.wsb8{word-spacing:2.933856pt;}
.ws7e{word-spacing:2.944544pt;}
.ws14{word-spacing:2.964890pt;}
.wsc7{word-spacing:2.965920pt;}
.wsd2{word-spacing:2.990400pt;}
.ws102{word-spacing:3.000000pt;}
.wsb7{word-spacing:3.014016pt;}
.wsfd{word-spacing:3.028630pt;}
.wsa4{word-spacing:3.035392pt;}
.wsd1{word-spacing:3.057600pt;}
.wsc8{word-spacing:3.072800pt;}
.ws49{word-spacing:3.081764pt;}
.ws1f{word-spacing:3.188032pt;}
.ws86{word-spacing:3.241166pt;}
.wsda{word-spacing:3.265184pt;}
.ws11c{word-spacing:3.270528pt;}
.ws11d{word-spacing:3.281216pt;}
.ws2b{word-spacing:3.294300pt;}
.ws101{word-spacing:3.316800pt;}
.ws100{word-spacing:3.331200pt;}
.wsff{word-spacing:3.336000pt;}
.wscf{word-spacing:3.361376pt;}
.ws4f{word-spacing:3.400567pt;}
.ws8c{word-spacing:3.453701pt;}
.ws54{word-spacing:3.506835pt;}
.wsd7{word-spacing:3.569792pt;}
.wsb3{word-spacing:3.575136pt;}
.ws6d{word-spacing:3.591168pt;}
.ws77{word-spacing:3.607200pt;}
.ws3f{word-spacing:3.613103pt;}
.ws78{word-spacing:3.639264pt;}
.wsce{word-spacing:3.676672pt;}
.ws6e{word-spacing:3.703392pt;}
.ws4b{word-spacing:3.719371pt;}
.ws120{word-spacing:3.730022pt;}
.ws31{word-spacing:3.772505pt;}
.wse9{word-spacing:3.825638pt;}
.ws97{word-spacing:3.858368pt;}
.wsa9{word-spacing:3.890432pt;}
.wse2{word-spacing:3.895776pt;}
.ws10d{word-spacing:3.927840pt;}
.ws10e{word-spacing:3.938528pt;}
.ws96{word-spacing:4.184352pt;}
.ws55{word-spacing:4.197575pt;}
.ws1c{word-spacing:4.208230pt;}
.ws89{word-spacing:4.303843pt;}
.ws39{word-spacing:4.356977pt;}
.wse1{word-spacing:4.387424pt;}
.ws5e{word-spacing:4.410111pt;}
.ws4a{word-spacing:4.516379pt;}
.ws7c{word-spacing:4.537056pt;}
.ws7b{word-spacing:4.595840pt;}
.ws68{word-spacing:4.675780pt;}
.ws62{word-spacing:4.835182pt;}
.wsfb{word-spacing:5.047717pt;}
.wsc1{word-spacing:5.116826pt;}
.ws32{word-spacing:5.207119pt;}
.ws56{word-spacing:5.313387pt;}
.ws10{word-spacing:5.393072pt;}
.wsc5{word-spacing:5.419654pt;}
.wsc0{word-spacing:5.451571pt;}
.ws11{word-spacing:5.467459pt;}
.ws67{word-spacing:5.472788pt;}
.ws9c{word-spacing:5.541728pt;}
.wsf9{word-spacing:5.579056pt;}
.ws9b{word-spacing:5.637920pt;}
.ws9e{word-spacing:5.857024pt;}
.ws6f{word-spacing:5.873056pt;}
.ws112{word-spacing:5.899776pt;}
.ws9d{word-spacing:5.937184pt;}
.ws8a{word-spacing:6.004127pt;}
.wsd4{word-spacing:6.150944pt;}
.ws2d{word-spacing:6.322930pt;}
.wsbc{word-spacing:6.476928pt;}
.wsa7{word-spacing:6.492960pt;}
.wsad{word-spacing:6.530368pt;}
.ws8d{word-spacing:6.535466pt;}
.ws60{word-spacing:6.588599pt;}
.ws1e{word-spacing:6.599270pt;}
.wsa6{word-spacing:6.615872pt;}
.ws47{word-spacing:6.641733pt;}
.wsc2{word-spacing:6.801135pt;}
.ws5d{word-spacing:6.960537pt;}
.ws92{word-spacing:7.150272pt;}
.wsfc{word-spacing:7.332474pt;}
.wse{word-spacing:7.699075pt;}
.ws5{word-spacing:9.258090pt;}
.ws106{word-spacing:9.357344pt;}
.wsb6{word-spacing:9.971904pt;}
.wsfe{word-spacing:10.325056pt;}
.ws6a{word-spacing:10.329312pt;}
.ws2e{word-spacing:10.582833pt;}
.ws138{word-spacing:11.763917pt;}
.ws132{word-spacing:11.811738pt;}
.ws135{word-spacing:11.859558pt;}
.ws13b{word-spacing:11.901756pt;}
.ws13c{word-spacing:11.905818pt;}
.ws12a{word-spacing:11.907379pt;}
.ws133{word-spacing:11.955200pt;}
.ws136{word-spacing:12.050842pt;}
.wscd{word-spacing:13.172960pt;}
.ws35{word-spacing:13.230333pt;}
.ws4{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.ws126{word-spacing:14.772676pt;}
.ws12f{word-spacing:14.772907pt;}
.ws134{word-spacing:14.775706pt;}
.ws128{word-spacing:14.776627pt;}
.wsd{word-spacing:15.732893pt;}
.ws10f{word-spacing:17.068736pt;}
.ws110{word-spacing:17.266464pt;}
.ws57{word-spacing:19.500129pt;}
.wsf{word-spacing:24.399002pt;}
.wsed{word-spacing:210.889728pt;}
.wsf4{word-spacing:212.993843pt;}
.wsee{word-spacing:213.041664pt;}
.wseb{word-spacing:218.206310pt;}
.wsec{word-spacing:220.310426pt;}
.wsf2{word-spacing:220.597350pt;}
.wsf3{word-spacing:222.749286pt;}
._2{margin-left:-19.181326pt;}
._d{margin-left:-16.576775pt;}
._6{margin-left:-13.873217pt;}
._0{margin-left:-7.077478pt;}
._e{margin-left:-5.838017pt;}
._7{margin-left:-4.797974pt;}
._1a{margin-left:-3.825638pt;}
._8{margin-left:-2.752326pt;}
._5{margin-left:-1.175671pt;}
._1{width:1.487748pt;}
._b{width:2.417584pt;}
._3c{width:3.432527pt;}
._a{width:11.530016pt;}
._16{width:13.175632pt;}
._22{width:14.075062pt;}
._10{width:15.015731pt;}
._12{width:15.952299pt;}
._14{width:16.949703pt;}
._19{width:17.986153pt;}
._f{width:19.032678pt;}
._1e{width:20.190869pt;}
._11{width:21.088973pt;}
._9{width:23.063232pt;}
._1c{width:24.687746pt;}
._1f{width:26.307990pt;}
._13{width:27.485235pt;}
._c{width:29.011008pt;}
._1b{width:30.664967pt;}
._21{width:33.102399pt;}
._15{width:36.190890pt;}
._1d{width:37.671911pt;}
._4{width:48.373667pt;}
._3d{width:54.993920pt;}
._3{width:61.663808pt;}
._26{width:160.151859pt;}
._2f{width:162.542899pt;}
._32{width:164.694835pt;}
._24{width:195.108864pt;}
._25{width:221.745050pt;}
._30{width:226.288026pt;}
._38{width:227.399982pt;}
._2e{width:230.559971pt;}
._31{width:232.664086pt;}
._39{width:234.704486pt;}
._2b{width:260.400150pt;}
._2d{width:262.552086pt;}
._28{width:274.316003pt;}
._2a{width:276.467939pt;}
._34{width:277.982310pt;}
._36{width:285.251072pt;}
._33{width:287.403008pt;}
._35{width:301.892710pt;}
._3a{width:308.300698pt;}
._27{width:313.847910pt;}
._37{width:320.255898pt;}
._2c{width:324.607590pt;}
._29{width:338.523443pt;}
._17{width:790.803949pt;}
._3b{width:1854.522208pt;}
._20{width:1875.653248pt;}
._23{width:2216.237067pt;}
._18{width:2237.490400pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.276537pt;}
.fs3{font-size:41.988267pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:42.560000pt;}
.fs7{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fs9{font-size:53.440000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:131.027520pt;}
.y12e{bottom:-580.126267pt;}
.ye7{bottom:-472.191600pt;}
.y1ab{bottom:-470.084933pt;}
.y10e{bottom:-416.981656pt;}
.y1cb{bottom:-411.756096pt;}
.y10d{bottom:-399.942312pt;}
.y1ca{bottom:-394.716752pt;}
.y10c{bottom:-378.822824pt;}
.y1c9{bottom:-377.597248pt;}
.y1c8{bottom:-360.557904pt;}
.y14b{bottom:-358.681299pt;}
.y10b{bottom:-345.703384pt;}
.y1c7{bottom:-343.438400pt;}
.y14a{bottom:-341.561795pt;}
.y10a{bottom:-328.664040pt;}
.y1c6{bottom:-326.318896pt;}
.y149{bottom:-324.442291pt;}
.y109{bottom:-311.544536pt;}
.y1c5{bottom:-309.279552pt;}
.y148{bottom:-307.402947pt;}
.y108{bottom:-294.425032pt;}
.y1c4{bottom:-292.160048pt;}
.y147{bottom:-290.283443pt;}
.y107{bottom:-277.385688pt;}
.y1c3{bottom:-275.119368pt;}
.y146{bottom:-273.244099pt;}
.y106{bottom:-260.266184pt;}
.y1c2{bottom:-257.999864pt;}
.y145{bottom:-256.124595pt;}
.y105{bottom:-243.226840pt;}
.y1c1{bottom:-240.880360pt;}
.y144{bottom:-239.005091pt;}
.y104{bottom:-226.107336pt;}
.y1c0{bottom:-223.841016pt;}
.y143{bottom:-221.964411pt;}
.y103{bottom:-208.987832pt;}
.y1bf{bottom:-206.721512pt;}
.y142{bottom:-204.844907pt;}
.y102{bottom:-191.948488pt;}
.y1be{bottom:-189.602008pt;}
.y141{bottom:-183.804243pt;}
.y101{bottom:-174.828984pt;}
.y1bd{bottom:-172.562664pt;}
.y100{bottom:-157.789640pt;}
.y1bc{bottom:-155.443160pt;}
.y140{bottom:-150.684803pt;}
.yc9{bottom:-147.187600pt;}
.yff{bottom:-140.670136pt;}
.y1bb{bottom:-138.403816pt;}
.y13f{bottom:-133.565299pt;}
.yfe{bottom:-123.550632pt;}
.y1ba{bottom:-121.284312pt;}
.y13e{bottom:-116.525955pt;}
.yfd{bottom:-106.511288pt;}
.y1b9{bottom:-104.164808pt;}
.y13d{bottom:-99.406451pt;}
.yfc{bottom:-89.391784pt;}
.y1b8{bottom:-87.125464pt;}
.y13c{bottom:-82.286947pt;}
.yfb{bottom:-72.351104pt;}
.y1b7{bottom:-66.084800pt;}
.y13b{bottom:-65.246267pt;}
.ydd{bottom:-56.307600pt;}
.yfa{bottom:-55.231600pt;}
.y1b6{bottom:-33.285333pt;}
.y13a{bottom:-32.526667pt;}
.yf9{bottom:-22.511600pt;}
.ydc{bottom:-20.947467pt;}
.y1b5{bottom:-17.844933pt;}
.y139{bottom:-17.086267pt;}
.y0{bottom:0.000000pt;}
.y138{bottom:2.837333pt;}
.y9{bottom:3.044747pt;}
.yf6{bottom:5.488456pt;}
.yf8{bottom:5.568456pt;}
.y1b4{bottom:6.076155pt;}
.yd9{bottom:7.055616pt;}
.y1b2{bottom:9.115555pt;}
.ydb{bottom:9.775712pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:14.078151pt;}
.yf5{bottom:19.488400pt;}
.yf7{bottom:19.568400pt;}
.yd8{bottom:21.055560pt;}
.yda{bottom:23.855816pt;}
.y1b3{bottom:24.076083pt;}
.y1b1{bottom:27.115483pt;}
.y4b{bottom:28.346667pt;}
.ye3{bottom:79.798667pt;}
.y1a7{bottom:80.717333pt;}
.y162{bottom:89.194667pt;}
.y12a{bottom:89.970667pt;}
.y21{bottom:91.398667pt;}
.y4a{bottom:92.108000pt;}
.y208{bottom:94.721333pt;}
.y80{bottom:96.418667pt;}
.ye2{bottom:96.536000pt;}
.y1a6{bottom:97.454667pt;}
.y1dc{bottom:102.186667pt;}
.yb8{bottom:105.154667pt;}
.y161{bottom:105.932000pt;}
.y129{bottom:106.708000pt;}
.y20{bottom:107.298667pt;}
.y49{bottom:108.844000pt;}
.y207{bottom:110.064000pt;}
.y7f{bottom:113.156000pt;}
.ye1{bottom:113.273333pt;}
.y1a5{bottom:114.192000pt;}
.y1db{bottom:118.924000pt;}
.y98{bottom:121.465333pt;}
.y1f{bottom:123.200000pt;}
.y128{bottom:123.445333pt;}
.y206{bottom:125.406667pt;}
.y48{bottom:125.581333pt;}
.y160{bottom:126.654667pt;}
.y7e{bottom:129.893333pt;}
.ye0{bottom:130.010667pt;}
.y1a4{bottom:130.929333pt;}
.y1da{bottom:135.660000pt;}
.y1e{bottom:139.100000pt;}
.y127{bottom:140.181333pt;}
.y205{bottom:140.748000pt;}
.y47{bottom:142.318667pt;}
.y7d{bottom:146.630667pt;}
.y1a3{bottom:147.666667pt;}
.ydf{bottom:150.733333pt;}
.y9f{bottom:151.508000pt;}
.y1d9{bottom:152.397333pt;}
.y15f{bottom:153.701333pt;}
.y1d{bottom:155.000000pt;}
.y204{bottom:156.090667pt;}
.y126{bottom:156.918667pt;}
.y46{bottom:159.056000pt;}
.y7c{bottom:163.368000pt;}
.y171{bottom:167.760000pt;}
.y9e{bottom:168.245333pt;}
.y1d8{bottom:169.134667pt;}
.y1c{bottom:170.901333pt;}
.y203{bottom:171.433333pt;}
.y125{bottom:173.656000pt;}
.y45{bottom:175.793333pt;}
.y7b{bottom:180.105333pt;}
.y170{bottom:184.497333pt;}
.y9d{bottom:184.982667pt;}
.yde{bottom:185.749333pt;}
.y1d7{bottom:185.872000pt;}
.y202{bottom:186.776000pt;}
.y1b{bottom:186.801333pt;}
.y1a2{bottom:188.077333pt;}
.y124{bottom:190.393333pt;}
.y44{bottom:192.530667pt;}
.y7a{bottom:196.842667pt;}
.y173{bottom:199.904000pt;}
.y16f{bottom:201.234667pt;}
.y9c{bottom:201.720000pt;}
.y201{bottom:202.118667pt;}
.y1d6{bottom:202.609333pt;}
.y1a1{bottom:202.689333pt;}
.y1a{bottom:202.701333pt;}
.yc6{bottom:205.686667pt;}
.y123{bottom:207.130667pt;}
.y43{bottom:209.268000pt;}
.y79{bottom:213.578667pt;}
.y1a0{bottom:217.301333pt;}
.y200{bottom:217.461333pt;}
.y16e{bottom:217.972000pt;}
.y9b{bottom:218.457333pt;}
.y1d5{bottom:219.346667pt;}
.y42{bottom:226.005333pt;}
.y122{bottom:227.853333pt;}
.y78{bottom:230.316000pt;}
.y19f{bottom:231.913333pt;}
.y1ff{bottom:232.804000pt;}
.y16d{bottom:234.709333pt;}
.y1d4{bottom:236.084000pt;}
.y9a{bottom:239.180000pt;}
.y137{bottom:242.597229pt;}
.y41{bottom:242.742667pt;}
.y1ae{bottom:244.795307pt;}
.y19e{bottom:246.525333pt;}
.y77{bottom:247.053333pt;}
.y1fe{bottom:248.146667pt;}
.y16c{bottom:251.445333pt;}
.y1d3{bottom:252.821333pt;}
.y1b0{bottom:255.595531pt;}
.y121{bottom:257.741333pt;}
.y40{bottom:259.480000pt;}
.y136{bottom:259.716733pt;}
.y19d{bottom:261.137333pt;}
.y1ad{bottom:262.795235pt;}
.y1fd{bottom:263.489333pt;}
.y76{bottom:263.790667pt;}
.y16b{bottom:268.182667pt;}
.y1d2{bottom:269.558667pt;}
.y19{bottom:273.154667pt;}
.y1af{bottom:273.595459pt;}
.y99{bottom:274.196000pt;}
.y120{bottom:274.478667pt;}
.y19c{bottom:275.748000pt;}
.y3f{bottom:276.217333pt;}
.y135{bottom:276.836237pt;}
.yf4{bottom:278.134056pt;}
.y1fc{bottom:278.830667pt;}
.y75{bottom:280.528000pt;}
.y16a{bottom:284.920000pt;}
.y1d1{bottom:286.296000pt;}
.y18{bottom:289.054667pt;}
.y19b{bottom:290.360000pt;}
.y11f{bottom:291.216000pt;}
.y3e{bottom:292.954667pt;}
.y134{bottom:293.875581pt;}
.y1fb{bottom:294.173333pt;}
.yf3{bottom:295.253560pt;}
.y74{bottom:297.265333pt;}
.y169{bottom:301.657333pt;}
.yb7{bottom:302.585333pt;}
.y1d0{bottom:303.033333pt;}
.y17{bottom:304.954667pt;}
.y19a{bottom:304.972000pt;}
.y11e{bottom:307.953333pt;}
.y1fa{bottom:309.516000pt;}
.y3d{bottom:309.692000pt;}
.y133{bottom:310.995085pt;}
.yf2{bottom:312.373064pt;}
.y73{bottom:314.002667pt;}
.y168{bottom:318.394667pt;}
.yb6{bottom:319.322667pt;}
.y199{bottom:319.584000pt;}
.y1cf{bottom:319.770667pt;}
.y16{bottom:320.856000pt;}
.y11d{bottom:324.690667pt;}
.y1f9{bottom:324.858667pt;}
.y3c{bottom:326.429333pt;}
.y132{bottom:328.034429pt;}
.yf1{bottom:329.492568pt;}
.y72{bottom:330.740000pt;}
.y198{bottom:334.196000pt;}
.y167{bottom:335.132000pt;}
.yb5{bottom:336.060000pt;}
.y1f8{bottom:340.201333pt;}
.y1ce{bottom:340.493333pt;}
.y11c{bottom:341.428000pt;}
.y3b{bottom:343.166667pt;}
.y131{bottom:345.153933pt;}
.yf0{bottom:346.531912pt;}
.y71{bottom:347.477333pt;}
.y166{bottom:351.869333pt;}
.yb4{bottom:352.797333pt;}
.y15{bottom:354.688000pt;}
.y197{bottom:355.210667pt;}
.y1f7{bottom:355.544000pt;}
.y11b{bottom:358.165333pt;}
.y3a{bottom:359.904000pt;}
.y130{bottom:362.273437pt;}
.yef{bottom:363.651416pt;}
.y70{bottom:364.214667pt;}
.yd7{bottom:364.895200pt;}
.y165{bottom:368.606667pt;}
.yb3{bottom:369.534667pt;}
.y14{bottom:370.589333pt;}
.y1f6{bottom:370.886667pt;}
.y15e{bottom:372.572000pt;}
.y11a{bottom:374.902667pt;}
.y39{bottom:376.641333pt;}
.y1cd{bottom:376.838667pt;}
.y12f{bottom:379.314117pt;}
.yee{bottom:380.770920pt;}
.y6f{bottom:380.952000pt;}
.yd6{bottom:382.014704pt;}
.y196{bottom:383.316000pt;}
.y1f5{bottom:386.229333pt;}
.yb2{bottom:386.272000pt;}
.y13{bottom:386.489333pt;}
.y15d{bottom:389.309333pt;}
.y164{bottom:389.329333pt;}
.y119{bottom:391.640000pt;}
.y38{bottom:393.378667pt;}
.y1cc{bottom:393.934667pt;}
.y6e{bottom:397.689333pt;}
.yed{bottom:397.810264pt;}
.yd5{bottom:399.054048pt;}
.y1f4{bottom:401.570667pt;}
.y15c{bottom:406.046667pt;}
.yb1{bottom:406.994667pt;}
.y118{bottom:408.377333pt;}
.y37{bottom:410.116000pt;}
.y195{bottom:412.837333pt;}
.y1a8{bottom:413.870667pt;}
.y6d{bottom:414.426667pt;}
.yec{bottom:414.929768pt;}
.yd4{bottom:416.173552pt;}
.y1f3{bottom:416.913333pt;}
.y12{bottom:418.330667pt;}
.y15b{bottom:422.784000pt;}
.y117{bottom:425.114667pt;}
.y163{bottom:425.674667pt;}
.y36{bottom:426.853333pt;}
.y12d{bottom:427.953853pt;}
.y194{bottom:429.574667pt;}
.y6c{bottom:431.164000pt;}
.yeb{bottom:431.969112pt;}
.y1f2{bottom:432.256000pt;}
.yd3{bottom:433.293056pt;}
.y11{bottom:434.230667pt;}
.y12c{bottom:436.513733pt;}
.yb0{bottom:436.882667pt;}
.y15a{bottom:439.521333pt;}
.y116{bottom:441.852000pt;}
.y193{bottom:446.312000pt;}
.y35{bottom:447.576000pt;}
.y1f1{bottom:447.598667pt;}
.y6b{bottom:447.901333pt;}
.yea{bottom:449.088616pt;}
.y10{bottom:450.130667pt;}
.yd2{bottom:450.332400pt;}
.yaf{bottom:453.620000pt;}
.y159{bottom:456.258667pt;}
.y115{bottom:458.589333pt;}
.y1f0{bottom:462.941333pt;}
.y192{bottom:463.049333pt;}
.y6a{bottom:464.638667pt;}
.ye9{bottom:466.208120pt;}
.yae{bottom:470.357333pt;}
.y158{bottom:472.996000pt;}
.y114{bottom:475.326667pt;}
.y1ef{bottom:478.284000pt;}
.y191{bottom:479.786667pt;}
.y69{bottom:481.376000pt;}
.yf{bottom:481.972000pt;}
.yd1{bottom:483.052400pt;}
.y1ac{bottom:484.715523pt;}
.yad{bottom:487.094667pt;}
.ye8{bottom:487.248784pt;}
.y157{bottom:489.733333pt;}
.y113{bottom:492.064000pt;}
.y1ee{bottom:493.626667pt;}
.y190{bottom:496.524000pt;}
.ye{bottom:497.872000pt;}
.y68{bottom:502.098667pt;}
.yd0{bottom:503.054288pt;}
.yac{bottom:503.830667pt;}
.y156{bottom:506.470667pt;}
.y112{bottom:508.800000pt;}
.y1ed{bottom:508.969333pt;}
.y18f{bottom:513.261333pt;}
.yd{bottom:513.772000pt;}
.y34{bottom:514.376000pt;}
.yab{bottom:520.568000pt;}
.y155{bottom:523.208000pt;}
.y1ec{bottom:524.312000pt;}
.y111{bottom:525.537333pt;}
.yc{bottom:529.673333pt;}
.y18e{bottom:529.998667pt;}
.y33{bottom:531.670667pt;}
.y67{bottom:531.986667pt;}
.ye6{bottom:535.888520pt;}
.yaa{bottom:537.305333pt;}
.y1aa{bottom:537.995187pt;}
.y110{bottom:542.274667pt;}
.y1eb{bottom:543.638667pt;}
.y154{bottom:543.929333pt;}
.ye5{bottom:544.448400pt;}
.yb{bottom:545.573333pt;}
.y1a9{bottom:546.555067pt;}
.y18d{bottom:546.736000pt;}
.y66{bottom:548.724000pt;}
.y223{bottom:552.325333pt;}
.ya9{bottom:554.042667pt;}
.ya{bottom:561.473333pt;}
.y18c{bottom:563.473333pt;}
.yc5{bottom:563.877333pt;}
.y32{bottom:564.905333pt;}
.y65{bottom:565.461333pt;}
.y222{bottom:567.668000pt;}
.ya8{bottom:570.780000pt;}
.y10f{bottom:572.112000pt;}
.y1ea{bottom:573.526667pt;}
.y153{bottom:573.817333pt;}
.y18b{bottom:580.210667pt;}
.yc4{bottom:580.614667pt;}
.y7{bottom:581.358715pt;}
.y64{bottom:582.198667pt;}
.y31{bottom:582.201333pt;}
.y221{bottom:583.010667pt;}
.ya7{bottom:587.517333pt;}
.y152{bottom:590.554667pt;}
.ye4{bottom:592.048000pt;}
.y97{bottom:596.560000pt;}
.y18a{bottom:596.948000pt;}
.y1e9{bottom:597.118667pt;}
.yc3{bottom:597.352000pt;}
.y220{bottom:598.353333pt;}
.y63{bottom:598.934667pt;}
.y30{bottom:599.496000pt;}
.ya6{bottom:604.254667pt;}
.y172{bottom:605.504000pt;}
.y151{bottom:607.292000pt;}
.y1e8{bottom:612.740000pt;}
.y96{bottom:613.297333pt;}
.y189{bottom:613.685333pt;}
.y21f{bottom:613.696000pt;}
.yc2{bottom:614.089333pt;}
.y62{bottom:615.672000pt;}
.y2f{bottom:616.792000pt;}
.ya5{bottom:620.992000pt;}
.y150{bottom:624.029333pt;}
.y1e7{bottom:628.361333pt;}
.y21e{bottom:629.038667pt;}
.y95{bottom:630.034667pt;}
.y188{bottom:630.422667pt;}
.yc1{bottom:630.825333pt;}
.y61{bottom:632.409333pt;}
.y2e{bottom:634.086667pt;}
.ya4{bottom:637.729333pt;}
.y14f{bottom:640.766667pt;}
.y21d{bottom:644.381333pt;}
.y94{bottom:646.772000pt;}
.y187{bottom:647.160000pt;}
.yc0{bottom:647.562667pt;}
.y60{bottom:649.146667pt;}
.y2d{bottom:651.381333pt;}
.y1e6{bottom:651.953333pt;}
.ya3{bottom:654.466667pt;}
.y14e{bottom:657.504000pt;}
.y21c{bottom:659.724000pt;}
.y93{bottom:663.509333pt;}
.y186{bottom:663.897333pt;}
.ybf{bottom:664.300000pt;}
.y5f{bottom:665.884000pt;}
.y2c{bottom:668.677333pt;}
.ya2{bottom:671.204000pt;}
.y21b{bottom:675.066667pt;}
.y1e5{bottom:675.544000pt;}
.y92{bottom:680.246667pt;}
.y185{bottom:680.634667pt;}
.ybe{bottom:681.037333pt;}
.y5e{bottom:682.621333pt;}
.y2b{bottom:685.972000pt;}
.y14d{bottom:687.340000pt;}
.y21a{bottom:690.408000pt;}
.ya1{bottom:691.926667pt;}
.y184{bottom:697.370667pt;}
.ybd{bottom:697.774667pt;}
.y1e4{bottom:699.136000pt;}
.y5d{bottom:699.358667pt;}
.y91{bottom:700.969333pt;}
.y2a{bottom:703.266667pt;}
.y14c{bottom:704.436000pt;}
.y219{bottom:705.750667pt;}
.y183{bottom:714.108000pt;}
.ybc{bottom:714.512000pt;}
.y1e3{bottom:714.757333pt;}
.y5c{bottom:716.096000pt;}
.y29{bottom:720.562667pt;}
.y218{bottom:721.093333pt;}
.y12b{bottom:724.373333pt;}
.ycf{bottom:726.814248pt;}
.ya0{bottom:726.942667pt;}
.y1e2{bottom:730.378667pt;}
.y182{bottom:730.845333pt;}
.y90{bottom:730.857333pt;}
.ybb{bottom:731.249333pt;}
.y5b{bottom:732.833333pt;}
.y217{bottom:736.436000pt;}
.y28{bottom:737.857333pt;}
.yce{bottom:743.933752pt;}
.y181{bottom:747.582667pt;}
.y8f{bottom:747.594667pt;}
.yba{bottom:747.986667pt;}
.y216{bottom:751.778667pt;}
.y5a{bottom:753.556000pt;}
.y1e1{bottom:753.970667pt;}
.y27{bottom:755.153333pt;}
.ycd{bottom:760.973096pt;}
.y8e{bottom:764.332000pt;}
.y215{bottom:767.121333pt;}
.y1e0{bottom:769.592000pt;}
.y26{bottom:772.448000pt;}
.yb9{bottom:777.822667pt;}
.ycc{bottom:778.092600pt;}
.y8d{bottom:781.069333pt;}
.y214{bottom:782.464000pt;}
.y59{bottom:783.444000pt;}
.y1df{bottom:785.213333pt;}
.y180{bottom:787.993333pt;}
.ycb{bottom:795.212104pt;}
.y8c{bottom:797.806667pt;}
.y58{bottom:800.181333pt;}
.y1de{bottom:800.834667pt;}
.y17f{bottom:802.605333pt;}
.y25{bottom:805.821333pt;}
.yca{bottom:812.252784pt;}
.y213{bottom:813.149333pt;}
.y8b{bottom:814.544000pt;}
.y1dd{bottom:816.456000pt;}
.y57{bottom:816.918667pt;}
.y17e{bottom:817.217333pt;}
.y24{bottom:820.166667pt;}
.y212{bottom:828.490667pt;}
.y8a{bottom:831.281333pt;}
.y17d{bottom:831.829333pt;}
.y56{bottom:833.656000pt;}
.y23{bottom:834.513333pt;}
.y211{bottom:843.833333pt;}
.y17c{bottom:846.441333pt;}
.y89{bottom:848.018667pt;}
.y22{bottom:848.860000pt;}
.y55{bottom:850.393333pt;}
.y210{bottom:859.176000pt;}
.yc8{bottom:860.892520pt;}
.y17b{bottom:861.053333pt;}
.y88{bottom:864.754667pt;}
.y54{bottom:867.130667pt;}
.yc7{bottom:869.452400pt;}
.y20f{bottom:874.518667pt;}
.y17a{bottom:875.665333pt;}
.y87{bottom:881.492000pt;}
.y53{bottom:883.868000pt;}
.y6{bottom:887.520000pt;}
.y20e{bottom:889.861333pt;}
.y179{bottom:890.277333pt;}
.y86{bottom:898.229333pt;}
.y52{bottom:900.605333pt;}
.y178{bottom:904.889333pt;}
.y20d{bottom:905.204000pt;}
.y85{bottom:914.966667pt;}
.y51{bottom:917.342667pt;}
.y177{bottom:919.501333pt;}
.y20c{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y84{bottom:931.704000pt;}
.y50{bottom:934.080000pt;}
.y176{bottom:934.112000pt;}
.y20b{bottom:935.889333pt;}
.y83{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4f{bottom:950.817333pt;}
.y20a{bottom:951.230667pt;}
.y175{bottom:955.126667pt;}
.y82{bottom:965.178667pt;}
.y209{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y81{bottom:981.916000pt;}
.y174{bottom:983.233333pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.h12{height:30.797812pt;}
.h1b{height:30.943281pt;}
.h11{height:30.964062pt;}
.ha{height:33.771789pt;}
.hc{height:34.430976pt;}
.h19{height:34.734375pt;}
.h14{height:34.921875pt;}
.he{height:38.256384pt;}
.h17{height:38.383906pt;}
.hb{height:38.596538pt;}
.h13{height:38.670937pt;}
.h1c{height:38.853594pt;}
.h15{height:38.879687pt;}
.h4{height:38.947124pt;}
.h6{height:39.531597pt;}
.hd{height:43.421286pt;}
.h2{height:45.271688pt;}
.hf{height:48.245551pt;}
.h5{height:68.861952pt;}
.h3{height:88.836659pt;}
.h18{height:209.696000pt;}
.h16{height:258.334667pt;}
.h10{height:345.146667pt;}
.h1a{height:496.820000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:176.730927pt;}
.w5{width:521.342667pt;}
.w4{width:579.424933pt;}
.w6{width:579.425333pt;}
.w7{width:623.652133pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x48{left:-172.962667pt;}
.x3f{left:-66.881733pt;}
.x4f{left:-58.353333pt;}
.x5c{left:-36.087867pt;}
.x50{left:-30.033333pt;}
.x62{left:-7.767867pt;}
.x4e{left:-2.802667pt;}
.x0{left:0.000000pt;}
.x3{left:26.021437pt;}
.x49{left:29.198181pt;}
.x1{left:48.000000pt;}
.x2{left:51.157007pt;}
.x52{left:76.346667pt;}
.x5b{left:85.025200pt;}
.x34{left:96.826667pt;}
.x3e{left:107.139067pt;}
.x45{left:114.722667pt;}
.x43{left:119.119120pt;}
.x4b{left:122.557765pt;}
.x57{left:129.242667pt;}
.x53{left:132.681333pt;}
.x65{left:134.292000pt;}
.x40{left:135.277204pt;}
.x63{left:137.752133pt;}
.x56{left:141.048000pt;}
.x51{left:143.806667pt;}
.x5f{left:150.391357pt;}
.x5d{left:158.151754pt;}
.x64{left:166.072039pt;}
.x39{left:214.452000pt;}
.x55{left:221.026667pt;}
.x5{left:222.073333pt;}
.x4{left:223.020000pt;}
.x58{left:246.064000pt;}
.x8{left:251.365333pt;}
.x4a{left:257.277333pt;}
.x42{left:259.518066pt;}
.x33{left:265.238667pt;}
.x59{left:267.648000pt;}
.x5a{left:268.646667pt;}
.xd{left:271.074667pt;}
.x54{left:273.798667pt;}
.x6{left:276.690667pt;}
.xe{left:277.717333pt;}
.x2d{left:284.265333pt;}
.x7{left:288.993333pt;}
.x5e{left:305.431024pt;}
.x21{left:317.378667pt;}
.x37{left:321.336000pt;}
.x15{left:329.292000pt;}
.x22{left:330.662667pt;}
.x69{left:332.498667pt;}
.x38{left:334.618667pt;}
.x16{left:342.576000pt;}
.x68{left:349.350667pt;}
.x4d{left:385.516957pt;}
.xf{left:389.509333pt;}
.x10{left:396.152000pt;}
.x41{left:424.955950pt;}
.x25{left:426.468000pt;}
.x26{left:439.752000pt;}
.x27{left:443.006667pt;}
.x23{left:449.217333pt;}
.x2f{left:450.668000pt;}
.x28{left:456.289333pt;}
.x61{left:459.029723pt;}
.x24{left:462.501333pt;}
.x30{left:463.952000pt;}
.x31{left:467.338667pt;}
.x32{left:480.622667pt;}
.x11{left:512.525333pt;}
.x4c{left:518.637333pt;}
.x12{left:525.808000pt;}
.x2e{left:531.329333pt;}
.x9{left:538.168000pt;}
.xa{left:544.809333pt;}
.xb{left:551.338667pt;}
.xc{left:557.980000pt;}
.x1d{left:567.098667pt;}
.x44{left:576.718109pt;}
.x1e{left:580.381333pt;}
.x17{left:611.845333pt;}
.x1f{left:613.169333pt;}
.x60{left:614.949462pt;}
.x18{left:618.488000pt;}
.x19{left:621.868000pt;}
.x20{left:626.452000pt;}
.x1a{left:635.152000pt;}
.x1b{left:638.532000pt;}
.x66{left:639.586667pt;}
.x13{left:642.560000pt;}
.x67{left:645.564000pt;}
.x14{left:649.201333pt;}
.x1c{left:651.816000pt;}
.x46{left:656.618667pt;}
.x3c{left:664.764000pt;}
.x47{left:669.902667pt;}
.x35{left:696.126667pt;}
.x3d{left:712.742667pt;}
.x29{left:716.592000pt;}
.x6a{left:720.269333pt;}
.x2a{left:723.233333pt;}
.x2b{left:726.488000pt;}
.x3a{left:727.905333pt;}
.x2c{left:739.772000pt;}
.x3b{left:741.189333pt;}
.x36{left:744.106667pt;}
}




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