
    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_d77845fd00e67155f64ecdaf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911621;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_c4b889def59b71f907b18ca1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_4d5c6d0dd46e1bf53a67c8c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_f1c76587ab17f2ff71a5ff54.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_55e48db630df86149479e130.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_d66883dcba5b864913025f62.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_0c586edaf325eefede09252c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_5143df55761aed554d4a34b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ca645e207cb0a79159efcc93.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fd964aa6f4104de5ceb45af7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_aaa1c478bb28dae967d30c62.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;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_5f72a6762709a1ea9d952ca7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e33cc0d87324c3be47be7685.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.674316;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_1947b9c9a6e48df2a7b5d36b.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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_1055dd854f86ced1754cbc3f.woff2')format("woff");}.fff{font-family:fff;line-height:0.740234;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_dcb1341dfaf5f67b94ce4d39.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.862793;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m7{transform:matrix(0.249601,-0.016291,0.016297,0.249468,0,0);-ms-transform:matrix(0.249601,-0.016291,0.016297,0.249468,0,0);-webkit-transform:matrix(0.249601,-0.016291,0.016297,0.249468,0,0);}
.m1{transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249893,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249895,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249926,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250133,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250136,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250144,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.806000px;}
.ls36{letter-spacing:-6.450000px;}
.ls7d{letter-spacing:-1.393442px;}
.ls79{letter-spacing:-1.002893px;}
.ls8b{letter-spacing:-0.891996px;}
.ls4b{letter-spacing:-0.668976px;}
.ls2d{letter-spacing:-0.464168px;}
.ls6f{letter-spacing:-0.442002px;}
.ls8a{letter-spacing:-0.433944px;}
.ls91{letter-spacing:-0.424301px;}
.ls30{letter-spacing:-0.420989px;}
.ls8d{letter-spacing:-0.409836px;}
.ls85{letter-spacing:-0.400193px;}
.ls59{letter-spacing:-0.380906px;}
.ls92{letter-spacing:-0.366442px;}
.ls82{letter-spacing:-0.361620px;}
.ls70{letter-spacing:-0.358380px;}
.ls89{letter-spacing:-0.356798px;}
.ls4e{letter-spacing:-0.334488px;}
.ls94{letter-spacing:-0.308582px;}
.ls33{letter-spacing:-0.298939px;}
.ls7f{letter-spacing:-0.270010px;}
.ls25{letter-spacing:-0.265188px;}
.ls90{letter-spacing:-0.260366px;}
.ls80{letter-spacing:-0.231437px;}
.ls84{letter-spacing:-0.221794px;}
.ls2c{letter-spacing:-0.210495px;}
.ls2f{letter-spacing:-0.118741px;}
.ls28{letter-spacing:-0.091754px;}
.ls5b{letter-spacing:-0.089595px;}
.ls3e{letter-spacing:-0.065703px;}
.ls35{letter-spacing:-0.047784px;}
.ls93{letter-spacing:-0.043394px;}
.ls5e{letter-spacing:-0.041811px;}
.ls6b{letter-spacing:-0.024489px;}
.ls43{letter-spacing:-0.023892px;}
.ls67{letter-spacing:-0.019591px;}
.ls6a{letter-spacing:-0.014693px;}
.ls26{letter-spacing:-0.014393px;}
.ls62{letter-spacing:-0.012930px;}
.ls29{letter-spacing:-0.010795px;}
.ls68{letter-spacing:-0.009795px;}
.ls64{letter-spacing:-0.009698px;}
.ls54{letter-spacing:-0.007256px;}
.ls63{letter-spacing:-0.006465px;}
.ls2a{letter-spacing:-0.005397px;}
.ls65{letter-spacing:-0.004898px;}
.ls4f{letter-spacing:-0.004675px;}
.ls53{letter-spacing:-0.003628px;}
.ls5f{letter-spacing:-0.003233px;}
.ls34{letter-spacing:0.000000px;}
.ls50{letter-spacing:0.002599px;}
.ls22{letter-spacing:0.003000px;}
.ls61{letter-spacing:0.003233px;}
.ls52{letter-spacing:0.003628px;}
.ls23{letter-spacing:0.003924px;}
.ls51{letter-spacing:0.004675px;}
.ls6c{letter-spacing:0.004898px;}
.ls7{letter-spacing:0.005397px;}
.ls19{letter-spacing:0.005973px;}
.ls60{letter-spacing:0.006465px;}
.ls8c{letter-spacing:0.009643px;}
.ls69{letter-spacing:0.009795px;}
.ls21{letter-spacing:0.011946px;}
.lsd{letter-spacing:0.017919px;}
.ls31{letter-spacing:0.021589px;}
.ls1a{letter-spacing:0.023892px;}
.ls8f{letter-spacing:0.024108px;}
.ls66{letter-spacing:0.024489px;}
.ls24{letter-spacing:0.025152px;}
.ls1e{letter-spacing:0.029865px;}
.ls6{letter-spacing:0.035838px;}
.ls42{letter-spacing:0.038573px;}
.ls11{letter-spacing:0.041811px;}
.ls27{letter-spacing:0.043178px;}
.lsf{letter-spacing:0.047784px;}
.ls7a{letter-spacing:0.048216px;}
.ls0{letter-spacing:0.052965px;}
.ls1{letter-spacing:0.053757px;}
.lsa{letter-spacing:0.059730px;}
.lsb{letter-spacing:0.065703px;}
.ls16{letter-spacing:0.071676px;}
.ls7c{letter-spacing:0.072324px;}
.ls12{letter-spacing:0.077649px;}
.ls17{letter-spacing:0.083622px;}
.ls73{letter-spacing:0.086760px;}
.ls9{letter-spacing:0.089595px;}
.ls1d{letter-spacing:0.095568px;}
.ls2b{letter-spacing:0.097151px;}
.ls20{letter-spacing:0.101541px;}
.ls3{letter-spacing:0.107514px;}
.ls18{letter-spacing:0.113487px;}
.ls1b{letter-spacing:0.119460px;}
.ls13{letter-spacing:0.125433px;}
.ls15{letter-spacing:0.131406px;}
.ls37{letter-spacing:0.137379px;}
.ls81{letter-spacing:0.139826px;}
.lsc{letter-spacing:0.143352px;}
.ls1f{letter-spacing:0.149325px;}
.ls8e{letter-spacing:0.154291px;}
.ls1c{letter-spacing:0.155298px;}
.ls10{letter-spacing:0.161271px;}
.ls87{letter-spacing:0.163934px;}
.ls5{letter-spacing:0.167244px;}
.ls4{letter-spacing:0.173217px;}
.lse{letter-spacing:0.179190px;}
.ls47{letter-spacing:0.185163px;}
.ls88{letter-spacing:0.188042px;}
.ls8{letter-spacing:0.191136px;}
.ls78{letter-spacing:0.192864px;}
.ls55{letter-spacing:0.197109px;}
.ls96{letter-spacing:0.202507px;}
.ls3c{letter-spacing:0.203082px;}
.ls14{letter-spacing:0.209055px;}
.ls48{letter-spacing:0.215028px;}
.ls5c{letter-spacing:0.216972px;}
.ls45{letter-spacing:0.221001px;}
.ls4c{letter-spacing:0.221794px;}
.ls6e{letter-spacing:0.226615px;}
.ls57{letter-spacing:0.226974px;}
.ls95{letter-spacing:0.231437px;}
.ls3d{letter-spacing:0.232947px;}
.ls5d{letter-spacing:0.236258px;}
.ls39{letter-spacing:0.238920px;}
.ls3f{letter-spacing:0.245902px;}
.ls86{letter-spacing:0.250723px;}
.ls56{letter-spacing:0.250866px;}
.ls4d{letter-spacing:0.255545px;}
.ls32{letter-spacing:0.256839px;}
.ls44{letter-spacing:0.260366px;}
.ls3b{letter-spacing:0.262812px;}
.ls83{letter-spacing:0.270010px;}
.ls76{letter-spacing:0.279624px;}
.ls7e{letter-spacing:0.284474px;}
.ls40{letter-spacing:0.292677px;}
.ls41{letter-spacing:0.298650px;}
.ls4a{letter-spacing:0.310596px;}
.ls2e{letter-spacing:0.323838px;}
.ls5a{letter-spacing:0.328515px;}
.ls7b{letter-spacing:0.433944px;}
.ls75{letter-spacing:0.438816px;}
.ls72{letter-spacing:13.140600px;}
.ls71{letter-spacing:13.260060px;}
.ls49{letter-spacing:15.105717px;}
.ls2{letter-spacing:15.470070px;}
.ls77{letter-spacing:25.361616px;}
.ls3a{letter-spacing:32.015280px;}
.ls74{letter-spacing:32.015424px;}
.ls58{letter-spacing:40.496940px;}
.ls38{letter-spacing:57.460260px;}
.ls6d{letter-spacing:57.561801px;}
.ls46{letter-spacing:64.150020px;}
.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;}
}
.ws71{word-spacing:-35.679840px;}
.wsd1{word-spacing:-30.038217px;}
.ws77{word-spacing:-15.231150px;}
.ws79{word-spacing:-15.135582px;}
.ws117{word-spacing:-15.129609px;}
.wsd6{word-spacing:-15.117663px;}
.ws19d{word-spacing:-15.087798px;}
.ws6{word-spacing:-15.045987px;}
.ws76{word-spacing:-15.034041px;}
.wsd3{word-spacing:-15.022095px;}
.ws72{word-spacing:-15.016122px;}
.ws75{word-spacing:-15.010149px;}
.ws19c{word-spacing:-15.004176px;}
.ws161{word-spacing:-14.986257px;}
.ws4{word-spacing:-14.980284px;}
.ws78{word-spacing:-14.974311px;}
.ws160{word-spacing:-14.968338px;}
.ws5{word-spacing:-14.962365px;}
.ws19b{word-spacing:-14.944446px;}
.wsd5{word-spacing:-14.932500px;}
.ws73{word-spacing:-14.866797px;}
.wsd2{word-spacing:-14.263524px;}
.ws7{word-spacing:-13.443000px;}
.ws0{word-spacing:-13.401496px;}
.ws1a6{word-spacing:-12.290258px;}
.wsd4{word-spacing:-12.275794px;}
.ws1a1{word-spacing:-12.193826px;}
.ws19f{word-spacing:-12.102216px;}
.ws1a5{word-spacing:-12.063643px;}
.ws1a4{word-spacing:-12.054000px;}
.ws1a2{word-spacing:-11.832206px;}
.ws2{word-spacing:-11.755061px;}
.ws1a3{word-spacing:-11.653807px;}
.ws19e{word-spacing:-11.051107px;}
.ws17c{word-spacing:-3.512124px;}
.wsbd{word-spacing:-3.494205px;}
.wsbe{word-spacing:-3.452394px;}
.ws4c{word-spacing:-3.440448px;}
.wsb2{word-spacing:-3.428502px;}
.ws3e{word-spacing:-3.410583px;}
.ws6e{word-spacing:-3.404610px;}
.ws74{word-spacing:-3.326961px;}
.ws17{word-spacing:-3.265367px;}
.ws15{word-spacing:-3.033283px;}
.ws11a{word-spacing:-2.938716px;}
.ws167{word-spacing:-2.831202px;}
.ws193{word-spacing:-2.813283px;}
.ws23{word-spacing:-2.801337px;}
.wsa3{word-spacing:-2.789391px;}
.wsb5{word-spacing:-2.747580px;}
.ws42{word-spacing:-2.729661px;}
.ws1ae{word-spacing:-2.723688px;}
.ws1af{word-spacing:-2.717715px;}
.ws141{word-spacing:-2.699796px;}
.ws192{word-spacing:-2.693823px;}
.ws43{word-spacing:-2.687850px;}
.ws102{word-spacing:-2.675904px;}
.ws1cb{word-spacing:-2.299903px;}
.ws14{word-spacing:-2.234482px;}
.ws139{word-spacing:-2.078604px;}
.wsbb{word-spacing:-2.030820px;}
.ws4e{word-spacing:-2.012901px;}
.ws88{word-spacing:-2.006928px;}
.ws1ce{word-spacing:-2.000964px;}
.ws173{word-spacing:-2.000955px;}
.ws124{word-spacing:-1.994982px;}
.ws126{word-spacing:-1.989009px;}
.ws48{word-spacing:-1.983036px;}
.ws18{word-spacing:-1.980809px;}
.ws89{word-spacing:-1.953171px;}
.ws172{word-spacing:-1.947198px;}
.ws4d{word-spacing:-1.923306px;}
.ws1cf{word-spacing:-1.745419px;}
.ws1c0{word-spacing:-1.730954px;}
.ws1d0{word-spacing:-1.552555px;}
.ws1d2{word-spacing:-1.499518px;}
.ws116{word-spacing:-1.493250px;}
.ws6c{word-spacing:-1.433520px;}
.wse1{word-spacing:-1.409628px;}
.wse2{word-spacing:-1.326006px;}
.ws1ad{word-spacing:-1.320033px;}
.ws16d{word-spacing:-1.308087px;}
.ws1ab{word-spacing:-1.302114px;}
.ws9a{word-spacing:-1.284195px;}
.ws100{word-spacing:-1.278222px;}
.ws180{word-spacing:-1.266276px;}
.ws149{word-spacing:-1.260303px;}
.ws1b0{word-spacing:-1.236411px;}
.ws10{word-spacing:-1.230584px;}
.ws145{word-spacing:-1.188627px;}
.wsa{word-spacing:-0.781236px;}
.ws1d9{word-spacing:-0.781099px;}
.ws1d7{word-spacing:-0.747348px;}
.ws169{word-spacing:-0.686895px;}
.ws13c{word-spacing:-0.609246px;}
.wsa8{word-spacing:-0.597300px;}
.ws5c{word-spacing:-0.591327px;}
.ws5d{word-spacing:-0.543543px;}
.ws16a{word-spacing:-0.537570px;}
.ws1c3{word-spacing:-0.173578px;}
.ws1b9{word-spacing:-0.168756px;}
.ws1ca{word-spacing:-0.149470px;}
.wsd8{word-spacing:-0.135005px;}
.ws101{word-spacing:-0.110897px;}
.ws197{word-spacing:-0.106075px;}
.ws80{word-spacing:-0.101254px;}
.ws155{word-spacing:-0.091610px;}
.ws65{word-spacing:-0.089595px;}
.wsdd{word-spacing:-0.083622px;}
.ws17e{word-spacing:-0.081967px;}
.ws1bd{word-spacing:-0.077146px;}
.ws134{word-spacing:-0.072324px;}
.wsde{word-spacing:-0.071676px;}
.wsd0{word-spacing:-0.065703px;}
.ws17d{word-spacing:-0.059730px;}
.wsdc{word-spacing:-0.041811px;}
.wsfd{word-spacing:-0.035838px;}
.ws1bf{word-spacing:-0.019286px;}
.wsed{word-spacing:-0.017919px;}
.wse{word-spacing:-0.011946px;}
.wsa4{word-spacing:-0.005973px;}
.ws15c{word-spacing:-0.004898px;}
.ws113{word-spacing:-0.003628px;}
.ws15a{word-spacing:-0.003233px;}
.ws9{word-spacing:0.000000px;}
.ws111{word-spacing:0.003628px;}
.ws110{word-spacing:0.004675px;}
.ws112{word-spacing:0.005199px;}
.wsd{word-spacing:0.005973px;}
.ws114{word-spacing:0.007256px;}
.ws1d6{word-spacing:0.009643px;}
.ws7f{word-spacing:0.010655px;}
.ws142{word-spacing:0.011946px;}
.ws15b{word-spacing:0.016163px;}
.wseb{word-spacing:0.017919px;}
.ws51{word-spacing:0.023892px;}
.ws15d{word-spacing:0.024489px;}
.ws15e{word-spacing:0.029386px;}
.ws2d{word-spacing:0.035838px;}
.ws52{word-spacing:0.041811px;}
.ws64{word-spacing:0.047784px;}
.wsc{word-spacing:0.053757px;}
.wsf9{word-spacing:0.059730px;}
.ws8f{word-spacing:0.065703px;}
.ws53{word-spacing:0.071676px;}
.ws1f{word-spacing:0.077649px;}
.wsb{word-spacing:0.083622px;}
.ws1a{word-spacing:0.086357px;}
.ws5f{word-spacing:0.089595px;}
.wsad{word-spacing:0.091610px;}
.ws37{word-spacing:0.095568px;}
.wsca{word-spacing:0.101541px;}
.ws1b{word-spacing:0.102549px;}
.ws95{word-spacing:0.107514px;}
.wsac{word-spacing:0.113487px;}
.ws60{word-spacing:0.119460px;}
.ws94{word-spacing:0.131406px;}
.ws40{word-spacing:0.137379px;}
.ws130{word-spacing:0.143352px;}
.wsc1{word-spacing:0.149325px;}
.ws10f{word-spacing:0.155298px;}
.ws125{word-spacing:0.161271px;}
.wscf{word-spacing:0.167244px;}
.ws146{word-spacing:0.173217px;}
.ws13e{word-spacing:0.203082px;}
.ws159{word-spacing:0.221001px;}
.ws8{word-spacing:0.409836px;}
.ws1d5{word-spacing:0.453230px;}
.ws19{word-spacing:0.474962px;}
.ws11f{word-spacing:0.482160px;}
.ws1d1{word-spacing:0.511090px;}
.wsa0{word-spacing:0.573408px;}
.ws1b8{word-spacing:0.578592px;}
.ws1cd{word-spacing:0.617165px;}
.ws69{word-spacing:0.686895px;}
.ws1cc{word-spacing:0.728062px;}
.ws17a{word-spacing:0.734679px;}
.wsf6{word-spacing:0.740652px;}
.ws18b{word-spacing:0.752598px;}
.ws5b{word-spacing:0.758571px;}
.ws67{word-spacing:0.764544px;}
.ws5a{word-spacing:0.782463px;}
.ws39{word-spacing:0.794409px;}
.ws17b{word-spacing:0.800382px;}
.ws9f{word-spacing:0.806355px;}
.ws13b{word-spacing:0.812328px;}
.ws1b2{word-spacing:0.824494px;}
.ws1ac{word-spacing:0.842193px;}
.wsf{word-spacing:0.860112px;}
.ws30{word-spacing:1.385736px;}
.ws12a{word-spacing:1.457412px;}
.ws31{word-spacing:1.493250px;}
.wse0{word-spacing:1.505196px;}
.ws13d{word-spacing:1.529088px;}
.ws120{word-spacing:1.535061px;}
.ws46{word-spacing:1.541034px;}
.ws47{word-spacing:1.552980px;}
.ws9d{word-spacing:1.977063px;}
.ws119{word-spacing:2.006928px;}
.ws118{word-spacing:2.054712px;}
.ws26{word-spacing:2.090550px;}
.ws34{word-spacing:2.138334px;}
.ws182{word-spacing:2.144307px;}
.ws187{word-spacing:2.150280px;}
.ws12b{word-spacing:2.168199px;}
.ws87{word-spacing:2.174172px;}
.ws86{word-spacing:2.186118px;}
.ws35{word-spacing:2.215983px;}
.ws12f{word-spacing:2.227929px;}
.ws36{word-spacing:2.233902px;}
.ws12c{word-spacing:2.239875px;}
.wsf4{word-spacing:2.251821px;}
.wsb9{word-spacing:2.257794px;}
.wsba{word-spacing:2.299605px;}
.ws1d4{word-spacing:2.733847px;}
.ws6f{word-spacing:2.742000px;}
.ws70{word-spacing:2.748000px;}
.ws1c4{word-spacing:2.748312px;}
.ws14b{word-spacing:2.819256px;}
.ws9c{word-spacing:2.849121px;}
.wsfa{word-spacing:2.884959px;}
.wsa1{word-spacing:2.896905px;}
.wsa9{word-spacing:2.902878px;}
.ws9b{word-spacing:2.908851px;}
.wsd9{word-spacing:2.926770px;}
.ws66{word-spacing:2.932743px;}
.wsfc{word-spacing:2.938716px;}
.ws14a{word-spacing:2.944689px;}
.wsf2{word-spacing:2.950662px;}
.ws14d{word-spacing:2.956635px;}
.wsfb{word-spacing:2.962608px;}
.ws1a7{word-spacing:2.998446px;}
.ws25{word-spacing:3.004419px;}
.wsa2{word-spacing:3.010392px;}
.ws1d3{word-spacing:3.013500px;}
.wsb7{word-spacing:3.470313px;}
.ws3c{word-spacing:3.488232px;}
.wsb8{word-spacing:3.541989px;}
.ws10e{word-spacing:3.607692px;}
.ws3d{word-spacing:3.637557px;}
.ws188{word-spacing:3.643530px;}
.wsb6{word-spacing:3.655476px;}
.ws10d{word-spacing:3.667422px;}
.ws83{word-spacing:3.673395px;}
.ws63{word-spacing:3.703260px;}
.ws13{word-spacing:3.934632px;}
.ws166{word-spacing:4.234857px;}
.ws1be{word-spacing:4.257473px;}
.wsbc{word-spacing:4.276668px;}
.ws16{word-spacing:4.312443px;}
.ws50{word-spacing:4.318479px;}
.ws4f{word-spacing:4.342371px;}
.ws165{word-spacing:4.348344px;}
.ws38{word-spacing:4.360290px;}
.ws174{word-spacing:4.366263px;}
.ws96{word-spacing:4.372236px;}
.ws17f{word-spacing:4.414047px;}
.wsb0{word-spacing:4.437939px;}
.ws1ba{word-spacing:4.874638px;}
.ws1bb{word-spacing:4.889102px;}
.ws44{word-spacing:5.023293px;}
.ws14e{word-spacing:5.047185px;}
.ws8e{word-spacing:5.071077px;}
.ws14f{word-spacing:5.094969px;}
.ws92{word-spacing:5.112888px;}
.wsb3{word-spacing:5.130807px;}
.ws93{word-spacing:5.136780px;}
.ws184{word-spacing:5.160672px;}
.ws11{word-spacing:5.197600px;}
.wsb4{word-spacing:5.202483px;}
.ws183{word-spacing:5.668377px;}
.wsee{word-spacing:5.769918px;}
.wsc7{word-spacing:5.817702px;}
.wsf5{word-spacing:5.829648px;}
.wsef{word-spacing:5.841594px;}
.wsff{word-spacing:5.847567px;}
.wsc8{word-spacing:5.871459px;}
.ws1c1{word-spacing:6.417550px;}
.wse3{word-spacing:6.480705px;}
.ws195{word-spacing:6.498624px;}
.ws129{word-spacing:6.516543px;}
.ws194{word-spacing:6.522516px;}
.ws136{word-spacing:6.540435px;}
.ws16b{word-spacing:6.576273px;}
.ws3{word-spacing:7.137735px;}
.ws108{word-spacing:7.167600px;}
.ws33{word-spacing:7.191492px;}
.ws175{word-spacing:7.239276px;}
.ws6b{word-spacing:7.245249px;}
.wsbf{word-spacing:7.257195px;}
.ws6a{word-spacing:7.275114px;}
.ws1a9{word-spacing:7.281087px;}
.ws127{word-spacing:7.287060px;}
.ws32{word-spacing:7.328871px;}
.ws16c{word-spacing:7.358736px;}
.wse7{word-spacing:7.896306px;}
.ws18d{word-spacing:7.926171px;}
.wsc2{word-spacing:7.932144px;}
.ws18e{word-spacing:7.944090px;}
.ws59{word-spacing:7.997847px;}
.ws58{word-spacing:8.015766px;}
.wsa6{word-spacing:8.660850px;}
.ws81{word-spacing:8.678769px;}
.ws41{word-spacing:8.708634px;}
.wsa7{word-spacing:8.714607px;}
.ws84{word-spacing:8.720580px;}
.ws7a{word-spacing:8.744472px;}
.wse5{word-spacing:8.750445px;}
.wse4{word-spacing:8.780310px;}
.wsa5{word-spacing:8.786283px;}
.ws1c5{word-spacing:8.794598px;}
.ws1c9{word-spacing:9.262294px;}
.ws1b7{word-spacing:9.363547px;}
.ws164{word-spacing:9.365664px;}
.ws16e{word-spacing:9.413448px;}
.ws68{word-spacing:9.437340px;}
.wsda{word-spacing:9.449286px;}
.ws198{word-spacing:9.485124px;}
.ws163{word-spacing:9.520962px;}
.ws15f{word-spacing:9.664314px;}
.ws199{word-spacing:9.855450px;}
.ws29{word-spacing:10.052559px;}
.ws162{word-spacing:10.058532px;}
.ws191{word-spacing:10.082424px;}
.ws157{word-spacing:10.088397px;}
.ws190{word-spacing:10.112289px;}
.ws28{word-spacing:10.154100px;}
.ws7c{word-spacing:10.172019px;}
.ws27{word-spacing:10.177992px;}
.wsec{word-spacing:10.183965px;}
.ws8b{word-spacing:10.775292px;}
.ws12{word-spacing:10.794600px;}
.ws1aa{word-spacing:10.852941px;}
.wsdf{word-spacing:10.870860px;}
.ws7e{word-spacing:10.888779px;}
.ws8a{word-spacing:10.906698px;}
.ws22{word-spacing:10.936563px;}
.ws196{word-spacing:10.942536px;}
.ws7b{word-spacing:10.948509px;}
.ws185{word-spacing:10.978374px;}
.wscd{word-spacing:11.563728px;}
.ws131{word-spacing:11.587620px;}
.ws49{word-spacing:11.599566px;}
.wsdb{word-spacing:11.605539px;}
.ws11c{word-spacing:11.719026px;}
.ws4b{word-spacing:11.748891px;}
.ws1b6{word-spacing:11.870779px;}
.wsce{word-spacing:12.364110px;}
.ws4a{word-spacing:12.459678px;}
.ws1c8{word-spacing:12.830278px;}
.ws2c{word-spacing:12.961410px;}
.ws104{word-spacing:12.979329px;}
.wsb1{word-spacing:13.003221px;}
.ws189{word-spacing:13.021140px;}
.ws2b{word-spacing:13.039059px;}
.ws103{word-spacing:13.051005px;}
.ws18c{word-spacing:13.056978px;}
.wse6{word-spacing:13.516899px;}
.ws24{word-spacing:13.618440px;}
.ws54{word-spacing:13.714008px;}
.ws186{word-spacing:13.719981px;}
.ws6d{word-spacing:13.737900px;}
.ws178{word-spacing:13.749846px;}
.ws62{word-spacing:13.767765px;}
.ws179{word-spacing:13.785684px;}
.ws177{word-spacing:13.809576px;}
.ws156{word-spacing:14.430768px;}
.ws133{word-spacing:14.484525px;}
.ws128{word-spacing:14.496471px;}
.ws115{word-spacing:14.633850px;}
.ws1bc{word-spacing:14.985533px;}
.ws10b{word-spacing:15.123636px;}
.wsf0{word-spacing:15.141555px;}
.ws154{word-spacing:15.159474px;}
.ws5e{word-spacing:15.165447px;}
.ws85{word-spacing:15.213231px;}
.ws3f{word-spacing:15.225177px;}
.ws10c{word-spacing:15.237123px;}
.ws135{word-spacing:15.302826px;}
.ws1d8{word-spacing:15.756989px;}
.ws55{word-spacing:15.864288px;}
.ws181{word-spacing:15.900126px;}
.ws140{word-spacing:15.906099px;}
.wsaf{word-spacing:15.924018px;}
.ws2a{word-spacing:15.935964px;}
.wsab{word-spacing:15.941937px;}
.wsf8{word-spacing:15.947910px;}
.wsc3{word-spacing:16.569102px;}
.ws9e{word-spacing:16.575075px;}
.wsc9{word-spacing:16.592994px;}
.ws82{word-spacing:16.610913px;}
.wsc4{word-spacing:16.634805px;}
.ws18f{word-spacing:16.646751px;}
.ws1d{word-spacing:17.321700px;}
.ws16f{word-spacing:17.339619px;}
.ws147{word-spacing:17.357538px;}
.ws1c6{word-spacing:17.883314px;}
.ws2e{word-spacing:17.936919px;}
.ws122{word-spacing:17.972757px;}
.ws1a8{word-spacing:18.002622px;}
.ws12e{word-spacing:18.020541px;}
.ws170{word-spacing:18.032487px;}
.ws1e{word-spacing:18.062352px;}
.ws152{word-spacing:18.068325px;}
.ws12d{word-spacing:18.092217px;}
.ws123{word-spacing:18.116109px;}
.ws153{word-spacing:18.134028px;}
.ws105{word-spacing:18.743274px;}
.ws8c{word-spacing:18.749247px;}
.ws91{word-spacing:18.779112px;}
.ws1c7{word-spacing:19.021212px;}
.ws1b3{word-spacing:19.291222px;}
.ws1b4{word-spacing:19.315330px;}
.ws13f{word-spacing:19.477953px;}
.ws121{word-spacing:19.483926px;}
.ws8d{word-spacing:19.531710px;}
.ws1b5{word-spacing:19.845706px;}
.ws148{word-spacing:20.206659px;}
.ws7d{word-spacing:20.212632px;}
.wscc{word-spacing:20.248470px;}
.ws106{word-spacing:20.881608px;}
.ws107{word-spacing:20.887581px;}
.ws171{word-spacing:20.917446px;}
.ws13a{word-spacing:21.652125px;}
.ws19a{word-spacing:21.681990px;}
.ws138{word-spacing:22.201641px;}
.ws176{word-spacing:22.404723px;}
.ws45{word-spacing:22.410696px;}
.ws137{word-spacing:22.446534px;}
.ws20{word-spacing:23.127456px;}
.ws1c2{word-spacing:23.640305px;}
.wsc0{word-spacing:24.578895px;}
.wscb{word-spacing:25.212033px;}
.ws158{word-spacing:25.253844px;}
.ws1b1{word-spacing:25.265790px;}
.ws11d{word-spacing:25.886982px;}
.ws109{word-spacing:25.916847px;}
.ws10a{word-spacing:25.940739px;}
.wsae{word-spacing:25.946712px;}
.ws90{word-spacing:25.982550px;}
.wsaa{word-spacing:26.627634px;}
.ws61{word-spacing:26.741121px;}
.ws1c{word-spacing:27.296610px;}
.ws14c{word-spacing:28.114911px;}
.ws132{word-spacing:28.771941px;}
.ws18a{word-spacing:28.837644px;}
.wsf1{word-spacing:28.867509px;}
.ws97{word-spacing:29.452863px;}
.ws98{word-spacing:29.506620px;}
.wse9{word-spacing:30.958059px;}
.ws57{word-spacing:31.083492px;}
.wsea{word-spacing:31.155168px;}
.wsf3{word-spacing:31.764414px;}
.ws56{word-spacing:31.782333px;}
.ws11b{word-spacing:32.899284px;}
.ws143{word-spacing:32.982906px;}
.ws144{word-spacing:33.054582px;}
.wse8{word-spacing:33.150150px;}
.ws1{word-spacing:34.386561px;}
.ws21{word-spacing:35.252646px;}
.ws150{word-spacing:36.674220px;}
.wsc5{word-spacing:36.704085px;}
.wsc6{word-spacing:36.722004px;}
.ws151{word-spacing:36.799653px;}
.wsfe{word-spacing:38.215254px;}
.ws1a0{word-spacing:38.813880px;}
.ws168{word-spacing:39.654747px;}
.ws2f{word-spacing:42.497895px;}
.ws99{word-spacing:48.303651px;}
.ws3b{word-spacing:57.663342px;}
.ws3a{word-spacing:57.693207px;}
.wsf7{word-spacing:82.122777px;}
.wsd7{word-spacing:82.224318px;}
.ws11e{word-spacing:283.985930px;}
._14{margin-left:-900.382471px;}
._15{margin-left:-849.673018px;}
._13{margin-left:-663.651855px;}
._d{margin-left:-15.565638px;}
._3{margin-left:-2.784888px;}
._1{margin-left:-1.582333px;}
._0{width:1.022179px;}
._2{width:2.345559px;}
._17{width:6.707679px;}
._19{width:11.256159px;}
._6{width:12.824031px;}
._9{width:19.213321px;}
._16{width:21.248749px;}
._f{width:22.946958px;}
._a{width:25.158276px;}
._10{width:27.165743px;}
._12{width:28.307614px;}
._8{width:33.239745px;}
._7{width:34.893754px;}
._c{width:39.941451px;}
._4{width:45.159954px;}
._b{width:46.452143px;}
._18{width:50.843772px;}
._5{width:52.759509px;}
._e{width:93.626263px;}
._11{width:474.406559px;}
.fc0{color:rgb(0,0,0);}
.fcd{color:rgb(71,71,71);}
.fc1{color:rgb(71,71,71);}
.fc2{color:rgb(60,60,60);}
.fc3{color:rgb(93,93,93);}
.fc4{color:rgb(137,137,137);}
.fc5{color:rgb(88,88,88);}
.fc6{color:rgb(229,229,229);}
.fc7{color:rgb(208,208,208);}
.fc8{color:rgb(198,198,198);}
.fc9{color:rgb(230,230,230);}
.fca{color:rgb(217,217,217);}
.fcb{color:rgb(133,133,133);}
.fcc{color:transparent;}
.fsb{font-size:25.993200px;}
.fsc{font-size:25.993284px;}
.fsd{font-size:32.325600px;}
.fsa{font-size:36.278400px;}
.fs7{font-size:45.860400px;}
.fs9{font-size:46.750200px;}
.fs0{font-size:48.216000px;}
.fse{font-size:48.977400px;}
.fs6{font-size:53.275200px;}
.fs5{font-size:53.772000px;}
.fs4{font-size:53.973000px;}
.fs3{font-size:59.730000px;}
.fs8{font-size:62.960316px;}
.fs2{font-size:66.206400px;}
.fs1{font-size:143.927400px;}
.y0{bottom:0.000000px;}
.y165{bottom:0.072000px;}
.y16d{bottom:0.072900px;}
.y169{bottom:0.073350px;}
.y197{bottom:0.109350px;}
.y18c{bottom:0.109500px;}
.y179{bottom:0.109650px;}
.y172{bottom:0.109800px;}
.y185{bottom:0.111150px;}
.y180{bottom:0.111300px;}
.y162{bottom:1.438650px;}
.y9{bottom:3.776700px;}
.yc{bottom:3.778050px;}
.y7{bottom:3.778200px;}
.y5{bottom:6.656700px;}
.y1{bottom:49.237050px;}
.y19e{bottom:49.597050px;}
.y112{bottom:53.734050px;}
.y30{bottom:112.433790px;}
.y1be{bottom:116.702700px;}
.y89{bottom:117.915562px;}
.yf3{bottom:119.344140px;}
.ye3{bottom:120.378030px;}
.y1d9{bottom:121.021200px;}
.yb3{bottom:123.356632px;}
.y54{bottom:126.619665px;}
.y2f{bottom:129.710692px;}
.y88{bottom:135.192465px;}
.y15b{bottom:136.099410px;}
.yf2{bottom:136.441852px;}
.ye2{bottom:137.475742px;}
.yb2{bottom:140.633535px;}
.y53{bottom:143.717377px;}
.y2e{bottom:146.987595px;}
.y12b{bottom:147.647700px;}
.y87{bottom:152.469367px;}
.y15a{bottom:153.197122px;}
.yf1{bottom:153.718755px;}
.yb1{bottom:157.910437px;}
.ye1{bottom:159.247327px;}
.y52{bottom:160.994280px;}
.y2d{bottom:164.264497px;}
.y86{bottom:169.746270px;}
.y159{bottom:170.474025px;}
.yf0{bottom:170.995657px;}
.yb0{bottom:175.187340px;}
.y51{bottom:178.271183px;}
.y2c{bottom:181.541400px;}
.y199{bottom:184.549500px;}
.y19a{bottom:184.658850px;}
.y19c{bottom:186.131863px;}
.ye0{bottom:186.947115px;}
.y85{bottom:187.023173px;}
.y158{bottom:187.750927px;}
.yef{bottom:188.272560px;}
.yaf{bottom:192.285052px;}
.y50{bottom:195.548085px;}
.y2b{bottom:198.668977px;}
.y196{bottom:199.213500px;}
.y198{bottom:199.322850px;}
.y195{bottom:199.323266px;}
.y19b{bottom:200.788350px;}
.ydf{bottom:204.253882px;}
.y84{bottom:204.329940px;}
.y157{bottom:205.057695px;}
.yee{bottom:205.579328px;}
.yae{bottom:209.591820px;}
.y4f{bottom:212.854853px;}
.y2a{bottom:215.945880px;}
.yde{bottom:221.530785px;}
.y192{bottom:222.162000px;}
.y193{bottom:222.271500px;}
.y156{bottom:222.334597px;}
.y83{bottom:222.502792px;}
.yed{bottom:222.856230px;}
.y194{bottom:223.738500px;}
.yad{bottom:226.868722px;}
.y4e{bottom:229.952565px;}
.y29{bottom:233.222782px;}
.ydd{bottom:238.807687px;}
.y155{bottom:239.611500px;}
.y82{bottom:239.779695px;}
.yec{bottom:239.953942px;}
.y18f{bottom:243.819000px;}
.y190{bottom:243.928500px;}
.yac{bottom:244.145625px;}
.y191{bottom:245.397822px;}
.y4d{bottom:247.229467px;}
.y28{bottom:250.499685px;}
.y18b{bottom:252.471000px;}
.y18d{bottom:252.580500px;}
.y18e{bottom:254.047500px;}
.y81{bottom:257.056598px;}
.yeb{bottom:257.230845px;}
.yab{bottom:261.422528px;}
.y4c{bottom:264.506370px;}
.y154{bottom:264.978000px;}
.y27{bottom:267.776587px;}
.ydc{bottom:273.346560px;}
.y80{bottom:274.333500px;}
.yea{bottom:274.507747px;}
.yaa{bottom:278.699430px;}
.y4b{bottom:281.783273px;}
.y187{bottom:284.104500px;}
.y188{bottom:284.215650px;}
.y26{bottom:285.053490px;}
.y18a{bottom:285.676419px;}
.ydb{bottom:290.444272px;}
.y7f{bottom:291.504570px;}
.ye9{bottom:291.784650px;}
.ya9{bottom:295.797143px;}
.y184{bottom:298.768500px;}
.y186{bottom:298.879650px;}
.y4a{bottom:299.060175px;}
.y189{bottom:300.345150px;}
.y25{bottom:302.151202px;}
.yda{bottom:307.721175px;}
.y7e{bottom:308.781472px;}
.ya8{bottom:313.074045px;}
.y49{bottom:316.337078px;}
.ye8{bottom:317.332650px;}
.y24{bottom:319.428105px;}
.yd9{bottom:324.998077px;}
.y7d{bottom:325.879185px;}
.y178{bottom:327.526500px;}
.y17a{bottom:327.636150px;}
.y17b{bottom:329.103150px;}
.ya7{bottom:330.350948px;}
.y48{bottom:333.434790px;}
.y23{bottom:336.705007px;}
.y1bd{bottom:341.799589px;}
.yd8{bottom:342.274980px;}
.y7c{bottom:344.231227px;}
.ya6{bottom:347.627850px;}
.y17f{bottom:349.081500px;}
.y181{bottom:349.192800px;}
.y183{bottom:350.653569px;}
.y47{bottom:350.711693px;}
.y22{bottom:353.981910px;}
.y1bc{bottom:359.072011px;}
.yd7{bottom:359.551882px;}
.y7b{bottom:361.508130px;}
.y17d{bottom:363.745500px;}
.y17c{bottom:363.852615px;}
.y17e{bottom:363.855150px;}
.ya5{bottom:364.904752px;}
.y182{bottom:365.322300px;}
.y46{bottom:367.988595px;}
.y21{bottom:371.258812px;}
.y1bb{bottom:376.342941px;}
.yd6{bottom:376.649595px;}
.y175{bottom:378.034500px;}
.y176{bottom:378.144300px;}
.y7a{bottom:378.785032px;}
.y177{bottom:379.611300px;}
.ya4{bottom:382.002465px;}
.y45{bottom:385.265497px;}
.y20{bottom:388.356525px;}
.y1ba{bottom:393.613870px;}
.yd5{bottom:393.926497px;}
.y171{bottom:395.356500px;}
.y173{bottom:395.466300px;}
.y174{bottom:396.933300px;}
.ya3{bottom:399.279367px;}
.y79{bottom:400.377427px;}
.y44{bottom:402.542400px;}
.y1f{bottom:405.633427px;}
.y1d8{bottom:409.086864px;}
.y1b9{bottom:410.884800px;}
.yd4{bottom:411.203400px;}
.ya2{bottom:416.556270px;}
.y43{bottom:419.819303px;}
.y1e{bottom:422.910330px;}
.y1d7{bottom:426.357793px;}
.y78{bottom:428.256405px;}
.yd3{bottom:428.480303px;}
.ya1{bottom:433.833173px;}
.y1b8{bottom:436.297800px;}
.y42{bottom:436.961813px;}
.y170{bottom:437.340300px;}
.y1d{bottom:440.232030px;}
.y1d6{bottom:443.673520px;}
.y77{bottom:445.578105px;}
.yd2{bottom:445.802002px;}
.y153{bottom:450.452745px;}
.ya0{bottom:451.154873px;}
.y41{bottom:454.238715px;}
.y1c{bottom:457.508932px;}
.y1d5{bottom:460.944450px;}
.y76{bottom:462.675817px;}
.yd1{bottom:463.078905px;}
.y152{bottom:467.729647px;}
.y9f{bottom:468.431775px;}
.y40{bottom:471.515618px;}
.y12a{bottom:473.593740px;}
.y1b{bottom:474.785835px;}
.y75{bottom:479.952720px;}
.yd0{bottom:480.176618px;}
.y151{bottom:485.006550px;}
.y9e{bottom:485.529488px;}
.y1d4{bottom:486.492300px;}
.y3f{bottom:488.792520px;}
.y129{bottom:490.870642px;}
.y1a{bottom:491.883547px;}
.ycf{bottom:497.453520px;}
.y150{bottom:502.283452px;}
.y9d{bottom:502.806390px;}
.y74{bottom:502.978635px;}
.y3e{bottom:506.069422px;}
.y128{bottom:507.968355px;}
.y19{bottom:509.160450px;}
.yce{bottom:514.730423px;}
.y14f{bottom:519.381165px;}
.y9c{bottom:520.083293px;}
.y3d{bottom:523.346325px;}
.y127{bottom:525.245257px;}
.y18{bottom:532.188600px;}
.ycd{bottom:536.322817px;}
.y14e{bottom:536.658067px;}
.y9b{bottom:537.360195px;}
.y73{bottom:538.428390px;}
.y3c{bottom:540.444038px;}
.y126{bottom:542.522160px;}
.ye7{bottom:546.820365px;}
.y14d{bottom:553.934970px;}
.y9a{bottom:554.637098px;}
.y72{bottom:555.705293px;}
.y3b{bottom:557.720940px;}
.y125{bottom:559.799062px;}
.ye6{bottom:564.097268px;}
.ycc{bottom:564.201795px;}
.y17{bottom:566.891365px;}
.y14c{bottom:571.211872px;}
.y99{bottom:571.914000px;}
.y71{bottom:572.982195px;}
.y3a{bottom:574.997843px;}
.y124{bottom:577.075965px;}
.ye5{bottom:581.374170px;}
.ycb{bottom:581.478697px;}
.y14b{bottom:588.488775px;}
.y98{bottom:589.011713px;}
.y70{bottom:590.259097px;}
.y39{bottom:592.274745px;}
.y123{bottom:594.352868px;}
.y16{bottom:596.751927px;}
.ye4{bottom:598.651073px;}
.yca{bottom:598.755600px;}
.y14a{bottom:605.765677px;}
.y97{bottom:606.288615px;}
.y6f{bottom:607.536000px;}
.y38{bottom:609.551648px;}
.y122{bottom:611.450580px;}
.y15{bottom:611.864367px;}
.y149{bottom:622.867800px;}
.y96{bottom:623.565518px;}
.y6e{bottom:624.633713px;}
.y37{bottom:626.649360px;}
.y14{bottom:626.801395px;}
.y121{bottom:628.727482px;}
.y148{bottom:640.138800px;}
.y95{bottom:640.842420px;}
.yc9{bottom:641.394750px;}
.y13{bottom:641.738422px;}
.y6d{bottom:641.910615px;}
.y36{bottom:643.926263px;}
.y120{bottom:646.004385px;}
.y12{bottom:656.850862px;}
.y94{bottom:658.119323px;}
.y6c{bottom:659.187518px;}
.y35{bottom:661.203165px;}
.y147{bottom:661.728150px;}
.y11f{bottom:663.281287px;}
.y11{bottom:671.787890px;}
.y93{bottom:675.246900px;}
.y6b{bottom:676.494285px;}
.y34{bottom:678.509933px;}
.y11e{bottom:680.588055px;}
.y10{bottom:686.751905px;}
.y146{bottom:689.537002px;}
.y111{bottom:691.571810px;}
.y6a{bottom:693.771187px;}
.y33{bottom:695.786835px;}
.yf5{bottom:696.768119px;}
.y11d{bottom:697.685767px;}
.y92{bottom:700.794900px;}
.yf{bottom:701.864345px;}
.y110{bottom:702.464400px;}
.y10b{bottom:706.488900px;}
.y145{bottom:706.813905px;}
.y69{bottom:710.868900px;}
.y32{bottom:713.063738px;}
.y108{bottom:713.243873px;}
.y11c{bottom:714.962670px;}
.ye{bottom:716.801372px;}
.y144{bottom:724.090807px;}
.yfe{bottom:725.026310px;}
.y20f{bottom:726.925206px;}
.y31{bottom:730.161450px;}
.yd{bottom:731.738400px;}
.y11b{bottom:732.239573px;}
.y1b7{bottom:733.179123px;}
.yfd{bottom:735.918900px;}
.y68{bottom:736.416900px;}
.yfc{bottom:739.086900px;}
.yfa{bottom:740.327400px;}
.y20e{bottom:740.775252px;}
.y109{bottom:742.164900px;}
.y11a{bottom:749.516475px;}
.y1b6{bottom:750.450052px;}
.y143{bottom:753.418238px;}
.y20d{bottom:754.444488px;}
.yf7{bottom:756.819900px;}
.y107{bottom:757.748400px;}
.y60{bottom:762.189900px;}
.y62{bottom:762.671550px;}
.y1d3{bottom:764.481043px;}
.y119{bottom:766.793378px;}
.y1b5{bottom:767.720982px;}
.y20c{bottom:768.294534px;}
.y1ef{bottom:769.154648px;}
.y142{bottom:771.591090px;}
.y1d2{bottom:781.574276px;}
.y20b{bottom:782.144580px;}
.y118{bottom:784.070280px;}
.y1b4{bottom:784.812721px;}
.y105{bottom:785.681550px;}
.y1ee{bottom:786.431550px;}
.y141{bottom:789.943132px;}
.yb{bottom:791.109000px;}
.y65{bottom:795.481050px;}
.y20a{bottom:795.813816px;}
.y1d1{bottom:798.845206px;}
.y117{bottom:801.167992px;}
.y1b3{bottom:802.085144px;}
.y106{bottom:803.303783px;}
.y140{bottom:808.295175px;}
.y209{bottom:809.663862px;}
.y1ed{bottom:812.428148px;}
.y1d0{bottom:816.116135px;}
.y10e{bottom:817.894200px;}
.y103{bottom:817.912139px;}
.y116{bottom:818.444895px;}
.y1b2{bottom:819.356074px;}
.ya{bottom:821.153550px;}
.y208{bottom:823.333098px;}
.y100{bottom:825.474110px;}
.y13f{bottom:825.572077px;}
.yfb{bottom:830.134050px;}
.y1cf{bottom:833.387065px;}
.y10f{bottom:835.516433px;}
.y104{bottom:835.534372px;}
.y115{bottom:835.721798px;}
.yff{bottom:836.366700px;}
.y1b1{bottom:836.627003px;}
.y207{bottom:837.183144px;}
.y13e{bottom:842.848980px;}
.y8{bottom:843.643500px;}
.y1ec{bottom:847.683780px;}
.y1ce{bottom:850.657994px;}
.y206{bottom:851.033190px;}
.yf6{bottom:851.278200px;}
.y10c{bottom:851.288700px;}
.y10a{bottom:851.878610px;}
.y114{bottom:852.998700px;}
.y1b0{bottom:853.897933px;}
.y13d{bottom:860.125882px;}
.y205{bottom:864.702426px;}
.y1eb{bottom:864.960682px;}
.y1cd{bottom:867.930417px;}
.y10d{bottom:868.910933px;}
.yf8{bottom:868.927200px;}
.y6{bottom:869.910000px;}
.y1af{bottom:870.989672px;}
.y13c{bottom:877.223595px;}
.y204{bottom:878.552472px;}
.y113{bottom:878.553108px;}
.y102{bottom:882.052350px;}
.yf9{bottom:882.110850px;}
.y101{bottom:882.134700px;}
.y1ea{bottom:882.237585px;}
.y1cc{bottom:885.022156px;}
.y4{bottom:887.181000px;}
.y1ae{bottom:888.260602px;}
.yf4{bottom:890.921700px;}
.y203{bottom:892.398900px;}
.y13b{bottom:895.575637px;}
.y63{bottom:897.857370px;}
.y1e9{bottom:899.514488px;}
.y67{bottom:901.346700px;}
.y1cb{bottom:902.293086px;}
.y64{bottom:902.319168px;}
.y1ad{bottom:905.531531px;}
.y202{bottom:906.071754px;}
.y13a{bottom:912.897337px;}
.y168{bottom:914.403000px;}
.y16a{bottom:914.476350px;}
.y16b{bottom:915.443700px;}
.y1e8{bottom:916.836188px;}
.y1ca{bottom:919.608813px;}
.y201{bottom:919.970016px;}
.y1ac{bottom:922.847258px;}
.y61{bottom:923.392200px;}
.y139{bottom:930.174240px;}
.y200{bottom:933.822450px;}
.y1e7{bottom:933.933900px;}
.y15f{bottom:936.406350px;}
.y1c9{bottom:936.881236px;}
.y1ab{bottom:940.118188px;}
.y3{bottom:945.530722px;}
.y138{bottom:947.451143px;}
.y1ff{bottom:947.513406px;}
.y1e6{bottom:951.210802px;}
.y1c8{bottom:954.153658px;}
.y1aa{bottom:957.389117px;}
.y1fe{bottom:961.363452px;}
.y137{bottom:965.623995px;}
.y1e5{bottom:968.487705px;}
.y1c7{bottom:971.245398px;}
.y1a9{bottom:974.482350px;}
.y1fd{bottom:975.213498px;}
.y164{bottom:981.087000px;}
.y166{bottom:981.159000px;}
.ybe{bottom:981.308077px;}
.y167{bottom:982.128768px;}
.y136{bottom:982.900897px;}
.yc8{bottom:985.071067px;}
.y1e4{bottom:985.764608px;}
.y2{bottom:986.909850px;}
.y1c6{bottom:988.516327px;}
.y1fc{bottom:988.882734px;}
.y1a8{bottom:991.755187px;}
.ybd{bottom:998.584980px;}
.y135{bottom:1000.177800px;}
.yc7{bottom:1002.347970px;}
.y1fb{bottom:1002.727950px;}
.y1e3{bottom:1003.041510px;}
.y1c5{bottom:1005.787257px;}
.y1a7{bottom:1009.026116px;}
.y15e{bottom:1014.516000px;}
.ybc{bottom:1015.861882px;}
.y1fa{bottom:1016.594880px;}
.y134{bottom:1018.529843px;}
.yc6{bottom:1019.445682px;}
.y1e2{bottom:1020.318413px;}
.y1c4{bottom:1023.058186px;}
.y1a6{bottom:1026.297046px;}
.y1f9{bottom:1030.264116px;}
.yc5{bottom:1036.722585px;}
.y133{bottom:1036.881885px;}
.y1e1{bottom:1037.416125px;}
.y91{bottom:1038.982028px;}
.y1c3{bottom:1040.330609px;}
.y66{bottom:1040.574150px;}
.ybb{bottom:1042.128150px;}
.yba{bottom:1042.129193px;}
.y1a5{bottom:1043.567975px;}
.y1f8{bottom:1044.114162px;}
.yc4{bottom:1053.999487px;}
.y1e0{bottom:1054.693027px;}
.y132{bottom:1055.233927px;}
.y90{bottom:1056.258930px;}
.y1f7{bottom:1057.964208px;}
.y1c2{bottom:1058.679665px;}
.y1a4{bottom:1060.840398px;}
.yb8{bottom:1068.559995px;}
.yb9{bottom:1068.574650px;}
.yc3{bottom:1071.273450px;}
.y1f6{bottom:1071.633444px;}
.y15d{bottom:1071.672000px;}
.y1df{bottom:1071.969930px;}
.y131{bottom:1072.331640px;}
.y8f{bottom:1073.356643px;}
.y1c1{bottom:1075.772898px;}
.y1a3{bottom:1077.932137px;}
.y161{bottom:1078.795500px;}
.y160{bottom:1080.234150px;}
.y163{bottom:1081.203918px;}
.y1f5{bottom:1085.483490px;}
.yc2{bottom:1088.523428px;}
.y1de{bottom:1089.246832px;}
.y8e{bottom:1090.633545px;}
.y130{bottom:1090.683683px;}
.y1c0{bottom:1094.121954px;}
.yb7{bottom:1095.184643px;}
.y5f{bottom:1095.194107px;}
.y1a2{bottom:1095.203067px;}
.y1f4{bottom:1099.339500px;}
.y1dd{bottom:1106.523735px;}
.y8d{bottom:1107.910448px;}
.y12f{bottom:1107.960585px;}
.y1bf{bottom:1111.394377px;}
.yc1{bottom:1111.549342px;}
.yb6{bottom:1112.461545px;}
.y5e{bottom:1112.471010px;}
.y1a1{bottom:1112.473996px;}
.y1f3{bottom:1113.014826px;}
.y16c{bottom:1116.340500px;}
.y16e{bottom:1116.413400px;}
.y16f{bottom:1117.381200px;}
.y1dc{bottom:1123.800638px;}
.y59{bottom:1124.388150px;}
.y8c{bottom:1125.187350px;}
.y12e{bottom:1125.237488px;}
.y1f2{bottom:1126.864872px;}
.yb5{bottom:1129.738448px;}
.y1a0{bottom:1129.744926px;}
.y5d{bottom:1129.744950px;}
.y1f1{bottom:1140.714918px;}
.y1db{bottom:1140.898350px;}
.y8b{bottom:1142.464253px;}
.y12d{bottom:1142.514390px;}
.yc0{bottom:1146.999097px;}
.y5c{bottom:1147.009883px;}
.yb4{bottom:1147.015350px;}
.y19f{bottom:1147.015856px;}
.y58{bottom:1154.265150px;}
.y15c{bottom:1155.502950px;}
.y8a{bottom:1164.086513px;}
.y12c{bottom:1164.136650px;}
.ybf{bottom:1164.305865px;}
.y1f0{bottom:1164.313395px;}
.y5b{bottom:1164.316650px;}
.y57{bottom:1169.203650px;}
.y56{bottom:1184.142150px;}
.y210{bottom:1199.032170px;}
.y55{bottom:1199.080650px;}
.y19d{bottom:1213.976100px;}
.y1da{bottom:1216.070550px;}
.y5a{bottom:1231.062900px;}
.h20{height:5.310000px;}
.h1e{height:5.551500px;}
.h1f{height:5.553000px;}
.h1d{height:6.934500px;}
.h23{height:8.412000px;}
.h26{height:8.434500px;}
.h22{height:8.436000px;}
.h24{height:8.484000px;}
.h25{height:8.485500px;}
.h5{height:17.271000px;}
.h18{height:18.923760px;}
.h1c{height:22.129146px;}
.h7{height:26.266500px;}
.h17{height:26.411667px;}
.h19{height:27.110183px;}
.h1{height:32.136152px;}
.h27{height:33.501645px;}
.h21{height:33.528474px;}
.h16{height:34.035424px;}
.h1a{height:37.217667px;}
.hb{height:37.335832px;}
.h3{height:41.055000px;}
.ha{height:41.501851px;}
.h13{height:41.963296px;}
.hc{height:47.297824px;}
.h11{height:47.321367px;}
.h29{height:47.325951px;}
.h2a{height:47.335839px;}
.h28{height:47.340687px;}
.h10{height:47.830964px;}
.h8{height:52.534500px;}
.h9{height:54.394664px;}
.hf{height:55.564369px;}
.h12{height:58.592563px;}
.h6{height:58.621729px;}
.h1b{height:58.627699px;}
.h15{height:58.633489px;}
.he{height:58.633579px;}
.hd{height:58.645399px;}
.h14{height:58.705219px;}
.h4{height:64.977961px;}
.h2{height:126.287860px;}
.h0{height:1263.000000px;}
.w7{width:0.168000px;}
.w5{width:14.731500px;}
.w8{width:22.725000px;}
.w4{width:26.980500px;}
.w6{width:28.728000px;}
.w10{width:39.379500px;}
.we{width:46.597500px;}
.wd{width:47.971500px;}
.wf{width:47.988000px;}
.w13{width:54.024000px;}
.wc{width:59.239500px;}
.wb{width:64.740000px;}
.w3{width:66.109500px;}
.w12{width:83.529000px;}
.wa{width:86.113500px;}
.w9{width:100.623000px;}
.w11{width:101.083500px;}
.w2{width:733.282500px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x5b{left:-1.268850px;}
.x0{left:0.000000px;}
.x4b{left:3.038700px;}
.x75{left:5.948850px;}
.x81{left:8.666250px;}
.x58{left:11.070000px;}
.x6{left:12.630150px;}
.x77{left:14.620200px;}
.x53{left:15.784050px;}
.x4c{left:17.670900px;}
.x86{left:18.894300px;}
.x4e{left:21.380700px;}
.x62{left:29.358450px;}
.x6b{left:30.475350px;}
.x7f{left:34.075800px;}
.x83{left:37.828650px;}
.x70{left:38.895750px;}
.x91{left:42.236550px;}
.x64{left:44.984850px;}
.x95{left:48.112200px;}
.x16{left:50.914500px;}
.x72{left:52.744950px;}
.x4f{left:55.694100px;}
.x66{left:60.273450px;}
.x93{left:63.050850px;}
.x1e{left:72.143700px;}
.x6d{left:74.113650px;}
.xb{left:76.457012px;}
.x4{left:79.699500px;}
.x8c{left:81.087150px;}
.x1c{left:82.357050px;}
.x1f{left:84.015037px;}
.xa{left:87.076200px;}
.x67{left:88.623150px;}
.x8d{left:90.328800px;}
.xd{left:97.726800px;}
.x2a{left:101.504723px;}
.x99{left:103.304100px;}
.x1d{left:107.082150px;}
.x45{left:115.001622px;}
.x2{left:117.169050px;}
.x5{left:122.548950px;}
.x60{left:123.919500px;}
.x6e{left:126.080400px;}
.x68{left:128.574000px;}
.x32{left:133.714050px;}
.x35{left:138.494976px;}
.x34{left:139.520400px;}
.x69{left:140.937750px;}
.x17{left:143.146050px;}
.x61{left:146.361900px;}
.x39{left:148.319400px;}
.x98{left:151.153800px;}
.x88{left:152.618100px;}
.x84{left:155.113500px;}
.x6a{left:156.282900px;}
.x63{left:166.138050px;}
.x85{left:167.574150px;}
.x6c{left:171.571500px;}
.x9d{left:178.851345px;}
.x9c{left:180.298800px;}
.x65{left:181.426650px;}
.x87{left:186.892200px;}
.x33{left:190.983300px;}
.x9{left:197.031600px;}
.x37{left:202.398599px;}
.x44{left:204.586950px;}
.xc{left:206.386950px;}
.x4a{left:207.423000px;}
.x36{left:212.970450px;}
.x1{left:217.360950px;}
.x26{left:225.817838px;}
.x4d{left:226.948800px;}
.x97{left:230.134950px;}
.x24{left:232.293450px;}
.x47{left:237.847950px;}
.x25{left:244.707450px;}
.x18{left:247.015950px;}
.x8e{left:250.233450px;}
.x89{left:252.127500px;}
.x8{left:254.601450px;}
.x96{left:256.024950px;}
.x8f{left:257.492215px;}
.x90{left:258.517500px;}
.x27{left:260.898450px;}
.x7c{left:264.105450px;}
.x74{left:265.565504px;}
.x50{left:266.826900px;}
.x73{left:268.282950px;}
.x28{left:269.533950px;}
.x7a{left:271.485000px;}
.x80{left:272.910000px;}
.x7d{left:274.096500px;}
.x76{left:277.958700px;}
.x1b{left:279.817950px;}
.x6f{left:282.007800px;}
.x82{left:286.362300px;}
.x7b{left:288.078300px;}
.x7e{left:289.396950px;}
.x7{left:291.168750px;}
.x78{left:292.378350px;}
.x8a{left:294.345450px;}
.x3e{left:296.594831px;}
.x3f{left:298.440600px;}
.x59{left:299.868600px;}
.x56{left:301.225500px;}
.x23{left:307.899600px;}
.x57{left:310.440600px;}
.x92{left:311.788050px;}
.x94{left:313.763550px;}
.x15{left:318.875100px;}
.x71{left:319.897950px;}
.x79{left:322.301850px;}
.x8b{left:323.441700px;}
.x5f{left:327.033600px;}
.x3{left:329.857765px;}
.x49{left:333.866100px;}
.x1a{left:335.163360px;}
.x19{left:336.321600px;}
.x41{left:339.113014px;}
.x5e{left:340.445100px;}
.x48{left:342.602100px;}
.x5c{left:349.615200px;}
.x40{left:350.991600px;}
.x3d{left:352.577250px;}
.x3b{left:354.902100px;}
.x5d{left:357.599400px;}
.x5a{left:364.984500px;}
.x55{left:377.923018px;}
.x51{left:379.171500px;}
.x52{left:386.628600px;}
.x54{left:403.466850px;}
.x2c{left:432.219750px;}
.x20{left:442.484633px;}
.x2f{left:446.355900px;}
.x21{left:463.718648px;}
.xe{left:468.022935px;}
.x9f{left:469.486032px;}
.xf{left:489.286815px;}
.x29{left:490.370693px;}
.x3a{left:491.587891px;}
.x30{left:494.254050px;}
.x46{left:504.391050px;}
.x2e{left:506.171550px;}
.x9b{left:531.197550px;}
.x22{left:538.934550px;}
.x9a{left:540.013050px;}
.x2b{left:542.173050px;}
.x9e{left:587.867453px;}
.x11{left:593.575350px;}
.x3c{left:597.718909px;}
.x38{left:610.283700px;}
.x10{left:630.122400px;}
.x43{left:642.623999px;}
.x13{left:647.297850px;}
.x14{left:650.035200px;}
.x42{left:653.195850px;}
.x12{left:683.297850px;}
.x2d{left:736.404078px;}
.x31{left:750.990000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.605333pt;}
.ls36{letter-spacing:-5.733333pt;}
.ls7d{letter-spacing:-1.238615pt;}
.ls79{letter-spacing:-0.891460pt;}
.ls8b{letter-spacing:-0.792885pt;}
.ls4b{letter-spacing:-0.594645pt;}
.ls2d{letter-spacing:-0.412594pt;}
.ls6f{letter-spacing:-0.392891pt;}
.ls8a{letter-spacing:-0.385728pt;}
.ls91{letter-spacing:-0.377156pt;}
.ls30{letter-spacing:-0.374213pt;}
.ls8d{letter-spacing:-0.364299pt;}
.ls85{letter-spacing:-0.355727pt;}
.ls59{letter-spacing:-0.338583pt;}
.ls92{letter-spacing:-0.325726pt;}
.ls82{letter-spacing:-0.321440pt;}
.ls70{letter-spacing:-0.318560pt;}
.ls89{letter-spacing:-0.317154pt;}
.ls4e{letter-spacing:-0.297323pt;}
.ls94{letter-spacing:-0.274295pt;}
.ls33{letter-spacing:-0.265724pt;}
.ls7f{letter-spacing:-0.240009pt;}
.ls25{letter-spacing:-0.235723pt;}
.ls90{letter-spacing:-0.231437pt;}
.ls80{letter-spacing:-0.205722pt;}
.ls84{letter-spacing:-0.197150pt;}
.ls2c{letter-spacing:-0.187106pt;}
.ls2f{letter-spacing:-0.105547pt;}
.ls28{letter-spacing:-0.081559pt;}
.ls5b{letter-spacing:-0.079640pt;}
.ls3e{letter-spacing:-0.058403pt;}
.ls35{letter-spacing:-0.042475pt;}
.ls93{letter-spacing:-0.038573pt;}
.ls5e{letter-spacing:-0.037165pt;}
.ls6b{letter-spacing:-0.021768pt;}
.ls43{letter-spacing:-0.021237pt;}
.ls67{letter-spacing:-0.017414pt;}
.ls6a{letter-spacing:-0.013061pt;}
.ls26{letter-spacing:-0.012794pt;}
.ls62{letter-spacing:-0.011494pt;}
.ls29{letter-spacing:-0.009595pt;}
.ls68{letter-spacing:-0.008707pt;}
.ls64{letter-spacing:-0.008620pt;}
.ls54{letter-spacing:-0.006449pt;}
.ls63{letter-spacing:-0.005747pt;}
.ls2a{letter-spacing:-0.004798pt;}
.ls65{letter-spacing:-0.004354pt;}
.ls4f{letter-spacing:-0.004156pt;}
.ls53{letter-spacing:-0.003225pt;}
.ls5f{letter-spacing:-0.002873pt;}
.ls34{letter-spacing:0.000000pt;}
.ls50{letter-spacing:0.002311pt;}
.ls22{letter-spacing:0.002667pt;}
.ls61{letter-spacing:0.002873pt;}
.ls52{letter-spacing:0.003225pt;}
.ls23{letter-spacing:0.003488pt;}
.ls51{letter-spacing:0.004156pt;}
.ls6c{letter-spacing:0.004354pt;}
.ls7{letter-spacing:0.004798pt;}
.ls19{letter-spacing:0.005309pt;}
.ls60{letter-spacing:0.005747pt;}
.ls8c{letter-spacing:0.008572pt;}
.ls69{letter-spacing:0.008707pt;}
.ls21{letter-spacing:0.010619pt;}
.lsd{letter-spacing:0.015928pt;}
.ls31{letter-spacing:0.019190pt;}
.ls1a{letter-spacing:0.021237pt;}
.ls8f{letter-spacing:0.021429pt;}
.ls66{letter-spacing:0.021768pt;}
.ls24{letter-spacing:0.022357pt;}
.ls1e{letter-spacing:0.026547pt;}
.ls6{letter-spacing:0.031856pt;}
.ls42{letter-spacing:0.034287pt;}
.ls11{letter-spacing:0.037165pt;}
.ls27{letter-spacing:0.038381pt;}
.lsf{letter-spacing:0.042475pt;}
.ls7a{letter-spacing:0.042859pt;}
.ls0{letter-spacing:0.047080pt;}
.ls1{letter-spacing:0.047784pt;}
.lsa{letter-spacing:0.053093pt;}
.lsb{letter-spacing:0.058403pt;}
.ls16{letter-spacing:0.063712pt;}
.ls7c{letter-spacing:0.064288pt;}
.ls12{letter-spacing:0.069021pt;}
.ls17{letter-spacing:0.074331pt;}
.ls73{letter-spacing:0.077120pt;}
.ls9{letter-spacing:0.079640pt;}
.ls1d{letter-spacing:0.084949pt;}
.ls2b{letter-spacing:0.086357pt;}
.ls20{letter-spacing:0.090259pt;}
.ls3{letter-spacing:0.095568pt;}
.ls18{letter-spacing:0.100877pt;}
.ls1b{letter-spacing:0.106187pt;}
.ls13{letter-spacing:0.111496pt;}
.ls15{letter-spacing:0.116805pt;}
.ls37{letter-spacing:0.122115pt;}
.ls81{letter-spacing:0.124290pt;}
.lsc{letter-spacing:0.127424pt;}
.ls1f{letter-spacing:0.132733pt;}
.ls8e{letter-spacing:0.137148pt;}
.ls1c{letter-spacing:0.138043pt;}
.ls10{letter-spacing:0.143352pt;}
.ls87{letter-spacing:0.145719pt;}
.ls5{letter-spacing:0.148661pt;}
.ls4{letter-spacing:0.153971pt;}
.lse{letter-spacing:0.159280pt;}
.ls47{letter-spacing:0.164589pt;}
.ls88{letter-spacing:0.167149pt;}
.ls8{letter-spacing:0.169899pt;}
.ls78{letter-spacing:0.171435pt;}
.ls55{letter-spacing:0.175208pt;}
.ls96{letter-spacing:0.180006pt;}
.ls3c{letter-spacing:0.180517pt;}
.ls14{letter-spacing:0.185827pt;}
.ls48{letter-spacing:0.191136pt;}
.ls5c{letter-spacing:0.192864pt;}
.ls45{letter-spacing:0.196445pt;}
.ls4c{letter-spacing:0.197150pt;}
.ls6e{letter-spacing:0.201436pt;}
.ls57{letter-spacing:0.201755pt;}
.ls95{letter-spacing:0.205722pt;}
.ls3d{letter-spacing:0.207064pt;}
.ls5d{letter-spacing:0.210007pt;}
.ls39{letter-spacing:0.212373pt;}
.ls3f{letter-spacing:0.218579pt;}
.ls86{letter-spacing:0.222865pt;}
.ls56{letter-spacing:0.222992pt;}
.ls4d{letter-spacing:0.227151pt;}
.ls32{letter-spacing:0.228301pt;}
.ls44{letter-spacing:0.231437pt;}
.ls3b{letter-spacing:0.233611pt;}
.ls83{letter-spacing:0.240009pt;}
.ls76{letter-spacing:0.248555pt;}
.ls7e{letter-spacing:0.252866pt;}
.ls40{letter-spacing:0.260157pt;}
.ls41{letter-spacing:0.265467pt;}
.ls4a{letter-spacing:0.276085pt;}
.ls2e{letter-spacing:0.287856pt;}
.ls5a{letter-spacing:0.292013pt;}
.ls7b{letter-spacing:0.385728pt;}
.ls75{letter-spacing:0.390059pt;}
.ls72{letter-spacing:11.680533pt;}
.ls71{letter-spacing:11.786720pt;}
.ls49{letter-spacing:13.427304pt;}
.ls2{letter-spacing:13.751173pt;}
.ls77{letter-spacing:22.543659pt;}
.ls3a{letter-spacing:28.458027pt;}
.ls74{letter-spacing:28.458155pt;}
.ls58{letter-spacing:35.997280pt;}
.ls38{letter-spacing:51.075787pt;}
.ls6d{letter-spacing:51.166045pt;}
.ls46{letter-spacing:57.022240pt;}
.ws71{word-spacing:-31.715413pt;}
.wsd1{word-spacing:-26.700637pt;}
.ws77{word-spacing:-13.538800pt;}
.ws79{word-spacing:-13.453851pt;}
.ws117{word-spacing:-13.448541pt;}
.wsd6{word-spacing:-13.437923pt;}
.ws19d{word-spacing:-13.411376pt;}
.ws6{word-spacing:-13.374211pt;}
.ws76{word-spacing:-13.363592pt;}
.wsd3{word-spacing:-13.352973pt;}
.ws72{word-spacing:-13.347664pt;}
.ws75{word-spacing:-13.342355pt;}
.ws19c{word-spacing:-13.337045pt;}
.ws161{word-spacing:-13.321117pt;}
.ws4{word-spacing:-13.315808pt;}
.ws78{word-spacing:-13.310499pt;}
.ws160{word-spacing:-13.305189pt;}
.ws5{word-spacing:-13.299880pt;}
.ws19b{word-spacing:-13.283952pt;}
.wsd5{word-spacing:-13.273333pt;}
.ws73{word-spacing:-13.214931pt;}
.wsd2{word-spacing:-12.678688pt;}
.ws7{word-spacing:-11.949333pt;}
.ws0{word-spacing:-11.912441pt;}
.ws1a6{word-spacing:-10.924674pt;}
.wsd4{word-spacing:-10.911817pt;}
.ws1a1{word-spacing:-10.838957pt;}
.ws19f{word-spacing:-10.757525pt;}
.ws1a5{word-spacing:-10.723238pt;}
.ws1a4{word-spacing:-10.714667pt;}
.ws1a2{word-spacing:-10.517517pt;}
.ws2{word-spacing:-10.448943pt;}
.ws1a3{word-spacing:-10.358940pt;}
.ws19e{word-spacing:-9.823206pt;}
.ws17c{word-spacing:-3.121888pt;}
.wsbd{word-spacing:-3.105960pt;}
.wsbe{word-spacing:-3.068795pt;}
.ws4c{word-spacing:-3.058176pt;}
.wsb2{word-spacing:-3.047557pt;}
.ws3e{word-spacing:-3.031629pt;}
.ws6e{word-spacing:-3.026320pt;}
.ws74{word-spacing:-2.957299pt;}
.ws17{word-spacing:-2.902548pt;}
.ws15{word-spacing:-2.696251pt;}
.ws11a{word-spacing:-2.612192pt;}
.ws167{word-spacing:-2.516624pt;}
.ws193{word-spacing:-2.500696pt;}
.ws23{word-spacing:-2.490077pt;}
.wsa3{word-spacing:-2.479459pt;}
.wsb5{word-spacing:-2.442293pt;}
.ws42{word-spacing:-2.426365pt;}
.ws1ae{word-spacing:-2.421056pt;}
.ws1af{word-spacing:-2.415747pt;}
.ws141{word-spacing:-2.399819pt;}
.ws192{word-spacing:-2.394509pt;}
.ws43{word-spacing:-2.389200pt;}
.ws102{word-spacing:-2.378581pt;}
.ws1cb{word-spacing:-2.044358pt;}
.ws14{word-spacing:-1.986206pt;}
.ws139{word-spacing:-1.847648pt;}
.wsbb{word-spacing:-1.805173pt;}
.ws4e{word-spacing:-1.789245pt;}
.ws88{word-spacing:-1.783936pt;}
.ws1ce{word-spacing:-1.778635pt;}
.ws173{word-spacing:-1.778627pt;}
.ws124{word-spacing:-1.773317pt;}
.ws126{word-spacing:-1.768008pt;}
.ws48{word-spacing:-1.762699pt;}
.ws18{word-spacing:-1.760719pt;}
.ws89{word-spacing:-1.736152pt;}
.ws172{word-spacing:-1.730843pt;}
.ws4d{word-spacing:-1.709605pt;}
.ws1cf{word-spacing:-1.551484pt;}
.ws1c0{word-spacing:-1.538626pt;}
.ws1d0{word-spacing:-1.380049pt;}
.ws1d2{word-spacing:-1.332905pt;}
.ws116{word-spacing:-1.327333pt;}
.ws6c{word-spacing:-1.274240pt;}
.wse1{word-spacing:-1.253003pt;}
.wse2{word-spacing:-1.178672pt;}
.ws1ad{word-spacing:-1.173363pt;}
.ws16d{word-spacing:-1.162744pt;}
.ws1ab{word-spacing:-1.157435pt;}
.ws9a{word-spacing:-1.141507pt;}
.ws100{word-spacing:-1.136197pt;}
.ws180{word-spacing:-1.125579pt;}
.ws149{word-spacing:-1.120269pt;}
.ws1b0{word-spacing:-1.099032pt;}
.ws10{word-spacing:-1.093853pt;}
.ws145{word-spacing:-1.056557pt;}
.wsa{word-spacing:-0.694432pt;}
.ws1d9{word-spacing:-0.694310pt;}
.ws1d7{word-spacing:-0.664309pt;}
.ws169{word-spacing:-0.610573pt;}
.ws13c{word-spacing:-0.541552pt;}
.wsa8{word-spacing:-0.530933pt;}
.ws5c{word-spacing:-0.525624pt;}
.ws5d{word-spacing:-0.483149pt;}
.ws16a{word-spacing:-0.477840pt;}
.ws1c3{word-spacing:-0.154291pt;}
.ws1b9{word-spacing:-0.150005pt;}
.ws1ca{word-spacing:-0.132862pt;}
.wsd8{word-spacing:-0.120004pt;}
.ws101{word-spacing:-0.098575pt;}
.ws197{word-spacing:-0.094289pt;}
.ws80{word-spacing:-0.090003pt;}
.ws155{word-spacing:-0.081431pt;}
.ws65{word-spacing:-0.079640pt;}
.wsdd{word-spacing:-0.074331pt;}
.ws17e{word-spacing:-0.072860pt;}
.ws1bd{word-spacing:-0.068574pt;}
.ws134{word-spacing:-0.064288pt;}
.wsde{word-spacing:-0.063712pt;}
.wsd0{word-spacing:-0.058403pt;}
.ws17d{word-spacing:-0.053093pt;}
.wsdc{word-spacing:-0.037165pt;}
.wsfd{word-spacing:-0.031856pt;}
.ws1bf{word-spacing:-0.017143pt;}
.wsed{word-spacing:-0.015928pt;}
.wse{word-spacing:-0.010619pt;}
.wsa4{word-spacing:-0.005309pt;}
.ws15c{word-spacing:-0.004354pt;}
.ws113{word-spacing:-0.003225pt;}
.ws15a{word-spacing:-0.002873pt;}
.ws9{word-spacing:0.000000pt;}
.ws111{word-spacing:0.003225pt;}
.ws110{word-spacing:0.004156pt;}
.ws112{word-spacing:0.004621pt;}
.wsd{word-spacing:0.005309pt;}
.ws114{word-spacing:0.006449pt;}
.ws1d6{word-spacing:0.008572pt;}
.ws7f{word-spacing:0.009471pt;}
.ws142{word-spacing:0.010619pt;}
.ws15b{word-spacing:0.014367pt;}
.wseb{word-spacing:0.015928pt;}
.ws51{word-spacing:0.021237pt;}
.ws15d{word-spacing:0.021768pt;}
.ws15e{word-spacing:0.026121pt;}
.ws2d{word-spacing:0.031856pt;}
.ws52{word-spacing:0.037165pt;}
.ws64{word-spacing:0.042475pt;}
.wsc{word-spacing:0.047784pt;}
.wsf9{word-spacing:0.053093pt;}
.ws8f{word-spacing:0.058403pt;}
.ws53{word-spacing:0.063712pt;}
.ws1f{word-spacing:0.069021pt;}
.wsb{word-spacing:0.074331pt;}
.ws1a{word-spacing:0.076762pt;}
.ws5f{word-spacing:0.079640pt;}
.wsad{word-spacing:0.081431pt;}
.ws37{word-spacing:0.084949pt;}
.wsca{word-spacing:0.090259pt;}
.ws1b{word-spacing:0.091154pt;}
.ws95{word-spacing:0.095568pt;}
.wsac{word-spacing:0.100877pt;}
.ws60{word-spacing:0.106187pt;}
.ws94{word-spacing:0.116805pt;}
.ws40{word-spacing:0.122115pt;}
.ws130{word-spacing:0.127424pt;}
.wsc1{word-spacing:0.132733pt;}
.ws10f{word-spacing:0.138043pt;}
.ws125{word-spacing:0.143352pt;}
.wscf{word-spacing:0.148661pt;}
.ws146{word-spacing:0.153971pt;}
.ws13e{word-spacing:0.180517pt;}
.ws159{word-spacing:0.196445pt;}
.ws8{word-spacing:0.364299pt;}
.ws1d5{word-spacing:0.402871pt;}
.ws19{word-spacing:0.422189pt;}
.ws11f{word-spacing:0.428587pt;}
.ws1d1{word-spacing:0.454302pt;}
.wsa0{word-spacing:0.509696pt;}
.ws1b8{word-spacing:0.514304pt;}
.ws1cd{word-spacing:0.548591pt;}
.ws69{word-spacing:0.610573pt;}
.ws1cc{word-spacing:0.647166pt;}
.ws17a{word-spacing:0.653048pt;}
.wsf6{word-spacing:0.658357pt;}
.ws18b{word-spacing:0.668976pt;}
.ws5b{word-spacing:0.674285pt;}
.ws67{word-spacing:0.679595pt;}
.ws5a{word-spacing:0.695523pt;}
.ws39{word-spacing:0.706141pt;}
.ws17b{word-spacing:0.711451pt;}
.ws9f{word-spacing:0.716760pt;}
.ws13b{word-spacing:0.722069pt;}
.ws1b2{word-spacing:0.732883pt;}
.ws1ac{word-spacing:0.748616pt;}
.wsf{word-spacing:0.764544pt;}
.ws30{word-spacing:1.231765pt;}
.ws12a{word-spacing:1.295477pt;}
.ws31{word-spacing:1.327333pt;}
.wse0{word-spacing:1.337952pt;}
.ws13d{word-spacing:1.359189pt;}
.ws120{word-spacing:1.364499pt;}
.ws46{word-spacing:1.369808pt;}
.ws47{word-spacing:1.380427pt;}
.ws9d{word-spacing:1.757389pt;}
.ws119{word-spacing:1.783936pt;}
.ws118{word-spacing:1.826411pt;}
.ws26{word-spacing:1.858267pt;}
.ws34{word-spacing:1.900741pt;}
.ws182{word-spacing:1.906051pt;}
.ws187{word-spacing:1.911360pt;}
.ws12b{word-spacing:1.927288pt;}
.ws87{word-spacing:1.932597pt;}
.ws86{word-spacing:1.943216pt;}
.ws35{word-spacing:1.969763pt;}
.ws12f{word-spacing:1.980381pt;}
.ws36{word-spacing:1.985691pt;}
.ws12c{word-spacing:1.991000pt;}
.wsf4{word-spacing:2.001619pt;}
.wsb9{word-spacing:2.006928pt;}
.wsba{word-spacing:2.044093pt;}
.ws1d4{word-spacing:2.430086pt;}
.ws6f{word-spacing:2.437333pt;}
.ws70{word-spacing:2.442667pt;}
.ws1c4{word-spacing:2.442944pt;}
.ws14b{word-spacing:2.506005pt;}
.ws9c{word-spacing:2.532552pt;}
.wsfa{word-spacing:2.564408pt;}
.wsa1{word-spacing:2.575027pt;}
.wsa9{word-spacing:2.580336pt;}
.ws9b{word-spacing:2.585645pt;}
.wsd9{word-spacing:2.601573pt;}
.ws66{word-spacing:2.606883pt;}
.wsfc{word-spacing:2.612192pt;}
.ws14a{word-spacing:2.617501pt;}
.wsf2{word-spacing:2.622811pt;}
.ws14d{word-spacing:2.628120pt;}
.wsfb{word-spacing:2.633429pt;}
.ws1a7{word-spacing:2.665285pt;}
.ws25{word-spacing:2.670595pt;}
.wsa2{word-spacing:2.675904pt;}
.ws1d3{word-spacing:2.678667pt;}
.wsb7{word-spacing:3.084723pt;}
.ws3c{word-spacing:3.100651pt;}
.wsb8{word-spacing:3.148435pt;}
.ws10e{word-spacing:3.206837pt;}
.ws3d{word-spacing:3.233384pt;}
.ws188{word-spacing:3.238693pt;}
.wsb6{word-spacing:3.249312pt;}
.ws10d{word-spacing:3.259931pt;}
.ws83{word-spacing:3.265240pt;}
.ws63{word-spacing:3.291787pt;}
.ws13{word-spacing:3.497450pt;}
.ws166{word-spacing:3.764317pt;}
.ws1be{word-spacing:3.784420pt;}
.wsbc{word-spacing:3.801483pt;}
.ws16{word-spacing:3.833282pt;}
.ws50{word-spacing:3.838648pt;}
.ws4f{word-spacing:3.859885pt;}
.ws165{word-spacing:3.865195pt;}
.ws38{word-spacing:3.875813pt;}
.ws174{word-spacing:3.881123pt;}
.ws96{word-spacing:3.886432pt;}
.ws17f{word-spacing:3.923597pt;}
.wsb0{word-spacing:3.944835pt;}
.ws1ba{word-spacing:4.333011pt;}
.ws1bb{word-spacing:4.345869pt;}
.ws44{word-spacing:4.465149pt;}
.ws14e{word-spacing:4.486387pt;}
.ws8e{word-spacing:4.507624pt;}
.ws14f{word-spacing:4.528861pt;}
.ws92{word-spacing:4.544789pt;}
.wsb3{word-spacing:4.560717pt;}
.ws93{word-spacing:4.566027pt;}
.ws184{word-spacing:4.587264pt;}
.ws11{word-spacing:4.620089pt;}
.wsb4{word-spacing:4.624429pt;}
.ws183{word-spacing:5.038557pt;}
.wsee{word-spacing:5.128816pt;}
.wsc7{word-spacing:5.171291pt;}
.wsf5{word-spacing:5.181909pt;}
.wsef{word-spacing:5.192528pt;}
.wsff{word-spacing:5.197837pt;}
.wsc8{word-spacing:5.219075pt;}
.ws1c1{word-spacing:5.704489pt;}
.wse3{word-spacing:5.760627pt;}
.ws195{word-spacing:5.776555pt;}
.ws129{word-spacing:5.792483pt;}
.ws194{word-spacing:5.797792pt;}
.ws136{word-spacing:5.813720pt;}
.ws16b{word-spacing:5.845576pt;}
.ws3{word-spacing:6.344653pt;}
.ws108{word-spacing:6.371200pt;}
.ws33{word-spacing:6.392437pt;}
.ws175{word-spacing:6.434912pt;}
.ws6b{word-spacing:6.440221pt;}
.wsbf{word-spacing:6.450840pt;}
.ws6a{word-spacing:6.466768pt;}
.ws1a9{word-spacing:6.472077pt;}
.ws127{word-spacing:6.477387pt;}
.ws32{word-spacing:6.514552pt;}
.ws16c{word-spacing:6.541099pt;}
.wse7{word-spacing:7.018939pt;}
.ws18d{word-spacing:7.045485pt;}
.wsc2{word-spacing:7.050795pt;}
.ws18e{word-spacing:7.061413pt;}
.ws59{word-spacing:7.109197pt;}
.ws58{word-spacing:7.125125pt;}
.wsa6{word-spacing:7.698533pt;}
.ws81{word-spacing:7.714461pt;}
.ws41{word-spacing:7.741008pt;}
.wsa7{word-spacing:7.746317pt;}
.ws84{word-spacing:7.751627pt;}
.ws7a{word-spacing:7.772864pt;}
.wse5{word-spacing:7.778173pt;}
.wse4{word-spacing:7.804720pt;}
.wsa5{word-spacing:7.810029pt;}
.ws1c5{word-spacing:7.817421pt;}
.ws1c9{word-spacing:8.233150pt;}
.ws1b7{word-spacing:8.323153pt;}
.ws164{word-spacing:8.325035pt;}
.ws16e{word-spacing:8.367509pt;}
.ws68{word-spacing:8.388747pt;}
.wsda{word-spacing:8.399365pt;}
.ws198{word-spacing:8.431221pt;}
.ws163{word-spacing:8.463077pt;}
.ws15f{word-spacing:8.590501pt;}
.ws199{word-spacing:8.760400pt;}
.ws29{word-spacing:8.935608pt;}
.ws162{word-spacing:8.940917pt;}
.ws191{word-spacing:8.962155pt;}
.ws157{word-spacing:8.967464pt;}
.ws190{word-spacing:8.988701pt;}
.ws28{word-spacing:9.025867pt;}
.ws7c{word-spacing:9.041795pt;}
.ws27{word-spacing:9.047104pt;}
.wsec{word-spacing:9.052413pt;}
.ws8b{word-spacing:9.578037pt;}
.ws12{word-spacing:9.595200pt;}
.ws1aa{word-spacing:9.647059pt;}
.wsdf{word-spacing:9.662987pt;}
.ws7e{word-spacing:9.678915pt;}
.ws8a{word-spacing:9.694843pt;}
.ws22{word-spacing:9.721389pt;}
.ws196{word-spacing:9.726699pt;}
.ws7b{word-spacing:9.732008pt;}
.ws185{word-spacing:9.758555pt;}
.wscd{word-spacing:10.278869pt;}
.ws131{word-spacing:10.300107pt;}
.ws49{word-spacing:10.310725pt;}
.wsdb{word-spacing:10.316035pt;}
.ws11c{word-spacing:10.416912pt;}
.ws4b{word-spacing:10.443459pt;}
.ws1b6{word-spacing:10.551804pt;}
.wsce{word-spacing:10.990320pt;}
.ws4a{word-spacing:11.075269pt;}
.ws1c8{word-spacing:11.404691pt;}
.ws2c{word-spacing:11.521253pt;}
.ws104{word-spacing:11.537181pt;}
.wsb1{word-spacing:11.558419pt;}
.ws189{word-spacing:11.574347pt;}
.ws2b{word-spacing:11.590275pt;}
.ws103{word-spacing:11.600893pt;}
.ws18c{word-spacing:11.606203pt;}
.wse6{word-spacing:12.015021pt;}
.ws24{word-spacing:12.105280pt;}
.ws54{word-spacing:12.190229pt;}
.ws186{word-spacing:12.195539pt;}
.ws6d{word-spacing:12.211467pt;}
.ws178{word-spacing:12.222085pt;}
.ws62{word-spacing:12.238013pt;}
.ws179{word-spacing:12.253941pt;}
.ws177{word-spacing:12.275179pt;}
.ws156{word-spacing:12.827349pt;}
.ws133{word-spacing:12.875133pt;}
.ws128{word-spacing:12.885752pt;}
.ws115{word-spacing:13.007867pt;}
.ws1bc{word-spacing:13.320474pt;}
.ws10b{word-spacing:13.443232pt;}
.wsf0{word-spacing:13.459160pt;}
.ws154{word-spacing:13.475088pt;}
.ws5e{word-spacing:13.480397pt;}
.ws85{word-spacing:13.522872pt;}
.ws3f{word-spacing:13.533491pt;}
.ws10c{word-spacing:13.544109pt;}
.ws135{word-spacing:13.602512pt;}
.ws1d8{word-spacing:14.006212pt;}
.ws55{word-spacing:14.101589pt;}
.ws181{word-spacing:14.133445pt;}
.ws140{word-spacing:14.138755pt;}
.wsaf{word-spacing:14.154683pt;}
.ws2a{word-spacing:14.165301pt;}
.wsab{word-spacing:14.170611pt;}
.wsf8{word-spacing:14.175920pt;}
.wsc3{word-spacing:14.728091pt;}
.ws9e{word-spacing:14.733400pt;}
.wsc9{word-spacing:14.749328pt;}
.ws82{word-spacing:14.765256pt;}
.wsc4{word-spacing:14.786493pt;}
.ws18f{word-spacing:14.797112pt;}
.ws1d{word-spacing:15.397067pt;}
.ws16f{word-spacing:15.412995pt;}
.ws147{word-spacing:15.428923pt;}
.ws1c6{word-spacing:15.896279pt;}
.ws2e{word-spacing:15.943928pt;}
.ws122{word-spacing:15.975784pt;}
.ws1a8{word-spacing:16.002331pt;}
.ws12e{word-spacing:16.018259pt;}
.ws170{word-spacing:16.028877pt;}
.ws1e{word-spacing:16.055424pt;}
.ws152{word-spacing:16.060733pt;}
.ws12d{word-spacing:16.081971pt;}
.ws123{word-spacing:16.103208pt;}
.ws153{word-spacing:16.119136pt;}
.ws105{word-spacing:16.660688pt;}
.ws8c{word-spacing:16.665997pt;}
.ws91{word-spacing:16.692544pt;}
.ws1c7{word-spacing:16.907744pt;}
.ws1b3{word-spacing:17.147753pt;}
.ws1b4{word-spacing:17.169182pt;}
.ws13f{word-spacing:17.313736pt;}
.ws121{word-spacing:17.319045pt;}
.ws8d{word-spacing:17.361520pt;}
.ws1b5{word-spacing:17.640627pt;}
.ws148{word-spacing:17.961475pt;}
.ws7d{word-spacing:17.966784pt;}
.wscc{word-spacing:17.998640pt;}
.ws106{word-spacing:18.561429pt;}
.ws107{word-spacing:18.566739pt;}
.ws171{word-spacing:18.593285pt;}
.ws13a{word-spacing:19.246333pt;}
.ws19a{word-spacing:19.272880pt;}
.ws138{word-spacing:19.734792pt;}
.ws176{word-spacing:19.915309pt;}
.ws45{word-spacing:19.920619pt;}
.ws137{word-spacing:19.952475pt;}
.ws20{word-spacing:20.557739pt;}
.ws1c2{word-spacing:21.013604pt;}
.wsc0{word-spacing:21.847907pt;}
.wscb{word-spacing:22.410696pt;}
.ws158{word-spacing:22.447861pt;}
.ws1b1{word-spacing:22.458480pt;}
.ws11d{word-spacing:23.010651pt;}
.ws109{word-spacing:23.037197pt;}
.ws10a{word-spacing:23.058435pt;}
.wsae{word-spacing:23.063744pt;}
.ws90{word-spacing:23.095600pt;}
.wsaa{word-spacing:23.669008pt;}
.ws61{word-spacing:23.769885pt;}
.ws1c{word-spacing:24.263653pt;}
.ws14c{word-spacing:24.991032pt;}
.ws132{word-spacing:25.575059pt;}
.ws18a{word-spacing:25.633461pt;}
.wsf1{word-spacing:25.660008pt;}
.ws97{word-spacing:26.180323pt;}
.ws98{word-spacing:26.228107pt;}
.wse9{word-spacing:27.518275pt;}
.ws57{word-spacing:27.629771pt;}
.wsea{word-spacing:27.693483pt;}
.wsf3{word-spacing:28.235035pt;}
.ws56{word-spacing:28.250963pt;}
.ws11b{word-spacing:29.243808pt;}
.ws143{word-spacing:29.318139pt;}
.ws144{word-spacing:29.381851pt;}
.wse8{word-spacing:29.466800pt;}
.ws1{word-spacing:30.565832pt;}
.ws21{word-spacing:31.335685pt;}
.ws150{word-spacing:32.599307pt;}
.wsc5{word-spacing:32.625853pt;}
.wsc6{word-spacing:32.641781pt;}
.ws151{word-spacing:32.710803pt;}
.wsfe{word-spacing:33.969115pt;}
.ws1a0{word-spacing:34.501227pt;}
.ws168{word-spacing:35.248664pt;}
.ws2f{word-spacing:37.775907pt;}
.ws99{word-spacing:42.936579pt;}
.ws3b{word-spacing:51.256304pt;}
.ws3a{word-spacing:51.282851pt;}
.wsf7{word-spacing:72.998024pt;}
.wsd7{word-spacing:73.088283pt;}
.ws11e{word-spacing:252.431938pt;}
._14{margin-left:-800.339974pt;}
._15{margin-left:-755.264905pt;}
._13{margin-left:-589.912760pt;}
._d{margin-left:-13.836123pt;}
._3{margin-left:-2.475456pt;}
._1{margin-left:-1.406518pt;}
._0{width:0.908604pt;}
._2{width:2.084941pt;}
._17{width:5.962381pt;}
._19{width:10.005475pt;}
._6{width:11.399139pt;}
._9{width:17.078507pt;}
._16{width:18.887777pt;}
._f{width:20.397296pt;}
._a{width:22.362912pt;}
._10{width:24.147327pt;}
._12{width:25.162323pt;}
._8{width:29.546440pt;}
._7{width:31.016670pt;}
._c{width:35.503512pt;}
._4{width:40.142181pt;}
._b{width:41.290793pt;}
._18{width:45.194464pt;}
._5{width:46.897341pt;}
._e{width:83.223345pt;}
._11{width:421.694719pt;}
.fsb{font-size:23.105067pt;}
.fsc{font-size:23.105142pt;}
.fsd{font-size:28.733867pt;}
.fsa{font-size:32.247467pt;}
.fs7{font-size:40.764800pt;}
.fs9{font-size:41.555733pt;}
.fs0{font-size:42.858667pt;}
.fse{font-size:43.535467pt;}
.fs6{font-size:47.355733pt;}
.fs5{font-size:47.797333pt;}
.fs4{font-size:47.976000pt;}
.fs3{font-size:53.093333pt;}
.fs8{font-size:55.964725pt;}
.fs2{font-size:58.850133pt;}
.fs1{font-size:127.935467pt;}
.y0{bottom:0.000000pt;}
.y165{bottom:0.064000pt;}
.y16d{bottom:0.064800pt;}
.y169{bottom:0.065200pt;}
.y197{bottom:0.097200pt;}
.y18c{bottom:0.097333pt;}
.y179{bottom:0.097467pt;}
.y172{bottom:0.097600pt;}
.y185{bottom:0.098800pt;}
.y180{bottom:0.098933pt;}
.y162{bottom:1.278800pt;}
.y9{bottom:3.357067pt;}
.yc{bottom:3.358267pt;}
.y7{bottom:3.358400pt;}
.y5{bottom:5.917067pt;}
.y1{bottom:43.766267pt;}
.y19e{bottom:44.086267pt;}
.y112{bottom:47.763600pt;}
.y30{bottom:99.941147pt;}
.y1be{bottom:103.735733pt;}
.y89{bottom:104.813833pt;}
.yf3{bottom:106.083680pt;}
.ye3{bottom:107.002693pt;}
.y1d9{bottom:107.574400pt;}
.yb3{bottom:109.650340pt;}
.y54{bottom:112.550813pt;}
.y2f{bottom:115.298393pt;}
.y88{bottom:120.171080pt;}
.y15b{bottom:120.977253pt;}
.yf2{bottom:121.281647pt;}
.ye2{bottom:122.200660pt;}
.yb2{bottom:125.007587pt;}
.y53{bottom:127.748780pt;}
.y2e{bottom:130.655640pt;}
.y12b{bottom:131.242400pt;}
.y87{bottom:135.528327pt;}
.y15a{bottom:136.175220pt;}
.yf1{bottom:136.638893pt;}
.yb1{bottom:140.364833pt;}
.ye1{bottom:141.553180pt;}
.y52{bottom:143.106027pt;}
.y2d{bottom:146.012887pt;}
.y86{bottom:150.885573pt;}
.y159{bottom:151.532467pt;}
.yf0{bottom:151.996140pt;}
.yb0{bottom:155.722080pt;}
.y51{bottom:158.463273pt;}
.y2c{bottom:161.370133pt;}
.y199{bottom:164.044000pt;}
.y19a{bottom:164.141200pt;}
.y19c{bottom:165.450545pt;}
.ye0{bottom:166.175213pt;}
.y85{bottom:166.242820pt;}
.y158{bottom:166.889713pt;}
.yef{bottom:167.353387pt;}
.yaf{bottom:170.920047pt;}
.y50{bottom:173.820520pt;}
.y2b{bottom:176.594647pt;}
.y196{bottom:177.078667pt;}
.y198{bottom:177.175867pt;}
.y195{bottom:177.176237pt;}
.y19b{bottom:178.478533pt;}
.ydf{bottom:181.559007pt;}
.y84{bottom:181.626613pt;}
.y157{bottom:182.273507pt;}
.yee{bottom:182.737180pt;}
.yae{bottom:186.303840pt;}
.y4f{bottom:189.204313pt;}
.y2a{bottom:191.951893pt;}
.yde{bottom:196.916253pt;}
.y192{bottom:197.477333pt;}
.y193{bottom:197.574667pt;}
.y156{bottom:197.630753pt;}
.y83{bottom:197.780260pt;}
.yed{bottom:198.094427pt;}
.y194{bottom:198.878667pt;}
.yad{bottom:201.661087pt;}
.y4e{bottom:204.402280pt;}
.y29{bottom:207.309140pt;}
.ydd{bottom:212.273500pt;}
.y155{bottom:212.988000pt;}
.y82{bottom:213.137507pt;}
.yec{bottom:213.292393pt;}
.y18f{bottom:216.728000pt;}
.y190{bottom:216.825333pt;}
.yac{bottom:217.018333pt;}
.y191{bottom:218.131397pt;}
.y4d{bottom:219.759527pt;}
.y28{bottom:222.666387pt;}
.y18b{bottom:224.418667pt;}
.y18d{bottom:224.516000pt;}
.y18e{bottom:225.820000pt;}
.y81{bottom:228.494753pt;}
.yeb{bottom:228.649640pt;}
.yab{bottom:232.375580pt;}
.y4c{bottom:235.116773pt;}
.y154{bottom:235.536000pt;}
.y27{bottom:238.023633pt;}
.ydc{bottom:242.974720pt;}
.y80{bottom:243.852000pt;}
.yea{bottom:244.006887pt;}
.yaa{bottom:247.732827pt;}
.y4b{bottom:250.474020pt;}
.y187{bottom:252.537333pt;}
.y188{bottom:252.636133pt;}
.y26{bottom:253.380880pt;}
.y18a{bottom:253.934594pt;}
.ydb{bottom:258.172687pt;}
.y7f{bottom:259.115173pt;}
.ye9{bottom:259.364133pt;}
.ya9{bottom:262.930793pt;}
.y184{bottom:265.572000pt;}
.y186{bottom:265.670800pt;}
.y4a{bottom:265.831267pt;}
.y189{bottom:266.973467pt;}
.y25{bottom:268.578847pt;}
.yda{bottom:273.529933pt;}
.y7e{bottom:274.472420pt;}
.ya8{bottom:278.288040pt;}
.y49{bottom:281.188513pt;}
.ye8{bottom:282.073467pt;}
.y24{bottom:283.936093pt;}
.yd9{bottom:288.887180pt;}
.y7d{bottom:289.670387pt;}
.y178{bottom:291.134667pt;}
.y17a{bottom:291.232133pt;}
.y17b{bottom:292.536133pt;}
.ya7{bottom:293.645287pt;}
.y48{bottom:296.386480pt;}
.y23{bottom:299.293340pt;}
.y1bd{bottom:303.821857pt;}
.yd8{bottom:304.244427pt;}
.y7c{bottom:305.983313pt;}
.ya6{bottom:309.002533pt;}
.y17f{bottom:310.294667pt;}
.y181{bottom:310.393600pt;}
.y183{bottom:311.692061pt;}
.y47{bottom:311.743727pt;}
.y22{bottom:314.650587pt;}
.y1bc{bottom:319.175121pt;}
.yd7{bottom:319.601673pt;}
.y7b{bottom:321.340560pt;}
.y17d{bottom:323.329333pt;}
.y17c{bottom:323.424547pt;}
.y17e{bottom:323.426800pt;}
.ya5{bottom:324.359780pt;}
.y182{bottom:324.730933pt;}
.y46{bottom:327.100973pt;}
.y21{bottom:330.007833pt;}
.y1bb{bottom:334.527059pt;}
.yd6{bottom:334.799640pt;}
.y175{bottom:336.030667pt;}
.y176{bottom:336.128267pt;}
.y7a{bottom:336.697807pt;}
.y177{bottom:337.432267pt;}
.ya4{bottom:339.557747pt;}
.y45{bottom:342.458220pt;}
.y20{bottom:345.205800pt;}
.y1ba{bottom:349.878996pt;}
.yd5{bottom:350.156887pt;}
.y171{bottom:351.428000pt;}
.y173{bottom:351.525600pt;}
.y174{bottom:352.829600pt;}
.ya3{bottom:354.914993pt;}
.y79{bottom:355.891047pt;}
.y44{bottom:357.815467pt;}
.y1f{bottom:360.563047pt;}
.y1d8{bottom:363.632768pt;}
.y1b9{bottom:365.230933pt;}
.yd4{bottom:365.514133pt;}
.ya2{bottom:370.272240pt;}
.y43{bottom:373.172713pt;}
.y1e{bottom:375.920293pt;}
.y1d7{bottom:378.984705pt;}
.y78{bottom:380.672360pt;}
.yd3{bottom:380.871380pt;}
.ya1{bottom:385.629487pt;}
.y1b8{bottom:387.820267pt;}
.y42{bottom:388.410500pt;}
.y170{bottom:388.746933pt;}
.y1d{bottom:391.317360pt;}
.y1d6{bottom:394.376463pt;}
.y77{bottom:396.069427pt;}
.yd2{bottom:396.268447pt;}
.y153{bottom:400.402440pt;}
.ya0{bottom:401.026553pt;}
.y41{bottom:403.767747pt;}
.y1c{bottom:406.674607pt;}
.y1d5{bottom:409.728400pt;}
.y76{bottom:411.267393pt;}
.yd1{bottom:411.625693pt;}
.y152{bottom:415.759687pt;}
.y9f{bottom:416.383800pt;}
.y40{bottom:419.124993pt;}
.y12a{bottom:420.972213pt;}
.y1b{bottom:422.031853pt;}
.y75{bottom:426.624640pt;}
.yd0{bottom:426.823660pt;}
.y151{bottom:431.116933pt;}
.y9e{bottom:431.581767pt;}
.y1d4{bottom:432.437600pt;}
.y3f{bottom:434.482240pt;}
.y129{bottom:436.329460pt;}
.y1a{bottom:437.229820pt;}
.ycf{bottom:442.180907pt;}
.y150{bottom:446.474180pt;}
.y9d{bottom:446.939013pt;}
.y74{bottom:447.092120pt;}
.y3e{bottom:449.839487pt;}
.y128{bottom:451.527427pt;}
.y19{bottom:452.587067pt;}
.yce{bottom:457.538153pt;}
.y14f{bottom:461.672147pt;}
.y9c{bottom:462.296260pt;}
.y3d{bottom:465.196733pt;}
.y127{bottom:466.884673pt;}
.y18{bottom:473.056533pt;}
.ycd{bottom:476.731393pt;}
.y14e{bottom:477.029393pt;}
.y9b{bottom:477.653507pt;}
.y73{bottom:478.603013pt;}
.y3c{bottom:480.394700pt;}
.y126{bottom:482.241920pt;}
.ye7{bottom:486.062547pt;}
.y14d{bottom:492.386640pt;}
.y9a{bottom:493.010753pt;}
.y72{bottom:493.960260pt;}
.y3b{bottom:495.751947pt;}
.y125{bottom:497.599167pt;}
.ye6{bottom:501.419793pt;}
.ycc{bottom:501.512707pt;}
.y17{bottom:503.903435pt;}
.y14c{bottom:507.743887pt;}
.y99{bottom:508.368000pt;}
.y71{bottom:509.317507pt;}
.y3a{bottom:511.109193pt;}
.y124{bottom:512.956413pt;}
.ye5{bottom:516.777040pt;}
.ycb{bottom:516.869953pt;}
.y14b{bottom:523.101133pt;}
.y98{bottom:523.565967pt;}
.y70{bottom:524.674753pt;}
.y39{bottom:526.466440pt;}
.y123{bottom:528.313660pt;}
.y16{bottom:530.446157pt;}
.ye4{bottom:532.134287pt;}
.yca{bottom:532.227200pt;}
.y14a{bottom:538.458380pt;}
.y97{bottom:538.923213pt;}
.y6f{bottom:540.032000pt;}
.y38{bottom:541.823687pt;}
.y122{bottom:543.511627pt;}
.y15{bottom:543.879437pt;}
.y149{bottom:553.660267pt;}
.y96{bottom:554.280460pt;}
.y6e{bottom:555.229967pt;}
.y37{bottom:557.021653pt;}
.y14{bottom:557.156795pt;}
.y121{bottom:558.868873pt;}
.y148{bottom:569.012267pt;}
.y95{bottom:569.637707pt;}
.yc9{bottom:570.128667pt;}
.y13{bottom:570.434153pt;}
.y6d{bottom:570.587213pt;}
.y36{bottom:572.378900pt;}
.y120{bottom:574.226120pt;}
.y12{bottom:583.867433pt;}
.y94{bottom:584.994953pt;}
.y6c{bottom:585.944460pt;}
.y35{bottom:587.736147pt;}
.y147{bottom:588.202800pt;}
.y11f{bottom:589.583367pt;}
.y11{bottom:597.144791pt;}
.y93{bottom:600.219467pt;}
.y6b{bottom:601.328253pt;}
.y34{bottom:603.119940pt;}
.y11e{bottom:604.967160pt;}
.y10{bottom:610.446137pt;}
.y146{bottom:612.921780pt;}
.y111{bottom:614.730498pt;}
.y6a{bottom:616.685500pt;}
.y33{bottom:618.477187pt;}
.yf5{bottom:619.349439pt;}
.y11d{bottom:620.165127pt;}
.y92{bottom:622.928800pt;}
.yf{bottom:623.879417pt;}
.y110{bottom:624.412800pt;}
.y10b{bottom:627.990133pt;}
.y145{bottom:628.279027pt;}
.y69{bottom:631.883467pt;}
.y32{bottom:633.834433pt;}
.y108{bottom:633.994554pt;}
.y11c{bottom:635.522373pt;}
.ye{bottom:637.156775pt;}
.y144{bottom:643.636273pt;}
.yfe{bottom:644.467831pt;}
.y20f{bottom:646.155739pt;}
.y31{bottom:649.032400pt;}
.yd{bottom:650.434133pt;}
.y11b{bottom:650.879620pt;}
.y1b7{bottom:651.714776pt;}
.yfd{bottom:654.150133pt;}
.y68{bottom:654.592800pt;}
.yfc{bottom:656.966133pt;}
.yfa{bottom:658.068800pt;}
.y20e{bottom:658.466891pt;}
.y109{bottom:659.702133pt;}
.y11a{bottom:666.236867pt;}
.y1b6{bottom:667.066713pt;}
.y143{bottom:669.705100pt;}
.y20d{bottom:670.617323pt;}
.yf7{bottom:672.728800pt;}
.y107{bottom:673.554133pt;}
.y60{bottom:677.502133pt;}
.y62{bottom:677.930267pt;}
.y1d3{bottom:679.538705pt;}
.y119{bottom:681.594113pt;}
.y1b5{bottom:682.418651pt;}
.y20c{bottom:682.928475pt;}
.y1ef{bottom:683.693020pt;}
.y142{bottom:685.858747pt;}
.y1d2{bottom:694.732690pt;}
.y20b{bottom:695.239627pt;}
.y118{bottom:696.951360pt;}
.y1b4{bottom:697.611308pt;}
.y105{bottom:698.383600pt;}
.y1ee{bottom:699.050267pt;}
.y141{bottom:702.171673pt;}
.yb{bottom:703.208000pt;}
.y65{bottom:707.094267pt;}
.y20a{bottom:707.390059pt;}
.y1d1{bottom:710.084627pt;}
.y117{bottom:712.149327pt;}
.y1b3{bottom:712.964573pt;}
.y106{bottom:714.047807pt;}
.y140{bottom:718.484600pt;}
.y209{bottom:719.701211pt;}
.y1ed{bottom:722.158353pt;}
.y1d0{bottom:725.436565pt;}
.y10e{bottom:727.017067pt;}
.y103{bottom:727.033012pt;}
.y116{bottom:727.506573pt;}
.y1b2{bottom:728.316510pt;}
.ya{bottom:729.914267pt;}
.y208{bottom:731.851643pt;}
.y100{bottom:733.754765pt;}
.y13f{bottom:733.841847pt;}
.yfb{bottom:737.896933pt;}
.y1cf{bottom:740.788502pt;}
.y10f{bottom:742.681274pt;}
.y104{bottom:742.697219pt;}
.y115{bottom:742.863820pt;}
.yff{bottom:743.437067pt;}
.y1b1{bottom:743.668447pt;}
.y207{bottom:744.162795pt;}
.y13e{bottom:749.199093pt;}
.y8{bottom:749.905333pt;}
.y1ec{bottom:753.496693pt;}
.y1ce{bottom:756.140439pt;}
.y206{bottom:756.473947pt;}
.yf6{bottom:756.691733pt;}
.y10c{bottom:756.701067pt;}
.y10a{bottom:757.225431pt;}
.y114{bottom:758.221067pt;}
.y1b0{bottom:759.020385pt;}
.y13d{bottom:764.556340pt;}
.y205{bottom:768.624379pt;}
.y1eb{bottom:768.853940pt;}
.y1cd{bottom:771.493704pt;}
.y10d{bottom:772.365274pt;}
.yf8{bottom:772.379733pt;}
.y6{bottom:773.253333pt;}
.y1af{bottom:774.213042pt;}
.y13c{bottom:779.754307pt;}
.y204{bottom:780.935531pt;}
.y113{bottom:780.936096pt;}
.y102{bottom:784.046533pt;}
.yf9{bottom:784.098533pt;}
.y101{bottom:784.119733pt;}
.y1ea{bottom:784.211187pt;}
.y1cc{bottom:786.686361pt;}
.y4{bottom:788.605333pt;}
.y1ae{bottom:789.564979pt;}
.yf4{bottom:791.930400pt;}
.y203{bottom:793.243467pt;}
.y13b{bottom:796.067233pt;}
.y63{bottom:798.095440pt;}
.y1e9{bottom:799.568433pt;}
.y67{bottom:801.197067pt;}
.y1cb{bottom:802.038299pt;}
.y64{bottom:802.061483pt;}
.y1ad{bottom:804.916917pt;}
.y202{bottom:805.397115pt;}
.y13a{bottom:811.464300pt;}
.y168{bottom:812.802667pt;}
.y16a{bottom:812.867867pt;}
.y16b{bottom:813.727733pt;}
.y1e8{bottom:814.965500pt;}
.y1ca{bottom:817.430056pt;}
.y201{bottom:817.751125pt;}
.y1ac{bottom:820.308674pt;}
.y61{bottom:820.793067pt;}
.y139{bottom:826.821547pt;}
.y200{bottom:830.064400pt;}
.y1e7{bottom:830.163467pt;}
.y15f{bottom:832.361200pt;}
.y1c9{bottom:832.783321pt;}
.y1ab{bottom:835.660611pt;}
.y3{bottom:840.471753pt;}
.y138{bottom:842.178793pt;}
.y1ff{bottom:842.234139pt;}
.y1e6{bottom:845.520713pt;}
.y1c8{bottom:848.136585pt;}
.y1aa{bottom:851.012549pt;}
.y1fe{bottom:854.545291pt;}
.y137{bottom:858.332440pt;}
.y1e5{bottom:860.877960pt;}
.y1c7{bottom:863.329243pt;}
.y1a9{bottom:866.206533pt;}
.y1fd{bottom:866.856443pt;}
.y164{bottom:872.077333pt;}
.y166{bottom:872.141333pt;}
.ybe{bottom:872.273847pt;}
.y167{bottom:873.003349pt;}
.y136{bottom:873.689687pt;}
.yc8{bottom:875.618727pt;}
.y1e4{bottom:876.235207pt;}
.y2{bottom:877.253200pt;}
.y1c6{bottom:878.681180pt;}
.y1fc{bottom:879.006875pt;}
.y1a8{bottom:881.560166pt;}
.ybd{bottom:887.631093pt;}
.y135{bottom:889.046933pt;}
.yc7{bottom:890.975973pt;}
.y1fb{bottom:891.313733pt;}
.y1e3{bottom:891.592453pt;}
.y1c5{bottom:894.033117pt;}
.y1a7{bottom:896.912103pt;}
.y15e{bottom:901.792000pt;}
.ybc{bottom:902.988340pt;}
.y1fa{bottom:903.639893pt;}
.y134{bottom:905.359860pt;}
.yc6{bottom:906.173940pt;}
.y1e2{bottom:906.949700pt;}
.y1c4{bottom:909.385055pt;}
.y1a6{bottom:912.264041pt;}
.y1f9{bottom:915.790325pt;}
.yc5{bottom:921.531187pt;}
.y133{bottom:921.672787pt;}
.y1e1{bottom:922.147667pt;}
.y91{bottom:923.539580pt;}
.y1c3{bottom:924.738319pt;}
.y66{bottom:924.954800pt;}
.ybb{bottom:926.336133pt;}
.yba{bottom:926.337060pt;}
.y1a5{bottom:927.615978pt;}
.y1f8{bottom:928.101477pt;}
.yc4{bottom:936.888433pt;}
.y1e0{bottom:937.504913pt;}
.y132{bottom:937.985713pt;}
.y90{bottom:938.896827pt;}
.y1f7{bottom:940.412629pt;}
.y1c2{bottom:941.048591pt;}
.y1a4{bottom:942.969243pt;}
.yb8{bottom:949.831107pt;}
.yb9{bottom:949.844133pt;}
.yc3{bottom:952.243067pt;}
.y1f6{bottom:952.563061pt;}
.y15d{bottom:952.597333pt;}
.y1df{bottom:952.862160pt;}
.y131{bottom:953.183680pt;}
.y8f{bottom:954.094793pt;}
.y1c1{bottom:956.242576pt;}
.y1a3{bottom:958.161900pt;}
.y161{bottom:958.929333pt;}
.y160{bottom:960.208133pt;}
.y163{bottom:961.070149pt;}
.y1f5{bottom:964.874213pt;}
.yc2{bottom:967.576380pt;}
.y1de{bottom:968.219407pt;}
.y8e{bottom:969.452040pt;}
.y130{bottom:969.496607pt;}
.y1c0{bottom:972.552848pt;}
.yb7{bottom:973.497460pt;}
.y5f{bottom:973.505873pt;}
.y1a2{bottom:973.513837pt;}
.y1f4{bottom:977.190667pt;}
.y1dd{bottom:983.576653pt;}
.y8d{bottom:984.809287pt;}
.y12f{bottom:984.853853pt;}
.y1bf{bottom:987.906113pt;}
.yc1{bottom:988.043860pt;}
.yb6{bottom:988.854707pt;}
.y5e{bottom:988.863120pt;}
.y1a1{bottom:988.865775pt;}
.y1f3{bottom:989.346512pt;}
.y16c{bottom:992.302667pt;}
.y16e{bottom:992.367467pt;}
.y16f{bottom:993.227733pt;}
.y1dc{bottom:998.933900pt;}
.y59{bottom:999.456133pt;}
.y8c{bottom:1000.166533pt;}
.y12e{bottom:1000.211100pt;}
.y1f2{bottom:1001.657664pt;}
.yb5{bottom:1004.211953pt;}
.y1a0{bottom:1004.217712pt;}
.y5d{bottom:1004.217733pt;}
.y1f1{bottom:1013.968816pt;}
.y1db{bottom:1014.131867pt;}
.y8b{bottom:1015.523780pt;}
.y12d{bottom:1015.568347pt;}
.yc0{bottom:1019.554753pt;}
.y5c{bottom:1019.564340pt;}
.yb4{bottom:1019.569200pt;}
.y19f{bottom:1019.569649pt;}
.y58{bottom:1026.013467pt;}
.y15c{bottom:1027.113733pt;}
.y8a{bottom:1034.743567pt;}
.y12c{bottom:1034.788133pt;}
.ybf{bottom:1034.938547pt;}
.y1f0{bottom:1034.945240pt;}
.y5b{bottom:1034.948133pt;}
.y57{bottom:1039.292133pt;}
.y56{bottom:1052.570800pt;}
.y210{bottom:1065.806373pt;}
.y55{bottom:1065.849467pt;}
.y19d{bottom:1079.089867pt;}
.y1da{bottom:1080.951600pt;}
.y5a{bottom:1094.278133pt;}
.h20{height:4.720000pt;}
.h1e{height:4.934667pt;}
.h1f{height:4.936000pt;}
.h1d{height:6.164000pt;}
.h23{height:7.477333pt;}
.h26{height:7.497333pt;}
.h22{height:7.498667pt;}
.h24{height:7.541333pt;}
.h25{height:7.542667pt;}
.h5{height:15.352000pt;}
.h18{height:16.821120pt;}
.h1c{height:19.670352pt;}
.h7{height:23.348000pt;}
.h17{height:23.477038pt;}
.h19{height:24.097941pt;}
.h1{height:28.565469pt;}
.h27{height:29.779240pt;}
.h21{height:29.803088pt;}
.h16{height:30.253710pt;}
.h1a{height:33.082371pt;}
.hb{height:33.187406pt;}
.h3{height:36.493333pt;}
.ha{height:36.890534pt;}
.h13{height:37.300708pt;}
.hc{height:42.042510pt;}
.h11{height:42.063437pt;}
.h29{height:42.067512pt;}
.h2a{height:42.076302pt;}
.h28{height:42.080611pt;}
.h10{height:42.516413pt;}
.h8{height:46.697333pt;}
.h9{height:48.350813pt;}
.hf{height:49.390550pt;}
.h12{height:52.082279pt;}
.h6{height:52.108203pt;}
.h1b{height:52.113510pt;}
.h15{height:52.118656pt;}
.he{height:52.118736pt;}
.hd{height:52.129243pt;}
.h14{height:52.182416pt;}
.h4{height:57.758187pt;}
.h2{height:112.255876pt;}
.h0{height:1122.666667pt;}
.w7{width:0.149333pt;}
.w5{width:13.094667pt;}
.w8{width:20.200000pt;}
.w4{width:23.982667pt;}
.w6{width:25.536000pt;}
.w10{width:35.004000pt;}
.we{width:41.420000pt;}
.wd{width:42.641333pt;}
.wf{width:42.656000pt;}
.w13{width:48.021333pt;}
.wc{width:52.657333pt;}
.wb{width:57.546667pt;}
.w3{width:58.764000pt;}
.w12{width:74.248000pt;}
.wa{width:76.545333pt;}
.w9{width:89.442667pt;}
.w11{width:89.852000pt;}
.w2{width:651.806667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x5b{left:-1.127867pt;}
.x0{left:0.000000pt;}
.x4b{left:2.701067pt;}
.x75{left:5.287867pt;}
.x81{left:7.703333pt;}
.x58{left:9.840000pt;}
.x6{left:11.226800pt;}
.x77{left:12.995733pt;}
.x53{left:14.030267pt;}
.x4c{left:15.707467pt;}
.x86{left:16.794933pt;}
.x4e{left:19.005067pt;}
.x62{left:26.096400pt;}
.x6b{left:27.089200pt;}
.x7f{left:30.289600pt;}
.x83{left:33.625467pt;}
.x70{left:34.574000pt;}
.x91{left:37.543600pt;}
.x64{left:39.986533pt;}
.x95{left:42.766400pt;}
.x16{left:45.257333pt;}
.x72{left:46.884400pt;}
.x4f{left:49.505867pt;}
.x66{left:53.576400pt;}
.x93{left:56.045200pt;}
.x1e{left:64.127733pt;}
.x6d{left:65.878800pt;}
.xb{left:67.961789pt;}
.x4{left:70.844000pt;}
.x8c{left:72.077467pt;}
.x1c{left:73.206267pt;}
.x1f{left:74.680033pt;}
.xa{left:77.401067pt;}
.x67{left:78.776133pt;}
.x8d{left:80.292267pt;}
.xd{left:86.868267pt;}
.x2a{left:90.226420pt;}
.x99{left:91.825867pt;}
.x1d{left:95.184133pt;}
.x45{left:102.223664pt;}
.x2{left:104.150267pt;}
.x5{left:108.932400pt;}
.x60{left:110.150667pt;}
.x6e{left:112.071467pt;}
.x68{left:114.288000pt;}
.x32{left:118.856933pt;}
.x35{left:123.106645pt;}
.x34{left:124.018133pt;}
.x69{left:125.278000pt;}
.x17{left:127.240933pt;}
.x61{left:130.099467pt;}
.x39{left:131.839467pt;}
.x98{left:134.358933pt;}
.x88{left:135.660533pt;}
.x84{left:137.878667pt;}
.x6a{left:138.918133pt;}
.x63{left:147.678267pt;}
.x85{left:148.954800pt;}
.x6c{left:152.508000pt;}
.x9d{left:158.978973pt;}
.x9c{left:160.265600pt;}
.x65{left:161.268133pt;}
.x87{left:166.126400pt;}
.x33{left:169.762933pt;}
.x9{left:175.139200pt;}
.x37{left:179.909866pt;}
.x44{left:181.855067pt;}
.xc{left:183.455067pt;}
.x4a{left:184.376000pt;}
.x36{left:189.307067pt;}
.x1{left:193.209733pt;}
.x26{left:200.726967pt;}
.x4d{left:201.732267pt;}
.x97{left:204.564400pt;}
.x24{left:206.483067pt;}
.x47{left:211.420400pt;}
.x25{left:217.517733pt;}
.x18{left:219.569733pt;}
.x8e{left:222.429733pt;}
.x89{left:224.113333pt;}
.x8{left:226.312400pt;}
.x96{left:227.577733pt;}
.x8f{left:228.881969pt;}
.x90{left:229.793333pt;}
.x27{left:231.909733pt;}
.x7c{left:234.760400pt;}
.x74{left:236.058225pt;}
.x50{left:237.179467pt;}
.x73{left:238.473733pt;}
.x28{left:239.585733pt;}
.x7a{left:241.320000pt;}
.x80{left:242.586667pt;}
.x7d{left:243.641333pt;}
.x76{left:247.074400pt;}
.x1b{left:248.727067pt;}
.x6f{left:250.673600pt;}
.x82{left:254.544267pt;}
.x7b{left:256.069600pt;}
.x7e{left:257.241733pt;}
.x7{left:258.816667pt;}
.x78{left:259.891867pt;}
.x8a{left:261.640400pt;}
.x3e{left:263.639850pt;}
.x3f{left:265.280533pt;}
.x59{left:266.549867pt;}
.x56{left:267.756000pt;}
.x23{left:273.688533pt;}
.x57{left:275.947200pt;}
.x92{left:277.144933pt;}
.x94{left:278.900933pt;}
.x15{left:283.444533pt;}
.x71{left:284.353733pt;}
.x79{left:286.490533pt;}
.x8b{left:287.503733pt;}
.x5f{left:290.696533pt;}
.x3{left:293.206903pt;}
.x49{left:296.769867pt;}
.x1a{left:297.922987pt;}
.x19{left:298.952533pt;}
.x41{left:301.433790pt;}
.x5e{left:302.617867pt;}
.x48{left:304.535200pt;}
.x5c{left:310.769067pt;}
.x40{left:311.992533pt;}
.x3d{left:313.402000pt;}
.x3b{left:315.468533pt;}
.x5d{left:317.866133pt;}
.x5a{left:324.430667pt;}
.x55{left:335.931572pt;}
.x51{left:337.041333pt;}
.x52{left:343.669867pt;}
.x54{left:358.637200pt;}
.x2c{left:384.195333pt;}
.x20{left:393.319673pt;}
.x2f{left:396.760800pt;}
.x21{left:412.194353pt;}
.xe{left:416.020387pt;}
.x9f{left:417.320917pt;}
.xf{left:434.921613pt;}
.x29{left:435.885060pt;}
.x3a{left:436.967014pt;}
.x30{left:439.336933pt;}
.x46{left:448.347600pt;}
.x2e{left:449.930267pt;}
.x9b{left:472.175600pt;}
.x22{left:479.052933pt;}
.x9a{left:480.011600pt;}
.x2b{left:481.931600pt;}
.x9e{left:522.548847pt;}
.x11{left:527.622533pt;}
.x3c{left:531.305697pt;}
.x38{left:542.474400pt;}
.x10{left:560.108800pt;}
.x43{left:571.221333pt;}
.x13{left:575.375867pt;}
.x14{left:577.809067pt;}
.x42{left:580.618533pt;}
.x12{left:607.375867pt;}
.x2d{left:654.581403pt;}
.x31{left:667.546667pt;}
}




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