
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;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_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ed8b9c8a493f87047bb2d2cf.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d8608316f987e86e646dbd87.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ce693c3ef662fa44a638df04.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.226000;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_ef8b4ce6b489a66adc741597.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_c9548d15969cc6b7a427be1d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.665000;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_1df80401458d4c3b498530f4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.734000;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_088924351e2fcef37163f2e4.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.541000;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_b9abbbedefce405a86b99a9d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.740000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_efcbc99c3fc8e4195611e812.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.914000;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_2ef4eed7924f3d2aab739bf3.woff2')format("woff");}.fff{font-family:fff;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ccaf979a0bcbbdfd98bde4d5.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_35227fa1742a86ddd8bc78fa.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.215332;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_dd4cd454a833d7da2415acbb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.891602;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_60b1cd84281c5ffe0c3d8bf3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.752441;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_241f0b76c21473822fa477ea.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.679688;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_b2285ee3b0bf8d2373ab2707.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_a2b04aeee247f55834d8ecea.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.494000;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_d03e79c5ee0af75c1430413e.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_0ce4800da653372b12e5f16a.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;}
.m2{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);}
.mb{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m9{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);}
.m10{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);}
.m26{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);}
.m13{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);}
.m11{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);}
.md{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);}
.m28{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.me{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);}
.m27{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);}
.m22{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);}
.m25{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);}
.m24{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);}
.m5{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);}
.m15{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);}
.m23{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);}
.m3{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m4{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.ma{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);}
.m1f{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);}
.m1b{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);}
.m16{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);}
.m1c{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);}
.m1e{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);}
.m21{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);}
.m14{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);}
.m20{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);}
.mf{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);}
.m19{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);}
.m8{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);}
.mc{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);}
.v6{vertical-align:-28.223400px;}
.v2{vertical-align:-19.524000px;}
.v8{vertical-align:-1.441188px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.346000px;}
.v9{vertical-align:4.348800px;}
.v3{vertical-align:6.380100px;}
.v1{vertical-align:21.702000px;}
.vc{vertical-align:26.304000px;}
.v7{vertical-align:27.948000px;}
.v5{vertical-align:29.523900px;}
.va{vertical-align:33.556800px;}
.vd{vertical-align:36.834000px;}
.vb{vertical-align:52.603200px;}
.ls6d{letter-spacing:-0.192384px;}
.ls65{letter-spacing:-0.162324px;}
.ls62{letter-spacing:-0.144288px;}
.ls5c{letter-spacing:-0.138852px;}
.ls53{letter-spacing:-0.138276px;}
.ls67{letter-spacing:-0.132264px;}
.ls63{letter-spacing:-0.102204px;}
.ls56{letter-spacing:-0.100548px;}
.ls52{letter-spacing:-0.090972px;}
.ls6c{letter-spacing:-0.084168px;}
.ls6b{letter-spacing:-0.066132px;}
.ls60{letter-spacing:-0.057456px;}
.ls6a{letter-spacing:-0.054108px;}
.ls5d{letter-spacing:-0.052668px;}
.ls68{letter-spacing:-0.048096px;}
.ls55{letter-spacing:-0.047880px;}
.ls51{letter-spacing:-0.038304px;}
.ls61{letter-spacing:-0.037800px;}
.ls66{letter-spacing:-0.030060px;}
.ls5e{letter-spacing:-0.023940px;}
.ls5a{letter-spacing:-0.019152px;}
.ls64{letter-spacing:-0.018036px;}
.ls59{letter-spacing:-0.014364px;}
.ls69{letter-spacing:-0.006012px;}
.ls54{letter-spacing:-0.005400px;}
.lsb{letter-spacing:0.000000px;}
.ls8f{letter-spacing:0.000059px;}
.ls7d{letter-spacing:0.000124px;}
.ls15{letter-spacing:0.000355px;}
.ls7{letter-spacing:0.000466px;}
.ls82{letter-spacing:0.000649px;}
.ls14{letter-spacing:0.000747px;}
.lsf{letter-spacing:0.000846px;}
.ls86{letter-spacing:0.000929px;}
.ls1d{letter-spacing:0.000933px;}
.ls25{letter-spacing:0.000963px;}
.ls18{letter-spacing:0.000990px;}
.ls93{letter-spacing:0.001203px;}
.ls1a{letter-spacing:0.001331px;}
.ls85{letter-spacing:0.001416px;}
.ls1b{letter-spacing:0.001518px;}
.ls7e{letter-spacing:0.001546px;}
.ls92{letter-spacing:0.001771px;}
.ls27{letter-spacing:0.002097px;}
.ls1c{letter-spacing:0.002224px;}
.ls83{letter-spacing:0.002338px;}
.ls16{letter-spacing:0.002360px;}
.ls29{letter-spacing:0.002440px;}
.ls91{letter-spacing:0.002573px;}
.ls81{letter-spacing:0.002589px;}
.ls98{letter-spacing:0.002818px;}
.ls4{letter-spacing:0.002870px;}
.ls12{letter-spacing:0.002888px;}
.ls13{letter-spacing:0.002940px;}
.lse{letter-spacing:0.002958px;}
.lsa{letter-spacing:0.003488px;}
.ls8{letter-spacing:0.003494px;}
.ls11{letter-spacing:0.003643px;}
.ls94{letter-spacing:0.003720px;}
.lsd{letter-spacing:0.003996px;}
.ls10{letter-spacing:0.004176px;}
.ls6{letter-spacing:0.004200px;}
.ls8b{letter-spacing:0.004437px;}
.ls88{letter-spacing:0.004800px;}
.ls34{letter-spacing:0.009576px;}
.ls4b{letter-spacing:0.012024px;}
.ls3e{letter-spacing:0.014364px;}
.ls32{letter-spacing:0.016200px;}
.ls57{letter-spacing:0.019152px;}
.ls42{letter-spacing:0.024048px;}
.ls47{letter-spacing:0.030060px;}
.ls40{letter-spacing:0.032400px;}
.ls46{letter-spacing:0.036072px;}
.ls58{letter-spacing:0.038304px;}
.ls3d{letter-spacing:0.043092px;}
.ls33{letter-spacing:0.054000px;}
.ls31{letter-spacing:0.054108px;}
.ls37{letter-spacing:0.057456px;}
.ls43{letter-spacing:0.060120px;}
.ls38{letter-spacing:0.062244px;}
.ls4a{letter-spacing:0.066132px;}
.ls3c{letter-spacing:0.076608px;}
.ls2f{letter-spacing:0.078156px;}
.ls3a{letter-spacing:0.081396px;}
.ls49{letter-spacing:0.084168px;}
.ls35{letter-spacing:0.086184px;}
.ls30{letter-spacing:0.090180px;}
.ls39{letter-spacing:0.095760px;}
.ls41{letter-spacing:0.096192px;}
.ls3b{letter-spacing:0.105336px;}
.ls36{letter-spacing:0.124488px;}
.ls48{letter-spacing:0.126252px;}
.ls5b{letter-spacing:0.129276px;}
.ls4c{letter-spacing:0.132264px;}
.ls45{letter-spacing:0.138276px;}
.ls3f{letter-spacing:0.148428px;}
.ls2e{letter-spacing:0.172368px;}
.ls44{letter-spacing:0.180360px;}
.ls2d{letter-spacing:0.181944px;}
.lsc{letter-spacing:1.275394px;}
.ls5{letter-spacing:1.861130px;}
.ls50{letter-spacing:10.759096px;}
.ls4f{letter-spacing:10.759803px;}
.ls4e{letter-spacing:10.760227px;}
.ls80{letter-spacing:10.795838px;}
.ls7f{letter-spacing:10.795873px;}
.ls24{letter-spacing:11.432576px;}
.ls9{letter-spacing:11.954850px;}
.ls8c{letter-spacing:12.754482px;}
.ls99{letter-spacing:13.259311px;}
.ls97{letter-spacing:13.345652px;}
.ls96{letter-spacing:13.370400px;}
.ls87{letter-spacing:13.448400px;}
.ls23{letter-spacing:13.448870px;}
.ls22{letter-spacing:13.450090px;}
.ls89{letter-spacing:13.454400px;}
.ls8d{letter-spacing:13.608151px;}
.ls90{letter-spacing:13.641678px;}
.ls17{letter-spacing:14.506042px;}
.ls7a{letter-spacing:14.709742px;}
.ls7c{letter-spacing:14.714967px;}
.ls7b{letter-spacing:14.715657px;}
.ls21{letter-spacing:14.940124px;}
.ls19{letter-spacing:14.943767px;}
.ls1e{letter-spacing:14.943900px;}
.ls78{letter-spacing:14.944200px;}
.ls79{letter-spacing:14.946124px;}
.ls6f{letter-spacing:14.965079px;}
.ls6e{letter-spacing:14.971059px;}
.ls2c{letter-spacing:15.008083px;}
.ls71{letter-spacing:15.021888px;}
.ls72{letter-spacing:15.023965px;}
.ls73{letter-spacing:15.027771px;}
.ls70{letter-spacing:15.029847px;}
.ls8a{letter-spacing:15.032753px;}
.ls75{letter-spacing:15.188150px;}
.ls74{letter-spacing:15.194601px;}
.ls2b{letter-spacing:15.246346px;}
.ls2a{letter-spacing:15.254026px;}
.ls84{letter-spacing:15.344518px;}
.ls8e{letter-spacing:17.391576px;}
.ls1{letter-spacing:17.935200px;}
.ls77{letter-spacing:18.839535px;}
.ls76{letter-spacing:18.841612px;}
.ls20{letter-spacing:22.033653px;}
.ls1f{letter-spacing:22.035355px;}
.ls95{letter-spacing:22.879812px;}
.ls0{letter-spacing:57.415200px;}
.ls2{letter-spacing:70.236600px;}
.ls3{letter-spacing:72.353510px;}
.ls28{letter-spacing:153.367143px;}
.ls26{letter-spacing:167.334476px;}
.ls5f{letter-spacing:265.231260px;}
.ls4d{letter-spacing:846.000000px;}
.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;}
}
.ws61{word-spacing:-60.120000px;}
.ws5f{word-spacing:-47.880000px;}
.ws10{word-spacing:-17.394700px;}
.ws3{word-spacing:-15.655334px;}
.ws60{word-spacing:-15.030000px;}
.ws2c{word-spacing:-14.943900px;}
.wsba{word-spacing:-13.915795px;}
.wsaf{word-spacing:-13.449600px;}
.ws57{word-spacing:-13.307034px;}
.ws5d{word-spacing:-12.151944px;}
.ws1e{word-spacing:-11.955150px;}
.ws5e{word-spacing:-11.922120px;}
.ws52{word-spacing:-11.432160px;}
.ws1{word-spacing:-11.357400px;}
.ws66{word-spacing:-10.759680px;}
.wsc0{word-spacing:-3.765863px;}
.wsbf{word-spacing:-3.287658px;}
.ws27{word-spacing:-2.749678px;}
.ws123{word-spacing:-2.420928px;}
.ws125{word-spacing:-2.367130px;}
.wsd9{word-spacing:-2.205734px;}
.ws5a{word-spacing:-2.092146px;}
.ws8{word-spacing:-1.912819px;}
.ws6{word-spacing:-1.908367px;}
.ws30{word-spacing:-1.853044px;}
.ws18{word-spacing:-1.793268px;}
.wsa{word-spacing:-1.613941px;}
.ws4d{word-spacing:-1.554166px;}
.ws4c{word-spacing:-1.434614px;}
.ws5{word-spacing:-1.322630px;}
.ws2d{word-spacing:-1.315063px;}
.wsc9{word-spacing:-1.255288px;}
.ws1c{word-spacing:-1.195512px;}
.wsb{word-spacing:-1.135736px;}
.wsaa{word-spacing:-1.075961px;}
.wsca{word-spacing:-1.016185px;}
.wse4{word-spacing:-0.968371px;}
.ws68{word-spacing:-0.946852px;}
.ws44{word-spacing:-0.896634px;}
.wsee{word-spacing:-0.699379px;}
.ws2a{word-spacing:-0.537980px;}
.ws5b{word-spacing:-0.478205px;}
.ws28{word-spacing:-0.418429px;}
.wsa7{word-spacing:-0.402804px;}
.ws9e{word-spacing:-0.396792px;}
.wsf{word-spacing:-0.358654px;}
.ws78{word-spacing:-0.324648px;}
.wsd2{word-spacing:-0.322790px;}
.ws26{word-spacing:-0.298878px;}
.ws55{word-spacing:-0.274372px;}
.ws84{word-spacing:-0.272916px;}
.wsf6{word-spacing:-0.268992px;}
.ws75{word-spacing:-0.263340px;}
.ws9d{word-spacing:-0.240480px;}
.ws8b{word-spacing:-0.239400px;}
.ws25{word-spacing:-0.239102px;}
.wsad{word-spacing:-0.218868px;}
.wsd3{word-spacing:-0.215194px;}
.ws85{word-spacing:-0.196308px;}
.ws81{word-spacing:-0.186732px;}
.wsa8{word-spacing:-0.186372px;}
.ws1b{word-spacing:-0.179327px;}
.ws7e{word-spacing:-0.177156px;}
.ws82{word-spacing:-0.172368px;}
.ws7f{word-spacing:-0.167580px;}
.wse2{word-spacing:-0.161395px;}
.ws83{word-spacing:-0.148428px;}
.ws88{word-spacing:-0.134064px;}
.ws9{word-spacing:-0.119551px;}
.wsd1{word-spacing:-0.107597px;}
.wsa9{word-spacing:-0.078156px;}
.wsc{word-spacing:-0.059776px;}
.wsb1{word-spacing:-0.053798px;}
.ws74{word-spacing:-0.052668px;}
.ws1f{word-spacing:-0.047821px;}
.ws51{word-spacing:-0.045729px;}
.ws6a{word-spacing:-0.043039px;}
.ws86{word-spacing:-0.038304px;}
.ws119{word-spacing:-0.024490px;}
.ws4{word-spacing:-0.009264px;}
.ws8e{word-spacing:-0.006012px;}
.ws72{word-spacing:-0.003686px;}
.wsae{word-spacing:-0.000900px;}
.ws0{word-spacing:0.000000px;}
.ws4b{word-spacing:0.003000px;}
.ws9f{word-spacing:0.006012px;}
.ws6c{word-spacing:0.043039px;}
.ws54{word-spacing:0.045729px;}
.wsd7{word-spacing:0.053798px;}
.ws23{word-spacing:0.059776px;}
.ws73{word-spacing:0.095641px;}
.wsd0{word-spacing:0.107597px;}
.ws22{word-spacing:0.119551px;}
.ws7b{word-spacing:0.124200px;}
.wsa6{word-spacing:0.144288px;}
.wse6{word-spacing:0.161395px;}
.ws7a{word-spacing:0.162000px;}
.ws79{word-spacing:0.178200px;}
.wsd{word-spacing:0.179327px;}
.ws7c{word-spacing:0.183600px;}
.wsdc{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.ws89{word-spacing:0.253764px;}
.wsef{word-spacing:0.268992px;}
.ws7{word-spacing:0.298878px;}
.ws10c{word-spacing:0.322790px;}
.ws5c{word-spacing:0.342710px;}
.ws2b{word-spacing:0.358654px;}
.ws118{word-spacing:0.376589px;}
.ws48{word-spacing:0.418429px;}
.ws2f{word-spacing:0.478205px;}
.ws24{word-spacing:0.537980px;}
.ws3f{word-spacing:0.597756px;}
.wse8{word-spacing:0.645581px;}
.wsc8{word-spacing:0.657532px;}
.wsa0{word-spacing:0.745488px;}
.ws14{word-spacing:0.777083px;}
.ws116{word-spacing:0.806976px;}
.ws15{word-spacing:0.836858px;}
.ws2e{word-spacing:1.016185px;}
.wsb9{word-spacing:1.052053px;}
.ws96{word-spacing:1.112220px;}
.ws122{word-spacing:1.129766px;}
.wsac{word-spacing:1.135736px;}
.ws95{word-spacing:1.190376px;}
.ws45{word-spacing:1.195512px;}
.wsdf{word-spacing:1.237363px;}
.ws63{word-spacing:1.255288px;}
.ws3b{word-spacing:1.315063px;}
.wsea{word-spacing:1.344960px;}
.wsa4{word-spacing:1.346688px;}
.wsc4{word-spacing:1.434614px;}
.wsa5{word-spacing:1.442880px;}
.wsd4{word-spacing:1.452557px;}
.wsa3{word-spacing:1.533060px;}
.ws41{word-spacing:1.554166px;}
.wsbb{word-spacing:1.673717px;}
.wsd6{word-spacing:1.882944px;}
.ws19{word-spacing:1.912819px;}
.ws62{word-spacing:2.211697px;}
.ws111{word-spacing:2.259533px;}
.wscb{word-spacing:2.271473px;}
.ws10f{word-spacing:2.313331px;}
.wse{word-spacing:2.391024px;}
.ws35{word-spacing:2.510575px;}
.ws99{word-spacing:2.525040px;}
.ws98{word-spacing:2.627244px;}
.ws29{word-spacing:2.689902px;}
.ws97{word-spacing:2.771532px;}
.wsc7{word-spacing:2.869229px;}
.ws38{word-spacing:2.929004px;}
.ws3c{word-spacing:2.988780px;}
.wsf2{word-spacing:3.120307px;}
.wsbc{word-spacing:3.168107px;}
.ws10a{word-spacing:3.281702px;}
.ws31{word-spacing:3.287658px;}
.ws37{word-spacing:3.407209px;}
.ws43{word-spacing:3.526760px;}
.ws11d{word-spacing:3.550694px;}
.ws32{word-spacing:3.825638px;}
.wsab{word-spacing:3.885414px;}
.wsde{word-spacing:3.927283px;}
.ws59{word-spacing:3.945190px;}
.ws104{word-spacing:3.981082px;}
.ws103{word-spacing:4.034880px;}
.ws13{word-spacing:4.124516px;}
.wsc1{word-spacing:4.184292px;}
.wsa1{word-spacing:4.184352px;}
.ws58{word-spacing:4.303843px;}
.wsff{word-spacing:4.411469px;}
.wsbe{word-spacing:4.423394px;}
.wsa2{word-spacing:4.460904px;}
.wsf1{word-spacing:4.465267px;}
.ws47{word-spacing:4.483170px;}
.wsc2{word-spacing:4.662497px;}
.ws77{word-spacing:4.689360px;}
.wsc3{word-spacing:4.722272px;}
.wsec{word-spacing:4.734259px;}
.wsbd{word-spacing:4.841824px;}
.wse5{word-spacing:4.895654px;}
.ws76{word-spacing:4.905792px;}
.ws93{word-spacing:5.068116px;}
.ws94{word-spacing:5.230440px;}
.ws42{word-spacing:5.260253px;}
.ws11a{word-spacing:5.372102px;}
.ws101{word-spacing:5.374598px;}
.wsfe{word-spacing:5.378170px;}
.wsda{word-spacing:5.379053px;}
.wsf4{word-spacing:5.379485px;}
.wse1{word-spacing:5.379840px;}
.ws11b{word-spacing:5.380714px;}
.ws117{word-spacing:5.381299px;}
.ws112{word-spacing:5.433638px;}
.ws9c{word-spacing:5.458896px;}
.wscf{word-spacing:5.487437px;}
.ws40{word-spacing:5.499355px;}
.wscc{word-spacing:5.678682px;}
.wsce{word-spacing:5.864026px;}
.ws120{word-spacing:5.917824px;}
.ws11{word-spacing:5.971475px;}
.ws12{word-spacing:5.977560px;}
.ws3e{word-spacing:6.336214px;}
.ws46{word-spacing:6.395989px;}
.ws1a{word-spacing:6.455765px;}
.ws49{word-spacing:7.053521px;}
.ws4a{word-spacing:7.113296px;}
.ws10d{word-spacing:7.477978px;}
.wsfd{word-spacing:7.854566px;}
.ws3a{word-spacing:8.009930px;}
.ws34{word-spacing:8.069706px;}
.wsfc{word-spacing:8.500147px;}
.ws17{word-spacing:8.607686px;}
.ws9a{word-spacing:8.693352px;}
.ws9b{word-spacing:8.831628px;}
.ws10e{word-spacing:9.414720px;}
.ws8f{word-spacing:9.787536px;}
.ws3d{word-spacing:10.102076px;}
.ws124{word-spacing:10.974874px;}
.ws16{word-spacing:10.998710px;}
.ws109{word-spacing:11.190067px;}
.wse3{word-spacing:11.405261px;}
.wsc5{word-spacing:11.476915px;}
.ws90{word-spacing:11.969892px;}
.ws91{word-spacing:12.114180px;}
.wsed{word-spacing:12.481229px;}
.ws102{word-spacing:13.126810px;}
.wscd{word-spacing:13.150632px;}
.ws106{word-spacing:13.180608px;}
.wsf7{word-spacing:13.234406px;}
.wsc6{word-spacing:13.270183px;}
.ws114{word-spacing:13.288205px;}
.wse9{word-spacing:13.386134px;}
.ws121{word-spacing:13.389485px;}
.wsf5{word-spacing:13.390358px;}
.wsfa{word-spacing:13.390723px;}
.ws11c{word-spacing:13.391808px;}
.ws115{word-spacing:13.394563px;}
.wsdb{word-spacing:13.395802px;}
.wsd8{word-spacing:13.503398px;}
.ws92{word-spacing:14.128200px;}
.ws11f{word-spacing:14.364173px;}
.ws39{word-spacing:14.884124px;}
.ws110{word-spacing:15.709133px;}
.wsf3{word-spacing:16.516109px;}
.ws1d{word-spacing:16.689389px;}
.ws10b{word-spacing:16.731302px;}
.ws11e{word-spacing:16.946496px;}
.ws100{word-spacing:18.764035px;}
.wse7{word-spacing:18.769853px;}
.wsf8{word-spacing:18.770851px;}
.wsf9{word-spacing:18.771725px;}
.ws108{word-spacing:18.772291px;}
.ws107{word-spacing:18.774019px;}
.ws105{word-spacing:18.775142px;}
.wsdd{word-spacing:18.775642px;}
.ws113{word-spacing:18.829440px;}
.wsf0{word-spacing:18.990835px;}
.wsfb{word-spacing:19.044634px;}
.ws33{word-spacing:19.187968px;}
.ws36{word-spacing:20.861684px;}
.wse0{word-spacing:22.864320px;}
.wseb{word-spacing:23.187110px;}
.wsd5{word-spacing:23.617498px;}
.ws8c{word-spacing:31.109400px;}
.ws8d{word-spacing:31.179600px;}
.ws65{word-spacing:35.160906px;}
.ws2{word-spacing:39.479734px;}
.wsb6{word-spacing:78.247133px;}
.ws80{word-spacing:86.246244px;}
.wsb7{word-spacing:89.041133px;}
.ws71{word-spacing:91.629435px;}
.wsb4{word-spacing:96.241133px;}
.ws4e{word-spacing:121.451947px;}
.ws67{word-spacing:121.498307px;}
.ws8a{word-spacing:126.446292px;}
.wsb3{word-spacing:129.994243px;}
.ws64{word-spacing:138.205064px;}
.ws69{word-spacing:160.749619px;}
.ws4f{word-spacing:168.752823px;}
.ws56{word-spacing:184.048343px;}
.ws6b{word-spacing:184.550031px;}
.wsb2{word-spacing:200.642678px;}
.ws70{word-spacing:207.935186px;}
.wsb0{word-spacing:228.320410px;}
.ws6d{word-spacing:237.566845px;}
.ws6e{word-spacing:239.546266px;}
.ws50{word-spacing:335.968318px;}
.ws6f{word-spacing:338.456494px;}
.ws7d{word-spacing:371.060424px;}
.ws87{word-spacing:380.454480px;}
.ws20{word-spacing:430.815785px;}
.ws53{word-spacing:470.593434px;}
.wsb5{word-spacing:715.037846px;}
.wsb8{word-spacing:721.708848px;}
._2{margin-left:-11.943245px;}
._1b{margin-left:-6.959844px;}
._3{margin-left:-5.917824px;}
._5{margin-left:-4.420652px;}
._a{margin-left:-3.420146px;}
._8{margin-left:-2.271699px;}
._1{margin-left:-1.063024px;}
._9{width:1.091170px;}
._4{width:2.995418px;}
._35{width:7.196364px;}
._0{width:10.165172px;}
._14{width:11.955150px;}
._4a{width:13.007308px;}
._b{width:14.367958px;}
._13{width:15.793632px;}
._6{width:17.861069px;}
._7{width:19.797811px;}
._c{width:20.955361px;}
._e{width:21.997421px;}
._f{width:24.029791px;}
._11{width:25.703508px;}
._12{width:27.197898px;}
._d{width:28.512961px;}
._16{width:29.529146px;}
._1a{width:31.356316px;}
._17{width:32.983194px;}
._1d{width:34.896013px;}
._49{width:36.788094px;}
._18{width:38.375975px;}
._1c{width:40.527857px;}
._4d{width:42.192167px;}
._19{width:45.595846px;}
._10{width:47.162948px;}
._4c{width:61.868160px;}
._23{width:72.708538px;}
._38{width:77.644301px;}
._2d{width:83.317582px;}
._37{width:84.492872px;}
._2f{width:96.395973px;}
._22{width:101.235906px;}
._28{width:102.378306px;}
._2b{width:103.954206px;}
._31{width:105.101706px;}
._30{width:106.244106px;}
._21{width:115.388406px;}
._27{width:116.556991px;}
._2c{width:117.673206px;}
._48{width:120.477869px;}
._45{width:127.639584px;}
._47{width:138.537610px;}
._20{width:148.791521px;}
._32{width:160.644712px;}
._1f{width:162.760870px;}
._39{width:168.496589px;}
._3a{width:171.509299px;}
._46{width:175.866970px;}
._26{width:185.658278px;}
._3b{width:192.555233px;}
._2e{width:206.876367px;}
._29{width:207.882397px;}
._36{width:220.487363px;}
._33{width:224.481894px;}
._2a{width:226.356768px;}
._40{width:302.097866px;}
._24{width:313.103998px;}
._3c{width:349.173135px;}
._41{width:354.904090px;}
._42{width:365.740656px;}
._1e{width:394.363791px;}
._25{width:407.396454px;}
._3e{width:459.813349px;}
._3f{width:461.372175px;}
._3d{width:472.694262px;}
._44{width:582.690470px;}
._43{width:661.213183px;}
._34{width:1146.425926px;}
._4b{width:1515.546193px;}
._15{width:1539.456493px;}
.fc5{color:transparent;}
.fc4{color:rgb(8,117,183);}
.fc3{color:rgb(12,11,11);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fs5{font-size:41.842800px;}
.fs8{font-size:41.936104px;}
.fsf{font-size:43.038720px;}
.fs4{font-size:45.429600px;}
.fsa{font-size:45.728640px;}
.fs7{font-size:47.236800px;}
.fs9{font-size:47.820600px;}
.fsb{font-size:47.880000px;}
.fs6{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fs1{font-size:60.474240px;}
.fse{font-size:72.000000px;}
.fs3{font-size:107.596800px;}
.yda{bottom:-786.869550px;}
.y107{bottom:-749.249550px;}
.y106{bottom:-727.467762px;}
.y105{bottom:-707.217843px;}
.y104{bottom:-686.967924px;}
.y103{bottom:-666.718005px;}
.y102{bottom:-637.468122px;}
.y101{bottom:-599.218275px;}
.y100{bottom:-578.968356px;}
.yff{bottom:-558.808617px;}
.yfe{bottom:-538.558698px;}
.yfd{bottom:-518.308779px;}
.yfc{bottom:-498.058860px;}
.yfb{bottom:-477.808941px;}
.yfa{bottom:-457.559022px;}
.yf9{bottom:-437.399283px;}
.yf8{bottom:-408.149400px;}
.yf7{bottom:-370.349850px;}
.yf6{bottom:-350.819400px;}
.yf5{bottom:-330.299550px;}
.yf4{bottom:-313.379946px;}
.yf3{bottom:-297.179748px;}
.yf2{bottom:-280.979550px;}
.yf0{bottom:-264.060144px;}
.yef{bottom:-247.859946px;}
.yf1{bottom:-239.759847px;}
.yee{bottom:-231.659748px;}
.yed{bottom:-215.459550px;}
.yeb{bottom:-198.540144px;}
.yea{bottom:-182.339946px;}
.yec{bottom:-174.239847px;}
.ye9{bottom:-166.139748px;}
.ye8{bottom:-149.939550px;}
.ye7{bottom:-133.019550px;}
.ye6{bottom:-132.659748px;}
.ye2{bottom:-124.559649px;}
.ye0{bottom:-116.459550px;}
.ye4{bottom:-116.099253px;}
.ye1{bottom:-108.359451px;}
.ye5{bottom:-100.259352px;}
.ye3{bottom:-99.899055px;}
.ydf{bottom:-72.809550px;}
.yde{bottom:-35.279550px;}
.ydd{bottom:-9.089550px;}
.y0{bottom:0.000000px;}
.y14{bottom:3.425340px;}
.y4{bottom:6.350457px;}
.y13{bottom:14.151273px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y32{bottom:63.780000px;}
.y160{bottom:108.612000px;}
.y1bc{bottom:108.957000px;}
.y188{bottom:113.409000px;}
.y31{bottom:114.331500px;}
.y1bf{bottom:116.146500px;}
.yd7{bottom:120.876000px;}
.y16a{bottom:123.121500px;}
.y63{bottom:125.572500px;}
.y87{bottom:127.098000px;}
.y1bb{bottom:128.325000px;}
.y15f{bottom:128.875500px;}
.y187{bottom:132.777000px;}
.y30{bottom:134.595000px;}
.y1be{bottom:135.514500px;}
.yd6{bottom:141.139500px;}
.y169{bottom:143.386500px;}
.y62{bottom:145.837500px;}
.y86{bottom:147.361500px;}
.y1ba{bottom:147.691500px;}
.y15e{bottom:149.139000px;}
.y186{bottom:152.145000px;}
.y2f{bottom:154.860000px;}
.y1bd{bottom:154.882500px;}
.yd5{bottom:161.404500px;}
.y168{bottom:163.650000px;}
.y61{bottom:166.101000px;}
.y1b9{bottom:167.059500px;}
.y15d{bottom:169.404000px;}
.y185{bottom:171.511500px;}
.y2e{bottom:175.123500px;}
.y85{bottom:176.592000px;}
.y135{bottom:180.675000px;}
.yd4{bottom:181.668000px;}
.y167{bottom:183.913500px;}
.y60{bottom:186.364500px;}
.y1b8{bottom:186.427500px;}
.y15c{bottom:189.667500px;}
.y184{bottom:190.879500px;}
.y134{bottom:194.872500px;}
.y2d{bottom:195.387000px;}
.yd3{bottom:201.931500px;}
.y166{bottom:204.178500px;}
.y1b7{bottom:205.794000px;}
.y5f{bottom:206.629500px;}
.y15b{bottom:209.932500px;}
.y183{bottom:210.246000px;}
.y84{bottom:211.411500px;}
.y133{bottom:215.119200px;}
.y2c{bottom:215.652000px;}
.yd2{bottom:222.196500px;}
.y165{bottom:224.442000px;}
.y1b6{bottom:225.162000px;}
.y5e{bottom:226.893000px;}
.y182{bottom:229.614000px;}
.y15a{bottom:230.196000px;}
.y83{bottom:231.675000px;}
.y132{bottom:234.031200px;}
.y2b{bottom:235.915500px;}
.y1b5{bottom:244.528500px;}
.y164{bottom:244.707000px;}
.y131{bottom:247.182000px;}
.y181{bottom:248.982000px;}
.y159{bottom:250.459500px;}
.yd1{bottom:251.427000px;}
.y82{bottom:251.940000px;}
.y5d{bottom:256.123500px;}
.y2a{bottom:256.180500px;}
.y130{bottom:260.618400px;}
.ydc{bottom:262.620531px;}
.y1b4{bottom:263.896500px;}
.y163{bottom:264.970500px;}
.y180{bottom:268.348500px;}
.y158{bottom:270.724500px;}
.y81{bottom:272.203500px;}
.y12f{bottom:274.054800px;}
.y29{bottom:276.444000px;}
.ydb{bottom:282.870450px;}
.y1b3{bottom:283.264500px;}
.y162{bottom:285.234000px;}
.yd0{bottom:286.246500px;}
.y17f{bottom:287.716500px;}
.y5c{bottom:290.943000px;}
.y157{bottom:290.988000px;}
.y80{bottom:292.468500px;}
.y12e{bottom:292.968000px;}
.y28{bottom:296.707500px;}
.y12c{bottom:299.542800px;}
.y1b2{bottom:302.631000px;}
.y161{bottom:305.499000px;}
.y12d{bottom:306.118800px;}
.ycf{bottom:306.510000px;}
.y17e{bottom:307.083000px;}
.y156{bottom:311.253000px;}
.y7f{bottom:312.732000px;}
.y27{bottom:316.972500px;}
.y12b{bottom:319.555200px;}
.yd9{bottom:320.220450px;}
.y1b1{bottom:321.999000px;}
.y5b{bottom:325.762500px;}
.y17d{bottom:326.451000px;}
.yce{bottom:326.775000px;}
.y155{bottom:331.516500px;}
.y12a{bottom:332.706000px;}
.y7e{bottom:332.995500px;}
.y26{bottom:337.236000px;}
.y1b0{bottom:341.367000px;}
.y9a{bottom:341.962500px;}
.y125{bottom:345.066000px;}
.y17c{bottom:345.819000px;}
.y128{bottom:345.856800px;}
.y5a{bottom:346.027500px;}
.y154{bottom:351.780000px;}
.y127{bottom:351.926400px;}
.ycd{bottom:356.005500px;}
.y25{bottom:357.501000px;}
.y124{bottom:358.216800px;}
.y129{bottom:359.007600px;}
.y1af{bottom:360.733500px;}
.y7d{bottom:362.226000px;}
.y17b{bottom:365.185500px;}
.y59{bottom:366.291000px;}
.y153{bottom:372.045000px;}
.y126{bottom:372.444000px;}
.y99{bottom:376.782000px;}
.y1ae{bottom:380.101500px;}
.y17a{bottom:384.553500px;}
.y58{bottom:386.554500px;}
.y24{bottom:386.731500px;}
.y123{bottom:391.641600px;}
.y7c{bottom:397.045500px;}
.y1ad{bottom:399.468000px;}
.y152{bottom:401.275500px;}
.y179{bottom:403.920000px;}
.y122{bottom:404.792400px;}
.y57{bottom:406.819500px;}
.y120{bottom:411.368400px;}
.ycc{bottom:412.134000px;}
.y7b{bottom:417.310500px;}
.y121{bottom:417.943200px;}
.y1ac{bottom:418.836000px;}
.y178{bottom:423.288000px;}
.y56{bottom:427.083000px;}
.y11f{bottom:431.379600px;}
.ycb{bottom:432.835200px;}
.y151{bottom:436.095000px;}
.y11e{bottom:437.164800px;}
.y7a{bottom:437.574000px;}
.y1ab{bottom:438.204000px;}
.y11a{bottom:438.568800px;}
.yc6{bottom:439.588875px;}
.y177{bottom:442.656000px;}
.y11d{bottom:444.530400px;}
.yca{bottom:447.111375px;}
.y55{bottom:447.348000px;}
.yc5{bottom:453.561600px;}
.yc8{bottom:454.636425px;}
.y150{bottom:456.358500px;}
.y1aa{bottom:457.570500px;}
.y11b{bottom:457.681200px;}
.y79{bottom:457.839000px;}
.yc9{bottom:461.387550px;}
.y176{bottom:462.022500px;}
.y23{bottom:463.147500px;}
.yc4{bottom:467.534325px;}
.y54{bottom:467.611500px;}
.y11c{bottom:470.832000px;}
.yc7{bottom:475.663725px;}
.y1a9{bottom:476.938500px;}
.y78{bottom:478.102500px;}
.y115{bottom:484.369200px;}
.y14f{bottom:485.589000px;}
.y53{bottom:487.875000px;}
.y119{bottom:490.029600px;}
.y175{bottom:490.356000px;}
.y118{bottom:494.826000px;}
.ybf{bottom:495.525675px;}
.yc3{bottom:496.062450px;}
.y1a8{bottom:496.305000px;}
.y114{bottom:497.520000px;}
.y77{bottom:498.366000px;}
.y22{bottom:501.343500px;}
.y113{bottom:502.004400px;}
.y117{bottom:507.976800px;}
.y52{bottom:508.140000px;}
.ybe{bottom:509.498400px;}
.yc2{bottom:510.338625px;}
.yc1{bottom:510.573225px;}
.y116{bottom:510.670800px;}
.y1a7{bottom:515.673000px;}
.y76{bottom:518.631000px;}
.y21{bottom:521.608500px;}
.ybd{bottom:523.471125px;}
.y14e{bottom:524.256000px;}
.yc0{bottom:524.614800px;}
.y51{bottom:528.403500px;}
.y174{bottom:529.809000px;}
.y1a6{bottom:535.041000px;}
.y112{bottom:537.472500px;}
.y14d{bottom:538.452000px;}
.y75{bottom:538.894500px;}
.y20{bottom:541.872000px;}
.ybc{bottom:545.013525px;}
.y50{bottom:548.667000px;}
.y173{bottom:553.972500px;}
.y1a5{bottom:554.407500px;}
.ybb{bottom:558.984975px;}
.y98{bottom:559.159500px;}
.y14c{bottom:560.511000px;}
.y1f{bottom:562.135500px;}
.yb7{bottom:565.131750px;}
.y74{bottom:568.125000px;}
.y4f{bottom:568.932000px;}
.y172{bottom:569.170500px;}
.yba{bottom:572.957700px;}
.yb9{bottom:573.192300px;}
.y1a4{bottom:573.775500px;}
.y111{bottom:574.584000px;}
.yb6{bottom:579.104475px;}
.y97{bottom:579.423000px;}
.y1e{bottom:582.400500px;}
.y14b{bottom:584.509500px;}
.yb8{bottom:587.233875px;}
.y4e{bottom:589.195500px;}
.y1a3{bottom:593.142000px;}
.y171{bottom:593.335500px;}
.y110{bottom:594.847500px;}
.y96{bottom:599.686500px;}
.y1d{bottom:602.664000px;}
.y73{bottom:602.944500px;}
.yb5{bottom:607.632600px;}
.y14a{bottom:608.506500px;}
.y170{bottom:608.533500px;}
.y4d{bottom:609.460500px;}
.y1a2{bottom:612.510000px;}
.y10f{bottom:615.112500px;}
.yb4{bottom:621.908775px;}
.y1c{bottom:622.927500px;}
.y72{bottom:623.209500px;}
.y149{bottom:623.296500px;}
.y16f{bottom:623.731500px;}
.yb0{bottom:628.662450px;}
.y95{bottom:628.917000px;}
.yb2{bottom:629.432550px;}
.y4c{bottom:629.724000px;}
.y1a1{bottom:631.878000px;}
.y10e{bottom:635.376000px;}
.yb3{bottom:636.184950px;}
.y16e{bottom:638.929500px;}
.y1b{bottom:643.192500px;}
.y71{bottom:643.473000px;}
.y4b{bottom:649.987500px;}
.yb1{bottom:650.461125px;}
.y1a0{bottom:651.244500px;}
.y16d{bottom:654.127500px;}
.y10d{bottom:655.639500px;}
.y148{bottom:656.502000px;}
.y1a{bottom:663.456000px;}
.y94{bottom:663.736500px;}
.y4a{bottom:670.252500px;}
.y19f{bottom:670.612500px;}
.yaf{bottom:670.859850px;}
.y70{bottom:672.703500px;}
.y10c{bottom:675.904500px;}
.y147{bottom:680.500500px;}
.y19{bottom:683.721000px;}
.y93{bottom:684.001500px;}
.yab{bottom:684.599250px;}
.yae{bottom:685.136025px;}
.yad{bottom:685.370625px;}
.y16c{bottom:687.258000px;}
.y19e{bottom:689.979000px;}
.y49{bottom:690.516000px;}
.y10b{bottom:696.168000px;}
.yac{bottom:699.412200px;}
.y18{bottom:703.984500px;}
.y92{bottom:704.265000px;}
.y146{bottom:704.499000px;}
.y6f{bottom:707.523000px;}
.y19d{bottom:709.347000px;}
.y48{bottom:710.781000px;}
.y10a{bottom:716.433000px;}
.yaa{bottom:719.810925px;}
.y17{bottom:724.248000px;}
.y91{bottom:724.530000px;}
.ya6{bottom:726.259875px;}
.y6e{bottom:727.786500px;}
.y145{bottom:728.496000px;}
.y19c{bottom:728.715000px;}
.y47{bottom:731.044500px;}
.ya9{bottom:734.087100px;}
.ya8{bottom:734.320425px;}
.y143{bottom:734.902500px;}
.y109{bottom:736.696500px;}
.ya5{bottom:740.232600px;}
.y16{bottom:744.513000px;}
.y90{bottom:744.793500px;}
.y6d{bottom:748.051500px;}
.y19b{bottom:748.081500px;}
.ya7{bottom:748.363275px;}
.y46{bottom:751.308000px;}
.y144{bottom:752.494500px;}
.y15{bottom:764.776500px;}
.y8f{bottom:765.057000px;}
.y19a{bottom:767.449500px;}
.y6c{bottom:768.315000px;}
.ya4{bottom:768.760725px;}
.y45{bottom:771.573000px;}
.y108{bottom:771.697500px;}
.ya3{bottom:775.655925px;}
.y142{bottom:784.114500px;}
.ya1{bottom:784.671450px;}
.y8e{bottom:785.322000px;}
.y199{bottom:786.816000px;}
.y6b{bottom:788.578500px;}
.y44{bottom:791.836500px;}
.yd8{bottom:794.125500px;}
.y12{bottom:800.209464px;}
.y11{bottom:800.976000px;}
.ya2{bottom:803.435625px;}
.y8d{bottom:805.585500px;}
.y198{bottom:806.184000px;}
.y6a{bottom:808.843500px;}
.y43{bottom:812.101500px;}
.y141{bottom:820.141500px;}
.y197{bottom:825.552000px;}
.y69{bottom:829.107000px;}
.y42{bottom:832.365000px;}
.ya0{bottom:832.524000px;}
.y8c{bottom:834.816000px;}
.y10{bottom:839.982000px;}
.y140{bottom:840.405000px;}
.y196{bottom:844.918500px;}
.y68{bottom:849.372000px;}
.y41{bottom:852.628500px;}
.yf{bottom:858.138000px;}
.y13f{bottom:860.668500px;}
.y195{bottom:864.286500px;}
.y67{bottom:869.635500px;}
.y40{bottom:872.893500px;}
.y13e{bottom:880.933500px;}
.ye{bottom:881.178000px;}
.y194{bottom:883.653000px;}
.y66{bottom:889.899000px;}
.y3f{bottom:893.157000px;}
.yd{bottom:894.453000px;}
.y193{bottom:903.021000px;}
.y65{bottom:910.164000px;}
.y3e{bottom:913.422000px;}
.yc{bottom:917.491500px;}
.y192{bottom:922.389000px;}
.y8b{bottom:930.427500px;}
.yb{bottom:930.766500px;}
.y3d{bottom:933.685500px;}
.y64{bottom:939.394500px;}
.y191{bottom:941.755500px;}
.y13d{bottom:944.983500px;}
.y8a{bottom:950.692500px;}
.ya{bottom:953.805000px;}
.y3c{bottom:953.949000px;}
.y16b{bottom:959.658000px;}
.y190{bottom:961.123500px;}
.y13c{bottom:965.247000px;}
.y89{bottom:970.956000px;}
.y3b{bottom:974.214000px;}
.y9{bottom:976.047000px;}
.y18f{bottom:980.490000px;}
.y13b{bottom:985.512000px;}
.y9f{bottom:991.219500px;}
.y3a{bottom:994.477500px;}
.y8{bottom:996.310500px;}
.y18e{bottom:999.858000px;}
.y88{bottom:1000.186500px;}
.y13a{bottom:1005.775500px;}
.y9e{bottom:1011.484500px;}
.y39{bottom:1014.742500px;}
.y18d{bottom:1019.226000px;}
.y139{bottom:1026.039000px;}
.y9d{bottom:1031.748000px;}
.y38{bottom:1035.006000px;}
.y18c{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.y138{bottom:1046.304000px;}
.y9c{bottom:1052.013000px;}
.y37{bottom:1055.269500px;}
.y18b{bottom:1057.960500px;}
.y137{bottom:1066.567500px;}
.y6{bottom:1071.244500px;}
.y36{bottom:1075.534500px;}
.y18a{bottom:1077.327000px;}
.y9b{bottom:1081.243500px;}
.y136{bottom:1086.832500px;}
.y35{bottom:1095.798000px;}
.y189{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y34{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.h23{height:20.486431px;}
.hb{height:25.508090px;}
.h10{height:27.974981px;}
.h22{height:31.116995px;}
.h14{height:33.061807px;}
.hd{height:33.112997px;}
.hc{height:34.199443px;}
.h1f{height:35.255391px;}
.h1b{height:36.492188px;}
.h2b{height:37.927872px;}
.h2a{height:38.412058px;}
.h28{height:38.896243px;}
.h3{height:39.402747px;}
.h13{height:39.441907px;}
.h9{height:39.457760px;}
.h24{height:40.585513px;}
.h4{height:41.001535px;}
.h12{height:42.679778px;}
.h16{height:43.122108px;}
.he{height:43.217759px;}
.h5{height:43.815515px;}
.h1a{height:44.723848px;}
.h11{height:45.094826px;}
.h20{height:47.988281px;}
.h1e{height:50.440430px;}
.ha{height:50.731891px;}
.h2{height:50.931027px;}
.h8{height:54.541601px;}
.h7{height:54.547601px;}
.h1c{height:56.157012px;}
.hf{height:56.368391px;}
.h15{height:62.860079px;}
.h18{height:64.536113px;}
.h21{height:65.782595px;}
.h27{height:66.884713px;}
.h26{height:66.889513px;}
.h1d{height:67.253906px;}
.h17{height:71.070108px;}
.h6{height:77.792486px;}
.h29{height:87.565891px;}
.h25{height:93.188713px;}
.h19{height:257.760000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w4{width:482.398500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x71{left:-94.320000px;}
.x80{left:-87.569766px;}
.x87{left:-78.210423px;}
.x75{left:-73.620000px;}
.x89{left:-67.770000px;}
.x8f{left:-62.460000px;}
.x81{left:-33.300180px;}
.x82{left:-17.370504px;}
.x8b{left:-6.029937px;}
.x73{left:-1.170000px;}
.x0{left:0.000000px;}
.x74{left:9.719100px;}
.x8a{left:26.010162px;}
.x7{left:29.274117px;}
.x2{left:59.014071px;}
.xa8{left:112.561500px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.307500px;}
.x8e{left:132.750000px;}
.x58{left:135.004200px;}
.x67{left:136.464075px;}
.x5c{left:140.179425px;}
.x66{left:141.785925px;}
.x64{left:143.443425px;}
.x4{left:146.170500px;}
.x97{left:151.586100px;}
.x76{left:163.619415px;}
.x90{left:169.674900px;}
.x77{left:171.629739px;}
.xb3{left:175.188000px;}
.x15{left:177.030000px;}
.xa6{left:180.469500px;}
.xab{left:182.407500px;}
.x16{left:184.501500px;}
.x8c{left:187.650648px;}
.x8{left:188.970000px;}
.x17{left:191.832000px;}
.x34{left:195.475500px;}
.x62{left:198.095025px;}
.x18{left:199.303500px;}
.x2f{left:202.140000px;}
.x6b{left:204.202275px;}
.x70{left:205.258500px;}
.x28{left:209.136000px;}
.x57{left:210.816000px;}
.x4a{left:212.128500px;}
.x13{left:214.192500px;}
.x26{left:216.501000px;}
.x2b{left:220.170000px;}
.x14{left:221.665500px;}
.x27{left:223.972500px;}
.x68{left:225.775275px;}
.x4b{left:227.071500px;}
.x78{left:228.779307px;}
.x56{left:230.215500px;}
.x29{left:231.700500px;}
.x6d{left:233.366625px;}
.x2c{left:235.114500px;}
.x65{left:236.698200px;}
.x2d{left:238.917000px;}
.x99{left:240.072900px;}
.x9f{left:242.681700px;}
.x2a{left:246.645000px;}
.xa0{left:248.765700px;}
.xc1{left:251.667000px;}
.x2e{left:253.861500px;}
.xbd{left:255.198000px;}
.x9e{left:256.324500px;}
.x98{left:257.836500px;}
.x88{left:259.559037px;}
.xa2{left:261.675000px;}
.xc2{left:267.238500px;}
.x83{left:268.559280px;}
.xa7{left:294.814500px;}
.x84{left:295.919109px;}
.x5d{left:306.640875px;}
.x63{left:309.387225px;}
.x45{left:320.155500px;}
.x8d{left:322.380180px;}
.x6f{left:325.681500px;}
.xf{left:329.590500px;}
.x37{left:331.017000px;}
.x46{left:335.098500px;}
.x10{left:337.062000px;}
.x11{left:340.873500px;}
.x9d{left:342.324900px;}
.x6e{left:343.482000px;}
.x38{left:345.960000px;}
.x12{left:348.345000px;}
.xa1{left:351.790500px;}
.x39{left:353.581500px;}
.xac{left:357.190500px;}
.x7b{left:360.358335px;}
.x7a{left:362.698470px;}
.x79{left:365.038605px;}
.x3a{left:368.526000px;}
.x30{left:371.466000px;}
.x5a{left:378.943575px;}
.x85{left:381.238875px;}
.x4e{left:383.049000px;}
.x31{left:386.409000px;}
.xa9{left:390.124500px;}
.xb{left:396.363000px;}
.x4f{left:397.993500px;}
.xc{left:403.834500px;}
.xaa{left:405.069000px;}
.x35{left:407.043000px;}
.x59{left:412.708125px;}
.xa4{left:414.937500px;}
.xa5{left:417.742500px;}
.x36{left:421.986000px;}
.x47{left:426.076500px;}
.x7c{left:431.818038px;}
.x7d{left:438.388371px;}
.x48{left:439.645500px;}
.x7e{left:441.178578px;}
.x69{left:444.705525px;}
.xad{left:447.010500px;}
.x5e{left:448.529250px;}
.x5b{left:457.829100px;}
.x41{left:458.853000px;}
.x42{left:473.796000px;}
.x43{left:477.607500px;}
.xaf{left:481.158000px;}
.x72{left:483.660000px;}
.x9a{left:487.252500px;}
.x44{left:492.550500px;}
.xb0{left:496.102500px;}
.x9{left:500.284500px;}
.x7f{left:502.739091px;}
.x5f{left:503.949675px;}
.xa{left:514.543500px;}
.x4c{left:518.512500px;}
.x86{left:520.198605px;}
.x3d{left:523.234500px;}
.x20{left:524.712000px;}
.xa3{left:527.667000px;}
.x49{left:530.094000px;}
.x4d{left:533.457000px;}
.x3e{left:538.179000px;}
.x21{left:539.655000px;}
.x22{left:543.316500px;}
.x91{left:548.957700px;}
.x3f{left:550.375500px;}
.x52{left:557.022000px;}
.x23{left:558.261000px;}
.x9b{left:563.222100px;}
.x40{left:565.318500px;}
.x53{left:571.966500px;}
.x32{left:573.694500px;}
.x3b{left:576.345000px;}
.x6a{left:579.177225px;}
.x60{left:583.000950px;}
.x33{left:588.637500px;}
.x3c{left:591.289500px;}
.x54{left:595.420500px;}
.xae{left:601.294500px;}
.x55{left:610.363500px;}
.x92{left:615.485700px;}
.x93{left:620.904900px;}
.x94{left:623.561700px;}
.xbc{left:629.031000px;}
.xb8{left:636.429000px;}
.x61{left:638.421375px;}
.x24{left:647.853000px;}
.xb1{left:653.404500px;}
.x25{left:662.796000px;}
.xb4{left:666.856500px;}
.xb2{left:668.347500px;}
.xbe{left:675.553500px;}
.xba{left:679.531500px;}
.x19{left:682.993500px;}
.xd{left:684.385500px;}
.x95{left:689.648100px;}
.xe{left:691.857000px;}
.xb5{left:693.756000px;}
.x1a{left:697.936500px;}
.x6{left:701.339982px;}
.xbf{left:702.453000px;}
.x9c{left:703.516500px;}
.xbb{left:706.431000px;}
.x96{left:711.641700px;}
.x6c{left:713.648925px;}
.x1b{left:716.545500px;}
.x50{left:725.268000px;}
.xb6{left:728.481000px;}
.xb9{left:729.622500px;}
.x51{left:740.212500px;}
.x1c{left:749.173500px;}
.xb7{left:755.380500px;}
.x1d{left:756.646500px;}
.x1e{left:763.968000px;}
.x1f{left:771.441000px;}
.xc0{left:776.419500px;}
@media print{
.v6{vertical-align:-25.087467pt;}
.v2{vertical-align:-17.354667pt;}
.v8{vertical-align:-1.281056pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.085333pt;}
.v9{vertical-align:3.865600pt;}
.v3{vertical-align:5.671200pt;}
.v1{vertical-align:19.290667pt;}
.vc{vertical-align:23.381333pt;}
.v7{vertical-align:24.842667pt;}
.v5{vertical-align:26.243467pt;}
.va{vertical-align:29.828267pt;}
.vd{vertical-align:32.741333pt;}
.vb{vertical-align:46.758400pt;}
.ls6d{letter-spacing:-0.171008pt;}
.ls65{letter-spacing:-0.144288pt;}
.ls62{letter-spacing:-0.128256pt;}
.ls5c{letter-spacing:-0.123424pt;}
.ls53{letter-spacing:-0.122912pt;}
.ls67{letter-spacing:-0.117568pt;}
.ls63{letter-spacing:-0.090848pt;}
.ls56{letter-spacing:-0.089376pt;}
.ls52{letter-spacing:-0.080864pt;}
.ls6c{letter-spacing:-0.074816pt;}
.ls6b{letter-spacing:-0.058784pt;}
.ls60{letter-spacing:-0.051072pt;}
.ls6a{letter-spacing:-0.048096pt;}
.ls5d{letter-spacing:-0.046816pt;}
.ls68{letter-spacing:-0.042752pt;}
.ls55{letter-spacing:-0.042560pt;}
.ls51{letter-spacing:-0.034048pt;}
.ls61{letter-spacing:-0.033600pt;}
.ls66{letter-spacing:-0.026720pt;}
.ls5e{letter-spacing:-0.021280pt;}
.ls5a{letter-spacing:-0.017024pt;}
.ls64{letter-spacing:-0.016032pt;}
.ls59{letter-spacing:-0.012768pt;}
.ls69{letter-spacing:-0.005344pt;}
.ls54{letter-spacing:-0.004800pt;}
.lsb{letter-spacing:0.000000pt;}
.ls8f{letter-spacing:0.000052pt;}
.ls7d{letter-spacing:0.000110pt;}
.ls15{letter-spacing:0.000316pt;}
.ls7{letter-spacing:0.000414pt;}
.ls82{letter-spacing:0.000577pt;}
.ls14{letter-spacing:0.000664pt;}
.lsf{letter-spacing:0.000752pt;}
.ls86{letter-spacing:0.000826pt;}
.ls1d{letter-spacing:0.000830pt;}
.ls25{letter-spacing:0.000856pt;}
.ls18{letter-spacing:0.000880pt;}
.ls93{letter-spacing:0.001069pt;}
.ls1a{letter-spacing:0.001183pt;}
.ls85{letter-spacing:0.001259pt;}
.ls1b{letter-spacing:0.001349pt;}
.ls7e{letter-spacing:0.001374pt;}
.ls92{letter-spacing:0.001574pt;}
.ls27{letter-spacing:0.001864pt;}
.ls1c{letter-spacing:0.001977pt;}
.ls83{letter-spacing:0.002078pt;}
.ls16{letter-spacing:0.002097pt;}
.ls29{letter-spacing:0.002169pt;}
.ls91{letter-spacing:0.002287pt;}
.ls81{letter-spacing:0.002301pt;}
.ls98{letter-spacing:0.002505pt;}
.ls4{letter-spacing:0.002551pt;}
.ls12{letter-spacing:0.002567pt;}
.ls13{letter-spacing:0.002613pt;}
.lse{letter-spacing:0.002630pt;}
.lsa{letter-spacing:0.003100pt;}
.ls8{letter-spacing:0.003106pt;}
.ls11{letter-spacing:0.003239pt;}
.ls94{letter-spacing:0.003307pt;}
.lsd{letter-spacing:0.003552pt;}
.ls10{letter-spacing:0.003712pt;}
.ls6{letter-spacing:0.003733pt;}
.ls8b{letter-spacing:0.003944pt;}
.ls88{letter-spacing:0.004267pt;}
.ls34{letter-spacing:0.008512pt;}
.ls4b{letter-spacing:0.010688pt;}
.ls3e{letter-spacing:0.012768pt;}
.ls32{letter-spacing:0.014400pt;}
.ls57{letter-spacing:0.017024pt;}
.ls42{letter-spacing:0.021376pt;}
.ls47{letter-spacing:0.026720pt;}
.ls40{letter-spacing:0.028800pt;}
.ls46{letter-spacing:0.032064pt;}
.ls58{letter-spacing:0.034048pt;}
.ls3d{letter-spacing:0.038304pt;}
.ls33{letter-spacing:0.048000pt;}
.ls31{letter-spacing:0.048096pt;}
.ls37{letter-spacing:0.051072pt;}
.ls43{letter-spacing:0.053440pt;}
.ls38{letter-spacing:0.055328pt;}
.ls4a{letter-spacing:0.058784pt;}
.ls3c{letter-spacing:0.068096pt;}
.ls2f{letter-spacing:0.069472pt;}
.ls3a{letter-spacing:0.072352pt;}
.ls49{letter-spacing:0.074816pt;}
.ls35{letter-spacing:0.076608pt;}
.ls30{letter-spacing:0.080160pt;}
.ls39{letter-spacing:0.085120pt;}
.ls41{letter-spacing:0.085504pt;}
.ls3b{letter-spacing:0.093632pt;}
.ls36{letter-spacing:0.110656pt;}
.ls48{letter-spacing:0.112224pt;}
.ls5b{letter-spacing:0.114912pt;}
.ls4c{letter-spacing:0.117568pt;}
.ls45{letter-spacing:0.122912pt;}
.ls3f{letter-spacing:0.131936pt;}
.ls2e{letter-spacing:0.153216pt;}
.ls44{letter-spacing:0.160320pt;}
.ls2d{letter-spacing:0.161728pt;}
.lsc{letter-spacing:1.133683pt;}
.ls5{letter-spacing:1.654338pt;}
.ls50{letter-spacing:9.563641pt;}
.ls4f{letter-spacing:9.564269pt;}
.ls4e{letter-spacing:9.564646pt;}
.ls80{letter-spacing:9.596300pt;}
.ls7f{letter-spacing:9.596332pt;}
.ls24{letter-spacing:10.162290pt;}
.ls9{letter-spacing:10.626533pt;}
.ls8c{letter-spacing:11.337317pt;}
.ls99{letter-spacing:11.786054pt;}
.ls97{letter-spacing:11.862802pt;}
.ls96{letter-spacing:11.884800pt;}
.ls87{letter-spacing:11.954133pt;}
.ls23{letter-spacing:11.954551pt;}
.ls22{letter-spacing:11.955635pt;}
.ls89{letter-spacing:11.959467pt;}
.ls8d{letter-spacing:12.096134pt;}
.ls90{letter-spacing:12.125936pt;}
.ls17{letter-spacing:12.894260pt;}
.ls7a{letter-spacing:13.075326pt;}
.ls7c{letter-spacing:13.079970pt;}
.ls7b{letter-spacing:13.080584pt;}
.ls21{letter-spacing:13.280110pt;}
.ls19{letter-spacing:13.283349pt;}
.ls1e{letter-spacing:13.283467pt;}
.ls78{letter-spacing:13.283733pt;}
.ls79{letter-spacing:13.285443pt;}
.ls6f{letter-spacing:13.302292pt;}
.ls6e{letter-spacing:13.307608pt;}
.ls2c{letter-spacing:13.340518pt;}
.ls71{letter-spacing:13.352790pt;}
.ls72{letter-spacing:13.354635pt;}
.ls73{letter-spacing:13.358018pt;}
.ls70{letter-spacing:13.359864pt;}
.ls8a{letter-spacing:13.362447pt;}
.ls75{letter-spacing:13.500578pt;}
.ls74{letter-spacing:13.506312pt;}
.ls2b{letter-spacing:13.552308pt;}
.ls2a{letter-spacing:13.559134pt;}
.ls84{letter-spacing:13.639571pt;}
.ls8e{letter-spacing:15.459179pt;}
.ls1{letter-spacing:15.942400pt;}
.ls77{letter-spacing:16.746254pt;}
.ls76{letter-spacing:16.748099pt;}
.ls20{letter-spacing:19.585469pt;}
.ls1f{letter-spacing:19.586982pt;}
.ls95{letter-spacing:20.337610pt;}
.ls0{letter-spacing:51.035733pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3{letter-spacing:64.314231pt;}
.ls28{letter-spacing:136.326349pt;}
.ls26{letter-spacing:148.741757pt;}
.ls5f{letter-spacing:235.761120pt;}
.ls4d{letter-spacing:752.000000pt;}
.ws61{word-spacing:-53.440000pt;}
.ws5f{word-spacing:-42.560000pt;}
.ws10{word-spacing:-15.461955pt;}
.ws3{word-spacing:-13.915853pt;}
.ws60{word-spacing:-13.360000pt;}
.ws2c{word-spacing:-13.283467pt;}
.wsba{word-spacing:-12.369595pt;}
.wsaf{word-spacing:-11.955200pt;}
.ws57{word-spacing:-11.828475pt;}
.ws5d{word-spacing:-10.801728pt;}
.ws1e{word-spacing:-10.626800pt;}
.ws5e{word-spacing:-10.597440pt;}
.ws52{word-spacing:-10.161920pt;}
.ws1{word-spacing:-10.095467pt;}
.ws66{word-spacing:-9.564160pt;}
.wsc0{word-spacing:-3.347434pt;}
.wsbf{word-spacing:-2.922363pt;}
.ws27{word-spacing:-2.444158pt;}
.ws123{word-spacing:-2.151936pt;}
.ws125{word-spacing:-2.104115pt;}
.wsd9{word-spacing:-1.960653pt;}
.ws5a{word-spacing:-1.859685pt;}
.ws8{word-spacing:-1.700284pt;}
.ws6{word-spacing:-1.696326pt;}
.ws30{word-spacing:-1.647150pt;}
.ws18{word-spacing:-1.594016pt;}
.wsa{word-spacing:-1.434614pt;}
.ws4d{word-spacing:-1.381481pt;}
.ws4c{word-spacing:-1.275213pt;}
.ws5{word-spacing:-1.175671pt;}
.ws2d{word-spacing:-1.168945pt;}
.wsc9{word-spacing:-1.115811pt;}
.ws1c{word-spacing:-1.062677pt;}
.wsb{word-spacing:-1.009543pt;}
.wsaa{word-spacing:-0.956410pt;}
.wsca{word-spacing:-0.903276pt;}
.wse4{word-spacing:-0.860774pt;}
.ws68{word-spacing:-0.841646pt;}
.ws44{word-spacing:-0.797008pt;}
.wsee{word-spacing:-0.621670pt;}
.ws2a{word-spacing:-0.478205pt;}
.ws5b{word-spacing:-0.425071pt;}
.ws28{word-spacing:-0.371937pt;}
.wsa7{word-spacing:-0.358048pt;}
.ws9e{word-spacing:-0.352704pt;}
.wsf{word-spacing:-0.318803pt;}
.ws78{word-spacing:-0.288576pt;}
.wsd2{word-spacing:-0.286925pt;}
.ws26{word-spacing:-0.265669pt;}
.ws55{word-spacing:-0.243886pt;}
.ws84{word-spacing:-0.242592pt;}
.wsf6{word-spacing:-0.239104pt;}
.ws75{word-spacing:-0.234080pt;}
.ws9d{word-spacing:-0.213760pt;}
.ws8b{word-spacing:-0.212800pt;}
.ws25{word-spacing:-0.212535pt;}
.wsad{word-spacing:-0.194550pt;}
.wsd3{word-spacing:-0.191283pt;}
.ws85{word-spacing:-0.174496pt;}
.ws81{word-spacing:-0.165984pt;}
.wsa8{word-spacing:-0.165664pt;}
.ws1b{word-spacing:-0.159402pt;}
.ws7e{word-spacing:-0.157472pt;}
.ws82{word-spacing:-0.153216pt;}
.ws7f{word-spacing:-0.148960pt;}
.wse2{word-spacing:-0.143462pt;}
.ws83{word-spacing:-0.131936pt;}
.ws88{word-spacing:-0.119168pt;}
.ws9{word-spacing:-0.106268pt;}
.wsd1{word-spacing:-0.095642pt;}
.wsa9{word-spacing:-0.069472pt;}
.wsc{word-spacing:-0.053134pt;}
.wsb1{word-spacing:-0.047821pt;}
.ws74{word-spacing:-0.046816pt;}
.ws1f{word-spacing:-0.042507pt;}
.ws51{word-spacing:-0.040648pt;}
.ws6a{word-spacing:-0.038257pt;}
.ws86{word-spacing:-0.034048pt;}
.ws119{word-spacing:-0.021769pt;}
.ws4{word-spacing:-0.008235pt;}
.ws8e{word-spacing:-0.005344pt;}
.ws72{word-spacing:-0.003277pt;}
.wsae{word-spacing:-0.000800pt;}
.ws0{word-spacing:0.000000pt;}
.ws4b{word-spacing:0.002667pt;}
.ws9f{word-spacing:0.005344pt;}
.ws6c{word-spacing:0.038257pt;}
.ws54{word-spacing:0.040648pt;}
.wsd7{word-spacing:0.047821pt;}
.ws23{word-spacing:0.053134pt;}
.ws73{word-spacing:0.085014pt;}
.wsd0{word-spacing:0.095642pt;}
.ws22{word-spacing:0.106268pt;}
.ws7b{word-spacing:0.110400pt;}
.wsa6{word-spacing:0.128256pt;}
.wse6{word-spacing:0.143462pt;}
.ws7a{word-spacing:0.144000pt;}
.ws79{word-spacing:0.158400pt;}
.wsd{word-spacing:0.159402pt;}
.ws7c{word-spacing:0.163200pt;}
.wsdc{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.ws89{word-spacing:0.225568pt;}
.wsef{word-spacing:0.239104pt;}
.ws7{word-spacing:0.265669pt;}
.ws10c{word-spacing:0.286925pt;}
.ws5c{word-spacing:0.304631pt;}
.ws2b{word-spacing:0.318803pt;}
.ws118{word-spacing:0.334746pt;}
.ws48{word-spacing:0.371937pt;}
.ws2f{word-spacing:0.425071pt;}
.ws24{word-spacing:0.478205pt;}
.ws3f{word-spacing:0.531339pt;}
.wse8{word-spacing:0.573850pt;}
.wsc8{word-spacing:0.584473pt;}
.wsa0{word-spacing:0.662656pt;}
.ws14{word-spacing:0.690740pt;}
.ws116{word-spacing:0.717312pt;}
.ws15{word-spacing:0.743874pt;}
.ws2e{word-spacing:0.903276pt;}
.wsb9{word-spacing:0.935158pt;}
.ws96{word-spacing:0.988640pt;}
.ws122{word-spacing:1.004237pt;}
.wsac{word-spacing:1.009543pt;}
.ws95{word-spacing:1.058112pt;}
.ws45{word-spacing:1.062677pt;}
.wsdf{word-spacing:1.099878pt;}
.ws63{word-spacing:1.115811pt;}
.ws3b{word-spacing:1.168945pt;}
.wsea{word-spacing:1.195520pt;}
.wsa4{word-spacing:1.197056pt;}
.wsc4{word-spacing:1.275213pt;}
.wsa5{word-spacing:1.282560pt;}
.wsd4{word-spacing:1.291162pt;}
.wsa3{word-spacing:1.362720pt;}
.ws41{word-spacing:1.381481pt;}
.wsbb{word-spacing:1.487748pt;}
.wsd6{word-spacing:1.673728pt;}
.ws19{word-spacing:1.700284pt;}
.ws62{word-spacing:1.965953pt;}
.ws111{word-spacing:2.008474pt;}
.wscb{word-spacing:2.019087pt;}
.ws10f{word-spacing:2.056294pt;}
.wse{word-spacing:2.125355pt;}
.ws35{word-spacing:2.231622pt;}
.ws99{word-spacing:2.244480pt;}
.ws98{word-spacing:2.335328pt;}
.ws29{word-spacing:2.391024pt;}
.ws97{word-spacing:2.463584pt;}
.wsc7{word-spacing:2.550426pt;}
.ws38{word-spacing:2.603559pt;}
.ws3c{word-spacing:2.656693pt;}
.wsf2{word-spacing:2.773606pt;}
.wsbc{word-spacing:2.816095pt;}
.ws10a{word-spacing:2.917069pt;}
.ws31{word-spacing:2.922363pt;}
.ws37{word-spacing:3.028630pt;}
.ws43{word-spacing:3.134898pt;}
.ws11d{word-spacing:3.156173pt;}
.ws32{word-spacing:3.400567pt;}
.wsab{word-spacing:3.453701pt;}
.wsde{word-spacing:3.490918pt;}
.ws59{word-spacing:3.506835pt;}
.ws104{word-spacing:3.538739pt;}
.ws103{word-spacing:3.586560pt;}
.ws13{word-spacing:3.666237pt;}
.wsc1{word-spacing:3.719371pt;}
.wsa1{word-spacing:3.719424pt;}
.ws58{word-spacing:3.825638pt;}
.wsff{word-spacing:3.921306pt;}
.wsbe{word-spacing:3.931906pt;}
.wsa2{word-spacing:3.965248pt;}
.wsf1{word-spacing:3.969126pt;}
.ws47{word-spacing:3.985040pt;}
.wsc2{word-spacing:4.144442pt;}
.ws77{word-spacing:4.168320pt;}
.wsc3{word-spacing:4.197575pt;}
.wsec{word-spacing:4.208230pt;}
.wsbd{word-spacing:4.303843pt;}
.wse5{word-spacing:4.351693pt;}
.ws76{word-spacing:4.360704pt;}
.ws93{word-spacing:4.504992pt;}
.ws94{word-spacing:4.649280pt;}
.ws42{word-spacing:4.675780pt;}
.ws11a{word-spacing:4.775202pt;}
.ws101{word-spacing:4.777421pt;}
.wsfe{word-spacing:4.780595pt;}
.wsda{word-spacing:4.781380pt;}
.wsf4{word-spacing:4.781764pt;}
.wse1{word-spacing:4.782080pt;}
.ws11b{word-spacing:4.782857pt;}
.ws117{word-spacing:4.783377pt;}
.ws112{word-spacing:4.829901pt;}
.ws9c{word-spacing:4.852352pt;}
.wscf{word-spacing:4.877722pt;}
.ws40{word-spacing:4.888316pt;}
.wscc{word-spacing:5.047717pt;}
.wsce{word-spacing:5.212467pt;}
.ws120{word-spacing:5.260288pt;}
.ws11{word-spacing:5.307978pt;}
.ws12{word-spacing:5.313387pt;}
.ws3e{word-spacing:5.632190pt;}
.ws46{word-spacing:5.685324pt;}
.ws1a{word-spacing:5.738458pt;}
.ws49{word-spacing:6.269796pt;}
.ws4a{word-spacing:6.322930pt;}
.ws10d{word-spacing:6.647091pt;}
.wsfd{word-spacing:6.981837pt;}
.ws3a{word-spacing:7.119938pt;}
.ws34{word-spacing:7.173072pt;}
.wsfc{word-spacing:7.555686pt;}
.ws17{word-spacing:7.651277pt;}
.ws9a{word-spacing:7.727424pt;}
.ws9b{word-spacing:7.850336pt;}
.ws10e{word-spacing:8.368640pt;}
.ws8f{word-spacing:8.700032pt;}
.ws3d{word-spacing:8.979623pt;}
.ws124{word-spacing:9.755443pt;}
.ws16{word-spacing:9.776631pt;}
.ws109{word-spacing:9.946726pt;}
.wse3{word-spacing:10.138010pt;}
.wsc5{word-spacing:10.201702pt;}
.ws90{word-spacing:10.639904pt;}
.ws91{word-spacing:10.768160pt;}
.wsed{word-spacing:11.094426pt;}
.ws102{word-spacing:11.668275pt;}
.wscd{word-spacing:11.689451pt;}
.ws106{word-spacing:11.716096pt;}
.wsf7{word-spacing:11.763917pt;}
.wsc6{word-spacing:11.795718pt;}
.ws114{word-spacing:11.811738pt;}
.wse9{word-spacing:11.898786pt;}
.ws121{word-spacing:11.901764pt;}
.wsf5{word-spacing:11.902541pt;}
.wsfa{word-spacing:11.902865pt;}
.ws11c{word-spacing:11.903829pt;}
.ws115{word-spacing:11.906278pt;}
.wsdb{word-spacing:11.907379pt;}
.wsd8{word-spacing:12.003021pt;}
.ws92{word-spacing:12.558400pt;}
.ws11f{word-spacing:12.768154pt;}
.ws39{word-spacing:13.230333pt;}
.ws110{word-spacing:13.963674pt;}
.wsf3{word-spacing:14.680986pt;}
.ws1d{word-spacing:14.835013pt;}
.ws10b{word-spacing:14.872269pt;}
.ws11e{word-spacing:15.063552pt;}
.ws100{word-spacing:16.679142pt;}
.wse7{word-spacing:16.684314pt;}
.wsf8{word-spacing:16.685201pt;}
.wsf9{word-spacing:16.685978pt;}
.ws108{word-spacing:16.686481pt;}
.ws107{word-spacing:16.688017pt;}
.ws105{word-spacing:16.689015pt;}
.wsdd{word-spacing:16.689459pt;}
.ws113{word-spacing:16.737280pt;}
.wsf0{word-spacing:16.880742pt;}
.wsfb{word-spacing:16.928563pt;}
.ws33{word-spacing:17.055971pt;}
.ws36{word-spacing:18.543719pt;}
.wse0{word-spacing:20.323840pt;}
.wseb{word-spacing:20.610765pt;}
.wsd5{word-spacing:20.993331pt;}
.ws8c{word-spacing:27.652800pt;}
.ws8d{word-spacing:27.715200pt;}
.ws65{word-spacing:31.254139pt;}
.ws2{word-spacing:35.093097pt;}
.wsb6{word-spacing:69.553007pt;}
.ws80{word-spacing:76.663328pt;}
.wsb7{word-spacing:79.147674pt;}
.ws71{word-spacing:81.448387pt;}
.wsb4{word-spacing:85.547674pt;}
.ws4e{word-spacing:107.957286pt;}
.ws67{word-spacing:107.998495pt;}
.ws8a{word-spacing:112.396704pt;}
.wsb3{word-spacing:115.550438pt;}
.ws64{word-spacing:122.848945pt;}
.ws69{word-spacing:142.888550pt;}
.ws4f{word-spacing:150.002509pt;}
.ws56{word-spacing:163.598527pt;}
.ws6b{word-spacing:164.044472pt;}
.wsb2{word-spacing:178.349047pt;}
.ws70{word-spacing:184.831276pt;}
.wsb0{word-spacing:202.951475pt;}
.ws6d{word-spacing:211.170529pt;}
.ws6e{word-spacing:212.930014pt;}
.ws50{word-spacing:298.638505pt;}
.ws6f{word-spacing:300.850217pt;}
.ws7d{word-spacing:329.831488pt;}
.ws87{word-spacing:338.181760pt;}
.ws20{word-spacing:382.947365pt;}
.ws53{word-spacing:418.305275pt;}
.wsb5{word-spacing:635.589197pt;}
.wsb8{word-spacing:641.518976pt;}
._2{margin-left:-10.616218pt;}
._1b{margin-left:-6.186528pt;}
._3{margin-left:-5.260288pt;}
._5{margin-left:-3.929469pt;}
._a{margin-left:-3.040130pt;}
._8{margin-left:-2.019288pt;}
._1{margin-left:-0.944910pt;}
._9{width:0.969929pt;}
._4{width:2.662594pt;}
._35{width:6.396768pt;}
._0{width:9.035708pt;}
._14{width:10.626800pt;}
._4a{width:11.562051pt;}
._b{width:12.771518pt;}
._13{width:14.038784pt;}
._6{width:15.876506pt;}
._7{width:17.598054pt;}
._c{width:18.626988pt;}
._e{width:19.553263pt;}
._f{width:21.359814pt;}
._11{width:22.847563pt;}
._12{width:24.175909pt;}
._d{width:25.344854pt;}
._16{width:26.248130pt;}
._1a{width:27.872281pt;}
._17{width:29.318395pt;}
._1d{width:31.018679pt;}
._49{width:32.700528pt;}
._18{width:34.111978pt;}
._1c{width:36.024762pt;}
._4d{width:37.504148pt;}
._19{width:40.529641pt;}
._10{width:41.922621pt;}
._4c{width:54.993920pt;}
._23{width:64.629811pt;}
._38{width:69.017156pt;}
._2d{width:74.060073pt;}
._37{width:75.104775pt;}
._2f{width:85.685309pt;}
._22{width:89.987472pt;}
._28{width:91.002938pt;}
._2b{width:92.403738pt;}
._31{width:93.423738pt;}
._30{width:94.439205pt;}
._21{width:102.567472pt;}
._27{width:103.606214pt;}
._2c{width:104.598405pt;}
._48{width:107.091439pt;}
._45{width:113.457408pt;}
._47{width:123.144542pt;}
._20{width:132.259130pt;}
._32{width:142.795300pt;}
._1f{width:144.676329pt;}
._39{width:149.774746pt;}
._3a{width:152.452710pt;}
._46{width:156.326195pt;}
._26{width:165.029581pt;}
._3b{width:171.160207pt;}
._2e{width:183.890104pt;}
._29{width:184.784353pt;}
._36{width:195.988767pt;}
._33{width:199.539461pt;}
._2a{width:201.206016pt;}
._40{width:268.531437pt;}
._24{width:278.314665pt;}
._3c{width:310.376120pt;}
._41{width:315.470302pt;}
._42{width:325.102805pt;}
._1e{width:350.545592pt;}
._25{width:362.130181pt;}
._3e{width:408.722977pt;}
._3f{width:410.108600pt;}
._3d{width:420.172677pt;}
._44{width:517.947085pt;}
._43{width:587.745052pt;}
._34{width:1019.045267pt;}
._4b{width:1347.152171pt;}
._15{width:1368.405771pt;}
.fs5{font-size:37.193600pt;}
.fs8{font-size:37.276537pt;}
.fsf{font-size:38.256640pt;}
.fs4{font-size:40.381867pt;}
.fsa{font-size:40.647680pt;}
.fs7{font-size:41.988267pt;}
.fs9{font-size:42.507200pt;}
.fsb{font-size:42.560000pt;}
.fs6{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fs1{font-size:53.754880pt;}
.fse{font-size:64.000000pt;}
.fs3{font-size:95.641600pt;}
.yda{bottom:-699.439600pt;}
.y107{bottom:-665.999600pt;}
.y106{bottom:-646.638011pt;}
.y105{bottom:-628.638083pt;}
.y104{bottom:-610.638155pt;}
.y103{bottom:-592.638227pt;}
.y102{bottom:-566.638331pt;}
.y101{bottom:-532.638467pt;}
.y100{bottom:-514.638539pt;}
.yff{bottom:-496.718771pt;}
.yfe{bottom:-478.718843pt;}
.yfd{bottom:-460.718915pt;}
.yfc{bottom:-442.718987pt;}
.yfb{bottom:-424.719059pt;}
.yfa{bottom:-406.719131pt;}
.yf9{bottom:-388.799363pt;}
.yf8{bottom:-362.799467pt;}
.yf7{bottom:-329.199867pt;}
.yf6{bottom:-311.839467pt;}
.yf5{bottom:-293.599600pt;}
.yf4{bottom:-278.559952pt;}
.yf3{bottom:-264.159776pt;}
.yf2{bottom:-249.759600pt;}
.yf0{bottom:-234.720128pt;}
.yef{bottom:-220.319952pt;}
.yf1{bottom:-213.119864pt;}
.yee{bottom:-205.919776pt;}
.yed{bottom:-191.519600pt;}
.yeb{bottom:-176.480128pt;}
.yea{bottom:-162.079952pt;}
.yec{bottom:-154.879864pt;}
.ye9{bottom:-147.679776pt;}
.ye8{bottom:-133.279600pt;}
.ye7{bottom:-118.239600pt;}
.ye6{bottom:-117.919776pt;}
.ye2{bottom:-110.719688pt;}
.ye0{bottom:-103.519600pt;}
.ye4{bottom:-103.199336pt;}
.ye1{bottom:-96.319512pt;}
.ye5{bottom:-89.119424pt;}
.ye3{bottom:-88.799160pt;}
.ydf{bottom:-64.719600pt;}
.yde{bottom:-31.359600pt;}
.ydd{bottom:-8.079600pt;}
.y0{bottom:0.000000pt;}
.y14{bottom:3.044747pt;}
.y4{bottom:5.644850pt;}
.y13{bottom:12.578910pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y32{bottom:56.693333pt;}
.y160{bottom:96.544000pt;}
.y1bc{bottom:96.850667pt;}
.y188{bottom:100.808000pt;}
.y31{bottom:101.628000pt;}
.y1bf{bottom:103.241333pt;}
.yd7{bottom:107.445333pt;}
.y16a{bottom:109.441333pt;}
.y63{bottom:111.620000pt;}
.y87{bottom:112.976000pt;}
.y1bb{bottom:114.066667pt;}
.y15f{bottom:114.556000pt;}
.y187{bottom:118.024000pt;}
.y30{bottom:119.640000pt;}
.y1be{bottom:120.457333pt;}
.yd6{bottom:125.457333pt;}
.y169{bottom:127.454667pt;}
.y62{bottom:129.633333pt;}
.y86{bottom:130.988000pt;}
.y1ba{bottom:131.281333pt;}
.y15e{bottom:132.568000pt;}
.y186{bottom:135.240000pt;}
.y2f{bottom:137.653333pt;}
.y1bd{bottom:137.673333pt;}
.yd5{bottom:143.470667pt;}
.y168{bottom:145.466667pt;}
.y61{bottom:147.645333pt;}
.y1b9{bottom:148.497333pt;}
.y15d{bottom:150.581333pt;}
.y185{bottom:152.454667pt;}
.y2e{bottom:155.665333pt;}
.y85{bottom:156.970667pt;}
.y135{bottom:160.600000pt;}
.yd4{bottom:161.482667pt;}
.y167{bottom:163.478667pt;}
.y60{bottom:165.657333pt;}
.y1b8{bottom:165.713333pt;}
.y15c{bottom:168.593333pt;}
.y184{bottom:169.670667pt;}
.y134{bottom:173.220000pt;}
.y2d{bottom:173.677333pt;}
.yd3{bottom:179.494667pt;}
.y166{bottom:181.492000pt;}
.y1b7{bottom:182.928000pt;}
.y5f{bottom:183.670667pt;}
.y15b{bottom:186.606667pt;}
.y183{bottom:186.885333pt;}
.y84{bottom:187.921333pt;}
.y133{bottom:191.217067pt;}
.y2c{bottom:191.690667pt;}
.yd2{bottom:197.508000pt;}
.y165{bottom:199.504000pt;}
.y1b6{bottom:200.144000pt;}
.y5e{bottom:201.682667pt;}
.y182{bottom:204.101333pt;}
.y15a{bottom:204.618667pt;}
.y83{bottom:205.933333pt;}
.y132{bottom:208.027733pt;}
.y2b{bottom:209.702667pt;}
.y1b5{bottom:217.358667pt;}
.y164{bottom:217.517333pt;}
.y131{bottom:219.717333pt;}
.y181{bottom:221.317333pt;}
.y159{bottom:222.630667pt;}
.yd1{bottom:223.490667pt;}
.y82{bottom:223.946667pt;}
.y5d{bottom:227.665333pt;}
.y2a{bottom:227.716000pt;}
.y130{bottom:231.660800pt;}
.ydc{bottom:233.440472pt;}
.y1b4{bottom:234.574667pt;}
.y163{bottom:235.529333pt;}
.y180{bottom:238.532000pt;}
.y158{bottom:240.644000pt;}
.y81{bottom:241.958667pt;}
.y12f{bottom:243.604267pt;}
.y29{bottom:245.728000pt;}
.ydb{bottom:251.440400pt;}
.y1b3{bottom:251.790667pt;}
.y162{bottom:253.541333pt;}
.yd0{bottom:254.441333pt;}
.y17f{bottom:255.748000pt;}
.y5c{bottom:258.616000pt;}
.y157{bottom:258.656000pt;}
.y80{bottom:259.972000pt;}
.y12e{bottom:260.416000pt;}
.y28{bottom:263.740000pt;}
.y12c{bottom:266.260267pt;}
.y1b2{bottom:269.005333pt;}
.y161{bottom:271.554667pt;}
.y12d{bottom:272.105600pt;}
.ycf{bottom:272.453333pt;}
.y17e{bottom:272.962667pt;}
.y156{bottom:276.669333pt;}
.y7f{bottom:277.984000pt;}
.y27{bottom:281.753333pt;}
.y12b{bottom:284.049067pt;}
.yd9{bottom:284.640400pt;}
.y1b1{bottom:286.221333pt;}
.y5b{bottom:289.566667pt;}
.y17d{bottom:290.178667pt;}
.yce{bottom:290.466667pt;}
.y155{bottom:294.681333pt;}
.y12a{bottom:295.738667pt;}
.y7e{bottom:295.996000pt;}
.y26{bottom:299.765333pt;}
.y1b0{bottom:303.437333pt;}
.y9a{bottom:303.966667pt;}
.y125{bottom:306.725333pt;}
.y17c{bottom:307.394667pt;}
.y128{bottom:307.428267pt;}
.y5a{bottom:307.580000pt;}
.y154{bottom:312.693333pt;}
.y127{bottom:312.823467pt;}
.ycd{bottom:316.449333pt;}
.y25{bottom:317.778667pt;}
.y124{bottom:318.414933pt;}
.y129{bottom:319.117867pt;}
.y1af{bottom:320.652000pt;}
.y7d{bottom:321.978667pt;}
.y17b{bottom:324.609333pt;}
.y59{bottom:325.592000pt;}
.y153{bottom:330.706667pt;}
.y126{bottom:331.061333pt;}
.y99{bottom:334.917333pt;}
.y1ae{bottom:337.868000pt;}
.y17a{bottom:341.825333pt;}
.y58{bottom:343.604000pt;}
.y24{bottom:343.761333pt;}
.y123{bottom:348.125867pt;}
.y7c{bottom:352.929333pt;}
.y1ad{bottom:355.082667pt;}
.y152{bottom:356.689333pt;}
.y179{bottom:359.040000pt;}
.y122{bottom:359.815467pt;}
.y57{bottom:361.617333pt;}
.y120{bottom:365.660800pt;}
.ycc{bottom:366.341333pt;}
.y7b{bottom:370.942667pt;}
.y121{bottom:371.505067pt;}
.y1ac{bottom:372.298667pt;}
.y178{bottom:376.256000pt;}
.y56{bottom:379.629333pt;}
.y11f{bottom:383.448533pt;}
.ycb{bottom:384.742400pt;}
.y151{bottom:387.640000pt;}
.y11e{bottom:388.590933pt;}
.y7a{bottom:388.954667pt;}
.y1ab{bottom:389.514667pt;}
.y11a{bottom:389.838933pt;}
.yc6{bottom:390.745667pt;}
.y177{bottom:393.472000pt;}
.y11d{bottom:395.138133pt;}
.yca{bottom:397.432333pt;}
.y55{bottom:397.642667pt;}
.yc5{bottom:403.165867pt;}
.yc8{bottom:404.121267pt;}
.y150{bottom:405.652000pt;}
.y1aa{bottom:406.729333pt;}
.y11b{bottom:406.827733pt;}
.y79{bottom:406.968000pt;}
.yc9{bottom:410.122267pt;}
.y176{bottom:410.686667pt;}
.y23{bottom:411.686667pt;}
.yc4{bottom:415.586067pt;}
.y54{bottom:415.654667pt;}
.y11c{bottom:418.517333pt;}
.yc7{bottom:422.812200pt;}
.y1a9{bottom:423.945333pt;}
.y78{bottom:424.980000pt;}
.y115{bottom:430.550400pt;}
.y14f{bottom:431.634667pt;}
.y53{bottom:433.666667pt;}
.y119{bottom:435.581867pt;}
.y175{bottom:435.872000pt;}
.y118{bottom:439.845333pt;}
.ybf{bottom:440.467267pt;}
.yc3{bottom:440.944400pt;}
.y1a8{bottom:441.160000pt;}
.y114{bottom:442.240000pt;}
.y77{bottom:442.992000pt;}
.y22{bottom:445.638667pt;}
.y113{bottom:446.226133pt;}
.y117{bottom:451.534933pt;}
.y52{bottom:451.680000pt;}
.ybe{bottom:452.887467pt;}
.yc2{bottom:453.634333pt;}
.yc1{bottom:453.842867pt;}
.y116{bottom:453.929600pt;}
.y1a7{bottom:458.376000pt;}
.y76{bottom:461.005333pt;}
.y21{bottom:463.652000pt;}
.ybd{bottom:465.307667pt;}
.y14e{bottom:466.005333pt;}
.yc0{bottom:466.324267pt;}
.y51{bottom:469.692000pt;}
.y174{bottom:470.941333pt;}
.y1a6{bottom:475.592000pt;}
.y112{bottom:477.753333pt;}
.y14d{bottom:478.624000pt;}
.y75{bottom:479.017333pt;}
.y20{bottom:481.664000pt;}
.ybc{bottom:484.456467pt;}
.y50{bottom:487.704000pt;}
.y173{bottom:492.420000pt;}
.y1a5{bottom:492.806667pt;}
.ybb{bottom:496.875533pt;}
.y98{bottom:497.030667pt;}
.y14c{bottom:498.232000pt;}
.y1f{bottom:499.676000pt;}
.yb7{bottom:502.339333pt;}
.y74{bottom:505.000000pt;}
.y4f{bottom:505.717333pt;}
.y172{bottom:505.929333pt;}
.yba{bottom:509.295733pt;}
.yb9{bottom:509.504267pt;}
.y1a4{bottom:510.022667pt;}
.y111{bottom:510.741333pt;}
.yb6{bottom:514.759533pt;}
.y97{bottom:515.042667pt;}
.y1e{bottom:517.689333pt;}
.y14b{bottom:519.564000pt;}
.yb8{bottom:521.985667pt;}
.y4e{bottom:523.729333pt;}
.y1a3{bottom:527.237333pt;}
.y171{bottom:527.409333pt;}
.y110{bottom:528.753333pt;}
.y96{bottom:533.054667pt;}
.y1d{bottom:535.701333pt;}
.y73{bottom:535.950667pt;}
.yb5{bottom:540.117867pt;}
.y14a{bottom:540.894667pt;}
.y170{bottom:540.918667pt;}
.y4d{bottom:541.742667pt;}
.y1a2{bottom:544.453333pt;}
.y10f{bottom:546.766667pt;}
.yb4{bottom:552.807800pt;}
.y1c{bottom:553.713333pt;}
.y72{bottom:553.964000pt;}
.y149{bottom:554.041333pt;}
.y16f{bottom:554.428000pt;}
.yb0{bottom:558.811067pt;}
.y95{bottom:559.037333pt;}
.yb2{bottom:559.495600pt;}
.y4c{bottom:559.754667pt;}
.y1a1{bottom:561.669333pt;}
.y10e{bottom:564.778667pt;}
.yb3{bottom:565.497733pt;}
.y16e{bottom:567.937333pt;}
.y1b{bottom:571.726667pt;}
.y71{bottom:571.976000pt;}
.y4b{bottom:577.766667pt;}
.yb1{bottom:578.187667pt;}
.y1a0{bottom:578.884000pt;}
.y16d{bottom:581.446667pt;}
.y10d{bottom:582.790667pt;}
.y148{bottom:583.557333pt;}
.y1a{bottom:589.738667pt;}
.y94{bottom:589.988000pt;}
.y4a{bottom:595.780000pt;}
.y19f{bottom:596.100000pt;}
.yaf{bottom:596.319867pt;}
.y70{bottom:597.958667pt;}
.y10c{bottom:600.804000pt;}
.y147{bottom:604.889333pt;}
.y19{bottom:607.752000pt;}
.y93{bottom:608.001333pt;}
.yab{bottom:608.532667pt;}
.yae{bottom:609.009800pt;}
.yad{bottom:609.218333pt;}
.y16c{bottom:610.896000pt;}
.y19e{bottom:613.314667pt;}
.y49{bottom:613.792000pt;}
.y10b{bottom:618.816000pt;}
.yac{bottom:621.699733pt;}
.y18{bottom:625.764000pt;}
.y92{bottom:626.013333pt;}
.y146{bottom:626.221333pt;}
.y6f{bottom:628.909333pt;}
.y19d{bottom:630.530667pt;}
.y48{bottom:631.805333pt;}
.y10a{bottom:636.829333pt;}
.yaa{bottom:639.831933pt;}
.y17{bottom:643.776000pt;}
.y91{bottom:644.026667pt;}
.ya6{bottom:645.564333pt;}
.y6e{bottom:646.921333pt;}
.y145{bottom:647.552000pt;}
.y19c{bottom:647.746667pt;}
.y47{bottom:649.817333pt;}
.ya9{bottom:652.521867pt;}
.ya8{bottom:652.729267pt;}
.y143{bottom:653.246667pt;}
.y109{bottom:654.841333pt;}
.ya5{bottom:657.984533pt;}
.y16{bottom:661.789333pt;}
.y90{bottom:662.038667pt;}
.y6d{bottom:664.934667pt;}
.y19b{bottom:664.961333pt;}
.ya7{bottom:665.211800pt;}
.y46{bottom:667.829333pt;}
.y144{bottom:668.884000pt;}
.y15{bottom:679.801333pt;}
.y8f{bottom:680.050667pt;}
.y19a{bottom:682.177333pt;}
.y6c{bottom:682.946667pt;}
.ya4{bottom:683.342867pt;}
.y45{bottom:685.842667pt;}
.y108{bottom:685.953333pt;}
.ya3{bottom:689.471933pt;}
.y142{bottom:696.990667pt;}
.ya1{bottom:697.485733pt;}
.y8e{bottom:698.064000pt;}
.y199{bottom:699.392000pt;}
.y6b{bottom:700.958667pt;}
.y44{bottom:703.854667pt;}
.yd8{bottom:705.889333pt;}
.y12{bottom:711.297301pt;}
.y11{bottom:711.978667pt;}
.ya2{bottom:714.165000pt;}
.y8d{bottom:716.076000pt;}
.y198{bottom:716.608000pt;}
.y6a{bottom:718.972000pt;}
.y43{bottom:721.868000pt;}
.y141{bottom:729.014667pt;}
.y197{bottom:733.824000pt;}
.y69{bottom:736.984000pt;}
.y42{bottom:739.880000pt;}
.ya0{bottom:740.021333pt;}
.y8c{bottom:742.058667pt;}
.y10{bottom:746.650667pt;}
.y140{bottom:747.026667pt;}
.y196{bottom:751.038667pt;}
.y68{bottom:754.997333pt;}
.y41{bottom:757.892000pt;}
.yf{bottom:762.789333pt;}
.y13f{bottom:765.038667pt;}
.y195{bottom:768.254667pt;}
.y67{bottom:773.009333pt;}
.y40{bottom:775.905333pt;}
.y13e{bottom:783.052000pt;}
.ye{bottom:783.269333pt;}
.y194{bottom:785.469333pt;}
.y66{bottom:791.021333pt;}
.y3f{bottom:793.917333pt;}
.yd{bottom:795.069333pt;}
.y193{bottom:802.685333pt;}
.y65{bottom:809.034667pt;}
.y3e{bottom:811.930667pt;}
.yc{bottom:815.548000pt;}
.y192{bottom:819.901333pt;}
.y8b{bottom:827.046667pt;}
.yb{bottom:827.348000pt;}
.y3d{bottom:829.942667pt;}
.y64{bottom:835.017333pt;}
.y191{bottom:837.116000pt;}
.y13d{bottom:839.985333pt;}
.y8a{bottom:845.060000pt;}
.ya{bottom:847.826667pt;}
.y3c{bottom:847.954667pt;}
.y16b{bottom:853.029333pt;}
.y190{bottom:854.332000pt;}
.y13c{bottom:857.997333pt;}
.y89{bottom:863.072000pt;}
.y3b{bottom:865.968000pt;}
.y9{bottom:867.597333pt;}
.y18f{bottom:871.546667pt;}
.y13b{bottom:876.010667pt;}
.y9f{bottom:881.084000pt;}
.y3a{bottom:883.980000pt;}
.y8{bottom:885.609333pt;}
.y18e{bottom:888.762667pt;}
.y88{bottom:889.054667pt;}
.y13a{bottom:894.022667pt;}
.y9e{bottom:899.097333pt;}
.y39{bottom:901.993333pt;}
.y18d{bottom:905.978667pt;}
.y139{bottom:912.034667pt;}
.y9d{bottom:917.109333pt;}
.y38{bottom:920.005333pt;}
.y18c{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.y138{bottom:930.048000pt;}
.y9c{bottom:935.122667pt;}
.y37{bottom:938.017333pt;}
.y18b{bottom:940.409333pt;}
.y137{bottom:948.060000pt;}
.y6{bottom:952.217333pt;}
.y36{bottom:956.030667pt;}
.y18a{bottom:957.624000pt;}
.y9b{bottom:961.105333pt;}
.y136{bottom:966.073333pt;}
.y35{bottom:974.042667pt;}
.y189{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y34{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.h23{height:18.210161pt;}
.hb{height:22.673858pt;}
.h10{height:24.866650pt;}
.h22{height:27.659551pt;}
.h14{height:29.388273pt;}
.hd{height:29.433775pt;}
.hc{height:30.399505pt;}
.h1f{height:31.338125pt;}
.h1b{height:32.437500pt;}
.h2b{height:33.713664pt;}
.h2a{height:34.144051pt;}
.h28{height:34.574438pt;}
.h3{height:35.024664pt;}
.h13{height:35.059473pt;}
.h9{height:35.073565pt;}
.h24{height:36.076012pt;}
.h4{height:36.445809pt;}
.h12{height:37.937581pt;}
.h16{height:38.330762pt;}
.he{height:38.415786pt;}
.h5{height:38.947124pt;}
.h1a{height:39.754531pt;}
.h11{height:40.084290pt;}
.h20{height:42.656250pt;}
.h1e{height:44.835938pt;}
.ha{height:45.095014pt;}
.h2{height:45.272024pt;}
.h8{height:48.481423pt;}
.h7{height:48.486756pt;}
.h1c{height:49.917344pt;}
.hf{height:50.105236pt;}
.h15{height:55.875625pt;}
.h18{height:57.365434pt;}
.h21{height:58.473417pt;}
.h27{height:59.453078pt;}
.h26{height:59.457345pt;}
.h1d{height:59.781250pt;}
.h17{height:63.173429pt;}
.h6{height:69.148877pt;}
.h29{height:77.836348pt;}
.h25{height:82.834412pt;}
.h19{height:229.120000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w4{width:428.798667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x71{left:-83.840000pt;}
.x80{left:-77.839792pt;}
.x87{left:-69.520376pt;}
.x75{left:-65.440000pt;}
.x89{left:-60.240000pt;}
.x8f{left:-55.520000pt;}
.x81{left:-29.600160pt;}
.x82{left:-15.440448pt;}
.x8b{left:-5.359944pt;}
.x73{left:-1.040000pt;}
.x0{left:0.000000pt;}
.x74{left:8.639200pt;}
.x8a{left:23.120144pt;}
.x7{left:26.021437pt;}
.x2{left:52.456952pt;}
.xa8{left:100.054667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.606667pt;}
.x8e{left:118.000000pt;}
.x58{left:120.003733pt;}
.x67{left:121.301400pt;}
.x5c{left:124.603933pt;}
.x66{left:126.031933pt;}
.x64{left:127.505267pt;}
.x4{left:129.929333pt;}
.x97{left:134.743200pt;}
.x76{left:145.439480pt;}
.x90{left:150.822133pt;}
.x77{left:152.559768pt;}
.xb3{left:155.722667pt;}
.x15{left:157.360000pt;}
.xa6{left:160.417333pt;}
.xab{left:162.140000pt;}
.x16{left:164.001333pt;}
.x8c{left:166.800576pt;}
.x8{left:167.973333pt;}
.x17{left:170.517333pt;}
.x34{left:173.756000pt;}
.x62{left:176.084467pt;}
.x18{left:177.158667pt;}
.x2f{left:179.680000pt;}
.x6b{left:181.513133pt;}
.x70{left:182.452000pt;}
.x28{left:185.898667pt;}
.x57{left:187.392000pt;}
.x4a{left:188.558667pt;}
.x13{left:190.393333pt;}
.x26{left:192.445333pt;}
.x2b{left:195.706667pt;}
.x14{left:197.036000pt;}
.x27{left:199.086667pt;}
.x68{left:200.689133pt;}
.x4b{left:201.841333pt;}
.x78{left:203.359384pt;}
.x56{left:204.636000pt;}
.x29{left:205.956000pt;}
.x6d{left:207.437000pt;}
.x2c{left:208.990667pt;}
.x65{left:210.398400pt;}
.x2d{left:212.370667pt;}
.x99{left:213.398133pt;}
.x9f{left:215.717067pt;}
.x2a{left:219.240000pt;}
.xa0{left:221.125067pt;}
.xc1{left:223.704000pt;}
.x2e{left:225.654667pt;}
.xbd{left:226.842667pt;}
.x9e{left:227.844000pt;}
.x98{left:229.188000pt;}
.x88{left:230.719144pt;}
.xa2{left:232.600000pt;}
.xc2{left:237.545333pt;}
.x83{left:238.719360pt;}
.xa7{left:262.057333pt;}
.x84{left:263.039208pt;}
.x5d{left:272.569667pt;}
.x63{left:275.010867pt;}
.x45{left:284.582667pt;}
.x8d{left:286.560160pt;}
.x6f{left:289.494667pt;}
.xf{left:292.969333pt;}
.x37{left:294.237333pt;}
.x46{left:297.865333pt;}
.x10{left:299.610667pt;}
.x11{left:302.998667pt;}
.x9d{left:304.288800pt;}
.x6e{left:305.317333pt;}
.x38{left:307.520000pt;}
.x12{left:309.640000pt;}
.xa1{left:312.702667pt;}
.x39{left:314.294667pt;}
.xac{left:317.502667pt;}
.x7b{left:320.318520pt;}
.x7a{left:322.398640pt;}
.x79{left:324.478760pt;}
.x3a{left:327.578667pt;}
.x30{left:330.192000pt;}
.x5a{left:336.838733pt;}
.x85{left:338.879000pt;}
.x4e{left:340.488000pt;}
.x31{left:343.474667pt;}
.xa9{left:346.777333pt;}
.xb{left:352.322667pt;}
.x4f{left:353.772000pt;}
.xc{left:358.964000pt;}
.xaa{left:360.061333pt;}
.x35{left:361.816000pt;}
.x59{left:366.851667pt;}
.xa4{left:368.833333pt;}
.xa5{left:371.326667pt;}
.x36{left:375.098667pt;}
.x47{left:378.734667pt;}
.x7c{left:383.838256pt;}
.x7d{left:389.678552pt;}
.x48{left:390.796000pt;}
.x7e{left:392.158736pt;}
.x69{left:395.293800pt;}
.xad{left:397.342667pt;}
.x5e{left:398.692667pt;}
.x5b{left:406.959200pt;}
.x41{left:407.869333pt;}
.x42{left:421.152000pt;}
.x43{left:424.540000pt;}
.xaf{left:427.696000pt;}
.x72{left:429.920000pt;}
.x9a{left:433.113333pt;}
.x44{left:437.822667pt;}
.xb0{left:440.980000pt;}
.x9{left:444.697333pt;}
.x7f{left:446.879192pt;}
.x5f{left:447.955267pt;}
.xa{left:457.372000pt;}
.x4c{left:460.900000pt;}
.x86{left:462.398760pt;}
.x3d{left:465.097333pt;}
.x20{left:466.410667pt;}
.xa3{left:469.037333pt;}
.x49{left:471.194667pt;}
.x4d{left:474.184000pt;}
.x3e{left:478.381333pt;}
.x21{left:479.693333pt;}
.x22{left:482.948000pt;}
.x91{left:487.962400pt;}
.x3f{left:489.222667pt;}
.x52{left:495.130667pt;}
.x23{left:496.232000pt;}
.x9b{left:500.641867pt;}
.x40{left:502.505333pt;}
.x53{left:508.414667pt;}
.x32{left:509.950667pt;}
.x3b{left:512.306667pt;}
.x6a{left:514.824200pt;}
.x60{left:518.223067pt;}
.x33{left:523.233333pt;}
.x3c{left:525.590667pt;}
.x54{left:529.262667pt;}
.xae{left:534.484000pt;}
.x55{left:542.545333pt;}
.x92{left:547.098400pt;}
.x93{left:551.915467pt;}
.x94{left:554.277067pt;}
.xbc{left:559.138667pt;}
.xb8{left:565.714667pt;}
.x61{left:567.485667pt;}
.x24{left:575.869333pt;}
.xb1{left:580.804000pt;}
.x25{left:589.152000pt;}
.xb4{left:592.761333pt;}
.xb2{left:594.086667pt;}
.xbe{left:600.492000pt;}
.xba{left:604.028000pt;}
.x19{left:607.105333pt;}
.xd{left:608.342667pt;}
.x95{left:613.020533pt;}
.xe{left:614.984000pt;}
.xb5{left:616.672000pt;}
.x1a{left:620.388000pt;}
.x6{left:623.413317pt;}
.xbf{left:624.402667pt;}
.x9c{left:625.348000pt;}
.xbb{left:627.938667pt;}
.x96{left:632.570400pt;}
.x6c{left:634.354600pt;}
.x1b{left:636.929333pt;}
.x50{left:644.682667pt;}
.xb6{left:647.538667pt;}
.xb9{left:648.553333pt;}
.x51{left:657.966667pt;}
.x1c{left:665.932000pt;}
.xb7{left:671.449333pt;}
.x1d{left:672.574667pt;}
.x1e{left:679.082667pt;}
.x1f{left:685.725333pt;}
.xc0{left:690.150667pt;}
}




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