
    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_365af126683dbfd80c089f03.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_8083cbce4f829120c36c4edc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b5c78581c14a5b1479dc7662.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;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_2599aed45e7932c473775187.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.761000;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_9ef3b6fd4288fd5cd1fc8dc3.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9648552c39a391c07fe960e7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.933000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;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_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;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_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;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_8e8a686a9da9d511c9f7db8d.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_dc3252ceb0efec06030b9a36.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.391000;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_c877897b04cc3a63dae3ccf2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_c6a4d7a4f43070de3d7d9de3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.003418;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_6f863bdfc06e3752d6fe4309.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.206055;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_558af2a61bb51863ff9ec24e.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_5ee3b58ad6831eee183fd366.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_87c717e7aa6f945d294b1df9.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.003418;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_525ef3b6577f8201ee926471.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.206055;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_558af2a61bb51863ff9ec24e.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.666504;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_328a0505069d265c590b5f29.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.009000;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_650fc53b38e8ebd27a133070.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_aab41852f3c7cccd8a6fd52e.woff2')format("woff");}.ff16{font-family:ff16;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;}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mb{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:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls53{letter-spacing:-2.338200px;}
.ls51{letter-spacing:-2.332800px;}
.ls5b{letter-spacing:-1.976400px;}
.ls32{letter-spacing:-0.300600px;}
.ls63{letter-spacing:-0.270540px;}
.ls22{letter-spacing:-0.180360px;}
.ls2d{letter-spacing:-0.162324px;}
.ls21{letter-spacing:-0.156312px;}
.ls1f{letter-spacing:-0.150300px;}
.ls59{letter-spacing:-0.129600px;}
.ls27{letter-spacing:-0.120240px;}
.ls5a{letter-spacing:-0.113400px;}
.ls61{letter-spacing:-0.108216px;}
.ls1e{letter-spacing:-0.102204px;}
.ls30{letter-spacing:-0.096192px;}
.ls1c{letter-spacing:-0.090972px;}
.ls2c{letter-spacing:-0.090180px;}
.ls55{letter-spacing:-0.086400px;}
.ls4d{letter-spacing:-0.086184px;}
.ls62{letter-spacing:-0.084168px;}
.ls28{letter-spacing:-0.078156px;}
.ls54{letter-spacing:-0.075600px;}
.ls29{letter-spacing:-0.072144px;}
.ls50{letter-spacing:-0.059400px;}
.ls5c{letter-spacing:-0.048600px;}
.ls2a{letter-spacing:-0.048096px;}
.ls1d{letter-spacing:-0.042084px;}
.ls5d{letter-spacing:-0.037800px;}
.ls25{letter-spacing:-0.036072px;}
.ls52{letter-spacing:-0.032400px;}
.ls31{letter-spacing:-0.030060px;}
.ls58{letter-spacing:-0.027000px;}
.ls20{letter-spacing:-0.024048px;}
.ls4e{letter-spacing:-0.018036px;}
.ls5f{letter-spacing:-0.016200px;}
.ls2b{letter-spacing:-0.012024px;}
.ls57{letter-spacing:-0.010800px;}
.lsc{letter-spacing:0.000000px;}
.ls6c{letter-spacing:0.000154px;}
.ls83{letter-spacing:0.000292px;}
.ls4c{letter-spacing:0.000422px;}
.ls6{letter-spacing:0.000566px;}
.ls74{letter-spacing:0.000589px;}
.ls6f{letter-spacing:0.000649px;}
.ls35{letter-spacing:0.000745px;}
.ls7e{letter-spacing:0.000845px;}
.ls38{letter-spacing:0.000933px;}
.ls34{letter-spacing:0.001050px;}
.ls64{letter-spacing:0.001518px;}
.ls6e{letter-spacing:0.001673px;}
.ls36{letter-spacing:0.001773px;}
.ls65{letter-spacing:0.002058px;}
.ls7{letter-spacing:0.002074px;}
.ls37{letter-spacing:0.002181px;}
.ls1b{letter-spacing:0.002239px;}
.ls69{letter-spacing:0.002688px;}
.ls72{letter-spacing:0.002841px;}
.ls66{letter-spacing:0.003394px;}
.lsb{letter-spacing:0.003488px;}
.ls33{letter-spacing:0.003494px;}
.ls73{letter-spacing:0.003859px;}
.ls2{letter-spacing:0.004766px;}
.ls4b{letter-spacing:0.004800px;}
.ls12{letter-spacing:0.005400px;}
.ls6a{letter-spacing:0.005415px;}
.ls6d{letter-spacing:0.005627px;}
.ls13{letter-spacing:0.006012px;}
.ls48{letter-spacing:0.010800px;}
.ls3d{letter-spacing:0.016200px;}
.ls18{letter-spacing:0.018036px;}
.ls10{letter-spacing:0.019152px;}
.ls41{letter-spacing:0.021600px;}
.ls1a{letter-spacing:0.024048px;}
.ls3e{letter-spacing:0.027000px;}
.ls3b{letter-spacing:0.028728px;}
.ls14{letter-spacing:0.030060px;}
.ls16{letter-spacing:0.036072px;}
.ls46{letter-spacing:0.037800px;}
.ls17{letter-spacing:0.042084px;}
.ls40{letter-spacing:0.043200px;}
.ls15{letter-spacing:0.048096px;}
.ls49{letter-spacing:0.048600px;}
.ls3c{letter-spacing:0.054108px;}
.ls42{letter-spacing:0.059400px;}
.ls2f{letter-spacing:0.060120px;}
.ls26{letter-spacing:0.066132px;}
.ls4a{letter-spacing:0.072144px;}
.lse{letter-spacing:0.076608px;}
.ls19{letter-spacing:0.084168px;}
.ls39{letter-spacing:0.086184px;}
.ls43{letter-spacing:0.091800px;}
.ls23{letter-spacing:0.096192px;}
.ls2e{letter-spacing:0.102204px;}
.ls3f{letter-spacing:0.108000px;}
.ls45{letter-spacing:0.118800px;}
.ls47{letter-spacing:0.124200px;}
.ls44{letter-spacing:0.145800px;}
.ls24{letter-spacing:0.162324px;}
.ls11{letter-spacing:0.172368px;}
.lsf{letter-spacing:0.181944px;}
.ls3a{letter-spacing:0.191520px;}
.ls79{letter-spacing:0.537859px;}
.ls7c{letter-spacing:0.541787px;}
.ls71{letter-spacing:0.545573px;}
.ls70{letter-spacing:0.551696px;}
.lsd{letter-spacing:1.275394px;}
.ls9{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.989200px;}
.ls60{letter-spacing:7.659288px;}
.ls4f{letter-spacing:9.190800px;}
.ls56{letter-spacing:11.350800px;}
.lsa{letter-spacing:11.954850px;}
.ls76{letter-spacing:13.062001px;}
.ls7a{letter-spacing:13.338881px;}
.ls85{letter-spacing:13.439511px;}
.ls75{letter-spacing:13.448400px;}
.ls77{letter-spacing:13.454400px;}
.ls7d{letter-spacing:13.541337px;}
.ls78{letter-spacing:13.651317px;}
.ls82{letter-spacing:13.717913px;}
.ls7b{letter-spacing:13.983859px;}
.ls84{letter-spacing:14.209224px;}
.ls5e{letter-spacing:14.229000px;}
.ls68{letter-spacing:14.942100px;}
.ls1{letter-spacing:14.944200px;}
.ls6b{letter-spacing:15.086342px;}
.ls67{letter-spacing:17.967865px;}
.ls80{letter-spacing:19.438635px;}
.ls7f{letter-spacing:21.956282px;}
.ls81{letter-spacing:22.144518px;}
.ls0{letter-spacing:57.415200px;}
.ls5{letter-spacing:70.236600px;}
.ls8{letter-spacing:72.353510px;}
.ls4{letter-spacing:72.361200px;}
.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;}
}
.wsa2{word-spacing:-17.394700px;}
.ws16d{word-spacing:-15.655334px;}
.ws2{word-spacing:-14.943900px;}
.ws21{word-spacing:-13.915795px;}
.wscd{word-spacing:-13.500000px;}
.wsce{word-spacing:-13.489200px;}
.wsb{word-spacing:-13.449600px;}
.wscc{word-spacing:-12.161520px;}
.ws2f{word-spacing:-12.151944px;}
.ws20{word-spacing:-11.955150px;}
.ws7{word-spacing:-11.357400px;}
.wsba{word-spacing:-4.494618px;}
.wsbb{word-spacing:-4.483170px;}
.wsbc{word-spacing:-4.471857px;}
.ws1f3{word-spacing:-4.088678px;}
.ws1c4{word-spacing:-3.981082px;}
.ws41{word-spacing:-3.541068px;}
.wsac{word-spacing:-3.526760px;}
.ws40{word-spacing:-3.492972px;}
.ws12{word-spacing:-3.466985px;}
.ws16b{word-spacing:-3.443098px;}
.ws5c{word-spacing:-3.252492px;}
.ws16c{word-spacing:-3.227904px;}
.ws66{word-spacing:-3.156300px;}
.ws1dc{word-spacing:-3.066509px;}
.ws135{word-spacing:-3.048556px;}
.wsab{word-spacing:-2.988780px;}
.wsad{word-spacing:-2.929004px;}
.ws5a{word-spacing:-2.777544px;}
.ws64{word-spacing:-2.759508px;}
.ws74{word-spacing:-2.749678px;}
.ws1ee{word-spacing:-2.743718px;}
.ws5b{word-spacing:-2.741472px;}
.ws65{word-spacing:-2.693376px;}
.ws73{word-spacing:-2.689902px;}
.ws1f4{word-spacing:-2.636122px;}
.ws16e{word-spacing:-2.528525px;}
.ws8b{word-spacing:-2.391024px;}
.wse1{word-spacing:-2.359800px;}
.ws1f2{word-spacing:-2.313331px;}
.wse3{word-spacing:-2.300400px;}
.wse2{word-spacing:-2.273400px;}
.wsb6{word-spacing:-2.151922px;}
.wsbd{word-spacing:-2.092146px;}
.wsbe{word-spacing:-2.032370px;}
.ws3a{word-spacing:-2.026044px;}
.ws9c{word-spacing:-1.972595px;}
.ws3b{word-spacing:-1.965924px;}
.wse7{word-spacing:-1.965600px;}
.wse8{word-spacing:-1.949400px;}
.wsec{word-spacing:-1.944000px;}
.ws3c{word-spacing:-1.917828px;}
.ws10{word-spacing:-1.908367px;}
.wseb{word-spacing:-1.900800px;}
.wsea{word-spacing:-1.863000px;}
.ws159{word-spacing:-1.853044px;}
.wse9{word-spacing:-1.846800px;}
.ws44{word-spacing:-1.755504px;}
.ws11b{word-spacing:-1.737648px;}
.ws119{word-spacing:-1.736852px;}
.ws11a{word-spacing:-1.733787px;}
.ws101{word-spacing:-1.733492px;}
.ws9b{word-spacing:-1.673717px;}
.wsa1{word-spacing:-1.613941px;}
.ws9d{word-spacing:-1.494390px;}
.wsd3{word-spacing:-1.482177px;}
.wsd2{word-spacing:-1.452557px;}
.ws67{word-spacing:-1.400796px;}
.ws1f1{word-spacing:-1.344960px;}
.wsf{word-spacing:-1.322630px;}
.ws15f{word-spacing:-1.315063px;}
.ws68{word-spacing:-1.250496px;}
.wsa3{word-spacing:-1.195512px;}
.ws1b5{word-spacing:-1.129766px;}
.wsf8{word-spacing:-1.082160px;}
.ws120{word-spacing:-1.075961px;}
.wsf7{word-spacing:-1.034064px;}
.ws19c{word-spacing:-1.022170px;}
.ws27{word-spacing:-0.896634px;}
.ws1e0{word-spacing:-0.860774px;}
.ws1e{word-spacing:-0.836858px;}
.ws42{word-spacing:-0.835668px;}
.ws1e1{word-spacing:-0.806976px;}
.ws11e{word-spacing:-0.777083px;}
.wsd7{word-spacing:-0.753399px;}
.wsd8{word-spacing:-0.753178px;}
.ws26{word-spacing:-0.717307px;}
.ws6c{word-spacing:-0.715428px;}
.ws49{word-spacing:-0.697392px;}
.wsf6{word-spacing:-0.685368px;}
.ws43{word-spacing:-0.607212px;}
.wsa5{word-spacing:-0.597756px;}
.wsc{word-spacing:-0.591782px;}
.ws6b{word-spacing:-0.583164px;}
.ws137{word-spacing:-0.537980px;}
.ws4a{word-spacing:-0.511020px;}
.ws72{word-spacing:-0.478205px;}
.wsd{word-spacing:-0.430387px;}
.ws75{word-spacing:-0.418429px;}
.ws17d{word-spacing:-0.376589px;}
.wsb2{word-spacing:-0.375320px;}
.wsb3{word-spacing:-0.368250px;}
.wsb1{word-spacing:-0.358654px;}
.ws5f{word-spacing:-0.354708px;}
.wsfb{word-spacing:-0.336672px;}
.ws19a{word-spacing:-0.322790px;}
.ws133{word-spacing:-0.317049px;}
.ws2a{word-spacing:-0.298878px;}
.ws52{word-spacing:-0.288576px;}
.wsc3{word-spacing:-0.275621px;}
.wsc2{word-spacing:-0.274604px;}
.ws8{word-spacing:-0.268992px;}
.ws1c1{word-spacing:-0.248393px;}
.ws91{word-spacing:-0.239102px;}
.wsfa{word-spacing:-0.228456px;}
.ws198{word-spacing:-0.215194px;}
.ws118{word-spacing:-0.190910px;}
.wsc6{word-spacing:-0.186397px;}
.ws1c{word-spacing:-0.179327px;}
.ws10b{word-spacing:-0.178463px;}
.ws149{word-spacing:-0.165765px;}
.ws17a{word-spacing:-0.161395px;}
.ws115{word-spacing:-0.150104px;}
.ws148{word-spacing:-0.147808px;}
.ws1b9{word-spacing:-0.146165px;}
.ws114{word-spacing:-0.143548px;}
.ws143{word-spacing:-0.140872px;}
.ws113{word-spacing:-0.139530px;}
.ws116{word-spacing:-0.138865px;}
.ws145{word-spacing:-0.126962px;}
.ws14{word-spacing:-0.119551px;}
.wsdb{word-spacing:-0.114912px;}
.ws36{word-spacing:-0.110124px;}
.ws16f{word-spacing:-0.107597px;}
.ws1e5{word-spacing:-0.097041px;}
.wsd6{word-spacing:-0.094973px;}
.wsc5{word-spacing:-0.062236px;}
.wsc4{word-spacing:-0.059875px;}
.ws5{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.053798px;}
.ws1b2{word-spacing:-0.050636px;}
.ws12e{word-spacing:-0.010034px;}
.ws1a7{word-spacing:-0.009840px;}
.ws1cc{word-spacing:-0.008218px;}
.ws12c{word-spacing:-0.007382px;}
.ws18d{word-spacing:-0.006192px;}
.ws11d{word-spacing:-0.005975px;}
.ws3{word-spacing:-0.005683px;}
.ws1f{word-spacing:-0.005330px;}
.ws1c9{word-spacing:-0.004022px;}
.ws131{word-spacing:-0.003791px;}
.ws1f0{word-spacing:-0.003696px;}
.ws132{word-spacing:-0.003486px;}
.ws18a{word-spacing:-0.003466px;}
.ws187{word-spacing:-0.002890px;}
.ws180{word-spacing:-0.002429px;}
.ws6{word-spacing:-0.002383px;}
.ws1a4{word-spacing:-0.002266px;}
.ws4{word-spacing:-0.002108px;}
.ws11f{word-spacing:-0.001991px;}
.ws117{word-spacing:-0.001687px;}
.ws1ef{word-spacing:-0.000806px;}
.ws1{word-spacing:-0.000550px;}
.ws1e3{word-spacing:-0.000394px;}
.ws0{word-spacing:0.000000px;}
.ws1e4{word-spacing:0.000096px;}
.ws19d{word-spacing:0.000518px;}
.ws190{word-spacing:0.002035px;}
.ws1e6{word-spacing:0.003110px;}
.ws12d{word-spacing:0.004009px;}
.wsde{word-spacing:0.042084px;}
.ws175{word-spacing:0.053798px;}
.ws1d{word-spacing:0.059776px;}
.wsc0{word-spacing:0.065920px;}
.ws1b4{word-spacing:0.083820px;}
.ws102{word-spacing:0.085729px;}
.ws104{word-spacing:0.102237px;}
.ws18e{word-spacing:0.106263px;}
.ws1d9{word-spacing:0.107401px;}
.ws170{word-spacing:0.107597px;}
.ws138{word-spacing:0.116143px;}
.ws134{word-spacing:0.116757px;}
.ws31{word-spacing:0.119551px;}
.ws90{word-spacing:0.123524px;}
.ws139{word-spacing:0.129565px;}
.ws13a{word-spacing:0.131154px;}
.ws8f{word-spacing:0.133472px;}
.ws108{word-spacing:0.135915px;}
.ws13b{word-spacing:0.136251px;}
.ws14f{word-spacing:0.137810px;}
.ws150{word-spacing:0.142300px;}
.wsf3{word-spacing:0.156600px;}
.ws191{word-spacing:0.161395px;}
.ws39{word-spacing:0.172800px;}
.ws38{word-spacing:0.178200px;}
.ws13{word-spacing:0.179327px;}
.ws59{word-spacing:0.192384px;}
.wsd1{word-spacing:0.195033px;}
.wsca{word-spacing:0.198808px;}
.wsf4{word-spacing:0.199800px;}
.ws130{word-spacing:0.199855px;}
.wsc8{word-spacing:0.206434px;}
.wsc9{word-spacing:0.208974px;}
.wsa{word-spacing:0.215194px;}
.ws10e{word-spacing:0.237070px;}
.ws28{word-spacing:0.239102px;}
.ws110{word-spacing:0.246279px;}
.ws107{word-spacing:0.247033px;}
.ws111{word-spacing:0.254795px;}
.ws178{word-spacing:0.268992px;}
.ws12a{word-spacing:0.269383px;}
.ws78{word-spacing:0.293764px;}
.ws79{word-spacing:0.297219px;}
.ws77{word-spacing:0.298878px;}
.ws174{word-spacing:0.322790px;}
.ws10d{word-spacing:0.326671px;}
.ws151{word-spacing:0.333073px;}
.ws10c{word-spacing:0.340388px;}
.ws8e{word-spacing:0.351003px;}
.ws8d{word-spacing:0.358654px;}
.ws1f5{word-spacing:0.376589px;}
.ws15{word-spacing:0.418429px;}
.ws168{word-spacing:0.478205px;}
.ws173{word-spacing:0.484186px;}
.ws71{word-spacing:0.537980px;}
.ws1dd{word-spacing:0.537984px;}
.ws142{word-spacing:0.597756px;}
.ws1bf{word-spacing:0.645581px;}
.ws11c{word-spacing:0.657532px;}
.ws1bd{word-spacing:0.699379px;}
.ws16a{word-spacing:0.717307px;}
.ws29{word-spacing:0.777083px;}
.ws1b{word-spacing:0.836858px;}
.ws7b{word-spacing:0.882707px;}
.ws7d{word-spacing:0.883375px;}
.ws7c{word-spacing:0.896634px;}
.ws1be{word-spacing:0.914573px;}
.wsa9{word-spacing:0.956410px;}
.ws166{word-spacing:1.016185px;}
.ws35{word-spacing:1.195512px;}
.ws7a{word-spacing:1.198149px;}
.ws18{word-spacing:1.255288px;}
.ws17f{word-spacing:1.291162px;}
.wsaa{word-spacing:1.374839px;}
.ws197{word-spacing:1.398758px;}
.ws2b{word-spacing:1.434614px;}
.ws196{word-spacing:1.452557px;}
.ws10a{word-spacing:1.459033px;}
.wsa8{word-spacing:1.494390px;}
.wsa7{word-spacing:1.554166px;}
.ws34{word-spacing:1.613941px;}
.ws126{word-spacing:1.673437px;}
.ws125{word-spacing:1.673717px;}
.ws112{word-spacing:1.733492px;}
.ws177{word-spacing:1.775347px;}
.ws17{word-spacing:1.793268px;}
.ws179{word-spacing:1.829146px;}
.ws63{word-spacing:1.851696px;}
.ws15d{word-spacing:1.853044px;}
.ws62{word-spacing:1.869732px;}
.ws13f{word-spacing:1.912819px;}
.ws141{word-spacing:1.972595px;}
.ws83{word-spacing:2.032370px;}
.ws176{word-spacing:2.044339px;}
.wsae{word-spacing:2.092146px;}
.ws1d4{word-spacing:2.098138px;}
.ws1d3{word-spacing:2.151936px;}
.ws15a{word-spacing:2.211697px;}
.ws18c{word-spacing:2.259533px;}
.ws154{word-spacing:2.270469px;}
.ws14a{word-spacing:2.271473px;}
.ws122{word-spacing:2.343183px;}
.ws121{word-spacing:2.391024px;}
.ws1d8{word-spacing:2.420928px;}
.ws9a{word-spacing:2.450800px;}
.ws14d{word-spacing:2.482001px;}
.ws14b{word-spacing:2.485421px;}
.ws14e{word-spacing:2.488945px;}
.ws13d{word-spacing:2.510575px;}
.ws92{word-spacing:2.570351px;}
.wsdc{word-spacing:2.615220px;}
.wsa0{word-spacing:2.630126px;}
.wsdd{word-spacing:2.633256px;}
.ws54{word-spacing:2.657304px;}
.ws53{word-spacing:2.681352px;}
.ws162{word-spacing:2.689902px;}
.ws195{word-spacing:2.689920px;}
.wsaf{word-spacing:2.749678px;}
.ws2c{word-spacing:2.809453px;}
.ws50{word-spacing:2.927844px;}
.wsb8{word-spacing:2.929004px;}
.wsb9{word-spacing:2.957227px;}
.ws56{word-spacing:2.981952px;}
.ws167{word-spacing:2.988780px;}
.wscb{word-spacing:3.048556px;}
.ws57{word-spacing:3.060108px;}
.ws1e9{word-spacing:3.098673px;}
.ws103{word-spacing:3.108331px;}
.ws1e8{word-spacing:3.120307px;}
.ws58{word-spacing:3.132252px;}
.ws30{word-spacing:3.168107px;}
.ws1a1{word-spacing:3.174106px;}
.ws14c{word-spacing:3.177513px;}
.ws160{word-spacing:3.287658px;}
.ws8c{word-spacing:3.347434px;}
.ws4e{word-spacing:3.354696px;}
.ws4f{word-spacing:3.372732px;}
.ws32{word-spacing:3.407209px;}
.ws184{word-spacing:3.443098px;}
.wsb5{word-spacing:3.466985px;}
.ws158{word-spacing:3.526760px;}
.ws105{word-spacing:3.586536px;}
.ws1eb{word-spacing:3.604493px;}
.wsa4{word-spacing:3.646312px;}
.ws19{word-spacing:3.706087px;}
.ws146{word-spacing:3.765863px;}
.ws147{word-spacing:3.803759px;}
.ws1b7{word-spacing:3.819686px;}
.ws169{word-spacing:3.825638px;}
.ws1b6{word-spacing:3.827317px;}
.wsb0{word-spacing:3.885414px;}
.ws9f{word-spacing:3.945190px;}
.ws84{word-spacing:4.004965px;}
.ws70{word-spacing:4.064741px;}
.wsd4{word-spacing:4.088678px;}
.wsd5{word-spacing:4.099121px;}
.ws15c{word-spacing:4.124516px;}
.ws182{word-spacing:4.142477px;}
.ws152{word-spacing:4.184292px;}
.ws171{word-spacing:4.196275px;}
.ws97{word-spacing:4.244068px;}
.ws46{word-spacing:4.316616px;}
.ws186{word-spacing:4.357670px;}
.wsb7{word-spacing:4.363619px;}
.ws2d{word-spacing:4.423394px;}
.ws18b{word-spacing:4.465267px;}
.ws1b8{word-spacing:4.519066px;}
.ws1ed{word-spacing:4.572864px;}
.ws188{word-spacing:4.680461px;}
.ws153{word-spacing:4.722272px;}
.ws1ca{word-spacing:4.734259px;}
.ws140{word-spacing:4.782048px;}
.ws172{word-spacing:4.895654px;}
.ws33{word-spacing:4.901599px;}
.ws45{word-spacing:4.947876px;}
.ws1c7{word-spacing:4.949453px;}
.wsb4{word-spacing:5.021150px;}
.ws194{word-spacing:5.057050px;}
.ws94{word-spacing:5.080926px;}
.ws16{word-spacing:5.140702px;}
.ws106{word-spacing:5.200477px;}
.wsd0{word-spacing:5.218445px;}
.ws155{word-spacing:5.260253px;}
.ws185{word-spacing:5.272243px;}
.ws136{word-spacing:5.288599px;}
.ws13e{word-spacing:5.320028px;}
.ws1df{word-spacing:5.326042px;}
.ws1f6{word-spacing:5.371584px;}
.ws1d7{word-spacing:5.372410px;}
.ws17e{word-spacing:5.372650px;}
.ws1ea{word-spacing:5.372717px;}
.ws1c5{word-spacing:5.373053px;}
.ws1db{word-spacing:5.373245px;}
.ws193{word-spacing:5.374493px;}
.ws189{word-spacing:5.374570px;}
.ws1d6{word-spacing:5.374579px;}
.ws19e{word-spacing:5.374982px;}
.ws1b1{word-spacing:5.375635px;}
.ws19b{word-spacing:5.376518px;}
.ws17b{word-spacing:5.377094px;}
.ws183{word-spacing:5.377306px;}
.ws1af{word-spacing:5.377315px;}
.ws1bc{word-spacing:5.377584px;}
.ws1a2{word-spacing:5.377805px;}
.ws1cd{word-spacing:5.377978px;}
.ws1ba{word-spacing:5.377997px;}
.ws1da{word-spacing:5.378227px;}
.ws1b0{word-spacing:5.378362px;}
.ws1a0{word-spacing:5.378621px;}
.ws1bb{word-spacing:5.379043px;}
.ws1a3{word-spacing:5.379542px;}
.ws156{word-spacing:5.379804px;}
.wse{word-spacing:5.379840px;}
.ws1e2{word-spacing:5.381155px;}
.ws19f{word-spacing:5.426156px;}
.ws17c{word-spacing:5.433638px;}
.ws81{word-spacing:5.470365px;}
.ws6d{word-spacing:5.470920px;}
.ws80{word-spacing:5.473656px;}
.ws18f{word-spacing:5.487437px;}
.ws1b3{word-spacing:5.488848px;}
.ws7e{word-spacing:5.499355px;}
.wscf{word-spacing:5.595034px;}
.wsc1{word-spacing:5.601084px;}
.ws192{word-spacing:5.702630px;}
.ws12f{word-spacing:5.738458px;}
.ws6f{word-spacing:5.798233px;}
.ws6e{word-spacing:5.813604px;}
.ws144{word-spacing:5.828345px;}
.ws25{word-spacing:5.858009px;}
.ws11{word-spacing:5.940101px;}
.ws1cb{word-spacing:5.971622px;}
.ws23{word-spacing:5.977560px;}
.wsda{word-spacing:6.009884px;}
.wsd9{word-spacing:6.037336px;}
.wsbf{word-spacing:6.276438px;}
.ws199{word-spacing:6.294413px;}
.ws163{word-spacing:6.336214px;}
.ws10f{word-spacing:6.445345px;}
.ws12b{word-spacing:6.469710px;}
.wsa6{word-spacing:6.575316px;}
.ws99{word-spacing:6.635092px;}
.ws4b{word-spacing:6.649272px;}
.ws98{word-spacing:6.694867px;}
.ws1ad{word-spacing:6.724800px;}
.ws1aa{word-spacing:6.736398px;}
.ws1ac{word-spacing:6.750355px;}
.ws1ab{word-spacing:6.752062px;}
.ws1a9{word-spacing:6.778598px;}
.ws86{word-spacing:6.814418px;}
.ws1d0{word-spacing:6.886195px;}
.ws7f{word-spacing:6.896525px;}
.ws82{word-spacing:6.933970px;}
.ws1a{word-spacing:6.993745px;}
.ws4c{word-spacing:7.052076px;}
.ws13c{word-spacing:7.053521px;}
.ws4d{word-spacing:7.088148px;}
.ws1de{word-spacing:7.424179px;}
.ws1cf{word-spacing:7.639373px;}
.wsf9{word-spacing:7.767504px;}
.ws76{word-spacing:7.830604px;}
.ws1c0{word-spacing:7.854566px;}
.ws95{word-spacing:7.950155px;}
.ws164{word-spacing:8.009930px;}
.wsfd{word-spacing:8.013996px;}
.wsfe{word-spacing:8.050068px;}
.wsfc{word-spacing:8.104176px;}
.ws1a8{word-spacing:8.123558px;}
.ws1ae{word-spacing:8.500147px;}
.ws1c8{word-spacing:8.553946px;}
.wsff{word-spacing:8.667462px;}
.ws100{word-spacing:8.673656px;}
.ws1d2{word-spacing:8.715341px;}
.ws1f7{word-spacing:9.091930px;}
.ws37{word-spacing:9.097200px;}
.wse0{word-spacing:9.163800px;}
.wsdf{word-spacing:9.174600px;}
.ws24{word-spacing:9.265218px;}
.ws157{word-spacing:9.324994px;}
.ws129{word-spacing:9.444545px;}
.ws1a6{word-spacing:9.629914px;}
.ws88{word-spacing:9.736390px;}
.ws8a{word-spacing:9.739882px;}
.ws87{word-spacing:9.743423px;}
.ws55{word-spacing:9.763488px;}
.wsc7{word-spacing:9.862974px;}
.ws165{word-spacing:9.922750px;}
.ws93{word-spacing:9.982525px;}
.ws96{word-spacing:10.042301px;}
.ws123{word-spacing:10.102076px;}
.ws124{word-spacing:10.161852px;}
.ws2e{word-spacing:10.221628px;}
.ws161{word-spacing:10.520506px;}
.ws9e{word-spacing:10.759608px;}
.ws48{word-spacing:10.851660px;}
.ws109{word-spacing:10.889278px;}
.ws47{word-spacing:10.923804px;}
.wse4{word-spacing:11.307600px;}
.wse6{word-spacing:11.329200px;}
.wse5{word-spacing:11.437200px;}
.ws15e{word-spacing:12.074671px;}
.ws3e{word-spacing:12.324600px;}
.wsf5{word-spacing:12.360672px;}
.ws3d{word-spacing:12.372696px;}
.ws6a{word-spacing:13.015980px;}
.ws15b{word-spacing:13.031081px;}
.ws69{word-spacing:13.352652px;}
.ws61{word-spacing:13.388724px;}
.ws60{word-spacing:13.508964px;}
.ws128{word-spacing:13.748388px;}
.ws127{word-spacing:13.767774px;}
.wsf1{word-spacing:13.905000px;}
.wsf0{word-spacing:13.910400px;}
.wsf2{word-spacing:14.212800px;}
.ws181{word-spacing:14.364173px;}
.ws3f{word-spacing:15.955848px;}
.ws1ce{word-spacing:16.354714px;}
.ws1c6{word-spacing:16.516109px;}
.ws1ec{word-spacing:16.623706px;}
.ws51{word-spacing:17.681292px;}
.ws1c3{word-spacing:18.076262px;}
.ws85{word-spacing:18.530436px;}
.ws1c2{word-spacing:18.560448px;}
.ws1d5{word-spacing:20.443392px;}
.wsee{word-spacing:22.923000px;}
.wsef{word-spacing:23.209200px;}
.wsed{word-spacing:23.214600px;}
.ws1a5{word-spacing:23.563699px;}
.ws5d{word-spacing:23.819544px;}
.ws1d1{word-spacing:26.468813px;}
.ws5e{word-spacing:33.150168px;}
.ws89{word-spacing:35.672935px;}
.ws1e7{word-spacing:48.418560px;}
.ws22{word-spacing:1004.710806px;}
._20{margin-left:-14.115970px;}
._0{margin-left:-11.943245px;}
._1e{margin-left:-9.951418px;}
._1f{margin-left:-8.651582px;}
._21{margin-left:-7.602680px;}
._4{margin-left:-6.563405px;}
._6{margin-left:-4.949453px;}
._1{margin-left:-3.288550px;}
._8{margin-left:-2.047382px;}
._3{margin-left:-1.022170px;}
._9{width:1.091170px;}
._2{width:2.995073px;}
._2a{width:4.704478px;}
._2e{width:10.867277px;}
._5{width:12.427430px;}
._1d{width:13.509286px;}
._11{width:14.780476px;}
._a{width:16.154424px;}
._e{width:17.230384px;}
._7{width:18.829440px;}
._b{width:20.801909px;}
._c{width:22.463714px;}
._10{width:23.730913px;}
._17{width:24.747098px;}
._14{width:25.796136px;}
._d{width:27.691114px;}
._25{width:28.931390px;}
._1b{width:30.141914px;}
._19{width:31.382190px;}
._f{width:32.523911px;}
._22{width:34.846467px;}
._16{width:35.880372px;}
._1a{width:37.195435px;}
._23{width:39.033467px;}
._2f{width:40.154585px;}
._1c{width:41.245164px;}
._2c{width:42.984922px;}
._28{width:45.085814px;}
._13{width:49.195319px;}
._18{width:51.066109px;}
._27{width:52.901406px;}
._30{width:59.770022px;}
._29{width:61.868160px;}
._24{width:63.552771px;}
._2d{width:66.489089px;}
._2b{width:90.098205px;}
._26{width:2059.107300px;}
._15{width:2070.963216px;}
._12{width:2083.017300px;}
.fc5{color:rgb(91,155,213);}
.fc4{color:rgb(8,117,183);}
.fc3{color:transparent;}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(81,125,151);}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsc{font-size:60.120000px;}
.fsb{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y4c{bottom:-753.517050px;}
.y6e{bottom:-727.053531px;}
.y6d{bottom:-706.803612px;}
.y6c{bottom:-686.553693px;}
.y6b{bottom:-666.303774px;}
.y6a{bottom:-646.144035px;}
.y69{bottom:-625.894116px;}
.y68{bottom:-605.644197px;}
.y67{bottom:-585.394278px;}
.y66{bottom:-556.144395px;}
.y65{bottom:-517.894548px;}
.y64{bottom:-497.644629px;}
.y63{bottom:-477.484890px;}
.y62{bottom:-457.234971px;}
.y61{bottom:-436.985052px;}
.y60{bottom:-416.735133px;}
.y5f{bottom:-396.485214px;}
.y5e{bottom:-376.235295px;}
.y5d{bottom:-355.985376px;}
.y5c{bottom:-335.825637px;}
.y5b{bottom:-315.575718px;}
.yc2{bottom:-306.214050px;}
.y5a{bottom:-295.325799px;}
.yd1{bottom:-279.483396px;}
.y59{bottom:-275.075880px;}
.yd0{bottom:-259.233477px;}
.y58{bottom:-254.825961px;}
.ycf{bottom:-238.983558px;}
.y57{bottom:-234.576042px;}
.yce{bottom:-218.733639px;}
.y56{bottom:-214.326123px;}
.ycd{bottom:-198.573900px;}
.y55{bottom:-194.166384px;}
.y54{bottom:-173.916465px;}
.ycc{bottom:-160.775850px;}
.y53{bottom:-153.666546px;}
.ycb{bottom:-141.245400px;}
.y52{bottom:-133.416627px;}
.yca{bottom:-121.714950px;}
.y51{bottom:-113.166708px;}
.yc9{bottom:-102.274950px;}
.y50{bottom:-92.916789px;}
.yc8{bottom:-82.744500px;}
.y4f{bottom:-72.757050px;}
.yc7{bottom:-63.214050px;}
.yc6{bottom:-43.774050px;}
.y4e{bottom:-34.957050px;}
.yc5{bottom:-9.664050px;}
.y0{bottom:0.000000px;}
.y4d{bottom:0.862950px;}
.y20{bottom:3.425340px;}
.y1f{bottom:14.151273px;}
.y2{bottom:15.759303px;}
.y34{bottom:63.780000px;}
.y1c2{bottom:108.957000px;}
.y18e{bottom:110.526000px;}
.y122{bottom:110.898000px;}
.ydf{bottom:112.531500px;}
.y7c{bottom:116.160000px;}
.yed{bottom:116.607000px;}
.yad{bottom:119.863500px;}
.y133{bottom:123.121500px;}
.y1c1{bottom:128.325000px;}
.y18d{bottom:129.894000px;}
.y121{bottom:131.161500px;}
.yde{bottom:132.796500px;}
.y7b{bottom:136.423500px;}
.yec{bottom:136.870500px;}
.yac{bottom:140.128500px;}
.y132{bottom:143.386500px;}
.y1c0{bottom:147.691500px;}
.y18c{bottom:149.260500px;}
.y120{bottom:151.426500px;}
.ydd{bottom:153.060000px;}
.y15b{bottom:155.565000px;}
.y7a{bottom:156.688500px;}
.yeb{bottom:157.134000px;}
.yab{bottom:160.392000px;}
.y131{bottom:163.650000px;}
.y1bf{bottom:167.059500px;}
.y18b{bottom:168.628500px;}
.y33{bottom:169.873500px;}
.y15a{bottom:170.763000px;}
.y11f{bottom:171.690000px;}
.ydc{bottom:173.323500px;}
.y79{bottom:176.952000px;}
.yea{bottom:177.399000px;}
.yaa{bottom:180.657000px;}
.y130{bottom:183.913500px;}
.y159{bottom:185.961000px;}
.y1be{bottom:186.427500px;}
.y18a{bottom:187.996500px;}
.y106{bottom:188.697000px;}
.y32{bottom:190.138500px;}
.y11e{bottom:191.953500px;}
.ydb{bottom:193.588500px;}
.y78{bottom:197.215500px;}
.ye9{bottom:197.662500px;}
.ya9{bottom:200.920500px;}
.y158{bottom:201.159000px;}
.y12f{bottom:204.178500px;}
.y1bd{bottom:205.794000px;}
.y189{bottom:207.363000px;}
.y105{bottom:208.960500px;}
.y11d{bottom:212.218500px;}
.yda{bottom:213.852000px;}
.y77{bottom:217.480500px;}
.ye8{bottom:217.927500px;}
.ya8{bottom:221.184000px;}
.y12e{bottom:224.442000px;}
.y1bc{bottom:225.162000px;}
.y157{bottom:225.324000px;}
.y188{bottom:226.731000px;}
.y31{bottom:228.334500px;}
.y104{bottom:229.224000px;}
.y11c{bottom:232.482000px;}
.yd9{bottom:234.117000px;}
.y76{bottom:237.744000px;}
.ye7{bottom:238.191000px;}
.y156{bottom:240.522000px;}
.ya7{bottom:241.449000px;}
.y1bb{bottom:244.528500px;}
.y12d{bottom:244.707000px;}
.y187{bottom:246.097500px;}
.y30{bottom:248.599500px;}
.y103{bottom:249.489000px;}
.y11b{bottom:252.747000px;}
.y155{bottom:255.720000px;}
.y75{bottom:258.009000px;}
.ye6{bottom:258.454500px;}
.ya6{bottom:261.712500px;}
.y1ba{bottom:263.896500px;}
.y12c{bottom:264.970500px;}
.y186{bottom:265.465500px;}
.y2f{bottom:268.863000px;}
.yd8{bottom:269.116500px;}
.y102{bottom:269.752500px;}
.y154{bottom:270.918000px;}
.y11a{bottom:273.010500px;}
.y74{bottom:278.272500px;}
.ye5{bottom:278.719500px;}
.ya5{bottom:281.977500px;}
.y1b9{bottom:283.264500px;}
.y185{bottom:284.833500px;}
.y12b{bottom:285.234000px;}
.y153{bottom:286.116000px;}
.yd7{bottom:288.349500px;}
.y2e{bottom:289.128000px;}
.y101{bottom:290.017500px;}
.y119{bottom:293.274000px;}
.y73{bottom:298.536000px;}
.ye4{bottom:298.983000px;}
.ya4{bottom:302.241000px;}
.y1b8{bottom:302.631000px;}
.y184{bottom:304.200000px;}
.y12a{bottom:305.499000px;}
.yd6{bottom:307.582500px;}
.y2d{bottom:309.391500px;}
.y100{bottom:310.281000px;}
.y118{bottom:313.539000px;}
.y72{bottom:318.801000px;}
.ye3{bottom:319.248000px;}
.y1b7{bottom:321.999000px;}
.ya3{bottom:322.504500px;}
.y183{bottom:323.568000px;}
.y129{bottom:325.762500px;}
.yd5{bottom:326.815500px;}
.y2c{bottom:329.655000px;}
.yff{bottom:330.544500px;}
.y117{bottom:333.802500px;}
.y71{bottom:339.064500px;}
.y152{bottom:339.511500px;}
.y1b6{bottom:341.367000px;}
.ya2{bottom:342.769500px;}
.y182{bottom:342.934500px;}
.y128{bottom:346.027500px;}
.yd4{bottom:346.048500px;}
.ye2{bottom:348.478500px;}
.y2b{bottom:349.920000px;}
.yfe{bottom:350.809500px;}
.y4b{bottom:353.392950px;}
.y116{bottom:354.067500px;}
.y70{bottom:359.329500px;}
.y151{bottom:359.775000px;}
.y1b5{bottom:360.733500px;}
.y181{bottom:362.302500px;}
.ya1{bottom:363.033000px;}
.yd3{bottom:365.281500px;}
.y127{bottom:366.291000px;}
.y2a{bottom:370.183500px;}
.yfd{bottom:371.073000px;}
.y115{bottom:374.331000px;}
.y150{bottom:380.040000px;}
.y1b4{bottom:380.101500px;}
.y180{bottom:381.670500px;}
.ya0{bottom:383.298000px;}
.yd2{bottom:384.514500px;}
.y126{bottom:386.554500px;}
.y29{bottom:390.448500px;}
.yfc{bottom:391.338000px;}
.y6f{bottom:394.329000px;}
.y114{bottom:394.594500px;}
.y1b3{bottom:399.468000px;}
.y14f{bottom:400.303500px;}
.y17f{bottom:401.037000px;}
.y9f{bottom:403.561500px;}
.y125{bottom:406.819500px;}
.yc0{bottom:406.942500px;}
.y28{bottom:410.712000px;}
.yfb{bottom:411.601500px;}
.y113{bottom:414.859500px;}
.y4a{bottom:416.758500px;}
.y1b2{bottom:418.836000px;}
.y17e{bottom:420.405000px;}
.y14e{bottom:420.568500px;}
.y9e{bottom:423.825000px;}
.y124{bottom:427.083000px;}
.y27{bottom:430.975500px;}
.yb2{bottom:432.792000px;}
.y112{bottom:435.123000px;}
.y1b1{bottom:438.204000px;}
.y17d{bottom:439.771500px;}
.yfa{bottom:440.832000px;}
.y9d{bottom:444.090000px;}
.y123{bottom:447.348000px;}
.y26{bottom:451.240500px;}
.y111{bottom:455.388000px;}
.y1b0{bottom:457.570500px;}
.y17c{bottom:459.139500px;}
.y14d{bottom:461.095500px;}
.y9b{bottom:464.353500px;}
.yb1{bottom:467.611500px;}
.y9c{bottom:469.779000px;}
.y25{bottom:471.504000px;}
.yf9{bottom:475.651500px;}
.y1af{bottom:476.938500px;}
.y17b{bottom:478.507500px;}
.y14c{bottom:481.360500px;}
.y9a{bottom:484.618500px;}
.yb0{bottom:487.875000px;}
.y24{bottom:491.769000px;}
.yf8{bottom:495.915000px;}
.y1ae{bottom:496.305000px;}
.y17a{bottom:497.874000px;}
.y14b{bottom:501.624000px;}
.ybf{bottom:504.882000px;}
.yaf{bottom:508.140000px;}
.y23{bottom:512.032500px;}
.y99{bottom:513.847500px;}
.y1ad{bottom:515.673000px;}
.yf7{bottom:516.180000px;}
.y179{bottom:517.242000px;}
.y14a{bottom:521.889000px;}
.ybe{bottom:525.145500px;}
.yae{bottom:528.403500px;}
.y22{bottom:532.296000px;}
.y1ac{bottom:535.041000px;}
.yf6{bottom:536.443500px;}
.y178{bottom:536.608500px;}
.y149{bottom:542.152500px;}
.ybd{bottom:545.410500px;}
.y98{bottom:548.667000px;}
.y21{bottom:552.561000px;}
.y1ab{bottom:554.407500px;}
.y177{bottom:555.976500px;}
.yf5{bottom:556.708500px;}
.y148{bottom:562.416000px;}
.ybc{bottom:565.674000px;}
.y97{bottom:568.932000px;}
.y1aa{bottom:573.775500px;}
.y176{bottom:575.344500px;}
.yf4{bottom:576.972000px;}
.y147{bottom:582.681000px;}
.ybb{bottom:585.939000px;}
.y1e{bottom:587.992555px;}
.y1d{bottom:588.759000px;}
.y96{bottom:589.195500px;}
.y1a9{bottom:593.142000px;}
.y175{bottom:594.711000px;}
.yf3{bottom:597.235500px;}
.y146{bottom:602.944500px;}
.yba{bottom:606.202500px;}
.y95{bottom:609.460500px;}
.y1a8{bottom:612.510000px;}
.y174{bottom:614.079000px;}
.yf2{bottom:617.500500px;}
.y145{bottom:623.209500px;}
.yb9{bottom:626.466000px;}
.y1c{bottom:627.765000px;}
.y94{bottom:629.724000px;}
.y1a7{bottom:631.878000px;}
.y173{bottom:633.447000px;}
.yf1{bottom:637.764000px;}
.y144{bottom:643.473000px;}
.y1b{bottom:645.922500px;}
.yb8{bottom:646.731000px;}
.y93{bottom:649.987500px;}
.y1a6{bottom:651.244500px;}
.y172{bottom:652.813500px;}
.yf0{bottom:658.029000px;}
.y143{bottom:663.736500px;}
.y1a{bottom:664.078500px;}
.yb7{bottom:666.994500px;}
.y19{bottom:668.961000px;}
.y92{bottom:670.252500px;}
.y1a5{bottom:670.612500px;}
.y171{bottom:672.181500px;}
.y110{bottom:678.292500px;}
.y18{bottom:682.236000px;}
.yb6{bottom:687.258000px;}
.y1a4{bottom:689.979000px;}
.y91{bottom:690.516000px;}
.y170{bottom:691.548000px;}
.y142{bottom:692.967000px;}
.y10f{bottom:698.556000px;}
.y17{bottom:700.393500px;}
.y16{bottom:705.276000px;}
.yb5{bottom:707.523000px;}
.y1a3{bottom:709.347000px;}
.y90{bottom:710.781000px;}
.y16e{bottom:710.916000px;}
.y16f{bottom:715.798500px;}
.y15{bottom:718.549500px;}
.y10e{bottom:718.821000px;}
.yef{bottom:722.077500px;}
.yb4{bottom:727.786500px;}
.y1a2{bottom:728.715000px;}
.y16d{bottom:730.284000px;}
.y8f{bottom:731.044500px;}
.y10d{bottom:739.084500px;}
.y14{bottom:741.589500px;}
.yee{bottom:742.342500px;}
.yc4{bottom:743.186211px;}
.ye1{bottom:748.051500px;}
.y1a1{bottom:748.081500px;}
.y16c{bottom:749.650500px;}
.y8e{bottom:751.308000px;}
.y13{bottom:754.864500px;}
.yb3{bottom:757.017000px;}
.y10c{bottom:759.349500px;}
.y49{bottom:762.606000px;}
.yc3{bottom:763.345950px;}
.y1a0{bottom:767.449500px;}
.y141{bottom:768.315000px;}
.y16b{bottom:769.018500px;}
.y8d{bottom:771.573000px;}
.y12{bottom:773.020500px;}
.y1c5{bottom:773.328000px;}
.ye0{bottom:777.282000px;}
.y11{bottom:777.903000px;}
.y10b{bottom:779.613000px;}
.y48{bottom:782.871000px;}
.y19f{bottom:786.816000px;}
.y16a{bottom:788.385000px;}
.y140{bottom:788.578500px;}
.y10{bottom:791.178000px;}
.y8c{bottom:791.836500px;}
.y1c4{bottom:792.694500px;}
.y10a{bottom:799.876500px;}
.yc1{bottom:800.695950px;}
.y47{bottom:803.134500px;}
.y19e{bottom:806.184000px;}
.y169{bottom:807.753000px;}
.y13f{bottom:808.843500px;}
.y1c3{bottom:812.062500px;}
.y8b{bottom:812.101500px;}
.yf{bottom:814.218000px;}
.y109{bottom:820.141500px;}
.y46{bottom:823.398000px;}
.y19d{bottom:825.552000px;}
.y168{bottom:827.121000px;}
.ye{bottom:827.491500px;}
.y13e{bottom:829.107000px;}
.y8a{bottom:832.365000px;}
.y108{bottom:840.405000px;}
.y45{bottom:843.663000px;}
.y19c{bottom:844.918500px;}
.y167{bottom:846.487500px;}
.y13d{bottom:849.372000px;}
.yd{bottom:850.531500px;}
.y89{bottom:852.628500px;}
.yc{bottom:863.806500px;}
.y43{bottom:863.926500px;}
.y19b{bottom:864.286500px;}
.y166{bottom:865.855500px;}
.y44{bottom:869.352000px;}
.y107{bottom:869.635500px;}
.y88{bottom:872.893500px;}
.yb{bottom:881.962500px;}
.y19a{bottom:883.653000px;}
.y41{bottom:884.191500px;}
.y165{bottom:885.222000px;}
.y42{bottom:889.615500px;}
.y13c{bottom:889.899000px;}
.y87{bottom:893.157000px;}
.y199{bottom:903.021000px;}
.y40{bottom:904.455000px;}
.y164{bottom:904.590000px;}
.ya{bottom:905.002500px;}
.y13b{bottom:910.164000px;}
.y86{bottom:913.422000px;}
.y198{bottom:922.389000px;}
.y163{bottom:923.958000px;}
.y3f{bottom:924.718500px;}
.y9{bottom:927.243000px;}
.y13a{bottom:930.427500px;}
.y85{bottom:933.685500px;}
.y197{bottom:941.755500px;}
.y3e{bottom:944.983500px;}
.y8{bottom:947.508000px;}
.y139{bottom:950.692500px;}
.y162{bottom:952.291500px;}
.y84{bottom:953.949000px;}
.y196{bottom:961.123500px;}
.y3d{bottom:965.247000px;}
.y7{bottom:967.771500px;}
.y138{bottom:970.956000px;}
.y83{bottom:974.214000px;}
.y195{bottom:980.490000px;}
.y3c{bottom:985.512000px;}
.y137{bottom:991.219500px;}
.y161{bottom:991.743000px;}
.y82{bottom:994.477500px;}
.y194{bottom:999.858000px;}
.y3b{bottom:1005.775500px;}
.y160{bottom:1006.941000px;}
.y6{bottom:1010.451000px;}
.y136{bottom:1011.484500px;}
.y81{bottom:1014.742500px;}
.y193{bottom:1019.226000px;}
.y15f{bottom:1022.139000px;}
.y3a{bottom:1026.039000px;}
.y135{bottom:1031.748000px;}
.y80{bottom:1035.006000px;}
.y192{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.y39{bottom:1046.304000px;}
.y7f{bottom:1055.269500px;}
.y191{bottom:1057.960500px;}
.y134{bottom:1060.978500px;}
.y15e{bottom:1061.502000px;}
.y38{bottom:1066.567500px;}
.y4{bottom:1071.244500px;}
.y7e{bottom:1075.534500px;}
.y190{bottom:1077.327000px;}
.y15d{bottom:1085.667000px;}
.y37{bottom:1086.832500px;}
.y7d{bottom:1095.798000px;}
.y18f{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y15c{bottom:1100.865000px;}
.y36{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y35{bottom:1168.366500px;}
.h1e{height:19.498745px;}
.h11{height:21.170194px;}
.hb{height:25.508090px;}
.h8{height:30.461558px;}
.h19{height:33.072749px;}
.hd{height:33.112997px;}
.hc{height:34.199443px;}
.h10{height:35.100320px;}
.h14{height:35.991211px;}
.h20{height:37.927872px;}
.h1f{height:38.465856px;}
.h1c{height:38.734848px;}
.ha{height:39.165235px;}
.h1d{height:39.488026px;}
.hf{height:43.038432px;}
.he{height:43.516637px;}
.h4{height:43.875290px;}
.h18{height:44.091914px;}
.h13{height:44.279648px;}
.h9{height:49.117939px;}
.h16{height:49.939453px;}
.h2{height:50.930649px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h1a{height:54.575123px;}
.h17{height:55.599258px;}
.h15{height:66.585938px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h12{height:322.200000px;}
.h1b{height:724.065000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:188.203394px;}
.w5{width:634.958400px;}
.w4{width:667.413900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x7e{left:-14.984100px;}
.x0{left:0.000000px;}
.x7f{left:16.875900px;}
.x16{left:29.274117px;}
.x25{left:32.808900px;}
.x2{left:58.056593px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x24{left:118.308900px;}
.x14{left:122.110500px;}
.x4{left:123.307500px;}
.x21{left:129.268500px;}
.x97{left:137.526000px;}
.x22{left:139.680000px;}
.x5{left:146.170500px;}
.x84{left:150.817500px;}
.x98{left:152.470500px;}
.x9b{left:157.068000px;}
.x85{left:162.021000px;}
.x4f{left:169.641000px;}
.x95{left:171.171000px;}
.x10d{left:173.595000px;}
.xce{left:175.174500px;}
.xe{left:177.054000px;}
.xb5{left:178.837500px;}
.x10e{left:180.319500px;}
.xd7{left:181.402500px;}
.xf{left:183.778500px;}
.x96{left:186.114000px;}
.xf3{left:187.944000px;}
.xf4{left:190.248000px;}
.xa4{left:192.474000px;}
.xb6{left:193.782000px;}
.xa5{left:196.146000px;}
.xbf{left:197.805000px;}
.x17{left:202.017000px;}
.x6f{left:203.230500px;}
.x52{left:205.666500px;}
.x6d{left:210.903000px;}
.x53{left:213.139500px;}
.xf2{left:214.755000px;}
.x70{left:218.175000px;}
.xb8{left:219.759000px;}
.x50{left:222.937500px;}
.x6e{left:225.847500px;}
.xa1{left:229.446000px;}
.x51{left:231.096000px;}
.x26{left:233.283000px;}
.xbd{left:238.885500px;}
.x71{left:240.448500px;}
.x7a{left:241.905000px;}
.xf5{left:242.962500px;}
.xa2{left:244.390500px;}
.xd1{left:245.946000px;}
.x2f{left:248.763000px;}
.x87{left:251.158500px;}
.xbe{left:253.830000px;}
.x7b{left:256.849500px;}
.x33{left:258.361500px;}
.x4a{left:260.355000px;}
.x88{left:262.362000px;}
.x30{left:263.707500px;}
.xfb{left:265.609500px;}
.x4c{left:266.625000px;}
.x4b{left:267.826500px;}
.xfc{left:269.470500px;}
.xa3{left:271.452000px;}
.x34{left:273.306000px;}
.xb3{left:274.630500px;}
.x9c{left:275.700000px;}
.xb4{left:278.385000px;}
.x1c{left:280.024500px;}
.xea{left:285.031500px;}
.x72{left:286.366500px;}
.x1d{left:287.496000px;}
.x3a{left:290.592000px;}
.x91{left:292.383000px;}
.x42{left:293.652000px;}
.xb9{left:295.078500px;}
.x8b{left:296.295000px;}
.xc0{left:297.955500px;}
.xe5{left:299.853000px;}
.x43{left:301.123500px;}
.x102{left:302.155500px;}
.x8c{left:303.766500px;}
.x3b{left:305.535000px;}
.x3c{left:307.197000px;}
.xae{left:308.325000px;}
.xaf{left:311.986500px;}
.x8d{left:315.510000px;}
.x8e{left:316.699500px;}
.x3d{left:318.733500px;}
.xee{left:320.539500px;}
.x5c{left:327.282000px;}
.xb0{left:330.592500px;}
.x6{left:332.548500px;}
.xcb{left:333.721500px;}
.xe6{left:337.744500px;}
.x7{left:339.273000px;}
.xda{left:340.662000px;}
.x5d{left:342.226500px;}
.x5e{left:346.036500px;}
.xcc{left:347.656500px;}
.xb1{left:349.197000px;}
.x35{left:353.970000px;}
.x36{left:357.631500px;}
.x5f{left:360.981000px;}
.x92{left:364.593000px;}
.xba{left:365.815500px;}
.xaa{left:368.673000px;}
.x9d{left:371.230500px;}
.x37{left:372.574500px;}
.x2d{left:375.735000px;}
.xff{left:377.982000px;}
.x4d{left:380.223000px;}
.xab{left:383.617500px;}
.xb2{left:386.407500px;}
.x4e{left:387.696000px;}
.x2e{left:390.679500px;}
.xef{left:394.465500px;}
.xb7{left:398.019000px;}
.x8f{left:400.548000px;}
.xac{left:402.372000px;}
.xad{left:406.182000px;}
.x7c{left:408.448500px;}
.x93{left:410.020500px;}
.xe7{left:411.828000px;}
.xc5{left:413.644500px;}
.x90{left:415.491000px;}
.x101{left:417.099000px;}
.xe8{left:418.270500px;}
.x60{left:420.232500px;}
.xde{left:422.157000px;}
.x7d{left:423.393000px;}
.x94{left:424.963500px;}
.x61{left:435.175500px;}
.x82{left:441.451500px;}
.x83{left:451.162500px;}
.x46{left:454.476000px;}
.x9a{left:456.055500px;}
.xf1{left:458.452500px;}
.x10{left:459.727500px;}
.xc9{left:461.206500px;}
.x5a{left:462.661500px;}
.xc6{left:465.151500px;}
.x11{left:466.452000px;}
.xcf{left:468.118500px;}
.x47{left:469.419000px;}
.x100{left:472.398000px;}
.x10c{left:474.337500px;}
.xca{left:476.151000px;}
.x5b{left:477.604500px;}
.xc7{left:480.096000px;}
.x73{left:481.521000px;}
.x54{left:486.112500px;}
.x8{left:489.051000px;}
.x9e{left:490.842000px;}
.x77{left:492.177000px;}
.x55{left:493.584000px;}
.x9{left:495.775500px;}
.x74{left:500.275500px;}
.x75{left:504.087000px;}
.x9f{left:505.785000px;}
.x3e{left:513.967500px;}
.x107{left:515.457000px;}
.x56{left:516.981000px;}
.x76{left:519.030000px;}
.x3f{left:521.439000px;}
.x108{left:522.801000px;}
.x57{left:524.452500px;}
.xf6{left:527.610000px;}
.xf7{left:534.336000px;}
.x10b{left:540.250500px;}
.x12{left:543.729000px;}
.x8a{left:546.603000px;}
.x40{left:547.941000px;}
.x13{left:551.071500px;}
.x41{left:555.412500px;}
.xa0{left:557.680500px;}
.xd4{left:558.921000px;}
.xbb{left:560.116500px;}
.x67{left:561.924000px;}
.xd5{left:565.140000px;}
.x68{left:569.397000px;}
.xe9{left:572.046000px;}
.x10f{left:573.826500px;}
.xbc{left:575.061000px;}
.xe3{left:576.298500px;}
.x110{left:580.551000px;}
.xe4{left:583.023000px;}
.xd6{left:584.910000px;}
.x80{left:591.052500px;}
.x69{left:594.037500px;}
.x18{left:597.622500px;}
.x58{left:600.186000px;}
.x6a{left:601.509000px;}
.x109{left:603.805500px;}
.x19{left:605.094000px;}
.x59{left:607.659000px;}
.x89{left:609.423000px;}
.xd8{left:610.837500px;}
.x1a{left:612.715500px;}
.xf8{left:614.713500px;}
.x6b{left:615.807000px;}
.xfd{left:618.174000px;}
.x1b{left:620.188500px;}
.x48{left:622.084500px;}
.x99{left:623.535000px;}
.xfe{left:625.518000px;}
.x78{left:627.366000px;}
.xc8{left:628.918500px;}
.x6c{left:630.750000px;}
.x49{left:633.280500px;}
.xa{left:635.505000px;}
.xe0{left:637.216500px;}
.x1e{left:639.552000px;}
.xe1{left:641.077500px;}
.xb{left:642.229500px;}
.x63{left:645.541500px;}
.x1f{left:647.023500px;}
.x64{left:649.831500px;}
.x27{left:652.150500px;}
.xf9{left:655.518000px;}
.x103{left:656.532000px;}
.x28{left:659.623500px;}
.xc1{left:661.042500px;}
.x23{left:664.698750px;}
.x29{left:667.263000px;}
.xfa{left:670.345500px;}
.xeb{left:671.425500px;}
.xdb{left:672.618000px;}
.x2a{left:674.734500px;}
.xec{left:676.657500px;}
.x2b{left:678.546000px;}
.xc2{left:679.797000px;}
.x104{left:683.430000px;}
.x44{left:684.583500px;}
.xcd{left:689.196000px;}
.xd2{left:691.857000px;}
.x2c{left:693.489000px;}
.xa6{left:696.820500px;}
.x45{left:699.526500px;}
.x15{left:701.339982px;}
.xe2{left:703.987500px;}
.xf0{left:705.781500px;}
.x38{left:706.897500px;}
.xa7{left:711.765000px;}
.xd9{left:714.994500px;}
.x65{left:716.547000px;}
.x39{left:721.842000px;}
.x105{left:723.625500px;}
.xdf{left:725.421000px;}
.xc3{left:727.588500px;}
.xed{left:729.219000px;}
.x66{left:731.490000px;}
.x86{left:733.098000px;}
.xa8{left:734.329500px;}
.xdc{left:735.753000px;}
.xc4{left:738.721500px;}
.x81{left:740.146500px;}
.xdd{left:742.195500px;}
.xd0{left:747.694500px;}
.xa9{left:749.274000px;}
.x106{left:750.525000px;}
.x20{left:754.120500px;}
.x10a{left:755.299500px;}
.x31{left:756.895500px;}
.xc{left:758.524500px;}
.xd{left:765.250500px;}
.x62{left:766.732500px;}
.x32{left:771.838500px;}
.x79{left:773.113500px;}
.xd3{left:776.446500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls53{letter-spacing:-2.078400pt;}
.ls51{letter-spacing:-2.073600pt;}
.ls5b{letter-spacing:-1.756800pt;}
.ls32{letter-spacing:-0.267200pt;}
.ls63{letter-spacing:-0.240480pt;}
.ls22{letter-spacing:-0.160320pt;}
.ls2d{letter-spacing:-0.144288pt;}
.ls21{letter-spacing:-0.138944pt;}
.ls1f{letter-spacing:-0.133600pt;}
.ls59{letter-spacing:-0.115200pt;}
.ls27{letter-spacing:-0.106880pt;}
.ls5a{letter-spacing:-0.100800pt;}
.ls61{letter-spacing:-0.096192pt;}
.ls1e{letter-spacing:-0.090848pt;}
.ls30{letter-spacing:-0.085504pt;}
.ls1c{letter-spacing:-0.080864pt;}
.ls2c{letter-spacing:-0.080160pt;}
.ls55{letter-spacing:-0.076800pt;}
.ls4d{letter-spacing:-0.076608pt;}
.ls62{letter-spacing:-0.074816pt;}
.ls28{letter-spacing:-0.069472pt;}
.ls54{letter-spacing:-0.067200pt;}
.ls29{letter-spacing:-0.064128pt;}
.ls50{letter-spacing:-0.052800pt;}
.ls5c{letter-spacing:-0.043200pt;}
.ls2a{letter-spacing:-0.042752pt;}
.ls1d{letter-spacing:-0.037408pt;}
.ls5d{letter-spacing:-0.033600pt;}
.ls25{letter-spacing:-0.032064pt;}
.ls52{letter-spacing:-0.028800pt;}
.ls31{letter-spacing:-0.026720pt;}
.ls58{letter-spacing:-0.024000pt;}
.ls20{letter-spacing:-0.021376pt;}
.ls4e{letter-spacing:-0.016032pt;}
.ls5f{letter-spacing:-0.014400pt;}
.ls2b{letter-spacing:-0.010688pt;}
.ls57{letter-spacing:-0.009600pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6c{letter-spacing:0.000137pt;}
.ls83{letter-spacing:0.000260pt;}
.ls4c{letter-spacing:0.000375pt;}
.ls6{letter-spacing:0.000503pt;}
.ls74{letter-spacing:0.000523pt;}
.ls6f{letter-spacing:0.000577pt;}
.ls35{letter-spacing:0.000662pt;}
.ls7e{letter-spacing:0.000751pt;}
.ls38{letter-spacing:0.000830pt;}
.ls34{letter-spacing:0.000934pt;}
.ls64{letter-spacing:0.001349pt;}
.ls6e{letter-spacing:0.001487pt;}
.ls36{letter-spacing:0.001576pt;}
.ls65{letter-spacing:0.001829pt;}
.ls7{letter-spacing:0.001843pt;}
.ls37{letter-spacing:0.001939pt;}
.ls1b{letter-spacing:0.001990pt;}
.ls69{letter-spacing:0.002389pt;}
.ls72{letter-spacing:0.002525pt;}
.ls66{letter-spacing:0.003017pt;}
.lsb{letter-spacing:0.003100pt;}
.ls33{letter-spacing:0.003106pt;}
.ls73{letter-spacing:0.003430pt;}
.ls2{letter-spacing:0.004237pt;}
.ls4b{letter-spacing:0.004267pt;}
.ls12{letter-spacing:0.004800pt;}
.ls6a{letter-spacing:0.004813pt;}
.ls6d{letter-spacing:0.005002pt;}
.ls13{letter-spacing:0.005344pt;}
.ls48{letter-spacing:0.009600pt;}
.ls3d{letter-spacing:0.014400pt;}
.ls18{letter-spacing:0.016032pt;}
.ls10{letter-spacing:0.017024pt;}
.ls41{letter-spacing:0.019200pt;}
.ls1a{letter-spacing:0.021376pt;}
.ls3e{letter-spacing:0.024000pt;}
.ls3b{letter-spacing:0.025536pt;}
.ls14{letter-spacing:0.026720pt;}
.ls16{letter-spacing:0.032064pt;}
.ls46{letter-spacing:0.033600pt;}
.ls17{letter-spacing:0.037408pt;}
.ls40{letter-spacing:0.038400pt;}
.ls15{letter-spacing:0.042752pt;}
.ls49{letter-spacing:0.043200pt;}
.ls3c{letter-spacing:0.048096pt;}
.ls42{letter-spacing:0.052800pt;}
.ls2f{letter-spacing:0.053440pt;}
.ls26{letter-spacing:0.058784pt;}
.ls4a{letter-spacing:0.064128pt;}
.lse{letter-spacing:0.068096pt;}
.ls19{letter-spacing:0.074816pt;}
.ls39{letter-spacing:0.076608pt;}
.ls43{letter-spacing:0.081600pt;}
.ls23{letter-spacing:0.085504pt;}
.ls2e{letter-spacing:0.090848pt;}
.ls3f{letter-spacing:0.096000pt;}
.ls45{letter-spacing:0.105600pt;}
.ls47{letter-spacing:0.110400pt;}
.ls44{letter-spacing:0.129600pt;}
.ls24{letter-spacing:0.144288pt;}
.ls11{letter-spacing:0.153216pt;}
.lsf{letter-spacing:0.161728pt;}
.ls3a{letter-spacing:0.170240pt;}
.ls79{letter-spacing:0.478097pt;}
.ls7c{letter-spacing:0.481588pt;}
.ls71{letter-spacing:0.484954pt;}
.ls70{letter-spacing:0.490396pt;}
.lsd{letter-spacing:1.133683pt;}
.ls9{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.657067pt;}
.ls60{letter-spacing:6.808256pt;}
.ls4f{letter-spacing:8.169600pt;}
.ls56{letter-spacing:10.089600pt;}
.lsa{letter-spacing:10.626533pt;}
.ls76{letter-spacing:11.610668pt;}
.ls7a{letter-spacing:11.856783pt;}
.ls85{letter-spacing:11.946232pt;}
.ls75{letter-spacing:11.954133pt;}
.ls77{letter-spacing:11.959467pt;}
.ls7d{letter-spacing:12.036744pt;}
.ls78{letter-spacing:12.134504pt;}
.ls82{letter-spacing:12.193700pt;}
.ls7b{letter-spacing:12.430097pt;}
.ls84{letter-spacing:12.630421pt;}
.ls5e{letter-spacing:12.648000pt;}
.ls68{letter-spacing:13.281867pt;}
.ls1{letter-spacing:13.283733pt;}
.ls6b{letter-spacing:13.410082pt;}
.ls67{letter-spacing:15.971435pt;}
.ls80{letter-spacing:17.278787pt;}
.ls7f{letter-spacing:19.516695pt;}
.ls81{letter-spacing:19.684016pt;}
.ls0{letter-spacing:51.035733pt;}
.ls5{letter-spacing:62.432533pt;}
.ls8{letter-spacing:64.314231pt;}
.ls4{letter-spacing:64.321067pt;}
.wsa2{word-spacing:-15.461955pt;}
.ws16d{word-spacing:-13.915853pt;}
.ws2{word-spacing:-13.283467pt;}
.ws21{word-spacing:-12.369595pt;}
.wscd{word-spacing:-12.000000pt;}
.wsce{word-spacing:-11.990400pt;}
.wsb{word-spacing:-11.955200pt;}
.wscc{word-spacing:-10.810240pt;}
.ws2f{word-spacing:-10.801728pt;}
.ws20{word-spacing:-10.626800pt;}
.ws7{word-spacing:-10.095467pt;}
.wsba{word-spacing:-3.995216pt;}
.wsbb{word-spacing:-3.985040pt;}
.wsbc{word-spacing:-3.974984pt;}
.ws1f3{word-spacing:-3.634381pt;}
.ws1c4{word-spacing:-3.538739pt;}
.ws41{word-spacing:-3.147616pt;}
.wsac{word-spacing:-3.134898pt;}
.ws40{word-spacing:-3.104864pt;}
.ws12{word-spacing:-3.081764pt;}
.ws16b{word-spacing:-3.060531pt;}
.ws5c{word-spacing:-2.891104pt;}
.ws16c{word-spacing:-2.869248pt;}
.ws66{word-spacing:-2.805600pt;}
.ws1dc{word-spacing:-2.725786pt;}
.ws135{word-spacing:-2.709827pt;}
.wsab{word-spacing:-2.656693pt;}
.wsad{word-spacing:-2.603559pt;}
.ws5a{word-spacing:-2.468928pt;}
.ws64{word-spacing:-2.452896pt;}
.ws74{word-spacing:-2.444158pt;}
.ws1ee{word-spacing:-2.438861pt;}
.ws5b{word-spacing:-2.436864pt;}
.ws65{word-spacing:-2.394112pt;}
.ws73{word-spacing:-2.391024pt;}
.ws1f4{word-spacing:-2.343219pt;}
.ws16e{word-spacing:-2.247578pt;}
.ws8b{word-spacing:-2.125355pt;}
.wse1{word-spacing:-2.097600pt;}
.ws1f2{word-spacing:-2.056294pt;}
.wse3{word-spacing:-2.044800pt;}
.wse2{word-spacing:-2.020800pt;}
.wsb6{word-spacing:-1.912819pt;}
.wsbd{word-spacing:-1.859685pt;}
.wsbe{word-spacing:-1.806551pt;}
.ws3a{word-spacing:-1.800928pt;}
.ws9c{word-spacing:-1.753418pt;}
.ws3b{word-spacing:-1.747488pt;}
.wse7{word-spacing:-1.747200pt;}
.wse8{word-spacing:-1.732800pt;}
.wsec{word-spacing:-1.728000pt;}
.ws3c{word-spacing:-1.704736pt;}
.ws10{word-spacing:-1.696326pt;}
.wseb{word-spacing:-1.689600pt;}
.wsea{word-spacing:-1.656000pt;}
.ws159{word-spacing:-1.647150pt;}
.wse9{word-spacing:-1.641600pt;}
.ws44{word-spacing:-1.560448pt;}
.ws11b{word-spacing:-1.544576pt;}
.ws119{word-spacing:-1.543869pt;}
.ws11a{word-spacing:-1.541144pt;}
.ws101{word-spacing:-1.540882pt;}
.ws9b{word-spacing:-1.487748pt;}
.wsa1{word-spacing:-1.434614pt;}
.ws9d{word-spacing:-1.328347pt;}
.wsd3{word-spacing:-1.317491pt;}
.wsd2{word-spacing:-1.291162pt;}
.ws67{word-spacing:-1.245152pt;}
.ws1f1{word-spacing:-1.195520pt;}
.wsf{word-spacing:-1.175671pt;}
.ws15f{word-spacing:-1.168945pt;}
.ws68{word-spacing:-1.111552pt;}
.wsa3{word-spacing:-1.062677pt;}
.ws1b5{word-spacing:-1.004237pt;}
.wsf8{word-spacing:-0.961920pt;}
.ws120{word-spacing:-0.956410pt;}
.wsf7{word-spacing:-0.919168pt;}
.ws19c{word-spacing:-0.908595pt;}
.ws27{word-spacing:-0.797008pt;}
.ws1e0{word-spacing:-0.765133pt;}
.ws1e{word-spacing:-0.743874pt;}
.ws42{word-spacing:-0.742816pt;}
.ws1e1{word-spacing:-0.717312pt;}
.ws11e{word-spacing:-0.690740pt;}
.wsd7{word-spacing:-0.669688pt;}
.wsd8{word-spacing:-0.669491pt;}
.ws26{word-spacing:-0.637606pt;}
.ws6c{word-spacing:-0.635936pt;}
.ws49{word-spacing:-0.619904pt;}
.wsf6{word-spacing:-0.609216pt;}
.ws43{word-spacing:-0.539744pt;}
.wsa5{word-spacing:-0.531339pt;}
.wsc{word-spacing:-0.526029pt;}
.ws6b{word-spacing:-0.518368pt;}
.ws137{word-spacing:-0.478205pt;}
.ws4a{word-spacing:-0.454240pt;}
.ws72{word-spacing:-0.425071pt;}
.wsd{word-spacing:-0.382566pt;}
.ws75{word-spacing:-0.371937pt;}
.ws17d{word-spacing:-0.334746pt;}
.wsb2{word-spacing:-0.333618pt;}
.wsb3{word-spacing:-0.327333pt;}
.wsb1{word-spacing:-0.318803pt;}
.ws5f{word-spacing:-0.315296pt;}
.wsfb{word-spacing:-0.299264pt;}
.ws19a{word-spacing:-0.286925pt;}
.ws133{word-spacing:-0.281821pt;}
.ws2a{word-spacing:-0.265669pt;}
.ws52{word-spacing:-0.256512pt;}
.wsc3{word-spacing:-0.244997pt;}
.wsc2{word-spacing:-0.244092pt;}
.ws8{word-spacing:-0.239104pt;}
.ws1c1{word-spacing:-0.220794pt;}
.ws91{word-spacing:-0.212535pt;}
.wsfa{word-spacing:-0.203072pt;}
.ws198{word-spacing:-0.191283pt;}
.ws118{word-spacing:-0.169698pt;}
.wsc6{word-spacing:-0.165686pt;}
.ws1c{word-spacing:-0.159402pt;}
.ws10b{word-spacing:-0.158634pt;}
.ws149{word-spacing:-0.147347pt;}
.ws17a{word-spacing:-0.143462pt;}
.ws115{word-spacing:-0.133426pt;}
.ws148{word-spacing:-0.131385pt;}
.ws1b9{word-spacing:-0.129924pt;}
.ws114{word-spacing:-0.127598pt;}
.ws143{word-spacing:-0.125219pt;}
.ws113{word-spacing:-0.124027pt;}
.ws116{word-spacing:-0.123435pt;}
.ws145{word-spacing:-0.112855pt;}
.ws14{word-spacing:-0.106268pt;}
.wsdb{word-spacing:-0.102144pt;}
.ws36{word-spacing:-0.097888pt;}
.ws16f{word-spacing:-0.095642pt;}
.ws1e5{word-spacing:-0.086259pt;}
.wsd6{word-spacing:-0.084420pt;}
.wsc5{word-spacing:-0.055321pt;}
.wsc4{word-spacing:-0.053223pt;}
.ws5{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.047821pt;}
.ws1b2{word-spacing:-0.045010pt;}
.ws12e{word-spacing:-0.008919pt;}
.ws1a7{word-spacing:-0.008747pt;}
.ws1cc{word-spacing:-0.007305pt;}
.ws12c{word-spacing:-0.006562pt;}
.ws18d{word-spacing:-0.005504pt;}
.ws11d{word-spacing:-0.005311pt;}
.ws3{word-spacing:-0.005052pt;}
.ws1f{word-spacing:-0.004738pt;}
.ws1c9{word-spacing:-0.003575pt;}
.ws131{word-spacing:-0.003370pt;}
.ws1f0{word-spacing:-0.003285pt;}
.ws132{word-spacing:-0.003099pt;}
.ws18a{word-spacing:-0.003081pt;}
.ws187{word-spacing:-0.002569pt;}
.ws180{word-spacing:-0.002159pt;}
.ws6{word-spacing:-0.002118pt;}
.ws1a4{word-spacing:-0.002014pt;}
.ws4{word-spacing:-0.001874pt;}
.ws11f{word-spacing:-0.001770pt;}
.ws117{word-spacing:-0.001500pt;}
.ws1ef{word-spacing:-0.000717pt;}
.ws1{word-spacing:-0.000489pt;}
.ws1e3{word-spacing:-0.000350pt;}
.ws0{word-spacing:0.000000pt;}
.ws1e4{word-spacing:0.000085pt;}
.ws19d{word-spacing:0.000461pt;}
.ws190{word-spacing:0.001809pt;}
.ws1e6{word-spacing:0.002765pt;}
.ws12d{word-spacing:0.003564pt;}
.wsde{word-spacing:0.037408pt;}
.ws175{word-spacing:0.047821pt;}
.ws1d{word-spacing:0.053134pt;}
.wsc0{word-spacing:0.058596pt;}
.ws1b4{word-spacing:0.074507pt;}
.ws102{word-spacing:0.076204pt;}
.ws104{word-spacing:0.090877pt;}
.ws18e{word-spacing:0.094456pt;}
.ws1d9{word-spacing:0.095467pt;}
.ws170{word-spacing:0.095642pt;}
.ws138{word-spacing:0.103239pt;}
.ws134{word-spacing:0.103784pt;}
.ws31{word-spacing:0.106268pt;}
.ws90{word-spacing:0.109799pt;}
.ws139{word-spacing:0.115169pt;}
.ws13a{word-spacing:0.116581pt;}
.ws8f{word-spacing:0.118642pt;}
.ws108{word-spacing:0.120813pt;}
.ws13b{word-spacing:0.121112pt;}
.ws14f{word-spacing:0.122498pt;}
.ws150{word-spacing:0.126488pt;}
.wsf3{word-spacing:0.139200pt;}
.ws191{word-spacing:0.143462pt;}
.ws39{word-spacing:0.153600pt;}
.ws38{word-spacing:0.158400pt;}
.ws13{word-spacing:0.159402pt;}
.ws59{word-spacing:0.171008pt;}
.wsd1{word-spacing:0.173363pt;}
.wsca{word-spacing:0.176719pt;}
.wsf4{word-spacing:0.177600pt;}
.ws130{word-spacing:0.177649pt;}
.wsc8{word-spacing:0.183496pt;}
.wsc9{word-spacing:0.185755pt;}
.wsa{word-spacing:0.191283pt;}
.ws10e{word-spacing:0.210729pt;}
.ws28{word-spacing:0.212535pt;}
.ws110{word-spacing:0.218915pt;}
.ws107{word-spacing:0.219585pt;}
.ws111{word-spacing:0.226484pt;}
.ws178{word-spacing:0.239104pt;}
.ws12a{word-spacing:0.239452pt;}
.ws78{word-spacing:0.261123pt;}
.ws79{word-spacing:0.264195pt;}
.ws77{word-spacing:0.265669pt;}
.ws174{word-spacing:0.286925pt;}
.ws10d{word-spacing:0.290374pt;}
.ws151{word-spacing:0.296065pt;}
.ws10c{word-spacing:0.302567pt;}
.ws8e{word-spacing:0.312003pt;}
.ws8d{word-spacing:0.318803pt;}
.ws1f5{word-spacing:0.334746pt;}
.ws15{word-spacing:0.371937pt;}
.ws168{word-spacing:0.425071pt;}
.ws173{word-spacing:0.430387pt;}
.ws71{word-spacing:0.478205pt;}
.ws1dd{word-spacing:0.478208pt;}
.ws142{word-spacing:0.531339pt;}
.ws1bf{word-spacing:0.573850pt;}
.ws11c{word-spacing:0.584473pt;}
.ws1bd{word-spacing:0.621670pt;}
.ws16a{word-spacing:0.637606pt;}
.ws29{word-spacing:0.690740pt;}
.ws1b{word-spacing:0.743874pt;}
.ws7b{word-spacing:0.784628pt;}
.ws7d{word-spacing:0.785222pt;}
.ws7c{word-spacing:0.797008pt;}
.ws1be{word-spacing:0.812954pt;}
.wsa9{word-spacing:0.850142pt;}
.ws166{word-spacing:0.903276pt;}
.ws35{word-spacing:1.062677pt;}
.ws7a{word-spacing:1.065022pt;}
.ws18{word-spacing:1.115811pt;}
.ws17f{word-spacing:1.147699pt;}
.wsaa{word-spacing:1.222079pt;}
.ws197{word-spacing:1.243341pt;}
.ws2b{word-spacing:1.275213pt;}
.ws196{word-spacing:1.291162pt;}
.ws10a{word-spacing:1.296918pt;}
.wsa8{word-spacing:1.328347pt;}
.wsa7{word-spacing:1.381481pt;}
.ws34{word-spacing:1.434614pt;}
.ws126{word-spacing:1.487500pt;}
.ws125{word-spacing:1.487748pt;}
.ws112{word-spacing:1.540882pt;}
.ws177{word-spacing:1.578086pt;}
.ws17{word-spacing:1.594016pt;}
.ws179{word-spacing:1.625907pt;}
.ws63{word-spacing:1.645952pt;}
.ws15d{word-spacing:1.647150pt;}
.ws62{word-spacing:1.661984pt;}
.ws13f{word-spacing:1.700284pt;}
.ws141{word-spacing:1.753418pt;}
.ws83{word-spacing:1.806551pt;}
.ws176{word-spacing:1.817190pt;}
.wsae{word-spacing:1.859685pt;}
.ws1d4{word-spacing:1.865011pt;}
.ws1d3{word-spacing:1.912832pt;}
.ws15a{word-spacing:1.965953pt;}
.ws18c{word-spacing:2.008474pt;}
.ws154{word-spacing:2.018195pt;}
.ws14a{word-spacing:2.019087pt;}
.ws122{word-spacing:2.082829pt;}
.ws121{word-spacing:2.125355pt;}
.ws1d8{word-spacing:2.151936pt;}
.ws9a{word-spacing:2.178489pt;}
.ws14d{word-spacing:2.206223pt;}
.ws14b{word-spacing:2.209263pt;}
.ws14e{word-spacing:2.212396pt;}
.ws13d{word-spacing:2.231622pt;}
.ws92{word-spacing:2.284756pt;}
.wsdc{word-spacing:2.324640pt;}
.wsa0{word-spacing:2.337890pt;}
.wsdd{word-spacing:2.340672pt;}
.ws54{word-spacing:2.362048pt;}
.ws53{word-spacing:2.383424pt;}
.ws162{word-spacing:2.391024pt;}
.ws195{word-spacing:2.391040pt;}
.wsaf{word-spacing:2.444158pt;}
.ws2c{word-spacing:2.497292pt;}
.ws50{word-spacing:2.602528pt;}
.wsb8{word-spacing:2.603559pt;}
.wsb9{word-spacing:2.628646pt;}
.ws56{word-spacing:2.650624pt;}
.ws167{word-spacing:2.656693pt;}
.wscb{word-spacing:2.709827pt;}
.ws57{word-spacing:2.720096pt;}
.ws1e9{word-spacing:2.754376pt;}
.ws103{word-spacing:2.762961pt;}
.ws1e8{word-spacing:2.773606pt;}
.ws58{word-spacing:2.784224pt;}
.ws30{word-spacing:2.816095pt;}
.ws1a1{word-spacing:2.821427pt;}
.ws14c{word-spacing:2.824456pt;}
.ws160{word-spacing:2.922363pt;}
.ws8c{word-spacing:2.975497pt;}
.ws4e{word-spacing:2.981952pt;}
.ws4f{word-spacing:2.997984pt;}
.ws32{word-spacing:3.028630pt;}
.ws184{word-spacing:3.060531pt;}
.wsb5{word-spacing:3.081764pt;}
.ws158{word-spacing:3.134898pt;}
.ws105{word-spacing:3.188032pt;}
.ws1eb{word-spacing:3.203994pt;}
.wsa4{word-spacing:3.241166pt;}
.ws19{word-spacing:3.294300pt;}
.ws146{word-spacing:3.347434pt;}
.ws147{word-spacing:3.381119pt;}
.ws1b7{word-spacing:3.395277pt;}
.ws169{word-spacing:3.400567pt;}
.ws1b6{word-spacing:3.402060pt;}
.wsb0{word-spacing:3.453701pt;}
.ws9f{word-spacing:3.506835pt;}
.ws84{word-spacing:3.559969pt;}
.ws70{word-spacing:3.613103pt;}
.wsd4{word-spacing:3.634381pt;}
.wsd5{word-spacing:3.643663pt;}
.ws15c{word-spacing:3.666237pt;}
.ws182{word-spacing:3.682202pt;}
.ws152{word-spacing:3.719371pt;}
.ws171{word-spacing:3.730022pt;}
.ws97{word-spacing:3.772505pt;}
.ws46{word-spacing:3.836992pt;}
.ws186{word-spacing:3.873485pt;}
.wsb7{word-spacing:3.878772pt;}
.ws2d{word-spacing:3.931906pt;}
.ws18b{word-spacing:3.969126pt;}
.ws1b8{word-spacing:4.016947pt;}
.ws1ed{word-spacing:4.064768pt;}
.ws188{word-spacing:4.160410pt;}
.ws153{word-spacing:4.197575pt;}
.ws1ca{word-spacing:4.208230pt;}
.ws140{word-spacing:4.250709pt;}
.ws172{word-spacing:4.351693pt;}
.ws33{word-spacing:4.356977pt;}
.ws45{word-spacing:4.398112pt;}
.ws1c7{word-spacing:4.399514pt;}
.wsb4{word-spacing:4.463245pt;}
.ws194{word-spacing:4.495155pt;}
.ws94{word-spacing:4.516379pt;}
.ws16{word-spacing:4.569513pt;}
.ws106{word-spacing:4.622646pt;}
.wsd0{word-spacing:4.638618pt;}
.ws155{word-spacing:4.675780pt;}
.ws185{word-spacing:4.686438pt;}
.ws136{word-spacing:4.700977pt;}
.ws13e{word-spacing:4.728914pt;}
.ws1df{word-spacing:4.734259pt;}
.ws1f6{word-spacing:4.774741pt;}
.ws1d7{word-spacing:4.775475pt;}
.ws17e{word-spacing:4.775689pt;}
.ws1ea{word-spacing:4.775748pt;}
.ws1c5{word-spacing:4.776047pt;}
.ws1db{word-spacing:4.776218pt;}
.ws193{word-spacing:4.777327pt;}
.ws189{word-spacing:4.777395pt;}
.ws1d6{word-spacing:4.777404pt;}
.ws19e{word-spacing:4.777762pt;}
.ws1b1{word-spacing:4.778342pt;}
.ws19b{word-spacing:4.779127pt;}
.ws17b{word-spacing:4.779639pt;}
.ws183{word-spacing:4.779827pt;}
.ws1af{word-spacing:4.779836pt;}
.ws1bc{word-spacing:4.780075pt;}
.ws1a2{word-spacing:4.780271pt;}
.ws1cd{word-spacing:4.780425pt;}
.ws1ba{word-spacing:4.780442pt;}
.ws1da{word-spacing:4.780646pt;}
.ws1b0{word-spacing:4.780766pt;}
.ws1a0{word-spacing:4.780996pt;}
.ws1bb{word-spacing:4.781372pt;}
.ws1a3{word-spacing:4.781815pt;}
.ws156{word-spacing:4.782048pt;}
.wse{word-spacing:4.782080pt;}
.ws1e2{word-spacing:4.783249pt;}
.ws19f{word-spacing:4.823250pt;}
.ws17c{word-spacing:4.829901pt;}
.ws81{word-spacing:4.862546pt;}
.ws6d{word-spacing:4.863040pt;}
.ws80{word-spacing:4.865472pt;}
.ws18f{word-spacing:4.877722pt;}
.ws1b3{word-spacing:4.878976pt;}
.ws7e{word-spacing:4.888316pt;}
.wscf{word-spacing:4.973363pt;}
.wsc1{word-spacing:4.978742pt;}
.ws192{word-spacing:5.069005pt;}
.ws12f{word-spacing:5.100851pt;}
.ws6f{word-spacing:5.153985pt;}
.ws6e{word-spacing:5.167648pt;}
.ws144{word-spacing:5.180751pt;}
.ws25{word-spacing:5.207119pt;}
.ws11{word-spacing:5.280090pt;}
.ws1cb{word-spacing:5.308109pt;}
.ws23{word-spacing:5.313387pt;}
.wsda{word-spacing:5.342119pt;}
.wsd9{word-spacing:5.366521pt;}
.wsbf{word-spacing:5.579056pt;}
.ws199{word-spacing:5.595034pt;}
.ws163{word-spacing:5.632190pt;}
.ws10f{word-spacing:5.729196pt;}
.ws12b{word-spacing:5.750854pt;}
.wsa6{word-spacing:5.844725pt;}
.ws99{word-spacing:5.897859pt;}
.ws4b{word-spacing:5.910464pt;}
.ws98{word-spacing:5.950993pt;}
.ws1ad{word-spacing:5.977600pt;}
.ws1aa{word-spacing:5.987910pt;}
.ws1ac{word-spacing:6.000315pt;}
.ws1ab{word-spacing:6.001833pt;}
.ws1a9{word-spacing:6.025421pt;}
.ws86{word-spacing:6.057261pt;}
.ws1d0{word-spacing:6.121062pt;}
.ws7f{word-spacing:6.130244pt;}
.ws82{word-spacing:6.163529pt;}
.ws1a{word-spacing:6.216662pt;}
.ws4c{word-spacing:6.268512pt;}
.ws13c{word-spacing:6.269796pt;}
.ws4d{word-spacing:6.300576pt;}
.ws1de{word-spacing:6.599270pt;}
.ws1cf{word-spacing:6.790554pt;}
.wsf9{word-spacing:6.904448pt;}
.ws76{word-spacing:6.960537pt;}
.ws1c0{word-spacing:6.981837pt;}
.ws95{word-spacing:7.066804pt;}
.ws164{word-spacing:7.119938pt;}
.wsfd{word-spacing:7.123552pt;}
.wsfe{word-spacing:7.155616pt;}
.wsfc{word-spacing:7.203712pt;}
.ws1a8{word-spacing:7.220941pt;}
.ws1ae{word-spacing:7.555686pt;}
.ws1c8{word-spacing:7.603507pt;}
.wsff{word-spacing:7.704411pt;}
.ws100{word-spacing:7.709917pt;}
.ws1d2{word-spacing:7.746970pt;}
.ws1f7{word-spacing:8.081715pt;}
.ws37{word-spacing:8.086400pt;}
.wse0{word-spacing:8.145600pt;}
.wsdf{word-spacing:8.155200pt;}
.ws24{word-spacing:8.235749pt;}
.ws157{word-spacing:8.288883pt;}
.ws129{word-spacing:8.395151pt;}
.ws1a6{word-spacing:8.559923pt;}
.ws88{word-spacing:8.654569pt;}
.ws8a{word-spacing:8.657673pt;}
.ws87{word-spacing:8.660820pt;}
.ws55{word-spacing:8.678656pt;}
.wsc7{word-spacing:8.767088pt;}
.ws165{word-spacing:8.820222pt;}
.ws93{word-spacing:8.873356pt;}
.ws96{word-spacing:8.926490pt;}
.ws123{word-spacing:8.979623pt;}
.ws124{word-spacing:9.032757pt;}
.ws2e{word-spacing:9.085891pt;}
.ws161{word-spacing:9.351561pt;}
.ws9e{word-spacing:9.564096pt;}
.ws48{word-spacing:9.645920pt;}
.ws109{word-spacing:9.679358pt;}
.ws47{word-spacing:9.710048pt;}
.wse4{word-spacing:10.051200pt;}
.wse6{word-spacing:10.070400pt;}
.wse5{word-spacing:10.166400pt;}
.ws15e{word-spacing:10.733041pt;}
.ws3e{word-spacing:10.955200pt;}
.wsf5{word-spacing:10.987264pt;}
.ws3d{word-spacing:10.997952pt;}
.ws6a{word-spacing:11.569760pt;}
.ws15b{word-spacing:11.583183pt;}
.ws69{word-spacing:11.869024pt;}
.ws61{word-spacing:11.901088pt;}
.ws60{word-spacing:12.007968pt;}
.ws128{word-spacing:12.220789pt;}
.ws127{word-spacing:12.238021pt;}
.wsf1{word-spacing:12.360000pt;}
.wsf0{word-spacing:12.364800pt;}
.wsf2{word-spacing:12.633600pt;}
.ws181{word-spacing:12.768154pt;}
.ws3f{word-spacing:14.182976pt;}
.ws1ce{word-spacing:14.537523pt;}
.ws1c6{word-spacing:14.680986pt;}
.ws1ec{word-spacing:14.776627pt;}
.ws51{word-spacing:15.716704pt;}
.ws1c3{word-spacing:16.067789pt;}
.ws85{word-spacing:16.471499pt;}
.ws1c2{word-spacing:16.498176pt;}
.ws1d5{word-spacing:18.171904pt;}
.wsee{word-spacing:20.376000pt;}
.wsef{word-spacing:20.630400pt;}
.wsed{word-spacing:20.635200pt;}
.ws1a5{word-spacing:20.945510pt;}
.ws5d{word-spacing:21.172928pt;}
.ws1d1{word-spacing:23.527834pt;}
.ws5e{word-spacing:29.466816pt;}
.ws89{word-spacing:31.709275pt;}
.ws1e7{word-spacing:43.038720pt;}
.ws22{word-spacing:893.076272pt;}
._20{margin-left:-12.547529pt;}
._0{margin-left:-10.616218pt;}
._1e{margin-left:-8.845705pt;}
._1f{margin-left:-7.690295pt;}
._21{margin-left:-6.757938pt;}
._4{margin-left:-5.834138pt;}
._6{margin-left:-4.399514pt;}
._1{margin-left:-2.923155pt;}
._8{margin-left:-1.819895pt;}
._3{margin-left:-0.908595pt;}
._9{width:0.969929pt;}
._2{width:2.662287pt;}
._2a{width:4.181758pt;}
._2e{width:9.659802pt;}
._5{width:11.046605pt;}
._1d{width:12.008254pt;}
._11{width:13.138201pt;}
._a{width:14.359488pt;}
._e{width:15.315897pt;}
._7{width:16.737280pt;}
._b{width:18.490586pt;}
._c{width:19.967746pt;}
._10{width:21.094145pt;}
._17{width:21.997421pt;}
._14{width:22.929899pt;}
._d{width:24.614324pt;}
._25{width:25.716791pt;}
._1b{width:26.792812pt;}
._19{width:27.895280pt;}
._f{width:28.910143pt;}
._22{width:30.974637pt;}
._16{width:31.893664pt;}
._1a{width:33.062609pt;}
._23{width:34.696415pt;}
._2f{width:35.692964pt;}
._1c{width:36.662368pt;}
._2c{width:38.208819pt;}
._28{width:40.076279pt;}
._13{width:43.729172pt;}
._18{width:45.392097pt;}
._27{width:47.023472pt;}
._30{width:53.128909pt;}
._29{width:54.993920pt;}
._24{width:56.491352pt;}
._2d{width:59.101413pt;}
._2b{width:80.087294pt;}
._26{width:1830.317600pt;}
._15{width:1840.856192pt;}
._12{width:1851.570933pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsc{font-size:53.440000pt;}
.fsb{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y4c{bottom:-669.792933pt;}
.y6e{bottom:-646.269805pt;}
.y6d{bottom:-628.269877pt;}
.y6c{bottom:-610.269949pt;}
.y6b{bottom:-592.270021pt;}
.y6a{bottom:-574.350253pt;}
.y69{bottom:-556.350325pt;}
.y68{bottom:-538.350397pt;}
.y67{bottom:-520.350469pt;}
.y66{bottom:-494.350573pt;}
.y65{bottom:-460.350709pt;}
.y64{bottom:-442.350781pt;}
.y63{bottom:-424.431013pt;}
.y62{bottom:-406.431085pt;}
.y61{bottom:-388.431157pt;}
.y60{bottom:-370.431229pt;}
.y5f{bottom:-352.431301pt;}
.y5e{bottom:-334.431373pt;}
.y5d{bottom:-316.431445pt;}
.y5c{bottom:-298.511677pt;}
.y5b{bottom:-280.511749pt;}
.yc2{bottom:-272.190267pt;}
.y5a{bottom:-262.511821pt;}
.yd1{bottom:-248.429685pt;}
.y59{bottom:-244.511893pt;}
.yd0{bottom:-230.429757pt;}
.y58{bottom:-226.511965pt;}
.ycf{bottom:-212.429829pt;}
.y57{bottom:-208.512037pt;}
.yce{bottom:-194.429901pt;}
.y56{bottom:-190.512109pt;}
.ycd{bottom:-176.510133pt;}
.y55{bottom:-172.592341pt;}
.y54{bottom:-154.592413pt;}
.ycc{bottom:-142.911867pt;}
.y53{bottom:-136.592485pt;}
.ycb{bottom:-125.551467pt;}
.y52{bottom:-118.592557pt;}
.yca{bottom:-108.191067pt;}
.y51{bottom:-100.592629pt;}
.yc9{bottom:-90.911067pt;}
.y50{bottom:-82.592701pt;}
.yc8{bottom:-73.550667pt;}
.y4f{bottom:-64.672933pt;}
.yc7{bottom:-56.190267pt;}
.yc6{bottom:-38.910267pt;}
.y4e{bottom:-31.072933pt;}
.yc5{bottom:-8.590267pt;}
.y0{bottom:0.000000pt;}
.y4d{bottom:0.767067pt;}
.y20{bottom:3.044747pt;}
.y1f{bottom:12.578910pt;}
.y2{bottom:14.008270pt;}
.y34{bottom:56.693333pt;}
.y1c2{bottom:96.850667pt;}
.y18e{bottom:98.245333pt;}
.y122{bottom:98.576000pt;}
.ydf{bottom:100.028000pt;}
.y7c{bottom:103.253333pt;}
.yed{bottom:103.650667pt;}
.yad{bottom:106.545333pt;}
.y133{bottom:109.441333pt;}
.y1c1{bottom:114.066667pt;}
.y18d{bottom:115.461333pt;}
.y121{bottom:116.588000pt;}
.yde{bottom:118.041333pt;}
.y7b{bottom:121.265333pt;}
.yec{bottom:121.662667pt;}
.yac{bottom:124.558667pt;}
.y132{bottom:127.454667pt;}
.y1c0{bottom:131.281333pt;}
.y18c{bottom:132.676000pt;}
.y120{bottom:134.601333pt;}
.ydd{bottom:136.053333pt;}
.y15b{bottom:138.280000pt;}
.y7a{bottom:139.278667pt;}
.yeb{bottom:139.674667pt;}
.yab{bottom:142.570667pt;}
.y131{bottom:145.466667pt;}
.y1bf{bottom:148.497333pt;}
.y18b{bottom:149.892000pt;}
.y33{bottom:150.998667pt;}
.y15a{bottom:151.789333pt;}
.y11f{bottom:152.613333pt;}
.ydc{bottom:154.065333pt;}
.y79{bottom:157.290667pt;}
.yea{bottom:157.688000pt;}
.yaa{bottom:160.584000pt;}
.y130{bottom:163.478667pt;}
.y159{bottom:165.298667pt;}
.y1be{bottom:165.713333pt;}
.y18a{bottom:167.108000pt;}
.y106{bottom:167.730667pt;}
.y32{bottom:169.012000pt;}
.y11e{bottom:170.625333pt;}
.ydb{bottom:172.078667pt;}
.y78{bottom:175.302667pt;}
.ye9{bottom:175.700000pt;}
.ya9{bottom:178.596000pt;}
.y158{bottom:178.808000pt;}
.y12f{bottom:181.492000pt;}
.y1bd{bottom:182.928000pt;}
.y189{bottom:184.322667pt;}
.y105{bottom:185.742667pt;}
.y11d{bottom:188.638667pt;}
.yda{bottom:190.090667pt;}
.y77{bottom:193.316000pt;}
.ye8{bottom:193.713333pt;}
.ya8{bottom:196.608000pt;}
.y12e{bottom:199.504000pt;}
.y1bc{bottom:200.144000pt;}
.y157{bottom:200.288000pt;}
.y188{bottom:201.538667pt;}
.y31{bottom:202.964000pt;}
.y104{bottom:203.754667pt;}
.y11c{bottom:206.650667pt;}
.yd9{bottom:208.104000pt;}
.y76{bottom:211.328000pt;}
.ye7{bottom:211.725333pt;}
.y156{bottom:213.797333pt;}
.ya7{bottom:214.621333pt;}
.y1bb{bottom:217.358667pt;}
.y12d{bottom:217.517333pt;}
.y187{bottom:218.753333pt;}
.y30{bottom:220.977333pt;}
.y103{bottom:221.768000pt;}
.y11b{bottom:224.664000pt;}
.y155{bottom:227.306667pt;}
.y75{bottom:229.341333pt;}
.ye6{bottom:229.737333pt;}
.ya6{bottom:232.633333pt;}
.y1ba{bottom:234.574667pt;}
.y12c{bottom:235.529333pt;}
.y186{bottom:235.969333pt;}
.y2f{bottom:238.989333pt;}
.yd8{bottom:239.214667pt;}
.y102{bottom:239.780000pt;}
.y154{bottom:240.816000pt;}
.y11a{bottom:242.676000pt;}
.y74{bottom:247.353333pt;}
.ye5{bottom:247.750667pt;}
.ya5{bottom:250.646667pt;}
.y1b9{bottom:251.790667pt;}
.y185{bottom:253.185333pt;}
.y12b{bottom:253.541333pt;}
.y153{bottom:254.325333pt;}
.yd7{bottom:256.310667pt;}
.y2e{bottom:257.002667pt;}
.y101{bottom:257.793333pt;}
.y119{bottom:260.688000pt;}
.y73{bottom:265.365333pt;}
.ye4{bottom:265.762667pt;}
.ya4{bottom:268.658667pt;}
.y1b8{bottom:269.005333pt;}
.y184{bottom:270.400000pt;}
.y12a{bottom:271.554667pt;}
.yd6{bottom:273.406667pt;}
.y2d{bottom:275.014667pt;}
.y100{bottom:275.805333pt;}
.y118{bottom:278.701333pt;}
.y72{bottom:283.378667pt;}
.ye3{bottom:283.776000pt;}
.y1b7{bottom:286.221333pt;}
.ya3{bottom:286.670667pt;}
.y183{bottom:287.616000pt;}
.y129{bottom:289.566667pt;}
.yd5{bottom:290.502667pt;}
.y2c{bottom:293.026667pt;}
.yff{bottom:293.817333pt;}
.y117{bottom:296.713333pt;}
.y71{bottom:301.390667pt;}
.y152{bottom:301.788000pt;}
.y1b6{bottom:303.437333pt;}
.ya2{bottom:304.684000pt;}
.y182{bottom:304.830667pt;}
.y128{bottom:307.580000pt;}
.yd4{bottom:307.598667pt;}
.ye2{bottom:309.758667pt;}
.y2b{bottom:311.040000pt;}
.yfe{bottom:311.830667pt;}
.y4b{bottom:314.127067pt;}
.y116{bottom:314.726667pt;}
.y70{bottom:319.404000pt;}
.y151{bottom:319.800000pt;}
.y1b5{bottom:320.652000pt;}
.y181{bottom:322.046667pt;}
.ya1{bottom:322.696000pt;}
.yd3{bottom:324.694667pt;}
.y127{bottom:325.592000pt;}
.y2a{bottom:329.052000pt;}
.yfd{bottom:329.842667pt;}
.y115{bottom:332.738667pt;}
.y150{bottom:337.813333pt;}
.y1b4{bottom:337.868000pt;}
.y180{bottom:339.262667pt;}
.ya0{bottom:340.709333pt;}
.yd2{bottom:341.790667pt;}
.y126{bottom:343.604000pt;}
.y29{bottom:347.065333pt;}
.yfc{bottom:347.856000pt;}
.y6f{bottom:350.514667pt;}
.y114{bottom:350.750667pt;}
.y1b3{bottom:355.082667pt;}
.y14f{bottom:355.825333pt;}
.y17f{bottom:356.477333pt;}
.y9f{bottom:358.721333pt;}
.y125{bottom:361.617333pt;}
.yc0{bottom:361.726667pt;}
.y28{bottom:365.077333pt;}
.yfb{bottom:365.868000pt;}
.y113{bottom:368.764000pt;}
.y4a{bottom:370.452000pt;}
.y1b2{bottom:372.298667pt;}
.y17e{bottom:373.693333pt;}
.y14e{bottom:373.838667pt;}
.y9e{bottom:376.733333pt;}
.y124{bottom:379.629333pt;}
.y27{bottom:383.089333pt;}
.yb2{bottom:384.704000pt;}
.y112{bottom:386.776000pt;}
.y1b1{bottom:389.514667pt;}
.y17d{bottom:390.908000pt;}
.yfa{bottom:391.850667pt;}
.y9d{bottom:394.746667pt;}
.y123{bottom:397.642667pt;}
.y26{bottom:401.102667pt;}
.y111{bottom:404.789333pt;}
.y1b0{bottom:406.729333pt;}
.y17c{bottom:408.124000pt;}
.y14d{bottom:409.862667pt;}
.y9b{bottom:412.758667pt;}
.yb1{bottom:415.654667pt;}
.y9c{bottom:417.581333pt;}
.y25{bottom:419.114667pt;}
.yf9{bottom:422.801333pt;}
.y1af{bottom:423.945333pt;}
.y17b{bottom:425.340000pt;}
.y14c{bottom:427.876000pt;}
.y9a{bottom:430.772000pt;}
.yb0{bottom:433.666667pt;}
.y24{bottom:437.128000pt;}
.yf8{bottom:440.813333pt;}
.y1ae{bottom:441.160000pt;}
.y17a{bottom:442.554667pt;}
.y14b{bottom:445.888000pt;}
.ybf{bottom:448.784000pt;}
.yaf{bottom:451.680000pt;}
.y23{bottom:455.140000pt;}
.y99{bottom:456.753333pt;}
.y1ad{bottom:458.376000pt;}
.yf7{bottom:458.826667pt;}
.y179{bottom:459.770667pt;}
.y14a{bottom:463.901333pt;}
.ybe{bottom:466.796000pt;}
.yae{bottom:469.692000pt;}
.y22{bottom:473.152000pt;}
.y1ac{bottom:475.592000pt;}
.yf6{bottom:476.838667pt;}
.y178{bottom:476.985333pt;}
.y149{bottom:481.913333pt;}
.ybd{bottom:484.809333pt;}
.y98{bottom:487.704000pt;}
.y21{bottom:491.165333pt;}
.y1ab{bottom:492.806667pt;}
.y177{bottom:494.201333pt;}
.yf5{bottom:494.852000pt;}
.y148{bottom:499.925333pt;}
.ybc{bottom:502.821333pt;}
.y97{bottom:505.717333pt;}
.y1aa{bottom:510.022667pt;}
.y176{bottom:511.417333pt;}
.yf4{bottom:512.864000pt;}
.y147{bottom:517.938667pt;}
.ybb{bottom:520.834667pt;}
.y1e{bottom:522.660048pt;}
.y1d{bottom:523.341333pt;}
.y96{bottom:523.729333pt;}
.y1a9{bottom:527.237333pt;}
.y175{bottom:528.632000pt;}
.yf3{bottom:530.876000pt;}
.y146{bottom:535.950667pt;}
.yba{bottom:538.846667pt;}
.y95{bottom:541.742667pt;}
.y1a8{bottom:544.453333pt;}
.y174{bottom:545.848000pt;}
.yf2{bottom:548.889333pt;}
.y145{bottom:553.964000pt;}
.yb9{bottom:556.858667pt;}
.y1c{bottom:558.013333pt;}
.y94{bottom:559.754667pt;}
.y1a7{bottom:561.669333pt;}
.y173{bottom:563.064000pt;}
.yf1{bottom:566.901333pt;}
.y144{bottom:571.976000pt;}
.y1b{bottom:574.153333pt;}
.yb8{bottom:574.872000pt;}
.y93{bottom:577.766667pt;}
.y1a6{bottom:578.884000pt;}
.y172{bottom:580.278667pt;}
.yf0{bottom:584.914667pt;}
.y143{bottom:589.988000pt;}
.y1a{bottom:590.292000pt;}
.yb7{bottom:592.884000pt;}
.y19{bottom:594.632000pt;}
.y92{bottom:595.780000pt;}
.y1a5{bottom:596.100000pt;}
.y171{bottom:597.494667pt;}
.y110{bottom:602.926667pt;}
.y18{bottom:606.432000pt;}
.yb6{bottom:610.896000pt;}
.y1a4{bottom:613.314667pt;}
.y91{bottom:613.792000pt;}
.y170{bottom:614.709333pt;}
.y142{bottom:615.970667pt;}
.y10f{bottom:620.938667pt;}
.y17{bottom:622.572000pt;}
.y16{bottom:626.912000pt;}
.yb5{bottom:628.909333pt;}
.y1a3{bottom:630.530667pt;}
.y90{bottom:631.805333pt;}
.y16e{bottom:631.925333pt;}
.y16f{bottom:636.265333pt;}
.y15{bottom:638.710667pt;}
.y10e{bottom:638.952000pt;}
.yef{bottom:641.846667pt;}
.yb4{bottom:646.921333pt;}
.y1a2{bottom:647.746667pt;}
.y16d{bottom:649.141333pt;}
.y8f{bottom:649.817333pt;}
.y10d{bottom:656.964000pt;}
.y14{bottom:659.190667pt;}
.yee{bottom:659.860000pt;}
.yc4{bottom:660.609965pt;}
.ye1{bottom:664.934667pt;}
.y1a1{bottom:664.961333pt;}
.y16c{bottom:666.356000pt;}
.y8e{bottom:667.829333pt;}
.y13{bottom:670.990667pt;}
.yb3{bottom:672.904000pt;}
.y10c{bottom:674.977333pt;}
.y49{bottom:677.872000pt;}
.yc3{bottom:678.529733pt;}
.y1a0{bottom:682.177333pt;}
.y141{bottom:682.946667pt;}
.y16b{bottom:683.572000pt;}
.y8d{bottom:685.842667pt;}
.y12{bottom:687.129333pt;}
.y1c5{bottom:687.402667pt;}
.ye0{bottom:690.917333pt;}
.y11{bottom:691.469333pt;}
.y10b{bottom:692.989333pt;}
.y48{bottom:695.885333pt;}
.y19f{bottom:699.392000pt;}
.y16a{bottom:700.786667pt;}
.y140{bottom:700.958667pt;}
.y10{bottom:703.269333pt;}
.y8c{bottom:703.854667pt;}
.y1c4{bottom:704.617333pt;}
.y10a{bottom:711.001333pt;}
.yc1{bottom:711.729733pt;}
.y47{bottom:713.897333pt;}
.y19e{bottom:716.608000pt;}
.y169{bottom:718.002667pt;}
.y13f{bottom:718.972000pt;}
.y1c3{bottom:721.833333pt;}
.y8b{bottom:721.868000pt;}
.yf{bottom:723.749333pt;}
.y109{bottom:729.014667pt;}
.y46{bottom:731.909333pt;}
.y19d{bottom:733.824000pt;}
.y168{bottom:735.218667pt;}
.ye{bottom:735.548000pt;}
.y13e{bottom:736.984000pt;}
.y8a{bottom:739.880000pt;}
.y108{bottom:747.026667pt;}
.y45{bottom:749.922667pt;}
.y19c{bottom:751.038667pt;}
.y167{bottom:752.433333pt;}
.y13d{bottom:754.997333pt;}
.yd{bottom:756.028000pt;}
.y89{bottom:757.892000pt;}
.yc{bottom:767.828000pt;}
.y43{bottom:767.934667pt;}
.y19b{bottom:768.254667pt;}
.y166{bottom:769.649333pt;}
.y44{bottom:772.757333pt;}
.y107{bottom:773.009333pt;}
.y88{bottom:775.905333pt;}
.yb{bottom:783.966667pt;}
.y19a{bottom:785.469333pt;}
.y41{bottom:785.948000pt;}
.y165{bottom:786.864000pt;}
.y42{bottom:790.769333pt;}
.y13c{bottom:791.021333pt;}
.y87{bottom:793.917333pt;}
.y199{bottom:802.685333pt;}
.y40{bottom:803.960000pt;}
.y164{bottom:804.080000pt;}
.ya{bottom:804.446667pt;}
.y13b{bottom:809.034667pt;}
.y86{bottom:811.930667pt;}
.y198{bottom:819.901333pt;}
.y163{bottom:821.296000pt;}
.y3f{bottom:821.972000pt;}
.y9{bottom:824.216000pt;}
.y13a{bottom:827.046667pt;}
.y85{bottom:829.942667pt;}
.y197{bottom:837.116000pt;}
.y3e{bottom:839.985333pt;}
.y8{bottom:842.229333pt;}
.y139{bottom:845.060000pt;}
.y162{bottom:846.481333pt;}
.y84{bottom:847.954667pt;}
.y196{bottom:854.332000pt;}
.y3d{bottom:857.997333pt;}
.y7{bottom:860.241333pt;}
.y138{bottom:863.072000pt;}
.y83{bottom:865.968000pt;}
.y195{bottom:871.546667pt;}
.y3c{bottom:876.010667pt;}
.y137{bottom:881.084000pt;}
.y161{bottom:881.549333pt;}
.y82{bottom:883.980000pt;}
.y194{bottom:888.762667pt;}
.y3b{bottom:894.022667pt;}
.y160{bottom:895.058667pt;}
.y6{bottom:898.178667pt;}
.y136{bottom:899.097333pt;}
.y81{bottom:901.993333pt;}
.y193{bottom:905.978667pt;}
.y15f{bottom:908.568000pt;}
.y3a{bottom:912.034667pt;}
.y135{bottom:917.109333pt;}
.y80{bottom:920.005333pt;}
.y192{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.y39{bottom:930.048000pt;}
.y7f{bottom:938.017333pt;}
.y191{bottom:940.409333pt;}
.y134{bottom:943.092000pt;}
.y15e{bottom:943.557333pt;}
.y38{bottom:948.060000pt;}
.y4{bottom:952.217333pt;}
.y7e{bottom:956.030667pt;}
.y190{bottom:957.624000pt;}
.y15d{bottom:965.037333pt;}
.y37{bottom:966.073333pt;}
.y7d{bottom:974.042667pt;}
.y18f{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y15c{bottom:978.546667pt;}
.y36{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y35{bottom:1038.548000pt;}
.h1e{height:17.332218pt;}
.h11{height:18.817950pt;}
.hb{height:22.673858pt;}
.h8{height:27.076941pt;}
.h19{height:29.397999pt;}
.hd{height:29.433775pt;}
.hc{height:30.399505pt;}
.h10{height:31.200285pt;}
.h14{height:31.992188pt;}
.h20{height:33.713664pt;}
.h1f{height:34.191872pt;}
.h1c{height:34.430976pt;}
.ha{height:34.813542pt;}
.h1d{height:35.100467pt;}
.hf{height:38.256384pt;}
.he{height:38.681455pt;}
.h4{height:39.000258pt;}
.h18{height:39.192812pt;}
.h13{height:39.359687pt;}
.h9{height:43.660390pt;}
.h16{height:44.390625pt;}
.h2{height:45.271688pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h1a{height:48.511220pt;}
.h17{height:49.421563pt;}
.h15{height:59.187500pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h12{height:286.400000pt;}
.h1b{height:643.613333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:167.291906pt;}
.w5{width:564.407467pt;}
.w4{width:593.256800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x7e{left:-13.319200pt;}
.x0{left:0.000000pt;}
.x7f{left:15.000800pt;}
.x16{left:26.021437pt;}
.x25{left:29.163467pt;}
.x2{left:51.605861pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x24{left:105.163467pt;}
.x14{left:108.542667pt;}
.x4{left:109.606667pt;}
.x21{left:114.905333pt;}
.x97{left:122.245333pt;}
.x22{left:124.160000pt;}
.x5{left:129.929333pt;}
.x84{left:134.060000pt;}
.x98{left:135.529333pt;}
.x9b{left:139.616000pt;}
.x85{left:144.018667pt;}
.x4f{left:150.792000pt;}
.x95{left:152.152000pt;}
.x10d{left:154.306667pt;}
.xce{left:155.710667pt;}
.xe{left:157.381333pt;}
.xb5{left:158.966667pt;}
.x10e{left:160.284000pt;}
.xd7{left:161.246667pt;}
.xf{left:163.358667pt;}
.x96{left:165.434667pt;}
.xf3{left:167.061333pt;}
.xf4{left:169.109333pt;}
.xa4{left:171.088000pt;}
.xb6{left:172.250667pt;}
.xa5{left:174.352000pt;}
.xbf{left:175.826667pt;}
.x17{left:179.570667pt;}
.x6f{left:180.649333pt;}
.x52{left:182.814667pt;}
.x6d{left:187.469333pt;}
.x53{left:189.457333pt;}
.xf2{left:190.893333pt;}
.x70{left:193.933333pt;}
.xb8{left:195.341333pt;}
.x50{left:198.166667pt;}
.x6e{left:200.753333pt;}
.xa1{left:203.952000pt;}
.x51{left:205.418667pt;}
.x26{left:207.362667pt;}
.xbd{left:212.342667pt;}
.x71{left:213.732000pt;}
.x7a{left:215.026667pt;}
.xf5{left:215.966667pt;}
.xa2{left:217.236000pt;}
.xd1{left:218.618667pt;}
.x2f{left:221.122667pt;}
.x87{left:223.252000pt;}
.xbe{left:225.626667pt;}
.x7b{left:228.310667pt;}
.x33{left:229.654667pt;}
.x4a{left:231.426667pt;}
.x88{left:233.210667pt;}
.x30{left:234.406667pt;}
.xfb{left:236.097333pt;}
.x4c{left:237.000000pt;}
.x4b{left:238.068000pt;}
.xfc{left:239.529333pt;}
.xa3{left:241.290667pt;}
.x34{left:242.938667pt;}
.xb3{left:244.116000pt;}
.x9c{left:245.066667pt;}
.xb4{left:247.453333pt;}
.x1c{left:248.910667pt;}
.xea{left:253.361333pt;}
.x72{left:254.548000pt;}
.x1d{left:255.552000pt;}
.x3a{left:258.304000pt;}
.x91{left:259.896000pt;}
.x42{left:261.024000pt;}
.xb9{left:262.292000pt;}
.x8b{left:263.373333pt;}
.xc0{left:264.849333pt;}
.xe5{left:266.536000pt;}
.x43{left:267.665333pt;}
.x102{left:268.582667pt;}
.x8c{left:270.014667pt;}
.x3b{left:271.586667pt;}
.x3c{left:273.064000pt;}
.xae{left:274.066667pt;}
.xaf{left:277.321333pt;}
.x8d{left:280.453333pt;}
.x8e{left:281.510667pt;}
.x3d{left:283.318667pt;}
.xee{left:284.924000pt;}
.x5c{left:290.917333pt;}
.xb0{left:293.860000pt;}
.x6{left:295.598667pt;}
.xcb{left:296.641333pt;}
.xe6{left:300.217333pt;}
.x7{left:301.576000pt;}
.xda{left:302.810667pt;}
.x5d{left:304.201333pt;}
.x5e{left:307.588000pt;}
.xcc{left:309.028000pt;}
.xb1{left:310.397333pt;}
.x35{left:314.640000pt;}
.x36{left:317.894667pt;}
.x5f{left:320.872000pt;}
.x92{left:324.082667pt;}
.xba{left:325.169333pt;}
.xaa{left:327.709333pt;}
.x9d{left:329.982667pt;}
.x37{left:331.177333pt;}
.x2d{left:333.986667pt;}
.xff{left:335.984000pt;}
.x4d{left:337.976000pt;}
.xab{left:340.993333pt;}
.xb2{left:343.473333pt;}
.x4e{left:344.618667pt;}
.x2e{left:347.270667pt;}
.xef{left:350.636000pt;}
.xb7{left:353.794667pt;}
.x8f{left:356.042667pt;}
.xac{left:357.664000pt;}
.xad{left:361.050667pt;}
.x7c{left:363.065333pt;}
.x93{left:364.462667pt;}
.xe7{left:366.069333pt;}
.xc5{left:367.684000pt;}
.x90{left:369.325333pt;}
.x101{left:370.754667pt;}
.xe8{left:371.796000pt;}
.x60{left:373.540000pt;}
.xde{left:375.250667pt;}
.x7d{left:376.349333pt;}
.x94{left:377.745333pt;}
.x61{left:386.822667pt;}
.x82{left:392.401333pt;}
.x83{left:401.033333pt;}
.x46{left:403.978667pt;}
.x9a{left:405.382667pt;}
.xf1{left:407.513333pt;}
.x10{left:408.646667pt;}
.xc9{left:409.961333pt;}
.x5a{left:411.254667pt;}
.xc6{left:413.468000pt;}
.x11{left:414.624000pt;}
.xcf{left:416.105333pt;}
.x47{left:417.261333pt;}
.x100{left:419.909333pt;}
.x10c{left:421.633333pt;}
.xca{left:423.245333pt;}
.x5b{left:424.537333pt;}
.xc7{left:426.752000pt;}
.x73{left:428.018667pt;}
.x54{left:432.100000pt;}
.x8{left:434.712000pt;}
.x9e{left:436.304000pt;}
.x77{left:437.490667pt;}
.x55{left:438.741333pt;}
.x9{left:440.689333pt;}
.x74{left:444.689333pt;}
.x75{left:448.077333pt;}
.x9f{left:449.586667pt;}
.x3e{left:456.860000pt;}
.x107{left:458.184000pt;}
.x56{left:459.538667pt;}
.x76{left:461.360000pt;}
.x3f{left:463.501333pt;}
.x108{left:464.712000pt;}
.x57{left:466.180000pt;}
.xf6{left:468.986667pt;}
.xf7{left:474.965333pt;}
.x10b{left:480.222667pt;}
.x12{left:483.314667pt;}
.x8a{left:485.869333pt;}
.x40{left:487.058667pt;}
.x13{left:489.841333pt;}
.x41{left:493.700000pt;}
.xa0{left:495.716000pt;}
.xd4{left:496.818667pt;}
.xbb{left:497.881333pt;}
.x67{left:499.488000pt;}
.xd5{left:502.346667pt;}
.x68{left:506.130667pt;}
.xe9{left:508.485333pt;}
.x10f{left:510.068000pt;}
.xbc{left:511.165333pt;}
.xe3{left:512.265333pt;}
.x110{left:516.045333pt;}
.xe4{left:518.242667pt;}
.xd6{left:519.920000pt;}
.x80{left:525.380000pt;}
.x69{left:528.033333pt;}
.x18{left:531.220000pt;}
.x58{left:533.498667pt;}
.x6a{left:534.674667pt;}
.x109{left:536.716000pt;}
.x19{left:537.861333pt;}
.x59{left:540.141333pt;}
.x89{left:541.709333pt;}
.xd8{left:542.966667pt;}
.x1a{left:544.636000pt;}
.xf8{left:546.412000pt;}
.x6b{left:547.384000pt;}
.xfd{left:549.488000pt;}
.x1b{left:551.278667pt;}
.x48{left:552.964000pt;}
.x99{left:554.253333pt;}
.xfe{left:556.016000pt;}
.x78{left:557.658667pt;}
.xc8{left:559.038667pt;}
.x6c{left:560.666667pt;}
.x49{left:562.916000pt;}
.xa{left:564.893333pt;}
.xe0{left:566.414667pt;}
.x1e{left:568.490667pt;}
.xe1{left:569.846667pt;}
.xb{left:570.870667pt;}
.x63{left:573.814667pt;}
.x1f{left:575.132000pt;}
.x64{left:577.628000pt;}
.x27{left:579.689333pt;}
.xf9{left:582.682667pt;}
.x103{left:583.584000pt;}
.x28{left:586.332000pt;}
.xc1{left:587.593333pt;}
.x23{left:590.843333pt;}
.x29{left:593.122667pt;}
.xfa{left:595.862667pt;}
.xeb{left:596.822667pt;}
.xdb{left:597.882667pt;}
.x2a{left:599.764000pt;}
.xec{left:601.473333pt;}
.x2b{left:603.152000pt;}
.xc2{left:604.264000pt;}
.x104{left:607.493333pt;}
.x44{left:608.518667pt;}
.xcd{left:612.618667pt;}
.xd2{left:614.984000pt;}
.x2c{left:616.434667pt;}
.xa6{left:619.396000pt;}
.x45{left:621.801333pt;}
.x15{left:623.413317pt;}
.xe2{left:625.766667pt;}
.xf0{left:627.361333pt;}
.x38{left:628.353333pt;}
.xa7{left:632.680000pt;}
.xd9{left:635.550667pt;}
.x65{left:636.930667pt;}
.x39{left:641.637333pt;}
.x105{left:643.222667pt;}
.xdf{left:644.818667pt;}
.xc3{left:646.745333pt;}
.xed{left:648.194667pt;}
.x66{left:650.213333pt;}
.x86{left:651.642667pt;}
.xa8{left:652.737333pt;}
.xdc{left:654.002667pt;}
.xc4{left:656.641333pt;}
.x81{left:657.908000pt;}
.xdd{left:659.729333pt;}
.xd0{left:664.617333pt;}
.xa9{left:666.021333pt;}
.x106{left:667.133333pt;}
.x20{left:670.329333pt;}
.x10a{left:671.377333pt;}
.x31{left:672.796000pt;}
.xc{left:674.244000pt;}
.xd{left:680.222667pt;}
.x62{left:681.540000pt;}
.x32{left:686.078667pt;}
.x79{left:687.212000pt;}
.xd3{left:690.174667pt;}
}




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