
    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_4e11b37882204c28aee9468a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.689453;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_6a08eaa0be92abe8f79a8a9e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.858398;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_a99e0befe8f5c7db22441dba.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.856445;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_4ea00c16ad22501d5e4ef3bb.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.669434;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_c44bc77ebd20c83e27191c46.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.911000;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_93f23c05838bf87f213d8cd1.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_e3a85e1617bb8cbb379a3ccf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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_90758489ed3daebc450e11af.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.383000;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_7f60cbf15788c3eba0469a04.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_b49eeb4e9f7b6975e7043a3e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.703235;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_46705d934d5ad5da65c0745a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_e4d3c04ffd1214648bdccc01.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.001000;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_1a0af25afba99026227b6996.woff2')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_d1c6807e7f09211c40075e9a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.895996;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_326745f472b12632a742f32c.woff2')format("woff");}.fff{font-family:fff;line-height:0.856445;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_028b57118e7e671ed0ffba3e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.856445;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_ce337340abc4a0c602e60af4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895996;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_c467c56ca8469c9a35ac6e9b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.675781;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_3f9c56a36428ba38614a6458.woff2')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_0b8bba9b8118f0f172d20e82.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.898000;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_d7a62360c1da534b1532440c.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_1d06bb8c7a6c7e177a34003a.woff2')format("woff");}.ff16{font-family:ff16;line-height:2.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:ff17;src:url('chunks/assets/font_8e0212546442957fda66cb10.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.725000;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_086877521fd9690b774e60d6.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.046000;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_f2062bead7f0abb5d005eecb.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.923000;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;}
.m5{transform:matrix(0.169484,0.183780,-0.183780,0.169484,0,0);-ms-transform:matrix(0.169484,0.183780,-0.183780,0.169484,0,0);-webkit-transform:matrix(0.169484,0.183780,-0.183780,0.169484,0,0);}
.m4{transform:matrix(0.178909,-0.174619,0.174619,0.178909,0,0);-ms-transform:matrix(0.178909,-0.174619,0.174619,0.178909,0,0);-webkit-transform:matrix(0.178909,-0.174619,0.174619,0.178909,0,0);}
.m3{transform:matrix(0.217187,0.123814,-0.123814,0.217187,0,0);-ms-transform:matrix(0.217187,0.123814,-0.123814,0.217187,0,0);-webkit-transform:matrix(0.217187,0.123814,-0.123814,0.217187,0,0);}
.m2{transform:matrix(0.226351,-0.106137,0.106137,0.226351,0,0);-ms-transform:matrix(0.226351,-0.106137,0.106137,0.226351,0,0);-webkit-transform:matrix(0.226351,-0.106137,0.106137,0.226351,0,0);}
.m1{transform:matrix(0.244173,-0.053660,0.053660,0.244173,0,0);-ms-transform:matrix(0.244173,-0.053660,0.053660,0.244173,0,0);-webkit-transform:matrix(0.244173,-0.053660,0.053660,0.244173,0,0);}
.m6{transform:matrix(0.248688,0.025579,-0.025579,0.248688,0,0);-ms-transform:matrix(0.248688,0.025579,-0.025579,0.248688,0,0);-webkit-transform:matrix(0.248688,0.025579,-0.025579,0.248688,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);}
.m7{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.v14{vertical-align:-52.620000px;}
.v4{vertical-align:-21.690000px;}
.v6{vertical-align:-10.764000px;}
.vb{vertical-align:-8.040000px;}
.v2{vertical-align:-1.176238px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:1.176130px;}
.vf{vertical-align:6.978000px;}
.v10{vertical-align:10.758000px;}
.vc{vertical-align:18.654000px;}
.v5{vertical-align:22.981657px;}
.v3{vertical-align:26.034000px;}
.vd{vertical-align:29.616000px;}
.v9{vertical-align:38.376000px;}
.v11{vertical-align:40.374000px;}
.v12{vertical-align:43.764000px;}
.ve{vertical-align:47.352000px;}
.v8{vertical-align:49.134000px;}
.va{vertical-align:54.876000px;}
.v17{vertical-align:74.556000px;}
.v15{vertical-align:92.292000px;}
.v13{vertical-align:101.142000px;}
.v7{vertical-align:122.658000px;}
.v16{vertical-align:150.342000px;}
.ls9{letter-spacing:-1.114039px;}
.ls6{letter-spacing:-1.073815px;}
.ls1b{letter-spacing:-0.889731px;}
.ls2b{letter-spacing:-0.712072px;}
.ls20{letter-spacing:-0.696777px;}
.lsd{letter-spacing:-0.497860px;}
.ls29{letter-spacing:-0.417550px;}
.ls8{letter-spacing:-0.341668px;}
.ls3{letter-spacing:-0.307502px;}
.ls7{letter-spacing:-0.297740px;}
.ls1c{letter-spacing:-0.283096px;}
.ls15{letter-spacing:-0.254786px;}
.ls0{letter-spacing:-0.248871px;}
.ls1e{letter-spacing:-0.246698px;}
.ls2d{letter-spacing:-0.246056px;}
.lse{letter-spacing:-0.244049px;}
.ls4{letter-spacing:-0.234287px;}
.lsb{letter-spacing:-0.224525px;}
.ls5{letter-spacing:-0.200120px;}
.ls14{letter-spacing:-0.194123px;}
.lsc{letter-spacing:-0.190358px;}
.ls2{letter-spacing:-0.165953px;}
.ls21{letter-spacing:-0.141548px;}
.ls16{letter-spacing:-0.137504px;}
.ls30{letter-spacing:-0.126756px;}
.ls17{letter-spacing:-0.109194px;}
.ls19{letter-spacing:-0.064708px;}
.ls1d{letter-spacing:-0.060663px;}
.ls27{letter-spacing:-0.052194px;}
.ls1f{letter-spacing:-0.028310px;}
.ls1{letter-spacing:-0.016231px;}
.ls26{letter-spacing:-0.003728px;}
.ls18{letter-spacing:-0.003557px;}
.lsa{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000301px;}
.ls95{letter-spacing:0.000440px;}
.ls6a{letter-spacing:0.000764px;}
.ls41{letter-spacing:0.001114px;}
.lsa6{letter-spacing:0.001473px;}
.ls55{letter-spacing:0.001809px;}
.ls33{letter-spacing:0.002202px;}
.ls61{letter-spacing:0.002227px;}
.ls71{letter-spacing:0.002400px;}
.ls23{letter-spacing:0.002939px;}
.ls70{letter-spacing:0.003333px;}
.ls7b{letter-spacing:0.003848px;}
.ls3b{letter-spacing:0.004752px;}
.ls96{letter-spacing:0.004765px;}
.ls58{letter-spacing:0.004888px;}
.ls9d{letter-spacing:0.005587px;}
.ls46{letter-spacing:0.005779px;}
.ls5f{letter-spacing:0.006301px;}
.ls1a{letter-spacing:0.020221px;}
.ls22{letter-spacing:0.059650px;}
.ls28{letter-spacing:0.149125px;}
.ls2e{letter-spacing:0.156581px;}
.ls2c{letter-spacing:0.175222px;}
.ls2a{letter-spacing:0.186406px;}
.ls25{letter-spacing:0.190135px;}
.ls2f{letter-spacing:0.201319px;}
.ls24{letter-spacing:0.238600px;}
.ls8d{letter-spacing:0.586737px;}
.ls86{letter-spacing:0.592737px;}
.ls59{letter-spacing:1.277644px;}
.ls6e{letter-spacing:1.929333px;}
.ls6c{letter-spacing:1.935333px;}
.ls43{letter-spacing:2.401300px;}
.ls13{letter-spacing:2.984423px;}
.lsa1{letter-spacing:2.984915px;}
.ls74{letter-spacing:2.986059px;}
.ls40{letter-spacing:2.986472px;}
.ls12{letter-spacing:2.986595px;}
.ls10{letter-spacing:2.989500px;}
.ls11{letter-spacing:2.990423px;}
.ls6d{letter-spacing:2.992059px;}
.ls37{letter-spacing:2.992472px;}
.ls60{letter-spacing:4.259644px;}
.ls7f{letter-spacing:7.124615px;}
.ls8c{letter-spacing:7.173191px;}
.ls51{letter-spacing:11.045073px;}
.ls80{letter-spacing:11.953114px;}
.ls63{letter-spacing:11.979110px;}
.ls77{letter-spacing:15.935073px;}
.ls7a{letter-spacing:15.935518px;}
.ls78{letter-spacing:15.937473px;}
.ls99{letter-spacing:15.940404px;}
.ls8a{letter-spacing:15.941073px;}
.ls7d{letter-spacing:15.941518px;}
.ls91{letter-spacing:15.945191px;}
.ls3a{letter-spacing:16.640809px;}
.ls3f{letter-spacing:16.643518px;}
.lsa0{letter-spacing:16.687473px;}
.ls9f{letter-spacing:16.690404px;}
.ls89{letter-spacing:18.928059px;}
.ls7c{letter-spacing:19.630472px;}
.ls56{letter-spacing:19.919518px;}
.ls5a{letter-spacing:19.921473px;}
.ls4e{letter-spacing:19.922809px;}
.ls88{letter-spacing:19.925518px;}
.ls68{letter-spacing:19.927473px;}
.ls48{letter-spacing:20.564809px;}
.ls4b{letter-spacing:20.573779px;}
.lsa2{letter-spacing:21.091473px;}
.ls85{letter-spacing:21.646059px;}
.ls3e{letter-spacing:21.683518px;}
.ls39{letter-spacing:21.689518px;}
.ls50{letter-spacing:22.327300px;}
.ls52{letter-spacing:22.912059px;}
.ls4a{letter-spacing:22.975300px;}
.ls79{letter-spacing:23.062059px;}
.ls5e{letter-spacing:23.404059px;}
.ls67{letter-spacing:23.408227px;}
.ls5c{letter-spacing:23.410145px;}
.ls84{letter-spacing:23.803486px;}
.ls76{letter-spacing:23.992059px;}
.ls4c{letter-spacing:24.010059px;}
.ls62{letter-spacing:24.134227px;}
.lsa5{letter-spacing:24.173566px;}
.ls4d{letter-spacing:24.191644px;}
.ls90{letter-spacing:24.196792px;}
.ls4f{letter-spacing:24.633160px;}
.ls42{letter-spacing:24.718059px;}
.ls47{letter-spacing:24.833644px;}
.ls6f{letter-spacing:25.720059px;}
.ls64{letter-spacing:25.886227px;}
.ls45{letter-spacing:25.991644px;}
.ls66{letter-spacing:26.398059px;}
.ls82{letter-spacing:26.404059px;}
.ls49{letter-spacing:26.779289px;}
.lsa3{letter-spacing:26.947139px;}
.ls3c{letter-spacing:27.436472px;}
.ls8f{letter-spacing:27.682793px;}
.lsa7{letter-spacing:28.169518px;}
.ls53{letter-spacing:28.558752px;}
.ls7e{letter-spacing:28.576472px;}
.ls34{letter-spacing:29.156809px;}
.ls32{letter-spacing:29.159779px;}
.ls38{letter-spacing:29.182752px;}
.ls3d{letter-spacing:29.183566px;}
.ls73{letter-spacing:29.231644px;}
.lsa4{letter-spacing:29.521486px;}
.ls6b{letter-spacing:30.107644px;}
.ls75{letter-spacing:30.121910px;}
.lsa9{letter-spacing:31.162472px;}
.ls83{letter-spacing:31.291139px;}
.ls31{letter-spacing:31.582752px;}
.ls35{letter-spacing:31.822472px;}
.ls54{letter-spacing:31.943644px;}
.ls36{letter-spacing:33.191691px;}
.ls65{letter-spacing:33.856177px;}
.ls81{letter-spacing:34.066472px;}
.lsf{letter-spacing:35.111578px;}
.ls87{letter-spacing:35.362059px;}
.lsa8{letter-spacing:35.747566px;}
.ls57{letter-spacing:49.810059px;}
.ls8b{letter-spacing:72.811486px;}
.ls5b{letter-spacing:82.189114px;}
.ls94{letter-spacing:116.291566px;}
.ls9c{letter-spacing:355.621910px;}
.ls9e{letter-spacing:389.024915px;}
.ls9a{letter-spacing:437.719139px;}
.ls97{letter-spacing:463.998960px;}
.ls93{letter-spacing:500.471566px;}
.ls92{letter-spacing:504.536675px;}
.ls98{letter-spacing:552.484793px;}
.ls9b{letter-spacing:581.755486px;}
.ls72{letter-spacing:667.387910px;}
.ls69{letter-spacing:794.422177px;}
.ls5d{letter-spacing:796.165114px;}
.ls8e{letter-spacing:873.891191px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws12d{word-spacing:-71.731200px;}
.wsf4{word-spacing:-57.643192px;}
.wseb{word-spacing:-56.789591px;}
.ws100{word-spacing:-51.828601px;}
.wsd4{word-spacing:-45.664082px;}
.wsd8{word-spacing:-33.684972px;}
.ws11c{word-spacing:-24.468532px;}
.ws18{word-spacing:-19.510886px;}
.wsc{word-spacing:-11.031011px;}
.ws2{word-spacing:-10.865058px;}
.wsa{word-spacing:-10.830891px;}
.ws3{word-spacing:-10.796724px;}
.wsf{word-spacing:-10.786962px;}
.ws5{word-spacing:-10.723510px;}
.wsb2{word-spacing:-9.160181px;}
.wsb6{word-spacing:-9.111650px;}
.wsb1{word-spacing:-9.075252px;}
.wsb8{word-spacing:-8.998412px;}
.wsaf{word-spacing:-8.885173px;}
.wsb4{word-spacing:-8.856864px;}
.wsc8{word-spacing:-8.626888px;}
.wsc6{word-spacing:-8.615703px;}
.wsc5{word-spacing:-8.611975px;}
.wsc7{word-spacing:-8.582150px;}
.wsc4{word-spacing:-8.485219px;}
.wsc1{word-spacing:-8.421841px;}
.wsc2{word-spacing:-8.373375px;}
.wsb3{word-spacing:-8.250229px;}
.wsc3{word-spacing:-8.008018px;}
.ws16a{word-spacing:-3.912238px;}
.ws92{word-spacing:-3.873485px;}
.ws33{word-spacing:-3.801754px;}
.ws98{word-spacing:-3.730022px;}
.ws161{word-spacing:-3.658291px;}
.ws105{word-spacing:-3.573723px;}
.ws128{word-spacing:-3.570964px;}
.ws14e{word-spacing:-3.084442px;}
.ws13b{word-spacing:-2.869248px;}
.ws25{word-spacing:-2.797517px;}
.ws95{word-spacing:-2.582323px;}
.ws7f{word-spacing:-2.438861px;}
.ws155{word-spacing:-2.367130px;}
.ws130{word-spacing:-2.295398px;}
.ws1b{word-spacing:-2.223667px;}
.ws3e{word-spacing:-2.080205px;}
.ws178{word-spacing:-1.936742px;}
.ws16d{word-spacing:-1.793280px;}
.ws93{word-spacing:-1.721549px;}
.ws97{word-spacing:-1.649818px;}
.wsad{word-spacing:-1.578086px;}
.ws132{word-spacing:-1.506355px;}
.ws15f{word-spacing:-1.434624px;}
.wsa2{word-spacing:-1.291162px;}
.ws5f{word-spacing:-1.147699px;}
.wsac{word-spacing:-1.075968px;}
.ws17a{word-spacing:-1.004237px;}
.ws13e{word-spacing:-0.932506px;}
.ws11d{word-spacing:-0.889503px;}
.ws9e{word-spacing:-0.860774px;}
.ws7a{word-spacing:-0.789043px;}
.ws14f{word-spacing:-0.645581px;}
.ws9f{word-spacing:-0.573850px;}
.ws73{word-spacing:-0.502118px;}
.ws28{word-spacing:-0.430387px;}
.ws7e{word-spacing:-0.358656px;}
.ws16{word-spacing:-0.103292px;}
.ws4d{word-spacing:-0.073584px;}
.ws4f{word-spacing:-0.071731px;}
.ws1d{word-spacing:-0.047821px;}
.wsb0{word-spacing:-0.032013px;}
.ws15{word-spacing:0.000000px;}
.ws1a{word-spacing:0.143462px;}
.wsb5{word-spacing:0.174107px;}
.ws68{word-spacing:0.286925px;}
.ws6{word-spacing:0.323509px;}
.ws4{word-spacing:0.355921px;}
.ws2a{word-spacing:0.358656px;}
.ws140{word-spacing:0.430384px;}
.ws71{word-spacing:0.430387px;}
.ws0{word-spacing:0.443154px;}
.ws75{word-spacing:0.502118px;}
.ws7d{word-spacing:0.573850px;}
.wsb7{word-spacing:0.643179px;}
.ws1{word-spacing:0.677523px;}
.ws66{word-spacing:0.717312px;}
.ws13d{word-spacing:0.789043px;}
.wsf0{word-spacing:0.860774px;}
.wse{word-spacing:0.906296px;}
.ws62{word-spacing:0.932506px;}
.ws32{word-spacing:1.004237px;}
.wsb{word-spacing:1.038766px;}
.ws5b{word-spacing:1.075968px;}
.ws13{word-spacing:1.147699px;}
.ws78{word-spacing:1.219430px;}
.ws83{word-spacing:1.291162px;}
.ws85{word-spacing:1.362893px;}
.wsfd{word-spacing:1.379061px;}
.ws147{word-spacing:1.386794px;}
.ws43{word-spacing:1.434624px;}
.wse5{word-spacing:1.496909px;}
.ws84{word-spacing:1.506355px;}
.wse4{word-spacing:1.509087px;}
.wsab{word-spacing:1.578086px;}
.ws148{word-spacing:1.625896px;}
.ws26{word-spacing:1.721549px;}
.ws87{word-spacing:1.793280px;}
.wsa4{word-spacing:1.865011px;}
.wsce{word-spacing:1.936742px;}
.wscf{word-spacing:2.008474px;}
.ws94{word-spacing:2.080205px;}
.ws5d{word-spacing:2.151936px;}
.wsde{word-spacing:2.206456px;}
.wsdf{word-spacing:2.208296px;}
.ws64{word-spacing:2.223667px;}
.wsf1{word-spacing:2.295398px;}
.ws65{word-spacing:2.367130px;}
.ws164{word-spacing:2.438861px;}
.ws11a{word-spacing:2.510592px;}
.ws48{word-spacing:2.582323px;}
.ws17c{word-spacing:2.654054px;}
.ws86{word-spacing:2.725786px;}
.ws154{word-spacing:2.821408px;}
.ws113{word-spacing:2.869248px;}
.ws14c{word-spacing:2.881184px;}
.wsbc{word-spacing:2.940979px;}
.ws39{word-spacing:3.012710px;}
.wsba{word-spacing:3.084442px;}
.ws9c{word-spacing:3.156173px;}
.wsca{word-spacing:3.227904px;}
.ws96{word-spacing:3.299613px;}
.ws5a{word-spacing:3.299635px;}
.ws91{word-spacing:3.371366px;}
.ws16e{word-spacing:3.443098px;}
.ws57{word-spacing:3.514829px;}
.wscc{word-spacing:3.586560px;}
.ws12e{word-spacing:3.658291px;}
.ws53{word-spacing:3.730022px;}
.ws1c{word-spacing:3.801754px;}
.wsed{word-spacing:3.866500px;}
.ws14{word-spacing:3.873485px;}
.ws123{word-spacing:3.897972px;}
.ws131{word-spacing:3.899543px;}
.ws15e{word-spacing:3.899762px;}
.ws47{word-spacing:3.945216px;}
.ws41{word-spacing:4.016947px;}
.ws31{word-spacing:4.088678px;}
.ws13c{word-spacing:4.160410px;}
.wsd1{word-spacing:4.232141px;}
.wse0{word-spacing:4.274909px;}
.wse2{word-spacing:4.275972px;}
.wsae{word-spacing:4.303872px;}
.ws7b{word-spacing:4.375603px;}
.ws76{word-spacing:4.447334px;}
.ws34{word-spacing:4.519066px;}
.wsa5{word-spacing:4.590797px;}
.wsf3{word-spacing:4.662528px;}
.wsa7{word-spacing:4.734259px;}
.ws56{word-spacing:4.805990px;}
.wsfb{word-spacing:4.877722px;}
.wsda{word-spacing:4.902113px;}
.wsdc{word-spacing:4.929972px;}
.ws72{word-spacing:4.949453px;}
.wsa9{word-spacing:5.021184px;}
.ws52{word-spacing:5.092915px;}
.ws133{word-spacing:5.164646px;}
.ws50{word-spacing:5.236378px;}
.ws30{word-spacing:5.308109px;}
.ws115{word-spacing:5.371507px;}
.wse8{word-spacing:5.379840px;}
.ws8f{word-spacing:5.451571px;}
.ws101{word-spacing:5.486909px;}
.ws9d{word-spacing:5.523302px;}
.ws8d{word-spacing:5.595034px;}
.ws44{word-spacing:5.666765px;}
.ws89{word-spacing:5.738496px;}
.wsa8{word-spacing:5.953690px;}
.ws81{word-spacing:6.025421px;}
.ws88{word-spacing:6.097152px;}
.ws157{word-spacing:6.168883px;}
.wsd3{word-spacing:6.240614px;}
.wsf9{word-spacing:6.312346px;}
.ws61{word-spacing:6.384077px;}
.wsf5{word-spacing:6.400068px;}
.ws6c{word-spacing:6.455808px;}
.ws7c{word-spacing:6.527539px;}
.ws5c{word-spacing:6.599270px;}
.ws151{word-spacing:6.671002px;}
.ws142{word-spacing:6.742733px;}
.ws67{word-spacing:6.814464px;}
.ws17{word-spacing:6.886195px;}
.ws5e{word-spacing:6.957926px;}
.ws3a{word-spacing:7.029658px;}
.ws144{word-spacing:7.101389px;}
.ws74{word-spacing:7.173120px;}
.ws3f{word-spacing:7.244851px;}
.ws99{word-spacing:7.316582px;}
.ws146{word-spacing:7.364354px;}
.ws14b{word-spacing:7.388314px;}
.ws139{word-spacing:7.460045px;}
.ws45{word-spacing:7.531776px;}
.ws114{word-spacing:7.603507px;}
.ws29{word-spacing:7.675238px;}
.wsc9{word-spacing:7.746970px;}
.ws2d{word-spacing:7.890432px;}
.wse3{word-spacing:7.962163px;}
.ws9a{word-spacing:8.033894px;}
.wsaa{word-spacing:8.105626px;}
.wse9{word-spacing:8.170927px;}
.ws60{word-spacing:8.177357px;}
.wsa6{word-spacing:8.249088px;}
.ws82{word-spacing:8.320819px;}
.ws4c{word-spacing:8.392550px;}
.ws153{word-spacing:8.440315px;}
.ws4a{word-spacing:8.464282px;}
.ws3d{word-spacing:8.536013px;}
.ws160{word-spacing:8.607744px;}
.ws143{word-spacing:8.679475px;}
.ws14a{word-spacing:8.739972px;}
.ws2c{word-spacing:8.751206px;}
.wscd{word-spacing:8.822938px;}
.ws145{word-spacing:9.038131px;}
.ws150{word-spacing:9.109862px;}
.ws9b{word-spacing:9.181594px;}
.ws70{word-spacing:9.253325px;}
.wsd7{word-spacing:9.314909px;}
.ws49{word-spacing:9.325056px;}
.ws6e{word-spacing:9.396787px;}
.wsa1{word-spacing:9.468518px;}
.ws152{word-spacing:9.540250px;}
.ws51{word-spacing:9.611981px;}
.ws137{word-spacing:9.683712px;}
.ws69{word-spacing:9.827174px;}
.ws59{word-spacing:9.898906px;}
.ws23{word-spacing:9.970637px;}
.wsa0{word-spacing:10.185830px;}
.ws8e{word-spacing:10.257562px;}
.ws138{word-spacing:10.329293px;}
.ws8a{word-spacing:10.401024px;}
.ws20{word-spacing:10.472755px;}
.wsbd{word-spacing:10.759680px;}
.ws118{word-spacing:10.831411px;}
.ws77{word-spacing:10.903142px;}
.wsbb{word-spacing:10.974874px;}
.ws35{word-spacing:11.046605px;}
.ws10c{word-spacing:11.144959px;}
.ws10e{word-spacing:11.145972px;}
.ws27{word-spacing:11.190067px;}
.ws2b{word-spacing:11.261798px;}
.ws40{word-spacing:11.333530px;}
.ws116{word-spacing:11.347263px;}
.ws111{word-spacing:11.371676px;}
.ws121{word-spacing:11.385883px;}
.ws6b{word-spacing:11.405261px;}
.ws38{word-spacing:11.476992px;}
.ws37{word-spacing:11.548723px;}
.ws63{word-spacing:11.620454px;}
.ws14d{word-spacing:11.692186px;}
.ws11b{word-spacing:11.763917px;}
.ws42{word-spacing:11.835648px;}
.ws6a{word-spacing:12.050842px;}
.ws8b{word-spacing:12.266035px;}
.wsd2{word-spacing:12.337766px;}
.ws163{word-spacing:12.409498px;}
.ws24{word-spacing:12.481229px;}
.ws36{word-spacing:12.552960px;}
.ws119{word-spacing:12.605330px;}
.ws80{word-spacing:12.624691px;}
.ws8c{word-spacing:12.696422px;}
.ws174{word-spacing:12.768154px;}
.ws46{word-spacing:12.839885px;}
.ws12f{word-spacing:12.911616px;}
.ws141{word-spacing:12.983347px;}
.ws3c{word-spacing:13.055078px;}
.wsd0{word-spacing:13.126810px;}
.ws159{word-spacing:13.198541px;}
.ws17d{word-spacing:13.270272px;}
.ws156{word-spacing:13.413734px;}
.ws79{word-spacing:13.485466px;}
.ws3b{word-spacing:13.557197px;}
.ws158{word-spacing:13.628928px;}
.ws58{word-spacing:13.844122px;}
.wse6{word-spacing:13.985806px;}
.ws55{word-spacing:13.987584px;}
.ws120{word-spacing:14.043883px;}
.ws54{word-spacing:14.059315px;}
.wsfa{word-spacing:14.131046px;}
.ws6d{word-spacing:14.346240px;}
.wsbf{word-spacing:14.489702px;}
.wscb{word-spacing:14.633165px;}
.ws162{word-spacing:14.776627px;}
.ws22{word-spacing:15.063552px;}
.wsc0{word-spacing:15.135283px;}
.wsa3{word-spacing:15.350477px;}
.ws16f{word-spacing:15.493939px;}
.ws171{word-spacing:15.565670px;}
.ws19{word-spacing:15.637402px;}
.ws21{word-spacing:15.852595px;}
.wsbe{word-spacing:16.067789px;}
.ws90{word-spacing:16.139520px;}
.ws13a{word-spacing:16.713370px;}
.ws13f{word-spacing:16.880672px;}
.ws6f{word-spacing:17.215488px;}
.ws169{word-spacing:18.434918px;}
.wsb9{word-spacing:18.578381px;}
.ws109{word-spacing:18.873123px;}
.ws108{word-spacing:18.880919px;}
.ws107{word-spacing:18.904399px;}
.wsdb{word-spacing:19.587141px;}
.ws182{word-spacing:19.654349px;}
.ws102{word-spacing:20.157883px;}
.ws168{word-spacing:20.371661px;}
.wsff{word-spacing:20.979883px;}
.ws1f{word-spacing:21.280114px;}
.ws1e{word-spacing:21.339889px;}
.ws4e{word-spacing:21.375898px;}
.ws15d{word-spacing:22.093210px;}
.ws181{word-spacing:22.523597px;}
.ws167{word-spacing:23.312640px;}
.ws17b{word-spacing:23.456102px;}
.ws172{word-spacing:23.743027px;}
.wse7{word-spacing:23.962940px;}
.ws110{word-spacing:23.991123px;}
.wsd5{word-spacing:24.019609px;}
.wsea{word-spacing:24.141883px;}
.ws134{word-spacing:24.241221px;}
.ws135{word-spacing:24.245806px;}
.wsef{word-spacing:24.633883px;}
.wsfe{word-spacing:25.101883px;}
.ws170{word-spacing:25.249382px;}
.ws112{word-spacing:25.366919px;}
.wsf2{word-spacing:26.006224px;}
.ws179{word-spacing:26.181888px;}
.ws122{word-spacing:26.374399px;}
.ws11{word-spacing:26.684006px;}
.wse1{word-spacing:26.729806px;}
.wsdd{word-spacing:26.800940px;}
.ws12{word-spacing:26.827469px;}
.wsf8{word-spacing:26.852224px;}
.wsf7{word-spacing:26.853883px;}
.ws136{word-spacing:27.163380px;}
.wsec{word-spacing:27.345441px;}
.ws11f{word-spacing:27.627883px;}
.ws16c{word-spacing:27.759974px;}
.wsf6{word-spacing:28.028224px;}
.ws16b{word-spacing:28.835942px;}
.ws4b{word-spacing:29.194598px;}
.ws176{word-spacing:29.696717px;}
.ws177{word-spacing:30.629222px;}
.ws10{word-spacing:31.091012px;}
.ws149{word-spacing:31.107141px;}
.ws183{word-spacing:31.489997px;}
.wsd6{word-spacing:31.779141px;}
.ws117{word-spacing:32.314919px;}
.ws10d{word-spacing:33.622399px;}
.ws10f{word-spacing:33.628399px;}
.wsd9{word-spacing:34.849809px;}
.ws175{word-spacing:35.004826px;}
.ws166{word-spacing:37.515418px;}
.ws17f{word-spacing:40.169472px;}
.ws2f{word-spacing:40.312934px;}
.ws173{word-spacing:40.456397px;}
.ws17e{word-spacing:43.899494px;}
.wsfc{word-spacing:44.271883px;}
.ws15b{word-spacing:45.549312px;}
.ws15a{word-spacing:45.764506px;}
.ws180{word-spacing:46.768742px;}
.ws15c{word-spacing:49.996646px;}
.ws106{word-spacing:50.713958px;}
.ws2e{word-spacing:60.287340px;}
.ws165{word-spacing:67.499059px;}
.ws7{word-spacing:72.455608px;}
.ws10a{word-spacing:73.198399px;}
.wsee{word-spacing:74.098330px;}
.ws103{word-spacing:74.451883px;}
.ws9{word-spacing:77.231822px;}
.ws8{word-spacing:78.398203px;}
.ws125{word-spacing:360.204044px;}
.ws124{word-spacing:376.866300px;}
.wsd{word-spacing:395.423338px;}
.ws126{word-spacing:400.528940px;}
.ws10b{word-spacing:467.687424px;}
.ws127{word-spacing:471.917806px;}
.ws12c{word-spacing:490.933221px;}
.ws129{word-spacing:517.427914px;}
.ws12b{word-spacing:528.487380px;}
.ws12a{word-spacing:538.535806px;}
.ws104{word-spacing:715.160064px;}
.ws11e{word-spacing:771.612518px;}
._53{margin-left:-36.869837px;}
._20{margin-left:-7.411462px;}
._25{margin-left:-6.200431px;}
._7{margin-left:-5.133098px;}
._8{margin-left:-4.088678px;}
._6{margin-left:-2.685602px;}
._1{margin-left:-1.307931px;}
._0{width:1.073815px;}
._4{width:2.295398px;}
._9{width:3.697055px;}
._2e{width:4.807885px;}
._2f{width:9.843364px;}
._3b{width:15.939923px;}
._51{width:17.255671px;}
._23{width:18.793574px;}
._15{width:19.988284px;}
._5{width:21.878016px;}
._11{width:23.559382px;}
._19{width:25.616173px;}
._2d{width:26.998296px;}
._12{width:28.055034px;}
._1d{width:29.266330px;}
._c{width:30.493895px;}
._16{width:31.880201px;}
._f{width:33.395191px;}
._10{width:34.964642px;}
._17{width:36.129111px;}
._13{width:37.230646px;}
._a{width:38.519654px;}
._21{width:39.882547px;}
._14{width:41.053394px;}
._47{width:42.424687px;}
._1a{width:44.371717px;}
._1f{width:45.623196px;}
._29{width:46.656828px;}
._1c{width:48.635906px;}
._18{width:49.956463px;}
._24{width:51.003036px;}
._1e{width:52.610518px;}
._d{width:53.973410px;}
._4f{width:55.066148px;}
._22{width:56.333896px;}
._28{width:57.384960px;}
._2a{width:58.695044px;}
._56{width:60.135650px;}
._59{width:61.554005px;}
._1b{width:63.226735px;}
._b{width:64.462935px;}
._58{width:68.669906px;}
._48{width:69.722726px;}
._55{width:73.340334px;}
._54{width:74.425438px;}
._50{width:76.003524px;}
._57{width:78.659069px;}
._52{width:86.682838px;}
._2b{width:93.608561px;}
._4e{width:103.834321px;}
._39{width:158.263667px;}
._3a{width:163.372601px;}
._3c{width:207.736260px;}
._26{width:246.318647px;}
._27{width:250.421292px;}
._46{width:259.333222px;}
._37{width:278.745610px;}
._41{width:297.272570px;}
._42{width:326.813259px;}
._38{width:333.878464px;}
._44{width:357.237735px;}
._4d{width:386.043320px;}
._40{width:398.811911px;}
._33{width:410.225607px;}
._3e{width:424.337316px;}
._3d{width:469.483468px;}
._34{width:478.223242px;}
._43{width:487.166770px;}
._32{width:490.282077px;}
._45{width:494.084819px;}
._35{width:498.984888px;}
._3f{width:501.155628px;}
._36{width:522.859116px;}
._30{width:539.295466px;}
._e{width:545.587240px;}
._3{width:617.995143px;}
._4b{width:650.748604px;}
._4c{width:666.814913px;}
._4a{width:680.812913px;}
._31{width:697.801114px;}
._49{width:714.205917px;}
._2{width:717.171172px;}
._2c{width:973.348721px;}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:35.569733px;}
.fs12{font-size:35.865600px;}
.fs10{font-size:37.281278px;}
.fsd{font-size:40.442300px;}
.fsb{font-size:41.842800px;}
.fsa{font-size:47.820600px;}
.fs7{font-size:47.852731px;}
.fs5{font-size:48.809778px;}
.fs6{font-size:48.809782px;}
.fs1{font-size:48.809785px;}
.fs3{font-size:48.809791px;}
.fs2{font-size:48.809793px;}
.fsf{font-size:53.598236px;}
.fs0{font-size:54.102413px;}
.fs11{font-size:56.177275px;}
.fsc{font-size:59.775600px;}
.fs9{font-size:71.731200px;}
.fs4{font-size:75.272930px;}
.fs8{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1b{bottom:11.439260px;}
.y1c{bottom:15.849814px;}
.y13{bottom:37.314332px;}
.yef{bottom:38.483577px;}
.y16{bottom:41.136768px;}
.yca{bottom:42.685722px;}
.yee{bottom:43.973619px;}
.y18{bottom:47.054248px;}
.y15{bottom:47.201238px;}
.y1e{bottom:47.201265px;}
.y1a{bottom:47.201271px;}
.yec{bottom:90.575189px;}
.yc9{bottom:92.629511px;}
.y9{bottom:103.022515px;}
.ye9{bottom:113.173787px;}
.yeb{bottom:114.195219px;}
.yf{bottom:115.371946px;}
.y8{bottom:119.047445px;}
.yc7{bottom:123.326674px;}
.y10{bottom:124.045955px;}
.ye8{bottom:124.409243px;}
.yea{bottom:125.430675px;}
.y11{bottom:129.191551px;}
.ya{bottom:130.661797px;}
.y4d{bottom:134.794500px;}
.yed{bottom:138.198249px;}
.yc2{bottom:152.318465px;}
.y6{bottom:155.801708px;}
.y7{bottom:162.417506px;}
.ye2{bottom:171.904617px;}
.yc4{bottom:172.052388px;}
.ye7{bottom:172.287618px;}
.yc6{bottom:172.783278px;}
.y12{bottom:175.649101px;}
.yf2{bottom:177.777677px;}
.ye5{bottom:177.905352px;}
.y96{bottom:179.626500px;}
.y1b5{bottom:180.552000px;}
.yc1{bottom:181.066607px;}
.ya4{bottom:182.616000px;}
.y1d5{bottom:182.854500px;}
.ye1{bottom:183.140056px;}
.ye6{bottom:183.523080px;}
.yc3{bottom:184.111992px;}
.yb7{bottom:184.429500px;}
.ye4{bottom:184.927512px;}
.y182{bottom:185.305500px;}
.ydf{bottom:185.721000px;}
.y71{bottom:187.845000px;}
.yf1{bottom:189.013133px;}
.y10c{bottom:189.078000px;}
.y19c{bottom:189.085500px;}
.y1a9{bottom:191.145000px;}
.ye3{bottom:191.949672px;}
.yc0{bottom:193.126211px;}
.ye{bottom:196.084546px;}
.y13d{bottom:196.114500px;}
.yc8{bottom:197.998793px;}
.y95{bottom:201.295500px;}
.y1b4{bottom:202.219500px;}
.yf3{bottom:202.674429px;}
.ya3{bottom:204.283500px;}
.y1d4{bottom:204.523500px;}
.y219{bottom:205.030500px;}
.yb6{bottom:206.098500px;}
.y181{bottom:206.974500px;}
.yde{bottom:207.390000px;}
.y70{bottom:209.514000px;}
.y10b{bottom:210.747000px;}
.y19b{bottom:210.754500px;}
.y1a8{bottom:212.814000px;}
.y15f{bottom:215.229000px;}
.y3{bottom:218.725234px;}
.yf0{bottom:219.272258px;}
.y15e{bottom:219.663000px;}
.y94{bottom:222.964500px;}
.y1b3{bottom:223.888500px;}
.ya2{bottom:225.952500px;}
.y1d3{bottom:226.191000px;}
.y11b{bottom:226.431000px;}
.y218{bottom:226.699500px;}
.yb5{bottom:227.767500px;}
.y180{bottom:228.643500px;}
.ydd{bottom:229.057500px;}
.y6f{bottom:231.183000px;}
.yba{bottom:231.375880px;}
.ybf{bottom:231.741320px;}
.y10a{bottom:232.416000px;}
.y19a{bottom:232.423500px;}
.y1e6{bottom:232.491000px;}
.y2{bottom:233.573954px;}
.y1a7{bottom:234.483000px;}
.ybd{bottom:235.517561px;}
.y13c{bottom:235.716000px;}
.y11a{bottom:240.150000px;}
.yb9{bottom:241.121012px;}
.ybe{bottom:241.486457px;}
.ybc{bottom:242.460968px;}
.y93{bottom:244.632000px;}
.y1b2{bottom:245.557500px;}
.ya1{bottom:247.621500px;}
.y1d2{bottom:247.860000px;}
.y217{bottom:248.368500px;}
.ybb{bottom:249.160748px;}
.yb4{bottom:249.436500px;}
.y1ca{bottom:249.579000px;}
.y17f{bottom:250.312500px;}
.ydc{bottom:250.726500px;}
.y6e{bottom:252.852000px;}
.y109{bottom:254.083500px;}
.y199{bottom:254.092500px;}
.y1a6{bottom:256.152000px;}
.y13b{bottom:257.385000px;}
.y227{bottom:258.175500px;}
.y15d{bottom:258.502500px;}
.yc5{bottom:260.245841px;}
.y4c{bottom:262.299000px;}
.y92{bottom:266.301000px;}
.y1b1{bottom:267.226500px;}
.ya0{bottom:269.290500px;}
.y1d1{bottom:269.529000px;}
.yb{bottom:269.593247px;}
.y216{bottom:270.037500px;}
.y15b{bottom:270.802500px;}
.yb3{bottom:271.104000px;}
.y1c9{bottom:271.248000px;}
.y17e{bottom:271.980000px;}
.y6d{bottom:274.521000px;}
.y108{bottom:275.752500px;}
.y198{bottom:275.761500px;}
.y1e5{bottom:277.135500px;}
.y5{bottom:277.238158px;}
.y1a5{bottom:277.821000px;}
.y15c{bottom:278.271000px;}
.y226{bottom:279.844500px;}
.y4b{bottom:283.968000px;}
.ydb{bottom:285.844500px;}
.y91{bottom:287.970000px;}
.y9f{bottom:290.959500px;}
.y1d0{bottom:291.198000px;}
.y4{bottom:291.792886px;}
.y13a{bottom:292.552500px;}
.yb2{bottom:292.773000px;}
.y1c8{bottom:292.917000px;}
.y17d{bottom:293.649000px;}
.y6c{bottom:296.190000px;}
.y139{bottom:296.986500px;}
.y107{bottom:297.421500px;}
.y197{bottom:297.429000px;}
.yd{bottom:297.673582px;}
.y1e4{bottom:298.804500px;}
.y1a4{bottom:299.490000px;}
.yc{bottom:300.172878px;}
.y225{bottom:301.513500px;}
.y215{bottom:306.649500px;}
.y90{bottom:309.639000px;}
.y4a{bottom:312.361500px;}
.y9e{bottom:312.627000px;}
.y119{bottom:312.628500px;}
.yb1{bottom:314.442000px;}
.y1c7{bottom:314.586000px;}
.y17c{bottom:315.318000px;}
.y6b{bottom:317.857500px;}
.y106{bottom:319.090500px;}
.y196{bottom:319.098000px;}
.y15a{bottom:319.719000px;}
.y1b0{bottom:320.427000px;}
.y1e3{bottom:320.473500px;}
.y1a3{bottom:321.157500px;}
.y1cf{bottom:326.316000px;}
.y214{bottom:328.318500px;}
.y8f{bottom:331.308000px;}
.y49{bottom:334.030500px;}
.y9d{bottom:334.296000px;}
.yda{bottom:334.413000px;}
.yb0{bottom:336.111000px;}
.y1c6{bottom:336.255000px;}
.y138{bottom:336.588000px;}
.y224{bottom:336.724500px;}
.y17b{bottom:336.987000px;}
.y1af{bottom:338.359500px;}
.y6a{bottom:339.526500px;}
.y105{bottom:340.759500px;}
.y195{bottom:340.767000px;}
.y1e2{bottom:342.142500px;}
.y1a2{bottom:342.826500px;}
.y1fe{bottom:344.850000px;}
.y213{bottom:349.987500px;}
.y8e{bottom:352.977000px;}
.y137{bottom:353.592000px;}
.y48{bottom:355.699500px;}
.y9c{bottom:355.965000px;}
.yd9{bottom:356.082000px;}
.y159{bottom:356.335500px;}
.yaf{bottom:357.780000px;}
.y1c5{bottom:357.922500px;}
.y136{bottom:358.255500px;}
.y223{bottom:358.393500px;}
.y17a{bottom:358.656000px;}
.y69{bottom:361.195500px;}
.y104{bottom:362.428500px;}
.y194{bottom:362.436000px;}
.y1e1{bottom:363.811500px;}
.y157{bottom:364.203000px;}
.y1fd{bottom:366.519000px;}
.y156{bottom:368.637000px;}
.y1ae{bottom:370.116000px;}
.y212{bottom:371.656500px;}
.y8d{bottom:374.644500px;}
.y135{bottom:375.261000px;}
.y158{bottom:376.335000px;}
.y47{bottom:377.368500px;}
.y9b{bottom:377.634000px;}
.yd8{bottom:377.751000px;}
.yae{bottom:379.449000px;}
.y1ce{bottom:379.516500px;}
.y1c4{bottom:379.591500px;}
.y134{bottom:379.924500px;}
.y222{bottom:380.062500px;}
.y179{bottom:380.325000px;}
.y68{bottom:382.864500px;}
.y103{bottom:384.096000px;}
.y193{bottom:384.105000px;}
.y1e0{bottom:385.479000px;}
.y1fc{bottom:388.188000px;}
.y231{bottom:393.325500px;}
.y1a1{bottom:396.027000px;}
.y8c{bottom:396.313500px;}
.y1cd{bottom:397.449000px;}
.y46{bottom:399.037500px;}
.y9a{bottom:399.303000px;}
.yd7{bottom:399.418500px;}
.yad{bottom:401.116500px;}
.y1c3{bottom:401.260500px;}
.y133{bottom:401.593500px;}
.y221{bottom:401.731500px;}
.y178{bottom:401.992500px;}
.y67{bottom:404.533500px;}
.y102{bottom:405.765000px;}
.y192{bottom:405.774000px;}
.y1df{bottom:407.148000px;}
.y211{bottom:408.268500px;}
.y1fb{bottom:409.857000px;}
.y1a0{bottom:413.959500px;}
.y155{bottom:414.066000px;}
.y8b{bottom:417.982500px;}
.y154{bottom:418.729500px;}
.y45{bottom:420.705000px;}
.y99{bottom:420.972000px;}
.yd6{bottom:421.087500px;}
.y1c2{bottom:422.929500px;}
.y132{bottom:423.262500px;}
.y177{bottom:423.661500px;}
.y66{bottom:426.202500px;}
.y101{bottom:427.434000px;}
.y191{bottom:427.441500px;}
.y1de{bottom:428.817000px;}
.y1cc{bottom:429.205500px;}
.y210{bottom:429.937500px;}
.yac{bottom:436.236000px;}
.y220{bottom:436.942500px;}
.y8a{bottom:439.651500px;}
.y44{bottom:442.374000px;}
.y98{bottom:442.639500px;}
.yd5{bottom:442.756500px;}
.y1c1{bottom:444.598500px;}
.y131{bottom:444.931500px;}
.y1fa{bottom:445.068000px;}
.y19f{bottom:445.716000px;}
.y65{bottom:447.870000px;}
.y100{bottom:449.103000px;}
.y190{bottom:449.110500px;}
.y1dd{bottom:450.486000px;}
.y20f{bottom:451.606500px;}
.y153{bottom:453.898500px;}
.y152{bottom:458.331000px;}
.y21f{bottom:458.611500px;}
.y176{bottom:458.779500px;}
.y89{bottom:461.320500px;}
.y43{bottom:464.043000px;}
.y118{bottom:464.308500px;}
.yd4{bottom:464.425500px;}
.y1c0{bottom:466.267500px;}
.y130{bottom:466.600500px;}
.y1f9{bottom:466.737000px;}
.y64{bottom:469.539000px;}
.yff{bottom:470.772000px;}
.y18f{bottom:470.779500px;}
.y1dc{bottom:472.155000px;}
.y20e{bottom:473.275500px;}
.y97{bottom:477.759000px;}
.y21e{bottom:480.280500px;}
.y88{bottom:482.989500px;}
.yab{bottom:484.803000px;}
.y42{bottom:485.712000px;}
.y117{bottom:485.977500px;}
.yd3{bottom:486.094500px;}
.y1bf{bottom:487.935000px;}
.y12f{bottom:488.268000px;}
.y1f8{bottom:488.406000px;}
.y63{bottom:491.208000px;}
.yfe{bottom:492.439500px;}
.y18e{bottom:492.448500px;}
.y1db{bottom:493.822500px;}
.y230{bottom:494.944500px;}
.y151{bottom:497.932500px;}
.y87{bottom:504.657000px;}
.yaa{bottom:506.472000px;}
.y41{bottom:507.381000px;}
.y116{bottom:507.646500px;}
.yd2{bottom:507.763500px;}
.y1be{bottom:509.604000px;}
.y20d{bottom:509.887500px;}
.y12e{bottom:509.937000px;}
.y23{bottom:512.449500px;}
.y62{bottom:512.877000px;}
.y175{bottom:513.699000px;}
.yfd{bottom:514.108500px;}
.y18d{bottom:514.117500px;}
.y1da{bottom:515.491500px;}
.y22f{bottom:516.613500px;}
.y150{bottom:519.601500px;}
.y1ad{bottom:523.059000px;}
.y1f7{bottom:523.618500px;}
.y86{bottom:526.326000px;}
.ya9{bottom:528.141000px;}
.y40{bottom:529.050000px;}
.y115{bottom:529.315500px;}
.yd1{bottom:529.431000px;}
.y1bd{bottom:531.273000px;}
.y20c{bottom:531.556500px;}
.y12d{bottom:531.606000px;}
.y22{bottom:534.118500px;}
.y61{bottom:534.546000px;}
.y174{bottom:535.368000px;}
.yfc{bottom:535.777500px;}
.y18c{bottom:535.786500px;}
.y1d9{bottom:537.160500px;}
.y14f{bottom:541.270500px;}
.y1f6{bottom:545.286000px;}
.y85{bottom:547.995000px;}
.ya8{bottom:549.810000px;}
.y3f{bottom:550.717500px;}
.y114{bottom:550.984500px;}
.yd0{bottom:551.100000px;}
.y1bc{bottom:552.942000px;}
.y20b{bottom:553.225500px;}
.y12c{bottom:553.275000px;}
.y60{bottom:556.215000px;}
.y173{bottom:557.037000px;}
.yfb{bottom:557.446500px;}
.y18b{bottom:557.454000px;}
.y1d8{bottom:558.829500px;}
.y14e{bottom:562.939500px;}
.y21{bottom:564.753000px;}
.y1f5{bottom:566.955000px;}
.y84{bottom:569.664000px;}
.ya7{bottom:571.479000px;}
.y3e{bottom:572.386500px;}
.y113{bottom:572.652000px;}
.ycf{bottom:572.769000px;}
.y1bb{bottom:574.611000px;}
.y20a{bottom:574.894500px;}
.y12b{bottom:574.944000px;}
.y5f{bottom:577.882500px;}
.y172{bottom:578.706000px;}
.yfa{bottom:579.115500px;}
.y18a{bottom:579.123000px;}
.y1d7{bottom:580.498500px;}
.y14d{bottom:584.608500px;}
.y20{bottom:586.422000px;}
.y83{bottom:591.333000px;}
.ya6{bottom:593.146500px;}
.y3d{bottom:594.055500px;}
.y112{bottom:594.321000px;}
.yce{bottom:594.438000px;}
.y1ba{bottom:596.280000px;}
.y22e{bottom:596.563500px;}
.y12a{bottom:596.613000px;}
.y5e{bottom:599.551500px;}
.y171{bottom:600.373500px;}
.yf9{bottom:600.784500px;}
.y189{bottom:600.792000px;}
.y1f4{bottom:602.167500px;}
.y14c{bottom:606.276000px;}
.y209{bottom:611.506500px;}
.y1d6{bottom:611.694000px;}
.y183{bottom:613.000500px;}
.y82{bottom:613.002000px;}
.y21d{bottom:615.709500px;}
.y3c{bottom:615.724500px;}
.y111{bottom:615.990000px;}
.ycd{bottom:616.107000px;}
.y22d{bottom:618.232500px;}
.y129{bottom:618.280500px;}
.y5d{bottom:621.220500px;}
.y170{bottom:622.042500px;}
.yf8{bottom:622.452000px;}
.y188{bottom:622.461000px;}
.y1f3{bottom:623.835000px;}
.y30{bottom:625.704000px;}
.y1f{bottom:626.023500px;}
.y14b{bottom:627.945000px;}
.y208{bottom:633.175500px;}
.y81{bottom:634.669500px;}
.y21c{bottom:637.378500px;}
.y3b{bottom:637.393500px;}
.y110{bottom:637.659000px;}
.ycc{bottom:637.776000px;}
.y128{bottom:639.949500px;}
.y5c{bottom:642.889500px;}
.y16f{bottom:643.711500px;}
.yf7{bottom:644.121000px;}
.y187{bottom:644.130000px;}
.ya5{bottom:646.347000px;}
.y2f{bottom:647.373000px;}
.y1b9{bottom:649.480500px;}
.y14a{bottom:649.614000px;}
.y207{bottom:654.844500px;}
.y80{bottom:656.338500px;}
.y1f2{bottom:659.047500px;}
.y10f{bottom:659.328000px;}
.y5b{bottom:664.558500px;}
.y16e{bottom:665.380500px;}
.yf6{bottom:665.790000px;}
.y186{bottom:665.797500px;}
.y1b8{bottom:667.413000px;}
.y3a{bottom:668.028000px;}
.y149{bottom:671.283000px;}
.y1{bottom:673.845000px;}
.y206{bottom:676.513500px;}
.y7f{bottom:678.007500px;}
.y127{bottom:679.551000px;}
.y1f1{bottom:680.716500px;}
.y10e{bottom:680.997000px;}
.y17{bottom:681.159115px;}
.y2e{bottom:683.985000px;}
.y14{bottom:685.569642px;}
.y5a{bottom:686.226000px;}
.y16d{bottom:687.049500px;}
.yf5{bottom:687.459000px;}
.ycb{bottom:690.976500px;}
.y148{bottom:692.952000px;}
.y1ac{bottom:693.562500px;}
.y22c{bottom:698.182500px;}
.y1d{bottom:698.801210px;}
.y1b7{bottom:699.168000px;}
.y7e{bottom:699.676500px;}
.y1cb{bottom:701.065500px;}
.y1f0{bottom:702.385500px;}
.y19{bottom:704.534891px;}
.y2d{bottom:705.654000px;}
.y59{bottom:707.895000px;}
.y16c{bottom:708.717000px;}
.y1ab{bottom:711.495000px;}
.y205{bottom:713.125500px;}
.y147{bottom:714.621000px;}
.y21b{bottom:715.927500px;}
.y10d{bottom:716.115000px;}
.y19e{bottom:716.457000px;}
.yb8{bottom:718.473000px;}
.y185{bottom:718.999500px;}
.y126{bottom:719.152500px;}
.y22b{bottom:719.850000px;}
.y7d{bottom:721.345500px;}
.y58{bottom:729.564000px;}
.y16b{bottom:730.386000px;}
.y204{bottom:734.794500px;}
.y146{bottom:736.288500px;}
.y1ef{bottom:737.596500px;}
.yf4{bottom:740.659500px;}
.y125{bottom:740.821500px;}
.y2c{bottom:742.266000px;}
.y7c{bottom:743.013000px;}
.y1aa{bottom:743.250000px;}
.y19d{bottom:748.213500px;}
.y184{bottom:750.754500px;}
.y57{bottom:751.233000px;}
.y16a{bottom:752.055000px;}
.y203{bottom:756.463500px;}
.y145{bottom:757.957500px;}
.y1ee{bottom:759.265500px;}
.y39{bottom:761.139000px;}
.y124{bottom:762.490500px;}
.y2b{bottom:763.935000px;}
.y7b{bottom:764.682000px;}
.ye0{bottom:768.156000px;}
.y56{bottom:772.902000px;}
.y169{bottom:773.724000px;}
.y202{bottom:778.132500px;}
.y38{bottom:779.071500px;}
.y144{bottom:779.626500px;}
.y1ed{bottom:780.934500px;}
.y123{bottom:784.159500px;}
.y7a{bottom:786.351000px;}
.y37{bottom:791.581500px;}
.y55{bottom:794.571000px;}
.y168{bottom:795.393000px;}
.y143{bottom:796.861500px;}
.y22a{bottom:799.801500px;}
.y2a{bottom:800.548500px;}
.y142{bottom:801.295500px;}
.y1ec{bottom:802.603500px;}
.y122{bottom:805.828500px;}
.y79{bottom:808.020000px;}
.y201{bottom:814.744500px;}
.y36{bottom:814.938000px;}
.y21a{bottom:816.145500px;}
.y54{bottom:816.238500px;}
.y167{bottom:817.060500px;}
.y29{bottom:822.216000px;}
.y35{bottom:827.446500px;}
.y121{bottom:827.496000px;}
.y78{bottom:829.689000px;}
.y200{bottom:836.413500px;}
.y141{bottom:836.463000px;}
.y1eb{bottom:837.814500px;}
.y53{bottom:837.907500px;}
.y166{bottom:838.729500px;}
.y140{bottom:840.897000px;}
.y120{bottom:849.165000px;}
.y34{bottom:850.803000px;}
.y77{bottom:851.358000px;}
.y1b6{bottom:852.112500px;}
.y1ff{bottom:858.082500px;}
.y1ea{bottom:859.483500px;}
.y52{bottom:859.576500px;}
.y165{bottom:860.398500px;}
.y28{bottom:867.796500px;}
.y11f{bottom:870.834000px;}
.y76{bottom:873.025500px;}
.y33{bottom:878.256000px;}
.y229{bottom:879.751500px;}
.y13f{bottom:880.498500px;}
.y1e9{bottom:881.152500px;}
.y51{bottom:881.245500px;}
.y164{bottom:882.067500px;}
.y27{bottom:889.464000px;}
.y75{bottom:894.694500px;}
.y32{bottom:899.925000px;}
.y228{bottom:901.419000px;}
.y13e{bottom:902.167500px;}
.y1e8{bottom:902.820000px;}
.y50{bottom:902.914500px;}
.y163{bottom:903.736500px;}
.y11d{bottom:904.507500px;}
.y74{bottom:916.363500px;}
.y26{bottom:920.100000px;}
.y1e7{bottom:924.489000px;}
.y4f{bottom:924.583500px;}
.y162{bottom:925.405500px;}
.y11e{bottom:925.662000px;}
.y73{bottom:938.032500px;}
.y25{bottom:941.769000px;}
.y11c{bottom:942.697500px;}
.y4e{bottom:946.251000px;}
.y31{bottom:948.493500px;}
.y161{bottom:950.659500px;}
.y72{bottom:959.701500px;}
.y24{bottom:981.370500px;}
.y160{bottom:986.749500px;}
.h22{height:2.869248px;}
.h19{height:24.124199px;}
.h1c{height:26.759511px;}
.h15{height:29.006906px;}
.h18{height:29.028409px;}
.hc{height:31.894032px;}
.h21{height:33.187496px;}
.h9{height:33.199229px;}
.ha{height:33.199231px;}
.h3{height:33.199234px;}
.h6{height:33.199237px;}
.h5{height:33.199239px;}
.h4{height:33.787352px;}
.h7{height:34.963455px;}
.h23{height:35.865450px;}
.h1a{height:36.351538px;}
.h2{height:36.799151px;}
.h1d{height:37.689246px;}
.h16{height:44.831700px;}
.h1e{height:49.741168px;}
.h12{height:50.211840px;}
.h8{height:51.051807px;}
.h13{height:53.798400px;}
.h28{height:61.893450px;}
.h14{height:61.899450px;}
.h2a{height:62.803496px;}
.h25{height:65.481450px;}
.hf{height:66.268128px;}
.h10{height:70.678655px;}
.h2b{height:71.528400px;}
.h27{height:71.534400px;}
.h24{height:72.452400px;}
.h11{height:73.027727px;}
.h29{height:79.629450px;}
.h26{height:83.217450px;}
.hb{height:92.290216px;}
.he{height:95.965655px;}
.hd{height:102.030126px;}
.h20{height:108.674400px;}
.h2e{height:110.421450px;}
.h2c{height:125.479496px;}
.h1f{height:125.527248px;}
.h2d{height:153.211248px;}
.h1b{height:231.146100px;}
.h17{height:280.832445px;}
.h1{height:325.459890px;}
.h0{height:1188.000000px;}
.w2{width:11.173328px;}
.w3{width:11.320344px;}
.w1{width:565.343370px;}
.w5{width:571.135680px;}
.w4{width:571.156245px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x14{left:2.509612px;}
.x45{left:6.538879px;}
.x58{left:12.807841px;}
.x4{left:18.340480px;}
.x3{left:19.756851px;}
.x4d{left:22.997826px;}
.x38{left:25.401618px;}
.x4e{left:51.317612px;}
.x39{left:55.835352px;}
.x42{left:65.318333px;}
.x55{left:70.112757px;}
.xe{left:75.953242px;}
.x43{left:97.943470px;}
.x56{left:100.463117px;}
.x5{left:109.912589px;}
.x2{left:112.361287px;}
.xf{left:117.720844px;}
.x3a{left:122.687209px;}
.x3b{left:129.065958px;}
.x5c{left:135.562331px;}
.x5b{left:148.885650px;}
.x5f{left:151.047656px;}
.x12{left:160.044732px;}
.x5d{left:163.252990px;}
.x2b{left:166.281000px;}
.x81{left:169.560000px;}
.x33{left:173.004000px;}
.x1{left:175.023000px;}
.x10{left:184.780794px;}
.x57{left:189.140183px;}
.x2c{left:192.622500px;}
.x31{left:199.192500px;}
.x2f{left:201.967500px;}
.x49{left:204.009529px;}
.x2d{left:210.178500px;}
.x79{left:213.658500px;}
.xa{left:215.050217px;}
.x7c{left:221.685000px;}
.x6d{left:225.160500px;}
.x2e{left:226.924500px;}
.x15{left:229.860512px;}
.x47{left:232.307446px;}
.x46{left:234.426251px;}
.x5e{left:236.657150px;}
.x44{left:239.091866px;}
.x11{left:241.355396px;}
.x7b{left:244.422000px;}
.x7e{left:246.399000px;}
.x7d{left:247.659000px;}
.x80{left:249.270000px;}
.x13{left:251.913135px;}
.x7a{left:253.876500px;}
.x7f{left:255.636000px;}
.x36{left:268.300500px;}
.x6{left:270.294573px;}
.x83{left:273.363000px;}
.x7{left:278.391832px;}
.x4a{left:284.300474px;}
.x48{left:288.078313px;}
.x4c{left:289.942500px;}
.xc{left:294.073630px;}
.x59{left:298.658492px;}
.x6e{left:300.225000px;}
.x82{left:308.464500px;}
.x6b{left:310.521000px;}
.x61{left:314.232000px;}
.x18{left:323.951694px;}
.xd{left:326.413764px;}
.x32{left:332.820000px;}
.x17{left:334.977978px;}
.x35{left:338.001000px;}
.x16{left:346.004330px;}
.x8{left:347.574023px;}
.x30{left:350.787000px;}
.x69{left:354.274500px;}
.x4b{left:357.728388px;}
.x34{left:362.052000px;}
.x51{left:365.431158px;}
.x3d{left:370.081610px;}
.x60{left:372.757500px;}
.x4f{left:374.794038px;}
.x62{left:378.853500px;}
.x50{left:381.816198px;}
.x3c{left:383.585854px;}
.x66{left:384.811500px;}
.x6f{left:386.499000px;}
.x64{left:388.450500px;}
.x1b{left:391.138677px;}
.x70{left:399.864000px;}
.x1a{left:402.164961px;}
.xb{left:403.573498px;}
.x72{left:407.188500px;}
.x19{left:413.191246px;}
.x65{left:416.650500px;}
.x78{left:418.624500px;}
.x73{left:419.740500px;}
.x5a{left:422.209769px;}
.x77{left:424.347000px;}
.x67{left:432.750000px;}
.x68{left:434.614500px;}
.x76{left:436.899000px;}
.x1e{left:447.005315px;}
.x63{left:448.909500px;}
.x37{left:453.298500px;}
.x6a{left:456.616500px;}
.x1d{left:458.178630px;}
.x9{left:464.973094px;}
.x1c{left:469.204914px;}
.x75{left:471.666000px;}
.x74{left:484.366500px;}
.x40{left:490.422500px;}
.x52{left:492.949488px;}
.x3e{left:496.316911px;}
.x53{left:499.971648px;}
.x3f{left:503.016747px;}
.x54{left:514.930253px;}
.x41{left:516.487436px;}
.x71{left:532.002000px;}
.x21{left:537.274008px;}
.x6c{left:545.512500px;}
.x20{left:548.447322px;}
.x1f{left:559.473674px;}
.x24{left:571.823091px;}
.x23{left:582.996406px;}
.x22{left:594.022758px;}
.x27{left:630.630122px;}
.x26{left:641.656407px;}
.x25{left:652.682691px;}
.x2a{left:666.061317px;}
.x29{left:677.087601px;}
.x28{left:688.113886px;}
@media print{
.v14{vertical-align:-46.773333pt;}
.v4{vertical-align:-19.280000pt;}
.v6{vertical-align:-9.568000pt;}
.vb{vertical-align:-7.146667pt;}
.v2{vertical-align:-1.045545pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.045449pt;}
.vf{vertical-align:6.202667pt;}
.v10{vertical-align:9.562667pt;}
.vc{vertical-align:16.581333pt;}
.v5{vertical-align:20.428140pt;}
.v3{vertical-align:23.141333pt;}
.vd{vertical-align:26.325333pt;}
.v9{vertical-align:34.112000pt;}
.v11{vertical-align:35.888000pt;}
.v12{vertical-align:38.901333pt;}
.ve{vertical-align:42.090667pt;}
.v8{vertical-align:43.674667pt;}
.va{vertical-align:48.778667pt;}
.v17{vertical-align:66.272000pt;}
.v15{vertical-align:82.037333pt;}
.v13{vertical-align:89.904000pt;}
.v7{vertical-align:109.029333pt;}
.v16{vertical-align:133.637333pt;}
.ls9{letter-spacing:-0.990257pt;}
.ls6{letter-spacing:-0.954502pt;}
.ls1b{letter-spacing:-0.790872pt;}
.ls2b{letter-spacing:-0.632953pt;}
.ls20{letter-spacing:-0.619357pt;}
.lsd{letter-spacing:-0.442542pt;}
.ls29{letter-spacing:-0.371156pt;}
.ls8{letter-spacing:-0.303705pt;}
.ls3{letter-spacing:-0.273335pt;}
.ls7{letter-spacing:-0.264658pt;}
.ls1c{letter-spacing:-0.251641pt;}
.ls15{letter-spacing:-0.226477pt;}
.ls0{letter-spacing:-0.221219pt;}
.ls1e{letter-spacing:-0.219287pt;}
.ls2d{letter-spacing:-0.218717pt;}
.lse{letter-spacing:-0.216932pt;}
.ls4{letter-spacing:-0.208255pt;}
.lsb{letter-spacing:-0.199578pt;}
.ls5{letter-spacing:-0.177885pt;}
.ls14{letter-spacing:-0.172554pt;}
.lsc{letter-spacing:-0.169207pt;}
.ls2{letter-spacing:-0.147514pt;}
.ls21{letter-spacing:-0.125820pt;}
.ls16{letter-spacing:-0.122226pt;}
.ls30{letter-spacing:-0.112672pt;}
.ls17{letter-spacing:-0.097062pt;}
.ls19{letter-spacing:-0.057518pt;}
.ls1d{letter-spacing:-0.053923pt;}
.ls27{letter-spacing:-0.046394pt;}
.ls1f{letter-spacing:-0.025164pt;}
.ls1{letter-spacing:-0.014427pt;}
.ls26{letter-spacing:-0.003314pt;}
.ls18{letter-spacing:-0.003162pt;}
.lsa{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000268pt;}
.ls95{letter-spacing:0.000391pt;}
.ls6a{letter-spacing:0.000679pt;}
.ls41{letter-spacing:0.000990pt;}
.lsa6{letter-spacing:0.001309pt;}
.ls55{letter-spacing:0.001608pt;}
.ls33{letter-spacing:0.001958pt;}
.ls61{letter-spacing:0.001980pt;}
.ls71{letter-spacing:0.002133pt;}
.ls23{letter-spacing:0.002612pt;}
.ls70{letter-spacing:0.002963pt;}
.ls7b{letter-spacing:0.003420pt;}
.ls3b{letter-spacing:0.004224pt;}
.ls96{letter-spacing:0.004236pt;}
.ls58{letter-spacing:0.004345pt;}
.ls9d{letter-spacing:0.004966pt;}
.ls46{letter-spacing:0.005137pt;}
.ls5f{letter-spacing:0.005601pt;}
.ls1a{letter-spacing:0.017974pt;}
.ls22{letter-spacing:0.053022pt;}
.ls28{letter-spacing:0.132556pt;}
.ls2e{letter-spacing:0.139183pt;}
.ls2c{letter-spacing:0.155753pt;}
.ls2a{letter-spacing:0.165695pt;}
.ls25{letter-spacing:0.169008pt;}
.ls2f{letter-spacing:0.178950pt;}
.ls24{letter-spacing:0.212089pt;}
.ls8d{letter-spacing:0.521544pt;}
.ls86{letter-spacing:0.526877pt;}
.ls59{letter-spacing:1.135684pt;}
.ls6e{letter-spacing:1.714963pt;}
.ls6c{letter-spacing:1.720296pt;}
.ls43{letter-spacing:2.134489pt;}
.ls13{letter-spacing:2.652820pt;}
.lsa1{letter-spacing:2.653258pt;}
.ls74{letter-spacing:2.654275pt;}
.ls40{letter-spacing:2.654641pt;}
.ls12{letter-spacing:2.654751pt;}
.ls10{letter-spacing:2.657333pt;}
.ls11{letter-spacing:2.658154pt;}
.ls6d{letter-spacing:2.659608pt;}
.ls37{letter-spacing:2.659975pt;}
.ls60{letter-spacing:3.786350pt;}
.ls7f{letter-spacing:6.332991pt;}
.ls8c{letter-spacing:6.376170pt;}
.ls51{letter-spacing:9.817842pt;}
.ls80{letter-spacing:10.624990pt;}
.ls63{letter-spacing:10.648098pt;}
.ls77{letter-spacing:14.164509pt;}
.ls7a{letter-spacing:14.164905pt;}
.ls78{letter-spacing:14.166642pt;}
.ls99{letter-spacing:14.169248pt;}
.ls8a{letter-spacing:14.169842pt;}
.ls7d{letter-spacing:14.170238pt;}
.ls91{letter-spacing:14.173503pt;}
.ls3a{letter-spacing:14.791830pt;}
.ls3f{letter-spacing:14.794238pt;}
.lsa0{letter-spacing:14.833309pt;}
.ls9f{letter-spacing:14.835915pt;}
.ls89{letter-spacing:16.824941pt;}
.ls7c{letter-spacing:17.449308pt;}
.ls56{letter-spacing:17.706238pt;}
.ls5a{letter-spacing:17.707976pt;}
.ls4e{letter-spacing:17.709164pt;}
.ls88{letter-spacing:17.711572pt;}
.ls68{letter-spacing:17.713309pt;}
.ls48{letter-spacing:18.279830pt;}
.ls4b{letter-spacing:18.287804pt;}
.lsa2{letter-spacing:18.747976pt;}
.ls85{letter-spacing:19.240941pt;}
.ls3e{letter-spacing:19.274238pt;}
.ls39{letter-spacing:19.279572pt;}
.ls50{letter-spacing:19.846489pt;}
.ls52{letter-spacing:20.366275pt;}
.ls4a{letter-spacing:20.422489pt;}
.ls79{letter-spacing:20.499608pt;}
.ls5e{letter-spacing:20.803608pt;}
.ls67{letter-spacing:20.807313pt;}
.ls5c{letter-spacing:20.809018pt;}
.ls84{letter-spacing:21.158654pt;}
.ls76{letter-spacing:21.326275pt;}
.ls4c{letter-spacing:21.342275pt;}
.ls62{letter-spacing:21.452646pt;}
.lsa5{letter-spacing:21.487614pt;}
.ls4d{letter-spacing:21.503684pt;}
.ls90{letter-spacing:21.508260pt;}
.ls4f{letter-spacing:21.896143pt;}
.ls42{letter-spacing:21.971608pt;}
.ls47{letter-spacing:22.074350pt;}
.ls6f{letter-spacing:22.862275pt;}
.ls64{letter-spacing:23.009980pt;}
.ls45{letter-spacing:23.103684pt;}
.ls66{letter-spacing:23.464941pt;}
.ls82{letter-spacing:23.470275pt;}
.ls49{letter-spacing:23.803812pt;}
.lsa3{letter-spacing:23.953012pt;}
.ls3c{letter-spacing:24.387975pt;}
.ls8f{letter-spacing:24.606927pt;}
.lsa7{letter-spacing:25.039572pt;}
.ls53{letter-spacing:25.385557pt;}
.ls7e{letter-spacing:25.401308pt;}
.ls34{letter-spacing:25.917164pt;}
.ls32{letter-spacing:25.919804pt;}
.ls38{letter-spacing:25.940224pt;}
.ls3d{letter-spacing:25.940948pt;}
.ls73{letter-spacing:25.983684pt;}
.lsa4{letter-spacing:26.241321pt;}
.ls6b{letter-spacing:26.762350pt;}
.ls75{letter-spacing:26.775031pt;}
.lsa9{letter-spacing:27.699975pt;}
.ls83{letter-spacing:27.814345pt;}
.ls31{letter-spacing:28.073557pt;}
.ls35{letter-spacing:28.286641pt;}
.ls54{letter-spacing:28.394350pt;}
.ls36{letter-spacing:29.503725pt;}
.ls65{letter-spacing:30.094379pt;}
.ls81{letter-spacing:30.281308pt;}
.lsf{letter-spacing:31.210291pt;}
.ls87{letter-spacing:31.432941pt;}
.lsa8{letter-spacing:31.775614pt;}
.ls57{letter-spacing:44.275608pt;}
.ls8b{letter-spacing:64.721321pt;}
.ls5b{letter-spacing:73.056990pt;}
.ls94{letter-spacing:103.370281pt;}
.ls9c{letter-spacing:316.108365pt;}
.ls9e{letter-spacing:345.799925pt;}
.ls9a{letter-spacing:389.083679pt;}
.ls97{letter-spacing:412.443520pt;}
.ls93{letter-spacing:444.863614pt;}
.ls92{letter-spacing:448.477044pt;}
.ls98{letter-spacing:491.097593pt;}
.ls9b{letter-spacing:517.115988pt;}
.ls72{letter-spacing:593.233698pt;}
.ls69{letter-spacing:706.153046pt;}
.ls5d{letter-spacing:707.702323pt;}
.ls8e{letter-spacing:776.792170pt;}
.ws12d{word-spacing:-63.761067pt;}
.wsf4{word-spacing:-51.238393pt;}
.wseb{word-spacing:-50.479636pt;}
.ws100{word-spacing:-46.069868pt;}
.wsd4{word-spacing:-40.590295pt;}
.wsd8{word-spacing:-29.942197pt;}
.ws11c{word-spacing:-21.749806pt;}
.ws18{word-spacing:-17.343010pt;}
.wsc{word-spacing:-9.805343pt;}
.ws2{word-spacing:-9.657829pt;}
.wsa{word-spacing:-9.627459pt;}
.ws3{word-spacing:-9.597088pt;}
.wsf{word-spacing:-9.588411pt;}
.ws5{word-spacing:-9.532009pt;}
.wsb2{word-spacing:-8.142383pt;}
.wsb6{word-spacing:-8.099245pt;}
.wsb1{word-spacing:-8.066891pt;}
.wsb8{word-spacing:-7.998588pt;}
.wsaf{word-spacing:-7.897932pt;}
.wsb4{word-spacing:-7.872768pt;}
.wsc8{word-spacing:-7.668345pt;}
.wsc6{word-spacing:-7.658403pt;}
.wsc5{word-spacing:-7.655089pt;}
.wsc7{word-spacing:-7.628578pt;}
.wsc4{word-spacing:-7.542417pt;}
.wsc1{word-spacing:-7.486081pt;}
.wsc2{word-spacing:-7.443000pt;}
.wsb3{word-spacing:-7.333537pt;}
.wsc3{word-spacing:-7.118239pt;}
.ws16a{word-spacing:-3.477545pt;}
.ws92{word-spacing:-3.443098pt;}
.ws33{word-spacing:-3.379337pt;}
.ws98{word-spacing:-3.315575pt;}
.ws161{word-spacing:-3.251814pt;}
.ws105{word-spacing:-3.176643pt;}
.ws128{word-spacing:-3.174190pt;}
.ws14e{word-spacing:-2.741726pt;}
.ws13b{word-spacing:-2.550443pt;}
.ws25{word-spacing:-2.486682pt;}
.ws95{word-spacing:-2.295398pt;}
.ws7f{word-spacing:-2.167876pt;}
.ws155{word-spacing:-2.104115pt;}
.ws130{word-spacing:-2.040354pt;}
.ws1b{word-spacing:-1.976593pt;}
.ws3e{word-spacing:-1.849071pt;}
.ws178{word-spacing:-1.721549pt;}
.ws16d{word-spacing:-1.594027pt;}
.ws93{word-spacing:-1.530266pt;}
.ws97{word-spacing:-1.466505pt;}
.wsad{word-spacing:-1.402743pt;}
.ws132{word-spacing:-1.338982pt;}
.ws15f{word-spacing:-1.275221pt;}
.wsa2{word-spacing:-1.147699pt;}
.ws5f{word-spacing:-1.020177pt;}
.wsac{word-spacing:-0.956416pt;}
.ws17a{word-spacing:-0.892655pt;}
.ws13e{word-spacing:-0.828894pt;}
.ws11d{word-spacing:-0.790670pt;}
.ws9e{word-spacing:-0.765133pt;}
.ws7a{word-spacing:-0.701372pt;}
.ws14f{word-spacing:-0.573850pt;}
.ws9f{word-spacing:-0.510089pt;}
.ws73{word-spacing:-0.446327pt;}
.ws28{word-spacing:-0.382566pt;}
.ws7e{word-spacing:-0.318805pt;}
.ws16{word-spacing:-0.091815pt;}
.ws4d{word-spacing:-0.065408pt;}
.ws4f{word-spacing:-0.063761pt;}
.ws1d{word-spacing:-0.042507pt;}
.wsb0{word-spacing:-0.028456pt;}
.ws15{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.127522pt;}
.wsb5{word-spacing:0.154762pt;}
.ws68{word-spacing:0.255044pt;}
.ws6{word-spacing:0.287564pt;}
.ws4{word-spacing:0.316374pt;}
.ws2a{word-spacing:0.318805pt;}
.ws140{word-spacing:0.382564pt;}
.ws71{word-spacing:0.382566pt;}
.ws0{word-spacing:0.393915pt;}
.ws75{word-spacing:0.446327pt;}
.ws7d{word-spacing:0.510089pt;}
.wsb7{word-spacing:0.571715pt;}
.ws1{word-spacing:0.602243pt;}
.ws66{word-spacing:0.637611pt;}
.ws13d{word-spacing:0.701372pt;}
.wsf0{word-spacing:0.765133pt;}
.wse{word-spacing:0.805596pt;}
.ws62{word-spacing:0.828894pt;}
.ws32{word-spacing:0.892655pt;}
.wsb{word-spacing:0.923348pt;}
.ws5b{word-spacing:0.956416pt;}
.ws13{word-spacing:1.020177pt;}
.ws78{word-spacing:1.083938pt;}
.ws83{word-spacing:1.147699pt;}
.ws85{word-spacing:1.211460pt;}
.wsfd{word-spacing:1.225832pt;}
.ws147{word-spacing:1.232706pt;}
.ws43{word-spacing:1.275221pt;}
.wse5{word-spacing:1.330586pt;}
.ws84{word-spacing:1.338982pt;}
.wse4{word-spacing:1.341411pt;}
.wsab{word-spacing:1.402743pt;}
.ws148{word-spacing:1.445241pt;}
.ws26{word-spacing:1.530266pt;}
.ws87{word-spacing:1.594027pt;}
.wsa4{word-spacing:1.657788pt;}
.wsce{word-spacing:1.721549pt;}
.wscf{word-spacing:1.785310pt;}
.ws94{word-spacing:1.849071pt;}
.ws5d{word-spacing:1.912832pt;}
.wsde{word-spacing:1.961295pt;}
.wsdf{word-spacing:1.962929pt;}
.ws64{word-spacing:1.976593pt;}
.wsf1{word-spacing:2.040354pt;}
.ws65{word-spacing:2.104115pt;}
.ws164{word-spacing:2.167876pt;}
.ws11a{word-spacing:2.231637pt;}
.ws48{word-spacing:2.295398pt;}
.ws17c{word-spacing:2.359159pt;}
.ws86{word-spacing:2.422921pt;}
.ws154{word-spacing:2.507919pt;}
.ws113{word-spacing:2.550443pt;}
.ws14c{word-spacing:2.561052pt;}
.wsbc{word-spacing:2.614204pt;}
.ws39{word-spacing:2.677965pt;}
.wsba{word-spacing:2.741726pt;}
.ws9c{word-spacing:2.805487pt;}
.wsca{word-spacing:2.869248pt;}
.ws96{word-spacing:2.932989pt;}
.ws5a{word-spacing:2.933009pt;}
.ws91{word-spacing:2.996770pt;}
.ws16e{word-spacing:3.060531pt;}
.ws57{word-spacing:3.124292pt;}
.wscc{word-spacing:3.188053pt;}
.ws12e{word-spacing:3.251814pt;}
.ws53{word-spacing:3.315575pt;}
.ws1c{word-spacing:3.379337pt;}
.wsed{word-spacing:3.436889pt;}
.ws14{word-spacing:3.443098pt;}
.ws123{word-spacing:3.464864pt;}
.ws131{word-spacing:3.466260pt;}
.ws15e{word-spacing:3.466455pt;}
.ws47{word-spacing:3.506859pt;}
.ws41{word-spacing:3.570620pt;}
.ws31{word-spacing:3.634381pt;}
.ws13c{word-spacing:3.698142pt;}
.wsd1{word-spacing:3.761903pt;}
.wse0{word-spacing:3.799919pt;}
.wse2{word-spacing:3.800864pt;}
.wsae{word-spacing:3.825664pt;}
.ws7b{word-spacing:3.889425pt;}
.ws76{word-spacing:3.953186pt;}
.ws34{word-spacing:4.016947pt;}
.wsa5{word-spacing:4.080708pt;}
.wsf3{word-spacing:4.144469pt;}
.wsa7{word-spacing:4.208230pt;}
.ws56{word-spacing:4.271991pt;}
.wsfb{word-spacing:4.335753pt;}
.wsda{word-spacing:4.357434pt;}
.wsdc{word-spacing:4.382198pt;}
.ws72{word-spacing:4.399514pt;}
.wsa9{word-spacing:4.463275pt;}
.ws52{word-spacing:4.527036pt;}
.ws133{word-spacing:4.590797pt;}
.ws50{word-spacing:4.654558pt;}
.ws30{word-spacing:4.718319pt;}
.ws115{word-spacing:4.774673pt;}
.wse8{word-spacing:4.782080pt;}
.ws8f{word-spacing:4.845841pt;}
.ws101{word-spacing:4.877252pt;}
.ws9d{word-spacing:4.909602pt;}
.ws8d{word-spacing:4.973363pt;}
.ws44{word-spacing:5.037124pt;}
.ws89{word-spacing:5.100885pt;}
.wsa8{word-spacing:5.292169pt;}
.ws81{word-spacing:5.355930pt;}
.ws88{word-spacing:5.419691pt;}
.ws157{word-spacing:5.483452pt;}
.wsd3{word-spacing:5.547213pt;}
.wsf9{word-spacing:5.610974pt;}
.ws61{word-spacing:5.674735pt;}
.wsf5{word-spacing:5.688950pt;}
.ws6c{word-spacing:5.738496pt;}
.ws7c{word-spacing:5.802257pt;}
.ws5c{word-spacing:5.866018pt;}
.ws151{word-spacing:5.929779pt;}
.ws142{word-spacing:5.993540pt;}
.ws67{word-spacing:6.057301pt;}
.ws17{word-spacing:6.121062pt;}
.ws5e{word-spacing:6.184823pt;}
.ws3a{word-spacing:6.248585pt;}
.ws144{word-spacing:6.312346pt;}
.ws74{word-spacing:6.376107pt;}
.ws3f{word-spacing:6.439868pt;}
.ws99{word-spacing:6.503629pt;}
.ws146{word-spacing:6.546092pt;}
.ws14b{word-spacing:6.567390pt;}
.ws139{word-spacing:6.631151pt;}
.ws45{word-spacing:6.694912pt;}
.ws114{word-spacing:6.758673pt;}
.ws29{word-spacing:6.822434pt;}
.wsc9{word-spacing:6.886195pt;}
.ws2d{word-spacing:7.013717pt;}
.wse3{word-spacing:7.077478pt;}
.ws9a{word-spacing:7.141239pt;}
.wsaa{word-spacing:7.205001pt;}
.wse9{word-spacing:7.263046pt;}
.ws60{word-spacing:7.268762pt;}
.wsa6{word-spacing:7.332523pt;}
.ws82{word-spacing:7.396284pt;}
.ws4c{word-spacing:7.460045pt;}
.ws153{word-spacing:7.502502pt;}
.ws4a{word-spacing:7.523806pt;}
.ws3d{word-spacing:7.587567pt;}
.ws160{word-spacing:7.651328pt;}
.ws143{word-spacing:7.715089pt;}
.ws14a{word-spacing:7.768864pt;}
.ws2c{word-spacing:7.778850pt;}
.wscd{word-spacing:7.842611pt;}
.ws145{word-spacing:8.033894pt;}
.ws150{word-spacing:8.097655pt;}
.ws9b{word-spacing:8.161417pt;}
.ws70{word-spacing:8.225178pt;}
.wsd7{word-spacing:8.279919pt;}
.ws49{word-spacing:8.288939pt;}
.ws6e{word-spacing:8.352700pt;}
.wsa1{word-spacing:8.416461pt;}
.ws152{word-spacing:8.480222pt;}
.ws51{word-spacing:8.543983pt;}
.ws137{word-spacing:8.607744pt;}
.ws69{word-spacing:8.735266pt;}
.ws59{word-spacing:8.799027pt;}
.ws23{word-spacing:8.862788pt;}
.wsa0{word-spacing:9.054071pt;}
.ws8e{word-spacing:9.117833pt;}
.ws138{word-spacing:9.181594pt;}
.ws8a{word-spacing:9.245355pt;}
.ws20{word-spacing:9.309116pt;}
.wsbd{word-spacing:9.564160pt;}
.ws118{word-spacing:9.627921pt;}
.ws77{word-spacing:9.691682pt;}
.wsbb{word-spacing:9.755443pt;}
.ws35{word-spacing:9.819204pt;}
.ws10c{word-spacing:9.906630pt;}
.ws10e{word-spacing:9.907531pt;}
.ws27{word-spacing:9.946726pt;}
.ws2b{word-spacing:10.010487pt;}
.ws40{word-spacing:10.074249pt;}
.ws116{word-spacing:10.086456pt;}
.ws111{word-spacing:10.108157pt;}
.ws121{word-spacing:10.120785pt;}
.ws6b{word-spacing:10.138010pt;}
.ws38{word-spacing:10.201771pt;}
.ws37{word-spacing:10.265532pt;}
.ws63{word-spacing:10.329293pt;}
.ws14d{word-spacing:10.393054pt;}
.ws11b{word-spacing:10.456815pt;}
.ws42{word-spacing:10.520576pt;}
.ws6a{word-spacing:10.711859pt;}
.ws8b{word-spacing:10.903142pt;}
.wsd2{word-spacing:10.966903pt;}
.ws163{word-spacing:11.030665pt;}
.ws24{word-spacing:11.094426pt;}
.ws36{word-spacing:11.158187pt;}
.ws119{word-spacing:11.204738pt;}
.ws80{word-spacing:11.221948pt;}
.ws8c{word-spacing:11.285709pt;}
.ws174{word-spacing:11.349470pt;}
.ws46{word-spacing:11.413231pt;}
.ws12f{word-spacing:11.476992pt;}
.ws141{word-spacing:11.540753pt;}
.ws3c{word-spacing:11.604514pt;}
.wsd0{word-spacing:11.668275pt;}
.ws159{word-spacing:11.732036pt;}
.ws17d{word-spacing:11.795797pt;}
.ws156{word-spacing:11.923319pt;}
.ws79{word-spacing:11.987081pt;}
.ws3b{word-spacing:12.050842pt;}
.ws158{word-spacing:12.114603pt;}
.ws58{word-spacing:12.305886pt;}
.wse6{word-spacing:12.431828pt;}
.ws55{word-spacing:12.433408pt;}
.ws120{word-spacing:12.483451pt;}
.ws54{word-spacing:12.497169pt;}
.wsfa{word-spacing:12.560930pt;}
.ws6d{word-spacing:12.752213pt;}
.wsbf{word-spacing:12.879735pt;}
.wscb{word-spacing:13.007258pt;}
.ws162{word-spacing:13.134780pt;}
.ws22{word-spacing:13.389824pt;}
.wsc0{word-spacing:13.453585pt;}
.wsa3{word-spacing:13.644868pt;}
.ws16f{word-spacing:13.772390pt;}
.ws171{word-spacing:13.836151pt;}
.ws19{word-spacing:13.899913pt;}
.ws21{word-spacing:14.091196pt;}
.wsbe{word-spacing:14.282479pt;}
.ws90{word-spacing:14.346240pt;}
.ws13a{word-spacing:14.856329pt;}
.ws13f{word-spacing:15.005042pt;}
.ws6f{word-spacing:15.302656pt;}
.ws169{word-spacing:16.386594pt;}
.wsb9{word-spacing:16.514116pt;}
.ws109{word-spacing:16.776109pt;}
.ws108{word-spacing:16.783039pt;}
.ws107{word-spacing:16.803910pt;}
.wsdb{word-spacing:17.410792pt;}
.ws182{word-spacing:17.470532pt;}
.ws102{word-spacing:17.918118pt;}
.ws168{word-spacing:18.108143pt;}
.wsff{word-spacing:18.648785pt;}
.ws1f{word-spacing:18.915657pt;}
.ws1e{word-spacing:18.968790pt;}
.ws4e{word-spacing:19.000798pt;}
.ws15d{word-spacing:19.638409pt;}
.ws181{word-spacing:20.020975pt;}
.ws167{word-spacing:20.722347pt;}
.ws17b{word-spacing:20.849869pt;}
.ws172{word-spacing:21.104913pt;}
.wse7{word-spacing:21.300391pt;}
.ws110{word-spacing:21.325442pt;}
.wsd5{word-spacing:21.350764pt;}
.wsea{word-spacing:21.459451pt;}
.ws134{word-spacing:21.547752pt;}
.ws135{word-spacing:21.551828pt;}
.wsef{word-spacing:21.896785pt;}
.wsfe{word-spacing:22.312785pt;}
.ws170{word-spacing:22.443895pt;}
.ws112{word-spacing:22.548372pt;}
.wsf2{word-spacing:23.116643pt;}
.ws179{word-spacing:23.272789pt;}
.ws122{word-spacing:23.443910pt;}
.ws11{word-spacing:23.719117pt;}
.wse1{word-spacing:23.759828pt;}
.wsdd{word-spacing:23.823058pt;}
.ws12{word-spacing:23.846639pt;}
.wsf8{word-spacing:23.868643pt;}
.wsf7{word-spacing:23.870118pt;}
.ws136{word-spacing:24.145227pt;}
.wsec{word-spacing:24.307058pt;}
.ws11f{word-spacing:24.558118pt;}
.ws16c{word-spacing:24.675533pt;}
.wsf6{word-spacing:24.913977pt;}
.ws16b{word-spacing:25.631949pt;}
.ws4b{word-spacing:25.950754pt;}
.ws176{word-spacing:26.397082pt;}
.ws177{word-spacing:27.225975pt;}
.ws10{word-spacing:27.636455pt;}
.ws149{word-spacing:27.650792pt;}
.ws183{word-spacing:27.991108pt;}
.wsd6{word-spacing:28.248125pt;}
.ws117{word-spacing:28.724372pt;}
.ws10d{word-spacing:29.886577pt;}
.ws10f{word-spacing:29.891910pt;}
.wsd9{word-spacing:30.977608pt;}
.ws175{word-spacing:31.115401pt;}
.ws166{word-spacing:33.347038pt;}
.ws17f{word-spacing:35.706197pt;}
.ws2f{word-spacing:35.833719pt;}
.ws173{word-spacing:35.961242pt;}
.ws17e{word-spacing:39.021773pt;}
.wsfc{word-spacing:39.352785pt;}
.ws15b{word-spacing:40.488277pt;}
.ws15a{word-spacing:40.679561pt;}
.ws180{word-spacing:41.572215pt;}
.ws15c{word-spacing:44.441463pt;}
.ws106{word-spacing:45.079074pt;}
.ws2e{word-spacing:53.588746pt;}
.ws165{word-spacing:59.999164pt;}
.ws7{word-spacing:64.404985pt;}
.ws10a{word-spacing:65.065244pt;}
.wsee{word-spacing:65.865182pt;}
.ws103{word-spacing:66.179451pt;}
.ws9{word-spacing:68.650508pt;}
.ws8{word-spacing:69.687291pt;}
.ws125{word-spacing:320.181373pt;}
.ws124{word-spacing:334.992266pt;}
.wsd{word-spacing:351.487411pt;}
.ws126{word-spacing:356.025725pt;}
.ws10b{word-spacing:415.722155pt;}
.ws127{word-spacing:419.482494pt;}
.ws12c{word-spacing:436.385086pt;}
.ws129{word-spacing:459.935924pt;}
.ws12b{word-spacing:469.766560pt;}
.ws12a{word-spacing:478.698494pt;}
.ws104{word-spacing:635.697835pt;}
.ws11e{word-spacing:685.877794pt;}
._53{margin-left:-32.773188pt;}
._20{margin-left:-6.587966pt;}
._25{margin-left:-5.511494pt;}
._7{margin-left:-4.562754pt;}
._8{margin-left:-3.634381pt;}
._6{margin-left:-2.387202pt;}
._1{margin-left:-1.162606pt;}
._0{width:0.954502pt;}
._4{width:2.040354pt;}
._9{width:3.286271pt;}
._2e{width:4.273676pt;}
._2f{width:8.749657pt;}
._3b{width:14.168820pt;}
._51{width:15.338374pt;}
._23{width:16.705399pt;}
._15{width:17.767364pt;}
._5{width:19.447125pt;}
._11{width:20.941673pt;}
._19{width:22.769931pt;}
._2d{width:23.998485pt;}
._12{width:24.937808pt;}
._1d{width:26.014515pt;}
._c{width:27.105684pt;}
._16{width:28.337956pt;}
._f{width:29.684614pt;}
._10{width:31.079682pt;}
._17{width:32.114766pt;}
._13{width:33.093907pt;}
._a{width:34.239693pt;}
._21{width:35.451153pt;}
._14{width:36.491906pt;}
._47{width:37.710833pt;}
._1a{width:39.441526pt;}
._1f{width:40.553952pt;}
._29{width:41.472736pt;}
._1c{width:43.231917pt;}
._18{width:44.405745pt;}
._24{width:45.336032pt;}
._1e{width:46.764905pt;}
._d{width:47.976365pt;}
._4f{width:48.947687pt;}
._22{width:50.074574pt;}
._28{width:51.008853pt;}
._2a{width:52.173372pt;}
._56{width:53.453911pt;}
._59{width:54.714671pt;}
._1b{width:56.201542pt;}
._b{width:57.300387pt;}
._58{width:61.039917pt;}
._48{width:61.975757pt;}
._55{width:65.191408pt;}
._54{width:66.155945pt;}
._50{width:67.558688pt;}
._57{width:69.919173pt;}
._52{width:77.051411pt;}
._2b{width:83.207610pt;}
._4e{width:92.297174pt;}
._39{width:140.678815pt;}
._3a{width:145.220090pt;}
._3c{width:184.654454pt;}
._26{width:218.949908pt;}
._27{width:222.596704pt;}
._46{width:230.518420pt;}
._37{width:247.773875pt;}
._41{width:264.242284pt;}
._42{width:290.500675pt;}
._38{width:296.780857pt;}
._44{width:317.544653pt;}
._4d{width:343.149618pt;}
._40{width:354.499476pt;}
._33{width:364.644984pt;}
._3e{width:377.188726pt;}
._3d{width:417.318638pt;}
._34{width:425.087326pt;}
._43{width:433.037129pt;}
._32{width:435.806290pt;}
._45{width:439.186506pt;}
._35{width:443.542122pt;}
._3f{width:445.471669pt;}
._36{width:464.763659pt;}
._30{width:479.373747pt;}
._e{width:484.966435pt;}
._3{width:549.329016pt;}
._4b{width:578.443203pt;}
._4c{width:592.724367pt;}
._4a{width:605.167033pt;}
._31{width:620.267657pt;}
._49{width:634.849704pt;}
._2{width:637.485486pt;}
._2c{width:865.198863pt;}
.fse{font-size:31.617541pt;}
.fs12{font-size:31.880533pt;}
.fs10{font-size:33.138913pt;}
.fsd{font-size:35.948711pt;}
.fsb{font-size:37.193600pt;}
.fsa{font-size:42.507200pt;}
.fs7{font-size:42.535761pt;}
.fs5{font-size:43.386469pt;}
.fs6{font-size:43.386473pt;}
.fs1{font-size:43.386476pt;}
.fs3{font-size:43.386480pt;}
.fs2{font-size:43.386483pt;}
.fsf{font-size:47.642876pt;}
.fs0{font-size:48.091034pt;}
.fs11{font-size:49.935356pt;}
.fsc{font-size:53.133867pt;}
.fs9{font-size:63.761067pt;}
.fs4{font-size:66.909272pt;}
.fs8{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:10.168231pt;}
.y1c{bottom:14.088724pt;}
.y13{bottom:33.168295pt;}
.yef{bottom:34.207624pt;}
.y16{bottom:36.566016pt;}
.yca{bottom:37.942864pt;}
.yee{bottom:39.087661pt;}
.y18{bottom:41.825998pt;}
.y15{bottom:41.956656pt;}
.y1e{bottom:41.956680pt;}
.y1a{bottom:41.956686pt;}
.yec{bottom:80.511279pt;}
.yc9{bottom:82.337343pt;}
.y9{bottom:91.575569pt;}
.ye9{bottom:100.598922pt;}
.yeb{bottom:101.506861pt;}
.yf{bottom:102.552841pt;}
.y8{bottom:105.819951pt;}
.yc7{bottom:109.623711pt;}
.y10{bottom:110.263071pt;}
.ye8{bottom:110.585994pt;}
.yea{bottom:111.493933pt;}
.y11{bottom:114.836934pt;}
.ya{bottom:116.143820pt;}
.y4d{bottom:119.817333pt;}
.yed{bottom:122.842888pt;}
.yc2{bottom:135.394191pt;}
.y6{bottom:138.490407pt;}
.y7{bottom:144.371116pt;}
.ye2{bottom:152.804104pt;}
.yc4{bottom:152.935456pt;}
.ye7{bottom:153.144549pt;}
.yc6{bottom:153.585136pt;}
.y12{bottom:156.132534pt;}
.yf2{bottom:158.024602pt;}
.ye5{bottom:158.138090pt;}
.y96{bottom:159.668000pt;}
.y1b5{bottom:160.490667pt;}
.yc1{bottom:160.948095pt;}
.ya4{bottom:162.325333pt;}
.y1d5{bottom:162.537333pt;}
.ye1{bottom:162.791161pt;}
.ye6{bottom:163.131626pt;}
.yc3{bottom:163.655104pt;}
.yb7{bottom:163.937333pt;}
.ye4{bottom:164.380010pt;}
.y182{bottom:164.716000pt;}
.ydf{bottom:165.085333pt;}
.y71{bottom:166.973333pt;}
.yf1{bottom:168.011674pt;}
.y10c{bottom:168.069333pt;}
.y19c{bottom:168.076000pt;}
.y1a9{bottom:169.906667pt;}
.ye3{bottom:170.621930pt;}
.yc0{bottom:171.667743pt;}
.ye{bottom:174.297374pt;}
.y13d{bottom:174.324000pt;}
.yc8{bottom:175.998927pt;}
.y95{bottom:178.929333pt;}
.y1b4{bottom:179.750667pt;}
.yf3{bottom:180.155048pt;}
.ya3{bottom:181.585333pt;}
.y1d4{bottom:181.798667pt;}
.y219{bottom:182.249333pt;}
.yb6{bottom:183.198667pt;}
.y181{bottom:183.977333pt;}
.yde{bottom:184.346667pt;}
.y70{bottom:186.234667pt;}
.y10b{bottom:187.330667pt;}
.y19b{bottom:187.337333pt;}
.y1a8{bottom:189.168000pt;}
.y15f{bottom:191.314667pt;}
.y3{bottom:194.422430pt;}
.yf0{bottom:194.908674pt;}
.y15e{bottom:195.256000pt;}
.y94{bottom:198.190667pt;}
.y1b3{bottom:199.012000pt;}
.ya2{bottom:200.846667pt;}
.y1d3{bottom:201.058667pt;}
.y11b{bottom:201.272000pt;}
.y218{bottom:201.510667pt;}
.yb5{bottom:202.460000pt;}
.y180{bottom:203.238667pt;}
.ydd{bottom:203.606667pt;}
.y6f{bottom:205.496000pt;}
.yba{bottom:205.667449pt;}
.ybf{bottom:205.992284pt;}
.y10a{bottom:206.592000pt;}
.y19a{bottom:206.598667pt;}
.y1e6{bottom:206.658667pt;}
.y2{bottom:207.621292pt;}
.y1a7{bottom:208.429333pt;}
.ybd{bottom:209.348943pt;}
.y13c{bottom:209.525333pt;}
.y11a{bottom:213.466667pt;}
.yb9{bottom:214.329788pt;}
.ybe{bottom:214.654628pt;}
.ybc{bottom:215.520860pt;}
.y93{bottom:217.450667pt;}
.y1b2{bottom:218.273333pt;}
.ya1{bottom:220.108000pt;}
.y1d2{bottom:220.320000pt;}
.y217{bottom:220.772000pt;}
.ybb{bottom:221.476220pt;}
.yb4{bottom:221.721333pt;}
.y1ca{bottom:221.848000pt;}
.y17f{bottom:222.500000pt;}
.ydc{bottom:222.868000pt;}
.y6e{bottom:224.757333pt;}
.y109{bottom:225.852000pt;}
.y199{bottom:225.860000pt;}
.y1a6{bottom:227.690667pt;}
.y13b{bottom:228.786667pt;}
.y227{bottom:229.489333pt;}
.y15d{bottom:229.780000pt;}
.yc5{bottom:231.329636pt;}
.y4c{bottom:233.154667pt;}
.y92{bottom:236.712000pt;}
.y1b1{bottom:237.534667pt;}
.ya0{bottom:239.369333pt;}
.y1d1{bottom:239.581333pt;}
.yb{bottom:239.638442pt;}
.y216{bottom:240.033333pt;}
.y15b{bottom:240.713333pt;}
.yb3{bottom:240.981333pt;}
.y1c9{bottom:241.109333pt;}
.y17e{bottom:241.760000pt;}
.y6d{bottom:244.018667pt;}
.y108{bottom:245.113333pt;}
.y198{bottom:245.121333pt;}
.y1e5{bottom:246.342667pt;}
.y5{bottom:246.433918pt;}
.y1a5{bottom:246.952000pt;}
.y15c{bottom:247.352000pt;}
.y226{bottom:248.750667pt;}
.y4b{bottom:252.416000pt;}
.ydb{bottom:254.084000pt;}
.y91{bottom:255.973333pt;}
.y9f{bottom:258.630667pt;}
.y1d0{bottom:258.842667pt;}
.y4{bottom:259.371454pt;}
.y13a{bottom:260.046667pt;}
.yb2{bottom:260.242667pt;}
.y1c8{bottom:260.370667pt;}
.y17d{bottom:261.021333pt;}
.y6c{bottom:263.280000pt;}
.y139{bottom:263.988000pt;}
.y107{bottom:264.374667pt;}
.y197{bottom:264.381333pt;}
.yd{bottom:264.598740pt;}
.y1e4{bottom:265.604000pt;}
.y1a4{bottom:266.213333pt;}
.yc{bottom:266.820336pt;}
.y225{bottom:268.012000pt;}
.y215{bottom:272.577333pt;}
.y90{bottom:275.234667pt;}
.y4a{bottom:277.654667pt;}
.y9e{bottom:277.890667pt;}
.y119{bottom:277.892000pt;}
.yb1{bottom:279.504000pt;}
.y1c7{bottom:279.632000pt;}
.y17c{bottom:280.282667pt;}
.y6b{bottom:282.540000pt;}
.y106{bottom:283.636000pt;}
.y196{bottom:283.642667pt;}
.y15a{bottom:284.194667pt;}
.y1b0{bottom:284.824000pt;}
.y1e3{bottom:284.865333pt;}
.y1a3{bottom:285.473333pt;}
.y1cf{bottom:290.058667pt;}
.y214{bottom:291.838667pt;}
.y8f{bottom:294.496000pt;}
.y49{bottom:296.916000pt;}
.y9d{bottom:297.152000pt;}
.yda{bottom:297.256000pt;}
.yb0{bottom:298.765333pt;}
.y1c6{bottom:298.893333pt;}
.y138{bottom:299.189333pt;}
.y224{bottom:299.310667pt;}
.y17b{bottom:299.544000pt;}
.y1af{bottom:300.764000pt;}
.y6a{bottom:301.801333pt;}
.y105{bottom:302.897333pt;}
.y195{bottom:302.904000pt;}
.y1e2{bottom:304.126667pt;}
.y1a2{bottom:304.734667pt;}
.y1fe{bottom:306.533333pt;}
.y213{bottom:311.100000pt;}
.y8e{bottom:313.757333pt;}
.y137{bottom:314.304000pt;}
.y48{bottom:316.177333pt;}
.y9c{bottom:316.413333pt;}
.yd9{bottom:316.517333pt;}
.y159{bottom:316.742667pt;}
.yaf{bottom:318.026667pt;}
.y1c5{bottom:318.153333pt;}
.y136{bottom:318.449333pt;}
.y223{bottom:318.572000pt;}
.y17a{bottom:318.805333pt;}
.y69{bottom:321.062667pt;}
.y104{bottom:322.158667pt;}
.y194{bottom:322.165333pt;}
.y1e1{bottom:323.388000pt;}
.y157{bottom:323.736000pt;}
.y1fd{bottom:325.794667pt;}
.y156{bottom:327.677333pt;}
.y1ae{bottom:328.992000pt;}
.y212{bottom:330.361333pt;}
.y8d{bottom:333.017333pt;}
.y135{bottom:333.565333pt;}
.y158{bottom:334.520000pt;}
.y47{bottom:335.438667pt;}
.y9b{bottom:335.674667pt;}
.yd8{bottom:335.778667pt;}
.yae{bottom:337.288000pt;}
.y1ce{bottom:337.348000pt;}
.y1c4{bottom:337.414667pt;}
.y134{bottom:337.710667pt;}
.y222{bottom:337.833333pt;}
.y179{bottom:338.066667pt;}
.y68{bottom:340.324000pt;}
.y103{bottom:341.418667pt;}
.y193{bottom:341.426667pt;}
.y1e0{bottom:342.648000pt;}
.y1fc{bottom:345.056000pt;}
.y231{bottom:349.622667pt;}
.y1a1{bottom:352.024000pt;}
.y8c{bottom:352.278667pt;}
.y1cd{bottom:353.288000pt;}
.y46{bottom:354.700000pt;}
.y9a{bottom:354.936000pt;}
.yd7{bottom:355.038667pt;}
.yad{bottom:356.548000pt;}
.y1c3{bottom:356.676000pt;}
.y133{bottom:356.972000pt;}
.y221{bottom:357.094667pt;}
.y178{bottom:357.326667pt;}
.y67{bottom:359.585333pt;}
.y102{bottom:360.680000pt;}
.y192{bottom:360.688000pt;}
.y1df{bottom:361.909333pt;}
.y211{bottom:362.905333pt;}
.y1fb{bottom:364.317333pt;}
.y1a0{bottom:367.964000pt;}
.y155{bottom:368.058667pt;}
.y8b{bottom:371.540000pt;}
.y154{bottom:372.204000pt;}
.y45{bottom:373.960000pt;}
.y99{bottom:374.197333pt;}
.yd6{bottom:374.300000pt;}
.y1c2{bottom:375.937333pt;}
.y132{bottom:376.233333pt;}
.y177{bottom:376.588000pt;}
.y66{bottom:378.846667pt;}
.y101{bottom:379.941333pt;}
.y191{bottom:379.948000pt;}
.y1de{bottom:381.170667pt;}
.y1cc{bottom:381.516000pt;}
.y210{bottom:382.166667pt;}
.yac{bottom:387.765333pt;}
.y220{bottom:388.393333pt;}
.y8a{bottom:390.801333pt;}
.y44{bottom:393.221333pt;}
.y98{bottom:393.457333pt;}
.yd5{bottom:393.561333pt;}
.y1c1{bottom:395.198667pt;}
.y131{bottom:395.494667pt;}
.y1fa{bottom:395.616000pt;}
.y19f{bottom:396.192000pt;}
.y65{bottom:398.106667pt;}
.y100{bottom:399.202667pt;}
.y190{bottom:399.209333pt;}
.y1dd{bottom:400.432000pt;}
.y20f{bottom:401.428000pt;}
.y153{bottom:403.465333pt;}
.y152{bottom:407.405333pt;}
.y21f{bottom:407.654667pt;}
.y176{bottom:407.804000pt;}
.y89{bottom:410.062667pt;}
.y43{bottom:412.482667pt;}
.y118{bottom:412.718667pt;}
.yd4{bottom:412.822667pt;}
.y1c0{bottom:414.460000pt;}
.y130{bottom:414.756000pt;}
.y1f9{bottom:414.877333pt;}
.y64{bottom:417.368000pt;}
.yff{bottom:418.464000pt;}
.y18f{bottom:418.470667pt;}
.y1dc{bottom:419.693333pt;}
.y20e{bottom:420.689333pt;}
.y97{bottom:424.674667pt;}
.y21e{bottom:426.916000pt;}
.y88{bottom:429.324000pt;}
.yab{bottom:430.936000pt;}
.y42{bottom:431.744000pt;}
.y117{bottom:431.980000pt;}
.yd3{bottom:432.084000pt;}
.y1bf{bottom:433.720000pt;}
.y12f{bottom:434.016000pt;}
.y1f8{bottom:434.138667pt;}
.y63{bottom:436.629333pt;}
.yfe{bottom:437.724000pt;}
.y18e{bottom:437.732000pt;}
.y1db{bottom:438.953333pt;}
.y230{bottom:439.950667pt;}
.y151{bottom:442.606667pt;}
.y87{bottom:448.584000pt;}
.yaa{bottom:450.197333pt;}
.y41{bottom:451.005333pt;}
.y116{bottom:451.241333pt;}
.yd2{bottom:451.345333pt;}
.y1be{bottom:452.981333pt;}
.y20d{bottom:453.233333pt;}
.y12e{bottom:453.277333pt;}
.y23{bottom:455.510667pt;}
.y62{bottom:455.890667pt;}
.y175{bottom:456.621333pt;}
.yfd{bottom:456.985333pt;}
.y18d{bottom:456.993333pt;}
.y1da{bottom:458.214667pt;}
.y22f{bottom:459.212000pt;}
.y150{bottom:461.868000pt;}
.y1ad{bottom:464.941333pt;}
.y1f7{bottom:465.438667pt;}
.y86{bottom:467.845333pt;}
.ya9{bottom:469.458667pt;}
.y40{bottom:470.266667pt;}
.y115{bottom:470.502667pt;}
.yd1{bottom:470.605333pt;}
.y1bd{bottom:472.242667pt;}
.y20c{bottom:472.494667pt;}
.y12d{bottom:472.538667pt;}
.y22{bottom:474.772000pt;}
.y61{bottom:475.152000pt;}
.y174{bottom:475.882667pt;}
.yfc{bottom:476.246667pt;}
.y18c{bottom:476.254667pt;}
.y1d9{bottom:477.476000pt;}
.y14f{bottom:481.129333pt;}
.y1f6{bottom:484.698667pt;}
.y85{bottom:487.106667pt;}
.ya8{bottom:488.720000pt;}
.y3f{bottom:489.526667pt;}
.y114{bottom:489.764000pt;}
.yd0{bottom:489.866667pt;}
.y1bc{bottom:491.504000pt;}
.y20b{bottom:491.756000pt;}
.y12c{bottom:491.800000pt;}
.y60{bottom:494.413333pt;}
.y173{bottom:495.144000pt;}
.yfb{bottom:495.508000pt;}
.y18b{bottom:495.514667pt;}
.y1d8{bottom:496.737333pt;}
.y14e{bottom:500.390667pt;}
.y21{bottom:502.002667pt;}
.y1f5{bottom:503.960000pt;}
.y84{bottom:506.368000pt;}
.ya7{bottom:507.981333pt;}
.y3e{bottom:508.788000pt;}
.y113{bottom:509.024000pt;}
.ycf{bottom:509.128000pt;}
.y1bb{bottom:510.765333pt;}
.y20a{bottom:511.017333pt;}
.y12b{bottom:511.061333pt;}
.y5f{bottom:513.673333pt;}
.y172{bottom:514.405333pt;}
.yfa{bottom:514.769333pt;}
.y18a{bottom:514.776000pt;}
.y1d7{bottom:515.998667pt;}
.y14d{bottom:519.652000pt;}
.y20{bottom:521.264000pt;}
.y83{bottom:525.629333pt;}
.ya6{bottom:527.241333pt;}
.y3d{bottom:528.049333pt;}
.y112{bottom:528.285333pt;}
.yce{bottom:528.389333pt;}
.y1ba{bottom:530.026667pt;}
.y22e{bottom:530.278667pt;}
.y12a{bottom:530.322667pt;}
.y5e{bottom:532.934667pt;}
.y171{bottom:533.665333pt;}
.yf9{bottom:534.030667pt;}
.y189{bottom:534.037333pt;}
.y1f4{bottom:535.260000pt;}
.y14c{bottom:538.912000pt;}
.y209{bottom:543.561333pt;}
.y1d6{bottom:543.728000pt;}
.y183{bottom:544.889333pt;}
.y82{bottom:544.890667pt;}
.y21d{bottom:547.297333pt;}
.y3c{bottom:547.310667pt;}
.y111{bottom:547.546667pt;}
.ycd{bottom:547.650667pt;}
.y22d{bottom:549.540000pt;}
.y129{bottom:549.582667pt;}
.y5d{bottom:552.196000pt;}
.y170{bottom:552.926667pt;}
.yf8{bottom:553.290667pt;}
.y188{bottom:553.298667pt;}
.y1f3{bottom:554.520000pt;}
.y30{bottom:556.181333pt;}
.y1f{bottom:556.465333pt;}
.y14b{bottom:558.173333pt;}
.y208{bottom:562.822667pt;}
.y81{bottom:564.150667pt;}
.y21c{bottom:566.558667pt;}
.y3b{bottom:566.572000pt;}
.y110{bottom:566.808000pt;}
.ycc{bottom:566.912000pt;}
.y128{bottom:568.844000pt;}
.y5c{bottom:571.457333pt;}
.y16f{bottom:572.188000pt;}
.yf7{bottom:572.552000pt;}
.y187{bottom:572.560000pt;}
.ya5{bottom:574.530667pt;}
.y2f{bottom:575.442667pt;}
.y1b9{bottom:577.316000pt;}
.y14a{bottom:577.434667pt;}
.y207{bottom:582.084000pt;}
.y80{bottom:583.412000pt;}
.y1f2{bottom:585.820000pt;}
.y10f{bottom:586.069333pt;}
.y5b{bottom:590.718667pt;}
.y16e{bottom:591.449333pt;}
.yf6{bottom:591.813333pt;}
.y186{bottom:591.820000pt;}
.y1b8{bottom:593.256000pt;}
.y3a{bottom:593.802667pt;}
.y149{bottom:596.696000pt;}
.y1{bottom:598.973333pt;}
.y206{bottom:601.345333pt;}
.y7f{bottom:602.673333pt;}
.y127{bottom:604.045333pt;}
.y1f1{bottom:605.081333pt;}
.y10e{bottom:605.330667pt;}
.y17{bottom:605.474769pt;}
.y2e{bottom:607.986667pt;}
.y14{bottom:609.395237pt;}
.y5a{bottom:609.978667pt;}
.y16d{bottom:610.710667pt;}
.yf5{bottom:611.074667pt;}
.ycb{bottom:614.201333pt;}
.y148{bottom:615.957333pt;}
.y1ac{bottom:616.500000pt;}
.y22c{bottom:620.606667pt;}
.y1d{bottom:621.156632pt;}
.y1b7{bottom:621.482667pt;}
.y7e{bottom:621.934667pt;}
.y1cb{bottom:623.169333pt;}
.y1f0{bottom:624.342667pt;}
.y19{bottom:626.253236pt;}
.y2d{bottom:627.248000pt;}
.y59{bottom:629.240000pt;}
.y16c{bottom:629.970667pt;}
.y1ab{bottom:632.440000pt;}
.y205{bottom:633.889333pt;}
.y147{bottom:635.218667pt;}
.y21b{bottom:636.380000pt;}
.y10d{bottom:636.546667pt;}
.y19e{bottom:636.850667pt;}
.yb8{bottom:638.642667pt;}
.y185{bottom:639.110667pt;}
.y126{bottom:639.246667pt;}
.y22b{bottom:639.866667pt;}
.y7d{bottom:641.196000pt;}
.y58{bottom:648.501333pt;}
.y16b{bottom:649.232000pt;}
.y204{bottom:653.150667pt;}
.y146{bottom:654.478667pt;}
.y1ef{bottom:655.641333pt;}
.yf4{bottom:658.364000pt;}
.y125{bottom:658.508000pt;}
.y2c{bottom:659.792000pt;}
.y7c{bottom:660.456000pt;}
.y1aa{bottom:660.666667pt;}
.y19d{bottom:665.078667pt;}
.y184{bottom:667.337333pt;}
.y57{bottom:667.762667pt;}
.y16a{bottom:668.493333pt;}
.y203{bottom:672.412000pt;}
.y145{bottom:673.740000pt;}
.y1ee{bottom:674.902667pt;}
.y39{bottom:676.568000pt;}
.y124{bottom:677.769333pt;}
.y2b{bottom:679.053333pt;}
.y7b{bottom:679.717333pt;}
.ye0{bottom:682.805333pt;}
.y56{bottom:687.024000pt;}
.y169{bottom:687.754667pt;}
.y202{bottom:691.673333pt;}
.y38{bottom:692.508000pt;}
.y144{bottom:693.001333pt;}
.y1ed{bottom:694.164000pt;}
.y123{bottom:697.030667pt;}
.y7a{bottom:698.978667pt;}
.y37{bottom:703.628000pt;}
.y55{bottom:706.285333pt;}
.y168{bottom:707.016000pt;}
.y143{bottom:708.321333pt;}
.y22a{bottom:710.934667pt;}
.y2a{bottom:711.598667pt;}
.y142{bottom:712.262667pt;}
.y1ec{bottom:713.425333pt;}
.y122{bottom:716.292000pt;}
.y79{bottom:718.240000pt;}
.y201{bottom:724.217333pt;}
.y36{bottom:724.389333pt;}
.y21a{bottom:725.462667pt;}
.y54{bottom:725.545333pt;}
.y167{bottom:726.276000pt;}
.y29{bottom:730.858667pt;}
.y35{bottom:735.508000pt;}
.y121{bottom:735.552000pt;}
.y78{bottom:737.501333pt;}
.y200{bottom:743.478667pt;}
.y141{bottom:743.522667pt;}
.y1eb{bottom:744.724000pt;}
.y53{bottom:744.806667pt;}
.y166{bottom:745.537333pt;}
.y140{bottom:747.464000pt;}
.y120{bottom:754.813333pt;}
.y34{bottom:756.269333pt;}
.y77{bottom:756.762667pt;}
.y1b6{bottom:757.433333pt;}
.y1ff{bottom:762.740000pt;}
.y1ea{bottom:763.985333pt;}
.y52{bottom:764.068000pt;}
.y165{bottom:764.798667pt;}
.y28{bottom:771.374667pt;}
.y11f{bottom:774.074667pt;}
.y76{bottom:776.022667pt;}
.y33{bottom:780.672000pt;}
.y229{bottom:782.001333pt;}
.y13f{bottom:782.665333pt;}
.y1e9{bottom:783.246667pt;}
.y51{bottom:783.329333pt;}
.y164{bottom:784.060000pt;}
.y27{bottom:790.634667pt;}
.y75{bottom:795.284000pt;}
.y32{bottom:799.933333pt;}
.y228{bottom:801.261333pt;}
.y13e{bottom:801.926667pt;}
.y1e8{bottom:802.506667pt;}
.y50{bottom:802.590667pt;}
.y163{bottom:803.321333pt;}
.y11d{bottom:804.006667pt;}
.y74{bottom:814.545333pt;}
.y26{bottom:817.866667pt;}
.y1e7{bottom:821.768000pt;}
.y4f{bottom:821.852000pt;}
.y162{bottom:822.582667pt;}
.y11e{bottom:822.810667pt;}
.y73{bottom:833.806667pt;}
.y25{bottom:837.128000pt;}
.y11c{bottom:837.953333pt;}
.y4e{bottom:841.112000pt;}
.y31{bottom:843.105333pt;}
.y161{bottom:845.030667pt;}
.y72{bottom:853.068000pt;}
.y24{bottom:872.329333pt;}
.y160{bottom:877.110667pt;}
.h22{height:2.550443pt;}
.h19{height:21.443732pt;}
.h1c{height:23.786232pt;}
.h15{height:25.783916pt;}
.h18{height:25.803030pt;}
.hc{height:28.350251pt;}
.h21{height:29.499997pt;}
.h9{height:29.510425pt;}
.ha{height:29.510428pt;}
.h3{height:29.510430pt;}
.h6{height:29.510433pt;}
.h5{height:29.510435pt;}
.h4{height:30.033202pt;}
.h7{height:31.078627pt;}
.h23{height:31.880400pt;}
.h1a{height:32.312478pt;}
.h2{height:32.710356pt;}
.h1d{height:33.501552pt;}
.h16{height:39.850400pt;}
.h1e{height:44.214371pt;}
.h12{height:44.632747pt;}
.h8{height:45.379384pt;}
.h13{height:47.820800pt;}
.h28{height:55.016400pt;}
.h14{height:55.021733pt;}
.h2a{height:55.825330pt;}
.h25{height:58.205733pt;}
.hf{height:58.905003pt;}
.h10{height:62.825471pt;}
.h2b{height:63.580800pt;}
.h27{height:63.586133pt;}
.h24{height:64.402133pt;}
.h11{height:64.913535pt;}
.h29{height:70.781733pt;}
.h26{height:73.971067pt;}
.hb{height:82.035748pt;}
.he{height:85.302804pt;}
.hd{height:90.693445pt;}
.h20{height:96.599467pt;}
.h2e{height:98.152400pt;}
.h2c{height:111.537330pt;}
.h1f{height:111.579776pt;}
.h2d{height:136.187776pt;}
.h1b{height:205.463200pt;}
.h17{height:249.628840pt;}
.h1{height:289.297680pt;}
.h0{height:1056.000000pt;}
.w2{width:9.931847pt;}
.w3{width:10.062528pt;}
.w1{width:502.527440pt;}
.w5{width:507.676160pt;}
.w4{width:507.694440pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x14{left:2.230767pt;}
.x45{left:5.812337pt;}
.x58{left:11.384747pt;}
.x4{left:16.302649pt;}
.x3{left:17.561645pt;}
.x4d{left:20.442512pt;}
.x38{left:22.579216pt;}
.x4e{left:45.615655pt;}
.x39{left:49.631424pt;}
.x42{left:58.060740pt;}
.x55{left:62.322450pt;}
.xe{left:67.513993pt;}
.x43{left:87.060862pt;}
.x56{left:89.300549pt;}
.x5{left:97.700079pt;}
.x2{left:99.876700pt;}
.xf{left:104.640751pt;}
.x3a{left:109.055297pt;}
.x3b{left:114.725296pt;}
.x5c{left:120.499849pt;}
.x5b{left:132.342800pt;}
.x5f{left:134.264583pt;}
.x12{left:142.261984pt;}
.x5d{left:145.113769pt;}
.x2b{left:147.805333pt;}
.x81{left:150.720000pt;}
.x33{left:153.781333pt;}
.x1{left:155.576000pt;}
.x10{left:164.249595pt;}
.x57{left:168.124607pt;}
.x2c{left:171.220000pt;}
.x31{left:177.060000pt;}
.x2f{left:179.526667pt;}
.x49{left:181.341804pt;}
.x2d{left:186.825333pt;}
.x79{left:189.918667pt;}
.xa{left:191.155748pt;}
.x7c{left:197.053333pt;}
.x6d{left:200.142667pt;}
.x2e{left:201.710667pt;}
.x15{left:204.320455pt;}
.x47{left:206.495507pt;}
.x46{left:208.378890pt;}
.x5e{left:210.361911pt;}
.x44{left:212.526104pt;}
.x11{left:214.538130pt;}
.x7b{left:217.264000pt;}
.x7e{left:219.021333pt;}
.x7d{left:220.141333pt;}
.x80{left:221.573333pt;}
.x13{left:223.922787pt;}
.x7a{left:225.668000pt;}
.x7f{left:227.232000pt;}
.x36{left:238.489333pt;}
.x6{left:240.261843pt;}
.x83{left:242.989333pt;}
.x7{left:247.459406pt;}
.x4a{left:252.711533pt;}
.x48{left:256.069611pt;}
.x4c{left:257.726667pt;}
.xc{left:261.398782pt;}
.x59{left:265.474215pt;}
.x6e{left:266.866667pt;}
.x82{left:274.190667pt;}
.x6b{left:276.018667pt;}
.x61{left:279.317333pt;}
.x18{left:287.957061pt;}
.xd{left:290.145568pt;}
.x32{left:295.840000pt;}
.x17{left:297.758203pt;}
.x35{left:300.445333pt;}
.x16{left:307.559405pt;}
.x8{left:308.954687pt;}
.x30{left:311.810667pt;}
.x69{left:314.910667pt;}
.x4b{left:317.980790pt;}
.x34{left:321.824000pt;}
.x51{left:324.827696pt;}
.x3d{left:328.961431pt;}
.x60{left:331.340000pt;}
.x4f{left:333.150256pt;}
.x62{left:336.758667pt;}
.x50{left:339.392176pt;}
.x3c{left:340.965204pt;}
.x66{left:342.054667pt;}
.x6f{left:343.554667pt;}
.x64{left:345.289333pt;}
.x1b{left:347.678824pt;}
.x70{left:355.434667pt;}
.x1a{left:357.479965pt;}
.xb{left:358.731998pt;}
.x72{left:361.945333pt;}
.x19{left:367.281107pt;}
.x65{left:370.356000pt;}
.x78{left:372.110667pt;}
.x73{left:373.102667pt;}
.x5a{left:375.297573pt;}
.x77{left:377.197333pt;}
.x67{left:384.666667pt;}
.x68{left:386.324000pt;}
.x76{left:388.354667pt;}
.x1e{left:397.338058pt;}
.x63{left:399.030667pt;}
.x37{left:402.932000pt;}
.x6a{left:405.881333pt;}
.x1d{left:407.269893pt;}
.x9{left:413.309417pt;}
.x1c{left:417.071035pt;}
.x75{left:419.258667pt;}
.x74{left:430.548000pt;}
.x40{left:435.931111pt;}
.x52{left:438.177322pt;}
.x3e{left:441.170587pt;}
.x53{left:444.419242pt;}
.x3f{left:447.125997pt;}
.x54{left:457.715780pt;}
.x41{left:459.099943pt;}
.x71{left:472.890667pt;}
.x21{left:477.576896pt;}
.x6c{left:484.900000pt;}
.x20{left:487.508731pt;}
.x1f{left:497.309933pt;}
.x24{left:508.287192pt;}
.x23{left:518.219027pt;}
.x22{left:528.020229pt;}
.x27{left:560.560109pt;}
.x26{left:570.361251pt;}
.x25{left:580.162392pt;}
.x2a{left:592.054504pt;}
.x29{left:601.855645pt;}
.x28{left:611.656787pt;}
}




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