
    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_3438816b60bb9004e0322819.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.109000;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_eeb391f89fee911bc464139b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.926758;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_3c21d965ed4220b18a07ca45.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.927246;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_2b3b81e8d59c2a4b983fb97c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.923828;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_50f0cef46ec457c40de6631b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.144531;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_a1beb776e02d27ee92950277.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.771000;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_dce7c280641125691f18322f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722000;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_ef5e6097f6b7ab1c0232ed37.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923828;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_a1beb776e02d27ee92950277.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.771000;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_5b307fbee1762821c609ef19.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.927246;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_50f0cef46ec457c40de6631b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.144531;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_f0ba42f9fe7e4232c1d14470.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.137000;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_80645445a42cacd9ecabc400.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.107000;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_9c28c0b8f4c9e3cfd261d6ff.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.625000;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_48a42bcde6356583e5ba5a09.woff2')format("woff");}.fff{font-family:fff;line-height:0.938000;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_b0cab9d0da33e861aa2733cf.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.956000;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_f45d1fa99d5348685ac81d97.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.693000;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_3438816b60bb9004e0322819.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.109000;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_eeb391f89fee911bc464139b.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.926758;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_d6f7ff6147f8f5a87b441732.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.927246;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_f5f724a3141284a8b233479d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.923828;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_e88f4f53d120f82c51f75166.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.144531;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_a1beb776e02d27ee92950277.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.771000;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_dce7c280641125691f18322f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.722000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m2{transform:matrix(0.254527,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254527,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254527,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls52{letter-spacing:-0.438790px;}
.ls4a{letter-spacing:-0.427956px;}
.ls62{letter-spacing:-0.422790px;}
.ls7{letter-spacing:-0.422538px;}
.ls4d{letter-spacing:-0.400870px;}
.ls45{letter-spacing:-0.373784px;}
.ls3b{letter-spacing:-0.340820px;}
.ls4f{letter-spacing:-0.222104px;}
.ls54{letter-spacing:-0.195018px;}
.ls22{letter-spacing:-0.173349px;}
.ls47{letter-spacing:-0.167932px;}
.ls1e{letter-spacing:-0.162515px;}
.ls1b{letter-spacing:-0.157098px;}
.ls2e{letter-spacing:-0.151680px;}
.ls2c{letter-spacing:-0.146263px;}
.ls21{letter-spacing:-0.140846px;}
.ls28{letter-spacing:-0.135429px;}
.ls5f{letter-spacing:-0.133740px;}
.ls32{letter-spacing:-0.130012px;}
.ls12{letter-spacing:-0.124595px;}
.ls66{letter-spacing:-0.120797px;}
.ls13{letter-spacing:-0.119178px;}
.lsf{letter-spacing:-0.113760px;}
.ls5e{letter-spacing:-0.112169px;}
.ls2a{letter-spacing:-0.108343px;}
.ls2b{letter-spacing:-0.102926px;}
.ls10{letter-spacing:-0.097509px;}
.lsa{letter-spacing:-0.092092px;}
.lsc{letter-spacing:-0.086675px;}
.ls29{letter-spacing:-0.081257px;}
.ls6{letter-spacing:-0.075840px;}
.ls9{letter-spacing:-0.070423px;}
.lsd{letter-spacing:-0.065006px;}
.ls5{letter-spacing:-0.059589px;}
.ls35{letter-spacing:-0.054172px;}
.ls5b{letter-spacing:-0.051770px;}
.lse{letter-spacing:-0.048754px;}
.lsb{letter-spacing:-0.043337px;}
.ls8{letter-spacing:-0.037920px;}
.ls11{letter-spacing:-0.032503px;}
.ls1c{letter-spacing:-0.027086px;}
.ls4b{letter-spacing:-0.025885px;}
.ls20{letter-spacing:-0.016251px;}
.ls1d{letter-spacing:-0.010834px;}
.ls15{letter-spacing:-0.008628px;}
.ls1f{letter-spacing:-0.005417px;}
.ls4{letter-spacing:-0.004314px;}
.ls2{letter-spacing:0.000000px;}
.ls53{letter-spacing:0.004314px;}
.ls24{letter-spacing:0.005417px;}
.ls49{letter-spacing:0.008628px;}
.ls30{letter-spacing:0.010834px;}
.ls18{letter-spacing:0.016251px;}
.ls56{letter-spacing:0.017257px;}
.ls34{letter-spacing:0.021571px;}
.ls39{letter-spacing:0.021669px;}
.ls17{letter-spacing:0.027086px;}
.ls33{letter-spacing:0.032503px;}
.ls38{letter-spacing:0.037920px;}
.ls27{letter-spacing:0.043337px;}
.ls3d{letter-spacing:0.048754px;}
.ls25{letter-spacing:0.054172px;}
.ls2f{letter-spacing:0.059589px;}
.ls26{letter-spacing:0.065006px;}
.ls16{letter-spacing:0.070423px;}
.ls48{letter-spacing:0.081257px;}
.ls3{letter-spacing:0.086675px;}
.ls42{letter-spacing:0.092092px;}
.ls41{letter-spacing:0.097509px;}
.ls2d{letter-spacing:0.102926px;}
.ls64{letter-spacing:0.107855px;}
.ls50{letter-spacing:0.124595px;}
.ls36{letter-spacing:0.130012px;}
.ls55{letter-spacing:0.135429px;}
.ls44{letter-spacing:0.140846px;}
.ls5a{letter-spacing:0.146263px;}
.ls67{letter-spacing:0.163939px;}
.ls3e{letter-spacing:0.167932px;}
.ls4c{letter-spacing:0.184183px;}
.ls61{letter-spacing:0.198452px;}
.ls4e{letter-spacing:0.211269px;}
.ls57{letter-spacing:0.225143px;}
.ls40{letter-spacing:0.227521px;}
.ls58{letter-spacing:0.238057px;}
.ls65{letter-spacing:0.245908px;}
.ls59{letter-spacing:0.247505px;}
.ls31{letter-spacing:0.265441px;}
.ls23{letter-spacing:0.287109px;}
.ls19{letter-spacing:0.292527px;}
.ls5c{letter-spacing:0.301993px;}
.ls46{letter-spacing:0.303361px;}
.ls3a{letter-spacing:1.294701px;}
.ls1{letter-spacing:1.728913px;}
.ls51{letter-spacing:3.959944px;}
.ls37{letter-spacing:13.607906px;}
.ls3c{letter-spacing:14.301302px;}
.ls14{letter-spacing:15.039231px;}
.ls5d{letter-spacing:22.632894px;}
.ls63{letter-spacing:22.963341px;}
.ls60{letter-spacing:24.295963px;}
.ls43{letter-spacing:24.978525px;}
.ls0{letter-spacing:28.431007px;}
.ls1a{letter-spacing:89.020190px;}
.ls3f{letter-spacing:179.410922px;}
.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;}
}
.ws1e8{word-spacing:-37.692599px;}
.ws19{word-spacing:-27.032652px;}
.ws12e{word-spacing:-15.287226px;}
.ws1d2{word-spacing:-15.097625px;}
.ws18d{word-spacing:-15.059705px;}
.ws86{word-spacing:-15.032619px;}
.ws12d{word-spacing:-15.005533px;}
.ws1f{word-spacing:-14.994699px;}
.ws1b{word-spacing:-14.989282px;}
.ws12c{word-spacing:-14.983865px;}
.ws1e{word-spacing:-14.962196px;}
.wsb2{word-spacing:-14.956779px;}
.ws12f{word-spacing:-14.685921px;}
.ws20b{word-spacing:-12.665320px;}
.ws207{word-spacing:-12.659903px;}
.ws1e7{word-spacing:-12.295413px;}
.ws1ed{word-spacing:-12.239329px;}
.ws1eb{word-spacing:-12.191873px;}
.ws1ee{word-spacing:-12.157359px;}
.ws5{word-spacing:-12.000000px;}
.ws1ea{word-spacing:-11.881252px;}
.ws1e9{word-spacing:-11.859681px;}
.ws1ec{word-spacing:-11.570631px;}
.ws27{word-spacing:-8.017397px;}
.ws30{word-spacing:-5.016290px;}
.ws3{word-spacing:-4.200000px;}
.ws31{word-spacing:-1.673902px;}
.wsdd{word-spacing:-0.633808px;}
.ws174{word-spacing:-0.585053px;}
.ws200{word-spacing:-0.557967px;}
.ws1cc{word-spacing:-0.455041px;}
.ws2b{word-spacing:-0.444207px;}
.ws13f{word-spacing:-0.433373px;}
.ws13d{word-spacing:-0.427956px;}
.ws1c9{word-spacing:-0.422538px;}
.ws180{word-spacing:-0.400870px;}
.ws137{word-spacing:-0.395453px;}
.ws7e{word-spacing:-0.390036px;}
.ws1c6{word-spacing:-0.384618px;}
.ws152{word-spacing:-0.379201px;}
.ws24{word-spacing:-0.368367px;}
.ws22{word-spacing:-0.362950px;}
.wsbc{word-spacing:-0.357533px;}
.ws25{word-spacing:-0.346698px;}
.ws20a{word-spacing:-0.303361px;}
.ws8{word-spacing:-0.297944px;}
.ws160{word-spacing:-0.292527px;}
.ws9f{word-spacing:-0.276275px;}
.ws108{word-spacing:-0.265441px;}
.ws18{word-spacing:-0.254607px;}
.ws40{word-spacing:-0.249189px;}
.ws125{word-spacing:-0.243772px;}
.ws26{word-spacing:-0.232938px;}
.ws5b{word-spacing:-0.227521px;}
.ws20{word-spacing:-0.216686px;}
.ws23{word-spacing:-0.211269px;}
.ws14b{word-spacing:-0.205852px;}
.ws29{word-spacing:-0.200435px;}
.ws153{word-spacing:-0.119178px;}
.ws4a{word-spacing:-0.102926px;}
.wsb7{word-spacing:-0.097509px;}
.ws46{word-spacing:-0.092092px;}
.ws147{word-spacing:-0.081257px;}
.ws1c8{word-spacing:-0.075840px;}
.ws165{word-spacing:-0.070423px;}
.ws2c{word-spacing:-0.065006px;}
.ws189{word-spacing:-0.059589px;}
.ws2f{word-spacing:-0.054172px;}
.wsea{word-spacing:-0.048754px;}
.wsb1{word-spacing:-0.047456px;}
.ws146{word-spacing:-0.043337px;}
.ws2d{word-spacing:-0.032503px;}
.wsb6{word-spacing:-0.021669px;}
.ws21{word-spacing:-0.010834px;}
.ws14{word-spacing:-0.005417px;}
.ws1{word-spacing:0.000000px;}
.wsb9{word-spacing:0.016251px;}
.ws1bb{word-spacing:0.017257px;}
.wsb3{word-spacing:0.021571px;}
.ws7{word-spacing:0.021669px;}
.wsf{word-spacing:0.027086px;}
.ws1a{word-spacing:0.030199px;}
.ws39{word-spacing:0.032503px;}
.wsa{word-spacing:0.037920px;}
.ws85{word-spacing:0.043337px;}
.ws162{word-spacing:0.047456px;}
.ws5c{word-spacing:0.048754px;}
.wsc{word-spacing:0.054172px;}
.ws2e{word-spacing:0.059589px;}
.ws3d{word-spacing:0.065006px;}
.ws48{word-spacing:0.070423px;}
.ws87{word-spacing:0.075840px;}
.ws69{word-spacing:0.081257px;}
.ws16{word-spacing:0.086675px;}
.wsa0{word-spacing:0.092092px;}
.ws13e{word-spacing:0.097509px;}
.ws70{word-spacing:0.102926px;}
.ws5d{word-spacing:0.108343px;}
.ws1d1{word-spacing:0.113760px;}
.ws1ca{word-spacing:0.135429px;}
.ws1ce{word-spacing:0.157098px;}
.ws13b{word-spacing:0.325030px;}
.ws6{word-spacing:0.358077px;}
.ws8e{word-spacing:0.384618px;}
.ws79{word-spacing:0.390036px;}
.wsb4{word-spacing:0.525465px;}
.wsf8{word-spacing:0.590470px;}
.ws4{word-spacing:0.600000px;}
.wsf1{word-spacing:0.694583px;}
.wsa1{word-spacing:0.709648px;}
.ws9{word-spacing:0.715065px;}
.ws1ba{word-spacing:0.720482px;}
.ws55{word-spacing:0.725899px;}
.ws59{word-spacing:0.731317px;}
.wsf9{word-spacing:0.937169px;}
.ws13a{word-spacing:1.034678px;}
.ws1de{word-spacing:1.040095px;}
.ws66{word-spacing:1.045512px;}
.ws82{word-spacing:1.061763px;}
.wse5{word-spacing:1.067181px;}
.ws134{word-spacing:1.126769px;}
.ws136{word-spacing:1.153855px;}
.wse4{word-spacing:1.370541px;}
.wsf4{word-spacing:1.392210px;}
.ws155{word-spacing:1.397627px;}
.ws15f{word-spacing:1.403044px;}
.ws197{word-spacing:1.413879px;}
.ws103{word-spacing:1.468050px;}
.ws1bf{word-spacing:1.711823px;}
.ws1fb{word-spacing:1.722657px;}
.ws135{word-spacing:1.728074px;}
.ws148{word-spacing:1.733491px;}
.ws126{word-spacing:1.738908px;}
.ws11c{word-spacing:2.036852px;}
.ws94{word-spacing:2.042269px;}
.wsd2{word-spacing:2.047686px;}
.ws149{word-spacing:2.058521px;}
.ws1b7{word-spacing:2.063938px;}
.ws1f2{word-spacing:2.069355px;}
.ws95{word-spacing:2.085607px;}
.ws1f8{word-spacing:2.372716px;}
.ws1c3{word-spacing:2.383550px;}
.ws166{word-spacing:2.388968px;}
.ws13c{word-spacing:2.437722px;}
.ws58{word-spacing:2.643574px;}
.ws63{word-spacing:2.708580px;}
.ws1d4{word-spacing:2.713997px;}
.ws10a{word-spacing:2.724831px;}
.ws75{word-spacing:2.730249px;}
.ws42{word-spacing:2.936101px;}
.ws43{word-spacing:2.946935px;}
.ws1fd{word-spacing:2.979438px;}
.ws1cd{word-spacing:3.015612px;}
.ws44{word-spacing:3.044444px;}
.ws7d{word-spacing:3.055278px;}
.ws57{word-spacing:3.060695px;}
.ws129{word-spacing:3.066113px;}
.wsba{word-spacing:3.076947px;}
.ws1c4{word-spacing:3.087781px;}
.wsf0{word-spacing:3.250296px;}
.wsef{word-spacing:3.282799px;}
.ws18c{word-spacing:3.320719px;}
.ws1dd{word-spacing:3.369474px;}
.ws3e{word-spacing:3.374891px;}
.ws33{word-spacing:3.380308px;}
.wsab{word-spacing:3.391142px;}
.ws71{word-spacing:3.396559px;}
.ws1db{word-spacing:3.456148px;}
.ws1a7{word-spacing:3.564491px;}
.ws1a5{word-spacing:3.591577px;}
.ws110{word-spacing:3.640332px;}
.ws14f{word-spacing:3.710755px;}
.ws1d5{word-spacing:3.716172px;}
.ws111{word-spacing:3.727006px;}
.ws1f4{word-spacing:3.732423px;}
.ws12{word-spacing:3.743258px;}
.ws1a6{word-spacing:3.835349px;}
.ws9b{word-spacing:3.916607px;}
.ws157{word-spacing:3.927441px;}
.ws1cb{word-spacing:4.020816px;}
.ws190{word-spacing:4.030367px;}
.ws47{word-spacing:4.035784px;}
.ws4c{word-spacing:4.052036px;}
.ws18e{word-spacing:4.079121px;}
.ws18f{word-spacing:4.257888px;}
.ws9c{word-spacing:4.268722px;}
.ws158{word-spacing:4.295808px;}
.ws16d{word-spacing:4.393317px;}
.ws1b9{word-spacing:4.398734px;}
.ws191{word-spacing:4.442071px;}
.ws5f{word-spacing:4.588335px;}
.ws5e{word-spacing:4.647923px;}
.ws1d6{word-spacing:4.718346px;}
.ws1e0{word-spacing:4.740015px;}
.ws10c{word-spacing:4.756266px;}
.ws1a8{word-spacing:4.913364px;}
.ws9a{word-spacing:4.951284px;}
.ws1aa{word-spacing:4.956701px;}
.ws142{word-spacing:4.978370px;}
.wsde{word-spacing:5.048793px;}
.wsd5{word-spacing:5.054210px;}
.ws4b{word-spacing:5.059627px;}
.ws1c0{word-spacing:5.065045px;}
.ws3b{word-spacing:5.070462px;}
.ws140{word-spacing:5.270897px;}
.ws1a9{word-spacing:5.287148px;}
.ws168{word-spacing:5.292565px;}
.ws1f6{word-spacing:5.308817px;}
.ws124{word-spacing:5.379240px;}
.ws73{word-spacing:5.384657px;}
.ws167{word-spacing:5.395491px;}
.ws164{word-spacing:5.411743px;}
.wscf{word-spacing:5.417160px;}
.ws141{word-spacing:5.639264px;}
.ws169{word-spacing:5.698852px;}
.ws19d{word-spacing:5.720521px;}
.ws64{word-spacing:5.731355px;}
.ws5a{word-spacing:5.747607px;}
.ws88{word-spacing:5.753024px;}
.ws72{word-spacing:5.780110px;}
.ws1f0{word-spacing:5.942625px;}
.ws170{word-spacing:5.948042px;}
.ws1f5{word-spacing:6.045551px;}
.wsd1{word-spacing:6.056385px;}
.wsd0{word-spacing:6.088888px;}
.wse3{word-spacing:6.094305px;}
.ws17c{word-spacing:6.099722px;}
.ws1cf{word-spacing:6.121391px;}
.ws1f1{word-spacing:6.294740px;}
.ws16f{word-spacing:6.300157px;}
.wsa2{word-spacing:6.365163px;}
.ws9d{word-spacing:6.397666px;}
.ws175{word-spacing:6.403083px;}
.ws45{word-spacing:6.625187px;}
.ws34{word-spacing:6.711861px;}
.ws83{word-spacing:6.717278px;}
.wsd9{word-spacing:6.722696px;}
.ws1e4{word-spacing:6.738947px;}
.ws1ff{word-spacing:6.787701px;}
.wsd8{word-spacing:7.047725px;}
.ws196{word-spacing:7.063977px;}
.ws138{word-spacing:7.367338px;}
.ws16e{word-spacing:7.372755px;}
.ws139{word-spacing:7.378172px;}
.ws20f{word-spacing:7.394423px;}
.ws1fc{word-spacing:7.714036px;}
.ws19c{word-spacing:7.730287px;}
.wscc{word-spacing:7.735704px;}
.ws1a2{word-spacing:7.751956px;}
.ws7a{word-spacing:7.768207px;}
.ws113{word-spacing:8.039065px;}
.ws15a{word-spacing:8.044483px;}
.ws4e{word-spacing:8.049900px;}
.ws19b{word-spacing:8.055317px;}
.wsc2{word-spacing:8.060734px;}
.ws1e2{word-spacing:8.071568px;}
.ws1c7{word-spacing:8.076986px;}
.ws159{word-spacing:8.087820px;}
.wsc1{word-spacing:8.093237px;}
.ws20e{word-spacing:8.152826px;}
.ws20d{word-spacing:8.339310px;}
.wsa6{word-spacing:8.369512px;}
.ws102{word-spacing:8.380347px;}
.ws1d8{word-spacing:8.385764px;}
.ws93{word-spacing:8.391181px;}
.ws6a{word-spacing:8.396598px;}
.ws122{word-spacing:8.423684px;}
.ws11f{word-spacing:8.727045px;}
.ws118{word-spacing:9.046657px;}
.wse9{word-spacing:9.057492px;}
.ws90{word-spacing:9.062909px;}
.wse2{word-spacing:9.117080px;}
.ws15d{word-spacing:9.312098px;}
.ws182{word-spacing:9.382521px;}
.wse1{word-spacing:9.387938px;}
.ws130{word-spacing:9.393355px;}
.wsfa{word-spacing:9.398773px;}
.wsf2{word-spacing:9.404190px;}
.wsda{word-spacing:9.409607px;}
.ws98{word-spacing:9.626293px;}
.ws36{word-spacing:9.712968px;}
.ws163{word-spacing:9.718385px;}
.ws173{word-spacing:9.788808px;}
.ws12a{word-spacing:10.054249px;}
.wse8{word-spacing:10.059666px;}
.ws15e{word-spacing:10.065083px;}
.ws60{word-spacing:10.070500px;}
.ws1e6{word-spacing:10.135506px;}
.ws1bd{word-spacing:10.373861px;}
.wsa3{word-spacing:10.395530px;}
.ws10d{word-spacing:10.406364px;}
.ws104{word-spacing:10.606799px;}
.wsed{word-spacing:10.639302px;}
.ws105{word-spacing:10.644719px;}
.ws201{word-spacing:10.677596px;}
.wsbf{word-spacing:10.704308px;}
.ws11b{word-spacing:10.720560px;}
.ws202{word-spacing:10.731394px;}
.ws14a{word-spacing:10.753063px;}
.ws123{word-spacing:10.763897px;}
.ws20c{word-spacing:10.780148px;}
.wse0{word-spacing:11.051006px;}
.wsee{word-spacing:11.061841px;}
.ws35{word-spacing:11.386870px;}
.wsc3{word-spacing:11.424790px;}
.wsa5{word-spacing:11.446459px;}
.ws1b8{word-spacing:11.511465px;}
.ws161{word-spacing:11.687114px;}
.ws206{word-spacing:11.717317px;}
.ws14c{word-spacing:11.722734px;}
.ws119{word-spacing:11.733569px;}
.ws143{word-spacing:11.738986px;}
.ws19a{word-spacing:11.749820px;}
.ws209{word-spacing:11.939421px;}
.ws208{word-spacing:12.036930px;}
.ws1f7{word-spacing:12.085684px;}
.ws1b6{word-spacing:12.269867px;}
.ws144{word-spacing:12.378211px;}
.ws97{word-spacing:12.383628px;}
.wseb{word-spacing:12.394462px;}
.wsf5{word-spacing:12.399879px;}
.wsa7{word-spacing:12.416131px;}
.ws1be{word-spacing:12.432382px;}
.ws8c{word-spacing:12.573228px;}
.ws1b5{word-spacing:12.605731px;}
.ws112{word-spacing:12.714075px;}
.wsd3{word-spacing:12.719492px;}
.ws156{word-spacing:12.724909px;}
.ws1a1{word-spacing:12.730326px;}
.ws128{word-spacing:12.735743px;}
.ws10e{word-spacing:12.741160px;}
.ws54{word-spacing:12.773663px;}
.wsd4{word-spacing:12.806166px;}
.wsbb{word-spacing:12.984933px;}
.ws10b{word-spacing:13.044521px;}
.ws81{word-spacing:13.060773px;}
.ws192{word-spacing:13.093276px;}
.ws8d{word-spacing:13.239539px;}
.ws8b{word-spacing:13.304545px;}
.ws32{word-spacing:13.380385px;}
.ws1a0{word-spacing:13.645826px;}
.ws204{word-spacing:13.705415px;}
.ws1e5{word-spacing:13.721666px;}
.ws38{word-spacing:13.727083px;}
.ws100{word-spacing:13.737918px;}
.ws1e3{word-spacing:13.754169px;}
.ws99{word-spacing:14.052113px;}
.ws7b{word-spacing:14.068365px;}
.ws11a{word-spacing:14.095450px;}
.ws205{word-spacing:14.122536px;}
.ws199{word-spacing:14.252548px;}
.ws198{word-spacing:14.268799px;}
.ws1fe{word-spacing:14.377143px;}
.wsf7{word-spacing:14.387977px;}
.ws115{word-spacing:14.415063px;}
.ws8a{word-spacing:14.420480px;}
.ws117{word-spacing:14.431314px;}
.ws116{word-spacing:14.442149px;}
.wsd6{word-spacing:14.626332px;}
.wsd7{word-spacing:14.637166px;}
.ws1a4{word-spacing:14.718424px;}
.ws109{word-spacing:14.734675px;}
.ws17b{word-spacing:14.740092px;}
.ws17d{word-spacing:14.837601px;}
.wsc7{word-spacing:14.908024px;}
.ws92{word-spacing:15.048870px;}
.ws89{word-spacing:15.054288px;}
.wscd{word-spacing:15.059705px;}
.ws1d7{word-spacing:15.065122px;}
.ws1fa{word-spacing:15.249305px;}
.wsc8{word-spacing:15.319728px;}
.ws61{word-spacing:15.384734px;}
.ws4d{word-spacing:15.400986px;}
.ws101{word-spacing:15.422655px;}
.ws74{word-spacing:15.428072px;}
.ws172{word-spacing:15.476826px;}
.ws1f9{word-spacing:15.612255px;}
.ws1dc{word-spacing:15.742267px;}
.ws171{word-spacing:15.931868px;}
.ws8f{word-spacing:15.958953px;}
.ws150{word-spacing:16.056462px;}
.ws76{word-spacing:16.061879px;}
.ws1d3{word-spacing:16.078131px;}
.ws195{word-spacing:16.088965px;}
.ws6e{word-spacing:16.397743px;}
.ws53{word-spacing:16.403160px;}
.wse7{word-spacing:16.733607px;}
.wse6{word-spacing:16.749859px;}
.ws2{word-spacing:16.860000px;}
.ws1f3{word-spacing:17.047803px;}
.ws7f{word-spacing:17.064054px;}
.ws177{word-spacing:17.096557px;}
.wsaf{word-spacing:17.399918px;}
.ws1ae{word-spacing:17.410752px;}
.ws176{word-spacing:17.416169px;}
.ws120{word-spacing:17.719530px;}
.wsc6{word-spacing:17.762868px;}
.ws194{word-spacing:17.919965px;}
.wsdb{word-spacing:17.930800px;}
.ws127{word-spacing:18.049977px;}
.wsdc{word-spacing:18.087897px;}
.ws193{word-spacing:18.093314px;}
.ws1da{word-spacing:18.407510px;}
.ws1e1{word-spacing:18.418344px;}
.ws17f{word-spacing:18.423761px;}
.wsf6{word-spacing:18.727122px;}
.ws1ef{word-spacing:18.954643px;}
.ws91{word-spacing:19.073820px;}
.ws1d9{word-spacing:19.079238px;}
.wsc5{word-spacing:19.404267px;}
.ws6f{word-spacing:19.723880px;}
.ws1ac{word-spacing:19.729297px;}
.ws1ab{word-spacing:19.745548px;}
.ws1ad{word-spacing:20.005572px;}
.wsc9{word-spacing:20.097664px;}
.ws6c{word-spacing:21.078170px;}
.wsae{word-spacing:21.278604px;}
.ws7c{word-spacing:21.370696px;}
.wsa9{word-spacing:21.397782px;}
.ws67{word-spacing:22.242859px;}
.ws68{word-spacing:22.307865px;}
.wsb5{word-spacing:22.389122px;}
.wsf3{word-spacing:22.399957px;}
.ws106{word-spacing:22.410791px;}
.ws107{word-spacing:22.427042px;}
.wse{word-spacing:22.724986px;}
.wsbe{word-spacing:22.974176px;}
.wsbd{word-spacing:23.304622px;}
.ws10f{word-spacing:23.423800px;}
.wsb8{word-spacing:23.716326px;}
.ws1c2{word-spacing:23.727161px;}
.wsaa{word-spacing:23.759664px;}
.wsff{word-spacing:24.263460px;}
.wsfe{word-spacing:24.301380px;}
.ws62{word-spacing:24.382637px;}
.ws96{word-spacing:24.398889px;}
.ws114{word-spacing:24.415140px;}
.ws17a{word-spacing:24.745587px;}
.ws133{word-spacing:24.929770px;}
.ws0{word-spacing:25.037216px;}
.ws1c5{word-spacing:25.076034px;}
.ws1b3{word-spacing:25.081451px;}
.ws131{word-spacing:25.216880px;}
.ws132{word-spacing:25.401063px;}
.ws12b{word-spacing:25.428149px;}
.wsa8{word-spacing:25.433566px;}
.ws1a3{word-spacing:25.736927px;}
.wsc0{word-spacing:25.742344px;}
.ws80{word-spacing:25.747761px;}
.ws4f{word-spacing:25.753179px;}
.ws84{word-spacing:25.769430px;}
.ws11e{word-spacing:26.386986px;}
.ws145{word-spacing:26.397821px;}
.ws17e{word-spacing:26.408655px;}
.ws1d0{word-spacing:26.424906px;}
.ws56{word-spacing:26.430324px;}
.ws121{word-spacing:26.760770px;}
.wsfc{word-spacing:26.917868px;}
.ws78{word-spacing:27.074966px;}
.ws154{word-spacing:27.080383px;}
.wscb{word-spacing:27.183309px;}
.ws187{word-spacing:27.280818px;}
.ws188{word-spacing:27.291652px;}
.wsfb{word-spacing:27.307904px;}
.ws3f{word-spacing:27.725025px;}
.ws1c1{word-spacing:28.396753px;}
.ws6b{word-spacing:29.052229px;}
.ws19f{word-spacing:29.258081px;}
.ws3c{word-spacing:29.404344px;}
.wsec{word-spacing:29.420596px;}
.ws19e{word-spacing:29.436847px;}
.ws37{word-spacing:29.631865px;}
.ws203{word-spacing:30.076072px;}
.wsfd{word-spacing:30.390268px;}
.ws65{word-spacing:30.433605px;}
.ws18a{word-spacing:30.715297px;}
.wsdf{word-spacing:30.731549px;}
.ws18b{word-spacing:30.747800px;}
.ws14e{word-spacing:30.758634px;}
.ws14d{word-spacing:31.311185px;}
.ws16c{word-spacing:32.102090px;}
.wsca{word-spacing:32.248353px;}
.ws1b4{word-spacing:32.405451px;}
.ws151{word-spacing:33.066345px;}
.wsc4{word-spacing:33.429294px;}
.ws49{word-spacing:34.328543px;}
.wsa4{word-spacing:34.756499px;}
.ws16a{word-spacing:35.422809px;}
.wsad{word-spacing:35.471564px;}
.ws16b{word-spacing:35.590741px;}
.ws9e{word-spacing:35.764090px;}
.ws179{word-spacing:35.953691px;}
.ws178{word-spacing:35.959108px;}
.ws77{word-spacing:36.414150px;}
.wsb0{word-spacing:36.739179px;}
.ws11{word-spacing:36.896277px;}
.ws6d{word-spacing:37.335067px;}
.ws15c{word-spacing:37.725102px;}
.ws11d{word-spacing:38.423916px;}
.ws1bc{word-spacing:40.417431px;}
.ws3a{word-spacing:43.748984px;}
.ws1df{word-spacing:44.074014px;}
.ws15b{word-spacing:46.728422px;}
.ws50{word-spacing:47.654757px;}
.ws51{word-spacing:48.006872px;}
.ws52{word-spacing:48.131467px;}
.ws41{word-spacing:49.442419px;}
.wsac{word-spacing:52.075159px;}
.ws183{word-spacing:57.394810px;}
.ws184{word-spacing:57.411062px;}
.ws186{word-spacing:57.421896px;}
.ws1b0{word-spacing:57.427313px;}
.ws1b2{word-spacing:57.443565px;}
.ws1b1{word-spacing:57.454399px;}
.ws185{word-spacing:57.486902px;}
.ws181{word-spacing:57.551908px;}
.ws1af{word-spacing:57.730674px;}
.ws2a{word-spacing:61.674367px;}
.ws28{word-spacing:61.685201px;}
.ws1c{word-spacing:89.198957px;}
.ws1d{word-spacing:92.405915px;}
.ws17{word-spacing:176.783599px;}
.wsce{word-spacing:179.378419px;}
.wsd{word-spacing:179.454259px;}
.ws10{word-spacing:179.459676px;}
.wsb{word-spacing:179.481345px;}
.ws15{word-spacing:179.486762px;}
.ws13{word-spacing:179.508431px;}
._4{margin-left:-179.150898px;}
._9{margin-left:-177.206138px;}
._5{margin-left:-156.436746px;}
._7{margin-left:-142.427971px;}
._18{margin-left:-72.844761px;}
._15{margin-left:-70.965006px;}
._11{margin-left:-68.872127px;}
._10{margin-left:-62.053568px;}
._3f{margin-left:-57.248547px;}
._38{margin-left:-24.675584px;}
._43{margin-left:-22.608732px;}
._a{margin-left:-16.466742px;}
._37{margin-left:-14.227169px;}
._d{margin-left:-10.881219px;}
._b{margin-left:-8.210770px;}
._35{margin-left:-6.921065px;}
._0{margin-left:-5.007965px;}
._2{margin-left:-3.312000px;}
._3{margin-left:-1.392000px;}
._1{width:1.152000px;}
._3c{width:2.762121px;}
._36{width:4.079121px;}
._1c{width:7.768207px;}
._42{width:10.901378px;}
._2c{width:13.645406px;}
._2b{width:15.021975px;}
._40{width:21.403347px;}
._1f{width:22.773741px;}
._12{width:27.351241px;}
._20{width:41.787972px;}
._39{width:43.028502px;}
._17{width:47.389106px;}
._23{width:48.792360px;}
._1d{width:50.460845px;}
._1e{width:53.131505px;}
._21{width:54.464127px;}
._22{width:56.132612px;}
._3d{width:57.465233px;}
._f{width:61.706870px;}
._c{width:89.058110px;}
._1b{width:91.322483px;}
._1a{width:94.540276px;}
._e{width:97.068383px;}
._19{width:106.026291px;}
._14{width:114.740866px;}
._2d{width:120.840378px;}
._2a{width:127.417020px;}
._41{width:133.791311px;}
._3b{width:138.094243px;}
._24{width:142.092107px;}
._2f{width:146.095388px;}
._32{width:147.097563px;}
._33{width:152.097601px;}
._3a{width:153.435640px;}
._31{width:155.104125px;}
._30{width:160.104164px;}
._26{width:162.438960px;}
._28{width:164.443309px;}
._27{width:166.111794px;}
._2e{width:168.110726px;}
._29{width:169.779212px;}
._25{width:171.778144px;}
._3e{width:173.116182px;}
._34{width:174.448803px;}
._8{width:175.781425px;}
._13{width:177.119463px;}
._6{width:179.448842px;}
._16{width:330.219239px;}
.fc5{color:rgb(67,64,65);}
.fc4{color:rgb(145,143,143);}
.fc3{color:transparent;}
.fc6{color:rgb(53,49,50);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(93,86,65);}
.fs8{font-size:43.141800px;}
.fs7{font-size:48.000000px;}
.fs9{font-size:54.171600px;}
.fs1{font-size:60.000000px;}
.fs6{font-size:64.033800px;}
.fs0{font-size:67.675200px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:90.000000px;}
.fs5{font-size:144.000000px;}
.fs4{font-size:162.000000px;}
.y0{bottom:0.000000px;}
.y6{bottom:56.826150px;}
.y2a{bottom:69.895950px;}
.ye2{bottom:93.905183px;}
.y111{bottom:95.999137px;}
.y1a3{bottom:98.582508px;}
.y203{bottom:98.902311px;}
.ye{bottom:99.141450px;}
.y131{bottom:101.419839px;}
.y17b{bottom:104.252021px;}
.y1ca{bottom:104.670911px;}
.y220{bottom:106.086472px;}
.ye1{bottom:109.498478px;}
.y110{bottom:111.592432px;}
.y1a2{bottom:114.174449px;}
.y202{bottom:114.494252px;}
.y130{bottom:116.931877px;}
.y17a{bottom:119.762705px;}
.y1c9{bottom:120.264206px;}
.y21f{bottom:121.679767px;}
.ye0{bottom:125.009161px;}
.y10f{bottom:127.103115px;}
.y1a1{bottom:129.767744px;}
.y201{bottom:130.087547px;}
.y83{bottom:131.187660px;}
.y12f{bottom:132.523817px;}
.yb1{bottom:133.691927px;}
.y179{bottom:135.356000px;}
.y1c8{bottom:135.774890px;}
.y21e{bottom:137.190322px;}
.ydf{bottom:140.686422px;}
.y10e{bottom:142.696410px;}
.y1a0{bottom:145.278427px;}
.y200{bottom:145.598230px;}
.y82{bottom:146.779601px;}
.y16b{bottom:147.528718px;}
.y12e{bottom:148.034501px;}
.yb0{bottom:149.202611px;}
.y1d5{bottom:151.199242px;}
.y1c7{bottom:151.368185px;}
.y21d{bottom:152.701005px;}
.y2{bottom:154.020900px;}
.yde{bottom:156.279717px;}
.y10d{bottom:158.289705px;}
.y1ff{bottom:161.110268px;}
.y81{bottom:162.371541px;}
.y16a{bottom:163.039402px;}
.y12d{bottom:163.545184px;}
.yaf{bottom:164.713294px;}
.y178{bottom:166.376012px;}
.y1d4{bottom:166.709926px;}
.y1c6{bottom:166.878868px;}
.y21c{bottom:168.293383px;}
.ydd{bottom:171.790401px;}
.y10c{bottom:173.966966px;}
.y1{bottom:174.323400px;}
.y19f{bottom:176.382405px;}
.y1fe{bottom:176.702209px;}
.y169{bottom:178.550085px;}
.y80{bottom:178.717822px;}
.y12c{bottom:179.138479px;}
.yae{bottom:180.306589px;}
.y177{bottom:181.888050px;}
.y1d3{bottom:182.303221px;}
.y1c5{bottom:182.390906px;}
.y21b{bottom:183.804067px;}
.ydc{bottom:187.217118px;}
.y10b{bottom:189.392330px;}
.y1fd{bottom:192.214246px;}
.y168{bottom:194.060769px;}
.y12b{bottom:194.649162px;}
.yad{bottom:195.899884px;}
.y1d2{bottom:197.813904px;}
.y1c4{bottom:197.982846px;}
.y21a{bottom:199.314260px;}
.y1b4{bottom:200.981729px;}
.ydb{bottom:202.810413px;}
.y10a{bottom:204.904367px;}
.y1fc{bottom:207.724930px;}
.y16{bottom:208.704450px;}
.y167{bottom:209.654064px;}
.y7f{bottom:209.821800px;}
.y12a{bottom:210.242458px;}
.yac{bottom:211.326601px;}
.y1d1{bottom:213.407199px;}
.y1c3{bottom:213.576141px;}
.y219{bottom:214.907555px;}
.y1b3{bottom:216.492412px;}
.yda{bottom:218.402354px;}
.y109{bottom:220.496308px;}
.y15{bottom:222.204450px;}
.y19e{bottom:222.995713px;}
.y129{bottom:225.753141px;}
.y166{bottom:226.081601px;}
.yab{bottom:226.918542px;}
.y176{bottom:228.083812px;}
.y1c2{bottom:229.002859px;}
.y218{bottom:230.418238px;}
.y1b2{bottom:232.003096px;}
.yd9{bottom:233.914392px;}
.y108{bottom:236.174923px;}
.y19d{bottom:238.507751px;}
.y1fb{bottom:238.828908px;}
.y175{bottom:240.508650px;}
.y128{bottom:241.263824px;}
.yaa{bottom:242.430580px;}
.y165{bottom:242.593105px;}
.y29{bottom:243.008400px;}
.y7e{bottom:244.182720px;}
.y1d0{bottom:244.344600px;}
.y1c1{bottom:244.594800px;}
.y217{bottom:246.011533px;}
.y1b1{bottom:247.596391px;}
.yd8{bottom:249.425075px;}
.y107{bottom:251.766864px;}
.y19c{bottom:254.099691px;}
.y14{bottom:254.305200px;}
.y28{bottom:256.508400px;}
.y127{bottom:256.857119px;}
.ya9{bottom:257.941263px;}
.y164{bottom:259.020643px;}
.y216{bottom:261.522217px;}
.y1b0{bottom:263.108429px;}
.yd7{bottom:265.018370px;}
.y106{bottom:267.360159px;}
.y19b{bottom:269.611729px;}
.y126{bottom:272.449060px;}
.ya8{bottom:273.534558px;}
.y163{bottom:274.531326px;}
.y1c0{bottom:275.533555px;}
.y13{bottom:275.905200px;}
.y215{bottom:277.032900px;}
.y1af{bottom:278.620466px;}
.yd6{bottom:280.529053px;}
.y105{bottom:282.786877px;}
.y27{bottom:283.508400px;}
.y1fa{bottom:285.442216px;}
.y19a{bottom:286.123233px;}
.y125{bottom:287.875777px;}
.ya7{bottom:289.045242px;}
.y162{bottom:290.124621px;}
.y1cf{bottom:290.541712px;}
.y7d{bottom:290.963960px;}
.y1ae{bottom:294.212407px;}
.yd5{bottom:296.122348px;}
.y26{bottom:297.008400px;}
.y104{bottom:298.546749px;}
.y1f9{bottom:301.035511px;}
.y199{bottom:302.550770px;}
.y1ce{bottom:302.966550px;}
.y124{bottom:303.469073px;}
.ya6{bottom:304.637182px;}
.y161{bottom:305.635305px;}
.y7c{bottom:306.474643px;}
.y1ad{bottom:309.723090px;}
.y25{bottom:310.508400px;}
.y214{bottom:311.308964px;}
.yd4{bottom:311.633032px;}
.y103{bottom:313.973467px;}
.y1f8{bottom:316.546194px;}
.ya{bottom:318.320100px;}
.y198{bottom:318.978308px;}
.y123{bottom:319.062368px;}
.y12{bottom:319.105200px;}
.ya5{bottom:320.149220px;}
.y160{bottom:321.147342px;}
.y7b{bottom:322.067938px;}
.y1bf{bottom:322.314794px;}
.y24{bottom:324.008400px;}
.y1ac{bottom:325.316385px;}
.yd3{bottom:327.143715px;}
.y102{bottom:329.484150px;}
.y1f7{bottom:332.056877px;}
.y122{bottom:334.489085px;}
.y197{bottom:335.405846px;}
.ya4{bottom:335.659903px;}
.y9{bottom:336.320100px;}
.y15f{bottom:336.739283px;}
.y23{bottom:337.508400px;}
.y7a{bottom:337.578622px;}
.y1be{bottom:337.825477px;}
.y1ab{bottom:341.743923px;}
.yd2{bottom:342.737010px;}
.y1f6{bottom:347.650173px;}
.y121{bottom:350.081026px;}
.y196{bottom:350.999141px;}
.y22{bottom:351.008400px;}
.ya3{bottom:351.253198px;}
.y79{bottom:353.089305px;}
.y1bd{bottom:353.336161px;}
.y8{bottom:354.320100px;}
.y1aa{bottom:358.171461px;}
.y213{bottom:358.172815px;}
.yd1{bottom:358.247694px;}
.y151{bottom:361.005990px;}
.y101{bottom:363.836456px;}
.y1f5{bottom:364.161676px;}
.y120{bottom:365.674321px;}
.ya2{bottom:366.845139px;}
.y195{bottom:367.426679px;}
.y15e{bottom:367.676684px;}
.y78{bottom:368.682600px;}
.y1bc{bottom:368.929456px;}
.yd0{bottom:373.758377px;}
.y212{bottom:374.600353px;}
.y1a9{bottom:374.682964px;}
.y150{bottom:376.516673px;}
.y21{bottom:378.008400px;}
.y1f4{bottom:379.754971px;}
.y11f{bottom:381.185004px;}
.ya1{bottom:382.271857px;}
.y15d{bottom:383.269979px;}
.y194{bottom:383.938182px;}
.y77{bottom:384.275895px;}
.y1bb{bottom:384.522751px;}
.ycf{bottom:389.351672px;}
.y211{bottom:391.027890px;}
.y1a8{bottom:391.110502px;}
.y20{bottom:391.508400px;}
.y14f{bottom:392.109968px;}
.y1f3{bottom:395.265655px;}
.y11e{bottom:396.695688px;}
.ya0{bottom:397.865152px;}
.y76{bottom:399.702613px;}
.y1ba{bottom:399.948114px;}
.y193{bottom:400.365720px;}
.y1f{bottom:405.008400px;}
.y14e{bottom:407.620652px;}
.y1a7{bottom:407.623360px;}
.y100{bottom:410.616341px;}
.y1f2{bottom:410.858950px;}
.y9f{bottom:413.458447px;}
.y15c{bottom:414.373957px;}
.y75{bottom:415.213296px;}
.y1b9{bottom:415.541409px;}
.y192{bottom:416.877224px;}
.y1e{bottom:418.508400px;}
.yce{bottom:420.289073px;}
.y210{bottom:422.131869px;}
.y1a6{bottom:423.050078px;}
.y14d{bottom:423.131335px;}
.yff{bottom:426.128379px;}
.y1f1{bottom:426.369633px;}
.y11d{bottom:427.715700px;}
.y9e{bottom:428.883810px;}
.y15b{bottom:429.967252px;}
.y1b8{bottom:431.134704px;}
.y74{bottom:431.724800px;}
.y191{bottom:433.220795px;}
.y14c{bottom:438.724630px;}
.y1a5{bottom:438.808596px;}
.yfe{bottom:441.640416px;}
.y1f0{bottom:441.880316px;}
.y9d{bottom:444.477105px;}
.y15a{bottom:445.559193px;}
.y1b7{bottom:446.561422px;}
.y73{bottom:447.235483px;}
.y53{bottom:447.728967px;}
.y190{bottom:449.648333px;}
.y20f{bottom:453.235847px;}
.y14b{bottom:454.235313px;}
.yfd{bottom:457.233711px;}
.y9c{bottom:460.070400px;}
.y159{bottom:461.069876px;}
.y72{bottom:462.746166px;}
.y18f{bottom:466.159837px;}
.ycd{bottom:467.070312px;}
.y20e{bottom:468.746531px;}
.y14a{bottom:469.828608px;}
.y11c{bottom:470.744100px;}
.yfc{bottom:472.827006px;}
.y1ef{bottom:472.984295px;}
.y158{bottom:476.580560px;}
.y1b6{bottom:477.665400px;}
.y71{bottom:478.339461px;}
.y52{bottom:478.832945px;}
.y18e{bottom:481.753132px;}
.ycc{bottom:482.580996px;}
.y20d{bottom:484.339826px;}
.y149{bottom:485.255326px;}
.y1d{bottom:486.008400px;}
.yfb{bottom:488.253724px;}
.y157{bottom:492.173855px;}
.y70{bottom:493.850145px;}
.y9b{bottom:494.343004px;}
.y18d{bottom:497.179849px;}
.y10{bottom:497.558250px;}
.ycb{bottom:498.093033px;}
.y1c{bottom:499.508400px;}
.y20c{bottom:499.850509px;}
.y148{bottom:500.847267px;}
.yfa{bottom:503.845665px;}
.y1ee{bottom:504.005662px;}
.y156{bottom:507.684538px;}
.y6f{bottom:509.360828px;}
.y51{bottom:509.936923px;}
.y18c{bottom:512.771790px;}
.y1b{bottom:513.008400px;}
.yca{bottom:513.684974px;}
.y20b{bottom:515.361192px;}
.y1a4{bottom:516.359304px;}
.y147{bottom:516.440562px;}
.yd{bottom:518.248950px;}
.yf9{bottom:519.438960px;}
.y155{bottom:523.195222px;}
.y1b5{bottom:523.779150px;}
.y6e{bottom:524.954123px;}
.y1a{bottom:526.508400px;}
.y18b{bottom:528.365085px;}
.yc9{bottom:529.197012px;}
.y20a{bottom:530.954488px;}
.y146{bottom:531.951245px;}
.yf8{bottom:534.950997px;}
.y1ed{bottom:535.024320px;}
.y154{bottom:538.705905px;}
.y19{bottom:540.008400px;}
.y6d{bottom:540.546064px;}
.yf{bottom:540.758250px;}
.y50{bottom:540.956936px;}
.y9a{bottom:541.040278px;}
.y18a{bottom:543.875768px;}
.yc8{bottom:544.707695px;}
.y209{bottom:546.547783px;}
.y145{bottom:547.461928px;}
.yf7{bottom:550.463035px;}
.y18{bottom:553.508400px;}
.y153{bottom:554.299200px;}
.y4f{bottom:556.550231px;}
.y99{bottom:556.633573px;}
.y6c{bottom:556.892344px;}
.y189{bottom:559.387806px;}
.yc7{bottom:560.299636px;}
.yc{bottom:561.448950px;}
.y208{bottom:561.974500px;}
.y144{bottom:563.055223px;}
.yf6{bottom:566.054976px;}
.y4e{bottom:572.060914px;}
.y98{bottom:572.226868px;}
.y6b{bottom:572.485639px;}
.y188{bottom:574.898489px;}
.yc6{bottom:575.892931px;}
.y207{bottom:577.566441px;}
.y143{bottom:578.565907px;}
.yf5{bottom:581.567013px;}
.y1ec{bottom:581.806914px;}
.y152{bottom:581.817450px;}
.y4d{bottom:587.654209px;}
.y97{bottom:587.737551px;}
.y6a{bottom:588.913177px;}
.y187{bottom:590.490430px;}
.yc5{bottom:591.319648px;}
.y142{bottom:594.077944px;}
.yf4{bottom:597.244274px;}
.y1eb{bottom:597.317597px;}
.y4c{bottom:603.164893px;}
.y69{bottom:604.505118px;}
.y186{bottom:606.001114px;}
.yc4{bottom:606.911589px;}
.y206{bottom:608.670419px;}
.y141{bottom:609.669885px;}
.y1ea{bottom:612.828280px;}
.yf3{bottom:612.836215px;}
.y4b{bottom:618.675576px;}
.y96{bottom:618.841530px;}
.y68{bottom:620.848690px;}
.y17{bottom:621.012450px;}
.y185{bottom:621.511797px;}
.yc3{bottom:622.503530px;}
.y140{bottom:625.181923px;}
.yf2{bottom:628.348253px;}
.y1e9{bottom:628.421575px;}
.y4a{bottom:634.268871px;}
.y95{bottom:634.433470px;}
.y67{bottom:636.440630px;}
.y184{bottom:637.105092px;}
.yc2{bottom:638.015568px;}
.y13f{bottom:640.773864px;}
.yf1{bottom:643.858936px;}
.y1e8{bottom:644.849113px;}
.y49{bottom:649.860812px;}
.y94{bottom:650.777042px;}
.y66{bottom:652.032571px;}
.y183{bottom:652.697033px;}
.yc1{bottom:653.526251px;}
.y205{bottom:655.285081px;}
.y13e{bottom:656.285901px;}
.y174{bottom:656.287256px;}
.yf0{bottom:659.369620px;}
.y1e7{bottom:661.360617px;}
.y48{bottom:665.287529px;}
.y93{bottom:667.288546px;}
.y65{bottom:667.625866px;}
.y182{bottom:668.123750px;}
.yc0{bottom:669.119546px;}
.y204{bottom:670.797119px;}
.y3a{bottom:671.793600px;}
.y13d{bottom:671.796585px;}
.y173{bottom:671.797939px;}
.yef{bottom:674.962915px;}
.y1e6{bottom:676.871300px;}
.y47{bottom:680.880824px;}
.y92{bottom:682.800584px;}
.y181{bottom:683.717045px;}
.y64{bottom:683.968084px;}
.ybf{bottom:684.630229px;}
.y39{bottom:687.382320px;}
.y13c{bottom:687.389880px;}
.y172{bottom:687.391234px;}
.y1e5{bottom:693.298838px;}
.y1cd{bottom:696.226350px;}
.y46{bottom:696.474119px;}
.y180{bottom:699.310340px;}
.y91{bottom:699.312087px;}
.y63{bottom:699.561379px;}
.ybe{bottom:700.140913px;}
.y38{bottom:702.894358px;}
.y13b{bottom:702.981821px;}
.y171{bottom:702.983175px;}
.yee{bottom:705.982927px;}
.y1e4{bottom:708.892133px;}
.y45{bottom:711.900837px;}
.y90{bottom:714.905382px;}
.y62{bottom:715.072062px;}
.ybd{bottom:715.734208px;}
.y17f{bottom:715.737878px;}
.y13a{bottom:718.408538px;}
.y170{bottom:718.409892px;}
.y11{bottom:718.543950px;}
.yb{bottom:720.145050px;}
.y1e3{bottom:724.402816px;}
.y61{bottom:730.584100px;}
.ybc{bottom:731.244891px;}
.y8f{bottom:731.248954px;}
.y17e{bottom:732.249382px;}
.y11b{bottom:733.919221px;}
.y37{bottom:733.998336px;}
.y139{bottom:734.001833px;}
.y16f{bottom:734.003187px;}
.y1e2{bottom:739.748276px;}
.y1cc{bottom:742.340212px;}
.y44{bottom:743.088781px;}
.y60{bottom:746.176040px;}
.ybb{bottom:746.838186px;}
.y17d{bottom:748.594308px;}
.y11a{bottom:749.344584px;}
.y36{bottom:749.590277px;}
.y138{bottom:749.595128px;}
.yed{bottom:749.596482px;}
.y1e1{bottom:754.508683px;}
.y1cb{bottom:754.765050px;}
.y43{bottom:758.599465px;}
.y5f{bottom:761.769336px;}
.y8e{bottom:762.270321px;}
.yba{bottom:762.348870px;}
.y17c{bottom:764.186248px;}
.y35{bottom:765.016994px;}
.y137{bottom:765.020491px;}
.yec{bottom:765.021845px;}
.y119{bottom:765.023200px;}
.y1e0{bottom:769.269090px;}
.y42{bottom:774.111502px;}
.y5e{bottom:777.196053px;}
.yb9{bottom:777.859553px;}
.y118{bottom:780.448563px;}
.y34{bottom:780.529032px;}
.y136{bottom:780.613786px;}
.yeb{bottom:780.615140px;}
.y1df{bottom:784.029496px;}
.y41{bottom:789.623540px;}
.y5d{bottom:792.789348px;}
.yb8{bottom:793.452848px;}
.y5{bottom:795.894000px;}
.y117{bottom:796.041858px;}
.y135{bottom:796.124470px;}
.y16e{bottom:796.125824px;}
.y1de{bottom:798.789903px;}
.y40{bottom:805.215481px;}
.y5c{bottom:808.300031px;}
.yb7{bottom:808.964886px;}
.y8d{bottom:808.967594px;}
.yea{bottom:811.637861px;}
.y33{bottom:811.716976px;}
.y134{bottom:811.717765px;}
.y116{bottom:811.719119px;}
.y4{bottom:813.144000px;}
.y1dd{bottom:813.550310px;}
.y5b{bottom:823.893326px;}
.yb6{bottom:824.476923px;}
.y8c{bottom:824.479632px;}
.y115{bottom:827.145836px;}
.y32{bottom:827.227660px;}
.y133{bottom:827.228448px;}
.y16d{bottom:827.229802px;}
.y1dc{bottom:828.310716px;}
.y3{bottom:830.394000px;}
.y3f{bottom:836.236847px;}
.y5a{bottom:839.404010px;}
.yb5{bottom:840.068864px;}
.y8b{bottom:840.071573px;}
.y31{bottom:842.738343px;}
.y114{bottom:842.739131px;}
.y132{bottom:842.740486px;}
.y16c{bottom:842.741840px;}
.y1db{bottom:843.071123px;}
.y3e{bottom:851.830142px;}
.y59{bottom:854.914693px;}
.y8a{bottom:856.499110px;}
.y1da{bottom:857.831530px;}
.y113{bottom:858.249815px;}
.y30{bottom:858.331638px;}
.ye9{bottom:858.333781px;}
.y3d{bottom:867.423438px;}
.y58{bottom:870.507988px;}
.yb4{bottom:871.091585px;}
.y89{bottom:872.011148px;}
.y1d9{bottom:872.591937px;}
.y2f{bottom:873.842321px;}
.ye8{bottom:873.927076px;}
.y112{bottom:874.009687px;}
.y57{bottom:886.018672px;}
.y1d8{bottom:887.352343px;}
.y88{bottom:887.604443px;}
.ye7{bottom:889.353793px;}
.y3c{bottom:898.443450px;}
.y56{bottom:901.529355px;}
.y1d7{bottom:902.112750px;}
.y87{bottom:903.197738px;}
.ye6{bottom:904.947088px;}
.y2e{bottom:904.947654px;}
.y7{bottom:913.322250px;}
.y55{bottom:917.122650px;}
.yb3{bottom:917.788859px;}
.y86{bottom:919.541310px;}
.ye5{bottom:920.540383px;}
.y2d{bottom:920.540949px;}
.yb2{bottom:934.216396px;}
.y85{bottom:935.134605px;}
.y1d6{bottom:935.884489px;}
.y3b{bottom:935.884950px;}
.y2c{bottom:935.967667px;}
.ye4{bottom:936.051067px;}
.y84{bottom:950.727900px;}
.y54{bottom:951.394950px;}
.y2b{bottom:951.478350px;}
.ye3{bottom:951.561750px;}
.he{height:36.000000px;}
.h12{height:39.436925px;}
.hf{height:39.992449px;}
.h3{height:43.681641px;}
.h9{height:45.015761px;}
.h11{height:48.591925px;}
.h15{height:48.592439px;}
.h13{height:48.593886px;}
.h14{height:48.595592px;}
.h10{height:50.217073px;}
.h4{height:54.000000px;}
.h6{height:56.396484px;}
.h2{height:65.238893px;}
.h5{height:67.500000px;}
.hd{height:67.675781px;}
.h8{height:108.000000px;}
.h7{height:114.372000px;}
.ha{height:1020.000000px;}
.hb{height:1020.472500px;}
.hc{height:1020.750000px;}
.h17{height:1023.000000px;}
.h16{height:1023.002550px;}
.h0{height:1024.229550px;}
.h1{height:1024.500000px;}
.w3{width:722.835000px;}
.w2{width:723.000000px;}
.w0{width:729.480000px;}
.w1{width:729.750000px;}
.w5{width:744.000000px;}
.w4{width:744.224250px;}
.x2{left:-555.723000px;}
.xa{left:-32.937300px;}
.x0{left:0.000000px;}
.x3{left:59.017650px;}
.xe{left:92.120400px;}
.x4{left:116.710650px;}
.x20{left:132.347850px;}
.x24{left:135.934010px;}
.x15{left:149.515650px;}
.x6{left:152.655000px;}
.x21{left:156.697984px;}
.x25{left:160.200178px;}
.x13{left:174.649800px;}
.x14{left:177.151650px;}
.xb{left:178.789350px;}
.x16{left:179.923650px;}
.x22{left:180.964152px;}
.x27{left:187.274250px;}
.x23{left:198.724950px;}
.x1f{left:201.726900px;}
.x9{left:218.376300px;}
.x12{left:230.218950px;}
.x19{left:245.515650px;}
.xd{left:258.173250px;}
.xf{left:267.242400px;}
.x5{left:276.019350px;}
.x1c{left:282.811650px;}
.x1b{left:288.475650px;}
.x11{left:295.750950px;}
.x1d{left:299.359650px;}
.x7{left:301.228950px;}
.x1{left:305.051850px;}
.x10{left:308.630550px;}
.x18{left:336.235650px;}
.x1e{left:339.679650px;}
.x17{left:341.779650px;}
.x1a{left:347.767650px;}
.xc{left:463.619700px;}
.x8{left:505.036650px;}
.x2f{left:710.059950px;}
.x28{left:802.014900px;}
.x29{left:859.707900px;}
.x2b{left:895.652250px;}
.x2e{left:961.373550px;}
.x2a{left:1019.016600px;}
.x2c{left:1044.226200px;}
.x26{left:1048.049100px;}
.x2d{left:1248.033900px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls52{letter-spacing:-0.390036pt;}
.ls4a{letter-spacing:-0.380405pt;}
.ls62{letter-spacing:-0.375813pt;}
.ls7{letter-spacing:-0.375590pt;}
.ls4d{letter-spacing:-0.356329pt;}
.ls45{letter-spacing:-0.332252pt;}
.ls3b{letter-spacing:-0.302951pt;}
.ls4f{letter-spacing:-0.197425pt;}
.ls54{letter-spacing:-0.173349pt;}
.ls22{letter-spacing:-0.154088pt;}
.ls47{letter-spacing:-0.149273pt;}
.ls1e{letter-spacing:-0.144458pt;}
.ls1b{letter-spacing:-0.139642pt;}
.ls2e{letter-spacing:-0.134827pt;}
.ls2c{letter-spacing:-0.130012pt;}
.ls21{letter-spacing:-0.125197pt;}
.ls28{letter-spacing:-0.120381pt;}
.ls5f{letter-spacing:-0.118880pt;}
.ls32{letter-spacing:-0.115566pt;}
.ls12{letter-spacing:-0.110751pt;}
.ls66{letter-spacing:-0.107375pt;}
.ls13{letter-spacing:-0.105936pt;}
.lsf{letter-spacing:-0.101120pt;}
.ls5e{letter-spacing:-0.099705pt;}
.ls2a{letter-spacing:-0.096305pt;}
.ls2b{letter-spacing:-0.091490pt;}
.ls10{letter-spacing:-0.086675pt;}
.lsa{letter-spacing:-0.081859pt;}
.lsc{letter-spacing:-0.077044pt;}
.ls29{letter-spacing:-0.072229pt;}
.ls6{letter-spacing:-0.067414pt;}
.ls9{letter-spacing:-0.062598pt;}
.lsd{letter-spacing:-0.057783pt;}
.ls5{letter-spacing:-0.052968pt;}
.ls35{letter-spacing:-0.048153pt;}
.ls5b{letter-spacing:-0.046018pt;}
.lse{letter-spacing:-0.043337pt;}
.lsb{letter-spacing:-0.038522pt;}
.ls8{letter-spacing:-0.033707pt;}
.ls11{letter-spacing:-0.028892pt;}
.ls1c{letter-spacing:-0.024076pt;}
.ls4b{letter-spacing:-0.023009pt;}
.ls20{letter-spacing:-0.014446pt;}
.ls1d{letter-spacing:-0.009631pt;}
.ls15{letter-spacing:-0.007670pt;}
.ls1f{letter-spacing:-0.004815pt;}
.ls4{letter-spacing:-0.003835pt;}
.ls2{letter-spacing:0.000000pt;}
.ls53{letter-spacing:0.003835pt;}
.ls24{letter-spacing:0.004815pt;}
.ls49{letter-spacing:0.007670pt;}
.ls30{letter-spacing:0.009631pt;}
.ls18{letter-spacing:0.014446pt;}
.ls56{letter-spacing:0.015339pt;}
.ls34{letter-spacing:0.019174pt;}
.ls39{letter-spacing:0.019261pt;}
.ls17{letter-spacing:0.024076pt;}
.ls33{letter-spacing:0.028892pt;}
.ls38{letter-spacing:0.033707pt;}
.ls27{letter-spacing:0.038522pt;}
.ls3d{letter-spacing:0.043337pt;}
.ls25{letter-spacing:0.048153pt;}
.ls2f{letter-spacing:0.052968pt;}
.ls26{letter-spacing:0.057783pt;}
.ls16{letter-spacing:0.062598pt;}
.ls48{letter-spacing:0.072229pt;}
.ls3{letter-spacing:0.077044pt;}
.ls42{letter-spacing:0.081859pt;}
.ls41{letter-spacing:0.086675pt;}
.ls2d{letter-spacing:0.091490pt;}
.ls64{letter-spacing:0.095871pt;}
.ls50{letter-spacing:0.110751pt;}
.ls36{letter-spacing:0.115566pt;}
.ls55{letter-spacing:0.120381pt;}
.ls44{letter-spacing:0.125197pt;}
.ls5a{letter-spacing:0.130012pt;}
.ls67{letter-spacing:0.145723pt;}
.ls3e{letter-spacing:0.149273pt;}
.ls4c{letter-spacing:0.163719pt;}
.ls61{letter-spacing:0.176402pt;}
.ls4e{letter-spacing:0.187795pt;}
.ls57{letter-spacing:0.200127pt;}
.ls40{letter-spacing:0.202241pt;}
.ls58{letter-spacing:0.211606pt;}
.ls65{letter-spacing:0.218585pt;}
.ls59{letter-spacing:0.220004pt;}
.ls31{letter-spacing:0.235947pt;}
.ls23{letter-spacing:0.255208pt;}
.ls19{letter-spacing:0.260024pt;}
.ls5c{letter-spacing:0.268438pt;}
.ls46{letter-spacing:0.269654pt;}
.ls3a{letter-spacing:1.150846pt;}
.ls1{letter-spacing:1.536811pt;}
.ls51{letter-spacing:3.519950pt;}
.ls37{letter-spacing:12.095916pt;}
.ls3c{letter-spacing:12.712269pt;}
.ls14{letter-spacing:13.368206pt;}
.ls5d{letter-spacing:20.118128pt;}
.ls63{letter-spacing:20.411859pt;}
.ls60{letter-spacing:21.596411pt;}
.ls43{letter-spacing:22.203133pt;}
.ls0{letter-spacing:25.272006pt;}
.ls1a{letter-spacing:79.129058pt;}
.ls3f{letter-spacing:159.476375pt;}
.ws1e8{word-spacing:-33.504533pt;}
.ws19{word-spacing:-24.029024pt;}
.ws12e{word-spacing:-13.588645pt;}
.ws1d2{word-spacing:-13.420111pt;}
.ws18d{word-spacing:-13.386404pt;}
.ws86{word-spacing:-13.362328pt;}
.ws12d{word-spacing:-13.338252pt;}
.ws1f{word-spacing:-13.328621pt;}
.ws1b{word-spacing:-13.323806pt;}
.ws12c{word-spacing:-13.318991pt;}
.ws1e{word-spacing:-13.299730pt;}
.wsb2{word-spacing:-13.294914pt;}
.ws12f{word-spacing:-13.054152pt;}
.ws20b{word-spacing:-11.258062pt;}
.ws207{word-spacing:-11.253247pt;}
.ws1e7{word-spacing:-10.929256pt;}
.ws1ed{word-spacing:-10.879403pt;}
.ws1eb{word-spacing:-10.837220pt;}
.ws1ee{word-spacing:-10.806542pt;}
.ws5{word-spacing:-10.666667pt;}
.ws1ea{word-spacing:-10.561113pt;}
.ws1e9{word-spacing:-10.541939pt;}
.ws1ec{word-spacing:-10.285005pt;}
.ws27{word-spacing:-7.126575pt;}
.ws30{word-spacing:-4.458925pt;}
.ws3{word-spacing:-3.733333pt;}
.ws31{word-spacing:-1.487913pt;}
.wsdd{word-spacing:-0.563385pt;}
.ws174{word-spacing:-0.520047pt;}
.ws200{word-spacing:-0.495971pt;}
.ws1cc{word-spacing:-0.404481pt;}
.ws2b{word-spacing:-0.394851pt;}
.ws13f{word-spacing:-0.385220pt;}
.ws13d{word-spacing:-0.380405pt;}
.ws1c9{word-spacing:-0.375590pt;}
.ws180{word-spacing:-0.356329pt;}
.ws137{word-spacing:-0.351513pt;}
.ws7e{word-spacing:-0.346698pt;}
.ws1c6{word-spacing:-0.341883pt;}
.ws152{word-spacing:-0.337068pt;}
.ws24{word-spacing:-0.327437pt;}
.ws22{word-spacing:-0.322622pt;}
.wsbc{word-spacing:-0.317807pt;}
.ws25{word-spacing:-0.308176pt;}
.ws20a{word-spacing:-0.269654pt;}
.ws8{word-spacing:-0.264839pt;}
.ws160{word-spacing:-0.260024pt;}
.ws9f{word-spacing:-0.245578pt;}
.ws108{word-spacing:-0.235947pt;}
.ws18{word-spacing:-0.226317pt;}
.ws40{word-spacing:-0.221502pt;}
.ws125{word-spacing:-0.216686pt;}
.ws26{word-spacing:-0.207056pt;}
.ws5b{word-spacing:-0.202241pt;}
.ws20{word-spacing:-0.192610pt;}
.ws23{word-spacing:-0.187795pt;}
.ws14b{word-spacing:-0.182980pt;}
.ws29{word-spacing:-0.178164pt;}
.ws153{word-spacing:-0.105936pt;}
.ws4a{word-spacing:-0.091490pt;}
.wsb7{word-spacing:-0.086675pt;}
.ws46{word-spacing:-0.081859pt;}
.ws147{word-spacing:-0.072229pt;}
.ws1c8{word-spacing:-0.067414pt;}
.ws165{word-spacing:-0.062598pt;}
.ws2c{word-spacing:-0.057783pt;}
.ws189{word-spacing:-0.052968pt;}
.ws2f{word-spacing:-0.048153pt;}
.wsea{word-spacing:-0.043337pt;}
.wsb1{word-spacing:-0.042183pt;}
.ws146{word-spacing:-0.038522pt;}
.ws2d{word-spacing:-0.028892pt;}
.wsb6{word-spacing:-0.019261pt;}
.ws21{word-spacing:-0.009631pt;}
.ws14{word-spacing:-0.004815pt;}
.ws1{word-spacing:0.000000pt;}
.wsb9{word-spacing:0.014446pt;}
.ws1bb{word-spacing:0.015339pt;}
.wsb3{word-spacing:0.019174pt;}
.ws7{word-spacing:0.019261pt;}
.wsf{word-spacing:0.024076pt;}
.ws1a{word-spacing:0.026844pt;}
.ws39{word-spacing:0.028892pt;}
.wsa{word-spacing:0.033707pt;}
.ws85{word-spacing:0.038522pt;}
.ws162{word-spacing:0.042183pt;}
.ws5c{word-spacing:0.043337pt;}
.wsc{word-spacing:0.048153pt;}
.ws2e{word-spacing:0.052968pt;}
.ws3d{word-spacing:0.057783pt;}
.ws48{word-spacing:0.062598pt;}
.ws87{word-spacing:0.067414pt;}
.ws69{word-spacing:0.072229pt;}
.ws16{word-spacing:0.077044pt;}
.wsa0{word-spacing:0.081859pt;}
.ws13e{word-spacing:0.086675pt;}
.ws70{word-spacing:0.091490pt;}
.ws5d{word-spacing:0.096305pt;}
.ws1d1{word-spacing:0.101120pt;}
.ws1ca{word-spacing:0.120381pt;}
.ws1ce{word-spacing:0.139642pt;}
.ws13b{word-spacing:0.288915pt;}
.ws6{word-spacing:0.318291pt;}
.ws8e{word-spacing:0.341883pt;}
.ws79{word-spacing:0.346698pt;}
.wsb4{word-spacing:0.467080pt;}
.wsf8{word-spacing:0.524863pt;}
.ws4{word-spacing:0.533333pt;}
.wsf1{word-spacing:0.617407pt;}
.wsa1{word-spacing:0.630798pt;}
.ws9{word-spacing:0.635613pt;}
.ws1ba{word-spacing:0.640429pt;}
.ws55{word-spacing:0.645244pt;}
.ws59{word-spacing:0.650059pt;}
.wsf9{word-spacing:0.833039pt;}
.ws13a{word-spacing:0.919713pt;}
.ws1de{word-spacing:0.924529pt;}
.ws66{word-spacing:0.929344pt;}
.ws82{word-spacing:0.943790pt;}
.wse5{word-spacing:0.948605pt;}
.ws134{word-spacing:1.001573pt;}
.ws136{word-spacing:1.025649pt;}
.wse4{word-spacing:1.218259pt;}
.wsf4{word-spacing:1.237520pt;}
.ws155{word-spacing:1.242335pt;}
.ws15f{word-spacing:1.247151pt;}
.ws197{word-spacing:1.256781pt;}
.ws103{word-spacing:1.304934pt;}
.ws1bf{word-spacing:1.521620pt;}
.ws1fb{word-spacing:1.531251pt;}
.ws135{word-spacing:1.536066pt;}
.ws148{word-spacing:1.540881pt;}
.ws126{word-spacing:1.545696pt;}
.ws11c{word-spacing:1.810535pt;}
.ws94{word-spacing:1.815351pt;}
.wsd2{word-spacing:1.820166pt;}
.ws149{word-spacing:1.829796pt;}
.ws1b7{word-spacing:1.834612pt;}
.ws1f2{word-spacing:1.839427pt;}
.ws95{word-spacing:1.853873pt;}
.ws1f8{word-spacing:2.109081pt;}
.ws1c3{word-spacing:2.118711pt;}
.ws166{word-spacing:2.123527pt;}
.ws13c{word-spacing:2.166864pt;}
.ws58{word-spacing:2.349844pt;}
.ws63{word-spacing:2.407627pt;}
.ws1d4{word-spacing:2.412442pt;}
.ws10a{word-spacing:2.422072pt;}
.ws75{word-spacing:2.426888pt;}
.ws42{word-spacing:2.609867pt;}
.ws43{word-spacing:2.619498pt;}
.ws1fd{word-spacing:2.648389pt;}
.ws1cd{word-spacing:2.680544pt;}
.ws44{word-spacing:2.706172pt;}
.ws7d{word-spacing:2.715803pt;}
.ws57{word-spacing:2.720618pt;}
.ws129{word-spacing:2.725433pt;}
.wsba{word-spacing:2.735064pt;}
.ws1c4{word-spacing:2.744694pt;}
.wsf0{word-spacing:2.889152pt;}
.wsef{word-spacing:2.918044pt;}
.ws18c{word-spacing:2.951750pt;}
.ws1dd{word-spacing:2.995088pt;}
.ws3e{word-spacing:2.999903pt;}
.ws33{word-spacing:3.004718pt;}
.wsab{word-spacing:3.014349pt;}
.ws71{word-spacing:3.019164pt;}
.ws1db{word-spacing:3.072132pt;}
.ws1a7{word-spacing:3.168437pt;}
.ws1a5{word-spacing:3.192513pt;}
.ws110{word-spacing:3.235850pt;}
.ws14f{word-spacing:3.298449pt;}
.ws1d5{word-spacing:3.303264pt;}
.ws111{word-spacing:3.312894pt;}
.ws1f4{word-spacing:3.317710pt;}
.ws12{word-spacing:3.327340pt;}
.ws1a6{word-spacing:3.409199pt;}
.ws9b{word-spacing:3.481428pt;}
.ws157{word-spacing:3.491059pt;}
.ws1cb{word-spacing:3.574058pt;}
.ws190{word-spacing:3.582548pt;}
.ws47{word-spacing:3.587364pt;}
.ws4c{word-spacing:3.601809pt;}
.ws18e{word-spacing:3.625886pt;}
.ws18f{word-spacing:3.784789pt;}
.ws9c{word-spacing:3.794420pt;}
.ws158{word-spacing:3.818496pt;}
.ws16d{word-spacing:3.905170pt;}
.ws1b9{word-spacing:3.909986pt;}
.ws191{word-spacing:3.948508pt;}
.ws5f{word-spacing:4.078520pt;}
.ws5e{word-spacing:4.131487pt;}
.ws1d6{word-spacing:4.194086pt;}
.ws1e0{word-spacing:4.213347pt;}
.ws10c{word-spacing:4.227792pt;}
.ws1a8{word-spacing:4.367435pt;}
.ws9a{word-spacing:4.401142pt;}
.ws1aa{word-spacing:4.405957pt;}
.ws142{word-spacing:4.425218pt;}
.wsde{word-spacing:4.487816pt;}
.wsd5{word-spacing:4.492631pt;}
.ws4b{word-spacing:4.497447pt;}
.ws1c0{word-spacing:4.502262pt;}
.ws3b{word-spacing:4.507077pt;}
.ws140{word-spacing:4.685241pt;}
.ws1a9{word-spacing:4.699687pt;}
.ws168{word-spacing:4.704503pt;}
.ws1f6{word-spacing:4.718948pt;}
.ws124{word-spacing:4.781547pt;}
.ws73{word-spacing:4.786362pt;}
.ws167{word-spacing:4.795992pt;}
.ws164{word-spacing:4.810438pt;}
.wscf{word-spacing:4.815253pt;}
.ws141{word-spacing:5.012679pt;}
.ws169{word-spacing:5.065647pt;}
.ws19d{word-spacing:5.084908pt;}
.ws64{word-spacing:5.094538pt;}
.ws5a{word-spacing:5.108984pt;}
.ws88{word-spacing:5.113799pt;}
.ws72{word-spacing:5.137875pt;}
.ws1f0{word-spacing:5.282333pt;}
.ws170{word-spacing:5.287148pt;}
.ws1f5{word-spacing:5.373823pt;}
.wsd1{word-spacing:5.383453pt;}
.wsd0{word-spacing:5.412345pt;}
.wse3{word-spacing:5.417160pt;}
.ws17c{word-spacing:5.421975pt;}
.ws1cf{word-spacing:5.441236pt;}
.ws1f1{word-spacing:5.595324pt;}
.ws16f{word-spacing:5.600140pt;}
.wsa2{word-spacing:5.657923pt;}
.ws9d{word-spacing:5.686814pt;}
.ws175{word-spacing:5.691629pt;}
.ws45{word-spacing:5.889055pt;}
.ws34{word-spacing:5.966099pt;}
.ws83{word-spacing:5.970914pt;}
.wsd9{word-spacing:5.975729pt;}
.ws1e4{word-spacing:5.990175pt;}
.ws1ff{word-spacing:6.033512pt;}
.wsd8{word-spacing:6.264645pt;}
.ws196{word-spacing:6.279090pt;}
.ws138{word-spacing:6.548745pt;}
.ws16e{word-spacing:6.553560pt;}
.ws139{word-spacing:6.558375pt;}
.ws20f{word-spacing:6.572821pt;}
.ws1fc{word-spacing:6.856921pt;}
.ws19c{word-spacing:6.871367pt;}
.wscc{word-spacing:6.876182pt;}
.ws1a2{word-spacing:6.890628pt;}
.ws7a{word-spacing:6.905073pt;}
.ws113{word-spacing:7.145836pt;}
.ws15a{word-spacing:7.150651pt;}
.ws4e{word-spacing:7.155466pt;}
.ws19b{word-spacing:7.160282pt;}
.wsc2{word-spacing:7.165097pt;}
.ws1e2{word-spacing:7.174727pt;}
.ws1c7{word-spacing:7.179543pt;}
.ws159{word-spacing:7.189173pt;}
.wsc1{word-spacing:7.193988pt;}
.ws20e{word-spacing:7.246956pt;}
.ws20d{word-spacing:7.412720pt;}
.wsa6{word-spacing:7.439566pt;}
.ws102{word-spacing:7.449197pt;}
.ws1d8{word-spacing:7.454012pt;}
.ws93{word-spacing:7.458827pt;}
.ws6a{word-spacing:7.463643pt;}
.ws122{word-spacing:7.487719pt;}
.ws11f{word-spacing:7.757373pt;}
.ws118{word-spacing:8.041473pt;}
.wse9{word-spacing:8.051104pt;}
.ws90{word-spacing:8.055919pt;}
.wse2{word-spacing:8.104071pt;}
.ws15d{word-spacing:8.277420pt;}
.ws182{word-spacing:8.340019pt;}
.wse1{word-spacing:8.344834pt;}
.ws130{word-spacing:8.349649pt;}
.wsfa{word-spacing:8.354465pt;}
.wsf2{word-spacing:8.359280pt;}
.wsda{word-spacing:8.364095pt;}
.ws98{word-spacing:8.556705pt;}
.ws36{word-spacing:8.633749pt;}
.ws163{word-spacing:8.638564pt;}
.ws173{word-spacing:8.701163pt;}
.ws12a{word-spacing:8.937110pt;}
.wse8{word-spacing:8.941925pt;}
.ws15e{word-spacing:8.946741pt;}
.ws60{word-spacing:8.951556pt;}
.ws1e6{word-spacing:9.009339pt;}
.ws1bd{word-spacing:9.221210pt;}
.wsa3{word-spacing:9.240471pt;}
.ws10d{word-spacing:9.250102pt;}
.ws104{word-spacing:9.428266pt;}
.wsed{word-spacing:9.457158pt;}
.ws105{word-spacing:9.461973pt;}
.ws201{word-spacing:9.491196pt;}
.wsbf{word-spacing:9.514941pt;}
.ws11b{word-spacing:9.529386pt;}
.ws202{word-spacing:9.539017pt;}
.ws14a{word-spacing:9.558278pt;}
.ws123{word-spacing:9.567908pt;}
.ws20c{word-spacing:9.582354pt;}
.wse0{word-spacing:9.823117pt;}
.wsee{word-spacing:9.832747pt;}
.ws35{word-spacing:10.121663pt;}
.wsc3{word-spacing:10.155369pt;}
.wsa5{word-spacing:10.174630pt;}
.ws1b8{word-spacing:10.232413pt;}
.ws161{word-spacing:10.388545pt;}
.ws206{word-spacing:10.415393pt;}
.ws14c{word-spacing:10.420208pt;}
.ws119{word-spacing:10.429839pt;}
.ws143{word-spacing:10.434654pt;}
.ws19a{word-spacing:10.444284pt;}
.ws209{word-spacing:10.612818pt;}
.ws208{word-spacing:10.699493pt;}
.ws1f7{word-spacing:10.742830pt;}
.ws1b6{word-spacing:10.906549pt;}
.ws144{word-spacing:11.002854pt;}
.ws97{word-spacing:11.007669pt;}
.wseb{word-spacing:11.017300pt;}
.wsf5{word-spacing:11.022115pt;}
.wsa7{word-spacing:11.036561pt;}
.ws1be{word-spacing:11.051006pt;}
.ws8c{word-spacing:11.176203pt;}
.ws1b5{word-spacing:11.205095pt;}
.ws112{word-spacing:11.301400pt;}
.wsd3{word-spacing:11.306215pt;}
.ws156{word-spacing:11.311030pt;}
.ws1a1{word-spacing:11.315845pt;}
.ws128{word-spacing:11.320661pt;}
.ws10e{word-spacing:11.325476pt;}
.ws54{word-spacing:11.354367pt;}
.wsd4{word-spacing:11.383259pt;}
.wsbb{word-spacing:11.542162pt;}
.ws10b{word-spacing:11.595130pt;}
.ws81{word-spacing:11.609576pt;}
.ws192{word-spacing:11.638467pt;}
.ws8d{word-spacing:11.768479pt;}
.ws8b{word-spacing:11.826262pt;}
.ws32{word-spacing:11.893676pt;}
.ws1a0{word-spacing:12.129623pt;}
.ws204{word-spacing:12.182591pt;}
.ws1e5{word-spacing:12.197037pt;}
.ws38{word-spacing:12.201852pt;}
.ws100{word-spacing:12.211482pt;}
.ws1e3{word-spacing:12.225928pt;}
.ws99{word-spacing:12.490767pt;}
.ws7b{word-spacing:12.505213pt;}
.ws11a{word-spacing:12.529289pt;}
.ws205{word-spacing:12.553365pt;}
.ws199{word-spacing:12.668932pt;}
.ws198{word-spacing:12.683377pt;}
.ws1fe{word-spacing:12.779682pt;}
.wsf7{word-spacing:12.789313pt;}
.ws115{word-spacing:12.813389pt;}
.ws8a{word-spacing:12.818204pt;}
.ws117{word-spacing:12.827835pt;}
.ws116{word-spacing:12.837465pt;}
.wsd6{word-spacing:13.001184pt;}
.wsd7{word-spacing:13.010815pt;}
.ws1a4{word-spacing:13.083043pt;}
.ws109{word-spacing:13.097489pt;}
.ws17b{word-spacing:13.102304pt;}
.ws17d{word-spacing:13.188979pt;}
.wsc7{word-spacing:13.251577pt;}
.ws92{word-spacing:13.376774pt;}
.ws89{word-spacing:13.381589pt;}
.wscd{word-spacing:13.386404pt;}
.ws1d7{word-spacing:13.391220pt;}
.ws1fa{word-spacing:13.554938pt;}
.wsc8{word-spacing:13.617536pt;}
.ws61{word-spacing:13.675319pt;}
.ws4d{word-spacing:13.689765pt;}
.ws101{word-spacing:13.709026pt;}
.ws74{word-spacing:13.713841pt;}
.ws172{word-spacing:13.757179pt;}
.ws1f9{word-spacing:13.877560pt;}
.ws1dc{word-spacing:13.993126pt;}
.ws171{word-spacing:14.161660pt;}
.ws8f{word-spacing:14.185736pt;}
.ws150{word-spacing:14.272411pt;}
.ws76{word-spacing:14.277226pt;}
.ws1d3{word-spacing:14.291672pt;}
.ws195{word-spacing:14.301302pt;}
.ws6e{word-spacing:14.575772pt;}
.ws53{word-spacing:14.580587pt;}
.wse7{word-spacing:14.874318pt;}
.wse6{word-spacing:14.888763pt;}
.ws2{word-spacing:14.986667pt;}
.ws1f3{word-spacing:15.153602pt;}
.ws7f{word-spacing:15.168048pt;}
.ws177{word-spacing:15.196940pt;}
.wsaf{word-spacing:15.466594pt;}
.ws1ae{word-spacing:15.476224pt;}
.ws176{word-spacing:15.481039pt;}
.ws120{word-spacing:15.750694pt;}
.wsc6{word-spacing:15.789216pt;}
.ws194{word-spacing:15.928858pt;}
.wsdb{word-spacing:15.938489pt;}
.ws127{word-spacing:16.044424pt;}
.wsdc{word-spacing:16.078131pt;}
.ws193{word-spacing:16.082946pt;}
.ws1da{word-spacing:16.362231pt;}
.ws1e1{word-spacing:16.371861pt;}
.ws17f{word-spacing:16.376677pt;}
.wsf6{word-spacing:16.646331pt;}
.ws1ef{word-spacing:16.848571pt;}
.ws91{word-spacing:16.954507pt;}
.ws1d9{word-spacing:16.959322pt;}
.wsc5{word-spacing:17.248237pt;}
.ws6f{word-spacing:17.532337pt;}
.ws1ac{word-spacing:17.537153pt;}
.ws1ab{word-spacing:17.551598pt;}
.ws1ad{word-spacing:17.782731pt;}
.wsc9{word-spacing:17.864590pt;}
.ws6c{word-spacing:18.736151pt;}
.wsae{word-spacing:18.914315pt;}
.ws7c{word-spacing:18.996174pt;}
.wsa9{word-spacing:19.020251pt;}
.ws67{word-spacing:19.771430pt;}
.ws68{word-spacing:19.829213pt;}
.wsb5{word-spacing:19.901442pt;}
.wsf3{word-spacing:19.911073pt;}
.ws106{word-spacing:19.920703pt;}
.ws107{word-spacing:19.935149pt;}
.wse{word-spacing:20.199988pt;}
.wsbe{word-spacing:20.421489pt;}
.wsbd{word-spacing:20.715220pt;}
.ws10f{word-spacing:20.821155pt;}
.wsb8{word-spacing:21.081179pt;}
.ws1c2{word-spacing:21.090810pt;}
.wsaa{word-spacing:21.119701pt;}
.wsff{word-spacing:21.567520pt;}
.wsfe{word-spacing:21.601226pt;}
.ws62{word-spacing:21.673455pt;}
.ws96{word-spacing:21.687901pt;}
.ws114{word-spacing:21.702347pt;}
.ws17a{word-spacing:21.996077pt;}
.ws133{word-spacing:22.159796pt;}
.ws0{word-spacing:22.255303pt;}
.ws1c5{word-spacing:22.289808pt;}
.ws1b3{word-spacing:22.294623pt;}
.ws131{word-spacing:22.415004pt;}
.ws132{word-spacing:22.578723pt;}
.ws12b{word-spacing:22.602799pt;}
.wsa8{word-spacing:22.607614pt;}
.ws1a3{word-spacing:22.877269pt;}
.wsc0{word-spacing:22.882084pt;}
.ws80{word-spacing:22.886899pt;}
.ws4f{word-spacing:22.891714pt;}
.ws84{word-spacing:22.906160pt;}
.ws11e{word-spacing:23.455099pt;}
.ws145{word-spacing:23.464729pt;}
.ws17e{word-spacing:23.474360pt;}
.ws1d0{word-spacing:23.488806pt;}
.ws56{word-spacing:23.493621pt;}
.ws121{word-spacing:23.787351pt;}
.wsfc{word-spacing:23.926994pt;}
.ws78{word-spacing:24.066636pt;}
.ws154{word-spacing:24.071451pt;}
.wscb{word-spacing:24.162941pt;}
.ws187{word-spacing:24.249616pt;}
.ws188{word-spacing:24.259246pt;}
.wsfb{word-spacing:24.273692pt;}
.ws3f{word-spacing:24.644467pt;}
.ws1c1{word-spacing:25.241558pt;}
.ws6b{word-spacing:25.824204pt;}
.ws19f{word-spacing:26.007183pt;}
.ws3c{word-spacing:26.137195pt;}
.wsec{word-spacing:26.151641pt;}
.ws19e{word-spacing:26.166087pt;}
.ws37{word-spacing:26.339436pt;}
.ws203{word-spacing:26.734287pt;}
.wsfd{word-spacing:27.013571pt;}
.ws65{word-spacing:27.052093pt;}
.ws18a{word-spacing:27.302486pt;}
.wsdf{word-spacing:27.316932pt;}
.ws18b{word-spacing:27.331378pt;}
.ws14e{word-spacing:27.341008pt;}
.ws14d{word-spacing:27.832164pt;}
.ws16c{word-spacing:28.535191pt;}
.wsca{word-spacing:28.665203pt;}
.ws1b4{word-spacing:28.804845pt;}
.ws151{word-spacing:29.392306pt;}
.wsc4{word-spacing:29.714928pt;}
.ws49{word-spacing:30.514260pt;}
.wsa4{word-spacing:30.894665pt;}
.ws16a{word-spacing:31.486942pt;}
.wsad{word-spacing:31.530279pt;}
.ws16b{word-spacing:31.636214pt;}
.ws9e{word-spacing:31.790303pt;}
.ws179{word-spacing:31.958836pt;}
.ws178{word-spacing:31.963652pt;}
.ws77{word-spacing:32.368133pt;}
.wsb0{word-spacing:32.657048pt;}
.ws11{word-spacing:32.796690pt;}
.ws6d{word-spacing:33.186726pt;}
.ws15c{word-spacing:33.533424pt;}
.ws11d{word-spacing:34.154592pt;}
.ws1bc{word-spacing:35.926605pt;}
.ws3a{word-spacing:38.887986pt;}
.ws1df{word-spacing:39.176901pt;}
.ws15b{word-spacing:41.536375pt;}
.ws50{word-spacing:42.359784pt;}
.ws51{word-spacing:42.672775pt;}
.ws52{word-spacing:42.783526pt;}
.ws41{word-spacing:43.948817pt;}
.wsac{word-spacing:46.289030pt;}
.ws183{word-spacing:51.017609pt;}
.ws184{word-spacing:51.032055pt;}
.ws186{word-spacing:51.041685pt;}
.ws1b0{word-spacing:51.046501pt;}
.ws1b2{word-spacing:51.060946pt;}
.ws1b1{word-spacing:51.070577pt;}
.ws185{word-spacing:51.099468pt;}
.ws181{word-spacing:51.157251pt;}
.ws1af{word-spacing:51.316155pt;}
.ws2a{word-spacing:54.821659pt;}
.ws28{word-spacing:54.831290pt;}
.ws1c{word-spacing:79.287961pt;}
.ws1d{word-spacing:82.138591pt;}
.ws17{word-spacing:157.140977pt;}
.wsce{word-spacing:159.447484pt;}
.wsd{word-spacing:159.514897pt;}
.ws10{word-spacing:159.519712pt;}
.wsb{word-spacing:159.538973pt;}
.ws15{word-spacing:159.543789pt;}
.ws13{word-spacing:159.563050pt;}
._4{margin-left:-159.245243pt;}
._9{margin-left:-157.516567pt;}
._5{margin-left:-139.054886pt;}
._7{margin-left:-126.602641pt;}
._18{margin-left:-64.750898pt;}
._15{margin-left:-63.080005pt;}
._11{margin-left:-61.219669pt;}
._10{margin-left:-55.158727pt;}
._3f{margin-left:-50.887597pt;}
._38{margin-left:-21.933852pt;}
._43{margin-left:-20.096651pt;}
._a{margin-left:-14.637104pt;}
._37{margin-left:-12.646373pt;}
._d{margin-left:-9.672195pt;}
._b{margin-left:-7.298462pt;}
._35{margin-left:-6.152058pt;}
._0{margin-left:-4.451524pt;}
._2{margin-left:-2.944000pt;}
._3{margin-left:-1.237333pt;}
._1{width:1.024000pt;}
._3c{width:2.455219pt;}
._36{width:3.625886pt;}
._1c{width:6.905073pt;}
._42{width:9.690113pt;}
._2c{width:12.129250pt;}
._2b{width:13.352866pt;}
._40{width:19.025198pt;}
._1f{width:20.243325pt;}
._12{width:24.312214pt;}
._20{width:37.144864pt;}
._39{width:38.247557pt;}
._17{width:42.123649pt;}
._23{width:43.370987pt;}
._1d{width:44.854085pt;}
._1e{width:47.228005pt;}
._21{width:48.412557pt;}
._22{width:49.895655pt;}
._3d{width:51.080207pt;}
._f{width:54.850551pt;}
._c{width:79.162765pt;}
._1b{width:81.175541pt;}
._1a{width:84.035801pt;}
._e{width:86.283007pt;}
._19{width:94.245592pt;}
._14{width:101.991881pt;}
._2d{width:107.413669pt;}
._2a{width:113.259574pt;}
._41{width:118.925609pt;}
._3b{width:122.750438pt;}
._24{width:126.304095pt;}
._2f{width:129.862567pt;}
._32{width:130.753389pt;}
._33{width:135.197868pt;}
._3a{width:136.387235pt;}
._31{width:137.870333pt;}
._30{width:142.314812pt;}
._26{width:144.390186pt;}
._28{width:146.171830pt;}
._27{width:147.654928pt;}
._2e{width:149.431757pt;}
._29{width:150.914855pt;}
._25{width:152.691683pt;}
._3e{width:153.881051pt;}
._34{width:155.065603pt;}
._8{width:156.250155pt;}
._13{width:157.439523pt;}
._6{width:159.510082pt;}
._16{width:293.528213pt;}
.fs8{font-size:38.348267pt;}
.fs7{font-size:42.666667pt;}
.fs9{font-size:48.152533pt;}
.fs1{font-size:53.333333pt;}
.fs6{font-size:56.918933pt;}
.fs0{font-size:60.155733pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:80.000000pt;}
.fs5{font-size:128.000000pt;}
.fs4{font-size:144.000000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:50.512133pt;}
.y2a{bottom:62.129733pt;}
.ye2{bottom:83.471274pt;}
.y111{bottom:85.332566pt;}
.y1a3{bottom:87.628896pt;}
.y203{bottom:87.913165pt;}
.ye{bottom:88.125733pt;}
.y131{bottom:90.150968pt;}
.y17b{bottom:92.668464pt;}
.y1ca{bottom:93.040810pt;}
.y220{bottom:94.299086pt;}
.ye1{bottom:97.331980pt;}
.y110{bottom:99.193273pt;}
.y1a2{bottom:101.488399pt;}
.y202{bottom:101.772668pt;}
.y130{bottom:103.939446pt;}
.y17a{bottom:106.455738pt;}
.y1c9{bottom:106.901517pt;}
.y21f{bottom:108.159793pt;}
.ye0{bottom:111.119254pt;}
.y10f{bottom:112.980547pt;}
.y1a1{bottom:115.349105pt;}
.y201{bottom:115.633375pt;}
.y83{bottom:116.611253pt;}
.y12f{bottom:117.798949pt;}
.yb1{bottom:118.837269pt;}
.y179{bottom:120.316444pt;}
.y1c8{bottom:120.688791pt;}
.y21e{bottom:121.946953pt;}
.ydf{bottom:125.054598pt;}
.y10e{bottom:126.841254pt;}
.y1a0{bottom:129.136380pt;}
.y200{bottom:129.420649pt;}
.y82{bottom:130.470756pt;}
.y16b{bottom:131.136639pt;}
.y12e{bottom:131.586223pt;}
.yb0{bottom:132.624543pt;}
.y1d5{bottom:134.399327pt;}
.y1c7{bottom:134.549497pt;}
.y21d{bottom:135.734227pt;}
.y2{bottom:136.907467pt;}
.yde{bottom:138.915304pt;}
.y10d{bottom:140.701960pt;}
.y1ff{bottom:143.209127pt;}
.y81{bottom:144.330259pt;}
.y16a{bottom:144.923913pt;}
.y12d{bottom:145.373497pt;}
.yaf{bottom:146.411817pt;}
.y178{bottom:147.889789pt;}
.y1d4{bottom:148.186601pt;}
.y1c6{bottom:148.336771pt;}
.y21c{bottom:149.594118pt;}
.ydd{bottom:152.702578pt;}
.y10c{bottom:154.637303pt;}
.y1{bottom:154.954133pt;}
.y19f{bottom:156.784360pt;}
.y1fe{bottom:157.068630pt;}
.y169{bottom:158.711187pt;}
.y80{bottom:158.860286pt;}
.y12c{bottom:159.234204pt;}
.yae{bottom:160.272524pt;}
.y177{bottom:161.678267pt;}
.y1d3{bottom:162.047307pt;}
.y1c5{bottom:162.125249pt;}
.y21b{bottom:163.381393pt;}
.ydc{bottom:166.415216pt;}
.y10b{bottom:168.348737pt;}
.y1fd{bottom:170.857108pt;}
.y168{bottom:172.498461pt;}
.y12b{bottom:173.021478pt;}
.yad{bottom:174.133230pt;}
.y1d2{bottom:175.834581pt;}
.y1c4{bottom:175.984752pt;}
.y21a{bottom:177.168231pt;}
.y1b4{bottom:178.650426pt;}
.ydb{bottom:180.275923pt;}
.y10a{bottom:182.137215pt;}
.y1fc{bottom:184.644382pt;}
.y16{bottom:185.515067pt;}
.y167{bottom:186.359168pt;}
.y7f{bottom:186.508267pt;}
.y12a{bottom:186.882184pt;}
.yac{bottom:187.845868pt;}
.y1d1{bottom:189.695288pt;}
.y1c3{bottom:189.845459pt;}
.y219{bottom:191.028938pt;}
.y1b3{bottom:192.437700pt;}
.yda{bottom:194.135426pt;}
.y109{bottom:195.996718pt;}
.y15{bottom:197.515067pt;}
.y19e{bottom:198.218412pt;}
.y129{bottom:200.669459pt;}
.y166{bottom:200.961423pt;}
.yab{bottom:201.705371pt;}
.y176{bottom:202.741166pt;}
.y1c2{bottom:203.558097pt;}
.y218{bottom:204.816212pt;}
.y1b2{bottom:206.224974pt;}
.yd9{bottom:207.923904pt;}
.y108{bottom:209.933265pt;}
.y19d{bottom:212.006889pt;}
.y1fb{bottom:212.292363pt;}
.y175{bottom:213.785467pt;}
.y128{bottom:214.456733pt;}
.yaa{bottom:215.493849pt;}
.y165{bottom:215.638316pt;}
.y29{bottom:216.007467pt;}
.y7e{bottom:217.051307pt;}
.y1d0{bottom:217.195200pt;}
.y1c1{bottom:217.417600pt;}
.y217{bottom:218.676918pt;}
.y1b1{bottom:220.085681pt;}
.yd8{bottom:221.711178pt;}
.y107{bottom:223.792768pt;}
.y19c{bottom:225.866392pt;}
.y14{bottom:226.049067pt;}
.y28{bottom:228.007467pt;}
.y127{bottom:228.317439pt;}
.ya9{bottom:229.281123pt;}
.y164{bottom:230.240571pt;}
.y216{bottom:232.464193pt;}
.y1b0{bottom:233.874159pt;}
.yd7{bottom:235.571884pt;}
.y106{bottom:237.653475pt;}
.y19b{bottom:239.654870pt;}
.y126{bottom:242.176942pt;}
.ya8{bottom:243.141830pt;}
.y163{bottom:244.027845pt;}
.y1c0{bottom:244.918715pt;}
.y13{bottom:245.249067pt;}
.y215{bottom:246.251467pt;}
.y1af{bottom:247.662637pt;}
.yd6{bottom:249.359159pt;}
.y105{bottom:251.366112pt;}
.y27{bottom:252.007467pt;}
.y1fa{bottom:253.726414pt;}
.y19a{bottom:254.331762pt;}
.y125{bottom:255.889580pt;}
.ya7{bottom:256.929104pt;}
.y162{bottom:257.888552pt;}
.y1cf{bottom:258.259299pt;}
.y7d{bottom:258.634631pt;}
.y1ae{bottom:261.522139pt;}
.yd5{bottom:263.219865pt;}
.y26{bottom:264.007467pt;}
.y104{bottom:265.374888pt;}
.y1f9{bottom:267.587121pt;}
.y199{bottom:268.934018pt;}
.y1ce{bottom:269.303600pt;}
.y124{bottom:269.750287pt;}
.ya6{bottom:270.788607pt;}
.y161{bottom:271.675826pt;}
.y7c{bottom:272.421905pt;}
.y1ad{bottom:275.309414pt;}
.y25{bottom:276.007467pt;}
.y214{bottom:276.719079pt;}
.yd4{bottom:277.007139pt;}
.y103{bottom:279.087526pt;}
.y1f8{bottom:281.374395pt;}
.ya{bottom:282.951200pt;}
.y198{bottom:283.536274pt;}
.y123{bottom:283.610993pt;}
.y12{bottom:283.649067pt;}
.ya5{bottom:284.577085pt;}
.y160{bottom:285.464304pt;}
.y7b{bottom:286.282612pt;}
.y1bf{bottom:286.502039pt;}
.y24{bottom:288.007467pt;}
.y1ac{bottom:289.170120pt;}
.yd3{bottom:290.794414pt;}
.y102{bottom:292.874800pt;}
.y1f7{bottom:295.161669pt;}
.y122{bottom:297.323631pt;}
.y197{bottom:298.138530pt;}
.ya4{bottom:298.364359pt;}
.y9{bottom:298.951200pt;}
.y15f{bottom:299.323807pt;}
.y23{bottom:300.007467pt;}
.y7a{bottom:300.069886pt;}
.y1be{bottom:300.289313pt;}
.y1ab{bottom:303.772376pt;}
.yd2{bottom:304.655120pt;}
.y1f6{bottom:309.022376pt;}
.y121{bottom:311.183134pt;}
.y196{bottom:311.999236pt;}
.y22{bottom:312.007467pt;}
.ya3{bottom:312.225065pt;}
.y79{bottom:313.857160pt;}
.y1bd{bottom:314.076587pt;}
.y8{bottom:314.951200pt;}
.y1aa{bottom:318.374632pt;}
.y213{bottom:318.375836pt;}
.yd1{bottom:318.442394pt;}
.y151{bottom:320.894213pt;}
.y101{bottom:323.410183pt;}
.y1f5{bottom:323.699268pt;}
.y120{bottom:325.043841pt;}
.ya2{bottom:326.084568pt;}
.y195{bottom:326.601492pt;}
.y15e{bottom:326.823719pt;}
.y78{bottom:327.717867pt;}
.y1bc{bottom:327.937294pt;}
.yd0{bottom:332.229668pt;}
.y212{bottom:332.978091pt;}
.y1a9{bottom:333.051524pt;}
.y150{bottom:334.681487pt;}
.y21{bottom:336.007467pt;}
.y1f4{bottom:337.559974pt;}
.y11f{bottom:338.831115pt;}
.ya1{bottom:339.797206pt;}
.y15d{bottom:340.684426pt;}
.y194{bottom:341.278384pt;}
.y77{bottom:341.578574pt;}
.y1bb{bottom:341.798001pt;}
.ycf{bottom:346.090375pt;}
.y211{bottom:347.580347pt;}
.y1a8{bottom:347.653780pt;}
.y20{bottom:348.007467pt;}
.y14f{bottom:348.542194pt;}
.y1f3{bottom:351.347249pt;}
.y11e{bottom:352.618389pt;}
.ya0{bottom:353.657913pt;}
.y76{bottom:355.291211pt;}
.y1ba{bottom:355.509435pt;}
.y193{bottom:355.880640pt;}
.y1f{bottom:360.007467pt;}
.y14e{bottom:362.329468pt;}
.y1a7{bottom:362.331876pt;}
.y100{bottom:364.992303pt;}
.y1f2{bottom:365.207955pt;}
.y9f{bottom:367.518619pt;}
.y15c{bottom:368.332406pt;}
.y75{bottom:369.078485pt;}
.y1b9{bottom:369.370141pt;}
.y192{bottom:370.557532pt;}
.y1e{bottom:372.007467pt;}
.yce{bottom:373.590287pt;}
.y210{bottom:375.228328pt;}
.y1a6{bottom:376.044513pt;}
.y14d{bottom:376.116742pt;}
.yff{bottom:378.780781pt;}
.y1f1{bottom:378.995229pt;}
.y11d{bottom:380.191733pt;}
.y9e{bottom:381.230053pt;}
.y15b{bottom:382.193113pt;}
.y1b8{bottom:383.230848pt;}
.y74{bottom:383.755377pt;}
.y191{bottom:385.085151pt;}
.y14c{bottom:389.977449pt;}
.y1a5{bottom:390.052085pt;}
.yfe{bottom:392.569259pt;}
.y1f0{bottom:392.782503pt;}
.y9d{bottom:395.090760pt;}
.y15a{bottom:396.052616pt;}
.y1b7{bottom:396.943486pt;}
.y73{bottom:397.542652pt;}
.y53{bottom:397.981304pt;}
.y190{bottom:399.687407pt;}
.y20f{bottom:402.876309pt;}
.y14b{bottom:403.764723pt;}
.yfd{bottom:406.429966pt;}
.y9c{bottom:408.951467pt;}
.y159{bottom:409.839890pt;}
.y72{bottom:411.329926pt;}
.y18f{bottom:414.364299pt;}
.ycd{bottom:415.173611pt;}
.y20e{bottom:416.663583pt;}
.y14a{bottom:417.625430pt;}
.y11c{bottom:418.439200pt;}
.yfc{bottom:420.290672pt;}
.y1ef{bottom:420.430484pt;}
.y158{bottom:423.627164pt;}
.y1b6{bottom:424.591467pt;}
.y71{bottom:425.190632pt;}
.y52{bottom:425.629284pt;}
.y18e{bottom:428.225006pt;}
.ycc{bottom:428.960885pt;}
.y20d{bottom:430.524290pt;}
.y149{bottom:431.338067pt;}
.y1d{bottom:432.007467pt;}
.yfb{bottom:434.003310pt;}
.y157{bottom:437.487871pt;}
.y70{bottom:438.977907pt;}
.y9b{bottom:439.416004pt;}
.y18d{bottom:441.937644pt;}
.y10{bottom:442.274000pt;}
.ycb{bottom:442.749363pt;}
.y1c{bottom:444.007467pt;}
.y20c{bottom:444.311564pt;}
.y148{bottom:445.197570pt;}
.yfa{bottom:447.862813pt;}
.y1ee{bottom:448.005033pt;}
.y156{bottom:451.275145pt;}
.y6f{bottom:452.765181pt;}
.y51{bottom:453.277265pt;}
.y18c{bottom:455.797147pt;}
.y1b{bottom:456.007467pt;}
.yca{bottom:456.608866pt;}
.y20b{bottom:458.098838pt;}
.y1a4{bottom:458.986048pt;}
.y147{bottom:459.058277pt;}
.yd{bottom:460.665733pt;}
.yf9{bottom:461.723520pt;}
.y155{bottom:465.062419pt;}
.y1b5{bottom:465.581467pt;}
.y6e{bottom:466.625887pt;}
.y1a{bottom:468.007467pt;}
.y18b{bottom:469.657853pt;}
.yc9{bottom:470.397344pt;}
.y20a{bottom:471.959544pt;}
.y146{bottom:472.845551pt;}
.yf8{bottom:475.511998pt;}
.y1ed{bottom:475.577173pt;}
.y154{bottom:478.849693pt;}
.y19{bottom:480.007467pt;}
.y6d{bottom:480.485390pt;}
.yf{bottom:480.674000pt;}
.y50{bottom:480.850610pt;}
.y9a{bottom:480.924691pt;}
.y18a{bottom:483.445127pt;}
.yc8{bottom:484.184618pt;}
.y209{bottom:485.820251pt;}
.y145{bottom:486.632825pt;}
.yf7{bottom:489.300476pt;}
.y18{bottom:492.007467pt;}
.y153{bottom:492.710400pt;}
.y4f{bottom:494.711316pt;}
.y99{bottom:494.785398pt;}
.y6c{bottom:495.015417pt;}
.y189{bottom:497.233605pt;}
.yc7{bottom:498.044121pt;}
.yc{bottom:499.065733pt;}
.y208{bottom:499.532889pt;}
.y144{bottom:500.493532pt;}
.yf6{bottom:503.159978pt;}
.y4e{bottom:508.498590pt;}
.y98{bottom:508.646105pt;}
.y6b{bottom:508.876124pt;}
.y188{bottom:511.020880pt;}
.yc6{bottom:511.904828pt;}
.y207{bottom:513.392392pt;}
.y143{bottom:514.280806pt;}
.yf5{bottom:516.948456pt;}
.y1ec{bottom:517.161701pt;}
.y152{bottom:517.171067pt;}
.y4d{bottom:522.359297pt;}
.y97{bottom:522.433379pt;}
.y6a{bottom:523.478380pt;}
.y187{bottom:524.880382pt;}
.yc5{bottom:525.617465pt;}
.y142{bottom:528.069284pt;}
.yf4{bottom:530.883800pt;}
.y1eb{bottom:530.948975pt;}
.y4c{bottom:536.146571pt;}
.y69{bottom:537.337883pt;}
.y186{bottom:538.667657pt;}
.yc4{bottom:539.476968pt;}
.y206{bottom:541.040373pt;}
.y141{bottom:541.928787pt;}
.y1ea{bottom:544.736249pt;}
.yf3{bottom:544.743302pt;}
.y4b{bottom:549.933845pt;}
.y96{bottom:550.081360pt;}
.y68{bottom:551.865502pt;}
.y17{bottom:552.011067pt;}
.y185{bottom:552.454931pt;}
.yc3{bottom:553.336471pt;}
.y140{bottom:555.717265pt;}
.yf2{bottom:558.531780pt;}
.y1e9{bottom:558.596956pt;}
.y4a{bottom:563.794552pt;}
.y95{bottom:563.940863pt;}
.y67{bottom:565.725005pt;}
.y184{bottom:566.315637pt;}
.yc2{bottom:567.124949pt;}
.y13f{bottom:569.576768pt;}
.yf1{bottom:572.319054pt;}
.y1e8{bottom:573.199212pt;}
.y49{bottom:577.654055pt;}
.y94{bottom:578.468482pt;}
.y66{bottom:579.584508pt;}
.y183{bottom:580.175140pt;}
.yc1{bottom:580.912223pt;}
.y205{bottom:582.475628pt;}
.y13e{bottom:583.365246pt;}
.y174{bottom:583.366449pt;}
.yf0{bottom:586.106329pt;}
.y1e7{bottom:587.876104pt;}
.y48{bottom:591.366693pt;}
.y93{bottom:593.145374pt;}
.y65{bottom:593.445214pt;}
.y182{bottom:593.887778pt;}
.yc0{bottom:594.772930pt;}
.y204{bottom:596.264105pt;}
.y3a{bottom:597.149867pt;}
.y13d{bottom:597.152520pt;}
.y173{bottom:597.153724pt;}
.yef{bottom:599.967035pt;}
.y1e6{bottom:601.663378pt;}
.y47{bottom:605.227399pt;}
.y92{bottom:606.933852pt;}
.y181{bottom:607.748485pt;}
.y64{bottom:607.971630pt;}
.ybf{bottom:608.560204pt;}
.y39{bottom:611.006507pt;}
.y13c{bottom:611.013226pt;}
.y172{bottom:611.014430pt;}
.y1e5{bottom:616.265634pt;}
.y1cd{bottom:618.867867pt;}
.y46{bottom:619.088106pt;}
.y180{bottom:621.609191pt;}
.y91{bottom:621.610744pt;}
.y63{bottom:621.832337pt;}
.ybe{bottom:622.347478pt;}
.y38{bottom:624.794985pt;}
.y13b{bottom:624.872729pt;}
.y171{bottom:624.873933pt;}
.yee{bottom:627.540380pt;}
.y1e4{bottom:630.126340pt;}
.y45{bottom:632.800744pt;}
.y90{bottom:635.471451pt;}
.y62{bottom:635.619611pt;}
.ybd{bottom:636.208185pt;}
.y17f{bottom:636.211447pt;}
.y13a{bottom:638.585367pt;}
.y170{bottom:638.586571pt;}
.y11{bottom:638.705733pt;}
.yb{bottom:640.128933pt;}
.y1e3{bottom:643.913614pt;}
.y61{bottom:649.408089pt;}
.ybc{bottom:649.995459pt;}
.y8f{bottom:649.999070pt;}
.y17e{bottom:650.888339pt;}
.y11b{bottom:652.372641pt;}
.y37{bottom:652.442965pt;}
.y139{bottom:652.446074pt;}
.y16f{bottom:652.447278pt;}
.y1e2{bottom:657.554023pt;}
.y1cc{bottom:659.857966pt;}
.y44{bottom:660.523361pt;}
.y60{bottom:663.267592pt;}
.ybb{bottom:663.856166pt;}
.y17d{bottom:665.417162pt;}
.y11a{bottom:666.084075pt;}
.y36{bottom:666.302468pt;}
.y138{bottom:666.306780pt;}
.yed{bottom:666.307984pt;}
.y1e1{bottom:670.674385pt;}
.y1cb{bottom:670.902267pt;}
.y43{bottom:674.310635pt;}
.y5f{bottom:677.128298pt;}
.y8e{bottom:677.573618pt;}
.yba{bottom:677.643440pt;}
.y17c{bottom:679.276665pt;}
.y35{bottom:680.015106pt;}
.y137{bottom:680.018214pt;}
.yec{bottom:680.019418pt;}
.y119{bottom:680.020622pt;}
.y1e0{bottom:683.794746pt;}
.y42{bottom:688.099113pt;}
.y5e{bottom:690.840936pt;}
.yb9{bottom:691.430714pt;}
.y118{bottom:693.732056pt;}
.y34{bottom:693.803584pt;}
.y136{bottom:693.878921pt;}
.yeb{bottom:693.880125pt;}
.y1df{bottom:696.915108pt;}
.y41{bottom:701.887591pt;}
.y5d{bottom:704.701643pt;}
.yb8{bottom:705.291420pt;}
.y5{bottom:707.461333pt;}
.y117{bottom:707.592763pt;}
.y135{bottom:707.666195pt;}
.y16e{bottom:707.667399pt;}
.y1de{bottom:710.035469pt;}
.y40{bottom:715.747094pt;}
.y5c{bottom:718.488917pt;}
.yb7{bottom:719.079898pt;}
.y8d{bottom:719.082306pt;}
.yea{bottom:721.455877pt;}
.y33{bottom:721.526201pt;}
.y134{bottom:721.526902pt;}
.y116{bottom:721.528106pt;}
.y4{bottom:722.794667pt;}
.y1dd{bottom:723.155831pt;}
.y5b{bottom:732.349623pt;}
.yb6{bottom:732.868376pt;}
.y8c{bottom:732.870784pt;}
.y115{bottom:735.240743pt;}
.y32{bottom:735.313475pt;}
.y133{bottom:735.314176pt;}
.y16d{bottom:735.315380pt;}
.y1dc{bottom:736.276192pt;}
.y3{bottom:738.128000pt;}
.y3f{bottom:743.321642pt;}
.y5a{bottom:746.136898pt;}
.yb5{bottom:746.727879pt;}
.y8b{bottom:746.730287pt;}
.y31{bottom:749.100749pt;}
.y114{bottom:749.101450pt;}
.y132{bottom:749.102654pt;}
.y16c{bottom:749.103858pt;}
.y1db{bottom:749.396554pt;}
.y3e{bottom:757.182349pt;}
.y59{bottom:759.924172pt;}
.y8a{bottom:761.332543pt;}
.y1da{bottom:762.516915pt;}
.y113{bottom:762.888724pt;}
.y30{bottom:762.961456pt;}
.ye9{bottom:762.963361pt;}
.y3d{bottom:771.043056pt;}
.y58{bottom:773.784878pt;}
.yb4{bottom:774.303631pt;}
.y89{bottom:775.121020pt;}
.y1d9{bottom:775.637277pt;}
.y2f{bottom:776.748730pt;}
.ye8{bottom:776.824067pt;}
.y112{bottom:776.897500pt;}
.y57{bottom:787.572153pt;}
.y1d8{bottom:788.757638pt;}
.y88{bottom:788.981727pt;}
.ye7{bottom:790.536705pt;}
.y3c{bottom:798.616400pt;}
.y56{bottom:801.359427pt;}
.y1d7{bottom:801.878000pt;}
.y87{bottom:802.842434pt;}
.ye6{bottom:804.397412pt;}
.y2e{bottom:804.397915pt;}
.y7{bottom:811.842000pt;}
.y55{bottom:815.220133pt;}
.yb3{bottom:815.812319pt;}
.y86{bottom:817.370053pt;}
.ye5{bottom:818.258118pt;}
.y2d{bottom:818.258622pt;}
.yb2{bottom:830.414575pt;}
.y85{bottom:831.230760pt;}
.y1d6{bottom:831.897324pt;}
.y3b{bottom:831.897733pt;}
.y2c{bottom:831.971259pt;}
.ye4{bottom:832.045393pt;}
.y84{bottom:845.091467pt;}
.y54{bottom:845.684400pt;}
.y2b{bottom:845.758533pt;}
.ye3{bottom:845.832667pt;}
.he{height:32.000000pt;}
.h12{height:35.055044pt;}
.hf{height:35.548843pt;}
.h3{height:38.828125pt;}
.h9{height:40.014010pt;}
.h11{height:43.192822pt;}
.h15{height:43.193279pt;}
.h13{height:43.194565pt;}
.h14{height:43.196082pt;}
.h10{height:44.637398pt;}
.h4{height:48.000000pt;}
.h6{height:50.130208pt;}
.h2{height:57.990127pt;}
.h5{height:60.000000pt;}
.hd{height:60.156250pt;}
.h8{height:96.000000pt;}
.h7{height:101.664000pt;}
.ha{height:906.666667pt;}
.hb{height:907.086667pt;}
.hc{height:907.333333pt;}
.h17{height:909.333333pt;}
.h16{height:909.335600pt;}
.h0{height:910.426267pt;}
.h1{height:910.666667pt;}
.w3{width:642.520000pt;}
.w2{width:642.666667pt;}
.w0{width:648.426667pt;}
.w1{width:648.666667pt;}
.w5{width:661.333333pt;}
.w4{width:661.532667pt;}
.x2{left:-493.976000pt;}
.xa{left:-29.277600pt;}
.x0{left:0.000000pt;}
.x3{left:52.460133pt;}
.xe{left:81.884800pt;}
.x4{left:103.742800pt;}
.x20{left:117.642533pt;}
.x24{left:120.830231pt;}
.x15{left:132.902800pt;}
.x6{left:135.693333pt;}
.x21{left:139.287097pt;}
.x25{left:142.400158pt;}
.x13{left:155.244267pt;}
.x14{left:157.468133pt;}
.xb{left:158.923867pt;}
.x16{left:159.932133pt;}
.x22{left:160.857024pt;}
.x27{left:166.466000pt;}
.x23{left:176.644400pt;}
.x1f{left:179.312800pt;}
.x9{left:194.112267pt;}
.x12{left:204.639067pt;}
.x19{left:218.236133pt;}
.xd{left:229.487333pt;}
.xf{left:237.548800pt;}
.x5{left:245.350533pt;}
.x1c{left:251.388133pt;}
.x1b{left:256.422800pt;}
.x11{left:262.889733pt;}
.x1d{left:266.097467pt;}
.x7{left:267.759067pt;}
.x1{left:271.157200pt;}
.x10{left:274.338267pt;}
.x18{left:298.876133pt;}
.x1e{left:301.937467pt;}
.x17{left:303.804133pt;}
.x1a{left:309.126800pt;}
.xc{left:412.106400pt;}
.x8{left:448.921467pt;}
.x2f{left:631.164400pt;}
.x28{left:712.902133pt;}
.x29{left:764.184800pt;}
.x2b{left:796.135333pt;}
.x2e{left:854.554267pt;}
.x2a{left:905.792533pt;}
.x2c{left:928.201067pt;}
.x26{left:931.599200pt;}
.x2d{left:1109.363467pt;}
}




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