
    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_041afba64f791b4feb6698b4.woff')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_4a31200658adb8cfdb66d231.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_63c019a5c25b32374de1eea9.woff')format("woff");}.ff3{font-family:ff3;line-height:0.869000;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_fbe3738d6fca7d30cf864def.woff')format("woff");}.ff4{font-family:ff4;line-height:0.901000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_995b2934497a9c60c7519ab3.woff')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_74daad694580ab41fefed34c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_67d187e31eae91053cd82c6f.woff')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_7c828fe3770cee8002913027.woff')format("woff");}.ff8{font-family:ff8;line-height:0.870000;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_22325ce6b66fb1a0d3462269.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8e201d65d70a574a6fd0154e.woff')format("woff");}.ffa{font-family:ffa;line-height:0.653000;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_a7cdf30caf379b8ae785f03f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.716000;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_ecd63a736650cf7d6630bd4a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.764000;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_c4b37d50747275c9fe248db6.woff')format("woff");}.ffd{font-family:ffd;line-height:0.959000;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_cfdb450c1964b58ace1ff148.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_cb5ff204647afcf6c2c90757.woff')format("woff");}.fff{font-family:fff;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_43cb231d90f74e9bff338575.woff')format("woff");}.ff10{font-family:ff10;line-height:0.653000;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_80cd604ad03292b516119421.woff')format("woff");}.ff11{font-family:ff11;line-height:0.876000;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_8da311742eafd680f8fb0d4c.woff')format("woff");}.ff12{font-family:ff12;line-height:0.688000;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_f37e7ef3f68a78aef2e69ae3.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_43b7e349b1fc190efb1bd312.woff')format("woff");}.ff14{font-family:ff14;line-height:0.716000;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_9d30dde48d2a8cb24f49be17.woff')format("woff");}.ff15{font-family:ff15;line-height:0.678000;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_7032053bf12771de84a10a5d.woff')format("woff");}.ff16{font-family:ff16;line-height:1.667000;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_aab83d53ecb0eb113cc5b8b2.woff')format("woff");}.ff17{font-family:ff17;line-height:0.698000;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_45dc09364f2ad9042f9af567.woff')format("woff");}.ff18{font-family:ff18;line-height:0.688000;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_57b38cf1797139ffa8d6f5c5.woff')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_e5cfb6f4f48c7909cb71eb8a.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.711000;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_cc39ae6ecc87a55b86891512.woff')format("woff");}.ff1b{font-family:ff1b;line-height:2.222000;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_cbed7b6ccad0d8d79305bc6d.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.702000;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_3876798a8e22b17e4a2ea671.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.959000;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_ebf4a7db29eddc04c727ba30.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.518000;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_f7f6ab1399976cd4fc156b5c.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.959000;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_c9cb374b148831e9d3d333f5.woff')format("woff");}.ff20{font-family:ff20;line-height:0.959000;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_bc4b26a089c062102d81fd2c.woff')format("woff");}.ff21{font-family:ff21;line-height:0.049000;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_223bacccb11743206020ba25.woff')format("woff");}.ff22{font-family:ff22;line-height:0.707000;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_10cc57045c07f362000868c6.woff')format("woff");}.ff23{font-family:ff23;line-height:0.482000;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_e3de1db5924608eaba21d21e.woff')format("woff");}.ff24{font-family:ff24;line-height:0.959000;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_c224a09d9c51713dd9a9c028.woff')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_16c9291e7b707532b96f0a8f.woff')format("woff");}.ff26{font-family:ff26;line-height:0.906000;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:ff27;src:url('chunks/assets/font_6f1725c9b3152a0cbe8387ca.woff')format("woff");}.ff27{font-family:ff27;line-height:0.897000;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:ff28;src:url('chunks/assets/font_e3e21933081528e7a09b8a6d.woff')format("woff");}.ff28{font-family:ff28;line-height:0.764000;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:ff29;src:url('chunks/assets/font_d99a5fb9229f4bc343b375cd.woff')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_cb86d53c7ba1df785a27680a.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.699000;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:ff2b;src:url('chunks/assets/font_554a7d88384419671a2c3de0.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.482000;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:ff2c;src:url('chunks/assets/font_634804a476a5cdf8dd62dde4.woff')format("woff");}.ff2c{font-family:ff2c;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;}
.m2{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);}
.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);}
.v2{vertical-align:-26.034000px;}
.vc{vertical-align:-17.934000px;}
.v3{vertical-align:-8.964000px;}
.v7{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:9.456124px;}
.v6{vertical-align:14.838000px;}
.v5{vertical-align:15.942000px;}
.v4{vertical-align:21.696000px;}
.v8{vertical-align:24.684000px;}
.v1{vertical-align:26.034000px;}
.vd{vertical-align:41.004000px;}
.vb{vertical-align:56.784000px;}
.va{vertical-align:66.582000px;}
.v9{vertical-align:81.360000px;}
.ve{vertical-align:95.532000px;}
.ls7{letter-spacing:0.000000px;}
.ls27{letter-spacing:0.000564px;}
.ls50{letter-spacing:0.003008px;}
.lsab{letter-spacing:0.003292px;}
.ls26{letter-spacing:0.003413px;}
.ls60{letter-spacing:0.003509px;}
.ls1d{letter-spacing:0.004200px;}
.ls5e{letter-spacing:0.009008px;}
.ls3b{letter-spacing:0.009509px;}
.ls40{letter-spacing:0.009664px;}
.ls3e{letter-spacing:0.011291px;}
.ls5c{letter-spacing:0.011557px;}
.ls42{letter-spacing:0.013933px;}
.ls34{letter-spacing:0.013962px;}
.ls65{letter-spacing:0.014776px;}
.ls3c{letter-spacing:0.016111px;}
.ls79{letter-spacing:0.016825px;}
.ls4c{letter-spacing:0.016975px;}
.ls32{letter-spacing:0.017945px;}
.lsf{letter-spacing:0.018925px;}
.ls58{letter-spacing:0.020378px;}
.ls61{letter-spacing:0.021454px;}
.ls43{letter-spacing:0.022111px;}
.ls35{letter-spacing:0.023945px;}
.ls10{letter-spacing:0.024925px;}
.ls2{letter-spacing:0.026095px;}
.ls5a{letter-spacing:0.026357px;}
.ls63{letter-spacing:0.027377px;}
.ls83{letter-spacing:0.029194px;}
.ls3d{letter-spacing:0.029210px;}
.ls4{letter-spacing:0.032095px;}
.ls36{letter-spacing:0.032222px;}
.ls46{letter-spacing:0.032688px;}
.ls38{letter-spacing:0.034141px;}
.ls64{letter-spacing:0.036887px;}
.ls7b{letter-spacing:0.038222px;}
.ls3a{letter-spacing:0.038346px;}
.ls4a{letter-spacing:0.040141px;}
.ls1a{letter-spacing:0.044159px;}
.ls55{letter-spacing:0.048359px;}
.ls20{letter-spacing:0.050159px;}
.ls5d{letter-spacing:0.051067px;}
.ls66{letter-spacing:0.051986px;}
.ls2f{letter-spacing:0.057067px;}
.ls6a{letter-spacing:1.149313px;}
.ls78{letter-spacing:2.136359px;}
.ls1{letter-spacing:2.987261px;}
.ls22{letter-spacing:2.987447px;}
.ls28{letter-spacing:2.992363px;}
.ls0{letter-spacing:2.993261px;}
.ls44{letter-spacing:2.995048px;}
.ls33{letter-spacing:3.001048px;}
.ls3f{letter-spacing:3.004111px;}
.ls41{letter-spacing:3.004296px;}
.ls8{letter-spacing:3.005447px;}
.ls4d{letter-spacing:3.011447px;}
.ls6b{letter-spacing:3.015377px;}
.ls59{letter-spacing:3.017708px;}
.ls69{letter-spacing:3.021377px;}
.ls4f{letter-spacing:3.023708px;}
.ls9{letter-spacing:3.026095px;}
.lsc{letter-spacing:3.032095px;}
.ls2e{letter-spacing:3.455557px;}
.ls70{letter-spacing:3.461557px;}
.ls30{letter-spacing:4.507019px;}
.ls31{letter-spacing:4.735674px;}
.ls51{letter-spacing:4.741674px;}
.ls90{letter-spacing:5.858138px;}
.lsaf{letter-spacing:5.874359px;}
.lsac{letter-spacing:5.880359px;}
.ls1e{letter-spacing:7.750200px;}
.ls1b{letter-spacing:7.756200px;}
.ls1c{letter-spacing:7.794359px;}
.ls1f{letter-spacing:7.800359px;}
.ls13{letter-spacing:8.327050px;}
.lsa1{letter-spacing:8.464200px;}
.lsa2{letter-spacing:8.508359px;}
.ls37{letter-spacing:9.962015px;}
.ls39{letter-spacing:10.017067px;}
.ls95{letter-spacing:10.570200px;}
.ls96{letter-spacing:10.620359px;}
.ls23{letter-spacing:11.800200px;}
.ls24{letter-spacing:11.850359px;}
.ls14{letter-spacing:11.975447px;}
.ls45{letter-spacing:12.973753px;}
.ls68{letter-spacing:12.975377px;}
.ls7f{letter-spacing:12.994200px;}
.ls80{letter-spacing:13.038359px;}
.ls18{letter-spacing:13.282200px;}
.ls56{letter-spacing:13.328015px;}
.ls19{letter-spacing:13.332359px;}
.ls7c{letter-spacing:13.422359px;}
.ls2b{letter-spacing:13.516200px;}
.lsa7{letter-spacing:13.534200px;}
.ls2c{letter-spacing:13.560359px;}
.lsa8{letter-spacing:13.578359px;}
.ls76{letter-spacing:14.050200px;}
.lsaa{letter-spacing:14.098200px;}
.ls77{letter-spacing:14.100359px;}
.lsa9{letter-spacing:14.142359px;}
.lsb0{letter-spacing:14.364359px;}
.ls94{letter-spacing:14.526359px;}
.ls67{letter-spacing:16.305377px;}
.ls92{letter-spacing:16.312200px;}
.ls93{letter-spacing:16.356359px;}
.ls82{letter-spacing:16.433447px;}
.lsad{letter-spacing:16.600200px;}
.lsae{letter-spacing:16.656359px;}
.ls73{letter-spacing:16.702200px;}
.ls74{letter-spacing:16.746359px;}
.ls5f{letter-spacing:17.028359px;}
.ls21{letter-spacing:17.140200px;}
.ls7d{letter-spacing:17.188200px;}
.lsa4{letter-spacing:17.213447px;}
.ls7e{letter-spacing:17.232359px;}
.ls9d{letter-spacing:18.047447px;}
.ls9a{letter-spacing:18.695447px;}
.ls84{letter-spacing:18.828359px;}
.ls9b{letter-spacing:18.863447px;}
.lsb1{letter-spacing:19.198200px;}
.ls17{letter-spacing:19.229447px;}
.lsb2{letter-spacing:19.242359px;}
.ls86{letter-spacing:19.546825px;}
.ls71{letter-spacing:19.631708px;}
.ls8f{letter-spacing:19.703447px;}
.ls81{letter-spacing:19.790383px;}
.ls54{letter-spacing:19.940132px;}
.ls52{letter-spacing:20.505067px;}
.ls4e{letter-spacing:20.511986px;}
.ls72{letter-spacing:20.580359px;}
.ls6{letter-spacing:20.873447px;}
.ls49{letter-spacing:21.375067px;}
.ls25{letter-spacing:21.437447px;}
.ls8b{letter-spacing:21.527447px;}
.ls91{letter-spacing:21.772825px;}
.ls6f{letter-spacing:22.310383px;}
.ls85{letter-spacing:22.319447px;}
.ls3{letter-spacing:22.355447px;}
.ls6e{letter-spacing:22.829447px;}
.ls2d{letter-spacing:22.913447px;}
.ls47{letter-spacing:23.127008px;}
.ls48{letter-spacing:23.152141px;}
.ls15{letter-spacing:23.189447px;}
.ls87{letter-spacing:23.297447px;}
.ls2a{letter-spacing:24.665447px;}
.lsa0{letter-spacing:24.767447px;}
.ls8c{letter-spacing:24.827447px;}
.lsa3{letter-spacing:24.887447px;}
.ls53{letter-spacing:24.967019px;}
.ls75{letter-spacing:25.030200px;}
.ls8d{letter-spacing:25.523447px;}
.ls8e{letter-spacing:25.649447px;}
.ls5b{letter-spacing:26.075447px;}
.lsa5{letter-spacing:26.243447px;}
.ls57{letter-spacing:26.596542px;}
.ls99{letter-spacing:26.819447px;}
.ls4b{letter-spacing:27.083447px;}
.ls7a{letter-spacing:27.124825px;}
.ls29{letter-spacing:27.419447px;}
.ls9c{letter-spacing:27.503447px;}
.lsa6{letter-spacing:27.952825px;}
.ls88{letter-spacing:28.216825px;}
.ls9e{letter-spacing:28.559447px;}
.lsb{letter-spacing:28.703447px;}
.ls5{letter-spacing:28.835447px;}
.ls12{letter-spacing:29.171447px;}
.ls9f{letter-spacing:29.887800px;}
.ls89{letter-spacing:30.460825px;}
.ls97{letter-spacing:30.497447px;}
.ls98{letter-spacing:30.833447px;}
.ls11{letter-spacing:31.685447px;}
.ls6d{letter-spacing:32.051447px;}
.ls16{letter-spacing:38.153447px;}
.lsa{letter-spacing:38.159447px;}
.ls8a{letter-spacing:47.063447px;}
.lse{letter-spacing:52.526383px;}
.lsd{letter-spacing:61.301447px;}
.ls62{letter-spacing:73.818359px;}
.ls6c{letter-spacing:114.488159px;}
.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;}
}
.ws15a{word-spacing:-33.127805px;}
.ws22{word-spacing:-24.101616px;}
.ws4{word-spacing:-20.084736px;}
.ws156{word-spacing:-19.624385px;}
.ws1e{word-spacing:-16.737168px;}
.ws3{word-spacing:-13.389768px;}
.ws47{word-spacing:-11.715984px;}
.ws11b{word-spacing:-3.466985px;}
.ws53{word-spacing:-3.407209px;}
.wsbe{word-spacing:-3.347434px;}
.wsbd{word-spacing:-3.313676px;}
.ws78{word-spacing:-3.287658px;}
.ws18{word-spacing:-3.227882px;}
.ws102{word-spacing:-3.168107px;}
.ws69{word-spacing:-3.048556px;}
.ws6b{word-spacing:-2.988780px;}
.ws96{word-spacing:-2.953676px;}
.ws5d{word-spacing:-2.869229px;}
.ws154{word-spacing:-2.854144px;}
.ws13c{word-spacing:-2.809453px;}
.wsa9{word-spacing:-2.749678px;}
.ws11a{word-spacing:-2.689902px;}
.ws14f{word-spacing:-2.630126px;}
.ws159{word-spacing:-2.570351px;}
.wsa4{word-spacing:-2.450800px;}
.ws74{word-spacing:-2.391024px;}
.wsb9{word-spacing:-2.331248px;}
.ws29{word-spacing:-2.211697px;}
.wse1{word-spacing:-2.151922px;}
.ws4b{word-spacing:-1.912819px;}
.ws4f{word-spacing:-1.853044px;}
.ws60{word-spacing:-1.793268px;}
.wsb7{word-spacing:-1.733492px;}
.ws42{word-spacing:-1.673717px;}
.wsdd{word-spacing:-1.613941px;}
.wsd6{word-spacing:-1.494390px;}
.ws112{word-spacing:-1.434614px;}
.ws14{word-spacing:-1.374839px;}
.ws108{word-spacing:-1.315063px;}
.wse5{word-spacing:-1.255288px;}
.ws8a{word-spacing:-1.195512px;}
.ws107{word-spacing:-1.135736px;}
.ws106{word-spacing:-1.075961px;}
.ws20{word-spacing:-1.016185px;}
.wse2{word-spacing:-0.956410px;}
.ws109{word-spacing:-0.896634px;}
.wsb{word-spacing:-0.777083px;}
.ws65{word-spacing:-0.717307px;}
.wsa7{word-spacing:-0.657532px;}
.ws5a{word-spacing:-0.597756px;}
.ws49{word-spacing:-0.537980px;}
.wsb1{word-spacing:-0.478205px;}
.ws115{word-spacing:-0.418429px;}
.ws113{word-spacing:-0.358654px;}
.wse4{word-spacing:-0.298878px;}
.ws117{word-spacing:-0.239102px;}
.wsd0{word-spacing:-0.119551px;}
.ws5b{word-spacing:-0.059776px;}
.wsee{word-spacing:-0.056787px;}
.ws7c{word-spacing:-0.047821px;}
.ws7d{word-spacing:-0.041843px;}
.wsed{word-spacing:-0.028997px;}
.wsf3{word-spacing:-0.024757px;}
.ws23{word-spacing:0.000000px;}
.wsa5{word-spacing:0.059776px;}
.ws54{word-spacing:0.119551px;}
.wsc3{word-spacing:0.179327px;}
.ws27{word-spacing:0.239102px;}
.ws6e{word-spacing:0.358654px;}
.wsb8{word-spacing:0.418429px;}
.ws5e{word-spacing:0.478205px;}
.ws11f{word-spacing:0.537980px;}
.wsb3{word-spacing:0.597756px;}
.ws62{word-spacing:0.657532px;}
.ws66{word-spacing:0.717307px;}
.wsdf{word-spacing:0.777083px;}
.ws34{word-spacing:0.836858px;}
.wsc2{word-spacing:0.896634px;}
.ws4a{word-spacing:0.956410px;}
.ws13{word-spacing:1.016185px;}
.ws1d{word-spacing:1.135736px;}
.wsa2{word-spacing:1.195512px;}
.wsf8{word-spacing:1.255288px;}
.ws77{word-spacing:1.315063px;}
.ws111{word-spacing:1.374839px;}
.ws75{word-spacing:1.434614px;}
.ws80{word-spacing:1.494390px;}
.ws105{word-spacing:1.554166px;}
.ws76{word-spacing:1.613941px;}
.ws28{word-spacing:1.673717px;}
.wse3{word-spacing:1.793268px;}
.wsfb{word-spacing:1.853044px;}
.wsf1{word-spacing:1.912819px;}
.ws19{word-spacing:2.032370px;}
.ws26{word-spacing:2.092146px;}
.wsc0{word-spacing:2.211697px;}
.wsf6{word-spacing:2.271473px;}
.ws0{word-spacing:2.272433px;}
.ws114{word-spacing:2.331248px;}
.wsb6{word-spacing:2.391024px;}
.ws4d{word-spacing:2.450800px;}
.wsc4{word-spacing:2.510575px;}
.ws6{word-spacing:2.570351px;}
.ws5f{word-spacing:2.630126px;}
.wsc8{word-spacing:2.689902px;}
.wsd7{word-spacing:2.749678px;}
.ws2c{word-spacing:2.809453px;}
.ws2a{word-spacing:2.869229px;}
.ws95{word-spacing:2.929004px;}
.wsba{word-spacing:2.988780px;}
.ws52{word-spacing:3.048556px;}
.ws1a{word-spacing:3.108331px;}
.ws12b{word-spacing:3.110387px;}
.ws21{word-spacing:3.168107px;}
.ws130{word-spacing:3.169856px;}
.ws143{word-spacing:3.172898px;}
.ws4c{word-spacing:3.227882px;}
.ws2{word-spacing:3.227904px;}
.wsad{word-spacing:3.287658px;}
.ws1{word-spacing:3.299635px;}
.ws144{word-spacing:3.347434px;}
.ws150{word-spacing:3.407209px;}
.ws3c{word-spacing:3.466985px;}
.ws81{word-spacing:3.526760px;}
.wsd8{word-spacing:3.556324px;}
.wse9{word-spacing:3.586536px;}
.ws10d{word-spacing:3.646312px;}
.ws87{word-spacing:3.706087px;}
.ws89{word-spacing:3.718565px;}
.ws88{word-spacing:3.721290px;}
.ws25{word-spacing:3.765863px;}
.ws118{word-spacing:3.825638px;}
.ws79{word-spacing:3.945190px;}
.ws100{word-spacing:4.004965px;}
.ws15{word-spacing:4.064741px;}
.ws97{word-spacing:4.124516px;}
.ws68{word-spacing:4.184292px;}
.wscf{word-spacing:4.244068px;}
.ws9f{word-spacing:4.303843px;}
.ws10a{word-spacing:4.363619px;}
.wsb2{word-spacing:4.423394px;}
.ws94{word-spacing:4.483170px;}
.ws56{word-spacing:4.542946px;}
.ws55{word-spacing:4.602721px;}
.ws148{word-spacing:4.603357px;}
.ws137{word-spacing:4.603363px;}
.ws140{word-spacing:4.604024px;}
.ws12c{word-spacing:4.605618px;}
.ws13a{word-spacing:4.662497px;}
.ws165{word-spacing:4.722272px;}
.ws7f{word-spacing:4.841824px;}
.ws4e{word-spacing:4.901599px;}
.wsc{word-spacing:4.961375px;}
.ws6a{word-spacing:5.016910px;}
.wse8{word-spacing:5.021150px;}
.ws92{word-spacing:5.080926px;}
.ws45{word-spacing:5.140702px;}
.wsdc{word-spacing:5.200477px;}
.ws58{word-spacing:5.260253px;}
.ws7b{word-spacing:5.379804px;}
.wsec{word-spacing:5.439580px;}
.ws2d{word-spacing:5.499355px;}
.ws116{word-spacing:5.559131px;}
.ws44{word-spacing:5.618906px;}
.wsff{word-spacing:5.678682px;}
.ws24{word-spacing:5.738458px;}
.wsf5{word-spacing:5.825179px;}
.ws3a{word-spacing:5.858009px;}
.ws12{word-spacing:5.917784px;}
.ws11{word-spacing:5.977560px;}
.ws57{word-spacing:6.037336px;}
.ws129{word-spacing:6.097111px;}
.ws14a{word-spacing:6.156887px;}
.ws110{word-spacing:6.216662px;}
.ws73{word-spacing:6.276438px;}
.ws85{word-spacing:6.336214px;}
.ws83{word-spacing:6.378847px;}
.ws84{word-spacing:6.395989px;}
.wsf7{word-spacing:6.455765px;}
.ws5c{word-spacing:6.515540px;}
.ws134{word-spacing:6.575316px;}
.ws11c{word-spacing:6.694867px;}
.wsa1{word-spacing:6.742733px;}
.ws98{word-spacing:6.754643px;}
.wsf2{word-spacing:6.857760px;}
.ws51{word-spacing:6.874194px;}
.ws157{word-spacing:6.933970px;}
.ws35{word-spacing:6.993745px;}
.ws64{word-spacing:7.053521px;}
.ws36{word-spacing:7.113296px;}
.ws17{word-spacing:7.173072px;}
.ws6f{word-spacing:7.232848px;}
.ws16{word-spacing:7.292623px;}
.ws86{word-spacing:7.342565px;}
.ws8{word-spacing:7.352399px;}
.wsfe{word-spacing:7.412174px;}
.ws1f{word-spacing:7.531726px;}
.ws10{word-spacing:7.591501px;}
.ws3d{word-spacing:7.651277px;}
.wsa3{word-spacing:7.711052px;}
.wsc6{word-spacing:7.770828px;}
.wse0{word-spacing:7.830604px;}
.ws103{word-spacing:7.890379px;}
.ws72{word-spacing:7.950155px;}
.ws10c{word-spacing:8.009930px;}
.ws61{word-spacing:8.069706px;}
.ws13d{word-spacing:8.129482px;}
.ws155{word-spacing:8.177334px;}
.wsb4{word-spacing:8.189257px;}
.ws9d{word-spacing:8.249033px;}
.ws3b{word-spacing:8.308808px;}
.wsef{word-spacing:8.428360px;}
.ws10f{word-spacing:8.488135px;}
.wsde{word-spacing:8.547911px;}
.wsf4{word-spacing:8.576782px;}
.wsf0{word-spacing:8.607686px;}
.ws6d{word-spacing:8.667462px;}
.ws11d{word-spacing:8.787013px;}
.ws3e{word-spacing:8.846789px;}
.ws39{word-spacing:8.906564px;}
.ws2e{word-spacing:8.966340px;}
.ws7a{word-spacing:9.026116px;}
.wsf{word-spacing:9.085891px;}
.ws12d{word-spacing:9.145667px;}
.wsbf{word-spacing:9.265218px;}
.ws1c{word-spacing:9.324994px;}
.ws40{word-spacing:9.384769px;}
.ws3f{word-spacing:9.441438px;}
.ws38{word-spacing:9.444545px;}
.ws12a{word-spacing:9.504320px;}
.wsa0{word-spacing:9.528910px;}
.ws7{word-spacing:9.623872px;}
.wsaa{word-spacing:9.683647px;}
.ws48{word-spacing:9.743423px;}
.wse{word-spacing:9.862974px;}
.wsd1{word-spacing:9.922750px;}
.wse6{word-spacing:10.042301px;}
.ws15f{word-spacing:10.102076px;}
.ws11e{word-spacing:10.221628px;}
.wseb{word-spacing:10.281403px;}
.wse7{word-spacing:10.341179px;}
.wsd{word-spacing:10.400954px;}
.ws104{word-spacing:10.460730px;}
.wsab{word-spacing:10.580281px;}
.ws2f{word-spacing:10.699832px;}
.wsfc{word-spacing:10.759608px;}
.wsc1{word-spacing:10.819384px;}
.ws2b{word-spacing:10.861463px;}
.ws50{word-spacing:10.879159px;}
.wsc5{word-spacing:10.938935px;}
.ws41{word-spacing:10.998710px;}
.wsc7{word-spacing:11.058486px;}
.wsfd{word-spacing:11.118262px;}
.ws133{word-spacing:11.178037px;}
.wsa8{word-spacing:11.178910px;}
.ws6c{word-spacing:11.237813px;}
.ws63{word-spacing:11.297588px;}
.wsea{word-spacing:11.357364px;}
.wsd9{word-spacing:11.400023px;}
.wscc{word-spacing:11.417140px;}
.ws149{word-spacing:11.536691px;}
.ws139{word-spacing:11.596466px;}
.ws101{word-spacing:11.656242px;}
.ws14c{word-spacing:11.716018px;}
.ws9e{word-spacing:11.775793px;}
.wsd2{word-spacing:11.835569px;}
.ws138{word-spacing:11.895344px;}
.ws37{word-spacing:11.955120px;}
.ws46{word-spacing:12.014896px;}
.ws9{word-spacing:12.134447px;}
.ws90{word-spacing:12.253998px;}
.ws91{word-spacing:12.313774px;}
.ws142{word-spacing:12.433325px;}
.ws10b{word-spacing:12.493100px;}
.wsa6{word-spacing:12.612652px;}
.ws33{word-spacing:12.672427px;}
.wsce{word-spacing:12.732203px;}
.wsbb{word-spacing:12.932624px;}
.ws43{word-spacing:13.031081px;}
.ws15b{word-spacing:13.150632px;}
.ws8d{word-spacing:13.210408px;}
.ws70{word-spacing:13.220624px;}
.ws7e{word-spacing:13.246306px;}
.ws122{word-spacing:13.270183px;}
.wsae{word-spacing:13.316624px;}
.ws152{word-spacing:13.389734px;}
.wsdb{word-spacing:13.509286px;}
.ws9c{word-spacing:13.927715px;}
.ws15c{word-spacing:14.036624px;}
.ws99{word-spacing:14.047266px;}
.ws10e{word-spacing:14.107042px;}
.ws8f{word-spacing:14.226593px;}
.ws163{word-spacing:14.264624px;}
.ws141{word-spacing:14.346144px;}
.wsf9{word-spacing:14.414624px;}
.wsd3{word-spacing:14.884124px;}
.wsc9{word-spacing:14.943900px;}
.ws14e{word-spacing:15.123227px;}
.ws1b{word-spacing:15.661207px;}
.ws59{word-spacing:15.729999px;}
.ws14d{word-spacing:15.840534px;}
.ws160{word-spacing:16.118624px;}
.ws161{word-spacing:16.124624px;}
.wsaf{word-spacing:16.426445px;}
.ws13e{word-spacing:16.438290px;}
.ws82{word-spacing:16.498066px;}
.ws8c{word-spacing:16.677392px;}
.wsd4{word-spacing:16.916495px;}
.ws119{word-spacing:16.926910px;}
.wscd{word-spacing:17.334924px;}
.ws128{word-spacing:17.633802px;}
.ws31{word-spacing:17.753353px;}
.ws120{word-spacing:17.992456px;}
.ws146{word-spacing:18.291334px;}
.ws121{word-spacing:18.470660px;}
.wsca{word-spacing:18.716624px;}
.ws145{word-spacing:18.829314px;}
.ws13f{word-spacing:18.948865px;}
.ws151{word-spacing:19.187968px;}
.ws32{word-spacing:19.606397px;}
.wsbc{word-spacing:19.700624px;}
.ws93{word-spacing:19.725948px;}
.ws71{word-spacing:19.844624px;}
.ws123{word-spacing:20.263928px;}
.ws9a{word-spacing:20.474624px;}
.ws147{word-spacing:20.921460px;}
.ws15d{word-spacing:21.062624px;}
.ws135{word-spacing:21.160562px;}
.ws162{word-spacing:21.324688px;}
.ws164{word-spacing:21.404624px;}
.wsfa{word-spacing:21.632624px;}
.wsa{word-spacing:22.057196px;}
.ws126{word-spacing:22.415850px;}
.ws127{word-spacing:24.029791px;}
.wsb0{word-spacing:24.926425px;}
.ws15e{word-spacing:25.414969px;}
.ws158{word-spacing:25.426554px;}
.ws30{word-spacing:25.643732px;}
.wsac{word-spacing:27.018571px;}
.ws124{word-spacing:27.317449px;}
.wscb{word-spacing:28.082624px;}
.ws14b{word-spacing:29.050942px;}
.ws136{word-spacing:29.828024px;}
.ws13b{word-spacing:30.306229px;}
.wsda{word-spacing:30.366005px;}
.ws125{word-spacing:30.664883px;}
.ws9b{word-spacing:30.704624px;}
.ws132{word-spacing:31.800619px;}
.ws12e{word-spacing:31.979946px;}
.wsd5{word-spacing:32.876580px;}
.ws153{word-spacing:37.658628px;}
.ws12f{word-spacing:37.718404px;}
.ws67{word-spacing:51.648067px;}
.ws131{word-spacing:55.471757px;}
.ws5{word-spacing:61.974920px;}
.wsb5{word-spacing:109.269797px;}
.ws8e{word-spacing:199.237492px;}
.ws8b{word-spacing:373.513428px;}
._30{margin-left:-30.688496px;}
._2f{margin-left:-29.649744px;}
._34{margin-left:-10.674752px;}
._32{margin-left:-9.246828px;}
._27{margin-left:-7.400215px;}
._2{margin-left:-5.813837px;}
._e{margin-left:-4.004965px;}
._0{margin-left:-2.582310px;}
._3{margin-left:-1.078996px;}
._5{width:1.028144px;}
._1{width:2.479018px;}
._4{width:3.630217px;}
._35{width:5.828400px;}
._10{width:6.867344px;}
._1e{width:8.590573px;}
._23{width:12.301814px;}
._1c{width:14.720401px;}
._25{width:16.784984px;}
._28{width:18.410885px;}
._f{width:19.857458px;}
._1f{width:20.873644px;}
._6{width:22.726687px;}
._b{width:24.460180px;}
._d{width:25.775243px;}
._9{width:27.628286px;}
._18{width:29.588922px;}
._19{width:30.844210px;}
._12{width:31.855048px;}
._21{width:33.432934px;}
._2b{width:34.598113px;}
._c{width:35.638217px;}
._1a{width:36.702218px;}
._1b{width:38.065098px;}
._8{width:39.153018px;}
._a{width:40.719143px;}
._26{width:42.037850px;}
._11{width:43.875290px;}
._15{width:45.587899px;}
._7{width:48.298685px;}
._17{width:49.852850px;}
._2a{width:51.120097px;}
._13{width:52.841630px;}
._2d{width:53.994762px;}
._29{width:56.141248px;}
._20{width:57.384576px;}
._24{width:61.090663px;}
._16{width:62.465502px;}
._1d{width:65.334731px;}
._22{width:71.732803px;}
._2c{width:84.511906px;}
._14{width:85.957313px;}
._33{width:101.672362px;}
._31{width:102.883232px;}
._2e{width:107.596080px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(255,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fse{font-size:17.329950px;}
.fsd{font-size:18.242080px;}
.fs8{font-size:21.310360px;}
.fsc{font-size:24.757258px;}
.fs11{font-size:25.034776px;}
.fsf{font-size:26.060189px;}
.fs12{font-size:26.352312px;}
.fsa{font-size:28.081889px;}
.fs9{font-size:28.997491px;}
.fs7{font-size:29.887800px;}
.fs10{font-size:30.963112px;}
.fsb{font-size:31.391399px;}
.fs5{font-size:41.842800px;}
.fs2{font-size:47.820600px;}
.fs6{font-size:56.787000px;}
.fs4{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs13{font-size:76.984432px;}
.fs3{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y171{bottom:0.443262px;}
.y177{bottom:0.526595px;}
.yb1{bottom:0.534759px;}
.y173{bottom:0.546099px;}
.y175{bottom:0.591755px;}
.yaf{bottom:0.622459px;}
.y1b0{bottom:0.653950px;}
.y1b3{bottom:0.755967px;}
.y1a9{bottom:0.780817px;}
.y1bb{bottom:0.817875px;}
.y195{bottom:0.829188px;}
.y197{bottom:0.990050px;}
.y1be{bottom:1.210144px;}
.y9f{bottom:1.500000px;}
.y180{bottom:1.663500px;}
.ya7{bottom:1.696500px;}
.ya1{bottom:1.746000px;}
.y72{bottom:1.791000px;}
.y27f{bottom:2.033505px;}
.y27d{bottom:2.428005px;}
.y1b9{bottom:2.447082px;}
.yaa{bottom:3.786000px;}
.ya5{bottom:3.993000px;}
.y17a{bottom:4.659000px;}
.y2d{bottom:9.168000px;}
.y18a{bottom:12.016500px;}
.y1ca{bottom:16.261500px;}
.yac{bottom:16.888500px;}
.ya4{bottom:18.189000px;}
.y17c{bottom:19.723500px;}
.y179{bottom:22.591500px;}
.y16f{bottom:25.008000px;}
.y18d{bottom:25.371000px;}
.y284{bottom:27.021214px;}
.yab{bottom:28.873500px;}
.y17e{bottom:28.954500px;}
.y282{bottom:29.408549px;}
.y18c{bottom:30.318000px;}
.y1c9{bottom:31.029000px;}
.ya9{bottom:35.956500px;}
.y17b{bottom:37.656000px;}
.y1d0{bottom:49.666500px;}
.y1ce{bottom:51.640500px;}
.yd9{bottom:54.000000px;}
.y130{bottom:56.113500px;}
.y1f5{bottom:56.482500px;}
.y228{bottom:56.808000px;}
.y70{bottom:61.194000px;}
.y1ee{bottom:64.128000px;}
.y2b{bottom:67.974000px;}
.y16d{bottom:69.271500px;}
.yd8{bottom:71.932500px;}
.y12f{bottom:74.046000px;}
.y1f4{bottom:74.415000px;}
.y227{bottom:74.740500px;}
.y6f{bottom:79.126500px;}
.y1ed{bottom:82.060500px;}
.y2a{bottom:85.906500px;}
.y16c{bottom:87.204000px;}
.yd7{bottom:89.866500px;}
.y12e{bottom:91.978500px;}
.y226{bottom:92.673000px;}
.y6e{bottom:97.059000px;}
.y1ec{bottom:99.993000px;}
.y9d{bottom:100.495500px;}
.y1d6{bottom:101.731500px;}
.y29{bottom:103.839000px;}
.y16b{bottom:105.136500px;}
.yd6{bottom:107.799000px;}
.y1f3{bottom:109.492500px;}
.y12d{bottom:109.911000px;}
.y225{bottom:110.607000px;}
.y6d{bottom:114.993000px;}
.y1eb{bottom:117.925500px;}
.y9c{bottom:118.428000px;}
.y1d5{bottom:119.664000px;}
.y193{bottom:120.490500px;}
.y28{bottom:121.773000px;}
.y16a{bottom:123.069000px;}
.yd5{bottom:125.731500px;}
.y12c{bottom:127.843500px;}
.y6c{bottom:132.925500px;}
.y1ea{bottom:135.858000px;}
.y9b{bottom:136.360500px;}
.y1d4{bottom:137.596500px;}
.y192{bottom:138.423000px;}
.y27{bottom:139.705500px;}
.y224{bottom:140.494500px;}
.y169{bottom:141.003000px;}
.yd4{bottom:143.664000px;}
.y12b{bottom:145.777500px;}
.yf3{bottom:149.040000px;}
.y6b{bottom:150.858000px;}
.y1e9{bottom:153.792000px;}
.y9a{bottom:154.293000px;}
.y1d3{bottom:155.530500px;}
.y191{bottom:156.355500px;}
.y26{bottom:157.638000px;}
.y223{bottom:158.427000px;}
.y168{bottom:158.935500px;}
.yd3{bottom:161.596500px;}
.y12a{bottom:163.710000px;}
.yf2{bottom:166.974000px;}
.y6a{bottom:168.790500px;}
.y1e8{bottom:171.724500px;}
.y99{bottom:172.225500px;}
.y25a{bottom:172.299000px;}
.y1d2{bottom:173.463000px;}
.y190{bottom:174.289500px;}
.y222{bottom:176.359500px;}
.y167{bottom:176.868000px;}
.yd2{bottom:179.529000px;}
.y129{bottom:181.642500px;}
.yf1{bottom:184.906500px;}
.y69{bottom:186.723000px;}
.y1e7{bottom:189.657000px;}
.y98{bottom:190.158000px;}
.y259{bottom:190.231500px;}
.y25{bottom:192.552000px;}
.y221{bottom:194.292000px;}
.y166{bottom:194.800500px;}
.yd1{bottom:197.463000px;}
.y128{bottom:199.575000px;}
.yf0{bottom:202.839000px;}
.y68{bottom:204.655500px;}
.y1e6{bottom:207.589500px;}
.y188{bottom:207.966000px;}
.y97{bottom:208.092000px;}
.y187{bottom:208.129500px;}
.y258{bottom:208.164000px;}
.y165{bottom:212.733000px;}
.y1cd{bottom:215.025000px;}
.yd0{bottom:215.395500px;}
.y127{bottom:217.507500px;}
.yef{bottom:220.771500px;}
.y67{bottom:222.589500px;}
.y189{bottom:222.930000px;}
.y220{bottom:224.181000px;}
.y1e5{bottom:225.522000px;}
.y96{bottom:226.024500px;}
.y257{bottom:226.098000px;}
.y164{bottom:230.665500px;}
.ycf{bottom:233.328000px;}
.y126{bottom:235.440000px;}
.yee{bottom:238.704000px;}
.y66{bottom:240.522000px;}
.y24{bottom:241.993500px;}
.y21f{bottom:242.113500px;}
.y1e4{bottom:243.454500px;}
.y95{bottom:243.957000px;}
.y163{bottom:248.599500px;}
.yce{bottom:251.260500px;}
.y125{bottom:253.374000px;}
.y256{bottom:254.731500px;}
.yed{bottom:256.636500px;}
.y65{bottom:258.454500px;}
.y23{bottom:259.926000px;}
.y21e{bottom:260.046000px;}
.y1e3{bottom:261.388500px;}
.y94{bottom:261.889500px;}
.y162{bottom:266.532000px;}
.y124{bottom:271.306500px;}
.y255{bottom:272.665500px;}
.yec{bottom:274.570500px;}
.y64{bottom:276.387000px;}
.y22{bottom:277.858500px;}
.y1e2{bottom:279.321000px;}
.y93{bottom:279.822000px;}
.ycb{bottom:281.703000px;}
.y1cb{bottom:283.054500px;}
.y161{bottom:284.464500px;}
.y123{bottom:289.239000px;}
.y21d{bottom:289.933500px;}
.ycd{bottom:290.008500px;}
.y254{bottom:290.598000px;}
.yeb{bottom:292.503000px;}
.y63{bottom:294.319500px;}
.y21{bottom:295.792500px;}
.y1e1{bottom:297.253500px;}
.yca{bottom:300.259500px;}
.y160{bottom:302.397000px;}
.y122{bottom:307.171500px;}
.y92{bottom:307.416000px;}
.y21c{bottom:307.866000px;}
.y253{bottom:308.530500px;}
.yea{bottom:310.435500px;}
.ycc{bottom:310.570500px;}
.y62{bottom:312.252000px;}
.y20{bottom:313.725000px;}
.y1e0{bottom:315.186000px;}
.y15f{bottom:320.329500px;}
.y121{bottom:325.104000px;}
.y21b{bottom:325.800000px;}
.y288{bottom:326.170500px;}
.y252{bottom:326.463000px;}
.yc9{bottom:327.157500px;}
.y61{bottom:330.186000px;}
.y18b{bottom:330.931500px;}
.y1f{bottom:331.657500px;}
.y1df{bottom:333.118500px;}
.ye9{bottom:338.029500px;}
.y15e{bottom:338.262000px;}
.y120{bottom:343.036500px;}
.y21a{bottom:343.732500px;}
.y287{bottom:344.103000px;}
.y251{bottom:344.395500px;}
.yc8{bottom:345.109500px;}
.y60{bottom:348.118500px;}
.y91{bottom:349.270500px;}
.y1e{bottom:349.590000px;}
.y1de{bottom:351.051000px;}
.y15d{bottom:356.196000px;}
.y1cf{bottom:359.025000px;}
.y11f{bottom:360.970500px;}
.y219{bottom:361.665000px;}
.y286{bottom:362.035500px;}
.y5f{bottom:366.051000px;}
.y90{bottom:367.203000px;}
.y1d{bottom:367.522500px;}
.y1dd{bottom:368.985000px;}
.y250{bottom:373.030500px;}
.yc7{bottom:373.624500px;}
.y15c{bottom:374.128500px;}
.y11e{bottom:378.903000px;}
.ye8{bottom:379.884000px;}
.y285{bottom:379.968000px;}
.y5e{bottom:383.983500px;}
.y8f{bottom:385.137000px;}
.y1c{bottom:385.455000px;}
.y1dc{bottom:386.917500px;}
.y24f{bottom:390.963000px;}
.y218{bottom:391.552500px;}
.yc6{bottom:391.557000px;}
.y15b{bottom:392.061000px;}
.y11d{bottom:396.835500px;}
.ye7{bottom:397.816500px;}
.y5d{bottom:401.916000px;}
.y8e{bottom:403.069500px;}
.y1b{bottom:403.389000px;}
.y1db{bottom:404.850000px;}
.y24e{bottom:408.897000px;}
.y217{bottom:409.485000px;}
.yc5{bottom:409.489500px;}
.y1f2{bottom:409.993500px;}
.y11c{bottom:414.768000px;}
.ye6{bottom:415.749000px;}
.y5c{bottom:419.848500px;}
.y8d{bottom:421.002000px;}
.y1a{bottom:421.321500px;}
.y1da{bottom:422.782500px;}
.y24d{bottom:426.829500px;}
.y1c8{bottom:427.054500px;}
.y15a{bottom:427.138500px;}
.y216{bottom:427.417500px;}
.y18e{bottom:430.926000px;}
.y11b{bottom:432.700500px;}
.ye5{bottom:433.681500px;}
.y283{bottom:436.379170px;}
.yc4{bottom:437.656500px;}
.y5b{bottom:437.782500px;}
.y8c{bottom:438.934500px;}
.y19{bottom:439.254000px;}
.y1d9{bottom:440.715000px;}
.y24c{bottom:444.762000px;}
.y1f1{bottom:445.071000px;}
.y215{bottom:445.351500px;}
.y18f{bottom:446.530500px;}
.y11a{bottom:450.633000px;}
.yc3{bottom:451.272000px;}
.ye4{bottom:451.615500px;}
.y5a{bottom:455.715000px;}
.y8b{bottom:456.867000px;}
.y1d8{bottom:458.647500px;}
.y24b{bottom:462.694500px;}
.y214{bottom:463.284000px;}
.y119{bottom:468.567000px;}
.ye3{bottom:469.548000px;}
.y59{bottom:473.647500px;}
.y18{bottom:474.168000px;}
.y8a{bottom:474.799500px;}
.y159{bottom:476.581500px;}
.y213{bottom:481.216500px;}
.y118{bottom:486.499500px;}
.ye2{bottom:487.480500px;}
.y24a{bottom:491.329500px;}
.y58{bottom:491.580000px;}
.y1cc{bottom:492.292500px;}
.y89{bottom:492.733500px;}
.y1d1{bottom:492.747000px;}
.yc2{bottom:493.228500px;}
.y158{bottom:494.514000px;}
.y117{bottom:504.432000px;}
.ye1{bottom:505.413000px;}
.y249{bottom:509.262000px;}
.y57{bottom:509.512500px;}
.y88{bottom:510.666000px;}
.y212{bottom:511.104000px;}
.yc1{bottom:511.161000px;}
.y157{bottom:512.446500px;}
.y116{bottom:522.364500px;}
.ye0{bottom:523.345500px;}
.y17{bottom:523.609500px;}
.y248{bottom:527.194500px;}
.y56{bottom:527.445000px;}
.y87{bottom:528.598500px;}
.y211{bottom:529.036500px;}
.yc0{bottom:529.093500px;}
.y156{bottom:530.379000px;}
.y115{bottom:540.297000px;}
.ydf{bottom:541.278000px;}
.y16{bottom:541.542000px;}
.y247{bottom:545.128500px;}
.y55{bottom:545.379000px;}
.y86{bottom:546.531000px;}
.y210{bottom:546.970500px;}
.ybf{bottom:547.027500px;}
.y155{bottom:548.311500px;}
.y114{bottom:558.229500px;}
.yde{bottom:559.212000px;}
.y15{bottom:559.474500px;}
.y246{bottom:563.061000px;}
.y54{bottom:563.311500px;}
.y85{bottom:564.463500px;}
.y20f{bottom:564.903000px;}
.ybe{bottom:564.960000px;}
.y154{bottom:566.244000px;}
.y113{bottom:576.163500px;}
.y14{bottom:577.408500px;}
.y245{bottom:580.993500px;}
.y53{bottom:581.244000px;}
.ybd{bottom:582.892500px;}
.y153{bottom:584.178000px;}
.y278{bottom:586.387500px;}
.ydd{bottom:586.806000px;}
.y84{bottom:592.057500px;}
.y112{bottom:594.096000px;}
.y20e{bottom:594.790500px;}
.y13{bottom:595.341000px;}
.y52{bottom:599.176500px;}
.ybc{bottom:600.825000px;}
.y152{bottom:602.110500px;}
.y186{bottom:602.874000px;}
.y277{bottom:604.320000px;}
.y1c7{bottom:606.411000px;}
.y244{bottom:609.628500px;}
.y111{bottom:612.028500px;}
.y20d{bottom:612.723000px;}
.y12{bottom:613.273500px;}
.y151{bottom:616.057500px;}
.y51{bottom:617.109000px;}
.ybb{bottom:617.637000px;}
.y150{bottom:620.043000px;}
.y185{bottom:620.806500px;}
.y276{bottom:622.252500px;}
.y1c6{bottom:624.343500px;}
.y243{bottom:627.561000px;}
.ydc{bottom:628.659000px;}
.y110{bottom:629.961000px;}
.y20c{bottom:630.655500px;}
.y83{bottom:631.081500px;}
.y11{bottom:631.206000px;}
.y50{bottom:635.041500px;}
.yb8{bottom:636.690000px;}
.y14f{bottom:637.975500px;}
.y184{bottom:638.739000px;}
.y275{bottom:640.186500px;}
.y1c5{bottom:642.276000px;}
.y242{bottom:645.493500px;}
.ydb{bottom:646.593000px;}
.y10f{bottom:647.893500px;}
.yba{bottom:652.879500px;}
.y4f{bottom:652.975500px;}
.y14e{bottom:655.908000px;}
.y183{bottom:656.671500px;}
.yb9{bottom:657.156000px;}
.y1c4{bottom:660.208500px;}
.y20b{bottom:660.544500px;}
.y241{bottom:663.426000px;}
.y281{bottom:664.131730px;}
.yda{bottom:664.525500px;}
.y10e{bottom:665.826000px;}
.y10{bottom:665.955000px;}
.y4e{bottom:667.198500px;}
.y4d{bottom:670.908000px;}
.y14d{bottom:673.840500px;}
.y1f0{bottom:673.842000px;}
.y182{bottom:674.605500px;}
.y274{bottom:675.099000px;}
.y1c3{bottom:678.141000px;}
.y20a{bottom:678.477000px;}
.y82{bottom:680.523000px;}
.yb7{bottom:682.458000px;}
.y10d{bottom:683.760000px;}
.y4c{bottom:688.840500px;}
.y14c{bottom:691.774500px;}
.y240{bottom:692.061000px;}
.y1c2{bottom:696.075000px;}
.y209{bottom:696.409500px;}
.y81{bottom:698.455500px;}
.y10c{bottom:701.692500px;}
.y4b{bottom:706.773000px;}
.y181{bottom:708.802500px;}
.y14b{bottom:709.707000px;}
.y23f{bottom:709.993500px;}
.y1c1{bottom:714.007500px;}
.y208{bottom:714.342000px;}
.yf{bottom:715.398000px;}
.y80{bottom:716.388000px;}
.y10b{bottom:719.625000px;}
.y273{bottom:724.542000px;}
.y4a{bottom:724.705500px;}
.y17d{bottom:725.080500px;}
.y14a{bottom:727.639500px;}
.y23e{bottom:727.927500px;}
.yb6{bottom:730.368000px;}
.y207{bottom:732.274500px;}
.ye{bottom:733.330500px;}
.y7f{bottom:734.322000px;}
.y10a{bottom:737.557500px;}
.y272{bottom:742.474500px;}
.y49{bottom:742.638000px;}
.y149{bottom:745.572000px;}
.y23d{bottom:745.860000px;}
.y1a8{bottom:747.982550px;}
.yb5{bottom:748.300500px;}
.y206{bottom:750.208500px;}
.yd{bottom:751.263000px;}
.y7e{bottom:752.254500px;}
.y109{bottom:755.490000px;}
.y1bd{bottom:756.058719px;}
.y48{bottom:756.862500px;}
.y271{bottom:760.407000px;}
.y47{bottom:760.572000px;}
.y148{bottom:763.504500px;}
.y23c{bottom:763.792500px;}
.y1aa{bottom:764.230550px;}
.yb4{bottom:766.233000px;}
.y205{bottom:768.141000px;}
.yc{bottom:769.195500px;}
.y7d{bottom:770.187000px;}
.y108{bottom:773.422500px;}
.y270{bottom:778.339500px;}
.y46{bottom:778.504500px;}
.y147{bottom:781.437000px;}
.y1ef{bottom:781.438500px;}
.yb3{bottom:784.167000px;}
.y1ab{bottom:785.518550px;}
.y204{bottom:786.073500px;}
.yb{bottom:787.128000px;}
.y7c{bottom:788.119500px;}
.y23b{bottom:792.427500px;}
.y26f{bottom:796.272000px;}
.y45{bottom:796.437000px;}
.y146{bottom:799.371000px;}
.y1b1{bottom:801.478550px;}
.yb2{bottom:802.099500px;}
.y7b{bottom:806.052000px;}
.y1ac{bottom:806.805050px;}
.y107{bottom:809.010000px;}
.y23a{bottom:810.360000px;}
.y26e{bottom:814.206000px;}
.y44{bottom:814.369500px;}
.y203{bottom:815.961000px;}
.y145{bottom:817.303500px;}
.ya{bottom:822.042000px;}
.y7a{bottom:823.984500px;}
.y1ad{bottom:828.093050px;}
.y239{bottom:828.292500px;}
.y2c{bottom:828.841500px;}
.y26d{bottom:832.138500px;}
.y43{bottom:832.302000px;}
.y202{bottom:833.893500px;}
.y144{bottom:835.236000px;}
.y1ae{bottom:841.764050px;}
.y79{bottom:841.918500px;}
.y1af{bottom:849.505550px;}
.y26c{bottom:850.071000px;}
.y42{bottom:850.234500px;}
.y201{bottom:851.826000px;}
.y143{bottom:853.168500px;}
.y238{bottom:856.927500px;}
.y1b2{bottom:857.869550px;}
.y1b5{bottom:858.205550px;}
.y1b6{bottom:858.384050px;}
.y106{bottom:858.451500px;}
.y1b4{bottom:858.466550px;}
.y78{bottom:859.851000px;}
.y1c0{bottom:863.142000px;}
.y9{bottom:863.755500px;}
.y1b7{bottom:866.640050px;}
.y26b{bottom:868.003500px;}
.y41{bottom:868.168500px;}
.y200{bottom:869.760000px;}
.y142{bottom:871.101000px;}
.y237{bottom:874.860000px;}
.y105{bottom:876.384000px;}
.y27c{bottom:877.777866px;}
.y77{bottom:877.783500px;}
.y27e{bottom:878.172366px;}
.y1b8{bottom:880.501125px;}
.ya6{bottom:882.780000px;}
.y26a{bottom:885.936000px;}
.y40{bottom:886.101000px;}
.y1ff{bottom:887.692500px;}
.y1d7{bottom:889.033500px;}
.y141{bottom:889.035000px;}
.y236{bottom:892.792500px;}
.y104{bottom:894.316500px;}
.y76{bottom:895.716000px;}
.y176{bottom:896.736738px;}
.y196{bottom:899.554812px;}
.y194{bottom:899.712312px;}
.y174{bottom:902.729238px;}
.y172{bottom:903.009738px;}
.y170{bottom:903.111738px;}
.y269{bottom:903.868500px;}
.y3f{bottom:904.033500px;}
.y140{bottom:906.967500px;}
.y1a1{bottom:908.506812px;}
.y235{bottom:910.726500px;}
.y103{bottom:912.249000px;}
.y1a4{bottom:915.196812px;}
.y1fe{bottom:917.580000px;}
.y268{bottom:921.802500px;}
.y3e{bottom:921.966000px;}
.y8{bottom:923.406000px;}
.y198{bottom:923.635812px;}
.y13f{bottom:924.900000px;}
.y102{bottom:930.183000px;}
.y1fd{bottom:935.512500px;}
.y3d{bottom:935.914500px;}
.yad{bottom:936.601500px;}
.y234{bottom:939.361500px;}
.y267{bottom:939.735000px;}
.y3c{bottom:939.898500px;}
.y75{bottom:941.793000px;}
.y13e{bottom:942.832500px;}
.y280{bottom:943.244526px;}
.y101{bottom:948.115500px;}
.y17f{bottom:948.802500px;}
.y1a3{bottom:952.224312px;}
.yb0{bottom:952.292241px;}
.y199{bottom:953.419812px;}
.y1fc{bottom:953.445000px;}
.y233{bottom:957.294000px;}
.y266{bottom:957.667500px;}
.y3b{bottom:957.832500px;}
.yae{bottom:959.517741px;}
.y74{bottom:959.725500px;}
.y13d{bottom:960.765000px;}
.y16e{bottom:965.080500px;}
.y100{bottom:966.048000px;}
.y1fb{bottom:971.379000px;}
.y232{bottom:975.226500px;}
.y265{bottom:975.600000px;}
.y3a{bottom:975.765000px;}
.y1ba{bottom:976.567125px;}
.y73{bottom:977.659500px;}
.y7{bottom:977.733000px;}
.y13c{bottom:978.697500px;}
.y19a{bottom:983.518812px;}
.yff{bottom:983.980500px;}
.y231{bottom:993.159000px;}
.y1a7{bottom:993.274812px;}
.y264{bottom:993.532500px;}
.y39{bottom:993.697500px;}
.y13b{bottom:996.631500px;}
.y6{bottom:998.655000px;}
.ya2{bottom:1000.771500px;}
.y1fa{bottom:1001.266500px;}
.yfe{bottom:1001.913000px;}
.y38{bottom:1007.644500px;}
.y230{bottom:1011.091500px;}
.y263{bottom:1011.465000px;}
.y37{bottom:1011.630000px;}
.y19b{bottom:1013.304312px;}
.y13a{bottom:1014.564000px;}
.y1f9{bottom:1019.199000px;}
.y27b{bottom:1019.572500px;}
.y5{bottom:1019.577000px;}
.yfd{bottom:1019.845500px;}
.y1bc{bottom:1022.129625px;}
.y1a6{bottom:1024.698312px;}
.y22f{bottom:1029.024000px;}
.y262{bottom:1029.399000px;}
.y36{bottom:1029.562500px;}
.y139{bottom:1032.496500px;}
.y1f8{bottom:1037.131500px;}
.yfc{bottom:1037.779500px;}
.y19c{bottom:1043.245812px;}
.y261{bottom:1047.331500px;}
.y35{bottom:1047.495000px;}
.y4{bottom:1048.935000px;}
.y138{bottom:1050.429000px;}
.y1f7{bottom:1055.064000px;}
.yfb{bottom:1055.712000px;}
.y22e{bottom:1057.659000px;}
.y260{bottom:1065.264000px;}
.y34{bottom:1065.429000px;}
.y1a5{bottom:1066.242312px;}
.y137{bottom:1068.361500px;}
.y3{bottom:1069.855500px;}
.y19d{bottom:1073.344812px;}
.yfa{bottom:1073.644500px;}
.y22d{bottom:1075.593000px;}
.y25f{bottom:1083.196500px;}
.y33{bottom:1083.361500px;}
.y136{bottom:1086.294000px;}
.y1f6{bottom:1090.650000px;}
.yf9{bottom:1091.577000px;}
.y22c{bottom:1093.525500px;}
.y178{bottom:1097.080500px;}
.y27a{bottom:1098.249000px;}
.y25e{bottom:1101.129000px;}
.y32{bottom:1101.294000px;}
.y19e{bottom:1103.130312px;}
.y135{bottom:1104.228000px;}
.yf8{bottom:1109.509500px;}
.y22b{bottom:1111.458000px;}
.y2{bottom:1113.193500px;}
.ya8{bottom:1113.835500px;}
.y25d{bottom:1119.061500px;}
.y31{bottom:1119.226500px;}
.y1a2{bottom:1120.708812px;}
.y134{bottom:1122.160500px;}
.yf7{bottom:1127.442000px;}
.y22a{bottom:1129.390500px;}
.y279{bottom:1131.126000px;}
.y19f{bottom:1133.071812px;}
.y25c{bottom:1136.995500px;}
.y30{bottom:1137.159000px;}
.y133{bottom:1140.093000px;}
.yf6{bottom:1145.376000px;}
.y1{bottom:1146.070500px;}
.y229{bottom:1147.323000px;}
.y1a0{bottom:1148.041812px;}
.y1bf{bottom:1151.142000px;}
.y25b{bottom:1154.928000px;}
.y2f{bottom:1155.091500px;}
.y132{bottom:1158.025500px;}
.ya0{bottom:1166.763000px;}
.y9e{bottom:1167.226500px;}
.yf5{bottom:1172.970000px;}
.y131{bottom:1175.958000px;}
.ya3{bottom:1181.196000px;}
.y2e{bottom:1190.005500px;}
.yf4{bottom:1193.890500px;}
.y71{bottom:1196.250000px;}
.h1c{height:0.000000px;}
.h29{height:3.202568px;}
.h2b{height:4.568258px;}
.h1f{height:4.910692px;}
.h21{height:4.918713px;}
.h45{height:5.668443px;}
.h3f{height:5.717489px;}
.h44{height:5.770459px;}
.h46{height:5.831931px;}
.h3e{height:5.844356px;}
.h3c{height:5.986917px;}
.h2e{height:6.135189px;}
.h2d{height:6.200349px;}
.h4c{height:6.280847px;}
.h41{height:6.746153px;}
.h43{height:6.826589px;}
.h3b{height:6.983421px;}
.h3a{height:7.144284px;}
.h37{height:7.249591px;}
.h39{height:7.410453px;}
.h48{height:8.958185px;}
.h1a{height:12.007500px;}
.h4e{height:13.114500px;}
.h32{height:13.278000px;}
.h33{height:13.405500px;}
.h11{height:13.732500px;}
.h14{height:13.797000px;}
.h2c{height:14.125190px;}
.h16{height:14.260500px;}
.h20{height:15.790977px;}
.h40{height:16.440316px;}
.h36{height:16.600500px;}
.h54{height:17.778934px;}
.h47{height:18.085771px;}
.h52{height:18.173434px;}
.h3d{height:18.345128px;}
.h4d{height:18.550769px;}
.h4b{height:20.561377px;}
.h2a{height:21.487141px;}
.h42{height:22.297617px;}
.h49{height:22.943666px;}
.h38{height:23.261027px;}
.h19{height:28.327500px;}
.h1e{height:28.422000px;}
.h1d{height:31.382100px;}
.h5{height:32.278905px;}
.h30{height:34.206000px;}
.h2f{height:34.533000px;}
.h18{height:35.435065px;}
.h1b{height:38.952000px;}
.h12{height:42.079167px;}
.h4f{height:42.970500px;}
.h15{height:44.293720px;}
.h8{height:44.831700px;}
.h50{height:44.837700px;}
.he{height:45.833296px;}
.h31{height:49.597500px;}
.hd{height:49.975733px;}
.h9{height:49.981733px;}
.h13{height:50.211840px;}
.h51{height:50.498765px;}
.h27{height:53.072100px;}
.h24{height:53.078100px;}
.h6{height:53.798400px;}
.h22{height:56.066100px;}
.h25{height:56.784000px;}
.ha{height:56.954100px;}
.h53{height:57.045464px;}
.h4{height:58.306905px;}
.h3{height:58.312905px;}
.hf{height:59.669700px;}
.h7{height:60.254040px;}
.h10{height:60.671296px;}
.hc{height:60.767700px;}
.hb{height:60.773700px;}
.h2{height:72.511265px;}
.h35{height:89.400000px;}
.h23{height:97.964100px;}
.h17{height:99.000000px;}
.h4a{height:111.684921px;}
.h34{height:113.400000px;}
.h28{height:123.000000px;}
.h26{height:140.363700px;}
.h55{height:166.747410px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:4.031548px;}
.w1f{width:4.748989px;}
.w23{width:5.108661px;}
.wc{width:5.315598px;}
.wd{width:5.343080px;}
.w20{width:5.986917px;}
.w17{width:6.021563px;}
.we{width:6.932174px;}
.w26{width:7.487646px;}
.wa{width:7.579674px;}
.w22{width:8.190076px;}
.w18{width:8.203157px;}
.w25{width:8.958185px;}
.w1d{width:9.910620px;}
.w9{width:9.955608px;}
.w28{width:12.469500px;}
.w1a{width:12.566344px;}
.w10{width:13.278000px;}
.wf{width:13.304509px;}
.w1e{width:13.352361px;}
.wb{width:13.405500px;}
.w2a{width:13.732500px;}
.w5{width:14.470500px;}
.w21{width:14.997047px;}
.w2b{width:16.104000px;}
.w1b{width:16.930361px;}
.w2e{width:18.616738px;}
.w27{width:23.293623px;}
.w19{width:25.656735px;}
.w4{width:27.000000px;}
.w15{width:27.652500px;}
.w1c{width:33.454800px;}
.w11{width:39.000000px;}
.w14{width:49.500000px;}
.w3{width:51.000000px;}
.w13{width:97.500000px;}
.w12{width:99.000000px;}
.w29{width:111.000000px;}
.w6{width:123.000000px;}
.w24{width:138.242958px;}
.w2{width:147.000000px;}
.w7{width:149.403000px;}
.w2c{width:166.747410px;}
.w2d{width:557.180370px;}
.w16{width:697.500000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1d{left:1.500000px;}
.x73{left:3.093000px;}
.x4f{left:5.296500px;}
.x49{left:7.056000px;}
.x21{left:10.311000px;}
.x43{left:11.614500px;}
.x28{left:15.907500px;}
.x48{left:20.082000px;}
.x4d{left:21.693000px;}
.x23{left:23.626500px;}
.x2b{left:26.620500px;}
.x1a{left:31.932000px;}
.x18{left:33.693000px;}
.x56{left:35.296500px;}
.x4b{left:39.012000px;}
.x24{left:40.572000px;}
.x2c{left:42.562500px;}
.x72{left:43.666500px;}
.x26{left:49.389000px;}
.x7b{left:51.291097px;}
.x9{left:54.000000px;}
.x1{left:55.752000px;}
.x75{left:64.655550px;}
.x33{left:67.132500px;}
.xd{left:68.944500px;}
.x29{left:70.573500px;}
.x7f{left:72.144690px;}
.x3{left:74.761500px;}
.x69{left:76.392190px;}
.x79{left:77.457000px;}
.x55{left:79.813500px;}
.x3a{left:82.611000px;}
.x42{left:83.769750px;}
.x2d{left:85.477491px;}
.x7a{left:86.893797px;}
.x74{left:88.655550px;}
.x60{left:92.898950px;}
.x5d{left:96.625812px;}
.x3e{left:97.738500px;}
.x61{left:99.142100px;}
.x12{left:100.884000px;}
.x6b{left:107.794719px;}
.x4{left:109.527000px;}
.x2e{left:110.876691px;}
.x50{left:120.952500px;}
.x5{left:122.629500px;}
.x3b{left:129.646500px;}
.x62{left:138.212750px;}
.xf{left:140.526000px;}
.x3c{left:145.515000px;}
.x57{left:149.979312px;}
.x6c{left:151.430769px;}
.x32{left:155.764941px;}
.x34{left:158.758500px;}
.x7{left:160.737000px;}
.x36{left:166.467000px;}
.x2f{left:168.476691px;}
.x39{left:178.438500px;}
.x58{left:179.921262px;}
.x71{left:190.655550px;}
.x63{left:192.758149px;}
.x6d{left:195.067419px;}
.x30{left:197.276691px;}
.x2{left:208.999500px;}
.x5f{left:213.393049px;}
.x64{left:220.030549px;}
.x3f{left:222.855000px;}
.x31{left:226.077741px;}
.x44{left:230.573238px;}
.x4a{left:232.972500px;}
.x45{left:234.285738px;}
.x6e{left:238.704219px;}
.x59{left:239.805312px;}
.x3d{left:241.122000px;}
.x65{left:247.303550px;}
.x37{left:249.697500px;}
.x7e{left:253.984774px;}
.x38{left:264.091500px;}
.x13{left:265.264500px;}
.x5a{left:269.746812px;}
.x66{left:277.192549px;}
.x16{left:278.341500px;}
.x6f{left:282.339219px;}
.x14{left:286.906500px;}
.x1f{left:290.373000px;}
.x46{left:292.310238px;}
.x5b{left:299.689812px;}
.x27{left:300.732000px;}
.x76{left:304.656000px;}
.x67{left:307.408549px;}
.x2a{left:314.373000px;}
.x6{left:322.527000px;}
.x70{left:325.977219px;}
.x5c{left:329.631312px;}
.x68{left:332.718049px;}
.x47{left:352.469238px;}
.x15{left:358.341000px;}
.x51{left:360.952500px;}
.x40{left:365.550000px;}
.x11{left:367.782000px;}
.x5e{left:382.825812px;}
.x8{left:385.225500px;}
.xe{left:399.403500px;}
.x10{left:403.659000px;}
.x6a{left:413.862729px;}
.x35{left:419.886000px;}
.xc{left:430.791000px;}
.xb{left:442.720500px;}
.xa{left:453.928500px;}
.x77{left:461.400000px;}
.x1b{left:468.873000px;}
.x7c{left:477.326757px;}
.x52{left:480.952500px;}
.x22{left:482.373000px;}
.x78{left:484.653000px;}
.x17{left:489.006000px;}
.x25{left:492.732000px;}
.x4c{left:508.972500px;}
.x1c{left:511.642500px;}
.x53{left:600.952500px;}
.x20{left:632.238000px;}
.x19{left:657.006000px;}
.x4e{left:664.972500px;}
.x7d{left:672.543237px;}
.x1e{left:674.373000px;}
.x41{left:692.085000px;}
.x54{left:720.952500px;}
@media print{
.v2{vertical-align:-23.141333pt;}
.vc{vertical-align:-15.941333pt;}
.v3{vertical-align:-7.968000pt;}
.v7{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:8.405444pt;}
.v6{vertical-align:13.189333pt;}
.v5{vertical-align:14.170667pt;}
.v4{vertical-align:19.285333pt;}
.v8{vertical-align:21.941333pt;}
.v1{vertical-align:23.141333pt;}
.vd{vertical-align:36.448000pt;}
.vb{vertical-align:50.474667pt;}
.va{vertical-align:59.184000pt;}
.v9{vertical-align:72.320000pt;}
.ve{vertical-align:84.917333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls27{letter-spacing:0.000501pt;}
.ls50{letter-spacing:0.002674pt;}
.lsab{letter-spacing:0.002926pt;}
.ls26{letter-spacing:0.003033pt;}
.ls60{letter-spacing:0.003119pt;}
.ls1d{letter-spacing:0.003733pt;}
.ls5e{letter-spacing:0.008007pt;}
.ls3b{letter-spacing:0.008452pt;}
.ls40{letter-spacing:0.008590pt;}
.ls3e{letter-spacing:0.010036pt;}
.ls5c{letter-spacing:0.010273pt;}
.ls42{letter-spacing:0.012385pt;}
.ls34{letter-spacing:0.012411pt;}
.ls65{letter-spacing:0.013134pt;}
.ls3c{letter-spacing:0.014321pt;}
.ls79{letter-spacing:0.014956pt;}
.ls4c{letter-spacing:0.015089pt;}
.ls32{letter-spacing:0.015951pt;}
.lsf{letter-spacing:0.016822pt;}
.ls58{letter-spacing:0.018114pt;}
.ls61{letter-spacing:0.019070pt;}
.ls43{letter-spacing:0.019654pt;}
.ls35{letter-spacing:0.021284pt;}
.ls10{letter-spacing:0.022156pt;}
.ls2{letter-spacing:0.023196pt;}
.ls5a{letter-spacing:0.023428pt;}
.ls63{letter-spacing:0.024335pt;}
.ls83{letter-spacing:0.025950pt;}
.ls3d{letter-spacing:0.025965pt;}
.ls4{letter-spacing:0.028529pt;}
.ls36{letter-spacing:0.028642pt;}
.ls46{letter-spacing:0.029056pt;}
.ls38{letter-spacing:0.030348pt;}
.ls64{letter-spacing:0.032788pt;}
.ls7b{letter-spacing:0.033975pt;}
.ls3a{letter-spacing:0.034085pt;}
.ls4a{letter-spacing:0.035681pt;}
.ls1a{letter-spacing:0.039252pt;}
.ls55{letter-spacing:0.042986pt;}
.ls20{letter-spacing:0.044586pt;}
.ls5d{letter-spacing:0.045393pt;}
.ls66{letter-spacing:0.046210pt;}
.ls2f{letter-spacing:0.050726pt;}
.ls6a{letter-spacing:1.021612pt;}
.ls78{letter-spacing:1.898986pt;}
.ls1{letter-spacing:2.655343pt;}
.ls22{letter-spacing:2.655508pt;}
.ls28{letter-spacing:2.659879pt;}
.ls0{letter-spacing:2.660677pt;}
.ls44{letter-spacing:2.662265pt;}
.ls33{letter-spacing:2.667598pt;}
.ls3f{letter-spacing:2.670321pt;}
.ls41{letter-spacing:2.670485pt;}
.ls8{letter-spacing:2.671508pt;}
.ls4d{letter-spacing:2.676842pt;}
.ls6b{letter-spacing:2.680335pt;}
.ls59{letter-spacing:2.682407pt;}
.ls69{letter-spacing:2.685668pt;}
.ls4f{letter-spacing:2.687741pt;}
.ls9{letter-spacing:2.689862pt;}
.lsc{letter-spacing:2.695196pt;}
.ls2e{letter-spacing:3.071606pt;}
.ls70{letter-spacing:3.076940pt;}
.ls30{letter-spacing:4.006239pt;}
.ls31{letter-spacing:4.209488pt;}
.ls51{letter-spacing:4.214821pt;}
.ls90{letter-spacing:5.207233pt;}
.lsaf{letter-spacing:5.221652pt;}
.lsac{letter-spacing:5.226986pt;}
.ls1e{letter-spacing:6.889067pt;}
.ls1b{letter-spacing:6.894400pt;}
.ls1c{letter-spacing:6.928319pt;}
.ls1f{letter-spacing:6.933652pt;}
.ls13{letter-spacing:7.401822pt;}
.lsa1{letter-spacing:7.523733pt;}
.lsa2{letter-spacing:7.562986pt;}
.ls37{letter-spacing:8.855124pt;}
.ls39{letter-spacing:8.904060pt;}
.ls95{letter-spacing:9.395733pt;}
.ls96{letter-spacing:9.440319pt;}
.ls23{letter-spacing:10.489067pt;}
.ls24{letter-spacing:10.533652pt;}
.ls14{letter-spacing:10.644842pt;}
.ls45{letter-spacing:11.532225pt;}
.ls68{letter-spacing:11.533668pt;}
.ls7f{letter-spacing:11.550400pt;}
.ls80{letter-spacing:11.589652pt;}
.ls18{letter-spacing:11.806400pt;}
.ls56{letter-spacing:11.847124pt;}
.ls19{letter-spacing:11.850986pt;}
.ls7c{letter-spacing:11.930986pt;}
.ls2b{letter-spacing:12.014400pt;}
.lsa7{letter-spacing:12.030400pt;}
.ls2c{letter-spacing:12.053652pt;}
.lsa8{letter-spacing:12.069652pt;}
.ls76{letter-spacing:12.489067pt;}
.lsaa{letter-spacing:12.531733pt;}
.ls77{letter-spacing:12.533652pt;}
.lsa9{letter-spacing:12.570986pt;}
.lsb0{letter-spacing:12.768319pt;}
.ls94{letter-spacing:12.912319pt;}
.ls67{letter-spacing:14.493668pt;}
.ls92{letter-spacing:14.499733pt;}
.ls93{letter-spacing:14.538986pt;}
.ls82{letter-spacing:14.607508pt;}
.lsad{letter-spacing:14.755733pt;}
.lsae{letter-spacing:14.805652pt;}
.ls73{letter-spacing:14.846400pt;}
.ls74{letter-spacing:14.885652pt;}
.ls5f{letter-spacing:15.136319pt;}
.ls21{letter-spacing:15.235733pt;}
.ls7d{letter-spacing:15.278400pt;}
.lsa4{letter-spacing:15.300842pt;}
.ls7e{letter-spacing:15.317652pt;}
.ls9d{letter-spacing:16.042175pt;}
.ls9a{letter-spacing:16.618175pt;}
.ls84{letter-spacing:16.736319pt;}
.ls9b{letter-spacing:16.767508pt;}
.lsb1{letter-spacing:17.065067pt;}
.ls17{letter-spacing:17.092842pt;}
.lsb2{letter-spacing:17.104319pt;}
.ls86{letter-spacing:17.374956pt;}
.ls71{letter-spacing:17.450407pt;}
.ls8f{letter-spacing:17.514175pt;}
.ls81{letter-spacing:17.591452pt;}
.ls54{letter-spacing:17.724562pt;}
.ls52{letter-spacing:18.226726pt;}
.ls4e{letter-spacing:18.232877pt;}
.ls72{letter-spacing:18.293652pt;}
.ls6{letter-spacing:18.554175pt;}
.ls49{letter-spacing:19.000060pt;}
.ls25{letter-spacing:19.055508pt;}
.ls8b{letter-spacing:19.135508pt;}
.ls91{letter-spacing:19.353622pt;}
.ls6f{letter-spacing:19.831452pt;}
.ls85{letter-spacing:19.839508pt;}
.ls3{letter-spacing:19.871508pt;}
.ls6e{letter-spacing:20.292842pt;}
.ls2d{letter-spacing:20.367508pt;}
.ls47{letter-spacing:20.557341pt;}
.ls48{letter-spacing:20.579681pt;}
.ls15{letter-spacing:20.612842pt;}
.ls87{letter-spacing:20.708842pt;}
.ls2a{letter-spacing:21.924842pt;}
.lsa0{letter-spacing:22.015508pt;}
.ls8c{letter-spacing:22.068842pt;}
.lsa3{letter-spacing:22.122175pt;}
.ls53{letter-spacing:22.192906pt;}
.ls75{letter-spacing:22.249067pt;}
.ls8d{letter-spacing:22.687508pt;}
.ls8e{letter-spacing:22.799508pt;}
.ls5b{letter-spacing:23.178175pt;}
.lsa5{letter-spacing:23.327508pt;}
.ls57{letter-spacing:23.641371pt;}
.ls99{letter-spacing:23.839508pt;}
.ls4b{letter-spacing:24.074175pt;}
.ls7a{letter-spacing:24.110956pt;}
.ls29{letter-spacing:24.372842pt;}
.ls9c{letter-spacing:24.447508pt;}
.lsa6{letter-spacing:24.846956pt;}
.ls88{letter-spacing:25.081622pt;}
.ls9e{letter-spacing:25.386175pt;}
.lsb{letter-spacing:25.514175pt;}
.ls5{letter-spacing:25.631508pt;}
.ls12{letter-spacing:25.930175pt;}
.ls9f{letter-spacing:26.566933pt;}
.ls89{letter-spacing:27.076289pt;}
.ls97{letter-spacing:27.108842pt;}
.ls98{letter-spacing:27.407508pt;}
.ls11{letter-spacing:28.164842pt;}
.ls6d{letter-spacing:28.490175pt;}
.ls16{letter-spacing:33.914175pt;}
.lsa{letter-spacing:33.919508pt;}
.ls8a{letter-spacing:41.834175pt;}
.lse{letter-spacing:46.690118pt;}
.lsd{letter-spacing:54.490175pt;}
.ls62{letter-spacing:65.616319pt;}
.ls6c{letter-spacing:101.767252pt;}
.ws15a{word-spacing:-29.446938pt;}
.ws22{word-spacing:-21.423659pt;}
.ws4{word-spacing:-17.853099pt;}
.ws156{word-spacing:-17.443898pt;}
.ws1e{word-spacing:-14.877483pt;}
.ws3{word-spacing:-11.902016pt;}
.ws47{word-spacing:-10.414208pt;}
.ws11b{word-spacing:-3.081764pt;}
.ws53{word-spacing:-3.028630pt;}
.wsbe{word-spacing:-2.975497pt;}
.wsbd{word-spacing:-2.945490pt;}
.ws78{word-spacing:-2.922363pt;}
.ws18{word-spacing:-2.869229pt;}
.ws102{word-spacing:-2.816095pt;}
.ws69{word-spacing:-2.709827pt;}
.ws6b{word-spacing:-2.656693pt;}
.ws96{word-spacing:-2.625490pt;}
.ws5d{word-spacing:-2.550426pt;}
.ws154{word-spacing:-2.537017pt;}
.ws13c{word-spacing:-2.497292pt;}
.wsa9{word-spacing:-2.444158pt;}
.ws11a{word-spacing:-2.391024pt;}
.ws14f{word-spacing:-2.337890pt;}
.ws159{word-spacing:-2.284756pt;}
.wsa4{word-spacing:-2.178489pt;}
.ws74{word-spacing:-2.125355pt;}
.wsb9{word-spacing:-2.072221pt;}
.ws29{word-spacing:-1.965953pt;}
.wse1{word-spacing:-1.912819pt;}
.ws4b{word-spacing:-1.700284pt;}
.ws4f{word-spacing:-1.647150pt;}
.ws60{word-spacing:-1.594016pt;}
.wsb7{word-spacing:-1.540882pt;}
.ws42{word-spacing:-1.487748pt;}
.wsdd{word-spacing:-1.434614pt;}
.wsd6{word-spacing:-1.328347pt;}
.ws112{word-spacing:-1.275213pt;}
.ws14{word-spacing:-1.222079pt;}
.ws108{word-spacing:-1.168945pt;}
.wse5{word-spacing:-1.115811pt;}
.ws8a{word-spacing:-1.062677pt;}
.ws107{word-spacing:-1.009543pt;}
.ws106{word-spacing:-0.956410pt;}
.ws20{word-spacing:-0.903276pt;}
.wse2{word-spacing:-0.850142pt;}
.ws109{word-spacing:-0.797008pt;}
.wsb{word-spacing:-0.690740pt;}
.ws65{word-spacing:-0.637606pt;}
.wsa7{word-spacing:-0.584473pt;}
.ws5a{word-spacing:-0.531339pt;}
.ws49{word-spacing:-0.478205pt;}
.wsb1{word-spacing:-0.425071pt;}
.ws115{word-spacing:-0.371937pt;}
.ws113{word-spacing:-0.318803pt;}
.wse4{word-spacing:-0.265669pt;}
.ws117{word-spacing:-0.212535pt;}
.wsd0{word-spacing:-0.106268pt;}
.ws5b{word-spacing:-0.053134pt;}
.wsee{word-spacing:-0.050477pt;}
.ws7c{word-spacing:-0.042507pt;}
.ws7d{word-spacing:-0.037194pt;}
.wsed{word-spacing:-0.025776pt;}
.wsf3{word-spacing:-0.022006pt;}
.ws23{word-spacing:0.000000pt;}
.wsa5{word-spacing:0.053134pt;}
.ws54{word-spacing:0.106268pt;}
.wsc3{word-spacing:0.159402pt;}
.ws27{word-spacing:0.212535pt;}
.ws6e{word-spacing:0.318803pt;}
.wsb8{word-spacing:0.371937pt;}
.ws5e{word-spacing:0.425071pt;}
.ws11f{word-spacing:0.478205pt;}
.wsb3{word-spacing:0.531339pt;}
.ws62{word-spacing:0.584473pt;}
.ws66{word-spacing:0.637606pt;}
.wsdf{word-spacing:0.690740pt;}
.ws34{word-spacing:0.743874pt;}
.wsc2{word-spacing:0.797008pt;}
.ws4a{word-spacing:0.850142pt;}
.ws13{word-spacing:0.903276pt;}
.ws1d{word-spacing:1.009543pt;}
.wsa2{word-spacing:1.062677pt;}
.wsf8{word-spacing:1.115811pt;}
.ws77{word-spacing:1.168945pt;}
.ws111{word-spacing:1.222079pt;}
.ws75{word-spacing:1.275213pt;}
.ws80{word-spacing:1.328347pt;}
.ws105{word-spacing:1.381481pt;}
.ws76{word-spacing:1.434614pt;}
.ws28{word-spacing:1.487748pt;}
.wse3{word-spacing:1.594016pt;}
.wsfb{word-spacing:1.647150pt;}
.wsf1{word-spacing:1.700284pt;}
.ws19{word-spacing:1.806551pt;}
.ws26{word-spacing:1.859685pt;}
.wsc0{word-spacing:1.965953pt;}
.wsf6{word-spacing:2.019087pt;}
.ws0{word-spacing:2.019940pt;}
.ws114{word-spacing:2.072221pt;}
.wsb6{word-spacing:2.125355pt;}
.ws4d{word-spacing:2.178489pt;}
.wsc4{word-spacing:2.231622pt;}
.ws6{word-spacing:2.284756pt;}
.ws5f{word-spacing:2.337890pt;}
.wsc8{word-spacing:2.391024pt;}
.wsd7{word-spacing:2.444158pt;}
.ws2c{word-spacing:2.497292pt;}
.ws2a{word-spacing:2.550426pt;}
.ws95{word-spacing:2.603559pt;}
.wsba{word-spacing:2.656693pt;}
.ws52{word-spacing:2.709827pt;}
.ws1a{word-spacing:2.762961pt;}
.ws12b{word-spacing:2.764788pt;}
.ws21{word-spacing:2.816095pt;}
.ws130{word-spacing:2.817650pt;}
.ws143{word-spacing:2.820354pt;}
.ws4c{word-spacing:2.869229pt;}
.ws2{word-spacing:2.869248pt;}
.wsad{word-spacing:2.922363pt;}
.ws1{word-spacing:2.933009pt;}
.ws144{word-spacing:2.975497pt;}
.ws150{word-spacing:3.028630pt;}
.ws3c{word-spacing:3.081764pt;}
.ws81{word-spacing:3.134898pt;}
.wsd8{word-spacing:3.161177pt;}
.wse9{word-spacing:3.188032pt;}
.ws10d{word-spacing:3.241166pt;}
.ws87{word-spacing:3.294300pt;}
.ws89{word-spacing:3.305391pt;}
.ws88{word-spacing:3.307813pt;}
.ws25{word-spacing:3.347434pt;}
.ws118{word-spacing:3.400567pt;}
.ws79{word-spacing:3.506835pt;}
.ws100{word-spacing:3.559969pt;}
.ws15{word-spacing:3.613103pt;}
.ws97{word-spacing:3.666237pt;}
.ws68{word-spacing:3.719371pt;}
.wscf{word-spacing:3.772505pt;}
.ws9f{word-spacing:3.825638pt;}
.ws10a{word-spacing:3.878772pt;}
.wsb2{word-spacing:3.931906pt;}
.ws94{word-spacing:3.985040pt;}
.ws56{word-spacing:4.038174pt;}
.ws55{word-spacing:4.091308pt;}
.ws148{word-spacing:4.091873pt;}
.ws137{word-spacing:4.091878pt;}
.ws140{word-spacing:4.092466pt;}
.ws12c{word-spacing:4.093883pt;}
.ws13a{word-spacing:4.144442pt;}
.ws165{word-spacing:4.197575pt;}
.ws7f{word-spacing:4.303843pt;}
.ws4e{word-spacing:4.356977pt;}
.wsc{word-spacing:4.410111pt;}
.ws6a{word-spacing:4.459475pt;}
.wse8{word-spacing:4.463245pt;}
.ws92{word-spacing:4.516379pt;}
.ws45{word-spacing:4.569513pt;}
.wsdc{word-spacing:4.622646pt;}
.ws58{word-spacing:4.675780pt;}
.ws7b{word-spacing:4.782048pt;}
.wsec{word-spacing:4.835182pt;}
.ws2d{word-spacing:4.888316pt;}
.ws116{word-spacing:4.941450pt;}
.ws44{word-spacing:4.994583pt;}
.wsff{word-spacing:5.047717pt;}
.ws24{word-spacing:5.100851pt;}
.wsf5{word-spacing:5.177937pt;}
.ws3a{word-spacing:5.207119pt;}
.ws12{word-spacing:5.260253pt;}
.ws11{word-spacing:5.313387pt;}
.ws57{word-spacing:5.366521pt;}
.ws129{word-spacing:5.419654pt;}
.ws14a{word-spacing:5.472788pt;}
.ws110{word-spacing:5.525922pt;}
.ws73{word-spacing:5.579056pt;}
.ws85{word-spacing:5.632190pt;}
.ws83{word-spacing:5.670086pt;}
.ws84{word-spacing:5.685324pt;}
.wsf7{word-spacing:5.738458pt;}
.ws5c{word-spacing:5.791591pt;}
.ws134{word-spacing:5.844725pt;}
.ws11c{word-spacing:5.950993pt;}
.wsa1{word-spacing:5.993540pt;}
.ws98{word-spacing:6.004127pt;}
.wsf2{word-spacing:6.095787pt;}
.ws51{word-spacing:6.110395pt;}
.ws157{word-spacing:6.163529pt;}
.ws35{word-spacing:6.216662pt;}
.ws64{word-spacing:6.269796pt;}
.ws36{word-spacing:6.322930pt;}
.ws17{word-spacing:6.376064pt;}
.ws6f{word-spacing:6.429198pt;}
.ws16{word-spacing:6.482332pt;}
.ws86{word-spacing:6.526724pt;}
.ws8{word-spacing:6.535466pt;}
.wsfe{word-spacing:6.588599pt;}
.ws1f{word-spacing:6.694867pt;}
.ws10{word-spacing:6.748001pt;}
.ws3d{word-spacing:6.801135pt;}
.wsa3{word-spacing:6.854269pt;}
.wsc6{word-spacing:6.907403pt;}
.wse0{word-spacing:6.960537pt;}
.ws103{word-spacing:7.013670pt;}
.ws72{word-spacing:7.066804pt;}
.ws10c{word-spacing:7.119938pt;}
.ws61{word-spacing:7.173072pt;}
.ws13d{word-spacing:7.226206pt;}
.ws155{word-spacing:7.268741pt;}
.wsb4{word-spacing:7.279340pt;}
.ws9d{word-spacing:7.332474pt;}
.ws3b{word-spacing:7.385607pt;}
.wsef{word-spacing:7.491875pt;}
.ws10f{word-spacing:7.545009pt;}
.wsde{word-spacing:7.598143pt;}
.wsf4{word-spacing:7.623806pt;}
.wsf0{word-spacing:7.651277pt;}
.ws6d{word-spacing:7.704411pt;}
.ws11d{word-spacing:7.810678pt;}
.ws3e{word-spacing:7.863812pt;}
.ws39{word-spacing:7.916946pt;}
.ws2e{word-spacing:7.970080pt;}
.ws7a{word-spacing:8.023214pt;}
.wsf{word-spacing:8.076348pt;}
.ws12d{word-spacing:8.129482pt;}
.wsbf{word-spacing:8.235749pt;}
.ws1c{word-spacing:8.288883pt;}
.ws40{word-spacing:8.342017pt;}
.ws3f{word-spacing:8.392389pt;}
.ws38{word-spacing:8.395151pt;}
.ws12a{word-spacing:8.448285pt;}
.wsa0{word-spacing:8.470142pt;}
.ws7{word-spacing:8.554553pt;}
.wsaa{word-spacing:8.607686pt;}
.ws48{word-spacing:8.660820pt;}
.wse{word-spacing:8.767088pt;}
.wsd1{word-spacing:8.820222pt;}
.wse6{word-spacing:8.926490pt;}
.ws15f{word-spacing:8.979623pt;}
.ws11e{word-spacing:9.085891pt;}
.wseb{word-spacing:9.139025pt;}
.wse7{word-spacing:9.192159pt;}
.wsd{word-spacing:9.245293pt;}
.ws104{word-spacing:9.298427pt;}
.wsab{word-spacing:9.404694pt;}
.ws2f{word-spacing:9.510962pt;}
.wsfc{word-spacing:9.564096pt;}
.wsc1{word-spacing:9.617230pt;}
.ws2b{word-spacing:9.654634pt;}
.ws50{word-spacing:9.670364pt;}
.wsc5{word-spacing:9.723498pt;}
.ws41{word-spacing:9.776631pt;}
.wsc7{word-spacing:9.829765pt;}
.wsfd{word-spacing:9.882899pt;}
.ws133{word-spacing:9.936033pt;}
.wsa8{word-spacing:9.936809pt;}
.ws6c{word-spacing:9.989167pt;}
.ws63{word-spacing:10.042301pt;}
.wsea{word-spacing:10.095435pt;}
.wsd9{word-spacing:10.133354pt;}
.wscc{word-spacing:10.148569pt;}
.ws149{word-spacing:10.254836pt;}
.ws139{word-spacing:10.307970pt;}
.ws101{word-spacing:10.361104pt;}
.ws14c{word-spacing:10.414238pt;}
.ws9e{word-spacing:10.467372pt;}
.wsd2{word-spacing:10.520506pt;}
.ws138{word-spacing:10.573639pt;}
.ws37{word-spacing:10.626773pt;}
.ws46{word-spacing:10.679907pt;}
.ws9{word-spacing:10.786175pt;}
.ws90{word-spacing:10.892443pt;}
.ws91{word-spacing:10.945577pt;}
.ws142{word-spacing:11.051844pt;}
.ws10b{word-spacing:11.104978pt;}
.wsa6{word-spacing:11.211246pt;}
.ws33{word-spacing:11.264380pt;}
.wsce{word-spacing:11.317514pt;}
.wsbb{word-spacing:11.495666pt;}
.ws43{word-spacing:11.583183pt;}
.ws15b{word-spacing:11.689451pt;}
.ws8d{word-spacing:11.742585pt;}
.ws70{word-spacing:11.751666pt;}
.ws7e{word-spacing:11.774494pt;}
.ws122{word-spacing:11.795718pt;}
.wsae{word-spacing:11.836999pt;}
.ws152{word-spacing:11.901986pt;}
.wsdb{word-spacing:12.008254pt;}
.ws9c{word-spacing:12.380191pt;}
.ws15c{word-spacing:12.476999pt;}
.ws99{word-spacing:12.486459pt;}
.ws10e{word-spacing:12.539593pt;}
.ws8f{word-spacing:12.645860pt;}
.ws163{word-spacing:12.679666pt;}
.ws141{word-spacing:12.752128pt;}
.wsf9{word-spacing:12.812999pt;}
.wsd3{word-spacing:13.230333pt;}
.wsc9{word-spacing:13.283467pt;}
.ws14e{word-spacing:13.442868pt;}
.ws1b{word-spacing:13.921073pt;}
.ws59{word-spacing:13.982221pt;}
.ws14d{word-spacing:14.080475pt;}
.ws160{word-spacing:14.327666pt;}
.ws161{word-spacing:14.332999pt;}
.wsaf{word-spacing:14.601284pt;}
.ws13e{word-spacing:14.611813pt;}
.ws82{word-spacing:14.664947pt;}
.ws8c{word-spacing:14.824349pt;}
.wsd4{word-spacing:15.036884pt;}
.ws119{word-spacing:15.046142pt;}
.wscd{word-spacing:15.408821pt;}
.ws128{word-spacing:15.674491pt;}
.ws31{word-spacing:15.780758pt;}
.ws120{word-spacing:15.993294pt;}
.ws146{word-spacing:16.258963pt;}
.ws121{word-spacing:16.418365pt;}
.wsca{word-spacing:16.636999pt;}
.ws145{word-spacing:16.737168pt;}
.ws13f{word-spacing:16.843436pt;}
.ws151{word-spacing:17.055971pt;}
.ws32{word-spacing:17.427908pt;}
.wsbc{word-spacing:17.511666pt;}
.ws93{word-spacing:17.534176pt;}
.ws71{word-spacing:17.639666pt;}
.ws123{word-spacing:18.012381pt;}
.ws9a{word-spacing:18.199666pt;}
.ws147{word-spacing:18.596853pt;}
.ws15d{word-spacing:18.722333pt;}
.ws135{word-spacing:18.809389pt;}
.ws162{word-spacing:18.955278pt;}
.ws164{word-spacing:19.026333pt;}
.wsfa{word-spacing:19.228999pt;}
.wsa{word-spacing:19.606397pt;}
.ws126{word-spacing:19.925200pt;}
.ws127{word-spacing:21.359814pt;}
.wsb0{word-spacing:22.156822pt;}
.ws15e{word-spacing:22.591084pt;}
.ws158{word-spacing:22.601381pt;}
.ws30{word-spacing:22.794429pt;}
.wsac{word-spacing:24.016508pt;}
.ws124{word-spacing:24.282177pt;}
.wscb{word-spacing:24.962333pt;}
.ws14b{word-spacing:25.823059pt;}
.ws136{word-spacing:26.513799pt;}
.ws13b{word-spacing:26.938870pt;}
.wsda{word-spacing:26.992004pt;}
.ws125{word-spacing:27.257674pt;}
.ws9b{word-spacing:27.292999pt;}
.ws132{word-spacing:28.267217pt;}
.ws12e{word-spacing:28.426619pt;}
.wsd5{word-spacing:29.223627pt;}
.ws153{word-spacing:33.474336pt;}
.ws12f{word-spacing:33.527470pt;}
.ws67{word-spacing:45.909393pt;}
.ws131{word-spacing:49.308228pt;}
.ws5{word-spacing:55.088818pt;}
.wsb5{word-spacing:97.128708pt;}
.ws8e{word-spacing:177.099993pt;}
.ws8b{word-spacing:332.011936pt;}
._30{margin-left:-27.278663pt;}
._2f{margin-left:-26.355328pt;}
._34{margin-left:-9.488669pt;}
._32{margin-left:-8.219403pt;}
._27{margin-left:-6.577969pt;}
._2{margin-left:-5.167855pt;}
._e{margin-left:-3.559969pt;}
._0{margin-left:-2.295387pt;}
._3{margin-left:-0.959107pt;}
._5{width:0.913906pt;}
._1{width:2.203571pt;}
._4{width:3.226859pt;}
._35{width:5.180800pt;}
._10{width:6.104306pt;}
._1e{width:7.636065pt;}
._23{width:10.934946pt;}
._1c{width:13.084801pt;}
._25{width:14.919986pt;}
._28{width:16.365231pt;}
._f{width:17.651074pt;}
._1f{width:18.554350pt;}
._6{width:20.201500pt;}
._b{width:21.742382pt;}
._d{width:22.911327pt;}
._9{width:24.558477pt;}
._18{width:26.301264pt;}
._19{width:27.417075pt;}
._12{width:28.315598pt;}
._21{width:29.718163pt;}
._2b{width:30.753878pt;}
._c{width:31.678415pt;}
._1a{width:32.624194pt;}
._1b{width:33.835643pt;}
._8{width:34.802683pt;}
._a{width:36.194794pt;}
._26{width:37.366978pt;}
._11{width:39.000258pt;}
._15{width:40.522577pt;}
._7{width:42.932164pt;}
._17{width:44.313645pt;}
._2a{width:45.440086pt;}
._13{width:46.970338pt;}
._2d{width:47.995344pt;}
._29{width:49.903331pt;}
._20{width:51.008512pt;}
._24{width:54.302812pt;}
._16{width:55.524891pt;}
._1d{width:58.075316pt;}
._22{width:63.762492pt;}
._2c{width:75.121694pt;}
._14{width:76.406500pt;}
._33{width:90.375433pt;}
._31{width:91.451762pt;}
._2e{width:95.640960pt;}
.fse{font-size:15.404400pt;}
.fsd{font-size:16.215182pt;}
.fs8{font-size:18.942542pt;}
.fsc{font-size:22.006452pt;}
.fs11{font-size:22.253134pt;}
.fsf{font-size:23.164612pt;}
.fs12{font-size:23.424278pt;}
.fsa{font-size:24.961679pt;}
.fs9{font-size:25.775547pt;}
.fs7{font-size:26.566933pt;}
.fs10{font-size:27.522766pt;}
.fsb{font-size:27.903466pt;}
.fs5{font-size:37.193600pt;}
.fs2{font-size:42.507200pt;}
.fs6{font-size:50.477333pt;}
.fs4{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs13{font-size:68.430606pt;}
.fs3{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y171{bottom:0.394011pt;}
.y177{bottom:0.468085pt;}
.yb1{bottom:0.475341pt;}
.y173{bottom:0.485421pt;}
.y175{bottom:0.526004pt;}
.yaf{bottom:0.553297pt;}
.y1b0{bottom:0.581289pt;}
.y1b3{bottom:0.671970pt;}
.y1a9{bottom:0.694059pt;}
.y1bb{bottom:0.727000pt;}
.y195{bottom:0.737056pt;}
.y197{bottom:0.880045pt;}
.y1be{bottom:1.075684pt;}
.y9f{bottom:1.333333pt;}
.y180{bottom:1.478667pt;}
.ya7{bottom:1.508000pt;}
.ya1{bottom:1.552000pt;}
.y72{bottom:1.592000pt;}
.y27f{bottom:1.807560pt;}
.y27d{bottom:2.158227pt;}
.y1b9{bottom:2.175184pt;}
.yaa{bottom:3.365333pt;}
.ya5{bottom:3.549333pt;}
.y17a{bottom:4.141333pt;}
.y2d{bottom:8.149333pt;}
.y18a{bottom:10.681333pt;}
.y1ca{bottom:14.454667pt;}
.yac{bottom:15.012000pt;}
.ya4{bottom:16.168000pt;}
.y17c{bottom:17.532000pt;}
.y179{bottom:20.081333pt;}
.y16f{bottom:22.229333pt;}
.y18d{bottom:22.552000pt;}
.y284{bottom:24.018857pt;}
.yab{bottom:25.665333pt;}
.y17e{bottom:25.737333pt;}
.y282{bottom:26.140933pt;}
.y18c{bottom:26.949333pt;}
.y1c9{bottom:27.581333pt;}
.ya9{bottom:31.961333pt;}
.y17b{bottom:33.472000pt;}
.y1d0{bottom:44.148000pt;}
.y1ce{bottom:45.902667pt;}
.yd9{bottom:48.000000pt;}
.y130{bottom:49.878667pt;}
.y1f5{bottom:50.206667pt;}
.y228{bottom:50.496000pt;}
.y70{bottom:54.394667pt;}
.y1ee{bottom:57.002667pt;}
.y2b{bottom:60.421333pt;}
.y16d{bottom:61.574667pt;}
.yd8{bottom:63.940000pt;}
.y12f{bottom:65.818667pt;}
.y1f4{bottom:66.146667pt;}
.y227{bottom:66.436000pt;}
.y6f{bottom:70.334667pt;}
.y1ed{bottom:72.942667pt;}
.y2a{bottom:76.361333pt;}
.y16c{bottom:77.514667pt;}
.yd7{bottom:79.881333pt;}
.y12e{bottom:81.758667pt;}
.y226{bottom:82.376000pt;}
.y6e{bottom:86.274667pt;}
.y1ec{bottom:88.882667pt;}
.y9d{bottom:89.329333pt;}
.y1d6{bottom:90.428000pt;}
.y29{bottom:92.301333pt;}
.y16b{bottom:93.454667pt;}
.yd6{bottom:95.821333pt;}
.y1f3{bottom:97.326667pt;}
.y12d{bottom:97.698667pt;}
.y225{bottom:98.317333pt;}
.y6d{bottom:102.216000pt;}
.y1eb{bottom:104.822667pt;}
.y9c{bottom:105.269333pt;}
.y1d5{bottom:106.368000pt;}
.y193{bottom:107.102667pt;}
.y28{bottom:108.242667pt;}
.y16a{bottom:109.394667pt;}
.yd5{bottom:111.761333pt;}
.y12c{bottom:113.638667pt;}
.y6c{bottom:118.156000pt;}
.y1ea{bottom:120.762667pt;}
.y9b{bottom:121.209333pt;}
.y1d4{bottom:122.308000pt;}
.y192{bottom:123.042667pt;}
.y27{bottom:124.182667pt;}
.y224{bottom:124.884000pt;}
.y169{bottom:125.336000pt;}
.yd4{bottom:127.701333pt;}
.y12b{bottom:129.580000pt;}
.yf3{bottom:132.480000pt;}
.y6b{bottom:134.096000pt;}
.y1e9{bottom:136.704000pt;}
.y9a{bottom:137.149333pt;}
.y1d3{bottom:138.249333pt;}
.y191{bottom:138.982667pt;}
.y26{bottom:140.122667pt;}
.y223{bottom:140.824000pt;}
.y168{bottom:141.276000pt;}
.yd3{bottom:143.641333pt;}
.y12a{bottom:145.520000pt;}
.yf2{bottom:148.421333pt;}
.y6a{bottom:150.036000pt;}
.y1e8{bottom:152.644000pt;}
.y99{bottom:153.089333pt;}
.y25a{bottom:153.154667pt;}
.y1d2{bottom:154.189333pt;}
.y190{bottom:154.924000pt;}
.y222{bottom:156.764000pt;}
.y167{bottom:157.216000pt;}
.yd2{bottom:159.581333pt;}
.y129{bottom:161.460000pt;}
.yf1{bottom:164.361333pt;}
.y69{bottom:165.976000pt;}
.y1e7{bottom:168.584000pt;}
.y98{bottom:169.029333pt;}
.y259{bottom:169.094667pt;}
.y25{bottom:171.157333pt;}
.y221{bottom:172.704000pt;}
.y166{bottom:173.156000pt;}
.yd1{bottom:175.522667pt;}
.y128{bottom:177.400000pt;}
.yf0{bottom:180.301333pt;}
.y68{bottom:181.916000pt;}
.y1e6{bottom:184.524000pt;}
.y188{bottom:184.858667pt;}
.y97{bottom:184.970667pt;}
.y187{bottom:185.004000pt;}
.y258{bottom:185.034667pt;}
.y165{bottom:189.096000pt;}
.y1cd{bottom:191.133333pt;}
.yd0{bottom:191.462667pt;}
.y127{bottom:193.340000pt;}
.yef{bottom:196.241333pt;}
.y67{bottom:197.857333pt;}
.y189{bottom:198.160000pt;}
.y220{bottom:199.272000pt;}
.y1e5{bottom:200.464000pt;}
.y96{bottom:200.910667pt;}
.y257{bottom:200.976000pt;}
.y164{bottom:205.036000pt;}
.ycf{bottom:207.402667pt;}
.y126{bottom:209.280000pt;}
.yee{bottom:212.181333pt;}
.y66{bottom:213.797333pt;}
.y24{bottom:215.105333pt;}
.y21f{bottom:215.212000pt;}
.y1e4{bottom:216.404000pt;}
.y95{bottom:216.850667pt;}
.y163{bottom:220.977333pt;}
.yce{bottom:223.342667pt;}
.y125{bottom:225.221333pt;}
.y256{bottom:226.428000pt;}
.yed{bottom:228.121333pt;}
.y65{bottom:229.737333pt;}
.y23{bottom:231.045333pt;}
.y21e{bottom:231.152000pt;}
.y1e3{bottom:232.345333pt;}
.y94{bottom:232.790667pt;}
.y162{bottom:236.917333pt;}
.y124{bottom:241.161333pt;}
.y255{bottom:242.369333pt;}
.yec{bottom:244.062667pt;}
.y64{bottom:245.677333pt;}
.y22{bottom:246.985333pt;}
.y1e2{bottom:248.285333pt;}
.y93{bottom:248.730667pt;}
.ycb{bottom:250.402667pt;}
.y1cb{bottom:251.604000pt;}
.y161{bottom:252.857333pt;}
.y123{bottom:257.101333pt;}
.y21d{bottom:257.718667pt;}
.ycd{bottom:257.785333pt;}
.y254{bottom:258.309333pt;}
.yeb{bottom:260.002667pt;}
.y63{bottom:261.617333pt;}
.y21{bottom:262.926667pt;}
.y1e1{bottom:264.225333pt;}
.yca{bottom:266.897333pt;}
.y160{bottom:268.797333pt;}
.y122{bottom:273.041333pt;}
.y92{bottom:273.258667pt;}
.y21c{bottom:273.658667pt;}
.y253{bottom:274.249333pt;}
.yea{bottom:275.942667pt;}
.ycc{bottom:276.062667pt;}
.y62{bottom:277.557333pt;}
.y20{bottom:278.866667pt;}
.y1e0{bottom:280.165333pt;}
.y15f{bottom:284.737333pt;}
.y121{bottom:288.981333pt;}
.y21b{bottom:289.600000pt;}
.y288{bottom:289.929333pt;}
.y252{bottom:290.189333pt;}
.yc9{bottom:290.806667pt;}
.y61{bottom:293.498667pt;}
.y18b{bottom:294.161333pt;}
.y1f{bottom:294.806667pt;}
.y1df{bottom:296.105333pt;}
.ye9{bottom:300.470667pt;}
.y15e{bottom:300.677333pt;}
.y120{bottom:304.921333pt;}
.y21a{bottom:305.540000pt;}
.y287{bottom:305.869333pt;}
.y251{bottom:306.129333pt;}
.yc8{bottom:306.764000pt;}
.y60{bottom:309.438667pt;}
.y91{bottom:310.462667pt;}
.y1e{bottom:310.746667pt;}
.y1de{bottom:312.045333pt;}
.y15d{bottom:316.618667pt;}
.y1cf{bottom:319.133333pt;}
.y11f{bottom:320.862667pt;}
.y219{bottom:321.480000pt;}
.y286{bottom:321.809333pt;}
.y5f{bottom:325.378667pt;}
.y90{bottom:326.402667pt;}
.y1d{bottom:326.686667pt;}
.y1dd{bottom:327.986667pt;}
.y250{bottom:331.582667pt;}
.yc7{bottom:332.110667pt;}
.y15c{bottom:332.558667pt;}
.y11e{bottom:336.802667pt;}
.ye8{bottom:337.674667pt;}
.y285{bottom:337.749333pt;}
.y5e{bottom:341.318667pt;}
.y8f{bottom:342.344000pt;}
.y1c{bottom:342.626667pt;}
.y1dc{bottom:343.926667pt;}
.y24f{bottom:347.522667pt;}
.y218{bottom:348.046667pt;}
.yc6{bottom:348.050667pt;}
.y15b{bottom:348.498667pt;}
.y11d{bottom:352.742667pt;}
.ye7{bottom:353.614667pt;}
.y5d{bottom:357.258667pt;}
.y8e{bottom:358.284000pt;}
.y1b{bottom:358.568000pt;}
.y1db{bottom:359.866667pt;}
.y24e{bottom:363.464000pt;}
.y217{bottom:363.986667pt;}
.yc5{bottom:363.990667pt;}
.y1f2{bottom:364.438667pt;}
.y11c{bottom:368.682667pt;}
.ye6{bottom:369.554667pt;}
.y5c{bottom:373.198667pt;}
.y8d{bottom:374.224000pt;}
.y1a{bottom:374.508000pt;}
.y1da{bottom:375.806667pt;}
.y24d{bottom:379.404000pt;}
.y1c8{bottom:379.604000pt;}
.y15a{bottom:379.678667pt;}
.y216{bottom:379.926667pt;}
.y18e{bottom:383.045333pt;}
.y11b{bottom:384.622667pt;}
.ye5{bottom:385.494667pt;}
.y283{bottom:387.892596pt;}
.yc4{bottom:389.028000pt;}
.y5b{bottom:389.140000pt;}
.y8c{bottom:390.164000pt;}
.y19{bottom:390.448000pt;}
.y1d9{bottom:391.746667pt;}
.y24c{bottom:395.344000pt;}
.y1f1{bottom:395.618667pt;}
.y215{bottom:395.868000pt;}
.y18f{bottom:396.916000pt;}
.y11a{bottom:400.562667pt;}
.yc3{bottom:401.130667pt;}
.ye4{bottom:401.436000pt;}
.y5a{bottom:405.080000pt;}
.y8b{bottom:406.104000pt;}
.y1d8{bottom:407.686667pt;}
.y24b{bottom:411.284000pt;}
.y214{bottom:411.808000pt;}
.y119{bottom:416.504000pt;}
.ye3{bottom:417.376000pt;}
.y59{bottom:421.020000pt;}
.y18{bottom:421.482667pt;}
.y8a{bottom:422.044000pt;}
.y159{bottom:423.628000pt;}
.y213{bottom:427.748000pt;}
.y118{bottom:432.444000pt;}
.ye2{bottom:433.316000pt;}
.y24a{bottom:436.737333pt;}
.y58{bottom:436.960000pt;}
.y1cc{bottom:437.593333pt;}
.y89{bottom:437.985333pt;}
.y1d1{bottom:437.997333pt;}
.yc2{bottom:438.425333pt;}
.y158{bottom:439.568000pt;}
.y117{bottom:448.384000pt;}
.ye1{bottom:449.256000pt;}
.y249{bottom:452.677333pt;}
.y57{bottom:452.900000pt;}
.y88{bottom:453.925333pt;}
.y212{bottom:454.314667pt;}
.yc1{bottom:454.365333pt;}
.y157{bottom:455.508000pt;}
.y116{bottom:464.324000pt;}
.ye0{bottom:465.196000pt;}
.y17{bottom:465.430667pt;}
.y248{bottom:468.617333pt;}
.y56{bottom:468.840000pt;}
.y87{bottom:469.865333pt;}
.y211{bottom:470.254667pt;}
.yc0{bottom:470.305333pt;}
.y156{bottom:471.448000pt;}
.y115{bottom:480.264000pt;}
.ydf{bottom:481.136000pt;}
.y16{bottom:481.370667pt;}
.y247{bottom:484.558667pt;}
.y55{bottom:484.781333pt;}
.y86{bottom:485.805333pt;}
.y210{bottom:486.196000pt;}
.ybf{bottom:486.246667pt;}
.y155{bottom:487.388000pt;}
.y114{bottom:496.204000pt;}
.yde{bottom:497.077333pt;}
.y15{bottom:497.310667pt;}
.y246{bottom:500.498667pt;}
.y54{bottom:500.721333pt;}
.y85{bottom:501.745333pt;}
.y20f{bottom:502.136000pt;}
.ybe{bottom:502.186667pt;}
.y154{bottom:503.328000pt;}
.y113{bottom:512.145333pt;}
.y14{bottom:513.252000pt;}
.y245{bottom:516.438667pt;}
.y53{bottom:516.661333pt;}
.ybd{bottom:518.126667pt;}
.y153{bottom:519.269333pt;}
.y278{bottom:521.233333pt;}
.ydd{bottom:521.605333pt;}
.y84{bottom:526.273333pt;}
.y112{bottom:528.085333pt;}
.y20e{bottom:528.702667pt;}
.y13{bottom:529.192000pt;}
.y52{bottom:532.601333pt;}
.ybc{bottom:534.066667pt;}
.y152{bottom:535.209333pt;}
.y186{bottom:535.888000pt;}
.y277{bottom:537.173333pt;}
.y1c7{bottom:539.032000pt;}
.y244{bottom:541.892000pt;}
.y111{bottom:544.025333pt;}
.y20d{bottom:544.642667pt;}
.y12{bottom:545.132000pt;}
.y151{bottom:547.606667pt;}
.y51{bottom:548.541333pt;}
.ybb{bottom:549.010667pt;}
.y150{bottom:551.149333pt;}
.y185{bottom:551.828000pt;}
.y276{bottom:553.113333pt;}
.y1c6{bottom:554.972000pt;}
.y243{bottom:557.832000pt;}
.ydc{bottom:558.808000pt;}
.y110{bottom:559.965333pt;}
.y20c{bottom:560.582667pt;}
.y83{bottom:560.961333pt;}
.y11{bottom:561.072000pt;}
.y50{bottom:564.481333pt;}
.yb8{bottom:565.946667pt;}
.y14f{bottom:567.089333pt;}
.y184{bottom:567.768000pt;}
.y275{bottom:569.054667pt;}
.y1c5{bottom:570.912000pt;}
.y242{bottom:573.772000pt;}
.ydb{bottom:574.749333pt;}
.y10f{bottom:575.905333pt;}
.yba{bottom:580.337333pt;}
.y4f{bottom:580.422667pt;}
.y14e{bottom:583.029333pt;}
.y183{bottom:583.708000pt;}
.yb9{bottom:584.138667pt;}
.y1c4{bottom:586.852000pt;}
.y20b{bottom:587.150667pt;}
.y241{bottom:589.712000pt;}
.y281{bottom:590.339316pt;}
.yda{bottom:590.689333pt;}
.y10e{bottom:591.845333pt;}
.y10{bottom:591.960000pt;}
.y4e{bottom:593.065333pt;}
.y4d{bottom:596.362667pt;}
.y14d{bottom:598.969333pt;}
.y1f0{bottom:598.970667pt;}
.y182{bottom:599.649333pt;}
.y274{bottom:600.088000pt;}
.y1c3{bottom:602.792000pt;}
.y20a{bottom:603.090667pt;}
.y82{bottom:604.909333pt;}
.yb7{bottom:606.629333pt;}
.y10d{bottom:607.786667pt;}
.y4c{bottom:612.302667pt;}
.y14c{bottom:614.910667pt;}
.y240{bottom:615.165333pt;}
.y1c2{bottom:618.733333pt;}
.y209{bottom:619.030667pt;}
.y81{bottom:620.849333pt;}
.y10c{bottom:623.726667pt;}
.y4b{bottom:628.242667pt;}
.y181{bottom:630.046667pt;}
.y14b{bottom:630.850667pt;}
.y23f{bottom:631.105333pt;}
.y1c1{bottom:634.673333pt;}
.y208{bottom:634.970667pt;}
.yf{bottom:635.909333pt;}
.y80{bottom:636.789333pt;}
.y10b{bottom:639.666667pt;}
.y273{bottom:644.037333pt;}
.y4a{bottom:644.182667pt;}
.y17d{bottom:644.516000pt;}
.y14a{bottom:646.790667pt;}
.y23e{bottom:647.046667pt;}
.yb6{bottom:649.216000pt;}
.y207{bottom:650.910667pt;}
.ye{bottom:651.849333pt;}
.y7f{bottom:652.730667pt;}
.y10a{bottom:655.606667pt;}
.y272{bottom:659.977333pt;}
.y49{bottom:660.122667pt;}
.y149{bottom:662.730667pt;}
.y23d{bottom:662.986667pt;}
.y1a8{bottom:664.873377pt;}
.yb5{bottom:665.156000pt;}
.y206{bottom:666.852000pt;}
.yd{bottom:667.789333pt;}
.y7e{bottom:668.670667pt;}
.y109{bottom:671.546667pt;}
.y1bd{bottom:672.052195pt;}
.y48{bottom:672.766667pt;}
.y271{bottom:675.917333pt;}
.y47{bottom:676.064000pt;}
.y148{bottom:678.670667pt;}
.y23c{bottom:678.926667pt;}
.y1aa{bottom:679.316044pt;}
.yb4{bottom:681.096000pt;}
.y205{bottom:682.792000pt;}
.yc{bottom:683.729333pt;}
.y7d{bottom:684.610667pt;}
.y108{bottom:687.486667pt;}
.y270{bottom:691.857333pt;}
.y46{bottom:692.004000pt;}
.y147{bottom:694.610667pt;}
.y1ef{bottom:694.612000pt;}
.yb3{bottom:697.037333pt;}
.y1ab{bottom:698.238711pt;}
.y204{bottom:698.732000pt;}
.yb{bottom:699.669333pt;}
.y7c{bottom:700.550667pt;}
.y23b{bottom:704.380000pt;}
.y26f{bottom:707.797333pt;}
.y45{bottom:707.944000pt;}
.y146{bottom:710.552000pt;}
.y1b1{bottom:712.425377pt;}
.yb2{bottom:712.977333pt;}
.y7b{bottom:716.490667pt;}
.y1ac{bottom:717.160044pt;}
.y107{bottom:719.120000pt;}
.y23a{bottom:720.320000pt;}
.y26e{bottom:723.738667pt;}
.y44{bottom:723.884000pt;}
.y203{bottom:725.298667pt;}
.y145{bottom:726.492000pt;}
.ya{bottom:730.704000pt;}
.y7a{bottom:732.430667pt;}
.y1ad{bottom:736.082711pt;}
.y239{bottom:736.260000pt;}
.y2c{bottom:736.748000pt;}
.y26d{bottom:739.678667pt;}
.y43{bottom:739.824000pt;}
.y202{bottom:741.238667pt;}
.y144{bottom:742.432000pt;}
.y1ae{bottom:748.234711pt;}
.y79{bottom:748.372000pt;}
.y1af{bottom:755.116044pt;}
.y26c{bottom:755.618667pt;}
.y42{bottom:755.764000pt;}
.y201{bottom:757.178667pt;}
.y143{bottom:758.372000pt;}
.y238{bottom:761.713333pt;}
.y1b2{bottom:762.550711pt;}
.y1b5{bottom:762.849377pt;}
.y1b6{bottom:763.008044pt;}
.y106{bottom:763.068000pt;}
.y1b4{bottom:763.081377pt;}
.y78{bottom:764.312000pt;}
.y1c0{bottom:767.237333pt;}
.y9{bottom:767.782667pt;}
.y1b7{bottom:770.346711pt;}
.y26b{bottom:771.558667pt;}
.y41{bottom:771.705333pt;}
.y200{bottom:773.120000pt;}
.y142{bottom:774.312000pt;}
.y237{bottom:777.653333pt;}
.y105{bottom:779.008000pt;}
.y27c{bottom:780.246992pt;}
.y77{bottom:780.252000pt;}
.y27e{bottom:780.597659pt;}
.y1b8{bottom:782.667667pt;}
.ya6{bottom:784.693333pt;}
.y26a{bottom:787.498667pt;}
.y40{bottom:787.645333pt;}
.y1ff{bottom:789.060000pt;}
.y1d7{bottom:790.252000pt;}
.y141{bottom:790.253333pt;}
.y236{bottom:793.593333pt;}
.y104{bottom:794.948000pt;}
.y76{bottom:796.192000pt;}
.y176{bottom:797.099323pt;}
.y196{bottom:799.604277pt;}
.y194{bottom:799.744277pt;}
.y174{bottom:802.425989pt;}
.y172{bottom:802.675323pt;}
.y170{bottom:802.765989pt;}
.y269{bottom:803.438667pt;}
.y3f{bottom:803.585333pt;}
.y140{bottom:806.193333pt;}
.y1a1{bottom:807.561611pt;}
.y235{bottom:809.534667pt;}
.y103{bottom:810.888000pt;}
.y1a4{bottom:813.508277pt;}
.y1fe{bottom:815.626667pt;}
.y268{bottom:819.380000pt;}
.y3e{bottom:819.525333pt;}
.y8{bottom:820.805333pt;}
.y198{bottom:821.009611pt;}
.y13f{bottom:822.133333pt;}
.y102{bottom:826.829333pt;}
.y1fd{bottom:831.566667pt;}
.y3d{bottom:831.924000pt;}
.yad{bottom:832.534667pt;}
.y234{bottom:834.988000pt;}
.y267{bottom:835.320000pt;}
.y3c{bottom:835.465333pt;}
.y75{bottom:837.149333pt;}
.y13e{bottom:838.073333pt;}
.y280{bottom:838.439579pt;}
.y101{bottom:842.769333pt;}
.y17f{bottom:843.380000pt;}
.y1a3{bottom:846.421611pt;}
.yb0{bottom:846.481992pt;}
.y199{bottom:847.484277pt;}
.y1fc{bottom:847.506667pt;}
.y233{bottom:850.928000pt;}
.y266{bottom:851.260000pt;}
.y3b{bottom:851.406667pt;}
.yae{bottom:852.904659pt;}
.y74{bottom:853.089333pt;}
.y13d{bottom:854.013333pt;}
.y16e{bottom:857.849333pt;}
.y100{bottom:858.709333pt;}
.y1fb{bottom:863.448000pt;}
.y232{bottom:866.868000pt;}
.y265{bottom:867.200000pt;}
.y3a{bottom:867.346667pt;}
.y1ba{bottom:868.059667pt;}
.y73{bottom:869.030667pt;}
.y7{bottom:869.096000pt;}
.y13c{bottom:869.953333pt;}
.y19a{bottom:874.238944pt;}
.yff{bottom:874.649333pt;}
.y231{bottom:882.808000pt;}
.y1a7{bottom:882.910944pt;}
.y264{bottom:883.140000pt;}
.y39{bottom:883.286667pt;}
.y13b{bottom:885.894667pt;}
.y6{bottom:887.693333pt;}
.ya2{bottom:889.574667pt;}
.y1fa{bottom:890.014667pt;}
.yfe{bottom:890.589333pt;}
.y38{bottom:895.684000pt;}
.y230{bottom:898.748000pt;}
.y263{bottom:899.080000pt;}
.y37{bottom:899.226667pt;}
.y19b{bottom:900.714944pt;}
.y13a{bottom:901.834667pt;}
.y1f9{bottom:905.954667pt;}
.y27b{bottom:906.286667pt;}
.y5{bottom:906.290667pt;}
.yfd{bottom:906.529333pt;}
.y1bc{bottom:908.559667pt;}
.y1a6{bottom:910.842944pt;}
.y22f{bottom:914.688000pt;}
.y262{bottom:915.021333pt;}
.y36{bottom:915.166667pt;}
.y139{bottom:917.774667pt;}
.y1f8{bottom:921.894667pt;}
.yfc{bottom:922.470667pt;}
.y19c{bottom:927.329611pt;}
.y261{bottom:930.961333pt;}
.y35{bottom:931.106667pt;}
.y4{bottom:932.386667pt;}
.y138{bottom:933.714667pt;}
.y1f7{bottom:937.834667pt;}
.yfb{bottom:938.410667pt;}
.y22e{bottom:940.141333pt;}
.y260{bottom:946.901333pt;}
.y34{bottom:947.048000pt;}
.y1a5{bottom:947.770944pt;}
.y137{bottom:949.654667pt;}
.y3{bottom:950.982667pt;}
.y19d{bottom:954.084277pt;}
.yfa{bottom:954.350667pt;}
.y22d{bottom:956.082667pt;}
.y25f{bottom:962.841333pt;}
.y33{bottom:962.988000pt;}
.y136{bottom:965.594667pt;}
.y1f6{bottom:969.466667pt;}
.yf9{bottom:970.290667pt;}
.y22c{bottom:972.022667pt;}
.y178{bottom:975.182667pt;}
.y27a{bottom:976.221333pt;}
.y25e{bottom:978.781333pt;}
.y32{bottom:978.928000pt;}
.y19e{bottom:980.560277pt;}
.y135{bottom:981.536000pt;}
.yf8{bottom:986.230667pt;}
.y22b{bottom:987.962667pt;}
.y2{bottom:989.505333pt;}
.ya8{bottom:990.076000pt;}
.y25d{bottom:994.721333pt;}
.y31{bottom:994.868000pt;}
.y1a2{bottom:996.185611pt;}
.y134{bottom:997.476000pt;}
.yf7{bottom:1002.170667pt;}
.y22a{bottom:1003.902667pt;}
.y279{bottom:1005.445333pt;}
.y19f{bottom:1007.174944pt;}
.y25c{bottom:1010.662667pt;}
.y30{bottom:1010.808000pt;}
.y133{bottom:1013.416000pt;}
.yf6{bottom:1018.112000pt;}
.y1{bottom:1018.729333pt;}
.y229{bottom:1019.842667pt;}
.y1a0{bottom:1020.481611pt;}
.y1bf{bottom:1023.237333pt;}
.y25b{bottom:1026.602667pt;}
.y2f{bottom:1026.748000pt;}
.y132{bottom:1029.356000pt;}
.ya0{bottom:1037.122667pt;}
.y9e{bottom:1037.534667pt;}
.yf5{bottom:1042.640000pt;}
.y131{bottom:1045.296000pt;}
.ya3{bottom:1049.952000pt;}
.y2e{bottom:1057.782667pt;}
.yf4{bottom:1061.236000pt;}
.y71{bottom:1063.333333pt;}
.h1c{height:0.000000pt;}
.h29{height:2.846727pt;}
.h2b{height:4.060674pt;}
.h1f{height:4.365059pt;}
.h21{height:4.372190pt;}
.h45{height:5.038616pt;}
.h3f{height:5.082213pt;}
.h44{height:5.129297pt;}
.h46{height:5.183938pt;}
.h3e{height:5.194983pt;}
.h3c{height:5.321704pt;}
.h2e{height:5.453502pt;}
.h2d{height:5.511421pt;}
.h4c{height:5.582975pt;}
.h41{height:5.996581pt;}
.h43{height:6.068079pt;}
.h3b{height:6.207486pt;}
.h3a{height:6.350474pt;}
.h37{height:6.444081pt;}
.h39{height:6.587069pt;}
.h48{height:7.962831pt;}
.h1a{height:10.673333pt;}
.h4e{height:11.657333pt;}
.h32{height:11.802667pt;}
.h33{height:11.916000pt;}
.h11{height:12.206667pt;}
.h14{height:12.264000pt;}
.h2c{height:12.555725pt;}
.h16{height:12.676000pt;}
.h20{height:14.036424pt;}
.h40{height:14.613614pt;}
.h36{height:14.756000pt;}
.h54{height:15.803497pt;}
.h47{height:16.076241pt;}
.h52{height:16.154164pt;}
.h3d{height:16.306781pt;}
.h4d{height:16.489573pt;}
.h4b{height:18.276780pt;}
.h2a{height:19.099681pt;}
.h42{height:19.820104pt;}
.h49{height:20.394370pt;}
.h38{height:20.676468pt;}
.h19{height:25.180000pt;}
.h1e{height:25.264000pt;}
.h1d{height:27.895200pt;}
.h5{height:28.692360pt;}
.h30{height:30.405333pt;}
.h2f{height:30.696000pt;}
.h18{height:31.497835pt;}
.h1b{height:34.624000pt;}
.h12{height:37.403704pt;}
.h4f{height:38.196000pt;}
.h15{height:39.372195pt;}
.h8{height:39.850400pt;}
.h50{height:39.855733pt;}
.he{height:40.740707pt;}
.h31{height:44.086667pt;}
.hd{height:44.422874pt;}
.h9{height:44.428207pt;}
.h13{height:44.632747pt;}
.h51{height:44.887791pt;}
.h27{height:47.175200pt;}
.h24{height:47.180533pt;}
.h6{height:47.820800pt;}
.h22{height:49.836533pt;}
.h25{height:50.474667pt;}
.ha{height:50.625867pt;}
.h53{height:50.707079pt;}
.h4{height:51.828360pt;}
.h3{height:51.833693pt;}
.hf{height:53.039733pt;}
.h7{height:53.559147pt;}
.h10{height:53.930041pt;}
.hc{height:54.015733pt;}
.hb{height:54.021067pt;}
.h2{height:64.454458pt;}
.h35{height:79.466667pt;}
.h23{height:87.079200pt;}
.h17{height:88.000000pt;}
.h4a{height:99.275485pt;}
.h34{height:100.800000pt;}
.h28{height:109.333333pt;}
.h26{height:124.767733pt;}
.h55{height:148.219920pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:3.583598pt;}
.w1f{width:4.221323pt;}
.w23{width:4.541032pt;}
.wc{width:4.724976pt;}
.wd{width:4.749405pt;}
.w20{width:5.321704pt;}
.w17{width:5.352501pt;}
.we{width:6.161933pt;}
.w26{width:6.655685pt;}
.wa{width:6.737488pt;}
.w22{width:7.280068pt;}
.w18{width:7.291695pt;}
.w25{width:7.962831pt;}
.w1d{width:8.809440pt;}
.w9{width:8.849430pt;}
.w28{width:11.084000pt;}
.w1a{width:11.170084pt;}
.w10{width:11.802667pt;}
.wf{width:11.826230pt;}
.w1e{width:11.868766pt;}
.wb{width:11.916000pt;}
.w2a{width:12.206667pt;}
.w5{width:12.862667pt;}
.w21{width:13.330708pt;}
.w2b{width:14.314667pt;}
.w1b{width:15.049209pt;}
.w2e{width:16.548212pt;}
.w27{width:20.705443pt;}
.w19{width:22.805987pt;}
.w4{width:24.000000pt;}
.w15{width:24.580000pt;}
.w1c{width:29.737600pt;}
.w11{width:34.666667pt;}
.w14{width:44.000000pt;}
.w3{width:45.333333pt;}
.w13{width:86.666667pt;}
.w12{width:88.000000pt;}
.w29{width:98.666667pt;}
.w6{width:109.333333pt;}
.w24{width:122.882629pt;}
.w2{width:130.666667pt;}
.w7{width:132.802667pt;}
.w2c{width:148.219920pt;}
.w2d{width:495.271440pt;}
.w16{width:620.000000pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:1.333333pt;}
.x73{left:2.749333pt;}
.x4f{left:4.708000pt;}
.x49{left:6.272000pt;}
.x21{left:9.165333pt;}
.x43{left:10.324000pt;}
.x28{left:14.140000pt;}
.x48{left:17.850667pt;}
.x4d{left:19.282667pt;}
.x23{left:21.001333pt;}
.x2b{left:23.662667pt;}
.x1a{left:28.384000pt;}
.x18{left:29.949333pt;}
.x56{left:31.374667pt;}
.x4b{left:34.677333pt;}
.x24{left:36.064000pt;}
.x2c{left:37.833333pt;}
.x72{left:38.814667pt;}
.x26{left:43.901333pt;}
.x7b{left:45.592086pt;}
.x9{left:48.000000pt;}
.x1{left:49.557333pt;}
.x75{left:57.471600pt;}
.x33{left:59.673333pt;}
.xd{left:61.284000pt;}
.x29{left:62.732000pt;}
.x7f{left:64.128614pt;}
.x3{left:66.454667pt;}
.x69{left:67.904169pt;}
.x79{left:68.850667pt;}
.x55{left:70.945333pt;}
.x3a{left:73.432000pt;}
.x42{left:74.462000pt;}
.x2d{left:75.979992pt;}
.x7a{left:77.238931pt;}
.x74{left:78.804933pt;}
.x60{left:82.576844pt;}
.x5d{left:85.889611pt;}
.x3e{left:86.878667pt;}
.x61{left:88.126311pt;}
.x12{left:89.674667pt;}
.x6b{left:95.817528pt;}
.x4{left:97.357333pt;}
.x2e{left:98.557059pt;}
.x50{left:107.513333pt;}
.x5{left:109.004000pt;}
.x3b{left:115.241333pt;}
.x62{left:122.855777pt;}
.xf{left:124.912000pt;}
.x3c{left:129.346667pt;}
.x57{left:133.314944pt;}
.x6c{left:134.605128pt;}
.x32{left:138.457725pt;}
.x34{left:141.118667pt;}
.x7{left:142.877333pt;}
.x36{left:147.970667pt;}
.x2f{left:149.757059pt;}
.x39{left:158.612000pt;}
.x58{left:159.930011pt;}
.x71{left:169.471600pt;}
.x63{left:171.340577pt;}
.x6d{left:173.393261pt;}
.x30{left:175.357059pt;}
.x2{left:185.777333pt;}
.x5f{left:189.682711pt;}
.x64{left:195.582711pt;}
.x3f{left:198.093333pt;}
.x31{left:200.957992pt;}
.x44{left:204.953989pt;}
.x4a{left:207.086667pt;}
.x45{left:208.253989pt;}
.x6e{left:212.181528pt;}
.x59{left:213.160277pt;}
.x3d{left:214.330667pt;}
.x65{left:219.825377pt;}
.x37{left:221.953333pt;}
.x7e{left:225.764244pt;}
.x38{left:234.748000pt;}
.x13{left:235.790667pt;}
.x5a{left:239.774944pt;}
.x66{left:246.393377pt;}
.x16{left:247.414667pt;}
.x6f{left:250.968195pt;}
.x14{left:255.028000pt;}
.x1f{left:258.109333pt;}
.x46{left:259.831323pt;}
.x5b{left:266.390944pt;}
.x27{left:267.317333pt;}
.x76{left:270.805333pt;}
.x67{left:273.252044pt;}
.x2a{left:279.442667pt;}
.x6{left:286.690667pt;}
.x70{left:289.757528pt;}
.x5c{left:293.005611pt;}
.x68{left:295.749377pt;}
.x47{left:313.305989pt;}
.x15{left:318.525333pt;}
.x51{left:320.846667pt;}
.x40{left:324.933333pt;}
.x11{left:326.917333pt;}
.x5e{left:340.289611pt;}
.x8{left:342.422667pt;}
.xe{left:355.025333pt;}
.x10{left:358.808000pt;}
.x6a{left:367.877982pt;}
.x35{left:373.232000pt;}
.xc{left:382.925333pt;}
.xb{left:393.529333pt;}
.xa{left:403.492000pt;}
.x77{left:410.133333pt;}
.x1b{left:416.776000pt;}
.x7c{left:424.290451pt;}
.x52{left:427.513333pt;}
.x22{left:428.776000pt;}
.x78{left:430.802667pt;}
.x17{left:434.672000pt;}
.x25{left:437.984000pt;}
.x4c{left:452.420000pt;}
.x1c{left:454.793333pt;}
.x53{left:534.180000pt;}
.x20{left:561.989333pt;}
.x19{left:584.005333pt;}
.x4e{left:591.086667pt;}
.x7d{left:597.816211pt;}
.x1e{left:599.442667pt;}
.x41{left:615.186667pt;}
.x54{left:640.846667pt;}
}




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