
    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_ff568ab3a8dd4319cb143380.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_7d618ee6231ffe13c57ef739.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.989000;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_56e4e736129fdb42e46ce182.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_e25cd31cc8eb57605cea6a62.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.010000;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_fd86776ed3b5bc9bb01945bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000488;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_a3186d2331691c8b334c09f6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.006348;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_8000d04296650488ef979ecc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.011230;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_35db1e4da59083291f9eb70b.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a5d43a2f4dee2968520f7c34.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727539;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_590a72520ccfdaccc0574448.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.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:ffd;src:url('chunks/assets/font_a894076197f606b183d57559.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.514000;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_9a05477b2e042296728995cb.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;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_5393be0093dd6d75c9a38661.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;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_dac00e38a02716c7f05c11ba.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011230;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_35db1e4da59083291f9eb70b.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a5d43a2f4dee2968520f7c34.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.727539;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_eb567b69b94446cb25a13c58.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000488;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_ee4b7e86958f9baf532ebc4a.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.006348;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_b26586a6633dd6d55792a174.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.011230;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_e31ad1deccbca8fd169591a4.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_d8d991d55526641567baff23.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_13335371c5e10522f8d993b5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.682129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_a5d43a2f4dee2968520f7c34.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7c0c709d92fa24f599a33f03.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.488000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_f6828e6d857c84b483622b5e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.747000;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:ff1c;src:url('chunks/assets/font_9a05477b2e042296728995cb.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.000488;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:ff1d;src:url('chunks/assets/font_5e3e84c5ee6868479aaa2e8e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.006348;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:ff1e;src:url('chunks/assets/font_251860c97d81023d78d0625f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.011230;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:ff1f;src:url('chunks/assets/font_9a05477b2e042296728995cb.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.000488;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:ff20;src:url('chunks/assets/font_5e3e84c5ee6868479aaa2e8e.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.006348;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:ff21;src:url('chunks/assets/font_251860c97d81023d78d0625f.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.011230;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:ff22;src:url('chunks/assets/font_9a05477b2e042296728995cb.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000488;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:ff23;src:url('chunks/assets/font_5e3e84c5ee6868479aaa2e8e.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.006348;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:ff24;src:url('chunks/assets/font_251860c97d81023d78d0625f.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.011230;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:ff25;src:url('chunks/assets/font_bf54ab713d370111a1e00208.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.726000;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;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v1{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.350000px;}
.v3{vertical-align:19.530000px;}
.v2{vertical-align:32.874000px;}
.v4{vertical-align:39.264000px;}
.ls55{letter-spacing:-0.342684px;}
.ls4a{letter-spacing:-0.264528px;}
.ls4b{letter-spacing:-0.216432px;}
.ls25{letter-spacing:-0.186372px;}
.ls2d{letter-spacing:-0.162324px;}
.ls54{letter-spacing:-0.156312px;}
.ls49{letter-spacing:-0.144288px;}
.ls2a{letter-spacing:-0.138276px;}
.ls2e{letter-spacing:-0.132264px;}
.ls26{letter-spacing:-0.120240px;}
.ls30{letter-spacing:-0.108216px;}
.ls2f{letter-spacing:-0.102204px;}
.ls33{letter-spacing:-0.096192px;}
.ls43{letter-spacing:-0.090180px;}
.ls56{letter-spacing:-0.084168px;}
.ls46{letter-spacing:-0.078156px;}
.ls45{letter-spacing:-0.072144px;}
.ls47{letter-spacing:-0.066132px;}
.ls27{letter-spacing:-0.060120px;}
.ls44{letter-spacing:-0.048096px;}
.ls48{letter-spacing:-0.042084px;}
.ls62{letter-spacing:-0.038304px;}
.ls29{letter-spacing:-0.036072px;}
.ls2c{letter-spacing:-0.030060px;}
.ls22{letter-spacing:-0.028728px;}
.ls28{letter-spacing:-0.024048px;}
.ls32{letter-spacing:-0.018036px;}
.ls63{letter-spacing:-0.014364px;}
.ls2b{letter-spacing:-0.012024px;}
.ls64{letter-spacing:-0.010800px;}
.ls24{letter-spacing:-0.006012px;}
.ls31{letter-spacing:-0.005400px;}
.ls23{letter-spacing:-0.004788px;}
.ls0{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.000088px;}
.ls6b{letter-spacing:0.000263px;}
.ls69{letter-spacing:0.000422px;}
.ls6f{letter-spacing:0.001070px;}
.ls72{letter-spacing:0.001155px;}
.ls5f{letter-spacing:0.001573px;}
.ls6d{letter-spacing:0.001831px;}
.ls6a{letter-spacing:0.001989px;}
.ls6e{letter-spacing:0.002544px;}
.ls71{letter-spacing:0.002841px;}
.ls5d{letter-spacing:0.003000px;}
.ls70{letter-spacing:0.003643px;}
.ls1b{letter-spacing:0.006012px;}
.ls4c{letter-spacing:0.010800px;}
.ls15{letter-spacing:0.012024px;}
.ls1e{letter-spacing:0.016200px;}
.ls20{letter-spacing:0.018036px;}
.ls1f{letter-spacing:0.024048px;}
.ls4e{letter-spacing:0.027000px;}
.ls1c{letter-spacing:0.030060px;}
.ls40{letter-spacing:0.032400px;}
.ls42{letter-spacing:0.036072px;}
.ls1d{letter-spacing:0.042084px;}
.ls19{letter-spacing:0.048096px;}
.ls41{letter-spacing:0.054000px;}
.ls13{letter-spacing:0.054108px;}
.ls18{letter-spacing:0.060120px;}
.ls14{letter-spacing:0.066132px;}
.ls17{letter-spacing:0.078156px;}
.ls1a{letter-spacing:0.084168px;}
.ls16{letter-spacing:0.120240px;}
.ls4d{letter-spacing:0.140400px;}
.ls61{letter-spacing:0.172368px;}
.ls53{letter-spacing:0.174348px;}
.ls12{letter-spacing:0.177156px;}
.ls60{letter-spacing:0.181944px;}
.ls11{letter-spacing:0.191520px;}
.ls5b{letter-spacing:0.520800px;}
.ls52{letter-spacing:1.539072px;}
.ls5c{letter-spacing:3.525945px;}
.ls58{letter-spacing:3.531945px;}
.ls4f{letter-spacing:3.697380px;}
.ls51{letter-spacing:7.659288px;}
.ls50{letter-spacing:8.741448px;}
.ls3{letter-spacing:11.954850px;}
.lsd{letter-spacing:13.449510px;}
.ls6c{letter-spacing:13.648748px;}
.ls8{letter-spacing:13.748388px;}
.ls7{letter-spacing:13.867939px;}
.ls6{letter-spacing:13.927715px;}
.ls9{letter-spacing:14.047266px;}
.lsa{letter-spacing:14.226593px;}
.ls35{letter-spacing:14.405920px;}
.ls67{letter-spacing:14.525471px;}
.lsb{letter-spacing:14.645022px;}
.ls21{letter-spacing:14.704798px;}
.ls3f{letter-spacing:14.764573px;}
.ls3d{letter-spacing:14.824349px;}
.lsc{letter-spacing:14.884124px;}
.ls5e{letter-spacing:14.943767px;}
.lsf{letter-spacing:14.943900px;}
.ls10{letter-spacing:15.003676px;}
.lse{letter-spacing:15.063451px;}
.ls34{letter-spacing:15.105292px;}
.ls2{letter-spacing:15.123227px;}
.ls3c{letter-spacing:15.183002px;}
.ls66{letter-spacing:15.242778px;}
.ls65{letter-spacing:15.362329px;}
.ls36{letter-spacing:15.655723px;}
.ls3e{letter-spacing:16.139412px;}
.ls39{letter-spacing:16.796944px;}
.ls3b{letter-spacing:16.861605px;}
.ls5{letter-spacing:17.454475px;}
.ls4{letter-spacing:18.649987px;}
.ls68{letter-spacing:24.328669px;}
.ls37{letter-spacing:24.687323px;}
.ls1{letter-spacing:28.453654px;}
.ls3a{letter-spacing:92.438700px;}
.ls38{letter-spacing:94.292700px;}
.ls5a{letter-spacing:141.766800px;}
.ls57{letter-spacing:185.500800px;}
.ls59{letter-spacing:212.230800px;}
.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;}
}
.ws11c{word-spacing:-43.600200px;}
.wsdb{word-spacing:-15.204348px;}
.wsdc{word-spacing:-15.096132px;}
.ws37{word-spacing:-14.943900px;}
.ws11b{word-spacing:-13.449600px;}
.ws4e{word-spacing:-12.161520px;}
.ws132{word-spacing:-12.151944px;}
.ws4f{word-spacing:-11.970000px;}
.ws2d{word-spacing:-11.955150px;}
.ws6{word-spacing:-10.460700px;}
.ws10d{word-spacing:-3.523032px;}
.ws10e{word-spacing:-3.420828px;}
.ws42{word-spacing:-3.168107px;}
.ws9b{word-spacing:-3.108331px;}
.ws19{word-spacing:-2.905114px;}
.ws92{word-spacing:-2.869229px;}
.wsee{word-spacing:-2.470932px;}
.ws49{word-spacing:-2.450800px;}
.wsa4{word-spacing:-2.211697px;}
.ws96{word-spacing:-2.092146px;}
.wsfe{word-spacing:-2.062116px;}
.wsfd{word-spacing:-2.026044px;}
.ws94{word-spacing:-1.972595px;}
.ws89{word-spacing:-1.965924px;}
.ws9c{word-spacing:-1.853044px;}
.ws44{word-spacing:-1.613941px;}
.ws26{word-spacing:-1.554166px;}
.ws1d{word-spacing:-1.494390px;}
.ws54{word-spacing:-1.434614px;}
.wsfc{word-spacing:-1.412820px;}
.ws14f{word-spacing:-1.398758px;}
.wsfa{word-spacing:-1.388772px;}
.ws7d{word-spacing:-1.376748px;}
.ws111{word-spacing:-1.374839px;}
.ws27{word-spacing:-1.315063px;}
.ws11{word-spacing:-1.291162px;}
.ws23{word-spacing:-1.255288px;}
.ws38{word-spacing:-1.195512px;}
.ws3d{word-spacing:-1.135736px;}
.ws168{word-spacing:-1.075968px;}
.ws139{word-spacing:-1.075961px;}
.wsfb{word-spacing:-1.052100px;}
.ws82{word-spacing:-1.034064px;}
.ws10f{word-spacing:-1.022040px;}
.ws32{word-spacing:-1.016185px;}
.ws63{word-spacing:-0.997992px;}
.ws64{word-spacing:-0.961920px;}
.ws8d{word-spacing:-0.956410px;}
.ws39{word-spacing:-0.896634px;}
.ws110{word-spacing:-0.895788px;}
.ws3b{word-spacing:-0.836858px;}
.ws15d{word-spacing:-0.806976px;}
.ws3c{word-spacing:-0.777083px;}
.ws4c{word-spacing:-0.717307px;}
.ws90{word-spacing:-0.657532px;}
.ws149{word-spacing:-0.645581px;}
.ws13e{word-spacing:-0.597756px;}
.ws70{word-spacing:-0.595188px;}
.ws122{word-spacing:-0.537980px;}
.ws71{word-spacing:-0.492984px;}
.ws13c{word-spacing:-0.478205px;}
.wsa0{word-spacing:-0.418429px;}
.ws41{word-spacing:-0.358654px;}
.ws147{word-spacing:-0.322790px;}
.wse9{word-spacing:-0.300600px;}
.ws22{word-spacing:-0.298878px;}
.ws59{word-spacing:-0.277704px;}
.ws134{word-spacing:-0.272916px;}
.ws102{word-spacing:-0.270540px;}
.ws14b{word-spacing:-0.268992px;}
.wsc7{word-spacing:-0.258516px;}
.ws103{word-spacing:-0.246492px;}
.ws2b{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.wsc6{word-spacing:-0.192384px;}
.ws21{word-spacing:-0.179327px;}
.ws2{word-spacing:-0.167371px;}
.ws12{word-spacing:-0.161395px;}
.ws31{word-spacing:-0.119551px;}
.ws155{word-spacing:-0.107597px;}
.ws5a{word-spacing:-0.081396px;}
.ws135{word-spacing:-0.076608px;}
.ws50{word-spacing:-0.060120px;}
.ws1e{word-spacing:-0.059776px;}
.ws58{word-spacing:-0.057456px;}
.ws16{word-spacing:-0.053798px;}
.ws133{word-spacing:-0.052668px;}
.ws12e{word-spacing:-0.047821px;}
.ws172{word-spacing:-0.011933px;}
.ws150{word-spacing:-0.011779px;}
.ws15c{word-spacing:-0.009254px;}
.ws167{word-spacing:-0.007776px;}
.ws157{word-spacing:-0.007066px;}
.ws15a{word-spacing:-0.006710px;}
.ws16c{word-spacing:-0.006125px;}
.ws153{word-spacing:-0.005933px;}
.ws16a{word-spacing:-0.005837px;}
.ws16b{word-spacing:-0.003466px;}
.ws171{word-spacing:-0.001978px;}
.ws4{word-spacing:-0.000026px;}
.ws0{word-spacing:0.000000px;}
.ws2c{word-spacing:0.003599px;}
.ws6a{word-spacing:0.036072px;}
.wsb1{word-spacing:0.048096px;}
.ws10{word-spacing:0.053798px;}
.ws7e{word-spacing:0.054108px;}
.ws24{word-spacing:0.059776px;}
.wsce{word-spacing:0.060120px;}
.ws107{word-spacing:0.066132px;}
.ws106{word-spacing:0.078156px;}
.ws3{word-spacing:0.083686px;}
.wse3{word-spacing:0.096192px;}
.ws15b{word-spacing:0.107597px;}
.ws69{word-spacing:0.108216px;}
.ws8b{word-spacing:0.119551px;}
.wsff{word-spacing:0.120240px;}
.wsae{word-spacing:0.129600px;}
.wsc5{word-spacing:0.138276px;}
.wsc3{word-spacing:0.144288px;}
.wsad{word-spacing:0.151200px;}
.ws11e{word-spacing:0.161395px;}
.wsc4{word-spacing:0.162324px;}
.wse1{word-spacing:0.167400px;}
.wsf8{word-spacing:0.168336px;}
.ws137{word-spacing:0.178200px;}
.ws1c{word-spacing:0.179327px;}
.ws138{word-spacing:0.183600px;}
.ws81{word-spacing:0.189000px;}
.ws14d{word-spacing:0.215194px;}
.ws8a{word-spacing:0.228456px;}
.ws30{word-spacing:0.239102px;}
.wsf{word-spacing:0.268992px;}
.ws1f{word-spacing:0.298878px;}
.wsd6{word-spacing:0.312624px;}
.ws25{word-spacing:0.358654px;}
.wsc2{word-spacing:0.414828px;}
.ws9f{word-spacing:0.418429px;}
.ws148{word-spacing:0.430387px;}
.wsf9{word-spacing:0.438876px;}
.ws84{word-spacing:0.456912px;}
.wsc0{word-spacing:0.462924px;}
.ws85{word-spacing:0.474948px;}
.ws33{word-spacing:0.478205px;}
.ws154{word-spacing:0.484186px;}
.wsd4{word-spacing:0.486972px;}
.wsd3{word-spacing:0.492984px;}
.wsc1{word-spacing:0.535068px;}
.wsdd{word-spacing:0.537984px;}
.ws95{word-spacing:0.597756px;}
.ws13{word-spacing:0.645581px;}
.ws36{word-spacing:0.657532px;}
.ws91{word-spacing:0.717307px;}
.wsd5{word-spacing:0.721440px;}
.ws48{word-spacing:0.777083px;}
.ws126{word-spacing:0.836858px;}
.ws56{word-spacing:0.896634px;}
.ws14e{word-spacing:0.914573px;}
.ws5f{word-spacing:0.937872px;}
.ws55{word-spacing:1.016185px;}
.ws14{word-spacing:1.022170px;}
.ws97{word-spacing:1.075961px;}
.ws60{word-spacing:1.124244px;}
.ws141{word-spacing:1.129766px;}
.ws98{word-spacing:1.135736px;}
.ws104{word-spacing:1.136268px;}
.ws5d{word-spacing:1.184364px;}
.ws28{word-spacing:1.195512px;}
.ws3a{word-spacing:1.315063px;}
.ws5e{word-spacing:1.364724px;}
.wsab{word-spacing:1.374839px;}
.wsc{word-spacing:1.380812px;}
.ws115{word-spacing:1.434614px;}
.ws78{word-spacing:1.484964px;}
.ws4d{word-spacing:1.494390px;}
.ws105{word-spacing:1.539072px;}
.ws9a{word-spacing:1.554166px;}
.ws53{word-spacing:1.613941px;}
.ws163{word-spacing:1.667750px;}
.ws77{word-spacing:1.671336px;}
.wsac{word-spacing:1.673717px;}
.ws15{word-spacing:1.721549px;}
.ws47{word-spacing:1.793268px;}
.ws166{word-spacing:1.829146px;}
.wsd8{word-spacing:1.853044px;}
.wse7{word-spacing:1.863720px;}
.ws15e{word-spacing:1.882944px;}
.wse8{word-spacing:1.893780px;}
.ws9d{word-spacing:1.912819px;}
.ws34{word-spacing:1.972595px;}
.ws18{word-spacing:1.972647px;}
.ws159{word-spacing:1.990541px;}
.ws35{word-spacing:2.032370px;}
.ws146{word-spacing:2.098138px;}
.wsda{word-spacing:2.211697px;}
.ws13a{word-spacing:2.271473px;}
.ws2a{word-spacing:2.331248px;}
.ws117{word-spacing:2.391024px;}
.ws3f{word-spacing:2.450800px;}
.ws9e{word-spacing:2.510575px;}
.ws1{word-spacing:2.511541px;}
.ws1b{word-spacing:2.570351px;}
.ws14a{word-spacing:2.582323px;}
.ws8c{word-spacing:2.630126px;}
.ws158{word-spacing:2.636122px;}
.ws4a{word-spacing:2.689902px;}
.wsa1{word-spacing:2.749678px;}
.wsd7{word-spacing:2.809453px;}
.wsd{word-spacing:2.869236px;}
.wsd1{word-spacing:2.915820px;}
.wsd9{word-spacing:2.929004px;}
.ws86{word-spacing:2.951892px;}
.wsa2{word-spacing:3.048556px;}
.ws20{word-spacing:3.108331px;}
.ws118{word-spacing:3.168107px;}
.ws15f{word-spacing:3.219514px;}
.ws152{word-spacing:3.220541px;}
.ws169{word-spacing:3.221971px;}
.ws161{word-spacing:3.222000px;}
.ws175{word-spacing:3.222960px;}
.ws160{word-spacing:3.223238px;}
.ws14c{word-spacing:3.223344px;}
.ws156{word-spacing:3.224534px;}
.ws142{word-spacing:3.224822px;}
.ws165{word-spacing:3.225226px;}
.ws13d{word-spacing:3.227882px;}
.ws11a{word-spacing:3.227904px;}
.ws11f{word-spacing:3.281702px;}
.ws46{word-spacing:3.287658px;}
.wse4{word-spacing:3.294576px;}
.wse5{word-spacing:3.318624px;}
.wsb5{word-spacing:3.366720px;}
.ws16d{word-spacing:3.389299px;}
.wsb6{word-spacing:3.444876px;}
.wsa5{word-spacing:3.466985px;}
.ws176{word-spacing:3.496896px;}
.wsaa{word-spacing:3.526760px;}
.ws1a{word-spacing:3.586536px;}
.wse{word-spacing:3.638340px;}
.wsd2{word-spacing:3.667320px;}
.ws6d{word-spacing:3.685356px;}
.wse6{word-spacing:3.703392px;}
.ws162{word-spacing:3.712090px;}
.wsbf{word-spacing:3.715416px;}
.ws4b{word-spacing:3.765863px;}
.ws43{word-spacing:3.825638px;}
.ws164{word-spacing:3.873485px;}
.ws116{word-spacing:3.885414px;}
.ws151{word-spacing:3.927283px;}
.ws2f{word-spacing:3.945190px;}
.ws13f{word-spacing:4.004965px;}
.ws16f{word-spacing:4.034880px;}
.ws123{word-spacing:4.064741px;}
.wsaf{word-spacing:4.070124px;}
.wsa3{word-spacing:4.124516px;}
.wsb0{word-spacing:4.148280px;}
.ws119{word-spacing:4.303843px;}
.ws173{word-spacing:4.303872px;}
.ws8f{word-spacing:4.363619px;}
.wsb9{word-spacing:4.388760px;}
.ws131{word-spacing:4.423394px;}
.ws13b{word-spacing:4.662497px;}
.ws68{word-spacing:4.701384px;}
.ws57{word-spacing:4.722272px;}
.ws51{word-spacing:4.734259px;}
.ws67{word-spacing:4.767516px;}
.ws40{word-spacing:4.782048px;}
.ws109{word-spacing:4.791564px;}
.wse0{word-spacing:4.838400px;}
.wsde{word-spacing:4.849200px;}
.wsdf{word-spacing:4.854600px;}
.ws145{word-spacing:4.949453px;}
.ws8e{word-spacing:4.961375px;}
.ws7b{word-spacing:5.080140px;}
.ws5c{word-spacing:5.086152px;}
.ws7c{word-spacing:5.152284px;}
.ws65{word-spacing:5.176332px;}
.ws108{word-spacing:5.188356px;}
.ws29{word-spacing:5.200477px;}
.ws66{word-spacing:5.278536px;}
.wsa{word-spacing:5.481407px;}
.ws114{word-spacing:5.499355px;}
.ws140{word-spacing:5.559131px;}
.wsa7{word-spacing:5.618906px;}
.wsa8{word-spacing:5.738458px;}
.ws2e{word-spacing:5.858009px;}
.ws76{word-spacing:5.981940px;}
.ws72{word-spacing:6.132240px;}
.ws113{word-spacing:6.156887px;}
.wsb7{word-spacing:6.186348px;}
.ws144{word-spacing:6.186816px;}
.ws73{word-spacing:6.204384px;}
.wsb8{word-spacing:6.222420px;}
.ws12c{word-spacing:6.276438px;}
.ws93{word-spacing:6.395989px;}
.wsa9{word-spacing:6.515540px;}
.ws52{word-spacing:6.694867px;}
.ws112{word-spacing:6.754643px;}
.ws88{word-spacing:6.919812px;}
.ws125{word-spacing:6.933970px;}
.ws87{word-spacing:6.973920px;}
.wsef{word-spacing:7.256484px;}
.wsc9{word-spacing:7.322616px;}
.wsc8{word-spacing:7.328628px;}
.ws99{word-spacing:7.471950px;}
.wscd{word-spacing:7.599168px;}
.wsf2{word-spacing:7.629228px;}
.wsf4{word-spacing:7.635240px;}
.ws143{word-spacing:7.639373px;}
.wsf3{word-spacing:7.647264px;}
.wsf1{word-spacing:7.653276px;}
.wsf0{word-spacing:7.689348px;}
.ws3e{word-spacing:7.711052px;}
.ws80{word-spacing:7.727400px;}
.ws7f{word-spacing:7.732800px;}
.ws12d{word-spacing:7.950155px;}
.ws45{word-spacing:8.009930px;}
.ws79{word-spacing:8.013996px;}
.ws74{word-spacing:8.122212px;}
.ws7a{word-spacing:8.128224px;}
.ws75{word-spacing:8.140248px;}
.wsea{word-spacing:8.338644px;}
.wsa6{word-spacing:8.428360px;}
.wsed{word-spacing:8.687340px;}
.wsec{word-spacing:8.723412px;}
.wsba{word-spacing:8.771508px;}
.wsbb{word-spacing:8.789544px;}
.wsbc{word-spacing:8.813592px;}
.wseb{word-spacing:8.897760px;}
.wsf5{word-spacing:9.078120px;}
.wsf7{word-spacing:9.090144px;}
.wsf6{word-spacing:9.096156px;}
.ws10c{word-spacing:9.390744px;}
.ws61{word-spacing:9.751464px;}
.ws100{word-spacing:9.805572px;}
.ws101{word-spacing:9.823608px;}
.ws8{word-spacing:9.833058px;}
.ws62{word-spacing:9.877716px;}
.ws16e{word-spacing:10.006502px;}
.ws83{word-spacing:10.136232px;}
.ws10a{word-spacing:10.490940px;}
.ws10b{word-spacing:10.514988px;}
.ws170{word-spacing:11.512858px;}
.ws136{word-spacing:11.615688px;}
.ws5b{word-spacing:11.620476px;}
.ws9{word-spacing:11.841512px;}
.ws174{word-spacing:12.050842px;}
.wsb4{word-spacing:13.364676px;}
.wsb2{word-spacing:13.370688px;}
.wsb3{word-spacing:13.388724px;}
.ws124{word-spacing:13.389734px;}
.wsbe{word-spacing:14.524992px;}
.wsbd{word-spacing:14.537016px;}
.wscc{word-spacing:15.222384px;}
.ws5{word-spacing:15.481836px;}
.wscb{word-spacing:15.619176px;}
.wsca{word-spacing:15.727392px;}
.wsb{word-spacing:16.067635px;}
.ws6e{word-spacing:16.653240px;}
.wsd0{word-spacing:16.959852px;}
.ws6f{word-spacing:16.971876px;}
.wscf{word-spacing:17.080092px;}
.wse2{word-spacing:18.829584px;}
.ws6b{word-spacing:21.372660px;}
.ws6c{word-spacing:21.504924px;}
.ws7{word-spacing:22.339429px;}
.ws120{word-spacing:31.675285px;}
.ws121{word-spacing:44.455285px;}
.ws11d{word-spacing:96.265285px;}
.ws128{word-spacing:149.505754px;}
.ws12f{word-spacing:154.699641px;}
.ws12b{word-spacing:156.230554px;}
.ws129{word-spacing:162.955354px;}
.ws12a{word-spacing:176.404954px;}
.ws127{word-spacing:190.607731px;}
.ws130{word-spacing:318.163910px;}
._6{margin-left:-12.415489px;}
._8{margin-left:-9.898906px;}
._16{margin-left:-8.398476px;}
._14{margin-left:-7.310657px;}
._7{margin-left:-5.917824px;}
._1{margin-left:-4.686394px;}
._2{margin-left:-3.054524px;}
._5{margin-left:-1.464498px;}
._18{width:1.254456px;}
._4c{width:2.343217px;}
._17{width:3.855522px;}
._0{width:12.218098px;}
._e{width:14.148979px;}
._b{width:15.978125px;}
._a{width:17.173631px;}
._c{width:18.249599px;}
._d{width:20.024946px;}
._15{width:21.339889px;}
._10{width:22.953830px;}
._20{width:24.029791px;}
._3{width:25.314894px;}
._11{width:26.450699px;}
._f{width:28.333634px;}
._1e{width:29.499134px;}
._4{width:31.256572px;}
._1c{width:33.892765px;}
._4b{width:35.291750px;}
._1f{width:36.732102px;}
._21{width:37.808063px;}
._1b{width:39.601331px;}
._1a{width:43.935696px;}
._1d{width:67.964857px;}
._37{width:81.629504px;}
._9{width:84.313343px;}
._22{width:92.694643px;}
._26{width:121.902509px;}
._23{width:125.714876px;}
._25{width:147.832166px;}
._2a{width:162.901555px;}
._3b{width:166.702612px;}
._2b{width:176.404954px;}
._32{width:203.250355px;}
._3a{width:230.208368px;}
._49{width:237.716203px;}
._29{width:295.998797px;}
._2c{width:309.448397px;}
._28{width:313.913664px;}
._2d{width:317.302963px;}
._36{width:334.696379px;}
._33{width:347.746997px;}
._39{width:351.433721px;}
._31{width:353.126837px;}
._47{width:421.466924px;}
._34{width:431.785958px;}
._48{width:434.091562px;}
._35{width:467.394638px;}
._46{width:524.089931px;}
._24{width:557.654147px;}
._44{width:572.179514px;}
._40{width:604.882769px;}
._3c{width:609.152978px;}
._38{width:614.375199px;}
._3d{width:622.146006px;}
._3f{width:630.084226px;}
._3e{width:642.565402px;}
._2e{width:678.828211px;}
._45{width:698.515504px;}
._30{width:703.790669px;}
._41{width:723.047472px;}
._43{width:725.295040px;}
._42{width:742.020320px;}
._2f{width:744.569856px;}
._12{width:882.270203px;}
._4a{width:2080.802556px;}
._19{width:2105.489484px;}
._27{width:2514.672407px;}
._13{width:2538.582407px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fse{font-size:43.600200px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsb{font-size:60.120000px;}
.fsd{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.y175{bottom:-794.381550px;}
.y248{bottom:-786.689550px;}
.y14d{bottom:-765.190050px;}
.y194{bottom:-727.864665px;}
.y24e{bottom:-719.369550px;}
.y193{bottom:-708.605223px;}
.y24d{bottom:-696.869550px;}
.y192{bottom:-689.435961px;}
.y191{bottom:-670.176519px;}
.y190{bottom:-650.917077px;}
.y18f{bottom:-627.246330px;}
.y18e{bottom:-603.575583px;}
.y18d{bottom:-566.316213px;}
.y18c{bottom:-547.056771px;}
.y18b{bottom:-509.886078px;}
.y18a{bottom:-490.626636px;}
.y165{bottom:-471.511365px;}
.y189{bottom:-471.367194px;}
.y164{bottom:-452.251923px;}
.y253{bottom:-441.089550px;}
.y188{bottom:-434.196501px;}
.y163{bottom:-433.082661px;}
.y187{bottom:-414.937059px;}
.y162{bottom:-413.823219px;}
.y186{bottom:-395.677617px;}
.y161{bottom:-394.563777px;}
.y160{bottom:-375.394515px;}
.y259{bottom:-373.769550px;}
.y24c{bottom:-368.999550px;}
.y185{bottom:-358.506924px;}
.y15f{bottom:-356.135073px;}
.y258{bottom:-351.269550px;}
.y24b{bottom:-346.499550px;}
.y184{bottom:-339.247482px;}
.y15e{bottom:-336.965811px;}
.y183{bottom:-319.988040px;}
.y15d{bottom:-317.706369px;}
.y182{bottom:-300.818778px;}
.y15c{bottom:-298.446927px;}
.yaa{bottom:-284.492550px;}
.y15b{bottom:-274.776180px;}
.y181{bottom:-263.648085px;}
.y15a{bottom:-251.016756px;}
.y180{bottom:-244.388643px;}
.y159{bottom:-231.845991px;}
.y17f{bottom:-225.129201px;}
.y158{bottom:-212.586549px;}
.y157{bottom:-193.327107px;}
.yc7{bottom:-190.798842px;}
.y17e{bottom:-187.958508px;}
.y156{bottom:-174.156342px;}
.yc6{bottom:-171.539400px;}
.y17d{bottom:-168.699066px;}
.y155{bottom:-154.896900px;}
.yc5{bottom:-152.279958px;}
.y17c{bottom:-149.439624px;}
.y154{bottom:-135.727638px;}
.yc4{bottom:-133.110696px;}
.y17b{bottom:-130.270362px;}
.y153{bottom:-116.468196px;}
.yc3{bottom:-113.851254px;}
.y152{bottom:-97.208754px;}
.yc2{bottom:-94.681992px;}
.y17a{bottom:-93.010992px;}
.y25e{bottom:-86.163000px;}
.y151{bottom:-78.039492px;}
.yc1{bottom:-75.422550px;}
.y179{bottom:-73.751550px;}
.y150{bottom:-58.780050px;}
.yc0{bottom:-38.613000px;}
.y178{bottom:-36.942000px;}
.y257{bottom:-23.399550px;}
.y14f{bottom:-21.970050px;}
.ybf{bottom:-21.242550px;}
.y24a{bottom:-20.969550px;}
.y177{bottom:-19.571550px;}
.y264{bottom:-18.843000px;}
.y256{bottom:-0.899550px;}
.y0{bottom:0.000000px;}
.y14e{bottom:0.529950px;}
.ybe{bottom:1.173579px;}
.y249{bottom:1.530450px;}
.y176{bottom:2.838450px;}
.y263{bottom:3.657000px;}
.y64{bottom:31.890000px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.yd8{bottom:103.621500px;}
.y63{bottom:104.236500px;}
.y37{bottom:104.646000px;}
.y200{bottom:111.516000px;}
.y9a{bottom:111.676500px;}
.y28d{bottom:112.423500px;}
.y271{bottom:113.191500px;}
.y107{bottom:118.401000px;}
.y27e{bottom:119.148000px;}
.yd7{bottom:122.449500px;}
.y36{bottom:122.535000px;}
.y62{bottom:123.066000px;}
.y1ff{bottom:130.345500px;}
.y99{bottom:130.506000px;}
.y270{bottom:132.021000px;}
.y2f9{bottom:133.719000px;}
.y106{bottom:137.230500px;}
.y2c4{bottom:137.797500px;}
.y27d{bottom:137.977500px;}
.y1be{bottom:138.426000px;}
.y28c{bottom:138.964500px;}
.y22{bottom:139.264499px;}
.y35{bottom:140.422500px;}
.yd6{bottom:141.279000px;}
.y61{bottom:141.895500px;}
.y1fe{bottom:149.175000px;}
.y98{bottom:149.335500px;}
.y26f{bottom:150.850500px;}
.y2f8{bottom:150.978000px;}
.y2c3{bottom:155.058000px;}
.y105{bottom:156.060000px;}
.y28b{bottom:156.538500px;}
.y27c{bottom:156.807000px;}
.y1bd{bottom:157.255500px;}
.y34{bottom:158.310000px;}
.yd5{bottom:160.108500px;}
.y60{bottom:160.725000px;}
.y226{bottom:161.773500px;}
.y97{bottom:168.165000px;}
.y2f7{bottom:168.238500px;}
.y26e{bottom:169.680000px;}
.y2c2{bottom:172.318500px;}
.y1fd{bottom:172.488000px;}
.y28a{bottom:174.112500px;}
.y104{bottom:174.889500px;}
.y27b{bottom:175.636500px;}
.y1bc{bottom:176.085000px;}
.y33{bottom:176.199000px;}
.yd4{bottom:178.938000px;}
.y5f{bottom:179.554500px;}
.y225{bottom:180.603000px;}
.y2f6{bottom:185.499000px;}
.y96{bottom:186.994500px;}
.y26d{bottom:188.509500px;}
.y2c1{bottom:189.579000px;}
.y166{bottom:191.181000px;}
.y289{bottom:191.686500px;}
.y103{bottom:193.719000px;}
.y32{bottom:194.086500px;}
.y27a{bottom:194.466000px;}
.y1bb{bottom:194.914500px;}
.y19f{bottom:196.872000px;}
.y19{bottom:196.933500px;}
.yd3{bottom:197.767500px;}
.y5e{bottom:198.384000px;}
.y2f5{bottom:202.759500px;}
.y224{bottom:203.916000px;}
.y95{bottom:205.824000px;}
.y1fc{bottom:206.110500px;}
.y2c0{bottom:206.839500px;}
.y26c{bottom:207.339000px;}
.y288{bottom:209.260500px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y31{bottom:211.974000px;}
.y102{bottom:212.548500px;}
.y279{bottom:213.295500px;}
.y14a{bottom:213.610500px;}
.y1ba{bottom:213.744000px;}
.y19e{bottom:215.700000px;}
.yd2{bottom:216.597000px;}
.y5d{bottom:217.213500px;}
.y2f4{bottom:220.020000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y2bf{bottom:224.100000px;}
.y94{bottom:224.652000px;}
.y1fb{bottom:224.940000px;}
.y26b{bottom:226.168500px;}
.y287{bottom:226.834500px;}
.y30{bottom:229.863000px;}
.y101{bottom:231.378000px;}
.y278{bottom:232.125000px;}
.y1b9{bottom:232.573500px;}
.y19d{bottom:234.529500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yd1{bottom:235.426500px;}
.y5c{bottom:236.043000px;}
.y2f3{bottom:237.280500px;}
.y223{bottom:237.796500px;}
.y2be{bottom:241.360500px;}
.y93{bottom:243.481500px;}
.y1fa{bottom:243.769500px;}
.y286{bottom:244.408500px;}
.y24f{bottom:249.382500px;}
.y26a{bottom:249.481500px;}
.y100{bottom:250.207500px;}
.y277{bottom:250.954500px;}
.y1b8{bottom:251.403000px;}
.yd0{bottom:254.256000px;}
.y2f2{bottom:254.541000px;}
.y5b{bottom:254.872500px;}
.y222{bottom:255.967500px;}
.y2bd{bottom:258.621000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y285{bottom:261.982500px;}
.y92{bottom:262.311000px;}
.y1f9{bottom:262.599000px;}
.yff{bottom:269.037000px;}
.y276{bottom:269.784000px;}
.y221{bottom:270.165000px;}
.y1b7{bottom:270.232500px;}
.y19c{bottom:271.293000px;}
.y2f1{bottom:271.801500px;}
.y245{bottom:271.810500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ycf{bottom:273.085500px;}
.y5a{bottom:273.702000px;}
.y2bc{bottom:275.881500px;}
.y91{bottom:281.140500px;}
.y1f8{bottom:281.428500px;}
.y269{bottom:283.105500px;}
.y220{bottom:284.361000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yfe{bottom:287.866500px;}
.y284{bottom:288.523500px;}
.y1b6{bottom:289.062000px;}
.y19b{bottom:290.122500px;}
.yce{bottom:291.915000px;}
.y59{bottom:292.530000px;}
.y275{bottom:293.095500px;}
.y2bb{bottom:293.140500px;}
.y2f{bottom:297.166500px;}
.y21f{bottom:298.558500px;}
.y90{bottom:299.970000px;}
.y1f7{bottom:300.258000px;}
.y268{bottom:301.935000px;}
.y2f0{bottom:306.321000px;}
.yfd{bottom:306.696000px;}
.y1b5{bottom:307.891500px;}
.y19a{bottom:308.952000px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y2ba{bottom:310.401000px;}
.ycd{bottom:310.744500px;}
.y58{bottom:311.359500px;}
.y2e{bottom:315.054000px;}
.y283{bottom:315.064500px;}
.y12e{bottom:318.189000px;}
.y8f{bottom:318.799500px;}
.y1f6{bottom:319.087500px;}
.y21e{bottom:319.957500px;}
.y267{bottom:320.764500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y2ef{bottom:323.581500px;}
.y255{bottom:324.630450px;}
.yfc{bottom:325.525500px;}
.y274{bottom:326.719500px;}
.y1b4{bottom:326.721000px;}
.y2b9{bottom:327.661500px;}
.y199{bottom:327.780000px;}
.ycc{bottom:329.574000px;}
.y57{bottom:330.189000px;}
.y262{bottom:331.527000px;}
.y282{bottom:332.638500px;}
.y2d{bottom:332.941500px;}
.y21d{bottom:334.153500px;}
.y8e{bottom:337.629000px;}
.y1f5{bottom:337.917000px;}
.y266{bottom:339.594000px;}
.y2ee{bottom:340.842000px;}
.y174{bottom:341.778585px;}
.yfb{bottom:344.353500px;}
.y12d{bottom:344.463000px;}
.y2b8{bottom:344.922000px;}
.y273{bottom:345.549000px;}
.y1b3{bottom:345.550500px;}
.y254{bottom:347.130450px;}
.y10{bottom:348.133500px;}
.ycb{bottom:348.403500px;}
.y56{bottom:349.018500px;}
.y247{bottom:349.470585px;}
.y281{bottom:350.212500px;}
.y2c{bottom:350.830500px;}
.y173{bottom:351.408450px;}
.y261{bottom:354.027000px;}
.y8d{bottom:356.458500px;}
.y1f4{bottom:356.746500px;}
.y2ed{bottom:358.102500px;}
.y246{bottom:359.100450px;}
.y2b7{bottom:362.182500px;}
.yfa{bottom:363.183000px;}
.y12c{bottom:363.292500px;}
.y21c{bottom:364.204500px;}
.y272{bottom:364.378500px;}
.y1b2{bottom:364.380000px;}
.y198{bottom:364.543500px;}
.yca{bottom:367.233000px;}
.y280{bottom:367.786500px;}
.y55{bottom:367.848000px;}
.y14c{bottom:370.970085px;}
.y265{bottom:373.159500px;}
.y8c{bottom:375.288000px;}
.y2ec{bottom:375.363000px;}
.y1f3{bottom:375.576000px;}
.y2b{bottom:377.685000px;}
.y2b6{bottom:379.443000px;}
.y14b{bottom:380.599950px;}
.yf9{bottom:382.012500px;}
.y12b{bottom:382.122000px;}
.y1b1{bottom:383.208000px;}
.y197{bottom:383.373000px;}
.y27f{bottom:385.360500px;}
.y54{bottom:386.677500px;}
.yf{bottom:386.785499px;}
.y2eb{bottom:392.623500px;}
.y8b{bottom:394.117500px;}
.y1f2{bottom:394.405500px;}
.y2a{bottom:395.572500px;}
.y25b{bottom:395.589450px;}
.y2b5{bottom:396.703500px;}
.yc9{bottom:399.670500px;}
.yf8{bottom:400.842000px;}
.y12a{bottom:400.951500px;}
.y21b{bottom:401.308500px;}
.y1b0{bottom:402.037500px;}
.y53{bottom:405.507000px;}
.ye{bottom:408.044999px;}
.y2ea{bottom:409.884000px;}
.y8a{bottom:412.947000px;}
.y1f1{bottom:413.235000px;}
.y29{bottom:413.460000px;}
.y2b4{bottom:413.964000px;}
.y196{bottom:415.792500px;}
.yc8{bottom:418.903500px;}
.yf7{bottom:419.671500px;}
.y129{bottom:419.781000px;}
.y21a{bottom:420.138000px;}
.y1af{bottom:420.867000px;}
.y52{bottom:424.336500px;}
.y2e9{bottom:427.144500px;}
.y2b3{bottom:431.223000px;}
.y28{bottom:431.349000px;}
.y89{bottom:431.776500px;}
.y1f0{bottom:432.064500px;}
.y195{bottom:435.025500px;}
.yf6{bottom:438.501000px;}
.y219{bottom:438.967500px;}
.y1ae{bottom:439.696500px;}
.ybd{bottom:441.904281px;}
.y51{bottom:443.166000px;}
.ya7{bottom:444.322500px;}
.y2e8{bottom:444.403500px;}
.y128{bottom:446.055000px;}
.y2b2{bottom:448.483500px;}
.y27{bottom:449.236500px;}
.y88{bottom:450.606000px;}
.y1ef{bottom:450.894000px;}
.yf5{bottom:457.330500px;}
.y172{bottom:457.455000px;}
.y218{bottom:457.797000px;}
.y1ad{bottom:458.526000px;}
.ybc{bottom:461.163723px;}
.y2e7{bottom:461.664000px;}
.y50{bottom:461.995500px;}
.y2b1{bottom:465.744000px;}
.y26{bottom:467.124000px;}
.y1ee{bottom:469.723500px;}
.y127{bottom:472.329000px;}
.yf4{bottom:476.160000px;}
.y217{bottom:476.626500px;}
.y87{bottom:476.907000px;}
.y1ac{bottom:477.355500px;}
.y2e6{bottom:478.924500px;}
.ybb{bottom:480.332985px;}
.y4f{bottom:480.825000px;}
.y2b0{bottom:483.004500px;}
.y25{bottom:485.013000px;}
.y1ed{bottom:488.553000px;}
.y126{bottom:491.158500px;}
.yf3{bottom:494.989500px;}
.y216{bottom:495.456000px;}
.y1ab{bottom:496.185000px;}
.yba{bottom:499.592427px;}
.y4e{bottom:499.654500px;}
.y86{bottom:500.220000px;}
.y2af{bottom:500.265000px;}
.yd{bottom:502.864502px;}
.y24{bottom:502.900500px;}
.y1ec{bottom:507.382500px;}
.y125{bottom:509.988000px;}
.y2e5{bottom:513.445500px;}
.y215{bottom:514.285500px;}
.y1aa{bottom:515.014500px;}
.y2ae{bottom:517.525500px;}
.y4d{bottom:518.484000px;}
.yb9{bottom:518.851869px;}
.y23{bottom:520.788000px;}
.yc{bottom:520.864502px;}
.yf2{bottom:521.290500px;}
.y124{bottom:528.817500px;}
.y1eb{bottom:530.695500px;}
.y2e4{bottom:530.706000px;}
.y85{bottom:533.844000px;}
.y2ad{bottom:534.786000px;}
.y4c{bottom:537.313500px;}
.y214{bottom:537.598500px;}
.yb8{bottom:538.022634px;}
.yb{bottom:538.864499px;}
.yf1{bottom:547.593000px;}
.y123{bottom:547.647000px;}
.y2e3{bottom:547.966500px;}
.y2ac{bottom:552.046500px;}
.y84{bottom:552.673500px;}
.ya{bottom:556.864499px;}
.yb7{bottom:557.282076px;}
.y4b{bottom:560.626500px;}
.y1ea{bottom:564.319500px;}
.y2e2{bottom:565.227000px;}
.y149{bottom:565.432500px;}
.yf0{bottom:566.422500px;}
.y122{bottom:566.476500px;}
.y2ab{bottom:569.307000px;}
.y213{bottom:571.479000px;}
.y83{bottom:571.503000px;}
.yb6{bottom:576.451338px;}
.y2fc{bottom:577.929000px;}
.y2e1{bottom:582.487500px;}
.y1e9{bottom:583.149000px;}
.y148{bottom:584.262000px;}
.yef{bottom:585.252000px;}
.y121{bottom:585.306000px;}
.y2aa{bottom:586.566000px;}
.y212{bottom:590.322000px;}
.y82{bottom:590.332500px;}
.y2fb{bottom:595.189500px;}
.yb5{bottom:595.710780px;}
.y2e0{bottom:599.746500px;}
.y1e8{bottom:601.978500px;}
.y244{bottom:602.370000px;}
.y147{bottom:603.091500px;}
.y2a9{bottom:603.826500px;}
.yee{bottom:604.081500px;}
.y120{bottom:604.135500px;}
.y211{bottom:606.760500px;}
.y81{bottom:609.162000px;}
.y2fa{bottom:612.450000px;}
.yb4{bottom:614.970222px;}
.y2df{bottom:617.007000px;}
.y1e7{bottom:620.808000px;}
.y2a8{bottom:621.087000px;}
.y243{bottom:621.199500px;}
.y146{bottom:621.921000px;}
.yed{bottom:622.911000px;}
.y11f{bottom:622.965000px;}
.y210{bottom:623.199000px;}
.y80{bottom:627.991500px;}
.yb3{bottom:634.139484px;}
.y2de{bottom:634.267500px;}
.y4a{bottom:635.776500px;}
.y2a7{bottom:638.347500px;}
.y1e6{bottom:639.636000px;}
.y20f{bottom:639.637500px;}
.y242{bottom:640.029000px;}
.y145{bottom:640.750500px;}
.yec{bottom:641.740500px;}
.y11e{bottom:641.794500px;}
.y9{bottom:645.510000px;}
.y7f{bottom:646.821000px;}
.y2dd{bottom:651.528000px;}
.yb2{bottom:653.398926px;}
.y2a6{bottom:655.608000px;}
.y20e{bottom:656.076000px;}
.y1e5{bottom:658.465500px;}
.y241{bottom:658.858500px;}
.y144{bottom:659.580000px;}
.yeb{bottom:660.570000px;}
.y11d{bottom:660.624000px;}
.y7e{bottom:665.650500px;}
.y8{bottom:666.771000px;}
.y2dc{bottom:668.788500px;}
.y20d{bottom:672.514500px;}
.y2a5{bottom:672.868500px;}
.y49{bottom:673.165500px;}
.yb1{bottom:677.069673px;}
.y1e4{bottom:677.295000px;}
.y240{bottom:677.688000px;}
.y143{bottom:678.408000px;}
.yea{bottom:679.398000px;}
.y11c{bottom:679.453500px;}
.y260{bottom:679.557000px;}
.y7d{bottom:684.480000px;}
.y2db{bottom:686.049000px;}
.y20c{bottom:688.953000px;}
.y2a4{bottom:690.129000px;}
.y48{bottom:692.623500px;}
.y252{bottom:695.070585px;}
.y1e3{bottom:696.124500px;}
.y23f{bottom:696.517500px;}
.y142{bottom:697.237500px;}
.ye9{bottom:698.227500px;}
.y11b{bottom:698.283000px;}
.yb0{bottom:700.829097px;}
.y25f{bottom:702.057000px;}
.y7c{bottom:703.309500px;}
.y251{bottom:704.700450px;}
.y20b{bottom:705.391500px;}
.y2a3{bottom:707.389500px;}
.y47{bottom:712.080000px;}
.y1e2{bottom:714.954000px;}
.y23e{bottom:715.347000px;}
.y141{bottom:716.067000px;}
.ye8{bottom:717.057000px;}
.y11a{bottom:717.112500px;}
.yaf{bottom:720.088539px;}
.y2da{bottom:720.570000px;}
.y20a{bottom:721.830000px;}
.y7b{bottom:722.139000px;}
.y2a2{bottom:724.648500px;}
.y7{bottom:726.298500px;}
.y25a{bottom:730.548000px;}
.y46{bottom:731.536500px;}
.y1e1{bottom:733.783500px;}
.y23d{bottom:734.176500px;}
.y140{bottom:734.896500px;}
.ye7{bottom:735.886500px;}
.y119{bottom:735.942000px;}
.y2d9{bottom:737.829000px;}
.y209{bottom:738.268500px;}
.yae{bottom:739.257801px;}
.y7a{bottom:740.968500px;}
.y2a1{bottom:741.909000px;}
.y45{bottom:750.994500px;}
.y3{bottom:752.599495px;}
.y1e0{bottom:752.613000px;}
.y250{bottom:752.977500px;}
.y23c{bottom:753.004500px;}
.y13f{bottom:753.726000px;}
.y208{bottom:754.705500px;}
.ye6{bottom:754.716000px;}
.y118{bottom:754.771500px;}
.y2d8{bottom:755.089500px;}
.yad{bottom:758.517243px;}
.y2a0{bottom:759.169500px;}
.y79{bottom:759.798000px;}
.y44{bottom:770.451000px;}
.y207{bottom:771.144000px;}
.y1df{bottom:771.442500px;}
.y23b{bottom:771.834000px;}
.y2d7{bottom:772.350000px;}
.y13e{bottom:772.555500px;}
.y29f{bottom:776.430000px;}
.yac{bottom:777.776685px;}
.ye5{bottom:778.029000px;}
.y117{bottom:778.084500px;}
.y78{bottom:778.627500px;}
.y171{bottom:783.658500px;}
.y206{bottom:787.582500px;}
.y2d6{bottom:789.610500px;}
.y43{bottom:789.909000px;}
.y1de{bottom:790.272000px;}
.y29e{bottom:793.690500px;}
.ye4{bottom:796.858500px;}
.y116{bottom:796.912500px;}
.yab{bottom:796.947450px;}
.y77{bottom:797.457000px;}
.y13d{bottom:797.610000px;}
.y170{bottom:802.488000px;}
.y205{bottom:804.021000px;}
.y2d5{bottom:806.871000px;}
.y23a{bottom:808.072500px;}
.y42{bottom:809.365500px;}
.y29d{bottom:810.951000px;}
.ye3{bottom:815.688000px;}
.y115{bottom:815.742000px;}
.y76{bottom:816.286500px;}
.y204{bottom:820.459500px;}
.y16f{bottom:821.316000px;}
.y13c{bottom:822.664500px;}
.y2d4{bottom:824.131500px;}
.y239{bottom:826.243500px;}
.y1dd{bottom:827.292000px;}
.y29c{bottom:828.211500px;}
.y41{bottom:828.822000px;}
.ye2{bottom:834.517500px;}
.y114{bottom:834.571500px;}
.y75{bottom:835.114500px;}
.y1a9{bottom:835.116000px;}
.y16e{bottom:840.145500px;}
.y238{bottom:840.441000px;}
.y2d3{bottom:841.392000px;}
.y13b{bottom:841.494000px;}
.y203{bottom:844.101000px;}
.y29b{bottom:845.472000px;}
.y40{bottom:848.280000px;}
.y1dc{bottom:849.124500px;}
.ya9{bottom:851.667585px;}
.ye1{bottom:853.347000px;}
.y113{bottom:853.401000px;}
.y74{bottom:853.944000px;}
.y1a8{bottom:853.945500px;}
.y237{bottom:854.637000px;}
.y1d7{bottom:855.910500px;}
.y1db{bottom:857.343000px;}
.y2d2{bottom:858.652500px;}
.y16d{bottom:858.975000px;}
.y13a{bottom:860.323500px;}
.y202{bottom:860.538000px;}
.ya8{bottom:861.297450px;}
.y29a{bottom:862.732500px;}
.y3f{bottom:867.736500px;}
.y236{bottom:868.834500px;}
.ye0{bottom:872.176500px;}
.y112{bottom:872.230500px;}
.y1d6{bottom:872.349000px;}
.y1d4{bottom:872.628000px;}
.y73{bottom:872.773500px;}
.y1a7{bottom:872.775000px;}
.y2d1{bottom:875.913000px;}
.y16c{bottom:877.804500px;}
.y139{bottom:879.153000px;}
.y2{bottom:879.369000px;}
.y299{bottom:879.991500px;}
.y1da{bottom:882.000000px;}
.y235{bottom:883.030500px;}
.ya6{bottom:884.695500px;}
.y1d5{bottom:888.786000px;}
.y1d8{bottom:890.220000px;}
.ydf{bottom:891.006000px;}
.y111{bottom:891.060000px;}
.y72{bottom:891.603000px;}
.y201{bottom:892.158000px;}
.y2d0{bottom:893.172000px;}
.y1d9{bottom:895.102500px;}
.y1a6{bottom:896.086500px;}
.y16b{bottom:896.634000px;}
.y234{bottom:897.228000px;}
.y298{bottom:897.252000px;}
.y138{bottom:897.982500px;}
.ya5{bottom:903.525000px;}
.y3e{bottom:906.322500px;}
.yde{bottom:909.835500px;}
.y110{bottom:909.889500px;}
.y71{bottom:910.432500px;}
.y233{bottom:911.424000px;}
.y297{bottom:914.512500px;}
.y16a{bottom:915.463500px;}
.y1a5{bottom:916.261500px;}
.y137{bottom:916.812000px;}
.y1d2{bottom:922.080000px;}
.ya4{bottom:922.354500px;}
.y3d{bottom:922.461000px;}
.y232{bottom:925.621500px;}
.y2cf{bottom:927.693000px;}
.y10f{bottom:928.719000px;}
.y70{bottom:929.262000px;}
.y1d1{bottom:930.298500px;}
.y296{bottom:931.773000px;}
.ydd{bottom:933.148500px;}
.y169{bottom:934.293000px;}
.y136{bottom:935.641500px;}
.y1d3{bottom:938.518500px;}
.y1cd{bottom:938.836500px;}
.y231{bottom:939.817500px;}
.ya3{bottom:941.184000px;}
.y2ce{bottom:944.953500px;}
.y1cc{bottom:945.459000px;}
.y10e{bottom:947.548500px;}
.y6f{bottom:948.091500px;}
.y295{bottom:949.033500px;}
.y1a4{bottom:949.885500px;}
.ydc{bottom:951.978000px;}
.y168{bottom:953.122500px;}
.y230{bottom:954.015000px;}
.y135{bottom:954.471000px;}
.y1d0{bottom:954.957000px;}
.ya2{bottom:960.013500px;}
.y2cd{bottom:962.214000px;}
.y1ce{bottom:963.175500px;}
.y294{bottom:966.294000px;}
.y10d{bottom:966.378000px;}
.y1{bottom:966.726000px;}
.y6e{bottom:966.921000px;}
.y1cf{bottom:968.058000px;}
.y22f{bottom:968.211000px;}
.y1a3{bottom:968.715000px;}
.ydb{bottom:970.807500px;}
.y3c{bottom:971.478000px;}
.y134{bottom:973.300500px;}
.ya1{bottom:978.843000px;}
.y167{bottom:978.852000px;}
.y2cc{bottom:979.474500px;}
.y22e{bottom:982.408500px;}
.y293{bottom:983.554500px;}
.y10c{bottom:985.207500px;}
.y6d{bottom:985.750500px;}
.yda{bottom:989.635500px;}
.y133{bottom:992.130000px;}
.y1cb{bottom:995.035500px;}
.y22d{bottom:996.604500px;}
.y2cb{bottom:996.735000px;}
.ya0{bottom:997.672500px;}
.y292{bottom:1000.815000px;}
.y1ca{bottom:1003.255500px;}
.y1c6{bottom:1003.573500px;}
.y6c{bottom:1004.580000px;}
.y1a2{bottom:1005.477000px;}
.y3b{bottom:1008.240000px;}
.y10b{bottom:1008.520500px;}
.y22c{bottom:1010.802000px;}
.y132{bottom:1010.959500px;}
.y2ca{bottom:1013.995500px;}
.yd9{bottom:1015.938000px;}
.y9f{bottom:1016.502000px;}
.y291{bottom:1018.075500px;}
.y1c3{bottom:1018.416000px;}
.y1c5{bottom:1020.012000px;}
.y6b{bottom:1023.409500px;}
.y1a1{bottom:1024.306500px;}
.y22b{bottom:1024.998000px;}
.y10a{bottom:1027.350000px;}
.y1c8{bottom:1027.912500px;}
.y131{bottom:1029.789000px;}
.y2c9{bottom:1031.254500px;}
.y9e{bottom:1035.331500px;}
.y1c7{bottom:1036.131000px;}
.y1c4{bottom:1036.450500px;}
.y3a{bottom:1036.485000px;}
.y22a{bottom:1039.195500px;}
.y290{bottom:1039.818000px;}
.y6a{bottom:1042.239000px;}
.y1a0{bottom:1043.136000px;}
.y1c9{bottom:1044.351000px;}
.y109{bottom:1046.179500px;}
.y2c8{bottom:1048.515000px;}
.y130{bottom:1048.618500px;}
.y25d{bottom:1049.997135px;}
.y229{bottom:1053.391500px;}
.y9d{bottom:1054.161000px;}
.y25c{bottom:1059.627000px;}
.y69{bottom:1061.068500px;}
.y39{bottom:1064.728500px;}
.y2c7{bottom:1065.775500px;}
.y1c1{bottom:1067.991000px;}
.y108{bottom:1072.453500px;}
.y9c{bottom:1072.990500px;}
.y28f{bottom:1073.442000px;}
.y12f{bottom:1073.673000px;}
.y228{bottom:1074.790500px;}
.y1c0{bottom:1076.211000px;}
.y68{bottom:1079.898000px;}
.y2c6{bottom:1083.036000px;}
.y1c2{bottom:1084.429500px;}
.y227{bottom:1088.988000px;}
.y9b{bottom:1091.820000px;}
.y38{bottom:1092.972000px;}
.y67{bottom:1098.727500px;}
.y28e{bottom:1099.983000px;}
.y2c5{bottom:1100.296500px;}
.y66{bottom:1117.557000px;}
.y1bf{bottom:1119.037500px;}
.y65{bottom:1177.662000px;}
.h23{height:24.372512px;}
.h26{height:27.974981px;}
.h9{height:30.461558px;}
.ha{height:30.712615px;}
.h7{height:32.130000px;}
.h27{height:34.574294px;}
.he{height:34.813397px;}
.h14{height:34.951465px;}
.h11{height:35.100320px;}
.h13{height:35.255391px;}
.h28{height:35.578526px;}
.h1d{height:38.896243px;}
.hf{height:39.165235px;}
.h17{height:39.418945px;}
.h22{height:39.488026px;}
.h16{height:39.761719px;}
.hd{height:43.217759px;}
.h1b{height:43.269961px;}
.h10{height:43.516637px;}
.hb{height:43.875290px;}
.h15{height:43.886426px;}
.h1f{height:43.902512px;}
.h1a{height:44.268047px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h25{height:52.509235px;}
.h24{height:52.515235px;}
.h2{height:55.080000px;}
.h1c{height:71.770243px;}
.h20{height:72.039235px;}
.h1e{height:72.045235px;}
.hc{height:77.792486px;}
.h5{height:78.030000px;}
.h21{height:78.429235px;}
.h4{height:119.055004px;}
.h19{height:303.708000px;}
.h2a{height:304.363500px;}
.h29{height:308.782500px;}
.h2b{height:309.763050px;}
.h18{height:330.675000px;}
.h12{height:417.861000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:524.682000px;}
.w6{width:528.217500px;}
.w8{width:551.290500px;}
.w9{width:553.255500px;}
.w7{width:563.073000px;}
.w4{width:620.506800px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x10{left:-195.774000px;}
.x13{left:-193.417500px;}
.xc{left:-81.883200px;}
.x0{left:0.000000px;}
.x15{left:2.152500px;}
.x12{left:31.656000px;}
.x16{left:34.012500px;}
.x6{left:52.525500px;}
.x5{left:53.574000px;}
.x17{left:62.541000px;}
.x2e{left:85.848000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xd{left:113.686800px;}
.x1a{left:122.323500px;}
.xb{left:135.991200px;}
.xe{left:145.548197px;}
.x4{left:203.484001px;}
.x29{left:247.348500px;}
.x8{left:248.526000px;}
.x7{left:249.591000px;}
.x21{left:258.556500px;}
.x25{left:264.843000px;}
.x28{left:270.511500px;}
.x22{left:272.007000px;}
.x9{left:281.479500px;}
.xa{left:284.184000px;}
.x1b{left:300.906000px;}
.x3{left:454.959000px;}
.x18{left:468.690000px;}
.x27{left:473.584500px;}
.x20{left:489.072000px;}
.x1f{left:502.620000px;}
.x26{left:505.213500px;}
.x11{left:524.675850px;}
.x14{left:526.402350px;}
.x23{left:544.131000px;}
.x2c{left:552.869850px;}
.x24{left:553.971000px;}
.x2b{left:556.102350px;}
.x2d{left:560.438850px;}
.x2a{left:562.402350px;}
.xf{left:618.856781px;}
.x1c{left:626.428500px;}
.x1d{left:630.309000px;}
.x1e{left:643.795500px;}
.x19{left:668.871000px;}
@media print{
.v1{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:11.866667pt;}
.v3{vertical-align:17.360000pt;}
.v2{vertical-align:29.221333pt;}
.v4{vertical-align:34.901333pt;}
.ls55{letter-spacing:-0.304608pt;}
.ls4a{letter-spacing:-0.235136pt;}
.ls4b{letter-spacing:-0.192384pt;}
.ls25{letter-spacing:-0.165664pt;}
.ls2d{letter-spacing:-0.144288pt;}
.ls54{letter-spacing:-0.138944pt;}
.ls49{letter-spacing:-0.128256pt;}
.ls2a{letter-spacing:-0.122912pt;}
.ls2e{letter-spacing:-0.117568pt;}
.ls26{letter-spacing:-0.106880pt;}
.ls30{letter-spacing:-0.096192pt;}
.ls2f{letter-spacing:-0.090848pt;}
.ls33{letter-spacing:-0.085504pt;}
.ls43{letter-spacing:-0.080160pt;}
.ls56{letter-spacing:-0.074816pt;}
.ls46{letter-spacing:-0.069472pt;}
.ls45{letter-spacing:-0.064128pt;}
.ls47{letter-spacing:-0.058784pt;}
.ls27{letter-spacing:-0.053440pt;}
.ls44{letter-spacing:-0.042752pt;}
.ls48{letter-spacing:-0.037408pt;}
.ls62{letter-spacing:-0.034048pt;}
.ls29{letter-spacing:-0.032064pt;}
.ls2c{letter-spacing:-0.026720pt;}
.ls22{letter-spacing:-0.025536pt;}
.ls28{letter-spacing:-0.021376pt;}
.ls32{letter-spacing:-0.016032pt;}
.ls63{letter-spacing:-0.012768pt;}
.ls2b{letter-spacing:-0.010688pt;}
.ls64{letter-spacing:-0.009600pt;}
.ls24{letter-spacing:-0.005344pt;}
.ls31{letter-spacing:-0.004800pt;}
.ls23{letter-spacing:-0.004256pt;}
.ls0{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.000078pt;}
.ls6b{letter-spacing:0.000234pt;}
.ls69{letter-spacing:0.000375pt;}
.ls6f{letter-spacing:0.000951pt;}
.ls72{letter-spacing:0.001026pt;}
.ls5f{letter-spacing:0.001398pt;}
.ls6d{letter-spacing:0.001628pt;}
.ls6a{letter-spacing:0.001768pt;}
.ls6e{letter-spacing:0.002262pt;}
.ls71{letter-spacing:0.002525pt;}
.ls5d{letter-spacing:0.002667pt;}
.ls70{letter-spacing:0.003238pt;}
.ls1b{letter-spacing:0.005344pt;}
.ls4c{letter-spacing:0.009600pt;}
.ls15{letter-spacing:0.010688pt;}
.ls1e{letter-spacing:0.014400pt;}
.ls20{letter-spacing:0.016032pt;}
.ls1f{letter-spacing:0.021376pt;}
.ls4e{letter-spacing:0.024000pt;}
.ls1c{letter-spacing:0.026720pt;}
.ls40{letter-spacing:0.028800pt;}
.ls42{letter-spacing:0.032064pt;}
.ls1d{letter-spacing:0.037408pt;}
.ls19{letter-spacing:0.042752pt;}
.ls41{letter-spacing:0.048000pt;}
.ls13{letter-spacing:0.048096pt;}
.ls18{letter-spacing:0.053440pt;}
.ls14{letter-spacing:0.058784pt;}
.ls17{letter-spacing:0.069472pt;}
.ls1a{letter-spacing:0.074816pt;}
.ls16{letter-spacing:0.106880pt;}
.ls4d{letter-spacing:0.124800pt;}
.ls61{letter-spacing:0.153216pt;}
.ls53{letter-spacing:0.154976pt;}
.ls12{letter-spacing:0.157472pt;}
.ls60{letter-spacing:0.161728pt;}
.ls11{letter-spacing:0.170240pt;}
.ls5b{letter-spacing:0.462933pt;}
.ls52{letter-spacing:1.368064pt;}
.ls5c{letter-spacing:3.134173pt;}
.ls58{letter-spacing:3.139507pt;}
.ls4f{letter-spacing:3.286560pt;}
.ls51{letter-spacing:6.808256pt;}
.ls50{letter-spacing:7.770176pt;}
.ls3{letter-spacing:10.626533pt;}
.lsd{letter-spacing:11.955120pt;}
.ls6c{letter-spacing:12.132221pt;}
.ls8{letter-spacing:12.220789pt;}
.ls7{letter-spacing:12.327057pt;}
.ls6{letter-spacing:12.380191pt;}
.ls9{letter-spacing:12.486459pt;}
.lsa{letter-spacing:12.645860pt;}
.ls35{letter-spacing:12.805262pt;}
.ls67{letter-spacing:12.911530pt;}
.lsb{letter-spacing:13.017797pt;}
.ls21{letter-spacing:13.070931pt;}
.ls3f{letter-spacing:13.124065pt;}
.ls3d{letter-spacing:13.177199pt;}
.lsc{letter-spacing:13.230333pt;}
.ls5e{letter-spacing:13.283349pt;}
.lsf{letter-spacing:13.283467pt;}
.ls10{letter-spacing:13.336601pt;}
.lse{letter-spacing:13.389734pt;}
.ls34{letter-spacing:13.426927pt;}
.ls2{letter-spacing:13.442868pt;}
.ls3c{letter-spacing:13.496002pt;}
.ls66{letter-spacing:13.549136pt;}
.ls65{letter-spacing:13.655404pt;}
.ls36{letter-spacing:13.916198pt;}
.ls3e{letter-spacing:14.346144pt;}
.ls39{letter-spacing:14.930617pt;}
.ls3b{letter-spacing:14.988094pt;}
.ls5{letter-spacing:15.515089pt;}
.ls4{letter-spacing:16.577766pt;}
.ls68{letter-spacing:21.625484pt;}
.ls37{letter-spacing:21.944287pt;}
.ls1{letter-spacing:25.292137pt;}
.ls3a{letter-spacing:82.167733pt;}
.ls38{letter-spacing:83.815733pt;}
.ls5a{letter-spacing:126.014933pt;}
.ls57{letter-spacing:164.889600pt;}
.ls59{letter-spacing:188.649600pt;}
.ws11c{word-spacing:-38.755733pt;}
.wsdb{word-spacing:-13.514976pt;}
.wsdc{word-spacing:-13.418784pt;}
.ws37{word-spacing:-13.283467pt;}
.ws11b{word-spacing:-11.955200pt;}
.ws4e{word-spacing:-10.810240pt;}
.ws132{word-spacing:-10.801728pt;}
.ws4f{word-spacing:-10.640000pt;}
.ws2d{word-spacing:-10.626800pt;}
.ws6{word-spacing:-9.298400pt;}
.ws10d{word-spacing:-3.131584pt;}
.ws10e{word-spacing:-3.040736pt;}
.ws42{word-spacing:-2.816095pt;}
.ws9b{word-spacing:-2.762961pt;}
.ws19{word-spacing:-2.582323pt;}
.ws92{word-spacing:-2.550426pt;}
.wsee{word-spacing:-2.196384pt;}
.ws49{word-spacing:-2.178489pt;}
.wsa4{word-spacing:-1.965953pt;}
.ws96{word-spacing:-1.859685pt;}
.wsfe{word-spacing:-1.832992pt;}
.wsfd{word-spacing:-1.800928pt;}
.ws94{word-spacing:-1.753418pt;}
.ws89{word-spacing:-1.747488pt;}
.ws9c{word-spacing:-1.647150pt;}
.ws44{word-spacing:-1.434614pt;}
.ws26{word-spacing:-1.381481pt;}
.ws1d{word-spacing:-1.328347pt;}
.ws54{word-spacing:-1.275213pt;}
.wsfc{word-spacing:-1.255840pt;}
.ws14f{word-spacing:-1.243341pt;}
.wsfa{word-spacing:-1.234464pt;}
.ws7d{word-spacing:-1.223776pt;}
.ws111{word-spacing:-1.222079pt;}
.ws27{word-spacing:-1.168945pt;}
.ws11{word-spacing:-1.147699pt;}
.ws23{word-spacing:-1.115811pt;}
.ws38{word-spacing:-1.062677pt;}
.ws3d{word-spacing:-1.009543pt;}
.ws168{word-spacing:-0.956416pt;}
.ws139{word-spacing:-0.956410pt;}
.wsfb{word-spacing:-0.935200pt;}
.ws82{word-spacing:-0.919168pt;}
.ws10f{word-spacing:-0.908480pt;}
.ws32{word-spacing:-0.903276pt;}
.ws63{word-spacing:-0.887104pt;}
.ws64{word-spacing:-0.855040pt;}
.ws8d{word-spacing:-0.850142pt;}
.ws39{word-spacing:-0.797008pt;}
.ws110{word-spacing:-0.796256pt;}
.ws3b{word-spacing:-0.743874pt;}
.ws15d{word-spacing:-0.717312pt;}
.ws3c{word-spacing:-0.690740pt;}
.ws4c{word-spacing:-0.637606pt;}
.ws90{word-spacing:-0.584473pt;}
.ws149{word-spacing:-0.573850pt;}
.ws13e{word-spacing:-0.531339pt;}
.ws70{word-spacing:-0.529056pt;}
.ws122{word-spacing:-0.478205pt;}
.ws71{word-spacing:-0.438208pt;}
.ws13c{word-spacing:-0.425071pt;}
.wsa0{word-spacing:-0.371937pt;}
.ws41{word-spacing:-0.318803pt;}
.ws147{word-spacing:-0.286925pt;}
.wse9{word-spacing:-0.267200pt;}
.ws22{word-spacing:-0.265669pt;}
.ws59{word-spacing:-0.246848pt;}
.ws134{word-spacing:-0.242592pt;}
.ws102{word-spacing:-0.240480pt;}
.ws14b{word-spacing:-0.239104pt;}
.wsc7{word-spacing:-0.229792pt;}
.ws103{word-spacing:-0.219104pt;}
.ws2b{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.wsc6{word-spacing:-0.171008pt;}
.ws21{word-spacing:-0.159402pt;}
.ws2{word-spacing:-0.148774pt;}
.ws12{word-spacing:-0.143462pt;}
.ws31{word-spacing:-0.106268pt;}
.ws155{word-spacing:-0.095642pt;}
.ws5a{word-spacing:-0.072352pt;}
.ws135{word-spacing:-0.068096pt;}
.ws50{word-spacing:-0.053440pt;}
.ws1e{word-spacing:-0.053134pt;}
.ws58{word-spacing:-0.051072pt;}
.ws16{word-spacing:-0.047821pt;}
.ws133{word-spacing:-0.046816pt;}
.ws12e{word-spacing:-0.042507pt;}
.ws172{word-spacing:-0.010607pt;}
.ws150{word-spacing:-0.010470pt;}
.ws15c{word-spacing:-0.008226pt;}
.ws167{word-spacing:-0.006912pt;}
.ws157{word-spacing:-0.006281pt;}
.ws15a{word-spacing:-0.005965pt;}
.ws16c{word-spacing:-0.005444pt;}
.ws153{word-spacing:-0.005274pt;}
.ws16a{word-spacing:-0.005188pt;}
.ws16b{word-spacing:-0.003081pt;}
.ws171{word-spacing:-0.001758pt;}
.ws4{word-spacing:-0.000023pt;}
.ws0{word-spacing:0.000000pt;}
.ws2c{word-spacing:0.003199pt;}
.ws6a{word-spacing:0.032064pt;}
.wsb1{word-spacing:0.042752pt;}
.ws10{word-spacing:0.047821pt;}
.ws7e{word-spacing:0.048096pt;}
.ws24{word-spacing:0.053134pt;}
.wsce{word-spacing:0.053440pt;}
.ws107{word-spacing:0.058784pt;}
.ws106{word-spacing:0.069472pt;}
.ws3{word-spacing:0.074387pt;}
.wse3{word-spacing:0.085504pt;}
.ws15b{word-spacing:0.095642pt;}
.ws69{word-spacing:0.096192pt;}
.ws8b{word-spacing:0.106268pt;}
.wsff{word-spacing:0.106880pt;}
.wsae{word-spacing:0.115200pt;}
.wsc5{word-spacing:0.122912pt;}
.wsc3{word-spacing:0.128256pt;}
.wsad{word-spacing:0.134400pt;}
.ws11e{word-spacing:0.143462pt;}
.wsc4{word-spacing:0.144288pt;}
.wse1{word-spacing:0.148800pt;}
.wsf8{word-spacing:0.149632pt;}
.ws137{word-spacing:0.158400pt;}
.ws1c{word-spacing:0.159402pt;}
.ws138{word-spacing:0.163200pt;}
.ws81{word-spacing:0.168000pt;}
.ws14d{word-spacing:0.191283pt;}
.ws8a{word-spacing:0.203072pt;}
.ws30{word-spacing:0.212535pt;}
.wsf{word-spacing:0.239104pt;}
.ws1f{word-spacing:0.265669pt;}
.wsd6{word-spacing:0.277888pt;}
.ws25{word-spacing:0.318803pt;}
.wsc2{word-spacing:0.368736pt;}
.ws9f{word-spacing:0.371937pt;}
.ws148{word-spacing:0.382566pt;}
.wsf9{word-spacing:0.390112pt;}
.ws84{word-spacing:0.406144pt;}
.wsc0{word-spacing:0.411488pt;}
.ws85{word-spacing:0.422176pt;}
.ws33{word-spacing:0.425071pt;}
.ws154{word-spacing:0.430387pt;}
.wsd4{word-spacing:0.432864pt;}
.wsd3{word-spacing:0.438208pt;}
.wsc1{word-spacing:0.475616pt;}
.wsdd{word-spacing:0.478208pt;}
.ws95{word-spacing:0.531339pt;}
.ws13{word-spacing:0.573850pt;}
.ws36{word-spacing:0.584473pt;}
.ws91{word-spacing:0.637606pt;}
.wsd5{word-spacing:0.641280pt;}
.ws48{word-spacing:0.690740pt;}
.ws126{word-spacing:0.743874pt;}
.ws56{word-spacing:0.797008pt;}
.ws14e{word-spacing:0.812954pt;}
.ws5f{word-spacing:0.833664pt;}
.ws55{word-spacing:0.903276pt;}
.ws14{word-spacing:0.908595pt;}
.ws97{word-spacing:0.956410pt;}
.ws60{word-spacing:0.999328pt;}
.ws141{word-spacing:1.004237pt;}
.ws98{word-spacing:1.009543pt;}
.ws104{word-spacing:1.010016pt;}
.ws5d{word-spacing:1.052768pt;}
.ws28{word-spacing:1.062677pt;}
.ws3a{word-spacing:1.168945pt;}
.ws5e{word-spacing:1.213088pt;}
.wsab{word-spacing:1.222079pt;}
.wsc{word-spacing:1.227389pt;}
.ws115{word-spacing:1.275213pt;}
.ws78{word-spacing:1.319968pt;}
.ws4d{word-spacing:1.328347pt;}
.ws105{word-spacing:1.368064pt;}
.ws9a{word-spacing:1.381481pt;}
.ws53{word-spacing:1.434614pt;}
.ws163{word-spacing:1.482445pt;}
.ws77{word-spacing:1.485632pt;}
.wsac{word-spacing:1.487748pt;}
.ws15{word-spacing:1.530266pt;}
.ws47{word-spacing:1.594016pt;}
.ws166{word-spacing:1.625907pt;}
.wsd8{word-spacing:1.647150pt;}
.wse7{word-spacing:1.656640pt;}
.ws15e{word-spacing:1.673728pt;}
.wse8{word-spacing:1.683360pt;}
.ws9d{word-spacing:1.700284pt;}
.ws34{word-spacing:1.753418pt;}
.ws18{word-spacing:1.753464pt;}
.ws159{word-spacing:1.769370pt;}
.ws35{word-spacing:1.806551pt;}
.ws146{word-spacing:1.865011pt;}
.wsda{word-spacing:1.965953pt;}
.ws13a{word-spacing:2.019087pt;}
.ws2a{word-spacing:2.072221pt;}
.ws117{word-spacing:2.125355pt;}
.ws3f{word-spacing:2.178489pt;}
.ws9e{word-spacing:2.231622pt;}
.ws1{word-spacing:2.232481pt;}
.ws1b{word-spacing:2.284756pt;}
.ws14a{word-spacing:2.295398pt;}
.ws8c{word-spacing:2.337890pt;}
.ws158{word-spacing:2.343219pt;}
.ws4a{word-spacing:2.391024pt;}
.wsa1{word-spacing:2.444158pt;}
.wsd7{word-spacing:2.497292pt;}
.wsd{word-spacing:2.550432pt;}
.wsd1{word-spacing:2.591840pt;}
.wsd9{word-spacing:2.603559pt;}
.ws86{word-spacing:2.623904pt;}
.wsa2{word-spacing:2.709827pt;}
.ws20{word-spacing:2.762961pt;}
.ws118{word-spacing:2.816095pt;}
.ws15f{word-spacing:2.861790pt;}
.ws152{word-spacing:2.862703pt;}
.ws169{word-spacing:2.863974pt;}
.ws161{word-spacing:2.864000pt;}
.ws175{word-spacing:2.864853pt;}
.ws160{word-spacing:2.865101pt;}
.ws14c{word-spacing:2.865195pt;}
.ws156{word-spacing:2.866253pt;}
.ws142{word-spacing:2.866509pt;}
.ws165{word-spacing:2.866867pt;}
.ws13d{word-spacing:2.869229pt;}
.ws11a{word-spacing:2.869248pt;}
.ws11f{word-spacing:2.917069pt;}
.ws46{word-spacing:2.922363pt;}
.wse4{word-spacing:2.928512pt;}
.wse5{word-spacing:2.949888pt;}
.wsb5{word-spacing:2.992640pt;}
.ws16d{word-spacing:3.012710pt;}
.wsb6{word-spacing:3.062112pt;}
.wsa5{word-spacing:3.081764pt;}
.ws176{word-spacing:3.108352pt;}
.wsaa{word-spacing:3.134898pt;}
.ws1a{word-spacing:3.188032pt;}
.wse{word-spacing:3.234080pt;}
.wsd2{word-spacing:3.259840pt;}
.ws6d{word-spacing:3.275872pt;}
.wse6{word-spacing:3.291904pt;}
.ws162{word-spacing:3.299635pt;}
.wsbf{word-spacing:3.302592pt;}
.ws4b{word-spacing:3.347434pt;}
.ws43{word-spacing:3.400567pt;}
.ws164{word-spacing:3.443098pt;}
.ws116{word-spacing:3.453701pt;}
.ws151{word-spacing:3.490918pt;}
.ws2f{word-spacing:3.506835pt;}
.ws13f{word-spacing:3.559969pt;}
.ws16f{word-spacing:3.586560pt;}
.ws123{word-spacing:3.613103pt;}
.wsaf{word-spacing:3.617888pt;}
.wsa3{word-spacing:3.666237pt;}
.wsb0{word-spacing:3.687360pt;}
.ws119{word-spacing:3.825638pt;}
.ws173{word-spacing:3.825664pt;}
.ws8f{word-spacing:3.878772pt;}
.wsb9{word-spacing:3.901120pt;}
.ws131{word-spacing:3.931906pt;}
.ws13b{word-spacing:4.144442pt;}
.ws68{word-spacing:4.179008pt;}
.ws57{word-spacing:4.197575pt;}
.ws51{word-spacing:4.208230pt;}
.ws67{word-spacing:4.237792pt;}
.ws40{word-spacing:4.250709pt;}
.ws109{word-spacing:4.259168pt;}
.wse0{word-spacing:4.300800pt;}
.wsde{word-spacing:4.310400pt;}
.wsdf{word-spacing:4.315200pt;}
.ws145{word-spacing:4.399514pt;}
.ws8e{word-spacing:4.410111pt;}
.ws7b{word-spacing:4.515680pt;}
.ws5c{word-spacing:4.521024pt;}
.ws7c{word-spacing:4.579808pt;}
.ws65{word-spacing:4.601184pt;}
.ws108{word-spacing:4.611872pt;}
.ws29{word-spacing:4.622646pt;}
.ws66{word-spacing:4.692032pt;}
.wsa{word-spacing:4.872362pt;}
.ws114{word-spacing:4.888316pt;}
.ws140{word-spacing:4.941450pt;}
.wsa7{word-spacing:4.994583pt;}
.wsa8{word-spacing:5.100851pt;}
.ws2e{word-spacing:5.207119pt;}
.ws76{word-spacing:5.317280pt;}
.ws72{word-spacing:5.450880pt;}
.ws113{word-spacing:5.472788pt;}
.wsb7{word-spacing:5.498976pt;}
.ws144{word-spacing:5.499392pt;}
.ws73{word-spacing:5.515008pt;}
.wsb8{word-spacing:5.531040pt;}
.ws12c{word-spacing:5.579056pt;}
.ws93{word-spacing:5.685324pt;}
.wsa9{word-spacing:5.791591pt;}
.ws52{word-spacing:5.950993pt;}
.ws112{word-spacing:6.004127pt;}
.ws88{word-spacing:6.150944pt;}
.ws125{word-spacing:6.163529pt;}
.ws87{word-spacing:6.199040pt;}
.wsef{word-spacing:6.450208pt;}
.wsc9{word-spacing:6.508992pt;}
.wsc8{word-spacing:6.514336pt;}
.ws99{word-spacing:6.641733pt;}
.wscd{word-spacing:6.754816pt;}
.wsf2{word-spacing:6.781536pt;}
.wsf4{word-spacing:6.786880pt;}
.ws143{word-spacing:6.790554pt;}
.wsf3{word-spacing:6.797568pt;}
.wsf1{word-spacing:6.802912pt;}
.wsf0{word-spacing:6.834976pt;}
.ws3e{word-spacing:6.854269pt;}
.ws80{word-spacing:6.868800pt;}
.ws7f{word-spacing:6.873600pt;}
.ws12d{word-spacing:7.066804pt;}
.ws45{word-spacing:7.119938pt;}
.ws79{word-spacing:7.123552pt;}
.ws74{word-spacing:7.219744pt;}
.ws7a{word-spacing:7.225088pt;}
.ws75{word-spacing:7.235776pt;}
.wsea{word-spacing:7.412128pt;}
.wsa6{word-spacing:7.491875pt;}
.wsed{word-spacing:7.722080pt;}
.wsec{word-spacing:7.754144pt;}
.wsba{word-spacing:7.796896pt;}
.wsbb{word-spacing:7.812928pt;}
.wsbc{word-spacing:7.834304pt;}
.wseb{word-spacing:7.909120pt;}
.wsf5{word-spacing:8.069440pt;}
.wsf7{word-spacing:8.080128pt;}
.wsf6{word-spacing:8.085472pt;}
.ws10c{word-spacing:8.347328pt;}
.ws61{word-spacing:8.667968pt;}
.ws100{word-spacing:8.716064pt;}
.ws101{word-spacing:8.732096pt;}
.ws8{word-spacing:8.740496pt;}
.ws62{word-spacing:8.780192pt;}
.ws16e{word-spacing:8.894669pt;}
.ws83{word-spacing:9.009984pt;}
.ws10a{word-spacing:9.325280pt;}
.ws10b{word-spacing:9.346656pt;}
.ws170{word-spacing:10.233651pt;}
.ws136{word-spacing:10.325056pt;}
.ws5b{word-spacing:10.329312pt;}
.ws9{word-spacing:10.525789pt;}
.ws174{word-spacing:10.711859pt;}
.wsb4{word-spacing:11.879712pt;}
.wsb2{word-spacing:11.885056pt;}
.wsb3{word-spacing:11.901088pt;}
.ws124{word-spacing:11.901986pt;}
.wsbe{word-spacing:12.911104pt;}
.wsbd{word-spacing:12.921792pt;}
.wscc{word-spacing:13.531008pt;}
.ws5{word-spacing:13.761632pt;}
.wscb{word-spacing:13.883712pt;}
.wsca{word-spacing:13.979904pt;}
.wsb{word-spacing:14.282342pt;}
.ws6e{word-spacing:14.802880pt;}
.wsd0{word-spacing:15.075424pt;}
.ws6f{word-spacing:15.086112pt;}
.wscf{word-spacing:15.182304pt;}
.wse2{word-spacing:16.737408pt;}
.ws6b{word-spacing:18.997920pt;}
.ws6c{word-spacing:19.115488pt;}
.ws7{word-spacing:19.857270pt;}
.ws120{word-spacing:28.155809pt;}
.ws121{word-spacing:39.515809pt;}
.ws11d{word-spacing:85.569142pt;}
.ws128{word-spacing:132.894003pt;}
.ws12f{word-spacing:137.510792pt;}
.ws12b{word-spacing:138.871603pt;}
.ws129{word-spacing:144.849203pt;}
.ws12a{word-spacing:156.804403pt;}
.ws127{word-spacing:169.429094pt;}
.ws130{word-spacing:282.812364pt;}
._6{margin-left:-11.035990pt;}
._8{margin-left:-8.799027pt;}
._16{margin-left:-7.465312pt;}
._14{margin-left:-6.498362pt;}
._7{margin-left:-5.260288pt;}
._1{margin-left:-4.165683pt;}
._2{margin-left:-2.715133pt;}
._5{margin-left:-1.301776pt;}
._18{width:1.115072pt;}
._4c{width:2.082860pt;}
._17{width:3.427131pt;}
._0{width:10.860531pt;}
._e{width:12.576870pt;}
._b{width:14.202778pt;}
._a{width:15.265450pt;}
._c{width:16.221866pt;}
._d{width:17.799952pt;}
._15{width:18.968790pt;}
._10{width:20.403405pt;}
._20{width:21.359814pt;}
._3{width:22.502128pt;}
._11{width:23.511732pt;}
._f{width:25.185453pt;}
._1e{width:26.221453pt;}
._4{width:27.783619pt;}
._1c{width:30.126902pt;}
._4b{width:31.370445pt;}
._1f{width:32.650757pt;}
._21{width:33.607167pt;}
._1b{width:35.201183pt;}
._1a{width:39.053952pt;}
._1d{width:60.413206pt;}
._37{width:72.559559pt;}
._9{width:74.945194pt;}
._22{width:82.395238pt;}
._26{width:108.357786pt;}
._23{width:111.746557pt;}
._25{width:131.406370pt;}
._2a{width:144.801382pt;}
._3b{width:148.180099pt;}
._2b{width:156.804403pt;}
._32{width:180.666982pt;}
._3a{width:204.629661pt;}
._49{width:211.303291pt;}
._29{width:263.110042pt;}
._2c{width:275.065242pt;}
._28{width:279.034368pt;}
._2d{width:282.047078pt;}
._36{width:297.507893pt;}
._33{width:309.108442pt;}
._39{width:312.385530pt;}
._31{width:313.890522pt;}
._47{width:374.637266pt;}
._34{width:383.809741pt;}
._48{width:385.859166pt;}
._35{width:415.461901pt;}
._46{width:465.857717pt;}
._24{width:495.692575pt;}
._44{width:508.604013pt;}
._40{width:537.673573pt;}
._3c{width:541.469314pt;}
._38{width:546.111288pt;}
._3d{width:553.018672pt;}
._3f{width:560.074867pt;}
._3e{width:571.169246pt;}
._2e{width:603.402854pt;}
._45{width:620.902670pt;}
._30{width:625.591706pt;}
._41{width:642.708864pt;}
._43{width:644.706702pt;}
._42{width:659.573618pt;}
._2f{width:661.839872pt;}
._12{width:784.240181pt;}
._4a{width:1849.602272pt;}
._19{width:1871.546208pt;}
._27{width:2235.264362pt;}
._13{width:2256.517695pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fse{font-size:38.755733pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsb{font-size:53.440000pt;}
.fsd{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.y175{bottom:-706.116933pt;}
.y248{bottom:-699.279600pt;}
.y14d{bottom:-680.168933pt;}
.y194{bottom:-646.990813pt;}
.y24e{bottom:-639.439600pt;}
.y193{bottom:-629.871309pt;}
.y24d{bottom:-619.439600pt;}
.y192{bottom:-612.831965pt;}
.y191{bottom:-595.712461pt;}
.y190{bottom:-578.592957pt;}
.y18f{bottom:-557.552293pt;}
.y18e{bottom:-536.511629pt;}
.y18d{bottom:-503.392189pt;}
.y18c{bottom:-486.272685pt;}
.y18b{bottom:-453.232069pt;}
.y18a{bottom:-436.112565pt;}
.y165{bottom:-419.121213pt;}
.y189{bottom:-418.993061pt;}
.y164{bottom:-402.001709pt;}
.y253{bottom:-392.079600pt;}
.y188{bottom:-385.952445pt;}
.y163{bottom:-384.962365pt;}
.y187{bottom:-368.832941pt;}
.y162{bottom:-367.842861pt;}
.y186{bottom:-351.713437pt;}
.y161{bottom:-350.723357pt;}
.y160{bottom:-333.684013pt;}
.y259{bottom:-332.239600pt;}
.y24c{bottom:-327.999600pt;}
.y185{bottom:-318.672821pt;}
.y15f{bottom:-316.564509pt;}
.y258{bottom:-312.239600pt;}
.y24b{bottom:-307.999600pt;}
.y184{bottom:-301.553317pt;}
.y15e{bottom:-299.525165pt;}
.y183{bottom:-284.433813pt;}
.y15d{bottom:-282.405661pt;}
.y182{bottom:-267.394469pt;}
.y15c{bottom:-265.286157pt;}
.yaa{bottom:-252.882267pt;}
.y15b{bottom:-244.245493pt;}
.y181{bottom:-234.353853pt;}
.y15a{bottom:-223.126005pt;}
.y180{bottom:-217.234349pt;}
.y159{bottom:-206.085325pt;}
.y17f{bottom:-200.114845pt;}
.y158{bottom:-188.965821pt;}
.y157{bottom:-171.846317pt;}
.yc7{bottom:-169.598971pt;}
.y17e{bottom:-167.074229pt;}
.y156{bottom:-154.805637pt;}
.yc6{bottom:-152.479467pt;}
.y17d{bottom:-149.954725pt;}
.y155{bottom:-137.686133pt;}
.yc5{bottom:-135.359963pt;}
.y17c{bottom:-132.835221pt;}
.y154{bottom:-120.646789pt;}
.yc4{bottom:-118.320619pt;}
.y17b{bottom:-115.795877pt;}
.y153{bottom:-103.527285pt;}
.yc3{bottom:-101.201115pt;}
.y152{bottom:-86.407781pt;}
.yc2{bottom:-84.161771pt;}
.y17a{bottom:-82.676437pt;}
.y25e{bottom:-76.589333pt;}
.y151{bottom:-69.368437pt;}
.yc1{bottom:-67.042267pt;}
.y179{bottom:-65.556933pt;}
.y150{bottom:-52.248933pt;}
.yc0{bottom:-34.322667pt;}
.y178{bottom:-32.837333pt;}
.y257{bottom:-20.799600pt;}
.y14f{bottom:-19.528933pt;}
.ybf{bottom:-18.882267pt;}
.y24a{bottom:-18.639600pt;}
.y177{bottom:-17.396933pt;}
.y264{bottom:-16.749333pt;}
.y256{bottom:-0.799600pt;}
.y0{bottom:0.000000pt;}
.y14e{bottom:0.471067pt;}
.ybe{bottom:1.043181pt;}
.y249{bottom:1.360400pt;}
.y176{bottom:2.523067pt;}
.y263{bottom:3.250667pt;}
.y64{bottom:28.346667pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.yd8{bottom:92.108000pt;}
.y63{bottom:92.654667pt;}
.y37{bottom:93.018667pt;}
.y200{bottom:99.125333pt;}
.y9a{bottom:99.268000pt;}
.y28d{bottom:99.932000pt;}
.y271{bottom:100.614667pt;}
.y107{bottom:105.245333pt;}
.y27e{bottom:105.909333pt;}
.yd7{bottom:108.844000pt;}
.y36{bottom:108.920000pt;}
.y62{bottom:109.392000pt;}
.y1ff{bottom:115.862667pt;}
.y99{bottom:116.005333pt;}
.y270{bottom:117.352000pt;}
.y2f9{bottom:118.861333pt;}
.y106{bottom:121.982667pt;}
.y2c4{bottom:122.486667pt;}
.y27d{bottom:122.646667pt;}
.y1be{bottom:123.045333pt;}
.y28c{bottom:123.524000pt;}
.y22{bottom:123.790666pt;}
.y35{bottom:124.820000pt;}
.yd6{bottom:125.581333pt;}
.y61{bottom:126.129333pt;}
.y1fe{bottom:132.600000pt;}
.y98{bottom:132.742667pt;}
.y26f{bottom:134.089333pt;}
.y2f8{bottom:134.202667pt;}
.y2c3{bottom:137.829333pt;}
.y105{bottom:138.720000pt;}
.y28b{bottom:139.145333pt;}
.y27c{bottom:139.384000pt;}
.y1bd{bottom:139.782667pt;}
.y34{bottom:140.720000pt;}
.yd5{bottom:142.318667pt;}
.y60{bottom:142.866667pt;}
.y226{bottom:143.798667pt;}
.y97{bottom:149.480000pt;}
.y2f7{bottom:149.545333pt;}
.y26e{bottom:150.826667pt;}
.y2c2{bottom:153.172000pt;}
.y1fd{bottom:153.322667pt;}
.y28a{bottom:154.766667pt;}
.y104{bottom:155.457333pt;}
.y27b{bottom:156.121333pt;}
.y1bc{bottom:156.520000pt;}
.y33{bottom:156.621333pt;}
.yd4{bottom:159.056000pt;}
.y5f{bottom:159.604000pt;}
.y225{bottom:160.536000pt;}
.y2f6{bottom:164.888000pt;}
.y96{bottom:166.217333pt;}
.y26d{bottom:167.564000pt;}
.y2c1{bottom:168.514667pt;}
.y166{bottom:169.938667pt;}
.y289{bottom:170.388000pt;}
.y103{bottom:172.194667pt;}
.y32{bottom:172.521333pt;}
.y27a{bottom:172.858667pt;}
.y1bb{bottom:173.257333pt;}
.y19f{bottom:174.997333pt;}
.y19{bottom:175.052000pt;}
.yd3{bottom:175.793333pt;}
.y5e{bottom:176.341333pt;}
.y2f5{bottom:180.230667pt;}
.y224{bottom:181.258667pt;}
.y95{bottom:182.954667pt;}
.y1fc{bottom:183.209333pt;}
.y2c0{bottom:183.857333pt;}
.y26c{bottom:184.301333pt;}
.y288{bottom:186.009333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y31{bottom:188.421333pt;}
.y102{bottom:188.932000pt;}
.y279{bottom:189.596000pt;}
.y14a{bottom:189.876000pt;}
.y1ba{bottom:189.994667pt;}
.y19e{bottom:191.733333pt;}
.yd2{bottom:192.530667pt;}
.y5d{bottom:193.078667pt;}
.y2f4{bottom:195.573333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y2bf{bottom:199.200000pt;}
.y94{bottom:199.690667pt;}
.y1fb{bottom:199.946667pt;}
.y26b{bottom:201.038667pt;}
.y287{bottom:201.630667pt;}
.y30{bottom:204.322667pt;}
.y101{bottom:205.669333pt;}
.y278{bottom:206.333333pt;}
.y1b9{bottom:206.732000pt;}
.y19d{bottom:208.470667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yd1{bottom:209.268000pt;}
.y5c{bottom:209.816000pt;}
.y2f3{bottom:210.916000pt;}
.y223{bottom:211.374667pt;}
.y2be{bottom:214.542667pt;}
.y93{bottom:216.428000pt;}
.y1fa{bottom:216.684000pt;}
.y286{bottom:217.252000pt;}
.y24f{bottom:221.673333pt;}
.y26a{bottom:221.761333pt;}
.y100{bottom:222.406667pt;}
.y277{bottom:223.070667pt;}
.y1b8{bottom:223.469333pt;}
.yd0{bottom:226.005333pt;}
.y2f2{bottom:226.258667pt;}
.y5b{bottom:226.553333pt;}
.y222{bottom:227.526667pt;}
.y2bd{bottom:229.885333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y285{bottom:232.873333pt;}
.y92{bottom:233.165333pt;}
.y1f9{bottom:233.421333pt;}
.yff{bottom:239.144000pt;}
.y276{bottom:239.808000pt;}
.y221{bottom:240.146667pt;}
.y1b7{bottom:240.206667pt;}
.y19c{bottom:241.149333pt;}
.y2f1{bottom:241.601333pt;}
.y245{bottom:241.609333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ycf{bottom:242.742667pt;}
.y5a{bottom:243.290667pt;}
.y2bc{bottom:245.228000pt;}
.y91{bottom:249.902667pt;}
.y1f8{bottom:250.158667pt;}
.y269{bottom:251.649333pt;}
.y220{bottom:252.765333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yfe{bottom:255.881333pt;}
.y284{bottom:256.465333pt;}
.y1b6{bottom:256.944000pt;}
.y19b{bottom:257.886667pt;}
.yce{bottom:259.480000pt;}
.y59{bottom:260.026667pt;}
.y275{bottom:260.529333pt;}
.y2bb{bottom:260.569333pt;}
.y2f{bottom:264.148000pt;}
.y21f{bottom:265.385333pt;}
.y90{bottom:266.640000pt;}
.y1f7{bottom:266.896000pt;}
.y268{bottom:268.386667pt;}
.y2f0{bottom:272.285333pt;}
.yfd{bottom:272.618667pt;}
.y1b5{bottom:273.681333pt;}
.y19a{bottom:274.624000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y2ba{bottom:275.912000pt;}
.ycd{bottom:276.217333pt;}
.y58{bottom:276.764000pt;}
.y2e{bottom:280.048000pt;}
.y283{bottom:280.057333pt;}
.y12e{bottom:282.834667pt;}
.y8f{bottom:283.377333pt;}
.y1f6{bottom:283.633333pt;}
.y21e{bottom:284.406667pt;}
.y267{bottom:285.124000pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y2ef{bottom:287.628000pt;}
.y255{bottom:288.560400pt;}
.yfc{bottom:289.356000pt;}
.y274{bottom:290.417333pt;}
.y1b4{bottom:290.418667pt;}
.y2b9{bottom:291.254667pt;}
.y199{bottom:291.360000pt;}
.ycc{bottom:292.954667pt;}
.y57{bottom:293.501333pt;}
.y262{bottom:294.690667pt;}
.y282{bottom:295.678667pt;}
.y2d{bottom:295.948000pt;}
.y21d{bottom:297.025333pt;}
.y8e{bottom:300.114667pt;}
.y1f5{bottom:300.370667pt;}
.y266{bottom:301.861333pt;}
.y2ee{bottom:302.970667pt;}
.y174{bottom:303.803187pt;}
.yfb{bottom:306.092000pt;}
.y12d{bottom:306.189333pt;}
.y2b8{bottom:306.597333pt;}
.y273{bottom:307.154667pt;}
.y1b3{bottom:307.156000pt;}
.y254{bottom:308.560400pt;}
.y10{bottom:309.452000pt;}
.ycb{bottom:309.692000pt;}
.y56{bottom:310.238667pt;}
.y247{bottom:310.640520pt;}
.y281{bottom:311.300000pt;}
.y2c{bottom:311.849333pt;}
.y173{bottom:312.363067pt;}
.y261{bottom:314.690667pt;}
.y8d{bottom:316.852000pt;}
.y1f4{bottom:317.108000pt;}
.y2ed{bottom:318.313333pt;}
.y246{bottom:319.200400pt;}
.y2b7{bottom:321.940000pt;}
.yfa{bottom:322.829333pt;}
.y12c{bottom:322.926667pt;}
.y21c{bottom:323.737333pt;}
.y272{bottom:323.892000pt;}
.y1b2{bottom:323.893333pt;}
.y198{bottom:324.038667pt;}
.yca{bottom:326.429333pt;}
.y280{bottom:326.921333pt;}
.y55{bottom:326.976000pt;}
.y14c{bottom:329.751187pt;}
.y265{bottom:331.697333pt;}
.y8c{bottom:333.589333pt;}
.y2ec{bottom:333.656000pt;}
.y1f3{bottom:333.845333pt;}
.y2b{bottom:335.720000pt;}
.y2b6{bottom:337.282667pt;}
.y14b{bottom:338.311067pt;}
.yf9{bottom:339.566667pt;}
.y12b{bottom:339.664000pt;}
.y1b1{bottom:340.629333pt;}
.y197{bottom:340.776000pt;}
.y27f{bottom:342.542667pt;}
.y54{bottom:343.713333pt;}
.yf{bottom:343.809333pt;}
.y2eb{bottom:348.998667pt;}
.y8b{bottom:350.326667pt;}
.y1f2{bottom:350.582667pt;}
.y2a{bottom:351.620000pt;}
.y25b{bottom:351.635067pt;}
.y2b5{bottom:352.625333pt;}
.yc9{bottom:355.262667pt;}
.yf8{bottom:356.304000pt;}
.y12a{bottom:356.401333pt;}
.y21b{bottom:356.718667pt;}
.y1b0{bottom:357.366667pt;}
.y53{bottom:360.450667pt;}
.ye{bottom:362.706666pt;}
.y2ea{bottom:364.341333pt;}
.y8a{bottom:367.064000pt;}
.y1f1{bottom:367.320000pt;}
.y29{bottom:367.520000pt;}
.y2b4{bottom:367.968000pt;}
.y196{bottom:369.593333pt;}
.yc8{bottom:372.358667pt;}
.yf7{bottom:373.041333pt;}
.y129{bottom:373.138667pt;}
.y21a{bottom:373.456000pt;}
.y1af{bottom:374.104000pt;}
.y52{bottom:377.188000pt;}
.y2e9{bottom:379.684000pt;}
.y2b3{bottom:383.309333pt;}
.y28{bottom:383.421333pt;}
.y89{bottom:383.801333pt;}
.y1f0{bottom:384.057333pt;}
.y195{bottom:386.689333pt;}
.yf6{bottom:389.778667pt;}
.y219{bottom:390.193333pt;}
.y1ae{bottom:390.841333pt;}
.ybd{bottom:392.803805pt;}
.y51{bottom:393.925333pt;}
.ya7{bottom:394.953333pt;}
.y2e8{bottom:395.025333pt;}
.y128{bottom:396.493333pt;}
.y2b2{bottom:398.652000pt;}
.y27{bottom:399.321333pt;}
.y88{bottom:400.538667pt;}
.y1ef{bottom:400.794667pt;}
.yf5{bottom:406.516000pt;}
.y172{bottom:406.626667pt;}
.y218{bottom:406.930667pt;}
.y1ad{bottom:407.578667pt;}
.ybc{bottom:409.923309pt;}
.y2e7{bottom:410.368000pt;}
.y50{bottom:410.662667pt;}
.y2b1{bottom:413.994667pt;}
.y26{bottom:415.221333pt;}
.y1ee{bottom:417.532000pt;}
.y127{bottom:419.848000pt;}
.yf4{bottom:423.253333pt;}
.y217{bottom:423.668000pt;}
.y87{bottom:423.917333pt;}
.y1ac{bottom:424.316000pt;}
.y2e6{bottom:425.710667pt;}
.ybb{bottom:426.962653pt;}
.y4f{bottom:427.400000pt;}
.y2b0{bottom:429.337333pt;}
.y25{bottom:431.122667pt;}
.y1ed{bottom:434.269333pt;}
.y126{bottom:436.585333pt;}
.yf3{bottom:439.990667pt;}
.y216{bottom:440.405333pt;}
.y1ab{bottom:441.053333pt;}
.yba{bottom:444.082157pt;}
.y4e{bottom:444.137333pt;}
.y86{bottom:444.640000pt;}
.y2af{bottom:444.680000pt;}
.yd{bottom:446.990669pt;}
.y24{bottom:447.022667pt;}
.y1ec{bottom:451.006667pt;}
.y125{bottom:453.322667pt;}
.y2e5{bottom:456.396000pt;}
.y215{bottom:457.142667pt;}
.y1aa{bottom:457.790667pt;}
.y2ae{bottom:460.022667pt;}
.y4d{bottom:460.874667pt;}
.yb9{bottom:461.201661pt;}
.y23{bottom:462.922667pt;}
.yc{bottom:462.990669pt;}
.yf2{bottom:463.369333pt;}
.y124{bottom:470.060000pt;}
.y1eb{bottom:471.729333pt;}
.y2e4{bottom:471.738667pt;}
.y85{bottom:474.528000pt;}
.y2ad{bottom:475.365333pt;}
.y4c{bottom:477.612000pt;}
.y214{bottom:477.865333pt;}
.yb8{bottom:478.242341pt;}
.yb{bottom:478.990666pt;}
.yf1{bottom:486.749333pt;}
.y123{bottom:486.797333pt;}
.y2e3{bottom:487.081333pt;}
.y2ac{bottom:490.708000pt;}
.y84{bottom:491.265333pt;}
.ya{bottom:494.990666pt;}
.yb7{bottom:495.361845pt;}
.y4b{bottom:498.334667pt;}
.y1ea{bottom:501.617333pt;}
.y2e2{bottom:502.424000pt;}
.y149{bottom:502.606667pt;}
.yf0{bottom:503.486667pt;}
.y122{bottom:503.534667pt;}
.y2ab{bottom:506.050667pt;}
.y213{bottom:507.981333pt;}
.y83{bottom:508.002667pt;}
.yb6{bottom:512.401189pt;}
.y2fc{bottom:513.714667pt;}
.y2e1{bottom:517.766667pt;}
.y1e9{bottom:518.354667pt;}
.y148{bottom:519.344000pt;}
.yef{bottom:520.224000pt;}
.y121{bottom:520.272000pt;}
.y2aa{bottom:521.392000pt;}
.y212{bottom:524.730667pt;}
.y82{bottom:524.740000pt;}
.y2fb{bottom:529.057333pt;}
.yb5{bottom:529.520693pt;}
.y2e0{bottom:533.108000pt;}
.y1e8{bottom:535.092000pt;}
.y244{bottom:535.440000pt;}
.y147{bottom:536.081333pt;}
.y2a9{bottom:536.734667pt;}
.yee{bottom:536.961333pt;}
.y120{bottom:537.009333pt;}
.y211{bottom:539.342667pt;}
.y81{bottom:541.477333pt;}
.y2fa{bottom:544.400000pt;}
.yb4{bottom:546.640197pt;}
.y2df{bottom:548.450667pt;}
.y1e7{bottom:551.829333pt;}
.y2a8{bottom:552.077333pt;}
.y243{bottom:552.177333pt;}
.y146{bottom:552.818667pt;}
.yed{bottom:553.698667pt;}
.y11f{bottom:553.746667pt;}
.y210{bottom:553.954667pt;}
.y80{bottom:558.214667pt;}
.yb3{bottom:563.679541pt;}
.y2de{bottom:563.793333pt;}
.y4a{bottom:565.134667pt;}
.y2a7{bottom:567.420000pt;}
.y1e6{bottom:568.565333pt;}
.y20f{bottom:568.566667pt;}
.y242{bottom:568.914667pt;}
.y145{bottom:569.556000pt;}
.yec{bottom:570.436000pt;}
.y11e{bottom:570.484000pt;}
.y9{bottom:573.786667pt;}
.y7f{bottom:574.952000pt;}
.y2dd{bottom:579.136000pt;}
.yb2{bottom:580.799045pt;}
.y2a6{bottom:582.762667pt;}
.y20e{bottom:583.178667pt;}
.y1e5{bottom:585.302667pt;}
.y241{bottom:585.652000pt;}
.y144{bottom:586.293333pt;}
.yeb{bottom:587.173333pt;}
.y11d{bottom:587.221333pt;}
.y7e{bottom:591.689333pt;}
.y8{bottom:592.685334pt;}
.y2dc{bottom:594.478667pt;}
.y20d{bottom:597.790667pt;}
.y2a5{bottom:598.105333pt;}
.y49{bottom:598.369333pt;}
.yb1{bottom:601.839709pt;}
.y1e4{bottom:602.040000pt;}
.y240{bottom:602.389333pt;}
.y143{bottom:603.029333pt;}
.yea{bottom:603.909333pt;}
.y11c{bottom:603.958667pt;}
.y260{bottom:604.050667pt;}
.y7d{bottom:608.426667pt;}
.y2db{bottom:609.821333pt;}
.y20c{bottom:612.402667pt;}
.y2a4{bottom:613.448000pt;}
.y48{bottom:615.665333pt;}
.y252{bottom:617.840520pt;}
.y1e3{bottom:618.777333pt;}
.y23f{bottom:619.126667pt;}
.y142{bottom:619.766667pt;}
.ye9{bottom:620.646667pt;}
.y11b{bottom:620.696000pt;}
.yb0{bottom:622.959197pt;}
.y25f{bottom:624.050667pt;}
.y7c{bottom:625.164000pt;}
.y251{bottom:626.400400pt;}
.y20b{bottom:627.014667pt;}
.y2a3{bottom:628.790667pt;}
.y47{bottom:632.960000pt;}
.y1e2{bottom:635.514667pt;}
.y23e{bottom:635.864000pt;}
.y141{bottom:636.504000pt;}
.ye8{bottom:637.384000pt;}
.y11a{bottom:637.433333pt;}
.yaf{bottom:640.078701pt;}
.y2da{bottom:640.506667pt;}
.y20a{bottom:641.626667pt;}
.y7b{bottom:641.901333pt;}
.y2a2{bottom:644.132000pt;}
.y7{bottom:645.598667pt;}
.y25a{bottom:649.376000pt;}
.y46{bottom:650.254667pt;}
.y1e1{bottom:652.252000pt;}
.y23d{bottom:652.601333pt;}
.y140{bottom:653.241333pt;}
.ye7{bottom:654.121333pt;}
.y119{bottom:654.170667pt;}
.y2d9{bottom:655.848000pt;}
.y209{bottom:656.238667pt;}
.yae{bottom:657.118045pt;}
.y7a{bottom:658.638667pt;}
.y2a1{bottom:659.474667pt;}
.y45{bottom:667.550667pt;}
.y3{bottom:668.977329pt;}
.y1e0{bottom:668.989333pt;}
.y250{bottom:669.313333pt;}
.y23c{bottom:669.337333pt;}
.y13f{bottom:669.978667pt;}
.y208{bottom:670.849333pt;}
.ye6{bottom:670.858667pt;}
.y118{bottom:670.908000pt;}
.y2d8{bottom:671.190667pt;}
.yad{bottom:674.237549pt;}
.y2a0{bottom:674.817333pt;}
.y79{bottom:675.376000pt;}
.y44{bottom:684.845333pt;}
.y207{bottom:685.461333pt;}
.y1df{bottom:685.726667pt;}
.y23b{bottom:686.074667pt;}
.y2d7{bottom:686.533333pt;}
.y13e{bottom:686.716000pt;}
.y29f{bottom:690.160000pt;}
.yac{bottom:691.357053pt;}
.ye5{bottom:691.581333pt;}
.y117{bottom:691.630667pt;}
.y78{bottom:692.113333pt;}
.y171{bottom:696.585333pt;}
.y206{bottom:700.073333pt;}
.y2d6{bottom:701.876000pt;}
.y43{bottom:702.141333pt;}
.y1de{bottom:702.464000pt;}
.y29e{bottom:705.502667pt;}
.ye4{bottom:708.318667pt;}
.y116{bottom:708.366667pt;}
.yab{bottom:708.397733pt;}
.y77{bottom:708.850667pt;}
.y13d{bottom:708.986667pt;}
.y170{bottom:713.322667pt;}
.y205{bottom:714.685333pt;}
.y2d5{bottom:717.218667pt;}
.y23a{bottom:718.286667pt;}
.y42{bottom:719.436000pt;}
.y29d{bottom:720.845333pt;}
.ye3{bottom:725.056000pt;}
.y115{bottom:725.104000pt;}
.y76{bottom:725.588000pt;}
.y204{bottom:729.297333pt;}
.y16f{bottom:730.058667pt;}
.y13c{bottom:731.257333pt;}
.y2d4{bottom:732.561333pt;}
.y239{bottom:734.438667pt;}
.y1dd{bottom:735.370667pt;}
.y29c{bottom:736.188000pt;}
.y41{bottom:736.730667pt;}
.ye2{bottom:741.793333pt;}
.y114{bottom:741.841333pt;}
.y75{bottom:742.324000pt;}
.y1a9{bottom:742.325333pt;}
.y16e{bottom:746.796000pt;}
.y238{bottom:747.058667pt;}
.y2d3{bottom:747.904000pt;}
.y13b{bottom:747.994667pt;}
.y203{bottom:750.312000pt;}
.y29b{bottom:751.530667pt;}
.y40{bottom:754.026667pt;}
.y1dc{bottom:754.777333pt;}
.ya9{bottom:757.037853pt;}
.ye1{bottom:758.530667pt;}
.y113{bottom:758.578667pt;}
.y74{bottom:759.061333pt;}
.y1a8{bottom:759.062667pt;}
.y237{bottom:759.677333pt;}
.y1d7{bottom:760.809333pt;}
.y1db{bottom:762.082667pt;}
.y2d2{bottom:763.246667pt;}
.y16d{bottom:763.533333pt;}
.y13a{bottom:764.732000pt;}
.y202{bottom:764.922667pt;}
.ya8{bottom:765.597733pt;}
.y29a{bottom:766.873333pt;}
.y3f{bottom:771.321333pt;}
.y236{bottom:772.297333pt;}
.ye0{bottom:775.268000pt;}
.y112{bottom:775.316000pt;}
.y1d6{bottom:775.421333pt;}
.y1d4{bottom:775.669333pt;}
.y73{bottom:775.798667pt;}
.y1a7{bottom:775.800000pt;}
.y2d1{bottom:778.589333pt;}
.y16c{bottom:780.270667pt;}
.y139{bottom:781.469333pt;}
.y2{bottom:781.661334pt;}
.y299{bottom:782.214667pt;}
.y1da{bottom:784.000000pt;}
.y235{bottom:784.916000pt;}
.ya6{bottom:786.396000pt;}
.y1d5{bottom:790.032000pt;}
.y1d8{bottom:791.306667pt;}
.ydf{bottom:792.005333pt;}
.y111{bottom:792.053333pt;}
.y72{bottom:792.536000pt;}
.y201{bottom:793.029333pt;}
.y2d0{bottom:793.930667pt;}
.y1d9{bottom:795.646667pt;}
.y1a6{bottom:796.521333pt;}
.y16b{bottom:797.008000pt;}
.y234{bottom:797.536000pt;}
.y298{bottom:797.557333pt;}
.y138{bottom:798.206667pt;}
.ya5{bottom:803.133333pt;}
.y3e{bottom:805.620000pt;}
.yde{bottom:808.742667pt;}
.y110{bottom:808.790667pt;}
.y71{bottom:809.273333pt;}
.y233{bottom:810.154667pt;}
.y297{bottom:812.900000pt;}
.y16a{bottom:813.745333pt;}
.y1a5{bottom:814.454667pt;}
.y137{bottom:814.944000pt;}
.y1d2{bottom:819.626667pt;}
.ya4{bottom:819.870667pt;}
.y3d{bottom:819.965333pt;}
.y232{bottom:822.774667pt;}
.y2cf{bottom:824.616000pt;}
.y10f{bottom:825.528000pt;}
.y70{bottom:826.010667pt;}
.y1d1{bottom:826.932000pt;}
.y296{bottom:828.242667pt;}
.ydd{bottom:829.465333pt;}
.y169{bottom:830.482667pt;}
.y136{bottom:831.681333pt;}
.y1d3{bottom:834.238667pt;}
.y1cd{bottom:834.521333pt;}
.y231{bottom:835.393333pt;}
.ya3{bottom:836.608000pt;}
.y2ce{bottom:839.958667pt;}
.y1cc{bottom:840.408000pt;}
.y10e{bottom:842.265333pt;}
.y6f{bottom:842.748000pt;}
.y295{bottom:843.585333pt;}
.y1a4{bottom:844.342667pt;}
.ydc{bottom:846.202667pt;}
.y168{bottom:847.220000pt;}
.y230{bottom:848.013333pt;}
.y135{bottom:848.418667pt;}
.y1d0{bottom:848.850667pt;}
.ya2{bottom:853.345333pt;}
.y2cd{bottom:855.301333pt;}
.y1ce{bottom:856.156000pt;}
.y294{bottom:858.928000pt;}
.y10d{bottom:859.002667pt;}
.y1{bottom:859.312000pt;}
.y6e{bottom:859.485333pt;}
.y1cf{bottom:860.496000pt;}
.y22f{bottom:860.632000pt;}
.y1a3{bottom:861.080000pt;}
.ydb{bottom:862.940000pt;}
.y3c{bottom:863.536000pt;}
.y134{bottom:865.156000pt;}
.ya1{bottom:870.082667pt;}
.y167{bottom:870.090667pt;}
.y2cc{bottom:870.644000pt;}
.y22e{bottom:873.252000pt;}
.y293{bottom:874.270667pt;}
.y10c{bottom:875.740000pt;}
.y6d{bottom:876.222667pt;}
.yda{bottom:879.676000pt;}
.y133{bottom:881.893333pt;}
.y1cb{bottom:884.476000pt;}
.y22d{bottom:885.870667pt;}
.y2cb{bottom:885.986667pt;}
.ya0{bottom:886.820000pt;}
.y292{bottom:889.613333pt;}
.y1ca{bottom:891.782667pt;}
.y1c6{bottom:892.065333pt;}
.y6c{bottom:892.960000pt;}
.y1a2{bottom:893.757333pt;}
.y3b{bottom:896.213333pt;}
.y10b{bottom:896.462667pt;}
.y22c{bottom:898.490667pt;}
.y132{bottom:898.630667pt;}
.y2ca{bottom:901.329333pt;}
.yd9{bottom:903.056000pt;}
.y9f{bottom:903.557333pt;}
.y291{bottom:904.956000pt;}
.y1c3{bottom:905.258667pt;}
.y1c5{bottom:906.677333pt;}
.y6b{bottom:909.697333pt;}
.y1a1{bottom:910.494667pt;}
.y22b{bottom:911.109333pt;}
.y10a{bottom:913.200000pt;}
.y1c8{bottom:913.700000pt;}
.y131{bottom:915.368000pt;}
.y2c9{bottom:916.670667pt;}
.y9e{bottom:920.294667pt;}
.y1c7{bottom:921.005333pt;}
.y1c4{bottom:921.289333pt;}
.y3a{bottom:921.320000pt;}
.y22a{bottom:923.729333pt;}
.y290{bottom:924.282667pt;}
.y6a{bottom:926.434667pt;}
.y1a0{bottom:927.232000pt;}
.y1c9{bottom:928.312000pt;}
.y109{bottom:929.937333pt;}
.y2c8{bottom:932.013333pt;}
.y130{bottom:932.105333pt;}
.y25d{bottom:933.330787pt;}
.y229{bottom:936.348000pt;}
.y9d{bottom:937.032000pt;}
.y25c{bottom:941.890667pt;}
.y69{bottom:943.172000pt;}
.y39{bottom:946.425333pt;}
.y2c7{bottom:947.356000pt;}
.y1c1{bottom:949.325333pt;}
.y108{bottom:953.292000pt;}
.y9c{bottom:953.769333pt;}
.y28f{bottom:954.170667pt;}
.y12f{bottom:954.376000pt;}
.y228{bottom:955.369333pt;}
.y1c0{bottom:956.632000pt;}
.y68{bottom:959.909333pt;}
.y2c6{bottom:962.698667pt;}
.y1c2{bottom:963.937333pt;}
.y227{bottom:967.989333pt;}
.y9b{bottom:970.506667pt;}
.y38{bottom:971.530667pt;}
.y67{bottom:976.646667pt;}
.y28e{bottom:977.762667pt;}
.y2c5{bottom:978.041333pt;}
.y66{bottom:993.384000pt;}
.y1bf{bottom:994.700000pt;}
.y65{bottom:1046.810667pt;}
.h23{height:21.664455pt;}
.h26{height:24.866650pt;}
.h9{height:27.076941pt;}
.ha{height:27.300102pt;}
.h7{height:28.560000pt;}
.h27{height:30.732706pt;}
.he{height:30.945242pt;}
.h14{height:31.067969pt;}
.h11{height:31.200285pt;}
.h13{height:31.338125pt;}
.h28{height:31.625357pt;}
.h1d{height:34.574438pt;}
.hf{height:34.813542pt;}
.h17{height:35.039062pt;}
.h22{height:35.100467pt;}
.h16{height:35.343750pt;}
.hd{height:38.415786pt;}
.h1b{height:38.462187pt;}
.h10{height:38.681455pt;}
.hb{height:39.000258pt;}
.h15{height:39.010156pt;}
.h1f{height:39.024455pt;}
.h1a{height:39.349375pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h25{height:46.674876pt;}
.h24{height:46.680209pt;}
.h2{height:48.960000pt;}
.h1c{height:63.795772pt;}
.h20{height:64.034876pt;}
.h1e{height:64.040209pt;}
.hc{height:69.148877pt;}
.h5{height:69.360000pt;}
.h21{height:69.714876pt;}
.h4{height:105.826671pt;}
.h19{height:269.962667pt;}
.h2a{height:270.545333pt;}
.h29{height:274.473333pt;}
.h2b{height:275.344933pt;}
.h18{height:293.933333pt;}
.h12{height:371.432000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:466.384000pt;}
.w6{width:469.526667pt;}
.w8{width:490.036000pt;}
.w9{width:491.782667pt;}
.w7{width:500.509333pt;}
.w4{width:551.561600pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x10{left:-174.021333pt;}
.x13{left:-171.926667pt;}
.xc{left:-72.785067pt;}
.x0{left:0.000000pt;}
.x15{left:1.913333pt;}
.x12{left:28.138667pt;}
.x16{left:30.233333pt;}
.x6{left:46.689333pt;}
.x5{left:47.621333pt;}
.x17{left:55.592000pt;}
.x2e{left:76.309333pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xd{left:101.054933pt;}
.x1a{left:108.732000pt;}
.xb{left:120.881067pt;}
.xe{left:129.376175pt;}
.x4{left:180.874667pt;}
.x29{left:219.865333pt;}
.x8{left:220.912000pt;}
.x7{left:221.858667pt;}
.x21{left:229.828000pt;}
.x25{left:235.416000pt;}
.x28{left:240.454667pt;}
.x22{left:241.784000pt;}
.x9{left:250.204000pt;}
.xa{left:252.608000pt;}
.x1b{left:267.472000pt;}
.x3{left:404.408000pt;}
.x18{left:416.613333pt;}
.x27{left:420.964000pt;}
.x20{left:434.730667pt;}
.x1f{left:446.773333pt;}
.x26{left:449.078667pt;}
.x11{left:466.378533pt;}
.x14{left:467.913200pt;}
.x23{left:483.672000pt;}
.x2c{left:491.439867pt;}
.x24{left:492.418667pt;}
.x2b{left:494.313200pt;}
.x2d{left:498.167867pt;}
.x2a{left:499.913200pt;}
.xf{left:550.094916pt;}
.x1c{left:556.825333pt;}
.x1d{left:560.274667pt;}
.x1e{left:572.262667pt;}
.x19{left:594.552000pt;}
}




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