
    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_183f6102de05c97f47107201.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_154e430bfa4b559451b9ac0b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_894201da8a94ddd8bd411116.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b7dc8f2cc1e5141aa119995b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4817cd3ccf219606a9a0845d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_8b2d00ab5ac445a7c625ba54.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_9736f9ee42dfae5689c0da70.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2265f4132a635121afe96619.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710000;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_60d452d6e9844279f30acc63.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.704000;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_9fc9ba490e23619cdf7d2d76.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_eec8f25f6a21076bb3993d98.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.704200;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_caf2d56487ede25e200f3391.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_a2d9fdc149a4bef8113538a1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.918000;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_116afe71a18050e42d4e0a1f.woff2')format("woff");}.ffe{font-family:ffe;line-height:2.399000;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_e03987a8595f8c46ec078ce5.woff2')format("woff");}.fff{font-family:fff;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ca1b7991807a5321d66bfb1c.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_712eb262f98f6b0d5ced8d16.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_8700922a0c8b17835b5bf596.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_9585f39b0c2fefb031059de3.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.687000;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_7ff3dc871bb202d315e3c9c6.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.631000;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_c64fcb07a3c3386e5a868252.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.899000;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_7a984efd64b960727c65e04a.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.909668;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_0953a4f7d3807282ee80fe0f.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.916992;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_284bd860dee69570c0564ef5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.919922;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_3c28a5eca2273b4b3e74f39b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.669434;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c2a0b92375d12a54f93a5817.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.033000;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_5b95e93374e0d3cf43c525db.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.919000;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_d916f68fb4f079824d4fa89a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.909668;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_f8df81a31001b2b01158e89d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.701000;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_d09cb5eaf3745c09fbae9bfd.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.028000;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_63cd24f79b1bae92110f6732.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.899000;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_99d36a1bd36c66fd20d31cf1.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_7421dc762d8db61606545595.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.900000;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_3e830a1b4266d54632e36adb.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.921000;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_596831df6ad72dc2b782515d.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_e1c7615f98246d078157b387.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.909668;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_5d7956cd07f509d355979f92.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.909668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.250415,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250415,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250415,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250466,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250466,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250466,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.216506,-0.125000,0.125000,0.216506,0,0);-ms-transform:matrix(0.216506,-0.125000,0.125000,0.216506,0,0);-webkit-transform:matrix(0.216506,-0.125000,0.125000,0.216506,0,0);}
.m4{transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249535,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249586,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249586,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);}
.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);}
.v15{vertical-align:-42.002670px;}
.v20{vertical-align:-24.384000px;}
.v2{vertical-align:-21.690000px;}
.v5{vertical-align:-20.088000px;}
.v1f{vertical-align:-18.042000px;}
.v3{vertical-align:-16.878000px;}
.va{vertical-align:-14.616000px;}
.v13{vertical-align:-13.446000px;}
.v4{vertical-align:-8.964000px;}
.v1e{vertical-align:-7.746000px;}
.v6{vertical-align:-6.342000px;}
.v0{vertical-align:0.000000px;}
.v14{vertical-align:1.966846px;}
.v16{vertical-align:3.036000px;}
.vd{vertical-align:5.808000px;}
.v1d{vertical-align:8.964000px;}
.v12{vertical-align:13.446000px;}
.vc{vertical-align:14.778000px;}
.v9{vertical-align:15.936000px;}
.v17{vertical-align:17.268000px;}
.v1{vertical-align:21.690000px;}
.v8{vertical-align:25.572000px;}
.v1c{vertical-align:30.054000px;}
.v11{vertical-align:31.476000px;}
.v19{vertical-align:34.668000px;}
.vb{vertical-align:38.616000px;}
.ve{vertical-align:40.440000px;}
.v1b{vertical-align:44.832000px;}
.v7{vertical-align:66.354000px;}
.v10{vertical-align:72.480000px;}
.vf{vertical-align:81.444000px;}
.v18{vertical-align:84.282000px;}
.v1a{vertical-align:115.368000px;}
.ls3{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000042px;}
.ls19{letter-spacing:0.000062px;}
.ls2c{letter-spacing:0.000065px;}
.ls8c{letter-spacing:0.000538px;}
.ls6{letter-spacing:0.000564px;}
.lsbb{letter-spacing:0.000615px;}
.ls81{letter-spacing:0.000960px;}
.ls35{letter-spacing:0.001545px;}
.ls43{letter-spacing:0.001859px;}
.ls91{letter-spacing:0.001866px;}
.lsbf{letter-spacing:0.002234px;}
.ls73{letter-spacing:0.002245px;}
.ls9a{letter-spacing:0.002316px;}
.ls62{letter-spacing:0.002338px;}
.ls7c{letter-spacing:0.002469px;}
.ls98{letter-spacing:0.002481px;}
.ls69{letter-spacing:0.003031px;}
.lsa{letter-spacing:0.003269px;}
.lsba{letter-spacing:0.004038px;}
.lsb8{letter-spacing:0.004059px;}
.lsb{letter-spacing:0.004188px;}
.ls7e{letter-spacing:0.004200px;}
.lsf{letter-spacing:0.004276px;}
.ls10{letter-spacing:0.004896px;}
.ls3a{letter-spacing:0.005732px;}
.ls46{letter-spacing:0.006042px;}
.ls49{letter-spacing:0.006062px;}
.ls4f{letter-spacing:0.006993px;}
.ls86{letter-spacing:0.568088px;}
.ls4{letter-spacing:0.666146px;}
.ls39{letter-spacing:0.672146px;}
.ls38{letter-spacing:0.702932px;}
.ls14{letter-spacing:1.006868px;}
.ls9{letter-spacing:1.012868px;}
.ls99{letter-spacing:1.655249px;}
.ls7f{letter-spacing:1.717905px;}
.ls1f{letter-spacing:1.806063px;}
.ls8e{letter-spacing:1.880823px;}
.ls61{letter-spacing:2.211131px;}
.ls1d{letter-spacing:2.217131px;}
.ls5f{letter-spacing:2.569708px;}
.ls5e{letter-spacing:2.575708px;}
.lsb7{letter-spacing:2.823056px;}
.lsb6{letter-spacing:2.824834px;}
.ls74{letter-spacing:2.984525px;}
.ls1e{letter-spacing:2.984777px;}
.ls4c{letter-spacing:2.985193px;}
.ls55{letter-spacing:2.987373px;}
.ls4b{letter-spacing:2.987374px;}
.ls26{letter-spacing:2.988615px;}
.ls32{letter-spacing:2.988680px;}
.ls5b{letter-spacing:2.989514px;}
.ls45{letter-spacing:2.990234px;}
.ls72{letter-spacing:2.990525px;}
.ls36{letter-spacing:2.990777px;}
.ls42{letter-spacing:2.993373px;}
.ls3d{letter-spacing:2.993374px;}
.ls68{letter-spacing:3.156921px;}
.ls58{letter-spacing:3.317134px;}
.ls51{letter-spacing:3.323134px;}
.ls87{letter-spacing:3.382742px;}
.ls5{letter-spacing:3.472059px;}
.ls2d{letter-spacing:3.660146px;}
.lsc{letter-spacing:3.994868px;}
.lse{letter-spacing:4.000868px;}
.ls7d{letter-spacing:4.270583px;}
.ls8{letter-spacing:4.484450px;}
.ls3c{letter-spacing:4.490450px;}
.ls28{letter-spacing:6.516305px;}
.ls16{letter-spacing:6.516854px;}
.lsa4{letter-spacing:6.638469px;}
.lsa5{letter-spacing:6.644469px;}
.lsad{letter-spacing:6.646188px;}
.ls24{letter-spacing:6.837046px;}
.ls5c{letter-spacing:7.172703px;}
.ls11{letter-spacing:7.472450px;}
.ls12{letter-spacing:7.478450px;}
.ls30{letter-spacing:7.942868px;}
.ls7b{letter-spacing:8.303139px;}
.ls85{letter-spacing:8.464246px;}
.ls9e{letter-spacing:9.626234px;}
.ls22{letter-spacing:9.816968px;}
.ls48{letter-spacing:9.956338px;}
.ls17{letter-spacing:9.962338px;}
.ls8d{letter-spacing:9.964438px;}
.ls31{letter-spacing:9.982525px;}
.ls79{letter-spacing:10.160525px;}
.ls83{letter-spacing:11.286620px;}
.ls67{letter-spacing:11.510525px;}
.lsaa{letter-spacing:11.849373px;}
.lsa6{letter-spacing:11.972234px;}
.lsa9{letter-spacing:11.975373px;}
.ls1{letter-spacing:12.949409px;}
.ls63{letter-spacing:12.950525px;}
.lsa1{letter-spacing:13.158305px;}
.lsb4{letter-spacing:13.278493px;}
.ls3f{letter-spacing:13.278538px;}
.ls6a{letter-spacing:13.281269px;}
.ls41{letter-spacing:13.284538px;}
.ls77{letter-spacing:13.287269px;}
.lsac{letter-spacing:14.114450px;}
.lsc4{letter-spacing:14.754305px;}
.ls6b{letter-spacing:15.157120px;}
.ls8a{letter-spacing:15.164823px;}
.lsb9{letter-spacing:15.226363px;}
.lsbe{letter-spacing:15.594305px;}
.ls3b{letter-spacing:15.935414px;}
.ls7{letter-spacing:15.941414px;}
.lsbc{letter-spacing:16.108038px;}
.ls40{letter-spacing:16.268525px;}
.ls18{letter-spacing:16.601607px;}
.ls15{letter-spacing:16.602538px;}
.ls2f{letter-spacing:16.603545px;}
.ls9c{letter-spacing:16.847373px;}
.ls94{letter-spacing:17.054234px;}
.ls93{letter-spacing:17.057373px;}
.ls50{letter-spacing:17.136538px;}
.ls3e{letter-spacing:17.284868px;}
.lsbd{letter-spacing:17.306554px;}
.ls21{letter-spacing:17.351607px;}
.ls96{letter-spacing:17.490961px;}
.ls9b{letter-spacing:18.138579px;}
.lsab{letter-spacing:18.194234px;}
.lsc0{letter-spacing:18.309694px;}
.ls95{letter-spacing:18.455039px;}
.lsaf{letter-spacing:19.050305px;}
.ls6f{letter-spacing:19.397039px;}
.lsb1{letter-spacing:19.590538px;}
.lsa7{letter-spacing:19.922338px;}
.ls84{letter-spacing:19.926532px;}
.lsa8{letter-spacing:19.928338px;}
.lsc5{letter-spacing:20.112305px;}
.lsae{letter-spacing:20.364680px;}
.ls57{letter-spacing:20.454538px;}
.ls5a{letter-spacing:20.456703px;}
.ls53{letter-spacing:20.460538px;}
.ls59{letter-spacing:20.462703px;}
.ls1c{letter-spacing:20.602868px;}
.ls0{letter-spacing:20.875409px;}
.ls70{letter-spacing:20.946312px;}
.ls6e{letter-spacing:20.975023px;}
.lsa2{letter-spacing:21.358188px;}
.ls97{letter-spacing:21.392525px;}
.ls6d{letter-spacing:22.152961px;}
.ls29{letter-spacing:22.496525px;}
.ls89{letter-spacing:22.706525px;}
.ls2e{letter-spacing:23.050868px;}
.lsc1{letter-spacing:23.118305px;}
.ls9f{letter-spacing:23.177373px;}
.ls8b{letter-spacing:23.248438px;}
.ls76{letter-spacing:24.132961px;}
.ls2b{letter-spacing:24.162154px;}
.ls33{letter-spacing:24.688868px;}
.lsb3{letter-spacing:24.780305px;}
.ls2{letter-spacing:25.400915px;}
.lsd{letter-spacing:26.564338px;}
.ls71{letter-spacing:26.724921px;}
.ls82{letter-spacing:26.796532px;}
.ls64{letter-spacing:28.896532px;}
.lsc2{letter-spacing:30.258305px;}
.ls9d{letter-spacing:31.703374px;}
.lsa3{letter-spacing:31.740680px;}
.lsb2{letter-spacing:32.378525px;}
.ls4d{letter-spacing:33.824234px;}
.ls60{letter-spacing:34.952777px;}
.lsc3{letter-spacing:35.670305px;}
.lsa0{letter-spacing:35.931694px;}
.lsb0{letter-spacing:37.809694px;}
.ls34{letter-spacing:38.596868px;}
.ls4e{letter-spacing:38.798338px;}
.ls37{letter-spacing:39.230234px;}
.ls65{letter-spacing:42.548945px;}
.ls2a{letter-spacing:43.134968px;}
.ls8f{letter-spacing:48.290338px;}
.ls78{letter-spacing:56.676538px;}
.ls54{letter-spacing:65.192703px;}
.ls56{letter-spacing:66.728703px;}
.ls47{letter-spacing:82.083962px;}
.ls1a{letter-spacing:82.694525px;}
.ls88{letter-spacing:84.996532px;}
.ls80{letter-spacing:98.730532px;}
.ls52{letter-spacing:107.378703px;}
.lsb5{letter-spacing:115.648888px;}
.ls13{letter-spacing:138.927962px;}
.ls92{letter-spacing:142.862338px;}
.ls7a{letter-spacing:150.038338px;}
.ls6c{letter-spacing:172.454338px;}
.ls1b{letter-spacing:311.750338px;}
.ls4a{letter-spacing:340.910338px;}
.ls5d{letter-spacing:572.870338px;}
.ls27{letter-spacing:591.092338px;}
.ls20{letter-spacing:655.160338px;}
.ls23{letter-spacing:796.196338px;}
.ls25{letter-spacing:811.268338px;}
.ls75{letter-spacing:894.470338px;}
.ls90{letter-spacing:901.646338px;}
.ls66{letter-spacing:2613.457958px;}
.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;}
}
.ws74{word-spacing:-59.775600px;}
.ws6c{word-spacing:-48.920351px;}
.wsd0{word-spacing:-47.324343px;}
.ws54{word-spacing:-38.937826px;}
.ws53{word-spacing:-31.633157px;}
.wsb2{word-spacing:-27.812724px;}
.wscb{word-spacing:-22.576105px;}
.ws87{word-spacing:-20.431031px;}
.ws59{word-spacing:-20.425031px;}
.ws55{word-spacing:-19.092327px;}
.ws51{word-spacing:-16.605662px;}
.ws16b{word-spacing:-15.278643px;}
.ws93{word-spacing:-15.193121px;}
.wsa1{word-spacing:-14.121000px;}
.wsca{word-spacing:-14.111859px;}
.ws6d{word-spacing:-13.531962px;}
.ws100{word-spacing:-7.639322px;}
.ws132{word-spacing:-7.519770px;}
.ws123{word-spacing:-6.824643px;}
.wsbc{word-spacing:-6.646143px;}
.wsb3{word-spacing:-6.640143px;}
.ws84{word-spacing:-6.623136px;}
.wsc7{word-spacing:-5.647613px;}
.ws12a{word-spacing:-5.599792px;}
.ws10a{word-spacing:-4.052786px;}
.ws56{word-spacing:-3.335478px;}
.wsd9{word-spacing:-3.321123px;}
.ws16{word-spacing:-3.215927px;}
.ws14f{word-spacing:-3.096376px;}
.ws6{word-spacing:-3.021293px;}
.wsc2{word-spacing:-2.917049px;}
.wsc9{word-spacing:-2.822972px;}
.wsf2{word-spacing:-2.737722px;}
.ws7{word-spacing:-2.618171px;}
.ws60{word-spacing:-2.558396px;}
.wsdb{word-spacing:-2.546108px;}
.wsda{word-spacing:-2.537579px;}
.ws77{word-spacing:-2.498620px;}
.wsc3{word-spacing:-2.379069px;}
.wsff{word-spacing:-2.319293px;}
.ws136{word-spacing:-2.259518px;}
.ws7b{word-spacing:-2.139966px;}
.ws71{word-spacing:-2.020415px;}
.ws130{word-spacing:-1.900864px;}
.ws15b{word-spacing:-1.841088px;}
.wsa{word-spacing:-1.781313px;}
.ws9{word-spacing:-1.721537px;}
.wse5{word-spacing:-1.661762px;}
.ws61{word-spacing:-1.601986px;}
.wsec{word-spacing:-1.542210px;}
.ws102{word-spacing:-1.508108px;}
.wsa4{word-spacing:-1.422659px;}
.ws122{word-spacing:-1.303108px;}
.wse4{word-spacing:-1.183557px;}
.ws116{word-spacing:-1.123781px;}
.ws152{word-spacing:-1.064006px;}
.ws17{word-spacing:-1.004230px;}
.wsd1{word-spacing:-0.884679px;}
.ws96{word-spacing:-0.824903px;}
.ws79{word-spacing:-0.765128px;}
.wscd{word-spacing:-0.705352px;}
.ws26{word-spacing:-0.645576px;}
.ws12{word-spacing:-0.585801px;}
.ws10f{word-spacing:-0.581572px;}
.ws9f{word-spacing:-0.526025px;}
.wse6{word-spacing:-0.466250px;}
.wse9{word-spacing:-0.346698px;}
.wsdd{word-spacing:-0.290108px;}
.wscc{word-spacing:-0.286923px;}
.ws13b{word-spacing:-0.227147px;}
.wsee{word-spacing:-0.107596px;}
.ws52{word-spacing:-0.059776px;}
.ws46{word-spacing:-0.047820px;}
.ws85{word-spacing:-0.041843px;}
.wsc8{word-spacing:-0.035866px;}
.ws12d{word-spacing:-0.029888px;}
.wsb1{word-spacing:-0.015471px;}
.ws57{word-spacing:-0.003213px;}
.ws49{word-spacing:0.000000px;}
.ws86{word-spacing:0.002787px;}
.ws6b{word-spacing:0.011955px;}
.ws21{word-spacing:0.071731px;}
.ws161{word-spacing:0.073824px;}
.ws164{word-spacing:0.073927px;}
.ws14d{word-spacing:0.131506px;}
.wsae{word-spacing:0.191282px;}
.ws72{word-spacing:0.251058px;}
.ws16e{word-spacing:0.310833px;}
.ws120{word-spacing:0.370609px;}
.wse0{word-spacing:0.430384px;}
.ws5c{word-spacing:0.490160px;}
.wsaf{word-spacing:0.609711px;}
.wsb6{word-spacing:0.663818px;}
.wsb7{word-spacing:0.669487px;}
.ws7a{word-spacing:0.729262px;}
.ws107{word-spacing:0.765892px;}
.ws106{word-spacing:0.775875px;}
.ws108{word-spacing:0.789038px;}
.wsbf{word-spacing:0.848814px;}
.ws6a{word-spacing:0.908589px;}
.ws2f{word-spacing:0.968365px;}
.ws10d{word-spacing:1.028140px;}
.ws4e{word-spacing:1.087916px;}
.ws16a{word-spacing:1.099871px;}
.ws27{word-spacing:1.147692px;}
.ws8f{word-spacing:1.207467px;}
.ws37{word-spacing:1.267243px;}
.ws109{word-spacing:1.327018px;}
.ws78{word-spacing:1.446570px;}
.ws119{word-spacing:1.506345px;}
.ws104{word-spacing:1.566121px;}
.ws145{word-spacing:1.625896px;}
.ws113{word-spacing:1.685672px;}
.ws121{word-spacing:1.745448px;}
.ws45{word-spacing:1.805223px;}
.ws3a{word-spacing:1.864999px;}
.wsf7{word-spacing:1.924774px;}
.ws5b{word-spacing:1.984550px;}
.ws1a{word-spacing:2.104101px;}
.ws97{word-spacing:2.223652px;}
.ws36{word-spacing:2.283428px;}
.wsf6{word-spacing:2.343204px;}
.wsa3{word-spacing:2.402979px;}
.wsc{word-spacing:2.462755px;}
.ws12f{word-spacing:2.577516px;}
.ws91{word-spacing:2.582306px;}
.ws4b{word-spacing:2.642082px;}
.wsd3{word-spacing:2.701857px;}
.wsab{word-spacing:2.761633px;}
.ws2e{word-spacing:2.816633px;}
.ws42{word-spacing:2.821408px;}
.ws5d{word-spacing:2.881184px;}
.ws33{word-spacing:2.940960px;}
.ws4f{word-spacing:3.000735px;}
.ws9d{word-spacing:3.060511px;}
.ws13e{word-spacing:3.120286px;}
.ws153{word-spacing:3.180062px;}
.wse{word-spacing:3.299613px;}
.ws15c{word-spacing:3.316046px;}
.wsfe{word-spacing:3.321180px;}
.ws171{word-spacing:3.330277px;}
.ws167{word-spacing:3.338804px;}
.ws19{word-spacing:3.359389px;}
.wsdc{word-spacing:3.419164px;}
.ws7f{word-spacing:3.478940px;}
.ws39{word-spacing:3.598491px;}
.wsa7{word-spacing:3.658267px;}
.ws13d{word-spacing:3.718042px;}
.wsf8{word-spacing:3.777818px;}
.ws2{word-spacing:3.801728px;}
.ws25{word-spacing:3.837594px;}
.wsed{word-spacing:3.897369px;}
.ws29{word-spacing:4.016920px;}
.ws98{word-spacing:4.056838px;}
.wsb{word-spacing:4.076696px;}
.ws68{word-spacing:4.256023px;}
.ws67{word-spacing:4.269422px;}
.wsb8{word-spacing:4.315798px;}
.wsb5{word-spacing:4.359892px;}
.wsb4{word-spacing:4.368421px;}
.ws40{word-spacing:4.375574px;}
.ws34{word-spacing:4.435350px;}
.ws133{word-spacing:4.495125px;}
.ws172{word-spacing:4.533463px;}
.ws1e{word-spacing:4.554901px;}
.ws101{word-spacing:4.674452px;}
.ws15{word-spacing:4.734228px;}
.ws131{word-spacing:4.776684px;}
.ws117{word-spacing:4.794003px;}
.ws144{word-spacing:4.853779px;}
.ws0{word-spacing:4.863362px;}
.ws17f{word-spacing:4.865734px;}
.ws9a{word-spacing:4.902496px;}
.ws99{word-spacing:4.913554px;}
.ws35{word-spacing:4.973330px;}
.wsa9{word-spacing:5.033106px;}
.ws32{word-spacing:5.152657px;}
.ws41{word-spacing:5.212432px;}
.ws16f{word-spacing:5.272208px;}
.ws1{word-spacing:5.379825px;}
.ws4c{word-spacing:5.391759px;}
.ws24{word-spacing:5.451535px;}
.ws137{word-spacing:5.571086px;}
.ws2d{word-spacing:5.638049px;}
.ws146{word-spacing:5.690637px;}
.wsa8{word-spacing:5.750413px;}
.ws148{word-spacing:5.810188px;}
.ws76{word-spacing:5.869964px;}
.ws155{word-spacing:5.989515px;}
.ws31{word-spacing:6.049291px;}
.ws58{word-spacing:6.060428px;}
.ws83{word-spacing:6.061157px;}
.ws5a{word-spacing:6.066867px;}
.wsf{word-spacing:6.092329px;}
.ws1c{word-spacing:6.109066px;}
.ws4{word-spacing:6.121021px;}
.ws150{word-spacing:6.288393px;}
.ws174{word-spacing:6.348169px;}
.ws11d{word-spacing:6.407944px;}
.ws75{word-spacing:6.467720px;}
.ws73{word-spacing:6.527496px;}
.ws149{word-spacing:6.587271px;}
.ws13{word-spacing:6.647047px;}
.wse2{word-spacing:6.766598px;}
.ws175{word-spacing:6.776957px;}
.ws3b{word-spacing:6.826374px;}
.ws69{word-spacing:6.886149px;}
.wsb9{word-spacing:6.931274px;}
.wsba{word-spacing:6.945925px;}
.wsa2{word-spacing:7.005700px;}
.ws14{word-spacing:7.065476px;}
.ws163{word-spacing:7.112954px;}
.ws162{word-spacing:7.116428px;}
.ws165{word-spacing:7.122428px;}
.ws38{word-spacing:7.125252px;}
.wsd4{word-spacing:7.185027px;}
.ws151{word-spacing:7.244803px;}
.ws173{word-spacing:7.256758px;}
.wscf{word-spacing:7.304578px;}
.ws111{word-spacing:7.364354px;}
.ws14c{word-spacing:7.483905px;}
.ws11{word-spacing:7.543681px;}
.wsbe{word-spacing:7.603456px;}
.wsbd{word-spacing:7.608421px;}
.wsf1{word-spacing:7.635171px;}
.wsf3{word-spacing:7.636667px;}
.wsf4{word-spacing:7.663232px;}
.ws17e{word-spacing:7.680382px;}
.ws43{word-spacing:7.842559px;}
.ws11c{word-spacing:7.902334px;}
.ws63{word-spacing:7.962110px;}
.wsd2{word-spacing:8.021886px;}
.wsdf{word-spacing:8.081661px;}
.ws62{word-spacing:8.141437px;}
.ws10b{word-spacing:8.201212px;}
.ws14e{word-spacing:8.260988px;}
.ws103{word-spacing:8.440315px;}
.ws139{word-spacing:8.500090px;}
.ws20{word-spacing:8.559866px;}
.wsd5{word-spacing:8.619642px;}
.ws159{word-spacing:8.679417px;}
.wsbb{word-spacing:8.739193px;}
.wsa5{word-spacing:8.798968px;}
.wsc5{word-spacing:8.918520px;}
.wsd6{word-spacing:8.978295px;}
.ws70{word-spacing:9.038071px;}
.ws110{word-spacing:9.048428px;}
.ws14a{word-spacing:9.157622px;}
.ws4d{word-spacing:9.217398px;}
.ws28{word-spacing:9.277173px;}
.ws176{word-spacing:9.289128px;}
.ws3d{word-spacing:9.336949px;}
.ws15e{word-spacing:9.378428px;}
.ws15f{word-spacing:9.380954px;}
.wsac{word-spacing:9.396724px;}
.wsd{word-spacing:9.456500px;}
.ws17b{word-spacing:9.516276px;}
.ws18{word-spacing:9.576051px;}
.ws143{word-spacing:9.635827px;}
.wsde{word-spacing:9.695602px;}
.ws2c{word-spacing:9.750620px;}
.ws8e{word-spacing:9.815154px;}
.wsea{word-spacing:9.874929px;}
.ws48{word-spacing:9.994480px;}
.ws9b{word-spacing:10.054256px;}
.ws64{word-spacing:10.114032px;}
.wsef{word-spacing:10.173807px;}
.ws112{word-spacing:10.293115px;}
.ws4a{word-spacing:10.293358px;}
.ws147{word-spacing:10.353134px;}
.ws1d{word-spacing:10.412910px;}
.ws13f{word-spacing:10.592236px;}
.ws8d{word-spacing:10.652012px;}
.ws16c{word-spacing:10.711788px;}
.ws65{word-spacing:10.950890px;}
.ws82{word-spacing:11.010666px;}
.ws158{word-spacing:11.022621px;}
.ws11e{word-spacing:11.070441px;}
.ws140{word-spacing:11.309544px;}
.ws114{word-spacing:11.369319px;}
.wsfb{word-spacing:11.429095px;}
.wsfa{word-spacing:11.459170px;}
.ws44{word-spacing:11.488870px;}
.ws8{word-spacing:11.548646px;}
.ws17c{word-spacing:11.608422px;}
.ws7e{word-spacing:11.668197px;}
.ws6f{word-spacing:11.727973px;}
.ws6e{word-spacing:11.787748px;}
.ws141{word-spacing:11.847524px;}
.wsb0{word-spacing:11.907300px;}
.ws10c{word-spacing:11.967075px;}
.wsf5{word-spacing:12.086626px;}
.wsfd{word-spacing:12.141892px;}
.wsa6{word-spacing:12.146402px;}
.ws135{word-spacing:12.265953px;}
.ws11b{word-spacing:12.325729px;}
.ws30{word-spacing:12.445280px;}
.ws95{word-spacing:12.624607px;}
.ws10e{word-spacing:12.803934px;}
.ws5{word-spacing:12.908976px;}
.ws1b{word-spacing:12.923485px;}
.ws47{word-spacing:13.102812px;}
.ws156{word-spacing:13.162587px;}
.ws10{word-spacing:13.282138px;}
.ws50{word-spacing:13.341914px;}
.ws9c{word-spacing:13.353892px;}
.ws168{word-spacing:13.401690px;}
.ws170{word-spacing:13.473420px;}
.ws88{word-spacing:13.521241px;}
.ws134{word-spacing:13.581016px;}
.ws13a{word-spacing:13.640792px;}
.ws17d{word-spacing:13.712523px;}
.wse8{word-spacing:13.760343px;}
.ws11f{word-spacing:13.820119px;}
.ws17a{word-spacing:14.118997px;}
.ws1f{word-spacing:14.178772px;}
.ws8b{word-spacing:14.217830px;}
.ws8c{word-spacing:14.223892px;}
.ws5f{word-spacing:14.238548px;}
.ws11a{word-spacing:14.298324px;}
.ws22{word-spacing:14.358099px;}
.ws5e{word-spacing:14.417875px;}
.wse7{word-spacing:14.597202px;}
.ws3c{word-spacing:14.955855px;}
.wsf9{word-spacing:15.135182px;}
.ws157{word-spacing:15.147137px;}
.ws90{word-spacing:15.194958px;}
.ws3e{word-spacing:15.314509px;}
.wsfc{word-spacing:15.374284px;}
.wseb{word-spacing:15.493836px;}
.ws9e{word-spacing:15.613387px;}
.wsc4{word-spacing:15.912265px;}
.ws23{word-spacing:16.031816px;}
.ws2a{word-spacing:16.062940px;}
.ws115{word-spacing:16.091592px;}
.ws3f{word-spacing:16.211143px;}
.ws14b{word-spacing:16.330694px;}
.ws15a{word-spacing:16.342649px;}
.ws7d{word-spacing:16.450245px;}
.ws66{word-spacing:16.689348px;}
.ws138{word-spacing:16.808899px;}
.wse1{word-spacing:16.988226px;}
.ws13c{word-spacing:17.227328px;}
.wsaa{word-spacing:17.585982px;}
.ws2b{word-spacing:17.880122px;}
.ws92{word-spacing:18.348421px;}
.ws94{word-spacing:18.363064px;}
.ws142{word-spacing:18.422840px;}
.wsd8{word-spacing:18.721718px;}
.wsc6{word-spacing:18.781494px;}
.ws89{word-spacing:18.825461px;}
.ws8a{word-spacing:18.841269px;}
.ws12e{word-spacing:19.061080px;}
.ws118{word-spacing:19.199923px;}
.ws7c{word-spacing:19.439025px;}
.wsad{word-spacing:19.558576px;}
.ws80{word-spacing:19.618352px;}
.ws81{word-spacing:19.629892px;}
.wsf0{word-spacing:19.678128px;}
.ws105{word-spacing:19.977006px;}
.ws169{word-spacing:20.275884px;}
.ws16d{word-spacing:20.335659px;}
.ws166{word-spacing:20.514986px;}
.ws3{word-spacing:20.840976px;}
.wsd7{word-spacing:20.993191px;}
.wsc1{word-spacing:22.248478px;}
.ws177{word-spacing:25.595912px;}
.wsc0{word-spacing:27.329404px;}
.ws125{word-spacing:27.731166px;}
.ws179{word-spacing:27.807609px;}
.ws124{word-spacing:30.405540px;}
.wsce{word-spacing:30.557287px;}
.ws154{word-spacing:30.975716px;}
.ws178{word-spacing:31.513696px;}
.ws129{word-spacing:40.451446px;}
.ws127{word-spacing:43.942349px;}
.ws126{word-spacing:44.806059px;}
.ws12b{word-spacing:125.768178px;}
.ws128{word-spacing:152.686394px;}
.ws12c{word-spacing:159.763843px;}
.wsa0{word-spacing:173.913381px;}
.wse3{word-spacing:199.137285px;}
.ws160{word-spacing:241.742098px;}
.ws15d{word-spacing:268.548571px;}
._12{margin-left:-2721.034064px;}
._4{margin-left:-35.442138px;}
._2{margin-left:-34.370970px;}
._b{margin-left:-31.740844px;}
._7{margin-left:-30.545332px;}
._15{margin-left:-27.045662px;}
._41{margin-left:-25.771970px;}
._1e{margin-left:-8.446850px;}
._24{margin-left:-6.704411px;}
._5{margin-left:-5.618007px;}
._6{margin-left:-4.235382px;}
._0{margin-left:-2.754470px;}
._8{margin-left:-1.015286px;}
._3{width:1.912819px;}
._1{width:2.926625px;}
._e{width:4.662104px;}
._26{width:6.118616px;}
._13{width:7.585976px;}
._f{width:9.619558px;}
._3d{width:12.933823px;}
._28{width:14.267842px;}
._1c{width:16.928492px;}
._a{width:17.970947px;}
._27{width:18.989944px;}
._9{width:20.773238px;}
._14{width:21.942438px;}
._1b{width:23.430350px;}
._d{width:26.534274px;}
._47{width:27.639524px;}
._c{width:29.887800px;}
._16{width:31.983460px;}
._18{width:33.538904px;}
._45{width:35.206929px;}
._25{width:37.304767px;}
._17{width:38.966793px;}
._3e{width:43.102833px;}
._43{width:44.274969px;}
._44{width:51.202837px;}
._1f{width:52.939160px;}
._38{width:54.563305px;}
._30{width:58.054208px;}
._3a{width:59.488826px;}
._2e{width:61.688574px;}
._1a{width:65.036016px;}
._29{width:66.183710px;}
._33{width:72.209106px;}
._31{width:74.361033px;}
._42{width:76.990973px;}
._2b{width:79.286555px;}
._35{width:84.929386px;}
._34{width:86.316183px;}
._46{width:99.406823px;}
._2c{width:101.857878px;}
._2d{width:103.244675px;}
._2a{width:107.405072px;}
._2f{width:112.760975px;}
._10{width:121.742031px;}
._32{width:125.481254px;}
._11{width:140.381779px;}
._3b{width:154.936280px;}
._36{width:157.855801px;}
._1d{width:165.219095px;}
._22{width:172.823648px;}
._39{width:186.595981px;}
._37{width:199.268440px;}
._20{width:208.115251px;}
._3c{width:217.220583px;}
._23{width:240.703497px;}
._40{width:268.504526px;}
._3f{width:280.665794px;}
._19{width:451.198414px;}
._21{width:469.029707px;}
.fc5{color:rgb(0,0,128);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(107,26,53);}
.fc6{color:transparent;}
.fc2{color:rgb(26,107,53);}
.fc8{color:rgb(38,38,38);}
.fc7{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.887800px;}
.fs6{font-size:35.865600px;}
.fsa{font-size:37.656056px;}
.fs2{font-size:41.842800px;}
.fsd{font-size:46.619595px;}
.fs3{font-size:47.820600px;}
.fs9{font-size:50.207962px;}
.fsf{font-size:51.597519px;}
.fse{font-size:51.693661px;}
.fs11{font-size:51.812339px;}
.fs10{font-size:51.898261px;}
.fsb{font-size:53.283105px;}
.fs8{font-size:56.484000px;}
.fs7{font-size:56.484002px;}
.fsc{font-size:58.607919px;}
.fs1{font-size:59.775600px;}
.fs5{font-size:62.286600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y216{bottom:2.878382px;}
.y205{bottom:3.389170px;}
.y142{bottom:4.940057px;}
.yda{bottom:13.407670px;}
.ydd{bottom:13.739507px;}
.y215{bottom:16.257987px;}
.ye7{bottom:18.004178px;}
.y204{bottom:19.139092px;}
.ye3{bottom:20.525351px;}
.ye1{bottom:20.878778px;}
.ydf{bottom:22.057824px;}
.yed{bottom:22.298701px;}
.y141{bottom:22.423029px;}
.yd9{bottom:29.097658px;}
.ydc{bottom:29.429495px;}
.ye6{bottom:30.396692px;}
.ye9{bottom:31.195010px;}
.y217{bottom:33.972056px;}
.y206{bottom:35.261886px;}
.ye2{bottom:36.215340px;}
.ye0{bottom:36.568766px;}
.yde{bottom:37.747812px;}
.yec{bottom:37.988689px;}
.y143{bottom:41.489638px;}
.ye5{bottom:42.164209px;}
.y20b{bottom:42.925563px;}
.yd8{bottom:44.787646px;}
.ydb{bottom:45.119483px;}
.ye8{bottom:46.216751px;}
.yea{bottom:49.642994px;}
.y21c{bottom:51.085571px;}
.y207{bottom:54.139235px;}
.y218{bottom:58.015742px;}
.yf0{bottom:62.942203px;}
.yd7{bottom:67.406180px;}
.yeb{bottom:73.014435px;}
.y208{bottom:73.016597px;}
.yd4{bottom:77.007905px;}
.yee{bottom:77.928742px;}
.y219{bottom:82.059427px;}
.y147{bottom:90.023930px;}
.y209{bottom:91.893959px;}
.y144{bottom:95.770506px;}
.yd5{bottom:99.530081px;}
.yf1{bottom:103.374028px;}
.y20a{bottom:105.108125px;}
.y21a{bottom:106.103113px;}
.yef{bottom:108.074620px;}
.y33{bottom:112.915500px;}
.y93{bottom:112.917000px;}
.yd2{bottom:117.135000px;}
.yf2{bottom:119.568716px;}
.yd6{bottom:121.426193px;}
.y21b{bottom:122.933680px;}
.y54{bottom:124.524000px;}
.y23a{bottom:124.582500px;}
.yf3{bottom:125.262734px;}
.y200{bottom:126.443755px;}
.y32{bottom:127.711500px;}
.y119{bottom:129.354000px;}
.y92{bottom:129.355500px;}
.y203{bottom:132.864925px;}
.yd1{bottom:140.811000px;}
.y53{bottom:140.962500px;}
.y239{bottom:141.021000px;}
.y31{bottom:142.506000px;}
.y14b{bottom:144.875736px;}
.y91{bottom:145.792500px;}
.y1aa{bottom:145.794000px;}
.y20f{bottom:145.959054px;}
.y145{bottom:150.051373px;}
.yd0{bottom:157.248000px;}
.y30{bottom:157.300500px;}
.y52{bottom:157.401000px;}
.y238{bottom:157.459500px;}
.y201{bottom:158.912828px;}
.y14a{bottom:159.091688px;}
.y90{bottom:162.231000px;}
.y1a9{bottom:162.232500px;}
.y214{bottom:162.379527px;}
.y210{bottom:167.244788px;}
.y1d7{bottom:171.198000px;}
.y149{bottom:173.307641px;}
.ycf{bottom:173.686500px;}
.y51{bottom:173.839500px;}
.y237{bottom:173.898000px;}
.y2f{bottom:176.314500px;}
.y8f{bottom:178.669500px;}
.y148{bottom:187.523592px;}
.y16f{bottom:187.636500px;}
.y211{bottom:188.530523px;}
.y50{bottom:190.278000px;}
.y236{bottom:190.336500px;}
.y202{bottom:191.381901px;}
.y2e{bottom:194.502000px;}
.y8e{bottom:195.108000px;}
.y1a8{bottom:195.703500px;}
.y16e{bottom:204.075000px;}
.y146{bottom:204.332241px;}
.y4f{bottom:206.716500px;}
.y235{bottom:206.775000px;}
.yce{bottom:208.737000px;}
.y212{bottom:209.816257px;}
.y2d{bottom:210.940500px;}
.y8d{bottom:211.546500px;}
.y16d{bottom:220.513500px;}
.y4e{bottom:223.155000px;}
.y234{bottom:223.213500px;}
.y8c{bottom:227.985000px;}
.y1a7{bottom:228.276000px;}
.y213{bottom:231.101991px;}
.y2c{bottom:233.128500px;}
.y16c{bottom:236.952000px;}
.y4d{bottom:239.593500px;}
.y233{bottom:239.652000px;}
.y118{bottom:244.423500px;}
.y1a6{bottom:244.714500px;}
.ycd{bottom:246.838500px;}
.y2b{bottom:249.567000px;}
.y8b{bottom:253.390500px;}
.y232{bottom:256.090500px;}
.y117{bottom:260.862000px;}
.y1a5{bottom:261.153000px;}
.ycc{bottom:263.277000px;}
.y4c{bottom:264.997500px;}
.y2a{bottom:266.005500px;}
.y8a{bottom:269.829000px;}
.y231{bottom:272.529000px;}
.y13f{bottom:277.300500px;}
.y1a4{bottom:277.591500px;}
.ycb{bottom:279.715500px;}
.y4b{bottom:281.436000px;}
.y29{bottom:282.444000px;}
.y89{bottom:286.267500px;}
.y230{bottom:288.967500px;}
.y13e{bottom:293.739000px;}
.y1a3{bottom:294.030000px;}
.y1d6{bottom:295.233000px;}
.yca{bottom:296.154000px;}
.y4a{bottom:297.874500px;}
.y28{bottom:298.882500px;}
.y88{bottom:302.706000px;}
.y22f{bottom:305.404500px;}
.y23b{bottom:305.406000px;}
.y1a2{bottom:310.468500px;}
.y13d{bottom:310.549500px;}
.y1d5{bottom:311.671500px;}
.yc9{bottom:312.592500px;}
.y49{bottom:314.313000px;}
.y87{bottom:314.911500px;}
.y27{bottom:315.321000px;}
.y1fe{bottom:316.191000px;}
.y86{bottom:319.144500px;}
.y13c{bottom:320.800500px;}
.y22e{bottom:321.843000px;}
.y1a1{bottom:326.907000px;}
.y1d4{bottom:328.110000px;}
.yc8{bottom:329.031000px;}
.y48{bottom:330.751500px;}
.y26{bottom:331.759500px;}
.y85{bottom:334.572000px;}
.y16b{bottom:335.583000px;}
.y22d{bottom:338.281500px;}
.y116{bottom:338.412000px;}
.y84{bottom:338.803500px;}
.y1a0{bottom:343.345500px;}
.y1d3{bottom:344.548500px;}
.y1fd{bottom:344.656500px;}
.yc7{bottom:345.469500px;}
.y13b{bottom:346.758000px;}
.y47{bottom:347.190000px;}
.y25{bottom:348.198000px;}
.y115{bottom:348.663000px;}
.y16a{bottom:352.021500px;}
.y22c{bottom:354.720000px;}
.y83{bottom:355.242000px;}
.y19f{bottom:359.784000px;}
.y1d2{bottom:360.987000px;}
.y1fc{bottom:361.095000px;}
.yc6{bottom:361.908000px;}
.y46{bottom:363.628500px;}
.y24{bottom:364.636500px;}
.y13a{bottom:368.134500px;}
.y169{bottom:368.458500px;}
.y22b{bottom:371.158500px;}
.y82{bottom:371.680500px;}
.y19e{bottom:376.222500px;}
.y1d1{bottom:377.425500px;}
.y1fb{bottom:377.533500px;}
.yc5{bottom:378.346500px;}
.y114{bottom:378.399000px;}
.y45{bottom:380.067000px;}
.y23{bottom:381.075000px;}
.y139{bottom:384.573000px;}
.y168{bottom:384.897000px;}
.y22a{bottom:387.597000px;}
.y81{bottom:388.119000px;}
.y19d{bottom:392.661000px;}
.y1d0{bottom:393.864000px;}
.y1fa{bottom:393.972000px;}
.yc4{bottom:394.785000px;}
.y44{bottom:396.505500px;}
.y22{bottom:397.513500px;}
.y113{bottom:398.686500px;}
.y138{bottom:401.011500px;}
.y167{bottom:401.335500px;}
.y229{bottom:404.035500px;}
.y80{bottom:404.557500px;}
.y1cf{bottom:410.302500px;}
.y1f9{bottom:410.410500px;}
.yc3{bottom:411.223500px;}
.y43{bottom:412.944000px;}
.y21{bottom:413.952000px;}
.y112{bottom:415.125000px;}
.y137{bottom:417.450000px;}
.y166{bottom:417.774000px;}
.y228{bottom:420.474000px;}
.y7f{bottom:420.996000px;}
.y19c{bottom:426.132000px;}
.y1ce{bottom:426.741000px;}
.y1f8{bottom:426.849000px;}
.yc1{bottom:429.087000px;}
.y42{bottom:429.382500px;}
.y20{bottom:430.390500px;}
.y111{bottom:431.563500px;}
.y136{bottom:433.888500px;}
.y165{bottom:434.212500px;}
.y227{bottom:436.912500px;}
.y7e{bottom:437.434500px;}
.yc0{bottom:439.338000px;}
.y1cd{bottom:443.179500px;}
.y1f7{bottom:443.287500px;}
.y41{bottom:445.821000px;}
.y1f{bottom:446.829000px;}
.y110{bottom:448.002000px;}
.yc2{bottom:449.448000px;}
.y135{bottom:450.327000px;}
.y164{bottom:450.651000px;}
.y226{bottom:453.351000px;}
.y7d{bottom:453.873000px;}
.y19b{bottom:458.704500px;}
.y1cc{bottom:459.618000px;}
.y1f6{bottom:459.726000px;}
.y40{bottom:462.259500px;}
.y1e{bottom:463.267500px;}
.y10f{bottom:464.440500px;}
.ybe{bottom:465.139500px;}
.y134{bottom:466.765500px;}
.y163{bottom:467.089500px;}
.y225{bottom:469.789500px;}
.y19a{bottom:475.143000px;}
.ybd{bottom:475.389000px;}
.y1cb{bottom:476.056500px;}
.y1f5{bottom:476.164500px;}
.y7c{bottom:479.277000px;}
.y1d{bottom:479.704500px;}
.y10e{bottom:480.879000px;}
.y133{bottom:483.204000px;}
.y162{bottom:483.528000px;}
.ybf{bottom:485.499000px;}
.y224{bottom:486.228000px;}
.y3f{bottom:487.663500px;}
.y199{bottom:491.581500px;}
.y1ca{bottom:492.495000px;}
.y1f4{bottom:492.603000px;}
.y7b{bottom:495.715500px;}
.y10d{bottom:497.317500px;}
.y132{bottom:499.642500px;}
.y161{bottom:499.966500px;}
.ybb{bottom:501.190500px;}
.y223{bottom:502.666500px;}
.y3e{bottom:504.102000px;}
.y1c{bottom:505.110000px;}
.y198{bottom:508.020000px;}
.y1c9{bottom:508.933500px;}
.y1f3{bottom:509.041500px;}
.yba{bottom:511.441500px;}
.y7a{bottom:512.154000px;}
.y10c{bottom:513.756000px;}
.y131{bottom:516.081000px;}
.y222{bottom:519.105000px;}
.y3d{bottom:520.540500px;}
.y1b{bottom:521.548500px;}
.ybc{bottom:521.551500px;}
.y197{bottom:524.458500px;}
.y160{bottom:525.372000px;}
.y1f2{bottom:525.480000px;}
.y79{bottom:528.592500px;}
.y130{bottom:532.519500px;}
.y10b{bottom:533.284500px;}
.y221{bottom:535.543500px;}
.y3c{bottom:536.979000px;}
.yb9{bottom:537.241500px;}
.y1a{bottom:537.987000px;}
.y196{bottom:540.897000px;}
.y15f{bottom:541.810500px;}
.y1f1{bottom:541.918500px;}
.y78{bottom:545.031000px;}
.yb8{bottom:547.492500px;}
.y12f{bottom:548.958000px;}
.y220{bottom:551.982000px;}
.y3b{bottom:553.417500px;}
.y10a{bottom:554.332500px;}
.y19{bottom:554.425500px;}
.y195{bottom:557.335500px;}
.y15e{bottom:558.249000px;}
.y1f0{bottom:558.357000px;}
.y77{bottom:561.469500px;}
.y12e{bottom:565.396500px;}
.y21f{bottom:568.420500px;}
.y3a{bottom:569.856000px;}
.y109{bottom:570.771000px;}
.y18{bottom:570.864000px;}
.y194{bottom:573.774000px;}
.y15d{bottom:574.687500px;}
.y1ef{bottom:574.795500px;}
.y76{bottom:577.908000px;}
.yb7{bottom:578.373000px;}
.y39{bottom:586.294500px;}
.y108{bottom:587.209500px;}
.y17{bottom:587.302500px;}
.y193{bottom:590.212500px;}
.y12d{bottom:590.802000px;}
.y15c{bottom:591.126000px;}
.y1ee{bottom:591.234000px;}
.y75{bottom:594.346500px;}
.yb6{bottom:594.811500px;}
.y21e{bottom:600.466500px;}
.y38{bottom:602.733000px;}
.y107{bottom:603.648000px;}
.y16{bottom:603.741000px;}
.y192{bottom:606.651000px;}
.y12c{bottom:607.240500px;}
.y1c8{bottom:607.564500px;}
.y1ed{bottom:607.672500px;}
.y74{bottom:610.785000px;}
.yb5{bottom:611.250000px;}
.y15b{bottom:616.530000px;}
.y21d{bottom:616.905000px;}
.y37{bottom:619.171500px;}
.y106{bottom:620.086500px;}
.y15{bottom:620.179500px;}
.y191{bottom:623.089500px;}
.y12b{bottom:623.679000px;}
.y1c7{bottom:624.003000px;}
.y1ec{bottom:624.111000px;}
.y73{bottom:627.223500px;}
.yb4{bottom:627.688500px;}
.y15a{bottom:632.968500px;}
.y36{bottom:635.610000px;}
.y105{bottom:636.525000px;}
.y14{bottom:636.618000px;}
.y190{bottom:639.528000px;}
.y1c6{bottom:640.441500px;}
.y72{bottom:643.662000px;}
.yb3{bottom:644.125500px;}
.y20e{bottom:645.298500px;}
.y12a{bottom:646.914000px;}
.y159{bottom:649.407000px;}
.y35{bottom:652.048500px;}
.y104{bottom:652.962000px;}
.y129{bottom:654.685500px;}
.y1eb{bottom:655.528500px;}
.y18f{bottom:655.966500px;}
.y1c5{bottom:656.880000px;}
.y71{bottom:660.100500px;}
.yb2{bottom:660.564000px;}
.y158{bottom:665.845500px;}
.y34{bottom:668.487000px;}
.y103{bottom:669.400500px;}
.y13{bottom:669.483000px;}
.y18e{bottom:672.405000px;}
.y1c4{bottom:673.317000px;}
.y70{bottom:676.539000px;}
.y157{bottom:682.284000px;}
.y1ea{bottom:683.994000px;}
.y128{bottom:685.692000px;}
.y102{bottom:685.839000px;}
.yb1{bottom:685.969500px;}
.y18d{bottom:688.843500px;}
.y1c3{bottom:689.755500px;}
.y6f{bottom:692.977500px;}
.y1e9{bottom:700.432500px;}
.y127{bottom:702.130500px;}
.yb0{bottom:702.408000px;}
.y18c{bottom:705.280500px;}
.y1c2{bottom:706.194000px;}
.y12{bottom:707.109000px;}
.y6e{bottom:709.416000px;}
.y156{bottom:715.753500px;}
.y1e8{bottom:716.871000px;}
.y126{bottom:718.569000px;}
.yaf{bottom:718.846500px;}
.y101{bottom:718.944000px;}
.y18b{bottom:721.719000px;}
.y1c1{bottom:722.632500px;}
.y6d{bottom:729.805500px;}
.y1e7{bottom:733.309500px;}
.y125{bottom:735.007500px;}
.yae{bottom:735.285000px;}
.y18a{bottom:738.157500px;}
.y1c0{bottom:739.071000px;}
.y11{bottom:744.301500px;}
.y155{bottom:748.318500px;}
.y1e6{bottom:749.748000px;}
.y100{bottom:750.780000px;}
.y124{bottom:751.446000px;}
.yad{bottom:751.723500px;}
.y6c{bottom:752.655000px;}
.y189{bottom:754.596000px;}
.y1bf{bottom:755.509500px;}
.y10{bottom:760.740000px;}
.y154{bottom:764.757000px;}
.y1e5{bottom:766.186500px;}
.yff{bottom:767.218500px;}
.y123{bottom:767.884500px;}
.yac{bottom:768.162000px;}
.y188{bottom:771.034500px;}
.y6b{bottom:772.081500px;}
.yf{bottom:777.178500px;}
.y1be{bottom:780.915000px;}
.y153{bottom:781.195500px;}
.y1e4{bottom:782.625000px;}
.yfe{bottom:783.657000px;}
.y122{bottom:784.323000px;}
.yab{bottom:784.600500px;}
.y187{bottom:787.473000px;}
.y6a{bottom:791.509500px;}
.ye{bottom:793.617000px;}
.y1bd{bottom:797.353500px;}
.y152{bottom:797.634000px;}
.y1e3{bottom:799.063500px;}
.yfd{bottom:800.095500px;}
.y121{bottom:800.761500px;}
.yaa{bottom:801.039000px;}
.y69{bottom:806.952000px;}
.yd{bottom:810.055500px;}
.y68{bottom:810.936000px;}
.y186{bottom:812.878500px;}
.y1bc{bottom:813.792000px;}
.y1e2{bottom:815.502000px;}
.yfc{bottom:816.534000px;}
.ya9{bottom:817.477500px;}
.y151{bottom:823.039500px;}
.yc{bottom:826.494000px;}
.y185{bottom:829.317000px;}
.y120{bottom:829.950000px;}
.y1bb{bottom:830.230500px;}
.y67{bottom:830.454000px;}
.y1e1{bottom:831.940500px;}
.yfb{bottom:832.972500px;}
.ya8{bottom:835.092000px;}
.y64{bottom:838.761000px;}
.ya7{bottom:839.077500px;}
.y150{bottom:839.478000px;}
.yb{bottom:842.932500px;}
.y11f{bottom:844.744500px;}
.y184{bottom:845.755500px;}
.y1ba{bottom:846.669000px;}
.y1e0{bottom:848.379000px;}
.y63{bottom:848.428500px;}
.yfa{bottom:849.411000px;}
.y14f{bottom:855.916500px;}
.ya{bottom:859.371000px;}
.y11e{bottom:859.539000px;}
.y183{bottom:862.194000px;}
.y66{bottom:862.626000px;}
.y1b9{bottom:863.107500px;}
.y1df{bottom:864.817500px;}
.yf9{bottom:865.849500px;}
.ya6{bottom:866.815500px;}
.y65{bottom:867.109500px;}
.y14e{bottom:872.355000px;}
.y11d{bottom:874.333500px;}
.y182{bottom:878.632500px;}
.y1b8{bottom:879.546000px;}
.y62{bottom:881.197500px;}
.y1de{bottom:881.256000px;}
.yf8{bottom:882.288000px;}
.y11c{bottom:889.128000px;}
.ya4{bottom:889.978500px;}
.y181{bottom:895.071000px;}
.y14d{bottom:896.691000px;}
.y61{bottom:897.636000px;}
.y1dd{bottom:897.694500px;}
.ya1{bottom:898.284000px;}
.yf7{bottom:898.726500px;}
.y9{bottom:900.982500px;}
.ya5{bottom:904.258500px;}
.y11b{bottom:904.521000px;}
.y20d{bottom:905.472000px;}
.y17e{bottom:907.026000px;}
.y17f{bottom:907.276500px;}
.y180{bottom:907.800000px;}
.ya0{bottom:907.953000px;}
.y17d{bottom:911.509500px;}
.y1b7{bottom:912.465000px;}
.y14c{bottom:913.129500px;}
.y60{bottom:914.074500px;}
.y1dc{bottom:914.133000px;}
.yf6{bottom:915.165000px;}
.y20c{bottom:921.910500px;}
.ya3{bottom:922.149000px;}
.y8{bottom:922.843500px;}
.y1b6{bottom:925.617000px;}
.ya2{bottom:926.632500px;}
.y17c{bottom:930.571500px;}
.y11a{bottom:931.830000px;}
.y7{bottom:933.859500px;}
.y140{bottom:941.523000px;}
.y9f{bottom:944.836500px;}
.y17b{bottom:947.010000px;}
.y5f{bottom:947.380500px;}
.yf5{bottom:948.268500px;}
.y1b5{bottom:948.292500px;}
.y6{bottom:950.298000px;}
.y1ff{bottom:950.304000px;}
.y9e{bottom:961.275000px;}
.y1b4{bottom:963.087000px;}
.y17a{bottom:963.447000px;}
.y1db{bottom:963.448500px;}
.y5{bottom:972.159000px;}
.y9d{bottom:977.713500px;}
.y1b3{bottom:977.881500px;}
.yf4{bottom:979.485000px;}
.y5e{bottom:979.623000px;}
.y179{bottom:979.885500px;}
.y1da{bottom:979.887000px;}
.y9c{bottom:994.152000px;}
.y5d{bottom:996.061500px;}
.y178{bottom:996.324000px;}
.y1d9{bottom:996.325500px;}
.y1b2{bottom:1000.180500px;}
.y4{bottom:1001.107500px;}
.yd3{bottom:1007.878500px;}
.y9b{bottom:1010.590500px;}
.y5c{bottom:1012.500000px;}
.y177{bottom:1012.762500px;}
.y1d8{bottom:1012.764000px;}
.y1b1{bottom:1014.975000px;}
.y9a{bottom:1027.029000px;}
.y5b{bottom:1028.938500px;}
.y176{bottom:1029.201000px;}
.y1b0{bottom:1029.769500px;}
.y3{bottom:1038.466500px;}
.y99{bottom:1043.467500px;}
.y5a{bottom:1045.377000px;}
.y175{bottom:1045.639500px;}
.y1af{bottom:1052.067000px;}
.y98{bottom:1059.906000px;}
.y59{bottom:1061.814000px;}
.y174{bottom:1062.078000px;}
.y2{bottom:1064.769000px;}
.ye4{bottom:1065.527178px;}
.y1ab{bottom:1069.701000px;}
.y97{bottom:1076.344500px;}
.y58{bottom:1078.252500px;}
.y173{bottom:1078.516500px;}
.y1ac{bottom:1082.569500px;}
.y1ad{bottom:1083.150000px;}
.y1ae{bottom:1084.264500px;}
.y1{bottom:1091.070000px;}
.y96{bottom:1092.783000px;}
.y57{bottom:1094.691000px;}
.y172{bottom:1094.955000px;}
.y95{bottom:1109.221500px;}
.y56{bottom:1111.129500px;}
.y171{bottom:1111.393500px;}
.y170{bottom:1127.832000px;}
.y94{bottom:1144.270500px;}
.y55{bottom:1144.437000px;}
.hb{height:2.391024px;}
.h36{height:20.742133px;}
.h37{height:21.100787px;}
.h4{height:23.141700px;}
.h1d{height:24.890726px;}
.h24{height:26.513688px;}
.h8{height:29.206274px;}
.h16{height:29.457331px;}
.ha{height:29.875759px;}
.h2f{height:32.346897px;}
.h6{height:33.187496px;}
.h22{height:35.351505px;}
.h3a{height:35.800818px;}
.h7{height:35.865450px;}
.h39{height:35.867526px;}
.h3d{height:35.949870px;}
.h3c{height:36.009487px;}
.h2d{height:36.970358px;}
.h21{height:39.191291px;}
.h1f{height:39.191292px;}
.h25{height:39.770473px;}
.h2e{height:40.664967px;}
.h20{height:41.158137px;}
.h28{height:41.768726px;}
.h3{height:42.082022px;}
.h5{height:44.831700px;}
.he{height:46.714950px;}
.h27{height:47.867700px;}
.h10{height:50.436004px;}
.h30{height:50.442004px;}
.h1c{height:51.147331px;}
.hf{height:54.553759px;}
.hc{height:55.447759px;}
.h35{height:59.669700px;}
.h31{height:59.929759px;}
.h2{height:60.254040px;}
.h26{height:60.605700px;}
.hd{height:60.767700px;}
.h17{height:60.773700px;}
.h11{height:67.362004px;}
.h12{height:67.368004px;}
.h34{height:68.079331px;}
.h33{height:68.497759px;}
.h13{height:68.739024px;}
.h9{height:68.745024px;}
.h15{height:68.913331px;}
.h14{height:69.331759px;}
.h32{height:69.499759px;}
.h2b{height:85.265700px;}
.h18{height:85.271700px;}
.h1b{height:85.835700px;}
.h29{height:86.673024px;}
.h23{height:89.120769px;}
.h2a{height:117.759024px;}
.h1a{height:126.269700px;}
.h19{height:126.275700px;}
.h1e{height:146.769447px;}
.h38{height:204.345540px;}
.h2c{height:213.125760px;}
.h3b{height:244.481835px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:376.300170px;}
.w3{width:378.080361px;}
.w2{width:773.875259px;}
.w6{width:773.922630px;}
.w5{width:773.938620px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x59{left:3.714030px;}
.x4f{left:4.834864px;}
.x80{left:8.943627px;}
.x6a{left:10.406533px;}
.x85{left:12.623797px;}
.x7f{left:14.183844px;}
.x69{left:15.817931px;}
.x50{left:17.271200px;}
.x84{left:20.230235px;}
.x45{left:24.375003px;}
.x68{left:25.808201px;}
.x46{left:28.564105px;}
.x83{left:29.904473px;}
.x81{left:33.088907px;}
.xc{left:61.228500px;}
.x72{left:62.545500px;}
.x7b{left:66.462000px;}
.x77{left:71.377500px;}
.x7c{left:72.708000px;}
.x79{left:77.035500px;}
.xe{left:80.428500px;}
.x6c{left:91.116000px;}
.xf{left:95.959500px;}
.x51{left:99.073192px;}
.x5d{left:101.349000px;}
.x10{left:103.170000px;}
.x54{left:105.513135px;}
.x7a{left:115.006500px;}
.x78{left:118.182000px;}
.x14{left:119.203500px;}
.x43{left:123.609032px;}
.x11{left:125.847000px;}
.xa{left:138.613500px;}
.x42{left:139.749857px;}
.x5b{left:148.015500px;}
.x56{left:150.770829px;}
.x5e{left:152.721000px;}
.x16{left:158.016000px;}
.x17{left:159.516000px;}
.x55{left:165.749860px;}
.x67{left:176.453302px;}
.xb{left:178.809000px;}
.x44{left:181.397431px;}
.x12{left:184.464000px;}
.x13{left:186.613500px;}
.x6b{left:189.565379px;}
.x71{left:196.431000px;}
.x73{left:201.772500px;}
.x74{left:203.763000px;}
.x4{left:213.507000px;}
.x1{left:215.997000px;}
.x5{left:219.826500px;}
.x8{left:221.845500px;}
.x3{left:226.882500px;}
.x9{left:262.722000px;}
.x52{left:264.486448px;}
.x53{left:266.858318px;}
.x7{left:268.741500px;}
.x2{left:273.201000px;}
.x18{left:279.367500px;}
.x47{left:282.181254px;}
.x4e{left:284.302644px;}
.x6{left:288.499500px;}
.x15{left:301.410000px;}
.x48{left:306.574278px;}
.x1a{left:307.794000px;}
.x5f{left:309.834000px;}
.x19{left:327.993000px;}
.x5c{left:344.907000px;}
.x76{left:347.070000px;}
.x75{left:348.669000px;}
.x82{left:383.175585px;}
.x49{left:429.187356px;}
.x4a{left:431.979070px;}
.x1b{left:453.984000px;}
.xd{left:458.787000px;}
.x62{left:461.764500px;}
.x28{left:467.622000px;}
.x63{left:470.860500px;}
.x41{left:473.212500px;}
.x60{left:496.417500px;}
.x26{left:510.303000px;}
.x61{left:515.430000px;}
.x1c{left:516.682500px;}
.x2d{left:527.994000px;}
.x70{left:535.584000px;}
.x1d{left:539.361000px;}
.x35{left:542.938500px;}
.x64{left:553.353000px;}
.x4b{left:554.658046px;}
.x4c{left:562.156756px;}
.x29{left:565.632000px;}
.x2e{left:567.780000px;}
.x36{left:573.007500px;}
.x3d{left:580.528500px;}
.x7d{left:586.642500px;}
.x7e{left:595.567500px;}
.x1e{left:597.976500px;}
.x1f{left:600.126000px;}
.x37{left:607.999500px;}
.x2f{left:613.318500px;}
.x3e{left:623.040000px;}
.x20{left:626.352000px;}
.x39{left:629.659500px;}
.x38{left:631.569000px;}
.x31{left:634.978500px;}
.x30{left:636.888000px;}
.x2a{left:642.529500px;}
.x40{left:644.698500px;}
.x3f{left:646.608000px;}
.x21{left:660.058500px;}
.x57{left:668.209308px;}
.x4d{left:675.826440px;}
.x5a{left:679.402744px;}
.x3a{left:687.118500px;}
.x27{left:691.680000px;}
.x22{left:694.746000px;}
.x32{left:702.600000px;}
.x66{left:704.227500px;}
.x2b{left:709.263000px;}
.x23{left:710.401500px;}
.x65{left:719.449500px;}
.x3c{left:722.494500px;}
.x3b{left:724.404000px;}
.x6d{left:738.646500px;}
.x34{left:748.138500px;}
.x33{left:750.048000px;}
.x58{left:757.599216px;}
.x24{left:773.941500px;}
.x2c{left:783.570000px;}
.x25{left:789.597000px;}
.x6e{left:792.097500px;}
.x6f{left:807.751500px;}
@media print{
.v15{vertical-align:-37.335706pt;}
.v20{vertical-align:-21.674667pt;}
.v2{vertical-align:-19.280000pt;}
.v5{vertical-align:-17.856000pt;}
.v1f{vertical-align:-16.037333pt;}
.v3{vertical-align:-15.002667pt;}
.va{vertical-align:-12.992000pt;}
.v13{vertical-align:-11.952000pt;}
.v4{vertical-align:-7.968000pt;}
.v1e{vertical-align:-6.885333pt;}
.v6{vertical-align:-5.637333pt;}
.v0{vertical-align:0.000000pt;}
.v14{vertical-align:1.748308pt;}
.v16{vertical-align:2.698667pt;}
.vd{vertical-align:5.162667pt;}
.v1d{vertical-align:7.968000pt;}
.v12{vertical-align:11.952000pt;}
.vc{vertical-align:13.136000pt;}
.v9{vertical-align:14.165333pt;}
.v17{vertical-align:15.349333pt;}
.v1{vertical-align:19.280000pt;}
.v8{vertical-align:22.730667pt;}
.v1c{vertical-align:26.714667pt;}
.v11{vertical-align:27.978667pt;}
.v19{vertical-align:30.816000pt;}
.vb{vertical-align:34.325333pt;}
.ve{vertical-align:35.946667pt;}
.v1b{vertical-align:39.850667pt;}
.v7{vertical-align:58.981333pt;}
.v10{vertical-align:64.426667pt;}
.vf{vertical-align:72.394667pt;}
.v18{vertical-align:74.917333pt;}
.v1a{vertical-align:102.549333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000037pt;}
.ls19{letter-spacing:0.000055pt;}
.ls2c{letter-spacing:0.000058pt;}
.ls8c{letter-spacing:0.000479pt;}
.ls6{letter-spacing:0.000501pt;}
.lsbb{letter-spacing:0.000546pt;}
.ls81{letter-spacing:0.000853pt;}
.ls35{letter-spacing:0.001373pt;}
.ls43{letter-spacing:0.001653pt;}
.ls91{letter-spacing:0.001659pt;}
.lsbf{letter-spacing:0.001986pt;}
.ls73{letter-spacing:0.001995pt;}
.ls9a{letter-spacing:0.002059pt;}
.ls62{letter-spacing:0.002079pt;}
.ls7c{letter-spacing:0.002195pt;}
.ls98{letter-spacing:0.002205pt;}
.ls69{letter-spacing:0.002694pt;}
.lsa{letter-spacing:0.002906pt;}
.lsba{letter-spacing:0.003590pt;}
.lsb8{letter-spacing:0.003608pt;}
.lsb{letter-spacing:0.003723pt;}
.ls7e{letter-spacing:0.003733pt;}
.lsf{letter-spacing:0.003801pt;}
.ls10{letter-spacing:0.004352pt;}
.ls3a{letter-spacing:0.005095pt;}
.ls46{letter-spacing:0.005371pt;}
.ls49{letter-spacing:0.005388pt;}
.ls4f{letter-spacing:0.006216pt;}
.ls86{letter-spacing:0.504967pt;}
.ls4{letter-spacing:0.592130pt;}
.ls39{letter-spacing:0.597463pt;}
.ls38{letter-spacing:0.624828pt;}
.ls14{letter-spacing:0.894993pt;}
.ls9{letter-spacing:0.900327pt;}
.ls99{letter-spacing:1.471333pt;}
.ls7f{letter-spacing:1.527026pt;}
.ls1f{letter-spacing:1.605389pt;}
.ls8e{letter-spacing:1.671842pt;}
.ls61{letter-spacing:1.965449pt;}
.ls1d{letter-spacing:1.970783pt;}
.ls5f{letter-spacing:2.284185pt;}
.ls5e{letter-spacing:2.289518pt;}
.lsb7{letter-spacing:2.509383pt;}
.lsb6{letter-spacing:2.510964pt;}
.ls74{letter-spacing:2.652911pt;}
.ls1e{letter-spacing:2.653135pt;}
.ls4c{letter-spacing:2.653505pt;}
.ls55{letter-spacing:2.655443pt;}
.ls4b{letter-spacing:2.655444pt;}
.ls26{letter-spacing:2.656546pt;}
.ls32{letter-spacing:2.656604pt;}
.ls5b{letter-spacing:2.657346pt;}
.ls45{letter-spacing:2.657986pt;}
.ls72{letter-spacing:2.658245pt;}
.ls36{letter-spacing:2.658469pt;}
.ls42{letter-spacing:2.660776pt;}
.ls3d{letter-spacing:2.660777pt;}
.ls68{letter-spacing:2.806152pt;}
.ls58{letter-spacing:2.948564pt;}
.ls51{letter-spacing:2.953897pt;}
.ls87{letter-spacing:3.006882pt;}
.ls5{letter-spacing:3.086275pt;}
.ls2d{letter-spacing:3.253463pt;}
.lsc{letter-spacing:3.550993pt;}
.lse{letter-spacing:3.556327pt;}
.ls7d{letter-spacing:3.796074pt;}
.ls8{letter-spacing:3.986178pt;}
.ls3c{letter-spacing:3.991511pt;}
.ls28{letter-spacing:5.792271pt;}
.ls16{letter-spacing:5.792759pt;}
.lsa4{letter-spacing:5.900861pt;}
.lsa5{letter-spacing:5.906195pt;}
.lsad{letter-spacing:5.907723pt;}
.ls24{letter-spacing:6.077374pt;}
.ls5c{letter-spacing:6.375736pt;}
.ls11{letter-spacing:6.642178pt;}
.ls12{letter-spacing:6.647511pt;}
.ls30{letter-spacing:7.060327pt;}
.ls7b{letter-spacing:7.380568pt;}
.ls85{letter-spacing:7.523774pt;}
.ls9e{letter-spacing:8.556653pt;}
.ls22{letter-spacing:8.726194pt;}
.ls48{letter-spacing:8.850079pt;}
.ls17{letter-spacing:8.855412pt;}
.ls8d{letter-spacing:8.857279pt;}
.ls31{letter-spacing:8.873356pt;}
.ls79{letter-spacing:9.031578pt;}
.ls83{letter-spacing:10.032551pt;}
.ls67{letter-spacing:10.231578pt;}
.lsaa{letter-spacing:10.532776pt;}
.lsa6{letter-spacing:10.641986pt;}
.lsa9{letter-spacing:10.644776pt;}
.ls1{letter-spacing:11.510586pt;}
.ls63{letter-spacing:11.511578pt;}
.lsa1{letter-spacing:11.696271pt;}
.lsb4{letter-spacing:11.803105pt;}
.ls3f{letter-spacing:11.803145pt;}
.ls6a{letter-spacing:11.805573pt;}
.ls41{letter-spacing:11.808479pt;}
.ls77{letter-spacing:11.810906pt;}
.lsac{letter-spacing:12.546178pt;}
.lsc4{letter-spacing:13.114938pt;}
.ls6b{letter-spacing:13.472996pt;}
.ls8a{letter-spacing:13.479842pt;}
.lsb9{letter-spacing:13.534545pt;}
.lsbe{letter-spacing:13.861605pt;}
.ls3b{letter-spacing:14.164812pt;}
.ls7{letter-spacing:14.170146pt;}
.lsbc{letter-spacing:14.318256pt;}
.ls40{letter-spacing:14.460911pt;}
.ls18{letter-spacing:14.756984pt;}
.ls15{letter-spacing:14.757812pt;}
.ls2f{letter-spacing:14.758707pt;}
.ls9c{letter-spacing:14.975443pt;}
.ls94{letter-spacing:15.159319pt;}
.ls93{letter-spacing:15.162109pt;}
.ls50{letter-spacing:15.232479pt;}
.ls3e{letter-spacing:15.364327pt;}
.lsbd{letter-spacing:15.383604pt;}
.ls21{letter-spacing:15.423651pt;}
.ls96{letter-spacing:15.547521pt;}
.ls9b{letter-spacing:16.123181pt;}
.lsab{letter-spacing:16.172653pt;}
.lsc0{letter-spacing:16.275283pt;}
.ls95{letter-spacing:16.404479pt;}
.lsaf{letter-spacing:16.933605pt;}
.ls6f{letter-spacing:17.241812pt;}
.lsb1{letter-spacing:17.413812pt;}
.lsa7{letter-spacing:17.708745pt;}
.ls84{letter-spacing:17.712473pt;}
.lsa8{letter-spacing:17.714079pt;}
.lsc5{letter-spacing:17.877605pt;}
.lsae{letter-spacing:18.101938pt;}
.ls57{letter-spacing:18.181812pt;}
.ls5a{letter-spacing:18.183736pt;}
.ls53{letter-spacing:18.187145pt;}
.ls59{letter-spacing:18.189070pt;}
.ls1c{letter-spacing:18.313660pt;}
.ls0{letter-spacing:18.555919pt;}
.ls70{letter-spacing:18.618944pt;}
.ls6e{letter-spacing:18.644465pt;}
.lsa2{letter-spacing:18.985056pt;}
.ls97{letter-spacing:19.015578pt;}
.ls6d{letter-spacing:19.691521pt;}
.ls29{letter-spacing:19.996911pt;}
.ls89{letter-spacing:20.183578pt;}
.ls2e{letter-spacing:20.489660pt;}
.lsc1{letter-spacing:20.549605pt;}
.ls9f{letter-spacing:20.602109pt;}
.ls8b{letter-spacing:20.665279pt;}
.ls76{letter-spacing:21.451521pt;}
.ls2b{letter-spacing:21.477470pt;}
.ls33{letter-spacing:21.945660pt;}
.lsb3{letter-spacing:22.026938pt;}
.ls2{letter-spacing:22.578591pt;}
.lsd{letter-spacing:23.612745pt;}
.ls71{letter-spacing:23.755485pt;}
.ls82{letter-spacing:23.819139pt;}
.ls64{letter-spacing:25.685806pt;}
.lsc2{letter-spacing:26.896271pt;}
.ls9d{letter-spacing:28.180777pt;}
.lsa3{letter-spacing:28.213938pt;}
.lsb2{letter-spacing:28.780911pt;}
.ls4d{letter-spacing:30.065986pt;}
.ls60{letter-spacing:31.069135pt;}
.lsc3{letter-spacing:31.706938pt;}
.lsa0{letter-spacing:31.939283pt;}
.lsb0{letter-spacing:33.608616pt;}
.ls34{letter-spacing:34.308327pt;}
.ls4e{letter-spacing:34.487412pt;}
.ls37{letter-spacing:34.871319pt;}
.ls65{letter-spacing:37.821285pt;}
.ls2a{letter-spacing:38.342194pt;}
.ls8f{letter-spacing:42.924745pt;}
.ls78{letter-spacing:50.379145pt;}
.ls54{letter-spacing:57.949070pt;}
.ls56{letter-spacing:59.314403pt;}
.ls47{letter-spacing:72.963521pt;}
.ls1a{letter-spacing:73.506245pt;}
.ls88{letter-spacing:75.552473pt;}
.ls80{letter-spacing:87.760473pt;}
.ls52{letter-spacing:95.447736pt;}
.lsb5{letter-spacing:102.799012pt;}
.ls13{letter-spacing:123.491521pt;}
.ls92{letter-spacing:126.988745pt;}
.ls7a{letter-spacing:133.367412pt;}
.ls6c{letter-spacing:153.292745pt;}
.ls1b{letter-spacing:277.111412pt;}
.ls4a{letter-spacing:303.031412pt;}
.ls5d{letter-spacing:509.218079pt;}
.ls27{letter-spacing:525.415412pt;}
.ls20{letter-spacing:582.364745pt;}
.ls23{letter-spacing:707.730079pt;}
.ls25{letter-spacing:721.127412pt;}
.ls75{letter-spacing:795.084745pt;}
.ls90{letter-spacing:801.463412pt;}
.ls66{letter-spacing:2323.073740pt;}
.ws74{word-spacing:-53.133867pt;}
.ws6c{word-spacing:-43.484756pt;}
.wsd0{word-spacing:-42.066082pt;}
.ws54{word-spacing:-34.611401pt;}
.ws53{word-spacing:-28.118362pt;}
.wsb2{word-spacing:-24.722422pt;}
.wscb{word-spacing:-20.067649pt;}
.ws87{word-spacing:-18.160917pt;}
.ws59{word-spacing:-18.155583pt;}
.ws55{word-spacing:-16.970957pt;}
.ws51{word-spacing:-14.760588pt;}
.ws16b{word-spacing:-13.581016pt;}
.ws93{word-spacing:-13.504996pt;}
.wsa1{word-spacing:-12.552000pt;}
.wsca{word-spacing:-12.543875pt;}
.ws6d{word-spacing:-12.028410pt;}
.ws100{word-spacing:-6.790508pt;}
.ws132{word-spacing:-6.684240pt;}
.ws123{word-spacing:-6.066349pt;}
.wsbc{word-spacing:-5.907683pt;}
.wsb3{word-spacing:-5.902350pt;}
.ws84{word-spacing:-5.887232pt;}
.wsc7{word-spacing:-5.020100pt;}
.ws12a{word-spacing:-4.977593pt;}
.ws10a{word-spacing:-3.602476pt;}
.ws56{word-spacing:-2.964870pt;}
.wsd9{word-spacing:-2.952110pt;}
.ws16{word-spacing:-2.858602pt;}
.ws14f{word-spacing:-2.752334pt;}
.ws6{word-spacing:-2.685594pt;}
.wsc2{word-spacing:-2.592933pt;}
.wsc9{word-spacing:-2.509309pt;}
.wsf2{word-spacing:-2.433531pt;}
.ws7{word-spacing:-2.327263pt;}
.ws60{word-spacing:-2.274129pt;}
.wsdb{word-spacing:-2.263207pt;}
.wsda{word-spacing:-2.255626pt;}
.ws77{word-spacing:-2.220996pt;}
.wsc3{word-spacing:-2.114728pt;}
.wsff{word-spacing:-2.061594pt;}
.ws136{word-spacing:-2.008460pt;}
.ws7b{word-spacing:-1.902192pt;}
.ws71{word-spacing:-1.795925pt;}
.ws130{word-spacing:-1.689657pt;}
.ws15b{word-spacing:-1.636523pt;}
.wsa{word-spacing:-1.583389pt;}
.ws9{word-spacing:-1.530255pt;}
.wse5{word-spacing:-1.477121pt;}
.ws61{word-spacing:-1.423988pt;}
.wsec{word-spacing:-1.370854pt;}
.ws102{word-spacing:-1.340541pt;}
.wsa4{word-spacing:-1.264586pt;}
.ws122{word-spacing:-1.158318pt;}
.wse4{word-spacing:-1.052051pt;}
.ws116{word-spacing:-0.998917pt;}
.ws152{word-spacing:-0.945783pt;}
.ws17{word-spacing:-0.892649pt;}
.wsd1{word-spacing:-0.786381pt;}
.ws96{word-spacing:-0.733247pt;}
.ws79{word-spacing:-0.680113pt;}
.wscd{word-spacing:-0.626980pt;}
.ws26{word-spacing:-0.573846pt;}
.ws12{word-spacing:-0.520712pt;}
.ws10f{word-spacing:-0.516953pt;}
.ws9f{word-spacing:-0.467578pt;}
.wse6{word-spacing:-0.414444pt;}
.wse9{word-spacing:-0.308176pt;}
.wsdd{word-spacing:-0.257874pt;}
.wscc{word-spacing:-0.255043pt;}
.ws13b{word-spacing:-0.201909pt;}
.wsee{word-spacing:-0.095641pt;}
.ws52{word-spacing:-0.053134pt;}
.ws46{word-spacing:-0.042507pt;}
.ws85{word-spacing:-0.037194pt;}
.wsc8{word-spacing:-0.031881pt;}
.ws12d{word-spacing:-0.026567pt;}
.wsb1{word-spacing:-0.013752pt;}
.ws57{word-spacing:-0.002856pt;}
.ws49{word-spacing:0.000000pt;}
.ws86{word-spacing:0.002478pt;}
.ws6b{word-spacing:0.010627pt;}
.ws21{word-spacing:0.063761pt;}
.ws161{word-spacing:0.065622pt;}
.ws164{word-spacing:0.065713pt;}
.ws14d{word-spacing:0.116895pt;}
.wsae{word-spacing:0.170028pt;}
.ws72{word-spacing:0.223162pt;}
.ws16e{word-spacing:0.276296pt;}
.ws120{word-spacing:0.329430pt;}
.wse0{word-spacing:0.382564pt;}
.ws5c{word-spacing:0.435698pt;}
.wsaf{word-spacing:0.541965pt;}
.wsb6{word-spacing:0.590060pt;}
.wsb7{word-spacing:0.595099pt;}
.ws7a{word-spacing:0.648233pt;}
.ws107{word-spacing:0.680793pt;}
.ws106{word-spacing:0.689666pt;}
.ws108{word-spacing:0.701367pt;}
.wsbf{word-spacing:0.754501pt;}
.ws6a{word-spacing:0.807635pt;}
.ws2f{word-spacing:0.860769pt;}
.ws10d{word-spacing:0.913903pt;}
.ws4e{word-spacing:0.967036pt;}
.ws16a{word-spacing:0.977663pt;}
.ws27{word-spacing:1.020170pt;}
.ws8f{word-spacing:1.073304pt;}
.ws37{word-spacing:1.126438pt;}
.ws109{word-spacing:1.179572pt;}
.ws78{word-spacing:1.285840pt;}
.ws119{word-spacing:1.338973pt;}
.ws104{word-spacing:1.392107pt;}
.ws145{word-spacing:1.445241pt;}
.ws113{word-spacing:1.498375pt;}
.ws121{word-spacing:1.551509pt;}
.ws45{word-spacing:1.604643pt;}
.ws3a{word-spacing:1.657777pt;}
.wsf7{word-spacing:1.710911pt;}
.ws5b{word-spacing:1.764044pt;}
.ws1a{word-spacing:1.870312pt;}
.ws97{word-spacing:1.976580pt;}
.ws36{word-spacing:2.029714pt;}
.wsf6{word-spacing:2.082848pt;}
.wsa3{word-spacing:2.135981pt;}
.wsc{word-spacing:2.189115pt;}
.ws12f{word-spacing:2.291126pt;}
.ws91{word-spacing:2.295383pt;}
.ws4b{word-spacing:2.348517pt;}
.wsd3{word-spacing:2.401651pt;}
.wsab{word-spacing:2.454785pt;}
.ws2e{word-spacing:2.503674pt;}
.ws42{word-spacing:2.507919pt;}
.ws5d{word-spacing:2.561052pt;}
.ws33{word-spacing:2.614186pt;}
.ws4f{word-spacing:2.667320pt;}
.ws9d{word-spacing:2.720454pt;}
.ws13e{word-spacing:2.773588pt;}
.ws153{word-spacing:2.826722pt;}
.wse{word-spacing:2.932989pt;}
.ws15c{word-spacing:2.947596pt;}
.wsfe{word-spacing:2.952160pt;}
.ws171{word-spacing:2.960247pt;}
.ws167{word-spacing:2.967826pt;}
.ws19{word-spacing:2.986123pt;}
.wsdc{word-spacing:3.039257pt;}
.ws7f{word-spacing:3.092391pt;}
.ws39{word-spacing:3.198659pt;}
.wsa7{word-spacing:3.251793pt;}
.ws13d{word-spacing:3.304927pt;}
.wsf8{word-spacing:3.358060pt;}
.ws2{word-spacing:3.379314pt;}
.ws25{word-spacing:3.411194pt;}
.wsed{word-spacing:3.464328pt;}
.ws29{word-spacing:3.570596pt;}
.ws98{word-spacing:3.606079pt;}
.wsb{word-spacing:3.623730pt;}
.ws68{word-spacing:3.783131pt;}
.ws67{word-spacing:3.795041pt;}
.wsb8{word-spacing:3.836265pt;}
.wsb5{word-spacing:3.875459pt;}
.wsb4{word-spacing:3.883041pt;}
.ws40{word-spacing:3.889399pt;}
.ws34{word-spacing:3.942533pt;}
.ws133{word-spacing:3.995667pt;}
.ws172{word-spacing:4.029745pt;}
.ws1e{word-spacing:4.048801pt;}
.ws101{word-spacing:4.155068pt;}
.ws15{word-spacing:4.208202pt;}
.ws131{word-spacing:4.245941pt;}
.ws117{word-spacing:4.261336pt;}
.ws144{word-spacing:4.314470pt;}
.ws0{word-spacing:4.322988pt;}
.ws17f{word-spacing:4.325097pt;}
.ws9a{word-spacing:4.357775pt;}
.ws99{word-spacing:4.367604pt;}
.ws35{word-spacing:4.420738pt;}
.wsa9{word-spacing:4.473872pt;}
.ws32{word-spacing:4.580139pt;}
.ws41{word-spacing:4.633273pt;}
.ws16f{word-spacing:4.686407pt;}
.ws1{word-spacing:4.782067pt;}
.ws4c{word-spacing:4.792675pt;}
.ws24{word-spacing:4.845809pt;}
.ws137{word-spacing:4.952076pt;}
.ws2d{word-spacing:5.011599pt;}
.ws146{word-spacing:5.058344pt;}
.wsa8{word-spacing:5.111478pt;}
.ws148{word-spacing:5.164612pt;}
.ws76{word-spacing:5.217746pt;}
.ws155{word-spacing:5.324013pt;}
.ws31{word-spacing:5.377147pt;}
.ws58{word-spacing:5.387047pt;}
.ws83{word-spacing:5.387695pt;}
.ws5a{word-spacing:5.392771pt;}
.wsf{word-spacing:5.415404pt;}
.ws1c{word-spacing:5.430281pt;}
.ws4{word-spacing:5.440908pt;}
.ws150{word-spacing:5.589683pt;}
.ws174{word-spacing:5.642817pt;}
.ws11d{word-spacing:5.695951pt;}
.ws75{word-spacing:5.749084pt;}
.ws73{word-spacing:5.802218pt;}
.ws149{word-spacing:5.855352pt;}
.ws13{word-spacing:5.908486pt;}
.wse2{word-spacing:6.014754pt;}
.ws175{word-spacing:6.023962pt;}
.ws3b{word-spacing:6.067888pt;}
.ws69{word-spacing:6.121021pt;}
.wsb9{word-spacing:6.161132pt;}
.wsba{word-spacing:6.174155pt;}
.wsa2{word-spacing:6.227289pt;}
.ws14{word-spacing:6.280423pt;}
.ws163{word-spacing:6.322625pt;}
.ws162{word-spacing:6.325714pt;}
.ws165{word-spacing:6.331047pt;}
.ws38{word-spacing:6.333557pt;}
.wsd4{word-spacing:6.386691pt;}
.ws151{word-spacing:6.439825pt;}
.ws173{word-spacing:6.450451pt;}
.wscf{word-spacing:6.492959pt;}
.ws111{word-spacing:6.546092pt;}
.ws14c{word-spacing:6.652360pt;}
.ws11{word-spacing:6.705494pt;}
.wsbe{word-spacing:6.758628pt;}
.wsbd{word-spacing:6.763041pt;}
.wsf1{word-spacing:6.786818pt;}
.wsf3{word-spacing:6.788149pt;}
.wsf4{word-spacing:6.811762pt;}
.ws17e{word-spacing:6.827006pt;}
.ws43{word-spacing:6.971163pt;}
.ws11c{word-spacing:7.024297pt;}
.ws63{word-spacing:7.077431pt;}
.wsd2{word-spacing:7.130565pt;}
.wsdf{word-spacing:7.183699pt;}
.ws62{word-spacing:7.236833pt;}
.ws10b{word-spacing:7.289967pt;}
.ws14e{word-spacing:7.343100pt;}
.ws103{word-spacing:7.502502pt;}
.ws139{word-spacing:7.555636pt;}
.ws20{word-spacing:7.608770pt;}
.wsd5{word-spacing:7.661904pt;}
.ws159{word-spacing:7.715037pt;}
.wsbb{word-spacing:7.768171pt;}
.wsa5{word-spacing:7.821305pt;}
.wsc5{word-spacing:7.927573pt;}
.wsd6{word-spacing:7.980707pt;}
.ws70{word-spacing:8.033841pt;}
.ws110{word-spacing:8.043047pt;}
.ws14a{word-spacing:8.140108pt;}
.ws4d{word-spacing:8.193242pt;}
.ws28{word-spacing:8.246376pt;}
.ws176{word-spacing:8.257003pt;}
.ws3d{word-spacing:8.299510pt;}
.ws15e{word-spacing:8.336381pt;}
.ws15f{word-spacing:8.338625pt;}
.wsac{word-spacing:8.352644pt;}
.wsd{word-spacing:8.405778pt;}
.ws17b{word-spacing:8.458912pt;}
.ws18{word-spacing:8.512045pt;}
.ws143{word-spacing:8.565179pt;}
.wsde{word-spacing:8.618313pt;}
.ws2c{word-spacing:8.667218pt;}
.ws8e{word-spacing:8.724581pt;}
.wsea{word-spacing:8.777715pt;}
.ws48{word-spacing:8.883983pt;}
.ws9b{word-spacing:8.937116pt;}
.ws64{word-spacing:8.990250pt;}
.wsef{word-spacing:9.043384pt;}
.ws112{word-spacing:9.149436pt;}
.ws4a{word-spacing:9.149652pt;}
.ws147{word-spacing:9.202786pt;}
.ws1d{word-spacing:9.255920pt;}
.ws13f{word-spacing:9.415321pt;}
.ws8d{word-spacing:9.468455pt;}
.ws16c{word-spacing:9.521589pt;}
.ws65{word-spacing:9.734124pt;}
.ws82{word-spacing:9.787258pt;}
.ws158{word-spacing:9.797885pt;}
.ws11e{word-spacing:9.840392pt;}
.ws140{word-spacing:10.052928pt;}
.ws114{word-spacing:10.106061pt;}
.wsfb{word-spacing:10.159195pt;}
.wsfa{word-spacing:10.185929pt;}
.ws44{word-spacing:10.212329pt;}
.ws8{word-spacing:10.265463pt;}
.ws17c{word-spacing:10.318597pt;}
.ws7e{word-spacing:10.371731pt;}
.ws6f{word-spacing:10.424865pt;}
.ws6e{word-spacing:10.477999pt;}
.ws141{word-spacing:10.531132pt;}
.wsb0{word-spacing:10.584266pt;}
.ws10c{word-spacing:10.637400pt;}
.wsf5{word-spacing:10.743668pt;}
.wsfd{word-spacing:10.792793pt;}
.wsa6{word-spacing:10.796802pt;}
.ws135{word-spacing:10.903069pt;}
.ws11b{word-spacing:10.956203pt;}
.ws30{word-spacing:11.062471pt;}
.ws95{word-spacing:11.221873pt;}
.ws10e{word-spacing:11.381274pt;}
.ws5{word-spacing:11.474645pt;}
.ws1b{word-spacing:11.487542pt;}
.ws47{word-spacing:11.646944pt;}
.ws156{word-spacing:11.700077pt;}
.ws10{word-spacing:11.806345pt;}
.ws50{word-spacing:11.859479pt;}
.ws9c{word-spacing:11.870126pt;}
.ws168{word-spacing:11.912613pt;}
.ws170{word-spacing:11.976374pt;}
.ws88{word-spacing:12.018881pt;}
.ws134{word-spacing:12.072015pt;}
.ws13a{word-spacing:12.125148pt;}
.ws17d{word-spacing:12.188909pt;}
.wse8{word-spacing:12.231416pt;}
.ws11f{word-spacing:12.284550pt;}
.ws17a{word-spacing:12.550219pt;}
.ws1f{word-spacing:12.603353pt;}
.ws8b{word-spacing:12.638071pt;}
.ws8c{word-spacing:12.643459pt;}
.ws5f{word-spacing:12.656487pt;}
.ws11a{word-spacing:12.709621pt;}
.ws22{word-spacing:12.762755pt;}
.ws5e{word-spacing:12.815889pt;}
.wse7{word-spacing:12.975290pt;}
.ws3c{word-spacing:13.294093pt;}
.wsf9{word-spacing:13.453495pt;}
.ws157{word-spacing:13.464122pt;}
.ws90{word-spacing:13.506629pt;}
.ws3e{word-spacing:13.612897pt;}
.wsfc{word-spacing:13.666031pt;}
.wseb{word-spacing:13.772298pt;}
.ws9e{word-spacing:13.878566pt;}
.wsc4{word-spacing:14.144235pt;}
.ws23{word-spacing:14.250503pt;}
.ws2a{word-spacing:14.278168pt;}
.ws115{word-spacing:14.303637pt;}
.ws3f{word-spacing:14.409905pt;}
.ws14b{word-spacing:14.516172pt;}
.ws15a{word-spacing:14.526799pt;}
.ws7d{word-spacing:14.622440pt;}
.ws66{word-spacing:14.834976pt;}
.ws138{word-spacing:14.941243pt;}
.wse1{word-spacing:15.100645pt;}
.ws13c{word-spacing:15.313180pt;}
.wsaa{word-spacing:15.631984pt;}
.ws2b{word-spacing:15.893442pt;}
.ws92{word-spacing:16.309707pt;}
.ws94{word-spacing:16.322724pt;}
.ws142{word-spacing:16.375858pt;}
.wsd8{word-spacing:16.641527pt;}
.wsc6{word-spacing:16.694661pt;}
.ws89{word-spacing:16.733743pt;}
.ws8a{word-spacing:16.747795pt;}
.ws12e{word-spacing:16.943182pt;}
.ws118{word-spacing:17.066598pt;}
.ws7c{word-spacing:17.279133pt;}
.wsad{word-spacing:17.385401pt;}
.ws80{word-spacing:17.438535pt;}
.ws81{word-spacing:17.448793pt;}
.wsf0{word-spacing:17.491669pt;}
.ws105{word-spacing:17.757338pt;}
.ws169{word-spacing:18.023008pt;}
.ws16d{word-spacing:18.076141pt;}
.ws166{word-spacing:18.235543pt;}
.ws3{word-spacing:18.525312pt;}
.wsd7{word-spacing:18.660614pt;}
.wsc1{word-spacing:19.776425pt;}
.ws177{word-spacing:22.751922pt;}
.wsc0{word-spacing:24.292804pt;}
.ws125{word-spacing:24.649925pt;}
.ws179{word-spacing:24.717875pt;}
.ws124{word-spacing:27.027147pt;}
.wsce{word-spacing:27.162033pt;}
.ws154{word-spacing:27.533970pt;}
.ws178{word-spacing:28.012175pt;}
.ws129{word-spacing:35.956840pt;}
.ws127{word-spacing:39.059866pt;}
.ws126{word-spacing:39.827608pt;}
.ws12b{word-spacing:111.793936pt;}
.ws128{word-spacing:135.721239pt;}
.ws12c{word-spacing:142.012304pt;}
.wsa0{word-spacing:154.589672pt;}
.wse3{word-spacing:177.010920pt;}
.ws160{word-spacing:214.881865pt;}
.ws15d{word-spacing:238.709841pt;}
._12{margin-left:-2418.696946pt;}
._4{margin-left:-31.504123pt;}
._2{margin-left:-30.551973pt;}
._b{margin-left:-28.214083pt;}
._7{margin-left:-27.151406pt;}
._15{margin-left:-24.040588pt;}
._41{margin-left:-22.908417pt;}
._1e{margin-left:-7.508311pt;}
._24{margin-left:-5.959476pt;}
._5{margin-left:-4.993784pt;}
._6{margin-left:-3.764784pt;}
._0{margin-left:-2.448418pt;}
._8{margin-left:-0.902476pt;}
._3{width:1.700284pt;}
._1{width:2.601444pt;}
._e{width:4.144093pt;}
._26{width:5.438770pt;}
._13{width:6.743090pt;}
._f{width:8.550718pt;}
._3d{width:11.496732pt;}
._28{width:12.682526pt;}
._1c{width:15.047549pt;}
._a{width:15.974175pt;}
._27{width:16.879950pt;}
._9{width:18.465100pt;}
._14{width:19.504389pt;}
._1b{width:20.826978pt;}
._d{width:23.586021pt;}
._47{width:24.568466pt;}
._c{width:26.566933pt;}
._16{width:28.429742pt;}
._18{width:29.812359pt;}
._45{width:31.295048pt;}
._25{width:33.159793pt;}
._17{width:34.637149pt;}
._3e{width:38.313629pt;}
._43{width:39.355528pt;}
._44{width:45.513633pt;}
._1f{width:47.057031pt;}
._38{width:48.500715pt;}
._30{width:51.603741pt;}
._3a{width:52.878957pt;}
._2e{width:54.834288pt;}
._1a{width:57.809792pt;}
._29{width:58.829965pt;}
._33{width:64.185872pt;}
._31{width:66.098696pt;}
._42{width:68.436420pt;}
._2b{width:70.476938pt;}
._35{width:75.492787pt;}
._34{width:76.725496pt;}
._46{width:88.361620pt;}
._2c{width:90.540336pt;}
._2d{width:91.773045pt;}
._2a{width:95.471175pt;}
._2f{width:100.231978pt;}
._10{width:108.215138pt;}
._32{width:111.538893pt;}
._11{width:124.783803pt;}
._3b{width:137.721137pt;}
._36{width:140.316267pt;}
._1d{width:146.861418pt;}
._22{width:153.621021pt;}
._39{width:165.863094pt;}
._37{width:177.127502pt;}
._20{width:184.991334pt;}
._3c{width:193.084963pt;}
._23{width:213.958664pt;}
._40{width:238.670690pt;}
._3f{width:249.480706pt;}
._19{width:401.065257pt;}
._21{width:416.915295pt;}
.fs4{font-size:26.566933pt;}
.fs6{font-size:31.880533pt;}
.fsa{font-size:33.472050pt;}
.fs2{font-size:37.193600pt;}
.fsd{font-size:41.439640pt;}
.fs3{font-size:42.507200pt;}
.fs9{font-size:44.629300pt;}
.fsf{font-size:45.864461pt;}
.fse{font-size:45.949921pt;}
.fs11{font-size:46.055413pt;}
.fs10{font-size:46.131787pt;}
.fsb{font-size:47.362760pt;}
.fs8{font-size:50.208000pt;}
.fs7{font-size:50.208002pt;}
.fsc{font-size:52.095928pt;}
.fs1{font-size:53.133867pt;}
.fs5{font-size:55.365867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y216{bottom:2.558562pt;}
.y205{bottom:3.012596pt;}
.y142{bottom:4.391162pt;}
.yda{bottom:11.917929pt;}
.ydd{bottom:12.212895pt;}
.y215{bottom:14.451544pt;}
.ye7{bottom:16.003713pt;}
.y204{bottom:17.012526pt;}
.ye3{bottom:18.244757pt;}
.ye1{bottom:18.558914pt;}
.ydf{bottom:19.606955pt;}
.yed{bottom:19.821068pt;}
.y141{bottom:19.931582pt;}
.yd9{bottom:25.864585pt;}
.ydc{bottom:26.159551pt;}
.ye6{bottom:27.019281pt;}
.ye9{bottom:27.728897pt;}
.y217{bottom:30.197383pt;}
.y206{bottom:31.343898pt;}
.ye2{bottom:32.191413pt;}
.ye0{bottom:32.505570pt;}
.yde{bottom:33.553611pt;}
.yec{bottom:33.767724pt;}
.y143{bottom:36.879678pt;}
.ye5{bottom:37.479297pt;}
.y20b{bottom:38.156056pt;}
.yd8{bottom:39.811241pt;}
.ydb{bottom:40.106207pt;}
.ye8{bottom:41.081557pt;}
.yea{bottom:44.127106pt;}
.y21c{bottom:45.409396pt;}
.y207{bottom:48.123764pt;}
.y218{bottom:51.569548pt;}
.yf0{bottom:55.948625pt;}
.yd7{bottom:59.916605pt;}
.yeb{bottom:64.901720pt;}
.y208{bottom:64.903642pt;}
.yd4{bottom:68.451471pt;}
.yee{bottom:69.269993pt;}
.y219{bottom:72.941713pt;}
.y147{bottom:80.021271pt;}
.y209{bottom:81.683519pt;}
.y144{bottom:85.129338pt;}
.yd5{bottom:88.471183pt;}
.yf1{bottom:91.888025pt;}
.y20a{bottom:93.429445pt;}
.y21a{bottom:94.313878pt;}
.yef{bottom:96.066329pt;}
.y33{bottom:100.369333pt;}
.y93{bottom:100.370667pt;}
.yd2{bottom:104.120000pt;}
.yf2{bottom:106.283303pt;}
.yd6{bottom:107.934394pt;}
.y21b{bottom:109.274382pt;}
.y54{bottom:110.688000pt;}
.y23a{bottom:110.740000pt;}
.yf3{bottom:111.344653pt;}
.y200{bottom:112.394449pt;}
.y32{bottom:113.521333pt;}
.y119{bottom:114.981333pt;}
.y92{bottom:114.982667pt;}
.y203{bottom:118.102155pt;}
.yd1{bottom:125.165333pt;}
.y53{bottom:125.300000pt;}
.y239{bottom:125.352000pt;}
.y31{bottom:126.672000pt;}
.y14b{bottom:128.778432pt;}
.y91{bottom:129.593333pt;}
.y1aa{bottom:129.594667pt;}
.y20f{bottom:129.741381pt;}
.y145{bottom:133.378998pt;}
.yd0{bottom:139.776000pt;}
.y30{bottom:139.822667pt;}
.y52{bottom:139.912000pt;}
.y238{bottom:139.964000pt;}
.y201{bottom:141.255847pt;}
.y14a{bottom:141.414834pt;}
.y90{bottom:144.205333pt;}
.y1a9{bottom:144.206667pt;}
.y214{bottom:144.337358pt;}
.y210{bottom:148.662034pt;}
.y1d7{bottom:152.176000pt;}
.y149{bottom:154.051237pt;}
.ycf{bottom:154.388000pt;}
.y51{bottom:154.524000pt;}
.y237{bottom:154.576000pt;}
.y2f{bottom:156.724000pt;}
.y8f{bottom:158.817333pt;}
.y148{bottom:166.687637pt;}
.y16f{bottom:166.788000pt;}
.y211{bottom:167.582687pt;}
.y50{bottom:169.136000pt;}
.y236{bottom:169.188000pt;}
.y202{bottom:170.117246pt;}
.y2e{bottom:172.890667pt;}
.y8e{bottom:173.429333pt;}
.y1a8{bottom:173.958667pt;}
.y16e{bottom:181.400000pt;}
.y146{bottom:181.628659pt;}
.y4f{bottom:183.748000pt;}
.y235{bottom:183.800000pt;}
.yce{bottom:185.544000pt;}
.y212{bottom:186.503339pt;}
.y2d{bottom:187.502667pt;}
.y8d{bottom:188.041333pt;}
.y16d{bottom:196.012000pt;}
.y4e{bottom:198.360000pt;}
.y234{bottom:198.412000pt;}
.y8c{bottom:202.653333pt;}
.y1a7{bottom:202.912000pt;}
.y213{bottom:205.423992pt;}
.y2c{bottom:207.225333pt;}
.y16c{bottom:210.624000pt;}
.y4d{bottom:212.972000pt;}
.y233{bottom:213.024000pt;}
.y118{bottom:217.265333pt;}
.y1a6{bottom:217.524000pt;}
.ycd{bottom:219.412000pt;}
.y2b{bottom:221.837333pt;}
.y8b{bottom:225.236000pt;}
.y232{bottom:227.636000pt;}
.y117{bottom:231.877333pt;}
.y1a5{bottom:232.136000pt;}
.ycc{bottom:234.024000pt;}
.y4c{bottom:235.553333pt;}
.y2a{bottom:236.449333pt;}
.y8a{bottom:239.848000pt;}
.y231{bottom:242.248000pt;}
.y13f{bottom:246.489333pt;}
.y1a4{bottom:246.748000pt;}
.ycb{bottom:248.636000pt;}
.y4b{bottom:250.165333pt;}
.y29{bottom:251.061333pt;}
.y89{bottom:254.460000pt;}
.y230{bottom:256.860000pt;}
.y13e{bottom:261.101333pt;}
.y1a3{bottom:261.360000pt;}
.y1d6{bottom:262.429333pt;}
.yca{bottom:263.248000pt;}
.y4a{bottom:264.777333pt;}
.y28{bottom:265.673333pt;}
.y88{bottom:269.072000pt;}
.y22f{bottom:271.470667pt;}
.y23b{bottom:271.472000pt;}
.y1a2{bottom:275.972000pt;}
.y13d{bottom:276.044000pt;}
.y1d5{bottom:277.041333pt;}
.yc9{bottom:277.860000pt;}
.y49{bottom:279.389333pt;}
.y87{bottom:279.921333pt;}
.y27{bottom:280.285333pt;}
.y1fe{bottom:281.058667pt;}
.y86{bottom:283.684000pt;}
.y13c{bottom:285.156000pt;}
.y22e{bottom:286.082667pt;}
.y1a1{bottom:290.584000pt;}
.y1d4{bottom:291.653333pt;}
.yc8{bottom:292.472000pt;}
.y48{bottom:294.001333pt;}
.y26{bottom:294.897333pt;}
.y85{bottom:297.397333pt;}
.y16b{bottom:298.296000pt;}
.y22d{bottom:300.694667pt;}
.y116{bottom:300.810667pt;}
.y84{bottom:301.158667pt;}
.y1a0{bottom:305.196000pt;}
.y1d3{bottom:306.265333pt;}
.y1fd{bottom:306.361333pt;}
.yc7{bottom:307.084000pt;}
.y13b{bottom:308.229333pt;}
.y47{bottom:308.613333pt;}
.y25{bottom:309.509333pt;}
.y115{bottom:309.922667pt;}
.y16a{bottom:312.908000pt;}
.y22c{bottom:315.306667pt;}
.y83{bottom:315.770667pt;}
.y19f{bottom:319.808000pt;}
.y1d2{bottom:320.877333pt;}
.y1fc{bottom:320.973333pt;}
.yc6{bottom:321.696000pt;}
.y46{bottom:323.225333pt;}
.y24{bottom:324.121333pt;}
.y13a{bottom:327.230667pt;}
.y169{bottom:327.518667pt;}
.y22b{bottom:329.918667pt;}
.y82{bottom:330.382667pt;}
.y19e{bottom:334.420000pt;}
.y1d1{bottom:335.489333pt;}
.y1fb{bottom:335.585333pt;}
.yc5{bottom:336.308000pt;}
.y114{bottom:336.354667pt;}
.y45{bottom:337.837333pt;}
.y23{bottom:338.733333pt;}
.y139{bottom:341.842667pt;}
.y168{bottom:342.130667pt;}
.y22a{bottom:344.530667pt;}
.y81{bottom:344.994667pt;}
.y19d{bottom:349.032000pt;}
.y1d0{bottom:350.101333pt;}
.y1fa{bottom:350.197333pt;}
.yc4{bottom:350.920000pt;}
.y44{bottom:352.449333pt;}
.y22{bottom:353.345333pt;}
.y113{bottom:354.388000pt;}
.y138{bottom:356.454667pt;}
.y167{bottom:356.742667pt;}
.y229{bottom:359.142667pt;}
.y80{bottom:359.606667pt;}
.y1cf{bottom:364.713333pt;}
.y1f9{bottom:364.809333pt;}
.yc3{bottom:365.532000pt;}
.y43{bottom:367.061333pt;}
.y21{bottom:367.957333pt;}
.y112{bottom:369.000000pt;}
.y137{bottom:371.066667pt;}
.y166{bottom:371.354667pt;}
.y228{bottom:373.754667pt;}
.y7f{bottom:374.218667pt;}
.y19c{bottom:378.784000pt;}
.y1ce{bottom:379.325333pt;}
.y1f8{bottom:379.421333pt;}
.yc1{bottom:381.410667pt;}
.y42{bottom:381.673333pt;}
.y20{bottom:382.569333pt;}
.y111{bottom:383.612000pt;}
.y136{bottom:385.678667pt;}
.y165{bottom:385.966667pt;}
.y227{bottom:388.366667pt;}
.y7e{bottom:388.830667pt;}
.yc0{bottom:390.522667pt;}
.y1cd{bottom:393.937333pt;}
.y1f7{bottom:394.033333pt;}
.y41{bottom:396.285333pt;}
.y1f{bottom:397.181333pt;}
.y110{bottom:398.224000pt;}
.yc2{bottom:399.509333pt;}
.y135{bottom:400.290667pt;}
.y164{bottom:400.578667pt;}
.y226{bottom:402.978667pt;}
.y7d{bottom:403.442667pt;}
.y19b{bottom:407.737333pt;}
.y1cc{bottom:408.549333pt;}
.y1f6{bottom:408.645333pt;}
.y40{bottom:410.897333pt;}
.y1e{bottom:411.793333pt;}
.y10f{bottom:412.836000pt;}
.ybe{bottom:413.457333pt;}
.y134{bottom:414.902667pt;}
.y163{bottom:415.190667pt;}
.y225{bottom:417.590667pt;}
.y19a{bottom:422.349333pt;}
.ybd{bottom:422.568000pt;}
.y1cb{bottom:423.161333pt;}
.y1f5{bottom:423.257333pt;}
.y7c{bottom:426.024000pt;}
.y1d{bottom:426.404000pt;}
.y10e{bottom:427.448000pt;}
.y133{bottom:429.514667pt;}
.y162{bottom:429.802667pt;}
.ybf{bottom:431.554667pt;}
.y224{bottom:432.202667pt;}
.y3f{bottom:433.478667pt;}
.y199{bottom:436.961333pt;}
.y1ca{bottom:437.773333pt;}
.y1f4{bottom:437.869333pt;}
.y7b{bottom:440.636000pt;}
.y10d{bottom:442.060000pt;}
.y132{bottom:444.126667pt;}
.y161{bottom:444.414667pt;}
.ybb{bottom:445.502667pt;}
.y223{bottom:446.814667pt;}
.y3e{bottom:448.090667pt;}
.y1c{bottom:448.986667pt;}
.y198{bottom:451.573333pt;}
.y1c9{bottom:452.385333pt;}
.y1f3{bottom:452.481333pt;}
.yba{bottom:454.614667pt;}
.y7a{bottom:455.248000pt;}
.y10c{bottom:456.672000pt;}
.y131{bottom:458.738667pt;}
.y222{bottom:461.426667pt;}
.y3d{bottom:462.702667pt;}
.y1b{bottom:463.598667pt;}
.ybc{bottom:463.601333pt;}
.y197{bottom:466.185333pt;}
.y160{bottom:466.997333pt;}
.y1f2{bottom:467.093333pt;}
.y79{bottom:469.860000pt;}
.y130{bottom:473.350667pt;}
.y10b{bottom:474.030667pt;}
.y221{bottom:476.038667pt;}
.y3c{bottom:477.314667pt;}
.yb9{bottom:477.548000pt;}
.y1a{bottom:478.210667pt;}
.y196{bottom:480.797333pt;}
.y15f{bottom:481.609333pt;}
.y1f1{bottom:481.705333pt;}
.y78{bottom:484.472000pt;}
.yb8{bottom:486.660000pt;}
.y12f{bottom:487.962667pt;}
.y220{bottom:490.650667pt;}
.y3b{bottom:491.926667pt;}
.y10a{bottom:492.740000pt;}
.y19{bottom:492.822667pt;}
.y195{bottom:495.409333pt;}
.y15e{bottom:496.221333pt;}
.y1f0{bottom:496.317333pt;}
.y77{bottom:499.084000pt;}
.y12e{bottom:502.574667pt;}
.y21f{bottom:505.262667pt;}
.y3a{bottom:506.538667pt;}
.y109{bottom:507.352000pt;}
.y18{bottom:507.434667pt;}
.y194{bottom:510.021333pt;}
.y15d{bottom:510.833333pt;}
.y1ef{bottom:510.929333pt;}
.y76{bottom:513.696000pt;}
.yb7{bottom:514.109333pt;}
.y39{bottom:521.150667pt;}
.y108{bottom:521.964000pt;}
.y17{bottom:522.046667pt;}
.y193{bottom:524.633333pt;}
.y12d{bottom:525.157333pt;}
.y15c{bottom:525.445333pt;}
.y1ee{bottom:525.541333pt;}
.y75{bottom:528.308000pt;}
.yb6{bottom:528.721333pt;}
.y21e{bottom:533.748000pt;}
.y38{bottom:535.762667pt;}
.y107{bottom:536.576000pt;}
.y16{bottom:536.658667pt;}
.y192{bottom:539.245333pt;}
.y12c{bottom:539.769333pt;}
.y1c8{bottom:540.057333pt;}
.y1ed{bottom:540.153333pt;}
.y74{bottom:542.920000pt;}
.yb5{bottom:543.333333pt;}
.y15b{bottom:548.026667pt;}
.y21d{bottom:548.360000pt;}
.y37{bottom:550.374667pt;}
.y106{bottom:551.188000pt;}
.y15{bottom:551.270667pt;}
.y191{bottom:553.857333pt;}
.y12b{bottom:554.381333pt;}
.y1c7{bottom:554.669333pt;}
.y1ec{bottom:554.765333pt;}
.y73{bottom:557.532000pt;}
.yb4{bottom:557.945333pt;}
.y15a{bottom:562.638667pt;}
.y36{bottom:564.986667pt;}
.y105{bottom:565.800000pt;}
.y14{bottom:565.882667pt;}
.y190{bottom:568.469333pt;}
.y1c6{bottom:569.281333pt;}
.y72{bottom:572.144000pt;}
.yb3{bottom:572.556000pt;}
.y20e{bottom:573.598667pt;}
.y12a{bottom:575.034667pt;}
.y159{bottom:577.250667pt;}
.y35{bottom:579.598667pt;}
.y104{bottom:580.410667pt;}
.y129{bottom:581.942667pt;}
.y1eb{bottom:582.692000pt;}
.y18f{bottom:583.081333pt;}
.y1c5{bottom:583.893333pt;}
.y71{bottom:586.756000pt;}
.yb2{bottom:587.168000pt;}
.y158{bottom:591.862667pt;}
.y34{bottom:594.210667pt;}
.y103{bottom:595.022667pt;}
.y13{bottom:595.096000pt;}
.y18e{bottom:597.693333pt;}
.y1c4{bottom:598.504000pt;}
.y70{bottom:601.368000pt;}
.y157{bottom:606.474667pt;}
.y1ea{bottom:607.994667pt;}
.y128{bottom:609.504000pt;}
.y102{bottom:609.634667pt;}
.yb1{bottom:609.750667pt;}
.y18d{bottom:612.305333pt;}
.y1c3{bottom:613.116000pt;}
.y6f{bottom:615.980000pt;}
.y1e9{bottom:622.606667pt;}
.y127{bottom:624.116000pt;}
.yb0{bottom:624.362667pt;}
.y18c{bottom:626.916000pt;}
.y1c2{bottom:627.728000pt;}
.y12{bottom:628.541333pt;}
.y6e{bottom:630.592000pt;}
.y156{bottom:636.225333pt;}
.y1e8{bottom:637.218667pt;}
.y126{bottom:638.728000pt;}
.yaf{bottom:638.974667pt;}
.y101{bottom:639.061333pt;}
.y18b{bottom:641.528000pt;}
.y1c1{bottom:642.340000pt;}
.y6d{bottom:648.716000pt;}
.y1e7{bottom:651.830667pt;}
.y125{bottom:653.340000pt;}
.yae{bottom:653.586667pt;}
.y18a{bottom:656.140000pt;}
.y1c0{bottom:656.952000pt;}
.y11{bottom:661.601333pt;}
.y155{bottom:665.172000pt;}
.y1e6{bottom:666.442667pt;}
.y100{bottom:667.360000pt;}
.y124{bottom:667.952000pt;}
.yad{bottom:668.198667pt;}
.y6c{bottom:669.026667pt;}
.y189{bottom:670.752000pt;}
.y1bf{bottom:671.564000pt;}
.y10{bottom:676.213333pt;}
.y154{bottom:679.784000pt;}
.y1e5{bottom:681.054667pt;}
.yff{bottom:681.972000pt;}
.y123{bottom:682.564000pt;}
.yac{bottom:682.810667pt;}
.y188{bottom:685.364000pt;}
.y6b{bottom:686.294667pt;}
.yf{bottom:690.825333pt;}
.y1be{bottom:694.146667pt;}
.y153{bottom:694.396000pt;}
.y1e4{bottom:695.666667pt;}
.yfe{bottom:696.584000pt;}
.y122{bottom:697.176000pt;}
.yab{bottom:697.422667pt;}
.y187{bottom:699.976000pt;}
.y6a{bottom:703.564000pt;}
.ye{bottom:705.437333pt;}
.y1bd{bottom:708.758667pt;}
.y152{bottom:709.008000pt;}
.y1e3{bottom:710.278667pt;}
.yfd{bottom:711.196000pt;}
.y121{bottom:711.788000pt;}
.yaa{bottom:712.034667pt;}
.y69{bottom:717.290667pt;}
.yd{bottom:720.049333pt;}
.y68{bottom:720.832000pt;}
.y186{bottom:722.558667pt;}
.y1bc{bottom:723.370667pt;}
.y1e2{bottom:724.890667pt;}
.yfc{bottom:725.808000pt;}
.ya9{bottom:726.646667pt;}
.y151{bottom:731.590667pt;}
.yc{bottom:734.661333pt;}
.y185{bottom:737.170667pt;}
.y120{bottom:737.733333pt;}
.y1bb{bottom:737.982667pt;}
.y67{bottom:738.181333pt;}
.y1e1{bottom:739.502667pt;}
.yfb{bottom:740.420000pt;}
.ya8{bottom:742.304000pt;}
.y64{bottom:745.565333pt;}
.ya7{bottom:745.846667pt;}
.y150{bottom:746.202667pt;}
.yb{bottom:749.273333pt;}
.y11f{bottom:750.884000pt;}
.y184{bottom:751.782667pt;}
.y1ba{bottom:752.594667pt;}
.y1e0{bottom:754.114667pt;}
.y63{bottom:754.158667pt;}
.yfa{bottom:755.032000pt;}
.y14f{bottom:760.814667pt;}
.ya{bottom:763.885333pt;}
.y11e{bottom:764.034667pt;}
.y183{bottom:766.394667pt;}
.y66{bottom:766.778667pt;}
.y1b9{bottom:767.206667pt;}
.y1df{bottom:768.726667pt;}
.yf9{bottom:769.644000pt;}
.ya6{bottom:770.502667pt;}
.y65{bottom:770.764000pt;}
.y14e{bottom:775.426667pt;}
.y11d{bottom:777.185333pt;}
.y182{bottom:781.006667pt;}
.y1b8{bottom:781.818667pt;}
.y62{bottom:783.286667pt;}
.y1de{bottom:783.338667pt;}
.yf8{bottom:784.256000pt;}
.y11c{bottom:790.336000pt;}
.ya4{bottom:791.092000pt;}
.y181{bottom:795.618667pt;}
.y14d{bottom:797.058667pt;}
.y61{bottom:797.898667pt;}
.y1dd{bottom:797.950667pt;}
.ya1{bottom:798.474667pt;}
.yf7{bottom:798.868000pt;}
.y9{bottom:800.873333pt;}
.ya5{bottom:803.785333pt;}
.y11b{bottom:804.018667pt;}
.y20d{bottom:804.864000pt;}
.y17e{bottom:806.245333pt;}
.y17f{bottom:806.468000pt;}
.y180{bottom:806.933333pt;}
.ya0{bottom:807.069333pt;}
.y17d{bottom:810.230667pt;}
.y1b7{bottom:811.080000pt;}
.y14c{bottom:811.670667pt;}
.y60{bottom:812.510667pt;}
.y1dc{bottom:812.562667pt;}
.yf6{bottom:813.480000pt;}
.y20c{bottom:819.476000pt;}
.ya3{bottom:819.688000pt;}
.y8{bottom:820.305333pt;}
.y1b6{bottom:822.770667pt;}
.ya2{bottom:823.673333pt;}
.y17c{bottom:827.174667pt;}
.y11a{bottom:828.293333pt;}
.y7{bottom:830.097333pt;}
.y140{bottom:836.909333pt;}
.y9f{bottom:839.854667pt;}
.y17b{bottom:841.786667pt;}
.y5f{bottom:842.116000pt;}
.yf5{bottom:842.905333pt;}
.y1b5{bottom:842.926667pt;}
.y6{bottom:844.709333pt;}
.y1ff{bottom:844.714667pt;}
.y9e{bottom:854.466667pt;}
.y1b4{bottom:856.077333pt;}
.y17a{bottom:856.397333pt;}
.y1db{bottom:856.398667pt;}
.y5{bottom:864.141333pt;}
.y9d{bottom:869.078667pt;}
.y1b3{bottom:869.228000pt;}
.yf4{bottom:870.653333pt;}
.y5e{bottom:870.776000pt;}
.y179{bottom:871.009333pt;}
.y1da{bottom:871.010667pt;}
.y9c{bottom:883.690667pt;}
.y5d{bottom:885.388000pt;}
.y178{bottom:885.621333pt;}
.y1d9{bottom:885.622667pt;}
.y1b2{bottom:889.049333pt;}
.y4{bottom:889.873333pt;}
.yd3{bottom:895.892000pt;}
.y9b{bottom:898.302667pt;}
.y5c{bottom:900.000000pt;}
.y177{bottom:900.233333pt;}
.y1d8{bottom:900.234667pt;}
.y1b1{bottom:902.200000pt;}
.y9a{bottom:912.914667pt;}
.y5b{bottom:914.612000pt;}
.y176{bottom:914.845333pt;}
.y1b0{bottom:915.350667pt;}
.y3{bottom:923.081333pt;}
.y99{bottom:927.526667pt;}
.y5a{bottom:929.224000pt;}
.y175{bottom:929.457333pt;}
.y1af{bottom:935.170667pt;}
.y98{bottom:942.138667pt;}
.y59{bottom:943.834667pt;}
.y174{bottom:944.069333pt;}
.y2{bottom:946.461333pt;}
.ye4{bottom:947.135269pt;}
.y1ab{bottom:950.845333pt;}
.y97{bottom:956.750667pt;}
.y58{bottom:958.446667pt;}
.y173{bottom:958.681333pt;}
.y1ac{bottom:962.284000pt;}
.y1ad{bottom:962.800000pt;}
.y1ae{bottom:963.790667pt;}
.y1{bottom:969.840000pt;}
.y96{bottom:971.362667pt;}
.y57{bottom:973.058667pt;}
.y172{bottom:973.293333pt;}
.y95{bottom:985.974667pt;}
.y56{bottom:987.670667pt;}
.y171{bottom:987.905333pt;}
.y170{bottom:1002.517333pt;}
.y94{bottom:1017.129333pt;}
.y55{bottom:1017.277333pt;}
.hb{height:2.125355pt;}
.h36{height:18.437452pt;}
.h37{height:18.756255pt;}
.h4{height:20.570400pt;}
.h1d{height:22.125090pt;}
.h24{height:23.567723pt;}
.h8{height:25.961133pt;}
.h16{height:26.184294pt;}
.ha{height:26.556230pt;}
.h2f{height:28.752797pt;}
.h6{height:29.499997pt;}
.h22{height:31.423560pt;}
.h3a{height:31.822949pt;}
.h7{height:31.880400pt;}
.h39{height:31.882245pt;}
.h3d{height:31.955440pt;}
.h3c{height:32.008432pt;}
.h2d{height:32.862540pt;}
.h21{height:34.836703pt;}
.h1f{height:34.836704pt;}
.h25{height:35.351531pt;}
.h2e{height:36.146638pt;}
.h20{height:36.585011pt;}
.h28{height:37.127757pt;}
.h3{height:37.406242pt;}
.h5{height:39.850400pt;}
.he{height:41.524400pt;}
.h27{height:42.549067pt;}
.h10{height:44.832003pt;}
.h30{height:44.837337pt;}
.h1c{height:45.464294pt;}
.hf{height:48.492230pt;}
.hc{height:49.286897pt;}
.h35{height:53.039733pt;}
.h31{height:53.270897pt;}
.h2{height:53.559147pt;}
.h26{height:53.871733pt;}
.hd{height:54.015733pt;}
.h17{height:54.021067pt;}
.h11{height:59.877337pt;}
.h12{height:59.882670pt;}
.h34{height:60.514961pt;}
.h33{height:60.886897pt;}
.h13{height:61.101355pt;}
.h9{height:61.106688pt;}
.h15{height:61.256294pt;}
.h14{height:61.628230pt;}
.h32{height:61.777564pt;}
.h2b{height:75.791733pt;}
.h18{height:75.797067pt;}
.h1b{height:76.298400pt;}
.h29{height:77.042688pt;}
.h23{height:79.218461pt;}
.h2a{height:104.674688pt;}
.h1a{height:112.239733pt;}
.h19{height:112.245067pt;}
.h1e{height:130.461731pt;}
.h38{height:181.640480pt;}
.h2c{height:189.445120pt;}
.h3b{height:217.317187pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:334.489040pt;}
.w3{width:336.071432pt;}
.w2{width:687.889119pt;}
.w6{width:687.931227pt;}
.w5{width:687.945440pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x59{left:3.301360pt;}
.x4f{left:4.297657pt;}
.x80{left:7.949890pt;}
.x6a{left:9.250251pt;}
.x85{left:11.221153pt;}
.x7f{left:12.607862pt;}
.x69{left:14.060383pt;}
.x50{left:15.352178pt;}
.x84{left:17.982431pt;}
.x45{left:21.666670pt;}
.x68{left:22.940623pt;}
.x46{left:25.390315pt;}
.x83{left:26.581754pt;}
.x81{left:29.412362pt;}
.xc{left:54.425333pt;}
.x72{left:55.596000pt;}
.x7b{left:59.077333pt;}
.x77{left:63.446667pt;}
.x7c{left:64.629333pt;}
.x79{left:68.476000pt;}
.xe{left:71.492000pt;}
.x6c{left:80.992000pt;}
.xf{left:85.297333pt;}
.x51{left:88.065059pt;}
.x5d{left:90.088000pt;}
.x10{left:91.706667pt;}
.x54{left:93.789453pt;}
.x7a{left:102.228000pt;}
.x78{left:105.050667pt;}
.x14{left:105.958667pt;}
.x43{left:109.874695pt;}
.x11{left:111.864000pt;}
.xa{left:123.212000pt;}
.x42{left:124.222095pt;}
.x5b{left:131.569333pt;}
.x56{left:134.018515pt;}
.x5e{left:135.752000pt;}
.x16{left:140.458667pt;}
.x17{left:141.792000pt;}
.x55{left:147.333209pt;}
.x67{left:156.847379pt;}
.xb{left:158.941333pt;}
.x44{left:161.242161pt;}
.x12{left:163.968000pt;}
.x13{left:165.878667pt;}
.x6b{left:168.502559pt;}
.x71{left:174.605333pt;}
.x73{left:179.353333pt;}
.x74{left:181.122667pt;}
.x4{left:189.784000pt;}
.x1{left:191.997333pt;}
.x5{left:195.401333pt;}
.x8{left:197.196000pt;}
.x3{left:201.673333pt;}
.x9{left:233.530667pt;}
.x52{left:235.099065pt;}
.x53{left:237.207394pt;}
.x7{left:238.881333pt;}
.x2{left:242.845333pt;}
.x18{left:248.326667pt;}
.x47{left:250.827782pt;}
.x4e{left:252.713461pt;}
.x6{left:256.444000pt;}
.x15{left:267.920000pt;}
.x48{left:272.510470pt;}
.x1a{left:273.594667pt;}
.x5f{left:275.408000pt;}
.x19{left:291.549333pt;}
.x5c{left:306.584000pt;}
.x76{left:308.506667pt;}
.x75{left:309.928000pt;}
.x82{left:340.600520pt;}
.x49{left:381.499872pt;}
.x4a{left:383.981395pt;}
.x1b{left:403.541333pt;}
.xd{left:407.810667pt;}
.x62{left:410.457333pt;}
.x28{left:415.664000pt;}
.x63{left:418.542667pt;}
.x41{left:420.633333pt;}
.x60{left:441.260000pt;}
.x26{left:453.602667pt;}
.x61{left:458.160000pt;}
.x1c{left:459.273333pt;}
.x2d{left:469.328000pt;}
.x70{left:476.074667pt;}
.x1d{left:479.432000pt;}
.x35{left:482.612000pt;}
.x64{left:491.869333pt;}
.x4b{left:493.029374pt;}
.x4c{left:499.694894pt;}
.x29{left:502.784000pt;}
.x2e{left:504.693333pt;}
.x36{left:509.340000pt;}
.x3d{left:516.025333pt;}
.x7d{left:521.460000pt;}
.x7e{left:529.393333pt;}
.x1e{left:531.534667pt;}
.x1f{left:533.445333pt;}
.x37{left:540.444000pt;}
.x2f{left:545.172000pt;}
.x3e{left:553.813333pt;}
.x20{left:556.757333pt;}
.x39{left:559.697333pt;}
.x38{left:561.394667pt;}
.x31{left:564.425333pt;}
.x30{left:566.122667pt;}
.x2a{left:571.137333pt;}
.x40{left:573.065333pt;}
.x3f{left:574.762667pt;}
.x21{left:586.718667pt;}
.x57{left:593.963830pt;}
.x4d{left:600.734614pt;}
.x5a{left:603.913550pt;}
.x3a{left:610.772000pt;}
.x27{left:614.826667pt;}
.x22{left:617.552000pt;}
.x32{left:624.533333pt;}
.x66{left:625.980000pt;}
.x2b{left:630.456000pt;}
.x23{left:631.468000pt;}
.x65{left:639.510667pt;}
.x3c{left:642.217333pt;}
.x3b{left:643.914667pt;}
.x6d{left:656.574667pt;}
.x34{left:665.012000pt;}
.x33{left:666.709333pt;}
.x58{left:673.421525pt;}
.x24{left:687.948000pt;}
.x2c{left:696.506667pt;}
.x25{left:701.864000pt;}
.x6e{left:704.086667pt;}
.x6f{left:718.001333pt;}
}




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