
    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_9ad3612bbab2584bc370f194.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ade99fcc4b8be345c57632fd.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a409f507151114dd5e3a0c4b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.959961;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_020799cb8aafb389378ca391.woff')format("woff");}.ff4{font-family:ff4;line-height:0.957000;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_ac56e1ad5d7d42ee2b255acc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.132000;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_c79a7c73c10e2fb7b843fbc2.woff')format("woff");}.ff6{font-family:ff6;line-height:1.053000;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_234ad5e8ad5680283f2aa23b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.444000;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_ee6f124ee1c1ab60002d0143.woff')format("woff");}.ff8{font-family:ff8;line-height:0.856934;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_8023082a3925a6411868c0c4.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999000;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_ed7c52fd7e549cb0d8e4d4e2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.431000;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_ae02859ba50c9feba3a41f59.woff')format("woff");}.ffb{font-family:ffb;line-height:0.948000;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_6da9cc7dc8d8250b60bdb195.woff')format("woff");}.ffc{font-family:ffc;line-height:0.909000;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_6ff93a8465dd4d5ee1a20cba.woff')format("woff");}.ffd{font-family:ffd;line-height:1.000000;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_f39ab22353b99ee54c864fa1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.905000;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_27da551e0c21641278bb4d2f.woff')format("woff");}.fff{font-family:fff;line-height:1.000000;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_24fc425d1fbb4c3b21aa1a8f.woff')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_6c868d0f8f2733965b86f646.woff')format("woff");}.ff11{font-family:ff11;line-height:1.200000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_a3a89ab5f5764d89898ea333.woff')format("woff");}.ff12{font-family:ff12;line-height:0.831000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5124e23e3fa556f4dc0db188.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_5e26742d01e8a96570676a4f.woff')format("woff");}.ff14{font-family:ff14;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_75c38e798d1c8142f128749a.woff')format("woff");}.ff15{font-family:ff15;line-height:0.043000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_2e748828ed5dd5cc1715747a.woff')format("woff");}.ff16{font-family:ff16;line-height:0.663000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_542009f7abeedfe01a1907e5.woff')format("woff");}.ff17{font-family:ff17;line-height:0.296000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_2c8dccb4af43b805f021d22b.woff')format("woff");}.ff18{font-family:ff18;line-height:0.709000;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:ff19;src:url('chunks/assets/font_5546736ab7f29256bb604f86.woff')format("woff");}.ff19{font-family:ff19;line-height:0.308000;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:ff1a;src:url('chunks/assets/font_f496022575ed2675119409c7.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.052000;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:ff1b;src:url('chunks/assets/font_b60058a99f23c94e00ec398b.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.315000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051979,0.244537,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v5{vertical-align:-28.560000px;}
.v3{vertical-align:-20.922000px;}
.vf{vertical-align:-10.830000px;}
.v6{vertical-align:-9.000000px;}
.vc{vertical-align:-7.050000px;}
.vd{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.824000px;}
.vb{vertical-align:8.724000px;}
.v10{vertical-align:14.610000px;}
.va{vertical-align:17.334000px;}
.v4{vertical-align:21.774000px;}
.ve{vertical-align:22.938000px;}
.v1{vertical-align:25.620000px;}
.v2{vertical-align:26.904000px;}
.v7{vertical-align:40.590000px;}
.v9{vertical-align:51.714000px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000150px;}
.ls58{letter-spacing:0.000167px;}
.ls47{letter-spacing:0.000200px;}
.ls18{letter-spacing:0.000233px;}
.ls2b{letter-spacing:0.000266px;}
.ls1{letter-spacing:0.000300px;}
.ls3f{letter-spacing:0.000310px;}
.ls41{letter-spacing:0.000334px;}
.ls31{letter-spacing:0.000343px;}
.ls37{letter-spacing:0.000350px;}
.ls87{letter-spacing:0.000357px;}
.ls3{letter-spacing:0.000367px;}
.ls11{letter-spacing:0.000400px;}
.ls1e{letter-spacing:0.000433px;}
.ls5c{letter-spacing:0.000467px;}
.ls51{letter-spacing:0.000500px;}
.ls6a{letter-spacing:0.000578px;}
.ls4{letter-spacing:0.000600px;}
.ls2c{letter-spacing:0.000684px;}
.ls82{letter-spacing:0.001847px;}
.ls7f{letter-spacing:0.002052px;}
.ls4d{letter-spacing:0.002176px;}
.ls83{letter-spacing:0.002628px;}
.ls4a{letter-spacing:0.002718px;}
.ls5d{letter-spacing:0.002736px;}
.ls4c{letter-spacing:0.002880px;}
.ls46{letter-spacing:0.003514px;}
.ls2d{letter-spacing:0.003563px;}
.ls4f{letter-spacing:0.004397px;}
.ls7c{letter-spacing:0.006310px;}
.ls34{letter-spacing:0.006500px;}
.ls56{letter-spacing:2.106367px;}
.ls84{letter-spacing:2.983800px;}
.ls2e{letter-spacing:2.986632px;}
.ls7e{letter-spacing:2.987751px;}
.ls68{letter-spacing:2.988000px;}
.ls28{letter-spacing:2.988526px;}
.ls6b{letter-spacing:2.989800px;}
.ls81{letter-spacing:2.989847px;}
.ls7b{letter-spacing:2.990052px;}
.ls45{letter-spacing:2.990736px;}
.ls6c{letter-spacing:2.994000px;}
.ls14{letter-spacing:3.336311px;}
.ls48{letter-spacing:4.158334px;}
.ls17{letter-spacing:6.666300px;}
.ls3c{letter-spacing:8.996880px;}
.ls3b{letter-spacing:9.008718px;}
.ls30{letter-spacing:9.654000px;}
.ls44{letter-spacing:9.996167px;}
.ls20{letter-spacing:9.996300px;}
.lsd{letter-spacing:9.996467px;}
.ls1b{letter-spacing:10.002300px;}
.ls3a{letter-spacing:10.002310px;}
.ls19{letter-spacing:10.002400px;}
.lsa{letter-spacing:10.002467px;}
.ls43{letter-spacing:10.008310px;}
.ls5f{letter-spacing:10.680300px;}
.ls89{letter-spacing:11.376367px;}
.ls9{letter-spacing:11.382367px;}
.ls59{letter-spacing:11.514310px;}
.ls95{letter-spacing:11.694310px;}
.ls97{letter-spacing:11.976367px;}
.ls55{letter-spacing:12.326880px;}
.ls67{letter-spacing:12.330300px;}
.ls66{letter-spacing:12.330334px;}
.ls4b{letter-spacing:12.332880px;}
.ls57{letter-spacing:12.336300px;}
.ls54{letter-spacing:12.336334px;}
.ls27{letter-spacing:12.986052px;}
.ls7d{letter-spacing:13.319867px;}
.ls2a{letter-spacing:13.326467px;}
.ls12{letter-spacing:13.332300px;}
.ls15{letter-spacing:13.332334px;}
.ls2f{letter-spacing:13.332367px;}
.ls25{letter-spacing:13.332433px;}
.ls16{letter-spacing:13.332467px;}
.ls26{letter-spacing:13.332600px;}
.ls6{letter-spacing:13.446300px;}
.ls9a{letter-spacing:13.494300px;}
.ls86{letter-spacing:13.496880px;}
.ls49{letter-spacing:13.497514px;}
.ls53{letter-spacing:13.500150px;}
.ls99{letter-spacing:13.500400px;}
.ls69{letter-spacing:13.502718px;}
.ls8b{letter-spacing:13.596367px;}
.ls76{letter-spacing:13.886052px;}
.ls4e{letter-spacing:14.192952px;}
.ls3e{letter-spacing:14.952300px;}
.ls39{letter-spacing:15.000150px;}
.ls98{letter-spacing:15.000600px;}
.ls8a{letter-spacing:15.319847px;}
.lsf{letter-spacing:15.324150px;}
.ls77{letter-spacing:15.325847px;}
.ls35{letter-spacing:15.348167px;}
.ls80{letter-spacing:15.900150px;}
.ls88{letter-spacing:16.182367px;}
.ls8e{letter-spacing:16.320000px;}
.ls29{letter-spacing:16.326000px;}
.ls8d{letter-spacing:16.483800px;}
.ls6d{letter-spacing:16.489800px;}
.ls1a{letter-spacing:16.662467px;}
.ls1f{letter-spacing:16.668311px;}
.ls33{letter-spacing:16.752233px;}
.ls96{letter-spacing:16.758310px;}
.ls36{letter-spacing:17.340150px;}
.ls8c{letter-spacing:17.820310px;}
.ls94{letter-spacing:17.904000px;}
.ls91{letter-spacing:18.006000px;}
.ls90{letter-spacing:18.012000px;}
.ls64{letter-spacing:18.180300px;}
.lse{letter-spacing:18.192367px;}
.ls5{letter-spacing:18.348600px;}
.ls79{letter-spacing:18.902052px;}
.ls85{letter-spacing:19.218000px;}
.ls71{letter-spacing:19.434300px;}
.ls40{letter-spacing:19.548233px;}
.ls32{letter-spacing:19.740000px;}
.ls23{letter-spacing:20.046433px;}
.ls3d{letter-spacing:20.322300px;}
.ls6f{letter-spacing:20.334000px;}
.ls92{letter-spacing:20.502000px;}
.ls10{letter-spacing:20.766400px;}
.ls93{letter-spacing:21.012000px;}
.ls5e{letter-spacing:21.130632px;}
.ls7a{letter-spacing:21.438433px;}
.ls75{letter-spacing:21.524052px;}
.lsb{letter-spacing:21.996367px;}
.ls63{letter-spacing:22.176310px;}
.ls72{letter-spacing:22.428000px;}
.ls78{letter-spacing:22.824000px;}
.ls1d{letter-spacing:22.866334px;}
.ls1c{letter-spacing:22.872300px;}
.ls62{letter-spacing:23.502300px;}
.ls38{letter-spacing:23.796150px;}
.ls5b{letter-spacing:24.342467px;}
.ls5a{letter-spacing:24.348310px;}
.lsc{letter-spacing:24.992052px;}
.ls7{letter-spacing:25.332000px;}
.ls65{letter-spacing:25.374300px;}
.ls8f{letter-spacing:25.666632px;}
.ls70{letter-spacing:25.848300px;}
.ls73{letter-spacing:26.610000px;}
.ls61{letter-spacing:28.056300px;}
.ls21{letter-spacing:28.284000px;}
.ls42{letter-spacing:28.808052px;}
.ls60{letter-spacing:29.838300px;}
.ls8{letter-spacing:29.889442px;}
.ls74{letter-spacing:34.940052px;}
.ls24{letter-spacing:35.780052px;}
.ls13{letter-spacing:42.684467px;}
.ls22{letter-spacing:47.918052px;}
.ls6e{letter-spacing:185.305800px;}
.ls50{letter-spacing:487.218200px;}
.ls52{letter-spacing:613.380367px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-65.999400px;}
.ws69{word-spacing:-36.719633px;}
.ws104{word-spacing:-33.047633px;}
.ws5{word-spacing:-31.967600px;}
.ws4c{word-spacing:-29.999700px;}
.wsc{word-spacing:-26.999700px;}
.ws141{word-spacing:-25.359388px;}
.wsc2{word-spacing:-21.719783px;}
.ws7b{word-spacing:-21.078000px;}
.ws4{word-spacing:-20.999700px;}
.ws14b{word-spacing:-20.039800px;}
.ws138{word-spacing:-19.979800px;}
.ws10c{word-spacing:-19.919801px;}
.ws117{word-spacing:-19.859801px;}
.ws40{word-spacing:-19.799802px;}
.ws188{word-spacing:-19.739803px;}
.ws199{word-spacing:-19.604098px;}
.wsca{word-spacing:-19.601782px;}
.ws110{word-spacing:-19.559804px;}
.ws196{word-spacing:-19.551966px;}
.ws197{word-spacing:-19.551599px;}
.wscc{word-spacing:-19.547783px;}
.ws195{word-spacing:-19.545966px;}
.ws33{word-spacing:-19.499805px;}
.ws62{word-spacing:-19.439806px;}
.ws41{word-spacing:-19.379806px;}
.wsf0{word-spacing:-19.372381px;}
.wsf1{word-spacing:-19.319807px;}
.ws95{word-spacing:-19.259807px;}
.ws96{word-spacing:-19.199808px;}
.ws132{word-spacing:-19.139809px;}
.wsfc{word-spacing:-19.019810px;}
.wsc5{word-spacing:-18.970200px;}
.ws35{word-spacing:-18.959810px;}
.ws130{word-spacing:-18.899811px;}
.ws11a{word-spacing:-18.839812px;}
.wsb7{word-spacing:-18.779812px;}
.ws139{word-spacing:-18.719813px;}
.ws13f{word-spacing:-18.599814px;}
.ws63{word-spacing:-18.539815px;}
.ws5b{word-spacing:-18.479815px;}
.ws186{word-spacing:-18.305233px;}
.ws55{word-spacing:-18.299817px;}
.ws8a{word-spacing:-18.239818px;}
.wse9{word-spacing:-18.179818px;}
.ws116{word-spacing:-18.160300px;}
.ws10b{word-spacing:-18.119819px;}
.ws12a{word-spacing:-18.059819px;}
.ws146{word-spacing:-18.035800px;}
.ws170{word-spacing:-17.999820px;}
.ws14c{word-spacing:-17.981800px;}
.wsa0{word-spacing:-17.939821px;}
.ws47{word-spacing:-17.879821px;}
.ws37{word-spacing:-17.819822px;}
.wse6{word-spacing:-17.759822px;}
.ws82{word-spacing:-17.699823px;}
.wsa5{word-spacing:-17.662700px;}
.ws129{word-spacing:-17.639824px;}
.ws32{word-spacing:-17.579824px;}
.ws6d{word-spacing:-17.459825px;}
.ws81{word-spacing:-17.399826px;}
.ws187{word-spacing:-17.339827px;}
.ws119{word-spacing:-17.279827px;}
.ws4e{word-spacing:-17.219828px;}
.ws85{word-spacing:-17.099829px;}
.wsab{word-spacing:-17.039830px;}
.ws43{word-spacing:-16.979830px;}
.ws152{word-spacing:-16.919831px;}
.ws13e{word-spacing:-16.859831px;}
.ws29{word-spacing:-16.799832px;}
.wse7{word-spacing:-16.786767px;}
.wse8{word-spacing:-16.781550px;}
.ws61{word-spacing:-16.739833px;}
.ws17f{word-spacing:-16.679833px;}
.ws185{word-spacing:-16.559834px;}
.wse3{word-spacing:-16.499835px;}
.ws131{word-spacing:-16.439836px;}
.ws172{word-spacing:-16.343100px;}
.ws171{word-spacing:-16.319837px;}
.ws127{word-spacing:-16.259837px;}
.wse4{word-spacing:-16.204784px;}
.wse5{word-spacing:-16.199838px;}
.wsfd{word-spacing:-16.139839px;}
.ws5e{word-spacing:-16.091821px;}
.ws8d{word-spacing:-16.079839px;}
.wsec{word-spacing:-16.037822px;}
.ws80{word-spacing:-16.019840px;}
.wsb5{word-spacing:-15.959840px;}
.wsb6{word-spacing:-15.899841px;}
.ws8f{word-spacing:-15.839842px;}
.ws7d{word-spacing:-15.779842px;}
.ws2c{word-spacing:-15.719843px;}
.wsde{word-spacing:-15.664834px;}
.wsd6{word-spacing:-15.659843px;}
.ws6e{word-spacing:-15.599844px;}
.wse0{word-spacing:-15.539845px;}
.ws36{word-spacing:-15.479845px;}
.ws92{word-spacing:-15.419846px;}
.wse2{word-spacing:-15.359846px;}
.ws2a{word-spacing:-15.299847px;}
.ws90{word-spacing:-15.179848px;}
.ws12b{word-spacing:-15.119849px;}
.wse{word-spacing:-15.059849px;}
.ws149{word-spacing:-15.035100px;}
.ws148{word-spacing:-15.034133px;}
.ws16e{word-spacing:-15.004334px;}
.wsd{word-spacing:-14.999850px;}
.wsf{word-spacing:-14.999550px;}
.ws10d{word-spacing:-14.939851px;}
.ws1d{word-spacing:-14.927813px;}
.wsf2{word-spacing:-14.879851px;}
.ws1c{word-spacing:-14.879814px;}
.ws89{word-spacing:-14.819852px;}
.wsb8{word-spacing:-14.759852px;}
.ws6{word-spacing:-14.717866px;}
.ws56{word-spacing:-14.699853px;}
.ws8{word-spacing:-14.651867px;}
.ws93{word-spacing:-14.639854px;}
.ws193{word-spacing:-14.633837px;}
.ws49{word-spacing:-14.459855px;}
.ws11b{word-spacing:-14.399856px;}
.ws99{word-spacing:-14.339857px;}
.ws22{word-spacing:-14.279857px;}
.ws156{word-spacing:-14.255842px;}
.ws28{word-spacing:-14.219858px;}
.ws198{word-spacing:-14.201842px;}
.ws42{word-spacing:-14.159858px;}
.ws97{word-spacing:-14.099859px;}
.ws15d{word-spacing:-14.093843px;}
.ws147{word-spacing:-14.039860px;}
.ws15c{word-spacing:-14.039844px;}
.wsbb{word-spacing:-13.859861px;}
.wsf3{word-spacing:-13.799862px;}
.ws11c{word-spacing:-13.769847px;}
.ws14a{word-spacing:-13.768633px;}
.ws3b{word-spacing:-13.739863px;}
.ws9d{word-spacing:-13.679863px;}
.ws88{word-spacing:-13.619864px;}
.ws181{word-spacing:-13.564567px;}
.ws135{word-spacing:-13.559864px;}
.wsa{word-spacing:-13.553849px;}
.wsa8{word-spacing:-13.549660px;}
.ws136{word-spacing:-13.505550px;}
.ws194{word-spacing:-13.505100px;}
.ws137{word-spacing:-13.504950px;}
.wsc6{word-spacing:-13.504834px;}
.wsc7{word-spacing:-13.504566px;}
.ws191{word-spacing:-13.504500px;}
.wscf{word-spacing:-13.504200px;}
.wsb{word-spacing:-13.503900px;}
.ws13a{word-spacing:-13.499865px;}
.ws9{word-spacing:-13.499850px;}
.ws16f{word-spacing:-13.499400px;}
.ws190{word-spacing:-13.499100px;}
.ws155{word-spacing:-13.498834px;}
.ws192{word-spacing:-13.498800px;}
.ws143{word-spacing:-13.498567px;}
.ws18e{word-spacing:-13.498500px;}
.ws115{word-spacing:-13.497700px;}
.ws18f{word-spacing:-13.497600px;}
.ws12e{word-spacing:-13.440602px;}
.ws10f{word-spacing:-13.439866px;}
.ws5d{word-spacing:-13.379866px;}
.ws1e{word-spacing:-13.343833px;}
.wsba{word-spacing:-13.319867px;}
.ws7c{word-spacing:-13.259867px;}
.ws6f{word-spacing:-13.199868px;}
.ws34{word-spacing:-13.139869px;}
.ws3d{word-spacing:-13.079869px;}
.wsa6{word-spacing:-13.019870px;}
.wsc1{word-spacing:-12.959870px;}
.ws11f{word-spacing:-12.899871px;}
.ws25{word-spacing:-12.839872px;}
.ws24{word-spacing:-12.779872px;}
.ws78{word-spacing:-12.719873px;}
.ws19{word-spacing:-12.659873px;}
.ws21{word-spacing:-12.599874px;}
.ws128{word-spacing:-12.539875px;}
.ws2f{word-spacing:-12.515821px;}
.ws3e{word-spacing:-12.479875px;}
.ws73{word-spacing:-12.419876px;}
.wsd7{word-spacing:-12.418633px;}
.wsda{word-spacing:-12.412834px;}
.ws52{word-spacing:-12.359876px;}
.wsbc{word-spacing:-12.299877px;}
.ws75{word-spacing:-12.239878px;}
.ws159{word-spacing:-12.179878px;}
.ws9f{word-spacing:-12.119879px;}
.ws9e{word-spacing:-12.059879px;}
.wsb4{word-spacing:-11.999880px;}
.ws1a{word-spacing:-11.999850px;}
.ws17e{word-spacing:-11.980367px;}
.ws179{word-spacing:-11.969233px;}
.ws91{word-spacing:-11.939881px;}
.ws6c{word-spacing:-11.879881px;}
.ws118{word-spacing:-11.867400px;}
.wsee{word-spacing:-11.860834px;}
.ws4b{word-spacing:-11.819882px;}
.ws10e{word-spacing:-11.812834px;}
.ws17a{word-spacing:-11.759882px;}
.wsef{word-spacing:-11.699883px;}
.wsb3{word-spacing:-11.639884px;}
.ws72{word-spacing:-11.579884px;}
.ws12f{word-spacing:-11.529703px;}
.wsa1{word-spacing:-11.519885px;}
.ws50{word-spacing:-11.459885px;}
.ws4a{word-spacing:-11.399886px;}
.ws14{word-spacing:-11.339887px;}
.ws11d{word-spacing:-11.279887px;}
.ws183{word-spacing:-11.219888px;}
.ws121{word-spacing:-11.159888px;}
.ws94{word-spacing:-11.099889px;}
.wsbe{word-spacing:-11.039890px;}
.ws74{word-spacing:-10.979890px;}
.ws4d{word-spacing:-10.919891px;}
.ws48{word-spacing:-10.859891px;}
.ws180{word-spacing:-10.799892px;}
.ws144{word-spacing:-10.751866px;}
.ws71{word-spacing:-10.739893px;}
.ws9c{word-spacing:-10.703866px;}
.ws57{word-spacing:-10.679893px;}
.wsc3{word-spacing:-10.619894px;}
.ws125{word-spacing:-10.564534px;}
.ws126{word-spacing:-10.559894px;}
.wsad{word-spacing:-10.499895px;}
.ws51{word-spacing:-10.439896px;}
.ws2b{word-spacing:-10.379896px;}
.wsa7{word-spacing:-10.319897px;}
.ws2d{word-spacing:-10.259897px;}
.ws3a{word-spacing:-10.199898px;}
.wsb2{word-spacing:-10.139899px;}
.ws142{word-spacing:-10.079899px;}
.wsb9{word-spacing:-10.019900px;}
.ws18d{word-spacing:-9.959900px;}
.ws113{word-spacing:-9.899901px;}
.ws5c{word-spacing:-9.839902px;}
.ws17{word-spacing:-9.779902px;}
.wsa2{word-spacing:-9.719903px;}
.ws5a{word-spacing:-9.659903px;}
.wseb{word-spacing:-9.599904px;}
.wsaa{word-spacing:-9.539905px;}
.ws9a{word-spacing:-9.479905px;}
.ws178{word-spacing:-9.430300px;}
.ws9b{word-spacing:-9.419906px;}
.ws1{word-spacing:-9.365866px;}
.wsbf{word-spacing:-9.359906px;}
.ws2e{word-spacing:-9.323867px;}
.ws3{word-spacing:-9.323033px;}
.ws39{word-spacing:-9.299907px;}
.ws65{word-spacing:-9.239908px;}
.ws64{word-spacing:-9.226834px;}
.ws54{word-spacing:-9.179908px;}
.ws14e{word-spacing:-9.173200px;}
.ws114{word-spacing:-9.119909px;}
.wsac{word-spacing:-9.059909px;}
.ws53{word-spacing:-8.999910px;}
.wsbd{word-spacing:-8.939911px;}
.ws87{word-spacing:-8.879911px;}
.ws20{word-spacing:-8.819912px;}
.ws23{word-spacing:-8.699913px;}
.ws27{word-spacing:-8.639914px;}
.ws7f{word-spacing:-8.579914px;}
.ws38{word-spacing:-8.519915px;}
.ws59{word-spacing:-8.459915px;}
.ws158{word-spacing:-8.399916px;}
.wsfb{word-spacing:-8.339917px;}
.ws30{word-spacing:-8.279917px;}
.ws184{word-spacing:-8.219918px;}
.ws3f{word-spacing:-8.159918px;}
.ws84{word-spacing:-8.099919px;}
.ws44{word-spacing:-8.039920px;}
.ws45{word-spacing:-7.979920px;}
.ws77{word-spacing:-7.919921px;}
.ws76{word-spacing:-7.859921px;}
.wsea{word-spacing:-7.799922px;}
.ws15{word-spacing:-7.679923px;}
.ws16c{word-spacing:-7.619924px;}
.ws11e{word-spacing:-7.559924px;}
.ws13c{word-spacing:-7.499925px;}
.ws7a{word-spacing:-7.439926px;}
.ws11{word-spacing:-7.379926px;}
.ws7e{word-spacing:-7.319927px;}
.ws153{word-spacing:-7.199928px;}
.ws67{word-spacing:-7.139929px;}
.ws68{word-spacing:-7.132834px;}
.ws13{word-spacing:-7.079929px;}
.wsaf{word-spacing:-7.019930px;}
.wsb0{word-spacing:-6.959930px;}
.wse1{word-spacing:-6.899931px;}
.ws86{word-spacing:-6.839932px;}
.wsdd{word-spacing:-6.779932px;}
.wsfa{word-spacing:-6.719933px;}
.ws140{word-spacing:-6.670632px;}
.ws154{word-spacing:-6.599934px;}
.wsfe{word-spacing:-6.539935px;}
.wsa3{word-spacing:-6.479935px;}
.ws70{word-spacing:-6.419936px;}
.ws18{word-spacing:-6.359936px;}
.ws8c{word-spacing:-6.239938px;}
.ws150{word-spacing:-6.028834px;}
.ws151{word-spacing:-5.999940px;}
.ws31{word-spacing:-5.939941px;}
.wsf9{word-spacing:-5.819942px;}
.ws26{word-spacing:-5.699943px;}
.ws12{word-spacing:-5.639944px;}
.wsf7{word-spacing:-5.579944px;}
.ws98{word-spacing:-5.459945px;}
.ws2{word-spacing:-5.459922px;}
.ws16a{word-spacing:-5.399946px;}
.wsa4{word-spacing:-5.339947px;}
.ws173{word-spacing:-5.279947px;}
.wsd4{word-spacing:-5.219948px;}
.ws66{word-spacing:-5.099949px;}
.ws177{word-spacing:-4.979950px;}
.ws58{word-spacing:-4.919951px;}
.wsdb{word-spacing:-4.758684px;}
.wsdf{word-spacing:-4.756632px;}
.wsc0{word-spacing:-4.755948px;}
.wsd8{word-spacing:-4.752684px;}
.wsd5{word-spacing:-4.750632px;}
.ws3c{word-spacing:-4.739953px;}
.ws60{word-spacing:-4.679953px;}
.ws111{word-spacing:-4.630133px;}
.ws112{word-spacing:-4.619954px;}
.ws182{word-spacing:-4.439956px;}
.ws17c{word-spacing:-4.379956px;}
.wsf4{word-spacing:-4.259957px;}
.wsae{word-spacing:-4.199958px;}
.ws13b{word-spacing:-4.182684px;}
.ws122{word-spacing:-4.144133px;}
.ws123{word-spacing:-4.139959px;}
.ws17b{word-spacing:-4.079959px;}
.ws6a{word-spacing:-3.959960px;}
.ws1b{word-spacing:-3.791953px;}
.ws101{word-spacing:-3.779962px;}
.ws102{word-spacing:-3.719963px;}
.ws100{word-spacing:-3.700933px;}
.wsf5{word-spacing:-3.659963px;}
.ws145{word-spacing:-3.651569px;}
.ws14d{word-spacing:-3.645616px;}
.wscb{word-spacing:-3.645569px;}
.wsb1{word-spacing:-3.599964px;}
.wsdc{word-spacing:-3.479965px;}
.wsff{word-spacing:-3.359966px;}
.ws157{word-spacing:-3.213616px;}
.ws16b{word-spacing:-2.999970px;}
.ws14f{word-spacing:-2.639974px;}
.wsc4{word-spacing:-2.481756px;}
.ws134{word-spacing:-2.479816px;}
.ws174{word-spacing:-2.339977px;}
.ws15b{word-spacing:-2.219978px;}
.ws79{word-spacing:-1.979980px;}
.wsf8{word-spacing:-1.919981px;}
.ws15a{word-spacing:-1.799982px;}
.wsce{word-spacing:-1.778953px;}
.ws175{word-spacing:-1.679983px;}
.ws176{word-spacing:-1.679100px;}
.ws46{word-spacing:-1.559984px;}
.ws1f{word-spacing:-1.439986px;}
.ws103{word-spacing:-1.259987px;}
.ws8b{word-spacing:-1.199988px;}
.ws4f{word-spacing:-1.079989px;}
.wsd9{word-spacing:-0.504840px;}
.ws8e{word-spacing:-0.239998px;}
.wsf6{word-spacing:-0.179998px;}
.ws10{word-spacing:-0.059999px;}
.wsa9{word-spacing:-0.053999px;}
.ws16{word-spacing:-0.041999px;}
.ws120{word-spacing:-0.035999px;}
.ws0{word-spacing:0.000000px;}
.ws83{word-spacing:0.419996px;}
.ws5f{word-spacing:0.899991px;}
.ws17d{word-spacing:0.959990px;}
.ws18c{word-spacing:1.199988px;}
.ws124{word-spacing:1.679983px;}
.ws12c{word-spacing:1.919981px;}
.ws12d{word-spacing:1.979980px;}
.ws6b{word-spacing:3.239968px;}
.ws13d{word-spacing:4.469316px;}
.ws18b{word-spacing:4.859951px;}
.ws18a{word-spacing:4.919951px;}
.ws189{word-spacing:4.979950px;}
.wsed{word-spacing:8.159918px;}
.ws133{word-spacing:12.257864px;}
.ws16d{word-spacing:13.259867px;}
.ws105{word-spacing:112.696748px;}
.ws10a{word-spacing:157.669500px;}
.ws108{word-spacing:184.669200px;}
.ws107{word-spacing:203.433133px;}
.ws106{word-spacing:211.668600px;}
.wscd{word-spacing:212.809850px;}
.wsc9{word-spacing:230.737466px;}
.ws109{word-spacing:238.668600px;}
.wsd0{word-spacing:239.809550px;}
.ws162{word-spacing:240.777012px;}
.ws169{word-spacing:243.048467px;}
.ws168{word-spacing:246.451650px;}
.wsd3{word-spacing:253.309400px;}
.ws163{word-spacing:259.951500px;}
.ws167{word-spacing:273.451350px;}
.ws165{word-spacing:277.119133px;}
.ws15f{word-spacing:283.869133px;}
.ws160{word-spacing:286.951200px;}
.ws166{word-spacing:294.445050px;}
.ws164{word-spacing:300.451050px;}
.ws15e{word-spacing:334.944600px;}
.ws161{word-spacing:340.950600px;}
.wsd1{word-spacing:424.705582px;}
.wsd2{word-spacing:425.677582px;}
.wsc8{word-spacing:737.899466px;}
._6{margin-left:-14.279827px;}
._11{margin-left:-9.395896px;}
._a{margin-left:-7.499925px;}
._5{margin-left:-5.543921px;}
._8{margin-left:-4.212794px;}
._3{margin-left:-2.855959px;}
._1{margin-left:-1.175983px;}
._7{width:1.028353px;}
._14{width:3.153962px;}
._50{width:5.494173px;}
._2{width:11.633834px;}
._16{width:13.103845px;}
._30{width:14.579854px;}
._e{width:15.581777px;}
._10{width:16.619834px;}
._3a{width:18.875806px;}
._c{width:20.279797px;}
._b{width:21.899781px;}
._13{width:23.910566px;}
._3b{width:25.161971px;}
._12{width:26.945701px;}
._9{width:29.291697px;}
._15{width:30.566408px;}
._51{width:41.739649px;}
._2d{width:196.934588px;}
._2f{width:209.335200px;}
._2e{width:213.073200px;}
._3d{width:233.677716px;}
._26{width:236.589649px;}
._22{width:238.668600px;}
._1d{width:239.812151px;}
._1a{width:250.792332px;}
._2c{width:252.627128px;}
._24{width:263.328600px;}
._23{width:267.072600px;}
._4f{width:274.023771px;}
._34{width:275.519348px;}
._1b{width:287.899036px;}
._47{width:289.136216px;}
._21{width:290.328300px;}
._20{width:294.072600px;}
._1e{width:301.741033px;}
._2b{width:306.109671px;}
._2a{width:307.379314px;}
._46{width:308.521176px;}
._19{width:314.790737px;}
._29{width:317.425567px;}
._4d{width:321.445050px;}
._25{width:323.419500px;}
._35{width:325.264799px;}
._18{width:326.503066px;}
._1f{width:329.414033px;}
._41{width:333.966083px;}
._3f{width:340.950600px;}
._49{width:348.444750px;}
._39{width:352.264799px;}
._28{width:358.987687px;}
._40{width:361.944600px;}
._33{width:367.558333px;}
._48{width:376.100033px;}
._4e{width:381.065314px;}
._3c{width:383.635166px;}
._45{width:386.545671px;}
._32{width:388.573200px;}
._4c{width:391.111567px;}
._38{width:394.558333px;}
._44{width:397.861567px;}
._27{width:401.341234px;}
._1c{width:404.834317px;}
._3e{width:409.850033px;}
._37{width:415.572900px;}
._4a{width:424.105500px;}
._43{width:439.423687px;}
._4b{width:448.027234px;}
._31{width:458.805316px;}
._d{width:474.648334px;}
._42{width:481.777234px;}
._36{width:485.805316px;}
._17{width:700.423883px;}
._4{width:1225.375873px;}
._f{width:1787.327990px;}
._0{width:1984.728000px;}
.fc4{color:rgb(167,208,57);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:29.999400px;}
.fs10{font-size:35.999400px;}
.fsa{font-size:37.799400px;}
.fsf{font-size:37.940400px;}
.fs6{font-size:41.999400px;}
.fs5{font-size:42.000000px;}
.fsd{font-size:42.156000px;}
.fs9{font-size:47.999400px;}
.fs1{font-size:48.000000px;}
.fs4{font-size:49.072383px;}
.fsb{font-size:53.999400px;}
.fs2{font-size:54.000000px;}
.fsc{font-size:59.999400px;}
.fs8{font-size:65.999400px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:96.000000px;}
.fs7{font-size:143.998200px;}
.y0{bottom:0.000000px;}
.y18{bottom:64.920000px;}
.yc5{bottom:70.414500px;}
.y54{bottom:71.610000px;}
.y16f{bottom:102.991500px;}
.y223{bottom:106.129500px;}
.y21d{bottom:106.279500px;}
.yc4{bottom:120.924000px;}
.y16e{bottom:120.991500px;}
.y8e{bottom:121.212000px;}
.y222{bottom:124.129500px;}
.y21c{bottom:124.279500px;}
.y150{bottom:126.901500px;}
.y53{bottom:132.318000px;}
.y42{bottom:132.432000px;}
.yc3{bottom:138.924000px;}
.y16d{bottom:138.991500px;}
.y8d{bottom:139.212000px;}
.y221{bottom:142.129500px;}
.y21b{bottom:142.279500px;}
.y14f{bottom:144.901500px;}
.y41{bottom:146.682000px;}
.y52{bottom:150.318000px;}
.yc2{bottom:156.924000px;}
.y16c{bottom:156.991500px;}
.y8c{bottom:157.212000px;}
.y220{bottom:160.129500px;}
.y21a{bottom:160.279500px;}
.y40{bottom:160.932000px;}
.y14e{bottom:162.901500px;}
.y51{bottom:168.318000px;}
.yc1{bottom:174.924000px;}
.y16b{bottom:174.991500px;}
.y3f{bottom:175.182000px;}
.y8b{bottom:175.212000px;}
.y21f{bottom:178.129500px;}
.y219{bottom:178.279500px;}
.y14d{bottom:180.901500px;}
.yfd{bottom:185.424000px;}
.y50{bottom:186.318000px;}
.yc0{bottom:192.924000px;}
.y16a{bottom:192.991500px;}
.y8a{bottom:193.212000px;}
.y218{bottom:196.279500px;}
.y14c{bottom:198.901500px;}
.y4f{bottom:204.318000px;}
.ybf{bottom:210.924000px;}
.y169{bottom:210.991500px;}
.y89{bottom:211.212000px;}
.y21e{bottom:212.629500px;}
.y217{bottom:214.279500px;}
.y14b{bottom:216.901500px;}
.y4e{bottom:222.318000px;}
.ybe{bottom:228.924000px;}
.y168{bottom:228.991500px;}
.y88{bottom:229.212000px;}
.y216{bottom:232.279500px;}
.yfc{bottom:232.774500px;}
.y14a{bottom:234.901500px;}
.y3e{bottom:237.315000px;}
.y4d{bottom:240.318000px;}
.ybd{bottom:246.924000px;}
.y167{bottom:246.991500px;}
.y87{bottom:247.212000px;}
.y215{bottom:250.279500px;}
.yfb{bottom:250.774500px;}
.y149{bottom:252.901500px;}
.y4c{bottom:258.318000px;}
.ybc{bottom:264.924000px;}
.y166{bottom:264.991500px;}
.y86{bottom:265.212000px;}
.y214{bottom:268.279500px;}
.yfa{bottom:268.774500px;}
.y148{bottom:270.901500px;}
.y4b{bottom:276.318000px;}
.y3d{bottom:277.818000px;}
.ybb{bottom:278.493000px;}
.y1cd{bottom:281.491500px;}
.yba{bottom:282.924000px;}
.y165{bottom:282.991500px;}
.y85{bottom:283.212000px;}
.y213{bottom:286.279500px;}
.yf9{bottom:286.774500px;}
.y147{bottom:288.901500px;}
.y4a{bottom:294.318000px;}
.y3c{bottom:295.818000px;}
.yb9{bottom:300.924000px;}
.y164{bottom:300.991500px;}
.y84{bottom:301.212000px;}
.y212{bottom:304.279500px;}
.yf8{bottom:304.774500px;}
.y146{bottom:306.901500px;}
.y49{bottom:312.318000px;}
.y3b{bottom:313.818000px;}
.yb8{bottom:314.493000px;}
.yb7{bottom:318.924000px;}
.y163{bottom:318.991500px;}
.y83{bottom:319.212000px;}
.y211{bottom:322.279500px;}
.yf7{bottom:322.774500px;}
.y145{bottom:324.901500px;}
.y48{bottom:330.318000px;}
.y3a{bottom:331.818000px;}
.y1cc{bottom:333.424500px;}
.yb6{bottom:336.924000px;}
.y162{bottom:336.991500px;}
.y82{bottom:337.212000px;}
.y210{bottom:340.279500px;}
.yf6{bottom:340.774500px;}
.y144{bottom:342.901500px;}
.y24c{bottom:347.713500px;}
.y27c{bottom:348.018000px;}
.y47{bottom:348.318000px;}
.y39{bottom:349.818000px;}
.y1cb{bottom:351.424500px;}
.yb5{bottom:354.924000px;}
.y191{bottom:354.991500px;}
.y81{bottom:355.212000px;}
.y20f{bottom:358.279500px;}
.yf5{bottom:358.774500px;}
.y143{bottom:360.901500px;}
.y24b{bottom:362.713500px;}
.y27b{bottom:363.018000px;}
.y46{bottom:366.318000px;}
.y38{bottom:367.818000px;}
.y1ca{bottom:369.424500px;}
.y158{bottom:371.401500px;}
.yb4{bottom:372.924000px;}
.y190{bottom:372.991500px;}
.y80{bottom:373.212000px;}
.y1e7{bottom:374.932500px;}
.y20e{bottom:376.279500px;}
.yf4{bottom:376.774500px;}
.y24a{bottom:377.713500px;}
.y27a{bottom:378.018000px;}
.y142{bottom:378.901500px;}
.y45{bottom:384.318000px;}
.y161{bottom:385.483500px;}
.y37{bottom:385.818000px;}
.y1c9{bottom:387.424500px;}
.y1e6{bottom:389.932500px;}
.y1aa{bottom:390.594000px;}
.yb3{bottom:390.924000px;}
.y1a1{bottom:390.991500px;}
.y7f{bottom:391.212000px;}
.y249{bottom:392.713500px;}
.y279{bottom:393.018000px;}
.y20d{bottom:394.279500px;}
.yf3{bottom:394.774500px;}
.y141{bottom:396.901500px;}
.y160{bottom:400.483500px;}
.y44{bottom:402.318000px;}
.y36{bottom:403.818000px;}
.y1e5{bottom:404.932500px;}
.y1c8{bottom:405.424500px;}
.y1a9{bottom:405.594000px;}
.y18f{bottom:407.491500px;}
.y248{bottom:407.713500px;}
.y278{bottom:408.018000px;}
.yb2{bottom:408.924000px;}
.y1a0{bottom:408.991500px;}
.y7e{bottom:409.212000px;}
.y20c{bottom:412.279500px;}
.yf2{bottom:412.774500px;}
.y140{bottom:414.901500px;}
.y15f{bottom:415.483500px;}
.y43{bottom:420.318000px;}
.y1a8{bottom:422.178000px;}
.y247{bottom:422.713500px;}
.y277{bottom:423.018000px;}
.y1c7{bottom:423.424500px;}
.ydf{bottom:423.994500px;}
.yb1{bottom:426.924000px;}
.y19f{bottom:426.991500px;}
.y7d{bottom:427.212000px;}
.y157{bottom:427.711500px;}
.y20b{bottom:430.279500px;}
.yf1{bottom:430.774500px;}
.y15e{bottom:432.067500px;}
.y13f{bottom:432.901500px;}
.y1a7{bottom:437.178000px;}
.y246{bottom:437.713500px;}
.y276{bottom:438.018000px;}
.y35{bottom:438.318000px;}
.yde{bottom:438.994500px;}
.y1c6{bottom:441.424500px;}
.y156{bottom:442.711500px;}
.yb0{bottom:444.924000px;}
.y19e{bottom:444.991500px;}
.y7c{bottom:445.212000px;}
.ye6{bottom:446.682000px;}
.y15d{bottom:447.067500px;}
.y20a{bottom:448.279500px;}
.yf0{bottom:448.774500px;}
.y13e{bottom:450.901500px;}
.y1a6{bottom:452.178000px;}
.y245{bottom:452.713500px;}
.y275{bottom:453.018000px;}
.y18e{bottom:457.656000px;}
.y155{bottom:457.711500px;}
.y1c5{bottom:459.424500px;}
.ye5{bottom:461.682000px;}
.yaf{bottom:462.924000px;}
.y19d{bottom:462.991500px;}
.y7b{bottom:463.212000px;}
.y209{bottom:466.279500px;}
.y244{bottom:467.713500px;}
.y274{bottom:468.018000px;}
.y13d{bottom:468.901500px;}
.y154{bottom:472.711500px;}
.y18d{bottom:475.656000px;}
.ye4{bottom:476.682000px;}
.y1c4{bottom:477.424500px;}
.yae{bottom:480.924000px;}
.y19c{bottom:480.991500px;}
.y7a{bottom:481.212000px;}
.y243{bottom:482.713500px;}
.y273{bottom:483.018000px;}
.yef{bottom:483.274500px;}
.y208{bottom:484.279500px;}
.y13c{bottom:486.901500px;}
.y153{bottom:487.711500px;}
.y34{bottom:492.154500px;}
.y18c{bottom:493.656000px;}
.y1c3{bottom:495.424500px;}
.y242{bottom:497.713500px;}
.y272{bottom:498.018000px;}
.yad{bottom:498.924000px;}
.y19b{bottom:498.991500px;}
.y79{bottom:499.212000px;}
.y207{bottom:502.279500px;}
.y152{bottom:502.711500px;}
.y13b{bottom:504.901500px;}
.y18b{bottom:511.656000px;}
.y241{bottom:512.713500px;}
.y271{bottom:513.018000px;}
.y1c2{bottom:513.424500px;}
.yac{bottom:516.924000px;}
.y19a{bottom:516.991500px;}
.y78{bottom:517.212000px;}
.y151{bottom:517.710000px;}
.y33{bottom:519.003000px;}
.y206{bottom:520.279500px;}
.y13a{bottom:522.901500px;}
.y240{bottom:527.713500px;}
.y270{bottom:528.018000px;}
.y18a{bottom:529.656000px;}
.y1c1{bottom:531.424500px;}
.yee{bottom:532.126500px;}
.yd4{bottom:534.924000px;}
.y199{bottom:534.991500px;}
.y77{bottom:535.212000px;}
.y32{bottom:537.003000px;}
.y205{bottom:538.279500px;}
.y139{bottom:540.901500px;}
.y23f{bottom:542.713500px;}
.y26f{bottom:543.018000px;}
.y1ed{bottom:544.036500px;}
.y189{bottom:547.656000px;}
.y1c0{bottom:549.424500px;}
.yed{bottom:550.126500px;}
.yd3{bottom:552.924000px;}
.y198{bottom:552.991500px;}
.yab{bottom:553.096500px;}
.y76{bottom:553.212000px;}
.y31{bottom:555.003000px;}
.y204{bottom:556.279500px;}
.y23e{bottom:557.713500px;}
.y26e{bottom:558.018000px;}
.y138{bottom:558.901500px;}
.y1ec{bottom:559.036500px;}
.y188{bottom:565.656000px;}
.y1bf{bottom:567.424500px;}
.yec{bottom:568.126500px;}
.yd2{bottom:570.924000px;}
.y197{bottom:570.991500px;}
.yaa{bottom:571.096500px;}
.y75{bottom:571.212000px;}
.y23d{bottom:572.713500px;}
.y30{bottom:573.003000px;}
.y26d{bottom:573.018000px;}
.y1eb{bottom:574.036500px;}
.y203{bottom:574.279500px;}
.y137{bottom:576.901500px;}
.y187{bottom:583.656000px;}
.y1be{bottom:585.424500px;}
.y23c{bottom:587.713500px;}
.y26c{bottom:588.018000px;}
.yd1{bottom:588.924000px;}
.y196{bottom:588.991500px;}
.ya9{bottom:589.096500px;}
.y74{bottom:589.212000px;}
.y2f{bottom:591.003000px;}
.y202{bottom:592.279500px;}
.y136{bottom:594.901500px;}
.y186{bottom:601.656000px;}
.y23b{bottom:602.713500px;}
.y26b{bottom:603.018000px;}
.y1bd{bottom:603.424500px;}
.yd0{bottom:606.924000px;}
.y195{bottom:606.991500px;}
.ya8{bottom:607.096500px;}
.y73{bottom:607.212000px;}
.y1e4{bottom:608.056500px;}
.y2e{bottom:609.003000px;}
.y201{bottom:610.279500px;}
.y135{bottom:612.901500px;}
.y23a{bottom:617.713500px;}
.y26a{bottom:618.018000px;}
.yeb{bottom:619.183500px;}
.y185{bottom:619.656000px;}
.y1bc{bottom:621.424500px;}
.y1e3{bottom:624.556500px;}
.ycf{bottom:624.924000px;}
.y194{bottom:624.991500px;}
.ya7{bottom:625.096500px;}
.y72{bottom:625.212000px;}
.y2d{bottom:627.003000px;}
.y200{bottom:628.279500px;}
.y134{bottom:630.901500px;}
.y239{bottom:632.713500px;}
.y269{bottom:633.016500px;}
.yea{bottom:634.183500px;}
.y184{bottom:637.656000px;}
.y1bb{bottom:639.424500px;}
.yce{bottom:642.924000px;}
.y1b1{bottom:642.991500px;}
.ya6{bottom:643.096500px;}
.y71{bottom:643.212000px;}
.y2c{bottom:645.003000px;}
.y1ff{bottom:646.279500px;}
.y268{bottom:648.016500px;}
.y133{bottom:648.901500px;}
.ye9{bottom:649.183500px;}
.y1e2{bottom:652.306500px;}
.y183{bottom:655.656000px;}
.y1ba{bottom:657.424500px;}
.ycd{bottom:660.924000px;}
.y1b0{bottom:660.991500px;}
.ya5{bottom:661.096500px;}
.y70{bottom:661.212000px;}
.y2b{bottom:663.003000px;}
.y267{bottom:663.016500px;}
.ye8{bottom:664.183500px;}
.y238{bottom:664.213500px;}
.y1fe{bottom:664.279500px;}
.y132{bottom:666.901500px;}
.y193{bottom:668.064000px;}
.y1e1{bottom:668.805000px;}
.y182{bottom:673.656000px;}
.y1b9{bottom:675.424500px;}
.y266{bottom:678.016500px;}
.ycc{bottom:678.924000px;}
.y1af{bottom:678.991500px;}
.ya4{bottom:679.096500px;}
.ye7{bottom:679.183500px;}
.y6f{bottom:679.212000px;}
.y2a{bottom:681.003000px;}
.y1fd{bottom:682.279500px;}
.y192{bottom:683.064000px;}
.y131{bottom:684.901500px;}
.y1e0{bottom:685.305000px;}
.y181{bottom:691.656000px;}
.y1b8{bottom:693.424500px;}
.y265{bottom:693.765000px;}
.ycb{bottom:696.924000px;}
.ya3{bottom:697.096500px;}
.y6e{bottom:697.212000px;}
.y29{bottom:699.003000px;}
.y1fc{bottom:700.279500px;}
.y1df{bottom:701.805000px;}
.y130{bottom:702.901500px;}
.ydd{bottom:707.025000px;}
.y264{bottom:709.212000px;}
.y237{bottom:709.213500px;}
.y180{bottom:709.656000px;}
.yca{bottom:714.924000px;}
.ya2{bottom:715.096500px;}
.y6d{bottom:715.212000px;}
.y28{bottom:717.003000px;}
.y1fb{bottom:718.279500px;}
.y1de{bottom:718.305000px;}
.y12f{bottom:720.901500px;}
.ydc{bottom:722.025000px;}
.y263{bottom:724.212000px;}
.y236{bottom:727.213500px;}
.y17f{bottom:727.656000px;}
.yc9{bottom:732.924000px;}
.ya1{bottom:733.096500px;}
.y6c{bottom:733.212000px;}
.y1dd{bottom:734.805000px;}
.y27{bottom:735.069000px;}
.y1fa{bottom:736.279500px;}
.ydb{bottom:737.025000px;}
.y12e{bottom:738.901500px;}
.y1ae{bottom:739.192500px;}
.y262{bottom:739.212000px;}
.y235{bottom:745.213500px;}
.y17e{bottom:745.656000px;}
.y1b7{bottom:747.577500px;}
.yc8{bottom:750.924000px;}
.ya0{bottom:751.096500px;}
.y6b{bottom:751.212000px;}
.y1dc{bottom:751.305000px;}
.yda{bottom:752.025000px;}
.y1ad{bottom:754.192500px;}
.y261{bottom:754.212000px;}
.y1f9{bottom:754.279500px;}
.y12d{bottom:756.901500px;}
.y1b6{bottom:762.577500px;}
.y234{bottom:763.213500px;}
.y17d{bottom:763.656000px;}
.yd9{bottom:767.025000px;}
.y1db{bottom:767.805000px;}
.yc7{bottom:768.924000px;}
.y9f{bottom:769.096500px;}
.y6a{bottom:769.212000px;}
.y1ac{bottom:771.084000px;}
.y1f8{bottom:772.279500px;}
.y12c{bottom:774.901500px;}
.y26{bottom:776.457000px;}
.y1b5{bottom:777.577500px;}
.y15c{bottom:779.149500px;}
.y233{bottom:781.213500px;}
.y17c{bottom:781.656000px;}
.yd8{bottom:782.025000px;}
.y260{bottom:784.212000px;}
.y1a5{bottom:784.821000px;}
.y11a{bottom:786.924000px;}
.y69{bottom:787.212000px;}
.y1ab{bottom:787.654500px;}
.y1f7{bottom:790.279500px;}
.ye3{bottom:792.112500px;}
.y1b4{bottom:792.577500px;}
.y12b{bottom:792.901500px;}
.y25{bottom:792.957000px;}
.y112{bottom:793.728000px;}
.y15b{bottom:794.149500px;}
.y1da{bottom:795.364500px;}
.yd7{bottom:797.025000px;}
.yc6{bottom:797.424000px;}
.y25f{bottom:799.212000px;}
.y232{bottom:799.213500px;}
.y17b{bottom:799.656000px;}
.y1a4{bottom:799.821000px;}
.y9e{bottom:801.459000px;}
.y9d{bottom:802.095000px;}
.y119{bottom:804.924000px;}
.y68{bottom:805.212000px;}
.ye2{bottom:807.112500px;}
.y1f6{bottom:808.279500px;}
.y1b3{bottom:809.148000px;}
.y15a{bottom:809.149500px;}
.y24{bottom:809.457000px;}
.y111{bottom:810.228000px;}
.yd6{bottom:812.025000px;}
.y25e{bottom:814.212000px;}
.y1a3{bottom:814.821000px;}
.y17a{bottom:817.656000px;}
.y1d9{bottom:821.829000px;}
.ye1{bottom:822.112500px;}
.y118{bottom:822.924000px;}
.y67{bottom:823.212000px;}
.y1b2{bottom:824.148000px;}
.y159{bottom:824.149500px;}
.y1f5{bottom:826.279500px;}
.y110{bottom:826.728000px;}
.yd5{bottom:827.025000px;}
.y25d{bottom:829.212000px;}
.y1a2{bottom:829.821000px;}
.y231{bottom:833.713500px;}
.ye0{bottom:837.112500px;}
.y9c{bottom:837.894000px;}
.y117{bottom:840.924000px;}
.y66{bottom:841.212000px;}
.y10f{bottom:843.228000px;}
.y25c{bottom:844.212000px;}
.y1f4{bottom:844.279500px;}
.y23{bottom:845.383500px;}
.y9b{bottom:848.182500px;}
.y9a{bottom:848.640000px;}
.y12a{bottom:857.482500px;}
.y116{bottom:858.924000px;}
.y65{bottom:859.212000px;}
.y10e{bottom:859.728000px;}
.y1f3{bottom:862.279500px;}
.y1d8{bottom:872.482500px;}
.y129{bottom:873.982500px;}
.y25b{bottom:874.212000px;}
.y17{bottom:874.260000px;}
.y10d{bottom:876.228000px;}
.y179{bottom:876.538500px;}
.y115{bottom:876.924000px;}
.y64{bottom:877.212000px;}
.y230{bottom:878.712000px;}
.y1f2{bottom:880.279500px;}
.y22{bottom:883.699500px;}
.y99{bottom:884.551500px;}
.y16{bottom:886.260000px;}
.y1d7{bottom:888.982500px;}
.y25a{bottom:889.212000px;}
.y10c{bottom:892.728000px;}
.y178{bottom:893.038500px;}
.y63{bottom:895.212000px;}
.y22f{bottom:896.712000px;}
.y15{bottom:898.260000px;}
.y1f1{bottom:898.279500px;}
.y21{bottom:900.199500px;}
.y128{bottom:901.732500px;}
.y98{bottom:902.551500px;}
.y8{bottom:903.150000px;}
.y259{bottom:904.212000px;}
.y114{bottom:905.424000px;}
.y10b{bottom:909.228000px;}
.y177{bottom:909.538500px;}
.y14{bottom:910.260000px;}
.y62{bottom:913.212000px;}
.y22e{bottom:914.712000px;}
.y1f0{bottom:916.279500px;}
.y20{bottom:916.699500px;}
.y1d6{bottom:916.732500px;}
.y127{bottom:918.232500px;}
.y258{bottom:919.212000px;}
.y97{bottom:920.551500px;}
.y113{bottom:921.924000px;}
.y13{bottom:922.260000px;}
.y10a{bottom:925.728000px;}
.y176{bottom:926.038500px;}
.y1ea{bottom:928.548000px;}
.y61{bottom:931.212000px;}
.y7{bottom:932.250000px;}
.y22d{bottom:932.712000px;}
.y1f{bottom:933.199500px;}
.y1d5{bottom:933.232500px;}
.y257{bottom:934.212000px;}
.y1ef{bottom:934.279500px;}
.y126{bottom:934.732500px;}
.y96{bottom:938.551500px;}
.y1e9{bottom:943.548000px;}
.y12{bottom:945.510000px;}
.y60{bottom:949.212000px;}
.y1d4{bottom:949.732500px;}
.y22c{bottom:950.712000px;}
.y125{bottom:951.232500px;}
.y109{bottom:953.286000px;}
.y175{bottom:953.788500px;}
.y11{bottom:957.510000px;}
.y1e{bottom:958.050000px;}
.y1e8{bottom:958.548000px;}
.y256{bottom:964.212000px;}
.y1d3{bottom:966.232500px;}
.y5f{bottom:967.212000px;}
.y124{bottom:967.732500px;}
.y22b{bottom:968.712000px;}
.y1ee{bottom:968.779500px;}
.y10{bottom:969.510000px;}
.y108{bottom:969.786000px;}
.y6{bottom:972.630000px;}
.y95{bottom:974.724000px;}
.y1d{bottom:977.550000px;}
.y255{bottom:979.212000px;}
.yf{bottom:981.510000px;}
.y174{bottom:982.135500px;}
.y1d2{bottom:982.732500px;}
.y123{bottom:984.232500px;}
.y5e{bottom:985.212000px;}
.y22a{bottom:986.712000px;}
.y94{bottom:992.724000px;}
.y254{bottom:994.212000px;}
.y107{bottom:996.252000px;}
.y173{bottom:998.635500px;}
.y1d1{bottom:999.232500px;}
.y122{bottom:1000.732500px;}
.y5d{bottom:1003.212000px;}
.y229{bottom:1004.712000px;}
.ye{bottom:1004.760000px;}
.y253{bottom:1009.212000px;}
.y93{bottom:1010.724000px;}
.y5{bottom:1011.165000px;}
.y106{bottom:1011.252000px;}
.y172{bottom:1015.135500px;}
.y1d0{bottom:1015.732500px;}
.yd{bottom:1016.760000px;}
.y121{bottom:1017.232500px;}
.y5c{bottom:1021.212000px;}
.y228{bottom:1022.712000px;}
.y252{bottom:1024.212000px;}
.y105{bottom:1026.252000px;}
.y92{bottom:1028.724000px;}
.yc{bottom:1028.760000px;}
.y171{bottom:1031.635500px;}
.y1cf{bottom:1032.232500px;}
.y1c{bottom:1035.469500px;}
.y5b{bottom:1039.212000px;}
.y4{bottom:1039.965000px;}
.y227{bottom:1040.712000px;}
.yb{bottom:1040.760000px;}
.y104{bottom:1041.252000px;}
.y120{bottom:1044.790500px;}
.y91{bottom:1046.724000px;}
.ya{bottom:1052.760000px;}
.y251{bottom:1054.212000px;}
.y103{bottom:1056.252000px;}
.y5a{bottom:1057.212000px;}
.y226{bottom:1058.712000px;}
.y170{bottom:1059.193500px;}
.y1ce{bottom:1059.790500px;}
.y90{bottom:1064.724000px;}
.y250{bottom:1069.212000px;}
.y102{bottom:1071.252000px;}
.y11f{bottom:1071.256500px;}
.y59{bottom:1075.212000px;}
.y225{bottom:1076.712000px;}
.y9{bottom:1078.260000px;}
.y1b{bottom:1080.469500px;}
.y3{bottom:1081.485000px;}
.y24f{bottom:1084.212000px;}
.y101{bottom:1086.252000px;}
.y11e{bottom:1086.256500px;}
.y58{bottom:1093.212000px;}
.y8f{bottom:1093.224000px;}
.y224{bottom:1094.712000px;}
.y24e{bottom:1099.212000px;}
.y100{bottom:1101.252000px;}
.y11d{bottom:1101.256500px;}
.y57{bottom:1111.212000px;}
.y24d{bottom:1114.212000px;}
.yff{bottom:1116.252000px;}
.y11c{bottom:1116.256500px;}
.y56{bottom:1129.212000px;}
.yfe{bottom:1131.252000px;}
.y11b{bottom:1131.256500px;}
.y1a{bottom:1144.129500px;}
.y19{bottom:1165.866000px;}
.y2{bottom:1169.970000px;}
.y55{bottom:1174.168500px;}
.y1{bottom:1191.570000px;}
.h14{height:13.949721px;}
.ha{height:30.953558px;}
.he{height:31.562499px;}
.h5{height:36.000000px;}
.h6{height:36.804287px;}
.hb{height:38.429451px;}
.h16{height:39.743558px;}
.h15{height:40.079499px;}
.h8{height:43.804688px;}
.h17{height:44.999550px;}
.h1f{height:45.083499px;}
.hf{height:45.089499px;}
.h20{height:45.095499px;}
.h19{height:46.823550px;}
.h10{height:49.409451px;}
.h7{height:50.062500px;}
.h11{height:50.099499px;}
.h1e{height:53.273550px;}
.h1a{height:54.113976px;}
.h21{height:54.618234px;}
.h22{height:54.624234px;}
.h12{height:54.899451px;}
.h1b{height:55.613572px;}
.h3{height:56.320312px;}
.h13{height:56.974260px;}
.h23{height:59.609550px;}
.hd{height:66.983499px;}
.h1c{height:67.823499px;}
.h1d{height:69.443572px;}
.h4{height:72.000000px;}
.h1{height:75.093750px;}
.h2{height:75.682500px;}
.h18{height:82.589580px;}
.hc{height:131.758353px;}
.h9{height:1262.835000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:58.500000px;}
.xb{left:71.731500px;}
.x1f{left:79.485000px;}
.xf{left:89.664000px;}
.x20{left:116.226000px;}
.x1c{left:136.813500px;}
.xc{left:155.812500px;}
.x9{left:213.105000px;}
.x2{left:231.690000px;}
.x3{left:254.355000px;}
.x4{left:287.685000px;}
.x1e{left:321.714000px;}
.x1d{left:443.893500px;}
.x5{left:445.635000px;}
.x18{left:457.264500px;}
.xd{left:458.409000px;}
.x21{left:459.414000px;}
.x10{left:461.434500px;}
.xe{left:476.341500px;}
.x11{left:481.572000px;}
.x22{left:502.905000px;}
.x1a{left:547.690500px;}
.x16{left:600.189000px;}
.x15{left:602.275500px;}
.x6{left:605.490000px;}
.x1b{left:624.447000px;}
.x8{left:627.990000px;}
.x13{left:629.940000px;}
.x12{left:631.606500px;}
.x7{left:634.410000px;}
.xa{left:648.898500px;}
.x14{left:657.565500px;}
.x17{left:668.533500px;}
.x19{left:777.813000px;}
@media print{
.v5{vertical-align:-25.386667pt;}
.v3{vertical-align:-18.597333pt;}
.vf{vertical-align:-9.626667pt;}
.v6{vertical-align:-8.000000pt;}
.vc{vertical-align:-6.266667pt;}
.vd{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.621333pt;}
.vb{vertical-align:7.754667pt;}
.v10{vertical-align:12.986667pt;}
.va{vertical-align:15.408000pt;}
.v4{vertical-align:19.354667pt;}
.ve{vertical-align:20.389333pt;}
.v1{vertical-align:22.773333pt;}
.v2{vertical-align:23.914667pt;}
.v7{vertical-align:36.080000pt;}
.v9{vertical-align:45.968000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000133pt;}
.ls58{letter-spacing:0.000148pt;}
.ls47{letter-spacing:0.000178pt;}
.ls18{letter-spacing:0.000207pt;}
.ls2b{letter-spacing:0.000237pt;}
.ls1{letter-spacing:0.000267pt;}
.ls3f{letter-spacing:0.000276pt;}
.ls41{letter-spacing:0.000297pt;}
.ls31{letter-spacing:0.000305pt;}
.ls37{letter-spacing:0.000311pt;}
.ls87{letter-spacing:0.000318pt;}
.ls3{letter-spacing:0.000327pt;}
.ls11{letter-spacing:0.000356pt;}
.ls1e{letter-spacing:0.000385pt;}
.ls5c{letter-spacing:0.000415pt;}
.ls51{letter-spacing:0.000444pt;}
.ls6a{letter-spacing:0.000514pt;}
.ls4{letter-spacing:0.000533pt;}
.ls2c{letter-spacing:0.000608pt;}
.ls82{letter-spacing:0.001642pt;}
.ls7f{letter-spacing:0.001824pt;}
.ls4d{letter-spacing:0.001934pt;}
.ls83{letter-spacing:0.002336pt;}
.ls4a{letter-spacing:0.002416pt;}
.ls5d{letter-spacing:0.002432pt;}
.ls4c{letter-spacing:0.002560pt;}
.ls46{letter-spacing:0.003123pt;}
.ls2d{letter-spacing:0.003167pt;}
.ls4f{letter-spacing:0.003909pt;}
.ls7c{letter-spacing:0.005609pt;}
.ls34{letter-spacing:0.005778pt;}
.ls56{letter-spacing:1.872326pt;}
.ls84{letter-spacing:2.652267pt;}
.ls2e{letter-spacing:2.654784pt;}
.ls7e{letter-spacing:2.655779pt;}
.ls68{letter-spacing:2.656000pt;}
.ls28{letter-spacing:2.656468pt;}
.ls6b{letter-spacing:2.657600pt;}
.ls81{letter-spacing:2.657642pt;}
.ls7b{letter-spacing:2.657824pt;}
.ls45{letter-spacing:2.658432pt;}
.ls6c{letter-spacing:2.661333pt;}
.ls14{letter-spacing:2.965609pt;}
.ls48{letter-spacing:3.696297pt;}
.ls17{letter-spacing:5.925600pt;}
.ls3c{letter-spacing:7.997226pt;}
.ls3b{letter-spacing:8.007749pt;}
.ls30{letter-spacing:8.581333pt;}
.ls44{letter-spacing:8.885481pt;}
.ls20{letter-spacing:8.885600pt;}
.lsd{letter-spacing:8.885748pt;}
.ls1b{letter-spacing:8.890933pt;}
.ls3a{letter-spacing:8.890942pt;}
.ls19{letter-spacing:8.891022pt;}
.lsa{letter-spacing:8.891081pt;}
.ls43{letter-spacing:8.896276pt;}
.ls5f{letter-spacing:9.493600pt;}
.ls89{letter-spacing:10.112326pt;}
.ls9{letter-spacing:10.117659pt;}
.ls59{letter-spacing:10.234942pt;}
.ls95{letter-spacing:10.394942pt;}
.ls97{letter-spacing:10.645659pt;}
.ls55{letter-spacing:10.957226pt;}
.ls67{letter-spacing:10.960267pt;}
.ls66{letter-spacing:10.960297pt;}
.ls4b{letter-spacing:10.962560pt;}
.ls57{letter-spacing:10.965600pt;}
.ls54{letter-spacing:10.965630pt;}
.ls27{letter-spacing:11.543157pt;}
.ls7d{letter-spacing:11.839882pt;}
.ls2a{letter-spacing:11.845748pt;}
.ls12{letter-spacing:11.850933pt;}
.ls15{letter-spacing:11.850963pt;}
.ls2f{letter-spacing:11.850993pt;}
.ls25{letter-spacing:11.851052pt;}
.ls16{letter-spacing:11.851081pt;}
.ls26{letter-spacing:11.851200pt;}
.ls6{letter-spacing:11.952267pt;}
.ls9a{letter-spacing:11.994933pt;}
.ls86{letter-spacing:11.997226pt;}
.ls49{letter-spacing:11.997790pt;}
.ls53{letter-spacing:12.000133pt;}
.ls99{letter-spacing:12.000356pt;}
.ls69{letter-spacing:12.002416pt;}
.ls8b{letter-spacing:12.085659pt;}
.ls76{letter-spacing:12.343157pt;}
.ls4e{letter-spacing:12.615958pt;}
.ls3e{letter-spacing:13.290933pt;}
.ls39{letter-spacing:13.333467pt;}
.ls98{letter-spacing:13.333867pt;}
.ls8a{letter-spacing:13.617642pt;}
.lsf{letter-spacing:13.621467pt;}
.ls77{letter-spacing:13.622975pt;}
.ls35{letter-spacing:13.642815pt;}
.ls80{letter-spacing:14.133467pt;}
.ls88{letter-spacing:14.384326pt;}
.ls8e{letter-spacing:14.506667pt;}
.ls29{letter-spacing:14.512000pt;}
.ls8d{letter-spacing:14.652267pt;}
.ls6d{letter-spacing:14.657600pt;}
.ls1a{letter-spacing:14.811081pt;}
.ls1f{letter-spacing:14.816276pt;}
.ls33{letter-spacing:14.890874pt;}
.ls96{letter-spacing:14.896276pt;}
.ls36{letter-spacing:15.413467pt;}
.ls8c{letter-spacing:15.840276pt;}
.ls94{letter-spacing:15.914667pt;}
.ls91{letter-spacing:16.005333pt;}
.ls90{letter-spacing:16.010667pt;}
.ls64{letter-spacing:16.160267pt;}
.lse{letter-spacing:16.170993pt;}
.ls5{letter-spacing:16.309867pt;}
.ls79{letter-spacing:16.801824pt;}
.ls85{letter-spacing:17.082667pt;}
.ls71{letter-spacing:17.274933pt;}
.ls40{letter-spacing:17.376207pt;}
.ls32{letter-spacing:17.546667pt;}
.ls23{letter-spacing:17.819052pt;}
.ls3d{letter-spacing:18.064267pt;}
.ls6f{letter-spacing:18.074667pt;}
.ls92{letter-spacing:18.224000pt;}
.ls10{letter-spacing:18.459022pt;}
.ls93{letter-spacing:18.677333pt;}
.ls5e{letter-spacing:18.782784pt;}
.ls7a{letter-spacing:19.056385pt;}
.ls75{letter-spacing:19.132491pt;}
.lsb{letter-spacing:19.552326pt;}
.ls63{letter-spacing:19.712276pt;}
.ls72{letter-spacing:19.936000pt;}
.ls78{letter-spacing:20.288000pt;}
.ls1d{letter-spacing:20.325630pt;}
.ls1c{letter-spacing:20.330933pt;}
.ls62{letter-spacing:20.890933pt;}
.ls38{letter-spacing:21.152133pt;}
.ls5b{letter-spacing:21.637748pt;}
.ls5a{letter-spacing:21.642942pt;}
.lsc{letter-spacing:22.215157pt;}
.ls7{letter-spacing:22.517333pt;}
.ls65{letter-spacing:22.554933pt;}
.ls8f{letter-spacing:22.814784pt;}
.ls70{letter-spacing:22.976267pt;}
.ls73{letter-spacing:23.653333pt;}
.ls61{letter-spacing:24.938933pt;}
.ls21{letter-spacing:25.141333pt;}
.ls42{letter-spacing:25.607157pt;}
.ls60{letter-spacing:26.522933pt;}
.ls8{letter-spacing:26.568393pt;}
.ls74{letter-spacing:31.057824pt;}
.ls24{letter-spacing:31.804491pt;}
.ls13{letter-spacing:37.941748pt;}
.ls22{letter-spacing:42.593824pt;}
.ls6e{letter-spacing:164.716267pt;}
.ls50{letter-spacing:433.082844pt;}
.ls52{letter-spacing:545.226993pt;}
.ws7{word-spacing:-58.666133pt;}
.ws69{word-spacing:-32.639674pt;}
.ws104{word-spacing:-29.375674pt;}
.ws5{word-spacing:-28.415645pt;}
.ws4c{word-spacing:-26.666400pt;}
.wsc{word-spacing:-23.999733pt;}
.ws141{word-spacing:-22.541678pt;}
.wsc2{word-spacing:-19.306474pt;}
.ws7b{word-spacing:-18.736000pt;}
.ws4{word-spacing:-18.666400pt;}
.ws14b{word-spacing:-17.813155pt;}
.ws138{word-spacing:-17.759822pt;}
.ws10c{word-spacing:-17.706490pt;}
.ws117{word-spacing:-17.653157pt;}
.ws40{word-spacing:-17.599824pt;}
.ws188{word-spacing:-17.546491pt;}
.ws199{word-spacing:-17.425865pt;}
.wsca{word-spacing:-17.423806pt;}
.ws110{word-spacing:-17.386493pt;}
.ws196{word-spacing:-17.379525pt;}
.ws197{word-spacing:-17.379199pt;}
.wscc{word-spacing:-17.375807pt;}
.ws195{word-spacing:-17.374192pt;}
.ws33{word-spacing:-17.333160pt;}
.ws62{word-spacing:-17.279827pt;}
.ws41{word-spacing:-17.226494pt;}
.wsf0{word-spacing:-17.219894pt;}
.wsf1{word-spacing:-17.173162pt;}
.ws95{word-spacing:-17.119829pt;}
.ws96{word-spacing:-17.066496pt;}
.ws132{word-spacing:-17.013163pt;}
.wsfc{word-spacing:-16.906498pt;}
.wsc5{word-spacing:-16.862400pt;}
.ws35{word-spacing:-16.853165pt;}
.ws130{word-spacing:-16.799832pt;}
.ws11a{word-spacing:-16.746499pt;}
.wsb7{word-spacing:-16.693166pt;}
.ws139{word-spacing:-16.639834pt;}
.ws13f{word-spacing:-16.533168pt;}
.ws63{word-spacing:-16.479835pt;}
.ws5b{word-spacing:-16.426502pt;}
.ws186{word-spacing:-16.271318pt;}
.ws55{word-spacing:-16.266504pt;}
.ws8a{word-spacing:-16.213171pt;}
.wse9{word-spacing:-16.159838pt;}
.ws116{word-spacing:-16.142489pt;}
.ws10b{word-spacing:-16.106506pt;}
.ws12a{word-spacing:-16.053173pt;}
.ws146{word-spacing:-16.031822pt;}
.ws170{word-spacing:-15.999840pt;}
.ws14c{word-spacing:-15.983822pt;}
.wsa0{word-spacing:-15.946507pt;}
.ws47{word-spacing:-15.893174pt;}
.ws37{word-spacing:-15.839842pt;}
.wse6{word-spacing:-15.786509pt;}
.ws82{word-spacing:-15.733176pt;}
.wsa5{word-spacing:-15.700178pt;}
.ws129{word-spacing:-15.679843pt;}
.ws32{word-spacing:-15.626510pt;}
.ws6d{word-spacing:-15.519845pt;}
.ws81{word-spacing:-15.466512pt;}
.ws187{word-spacing:-15.413179pt;}
.ws119{word-spacing:-15.359846pt;}
.ws4e{word-spacing:-15.306514pt;}
.ws85{word-spacing:-15.199848pt;}
.wsab{word-spacing:-15.146515pt;}
.ws43{word-spacing:-15.093182pt;}
.ws152{word-spacing:-15.039850pt;}
.ws13e{word-spacing:-14.986517pt;}
.ws29{word-spacing:-14.933184pt;}
.wse7{word-spacing:-14.921571pt;}
.wse8{word-spacing:-14.916933pt;}
.ws61{word-spacing:-14.879851pt;}
.ws17f{word-spacing:-14.826518pt;}
.ws185{word-spacing:-14.719853pt;}
.wse3{word-spacing:-14.666520pt;}
.ws131{word-spacing:-14.613187pt;}
.ws172{word-spacing:-14.527200pt;}
.ws171{word-spacing:-14.506522pt;}
.ws127{word-spacing:-14.453189pt;}
.wse4{word-spacing:-14.404252pt;}
.wse5{word-spacing:-14.399856pt;}
.wsfd{word-spacing:-14.346523pt;}
.ws5e{word-spacing:-14.303841pt;}
.ws8d{word-spacing:-14.293190pt;}
.wsec{word-spacing:-14.255842pt;}
.ws80{word-spacing:-14.239858pt;}
.wsb5{word-spacing:-14.186525pt;}
.wsb6{word-spacing:-14.133192pt;}
.ws8f{word-spacing:-14.079859pt;}
.ws7d{word-spacing:-14.026526pt;}
.ws2c{word-spacing:-13.973194pt;}
.wsde{word-spacing:-13.924297pt;}
.wsd6{word-spacing:-13.919861pt;}
.ws6e{word-spacing:-13.866528pt;}
.wse0{word-spacing:-13.813195pt;}
.ws36{word-spacing:-13.759862pt;}
.ws92{word-spacing:-13.706530pt;}
.wse2{word-spacing:-13.653197pt;}
.ws2a{word-spacing:-13.599864pt;}
.ws90{word-spacing:-13.493198pt;}
.ws12b{word-spacing:-13.439866pt;}
.wse{word-spacing:-13.386533pt;}
.ws149{word-spacing:-13.364533pt;}
.ws148{word-spacing:-13.363674pt;}
.ws16e{word-spacing:-13.337186pt;}
.wsd{word-spacing:-13.333200pt;}
.wsf{word-spacing:-13.332933pt;}
.ws10d{word-spacing:-13.279867pt;}
.ws1d{word-spacing:-13.269167pt;}
.wsf2{word-spacing:-13.226534pt;}
.ws1c{word-spacing:-13.226501pt;}
.ws89{word-spacing:-13.173202pt;}
.wsb8{word-spacing:-13.119869pt;}
.ws6{word-spacing:-13.082548pt;}
.ws56{word-spacing:-13.066536pt;}
.ws8{word-spacing:-13.023882pt;}
.ws93{word-spacing:-13.013203pt;}
.ws193{word-spacing:-13.007855pt;}
.ws49{word-spacing:-12.853205pt;}
.ws11b{word-spacing:-12.799872pt;}
.ws99{word-spacing:-12.746539pt;}
.ws22{word-spacing:-12.693206pt;}
.ws156{word-spacing:-12.671859pt;}
.ws28{word-spacing:-12.639874pt;}
.ws198{word-spacing:-12.623860pt;}
.ws42{word-spacing:-12.586541pt;}
.ws97{word-spacing:-12.533208pt;}
.ws15d{word-spacing:-12.527861pt;}
.ws147{word-spacing:-12.479875pt;}
.ws15c{word-spacing:-12.479861pt;}
.wsbb{word-spacing:-12.319877pt;}
.wsf3{word-spacing:-12.266544pt;}
.ws11c{word-spacing:-12.239864pt;}
.ws14a{word-spacing:-12.238785pt;}
.ws3b{word-spacing:-12.213211pt;}
.ws9d{word-spacing:-12.159878pt;}
.ws88{word-spacing:-12.106546pt;}
.ws181{word-spacing:-12.057393pt;}
.ws135{word-spacing:-12.053213pt;}
.wsa{word-spacing:-12.047866pt;}
.wsa8{word-spacing:-12.044142pt;}
.ws136{word-spacing:-12.004933pt;}
.ws194{word-spacing:-12.004533pt;}
.ws137{word-spacing:-12.004400pt;}
.wsc6{word-spacing:-12.004297pt;}
.wsc7{word-spacing:-12.004059pt;}
.ws191{word-spacing:-12.004000pt;}
.wscf{word-spacing:-12.003733pt;}
.wsb{word-spacing:-12.003467pt;}
.ws13a{word-spacing:-11.999880pt;}
.ws9{word-spacing:-11.999867pt;}
.ws16f{word-spacing:-11.999467pt;}
.ws190{word-spacing:-11.999200pt;}
.ws155{word-spacing:-11.998963pt;}
.ws192{word-spacing:-11.998933pt;}
.ws143{word-spacing:-11.998726pt;}
.ws18e{word-spacing:-11.998667pt;}
.ws115{word-spacing:-11.997956pt;}
.ws18f{word-spacing:-11.997867pt;}
.ws12e{word-spacing:-11.947202pt;}
.ws10f{word-spacing:-11.946547pt;}
.ws5d{word-spacing:-11.893214pt;}
.ws1e{word-spacing:-11.861185pt;}
.wsba{word-spacing:-11.839882pt;}
.ws7c{word-spacing:-11.786549pt;}
.ws6f{word-spacing:-11.733216pt;}
.ws34{word-spacing:-11.679883pt;}
.ws3d{word-spacing:-11.626550pt;}
.wsa6{word-spacing:-11.573218pt;}
.wsc1{word-spacing:-11.519885pt;}
.ws11f{word-spacing:-11.466552pt;}
.ws25{word-spacing:-11.413219pt;}
.ws24{word-spacing:-11.359886pt;}
.ws78{word-spacing:-11.306554pt;}
.ws19{word-spacing:-11.253221pt;}
.ws21{word-spacing:-11.199888pt;}
.ws128{word-spacing:-11.146555pt;}
.ws2f{word-spacing:-11.125174pt;}
.ws3e{word-spacing:-11.093222pt;}
.ws73{word-spacing:-11.039890pt;}
.wsd7{word-spacing:-11.038785pt;}
.wsda{word-spacing:-11.033630pt;}
.ws52{word-spacing:-10.986557pt;}
.wsbc{word-spacing:-10.933224pt;}
.ws75{word-spacing:-10.879891pt;}
.ws159{word-spacing:-10.826558pt;}
.ws9f{word-spacing:-10.773226pt;}
.ws9e{word-spacing:-10.719893pt;}
.wsb4{word-spacing:-10.666560pt;}
.ws1a{word-spacing:-10.666533pt;}
.ws17e{word-spacing:-10.649215pt;}
.ws179{word-spacing:-10.639318pt;}
.ws91{word-spacing:-10.613227pt;}
.ws6c{word-spacing:-10.559894pt;}
.ws118{word-spacing:-10.548800pt;}
.wsee{word-spacing:-10.542963pt;}
.ws4b{word-spacing:-10.506562pt;}
.ws10e{word-spacing:-10.500297pt;}
.ws17a{word-spacing:-10.453229pt;}
.wsef{word-spacing:-10.399896pt;}
.wsb3{word-spacing:-10.346563pt;}
.ws72{word-spacing:-10.293230pt;}
.ws12f{word-spacing:-10.248625pt;}
.wsa1{word-spacing:-10.239898pt;}
.ws50{word-spacing:-10.186565pt;}
.ws4a{word-spacing:-10.133232pt;}
.ws14{word-spacing:-10.079899pt;}
.ws11d{word-spacing:-10.026566pt;}
.ws183{word-spacing:-9.973234pt;}
.ws121{word-spacing:-9.919901pt;}
.ws94{word-spacing:-9.866568pt;}
.wsbe{word-spacing:-9.813235pt;}
.ws74{word-spacing:-9.759902pt;}
.ws4d{word-spacing:-9.706570pt;}
.ws48{word-spacing:-9.653237pt;}
.ws180{word-spacing:-9.599904pt;}
.ws144{word-spacing:-9.557214pt;}
.ws71{word-spacing:-9.546571pt;}
.ws9c{word-spacing:-9.514548pt;}
.ws57{word-spacing:-9.493238pt;}
.wsc3{word-spacing:-9.439906pt;}
.ws125{word-spacing:-9.390697pt;}
.ws126{word-spacing:-9.386573pt;}
.wsad{word-spacing:-9.333240pt;}
.ws51{word-spacing:-9.279907pt;}
.ws2b{word-spacing:-9.226574pt;}
.wsa7{word-spacing:-9.173242pt;}
.ws2d{word-spacing:-9.119909pt;}
.ws3a{word-spacing:-9.066576pt;}
.wsb2{word-spacing:-9.013243pt;}
.ws142{word-spacing:-8.959910pt;}
.wsb9{word-spacing:-8.906578pt;}
.ws18d{word-spacing:-8.853245pt;}
.ws113{word-spacing:-8.799912pt;}
.ws5c{word-spacing:-8.746579pt;}
.ws17{word-spacing:-8.693246pt;}
.wsa2{word-spacing:-8.639914pt;}
.ws5a{word-spacing:-8.586581pt;}
.wseb{word-spacing:-8.533248pt;}
.wsaa{word-spacing:-8.479915pt;}
.ws9a{word-spacing:-8.426582pt;}
.ws178{word-spacing:-8.382489pt;}
.ws9b{word-spacing:-8.373250pt;}
.ws1{word-spacing:-8.325214pt;}
.wsbf{word-spacing:-8.319917pt;}
.ws2e{word-spacing:-8.287882pt;}
.ws3{word-spacing:-8.287140pt;}
.ws39{word-spacing:-8.266584pt;}
.ws65{word-spacing:-8.213251pt;}
.ws64{word-spacing:-8.201630pt;}
.ws54{word-spacing:-8.159918pt;}
.ws14e{word-spacing:-8.153956pt;}
.ws114{word-spacing:-8.106586pt;}
.wsac{word-spacing:-8.053253pt;}
.ws53{word-spacing:-7.999920pt;}
.wsbd{word-spacing:-7.946587pt;}
.ws87{word-spacing:-7.893254pt;}
.ws20{word-spacing:-7.839922pt;}
.ws23{word-spacing:-7.733256pt;}
.ws27{word-spacing:-7.679923pt;}
.ws7f{word-spacing:-7.626590pt;}
.ws38{word-spacing:-7.573258pt;}
.ws59{word-spacing:-7.519925pt;}
.ws158{word-spacing:-7.466592pt;}
.wsfb{word-spacing:-7.413259pt;}
.ws30{word-spacing:-7.359926pt;}
.ws184{word-spacing:-7.306594pt;}
.ws3f{word-spacing:-7.253261pt;}
.ws84{word-spacing:-7.199928pt;}
.ws44{word-spacing:-7.146595pt;}
.ws45{word-spacing:-7.093262pt;}
.ws77{word-spacing:-7.039930pt;}
.ws76{word-spacing:-6.986597pt;}
.wsea{word-spacing:-6.933264pt;}
.ws15{word-spacing:-6.826598pt;}
.ws16c{word-spacing:-6.773266pt;}
.ws11e{word-spacing:-6.719933pt;}
.ws13c{word-spacing:-6.666600pt;}
.ws7a{word-spacing:-6.613267pt;}
.ws11{word-spacing:-6.559934pt;}
.ws7e{word-spacing:-6.506602pt;}
.ws153{word-spacing:-6.399936pt;}
.ws67{word-spacing:-6.346603pt;}
.ws68{word-spacing:-6.340297pt;}
.ws13{word-spacing:-6.293270pt;}
.wsaf{word-spacing:-6.239938pt;}
.wsb0{word-spacing:-6.186605pt;}
.wse1{word-spacing:-6.133272pt;}
.ws86{word-spacing:-6.079939pt;}
.wsdd{word-spacing:-6.026606pt;}
.wsfa{word-spacing:-5.973274pt;}
.ws140{word-spacing:-5.929451pt;}
.ws154{word-spacing:-5.866608pt;}
.wsfe{word-spacing:-5.813275pt;}
.wsa3{word-spacing:-5.759942pt;}
.ws70{word-spacing:-5.706610pt;}
.ws18{word-spacing:-5.653277pt;}
.ws8c{word-spacing:-5.546611pt;}
.ws150{word-spacing:-5.358963pt;}
.ws151{word-spacing:-5.333280pt;}
.ws31{word-spacing:-5.279947pt;}
.wsf9{word-spacing:-5.173282pt;}
.ws26{word-spacing:-5.066616pt;}
.ws12{word-spacing:-5.013283pt;}
.wsf7{word-spacing:-4.959950pt;}
.ws98{word-spacing:-4.853285pt;}
.ws2{word-spacing:-4.853264pt;}
.ws16a{word-spacing:-4.799952pt;}
.wsa4{word-spacing:-4.746619pt;}
.ws173{word-spacing:-4.693286pt;}
.wsd4{word-spacing:-4.639954pt;}
.ws66{word-spacing:-4.533288pt;}
.ws177{word-spacing:-4.426622pt;}
.ws58{word-spacing:-4.373290pt;}
.wsdb{word-spacing:-4.229941pt;}
.wsdf{word-spacing:-4.228117pt;}
.wsc0{word-spacing:-4.227509pt;}
.wsd8{word-spacing:-4.224608pt;}
.wsd5{word-spacing:-4.222784pt;}
.ws3c{word-spacing:-4.213291pt;}
.ws60{word-spacing:-4.159958pt;}
.ws111{word-spacing:-4.115674pt;}
.ws112{word-spacing:-4.106626pt;}
.ws182{word-spacing:-3.946627pt;}
.ws17c{word-spacing:-3.893294pt;}
.wsf4{word-spacing:-3.786629pt;}
.wsae{word-spacing:-3.733296pt;}
.ws13b{word-spacing:-3.717941pt;}
.ws122{word-spacing:-3.683674pt;}
.ws123{word-spacing:-3.679963pt;}
.ws17b{word-spacing:-3.626630pt;}
.ws6a{word-spacing:-3.519965pt;}
.ws1b{word-spacing:-3.370625pt;}
.ws101{word-spacing:-3.359966pt;}
.ws102{word-spacing:-3.306634pt;}
.ws100{word-spacing:-3.289718pt;}
.wsf5{word-spacing:-3.253301pt;}
.ws145{word-spacing:-3.245839pt;}
.ws14d{word-spacing:-3.240547pt;}
.wscb{word-spacing:-3.240506pt;}
.wsb1{word-spacing:-3.199968pt;}
.wsdc{word-spacing:-3.093302pt;}
.wsff{word-spacing:-2.986637pt;}
.ws157{word-spacing:-2.856547pt;}
.ws16b{word-spacing:-2.666640pt;}
.ws14f{word-spacing:-2.346643pt;}
.wsc4{word-spacing:-2.206005pt;}
.ws134{word-spacing:-2.204281pt;}
.ws174{word-spacing:-2.079979pt;}
.ws15b{word-spacing:-1.973314pt;}
.ws79{word-spacing:-1.759982pt;}
.wsf8{word-spacing:-1.706650pt;}
.ws15a{word-spacing:-1.599984pt;}
.wsce{word-spacing:-1.581292pt;}
.ws175{word-spacing:-1.493318pt;}
.ws176{word-spacing:-1.492533pt;}
.ws46{word-spacing:-1.386653pt;}
.ws1f{word-spacing:-1.279987pt;}
.ws103{word-spacing:-1.119989pt;}
.ws8b{word-spacing:-1.066656pt;}
.ws4f{word-spacing:-0.959990pt;}
.wsd9{word-spacing:-0.448747pt;}
.ws8e{word-spacing:-0.213331pt;}
.wsf6{word-spacing:-0.159998pt;}
.ws10{word-spacing:-0.053333pt;}
.wsa9{word-spacing:-0.047999pt;}
.ws16{word-spacing:-0.037333pt;}
.ws120{word-spacing:-0.031999pt;}
.ws0{word-spacing:0.000000pt;}
.ws83{word-spacing:0.373330pt;}
.ws5f{word-spacing:0.799992pt;}
.ws17d{word-spacing:0.853325pt;}
.ws18c{word-spacing:1.066656pt;}
.ws124{word-spacing:1.493318pt;}
.ws12c{word-spacing:1.706650pt;}
.ws12d{word-spacing:1.759982pt;}
.ws6b{word-spacing:2.879971pt;}
.ws13d{word-spacing:3.972725pt;}
.ws18b{word-spacing:4.319957pt;}
.ws18a{word-spacing:4.373290pt;}
.ws189{word-spacing:4.426622pt;}
.wsed{word-spacing:7.253261pt;}
.ws133{word-spacing:10.895879pt;}
.ws16d{word-spacing:11.786549pt;}
.ws105{word-spacing:100.174887pt;}
.ws10a{word-spacing:140.150667pt;}
.ws108{word-spacing:164.150400pt;}
.ws107{word-spacing:180.829452pt;}
.ws106{word-spacing:188.149867pt;}
.wscd{word-spacing:189.164311pt;}
.wsc9{word-spacing:205.099970pt;}
.ws109{word-spacing:212.149867pt;}
.wsd0{word-spacing:213.164044pt;}
.ws162{word-spacing:214.024011pt;}
.ws169{word-spacing:216.043082pt;}
.ws168{word-spacing:219.068133pt;}
.wsd3{word-spacing:225.163911pt;}
.ws163{word-spacing:231.068000pt;}
.ws167{word-spacing:243.067867pt;}
.ws165{word-spacing:246.328118pt;}
.ws15f{word-spacing:252.328118pt;}
.ws160{word-spacing:255.067733pt;}
.ws166{word-spacing:261.728933pt;}
.ws164{word-spacing:267.067600pt;}
.ws15e{word-spacing:297.728533pt;}
.ws161{word-spacing:303.067200pt;}
.wsd1{word-spacing:377.516073pt;}
.wsd2{word-spacing:378.380073pt;}
.wsc8{word-spacing:655.910637pt;}
._6{margin-left:-12.693179pt;}
._11{margin-left:-8.351907pt;}
._a{margin-left:-6.666600pt;}
._5{margin-left:-4.927930pt;}
._8{margin-left:-3.744706pt;}
._3{margin-left:-2.538630pt;}
._1{margin-left:-1.045318pt;}
._7{width:0.914092pt;}
._14{width:2.803522pt;}
._50{width:4.883710pt;}
._2{width:10.341186pt;}
._16{width:11.647862pt;}
._30{width:12.959870pt;}
._e{width:13.850469pt;}
._10{width:14.773186pt;}
._3a{width:16.778494pt;}
._c{width:18.026486pt;}
._b{width:19.466472pt;}
._13{width:21.253837pt;}
._3b{width:22.366197pt;}
._12{width:23.951734pt;}
._9{width:26.037064pt;}
._15{width:27.170141pt;}
._51{width:37.101910pt;}
._2d{width:175.052967pt;}
._2f{width:186.075733pt;}
._2e{width:189.398400pt;}
._3d{width:207.713525pt;}
._26{width:210.301910pt;}
._22{width:212.149867pt;}
._1d{width:213.166356pt;}
._1a{width:222.926517pt;}
._2c{width:224.557447pt;}
._24{width:234.069867pt;}
._23{width:237.397867pt;}
._4f{width:243.576685pt;}
._34{width:244.906087pt;}
._1b{width:255.910254pt;}
._47{width:257.009970pt;}
._21{width:258.069600pt;}
._20{width:261.397867pt;}
._1e{width:268.214251pt;}
._2b{width:272.097485pt;}
._2a{width:273.226057pt;}
._46{width:274.241045pt;}
._19{width:279.813989pt;}
._29{width:282.156059pt;}
._4d{width:285.728933pt;}
._25{width:287.484000pt;}
._35{width:289.124266pt;}
._18{width:290.224948pt;}
._1f{width:292.812474pt;}
._41{width:296.858740pt;}
._3f{width:303.067200pt;}
._49{width:309.728667pt;}
._39{width:313.124266pt;}
._28{width:319.100166pt;}
._40{width:321.728533pt;}
._33{width:326.718518pt;}
._48{width:334.311141pt;}
._4e{width:338.724723pt;}
._3c{width:341.009037pt;}
._45{width:343.596152pt;}
._32{width:345.398400pt;}
._4c{width:347.654726pt;}
._38{width:350.718518pt;}
._44{width:353.654726pt;}
._27{width:356.747764pt;}
._1c{width:359.852726pt;}
._3e{width:364.311141pt;}
._37{width:369.398133pt;}
._4a{width:376.982667pt;}
._43{width:390.598833pt;}
._4b{width:398.246430pt;}
._31{width:407.826947pt;}
._d{width:421.909630pt;}
._42{width:428.246430pt;}
._36{width:431.826947pt;}
._17{width:622.599007pt;}
._4{width:1089.222998pt;}
._f{width:1588.735991pt;}
._0{width:1764.202667pt;}
.fse{font-size:26.666133pt;}
.fs10{font-size:31.999467pt;}
.fsa{font-size:33.599467pt;}
.fsf{font-size:33.724800pt;}
.fs6{font-size:37.332800pt;}
.fs5{font-size:37.333333pt;}
.fsd{font-size:37.472000pt;}
.fs9{font-size:42.666133pt;}
.fs1{font-size:42.666667pt;}
.fs4{font-size:43.619896pt;}
.fsb{font-size:47.999467pt;}
.fs2{font-size:48.000000pt;}
.fsc{font-size:53.332800pt;}
.fs8{font-size:58.666133pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.333333pt;}
.fs7{font-size:127.998400pt;}
.y0{bottom:0.000000pt;}
.y18{bottom:57.706667pt;}
.yc5{bottom:62.590667pt;}
.y54{bottom:63.653333pt;}
.y16f{bottom:91.548000pt;}
.y223{bottom:94.337333pt;}
.y21d{bottom:94.470667pt;}
.yc4{bottom:107.488000pt;}
.y16e{bottom:107.548000pt;}
.y8e{bottom:107.744000pt;}
.y222{bottom:110.337333pt;}
.y21c{bottom:110.470667pt;}
.y150{bottom:112.801333pt;}
.y53{bottom:117.616000pt;}
.y42{bottom:117.717333pt;}
.yc3{bottom:123.488000pt;}
.y16d{bottom:123.548000pt;}
.y8d{bottom:123.744000pt;}
.y221{bottom:126.337333pt;}
.y21b{bottom:126.470667pt;}
.y14f{bottom:128.801333pt;}
.y41{bottom:130.384000pt;}
.y52{bottom:133.616000pt;}
.yc2{bottom:139.488000pt;}
.y16c{bottom:139.548000pt;}
.y8c{bottom:139.744000pt;}
.y220{bottom:142.337333pt;}
.y21a{bottom:142.470667pt;}
.y40{bottom:143.050667pt;}
.y14e{bottom:144.801333pt;}
.y51{bottom:149.616000pt;}
.yc1{bottom:155.488000pt;}
.y16b{bottom:155.548000pt;}
.y3f{bottom:155.717333pt;}
.y8b{bottom:155.744000pt;}
.y21f{bottom:158.337333pt;}
.y219{bottom:158.470667pt;}
.y14d{bottom:160.801333pt;}
.yfd{bottom:164.821333pt;}
.y50{bottom:165.616000pt;}
.yc0{bottom:171.488000pt;}
.y16a{bottom:171.548000pt;}
.y8a{bottom:171.744000pt;}
.y218{bottom:174.470667pt;}
.y14c{bottom:176.801333pt;}
.y4f{bottom:181.616000pt;}
.ybf{bottom:187.488000pt;}
.y169{bottom:187.548000pt;}
.y89{bottom:187.744000pt;}
.y21e{bottom:189.004000pt;}
.y217{bottom:190.470667pt;}
.y14b{bottom:192.801333pt;}
.y4e{bottom:197.616000pt;}
.ybe{bottom:203.488000pt;}
.y168{bottom:203.548000pt;}
.y88{bottom:203.744000pt;}
.y216{bottom:206.470667pt;}
.yfc{bottom:206.910667pt;}
.y14a{bottom:208.801333pt;}
.y3e{bottom:210.946667pt;}
.y4d{bottom:213.616000pt;}
.ybd{bottom:219.488000pt;}
.y167{bottom:219.548000pt;}
.y87{bottom:219.744000pt;}
.y215{bottom:222.470667pt;}
.yfb{bottom:222.910667pt;}
.y149{bottom:224.801333pt;}
.y4c{bottom:229.616000pt;}
.ybc{bottom:235.488000pt;}
.y166{bottom:235.548000pt;}
.y86{bottom:235.744000pt;}
.y214{bottom:238.470667pt;}
.yfa{bottom:238.910667pt;}
.y148{bottom:240.801333pt;}
.y4b{bottom:245.616000pt;}
.y3d{bottom:246.949333pt;}
.ybb{bottom:247.549333pt;}
.y1cd{bottom:250.214667pt;}
.yba{bottom:251.488000pt;}
.y165{bottom:251.548000pt;}
.y85{bottom:251.744000pt;}
.y213{bottom:254.470667pt;}
.yf9{bottom:254.910667pt;}
.y147{bottom:256.801333pt;}
.y4a{bottom:261.616000pt;}
.y3c{bottom:262.949333pt;}
.yb9{bottom:267.488000pt;}
.y164{bottom:267.548000pt;}
.y84{bottom:267.744000pt;}
.y212{bottom:270.470667pt;}
.yf8{bottom:270.910667pt;}
.y146{bottom:272.801333pt;}
.y49{bottom:277.616000pt;}
.y3b{bottom:278.949333pt;}
.yb8{bottom:279.549333pt;}
.yb7{bottom:283.488000pt;}
.y163{bottom:283.548000pt;}
.y83{bottom:283.744000pt;}
.y211{bottom:286.470667pt;}
.yf7{bottom:286.910667pt;}
.y145{bottom:288.801333pt;}
.y48{bottom:293.616000pt;}
.y3a{bottom:294.949333pt;}
.y1cc{bottom:296.377333pt;}
.yb6{bottom:299.488000pt;}
.y162{bottom:299.548000pt;}
.y82{bottom:299.744000pt;}
.y210{bottom:302.470667pt;}
.yf6{bottom:302.910667pt;}
.y144{bottom:304.801333pt;}
.y24c{bottom:309.078667pt;}
.y27c{bottom:309.349333pt;}
.y47{bottom:309.616000pt;}
.y39{bottom:310.949333pt;}
.y1cb{bottom:312.377333pt;}
.yb5{bottom:315.488000pt;}
.y191{bottom:315.548000pt;}
.y81{bottom:315.744000pt;}
.y20f{bottom:318.470667pt;}
.yf5{bottom:318.910667pt;}
.y143{bottom:320.801333pt;}
.y24b{bottom:322.412000pt;}
.y27b{bottom:322.682667pt;}
.y46{bottom:325.616000pt;}
.y38{bottom:326.949333pt;}
.y1ca{bottom:328.377333pt;}
.y158{bottom:330.134667pt;}
.yb4{bottom:331.488000pt;}
.y190{bottom:331.548000pt;}
.y80{bottom:331.744000pt;}
.y1e7{bottom:333.273333pt;}
.y20e{bottom:334.470667pt;}
.yf4{bottom:334.910667pt;}
.y24a{bottom:335.745333pt;}
.y27a{bottom:336.016000pt;}
.y142{bottom:336.801333pt;}
.y45{bottom:341.616000pt;}
.y161{bottom:342.652000pt;}
.y37{bottom:342.949333pt;}
.y1c9{bottom:344.377333pt;}
.y1e6{bottom:346.606667pt;}
.y1aa{bottom:347.194667pt;}
.yb3{bottom:347.488000pt;}
.y1a1{bottom:347.548000pt;}
.y7f{bottom:347.744000pt;}
.y249{bottom:349.078667pt;}
.y279{bottom:349.349333pt;}
.y20d{bottom:350.470667pt;}
.yf3{bottom:350.910667pt;}
.y141{bottom:352.801333pt;}
.y160{bottom:355.985333pt;}
.y44{bottom:357.616000pt;}
.y36{bottom:358.949333pt;}
.y1e5{bottom:359.940000pt;}
.y1c8{bottom:360.377333pt;}
.y1a9{bottom:360.528000pt;}
.y18f{bottom:362.214667pt;}
.y248{bottom:362.412000pt;}
.y278{bottom:362.682667pt;}
.yb2{bottom:363.488000pt;}
.y1a0{bottom:363.548000pt;}
.y7e{bottom:363.744000pt;}
.y20c{bottom:366.470667pt;}
.yf2{bottom:366.910667pt;}
.y140{bottom:368.801333pt;}
.y15f{bottom:369.318667pt;}
.y43{bottom:373.616000pt;}
.y1a8{bottom:375.269333pt;}
.y247{bottom:375.745333pt;}
.y277{bottom:376.016000pt;}
.y1c7{bottom:376.377333pt;}
.ydf{bottom:376.884000pt;}
.yb1{bottom:379.488000pt;}
.y19f{bottom:379.548000pt;}
.y7d{bottom:379.744000pt;}
.y157{bottom:380.188000pt;}
.y20b{bottom:382.470667pt;}
.yf1{bottom:382.910667pt;}
.y15e{bottom:384.060000pt;}
.y13f{bottom:384.801333pt;}
.y1a7{bottom:388.602667pt;}
.y246{bottom:389.078667pt;}
.y276{bottom:389.349333pt;}
.y35{bottom:389.616000pt;}
.yde{bottom:390.217333pt;}
.y1c6{bottom:392.377333pt;}
.y156{bottom:393.521333pt;}
.yb0{bottom:395.488000pt;}
.y19e{bottom:395.548000pt;}
.y7c{bottom:395.744000pt;}
.ye6{bottom:397.050667pt;}
.y15d{bottom:397.393333pt;}
.y20a{bottom:398.470667pt;}
.yf0{bottom:398.910667pt;}
.y13e{bottom:400.801333pt;}
.y1a6{bottom:401.936000pt;}
.y245{bottom:402.412000pt;}
.y275{bottom:402.682667pt;}
.y18e{bottom:406.805333pt;}
.y155{bottom:406.854667pt;}
.y1c5{bottom:408.377333pt;}
.ye5{bottom:410.384000pt;}
.yaf{bottom:411.488000pt;}
.y19d{bottom:411.548000pt;}
.y7b{bottom:411.744000pt;}
.y209{bottom:414.470667pt;}
.y244{bottom:415.745333pt;}
.y274{bottom:416.016000pt;}
.y13d{bottom:416.801333pt;}
.y154{bottom:420.188000pt;}
.y18d{bottom:422.805333pt;}
.ye4{bottom:423.717333pt;}
.y1c4{bottom:424.377333pt;}
.yae{bottom:427.488000pt;}
.y19c{bottom:427.548000pt;}
.y7a{bottom:427.744000pt;}
.y243{bottom:429.078667pt;}
.y273{bottom:429.349333pt;}
.yef{bottom:429.577333pt;}
.y208{bottom:430.470667pt;}
.y13c{bottom:432.801333pt;}
.y153{bottom:433.521333pt;}
.y34{bottom:437.470667pt;}
.y18c{bottom:438.805333pt;}
.y1c3{bottom:440.377333pt;}
.y242{bottom:442.412000pt;}
.y272{bottom:442.682667pt;}
.yad{bottom:443.488000pt;}
.y19b{bottom:443.548000pt;}
.y79{bottom:443.744000pt;}
.y207{bottom:446.470667pt;}
.y152{bottom:446.854667pt;}
.y13b{bottom:448.801333pt;}
.y18b{bottom:454.805333pt;}
.y241{bottom:455.745333pt;}
.y271{bottom:456.016000pt;}
.y1c2{bottom:456.377333pt;}
.yac{bottom:459.488000pt;}
.y19a{bottom:459.548000pt;}
.y78{bottom:459.744000pt;}
.y151{bottom:460.186667pt;}
.y33{bottom:461.336000pt;}
.y206{bottom:462.470667pt;}
.y13a{bottom:464.801333pt;}
.y240{bottom:469.078667pt;}
.y270{bottom:469.349333pt;}
.y18a{bottom:470.805333pt;}
.y1c1{bottom:472.377333pt;}
.yee{bottom:473.001333pt;}
.yd4{bottom:475.488000pt;}
.y199{bottom:475.548000pt;}
.y77{bottom:475.744000pt;}
.y32{bottom:477.336000pt;}
.y205{bottom:478.470667pt;}
.y139{bottom:480.801333pt;}
.y23f{bottom:482.412000pt;}
.y26f{bottom:482.682667pt;}
.y1ed{bottom:483.588000pt;}
.y189{bottom:486.805333pt;}
.y1c0{bottom:488.377333pt;}
.yed{bottom:489.001333pt;}
.yd3{bottom:491.488000pt;}
.y198{bottom:491.548000pt;}
.yab{bottom:491.641333pt;}
.y76{bottom:491.744000pt;}
.y31{bottom:493.336000pt;}
.y204{bottom:494.470667pt;}
.y23e{bottom:495.745333pt;}
.y26e{bottom:496.016000pt;}
.y138{bottom:496.801333pt;}
.y1ec{bottom:496.921333pt;}
.y188{bottom:502.805333pt;}
.y1bf{bottom:504.377333pt;}
.yec{bottom:505.001333pt;}
.yd2{bottom:507.488000pt;}
.y197{bottom:507.548000pt;}
.yaa{bottom:507.641333pt;}
.y75{bottom:507.744000pt;}
.y23d{bottom:509.078667pt;}
.y30{bottom:509.336000pt;}
.y26d{bottom:509.349333pt;}
.y1eb{bottom:510.254667pt;}
.y203{bottom:510.470667pt;}
.y137{bottom:512.801333pt;}
.y187{bottom:518.805333pt;}
.y1be{bottom:520.377333pt;}
.y23c{bottom:522.412000pt;}
.y26c{bottom:522.682667pt;}
.yd1{bottom:523.488000pt;}
.y196{bottom:523.548000pt;}
.ya9{bottom:523.641333pt;}
.y74{bottom:523.744000pt;}
.y2f{bottom:525.336000pt;}
.y202{bottom:526.470667pt;}
.y136{bottom:528.801333pt;}
.y186{bottom:534.805333pt;}
.y23b{bottom:535.745333pt;}
.y26b{bottom:536.016000pt;}
.y1bd{bottom:536.377333pt;}
.yd0{bottom:539.488000pt;}
.y195{bottom:539.548000pt;}
.ya8{bottom:539.641333pt;}
.y73{bottom:539.744000pt;}
.y1e4{bottom:540.494667pt;}
.y2e{bottom:541.336000pt;}
.y201{bottom:542.470667pt;}
.y135{bottom:544.801333pt;}
.y23a{bottom:549.078667pt;}
.y26a{bottom:549.349333pt;}
.yeb{bottom:550.385333pt;}
.y185{bottom:550.805333pt;}
.y1bc{bottom:552.377333pt;}
.y1e3{bottom:555.161333pt;}
.ycf{bottom:555.488000pt;}
.y194{bottom:555.548000pt;}
.ya7{bottom:555.641333pt;}
.y72{bottom:555.744000pt;}
.y2d{bottom:557.336000pt;}
.y200{bottom:558.470667pt;}
.y134{bottom:560.801333pt;}
.y239{bottom:562.412000pt;}
.y269{bottom:562.681333pt;}
.yea{bottom:563.718667pt;}
.y184{bottom:566.805333pt;}
.y1bb{bottom:568.377333pt;}
.yce{bottom:571.488000pt;}
.y1b1{bottom:571.548000pt;}
.ya6{bottom:571.641333pt;}
.y71{bottom:571.744000pt;}
.y2c{bottom:573.336000pt;}
.y1ff{bottom:574.470667pt;}
.y268{bottom:576.014667pt;}
.y133{bottom:576.801333pt;}
.ye9{bottom:577.052000pt;}
.y1e2{bottom:579.828000pt;}
.y183{bottom:582.805333pt;}
.y1ba{bottom:584.377333pt;}
.ycd{bottom:587.488000pt;}
.y1b0{bottom:587.548000pt;}
.ya5{bottom:587.641333pt;}
.y70{bottom:587.744000pt;}
.y2b{bottom:589.336000pt;}
.y267{bottom:589.348000pt;}
.ye8{bottom:590.385333pt;}
.y238{bottom:590.412000pt;}
.y1fe{bottom:590.470667pt;}
.y132{bottom:592.801333pt;}
.y193{bottom:593.834667pt;}
.y1e1{bottom:594.493333pt;}
.y182{bottom:598.805333pt;}
.y1b9{bottom:600.377333pt;}
.y266{bottom:602.681333pt;}
.ycc{bottom:603.488000pt;}
.y1af{bottom:603.548000pt;}
.ya4{bottom:603.641333pt;}
.ye7{bottom:603.718667pt;}
.y6f{bottom:603.744000pt;}
.y2a{bottom:605.336000pt;}
.y1fd{bottom:606.470667pt;}
.y192{bottom:607.168000pt;}
.y131{bottom:608.801333pt;}
.y1e0{bottom:609.160000pt;}
.y181{bottom:614.805333pt;}
.y1b8{bottom:616.377333pt;}
.y265{bottom:616.680000pt;}
.ycb{bottom:619.488000pt;}
.ya3{bottom:619.641333pt;}
.y6e{bottom:619.744000pt;}
.y29{bottom:621.336000pt;}
.y1fc{bottom:622.470667pt;}
.y1df{bottom:623.826667pt;}
.y130{bottom:624.801333pt;}
.ydd{bottom:628.466667pt;}
.y264{bottom:630.410667pt;}
.y237{bottom:630.412000pt;}
.y180{bottom:630.805333pt;}
.yca{bottom:635.488000pt;}
.ya2{bottom:635.641333pt;}
.y6d{bottom:635.744000pt;}
.y28{bottom:637.336000pt;}
.y1fb{bottom:638.470667pt;}
.y1de{bottom:638.493333pt;}
.y12f{bottom:640.801333pt;}
.ydc{bottom:641.800000pt;}
.y263{bottom:643.744000pt;}
.y236{bottom:646.412000pt;}
.y17f{bottom:646.805333pt;}
.yc9{bottom:651.488000pt;}
.ya1{bottom:651.641333pt;}
.y6c{bottom:651.744000pt;}
.y1dd{bottom:653.160000pt;}
.y27{bottom:653.394667pt;}
.y1fa{bottom:654.470667pt;}
.ydb{bottom:655.133333pt;}
.y12e{bottom:656.801333pt;}
.y1ae{bottom:657.060000pt;}
.y262{bottom:657.077333pt;}
.y235{bottom:662.412000pt;}
.y17e{bottom:662.805333pt;}
.y1b7{bottom:664.513333pt;}
.yc8{bottom:667.488000pt;}
.ya0{bottom:667.641333pt;}
.y6b{bottom:667.744000pt;}
.y1dc{bottom:667.826667pt;}
.yda{bottom:668.466667pt;}
.y1ad{bottom:670.393333pt;}
.y261{bottom:670.410667pt;}
.y1f9{bottom:670.470667pt;}
.y12d{bottom:672.801333pt;}
.y1b6{bottom:677.846667pt;}
.y234{bottom:678.412000pt;}
.y17d{bottom:678.805333pt;}
.yd9{bottom:681.800000pt;}
.y1db{bottom:682.493333pt;}
.yc7{bottom:683.488000pt;}
.y9f{bottom:683.641333pt;}
.y6a{bottom:683.744000pt;}
.y1ac{bottom:685.408000pt;}
.y1f8{bottom:686.470667pt;}
.y12c{bottom:688.801333pt;}
.y26{bottom:690.184000pt;}
.y1b5{bottom:691.180000pt;}
.y15c{bottom:692.577333pt;}
.y233{bottom:694.412000pt;}
.y17c{bottom:694.805333pt;}
.yd8{bottom:695.133333pt;}
.y260{bottom:697.077333pt;}
.y1a5{bottom:697.618667pt;}
.y11a{bottom:699.488000pt;}
.y69{bottom:699.744000pt;}
.y1ab{bottom:700.137333pt;}
.y1f7{bottom:702.470667pt;}
.ye3{bottom:704.100000pt;}
.y1b4{bottom:704.513333pt;}
.y12b{bottom:704.801333pt;}
.y25{bottom:704.850667pt;}
.y112{bottom:705.536000pt;}
.y15b{bottom:705.910667pt;}
.y1da{bottom:706.990667pt;}
.yd7{bottom:708.466667pt;}
.yc6{bottom:708.821333pt;}
.y25f{bottom:710.410667pt;}
.y232{bottom:710.412000pt;}
.y17b{bottom:710.805333pt;}
.y1a4{bottom:710.952000pt;}
.y9e{bottom:712.408000pt;}
.y9d{bottom:712.973333pt;}
.y119{bottom:715.488000pt;}
.y68{bottom:715.744000pt;}
.ye2{bottom:717.433333pt;}
.y1f6{bottom:718.470667pt;}
.y1b3{bottom:719.242667pt;}
.y15a{bottom:719.244000pt;}
.y24{bottom:719.517333pt;}
.y111{bottom:720.202667pt;}
.yd6{bottom:721.800000pt;}
.y25e{bottom:723.744000pt;}
.y1a3{bottom:724.285333pt;}
.y17a{bottom:726.805333pt;}
.y1d9{bottom:730.514667pt;}
.ye1{bottom:730.766667pt;}
.y118{bottom:731.488000pt;}
.y67{bottom:731.744000pt;}
.y1b2{bottom:732.576000pt;}
.y159{bottom:732.577333pt;}
.y1f5{bottom:734.470667pt;}
.y110{bottom:734.869333pt;}
.yd5{bottom:735.133333pt;}
.y25d{bottom:737.077333pt;}
.y1a2{bottom:737.618667pt;}
.y231{bottom:741.078667pt;}
.ye0{bottom:744.100000pt;}
.y9c{bottom:744.794667pt;}
.y117{bottom:747.488000pt;}
.y66{bottom:747.744000pt;}
.y10f{bottom:749.536000pt;}
.y25c{bottom:750.410667pt;}
.y1f4{bottom:750.470667pt;}
.y23{bottom:751.452000pt;}
.y9b{bottom:753.940000pt;}
.y9a{bottom:754.346667pt;}
.y12a{bottom:762.206667pt;}
.y116{bottom:763.488000pt;}
.y65{bottom:763.744000pt;}
.y10e{bottom:764.202667pt;}
.y1f3{bottom:766.470667pt;}
.y1d8{bottom:775.540000pt;}
.y129{bottom:776.873333pt;}
.y25b{bottom:777.077333pt;}
.y17{bottom:777.120000pt;}
.y10d{bottom:778.869333pt;}
.y179{bottom:779.145333pt;}
.y115{bottom:779.488000pt;}
.y64{bottom:779.744000pt;}
.y230{bottom:781.077333pt;}
.y1f2{bottom:782.470667pt;}
.y22{bottom:785.510667pt;}
.y99{bottom:786.268000pt;}
.y16{bottom:787.786667pt;}
.y1d7{bottom:790.206667pt;}
.y25a{bottom:790.410667pt;}
.y10c{bottom:793.536000pt;}
.y178{bottom:793.812000pt;}
.y63{bottom:795.744000pt;}
.y22f{bottom:797.077333pt;}
.y15{bottom:798.453333pt;}
.y1f1{bottom:798.470667pt;}
.y21{bottom:800.177333pt;}
.y128{bottom:801.540000pt;}
.y98{bottom:802.268000pt;}
.y8{bottom:802.800000pt;}
.y259{bottom:803.744000pt;}
.y114{bottom:804.821333pt;}
.y10b{bottom:808.202667pt;}
.y177{bottom:808.478667pt;}
.y14{bottom:809.120000pt;}
.y62{bottom:811.744000pt;}
.y22e{bottom:813.077333pt;}
.y1f0{bottom:814.470667pt;}
.y20{bottom:814.844000pt;}
.y1d6{bottom:814.873333pt;}
.y127{bottom:816.206667pt;}
.y258{bottom:817.077333pt;}
.y97{bottom:818.268000pt;}
.y113{bottom:819.488000pt;}
.y13{bottom:819.786667pt;}
.y10a{bottom:822.869333pt;}
.y176{bottom:823.145333pt;}
.y1ea{bottom:825.376000pt;}
.y61{bottom:827.744000pt;}
.y7{bottom:828.666667pt;}
.y22d{bottom:829.077333pt;}
.y1f{bottom:829.510667pt;}
.y1d5{bottom:829.540000pt;}
.y257{bottom:830.410667pt;}
.y1ef{bottom:830.470667pt;}
.y126{bottom:830.873333pt;}
.y96{bottom:834.268000pt;}
.y1e9{bottom:838.709333pt;}
.y12{bottom:840.453333pt;}
.y60{bottom:843.744000pt;}
.y1d4{bottom:844.206667pt;}
.y22c{bottom:845.077333pt;}
.y125{bottom:845.540000pt;}
.y109{bottom:847.365333pt;}
.y175{bottom:847.812000pt;}
.y11{bottom:851.120000pt;}
.y1e{bottom:851.600000pt;}
.y1e8{bottom:852.042667pt;}
.y256{bottom:857.077333pt;}
.y1d3{bottom:858.873333pt;}
.y5f{bottom:859.744000pt;}
.y124{bottom:860.206667pt;}
.y22b{bottom:861.077333pt;}
.y1ee{bottom:861.137333pt;}
.y10{bottom:861.786667pt;}
.y108{bottom:862.032000pt;}
.y6{bottom:864.560000pt;}
.y95{bottom:866.421333pt;}
.y1d{bottom:868.933333pt;}
.y255{bottom:870.410667pt;}
.yf{bottom:872.453333pt;}
.y174{bottom:873.009333pt;}
.y1d2{bottom:873.540000pt;}
.y123{bottom:874.873333pt;}
.y5e{bottom:875.744000pt;}
.y22a{bottom:877.077333pt;}
.y94{bottom:882.421333pt;}
.y254{bottom:883.744000pt;}
.y107{bottom:885.557333pt;}
.y173{bottom:887.676000pt;}
.y1d1{bottom:888.206667pt;}
.y122{bottom:889.540000pt;}
.y5d{bottom:891.744000pt;}
.y229{bottom:893.077333pt;}
.ye{bottom:893.120000pt;}
.y253{bottom:897.077333pt;}
.y93{bottom:898.421333pt;}
.y5{bottom:898.813333pt;}
.y106{bottom:898.890667pt;}
.y172{bottom:902.342667pt;}
.y1d0{bottom:902.873333pt;}
.yd{bottom:903.786667pt;}
.y121{bottom:904.206667pt;}
.y5c{bottom:907.744000pt;}
.y228{bottom:909.077333pt;}
.y252{bottom:910.410667pt;}
.y105{bottom:912.224000pt;}
.y92{bottom:914.421333pt;}
.yc{bottom:914.453333pt;}
.y171{bottom:917.009333pt;}
.y1cf{bottom:917.540000pt;}
.y1c{bottom:920.417333pt;}
.y5b{bottom:923.744000pt;}
.y4{bottom:924.413333pt;}
.y227{bottom:925.077333pt;}
.yb{bottom:925.120000pt;}
.y104{bottom:925.557333pt;}
.y120{bottom:928.702667pt;}
.y91{bottom:930.421333pt;}
.ya{bottom:935.786667pt;}
.y251{bottom:937.077333pt;}
.y103{bottom:938.890667pt;}
.y5a{bottom:939.744000pt;}
.y226{bottom:941.077333pt;}
.y170{bottom:941.505333pt;}
.y1ce{bottom:942.036000pt;}
.y90{bottom:946.421333pt;}
.y250{bottom:950.410667pt;}
.y102{bottom:952.224000pt;}
.y11f{bottom:952.228000pt;}
.y59{bottom:955.744000pt;}
.y225{bottom:957.077333pt;}
.y9{bottom:958.453333pt;}
.y1b{bottom:960.417333pt;}
.y3{bottom:961.320000pt;}
.y24f{bottom:963.744000pt;}
.y101{bottom:965.557333pt;}
.y11e{bottom:965.561333pt;}
.y58{bottom:971.744000pt;}
.y8f{bottom:971.754667pt;}
.y224{bottom:973.077333pt;}
.y24e{bottom:977.077333pt;}
.y100{bottom:978.890667pt;}
.y11d{bottom:978.894667pt;}
.y57{bottom:987.744000pt;}
.y24d{bottom:990.410667pt;}
.yff{bottom:992.224000pt;}
.y11c{bottom:992.228000pt;}
.y56{bottom:1003.744000pt;}
.yfe{bottom:1005.557333pt;}
.y11b{bottom:1005.561333pt;}
.y1a{bottom:1017.004000pt;}
.y19{bottom:1036.325333pt;}
.y2{bottom:1039.973333pt;}
.y55{bottom:1043.705333pt;}
.y1{bottom:1059.173333pt;}
.h14{height:12.399752pt;}
.ha{height:27.514274pt;}
.he{height:28.055555pt;}
.h5{height:32.000000pt;}
.h6{height:32.714922pt;}
.hb{height:34.159512pt;}
.h16{height:35.327607pt;}
.h15{height:35.626221pt;}
.h8{height:38.937500pt;}
.h17{height:39.999600pt;}
.h1f{height:40.074221pt;}
.hf{height:40.079555pt;}
.h20{height:40.084888pt;}
.h19{height:41.620933pt;}
.h10{height:43.919512pt;}
.h7{height:44.500000pt;}
.h11{height:44.532888pt;}
.h1e{height:47.354267pt;}
.h1a{height:48.101312pt;}
.h21{height:48.549541pt;}
.h22{height:48.554875pt;}
.h12{height:48.799512pt;}
.h1b{height:49.434286pt;}
.h3{height:50.062500pt;}
.h13{height:50.643787pt;}
.h23{height:52.986267pt;}
.hd{height:59.540888pt;}
.h1c{height:60.287555pt;}
.h1d{height:61.727620pt;}
.h4{height:64.000000pt;}
.h1{height:66.750000pt;}
.h2{height:67.273333pt;}
.h18{height:73.412960pt;}
.hc{height:117.118536pt;}
.h9{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:52.000000pt;}
.xb{left:63.761333pt;}
.x1f{left:70.653333pt;}
.xf{left:79.701333pt;}
.x20{left:103.312000pt;}
.x1c{left:121.612000pt;}
.xc{left:138.500000pt;}
.x9{left:189.426667pt;}
.x2{left:205.946667pt;}
.x3{left:226.093333pt;}
.x4{left:255.720000pt;}
.x1e{left:285.968000pt;}
.x1d{left:394.572000pt;}
.x5{left:396.120000pt;}
.x18{left:406.457333pt;}
.xd{left:407.474667pt;}
.x21{left:408.368000pt;}
.x10{left:410.164000pt;}
.xe{left:423.414667pt;}
.x11{left:428.064000pt;}
.x22{left:447.026667pt;}
.x1a{left:486.836000pt;}
.x16{left:533.501333pt;}
.x15{left:535.356000pt;}
.x6{left:538.213333pt;}
.x1b{left:555.064000pt;}
.x8{left:558.213333pt;}
.x13{left:559.946667pt;}
.x12{left:561.428000pt;}
.x7{left:563.920000pt;}
.xa{left:576.798667pt;}
.x14{left:584.502667pt;}
.x17{left:594.252000pt;}
.x19{left:691.389333pt;}
}




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