
    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_9ef2a84b70950c99475f36d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_fee47c25600e29bf649231bf.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_019542478db21690f68b2be0.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_7cf06ec34ba2ef26c878aec8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.747000;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_cacbb4f6adb172894919fb0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2d33569828515733ad95a75c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_1eef124f24d0d3fcd18bc78e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.059000;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_ed46aa94b5bdaa033e80a3ce.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_bbc473922aceffac7873a12b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.891000;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_cced7f88c024c33b8dc7a82a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.116000;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_71bec6e30724f05d3b7c793c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_635d1bfcacb6323da0eb761f.woff2')format("woff");}.fff{font-family:fff;line-height:1.003418;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_768e66ab27edf53409b062d4.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c0698d67a55cff0be50709b4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.933594;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_7a9e9bb3edb8e6fc8d2e7450.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.933594;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_edf270eaf80da04905e33ade.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.876000;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_596fa248c1285871d54f70cf.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.703000;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_f64d867d373291e827f20d23.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_1dbb8f1d20ac685ceaca0708.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.689000;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:ff17;src:url('chunks/assets/font_ebc9ab105300379fde88b238.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_8b0dd669fb6465e541c4ed19.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.m17{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);}
.m14{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);}
.m28{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);}
.mf{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);}
.m5{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);}
.m15{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);}
.m21{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);}
.m18{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);}
.m29{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);}
.m1f{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);}
.m24{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);}
.m20{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);}
.m4{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);}
.m13{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);}
.m1c{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);}
.m16{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);}
.ma{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.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);}
.mc{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);}
.m10{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1b{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);}
.m11{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);}
.m1e{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m12{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);}
.m2{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);}
.m1a{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);}
.m6{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);}
.m2b{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);}
.m9{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);}
.m25{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);}
.m2a{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);}
.m1d{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);}
.m7{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);}
.m19{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);}
.m22{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.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);}
.me{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);}
.v2{vertical-align:-19.524000px;}
.v4{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:15.118704px;}
.v6{vertical-align:16.687500px;}
.v5{vertical-align:18.750000px;}
.v1{vertical-align:21.702000px;}
.v7{vertical-align:29.263200px;}
.v8{vertical-align:45.945360px;}
.ls51{letter-spacing:-0.204408px;}
.ls52{letter-spacing:-0.162324px;}
.ls4e{letter-spacing:-0.126252px;}
.ls50{letter-spacing:-0.120240px;}
.ls4c{letter-spacing:-0.114228px;}
.ls4f{letter-spacing:-0.102204px;}
.ls4a{letter-spacing:-0.090972px;}
.ls54{letter-spacing:-0.090180px;}
.ls55{letter-spacing:-0.072144px;}
.ls4b{letter-spacing:-0.060120px;}
.ls4d{letter-spacing:-0.036072px;}
.ls56{letter-spacing:-0.030060px;}
.ls53{letter-spacing:-0.006012px;}
.ls58{letter-spacing:-0.005400px;}
.lsd{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.000435px;}
.ls73{letter-spacing:0.000649px;}
.ls6f{letter-spacing:0.000747px;}
.ls12{letter-spacing:0.000846px;}
.lsa{letter-spacing:0.000990px;}
.ls6d{letter-spacing:0.001075px;}
.ls67{letter-spacing:0.001465px;}
.ls9{letter-spacing:0.001518px;}
.ls49{letter-spacing:0.001555px;}
.ls31{letter-spacing:0.001580px;}
.ls70{letter-spacing:0.001875px;}
.ls6e{letter-spacing:0.001996px;}
.ls11{letter-spacing:0.002016px;}
.ls77{letter-spacing:0.002045px;}
.ls13{letter-spacing:0.002224px;}
.ls78{letter-spacing:0.002338px;}
.ls64{letter-spacing:0.002457px;}
.ls65{letter-spacing:0.002642px;}
.ls10{letter-spacing:0.002958px;}
.ls1c{letter-spacing:0.003049px;}
.ls25{letter-spacing:0.003226px;}
.ls22{letter-spacing:0.003389px;}
.lsb{letter-spacing:0.003494px;}
.ls71{letter-spacing:0.003835px;}
.ls14{letter-spacing:0.004435px;}
.ls75{letter-spacing:0.004800px;}
.ls8{letter-spacing:0.004860px;}
.ls38{letter-spacing:0.005400px;}
.ls72{letter-spacing:0.005415px;}
.ls37{letter-spacing:0.027000px;}
.ls35{letter-spacing:0.028728px;}
.ls3e{letter-spacing:0.030060px;}
.ls39{letter-spacing:0.032400px;}
.ls33{letter-spacing:0.033516px;}
.ls44{letter-spacing:0.036072px;}
.ls3c{letter-spacing:0.048096px;}
.ls41{letter-spacing:0.060120px;}
.ls43{letter-spacing:0.090180px;}
.ls57{letter-spacing:0.102204px;}
.ls47{letter-spacing:0.108216px;}
.ls3d{letter-spacing:0.120240px;}
.ls45{letter-spacing:0.138276px;}
.ls42{letter-spacing:0.150300px;}
.ls3b{letter-spacing:0.156312px;}
.ls59{letter-spacing:0.162324px;}
.ls46{letter-spacing:0.168336px;}
.ls36{letter-spacing:0.172368px;}
.ls40{letter-spacing:0.174348px;}
.ls3a{letter-spacing:0.180360px;}
.ls34{letter-spacing:0.181944px;}
.ls61{letter-spacing:0.596192px;}
.ls63{letter-spacing:0.601532px;}
.ls3f{letter-spacing:0.823644px;}
.lse{letter-spacing:1.275394px;}
.ls2{letter-spacing:1.861130px;}
.ls32{letter-spacing:2.989200px;}
.ls7a{letter-spacing:11.872849px;}
.ls69{letter-spacing:11.952019px;}
.lsc{letter-spacing:11.954850px;}
.ls48{letter-spacing:12.330612px;}
.ls6c{letter-spacing:12.553274px;}
.ls74{letter-spacing:13.448400px;}
.ls7c{letter-spacing:13.450090px;}
.ls79{letter-spacing:13.454400px;}
.ls7b{letter-spacing:13.611129px;}
.ls76{letter-spacing:13.635593px;}
.ls1e{letter-spacing:14.481552px;}
.ls1f{letter-spacing:14.487675px;}
.ls2e{letter-spacing:14.731306px;}
.ls2f{letter-spacing:14.736831px;}
.ls1d{letter-spacing:14.764573px;}
.ls2b{letter-spacing:14.792477px;}
.ls2a{letter-spacing:14.794553px;}
.ls3{letter-spacing:14.801790px;}
.ls1b{letter-spacing:14.940124px;}
.ls30{letter-spacing:14.944424px;}
.ls1a{letter-spacing:14.946124px;}
.ls21{letter-spacing:14.954011px;}
.ls4{letter-spacing:15.009377px;}
.ls5{letter-spacing:15.014156px;}
.ls17{letter-spacing:15.073545px;}
.ls16{letter-spacing:15.075714px;}
.ls15{letter-spacing:15.079600px;}
.ls18{letter-spacing:15.081768px;}
.ls28{letter-spacing:15.091052px;}
.ls29{letter-spacing:15.097737px;}
.ls27{letter-spacing:15.147738px;}
.ls6{letter-spacing:15.221956px;}
.ls7{letter-spacing:15.223538px;}
.ls2d{letter-spacing:16.839535px;}
.ls2c{letter-spacing:16.841612px;}
.ls5d{letter-spacing:17.127771px;}
.ls5c{letter-spacing:17.129472px;}
.ls19{letter-spacing:17.533653px;}
.ls68{letter-spacing:18.078607px;}
.ls66{letter-spacing:18.084489px;}
.ls20{letter-spacing:19.651300px;}
.ls5e{letter-spacing:19.965050px;}
.ls6a{letter-spacing:20.108019px;}
.ls6b{letter-spacing:20.113901px;}
.ls5b{letter-spacing:21.068947px;}
.ls5a{letter-spacing:21.076531px;}
.ls26{letter-spacing:22.216006px;}
.ls23{letter-spacing:28.680712px;}
.ls24{letter-spacing:28.688671px;}
.ls0{letter-spacing:70.236600px;}
.ls1{letter-spacing:72.353510px;}
.ls62{letter-spacing:93.082074px;}
.ls60{letter-spacing:107.385700px;}
.ls5f{letter-spacing:141.179454px;}
.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;}
}
.ws81{word-spacing:-60.120000px;}
.wse{word-spacing:-17.394700px;}
.wsf5{word-spacing:-15.655334px;}
.ws1{word-spacing:-14.943900px;}
.ws1e{word-spacing:-13.915795px;}
.wsdb{word-spacing:-13.449600px;}
.ws80{word-spacing:-12.151944px;}
.ws1c{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws82{word-spacing:-9.000000px;}
.ws83{word-spacing:-4.465267px;}
.ws84{word-spacing:-4.250074px;}
.ws73{word-spacing:-4.124516px;}
.ws70{word-spacing:-3.646312px;}
.ws74{word-spacing:-3.586536px;}
.ws2f{word-spacing:-3.108331px;}
.ws14{word-spacing:-2.809453px;}
.wse6{word-spacing:-2.582323px;}
.ws2d{word-spacing:-2.510575px;}
.ws30{word-spacing:-2.450800px;}
.ws35{word-spacing:-2.211697px;}
.ws109{word-spacing:-2.205734px;}
.wsd2{word-spacing:-2.092146px;}
.wsee{word-spacing:-2.044339px;}
.wsd1{word-spacing:-2.032370px;}
.ws5{word-spacing:-1.908367px;}
.ws48{word-spacing:-1.793268px;}
.ws40{word-spacing:-1.733492px;}
.ws56{word-spacing:-1.673717px;}
.ws18{word-spacing:-1.494390px;}
.ws4{word-spacing:-1.322630px;}
.ws8c{word-spacing:-1.292580px;}
.ws57{word-spacing:-1.255288px;}
.ws8d{word-spacing:-1.238472px;}
.ws10{word-spacing:-1.195512px;}
.wsdf{word-spacing:-1.129766px;}
.ws6a{word-spacing:-1.075968px;}
.ws9{word-spacing:-1.075961px;}
.ws4c{word-spacing:-0.836858px;}
.ws95{word-spacing:-0.787572px;}
.wsa6{word-spacing:-0.781560px;}
.ws22{word-spacing:-0.717307px;}
.ws38{word-spacing:-0.657532px;}
.wsca{word-spacing:-0.597756px;}
.wsf6{word-spacing:-0.484186px;}
.ws4f{word-spacing:-0.478205px;}
.ws94{word-spacing:-0.468936px;}
.wsac{word-spacing:-0.432864px;}
.ws25{word-spacing:-0.418429px;}
.wsab{word-spacing:-0.408816px;}
.wsa8{word-spacing:-0.372744px;}
.ws2a{word-spacing:-0.358654px;}
.ws68{word-spacing:-0.334744px;}
.ws69{word-spacing:-0.322790px;}
.ws96{word-spacing:-0.318636px;}
.ws13{word-spacing:-0.298878px;}
.ws93{word-spacing:-0.270540px;}
.wsf3{word-spacing:-0.268992px;}
.ws88{word-spacing:-0.263340px;}
.wsa7{word-spacing:-0.240480px;}
.ws43{word-spacing:-0.239102px;}
.wsa5{word-spacing:-0.210420px;}
.ws7e{word-spacing:-0.201504px;}
.ws16{word-spacing:-0.179327px;}
.wsf1{word-spacing:-0.161395px;}
.ws91{word-spacing:-0.150300px;}
.wsae{word-spacing:-0.143462px;}
.ws87{word-spacing:-0.119700px;}
.ws7{word-spacing:-0.119551px;}
.ws10f{word-spacing:-0.107597px;}
.ws2{word-spacing:-0.059776px;}
.ws6b{word-spacing:-0.053798px;}
.ws59{word-spacing:-0.052184px;}
.wsb7{word-spacing:-0.047881px;}
.ws1d{word-spacing:-0.047821px;}
.ws4e{word-spacing:-0.006097px;}
.ws7c{word-spacing:-0.004766px;}
.ws3d{word-spacing:-0.003679px;}
.ws52{word-spacing:-0.002779px;}
.ws75{word-spacing:-0.001723px;}
.ws6f{word-spacing:-0.000404px;}
.ws0{word-spacing:0.000000px;}
.ws79{word-spacing:0.001157px;}
.wsbf{word-spacing:0.002249px;}
.ws7f{word-spacing:0.003025px;}
.ws53{word-spacing:0.005596px;}
.wsd4{word-spacing:0.053798px;}
.wsa9{word-spacing:0.054108px;}
.wsd{word-spacing:0.059776px;}
.wsf8{word-spacing:0.107597px;}
.wsa{word-spacing:0.119551px;}
.ws8b{word-spacing:0.145800px;}
.wse2{word-spacing:0.161395px;}
.ws26{word-spacing:0.179327px;}
.wsaa{word-spacing:0.183600px;}
.ws90{word-spacing:0.192384px;}
.ws58{word-spacing:0.215194px;}
.ws20{word-spacing:0.239102px;}
.ws92{word-spacing:0.294588px;}
.wsf{word-spacing:0.298878px;}
.wsdc{word-spacing:0.322790px;}
.ws9b{word-spacing:0.330660px;}
.ws2b{word-spacing:0.358654px;}
.ws9a{word-spacing:0.402804px;}
.ws51{word-spacing:0.418429px;}
.ws10b{word-spacing:0.430387px;}
.ws37{word-spacing:0.478205px;}
.ws10a{word-spacing:0.484186px;}
.ws8e{word-spacing:0.486972px;}
.ws31{word-spacing:0.537980px;}
.ws101{word-spacing:0.537984px;}
.ws98{word-spacing:0.553104px;}
.ws8f{word-spacing:0.577152px;}
.wscd{word-spacing:0.717307px;}
.ws97{word-spacing:0.721440px;}
.ws50{word-spacing:0.777083px;}
.ws9d{word-spacing:0.817632px;}
.ws55{word-spacing:0.836858px;}
.ws9c{word-spacing:0.913824px;}
.ws100{word-spacing:0.914573px;}
.ws99{word-spacing:0.973944px;}
.wsd7{word-spacing:1.022170px;}
.ws39{word-spacing:1.075961px;}
.ws19{word-spacing:1.135736px;}
.ws34{word-spacing:1.195512px;}
.ws45{word-spacing:1.255288px;}
.wsc7{word-spacing:1.315063px;}
.ws4a{word-spacing:1.374839px;}
.ws29{word-spacing:1.434614px;}
.wsf4{word-spacing:1.452557px;}
.wsc9{word-spacing:1.494390px;}
.wsec{word-spacing:1.560154px;}
.wsb4{word-spacing:1.613941px;}
.wsed{word-spacing:1.613952px;}
.wsb3{word-spacing:1.625001px;}
.ws15{word-spacing:1.673717px;}
.wsc6{word-spacing:1.793268px;}
.wscf{word-spacing:1.853044px;}
.ws32{word-spacing:1.912819px;}
.ws44{word-spacing:1.972595px;}
.ws8{word-spacing:2.032370px;}
.ws1a{word-spacing:2.092146px;}
.wscb{word-spacing:2.151922px;}
.wsb2{word-spacing:2.211697px;}
.ws23{word-spacing:2.271473px;}
.wsd6{word-spacing:2.313331px;}
.wscc{word-spacing:2.331248px;}
.wse4{word-spacing:2.420928px;}
.wsa2{word-spacing:2.434860px;}
.ws10d{word-spacing:2.474726px;}
.ws3b{word-spacing:2.570351px;}
.ws3c{word-spacing:2.601743px;}
.wsad{word-spacing:2.677954px;}
.ws36{word-spacing:2.689902px;}
.wsb0{word-spacing:2.749678px;}
.wse5{word-spacing:2.851315px;}
.ws27{word-spacing:2.869229px;}
.ws2c{word-spacing:2.929004px;}
.ws9f{word-spacing:2.939868px;}
.ws9e{word-spacing:3.006000px;}
.wsa0{word-spacing:3.042072px;}
.wsa1{word-spacing:3.084156px;}
.wse1{word-spacing:3.174106px;}
.wsfc{word-spacing:3.550694px;}
.ws17{word-spacing:3.646312px;}
.wsd3{word-spacing:3.765863px;}
.ws5f{word-spacing:3.873485px;}
.wsc2{word-spacing:3.945190px;}
.ws33{word-spacing:4.004965px;}
.ws104{word-spacing:4.034880px;}
.ws103{word-spacing:4.088678px;}
.ws54{word-spacing:4.124516px;}
.ws5e{word-spacing:4.250074px;}
.ws71{word-spacing:4.303843px;}
.wse8{word-spacing:4.572864px;}
.ws41{word-spacing:4.722272px;}
.wsbb{word-spacing:4.788058px;}
.wsb5{word-spacing:4.961375px;}
.ws24{word-spacing:5.021150px;}
.wsa4{word-spacing:5.068116px;}
.wsa3{word-spacing:5.080140px;}
.ws46{word-spacing:5.200477px;}
.wsce{word-spacing:5.320028px;}
.wsf2{word-spacing:5.373696px;}
.ws108{word-spacing:5.375386px;}
.wse9{word-spacing:5.487437px;}
.wsb{word-spacing:5.678682px;}
.ws3e{word-spacing:5.858009px;}
.ws11{word-spacing:5.971475px;}
.ws12{word-spacing:5.977560px;}
.wsb1{word-spacing:6.097111px;}
.wsbe{word-spacing:6.105253px;}
.wsbd{word-spacing:6.121037px;}
.ws21{word-spacing:6.156887px;}
.ws47{word-spacing:6.575316px;}
.ws3f{word-spacing:6.993745px;}
.ws28{word-spacing:7.053521px;}
.ws42{word-spacing:7.113296px;}
.wsd5{word-spacing:7.155187px;}
.ws7b{word-spacing:7.232848px;}
.ws7a{word-spacing:7.292623px;}
.wsd0{word-spacing:7.412174px;}
.wsfa{word-spacing:7.639373px;}
.ws6{word-spacing:7.651277px;}
.wsfb{word-spacing:7.800768px;}
.ws4d{word-spacing:8.009930px;}
.wsc{word-spacing:8.069706px;}
.wsc0{word-spacing:8.126216px;}
.wsc1{word-spacing:8.129502px;}
.wsc3{word-spacing:8.368584px;}
.ws49{word-spacing:8.428360px;}
.wsaf{word-spacing:8.512067px;}
.ws72{word-spacing:8.607686px;}
.wsff{word-spacing:8.876736px;}
.wsc8{word-spacing:8.906564px;}
.wsea{word-spacing:9.038131px;}
.ws106{word-spacing:9.360922px;}
.ws7d{word-spacing:9.862974px;}
.ws2e{word-spacing:10.460730px;}
.ws10e{word-spacing:11.082470px;}
.wsef{word-spacing:11.351462px;}
.ws1b{word-spacing:11.904248px;}
.ws107{word-spacing:12.911616px;}
.wseb{word-spacing:13.073011px;}
.wsd8{word-spacing:13.126810px;}
.wsfe{word-spacing:13.342003px;}
.wsf7{word-spacing:13.390118px;}
.wse7{word-spacing:13.390157px;}
.ws10c{word-spacing:13.392067px;}
.wse0{word-spacing:13.395802px;}
.wse3{word-spacing:13.557197px;}
.wsdd{word-spacing:13.718592px;}
.ws78{word-spacing:13.739698px;}
.ws77{word-spacing:13.741409px;}
.ws76{word-spacing:13.748388px;}
.ws4b{word-spacing:14.884124px;}
.ws89{word-spacing:15.633000px;}
.ws8a{word-spacing:15.654600px;}
.ws67{word-spacing:16.374334px;}
.ws5d{word-spacing:16.683783px;}
.wsfd{word-spacing:17.000294px;}
.wsc5{word-spacing:17.753353px;}
.wsde{word-spacing:18.769613px;}
.ws102{word-spacing:18.771984px;}
.ws105{word-spacing:18.773059px;}
.wsf0{word-spacing:18.774931px;}
.wsf9{word-spacing:18.774970px;}
.wsda{word-spacing:18.775642px;}
.wsd9{word-spacing:19.636416px;}
.ws3a{word-spacing:20.861684px;}
.wsc4{word-spacing:31.501741px;}
.wsb9{word-spacing:57.504572px;}
.wsbc{word-spacing:57.839736px;}
.wsba{word-spacing:84.788640px;}
.wsb8{word-spacing:128.336220px;}
.ws85{word-spacing:176.293488px;}
.ws63{word-spacing:178.262074px;}
.ws62{word-spacing:182.802121px;}
.ws65{word-spacing:184.419839px;}
.ws5b{word-spacing:184.576393px;}
.ws61{word-spacing:186.881364px;}
.ws5a{word-spacing:188.385857px;}
.ws6c{word-spacing:188.455795px;}
.ws64{word-spacing:191.308186px;}
.ws6d{word-spacing:195.772378px;}
.ws66{word-spacing:197.205029px;}
.ws6e{word-spacing:203.304154px;}
.ws60{word-spacing:204.354298px;}
.wsb6{word-spacing:213.237948px;}
.ws5c{word-spacing:215.834877px;}
.ws86{word-spacing:221.111424px;}
.ws1f{word-spacing:751.309447px;}
._5{margin-left:-7.908365px;}
._3{margin-left:-5.971622px;}
._6{margin-left:-4.949453px;}
._4e{margin-left:-3.479072px;}
._2{margin-left:-1.936742px;}
._8{width:1.091170px;}
._0{width:3.000672px;}
._38{width:7.560000px;}
._3c{width:10.436890px;}
._52{width:12.470746px;}
._c{width:14.453608px;}
._10{width:16.103560px;}
._4{width:17.861069px;}
._7{width:19.797811px;}
._9{width:20.939446px;}
._a{width:22.058271px;}
._14{width:23.073382px;}
._d{width:24.567772px;}
._b{width:26.540366px;}
._e{width:27.743102px;}
._54{width:28.782144px;}
._12{width:29.947576px;}
._51{width:33.378708px;}
._15{width:34.610072px;}
._33{width:35.739824px;}
._4d{width:37.299974px;}
._50{width:38.340083px;}
._11{width:39.870325px;}
._55{width:41.335304px;}
._13{width:42.560227px;}
._1{width:54.402408px;}
._53{width:58.198483px;}
._4b{width:71.294178px;}
._46{width:73.746844px;}
._45{width:80.819458px;}
._4c{width:86.777794px;}
._48{width:89.057871px;}
._49{width:90.494289px;}
._23{width:105.934429px;}
._4a{width:113.189682px;}
._18{width:119.919862px;}
._47{width:126.190608px;}
._22{width:128.686849px;}
._2a{width:132.093363px;}
._19{width:137.349467px;}
._41{width:141.597389px;}
._43{width:143.265139px;}
._2b{width:145.255680px;}
._17{width:149.664997px;}
._2c{width:152.357069px;}
._3f{width:154.240013px;}
._44{width:156.445747px;}
._3d{width:158.167296px;}
._16{width:159.945333px;}
._21{width:170.434407px;}
._27{width:171.739018px;}
._24{width:176.279065px;}
._1f{width:178.053337px;}
._1a{width:181.862801px;}
._28{width:185.143428px;}
._40{width:186.465254px;}
._31{width:189.047578px;}
._29{width:190.681973px;}
._32{width:196.579354px;}
._42{width:201.474470px;}
._3e{width:202.550976px;}
._20{width:209.311821px;}
._1d{width:248.786618px;}
._1e{width:266.245054px;}
._2f{width:267.293462px;}
._30{width:285.292915px;}
._25{width:339.616388px;}
._2d{width:349.988181px;}
._1b{width:360.542351px;}
._26{width:364.029286px;}
._1c{width:381.520499px;}
._2e{width:414.893261px;}
._3a{width:477.713520px;}
._37{width:494.637300px;}
._36{width:507.238452px;}
._3b{width:578.859408px;}
._39{width:583.602876px;}
._35{width:618.105744px;}
._34{width:1560.514536px;}
._4f{width:1922.198700px;}
._f{width:1946.108700px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(61,100,144);}
.fsf{font-size:35.865600px;}
.fse{font-size:36.000000px;}
.fs11{font-size:37.240092px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs10{font-size:47.880576px;}
.fs9{font-size:52.184448px;}
.fs5{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fsb{font-size:72.000000px;}
.fs0{font-size:102.515176px;}
.fs2{font-size:107.596800px;}
.y11d{bottom:-608.842050px;}
.y11c{bottom:-587.872050px;}
.y11b{bottom:-566.902050px;}
.y11a{bottom:-545.932050px;}
.y119{bottom:-524.872050px;}
.y118{bottom:-503.902050px;}
.y117{bottom:-482.932050px;}
.y116{bottom:-461.962050px;}
.y115{bottom:-440.992050px;}
.y113{bottom:-419.842050px;}
.y114{bottom:-416.062050px;}
.y112{bottom:-389.602050px;}
.y111{bottom:-351.711969px;}
.y110{bottom:-331.461042px;}
.y10f{bottom:-311.301303px;}
.y10e{bottom:-291.051384px;}
.y10d{bottom:-270.801465px;}
.y10c{bottom:-250.551546px;}
.y10b{bottom:-230.301627px;}
.y10a{bottom:-210.051708px;}
.y109{bottom:-189.801789px;}
.y108{bottom:-169.641726px;}
.y107{bottom:-149.391807px;}
.y106{bottom:-129.141888px;}
.y105{bottom:-108.891969px;}
.y104{bottom:-88.642050px;}
.y103{bottom:-50.842500px;}
.y102{bottom:-31.312050px;}
.y0{bottom:0.000000px;}
.y10{bottom:3.425340px;}
.y101{bottom:6.127950px;}
.yf{bottom:14.151273px;}
.y2{bottom:18.594411px;}
.y30{bottom:63.780000px;}
.y2f{bottom:110.116500px;}
.y1a4{bottom:114.156000px;}
.yd1{bottom:117.202500px;}
.y1da{bottom:117.385500px;}
.y7b{bottom:122.314500px;}
.y63{bottom:123.121500px;}
.y1a8{bottom:125.452500px;}
.y2e{bottom:130.381500px;}
.yd0{bottom:131.398500px;}
.y1a3{bottom:134.419500px;}
.y1d9{bottom:136.753500px;}
.y9e{bottom:139.321500px;}
.y1a7{bottom:140.650500px;}
.y13a{bottom:141.571500px;}
.y7a{bottom:142.579500px;}
.y62{bottom:143.386500px;}
.y2d{bottom:150.645000px;}
.ycf{bottom:153.185115px;}
.y1a2{bottom:154.683000px;}
.y1a6{bottom:155.848500px;}
.y1d8{bottom:156.120000px;}
.y173{bottom:156.288000px;}
.y139{bottom:158.367000px;}
.y9d{bottom:159.585000px;}
.y79{bottom:162.843000px;}
.y61{bottom:163.650000px;}
.yce{bottom:169.476750px;}
.y172{bottom:170.484000px;}
.y2c{bottom:170.910000px;}
.y1a5{bottom:171.048000px;}
.y1a1{bottom:174.948000px;}
.y138{bottom:175.162500px;}
.y1d7{bottom:175.488000px;}
.y9c{bottom:179.850000px;}
.y78{bottom:183.108000px;}
.y60{bottom:183.913500px;}
.y171{bottom:184.681500px;}
.ycd{bottom:185.768385px;}
.y2b{bottom:191.173500px;}
.y137{bottom:191.958000px;}
.y1d6{bottom:194.856000px;}
.y1a0{bottom:195.211500px;}
.y9b{bottom:200.113500px;}
.ycc{bottom:202.060020px;}
.y77{bottom:203.371500px;}
.y5f{bottom:204.178500px;}
.y16f{bottom:205.425075px;}
.y136{bottom:208.753500px;}
.y2a{bottom:211.437000px;}
.y170{bottom:212.739540px;}
.y1d5{bottom:214.222500px;}
.y19f{bottom:215.476500px;}
.yfe{bottom:216.877500px;}
.ycb{bottom:218.351655px;}
.y16e{bottom:220.055340px;}
.y9a{bottom:220.378500px;}
.y76{bottom:223.635000px;}
.y5e{bottom:224.442000px;}
.y135{bottom:225.549000px;}
.y29{bottom:231.702000px;}
.y1d4{bottom:233.590500px;}
.y16c{bottom:234.685605px;}
.y19e{bottom:235.740000px;}
.yfc{bottom:237.141000px;}
.y99{bottom:240.642000px;}
.yca{bottom:241.630200px;}
.y16d{bottom:242.000070px;}
.y134{bottom:242.344500px;}
.yfd{bottom:242.566500px;}
.y75{bottom:243.900000px;}
.y5d{bottom:244.707000px;}
.y16b{bottom:249.315870px;}
.y167{bottom:249.678990px;}
.y28{bottom:251.965500px;}
.y1d3{bottom:252.957000px;}
.y19d{bottom:256.003500px;}
.yfb{bottom:257.406000px;}
.yc9{bottom:257.921835px;}
.y133{bottom:259.140000px;}
.y98{bottom:260.905500px;}
.y169{bottom:263.944800px;}
.y74{bottom:264.163500px;}
.y166{bottom:264.309255px;}
.y5c{bottom:264.970500px;}
.y16a{bottom:271.260600px;}
.y27{bottom:272.230500px;}
.y1d2{bottom:272.325000px;}
.yc8{bottom:274.213470px;}
.y132{bottom:275.935500px;}
.y19c{bottom:276.268500px;}
.yfa{bottom:277.669500px;}
.y168{bottom:278.575065px;}
.y97{bottom:281.170500px;}
.y73{bottom:284.428500px;}
.y5b{bottom:285.234000px;}
.yc7{bottom:290.505105px;}
.y1d1{bottom:291.693000px;}
.y26{bottom:292.494000px;}
.y131{bottom:292.731000px;}
.y19b{bottom:296.532000px;}
.yf9{bottom:297.934500px;}
.y165{bottom:299.616000px;}
.y96{bottom:301.434000px;}
.y72{bottom:304.692000px;}
.y5a{bottom:305.499000px;}
.yc6{bottom:306.796740px;}
.y164{bottom:306.930465px;}
.y1d0{bottom:311.059500px;}
.y25{bottom:312.757500px;}
.y130{bottom:316.729500px;}
.y19a{bottom:316.797000px;}
.yf8{bottom:318.198000px;}
.y95{bottom:321.699000px;}
.y71{bottom:324.955500px;}
.y59{bottom:325.762500px;}
.yc5{bottom:330.075285px;}
.y1cf{bottom:330.427500px;}
.y24{bottom:333.022500px;}
.y12f{bottom:333.525000px;}
.y199{bottom:337.060500px;}
.yf7{bottom:338.461500px;}
.y94{bottom:341.962500px;}
.y163{bottom:344.008500px;}
.y70{bottom:345.220500px;}
.y58{bottom:346.027500px;}
.yc4{bottom:346.366920px;}
.y201{bottom:347.305500px;}
.y1ce{bottom:349.794000px;}
.y12e{bottom:350.320500px;}
.y23{bottom:353.286000px;}
.y198{bottom:357.324000px;}
.yf6{bottom:358.726500px;}
.y93{bottom:362.226000px;}
.yc3{bottom:362.658555px;}
.y6f{bottom:365.484000px;}
.y57{bottom:366.291000px;}
.y200{bottom:366.672000px;}
.y12d{bottom:367.116000px;}
.y1cd{bottom:369.162000px;}
.y22{bottom:373.551000px;}
.y162{bottom:377.220000px;}
.y197{bottom:377.589000px;}
.yf5{bottom:378.990000px;}
.y12c{bottom:383.911500px;}
.yc2{bottom:385.937100px;}
.y1ff{bottom:386.040000px;}
.y56{bottom:386.554500px;}
.y1cc{bottom:388.530000px;}
.y92{bottom:391.456500px;}
.y21{bottom:393.814500px;}
.y6e{bottom:394.714500px;}
.y161{bottom:397.483500px;}
.y196{bottom:397.852500px;}
.yf4{bottom:399.255000px;}
.y12b{bottom:400.707000px;}
.yc1{bottom:402.228735px;}
.y55{bottom:406.819500px;}
.y1cb{bottom:407.896500px;}
.y20{bottom:414.078000px;}
.y12a{bottom:417.502500px;}
.y160{bottom:417.747000px;}
.y195{bottom:418.117500px;}
.yc0{bottom:418.520370px;}
.y1fe{bottom:418.836000px;}
.yf3{bottom:419.518500px;}
.y91{bottom:426.276000px;}
.y54{bottom:427.083000px;}
.y1ca{bottom:427.264500px;}
.y6d{bottom:429.534000px;}
.y129{bottom:434.298000px;}
.y1f{bottom:434.343000px;}
.y15f{bottom:438.012000px;}
.y1fd{bottom:438.204000px;}
.y194{bottom:438.381000px;}
.yf2{bottom:439.782000px;}
.ybf{bottom:441.797460px;}
.y1c9{bottom:446.631000px;}
.y53{bottom:447.348000px;}
.y6c{bottom:449.799000px;}
.y128{bottom:451.093500px;}
.y1fc{bottom:457.570500px;}
.ybe{bottom:458.089095px;}
.y15e{bottom:458.275500px;}
.y193{bottom:458.644500px;}
.yf1{bottom:460.047000px;}
.y90{bottom:461.095500px;}
.y1e{bottom:463.573500px;}
.y100{bottom:463.867950px;}
.y1c8{bottom:465.999000px;}
.y52{bottom:467.611500px;}
.y127{bottom:467.889000px;}
.y6b{bottom:470.062500px;}
.ybd{bottom:474.380730px;}
.y1fb{bottom:476.938500px;}
.y15d{bottom:478.540500px;}
.y192{bottom:478.909500px;}
.yf0{bottom:480.310500px;}
.y8f{bottom:481.360500px;}
.y126{bottom:484.684500px;}
.y1c7{bottom:485.367000px;}
.y51{bottom:487.875000px;}
.y6a{bottom:490.326000px;}
.ybc{bottom:490.672365px;}
.y1fa{bottom:496.305000px;}
.y15c{bottom:498.804000px;}
.y191{bottom:499.173000px;}
.yef{bottom:500.575500px;}
.y125{bottom:501.480000px;}
.y8e{bottom:501.624000px;}
.y1c6{bottom:504.733500px;}
.y50{bottom:508.140000px;}
.y69{bottom:510.591000px;}
.ybb{bottom:513.950910px;}
.y1f9{bottom:515.673000px;}
.y124{bottom:518.275500px;}
.y15b{bottom:519.067500px;}
.y190{bottom:519.438000px;}
.yee{bottom:520.839000px;}
.y8d{bottom:521.889000px;}
.y1c5{bottom:524.101500px;}
.y4f{bottom:528.403500px;}
.yba{bottom:530.242545px;}
.y68{bottom:530.854500px;}
.y1f8{bottom:535.041000px;}
.y123{bottom:535.071000px;}
.y15a{bottom:539.332500px;}
.y18f{bottom:539.701500px;}
.y1d{bottom:539.989500px;}
.yed{bottom:541.102500px;}
.y8c{bottom:542.152500px;}
.y1c4{bottom:543.468000px;}
.yb9{bottom:546.534180px;}
.y4e{bottom:548.667000px;}
.y67{bottom:551.119500px;}
.y122{bottom:551.868000px;}
.y1f7{bottom:554.407500px;}
.y159{bottom:559.596000px;}
.y18e{bottom:559.965000px;}
.yec{bottom:561.367500px;}
.y8b{bottom:562.416000px;}
.yb8{bottom:562.825815px;}
.y1c3{bottom:562.836000px;}
.y4d{bottom:568.932000px;}
.y66{bottom:571.383000px;}
.y1f6{bottom:573.775500px;}
.y121{bottom:575.865000px;}
.y1c{bottom:578.185500px;}
.yb7{bottom:579.117450px;}
.y158{bottom:579.861000px;}
.y18d{bottom:580.230000px;}
.yeb{bottom:581.631000px;}
.y1c2{bottom:582.204000px;}
.y8a{bottom:582.681000px;}
.y4c{bottom:589.195500px;}
.y1f5{bottom:593.142000px;}
.y1b{bottom:598.450500px;}
.y157{bottom:600.124500px;}
.y18c{bottom:600.493500px;}
.y65{bottom:600.613500px;}
.y1c1{bottom:601.570500px;}
.yea{bottom:601.896000px;}
.yb6{bottom:602.395995px;}
.y120{bottom:607.680000px;}
.y4b{bottom:609.460500px;}
.y89{bottom:611.911500px;}
.y1f4{bottom:612.510000px;}
.y1a{bottom:618.714000px;}
.y18b{bottom:620.758500px;}
.y1c0{bottom:620.938500px;}
.y4a{bottom:629.724000px;}
.ye9{bottom:631.126500px;}
.y1f3{bottom:631.878000px;}
.yb5{bottom:633.508500px;}
.y64{bottom:635.433000px;}
.y156{bottom:636.874500px;}
.y11f{bottom:637.372500px;}
.y19{bottom:638.977500px;}
.y1bf{bottom:640.305000px;}
.y18a{bottom:641.022000px;}
.y88{bottom:646.731000px;}
.y49{bottom:649.987500px;}
.y155{bottom:651.072000px;}
.y1f2{bottom:651.244500px;}
.yb4{bottom:652.741500px;}
.y11e{bottom:656.605500px;}
.y18{bottom:659.242500px;}
.y1be{bottom:659.673000px;}
.y189{bottom:661.285500px;}
.y154{bottom:665.268000px;}
.ye8{bottom:665.946000px;}
.y87{bottom:666.994500px;}
.y48{bottom:670.252500px;}
.y1f1{bottom:670.612500px;}
.yff{bottom:679.035000px;}
.y1bd{bottom:679.041000px;}
.y152{bottom:679.465500px;}
.y17{bottom:679.506000px;}
.y188{bottom:681.550500px;}
.y153{bottom:683.805000px;}
.yb3{bottom:685.681500px;}
.ye7{bottom:686.209500px;}
.y86{bottom:687.258000px;}
.y1f0{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y1bc{bottom:698.407500px;}
.y16{bottom:699.771000px;}
.y151{bottom:701.523000px;}
.y187{bottom:701.814000px;}
.ye6{bottom:706.473000px;}
.yb2{bottom:707.468520px;}
.y85{bottom:707.523000px;}
.y1ef{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y1bb{bottom:717.775500px;}
.y150{bottom:718.318500px;}
.y15{bottom:720.034500px;}
.y186{bottom:722.077500px;}
.yb1{bottom:723.760155px;}
.ye5{bottom:726.738000px;}
.y84{bottom:727.786500px;}
.y1ee{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.y14f{bottom:735.114000px;}
.y1ba{bottom:737.142000px;}
.yb0{bottom:740.051790px;}
.y14{bottom:740.298000px;}
.y185{bottom:742.342500px;}
.ye4{bottom:747.001500px;}
.y83{bottom:748.051500px;}
.y1ed{bottom:748.081500px;}
.y44{bottom:751.308000px;}
.y14e{bottom:751.911000px;}
.y1b9{bottom:756.510000px;}
.y13{bottom:760.563000px;}
.y184{bottom:762.606000px;}
.yaf{bottom:763.330335px;}
.y1ec{bottom:767.449500px;}
.y82{bottom:768.315000px;}
.y14d{bottom:768.706500px;}
.y43{bottom:771.573000px;}
.y1b8{bottom:775.878000px;}
.yae{bottom:779.621970px;}
.y12{bottom:780.826500px;}
.y183{bottom:782.871000px;}
.ye3{bottom:783.123000px;}
.y14c{bottom:785.502000px;}
.y1eb{bottom:786.816000px;}
.y81{bottom:788.578500px;}
.y42{bottom:791.836500px;}
.y1b7{bottom:795.244500px;}
.yad{bottom:795.913605px;}
.y11{bottom:801.091500px;}
.y14b{bottom:802.297500px;}
.y182{bottom:803.134500px;}
.ye2{bottom:805.180500px;}
.y1ea{bottom:806.184000px;}
.y80{bottom:808.843500px;}
.y41{bottom:812.101500px;}
.yac{bottom:812.205240px;}
.y1b6{bottom:814.612500px;}
.y14a{bottom:819.093000px;}
.ye1{bottom:821.976000px;}
.y181{bottom:823.398000px;}
.y1e9{bottom:825.552000px;}
.yab{bottom:828.496875px;}
.y7f{bottom:829.107000px;}
.y40{bottom:832.365000px;}
.y1b5{bottom:833.979000px;}
.y149{bottom:835.888500px;}
.ye{bottom:836.523055px;}
.yd{bottom:837.289500px;}
.ye0{bottom:838.773000px;}
.y180{bottom:843.663000px;}
.y1e8{bottom:844.918500px;}
.y7e{bottom:849.372000px;}
.yaa{bottom:851.775420px;}
.y3f{bottom:852.628500px;}
.y148{bottom:852.684000px;}
.y1b4{bottom:853.347000px;}
.ydf{bottom:862.770000px;}
.y17f{bottom:863.926500px;}
.y1e7{bottom:864.286500px;}
.ya9{bottom:868.067055px;}
.y147{bottom:869.479500px;}
.y7d{bottom:869.635500px;}
.y1b3{bottom:872.715000px;}
.y3e{bottom:872.893500px;}
.yc{bottom:876.295500px;}
.yde{bottom:879.565500px;}
.y1e6{bottom:883.653000px;}
.y17e{bottom:884.191500px;}
.ya8{bottom:884.358690px;}
.y146{bottom:886.275000px;}
.y1b2{bottom:892.081500px;}
.y3d{bottom:893.157000px;}
.ydd{bottom:896.361000px;}
.y7c{bottom:898.866000px;}
.yb{bottom:899.334000px;}
.ya7{bottom:900.650325px;}
.y1e5{bottom:903.021000px;}
.y17d{bottom:904.455000px;}
.y145{bottom:910.272000px;}
.y1b1{bottom:911.449500px;}
.ya{bottom:912.609000px;}
.ydc{bottom:913.156500px;}
.y3c{bottom:913.422000px;}
.ya6{bottom:916.941960px;}
.y1e4{bottom:922.389000px;}
.y17c{bottom:924.718500px;}
.y144{bottom:927.067500px;}
.y1b0{bottom:930.816000px;}
.y3b{bottom:933.685500px;}
.y9{bottom:935.649000px;}
.ydb{bottom:937.155000px;}
.ya5{bottom:940.219050px;}
.y1e3{bottom:941.755500px;}
.y143{bottom:943.864500px;}
.y17b{bottom:944.983500px;}
.y1af{bottom:950.184000px;}
.y8{bottom:953.805000px;}
.y3a{bottom:953.949000px;}
.yda{bottom:953.950500px;}
.ya4{bottom:956.510685px;}
.y142{bottom:960.660000px;}
.y1e2{bottom:961.123500px;}
.y17a{bottom:965.247000px;}
.y1ae{bottom:969.552000px;}
.yd9{bottom:970.746000px;}
.ya3{bottom:972.803775px;}
.y39{bottom:974.214000px;}
.y7{bottom:976.047000px;}
.y141{bottom:977.455500px;}
.y1e1{bottom:980.490000px;}
.y179{bottom:985.512000px;}
.yd8{bottom:987.541500px;}
.ya2{bottom:989.095410px;}
.y140{bottom:994.251000px;}
.y38{bottom:994.477500px;}
.y6{bottom:996.310500px;}
.y1ad{bottom:997.885500px;}
.y1e0{bottom:999.858000px;}
.ya1{bottom:1005.387045px;}
.y178{bottom:1005.775500px;}
.y13f{bottom:1011.046500px;}
.yd7{bottom:1011.540000px;}
.y37{bottom:1014.742500px;}
.y1df{bottom:1019.226000px;}
.y177{bottom:1026.039000px;}
.y13e{bottom:1027.842000px;}
.yd6{bottom:1028.335500px;}
.ya0{bottom:1028.664135px;}
.y36{bottom:1035.006000px;}
.y1ac{bottom:1037.337000px;}
.y1de{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y13d{bottom:1044.637500px;}
.yd5{bottom:1045.131000px;}
.y176{bottom:1046.304000px;}
.y35{bottom:1055.269500px;}
.y1dd{bottom:1057.960500px;}
.y9f{bottom:1059.777000px;}
.y13c{bottom:1061.433000px;}
.y1ab{bottom:1061.502000px;}
.yd4{bottom:1061.926500px;}
.y175{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y1aa{bottom:1076.700000px;}
.y1dc{bottom:1077.327000px;}
.y13b{bottom:1085.730000px;}
.yd3{bottom:1085.923500px;}
.y174{bottom:1086.832500px;}
.y33{bottom:1095.798000px;}
.y1db{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y1a9{bottom:1100.865000px;}
.y32{bottom:1116.063000px;}
.yd2{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.h17{height:6.635092px;}
.hf{height:17.932680px;}
.ha{height:25.508090px;}
.h25{height:26.110157px;}
.h21{height:28.971914px;}
.h8{height:30.461558px;}
.h18{height:33.072749px;}
.hc{height:33.112997px;}
.h24{height:33.187496px;}
.hb{height:34.199443px;}
.h15{height:34.813397px;}
.h29{height:34.857059px;}
.h10{height:35.052500px;}
.h13{height:37.572803px;}
.h2d{height:37.927872px;}
.h14{height:37.990278px;}
.h2c{height:38.465856px;}
.h12{height:38.734848px;}
.h9{height:39.165235px;}
.h23{height:39.434227px;}
.h19{height:41.484266px;}
.h26{height:41.842920px;}
.hd{height:43.038432px;}
.h2a{height:43.468157px;}
.he{height:43.516637px;}
.h4{height:43.815515px;}
.h20{height:44.091914px;}
.h1c{height:44.279648px;}
.h22{height:48.876816px;}
.h2b{height:49.117939px;}
.h1e{height:49.939453px;}
.h2{height:50.931027px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h11{height:54.575123px;}
.h16{height:54.768749px;}
.h1a{height:54.774749px;}
.h1f{height:55.599258px;}
.h27{height:63.737215px;}
.h1d{height:66.585938px;}
.h3{height:69.505289px;}
.h28{height:72.758226px;}
.h5{height:77.469696px;}
.h1b{height:451.972500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:211.537947px;}
.w4{width:652.732500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x66{left:-2.883000px;}
.x0{left:0.000000px;}
.x7{left:29.274117px;}
.x2{left:57.111683px;}
.x69{left:84.057000px;}
.x68{left:85.227000px;}
.x1{left:114.802500px;}
.x46{left:119.385000px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x76{left:129.861000px;}
.x7d{left:132.902715px;}
.x4{left:145.498500px;}
.xb{left:146.692500px;}
.x94{left:153.547500px;}
.x90{left:155.301000px;}
.x50{left:157.306500px;}
.x95{left:161.019000px;}
.x91{left:170.245500px;}
.x77{left:172.929000px;}
.x83{left:177.228720px;}
.x70{left:179.857500px;}
.x7e{left:181.142940px;}
.x47{left:182.419500px;}
.x97{left:184.662000px;}
.x71{left:186.334500px;}
.xbd{left:189.003000px;}
.x8{left:193.012500px;}
.x24{left:194.841000px;}
.x3e{left:196.875000px;}
.x4b{left:198.030000px;}
.x32{left:199.869000px;}
.x26{left:200.899500px;}
.x25{left:202.314000px;}
.xaa{left:205.221000px;}
.x7b{left:207.123375px;}
.x1b{left:208.641000px;}
.x1c{left:212.452500px;}
.x33{left:214.813500px;}
.x58{left:219.075000px;}
.x59{left:220.905000px;}
.x57{left:223.353000px;}
.x4c{left:226.343010px;}
.x1d{left:227.395500px;}
.x9f{left:229.357500px;}
.x3f{left:230.574000px;}
.x4e{left:232.181925px;}
.x4d{left:234.150540px;}
.x53{left:235.237425px;}
.x52{left:236.372325px;}
.x4f{left:239.043705px;}
.x51{left:240.520530px;}
.x55{left:241.668525px;}
.x54{left:243.391245px;}
.x56{left:244.859340px;}
.xa0{left:247.698000px;}
.x89{left:249.976500px;}
.x84{left:251.059500px;}
.x5f{left:253.816500px;}
.xa2{left:257.697000px;}
.xa1{left:262.642500px;}
.xc8{left:267.238500px;}
.xbf{left:271.161000px;}
.xb4{left:275.085000px;}
.xc0{left:277.603500px;}
.xb9{left:278.686500px;}
.xb5{left:281.809500px;}
.x19{left:286.281000px;}
.x27{left:288.946500px;}
.x7a{left:293.403000px;}
.xb0{left:294.583500px;}
.x72{left:296.499000px;}
.x28{left:298.944000px;}
.x1a{left:301.224000px;}
.x73{left:302.488500px;}
.xa9{left:309.213000px;}
.xba{left:311.088000px;}
.x6a{left:313.764000px;}
.x3b{left:316.728000px;}
.x6f{left:320.887500px;}
.x6e{left:322.057500px;}
.x34{left:323.884500px;}
.x6c{left:325.218000px;}
.x6b{left:326.334000px;}
.x29{left:327.364500px;}
.x35{left:331.356000px;}
.x6d{left:333.267000px;}
.x2a{left:334.836000px;}
.x2b{left:338.505000px;}
.x7f{left:340.335015px;}
.x16{left:343.443000px;}
.x2c{left:345.976500px;}
.x10{left:349.998000px;}
.x5c{left:354.391500px;}
.x11{left:357.469500px;}
.xbe{left:359.131500px;}
.x31{left:364.917000px;}
.x1e{left:368.076000px;}
.xab{left:370.101000px;}
.x78{left:374.082000px;}
.x1f{left:375.549000px;}
.xac{left:377.443500px;}
.x20{left:379.359000px;}
.x80{left:382.479630px;}
.x79{left:384.079500px;}
.xb8{left:386.689500px;}
.x3a{left:390.600000px;}
.x21{left:394.303500px;}
.x22{left:398.680500px;}
.x23{left:406.152000px;}
.x74{left:407.938500px;}
.x75{left:413.169000px;}
.xad{left:419.569500px;}
.xc1{left:421.291500px;}
.xc2{left:425.151000px;}
.xae{left:426.294000px;}
.x81{left:427.617315px;}
.xbb{left:433.833000px;}
.x2d{left:445.632000px;}
.x48{left:451.113000px;}
.x2e{left:453.105000px;}
.x85{left:456.609000px;}
.x60{left:459.369000px;}
.x49{left:461.110500px;}
.x36{left:463.839000px;}
.x9b{left:468.363000px;}
.xc3{left:471.267000px;}
.xa3{left:477.570000px;}
.x37{left:478.783500px;}
.x61{left:480.540000px;}
.x9c{left:483.307500px;}
.xa4{left:492.513000px;}
.x17{left:512.821500px;}
.x4a{left:518.038500px;}
.x18{left:527.766000px;}
.x2f{left:529.416000px;}
.x9{left:532.129500px;}
.x30{left:536.889000px;}
.xa{left:542.127000px;}
.x9d{left:546.934500px;}
.x9e{left:559.825500px;}
.x5d{left:574.140000px;}
.x8d{left:578.448000px;}
.x7c{left:581.233095px;}
.xaf{left:582.385500px;}
.x8e{left:585.919500px;}
.x5e{left:589.182000px;}
.xe{left:603.193500px;}
.x40{left:607.450500px;}
.xf{left:610.666500px;}
.x41{left:622.393500px;}
.xc4{left:629.464500px;}
.xb6{left:635.337000px;}
.xa5{left:637.107000px;}
.x38{left:642.294000px;}
.xbc{left:646.038000px;}
.x67{left:648.267000px;}
.xa6{left:652.051500px;}
.x64{left:654.270000px;}
.xc{left:655.540500px;}
.x39{left:657.238500px;}
.x86{left:660.096000px;}
.xd{left:663.012000px;}
.x65{left:666.105000px;}
.x8a{left:667.401000px;}
.x62{left:669.348000px;}
.x87{left:675.040500px;}
.x44{left:676.740000px;}
.x63{left:679.345500px;}
.x8b{left:682.345500px;}
.xa7{left:683.850000px;}
.x8f{left:684.861000px;}
.x8c{left:686.155500px;}
.x45{left:691.684500px;}
.x88{left:693.795000px;}
.x92{left:695.812500px;}
.xb2{left:698.431500px;}
.xc7{left:700.060500px;}
.x6{left:701.339982px;}
.x93{left:703.284000px;}
.xa8{left:710.749500px;}
.x5a{left:713.217000px;}
.xb1{left:721.503000px;}
.xb3{left:725.331000px;}
.x42{left:727.888500px;}
.x98{left:734.977500px;}
.x82{left:739.658880px;}
.x43{left:742.833000px;}
.x99{left:746.110500px;}
.xb7{left:749.463000px;}
.x12{left:753.346500px;}
.x96{left:756.148500px;}
.x9a{left:757.243500px;}
.x3c{left:758.289000px;}
.x13{left:760.818000px;}
.xc5{left:762.970500px;}
.x14{left:764.550000px;}
.xc6{left:770.314500px;}
.x15{left:772.021500px;}
.x3d{left:773.233500px;}
.x5b{left:776.250000px;}
@media print{
.v2{vertical-align:-17.354667pt;}
.v4{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:13.438848pt;}
.v6{vertical-align:14.833333pt;}
.v5{vertical-align:16.666667pt;}
.v1{vertical-align:19.290667pt;}
.v7{vertical-align:26.011733pt;}
.v8{vertical-align:40.840320pt;}
.ls51{letter-spacing:-0.181696pt;}
.ls52{letter-spacing:-0.144288pt;}
.ls4e{letter-spacing:-0.112224pt;}
.ls50{letter-spacing:-0.106880pt;}
.ls4c{letter-spacing:-0.101536pt;}
.ls4f{letter-spacing:-0.090848pt;}
.ls4a{letter-spacing:-0.080864pt;}
.ls54{letter-spacing:-0.080160pt;}
.ls55{letter-spacing:-0.064128pt;}
.ls4b{letter-spacing:-0.053440pt;}
.ls4d{letter-spacing:-0.032064pt;}
.ls56{letter-spacing:-0.026720pt;}
.ls53{letter-spacing:-0.005344pt;}
.ls58{letter-spacing:-0.004800pt;}
.lsd{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.000387pt;}
.ls73{letter-spacing:0.000577pt;}
.ls6f{letter-spacing:0.000664pt;}
.ls12{letter-spacing:0.000752pt;}
.lsa{letter-spacing:0.000880pt;}
.ls6d{letter-spacing:0.000956pt;}
.ls67{letter-spacing:0.001302pt;}
.ls9{letter-spacing:0.001349pt;}
.ls49{letter-spacing:0.001382pt;}
.ls31{letter-spacing:0.001404pt;}
.ls70{letter-spacing:0.001667pt;}
.ls6e{letter-spacing:0.001774pt;}
.ls11{letter-spacing:0.001792pt;}
.ls77{letter-spacing:0.001818pt;}
.ls13{letter-spacing:0.001977pt;}
.ls78{letter-spacing:0.002078pt;}
.ls64{letter-spacing:0.002184pt;}
.ls65{letter-spacing:0.002348pt;}
.ls10{letter-spacing:0.002630pt;}
.ls1c{letter-spacing:0.002710pt;}
.ls25{letter-spacing:0.002868pt;}
.ls22{letter-spacing:0.003012pt;}
.lsb{letter-spacing:0.003106pt;}
.ls71{letter-spacing:0.003409pt;}
.ls14{letter-spacing:0.003942pt;}
.ls75{letter-spacing:0.004267pt;}
.ls8{letter-spacing:0.004320pt;}
.ls38{letter-spacing:0.004800pt;}
.ls72{letter-spacing:0.004813pt;}
.ls37{letter-spacing:0.024000pt;}
.ls35{letter-spacing:0.025536pt;}
.ls3e{letter-spacing:0.026720pt;}
.ls39{letter-spacing:0.028800pt;}
.ls33{letter-spacing:0.029792pt;}
.ls44{letter-spacing:0.032064pt;}
.ls3c{letter-spacing:0.042752pt;}
.ls41{letter-spacing:0.053440pt;}
.ls43{letter-spacing:0.080160pt;}
.ls57{letter-spacing:0.090848pt;}
.ls47{letter-spacing:0.096192pt;}
.ls3d{letter-spacing:0.106880pt;}
.ls45{letter-spacing:0.122912pt;}
.ls42{letter-spacing:0.133600pt;}
.ls3b{letter-spacing:0.138944pt;}
.ls59{letter-spacing:0.144288pt;}
.ls46{letter-spacing:0.149632pt;}
.ls36{letter-spacing:0.153216pt;}
.ls40{letter-spacing:0.154976pt;}
.ls3a{letter-spacing:0.160320pt;}
.ls34{letter-spacing:0.161728pt;}
.ls61{letter-spacing:0.529948pt;}
.ls63{letter-spacing:0.534695pt;}
.ls3f{letter-spacing:0.732128pt;}
.lse{letter-spacing:1.133683pt;}
.ls2{letter-spacing:1.654338pt;}
.ls32{letter-spacing:2.657067pt;}
.ls7a{letter-spacing:10.553644pt;}
.ls69{letter-spacing:10.624017pt;}
.lsc{letter-spacing:10.626533pt;}
.ls48{letter-spacing:10.960544pt;}
.ls6c{letter-spacing:11.158466pt;}
.ls74{letter-spacing:11.954133pt;}
.ls7c{letter-spacing:11.955635pt;}
.ls79{letter-spacing:11.959467pt;}
.ls7b{letter-spacing:12.098781pt;}
.ls76{letter-spacing:12.120527pt;}
.ls1e{letter-spacing:12.872491pt;}
.ls1f{letter-spacing:12.877933pt;}
.ls2e{letter-spacing:13.094494pt;}
.ls2f{letter-spacing:13.099405pt;}
.ls1d{letter-spacing:13.124065pt;}
.ls2b{letter-spacing:13.148868pt;}
.ls2a{letter-spacing:13.150714pt;}
.ls3{letter-spacing:13.157147pt;}
.ls1b{letter-spacing:13.280110pt;}
.ls30{letter-spacing:13.283933pt;}
.ls1a{letter-spacing:13.285443pt;}
.ls21{letter-spacing:13.292455pt;}
.ls4{letter-spacing:13.341669pt;}
.ls5{letter-spacing:13.345916pt;}
.ls17{letter-spacing:13.398707pt;}
.ls16{letter-spacing:13.400635pt;}
.ls15{letter-spacing:13.404089pt;}
.ls18{letter-spacing:13.406016pt;}
.ls28{letter-spacing:13.414268pt;}
.ls29{letter-spacing:13.420211pt;}
.ls27{letter-spacing:13.464656pt;}
.ls6{letter-spacing:13.530628pt;}
.ls7{letter-spacing:13.532034pt;}
.ls2d{letter-spacing:14.968476pt;}
.ls2c{letter-spacing:14.970322pt;}
.ls5d{letter-spacing:15.224685pt;}
.ls5c{letter-spacing:15.226198pt;}
.ls19{letter-spacing:15.585469pt;}
.ls68{letter-spacing:16.069873pt;}
.ls66{letter-spacing:16.075102pt;}
.ls20{letter-spacing:17.467822pt;}
.ls5e{letter-spacing:17.746711pt;}
.ls6a{letter-spacing:17.873794pt;}
.ls6b{letter-spacing:17.879023pt;}
.ls5b{letter-spacing:18.727953pt;}
.ls5a{letter-spacing:18.734694pt;}
.ls26{letter-spacing:19.747561pt;}
.ls23{letter-spacing:25.493966pt;}
.ls24{letter-spacing:25.501041pt;}
.ls0{letter-spacing:62.432533pt;}
.ls1{letter-spacing:64.314231pt;}
.ls62{letter-spacing:82.739621pt;}
.ls60{letter-spacing:95.453955pt;}
.ls5f{letter-spacing:125.492848pt;}
.ws81{word-spacing:-53.440000pt;}
.wse{word-spacing:-15.461955pt;}
.wsf5{word-spacing:-13.915853pt;}
.ws1{word-spacing:-13.283467pt;}
.ws1e{word-spacing:-12.369595pt;}
.wsdb{word-spacing:-11.955200pt;}
.ws80{word-spacing:-10.801728pt;}
.ws1c{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws82{word-spacing:-8.000000pt;}
.ws83{word-spacing:-3.969126pt;}
.ws84{word-spacing:-3.777843pt;}
.ws73{word-spacing:-3.666237pt;}
.ws70{word-spacing:-3.241166pt;}
.ws74{word-spacing:-3.188032pt;}
.ws2f{word-spacing:-2.762961pt;}
.ws14{word-spacing:-2.497292pt;}
.wse6{word-spacing:-2.295398pt;}
.ws2d{word-spacing:-2.231622pt;}
.ws30{word-spacing:-2.178489pt;}
.ws35{word-spacing:-1.965953pt;}
.ws109{word-spacing:-1.960653pt;}
.wsd2{word-spacing:-1.859685pt;}
.wsee{word-spacing:-1.817190pt;}
.wsd1{word-spacing:-1.806551pt;}
.ws5{word-spacing:-1.696326pt;}
.ws48{word-spacing:-1.594016pt;}
.ws40{word-spacing:-1.540882pt;}
.ws56{word-spacing:-1.487748pt;}
.ws18{word-spacing:-1.328347pt;}
.ws4{word-spacing:-1.175671pt;}
.ws8c{word-spacing:-1.148960pt;}
.ws57{word-spacing:-1.115811pt;}
.ws8d{word-spacing:-1.100864pt;}
.ws10{word-spacing:-1.062677pt;}
.wsdf{word-spacing:-1.004237pt;}
.ws6a{word-spacing:-0.956416pt;}
.ws9{word-spacing:-0.956410pt;}
.ws4c{word-spacing:-0.743874pt;}
.ws95{word-spacing:-0.700064pt;}
.wsa6{word-spacing:-0.694720pt;}
.ws22{word-spacing:-0.637606pt;}
.ws38{word-spacing:-0.584473pt;}
.wsca{word-spacing:-0.531339pt;}
.wsf6{word-spacing:-0.430387pt;}
.ws4f{word-spacing:-0.425071pt;}
.ws94{word-spacing:-0.416832pt;}
.wsac{word-spacing:-0.384768pt;}
.ws25{word-spacing:-0.371937pt;}
.wsab{word-spacing:-0.363392pt;}
.wsa8{word-spacing:-0.331328pt;}
.ws2a{word-spacing:-0.318803pt;}
.ws68{word-spacing:-0.297550pt;}
.ws69{word-spacing:-0.286925pt;}
.ws96{word-spacing:-0.283232pt;}
.ws13{word-spacing:-0.265669pt;}
.ws93{word-spacing:-0.240480pt;}
.wsf3{word-spacing:-0.239104pt;}
.ws88{word-spacing:-0.234080pt;}
.wsa7{word-spacing:-0.213760pt;}
.ws43{word-spacing:-0.212535pt;}
.wsa5{word-spacing:-0.187040pt;}
.ws7e{word-spacing:-0.179115pt;}
.ws16{word-spacing:-0.159402pt;}
.wsf1{word-spacing:-0.143462pt;}
.ws91{word-spacing:-0.133600pt;}
.wsae{word-spacing:-0.127522pt;}
.ws87{word-spacing:-0.106400pt;}
.ws7{word-spacing:-0.106268pt;}
.ws10f{word-spacing:-0.095642pt;}
.ws2{word-spacing:-0.053134pt;}
.ws6b{word-spacing:-0.047821pt;}
.ws59{word-spacing:-0.046386pt;}
.wsb7{word-spacing:-0.042561pt;}
.ws1d{word-spacing:-0.042507pt;}
.ws4e{word-spacing:-0.005420pt;}
.ws7c{word-spacing:-0.004237pt;}
.ws3d{word-spacing:-0.003270pt;}
.ws52{word-spacing:-0.002470pt;}
.ws75{word-spacing:-0.001532pt;}
.ws6f{word-spacing:-0.000359pt;}
.ws0{word-spacing:0.000000pt;}
.ws79{word-spacing:0.001028pt;}
.wsbf{word-spacing:0.001999pt;}
.ws7f{word-spacing:0.002689pt;}
.ws53{word-spacing:0.004974pt;}
.wsd4{word-spacing:0.047821pt;}
.wsa9{word-spacing:0.048096pt;}
.wsd{word-spacing:0.053134pt;}
.wsf8{word-spacing:0.095642pt;}
.wsa{word-spacing:0.106268pt;}
.ws8b{word-spacing:0.129600pt;}
.wse2{word-spacing:0.143462pt;}
.ws26{word-spacing:0.159402pt;}
.wsaa{word-spacing:0.163200pt;}
.ws90{word-spacing:0.171008pt;}
.ws58{word-spacing:0.191283pt;}
.ws20{word-spacing:0.212535pt;}
.ws92{word-spacing:0.261856pt;}
.wsf{word-spacing:0.265669pt;}
.wsdc{word-spacing:0.286925pt;}
.ws9b{word-spacing:0.293920pt;}
.ws2b{word-spacing:0.318803pt;}
.ws9a{word-spacing:0.358048pt;}
.ws51{word-spacing:0.371937pt;}
.ws10b{word-spacing:0.382566pt;}
.ws37{word-spacing:0.425071pt;}
.ws10a{word-spacing:0.430387pt;}
.ws8e{word-spacing:0.432864pt;}
.ws31{word-spacing:0.478205pt;}
.ws101{word-spacing:0.478208pt;}
.ws98{word-spacing:0.491648pt;}
.ws8f{word-spacing:0.513024pt;}
.wscd{word-spacing:0.637606pt;}
.ws97{word-spacing:0.641280pt;}
.ws50{word-spacing:0.690740pt;}
.ws9d{word-spacing:0.726784pt;}
.ws55{word-spacing:0.743874pt;}
.ws9c{word-spacing:0.812288pt;}
.ws100{word-spacing:0.812954pt;}
.ws99{word-spacing:0.865728pt;}
.wsd7{word-spacing:0.908595pt;}
.ws39{word-spacing:0.956410pt;}
.ws19{word-spacing:1.009543pt;}
.ws34{word-spacing:1.062677pt;}
.ws45{word-spacing:1.115811pt;}
.wsc7{word-spacing:1.168945pt;}
.ws4a{word-spacing:1.222079pt;}
.ws29{word-spacing:1.275213pt;}
.wsf4{word-spacing:1.291162pt;}
.wsc9{word-spacing:1.328347pt;}
.wsec{word-spacing:1.386803pt;}
.wsb4{word-spacing:1.434614pt;}
.wsed{word-spacing:1.434624pt;}
.wsb3{word-spacing:1.444445pt;}
.ws15{word-spacing:1.487748pt;}
.wsc6{word-spacing:1.594016pt;}
.wscf{word-spacing:1.647150pt;}
.ws32{word-spacing:1.700284pt;}
.ws44{word-spacing:1.753418pt;}
.ws8{word-spacing:1.806551pt;}
.ws1a{word-spacing:1.859685pt;}
.wscb{word-spacing:1.912819pt;}
.wsb2{word-spacing:1.965953pt;}
.ws23{word-spacing:2.019087pt;}
.wsd6{word-spacing:2.056294pt;}
.wscc{word-spacing:2.072221pt;}
.wse4{word-spacing:2.151936pt;}
.wsa2{word-spacing:2.164320pt;}
.ws10d{word-spacing:2.199757pt;}
.ws3b{word-spacing:2.284756pt;}
.ws3c{word-spacing:2.312661pt;}
.wsad{word-spacing:2.380403pt;}
.ws36{word-spacing:2.391024pt;}
.wsb0{word-spacing:2.444158pt;}
.wse5{word-spacing:2.534502pt;}
.ws27{word-spacing:2.550426pt;}
.ws2c{word-spacing:2.603559pt;}
.ws9f{word-spacing:2.613216pt;}
.ws9e{word-spacing:2.672000pt;}
.wsa0{word-spacing:2.704064pt;}
.wsa1{word-spacing:2.741472pt;}
.wse1{word-spacing:2.821427pt;}
.wsfc{word-spacing:3.156173pt;}
.ws17{word-spacing:3.241166pt;}
.wsd3{word-spacing:3.347434pt;}
.ws5f{word-spacing:3.443098pt;}
.wsc2{word-spacing:3.506835pt;}
.ws33{word-spacing:3.559969pt;}
.ws104{word-spacing:3.586560pt;}
.ws103{word-spacing:3.634381pt;}
.ws54{word-spacing:3.666237pt;}
.ws5e{word-spacing:3.777843pt;}
.ws71{word-spacing:3.825638pt;}
.wse8{word-spacing:4.064768pt;}
.ws41{word-spacing:4.197575pt;}
.wsbb{word-spacing:4.256051pt;}
.wsb5{word-spacing:4.410111pt;}
.ws24{word-spacing:4.463245pt;}
.wsa4{word-spacing:4.504992pt;}
.wsa3{word-spacing:4.515680pt;}
.ws46{word-spacing:4.622646pt;}
.wsce{word-spacing:4.728914pt;}
.wsf2{word-spacing:4.776619pt;}
.ws108{word-spacing:4.778121pt;}
.wse9{word-spacing:4.877722pt;}
.wsb{word-spacing:5.047717pt;}
.ws3e{word-spacing:5.207119pt;}
.ws11{word-spacing:5.307978pt;}
.ws12{word-spacing:5.313387pt;}
.wsb1{word-spacing:5.419654pt;}
.wsbe{word-spacing:5.426891pt;}
.wsbd{word-spacing:5.440922pt;}
.ws21{word-spacing:5.472788pt;}
.ws47{word-spacing:5.844725pt;}
.ws3f{word-spacing:6.216662pt;}
.ws28{word-spacing:6.269796pt;}
.ws42{word-spacing:6.322930pt;}
.wsd5{word-spacing:6.360166pt;}
.ws7b{word-spacing:6.429198pt;}
.ws7a{word-spacing:6.482332pt;}
.wsd0{word-spacing:6.588599pt;}
.wsfa{word-spacing:6.790554pt;}
.ws6{word-spacing:6.801135pt;}
.wsfb{word-spacing:6.934016pt;}
.ws4d{word-spacing:7.119938pt;}
.wsc{word-spacing:7.173072pt;}
.wsc0{word-spacing:7.223303pt;}
.wsc1{word-spacing:7.226224pt;}
.wsc3{word-spacing:7.438741pt;}
.ws49{word-spacing:7.491875pt;}
.wsaf{word-spacing:7.566282pt;}
.ws72{word-spacing:7.651277pt;}
.wsff{word-spacing:7.890432pt;}
.wsc8{word-spacing:7.916946pt;}
.wsea{word-spacing:8.033894pt;}
.ws106{word-spacing:8.320819pt;}
.ws7d{word-spacing:8.767088pt;}
.ws2e{word-spacing:9.298427pt;}
.ws10e{word-spacing:9.851085pt;}
.wsef{word-spacing:10.090189pt;}
.ws1b{word-spacing:10.581554pt;}
.ws107{word-spacing:11.476992pt;}
.wseb{word-spacing:11.620454pt;}
.wsd8{word-spacing:11.668275pt;}
.wsfe{word-spacing:11.859558pt;}
.wsf7{word-spacing:11.902327pt;}
.wse7{word-spacing:11.902362pt;}
.ws10c{word-spacing:11.904060pt;}
.wse0{word-spacing:11.907379pt;}
.wse3{word-spacing:12.050842pt;}
.wsdd{word-spacing:12.194304pt;}
.ws78{word-spacing:12.213065pt;}
.ws77{word-spacing:12.214586pt;}
.ws76{word-spacing:12.220789pt;}
.ws4b{word-spacing:13.230333pt;}
.ws89{word-spacing:13.896000pt;}
.ws8a{word-spacing:13.915200pt;}
.ws67{word-spacing:14.554964pt;}
.ws5d{word-spacing:14.830029pt;}
.wsfd{word-spacing:15.111373pt;}
.wsc5{word-spacing:15.780758pt;}
.wsde{word-spacing:16.684100pt;}
.ws102{word-spacing:16.686208pt;}
.ws105{word-spacing:16.687164pt;}
.wsf0{word-spacing:16.688828pt;}
.wsf9{word-spacing:16.688862pt;}
.wsda{word-spacing:16.689459pt;}
.wsd9{word-spacing:17.454592pt;}
.ws3a{word-spacing:18.543719pt;}
.wsc4{word-spacing:28.001548pt;}
.wsb9{word-spacing:51.115175pt;}
.wsbc{word-spacing:51.413098pt;}
.wsba{word-spacing:75.367680pt;}
.wsb8{word-spacing:114.076640pt;}
.ws85{word-spacing:156.705323pt;}
.ws63{word-spacing:158.455177pt;}
.ws62{word-spacing:162.490775pt;}
.ws65{word-spacing:163.928746pt;}
.ws5b{word-spacing:164.067905pt;}
.ws61{word-spacing:166.116768pt;}
.ws5a{word-spacing:167.454095pt;}
.ws6c{word-spacing:167.516262pt;}
.ws64{word-spacing:170.051721pt;}
.ws6d{word-spacing:174.019891pt;}
.ws66{word-spacing:175.293359pt;}
.ws6e{word-spacing:180.714803pt;}
.ws60{word-spacing:181.648265pt;}
.wsb6{word-spacing:189.544843pt;}
.ws5c{word-spacing:191.853224pt;}
.ws86{word-spacing:196.543488pt;}
.ws1f{word-spacing:667.830619pt;}
._5{margin-left:-7.029658pt;}
._3{margin-left:-5.308109pt;}
._6{margin-left:-4.399514pt;}
._4e{margin-left:-3.092509pt;}
._2{margin-left:-1.721549pt;}
._8{width:0.969929pt;}
._0{width:2.667264pt;}
._38{width:6.720000pt;}
._3c{width:9.277235pt;}
._52{width:11.085107pt;}
._c{width:12.847651pt;}
._10{width:14.314275pt;}
._4{width:15.876506pt;}
._7{width:17.598054pt;}
._9{width:18.612841pt;}
._a{width:19.607352pt;}
._14{width:20.509673pt;}
._d{width:21.838019pt;}
._b{width:23.591437pt;}
._e{width:24.660535pt;}
._54{width:25.584128pt;}
._12{width:26.620067pt;}
._51{width:29.669963pt;}
._15{width:30.764509pt;}
._33{width:31.768733pt;}
._4d{width:33.155533pt;}
._50{width:34.080074pt;}
._11{width:35.440289pt;}
._55{width:36.742493pt;}
._13{width:37.831313pt;}
._1{width:48.357696pt;}
._53{width:51.731985pt;}
._4b{width:63.372602pt;}
._46{width:65.552750pt;}
._45{width:71.839518pt;}
._4c{width:77.135817pt;}
._48{width:79.162552pt;}
._49{width:80.439368pt;}
._23{width:94.163937pt;}
._4a{width:100.613050pt;}
._18{width:106.595432pt;}
._47{width:112.169429pt;}
._22{width:114.388310pt;}
._2a{width:117.416323pt;}
._19{width:122.088415pt;}
._41{width:125.864346pt;}
._43{width:127.346790pt;}
._2b{width:129.116160pt;}
._17{width:133.035553pt;}
._2c{width:135.428506pt;}
._3f{width:137.102234pt;}
._44{width:139.062886pt;}
._3d{width:140.593152pt;}
._16{width:142.173629pt;}
._21{width:151.497251pt;}
._27{width:152.656905pt;}
._24{width:156.692503pt;}
._1f{width:158.269633pt;}
._1a{width:161.655823pt;}
._28{width:164.571936pt;}
._40{width:165.746893pt;}
._31{width:168.042291pt;}
._29{width:169.495087pt;}
._32{width:174.737203pt;}
._42{width:179.088418pt;}
._3e{width:180.045312pt;}
._20{width:186.054952pt;}
._1d{width:221.143661pt;}
._1e{width:236.662270pt;}
._2f{width:237.594189pt;}
._30{width:253.593702pt;}
._25{width:301.881233pt;}
._2d{width:311.100605pt;}
._1b{width:320.482090pt;}
._26{width:323.581587pt;}
._1c{width:339.129333pt;}
._2e{width:368.794010pt;}
._3a{width:424.634240pt;}
._37{width:439.677600pt;}
._36{width:450.878624pt;}
._3b{width:514.541696pt;}
._39{width:518.758112pt;}
._35{width:549.427328pt;}
._34{width:1387.124032pt;}
._4f{width:1708.621067pt;}
._f{width:1729.874400pt;}
.fsf{font-size:31.880533pt;}
.fse{font-size:32.000000pt;}
.fs11{font-size:33.102304pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs10{font-size:42.560512pt;}
.fs9{font-size:46.386176pt;}
.fs5{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fsb{font-size:64.000000pt;}
.fs0{font-size:91.124601pt;}
.fs2{font-size:95.641600pt;}
.y11d{bottom:-541.192933pt;}
.y11c{bottom:-522.552933pt;}
.y11b{bottom:-503.912933pt;}
.y11a{bottom:-485.272933pt;}
.y119{bottom:-466.552933pt;}
.y118{bottom:-447.912933pt;}
.y117{bottom:-429.272933pt;}
.y116{bottom:-410.632933pt;}
.y115{bottom:-391.992933pt;}
.y113{bottom:-373.192933pt;}
.y114{bottom:-369.832933pt;}
.y112{bottom:-346.312933pt;}
.y111{bottom:-312.632861pt;}
.y110{bottom:-294.632037pt;}
.y10f{bottom:-276.712269pt;}
.y10e{bottom:-258.712341pt;}
.y10d{bottom:-240.712413pt;}
.y10c{bottom:-222.712485pt;}
.y10b{bottom:-204.712557pt;}
.y10a{bottom:-186.712629pt;}
.y109{bottom:-168.712701pt;}
.y108{bottom:-150.792645pt;}
.y107{bottom:-132.792717pt;}
.y106{bottom:-114.792789pt;}
.y105{bottom:-96.792861pt;}
.y104{bottom:-78.792933pt;}
.y103{bottom:-45.193333pt;}
.y102{bottom:-27.832933pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:3.044747pt;}
.y101{bottom:5.447067pt;}
.yf{bottom:12.578910pt;}
.y2{bottom:16.528366pt;}
.y30{bottom:56.693333pt;}
.y2f{bottom:97.881333pt;}
.y1a4{bottom:101.472000pt;}
.yd1{bottom:104.180000pt;}
.y1da{bottom:104.342667pt;}
.y7b{bottom:108.724000pt;}
.y63{bottom:109.441333pt;}
.y1a8{bottom:111.513333pt;}
.y2e{bottom:115.894667pt;}
.yd0{bottom:116.798667pt;}
.y1a3{bottom:119.484000pt;}
.y1d9{bottom:121.558667pt;}
.y9e{bottom:123.841333pt;}
.y1a7{bottom:125.022667pt;}
.y13a{bottom:125.841333pt;}
.y7a{bottom:126.737333pt;}
.y62{bottom:127.454667pt;}
.y2d{bottom:133.906667pt;}
.ycf{bottom:136.164547pt;}
.y1a2{bottom:137.496000pt;}
.y1a6{bottom:138.532000pt;}
.y1d8{bottom:138.773333pt;}
.y173{bottom:138.922667pt;}
.y139{bottom:140.770667pt;}
.y9d{bottom:141.853333pt;}
.y79{bottom:144.749333pt;}
.y61{bottom:145.466667pt;}
.yce{bottom:150.646000pt;}
.y172{bottom:151.541333pt;}
.y2c{bottom:151.920000pt;}
.y1a5{bottom:152.042667pt;}
.y1a1{bottom:155.509333pt;}
.y138{bottom:155.700000pt;}
.y1d7{bottom:155.989333pt;}
.y9c{bottom:159.866667pt;}
.y78{bottom:162.762667pt;}
.y60{bottom:163.478667pt;}
.y171{bottom:164.161333pt;}
.ycd{bottom:165.127453pt;}
.y2b{bottom:169.932000pt;}
.y137{bottom:170.629333pt;}
.y1d6{bottom:173.205333pt;}
.y1a0{bottom:173.521333pt;}
.y9b{bottom:177.878667pt;}
.ycc{bottom:179.608907pt;}
.y77{bottom:180.774667pt;}
.y5f{bottom:181.492000pt;}
.y16f{bottom:182.600067pt;}
.y136{bottom:185.558667pt;}
.y2a{bottom:187.944000pt;}
.y170{bottom:189.101813pt;}
.y1d5{bottom:190.420000pt;}
.y19f{bottom:191.534667pt;}
.yfe{bottom:192.780000pt;}
.ycb{bottom:194.090360pt;}
.y16e{bottom:195.604747pt;}
.y9a{bottom:195.892000pt;}
.y76{bottom:198.786667pt;}
.y5e{bottom:199.504000pt;}
.y135{bottom:200.488000pt;}
.y29{bottom:205.957333pt;}
.y1d4{bottom:207.636000pt;}
.y16c{bottom:208.609427pt;}
.y19e{bottom:209.546667pt;}
.yfc{bottom:210.792000pt;}
.y99{bottom:213.904000pt;}
.yca{bottom:214.782400pt;}
.y16d{bottom:215.111173pt;}
.y134{bottom:215.417333pt;}
.yfd{bottom:215.614667pt;}
.y75{bottom:216.800000pt;}
.y5d{bottom:217.517333pt;}
.y16b{bottom:221.614107pt;}
.y167{bottom:221.936880pt;}
.y28{bottom:223.969333pt;}
.y1d3{bottom:224.850667pt;}
.y19d{bottom:227.558667pt;}
.yfb{bottom:228.805333pt;}
.yc9{bottom:229.263853pt;}
.y133{bottom:230.346667pt;}
.y98{bottom:231.916000pt;}
.y169{bottom:234.617600pt;}
.y74{bottom:234.812000pt;}
.y166{bottom:234.941560pt;}
.y5c{bottom:235.529333pt;}
.y16a{bottom:241.120533pt;}
.y27{bottom:241.982667pt;}
.y1d2{bottom:242.066667pt;}
.yc8{bottom:243.745307pt;}
.y132{bottom:245.276000pt;}
.y19c{bottom:245.572000pt;}
.yfa{bottom:246.817333pt;}
.y168{bottom:247.622280pt;}
.y97{bottom:249.929333pt;}
.y73{bottom:252.825333pt;}
.y5b{bottom:253.541333pt;}
.yc7{bottom:258.226760pt;}
.y1d1{bottom:259.282667pt;}
.y26{bottom:259.994667pt;}
.y131{bottom:260.205333pt;}
.y19b{bottom:263.584000pt;}
.yf9{bottom:264.830667pt;}
.y165{bottom:266.325333pt;}
.y96{bottom:267.941333pt;}
.y72{bottom:270.837333pt;}
.y5a{bottom:271.554667pt;}
.yc6{bottom:272.708213pt;}
.y164{bottom:272.827080pt;}
.y1d0{bottom:276.497333pt;}
.y25{bottom:278.006667pt;}
.y130{bottom:281.537333pt;}
.y19a{bottom:281.597333pt;}
.yf8{bottom:282.842667pt;}
.y95{bottom:285.954667pt;}
.y71{bottom:288.849333pt;}
.y59{bottom:289.566667pt;}
.yc5{bottom:293.400253pt;}
.y1cf{bottom:293.713333pt;}
.y24{bottom:296.020000pt;}
.y12f{bottom:296.466667pt;}
.y199{bottom:299.609333pt;}
.yf7{bottom:300.854667pt;}
.y94{bottom:303.966667pt;}
.y163{bottom:305.785333pt;}
.y70{bottom:306.862667pt;}
.y58{bottom:307.580000pt;}
.yc4{bottom:307.881707pt;}
.y201{bottom:308.716000pt;}
.y1ce{bottom:310.928000pt;}
.y12e{bottom:311.396000pt;}
.y23{bottom:314.032000pt;}
.y198{bottom:317.621333pt;}
.yf6{bottom:318.868000pt;}
.y93{bottom:321.978667pt;}
.yc3{bottom:322.363160pt;}
.y6f{bottom:324.874667pt;}
.y57{bottom:325.592000pt;}
.y200{bottom:325.930667pt;}
.y12d{bottom:326.325333pt;}
.y1cd{bottom:328.144000pt;}
.y22{bottom:332.045333pt;}
.y162{bottom:335.306667pt;}
.y197{bottom:335.634667pt;}
.yf5{bottom:336.880000pt;}
.y12c{bottom:341.254667pt;}
.yc2{bottom:343.055200pt;}
.y1ff{bottom:343.146667pt;}
.y56{bottom:343.604000pt;}
.y1cc{bottom:345.360000pt;}
.y92{bottom:347.961333pt;}
.y21{bottom:350.057333pt;}
.y6e{bottom:350.857333pt;}
.y161{bottom:353.318667pt;}
.y196{bottom:353.646667pt;}
.yf4{bottom:354.893333pt;}
.y12b{bottom:356.184000pt;}
.yc1{bottom:357.536653pt;}
.y55{bottom:361.617333pt;}
.y1cb{bottom:362.574667pt;}
.y20{bottom:368.069333pt;}
.y12a{bottom:371.113333pt;}
.y160{bottom:371.330667pt;}
.y195{bottom:371.660000pt;}
.yc0{bottom:372.018107pt;}
.y1fe{bottom:372.298667pt;}
.yf3{bottom:372.905333pt;}
.y91{bottom:378.912000pt;}
.y54{bottom:379.629333pt;}
.y1ca{bottom:379.790667pt;}
.y6d{bottom:381.808000pt;}
.y129{bottom:386.042667pt;}
.y1f{bottom:386.082667pt;}
.y15f{bottom:389.344000pt;}
.y1fd{bottom:389.514667pt;}
.y194{bottom:389.672000pt;}
.yf2{bottom:390.917333pt;}
.ybf{bottom:392.708853pt;}
.y1c9{bottom:397.005333pt;}
.y53{bottom:397.642667pt;}
.y6c{bottom:399.821333pt;}
.y128{bottom:400.972000pt;}
.y1fc{bottom:406.729333pt;}
.ybe{bottom:407.190307pt;}
.y15e{bottom:407.356000pt;}
.y193{bottom:407.684000pt;}
.yf1{bottom:408.930667pt;}
.y90{bottom:409.862667pt;}
.y1e{bottom:412.065333pt;}
.y100{bottom:412.327067pt;}
.y1c8{bottom:414.221333pt;}
.y52{bottom:415.654667pt;}
.y127{bottom:415.901333pt;}
.y6b{bottom:417.833333pt;}
.ybd{bottom:421.671760pt;}
.y1fb{bottom:423.945333pt;}
.y15d{bottom:425.369333pt;}
.y192{bottom:425.697333pt;}
.yf0{bottom:426.942667pt;}
.y8f{bottom:427.876000pt;}
.y126{bottom:430.830667pt;}
.y1c7{bottom:431.437333pt;}
.y51{bottom:433.666667pt;}
.y6a{bottom:435.845333pt;}
.ybc{bottom:436.153213pt;}
.y1fa{bottom:441.160000pt;}
.y15c{bottom:443.381333pt;}
.y191{bottom:443.709333pt;}
.yef{bottom:444.956000pt;}
.y125{bottom:445.760000pt;}
.y8e{bottom:445.888000pt;}
.y1c6{bottom:448.652000pt;}
.y50{bottom:451.680000pt;}
.y69{bottom:453.858667pt;}
.ybb{bottom:456.845253pt;}
.y1f9{bottom:458.376000pt;}
.y124{bottom:460.689333pt;}
.y15b{bottom:461.393333pt;}
.y190{bottom:461.722667pt;}
.yee{bottom:462.968000pt;}
.y8d{bottom:463.901333pt;}
.y1c5{bottom:465.868000pt;}
.y4f{bottom:469.692000pt;}
.yba{bottom:471.326707pt;}
.y68{bottom:471.870667pt;}
.y1f8{bottom:475.592000pt;}
.y123{bottom:475.618667pt;}
.y15a{bottom:479.406667pt;}
.y18f{bottom:479.734667pt;}
.y1d{bottom:479.990667pt;}
.yed{bottom:480.980000pt;}
.y8c{bottom:481.913333pt;}
.y1c4{bottom:483.082667pt;}
.yb9{bottom:485.808160pt;}
.y4e{bottom:487.704000pt;}
.y67{bottom:489.884000pt;}
.y122{bottom:490.549333pt;}
.y1f7{bottom:492.806667pt;}
.y159{bottom:497.418667pt;}
.y18e{bottom:497.746667pt;}
.yec{bottom:498.993333pt;}
.y8b{bottom:499.925333pt;}
.yb8{bottom:500.289613pt;}
.y1c3{bottom:500.298667pt;}
.y4d{bottom:505.717333pt;}
.y66{bottom:507.896000pt;}
.y1f6{bottom:510.022667pt;}
.y121{bottom:511.880000pt;}
.y1c{bottom:513.942667pt;}
.yb7{bottom:514.771067pt;}
.y158{bottom:515.432000pt;}
.y18d{bottom:515.760000pt;}
.yeb{bottom:517.005333pt;}
.y1c2{bottom:517.514667pt;}
.y8a{bottom:517.938667pt;}
.y4c{bottom:523.729333pt;}
.y1f5{bottom:527.237333pt;}
.y1b{bottom:531.956000pt;}
.y157{bottom:533.444000pt;}
.y18c{bottom:533.772000pt;}
.y65{bottom:533.878667pt;}
.y1c1{bottom:534.729333pt;}
.yea{bottom:535.018667pt;}
.yb6{bottom:535.463107pt;}
.y120{bottom:540.160000pt;}
.y4b{bottom:541.742667pt;}
.y89{bottom:543.921333pt;}
.y1f4{bottom:544.453333pt;}
.y1a{bottom:549.968000pt;}
.y18b{bottom:551.785333pt;}
.y1c0{bottom:551.945333pt;}
.y4a{bottom:559.754667pt;}
.ye9{bottom:561.001333pt;}
.y1f3{bottom:561.669333pt;}
.yb5{bottom:563.118667pt;}
.y64{bottom:564.829333pt;}
.y156{bottom:566.110667pt;}
.y11f{bottom:566.553333pt;}
.y19{bottom:567.980000pt;}
.y1bf{bottom:569.160000pt;}
.y18a{bottom:569.797333pt;}
.y88{bottom:574.872000pt;}
.y49{bottom:577.766667pt;}
.y155{bottom:578.730667pt;}
.y1f2{bottom:578.884000pt;}
.yb4{bottom:580.214667pt;}
.y11e{bottom:583.649333pt;}
.y18{bottom:585.993333pt;}
.y1be{bottom:586.376000pt;}
.y189{bottom:587.809333pt;}
.y154{bottom:591.349333pt;}
.ye8{bottom:591.952000pt;}
.y87{bottom:592.884000pt;}
.y48{bottom:595.780000pt;}
.y1f1{bottom:596.100000pt;}
.yff{bottom:603.586667pt;}
.y1bd{bottom:603.592000pt;}
.y152{bottom:603.969333pt;}
.y17{bottom:604.005333pt;}
.y188{bottom:605.822667pt;}
.y153{bottom:607.826667pt;}
.yb3{bottom:609.494667pt;}
.ye7{bottom:609.964000pt;}
.y86{bottom:610.896000pt;}
.y1f0{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y1bc{bottom:620.806667pt;}
.y16{bottom:622.018667pt;}
.y151{bottom:623.576000pt;}
.y187{bottom:623.834667pt;}
.ye6{bottom:627.976000pt;}
.yb2{bottom:628.860907pt;}
.y85{bottom:628.909333pt;}
.y1ef{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y1bb{bottom:638.022667pt;}
.y150{bottom:638.505333pt;}
.y15{bottom:640.030667pt;}
.y186{bottom:641.846667pt;}
.yb1{bottom:643.342360pt;}
.ye5{bottom:645.989333pt;}
.y84{bottom:646.921333pt;}
.y1ee{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.y14f{bottom:653.434667pt;}
.y1ba{bottom:655.237333pt;}
.yb0{bottom:657.823813pt;}
.y14{bottom:658.042667pt;}
.y185{bottom:659.860000pt;}
.ye4{bottom:664.001333pt;}
.y83{bottom:664.934667pt;}
.y1ed{bottom:664.961333pt;}
.y44{bottom:667.829333pt;}
.y14e{bottom:668.365333pt;}
.y1b9{bottom:672.453333pt;}
.y13{bottom:676.056000pt;}
.y184{bottom:677.872000pt;}
.yaf{bottom:678.515853pt;}
.y1ec{bottom:682.177333pt;}
.y82{bottom:682.946667pt;}
.y14d{bottom:683.294667pt;}
.y43{bottom:685.842667pt;}
.y1b8{bottom:689.669333pt;}
.yae{bottom:692.997307pt;}
.y12{bottom:694.068000pt;}
.y183{bottom:695.885333pt;}
.ye3{bottom:696.109333pt;}
.y14c{bottom:698.224000pt;}
.y1eb{bottom:699.392000pt;}
.y81{bottom:700.958667pt;}
.y42{bottom:703.854667pt;}
.y1b7{bottom:706.884000pt;}
.yad{bottom:707.478760pt;}
.y11{bottom:712.081333pt;}
.y14b{bottom:713.153333pt;}
.y182{bottom:713.897333pt;}
.ye2{bottom:715.716000pt;}
.y1ea{bottom:716.608000pt;}
.y80{bottom:718.972000pt;}
.y41{bottom:721.868000pt;}
.yac{bottom:721.960213pt;}
.y1b6{bottom:724.100000pt;}
.y14a{bottom:728.082667pt;}
.ye1{bottom:730.645333pt;}
.y181{bottom:731.909333pt;}
.y1e9{bottom:733.824000pt;}
.yab{bottom:736.441667pt;}
.y7f{bottom:736.984000pt;}
.y40{bottom:739.880000pt;}
.y1b5{bottom:741.314667pt;}
.y149{bottom:743.012000pt;}
.ye{bottom:743.576048pt;}
.yd{bottom:744.257333pt;}
.ye0{bottom:745.576000pt;}
.y180{bottom:749.922667pt;}
.y1e8{bottom:751.038667pt;}
.y7e{bottom:754.997333pt;}
.yaa{bottom:757.133707pt;}
.y3f{bottom:757.892000pt;}
.y148{bottom:757.941333pt;}
.y1b4{bottom:758.530667pt;}
.ydf{bottom:766.906667pt;}
.y17f{bottom:767.934667pt;}
.y1e7{bottom:768.254667pt;}
.ya9{bottom:771.615160pt;}
.y147{bottom:772.870667pt;}
.y7d{bottom:773.009333pt;}
.y1b3{bottom:775.746667pt;}
.y3e{bottom:775.905333pt;}
.yc{bottom:778.929333pt;}
.yde{bottom:781.836000pt;}
.y1e6{bottom:785.469333pt;}
.y17e{bottom:785.948000pt;}
.ya8{bottom:786.096613pt;}
.y146{bottom:787.800000pt;}
.y1b2{bottom:792.961333pt;}
.y3d{bottom:793.917333pt;}
.ydd{bottom:796.765333pt;}
.y7c{bottom:798.992000pt;}
.yb{bottom:799.408000pt;}
.ya7{bottom:800.578067pt;}
.y1e5{bottom:802.685333pt;}
.y17d{bottom:803.960000pt;}
.y145{bottom:809.130667pt;}
.y1b1{bottom:810.177333pt;}
.ya{bottom:811.208000pt;}
.ydc{bottom:811.694667pt;}
.y3c{bottom:811.930667pt;}
.ya6{bottom:815.059520pt;}
.y1e4{bottom:819.901333pt;}
.y17c{bottom:821.972000pt;}
.y144{bottom:824.060000pt;}
.y1b0{bottom:827.392000pt;}
.y3b{bottom:829.942667pt;}
.y9{bottom:831.688000pt;}
.ydb{bottom:833.026667pt;}
.ya5{bottom:835.750267pt;}
.y1e3{bottom:837.116000pt;}
.y143{bottom:838.990667pt;}
.y17b{bottom:839.985333pt;}
.y1af{bottom:844.608000pt;}
.y8{bottom:847.826667pt;}
.y3a{bottom:847.954667pt;}
.yda{bottom:847.956000pt;}
.ya4{bottom:850.231720pt;}
.y142{bottom:853.920000pt;}
.y1e2{bottom:854.332000pt;}
.y17a{bottom:857.997333pt;}
.y1ae{bottom:861.824000pt;}
.yd9{bottom:862.885333pt;}
.ya3{bottom:864.714467pt;}
.y39{bottom:865.968000pt;}
.y7{bottom:867.597333pt;}
.y141{bottom:868.849333pt;}
.y1e1{bottom:871.546667pt;}
.y179{bottom:876.010667pt;}
.yd8{bottom:877.814667pt;}
.ya2{bottom:879.195920pt;}
.y140{bottom:883.778667pt;}
.y38{bottom:883.980000pt;}
.y6{bottom:885.609333pt;}
.y1ad{bottom:887.009333pt;}
.y1e0{bottom:888.762667pt;}
.ya1{bottom:893.677373pt;}
.y178{bottom:894.022667pt;}
.y13f{bottom:898.708000pt;}
.yd7{bottom:899.146667pt;}
.y37{bottom:901.993333pt;}
.y1df{bottom:905.978667pt;}
.y177{bottom:912.034667pt;}
.y13e{bottom:913.637333pt;}
.yd6{bottom:914.076000pt;}
.ya0{bottom:914.368120pt;}
.y36{bottom:920.005333pt;}
.y1ac{bottom:922.077333pt;}
.y1de{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y13d{bottom:928.566667pt;}
.yd5{bottom:929.005333pt;}
.y176{bottom:930.048000pt;}
.y35{bottom:938.017333pt;}
.y1dd{bottom:940.409333pt;}
.y9f{bottom:942.024000pt;}
.y13c{bottom:943.496000pt;}
.y1ab{bottom:943.557333pt;}
.yd4{bottom:943.934667pt;}
.y175{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y1aa{bottom:957.066667pt;}
.y1dc{bottom:957.624000pt;}
.y13b{bottom:965.093333pt;}
.yd3{bottom:965.265333pt;}
.y174{bottom:966.073333pt;}
.y33{bottom:974.042667pt;}
.y1db{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y1a9{bottom:978.546667pt;}
.y32{bottom:992.056000pt;}
.yd2{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.h17{height:5.897859pt;}
.hf{height:15.940160pt;}
.ha{height:22.673858pt;}
.h25{height:23.209028pt;}
.h21{height:25.752813pt;}
.h8{height:27.076941pt;}
.h18{height:29.397999pt;}
.hc{height:29.433775pt;}
.h24{height:29.499997pt;}
.hb{height:30.399505pt;}
.h15{height:30.945242pt;}
.h29{height:30.984053pt;}
.h10{height:31.157778pt;}
.h13{height:33.398047pt;}
.h2d{height:33.713664pt;}
.h14{height:33.769136pt;}
.h2c{height:34.191872pt;}
.h12{height:34.430976pt;}
.h9{height:34.813542pt;}
.h23{height:35.052646pt;}
.h19{height:36.874903pt;}
.h26{height:37.193707pt;}
.hd{height:38.256384pt;}
.h2a{height:38.638362pt;}
.he{height:38.681455pt;}
.h4{height:38.947124pt;}
.h20{height:39.192812pt;}
.h1c{height:39.359687pt;}
.h22{height:43.446059pt;}
.h2b{height:43.660390pt;}
.h1e{height:44.390625pt;}
.h2{height:45.272024pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h11{height:48.511220pt;}
.h16{height:48.683332pt;}
.h1a{height:48.688666pt;}
.h1f{height:49.421563pt;}
.h27{height:56.655302pt;}
.h1d{height:59.187500pt;}
.h3{height:61.782479pt;}
.h28{height:64.673979pt;}
.h5{height:68.861952pt;}
.h1b{height:401.753333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:188.033730pt;}
.w4{width:580.206667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x66{left:-2.562667pt;}
.x0{left:0.000000pt;}
.x7{left:26.021437pt;}
.x2{left:50.765941pt;}
.x69{left:74.717333pt;}
.x68{left:75.757333pt;}
.x1{left:102.046667pt;}
.x46{left:106.120000pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x76{left:115.432000pt;}
.x7d{left:118.135747pt;}
.x4{left:129.332000pt;}
.xb{left:130.393333pt;}
.x94{left:136.486667pt;}
.x90{left:138.045333pt;}
.x50{left:139.828000pt;}
.x95{left:143.128000pt;}
.x91{left:151.329333pt;}
.x77{left:153.714667pt;}
.x83{left:157.536640pt;}
.x70{left:159.873333pt;}
.x7e{left:161.015947pt;}
.x47{left:162.150667pt;}
.x97{left:164.144000pt;}
.x71{left:165.630667pt;}
.xbd{left:168.002667pt;}
.x8{left:171.566667pt;}
.x24{left:173.192000pt;}
.x3e{left:175.000000pt;}
.x4b{left:176.026667pt;}
.x32{left:177.661333pt;}
.x26{left:178.577333pt;}
.x25{left:179.834667pt;}
.xaa{left:182.418667pt;}
.x7b{left:184.109667pt;}
.x1b{left:185.458667pt;}
.x1c{left:188.846667pt;}
.x33{left:190.945333pt;}
.x58{left:194.733333pt;}
.x59{left:196.360000pt;}
.x57{left:198.536000pt;}
.x4c{left:201.193787pt;}
.x1d{left:202.129333pt;}
.x9f{left:203.873333pt;}
.x3f{left:204.954667pt;}
.x4e{left:206.383933pt;}
.x4d{left:208.133813pt;}
.x53{left:209.099933pt;}
.x52{left:210.108733pt;}
.x4f{left:212.483293pt;}
.x51{left:213.796027pt;}
.x55{left:214.816467pt;}
.x54{left:216.347773pt;}
.x56{left:217.652747pt;}
.xa0{left:220.176000pt;}
.x89{left:222.201333pt;}
.x84{left:223.164000pt;}
.x5f{left:225.614667pt;}
.xa2{left:229.064000pt;}
.xa1{left:233.460000pt;}
.xc8{left:237.545333pt;}
.xbf{left:241.032000pt;}
.xb4{left:244.520000pt;}
.xc0{left:246.758667pt;}
.xb9{left:247.721333pt;}
.xb5{left:250.497333pt;}
.x19{left:254.472000pt;}
.x27{left:256.841333pt;}
.x7a{left:260.802667pt;}
.xb0{left:261.852000pt;}
.x72{left:263.554667pt;}
.x28{left:265.728000pt;}
.x1a{left:267.754667pt;}
.x73{left:268.878667pt;}
.xa9{left:274.856000pt;}
.xba{left:276.522667pt;}
.x6a{left:278.901333pt;}
.x3b{left:281.536000pt;}
.x6f{left:285.233333pt;}
.x6e{left:286.273333pt;}
.x34{left:287.897333pt;}
.x6c{left:289.082667pt;}
.x6b{left:290.074667pt;}
.x29{left:290.990667pt;}
.x35{left:294.538667pt;}
.x6d{left:296.237333pt;}
.x2a{left:297.632000pt;}
.x2b{left:300.893333pt;}
.x7f{left:302.520013pt;}
.x16{left:305.282667pt;}
.x2c{left:307.534667pt;}
.x10{left:311.109333pt;}
.x5c{left:315.014667pt;}
.x11{left:317.750667pt;}
.xbe{left:319.228000pt;}
.x31{left:324.370667pt;}
.x1e{left:327.178667pt;}
.xab{left:328.978667pt;}
.x78{left:332.517333pt;}
.x1f{left:333.821333pt;}
.xac{left:335.505333pt;}
.x20{left:337.208000pt;}
.x80{left:339.981893pt;}
.x79{left:341.404000pt;}
.xb8{left:343.724000pt;}
.x3a{left:347.200000pt;}
.x21{left:350.492000pt;}
.x22{left:354.382667pt;}
.x23{left:361.024000pt;}
.x74{left:362.612000pt;}
.x75{left:367.261333pt;}
.xad{left:372.950667pt;}
.xc1{left:374.481333pt;}
.xc2{left:377.912000pt;}
.xae{left:378.928000pt;}
.x81{left:380.104280pt;}
.xbb{left:385.629333pt;}
.x2d{left:396.117333pt;}
.x48{left:400.989333pt;}
.x2e{left:402.760000pt;}
.x85{left:405.874667pt;}
.x60{left:408.328000pt;}
.x49{left:409.876000pt;}
.x36{left:412.301333pt;}
.x9b{left:416.322667pt;}
.xc3{left:418.904000pt;}
.xa3{left:424.506667pt;}
.x37{left:425.585333pt;}
.x61{left:427.146667pt;}
.x9c{left:429.606667pt;}
.xa4{left:437.789333pt;}
.x17{left:455.841333pt;}
.x4a{left:460.478667pt;}
.x18{left:469.125333pt;}
.x2f{left:470.592000pt;}
.x9{left:473.004000pt;}
.x30{left:477.234667pt;}
.xa{left:481.890667pt;}
.x9d{left:486.164000pt;}
.x9e{left:497.622667pt;}
.x5d{left:510.346667pt;}
.x8d{left:514.176000pt;}
.x7c{left:516.651640pt;}
.xaf{left:517.676000pt;}
.x8e{left:520.817333pt;}
.x5e{left:523.717333pt;}
.xe{left:536.172000pt;}
.x40{left:539.956000pt;}
.xf{left:542.814667pt;}
.x41{left:553.238667pt;}
.xc4{left:559.524000pt;}
.xb6{left:564.744000pt;}
.xa5{left:566.317333pt;}
.x38{left:570.928000pt;}
.xbc{left:574.256000pt;}
.x67{left:576.237333pt;}
.xa6{left:579.601333pt;}
.x64{left:581.573333pt;}
.xc{left:582.702667pt;}
.x39{left:584.212000pt;}
.x86{left:586.752000pt;}
.xd{left:589.344000pt;}
.x65{left:592.093333pt;}
.x8a{left:593.245333pt;}
.x62{left:594.976000pt;}
.x87{left:600.036000pt;}
.x44{left:601.546667pt;}
.x63{left:603.862667pt;}
.x8b{left:606.529333pt;}
.xa7{left:607.866667pt;}
.x8f{left:608.765333pt;}
.x8c{left:609.916000pt;}
.x45{left:614.830667pt;}
.x88{left:616.706667pt;}
.x92{left:618.500000pt;}
.xb2{left:620.828000pt;}
.xc7{left:622.276000pt;}
.x6{left:623.413317pt;}
.x93{left:625.141333pt;}
.xa8{left:631.777333pt;}
.x5a{left:633.970667pt;}
.xb1{left:641.336000pt;}
.xb3{left:644.738667pt;}
.x42{left:647.012000pt;}
.x98{left:653.313333pt;}
.x82{left:657.474560pt;}
.x43{left:660.296000pt;}
.x99{left:663.209333pt;}
.xb7{left:666.189333pt;}
.x12{left:669.641333pt;}
.x96{left:672.132000pt;}
.x9a{left:673.105333pt;}
.x3c{left:674.034667pt;}
.x13{left:676.282667pt;}
.xc5{left:678.196000pt;}
.x14{left:679.600000pt;}
.xc6{left:684.724000pt;}
.x15{left:686.241333pt;}
.x3d{left:687.318667pt;}
.x5b{left:690.000000pt;}
}




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