
    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_18bc74d6b0497800bcf49785.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_88420b97bf8bcff6bcc9acdd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056000;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_59fc345022804083931d917b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003000;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_0fbadcdeb865a30b6a84e45e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.711426;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_855667ac33428da4f05062c5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.392000;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_96a9ca1920fb4ec89255f2e9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_96344b059e0e923b67ead510.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.006000;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_50852782ef9203bd563aa1bf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.881348;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_fad35b96e93e0c70f4c202f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.094000;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_0ece0dc2987d334b6c9e7107.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.064000;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_f42e7b04d61750c94a1786de.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.736816;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_bf6db6d09a38e1b15882e47a.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_2c46d1a0d77e5afc09efb332.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c7d6a859a28ea342912cc8bc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.969000;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_10fee66358d9eee8f7b8e1d9.woff2')format("woff");}.fff{font-family:fff;line-height:1.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_68a227bb534fe479130430b7.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_fdf4bffeaa3c20c5f3fa1208.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.969000;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_76756f58ed406bfe45e29de7.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0b791f841cde321dcc7b4086.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.998000;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_9b00153e58360b335e8ac205.woff2')format("woff");}.ff14{font-family:ff14;line-height:3.732000;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_769cd74991132aa83381d175.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.676000;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_d835231741857ad7b1fc26b1.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.762207;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;}
.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);}
.m1{transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281279,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281285,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v13{vertical-align:-17.358000px;}
.v8{vertical-align:-14.964000px;}
.v15{vertical-align:-10.881464px;}
.v7{vertical-align:-8.844000px;}
.v1{vertical-align:-5.778000px;}
.v2{vertical-align:-1.017587px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:14.970000px;}
.v4{vertical-align:16.667919px;}
.vd{vertical-align:20.748000px;}
.v3{vertical-align:21.762000px;}
.v6{vertical-align:23.124000px;}
.v14{vertical-align:30.948000px;}
.va{vertical-align:32.658000px;}
.vc{vertical-align:36.738000px;}
.v10{vertical-align:38.435919px;}
.v11{vertical-align:41.154000px;}
.v12{vertical-align:46.260000px;}
.v9{vertical-align:47.628000px;}
.ve{vertical-align:49.326000px;}
.v5{vertical-align:57.485919px;}
.vf{vertical-align:86.058000px;}
.ls7{letter-spacing:-1.263600px;}
.lsc{letter-spacing:-1.200600px;}
.ls13{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-1.199985px;}
.lsf{letter-spacing:-1.140000px;}
.ls61{letter-spacing:-1.063878px;}
.ls57{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.241496px;}
.ls10{letter-spacing:-0.240000px;}
.ls6{letter-spacing:-0.239997px;}
.lse{letter-spacing:-0.239400px;}
.lsa{letter-spacing:-0.238497px;}
.ls8{letter-spacing:-0.237600px;}
.ls12{letter-spacing:-0.237598px;}
.ls63{letter-spacing:-0.214367px;}
.ls9{letter-spacing:-0.212372px;}
.ls21{letter-spacing:-0.211976px;}
.lsb{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.012000px;}
.ls47{letter-spacing:0.030000px;}
.ls3e{letter-spacing:0.036000px;}
.ls1b{letter-spacing:0.144000px;}
.ls53{letter-spacing:0.198000px;}
.ls40{letter-spacing:0.246000px;}
.ls43{letter-spacing:0.258000px;}
.ls4b{letter-spacing:0.288000px;}
.ls4d{letter-spacing:0.294000px;}
.ls37{letter-spacing:0.696000px;}
.ls39{letter-spacing:0.726000px;}
.ls29{letter-spacing:0.853172px;}
.ls34{letter-spacing:1.014000px;}
.ls3b{letter-spacing:1.032000px;}
.ls3d{letter-spacing:1.038000px;}
.ls2b{letter-spacing:1.191560px;}
.ls3{letter-spacing:1.363183px;}
.ls16{letter-spacing:2.988000px;}
.ls45{letter-spacing:2.994966px;}
.ls3c{letter-spacing:3.000966px;}
.ls3a{letter-spacing:3.336966px;}
.ls68{letter-spacing:7.487906px;}
.ls69{letter-spacing:7.828702px;}
.ls5{letter-spacing:9.446282px;}
.ls6b{letter-spacing:9.955076px;}
.ls24{letter-spacing:9.990000px;}
.ls6a{letter-spacing:10.060674px;}
.ls22{letter-spacing:10.326000px;}
.ls46{letter-spacing:10.332000px;}
.ls2{letter-spacing:10.387070px;}
.ls5a{letter-spacing:12.696000px;}
.ls59{letter-spacing:12.900000px;}
.ls58{letter-spacing:12.972000px;}
.ls4a{letter-spacing:13.050000px;}
.ls65{letter-spacing:13.146000px;}
.ls49{letter-spacing:13.260000px;}
.ls4{letter-spacing:13.271834px;}
.ls19{letter-spacing:13.326000px;}
.ls28{letter-spacing:13.392000px;}
.ls31{letter-spacing:13.398000px;}
.ls1e{letter-spacing:13.536000px;}
.ls62{letter-spacing:13.548000px;}
.ls5e{letter-spacing:13.554000px;}
.ls2d{letter-spacing:13.662000px;}
.ls30{letter-spacing:13.944000px;}
.ls50{letter-spacing:16.018293px;}
.ls2c{letter-spacing:16.019538px;}
.ls2f{letter-spacing:16.183910px;}
.ls3f{letter-spacing:16.224740px;}
.ls41{letter-spacing:16.230366px;}
.ls48{letter-spacing:16.230740px;}
.ls35{letter-spacing:16.236366px;}
.ls67{letter-spacing:16.351927px;}
.ls5d{letter-spacing:16.355538px;}
.ls27{letter-spacing:16.356600px;}
.ls5b{letter-spacing:16.357927px;}
.ls51{letter-spacing:16.360293px;}
.ls5c{letter-spacing:16.361538px;}
.ls55{letter-spacing:16.362681px;}
.ls2a{letter-spacing:16.363927px;}
.ls52{letter-spacing:16.366293px;}
.ls2e{letter-spacing:16.518583px;}
.ls18{letter-spacing:16.728000px;}
.ls23{letter-spacing:17.064000px;}
.ls64{letter-spacing:17.070000px;}
.ls4c{letter-spacing:17.178368px;}
.ls32{letter-spacing:17.520368px;}
.ls54{letter-spacing:18.456585px;}
.ls1c{letter-spacing:18.550182px;}
.ls5f{letter-spacing:18.553782px;}
.ls4f{letter-spacing:18.794973px;}
.ls15{letter-spacing:18.892170px;}
.ls1d{letter-spacing:19.440588px;}
.ls44{letter-spacing:19.632366px;}
.ls4e{letter-spacing:19.638366px;}
.ls17{letter-spacing:19.776588px;}
.ls38{letter-spacing:19.974366px;}
.ls0{letter-spacing:20.783740px;}
.ls1{letter-spacing:20.788540px;}
.ls26{letter-spacing:20.922368px;}
.ls42{letter-spacing:44.526000px;}
.ls1f{letter-spacing:44.532000px;}
.ls36{letter-spacing:44.862000px;}
.ls66{letter-spacing:44.868000px;}
.ls14{letter-spacing:107.550000px;}
.ls60{letter-spacing:108.987438px;}
.ls1a{letter-spacing:119.118000px;}
.ls33{letter-spacing:446.118368px;}
.ls56{letter-spacing:869.688366px;}
.ls20{letter-spacing:870.048000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws10c{word-spacing:-110.451419px;}
.wsfc{word-spacing:-60.000000px;}
.wsfb{word-spacing:-43.278000px;}
.wsc2{word-spacing:-43.272000px;}
.ws143{word-spacing:-43.266000px;}
.ws26{word-spacing:-37.151856px;}
.wsaa{word-spacing:-30.000000px;}
.ws2a{word-spacing:-25.247684px;}
.ws141{word-spacing:-23.999700px;}
.wsa8{word-spacing:-21.012000px;}
.wsb0{word-spacing:-20.694000px;}
.wsbd{word-spacing:-20.676000px;}
.wsab{word-spacing:-17.999400px;}
.wsff{word-spacing:-16.200000px;}
.ws14c{word-spacing:-15.474000px;}
.wsac{word-spacing:-15.000000px;}
.ws10{word-spacing:-13.487831px;}
.wsfa{word-spacing:-13.392000px;}
.ws148{word-spacing:-13.386000px;}
.ws12{word-spacing:-13.247834px;}
.ws12f{word-spacing:-13.050000px;}
.ws147{word-spacing:-10.991863px;}
.ws30{word-spacing:-10.799865px;}
.wscf{word-spacing:-10.463869px;}
.wsc3{word-spacing:-6.552000px;}
.wsc1{word-spacing:-6.546000px;}
.wsc4{word-spacing:-6.444000px;}
.wsbf{word-spacing:-5.814000px;}
.wsb1{word-spacing:-5.771071px;}
.wsb5{word-spacing:-5.428753px;}
.wsd3{word-spacing:-5.169535px;}
.wsb3{word-spacing:-5.086753px;}
.ws71{word-spacing:-4.514362px;}
.ws9e{word-spacing:-4.456763px;}
.ws163{word-spacing:-4.233565px;}
.ws18{word-spacing:-4.160628px;}
.ws145{word-spacing:-3.546000px;}
.ws187{word-spacing:-3.532756px;}
.ws149{word-spacing:-3.480000px;}
.ws8{word-spacing:-3.479956px;}
.ws17c{word-spacing:-3.475157px;}
.ws13{word-spacing:-3.465600px;}
.ws23{word-spacing:-3.459900px;}
.ws185{word-spacing:-3.455957px;}
.ws190{word-spacing:-3.451157px;}
.ws20{word-spacing:-3.402900px;}
.ws4d{word-spacing:-3.391500px;}
.ws188{word-spacing:-3.345558px;}
.ws3{word-spacing:-3.342600px;}
.wsf{word-spacing:-3.340758px;}
.ws193{word-spacing:-3.335958px;}
.ws18e{word-spacing:-3.331158px;}
.ws4e{word-spacing:-3.323100px;}
.ws178{word-spacing:-3.302359px;}
.ws172{word-spacing:-3.287959px;}
.wsc{word-spacing:-3.283159px;}
.ws11{word-spacing:-3.278359px;}
.ws177{word-spacing:-3.273559px;}
.ws170{word-spacing:-3.268759px;}
.ws7{word-spacing:-3.267000px;}
.ws17d{word-spacing:-3.259159px;}
.ws4c{word-spacing:-3.254700px;}
.ws14{word-spacing:-3.249000px;}
.ws67{word-spacing:-3.244759px;}
.ws174{word-spacing:-3.235160px;}
.wsd{word-spacing:-3.230360px;}
.ws184{word-spacing:-3.225560px;}
.ws17b{word-spacing:-3.220760px;}
.ws180{word-spacing:-3.211160px;}
.ws17{word-spacing:-3.203400px;}
.ws192{word-spacing:-3.191960px;}
.wsd5{word-spacing:-3.167960px;}
.ws9{word-spacing:-3.148761px;}
.ws50{word-spacing:-3.146400px;}
.ws22{word-spacing:-3.140700px;}
.ws14b{word-spacing:-3.138000px;}
.ws127{word-spacing:-3.132000px;}
.wsb{word-spacing:-3.129561px;}
.ws5{word-spacing:-3.126600px;}
.ws27{word-spacing:-3.124761px;}
.ws25{word-spacing:-3.123600px;}
.ws6{word-spacing:-3.115800px;}
.ws17a{word-spacing:-3.105561px;}
.wse{word-spacing:-3.091161px;}
.ws1{word-spacing:-3.088800px;}
.ws21{word-spacing:-3.083700px;}
.ws130{word-spacing:-3.072000px;}
.ws18c{word-spacing:-3.071962px;}
.ws186{word-spacing:-3.067162px;}
.ws126{word-spacing:-3.066000px;}
.ws179{word-spacing:-3.052762px;}
.ws4{word-spacing:-3.051000px;}
.ws176{word-spacing:-3.004762px;}
.ws173{word-spacing:-2.999962px;}
.ws4b{word-spacing:-2.975400px;}
.ws17e{word-spacing:-2.961563px;}
.ws29{word-spacing:-2.951963px;}
.ws4f{word-spacing:-2.941200px;}
.ws191{word-spacing:-2.918364px;}
.ws182{word-spacing:-2.894364px;}
.ws24{word-spacing:-2.884200px;}
.ws16{word-spacing:-2.855700px;}
.ws181{word-spacing:-2.836765px;}
.ws18a{word-spacing:-2.831965px;}
.ws171{word-spacing:-2.812765px;}
.ws16f{word-spacing:-2.793565px;}
.ws18b{word-spacing:-2.769565px;}
.ws175{word-spacing:-2.764765px;}
.ws17f{word-spacing:-2.759966px;}
.wsa{word-spacing:-2.750366px;}
.ws18d{word-spacing:-2.745566px;}
.wsfd{word-spacing:-2.724000px;}
.ws18f{word-spacing:-2.683166px;}
.wsfe{word-spacing:-2.658000px;}
.ws0{word-spacing:-2.649567px;}
.ws2{word-spacing:-2.602800px;}
.ws15{word-spacing:-2.553600px;}
.ws19{word-spacing:-2.394000px;}
.ws1a{word-spacing:-2.302800px;}
.ws1e{word-spacing:-2.297100px;}
.ws1d{word-spacing:-2.280000px;}
.ws1b{word-spacing:-2.251500px;}
.wsb8{word-spacing:-2.026753px;}
.ws1f{word-spacing:-2.017800px;}
.ws1c{word-spacing:-1.960800px;}
.wsae{word-spacing:-1.684753px;}
.ws3c{word-spacing:-1.055987px;}
.ws68{word-spacing:-1.003187px;}
.wsbc{word-spacing:-0.960000px;}
.wsec{word-spacing:-0.918000px;}
.ws3e{word-spacing:-0.916789px;}
.ws2e{word-spacing:-0.892789px;}
.ws36{word-spacing:-0.878389px;}
.ws93{word-spacing:-0.876000px;}
.ws90{word-spacing:-0.870000px;}
.ws6a{word-spacing:-0.859189px;}
.wse4{word-spacing:-0.852000px;}
.ws32{word-spacing:-0.815990px;}
.ws91{word-spacing:-0.810000px;}
.ws45{word-spacing:-0.806390px;}
.ws34{word-spacing:-0.791990px;}
.ws46{word-spacing:-0.772790px;}
.ws2f{word-spacing:-0.763190px;}
.ws38{word-spacing:-0.743991px;}
.ws42{word-spacing:-0.739191px;}
.ws3b{word-spacing:-0.724791px;}
.ws49{word-spacing:-0.710391px;}
.ws7e{word-spacing:-0.702000px;}
.ws33{word-spacing:-0.676792px;}
.ws3f{word-spacing:-0.671992px;}
.ws41{word-spacing:-0.647992px;}
.ws9c{word-spacing:-0.636000px;}
.ws3a{word-spacing:-0.633592px;}
.ws58{word-spacing:-0.624000px;}
.ws2b{word-spacing:-0.623992px;}
.ws40{word-spacing:-0.609592px;}
.ws35{word-spacing:-0.580793px;}
.ws31{word-spacing:-0.571193px;}
.ws96{word-spacing:-0.570000px;}
.ws82{word-spacing:-0.552000px;}
.ws37{word-spacing:-0.547193px;}
.ws48{word-spacing:-0.542393px;}
.ws162{word-spacing:-0.540000px;}
.ws6d{word-spacing:-0.534000px;}
.ws39{word-spacing:-0.527993px;}
.ws44{word-spacing:-0.523193px;}
.ws125{word-spacing:-0.518394px;}
.ws77{word-spacing:-0.516000px;}
.ws6b{word-spacing:-0.510000px;}
.wsca{word-spacing:-0.504000px;}
.ws124{word-spacing:-0.503994px;}
.ws113{word-spacing:-0.498000px;}
.ws43{word-spacing:-0.494394px;}
.ws3d{word-spacing:-0.470394px;}
.ws5f{word-spacing:-0.468000px;}
.ws7f{word-spacing:-0.462000px;}
.ws64{word-spacing:-0.450000px;}
.ws63{word-spacing:-0.432000px;}
.ws9a{word-spacing:-0.426000px;}
.ws53{word-spacing:-0.420000px;}
.ws151{word-spacing:-0.414000px;}
.ws72{word-spacing:-0.402000px;}
.wse9{word-spacing:-0.396000px;}
.ws2c{word-spacing:-0.393595px;}
.ws79{word-spacing:-0.390000px;}
.ws86{word-spacing:-0.384000px;}
.ws60{word-spacing:-0.378000px;}
.wsea{word-spacing:-0.372000px;}
.ws97{word-spacing:-0.366000px;}
.ws70{word-spacing:-0.360000px;}
.ws78{word-spacing:-0.354000px;}
.ws5d{word-spacing:-0.348000px;}
.ws73{word-spacing:-0.342000px;}
.ws69{word-spacing:-0.340796px;}
.ws8c{word-spacing:-0.336000px;}
.ws65{word-spacing:-0.330000px;}
.wse7{word-spacing:-0.324000px;}
.wsb4{word-spacing:-0.322753px;}
.wsc7{word-spacing:-0.318000px;}
.wsdd{word-spacing:-0.312000px;}
.ws47{word-spacing:-0.307196px;}
.ws81{word-spacing:-0.306000px;}
.ws153{word-spacing:-0.300000px;}
.ws123{word-spacing:-0.297596px;}
.ws6e{word-spacing:-0.294000px;}
.ws2d{word-spacing:-0.292796px;}
.ws84{word-spacing:-0.288000px;}
.ws52{word-spacing:-0.282000px;}
.ws54{word-spacing:-0.276000px;}
.ws7b{word-spacing:-0.270000px;}
.ws8e{word-spacing:-0.264000px;}
.ws95{word-spacing:-0.258000px;}
.ws83{word-spacing:-0.252000px;}
.ws8f{word-spacing:-0.246000px;}
.wsde{word-spacing:-0.240000px;}
.ws7c{word-spacing:-0.234000px;}
.ws98{word-spacing:-0.228000px;}
.ws9b{word-spacing:-0.216000px;}
.ws61{word-spacing:-0.210000px;}
.ws56{word-spacing:-0.204000px;}
.wsc9{word-spacing:-0.198000px;}
.ws12a{word-spacing:-0.196798px;}
.ws5c{word-spacing:-0.192000px;}
.ws8a{word-spacing:-0.180000px;}
.ws87{word-spacing:-0.174000px;}
.ws132{word-spacing:-0.172798px;}
.ws88{word-spacing:-0.168000px;}
.wsee{word-spacing:-0.162000px;}
.ws89{word-spacing:-0.156000px;}
.ws12d{word-spacing:-0.134398px;}
.wsa2{word-spacing:-0.132000px;}
.ws121{word-spacing:-0.129598px;}
.wse8{word-spacing:-0.120000px;}
.ws152{word-spacing:-0.114000px;}
.wsc6{word-spacing:-0.108000px;}
.ws122{word-spacing:-0.105599px;}
.wsa1{word-spacing:-0.102000px;}
.ws6c{word-spacing:-0.096000px;}
.ws66{word-spacing:-0.090000px;}
.ws5a{word-spacing:-0.084000px;}
.ws57{word-spacing:-0.078000px;}
.ws62{word-spacing:-0.072000px;}
.wscb{word-spacing:-0.066000px;}
.ws74{word-spacing:-0.060000px;}
.ws85{word-spacing:-0.054000px;}
.ws55{word-spacing:-0.048000px;}
.wsc5{word-spacing:-0.042000px;}
.wscc{word-spacing:-0.036000px;}
.ws9d{word-spacing:-0.030000px;}
.ws75{word-spacing:-0.024000px;}
.ws94{word-spacing:-0.018000px;}
.wsd1{word-spacing:-0.009600px;}
.wsdc{word-spacing:-0.006000px;}
.wscd{word-spacing:-0.004800px;}
.ws4a{word-spacing:0.000000px;}
.ws8d{word-spacing:0.012000px;}
.wsdb{word-spacing:0.018000px;}
.wsd6{word-spacing:0.024000px;}
.ws59{word-spacing:0.030000px;}
.wse6{word-spacing:0.033600px;}
.ws129{word-spacing:0.038400px;}
.ws7d{word-spacing:0.042000px;}
.ws5b{word-spacing:0.048000px;}
.ws114{word-spacing:0.057599px;}
.ws51{word-spacing:0.060000px;}
.wsa0{word-spacing:0.066000px;}
.wsd0{word-spacing:0.081599px;}
.ws6f{word-spacing:0.084000px;}
.ws7a{word-spacing:0.090000px;}
.ws5e{word-spacing:0.096000px;}
.ws92{word-spacing:0.114000px;}
.ws120{word-spacing:0.115199px;}
.ws12b{word-spacing:0.124798px;}
.ws80{word-spacing:0.126000px;}
.wsd7{word-spacing:0.138000px;}
.wsc8{word-spacing:0.151199px;}
.wse3{word-spacing:0.162000px;}
.ws76{word-spacing:0.168000px;}
.ws8b{word-spacing:0.180000px;}
.wsef{word-spacing:0.187198px;}
.wseb{word-spacing:0.198000px;}
.ws165{word-spacing:0.210000px;}
.ws109{word-spacing:0.211197px;}
.ws168{word-spacing:0.216000px;}
.ws161{word-spacing:0.222000px;}
.ws99{word-spacing:0.234000px;}
.wsd8{word-spacing:0.252000px;}
.wsa7{word-spacing:0.264000px;}
.wsce{word-spacing:0.292796px;}
.wsed{word-spacing:0.294000px;}
.ws9f{word-spacing:0.295198px;}
.ws107{word-spacing:0.306000px;}
.ws14f{word-spacing:0.312000px;}
.ws146{word-spacing:0.316796px;}
.wsdf{word-spacing:0.335996px;}
.ws16d{word-spacing:0.342000px;}
.wsda{word-spacing:0.384000px;}
.wsb2{word-spacing:0.390000px;}
.wsf4{word-spacing:0.426000px;}
.wsf6{word-spacing:0.438000px;}
.ws12c{word-spacing:0.465594px;}
.ws166{word-spacing:0.480000px;}
.wsd9{word-spacing:0.486000px;}
.ws103{word-spacing:0.492000px;}
.wsf7{word-spacing:0.498000px;}
.ws102{word-spacing:0.534000px;}
.wsf1{word-spacing:0.540000px;}
.wsa4{word-spacing:0.546000px;}
.ws108{word-spacing:0.618000px;}
.wsa6{word-spacing:0.648000px;}
.ws104{word-spacing:0.672000px;}
.wsa5{word-spacing:0.720000px;}
.wsf8{word-spacing:0.732000px;}
.wsf0{word-spacing:0.738000px;}
.wsf9{word-spacing:0.750000px;}
.ws106{word-spacing:0.762000px;}
.wsf3{word-spacing:0.768000px;}
.wsa3{word-spacing:0.804000px;}
.wsf2{word-spacing:0.816000px;}
.wsf5{word-spacing:0.840000px;}
.ws16a{word-spacing:0.846000px;}
.ws169{word-spacing:0.900000px;}
.ws105{word-spacing:0.960000px;}
.ws101{word-spacing:0.966000px;}
.ws167{word-spacing:0.978000px;}
.ws16b{word-spacing:1.014000px;}
.ws16c{word-spacing:1.020000px;}
.ws164{word-spacing:1.158000px;}
.wsb6{word-spacing:1.375247px;}
.wsaf{word-spacing:5.989025px;}
.wsad{word-spacing:5.995025px;}
.wsbe{word-spacing:7.494929px;}
.wsbb{word-spacing:9.877247px;}
.wsba{word-spacing:9.883247px;}
.wsa9{word-spacing:10.900541px;}
.wse1{word-spacing:27.662054px;}
.ws10b{word-spacing:29.020437px;}
.ws28{word-spacing:34.588368px;}
.wsb9{word-spacing:36.073247px;}
.wsb7{word-spacing:38.791247px;}
.wse2{word-spacing:39.661904px;}
.ws183{word-spacing:46.842614px;}
.ws189{word-spacing:46.847414px;}
.ws16e{word-spacing:46.909814px;}
.ws10d{word-spacing:49.213785px;}
.ws10e{word-spacing:54.637717px;}
.wsd2{word-spacing:54.872914px;}
.ws110{word-spacing:71.725503px;}
.wsd4{word-spacing:71.883901px;}
.wse0{word-spacing:75.771853px;}
.ws111{word-spacing:77.677429px;}
.wse5{word-spacing:86.998913px;}
.ws112{word-spacing:97.995575px;}
.ws10f{word-spacing:103.165110px;}
.ws138{word-spacing:142.548618px;}
.ws13b{word-spacing:148.202947px;}
.ws157{word-spacing:150.722916px;}
.ws13a{word-spacing:151.034912px;}
.ws13f{word-spacing:151.039712px;}
.ws135{word-spacing:152.479694px;}
.ws137{word-spacing:152.484494px;}
.ws139{word-spacing:153.103686px;}
.ws15e{word-spacing:153.151686px;}
.ws13e{word-spacing:155.532456px;}
.ws133{word-spacing:159.492406px;}
.ws136{word-spacing:159.540406px;}
.ws140{word-spacing:161.594780px;}
.ws13d{word-spacing:164.052349px;}
.ws15a{word-spacing:164.546743px;}
.ws13c{word-spacing:169.476282px;}
.ws159{word-spacing:177.295384px;}
.ws160{word-spacing:177.300184px;}
.ws134{word-spacing:181.413732px;}
.ws154{word-spacing:187.816852px;}
.ws158{word-spacing:204.194248px;}
.ws15c{word-spacing:218.142873px;}
.ws100{word-spacing:252.798000px;}
.ws15b{word-spacing:325.287134px;}
.ws15f{word-spacing:328.330296px;}
.ws15d{word-spacing:342.907714px;}
.ws11a{word-spacing:414.671617px;}
.ws119{word-spacing:421.487531px;}
.ws11e{word-spacing:423.157910px;}
.ws11c{word-spacing:424.607492px;}
.ws11f{word-spacing:427.650654px;}
.ws11d{word-spacing:427.655454px;}
.ws117{word-spacing:431.322608px;}
.ws118{word-spacing:431.663404px;}
.ws11b{word-spacing:437.519331px;}
.ws116{word-spacing:441.599280px;}
.ws115{word-spacing:446.788015px;}
.ws155{word-spacing:515.028762px;}
.ws150{word-spacing:521.862000px;}
.ws131{word-spacing:551.322000px;}
.ws14d{word-spacing:563.700000px;}
.ws156{word-spacing:563.848952px;}
.ws128{word-spacing:581.256000px;}
.wsc0{word-spacing:758.412000px;}
.ws14a{word-spacing:849.906000px;}
.ws142{word-spacing:850.380000px;}
.ws144{word-spacing:850.788000px;}
.ws12e{word-spacing:868.416000px;}
.ws14e{word-spacing:891.744000px;}
.ws10a{word-spacing:1341.194435px;}
._50{margin-left:-108.987438px;}
._53{margin-left:-13.579030px;}
._7{margin-left:-8.421087px;}
._b{margin-left:-4.826414px;}
._6{margin-left:-3.095988px;}
._0{margin-left:-1.113586px;}
._c{width:1.606200px;}
._e{width:2.632233px;}
._2{width:3.856800px;}
._8e{width:4.881539px;}
._4{width:9.369483px;}
._3{width:11.092661px;}
._a{width:12.510000px;}
._5{width:13.554600px;}
._9{width:14.861400px;}
._4e{width:16.180598px;}
._f{width:21.004537px;}
._90{width:23.865302px;}
._1{width:24.883200px;}
._d{width:30.108000px;}
._8f{width:31.260000px;}
._10{width:38.797915px;}
._27{width:39.858702px;}
._2a{width:51.666554px;}
._59{width:95.038812px;}
._11{width:98.019575px;}
._47{width:99.094761px;}
._2c{width:102.742716px;}
._4b{width:106.337871px;}
._29{width:109.237035px;}
._3e{width:118.582518px;}
._3d{width:125.048037px;}
._18{width:128.883189px;}
._52{width:148.217347px;}
._7a{width:154.020475px;}
._55{width:159.161210px;}
._7b{width:161.565980px;}
._7c{width:162.986763px;}
._54{width:164.729141px;}
._51{width:166.697116px;}
._57{width:169.145086px;}
._83{width:170.676267px;}
._7d{width:173.445832px;}
._9d{width:175.754603px;}
._56{width:177.112986px;}
._4c{width:178.336971px;}
._89{width:179.786553px;}
._58{width:181.173735px;}
._43{width:182.368920px;}
._79{width:185.311284px;}
._7e{width:187.389658px;}
._77{width:189.002437px;}
._40{width:190.581618px;}
._46{width:193.312784px;}
._2e{width:194.613567px;}
._3f{width:197.047137px;}
._45{width:198.880714px;}
._80{width:200.003900px;}
._2d{width:201.079086px;}
._a4{width:202.279071px;}
._44{width:203.344658px;}
._33{width:205.557430px;}
._48{width:208.768590px;}
._32{width:211.125361px;}
._2b{width:213.093336px;}
._30{width:215.589305px;}
._31{width:217.590880px;}
._28{width:219.558855px;}
._37{width:221.013237px;}
._2f{width:222.054824px;}
._35{width:223.509206px;}
._49{width:225.856377px;}
._36{width:227.478756px;}
._81{width:228.525143px;}
._34{width:229.974725px;}
._4a{width:231.808302px;}
._94{width:232.830690px;}
._4d{width:234.832265px;}
._78{width:236.728241px;}
._3b{width:238.101024px;}
._3a{width:244.566543px;}
._42{width:247.076911px;}
._9f{width:248.795290px;}
._3c{width:250.518468px;}
._41{width:253.542431px;}
._12{width:257.319983px;}
._92{width:268.052649px;}
._39{width:269.540631px;}
._1e{width:274.292571px;}
._38{width:276.006150px;}
._7f{width:281.996475px;}
._a0{width:288.442794px;}
._84{width:292.292346px;}
._19{width:313.930476px;}
._a1{width:317.247234px;}
._85{width:320.309596px;}
._93{width:328.915888px;}
._88{width:330.221472px;}
._8c{width:337.277384px;}
._86{width:339.547756px;}
._91{width:342.634117px;}
._8a{width:344.573293px;}
._87{width:346.310871px;}
._82{width:351.163610px;}
._8b{width:354.480369px;}
._8d{width:357.153936px;}
._21{width:373.939326px;}
._17{width:385.502381px;}
._22{width:398.630217px;}
._13{width:410.198072px;}
._62{width:434.149773px;}
._1a{width:435.364158px;}
._60{width:438.647317px;}
._61{width:442.660067px;}
._68{width:445.468032px;}
._64{width:449.543181px;}
._5f{width:452.591143px;}
._1d{width:456.795890px;}
._67{width:474.262872px;}
._66{width:488.768290px;}
._65{width:502.712116px;}
._5b{width:512.249597px;}
._20{width:524.091049px;}
._a5{width:525.286234px;}
._63{width:528.132598px;}
._16{width:535.514906px;}
._5d{width:537.425282px;}
._5e{width:542.076424px;}
._5c{width:551.369108px;}
._23{width:557.282634px;}
._5a{width:562.010575px;}
._98{width:565.548131px;}
._1f{width:568.706491px;}
._15{width:580.274346px;}
._1c{width:584.349496px;}
._69{width:597.318933px;}
._1b{width:617.349083px;}
._70{width:637.753628px;}
._71{width:668.233247px;}
._6b{width:672.265197px;}
._6c{width:689.732178px;}
._6d{width:711.288709px;}
._6f{width:737.006787px;}
._6a{width:765.292834px;}
._6e{width:776.380695px;}
._72{width:828.676041px;}
._9b{width:862.131623px;}
._9a{width:876.205047px;}
._a7{width:878.221022px;}
._9c{width:890.148873px;}
._96{width:912.823790px;}
._a6{width:926.431619px;}
._95{width:938.805865px;}
._73{width:1016.209697px;}
._75{width:1029.678329px;}
._24{width:1207.324108px;}
._14{width:1218.747965px;}
._76{width:1249.045187px;}
._97{width:1259.797052px;}
._99{width:1273.745678px;}
._74{width:1296.895789px;}
._26{width:1337.920876px;}
._4f{width:1424.598192px;}
._25{width:1481.592680px;}
._8{width:1507.013162px;}
._9e{width:1612.592642px;}
._a2{width:1802.329471px;}
._a3{width:2203.398057px;}
.fc5{color:transparent;}
.fc4{color:rgb(188,27,149);}
.fc6{color:rgb(16,15,13);}
.fc3{color:rgb(16,15,13);}
.fc2{color:rgb(66,93,177);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:30.000000px;}
.fsf{font-size:31.995000px;}
.fs3{font-size:35.995200px;}
.fsc{font-size:35.998800px;}
.fse{font-size:39.995400px;}
.fs4{font-size:44.999400px;}
.fs0{font-size:47.999400px;}
.fs2{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fsb{font-size:66.000000px;}
.fs6{font-size:68.998800px;}
.fsa{font-size:71.999400px;}
.fs5{font-size:87.000000px;}
.fs1{font-size:108.000000px;}
.fs8{font-size:123.839520px;}
.y0{bottom:0.000000px;}
.y7d{bottom:4.537500px;}
.y2b{bottom:8.513967px;}
.y2c{bottom:54.000000px;}
.y168{bottom:112.850894px;}
.y1ab{bottom:119.651569px;}
.y29{bottom:124.498500px;}
.y13e{bottom:124.498650px;}
.y1e8{bottom:124.500000px;}
.y4f{bottom:124.500064px;}
.y31c{bottom:124.500235px;}
.ya7{bottom:124.501500px;}
.y7b{bottom:124.503000px;}
.ycd{bottom:125.100000px;}
.y1ec{bottom:126.030000px;}
.y177{bottom:127.221000px;}
.y2bc{bottom:134.706000px;}
.y167{bottom:135.385413px;}
.y255{bottom:137.853765px;}
.y31b{bottom:138.787256px;}
.y4e{bottom:140.997458px;}
.y1aa{bottom:142.867679px;}
.y13d{bottom:143.971650px;}
.y114{bottom:143.973000px;}
.ye4{bottom:143.974500px;}
.ya6{bottom:143.976000px;}
.y7a{bottom:143.977500px;}
.y29e{bottom:144.058500px;}
.ycc{bottom:144.573000px;}
.y1c5{bottom:144.825000px;}
.y28{bottom:145.503000px;}
.y1eb{bottom:145.588500px;}
.y176{bottom:146.695500px;}
.y31a{bottom:152.989079px;}
.y166{bottom:154.179578px;}
.y2bb{bottom:154.180500px;}
.y2ec{bottom:156.138000px;}
.y1a9{bottom:157.153500px;}
.y4d{bottom:157.494852px;}
.y254{bottom:159.623893px;}
.y234{bottom:159.790500px;}
.y113{bottom:163.531500px;}
.y1e7{bottom:163.533000px;}
.ya5{bottom:163.534500px;}
.y79{bottom:163.536000px;}
.ycb{bottom:164.131500px;}
.y1c4{bottom:164.299500px;}
.y1ea{bottom:165.061500px;}
.y175{bottom:166.170000px;}
.y27{bottom:166.507500px;}
.y241{bottom:166.509000px;}
.y265{bottom:167.868000px;}
.y13c{bottom:169.483500px;}
.y319{bottom:172.462435px;}
.y165{bottom:172.888544px;}
.y2ba{bottom:173.653500px;}
.y4c{bottom:173.993445px;}
.y2eb{bottom:175.612500px;}
.y233{bottom:177.819000px;}
.y253{bottom:178.331659px;}
.y111{bottom:180.538500px;}
.y112{bottom:183.004500px;}
.y110{bottom:183.006000px;}
.ye3{bottom:183.007500px;}
.y78{bottom:183.009000px;}
.y29d{bottom:183.091500px;}
.yca{bottom:183.606000px;}
.y1c3{bottom:183.858000px;}
.y240{bottom:184.536000px;}
.y174{bottom:185.643000px;}
.y264{bottom:185.811000px;}
.y318{bottom:186.749457px;}
.y26{bottom:187.512000px;}
.y4b{bottom:190.490839px;}
.y164{bottom:191.596310px;}
.y2b9{bottom:193.212000px;}
.y2ea{bottom:195.085500px;}
.y232{bottom:195.847500px;}
.y252{bottom:197.125825px;}
.y317{bottom:201.035278px;}
.y21a{bottom:201.972011px;}
.y23f{bottom:202.479000px;}
.y1e6{bottom:202.480500px;}
.ya4{bottom:202.482000px;}
.y77{bottom:202.483500px;}
.y29c{bottom:202.650000px;}
.yc9{bottom:203.080500px;}
.y1c2{bottom:203.332500px;}
.y263{bottom:203.841000px;}
.y173{bottom:205.201500px;}
.y4a{bottom:206.988233px;}
.y25{bottom:208.516500px;}
.y163{bottom:210.390475px;}
.y2b8{bottom:212.686500px;}
.y10f{bottom:213.024000px;}
.y13b{bottom:213.451500px;}
.y2e9{bottom:214.644000px;}
.y251{bottom:215.834791px;}
.y316{bottom:220.509835px;}
.y1e5{bottom:222.039000px;}
.ye2{bottom:222.040500px;}
.y76{bottom:222.042000px;}
.y29b{bottom:222.124500px;}
.yc8{bottom:222.639000px;}
.y1c1{bottom:222.805500px;}
.y10d{bottom:223.315500px;}
.y49{bottom:223.485627px;}
.y172{bottom:224.676000px;}
.y231{bottom:226.632000px;}
.y219{bottom:229.014873px;}
.y162{bottom:229.098241px;}
.y24{bottom:229.521000px;}
.y10e{bottom:231.477020px;}
.y2b7{bottom:232.161000px;}
.y13a{bottom:232.924500px;}
.y2e8{bottom:234.118500px;}
.y250{bottom:234.627756px;}
.y315{bottom:234.710457px;}
.y23e{bottom:239.982000px;}
.y48{bottom:239.983020px;}
.y1e4{bottom:241.513500px;}
.ya3{bottom:241.515000px;}
.y75{bottom:241.516500px;}
.yc7{bottom:242.112000px;}
.y1c0{bottom:242.364000px;}
.y262{bottom:242.704500px;}
.y171{bottom:244.150500px;}
.y230{bottom:246.106500px;}
.y161{bottom:247.892406px;}
.y23{bottom:250.525500px;}
.ye1{bottom:250.528500px;}
.y2b6{bottom:251.719500px;}
.y139{bottom:252.399000px;}
.y24f{bottom:253.336722px;}
.y2e7{bottom:253.593000px;}
.y314{bottom:254.270213px;}
.y47{bottom:256.480414px;}
.y218{bottom:257.077722px;}
.y29a{bottom:259.542000px;}
.y1e3{bottom:260.986500px;}
.y74{bottom:260.989500px;}
.yc6{bottom:261.586500px;}
.y1bf{bottom:261.838500px;}
.y170{bottom:263.709000px;}
.y22f{bottom:265.665000px;}
.y160{bottom:266.601372px;}
.y313{bottom:268.472035px;}
.ye0{bottom:270.003000px;}
.y10c{bottom:271.021500px;}
.y2b5{bottom:271.194000px;}
.y138{bottom:271.873500px;}
.y24e{bottom:272.129687px;}
.y46{bottom:272.977808px;}
.y2e6{bottom:273.151500px;}
.y217{bottom:275.870687px;}
.y22{bottom:276.037500px;}
.y299{bottom:277.570500px;}
.y1e2{bottom:280.461000px;}
.ya2{bottom:280.462500px;}
.y73{bottom:280.464000px;}
.yc5{bottom:281.145000px;}
.y1be{bottom:281.313000px;}
.y312{bottom:282.757857px;}
.y16f{bottom:283.183500px;}
.y23d{bottom:283.521000px;}
.y22e{bottom:285.139500px;}
.y15f{bottom:285.394338px;}
.y261{bottom:287.518500px;}
.ydf{bottom:289.476000px;}
.y10b{bottom:290.580000px;}
.y2b4{bottom:290.667000px;}
.y24d{bottom:290.838653px;}
.y137{bottom:291.432000px;}
.y2e5{bottom:292.626000px;}
.y216{bottom:294.579653px;}
.y298{bottom:295.599000px;}
.y311{bottom:296.959679px;}
.y45{bottom:298.489489px;}
.y1e1{bottom:300.019500px;}
.y72{bottom:300.022500px;}
.yc4{bottom:300.619500px;}
.y1bd{bottom:300.871500px;}
.y23c{bottom:301.464000px;}
.y16e{bottom:302.656500px;}
.y15e{bottom:304.103304px;}
.y22d{bottom:304.612500px;}
.y260{bottom:305.547000px;}
.yde{bottom:309.036000px;}
.y24c{bottom:309.632818px;}
.y10a{bottom:310.054500px;}
.y2b3{bottom:310.225500px;}
.y136{bottom:310.905000px;}
.y2e4{bottom:312.099000px;}
.y215{bottom:313.373818px;}
.y44{bottom:314.988083px;}
.y310{bottom:316.518235px;}
.y21{bottom:316.689000px;}
.y23b{bottom:319.494000px;}
.ya1{bottom:319.495500px;}
.y71{bottom:319.497000px;}
.yc3{bottom:320.094000px;}
.y1bc{bottom:320.346000px;}
.y16d{bottom:322.215000px;}
.y15d{bottom:322.896269px;}
.y25f{bottom:323.490000px;}
.y22c{bottom:324.171000px;}
.y297{bottom:326.977500px;}
.y24b{bottom:328.340584px;}
.ydd{bottom:328.509000px;}
.y2b2{bottom:329.700000px;}
.y135{bottom:330.379500px;}
.y30f{bottom:330.720057px;}
.y2e3{bottom:331.657500px;}
.y214{bottom:332.081584px;}
.y20{bottom:337.693500px;}
.y109{bottom:338.542500px;}
.ya0{bottom:338.970000px;}
.y70{bottom:338.971500px;}
.y1e0{bottom:339.222000px;}
.yc2{bottom:339.567000px;}
.y1bb{bottom:339.819000px;}
.y43{bottom:340.499764px;}
.y15c{bottom:341.605235px;}
.y16c{bottom:341.689500px;}
.y22b{bottom:343.645500px;}
.y30e{bottom:345.007078px;}
.y24a{bottom:347.049550px;}
.ydc{bottom:347.983500px;}
.y2b1{bottom:349.174500px;}
.y134{bottom:349.938000px;}
.y213{bottom:350.875749px;}
.y2e2{bottom:351.132000px;}
.y23a{bottom:356.995500px;}
.y42{bottom:356.997158px;}
.y1df{bottom:357.250500px;}
.y108{bottom:358.017000px;}
.y9f{bottom:358.528500px;}
.y6f{bottom:358.530000px;}
.y1f{bottom:358.698000px;}
.yc1{bottom:359.125500px;}
.y30c{bottom:359.292900px;}
.y1ba{bottom:359.293500px;}
.y15b{bottom:360.399400px;}
.y16b{bottom:361.164000px;}
.y30d{bottom:361.589671px;}
.y25e{bottom:362.353500px;}
.y22a{bottom:363.120000px;}
.y296{bottom:364.479000px;}
.y249{bottom:365.842516px;}
.ydb{bottom:367.542000px;}
.y2b0{bottom:368.647500px;}
.y133{bottom:369.412500px;}
.y212{bottom:369.583516px;}
.y2e1{bottom:370.606500px;}
.y41{bottom:373.494551px;}
.y1de{bottom:375.195000px;}
.y6e{bottom:378.003000px;}
.yc0{bottom:378.600000px;}
.y30b{bottom:378.767456px;}
.y1b9{bottom:378.852000px;}
.y15a{bottom:379.107166px;}
.y1e{bottom:379.702500px;}
.y107{bottom:379.870500px;}
.y16a{bottom:380.722500px;}
.y295{bottom:382.423500px;}
.y229{bottom:382.593000px;}
.y248{bottom:384.551482px;}
.yda{bottom:387.016500px;}
.y2af{bottom:388.207500px;}
.y211{bottom:388.377681px;}
.y132{bottom:388.885500px;}
.y244{bottom:388.970569px;}
.y40{bottom:389.991945px;}
.y2e0{bottom:390.165000px;}
.y30a{bottom:392.968079px;}
.y9e{bottom:397.476000px;}
.y6d{bottom:397.477500px;}
.y159{bottom:397.901331px;}
.ybf{bottom:398.074500px;}
.y1b8{bottom:398.326500px;}
.y106{bottom:399.345000px;}
.y227{bottom:399.600000px;}
.y169{bottom:400.195500px;}
.y294{bottom:400.452000px;}
.y1d{bottom:400.707000px;}
.y228{bottom:402.151500px;}
.y226{bottom:402.153000px;}
.y247{bottom:403.345647px;}
.y1dc{bottom:405.892500px;}
.y3f{bottom:406.489339px;}
.yd9{bottom:406.489500px;}
.y210{bottom:407.086647px;}
.y25d{bottom:407.253000px;}
.y2ae{bottom:407.680500px;}
.y1dd{bottom:408.444000px;}
.y131{bottom:408.445500px;}
.y2df{bottom:409.639500px;}
.y243{bottom:412.271878px;}
.y309{bottom:412.527834px;}
.y104{bottom:416.352000px;}
.y158{bottom:416.610297px;}
.y6c{bottom:417.036000px;}
.ybe{bottom:417.633000px;}
.y1b7{bottom:417.799500px;}
.y105{bottom:418.818000px;}
.y103{bottom:418.819500px;}
.y225{bottom:421.626000px;}
.y1c{bottom:421.711500px;}
.y246{bottom:422.053413px;}
.y3e{bottom:422.986733px;}
.y25c{bottom:425.196000px;}
.y1db{bottom:425.452500px;}
.y20f{bottom:425.879612px;}
.yd8{bottom:425.964000px;}
.y242{bottom:426.472500px;}
.y308{bottom:426.728457px;}
.y2ad{bottom:427.155000px;}
.y1da{bottom:427.918500px;}
.y2de{bottom:429.112500px;}
.y293{bottom:431.916000px;}
.y157{bottom:435.403262px;}
.y9d{bottom:436.509000px;}
.y6b{bottom:436.510500px;}
.y19a{bottom:437.106025px;}
.ybd{bottom:437.107500px;}
.y1b6{bottom:437.358000px;}
.y102{bottom:438.379500px;}
.y245{bottom:440.847578px;}
.y307{bottom:441.015478px;}
.y224{bottom:441.100500px;}
.y1b{bottom:442.716000px;}
.y25b{bottom:443.226000px;}
.y130{bottom:443.650500px;}
.y20e{bottom:444.588578px;}
.yd7{bottom:445.522500px;}
.y2ac{bottom:446.713500px;}
.y1d9{bottom:447.393000px;}
.y3d{bottom:448.498414px;}
.y2dd{bottom:448.587000px;}
.y156{bottom:454.112229px;}
.y9c{bottom:455.983500px;}
.y6a{bottom:455.985000px;}
.y101{bottom:456.406520px;}
.ybc{bottom:456.580500px;}
.y1b5{bottom:456.918000px;}
.y199{bottom:459.556544px;}
.y306{bottom:460.490035px;}
.y100{bottom:460.573500px;}
.y223{bottom:460.659000px;}
.y12f{bottom:461.680500px;}
.y20d{bottom:463.381543px;}
.y1a{bottom:463.720500px;}
.yd6{bottom:464.997000px;}
.y2ab{bottom:466.188000px;}
.y1d8{bottom:466.951500px;}
.y2dc{bottom:468.145500px;}
.y292{bottom:469.332000px;}
.y155{bottom:472.905194px;}
.y3c{bottom:474.010095px;}
.y305{bottom:474.775856px;}
.y9b{bottom:475.542000px;}
.y69{bottom:475.543500px;}
.ybb{bottom:476.139000px;}
.y1b4{bottom:476.391000px;}
.y198{bottom:478.349509px;}
.y222{bottom:480.133500px;}
.y25a{bottom:482.089500px;}
.y20c{bottom:482.090509px;}
.yd5{bottom:484.470000px;}
.y19{bottom:484.725000px;}
.y2aa{bottom:485.661000px;}
.y1d7{bottom:486.426000px;}
.y291{bottom:487.275000px;}
.y2db{bottom:487.620000px;}
.y304{bottom:488.977679px;}
.yfe{bottom:490.591500px;}
.y12e{bottom:490.933500px;}
.y154{bottom:491.614160px;}
.y1a4{bottom:491.700000px;}
.y68{bottom:495.016500px;}
.yba{bottom:495.613500px;}
.y1b3{bottom:495.865500px;}
.y197{bottom:497.058475px;}
.y3b{bottom:499.521776px;}
.y221{bottom:499.608000px;}
.yfa{bottom:500.881500px;}
.y20b{bottom:500.884674px;}
.y196{bottom:501.565619px;}
.yd4{bottom:504.030000px;}
.y2a9{bottom:505.219500px;}
.y290{bottom:505.306500px;}
.y18{bottom:505.729500px;}
.y1d6{bottom:505.899000px;}
.y2da{bottom:507.093000px;}
.y303{bottom:508.536234px;}
.y153{bottom:510.407125px;}
.y12d{bottom:510.408000px;}
.yfc{bottom:510.576000px;}
.yfd{bottom:510.747000px;}
.y1a3{bottom:511.174500px;}
.y9a{bottom:514.489500px;}
.y67{bottom:514.491000px;}
.yb9{bottom:515.088000px;}
.y1b2{bottom:515.424000px;}
.y195{bottom:515.851440px;}
.y220{bottom:519.166500px;}
.y20a{bottom:519.592440px;}
.yfb{bottom:519.760500px;}
.y302{bottom:522.738057px;}
.y1d4{bottom:522.907500px;}
.yd3{bottom:523.503000px;}
.y2a8{bottom:524.694000px;}
.y3a{bottom:525.033457px;}
.y1d5{bottom:525.457500px;}
.y1d3{bottom:525.459000px;}
.yff{bottom:526.392000px;}
.y2d9{bottom:526.651500px;}
.y259{bottom:526.903500px;}
.y152{bottom:529.116091px;}
.y12c{bottom:529.882500px;}
.y1a2{bottom:530.647500px;}
.y17{bottom:531.241500px;}
.y99{bottom:533.964000px;}
.y66{bottom:533.965500px;}
.y194{bottom:534.560407px;}
.yb8{bottom:534.646500px;}
.y1b1{bottom:534.898500px;}
.y28f{bottom:536.770500px;}
.y301{bottom:537.025078px;}
.y209{bottom:538.386605px;}
.y21f{bottom:538.639500px;}
.yf9{bottom:538.641000px;}
.y38{bottom:541.530851px;}
.y39{bottom:541.871647px;}
.y2a7{bottom:544.168500px;}
.y258{bottom:544.932000px;}
.y1d2{bottom:544.933500px;}
.yf8{bottom:545.358020px;}
.y2d8{bottom:546.126000px;}
.y151{bottom:547.910256px;}
.y12b{bottom:549.441000px;}
.yf7{bottom:549.525000px;}
.y1a1{bottom:550.207500px;}
.yd2{bottom:551.991000px;}
.y193{bottom:553.354572px;}
.y98{bottom:553.522500px;}
.y65{bottom:553.524000px;}
.yb7{bottom:554.119500px;}
.y1b0{bottom:554.371500px;}
.y300{bottom:556.498435px;}
.y208{bottom:557.095572px;}
.y21e{bottom:558.114000px;}
.y1d0{bottom:561.940500px;}
.y150{bottom:562.110879px;}
.y257{bottom:562.876500px;}
.y2a6{bottom:563.641500px;}
.y1d1{bottom:564.406500px;}
.y1cf{bottom:564.408000px;}
.y2d7{bottom:565.600500px;}
.y37{bottom:567.042532px;}
.y12a{bottom:568.915500px;}
.y1a0{bottom:569.680500px;}
.y2ff{bottom:570.785456px;}
.yd1{bottom:571.465500px;}
.y16{bottom:571.977000px;}
.y192{bottom:572.062338px;}
.y64{bottom:572.997000px;}
.yb6{bottom:573.594000px;}
.y1af{bottom:573.846000px;}
.y28e{bottom:574.186500px;}
.y207{bottom:575.888537px;}
.y21d{bottom:577.588500px;}
.y2a5{bottom:583.201500px;}
.y36{bottom:583.541126px;}
.y1ce{bottom:583.966500px;}
.y14f{bottom:584.391000px;}
.y2fe{bottom:584.986079px;}
.y2d6{bottom:585.159000px;}
.yf6{bottom:587.707500px;}
.y129{bottom:588.558000px;}
.y19f{bottom:589.155000px;}
.y191{bottom:590.856503px;}
.y28d{bottom:592.213500px;}
.y97{bottom:592.470000px;}
.y63{bottom:592.471500px;}
.y15{bottom:592.981500px;}
.yb5{bottom:593.068500px;}
.y1ae{bottom:593.404500px;}
.y206{bottom:594.597503px;}
.y21c{bottom:597.147000px;}
.yd0{bottom:600.037500px;}
.y35{bottom:600.038520px;}
.y256{bottom:601.738500px;}
.y2a4{bottom:602.674500px;}
.y1cd{bottom:603.439500px;}
.y2fd{bottom:604.460635px;}
.y2d5{bottom:604.633500px;}
.y19e{bottom:608.713500px;}
.yf5{bottom:609.478500px;}
.y190{bottom:609.564269px;}
.y28c{bottom:610.159500px;}
.y128{bottom:610.582500px;}
.y62{bottom:612.030000px;}
.yb4{bottom:612.627000px;}
.y1ad{bottom:612.879000px;}
.y205{bottom:613.305269px;}
.y14{bottom:613.900500px;}
.y34{bottom:616.535913px;}
.y21b{bottom:616.620000px;}
.y2fc{bottom:618.746457px;}
.y14e{bottom:619.258500px;}
.y2a3{bottom:622.149000px;}
.y1cc{bottom:622.914000px;}
.y2d4{bottom:624.106500px;}
.ycf{bottom:625.466325px;}
.y126{bottom:627.591000px;}
.y19d{bottom:628.188000px;}
.y18f{bottom:628.358434px;}
.yf4{bottom:629.037000px;}
.y127{bottom:630.141000px;}
.y125{bottom:630.142500px;}
.y96{bottom:631.503000px;}
.y61{bottom:631.504500px;}
.y204{bottom:632.099434px;}
.yb3{bottom:632.101500px;}
.y1ac{bottom:632.352000px;}
.y33{bottom:633.033307px;}
.y2fb{bottom:633.033478px;}
.y13{bottom:634.905000px;}
.y14d{bottom:638.817000px;}
.y28b{bottom:641.623500px;}
.y2a2{bottom:641.707500px;}
.y1cb{bottom:642.472500px;}
.y2d3{bottom:643.665000px;}
.y18e{bottom:647.067400px;}
.y19c{bottom:647.661000px;}
.yf3{bottom:648.511500px;}
.y239{bottom:648.681590px;}
.y124{bottom:649.701000px;}
.y203{bottom:650.808400px;}
.y95{bottom:650.977500px;}
.y60{bottom:650.979000px;}
.yb2{bottom:651.574500px;}
.yce{bottom:652.507500px;}
.y2fa{bottom:652.508035px;}
.y12{bottom:655.909500px;}
.y32{bottom:657.609000px;}
.y27b{bottom:657.781162px;}
.y14c{bottom:658.291500px;}
.y2a1{bottom:661.182000px;}
.y1ca{bottom:661.947000px;}
.y2d2{bottom:663.139500px;}
.y1c8{bottom:664.412569px;}
.y336{bottom:664.840378px;}
.yf2{bottom:665.518500px;}
.y18d{bottom:665.860365px;}
.y2f9{bottom:666.708657px;}
.y19b{bottom:667.219500px;}
.yf1{bottom:667.984500px;}
.y202{bottom:669.601365px;}
.y237{bottom:669.940500px;}
.y94{bottom:670.536000px;}
.y5f{bottom:670.537500px;}
.yb1{bottom:671.133000px;}
.y238{bottom:671.896500px;}
.y236{bottom:671.896679px;}
.y123{bottom:672.493500px;}
.y11{bottom:676.914000px;}
.y14b{bottom:677.764500px;}
.y28a{bottom:679.039500px;}
.y335{bottom:679.041001px;}
.y27a{bottom:680.231681px;}
.y2a0{bottom:680.655000px;}
.y2f8{bottom:680.995679px;}
.y1c9{bottom:681.420000px;}
.y2d1{bottom:682.614000px;}
.y18c{bottom:684.569331px;}
.y235{bottom:686.182500px;}
.yf0{bottom:687.544500px;}
.y1c7{bottom:687.628679px;}
.y201{bottom:688.310331px;}
.y5e{bottom:690.010500px;}
.yb0{bottom:690.607500px;}
.y334{bottom:693.328022px;}
.y2f7{bottom:695.281500px;}
.y289{bottom:697.068000px;}
.y14a{bottom:697.324500px;}
.y279{bottom:699.025846px;}
.y29f{bottom:700.213500px;}
.y1c6{bottom:701.914500px;}
.y2d0{bottom:702.087000px;}
.y10{bottom:702.424500px;}
.y18b{bottom:703.362296px;}
.y1a8{bottom:704.127887px;}
.yef{bottom:705.571520px;}
.y200{bottom:707.103296px;}
.y93{bottom:709.483500px;}
.y5d{bottom:709.485000px;}
.y122{bottom:709.570500px;}
.yee{bottom:709.740000px;}
.yaf{bottom:710.082000px;}
.y333{bottom:712.802578px;}
.y288{bottom:715.012500px;}
.y2f6{bottom:715.521000px;}
.y149{bottom:716.797500px;}
.y278{bottom:717.733613px;}
.y1e9{bottom:718.329709px;}
.y2cf{bottom:721.647000px;}
.y18a{bottom:722.071263px;}
.y1ff{bottom:725.812263px;}
.y1a7{bottom:726.578406px;}
.y332{bottom:727.088400px;}
.y92{bottom:728.958000px;}
.y5c{bottom:728.959500px;}
.yae{bottom:729.640500px;}
.y148{bottom:736.272000px;}
.y277{bottom:736.527778px;}
.yf{bottom:737.121000px;}
.y2bd{bottom:737.122674px;}
.y121{bottom:737.293500px;}
.yec{bottom:739.758000px;}
.y189{bottom:740.865428px;}
.y2ce{bottom:741.120000px;}
.y331{bottom:741.290222px;}
.y31{bottom:744.520500px;}
.y1fe{bottom:744.606428px;}
.y1a6{bottom:745.372571px;}
.y287{bottom:746.476500px;}
.y91{bottom:748.516500px;}
.y5b{bottom:748.518000px;}
.yad{bottom:749.115000px;}
.yeb{bottom:750.046500px;}
.y276{bottom:755.236744px;}
.y147{bottom:755.830500px;}
.y120{bottom:756.852000px;}
.y188{bottom:759.573194px;}
.y2cd{bottom:760.594500px;}
.y330{bottom:760.848778px;}
.y30{bottom:761.782500px;}
.y1fd{bottom:763.314194px;}
.y5a{bottom:767.991000px;}
.yac{bottom:768.588000px;}
.yed{bottom:772.582500px;}
.y275{bottom:774.029709px;}
.y32f{bottom:775.050600px;}
.y146{bottom:775.305000px;}
.y11f{bottom:776.325000px;}
.y187{bottom:778.367359px;}
.y2f{bottom:778.960500px;}
.y2cc{bottom:780.153000px;}
.yea{bottom:781.768500px;}
.y1fc{bottom:782.108359px;}
.y286{bottom:783.892500px;}
.y90{bottom:787.464000px;}
.yab{bottom:788.062500px;}
.ye9{bottom:788.485520px;}
.y32e{bottom:789.337622px;}
.y2f5{bottom:790.612500px;}
.ye8{bottom:792.654000px;}
.y274{bottom:792.738675px;}
.y59{bottom:793.501500px;}
.y145{bottom:794.778000px;}
.y11e{bottom:795.799500px;}
.y2e{bottom:796.224000px;}
.y186{bottom:797.075125px;}
.ye{bottom:797.500425px;}
.y2cb{bottom:799.627500px;}
.y1fb{bottom:800.816125px;}
.y285{bottom:801.921000px;}
.yaa{bottom:807.621000px;}
.y32d{bottom:808.810978px;}
.y273{bottom:811.531640px;}
.y8f{bottom:812.976000px;}
.y2d{bottom:813.486000px;}
.y144{bottom:814.338000px;}
.y11d{bottom:815.274000px;}
.y185{bottom:815.869290px;}
.y2f4{bottom:817.654500px;}
.y2ca{bottom:819.100500px;}
.y1fa{bottom:819.610290px;}
.y284{bottom:819.951000px;}
.y32c{bottom:823.098000px;}
.ya9{bottom:827.095500px;}
.yc{bottom:827.434050px;}
.yd{bottom:827.688447px;}
.y272{bottom:830.240606px;}
.y143{bottom:833.811000px;}
.y184{bottom:834.578256px;}
.y11c{bottom:834.832500px;}
.y32b{bottom:837.298622px;}
.ye7{bottom:837.639000px;}
.y1f9{bottom:838.319256px;}
.y2c9{bottom:838.659000px;}
.yb{bottom:842.485462px;}
.y2f3{bottom:844.612500px;}
.ya8{bottom:846.568500px;}
.y271{bottom:849.033571px;}
.y283{bottom:851.329500px;}
.y142{bottom:853.371000px;}
.y183{bottom:853.371221px;}
.y11b{bottom:854.307000px;}
.y32a{bottom:856.858378px;}
.y1f8{bottom:857.112221px;}
.ye6{bottom:857.113500px;}
.ya{bottom:857.452875px;}
.y2c8{bottom:858.133500px;}
.y8e{bottom:866.127000px;}
.y270{bottom:867.742537px;}
.y329{bottom:871.059000px;}
.y2f2{bottom:871.654500px;}
.y182{bottom:872.080187px;}
.y9{bottom:872.419088px;}
.y141{bottom:872.929500px;}
.y11a{bottom:873.780000px;}
.y1f7{bottom:875.821187px;}
.ye5{bottom:876.588000px;}
.y2c7{bottom:877.608000px;}
.y328{bottom:885.346022px;}
.y8d{bottom:885.601500px;}
.y26f{bottom:886.536703px;}
.y58{bottom:887.131575px;}
.y8{bottom:887.470500px;}
.y282{bottom:888.831000px;}
.y181{bottom:890.873153px;}
.y140{bottom:892.402500px;}
.y119{bottom:893.338500px;}
.y1f6{bottom:894.614153px;}
.y2c6{bottom:897.081000px;}
.y2f1{bottom:898.612500px;}
.y327{bottom:904.820578px;}
.y8c{bottom:905.076000px;}
.y26e{bottom:905.244469px;}
.y281{bottom:906.774000px;}
.y57{bottom:908.137500px;}
.y180{bottom:909.582119px;}
.y118{bottom:912.813000px;}
.y1f5{bottom:913.323119px;}
.y6{bottom:914.428500px;}
.y2c5{bottom:916.641000px;}
.y13f{bottom:917.914500px;}
.y326{bottom:919.106400px;}
.y7{bottom:920.466000px;}
.y26d{bottom:924.038634px;}
.y8b{bottom:924.634500px;}
.y280{bottom:924.805500px;}
.y2f0{bottom:925.654500px;}
.y17f{bottom:928.376284px;}
.y56{bottom:929.142000px;}
.y4{bottom:930.925500px;}
.y1f4{bottom:932.117284px;}
.y325{bottom:933.308222px;}
.y2c4{bottom:936.114000px;}
.y5{bottom:936.964500px;}
.y26c{bottom:942.747600px;}
.y8a{bottom:944.109000px;}
.y17e{bottom:947.084050px;}
.y116{bottom:948.360000px;}
.y55{bottom:950.146500px;}
.y1f3{bottom:950.825050px;}
.y2ef{bottom:952.611000px;}
.y324{bottom:952.866778px;}
.y2c3{bottom:955.588500px;}
.y27f{bottom:956.269500px;}
.y26b{bottom:961.540565px;}
.y89{bottom:963.582000px;}
.y17d{bottom:965.793016px;}
.y323{bottom:967.068600px;}
.y3{bottom:968.430900px;}
.y1f2{bottom:969.619215px;}
.y54{bottom:971.151000px;}
.y115{bottom:973.872000px;}
.y2c2{bottom:975.147000px;}
.y2ee{bottom:979.654500px;}
.y26a{bottom:980.249531px;}
.y321{bottom:981.355622px;}
.y88{bottom:983.140500px;}
.y322{bottom:984.075988px;}
.y17c{bottom:984.587181px;}
.y117{bottom:985.605000px;}
.y83{bottom:988.067124px;}
.y1f1{bottom:988.328181px;}
.y53{bottom:992.155500px;}
.y27e{bottom:993.685500px;}
.y2c1{bottom:994.621500px;}
.y269{bottom:998.957297px;}
.y320{bottom:1000.828978px;}
.y2{bottom:1002.189000px;}
.y87{bottom:1002.615000px;}
.y17b{bottom:1003.294947px;}
.y82{bottom:1004.564518px;}
.y2ed{bottom:1006.611000px;}
.y1f0{bottom:1007.121146px;}
.y27d{bottom:1011.628500px;}
.y52{bottom:1013.074500px;}
.y2c0{bottom:1014.094500px;}
.y31f{bottom:1015.116000px;}
.y268{bottom:1017.751462px;}
.y17a{bottom:1022.089112px;}
.y86{bottom:1022.089500px;}
.y1ef{bottom:1025.830112px;}
.y1a5{bottom:1026.596256px;}
.y31e{bottom:1029.316622px;}
.y27c{bottom:1029.657000px;}
.y81{bottom:1030.076199px;}
.y2bf{bottom:1033.653000px;}
.y51{bottom:1034.079000px;}
.y1{bottom:1035.949500px;}
.y267{bottom:1036.460428px;}
.y179{bottom:1040.796879px;}
.y85{bottom:1041.562500px;}
.y1ee{bottom:1044.623077px;}
.y80{bottom:1046.574793px;}
.y31d{bottom:1048.791179px;}
.y2be{bottom:1059.079500px;}
.y50{bottom:1059.591000px;}
.y84{bottom:1061.121000px;}
.y266{bottom:1062.736500px;}
.y7f{bottom:1063.072186px;}
.y178{bottom:1063.077000px;}
.y1ed{bottom:1066.818000px;}
.y2a{bottom:1107.042000px;}
.y7c{bottom:1114.101000px;}
.y7e{bottom:1118.692500px;}
.h10{height:18.538650px;}
.h29{height:23.996250px;}
.h21{height:25.631146px;}
.h4{height:27.932275px;}
.h1a{height:28.476725px;}
.h27{height:29.996550px;}
.h9{height:34.781100px;}
.h28{height:35.999550px;}
.h1{height:37.199535px;}
.h5{height:37.247534px;}
.he{height:39.119511px;}
.hd{height:40.559493px;}
.hc{height:41.718229px;}
.h3{height:41.904000px;}
.h19{height:42.720000px;}
.h8{height:44.175000px;}
.hb{height:45.000000px;}
.h24{height:46.320000px;}
.h1b{height:46.494000px;}
.h17{height:46.500000px;}
.h13{height:47.393146px;}
.h1c{height:47.399146px;}
.h15{height:51.023070px;}
.h11{height:52.800000px;}
.h7{height:53.543069px;}
.h12{height:53.999550px;}
.hf{height:55.871534px;}
.h25{height:56.579146px;}
.h26{height:56.585146px;}
.h18{height:61.667919px;}
.h20{height:64.067064px;}
.h6{height:70.905000px;}
.h1e{height:78.774000px;}
.h1d{height:83.238000px;}
.h22{height:87.654000px;}
.h2{height:88.020000px;}
.h23{height:92.754000px;}
.h16{height:94.128000px;}
.h1f{height:96.713146px;}
.ha{height:99.071616px;}
.h14{height:102.485919px;}
.h0{height:1188.000000px;}
.w2{width:84.784200px;}
.w1{width:160.980000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xc{left:52.044150px;}
.xd{left:54.000000px;}
.x3c{left:57.400757px;}
.x3d{left:61.993100px;}
.x42{left:64.969063px;}
.x3e{left:65.990250px;}
.x6f{left:68.371020px;}
.x7a{left:69.391008px;}
.xe{left:71.433000px;}
.x79{left:73.048562px;}
.x6e{left:81.807252px;}
.x78{left:82.827240px;}
.x6c{left:84.102824px;}
.x77{left:85.124011px;}
.xf{left:92.947531px;}
.x70{left:95.583080px;}
.x10{left:109.954918px;}
.x5d{left:113.272059px;}
.x5c{left:117.013612px;}
.x5b{left:126.792290px;}
.x58{left:129.089061px;}
.x43{left:137.252559px;}
.x45{left:139.803727px;}
.x56{left:141.164510px;}
.x41{left:142.864889px;}
.x40{left:144.481269px;}
.x47{left:165.231000px;}
.x46{left:170.248500px;}
.x6a{left:171.353733px;}
.x6d{left:172.798515px;}
.x6b{left:175.264484px;}
.x76{left:177.986050px;}
.x3f{left:183.003187px;}
.x34{left:185.639554px;}
.x5a{left:293.214610px;}
.x59{left:295.254584px;}
.x35{left:297.466157px;}
.x1{left:300.018000px;}
.x32{left:301.975500px;}
.x63{left:304.869000px;}
.x36{left:306.990438px;}
.x74{left:309.630000px;}
.x57{left:311.327183px;}
.x54{left:312.522000px;}
.x48{left:315.325500px;}
.x11{left:317.961000px;}
.x72{left:319.152000px;}
.x50{left:321.534000px;}
.x51{left:324.936000px;}
.x19{left:326.041500px;}
.x2c{left:328.252500px;}
.x22{left:330.718500px;}
.x1a{left:331.993500px;}
.x2d{left:333.609000px;}
.x23{left:336.670500px;}
.x18{left:347.811079px;}
.x2e{left:350.532000px;}
.x21{left:352.402500px;}
.x2f{left:355.890000px;}
.x49{left:361.672500px;}
.x64{left:366.094500px;}
.x65{left:369.156000px;}
.x52{left:377.574000px;}
.x33{left:380.635500px;}
.x53{left:384.208500px;}
.x30{left:386.589000px;}
.x55{left:387.697500px;}
.x37{left:389.308209px;}
.x75{left:391.351500px;}
.x31{left:392.371500px;}
.x28{left:393.732000px;}
.x66{left:395.602500px;}
.x69{left:397.048500px;}
.x2{left:400.450500px;}
.x73{left:401.811000px;}
.x3{left:405.978000px;}
.x4a{left:407.934000px;}
.x2b{left:410.485500px;}
.xa{left:412.101000px;}
.x4b{left:426.982500px;}
.x5e{left:429.534000px;}
.x67{left:438.802500px;}
.x68{left:444.415500px;}
.x7b{left:451.047004px;}
.x5f{left:457.767000px;}
.x60{left:461.169000px;}
.x2a{left:471.544500px;}
.x38{left:482.511044px;}
.x29{left:486.082500px;}
.x24{left:492.547500px;}
.x4{left:493.824000px;}
.x1d{left:497.565000px;}
.x5{left:499.351500px;}
.x44{left:507.852327px;}
.x61{left:513.807000px;}
.x62{left:520.441500px;}
.x1b{left:524.266500px;}
.x13{left:528.177000px;}
.x14{left:536.258177px;}
.x1e{left:545.782500px;}
.xb{left:549.011288px;}
.x1c{left:562.366500px;}
.x15{left:564.067500px;}
.x16{left:585.411000px;}
.x20{left:587.707500px;}
.x12{left:601.143000px;}
.x25{left:605.821579px;}
.x1f{left:611.092500px;}
.x27{left:620.191500px;}
.x39{left:633.539956px;}
.x26{left:644.683500px;}
.x6{left:658.885500px;}
.x7{left:664.413000px;}
.x4c{left:713.565000px;}
.x3a{left:716.367720px;}
.x4d{left:735.846000px;}
.x3b{left:770.027450px;}
.x8{left:783.978000px;}
.x9{left:789.505500px;}
.x71{left:804.297821px;}
.x4e{left:830.835000px;}
.x4f{left:834.151500px;}
.x17{left:845.203500px;}
@media print{
.v13{vertical-align:-15.429333pt;}
.v8{vertical-align:-13.301333pt;}
.v15{vertical-align:-9.672412pt;}
.v7{vertical-align:-7.861333pt;}
.v1{vertical-align:-5.136000pt;}
.v2{vertical-align:-0.904522pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:13.306667pt;}
.v4{vertical-align:14.815928pt;}
.vd{vertical-align:18.442667pt;}
.v3{vertical-align:19.344000pt;}
.v6{vertical-align:20.554667pt;}
.v14{vertical-align:27.509333pt;}
.va{vertical-align:29.029333pt;}
.vc{vertical-align:32.656000pt;}
.v10{vertical-align:34.165261pt;}
.v11{vertical-align:36.581333pt;}
.v12{vertical-align:41.120000pt;}
.v9{vertical-align:42.336000pt;}
.ve{vertical-align:43.845333pt;}
.v5{vertical-align:51.098594pt;}
.vf{vertical-align:76.496000pt;}
.ls7{letter-spacing:-1.123200pt;}
.lsc{letter-spacing:-1.067200pt;}
.ls13{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-1.066653pt;}
.lsf{letter-spacing:-1.013333pt;}
.ls61{letter-spacing:-0.945669pt;}
.ls57{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.214663pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls6{letter-spacing:-0.213331pt;}
.lse{letter-spacing:-0.212800pt;}
.lsa{letter-spacing:-0.211997pt;}
.ls8{letter-spacing:-0.211200pt;}
.ls12{letter-spacing:-0.211198pt;}
.ls63{letter-spacing:-0.190548pt;}
.ls9{letter-spacing:-0.188775pt;}
.ls21{letter-spacing:-0.188423pt;}
.lsb{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.010667pt;}
.ls47{letter-spacing:0.026667pt;}
.ls3e{letter-spacing:0.032000pt;}
.ls1b{letter-spacing:0.128000pt;}
.ls53{letter-spacing:0.176000pt;}
.ls40{letter-spacing:0.218667pt;}
.ls43{letter-spacing:0.229333pt;}
.ls4b{letter-spacing:0.256000pt;}
.ls4d{letter-spacing:0.261333pt;}
.ls37{letter-spacing:0.618667pt;}
.ls39{letter-spacing:0.645333pt;}
.ls29{letter-spacing:0.758375pt;}
.ls34{letter-spacing:0.901333pt;}
.ls3b{letter-spacing:0.917333pt;}
.ls3d{letter-spacing:0.922667pt;}
.ls2b{letter-spacing:1.059165pt;}
.ls3{letter-spacing:1.211718pt;}
.ls16{letter-spacing:2.656000pt;}
.ls45{letter-spacing:2.662192pt;}
.ls3c{letter-spacing:2.667525pt;}
.ls3a{letter-spacing:2.966192pt;}
.ls68{letter-spacing:6.655917pt;}
.ls69{letter-spacing:6.958846pt;}
.ls5{letter-spacing:8.396695pt;}
.ls6b{letter-spacing:8.848956pt;}
.ls24{letter-spacing:8.880000pt;}
.ls6a{letter-spacing:8.942822pt;}
.ls22{letter-spacing:9.178667pt;}
.ls46{letter-spacing:9.184000pt;}
.ls2{letter-spacing:9.232951pt;}
.ls5a{letter-spacing:11.285333pt;}
.ls59{letter-spacing:11.466667pt;}
.ls58{letter-spacing:11.530667pt;}
.ls4a{letter-spacing:11.600000pt;}
.ls65{letter-spacing:11.685333pt;}
.ls49{letter-spacing:11.786667pt;}
.ls4{letter-spacing:11.797186pt;}
.ls19{letter-spacing:11.845333pt;}
.ls28{letter-spacing:11.904000pt;}
.ls31{letter-spacing:11.909333pt;}
.ls1e{letter-spacing:12.032000pt;}
.ls62{letter-spacing:12.042667pt;}
.ls5e{letter-spacing:12.048000pt;}
.ls2d{letter-spacing:12.144000pt;}
.ls30{letter-spacing:12.394667pt;}
.ls50{letter-spacing:14.238482pt;}
.ls2c{letter-spacing:14.239589pt;}
.ls2f{letter-spacing:14.385698pt;}
.ls3f{letter-spacing:14.421991pt;}
.ls41{letter-spacing:14.426992pt;}
.ls48{letter-spacing:14.427325pt;}
.ls35{letter-spacing:14.432325pt;}
.ls67{letter-spacing:14.535046pt;}
.ls5d{letter-spacing:14.538256pt;}
.ls27{letter-spacing:14.539200pt;}
.ls5b{letter-spacing:14.540379pt;}
.ls51{letter-spacing:14.542482pt;}
.ls5c{letter-spacing:14.543589pt;}
.ls55{letter-spacing:14.544606pt;}
.ls2a{letter-spacing:14.545713pt;}
.ls52{letter-spacing:14.547816pt;}
.ls2e{letter-spacing:14.683185pt;}
.ls18{letter-spacing:14.869333pt;}
.ls23{letter-spacing:15.168000pt;}
.ls64{letter-spacing:15.173333pt;}
.ls4c{letter-spacing:15.269661pt;}
.ls32{letter-spacing:15.573661pt;}
.ls54{letter-spacing:16.405853pt;}
.ls1c{letter-spacing:16.489050pt;}
.ls5f{letter-spacing:16.492250pt;}
.ls4f{letter-spacing:16.706643pt;}
.ls15{letter-spacing:16.793040pt;}
.ls1d{letter-spacing:17.280523pt;}
.ls44{letter-spacing:17.450992pt;}
.ls4e{letter-spacing:17.456325pt;}
.ls17{letter-spacing:17.579189pt;}
.ls38{letter-spacing:17.754992pt;}
.ls0{letter-spacing:18.474436pt;}
.ls1{letter-spacing:18.478702pt;}
.ls26{letter-spacing:18.597661pt;}
.ls42{letter-spacing:39.578667pt;}
.ls1f{letter-spacing:39.584000pt;}
.ls36{letter-spacing:39.877333pt;}
.ls66{letter-spacing:39.882667pt;}
.ls14{letter-spacing:95.600000pt;}
.ls60{letter-spacing:96.877722pt;}
.ls1a{letter-spacing:105.882667pt;}
.ls33{letter-spacing:396.549661pt;}
.ls56{letter-spacing:773.056325pt;}
.ls20{letter-spacing:773.376000pt;}
.ws10c{word-spacing:-98.179039pt;}
.wsfc{word-spacing:-53.333333pt;}
.wsfb{word-spacing:-38.469333pt;}
.wsc2{word-spacing:-38.464000pt;}
.ws143{word-spacing:-38.458667pt;}
.ws26{word-spacing:-33.023872pt;}
.wsaa{word-spacing:-26.666667pt;}
.ws2a{word-spacing:-22.442386pt;}
.ws141{word-spacing:-21.333067pt;}
.wsa8{word-spacing:-18.677333pt;}
.wsb0{word-spacing:-18.394667pt;}
.wsbd{word-spacing:-18.378667pt;}
.wsab{word-spacing:-15.999467pt;}
.wsff{word-spacing:-14.400000pt;}
.ws14c{word-spacing:-13.754667pt;}
.wsac{word-spacing:-13.333333pt;}
.ws10{word-spacing:-11.989183pt;}
.wsfa{word-spacing:-11.904000pt;}
.ws148{word-spacing:-11.898667pt;}
.ws12{word-spacing:-11.775853pt;}
.ws12f{word-spacing:-11.600000pt;}
.ws147{word-spacing:-9.770545pt;}
.ws30{word-spacing:-9.599880pt;}
.wscf{word-spacing:-9.301217pt;}
.wsc3{word-spacing:-5.824000pt;}
.wsc1{word-spacing:-5.818667pt;}
.wsc4{word-spacing:-5.728000pt;}
.wsbf{word-spacing:-5.168000pt;}
.wsb1{word-spacing:-5.129841pt;}
.wsb5{word-spacing:-4.825558pt;}
.wsd3{word-spacing:-4.595143pt;}
.wsb3{word-spacing:-4.521558pt;}
.ws71{word-spacing:-4.012767pt;}
.ws9e{word-spacing:-3.961567pt;}
.ws163{word-spacing:-3.763169pt;}
.ws18{word-spacing:-3.698336pt;}
.ws145{word-spacing:-3.152000pt;}
.ws187{word-spacing:-3.140227pt;}
.ws149{word-spacing:-3.093333pt;}
.ws8{word-spacing:-3.093295pt;}
.ws17c{word-spacing:-3.089028pt;}
.ws13{word-spacing:-3.080533pt;}
.ws23{word-spacing:-3.075467pt;}
.ws185{word-spacing:-3.071962pt;}
.ws190{word-spacing:-3.067695pt;}
.ws20{word-spacing:-3.024800pt;}
.ws4d{word-spacing:-3.014667pt;}
.ws188{word-spacing:-2.973829pt;}
.ws3{word-spacing:-2.971200pt;}
.wsf{word-spacing:-2.969563pt;}
.ws193{word-spacing:-2.965296pt;}
.ws18e{word-spacing:-2.961030pt;}
.ws4e{word-spacing:-2.953867pt;}
.ws178{word-spacing:-2.935430pt;}
.ws172{word-spacing:-2.922630pt;}
.wsc{word-spacing:-2.918364pt;}
.ws11{word-spacing:-2.914097pt;}
.ws177{word-spacing:-2.909830pt;}
.ws170{word-spacing:-2.905564pt;}
.ws7{word-spacing:-2.904000pt;}
.ws17d{word-spacing:-2.897030pt;}
.ws4c{word-spacing:-2.893067pt;}
.ws14{word-spacing:-2.888000pt;}
.ws67{word-spacing:-2.884231pt;}
.ws174{word-spacing:-2.875697pt;}
.wsd{word-spacing:-2.871431pt;}
.ws184{word-spacing:-2.867164pt;}
.ws17b{word-spacing:-2.862898pt;}
.ws180{word-spacing:-2.854364pt;}
.ws17{word-spacing:-2.847467pt;}
.ws192{word-spacing:-2.837298pt;}
.wsd5{word-spacing:-2.815965pt;}
.ws9{word-spacing:-2.798898pt;}
.ws50{word-spacing:-2.796800pt;}
.ws22{word-spacing:-2.791733pt;}
.ws14b{word-spacing:-2.789333pt;}
.ws127{word-spacing:-2.784000pt;}
.wsb{word-spacing:-2.781832pt;}
.ws5{word-spacing:-2.779200pt;}
.ws27{word-spacing:-2.777565pt;}
.ws25{word-spacing:-2.776533pt;}
.ws6{word-spacing:-2.769600pt;}
.ws17a{word-spacing:-2.760499pt;}
.wse{word-spacing:-2.747699pt;}
.ws1{word-spacing:-2.745600pt;}
.ws21{word-spacing:-2.741067pt;}
.ws130{word-spacing:-2.730667pt;}
.ws18c{word-spacing:-2.730633pt;}
.ws186{word-spacing:-2.726366pt;}
.ws126{word-spacing:-2.725333pt;}
.ws179{word-spacing:-2.713566pt;}
.ws4{word-spacing:-2.712000pt;}
.ws176{word-spacing:-2.670900pt;}
.ws173{word-spacing:-2.666633pt;}
.ws4b{word-spacing:-2.644800pt;}
.ws17e{word-spacing:-2.632500pt;}
.ws29{word-spacing:-2.623967pt;}
.ws4f{word-spacing:-2.614400pt;}
.ws191{word-spacing:-2.594101pt;}
.ws182{word-spacing:-2.572768pt;}
.ws24{word-spacing:-2.563733pt;}
.ws16{word-spacing:-2.538400pt;}
.ws181{word-spacing:-2.521568pt;}
.ws18a{word-spacing:-2.517302pt;}
.ws171{word-spacing:-2.500235pt;}
.ws16f{word-spacing:-2.483169pt;}
.ws18b{word-spacing:-2.461836pt;}
.ws175{word-spacing:-2.457569pt;}
.ws17f{word-spacing:-2.453303pt;}
.wsa{word-spacing:-2.444769pt;}
.ws18d{word-spacing:-2.440503pt;}
.wsfd{word-spacing:-2.421333pt;}
.ws18f{word-spacing:-2.385037pt;}
.wsfe{word-spacing:-2.362667pt;}
.ws0{word-spacing:-2.355171pt;}
.ws2{word-spacing:-2.313600pt;}
.ws15{word-spacing:-2.269867pt;}
.ws19{word-spacing:-2.128000pt;}
.ws1a{word-spacing:-2.046933pt;}
.ws1e{word-spacing:-2.041867pt;}
.ws1d{word-spacing:-2.026667pt;}
.ws1b{word-spacing:-2.001333pt;}
.wsb8{word-spacing:-1.801558pt;}
.ws1f{word-spacing:-1.793600pt;}
.ws1c{word-spacing:-1.742933pt;}
.wsae{word-spacing:-1.497558pt;}
.ws3c{word-spacing:-0.938655pt;}
.ws68{word-spacing:-0.891722pt;}
.wsbc{word-spacing:-0.853333pt;}
.wsec{word-spacing:-0.816000pt;}
.ws3e{word-spacing:-0.814923pt;}
.ws2e{word-spacing:-0.793590pt;}
.ws36{word-spacing:-0.780790pt;}
.ws93{word-spacing:-0.778667pt;}
.ws90{word-spacing:-0.773333pt;}
.ws6a{word-spacing:-0.763724pt;}
.wse4{word-spacing:-0.757333pt;}
.ws32{word-spacing:-0.725324pt;}
.ws91{word-spacing:-0.720000pt;}
.ws45{word-spacing:-0.716791pt;}
.ws34{word-spacing:-0.703991pt;}
.ws46{word-spacing:-0.686925pt;}
.ws2f{word-spacing:-0.678392pt;}
.ws38{word-spacing:-0.661325pt;}
.ws42{word-spacing:-0.657058pt;}
.ws3b{word-spacing:-0.644259pt;}
.ws49{word-spacing:-0.631459pt;}
.ws7e{word-spacing:-0.624000pt;}
.ws33{word-spacing:-0.601592pt;}
.ws3f{word-spacing:-0.597326pt;}
.ws41{word-spacing:-0.575993pt;}
.ws9c{word-spacing:-0.565333pt;}
.ws3a{word-spacing:-0.563193pt;}
.ws58{word-spacing:-0.554667pt;}
.ws2b{word-spacing:-0.554660pt;}
.ws40{word-spacing:-0.541860pt;}
.ws35{word-spacing:-0.516260pt;}
.ws31{word-spacing:-0.507727pt;}
.ws96{word-spacing:-0.506667pt;}
.ws82{word-spacing:-0.490667pt;}
.ws37{word-spacing:-0.486394pt;}
.ws48{word-spacing:-0.482127pt;}
.ws162{word-spacing:-0.480000pt;}
.ws6d{word-spacing:-0.474667pt;}
.ws39{word-spacing:-0.469327pt;}
.ws44{word-spacing:-0.465061pt;}
.ws125{word-spacing:-0.460794pt;}
.ws77{word-spacing:-0.458667pt;}
.ws6b{word-spacing:-0.453333pt;}
.wsca{word-spacing:-0.448000pt;}
.ws124{word-spacing:-0.447994pt;}
.ws113{word-spacing:-0.442667pt;}
.ws43{word-spacing:-0.439461pt;}
.ws3d{word-spacing:-0.418128pt;}
.ws5f{word-spacing:-0.416000pt;}
.ws7f{word-spacing:-0.410667pt;}
.ws64{word-spacing:-0.400000pt;}
.ws63{word-spacing:-0.384000pt;}
.ws9a{word-spacing:-0.378667pt;}
.ws53{word-spacing:-0.373333pt;}
.ws151{word-spacing:-0.368000pt;}
.ws72{word-spacing:-0.357333pt;}
.wse9{word-spacing:-0.352000pt;}
.ws2c{word-spacing:-0.349862pt;}
.ws79{word-spacing:-0.346667pt;}
.ws86{word-spacing:-0.341333pt;}
.ws60{word-spacing:-0.336000pt;}
.wsea{word-spacing:-0.330667pt;}
.ws97{word-spacing:-0.325333pt;}
.ws70{word-spacing:-0.320000pt;}
.ws78{word-spacing:-0.314667pt;}
.ws5d{word-spacing:-0.309333pt;}
.ws73{word-spacing:-0.304000pt;}
.ws69{word-spacing:-0.302930pt;}
.ws8c{word-spacing:-0.298667pt;}
.ws65{word-spacing:-0.293333pt;}
.wse7{word-spacing:-0.288000pt;}
.wsb4{word-spacing:-0.286892pt;}
.wsc7{word-spacing:-0.282667pt;}
.wsdd{word-spacing:-0.277333pt;}
.ws47{word-spacing:-0.273063pt;}
.ws81{word-spacing:-0.272000pt;}
.ws153{word-spacing:-0.266667pt;}
.ws123{word-spacing:-0.264530pt;}
.ws6e{word-spacing:-0.261333pt;}
.ws2d{word-spacing:-0.260263pt;}
.ws84{word-spacing:-0.256000pt;}
.ws52{word-spacing:-0.250667pt;}
.ws54{word-spacing:-0.245333pt;}
.ws7b{word-spacing:-0.240000pt;}
.ws8e{word-spacing:-0.234667pt;}
.ws95{word-spacing:-0.229333pt;}
.ws83{word-spacing:-0.224000pt;}
.ws8f{word-spacing:-0.218667pt;}
.wsde{word-spacing:-0.213333pt;}
.ws7c{word-spacing:-0.208000pt;}
.ws98{word-spacing:-0.202667pt;}
.ws9b{word-spacing:-0.192000pt;}
.ws61{word-spacing:-0.186667pt;}
.ws56{word-spacing:-0.181333pt;}
.wsc9{word-spacing:-0.176000pt;}
.ws12a{word-spacing:-0.174931pt;}
.ws5c{word-spacing:-0.170667pt;}
.ws8a{word-spacing:-0.160000pt;}
.ws87{word-spacing:-0.154667pt;}
.ws132{word-spacing:-0.153598pt;}
.ws88{word-spacing:-0.149333pt;}
.wsee{word-spacing:-0.144000pt;}
.ws89{word-spacing:-0.138667pt;}
.ws12d{word-spacing:-0.119465pt;}
.wsa2{word-spacing:-0.117333pt;}
.ws121{word-spacing:-0.115199pt;}
.wse8{word-spacing:-0.106667pt;}
.ws152{word-spacing:-0.101333pt;}
.wsc6{word-spacing:-0.096000pt;}
.ws122{word-spacing:-0.093865pt;}
.wsa1{word-spacing:-0.090667pt;}
.ws6c{word-spacing:-0.085333pt;}
.ws66{word-spacing:-0.080000pt;}
.ws5a{word-spacing:-0.074667pt;}
.ws57{word-spacing:-0.069333pt;}
.ws62{word-spacing:-0.064000pt;}
.wscb{word-spacing:-0.058667pt;}
.ws74{word-spacing:-0.053333pt;}
.ws85{word-spacing:-0.048000pt;}
.ws55{word-spacing:-0.042667pt;}
.wsc5{word-spacing:-0.037333pt;}
.wscc{word-spacing:-0.032000pt;}
.ws9d{word-spacing:-0.026667pt;}
.ws75{word-spacing:-0.021333pt;}
.ws94{word-spacing:-0.016000pt;}
.wsd1{word-spacing:-0.008533pt;}
.wsdc{word-spacing:-0.005333pt;}
.wscd{word-spacing:-0.004267pt;}
.ws4a{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.010667pt;}
.wsdb{word-spacing:0.016000pt;}
.wsd6{word-spacing:0.021333pt;}
.ws59{word-spacing:0.026667pt;}
.wse6{word-spacing:0.029866pt;}
.ws129{word-spacing:0.034133pt;}
.ws7d{word-spacing:0.037333pt;}
.ws5b{word-spacing:0.042667pt;}
.ws114{word-spacing:0.051199pt;}
.ws51{word-spacing:0.053333pt;}
.wsa0{word-spacing:0.058667pt;}
.wsd0{word-spacing:0.072532pt;}
.ws6f{word-spacing:0.074667pt;}
.ws7a{word-spacing:0.080000pt;}
.ws5e{word-spacing:0.085333pt;}
.ws92{word-spacing:0.101333pt;}
.ws120{word-spacing:0.102399pt;}
.ws12b{word-spacing:0.110932pt;}
.ws80{word-spacing:0.112000pt;}
.wsd7{word-spacing:0.122667pt;}
.wsc8{word-spacing:0.134399pt;}
.wse3{word-spacing:0.144000pt;}
.ws76{word-spacing:0.149333pt;}
.ws8b{word-spacing:0.160000pt;}
.wsef{word-spacing:0.166398pt;}
.wseb{word-spacing:0.176000pt;}
.ws165{word-spacing:0.186667pt;}
.ws109{word-spacing:0.187731pt;}
.ws168{word-spacing:0.192000pt;}
.ws161{word-spacing:0.197333pt;}
.ws99{word-spacing:0.208000pt;}
.wsd8{word-spacing:0.224000pt;}
.wsa7{word-spacing:0.234667pt;}
.wsce{word-spacing:0.260263pt;}
.wsed{word-spacing:0.261333pt;}
.ws9f{word-spacing:0.262398pt;}
.ws107{word-spacing:0.272000pt;}
.ws14f{word-spacing:0.277333pt;}
.ws146{word-spacing:0.281596pt;}
.wsdf{word-spacing:0.298663pt;}
.ws16d{word-spacing:0.304000pt;}
.wsda{word-spacing:0.341333pt;}
.wsb2{word-spacing:0.346667pt;}
.wsf4{word-spacing:0.378667pt;}
.wsf6{word-spacing:0.389333pt;}
.ws12c{word-spacing:0.413861pt;}
.ws166{word-spacing:0.426667pt;}
.wsd9{word-spacing:0.432000pt;}
.ws103{word-spacing:0.437333pt;}
.wsf7{word-spacing:0.442667pt;}
.ws102{word-spacing:0.474667pt;}
.wsf1{word-spacing:0.480000pt;}
.wsa4{word-spacing:0.485333pt;}
.ws108{word-spacing:0.549333pt;}
.wsa6{word-spacing:0.576000pt;}
.ws104{word-spacing:0.597333pt;}
.wsa5{word-spacing:0.640000pt;}
.wsf8{word-spacing:0.650667pt;}
.wsf0{word-spacing:0.656000pt;}
.wsf9{word-spacing:0.666667pt;}
.ws106{word-spacing:0.677333pt;}
.wsf3{word-spacing:0.682667pt;}
.wsa3{word-spacing:0.714667pt;}
.wsf2{word-spacing:0.725333pt;}
.wsf5{word-spacing:0.746667pt;}
.ws16a{word-spacing:0.752000pt;}
.ws169{word-spacing:0.800000pt;}
.ws105{word-spacing:0.853333pt;}
.ws101{word-spacing:0.858667pt;}
.ws167{word-spacing:0.869333pt;}
.ws16b{word-spacing:0.901333pt;}
.ws16c{word-spacing:0.906667pt;}
.ws164{word-spacing:1.029333pt;}
.wsb6{word-spacing:1.222442pt;}
.wsaf{word-spacing:5.323578pt;}
.wsad{word-spacing:5.328911pt;}
.wsbe{word-spacing:6.662159pt;}
.wsbb{word-spacing:8.779775pt;}
.wsba{word-spacing:8.785108pt;}
.wsa9{word-spacing:9.689369pt;}
.wse1{word-spacing:24.588493pt;}
.ws10b{word-spacing:25.795944pt;}
.ws28{word-spacing:30.745216pt;}
.wsb9{word-spacing:32.065108pt;}
.wsb7{word-spacing:34.481108pt;}
.wse2{word-spacing:35.255026pt;}
.ws183{word-spacing:41.637880pt;}
.ws189{word-spacing:41.642146pt;}
.ws16e{word-spacing:41.697612pt;}
.ws10d{word-spacing:43.745587pt;}
.ws10e{word-spacing:48.566860pt;}
.wsd2{word-spacing:48.775924pt;}
.ws110{word-spacing:63.756003pt;}
.wsd4{word-spacing:63.896801pt;}
.wse0{word-spacing:67.352758pt;}
.ws111{word-spacing:69.046604pt;}
.wse5{word-spacing:77.332367pt;}
.ws112{word-spacing:87.107178pt;}
.ws10f{word-spacing:91.702320pt;}
.ws138{word-spacing:126.709883pt;}
.ws13b{word-spacing:131.735953pt;}
.ws157{word-spacing:133.975925pt;}
.ws13a{word-spacing:134.253255pt;}
.ws13f{word-spacing:134.257522pt;}
.ws135{word-spacing:135.537506pt;}
.ws137{word-spacing:135.541772pt;}
.ws139{word-spacing:136.092165pt;}
.ws15e{word-spacing:136.134832pt;}
.ws13e{word-spacing:138.251072pt;}
.ws133{word-spacing:141.771028pt;}
.ws136{word-spacing:141.813694pt;}
.ws140{word-spacing:143.639804pt;}
.ws13d{word-spacing:145.824311pt;}
.ws15a{word-spacing:146.263772pt;}
.ws13c{word-spacing:150.645584pt;}
.ws159{word-spacing:157.595897pt;}
.ws160{word-spacing:157.600163pt;}
.ws134{word-spacing:161.256651pt;}
.ws154{word-spacing:166.948313pt;}
.ws158{word-spacing:181.505998pt;}
.ws15c{word-spacing:193.904776pt;}
.ws100{word-spacing:224.709333pt;}
.ws15b{word-spacing:289.144119pt;}
.ws15f{word-spacing:291.849152pt;}
.ws15d{word-spacing:304.806857pt;}
.ws11a{word-spacing:368.596992pt;}
.ws119{word-spacing:374.655583pt;}
.ws11e{word-spacing:376.140365pt;}
.ws11c{word-spacing:377.428882pt;}
.ws11f{word-spacing:380.133915pt;}
.ws11d{word-spacing:380.138182pt;}
.ws117{word-spacing:383.397874pt;}
.ws118{word-spacing:383.700804pt;}
.ws11b{word-spacing:388.906072pt;}
.ws116{word-spacing:392.532693pt;}
.ws115{word-spacing:397.144902pt;}
.ws155{word-spacing:457.803344pt;}
.ws150{word-spacing:463.877333pt;}
.ws131{word-spacing:490.064000pt;}
.ws14d{word-spacing:501.066667pt;}
.ws156{word-spacing:501.199068pt;}
.ws128{word-spacing:516.672000pt;}
.wsc0{word-spacing:674.144000pt;}
.ws14a{word-spacing:755.472000pt;}
.ws142{word-spacing:755.893333pt;}
.ws144{word-spacing:756.256000pt;}
.ws12e{word-spacing:771.925333pt;}
.ws14e{word-spacing:792.661333pt;}
.ws10a{word-spacing:1192.172831pt;}
._50{margin-left:-96.877722pt;}
._53{margin-left:-12.070249pt;}
._7{margin-left:-7.485411pt;}
._b{margin-left:-4.290146pt;}
._6{margin-left:-2.751989pt;}
._0{margin-left:-0.989854pt;}
._c{width:1.427733pt;}
._e{width:2.339763pt;}
._2{width:3.428267pt;}
._8e{width:4.339146pt;}
._4{width:8.328429pt;}
._3{width:9.860143pt;}
._a{width:11.120000pt;}
._5{width:12.048533pt;}
._9{width:13.210133pt;}
._4e{width:14.382754pt;}
._f{width:18.670700pt;}
._90{width:21.213601pt;}
._1{width:22.118400pt;}
._d{width:26.762667pt;}
._8f{width:27.786667pt;}
._10{width:34.487036pt;}
._27{width:35.429957pt;}
._2a{width:45.925826pt;}
._59{width:84.478944pt;}
._11{width:87.128511pt;}
._47{width:88.084232pt;}
._2c{width:91.326858pt;}
._4b{width:94.522552pt;}
._29{width:97.099586pt;}
._3e{width:105.406682pt;}
._3d{width:111.153811pt;}
._18{width:114.562835pt;}
._52{width:131.748753pt;}
._7a{width:136.907089pt;}
._55{width:141.476632pt;}
._7b{width:143.614205pt;}
._7c{width:144.877122pt;}
._54{width:146.425903pt;}
._51{width:148.175214pt;}
._57{width:150.351187pt;}
._83{width:151.712237pt;}
._7d{width:154.174073pt;}
._9d{width:156.226314pt;}
._56{width:157.433765pt;}
._4c{width:158.521752pt;}
._89{width:159.810269pt;}
._58{width:161.043320pt;}
._43{width:162.105707pt;}
._79{width:164.721141pt;}
._7e{width:166.568585pt;}
._77{width:168.002167pt;}
._40{width:169.405882pt;}
._46{width:171.833585pt;}
._2e{width:172.989838pt;}
._3f{width:175.153011pt;}
._45{width:176.782857pt;}
._80{width:177.781244pt;}
._2d{width:178.736966pt;}
._a4{width:179.803619pt;}
._44{width:180.750807pt;}
._33{width:182.717716pt;}
._48{width:185.572080pt;}
._32{width:187.666987pt;}
._2b{width:189.416299pt;}
._30{width:191.634938pt;}
._31{width:193.414116pt;}
._28{width:195.163427pt;}
._37{width:196.456211pt;}
._2f{width:197.382066pt;}
._35{width:198.674850pt;}
._49{width:200.761224pt;}
._36{width:202.203339pt;}
._81{width:203.133461pt;}
._34{width:204.421978pt;}
._4a{width:206.051824pt;}
._94{width:206.960613pt;}
._4d{width:208.739791pt;}
._78{width:210.425103pt;}
._3b{width:211.645354pt;}
._3a{width:217.392483pt;}
._42{width:219.623921pt;}
._9f{width:221.151369pt;}
._3c{width:222.683083pt;}
._41{width:225.371049pt;}
._12{width:228.728874pt;}
._92{width:238.269022pt;}
._39{width:239.591672pt;}
._1e{width:243.815619pt;}
._38{width:245.338800pt;}
._7f{width:250.663533pt;}
._a0{width:256.393595pt;}
._84{width:259.815419pt;}
._19{width:279.049312pt;}
._a1{width:281.997542pt;}
._85{width:284.719641pt;}
._93{width:292.369679pt;}
._88{width:293.530197pt;}
._8c{width:299.802119pt;}
._86{width:301.820227pt;}
._91{width:304.563660pt;}
._8a{width:306.287371pt;}
._87{width:307.831885pt;}
._82{width:312.145431pt;}
._8b{width:315.093661pt;}
._8d{width:317.470165pt;}
._21{width:332.390512pt;}
._17{width:342.668783pt;}
._22{width:354.337971pt;}
._13{width:364.620509pt;}
._62{width:385.910909pt;}
._1a{width:386.990363pt;}
._60{width:389.908726pt;}
._61{width:393.475615pt;}
._68{width:395.971584pt;}
._64{width:399.593938pt;}
._5f{width:402.303238pt;}
._1d{width:406.040791pt;}
._67{width:421.566997pt;}
._66{width:434.460703pt;}
._65{width:446.855214pt;}
._5b{width:455.332975pt;}
._20{width:465.858710pt;}
._a5{width:466.921097pt;}
._63{width:469.451198pt;}
._16{width:476.013250pt;}
._5d{width:477.711362pt;}
._5e{width:481.845710pt;}
._5c{width:490.105874pt;}
._23{width:495.362341pt;}
._5a{width:499.564955pt;}
._98{width:502.709449pt;}
._1f{width:505.516881pt;}
._15{width:515.799419pt;}
._1c{width:519.421774pt;}
._69{width:530.950163pt;}
._1b{width:548.754740pt;}
._70{width:566.892114pt;}
._71{width:593.985108pt;}
._6b{width:597.569064pt;}
._6c{width:613.095270pt;}
._6d{width:632.256630pt;}
._6f{width:655.117144pt;}
._6a{width:680.260297pt;}
._6e{width:690.116173pt;}
._72{width:736.600926pt;}
._9b{width:766.339221pt;}
._9a{width:778.848931pt;}
._a7{width:780.640909pt;}
._9c{width:791.243443pt;}
._96{width:811.398924pt;}
._a6{width:823.494773pt;}
._95{width:834.494102pt;}
._73{width:903.297509pt;}
._75{width:915.269626pt;}
._24{width:1073.176985pt;}
._14{width:1083.331525pt;}
._76{width:1110.262388pt;}
._97{width:1119.819602pt;}
._99{width:1132.218380pt;}
._74{width:1152.796257pt;}
._26{width:1189.263001pt;}
._4f{width:1266.309504pt;}
._25{width:1316.971271pt;}
._8{width:1339.567255pt;}
._9e{width:1433.415682pt;}
._a2{width:1602.070641pt;}
._a3{width:1958.576051pt;}
.fsd{font-size:26.666667pt;}
.fsf{font-size:28.440000pt;}
.fs3{font-size:31.995733pt;}
.fsc{font-size:31.998933pt;}
.fse{font-size:35.551467pt;}
.fs4{font-size:39.999467pt;}
.fs0{font-size:42.666133pt;}
.fs2{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fsb{font-size:58.666667pt;}
.fs6{font-size:61.332267pt;}
.fsa{font-size:63.999467pt;}
.fs5{font-size:77.333333pt;}
.fs1{font-size:96.000000pt;}
.fs8{font-size:110.079573pt;}
.y0{bottom:0.000000pt;}
.y7d{bottom:4.033333pt;}
.y2b{bottom:7.567971pt;}
.y2c{bottom:48.000000pt;}
.y168{bottom:100.311906pt;}
.y1ab{bottom:106.356950pt;}
.y29{bottom:110.665333pt;}
.y13e{bottom:110.665467pt;}
.y1e8{bottom:110.666667pt;}
.y4f{bottom:110.666724pt;}
.y31c{bottom:110.666875pt;}
.ya7{bottom:110.668000pt;}
.y7b{bottom:110.669333pt;}
.ycd{bottom:111.200000pt;}
.y1ec{bottom:112.026667pt;}
.y177{bottom:113.085333pt;}
.y2bc{bottom:119.738667pt;}
.y167{bottom:120.342589pt;}
.y255{bottom:122.536680pt;}
.y31b{bottom:123.366450pt;}
.y4e{bottom:125.331074pt;}
.y1aa{bottom:126.993492pt;}
.y13d{bottom:127.974800pt;}
.y114{bottom:127.976000pt;}
.ye4{bottom:127.977333pt;}
.ya6{bottom:127.978667pt;}
.y7a{bottom:127.980000pt;}
.y29e{bottom:128.052000pt;}
.ycc{bottom:128.509333pt;}
.y1c5{bottom:128.733333pt;}
.y28{bottom:129.336000pt;}
.y1eb{bottom:129.412000pt;}
.y176{bottom:130.396000pt;}
.y31a{bottom:135.990292pt;}
.y166{bottom:137.048514pt;}
.y2bb{bottom:137.049333pt;}
.y2ec{bottom:138.789333pt;}
.y1a9{bottom:139.692000pt;}
.y4d{bottom:139.995424pt;}
.y254{bottom:141.887905pt;}
.y234{bottom:142.036000pt;}
.y113{bottom:145.361333pt;}
.y1e7{bottom:145.362667pt;}
.ya5{bottom:145.364000pt;}
.y79{bottom:145.365333pt;}
.ycb{bottom:145.894667pt;}
.y1c4{bottom:146.044000pt;}
.y1ea{bottom:146.721333pt;}
.y175{bottom:147.706667pt;}
.y27{bottom:148.006667pt;}
.y241{bottom:148.008000pt;}
.y265{bottom:149.216000pt;}
.y13c{bottom:150.652000pt;}
.y319{bottom:153.299943pt;}
.y165{bottom:153.678706pt;}
.y2ba{bottom:154.358667pt;}
.y4c{bottom:154.660840pt;}
.y2eb{bottom:156.100000pt;}
.y233{bottom:158.061333pt;}
.y253{bottom:158.517031pt;}
.y111{bottom:160.478667pt;}
.y112{bottom:162.670667pt;}
.y110{bottom:162.672000pt;}
.ye3{bottom:162.673333pt;}
.y78{bottom:162.674667pt;}
.y29d{bottom:162.748000pt;}
.yca{bottom:163.205333pt;}
.y1c3{bottom:163.429333pt;}
.y240{bottom:164.032000pt;}
.y174{bottom:165.016000pt;}
.y264{bottom:165.165333pt;}
.y318{bottom:165.999517pt;}
.y26{bottom:166.677333pt;}
.y4b{bottom:169.325190pt;}
.y164{bottom:170.307831pt;}
.y2b9{bottom:171.744000pt;}
.y2ea{bottom:173.409333pt;}
.y232{bottom:174.086667pt;}
.y252{bottom:175.222955pt;}
.y317{bottom:178.698025pt;}
.y21a{bottom:179.530676pt;}
.y23f{bottom:179.981333pt;}
.y1e6{bottom:179.982667pt;}
.ya4{bottom:179.984000pt;}
.y77{bottom:179.985333pt;}
.y29c{bottom:180.133333pt;}
.yc9{bottom:180.516000pt;}
.y1c2{bottom:180.740000pt;}
.y263{bottom:181.192000pt;}
.y173{bottom:182.401333pt;}
.y4a{bottom:183.989540pt;}
.y25{bottom:185.348000pt;}
.y163{bottom:187.013756pt;}
.y2b8{bottom:189.054667pt;}
.y10f{bottom:189.354667pt;}
.y13b{bottom:189.734667pt;}
.y2e9{bottom:190.794667pt;}
.y251{bottom:191.853147pt;}
.y316{bottom:196.008742pt;}
.y1e5{bottom:197.368000pt;}
.ye2{bottom:197.369333pt;}
.y76{bottom:197.370667pt;}
.y29b{bottom:197.444000pt;}
.yc8{bottom:197.901333pt;}
.y1c1{bottom:198.049333pt;}
.y10d{bottom:198.502667pt;}
.y49{bottom:198.653890pt;}
.y172{bottom:199.712000pt;}
.y231{bottom:201.450667pt;}
.y219{bottom:203.568776pt;}
.y162{bottom:203.642881pt;}
.y24{bottom:204.018667pt;}
.y10e{bottom:205.757351pt;}
.y2b7{bottom:206.365333pt;}
.y13a{bottom:207.044000pt;}
.y2e8{bottom:208.105333pt;}
.y250{bottom:208.558005pt;}
.y315{bottom:208.631518pt;}
.y23e{bottom:213.317333pt;}
.y48{bottom:213.318240pt;}
.y1e4{bottom:214.678667pt;}
.ya3{bottom:214.680000pt;}
.y75{bottom:214.681333pt;}
.yc7{bottom:215.210667pt;}
.y1c0{bottom:215.434667pt;}
.y262{bottom:215.737333pt;}
.y171{bottom:217.022667pt;}
.y230{bottom:218.761333pt;}
.y161{bottom:220.348806pt;}
.y23{bottom:222.689333pt;}
.ye1{bottom:222.692000pt;}
.y2b6{bottom:223.750667pt;}
.y139{bottom:224.354667pt;}
.y24f{bottom:225.188197pt;}
.y2e7{bottom:225.416000pt;}
.y314{bottom:226.017967pt;}
.y47{bottom:227.982590pt;}
.y218{bottom:228.513531pt;}
.y29a{bottom:230.704000pt;}
.y1e3{bottom:231.988000pt;}
.y74{bottom:231.990667pt;}
.yc6{bottom:232.521333pt;}
.y1bf{bottom:232.745333pt;}
.y170{bottom:234.408000pt;}
.y22f{bottom:236.146667pt;}
.y160{bottom:236.978998pt;}
.y313{bottom:238.641809pt;}
.ye0{bottom:240.002667pt;}
.y10c{bottom:240.908000pt;}
.y2b5{bottom:241.061333pt;}
.y138{bottom:241.665333pt;}
.y24e{bottom:241.893055pt;}
.y46{bottom:242.646940pt;}
.y2e6{bottom:242.801333pt;}
.y217{bottom:245.218388pt;}
.y22{bottom:245.366667pt;}
.y299{bottom:246.729333pt;}
.y1e2{bottom:249.298667pt;}
.ya2{bottom:249.300000pt;}
.y73{bottom:249.301333pt;}
.yc5{bottom:249.906667pt;}
.y1be{bottom:250.056000pt;}
.y312{bottom:251.340317pt;}
.y16f{bottom:251.718667pt;}
.y23d{bottom:252.018667pt;}
.y22e{bottom:253.457333pt;}
.y15f{bottom:253.683856pt;}
.y261{bottom:255.572000pt;}
.ydf{bottom:257.312000pt;}
.y10b{bottom:258.293333pt;}
.y2b4{bottom:258.370667pt;}
.y24d{bottom:258.523247pt;}
.y137{bottom:259.050667pt;}
.y2e5{bottom:260.112000pt;}
.y216{bottom:261.848581pt;}
.y298{bottom:262.754667pt;}
.y311{bottom:263.964159pt;}
.y45{bottom:265.323990pt;}
.y1e1{bottom:266.684000pt;}
.y72{bottom:266.686667pt;}
.yc4{bottom:267.217333pt;}
.y1bd{bottom:267.441333pt;}
.y23c{bottom:267.968000pt;}
.y16e{bottom:269.028000pt;}
.y15e{bottom:270.314048pt;}
.y22d{bottom:270.766667pt;}
.y260{bottom:271.597333pt;}
.yde{bottom:274.698667pt;}
.y24c{bottom:275.229172pt;}
.y10a{bottom:275.604000pt;}
.y2b3{bottom:275.756000pt;}
.y136{bottom:276.360000pt;}
.y2e4{bottom:277.421333pt;}
.y215{bottom:278.554505pt;}
.y44{bottom:279.989407pt;}
.y310{bottom:281.349542pt;}
.y21{bottom:281.501333pt;}
.y23b{bottom:283.994667pt;}
.ya1{bottom:283.996000pt;}
.y71{bottom:283.997333pt;}
.yc3{bottom:284.528000pt;}
.y1bc{bottom:284.752000pt;}
.y16d{bottom:286.413333pt;}
.y15d{bottom:287.018906pt;}
.y25f{bottom:287.546667pt;}
.y22c{bottom:288.152000pt;}
.y297{bottom:290.646667pt;}
.y24b{bottom:291.858297pt;}
.ydd{bottom:292.008000pt;}
.y2b2{bottom:293.066667pt;}
.y135{bottom:293.670667pt;}
.y30f{bottom:293.973384pt;}
.y2e3{bottom:294.806667pt;}
.y214{bottom:295.183631pt;}
.y20{bottom:300.172000pt;}
.y109{bottom:300.926667pt;}
.ya0{bottom:301.306667pt;}
.y70{bottom:301.308000pt;}
.y1e0{bottom:301.530667pt;}
.yc2{bottom:301.837333pt;}
.y1bb{bottom:302.061333pt;}
.y43{bottom:302.666457pt;}
.y15c{bottom:303.649098pt;}
.y16c{bottom:303.724000pt;}
.y22b{bottom:305.462667pt;}
.y30e{bottom:306.672959pt;}
.y24a{bottom:308.488489pt;}
.ydc{bottom:309.318667pt;}
.y2b1{bottom:310.377333pt;}
.y134{bottom:311.056000pt;}
.y213{bottom:311.889555pt;}
.y2e2{bottom:312.117333pt;}
.y23a{bottom:317.329333pt;}
.y42{bottom:317.330807pt;}
.y1df{bottom:317.556000pt;}
.y108{bottom:318.237333pt;}
.y9f{bottom:318.692000pt;}
.y6f{bottom:318.693333pt;}
.y1f{bottom:318.842667pt;}
.yc1{bottom:319.222667pt;}
.y30c{bottom:319.371467pt;}
.y1ba{bottom:319.372000pt;}
.y15b{bottom:320.355022pt;}
.y16b{bottom:321.034667pt;}
.y30d{bottom:321.413041pt;}
.y25e{bottom:322.092000pt;}
.y22a{bottom:322.773333pt;}
.y296{bottom:323.981333pt;}
.y249{bottom:325.193347pt;}
.ydb{bottom:326.704000pt;}
.y2b0{bottom:327.686667pt;}
.y133{bottom:328.366667pt;}
.y212{bottom:328.518680pt;}
.y2e1{bottom:329.428000pt;}
.y41{bottom:331.995157pt;}
.y1de{bottom:333.506667pt;}
.y6e{bottom:336.002667pt;}
.yc0{bottom:336.533333pt;}
.y30b{bottom:336.682184pt;}
.y1b9{bottom:336.757333pt;}
.y15a{bottom:336.984148pt;}
.y1e{bottom:337.513333pt;}
.y107{bottom:337.662667pt;}
.y16a{bottom:338.420000pt;}
.y295{bottom:339.932000pt;}
.y229{bottom:340.082667pt;}
.y248{bottom:341.823539pt;}
.yda{bottom:344.014667pt;}
.y2af{bottom:345.073333pt;}
.y211{bottom:345.224605pt;}
.y132{bottom:345.676000pt;}
.y244{bottom:345.751617pt;}
.y40{bottom:346.659507pt;}
.y2e0{bottom:346.813333pt;}
.y30a{bottom:349.304959pt;}
.y9e{bottom:353.312000pt;}
.y6d{bottom:353.313333pt;}
.y159{bottom:353.690072pt;}
.ybf{bottom:353.844000pt;}
.y1b8{bottom:354.068000pt;}
.y106{bottom:354.973333pt;}
.y227{bottom:355.200000pt;}
.y169{bottom:355.729333pt;}
.y294{bottom:355.957333pt;}
.y1d{bottom:356.184000pt;}
.y228{bottom:357.468000pt;}
.y226{bottom:357.469333pt;}
.y247{bottom:358.529464pt;}
.y1dc{bottom:360.793333pt;}
.y3f{bottom:361.323857pt;}
.yd9{bottom:361.324000pt;}
.y210{bottom:361.854797pt;}
.y25d{bottom:362.002667pt;}
.y2ae{bottom:362.382667pt;}
.y1dd{bottom:363.061333pt;}
.y131{bottom:363.062667pt;}
.y2df{bottom:364.124000pt;}
.y243{bottom:366.463891pt;}
.y309{bottom:366.691408pt;}
.y104{bottom:370.090667pt;}
.y158{bottom:370.320264pt;}
.y6c{bottom:370.698667pt;}
.ybe{bottom:371.229333pt;}
.y1b7{bottom:371.377333pt;}
.y105{bottom:372.282667pt;}
.y103{bottom:372.284000pt;}
.y225{bottom:374.778667pt;}
.y1c{bottom:374.854667pt;}
.y246{bottom:375.158589pt;}
.y3e{bottom:375.988207pt;}
.y25c{bottom:377.952000pt;}
.y1db{bottom:378.180000pt;}
.y20f{bottom:378.559655pt;}
.yd8{bottom:378.634667pt;}
.y242{bottom:379.086667pt;}
.y308{bottom:379.314184pt;}
.y2ad{bottom:379.693333pt;}
.y1da{bottom:380.372000pt;}
.y2de{bottom:381.433333pt;}
.y293{bottom:383.925333pt;}
.y157{bottom:387.025122pt;}
.y9d{bottom:388.008000pt;}
.y6b{bottom:388.009333pt;}
.y19a{bottom:388.538689pt;}
.ybd{bottom:388.540000pt;}
.y1b6{bottom:388.762667pt;}
.y102{bottom:389.670667pt;}
.y245{bottom:391.864514pt;}
.y307{bottom:392.013759pt;}
.y224{bottom:392.089333pt;}
.y1b{bottom:393.525333pt;}
.y25b{bottom:393.978667pt;}
.y130{bottom:394.356000pt;}
.y20e{bottom:395.189847pt;}
.yd7{bottom:396.020000pt;}
.y2ac{bottom:397.078667pt;}
.y1d9{bottom:397.682667pt;}
.y3d{bottom:398.665257pt;}
.y2dd{bottom:398.744000pt;}
.y156{bottom:403.655314pt;}
.y9c{bottom:405.318667pt;}
.y6a{bottom:405.320000pt;}
.y101{bottom:405.694685pt;}
.ybc{bottom:405.849333pt;}
.y1b5{bottom:406.149333pt;}
.y199{bottom:408.494706pt;}
.y306{bottom:409.324475pt;}
.y100{bottom:409.398667pt;}
.y223{bottom:409.474667pt;}
.y12f{bottom:410.382667pt;}
.y20d{bottom:411.894705pt;}
.y1a{bottom:412.196000pt;}
.yd6{bottom:413.330667pt;}
.y2ab{bottom:414.389333pt;}
.y1d8{bottom:415.068000pt;}
.y2dc{bottom:416.129333pt;}
.y292{bottom:417.184000pt;}
.y155{bottom:420.360172pt;}
.y3c{bottom:421.342307pt;}
.y305{bottom:422.022983pt;}
.y9b{bottom:422.704000pt;}
.y69{bottom:422.705333pt;}
.ybb{bottom:423.234667pt;}
.y1b4{bottom:423.458667pt;}
.y198{bottom:425.199564pt;}
.y222{bottom:426.785333pt;}
.y25a{bottom:428.524000pt;}
.y20c{bottom:428.524897pt;}
.yd5{bottom:430.640000pt;}
.y19{bottom:430.866667pt;}
.y2aa{bottom:431.698667pt;}
.y1d7{bottom:432.378667pt;}
.y291{bottom:433.133333pt;}
.y2db{bottom:433.440000pt;}
.y304{bottom:434.646826pt;}
.yfe{bottom:436.081333pt;}
.y12e{bottom:436.385333pt;}
.y154{bottom:436.990364pt;}
.y1a4{bottom:437.066667pt;}
.y68{bottom:440.014667pt;}
.yba{bottom:440.545333pt;}
.y1b3{bottom:440.769333pt;}
.y197{bottom:441.829756pt;}
.y3b{bottom:444.019357pt;}
.y221{bottom:444.096000pt;}
.yfa{bottom:445.228000pt;}
.y20b{bottom:445.230822pt;}
.y196{bottom:445.836106pt;}
.yd4{bottom:448.026667pt;}
.y2a9{bottom:449.084000pt;}
.y290{bottom:449.161333pt;}
.y18{bottom:449.537333pt;}
.y1d6{bottom:449.688000pt;}
.y2da{bottom:450.749333pt;}
.y303{bottom:452.032208pt;}
.y153{bottom:453.695222pt;}
.y12d{bottom:453.696000pt;}
.yfc{bottom:453.845333pt;}
.yfd{bottom:453.997333pt;}
.y1a3{bottom:454.377333pt;}
.y9a{bottom:457.324000pt;}
.y67{bottom:457.325333pt;}
.yb9{bottom:457.856000pt;}
.y1b2{bottom:458.154667pt;}
.y195{bottom:458.534614pt;}
.y220{bottom:461.481333pt;}
.y20a{bottom:461.859947pt;}
.yfb{bottom:462.009333pt;}
.y302{bottom:464.656051pt;}
.y1d4{bottom:464.806667pt;}
.yd3{bottom:465.336000pt;}
.y2a8{bottom:466.394667pt;}
.y3a{bottom:466.696406pt;}
.y1d5{bottom:467.073333pt;}
.y1d3{bottom:467.074667pt;}
.yff{bottom:467.904000pt;}
.y2d9{bottom:468.134667pt;}
.y259{bottom:468.358667pt;}
.y152{bottom:470.325414pt;}
.y12c{bottom:471.006667pt;}
.y1a2{bottom:471.686667pt;}
.y17{bottom:472.214667pt;}
.y99{bottom:474.634667pt;}
.y66{bottom:474.636000pt;}
.y194{bottom:475.164806pt;}
.yb8{bottom:475.241333pt;}
.y1b1{bottom:475.465333pt;}
.y28f{bottom:477.129333pt;}
.y301{bottom:477.355625pt;}
.y209{bottom:478.565872pt;}
.y21f{bottom:478.790667pt;}
.yf9{bottom:478.792000pt;}
.y38{bottom:481.360756pt;}
.y39{bottom:481.663686pt;}
.y2a7{bottom:483.705333pt;}
.y258{bottom:484.384000pt;}
.y1d2{bottom:484.385333pt;}
.yf8{bottom:484.762685pt;}
.y2d8{bottom:485.445333pt;}
.y151{bottom:487.031339pt;}
.y12b{bottom:488.392000pt;}
.yf7{bottom:488.466667pt;}
.y1a1{bottom:489.073333pt;}
.yd2{bottom:490.658667pt;}
.y193{bottom:491.870730pt;}
.y98{bottom:492.020000pt;}
.y65{bottom:492.021333pt;}
.yb7{bottom:492.550667pt;}
.y1b0{bottom:492.774667pt;}
.y300{bottom:494.665275pt;}
.y208{bottom:495.196064pt;}
.y21e{bottom:496.101333pt;}
.y1d0{bottom:499.502667pt;}
.y150{bottom:499.654114pt;}
.y257{bottom:500.334667pt;}
.y2a6{bottom:501.014667pt;}
.y1d1{bottom:501.694667pt;}
.y1cf{bottom:501.696000pt;}
.y2d7{bottom:502.756000pt;}
.y37{bottom:504.037806pt;}
.y12a{bottom:505.702667pt;}
.y1a0{bottom:506.382667pt;}
.y2ff{bottom:507.364850pt;}
.yd1{bottom:507.969333pt;}
.y16{bottom:508.424000pt;}
.y192{bottom:508.499856pt;}
.y64{bottom:509.330667pt;}
.yb6{bottom:509.861333pt;}
.y1af{bottom:510.085333pt;}
.y28e{bottom:510.388000pt;}
.y207{bottom:511.900922pt;}
.y21d{bottom:513.412000pt;}
.y2a5{bottom:518.401333pt;}
.y36{bottom:518.703223pt;}
.y1ce{bottom:519.081333pt;}
.y14f{bottom:519.458667pt;}
.y2fe{bottom:519.987626pt;}
.y2d6{bottom:520.141333pt;}
.yf6{bottom:522.406667pt;}
.y129{bottom:523.162667pt;}
.y19f{bottom:523.693333pt;}
.y191{bottom:525.205780pt;}
.y28d{bottom:526.412000pt;}
.y97{bottom:526.640000pt;}
.y63{bottom:526.641333pt;}
.y15{bottom:527.094667pt;}
.yb5{bottom:527.172000pt;}
.y1ae{bottom:527.470667pt;}
.y206{bottom:528.531114pt;}
.y21c{bottom:530.797333pt;}
.yd0{bottom:533.366667pt;}
.y35{bottom:533.367573pt;}
.y256{bottom:534.878667pt;}
.y2a4{bottom:535.710667pt;}
.y1cd{bottom:536.390667pt;}
.y2fd{bottom:537.298342pt;}
.y2d5{bottom:537.452000pt;}
.y19e{bottom:541.078667pt;}
.yf5{bottom:541.758667pt;}
.y190{bottom:541.834906pt;}
.y28c{bottom:542.364000pt;}
.y128{bottom:542.740000pt;}
.y62{bottom:544.026667pt;}
.yb4{bottom:544.557333pt;}
.y1ad{bottom:544.781333pt;}
.y205{bottom:545.160239pt;}
.y14{bottom:545.689333pt;}
.y34{bottom:548.031923pt;}
.y21b{bottom:548.106667pt;}
.y2fc{bottom:549.996850pt;}
.y14e{bottom:550.452000pt;}
.y2a3{bottom:553.021333pt;}
.y1cc{bottom:553.701333pt;}
.y2d4{bottom:554.761333pt;}
.ycf{bottom:555.970067pt;}
.y126{bottom:557.858667pt;}
.y19d{bottom:558.389333pt;}
.y18f{bottom:558.540830pt;}
.yf4{bottom:559.144000pt;}
.y127{bottom:560.125333pt;}
.y125{bottom:560.126667pt;}
.y96{bottom:561.336000pt;}
.y61{bottom:561.337333pt;}
.y204{bottom:561.866164pt;}
.yb3{bottom:561.868000pt;}
.y1ac{bottom:562.090667pt;}
.y33{bottom:562.696273pt;}
.y2fb{bottom:562.696425pt;}
.y13{bottom:564.360000pt;}
.y14d{bottom:567.837333pt;}
.y28b{bottom:570.332000pt;}
.y2a2{bottom:570.406667pt;}
.y1cb{bottom:571.086667pt;}
.y2d3{bottom:572.146667pt;}
.y18e{bottom:575.171022pt;}
.y19c{bottom:575.698667pt;}
.yf3{bottom:576.454667pt;}
.y239{bottom:576.605858pt;}
.y124{bottom:577.512000pt;}
.y203{bottom:578.496356pt;}
.y95{bottom:578.646667pt;}
.y60{bottom:578.648000pt;}
.yb2{bottom:579.177333pt;}
.yce{bottom:580.006667pt;}
.y2fa{bottom:580.007142pt;}
.y12{bottom:583.030667pt;}
.y32{bottom:584.541333pt;}
.y27b{bottom:584.694366pt;}
.y14c{bottom:585.148000pt;}
.y2a1{bottom:587.717333pt;}
.y1ca{bottom:588.397333pt;}
.y2d2{bottom:589.457333pt;}
.y1c8{bottom:590.588950pt;}
.y336{bottom:590.969225pt;}
.yf2{bottom:591.572000pt;}
.y18d{bottom:591.875880pt;}
.y2f9{bottom:592.629917pt;}
.y19b{bottom:593.084000pt;}
.yf1{bottom:593.764000pt;}
.y202{bottom:595.201214pt;}
.y237{bottom:595.502667pt;}
.y94{bottom:596.032000pt;}
.y5f{bottom:596.033333pt;}
.yb1{bottom:596.562667pt;}
.y238{bottom:597.241333pt;}
.y236{bottom:597.241492pt;}
.y123{bottom:597.772000pt;}
.y11{bottom:601.701333pt;}
.y14b{bottom:602.457333pt;}
.y28a{bottom:603.590667pt;}
.y335{bottom:603.592000pt;}
.y27a{bottom:604.650383pt;}
.y2a0{bottom:605.026667pt;}
.y2f8{bottom:605.329492pt;}
.y1c9{bottom:605.706667pt;}
.y2d1{bottom:606.768000pt;}
.y18c{bottom:608.506072pt;}
.y235{bottom:609.940000pt;}
.yf0{bottom:611.150667pt;}
.y1c7{bottom:611.225492pt;}
.y201{bottom:611.831406pt;}
.y5e{bottom:613.342667pt;}
.yb0{bottom:613.873333pt;}
.y334{bottom:616.291575pt;}
.y2f7{bottom:618.028000pt;}
.y289{bottom:619.616000pt;}
.y14a{bottom:619.844000pt;}
.y279{bottom:621.356308pt;}
.y29f{bottom:622.412000pt;}
.y1c6{bottom:623.924000pt;}
.y2d0{bottom:624.077333pt;}
.y10{bottom:624.377333pt;}
.y18b{bottom:625.210930pt;}
.y1a8{bottom:625.891455pt;}
.yef{bottom:627.174685pt;}
.y200{bottom:628.536264pt;}
.y93{bottom:630.652000pt;}
.y5d{bottom:630.653333pt;}
.y122{bottom:630.729333pt;}
.yee{bottom:630.880000pt;}
.yaf{bottom:631.184000pt;}
.y333{bottom:633.602292pt;}
.y288{bottom:635.566667pt;}
.y2f6{bottom:636.018667pt;}
.y149{bottom:637.153333pt;}
.y278{bottom:637.985433pt;}
.y1e9{bottom:638.515297pt;}
.y2cf{bottom:641.464000pt;}
.y18a{bottom:641.841122pt;}
.y1ff{bottom:645.166456pt;}
.y1a7{bottom:645.847472pt;}
.y332{bottom:646.300800pt;}
.y92{bottom:647.962667pt;}
.y5c{bottom:647.964000pt;}
.yae{bottom:648.569333pt;}
.y148{bottom:654.464000pt;}
.y277{bottom:654.691358pt;}
.yf{bottom:655.218667pt;}
.y2bd{bottom:655.220155pt;}
.y121{bottom:655.372000pt;}
.yec{bottom:657.562667pt;}
.y189{bottom:658.547047pt;}
.y2ce{bottom:658.773333pt;}
.y331{bottom:658.924642pt;}
.y31{bottom:661.796000pt;}
.y1fe{bottom:661.872380pt;}
.y1a6{bottom:662.553397pt;}
.y287{bottom:663.534667pt;}
.y91{bottom:665.348000pt;}
.y5b{bottom:665.349333pt;}
.yad{bottom:665.880000pt;}
.yeb{bottom:666.708000pt;}
.y276{bottom:671.321550pt;}
.y147{bottom:671.849333pt;}
.y120{bottom:672.757333pt;}
.y188{bottom:675.176172pt;}
.y2cd{bottom:676.084000pt;}
.y330{bottom:676.310025pt;}
.y30{bottom:677.140000pt;}
.y1fd{bottom:678.501506pt;}
.y5a{bottom:682.658667pt;}
.yac{bottom:683.189333pt;}
.yed{bottom:686.740000pt;}
.y275{bottom:688.026408pt;}
.y32f{bottom:688.933867pt;}
.y146{bottom:689.160000pt;}
.y11f{bottom:690.066667pt;}
.y187{bottom:691.882097pt;}
.y2f{bottom:692.409333pt;}
.y2cc{bottom:693.469333pt;}
.yea{bottom:694.905333pt;}
.y1fc{bottom:695.207430pt;}
.y286{bottom:696.793333pt;}
.y90{bottom:699.968000pt;}
.yab{bottom:700.500000pt;}
.ye9{bottom:700.876018pt;}
.y32e{bottom:701.633442pt;}
.y2f5{bottom:702.766667pt;}
.ye8{bottom:704.581333pt;}
.y274{bottom:704.656600pt;}
.y59{bottom:705.334667pt;}
.y145{bottom:706.469333pt;}
.y11e{bottom:707.377333pt;}
.y2e{bottom:707.754667pt;}
.y186{bottom:708.511222pt;}
.ye{bottom:708.889266pt;}
.y2cb{bottom:710.780000pt;}
.y1fb{bottom:711.836556pt;}
.y285{bottom:712.818667pt;}
.yaa{bottom:717.885333pt;}
.y32d{bottom:718.943092pt;}
.y273{bottom:721.361458pt;}
.y8f{bottom:722.645333pt;}
.y2d{bottom:723.098667pt;}
.y144{bottom:723.856000pt;}
.y11d{bottom:724.688000pt;}
.y185{bottom:725.217147pt;}
.y2f4{bottom:726.804000pt;}
.y2ca{bottom:728.089333pt;}
.y1fa{bottom:728.542480pt;}
.y284{bottom:728.845333pt;}
.y32c{bottom:731.642666pt;}
.ya9{bottom:735.196000pt;}
.yc{bottom:735.496934pt;}
.yd{bottom:735.723064pt;}
.y272{bottom:737.991650pt;}
.y143{bottom:741.165333pt;}
.y184{bottom:741.847339pt;}
.y11c{bottom:742.073333pt;}
.y32b{bottom:744.265442pt;}
.ye7{bottom:744.568000pt;}
.y1f9{bottom:745.172672pt;}
.y2c9{bottom:745.474667pt;}
.yb{bottom:748.875967pt;}
.y2f3{bottom:750.766667pt;}
.ya8{bottom:752.505333pt;}
.y271{bottom:754.696508pt;}
.y283{bottom:756.737333pt;}
.y142{bottom:758.552000pt;}
.y183{bottom:758.552197pt;}
.y11b{bottom:759.384000pt;}
.y32a{bottom:761.651891pt;}
.y1f8{bottom:761.877530pt;}
.ye6{bottom:761.878667pt;}
.ya{bottom:762.180334pt;}
.y2c8{bottom:762.785333pt;}
.y8e{bottom:769.890667pt;}
.y270{bottom:771.326700pt;}
.y329{bottom:774.274667pt;}
.y2f2{bottom:774.804000pt;}
.y182{bottom:775.182389pt;}
.y9{bottom:775.483634pt;}
.y141{bottom:775.937333pt;}
.y11a{bottom:776.693333pt;}
.y1f7{bottom:778.507722pt;}
.ye5{bottom:779.189333pt;}
.y2c7{bottom:780.096000pt;}
.y328{bottom:786.974241pt;}
.y8d{bottom:787.201333pt;}
.y26f{bottom:788.032624pt;}
.y58{bottom:788.561400pt;}
.y8{bottom:788.862667pt;}
.y282{bottom:790.072000pt;}
.y181{bottom:791.887247pt;}
.y140{bottom:793.246667pt;}
.y119{bottom:794.078667pt;}
.y1f6{bottom:795.212580pt;}
.y2c6{bottom:797.405333pt;}
.y2f1{bottom:798.766667pt;}
.y327{bottom:804.284958pt;}
.y8c{bottom:804.512000pt;}
.y26e{bottom:804.661750pt;}
.y281{bottom:806.021333pt;}
.y57{bottom:807.233333pt;}
.y180{bottom:808.517439pt;}
.y118{bottom:811.389333pt;}
.y1f5{bottom:811.842772pt;}
.y6{bottom:812.825333pt;}
.y2c5{bottom:814.792000pt;}
.y13f{bottom:815.924000pt;}
.y326{bottom:816.983466pt;}
.y7{bottom:818.192000pt;}
.y26d{bottom:821.367674pt;}
.y8b{bottom:821.897333pt;}
.y280{bottom:822.049333pt;}
.y2f0{bottom:822.804000pt;}
.y17f{bottom:825.223363pt;}
.y56{bottom:825.904000pt;}
.y4{bottom:827.489333pt;}
.y1f4{bottom:828.548697pt;}
.y325{bottom:829.607309pt;}
.y2c4{bottom:832.101333pt;}
.y5{bottom:832.857333pt;}
.y26c{bottom:837.997867pt;}
.y8a{bottom:839.208000pt;}
.y17e{bottom:841.852489pt;}
.y116{bottom:842.986667pt;}
.y55{bottom:844.574667pt;}
.y1f3{bottom:845.177822pt;}
.y2ef{bottom:846.765333pt;}
.y324{bottom:846.992691pt;}
.y2c3{bottom:849.412000pt;}
.y27f{bottom:850.017333pt;}
.y26b{bottom:854.702724pt;}
.y89{bottom:856.517333pt;}
.y17d{bottom:858.482681pt;}
.y323{bottom:859.616533pt;}
.y3{bottom:860.827467pt;}
.y1f2{bottom:861.883747pt;}
.y54{bottom:863.245333pt;}
.y115{bottom:865.664000pt;}
.y2c2{bottom:866.797333pt;}
.y2ee{bottom:870.804000pt;}
.y26a{bottom:871.332917pt;}
.y321{bottom:872.316108pt;}
.y88{bottom:873.902667pt;}
.y322{bottom:874.734211pt;}
.y17c{bottom:875.188605pt;}
.y117{bottom:876.093333pt;}
.y83{bottom:878.281888pt;}
.y1f1{bottom:878.513939pt;}
.y53{bottom:881.916000pt;}
.y27e{bottom:883.276000pt;}
.y2c1{bottom:884.108000pt;}
.y269{bottom:887.962042pt;}
.y320{bottom:889.625758pt;}
.y2{bottom:890.834667pt;}
.y87{bottom:891.213333pt;}
.y17b{bottom:891.817731pt;}
.y82{bottom:892.946238pt;}
.y2ed{bottom:894.765333pt;}
.y1f0{bottom:895.218797pt;}
.y27d{bottom:899.225333pt;}
.y52{bottom:900.510667pt;}
.y2c0{bottom:901.417333pt;}
.y31f{bottom:902.325333pt;}
.y268{bottom:904.667967pt;}
.y17a{bottom:908.523655pt;}
.y86{bottom:908.524000pt;}
.y1ef{bottom:911.848989pt;}
.y1a5{bottom:912.530005pt;}
.y31e{bottom:914.948108pt;}
.y27c{bottom:915.250667pt;}
.y81{bottom:915.623288pt;}
.y2bf{bottom:918.802667pt;}
.y51{bottom:919.181333pt;}
.y1{bottom:920.844000pt;}
.y267{bottom:921.298159pt;}
.y179{bottom:925.152781pt;}
.y85{bottom:925.833333pt;}
.y1ee{bottom:928.553847pt;}
.y80{bottom:930.288705pt;}
.y31d{bottom:932.258825pt;}
.y2be{bottom:941.404000pt;}
.y50{bottom:941.858667pt;}
.y84{bottom:943.218667pt;}
.y266{bottom:944.654667pt;}
.y7f{bottom:944.953055pt;}
.y178{bottom:944.957333pt;}
.y1ed{bottom:948.282667pt;}
.y2a{bottom:984.037333pt;}
.y7c{bottom:990.312000pt;}
.y7e{bottom:994.393333pt;}
.h10{height:16.478800pt;}
.h29{height:21.330000pt;}
.h21{height:22.783241pt;}
.h4{height:24.828689pt;}
.h1a{height:25.312644pt;}
.h27{height:26.663600pt;}
.h9{height:30.916533pt;}
.h28{height:31.999600pt;}
.h1{height:33.066253pt;}
.h5{height:33.108919pt;}
.he{height:34.772899pt;}
.hd{height:36.052883pt;}
.hc{height:37.082870pt;}
.h3{height:37.248000pt;}
.h19{height:37.973333pt;}
.h8{height:39.266667pt;}
.hb{height:40.000000pt;}
.h24{height:41.173333pt;}
.h1b{height:41.328000pt;}
.h17{height:41.333333pt;}
.h13{height:42.127241pt;}
.h1c{height:42.132574pt;}
.h15{height:45.353840pt;}
.h11{height:46.933333pt;}
.h7{height:47.593839pt;}
.h12{height:47.999600pt;}
.hf{height:49.663586pt;}
.h25{height:50.292574pt;}
.h26{height:50.297907pt;}
.h18{height:54.815928pt;}
.h20{height:56.948502pt;}
.h6{height:63.026667pt;}
.h1e{height:70.021333pt;}
.h1d{height:73.989333pt;}
.h22{height:77.914667pt;}
.h2{height:78.240000pt;}
.h23{height:82.448000pt;}
.h16{height:83.669333pt;}
.h1f{height:85.967241pt;}
.ha{height:88.063659pt;}
.h14{height:91.098594pt;}
.h0{height:1056.000000pt;}
.w2{width:75.363733pt;}
.w1{width:143.093333pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xc{left:46.261467pt;}
.xd{left:48.000000pt;}
.x3c{left:51.022896pt;}
.x3d{left:55.104978pt;}
.x42{left:57.750278pt;}
.x3e{left:58.658000pt;}
.x6f{left:60.774240pt;}
.x7a{left:61.680896pt;}
.xe{left:63.496000pt;}
.x79{left:64.932055pt;}
.x6e{left:72.717558pt;}
.x78{left:73.624213pt;}
.x6c{left:74.758066pt;}
.x77{left:75.665788pt;}
.xf{left:82.620028pt;}
.x70{left:84.962738pt;}
.x10{left:97.737705pt;}
.x5d{left:100.686275pt;}
.x5c{left:104.012100pt;}
.x5b{left:112.704258pt;}
.x58{left:114.745832pt;}
.x43{left:122.002275pt;}
.x45{left:124.269980pt;}
.x56{left:125.479565pt;}
.x41{left:126.991013pt;}
.x40{left:128.427795pt;}
.x47{left:146.872000pt;}
.x46{left:151.332000pt;}
.x6a{left:152.314429pt;}
.x6d{left:153.598680pt;}
.x6b{left:155.790653pt;}
.x76{left:158.209822pt;}
.x3f{left:162.669500pt;}
.x34{left:165.012937pt;}
.x5a{left:260.635209pt;}
.x59{left:262.448519pt;}
.x35{left:264.414361pt;}
.x1{left:266.682667pt;}
.x32{left:268.422667pt;}
.x63{left:270.994667pt;}
.x36{left:272.880389pt;}
.x74{left:275.226667pt;}
.x57{left:276.735274pt;}
.x54{left:277.797333pt;}
.x48{left:280.289333pt;}
.x11{left:282.632000pt;}
.x72{left:283.690667pt;}
.x50{left:285.808000pt;}
.x51{left:288.832000pt;}
.x19{left:289.814667pt;}
.x2c{left:291.780000pt;}
.x22{left:293.972000pt;}
.x1a{left:295.105333pt;}
.x2d{left:296.541333pt;}
.x23{left:299.262667pt;}
.x18{left:309.165404pt;}
.x2e{left:311.584000pt;}
.x21{left:313.246667pt;}
.x2f{left:316.346667pt;}
.x49{left:321.486667pt;}
.x64{left:325.417333pt;}
.x65{left:328.138667pt;}
.x52{left:335.621333pt;}
.x33{left:338.342667pt;}
.x53{left:341.518667pt;}
.x30{left:343.634667pt;}
.x55{left:344.620000pt;}
.x37{left:346.051741pt;}
.x75{left:347.868000pt;}
.x31{left:348.774667pt;}
.x28{left:349.984000pt;}
.x66{left:351.646667pt;}
.x69{left:352.932000pt;}
.x2{left:355.956000pt;}
.x73{left:357.165333pt;}
.x3{left:360.869333pt;}
.x4a{left:362.608000pt;}
.x2b{left:364.876000pt;}
.xa{left:366.312000pt;}
.x4b{left:379.540000pt;}
.x5e{left:381.808000pt;}
.x67{left:390.046667pt;}
.x68{left:395.036000pt;}
.x7b{left:400.930670pt;}
.x5f{left:406.904000pt;}
.x60{left:409.928000pt;}
.x2a{left:419.150667pt;}
.x38{left:428.898705pt;}
.x29{left:432.073333pt;}
.x24{left:437.820000pt;}
.x4{left:438.954667pt;}
.x1d{left:442.280000pt;}
.x5{left:443.868000pt;}
.x44{left:451.424290pt;}
.x61{left:456.717333pt;}
.x62{left:462.614667pt;}
.x1b{left:466.014667pt;}
.x13{left:469.490667pt;}
.x14{left:476.673935pt;}
.x1e{left:485.140000pt;}
.xb{left:488.010033pt;}
.x1c{left:499.881333pt;}
.x15{left:501.393333pt;}
.x16{left:520.365333pt;}
.x20{left:522.406667pt;}
.x12{left:534.349333pt;}
.x25{left:538.508071pt;}
.x1f{left:543.193333pt;}
.x27{left:551.281333pt;}
.x39{left:563.146627pt;}
.x26{left:573.052000pt;}
.x6{left:585.676000pt;}
.x7{left:590.589333pt;}
.x4c{left:634.280000pt;}
.x3a{left:636.771307pt;}
.x4d{left:654.085333pt;}
.x3b{left:684.468844pt;}
.x8{left:696.869333pt;}
.x9{left:701.782667pt;}
.x71{left:714.931397pt;}
.x4e{left:738.520000pt;}
.x4f{left:741.468000pt;}
.x17{left:751.292000pt;}
}




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