
    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_2035455648df38560f5e3482.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6b28e981e0d3350ec5c77445.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.696000;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_915d30b02801d8df7f421dde.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.304000;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_0889781389f2213f419c9b1e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.108000;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_b84bda1702dda2bf75b5a27f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.854000;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_5e17c6d0af7108b1f92cb3b0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893000;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_c5a3430d9227a4788d841bae.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104000;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_700f366b493abf0b048b48f8.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_d3f8c49dd3f3293d4bc6ebaf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4f8f6197d620933b3f6a330f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.644000;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_a0b96b09f438d16b46d9fc33.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1819af826c5713c45d4aefa3.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5894e97d2a308c528158413e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.685000;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_a439321c9931951317115156.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_71c05358b752a601999f20e1.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ce8112981870794ecc5fc791.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.199000;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_a7bb8495220a899ea8ca80c0.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.714000;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_c255d6f7781ec2669541af65.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.644000;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;}
.ff13{font-family:sans-serif;visibility:hidden;}
.ff14{font-family:sans-serif;visibility:hidden;}
.ff15{font-family:sans-serif;visibility:hidden;}
.ff16{font-family:sans-serif;visibility:hidden;}
.ff17{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff18;src:url('chunks/assets/font_b381439e65817bd2522630bf.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.754883;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_dbf20b873ec16f206db1acab.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.901367;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;}
.m29{transform:matrix(0.000000,0.249156,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.249156,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.249156,-0.250000,0.000000,0,0);}
.mb{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);}
.m1d{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);}
.m15{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);}
.m4{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);}
.m5{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);}
.m14{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);}
.m28{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);}
.m1e{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);}
.m26{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);}
.mc{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);}
.m18{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);}
.m19{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);}
.m22{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);}
.ma{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);}
.m1c{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);}
.m11{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);}
.md{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);}
.me{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);}
.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);}
.m2{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);}
.m1a{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);}
.m24{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);}
.mf{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);}
.m12{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);}
.m27{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m13{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);}
.m9{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);}
.m1f{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);}
.m16{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);}
.m25{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);}
.m7{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);}
.m8{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);}
.m17{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);}
.m1b{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);}
.m20{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);}
.m1{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);}
.v2{vertical-align:-26.030981px;}
.v4{vertical-align:-16.880524px;}
.v8{vertical-align:-10.795860px;}
.v7{vertical-align:-8.972309px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.463023px;}
.v3{vertical-align:21.692465px;}
.v9{vertical-align:23.743367px;}
.v1{vertical-align:26.030981px;}
.va{vertical-align:35.446292px;}
.v6{vertical-align:48.421941px;}
.lsa{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.003193px;}
.ls4{letter-spacing:0.004623px;}
.ls2a{letter-spacing:0.005469px;}
.ls24{letter-spacing:0.009071px;}
.ls2b{letter-spacing:0.010214px;}
.ls1{letter-spacing:0.011142px;}
.ls1b{letter-spacing:0.011411px;}
.ls3c{letter-spacing:0.011537px;}
.ls2{letter-spacing:0.011644px;}
.ls38{letter-spacing:0.012554px;}
.ls19{letter-spacing:0.013837px;}
.ls12{letter-spacing:0.013877px;}
.ls3{letter-spacing:0.018222px;}
.ls40{letter-spacing:0.018558px;}
.ls2f{letter-spacing:0.018577px;}
.ls18{letter-spacing:0.018896px;}
.ls36{letter-spacing:0.019634px;}
.ls25{letter-spacing:0.020779px;}
.ls32{letter-spacing:0.020917px;}
.ls28{letter-spacing:0.024374px;}
.ls13{letter-spacing:0.025813px;}
.ls14{letter-spacing:0.030904px;}
.ls29{letter-spacing:0.033244px;}
.ls37{letter-spacing:0.037924px;}
.ls15{letter-spacing:0.040392px;}
.lsc{letter-spacing:0.052390px;}
.lsd{letter-spacing:0.057269px;}
.ls1c{letter-spacing:0.774209px;}
.lsf{letter-spacing:1.011197px;}
.ls3a{letter-spacing:1.512134px;}
.ls33{letter-spacing:3.004097px;}
.ls1d{letter-spacing:3.004481px;}
.ls35{letter-spacing:3.006437px;}
.ls3f{letter-spacing:3.007182px;}
.ls1a{letter-spacing:3.011117px;}
.ls26{letter-spacing:3.013457px;}
.ls39{letter-spacing:3.545948px;}
.ls3d{letter-spacing:4.133374px;}
.ls2e{letter-spacing:8.304960px;}
.ls45{letter-spacing:9.685354px;}
.lse{letter-spacing:10.004359px;}
.ls27{letter-spacing:10.030130px;}
.ls9{letter-spacing:11.952958px;}
.ls31{letter-spacing:14.108504px;}
.ls34{letter-spacing:14.115525px;}
.ls3e{letter-spacing:14.949027px;}
.ls1f{letter-spacing:16.612265px;}
.ls30{letter-spacing:16.646871px;}
.ls2d{letter-spacing:16.651191px;}
.ls1e{letter-spacing:16.651233px;}
.ls10{letter-spacing:16.676786px;}
.ls11{letter-spacing:16.679324px;}
.ls17{letter-spacing:16.679393px;}
.ls44{letter-spacing:16.697994px;}
.ls42{letter-spacing:16.981029px;}
.ls43{letter-spacing:17.021410px;}
.ls16{letter-spacing:17.645649px;}
.ls41{letter-spacing:17.960942px;}
.ls20{letter-spacing:18.269359px;}
.ls3b{letter-spacing:19.608451px;}
.ls2c{letter-spacing:19.616734px;}
.ls8{letter-spacing:20.934848px;}
.ls7{letter-spacing:20.939528px;}
.lsb{letter-spacing:28.399540px;}
.ls23{letter-spacing:29.472324px;}
.ls22{letter-spacing:32.440035px;}
.ls5{letter-spacing:208.954909px;}
.ls6{letter-spacing:208.957309px;}
.ls0{letter-spacing:208.959709px;}
.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;}
}
.ws13f{word-spacing:-39.919424px;}
.ws9a{word-spacing:-35.867153px;}
.ws2b{word-spacing:-28.693795px;}
.ws9f{word-spacing:-25.400950px;}
.ws141{word-spacing:-19.882589px;}
.ws12c{word-spacing:-19.859165px;}
.ws9{word-spacing:-14.944647px;}
.ws149{word-spacing:-14.923424px;}
.ws145{word-spacing:-13.283819px;}
.ws2f{word-spacing:-11.955748px;}
.ws14f{word-spacing:-3.348318px;}
.ws1be{word-spacing:-1.196289px;}
.ws1cb{word-spacing:-0.179276px;}
.wsc1{word-spacing:-0.059779px;}
.wsb4{word-spacing:-0.047823px;}
.ws148{word-spacing:-0.041845px;}
.ws0{word-spacing:-0.001119px;}
.ws199{word-spacing:-0.000897px;}
.ws6{word-spacing:-0.000789px;}
.ws11b{word-spacing:-0.000717px;}
.wsdf{word-spacing:-0.000658px;}
.ws3{word-spacing:-0.000502px;}
.ws8c{word-spacing:-0.000299px;}
.ws1{word-spacing:-0.000287px;}
.wsbe{word-spacing:-0.000239px;}
.ws51{word-spacing:0.000000px;}
.ws1d1{word-spacing:0.000120px;}
.ws108{word-spacing:0.000299px;}
.ws68{word-spacing:0.000418px;}
.ws4{word-spacing:0.000430px;}
.ws5{word-spacing:0.000574px;}
.ws2{word-spacing:0.001004px;}
.ws36{word-spacing:3.945626px;}
.wsed{word-spacing:10.041728px;}
.ws2e{word-spacing:10.376537px;}
.ws1a{word-spacing:10.398736px;}
.ws8a{word-spacing:10.399344px;}
.ws143{word-spacing:10.761282px;}
.ws225{word-spacing:11.478087px;}
.ws150{word-spacing:11.536969px;}
.ws151{word-spacing:11.557208px;}
.ws152{word-spacing:11.596150px;}
.wsa0{word-spacing:11.656586px;}
.ws14d{word-spacing:11.715820px;}
.ws193{word-spacing:11.763499px;}
.ws7c{word-spacing:11.775306px;}
.ws192{word-spacing:11.812470px;}
.ws33{word-spacing:11.859337px;}
.ws32{word-spacing:11.866182px;}
.ws191{word-spacing:11.906729px;}
.wsb2{word-spacing:11.907064px;}
.ws14e{word-spacing:11.907160px;}
.wsb5{word-spacing:11.907351px;}
.wsee{word-spacing:11.907494px;}
.ws35{word-spacing:11.907733px;}
.ws194{word-spacing:11.908546px;}
.wsb3{word-spacing:11.909073px;}
.ws34{word-spacing:11.909137px;}
.ws3b{word-spacing:12.125762px;}
.ws3d{word-spacing:12.134934px;}
.ws20f{word-spacing:12.135950px;}
.wsc6{word-spacing:12.253594px;}
.ws238{word-spacing:12.254192px;}
.ws1fc{word-spacing:12.313672px;}
.ws190{word-spacing:12.386442px;}
.ws20b{word-spacing:12.434963px;}
.ws21f{word-spacing:12.491574px;}
.ws6b{word-spacing:12.492769px;}
.ws130{word-spacing:12.493725px;}
.ws1fe{word-spacing:12.552248px;}
.ws1e7{word-spacing:12.552846px;}
.ws144{word-spacing:12.672164px;}
.ws1b2{word-spacing:12.672583px;}
.ws9c{word-spacing:12.793515px;}
.wsbc{word-spacing:12.911159px;}
.wsbd{word-spacing:12.911697px;}
.ws61{word-spacing:13.030776px;}
.ws1ff{word-spacing:13.032689px;}
.ws119{word-spacing:13.150632px;}
.ws11a{word-spacing:13.150811px;}
.ws54{word-spacing:13.151409px;}
.ws87{word-spacing:13.389627px;}
.wsc7{word-spacing:13.569022px;}
.ws198{word-spacing:13.570218px;}
.ws46{word-spacing:13.689835px;}
.ws1bf{word-spacing:13.690433px;}
.wsfd{word-spacing:13.748418px;}
.ws212{word-spacing:13.750211px;}
.ws3c{word-spacing:13.781371px;}
.wsae{word-spacing:13.869171px;}
.ws62{word-spacing:13.927515px;}
.ws17e{word-spacing:13.927634px;}
.ws1d9{word-spacing:13.987114px;}
.ws21d{word-spacing:13.987413px;}
.ws1d0{word-spacing:13.987592px;}
.ws20c{word-spacing:13.987652px;}
.ws94{word-spacing:13.987891px;}
.ws21c{word-spacing:13.988489px;}
.ws135{word-spacing:14.046952px;}
.ws171{word-spacing:14.047909px;}
.wsf4{word-spacing:14.047968px;}
.wsf3{word-spacing:14.048566px;}
.ws1dd{word-spacing:14.106551px;}
.ws187{word-spacing:14.106850px;}
.ws117{word-spacing:14.107149px;}
.ws220{word-spacing:14.108046px;}
.ws195{word-spacing:14.166330px;}
.ws164{word-spacing:14.168123px;}
.wsab{word-spacing:14.227065px;}
.wsb0{word-spacing:14.285947px;}
.ws18d{word-spacing:14.345785px;}
.ws88{word-spacing:14.345905px;}
.ws18e{word-spacing:14.407297px;}
.ws14c{word-spacing:14.465283px;}
.ws185{word-spacing:14.465342px;}
.ws1dc{word-spacing:14.465462px;}
.ws1e4{word-spacing:14.465761px;}
.wsd6{word-spacing:14.466179px;}
.ws1b9{word-spacing:14.466254px;}
.wse5{word-spacing:14.467136px;}
.ws48{word-spacing:14.525061px;}
.ws127{word-spacing:14.525241px;}
.ws1ee{word-spacing:14.525719px;}
.ws7a{word-spacing:14.525779px;}
.ws9e{word-spacing:14.526197px;}
.ws1ae{word-spacing:14.584780px;}
.ws16{word-spacing:14.584900px;}
.ws91{word-spacing:14.585079px;}
.ws13a{word-spacing:14.585199px;}
.ws18b{word-spacing:14.585378px;}
.wse9{word-spacing:14.585497px;}
.wsb6{word-spacing:14.585557px;}
.ws203{word-spacing:14.585677px;}
.ws66{word-spacing:14.585976px;}
.ws13b{word-spacing:14.586095px;}
.ws3f{word-spacing:14.586215px;}
.ws45{word-spacing:14.644559px;}
.ws111{word-spacing:14.644678px;}
.wse6{word-spacing:14.644798px;}
.wsd9{word-spacing:14.644858px;}
.wsfb{word-spacing:14.645037px;}
.ws15{word-spacing:14.645097px;}
.wse0{word-spacing:14.645156px;}
.wse1{word-spacing:14.645216px;}
.ws44{word-spacing:14.645276px;}
.ws16a{word-spacing:14.645396px;}
.ws5a{word-spacing:14.645515px;}
.ws209{word-spacing:14.645694px;}
.ws74{word-spacing:14.645754px;}
.ws226{word-spacing:14.645874px;}
.ws189{word-spacing:14.646113px;}
.wsd8{word-spacing:14.656333px;}
.wsd7{word-spacing:14.663174px;}
.ws1cd{word-spacing:14.704517px;}
.ws188{word-spacing:14.704576px;}
.wsd1{word-spacing:14.704636px;}
.ws4d{word-spacing:14.704696px;}
.ws211{word-spacing:14.704756px;}
.ws170{word-spacing:14.704875px;}
.ws56{word-spacing:14.704995px;}
.ws1aa{word-spacing:14.705055px;}
.ws22{word-spacing:14.705114px;}
.ws172{word-spacing:14.705234px;}
.ws1ce{word-spacing:14.705413px;}
.ws1af{word-spacing:14.705772px;}
.ws1f4{word-spacing:14.705892px;}
.ws1b4{word-spacing:14.706011px;}
.ws1cc{word-spacing:14.706168px;}
.wsf{word-spacing:14.706190px;}
.wsce{word-spacing:14.706370px;}
.ws103{word-spacing:14.706549px;}
.wsf1{word-spacing:14.764176px;}
.ws42{word-spacing:14.764295px;}
.ws18c{word-spacing:14.764355px;}
.ws20a{word-spacing:14.764594px;}
.ws64{word-spacing:14.764773px;}
.ws79{word-spacing:14.764833px;}
.ws155{word-spacing:14.764893px;}
.ws19{word-spacing:14.765013px;}
.ws1f5{word-spacing:14.765072px;}
.ws10e{word-spacing:14.765132px;}
.ws175{word-spacing:14.765192px;}
.ws1a8{word-spacing:14.765311px;}
.ws1a6{word-spacing:14.765849px;}
.ws215{word-spacing:14.765969px;}
.ws174{word-spacing:14.766089px;}
.ws202{word-spacing:14.766148px;}
.ws1a5{word-spacing:14.823954px;}
.ws82{word-spacing:14.824074px;}
.ws133{word-spacing:14.824134px;}
.ws72{word-spacing:14.824253px;}
.ws55{word-spacing:14.824313px;}
.wsf7{word-spacing:14.824373px;}
.wsd2{word-spacing:14.824432px;}
.ws1a7{word-spacing:14.824492px;}
.ws19d{word-spacing:14.824612px;}
.ws181{word-spacing:14.824672px;}
.ws13e{word-spacing:14.824851px;}
.ws1df{word-spacing:14.824911px;}
.ws104{word-spacing:14.824970px;}
.ws105{word-spacing:14.825389px;}
.wseb{word-spacing:14.825628px;}
.ws218{word-spacing:14.825688px;}
.ws1a1{word-spacing:14.825807px;}
.ws11f{word-spacing:14.825867px;}
.ws38{word-spacing:14.879604px;}
.ws140{word-spacing:14.881036px;}
.ws81{word-spacing:14.883673px;}
.wsde{word-spacing:14.883793px;}
.ws47{word-spacing:14.883852px;}
.ws156{word-spacing:14.883856px;}
.ws18f{word-spacing:14.883912px;}
.ws15e{word-spacing:14.883920px;}
.ws4a{word-spacing:14.883972px;}
.wse3{word-spacing:14.884032px;}
.ws7e{word-spacing:14.884091px;}
.ws39{word-spacing:14.884151px;}
.ws8b{word-spacing:14.884271px;}
.ws2a{word-spacing:14.884331px;}
.ws12b{word-spacing:14.884390px;}
.ws43{word-spacing:14.884450px;}
.ws137{word-spacing:14.884570px;}
.ws1ab{word-spacing:14.884689px;}
.ws5d{word-spacing:14.884809px;}
.ws67{word-spacing:14.884988px;}
.wsef{word-spacing:14.885167px;}
.ws147{word-spacing:14.885287px;}
.wscc{word-spacing:14.885407px;}
.ws4f{word-spacing:14.885586px;}
.ws93{word-spacing:14.885646px;}
.ws12f{word-spacing:14.885765px;}
.ws29{word-spacing:14.885825px;}
.ws229{word-spacing:14.887574px;}
.wsea{word-spacing:14.943571px;}
.ws59{word-spacing:14.943691px;}
.ws1a0{word-spacing:14.943751px;}
.ws1d{word-spacing:14.943810px;}
.ws21{word-spacing:14.943870px;}
.wsd5{word-spacing:14.943930px;}
.ws40{word-spacing:14.944049px;}
.ws182{word-spacing:14.944109px;}
.ws18a{word-spacing:14.944229px;}
.ws4b{word-spacing:14.944289px;}
.ws1da{word-spacing:14.944348px;}
.ws57{word-spacing:14.944408px;}
.ws52{word-spacing:14.944468px;}
.ws124{word-spacing:14.944528px;}
.wse4{word-spacing:14.944587px;}
.ws60{word-spacing:14.944647px;}
.wsa4{word-spacing:14.945125px;}
.ws10d{word-spacing:14.945245px;}
.ws1eb{word-spacing:14.945305px;}
.ws153{word-spacing:14.945544px;}
.wsb{word-spacing:14.945723px;}
.ws120{word-spacing:15.003290px;}
.ws11c{word-spacing:15.003350px;}
.wsd3{word-spacing:15.003469px;}
.ws6c{word-spacing:15.003589px;}
.ws28{word-spacing:15.003649px;}
.ws73{word-spacing:15.003948px;}
.ws1ef{word-spacing:15.004007px;}
.ws7f{word-spacing:15.004127px;}
.ws1a2{word-spacing:15.004187px;}
.ws169{word-spacing:15.004426px;}
.wsa7{word-spacing:15.004605px;}
.ws75{word-spacing:15.004665px;}
.ws15f{word-spacing:15.004725px;}
.ws116{word-spacing:15.005382px;}
.ws126{word-spacing:15.005442px;}
.ws1fa{word-spacing:15.005562px;}
.ws22e{word-spacing:15.005681px;}
.wscb{word-spacing:15.063009px;}
.ws1e6{word-spacing:15.063069px;}
.wsdd{word-spacing:15.063188px;}
.ws1b1{word-spacing:15.063248px;}
.ws63{word-spacing:15.063547px;}
.ws10{word-spacing:15.063726px;}
.ws146{word-spacing:15.063786px;}
.wsc9{word-spacing:15.063965px;}
.ws159{word-spacing:15.064025px;}
.ws154{word-spacing:15.064085px;}
.ws219{word-spacing:15.064204px;}
.ws121{word-spacing:15.064443px;}
.wsaf{word-spacing:15.064503px;}
.ws21e{word-spacing:15.064563px;}
.ws1fb{word-spacing:15.064623px;}
.ws138{word-spacing:15.065161px;}
.ws1de{word-spacing:15.065340px;}
.ws231{word-spacing:15.065400px;}
.ws1f7{word-spacing:15.122967px;}
.wsa9{word-spacing:15.123086px;}
.ws114{word-spacing:15.123206px;}
.ws1d3{word-spacing:15.123445px;}
.wsbf{word-spacing:15.123565px;}
.ws5c{word-spacing:15.123744px;}
.ws1d6{word-spacing:15.123863px;}
.wsac{word-spacing:15.123923px;}
.wsec{word-spacing:15.123983px;}
.ws80{word-spacing:15.124162px;}
.ws5b{word-spacing:15.124222px;}
.ws139{word-spacing:15.124461px;}
.ws14a{word-spacing:15.124939px;}
.ws100{word-spacing:15.125059px;}
.wsd4{word-spacing:15.125119px;}
.ws14{word-spacing:15.182626px;}
.ws13{word-spacing:15.182805px;}
.ws1e{word-spacing:15.182865px;}
.ws15d{word-spacing:15.183403px;}
.ws83{word-spacing:15.183702px;}
.ws233{word-spacing:15.183762px;}
.ws22b{word-spacing:15.183821px;}
.ws85{word-spacing:15.184120px;}
.ws222{word-spacing:15.184300px;}
.ws232{word-spacing:15.184479px;}
.ws58{word-spacing:15.184539px;}
.ws12a{word-spacing:15.184598px;}
.ws86{word-spacing:15.184897px;}
.wsc4{word-spacing:15.191671px;}
.ws1ca{word-spacing:15.192146px;}
.ws15c{word-spacing:15.202047px;}
.wsc3{word-spacing:15.217304px;}
.ws210{word-spacing:15.240146px;}
.ws129{word-spacing:15.242404px;}
.ws17{word-spacing:15.242703px;}
.ws224{word-spacing:15.243241px;}
.wse8{word-spacing:15.243361px;}
.wsc5{word-spacing:15.244078px;}
.ws22c{word-spacing:15.244437px;}
.wsb8{word-spacing:15.302302px;}
.ws1d2{word-spacing:15.302900px;}
.ws176{word-spacing:15.362141px;}
.ws1b0{word-spacing:15.362619px;}
.ws26{word-spacing:15.362918px;}
.ws27{word-spacing:15.364054px;}
.ws25{word-spacing:15.422338px;}
.wse7{word-spacing:15.422756px;}
.ws183{word-spacing:15.423653px;}
.ws10b{word-spacing:15.482116px;}
.ws200{word-spacing:15.482415px;}
.wse{word-spacing:15.482535px;}
.ws166{word-spacing:15.483252px;}
.ws1b3{word-spacing:15.541895px;}
.wsb7{word-spacing:15.601136px;}
.ws69{word-spacing:15.601195px;}
.ws1a4{word-spacing:15.601614px;}
.ws12{word-spacing:15.602331px;}
.wsfe{word-spacing:15.661632px;}
.ws4e{word-spacing:15.720693px;}
.wsb1{word-spacing:15.720812px;}
.ws16b{word-spacing:15.721410px;}
.ws122{word-spacing:15.780830px;}
.ws1c{word-spacing:15.780950px;}
.ws184{word-spacing:15.781308px;}
.ws7d{word-spacing:15.840489px;}
.ws115{word-spacing:15.840908px;}
.ws11{word-spacing:15.900686px;}
.ws10c{word-spacing:15.960106px;}
.ws76{word-spacing:15.961003px;}
.ws1e8{word-spacing:16.019526px;}
.ws19c{word-spacing:16.021558px;}
.ws235{word-spacing:16.079305px;}
.ws6d{word-spacing:16.079484px;}
.ws234{word-spacing:16.079902px;}
.ws1e3{word-spacing:16.080620px;}
.ws112{word-spacing:16.080739px;}
.wsa{word-spacing:16.080859px;}
.ws17f{word-spacing:16.081457px;}
.ws1ec{word-spacing:16.139023px;}
.wse2{word-spacing:16.140099px;}
.ws1f0{word-spacing:16.141056px;}
.wsdb{word-spacing:16.199101px;}
.wsda{word-spacing:16.200536px;}
.ws101{word-spacing:16.201074px;}
.ws8d{word-spacing:16.258820px;}
.ws6e{word-spacing:16.259119px;}
.ws65{word-spacing:16.259896px;}
.ws1a3{word-spacing:16.260254px;}
.ws19e{word-spacing:16.318539px;}
.ws109{word-spacing:16.319435px;}
.ws18{word-spacing:16.378257px;}
.wsa6{word-spacing:16.379752px;}
.wsaa{word-spacing:16.438335px;}
.ws118{word-spacing:16.438933px;}
.ws20e{word-spacing:16.497755px;}
.ws77{word-spacing:16.497874px;}
.ws128{word-spacing:16.498352px;}
.wsdc{word-spacing:16.498651px;}
.ws30{word-spacing:16.545655px;}
.ws131{word-spacing:16.605536px;}
.ws4c{word-spacing:16.619583px;}
.ws2c{word-spacing:16.626380px;}
.ws1e2{word-spacing:16.677330px;}
.wsc{word-spacing:16.677748px;}
.ws1b6{word-spacing:16.737048px;}
.ws84{word-spacing:16.737228px;}
.wsad{word-spacing:16.737646px;}
.ws23{word-spacing:16.738065px;}
.wsf9{word-spacing:16.738244px;}
.ws16c{word-spacing:16.738483px;}
.ws3a{word-spacing:16.797664px;}
.ws20{word-spacing:16.856546px;}
.ws123{word-spacing:16.916324px;}
.ws10a{word-spacing:16.916444px;}
.wsf8{word-spacing:16.916862px;}
.wsc8{word-spacing:16.976043px;}
.ws205{word-spacing:16.977119px;}
.ws5e{word-spacing:17.035822px;}
.ws162{word-spacing:17.095541px;}
.ws1d7{word-spacing:17.095600px;}
.ws24{word-spacing:17.095720px;}
.ws17d{word-spacing:17.096676px;}
.ws1f6{word-spacing:17.097155px;}
.ws1e0{word-spacing:17.097513px;}
.wsf0{word-spacing:17.097573px;}
.ws14b{word-spacing:17.157292px;}
.ws157{word-spacing:17.215337px;}
.ws223{word-spacing:17.216054px;}
.ws6a{word-spacing:17.216234px;}
.ws2d{word-spacing:17.265056px;}
.wsca{word-spacing:17.274936px;}
.ws22d{word-spacing:17.275355px;}
.wsf5{word-spacing:17.276490px;}
.ws1e1{word-spacing:17.276789px;}
.wsff{word-spacing:17.335133px;}
.ws12e{word-spacing:17.335552px;}
.ws3e{word-spacing:17.336269px;}
.ws7b{word-spacing:17.394732px;}
.ws1b7{word-spacing:17.395151px;}
.ws1f8{word-spacing:17.395450px;}
.ws22f{word-spacing:17.454332px;}
.ws239{word-spacing:17.455467px;}
.ws1d5{word-spacing:17.455946px;}
.ws23a{word-spacing:17.456304px;}
.ws1d4{word-spacing:17.514290px;}
.wscd{word-spacing:17.515306px;}
.ws177{word-spacing:17.515425px;}
.ws96{word-spacing:17.569478px;}
.ws97{word-spacing:17.573949px;}
.ws98{word-spacing:17.575503px;}
.wsa8{word-spacing:17.633667px;}
.ws228{word-spacing:17.633847px;}
.wsbb{word-spacing:17.754241px;}
.ws31{word-spacing:17.788957px;}
.wsfc{word-spacing:17.814797px;}
.ws7{word-spacing:17.861173px;}
.ws8{word-spacing:17.863038px;}
.ws125{word-spacing:17.873559px;}
.wsf2{word-spacing:17.874276px;}
.ws167{word-spacing:17.932560px;}
.ws207{word-spacing:17.933158px;}
.ws132{word-spacing:17.934055px;}
.ws53{word-spacing:17.992279px;}
.ws165{word-spacing:18.052177px;}
.ws10f{word-spacing:18.052357px;}
.ws11d{word-spacing:18.052775px;}
.wsf6{word-spacing:18.053074px;}
.ws173{word-spacing:18.053492px;}
.ws213{word-spacing:18.112255px;}
.wsc2{word-spacing:18.112494px;}
.ws15b{word-spacing:18.113211px;}
.wsc0{word-spacing:18.113391px;}
.wsa1{word-spacing:18.171974px;}
.ws1ad{word-spacing:18.172392px;}
.ws8f{word-spacing:18.172691px;}
.wsa3{word-spacing:18.172990px;}
.wsa2{word-spacing:18.210910px;}
.ws1f2{word-spacing:18.232470px;}
.ws95{word-spacing:18.232709px;}
.wsd0{word-spacing:18.291471px;}
.ws227{word-spacing:18.292786px;}
.ws178{word-spacing:18.351190px;}
.ws1a9{word-spacing:18.351369px;}
.ws113{word-spacing:18.351489px;}
.ws214{word-spacing:18.470687px;}
.ws186{word-spacing:18.530645px;}
.ws16e{word-spacing:18.530765px;}
.ws204{word-spacing:18.531363px;}
.wsfa{word-spacing:18.531482px;}
.ws16d{word-spacing:18.590603px;}
.ws1fd{word-spacing:18.592038px;}
.ws168{word-spacing:18.769281px;}
.ws37{word-spacing:18.769580px;}
.ws163{word-spacing:18.829299px;}
.ws1f3{word-spacing:18.830196px;}
.ws12d{word-spacing:18.889795px;}
.ws17a{word-spacing:18.889855px;}
.ws49{word-spacing:18.950829px;}
.ws20d{word-spacing:19.008993px;}
.ws158{word-spacing:19.009711px;}
.ws1b5{word-spacing:19.068712px;}
.ws107{word-spacing:19.128610px;}
.ws1f{word-spacing:19.129148px;}
.ws1f9{word-spacing:19.188210px;}
.ws19f{word-spacing:19.307289px;}
.ws1ed{word-spacing:19.367306px;}
.ws9d{word-spacing:19.367725px;}
.ws17c{word-spacing:19.427204px;}
.ws19b{word-spacing:19.486804px;}
.ws19a{word-spacing:19.487103px;}
.ws1cf{word-spacing:19.547120px;}
.ws90{word-spacing:19.547419px;}
.ws1d8{word-spacing:19.547897px;}
.ws1e9{word-spacing:19.607138px;}
.ws15a{word-spacing:19.666020px;}
.ws8e{word-spacing:19.666199px;}
.ws50{word-spacing:19.666618px;}
.ws161{word-spacing:19.726396px;}
.ws21b{word-spacing:19.726635px;}
.ws136{word-spacing:19.964913px;}
.ws160{word-spacing:20.025110px;}
.ws1ea{word-spacing:20.025409px;}
.ws180{word-spacing:20.026545px;}
.ws5f{word-spacing:20.084829px;}
.ws89{word-spacing:20.085128px;}
.ws1db{word-spacing:20.204266px;}
.ws216{word-spacing:20.323584px;}
.ws217{word-spacing:20.323824px;}
.ws6f{word-spacing:20.383483px;}
.wscf{word-spacing:20.384021px;}
.ws92{word-spacing:20.622716px;}
.ws16f{word-spacing:20.682316px;}
.ws1f1{word-spacing:20.742333px;}
.ws106{word-spacing:20.863803px;}
.ws17b{word-spacing:20.921669px;}
.ws134{word-spacing:20.922805px;}
.ws1b{word-spacing:20.923104px;}
.ws41{word-spacing:21.042063px;}
.ws70{word-spacing:21.102679px;}
.ws1e5{word-spacing:21.160664px;}
.ws11e{word-spacing:21.221399px;}
.ws13d{word-spacing:21.339940px;}
.ws206{word-spacing:21.340119px;}
.ws13c{word-spacing:21.399599px;}
.wsba{word-spacing:21.400316px;}
.ws179{word-spacing:21.579054px;}
.ws208{word-spacing:21.698671px;}
.ws196{word-spacing:21.760004px;}
.ws197{word-spacing:22.058718px;}
.ws221{word-spacing:22.117241px;}
.ws71{word-spacing:22.118855px;}
.ws78{word-spacing:22.237456px;}
.ws9b{word-spacing:22.297713px;}
.ws99{word-spacing:22.298310px;}
.wsd{word-spacing:22.298430px;}
.wsb9{word-spacing:22.357013px;}
.ws236{word-spacing:22.417210px;}
.ws1ac{word-spacing:22.715924px;}
.ws102{word-spacing:23.073997px;}
.ws21a{word-spacing:26.839690px;}
.ws201{word-spacing:26.899408px;}
.wsa5{word-spacing:29.829815px;}
.ws230{word-spacing:30.307207px;}
.ws22a{word-spacing:31.382683px;}
.ws1c0{word-spacing:44.753868px;}
.ws237{word-spacing:48.898049px;}
.ws1c5{word-spacing:49.435470px;}
.ws1c4{word-spacing:72.201384px;}
.ws1c9{word-spacing:72.201672px;}
.ws1c2{word-spacing:72.876654px;}
.ws1c7{word-spacing:74.621798px;}
.ws1ba{word-spacing:75.644644px;}
.ws110{word-spacing:82.077198px;}
.ws1bd{word-spacing:85.052302px;}
.ws1bc{word-spacing:85.054102px;}
.ws1c6{word-spacing:99.254584px;}
.ws1bb{word-spacing:99.523253px;}
.ws1c8{word-spacing:104.557227px;}
.ws1c1{word-spacing:104.557515px;}
.ws1c3{word-spacing:123.954002px;}
.ws142{word-spacing:184.870896px;}
.ws1b8{word-spacing:239.495209px;}
._1b{margin-left:-34.009803px;}
._1c{margin-left:-33.006328px;}
._1d{margin-left:-27.171458px;}
._3{margin-left:-7.958975px;}
._19{margin-left:-6.746593px;}
._12{margin-left:-5.678751px;}
._2{margin-left:-4.596181px;}
._0{margin-left:-2.581515px;}
._1{margin-left:-1.075032px;}
._a{width:3.013776px;}
._1a{width:4.177579px;}
._1e{width:7.657159px;}
._2e{width:11.417651px;}
._2c{width:12.497627px;}
._c{width:13.638941px;}
._8{width:15.791970px;}
._6{width:16.981200px;}
._5{width:18.893920px;}
._7{width:20.325378px;}
._18{width:21.529304px;}
._e{width:22.715445px;}
._9{width:24.270047px;}
._15{width:26.201160px;}
._16{width:27.328674px;}
._f{width:28.455146px;}
._1f{width:29.532117px;}
._d{width:30.701747px;}
._b{width:31.907894px;}
._14{width:33.001070px;}
._10{width:34.671761px;}
._11{width:35.867751px;}
._13{width:39.942434px;}
._4{width:41.307662px;}
._17{width:43.760737px;}
._2b{width:45.516895px;}
._29{width:56.176543px;}
._2f{width:57.627994px;}
._2d{width:59.602911px;}
._2a{width:63.891098px;}
._25{width:69.718566px;}
._28{width:83.234295px;}
._23{width:84.476831px;}
._26{width:85.811354px;}
._27{width:89.065468px;}
._24{width:91.041989px;}
._22{width:94.760777px;}
._21{width:99.000353px;}
._20{width:247.734466px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:28.845362px;}
.fsc{font-size:31.656503px;}
.fs6{font-size:35.867393px;}
.fsb{font-size:40.249352px;}
.fs5{font-size:41.844892px;}
.fs2{font-size:47.822991px;}
.fs3{font-size:53.801090px;}
.fs9{font-size:58.098805px;}
.fs7{font-size:59.775600px;}
.fs4{font-size:59.778589px;}
.fs8{font-size:60.003000px;}
.fs1{font-size:71.734787px;}
.fs0{font-size:86.081504px;}
.y0{bottom:0.000000px;}
.y1ed{bottom:7.966733px;}
.y20a{bottom:10.650698px;}
.y1ec{bottom:16.687089px;}
.y209{bottom:19.539227px;}
.y1eb{bottom:25.575619px;}
.y208{bottom:28.259583px;}
.y1ea{bottom:34.464148px;}
.y207{bottom:37.148112px;}
.y1e9{bottom:43.185089px;}
.y206{bottom:45.869053px;}
.y1e8{bottom:52.073619px;}
.y47{bottom:52.839000px;}
.y205{bottom:54.757583px;}
.y1e7{bottom:60.794560px;}
.y204{bottom:63.645527px;}
.y1e6{bottom:69.683089px;}
.y203{bottom:72.366468px;}
.y1e5{bottom:78.571033px;}
.y202{bottom:81.254998px;}
.y1e4{bottom:87.291974px;}
.y46{bottom:88.475913px;}
.y201{bottom:89.975354px;}
.y30{bottom:92.410775px;}
.y1e3{bottom:96.180504px;}
.y200{bottom:98.863883px;}
.yb3{bottom:101.926786px;}
.y1e2{bottom:104.900860px;}
.yb2{bottom:106.146947px;}
.y7d{bottom:106.709325px;}
.y45{bottom:106.709475px;}
.y2f{bottom:107.205850px;}
.y1ff{bottom:107.584824px;}
.y1e1{bottom:113.789389px;}
.y197{bottom:115.376458px;}
.yb1{bottom:116.260152px;}
.y1fe{bottom:116.473353px;}
.y196{bottom:119.596514px;}
.yb0{bottom:120.480478px;}
.y2e{bottom:122.000669px;}
.y1e0{bottom:122.510330px;}
.y7c{bottom:124.941086px;}
.y44{bottom:124.941236px;}
.y1fd{bottom:125.361883px;}
.ye6{bottom:128.008890px;}
.y195{bottom:129.711475px;}
.y142{bottom:129.760977px;}
.y1df{bottom:131.398860px;}
.y10e{bottom:133.431661px;}
.y1fc{bottom:134.082824px;}
.yaf{bottom:134.813230px;}
.y2d{bottom:136.796329px;}
.y1de{bottom:140.286804px;}
.y1fb{bottom:142.971353px;}
.y194{bottom:143.161147px;}
.y43{bottom:143.174648px;}
.y167{bottom:143.174798px;}
.y10d{bottom:146.240801px;}
.ye5{bottom:146.242301px;}
.y193{bottom:147.380858px;}
.y141{bottom:147.994539px;}
.y1dd{bottom:149.007745px;}
.y2c{bottom:151.591569px;}
.y1fa{bottom:151.691709px;}
.y1dc{bottom:157.896274px;}
.y1f9{bottom:160.580239px;}
.y1c9{bottom:161.406409px;}
.y42{bottom:161.406559px;}
.y27b{bottom:161.406709px;}
.yae{bottom:161.589569px;}
.y10c{bottom:164.472713px;}
.ye4{bottom:164.474213px;}
.y140{bottom:166.226300px;}
.y2b{bottom:166.386388px;}
.y1db{bottom:166.617215px;}
.y1f8{bottom:169.468768px;}
.y1da{bottom:175.505745px;}
.y1f7{bottom:178.189124px;}
.y1c8{bottom:179.639971px;}
.yad{bottom:179.822980px;}
.y7b{bottom:179.935486px;}
.y166{bottom:180.940536px;}
.y2a{bottom:181.182048px;}
.y41{bottom:182.682123px;}
.y10b{bottom:182.706124px;}
.ye3{bottom:182.707624px;}
.y1d9{bottom:184.394274px;}
.y13f{bottom:184.731226px;}
.y192{bottom:186.790829px;}
.y1f6{bottom:187.077653px;}
.y1d8{bottom:193.114630px;}
.y27a{bottom:195.075743px;}
.y1f5{bottom:195.798594px;}
.y1c7{bottom:197.871883px;}
.yac{bottom:198.054892px;}
.y7a{bottom:198.167397px;}
.y165{bottom:199.173948px;}
.y40{bottom:200.914035px;}
.y10a{bottom:200.938036px;}
.ye2{bottom:200.939086px;}
.y1d7{bottom:202.003160px;}
.y13e{bottom:202.964637px;}
.y191{bottom:205.024240px;}
.y1d6{bottom:210.724101px;}
.y279{bottom:213.307504px;}
.y1f4{bottom:213.575083px;}
.y1c6{bottom:216.103644px;}
.y248{bottom:216.103794px;}
.yab{bottom:216.288303px;}
.y223{bottom:216.334806px;}
.y79{bottom:216.400809px;}
.y164{bottom:217.405859px;}
.y3f{bottom:219.147446px;}
.ye1{bottom:219.171448px;}
.y1d5{bottom:219.612045px;}
.y13d{bottom:221.196549px;}
.y1f3{bottom:222.296024px;}
.y190{bottom:223.256152px;}
.y1d4{bottom:230.848537px;}
.y1f2{bottom:231.183969px;}
.y278{bottom:231.541066px;}
.y1c5{bottom:234.337206px;}
.y247{bottom:234.337356px;}
.yaa{bottom:234.520215px;}
.y222{bottom:234.566717px;}
.y78{bottom:234.632721px;}
.y29{bottom:234.635721px;}
.y163{bottom:235.639271px;}
.y3e{bottom:237.379358px;}
.y109{bottom:237.403359px;}
.ye0{bottom:237.404859px;}
.y13c{bottom:239.429960px;}
.y1d3{bottom:239.737066px;}
.y1f1{bottom:239.904910px;}
.y18f{bottom:241.488063px;}
.y1d2{bottom:248.457422px;}
.y1f0{bottom:248.793439px;}
.y277{bottom:249.772978px;}
.y20d{bottom:251.057052px;}
.y1c4{bottom:252.569117px;}
.ya9{bottom:252.752126px;}
.y221{bottom:252.798629px;}
.y77{bottom:252.864632px;}
.y162{bottom:253.871182px;}
.y3d{bottom:255.612770px;}
.ydf{bottom:255.636771px;}
.y108{bottom:255.637071px;}
.y28{bottom:258.429910px;}
.y18e{bottom:259.721475px;}
.y275{bottom:268.006239px;}
.y276{bottom:268.006389px;}
.y1c3{bottom:270.802529px;}
.ya8{bottom:270.985538px;}
.y220{bottom:271.032190px;}
.y76{bottom:271.098044px;}
.y161{bottom:272.104594px;}
.y13b{bottom:273.426310px;}
.y3c{bottom:273.844681px;}
.y107{bottom:273.868832px;}
.yde{bottom:273.869732px;}
.y27{bottom:276.663322px;}
.y18d{bottom:277.953386px;}
.y1ee{bottom:286.358152px;}
.y1ef{bottom:286.526326px;}
.y20b{bottom:286.526491px;}
.y246{bottom:289.034441px;}
.ya7{bottom:289.217450px;}
.y21f{bottom:289.263952px;}
.y75{bottom:289.329955px;}
.y1c2{bottom:289.650971px;}
.y160{bottom:290.336506px;}
.y3b{bottom:292.076593px;}
.y106{bottom:292.100594px;}
.ydd{bottom:292.102094px;}
.y26{bottom:294.895234px;}
.y18c{bottom:296.186798px;}
.y274{bottom:301.674072px;}
.y13a{bottom:307.149346px;}
.y245{bottom:307.266202px;}
.ya6{bottom:307.450861px;}
.y21e{bottom:307.497364px;}
.y74{bottom:307.563367px;}
.y1c1{bottom:307.882883px;}
.y15f{bottom:308.568417px;}
.ydc{bottom:310.335506px;}
.y25{bottom:313.127745px;}
.y3a{bottom:313.352156px;}
.y18b{bottom:314.418710px;}
.y273{bottom:319.907484px;}
.y105{bottom:323.021490px;}
.y139{bottom:325.381258px;}
.y244{bottom:325.499764px;}
.ya5{bottom:325.682773px;}
.y21d{bottom:325.729275px;}
.y73{bottom:325.795278px;}
.y1c0{bottom:326.116295px;}
.y15e{bottom:326.801979px;}
.ydb{bottom:328.567417px;}
.y24{bottom:331.360107px;}
.y39{bottom:331.585568px;}
.y18a{bottom:332.650621px;}
.y272{bottom:338.139396px;}
.y138{bottom:343.614669px;}
.y243{bottom:343.731675px;}
.ya4{bottom:343.914534px;}
.y21c{bottom:343.962837px;}
.y72{bottom:344.028840px;}
.y1bf{bottom:344.348206px;}
.y15d{bottom:345.033740px;}
.yda{bottom:346.799329px;}
.y23{bottom:349.592468px;}
.y38{bottom:349.817480px;}
.y189{bottom:350.884033px;}
.y104{bottom:353.941186px;}
.y271{bottom:356.372357px;}
.y137{bottom:361.846581px;}
.y242{bottom:361.965087px;}
.ya3{bottom:362.148096px;}
.y21b{bottom:362.194598px;}
.y71{bottom:362.260602px;}
.y1be{bottom:362.580118px;}
.y15c{bottom:364.569217px;}
.yd9{bottom:365.032740px;}
.y22{bottom:367.825880px;}
.y37{bottom:368.050891px;}
.y188{bottom:369.115944px;}
.y103{bottom:372.174597px;}
.y270{bottom:374.604719px;}
.y26f{bottom:374.604869px;}
.y136{bottom:380.079993px;}
.y241{bottom:380.196998px;}
.ya2{bottom:380.380008px;}
.y21a{bottom:380.426510px;}
.y70{bottom:380.789528px;}
.y1bd{bottom:380.813679px;}
.y15b{bottom:382.801129px;}
.yd8{bottom:383.264652px;}
.y21{bottom:386.058391px;}
.y36{bottom:386.282953px;}
.y187{bottom:387.349356px;}
.y102{bottom:390.406509px;}
.y135{bottom:398.311904px;}
.y240{bottom:398.430410px;}
.ya1{bottom:398.613419px;}
.y219{bottom:398.659922px;}
.y6f{bottom:399.021440px;}
.y1bc{bottom:399.045441px;}
.y15a{bottom:401.033040px;}
.y20{bottom:404.290753px;}
.y35{bottom:404.514714px;}
.y29f{bottom:405.020240px;}
.y186{bottom:405.581268px;}
.y26e{bottom:408.273902px;}
.y101{bottom:408.639920px;}
.yd7{bottom:410.464312px;}
.y134{bottom:416.543816px;}
.y23f{bottom:416.662322px;}
.ya0{bottom:416.845331px;}
.y218{bottom:416.891833px;}
.y6e{bottom:417.254851px;}
.y1bb{bottom:417.278852px;}
.y159{bottom:419.266602px;}
.y1f{bottom:422.523115px;}
.y34{bottom:422.748126px;}
.y29e{bottom:423.252151px;}
.y185{bottom:423.814679px;}
.y26d{bottom:426.505814px;}
.y100{bottom:426.871982px;}
.y133{bottom:434.777227px;}
.y23e{bottom:434.894233px;}
.y217{bottom:435.125245px;}
.y6d{bottom:435.486763px;}
.y1ba{bottom:435.510764px;}
.y9f{bottom:436.080792px;}
.y158{bottom:437.498363px;}
.y1e{bottom:440.755026px;}
.y33{bottom:440.980037px;}
.y29d{bottom:441.484063px;}
.y184{bottom:442.046591px;}
.y26c{bottom:444.739225px;}
.yd6{bottom:445.103744px;}
.y132{bottom:453.009139px;}
.y23d{bottom:453.127645px;}
.y216{bottom:453.357156px;}
.y6c{bottom:453.718674px;}
.y1b9{bottom:453.744326px;}
.y9e{bottom:454.312704px;}
.y157{bottom:455.731925px;}
.y1d{bottom:458.988438px;}
.y29c{bottom:459.717474px;}
.y182{bottom:460.278502px;}
.y26b{bottom:462.971137px;}
.yd5{bottom:463.335655px;}
.yff{bottom:463.337305px;}
.y183{bottom:465.702773px;}
.y215{bottom:471.820079px;}
.y6b{bottom:471.952086px;}
.y1b8{bottom:471.976087px;}
.y156{bottom:473.963687px;}
.y1c{bottom:477.220349px;}
.y29b{bottom:477.949386px;}
.y181{bottom:478.511914px;}
.y131{bottom:480.727075px;}
.y26a{bottom:481.203048px;}
.y269{bottom:481.203198px;}
.yd4{bottom:481.569067px;}
.y9d{bottom:483.417009px;}
.y23c{bottom:484.122194px;}
.y214{bottom:490.051991px;}
.y6a{bottom:490.183997px;}
.y1b7{bottom:490.824530px;}
.y155{bottom:492.195598px;}
.y32{bottom:495.135745px;}
.y29a{bottom:496.182797px;}
.y299{bottom:496.183097px;}
.y180{bottom:496.743675px;}
.yd3{bottom:499.800978px;}
.y23b{bottom:502.353956px;}
.y1b{bottom:504.908629px;}
.y213{bottom:508.285403px;}
.y69{bottom:508.416959px;}
.yfe{bottom:508.768127px;}
.y1b6{bottom:509.057941px;}
.y154{bottom:511.731075px;}
.y31{bottom:513.367657px;}
.y268{bottom:514.872232px;}
.y17f{bottom:514.977237px;}
.y130{bottom:517.273852px;}
.yd2{bottom:518.033940px;}
.y23a{bottom:520.587518px;}
.y9c{bottom:523.977687px;}
.y298{bottom:526.370307px;}
.y68{bottom:526.649321px;}
.y1b5{bottom:527.289853px;}
.y153{bottom:529.962986px;}
.y267{bottom:533.105793px;}
.y17e{bottom:533.209149px;}
.y12f{bottom:535.507264px;}
.y212{bottom:535.920984px;}
.yd0{bottom:536.266301px;}
.y239{bottom:538.819279px;}
.yd1{bottom:541.689073px;}
.y9b{bottom:542.211099px;}
.yfd{bottom:543.408159px;}
.y297{bottom:544.603718px;}
.y67{bottom:544.881082px;}
.y1b4{bottom:545.521764px;}
.y1a{bottom:548.094393px;}
.y152{bottom:548.196548px;}
.y266{bottom:551.337555px;}
.y265{bottom:551.337705px;}
.y17d{bottom:551.441060px;}
.y12e{bottom:553.739175px;}
.ycf{bottom:554.499713px;}
.y238{bottom:557.052841px;}
.y9a{bottom:560.443010px;}
.yfc{bottom:561.640070px;}
.y296{bottom:562.835480px;}
.y66{bottom:563.114644px;}
.y1b3{bottom:563.755176px;}
.y19{bottom:566.327804px;}
.y151{bottom:566.428310px;}
.y12d{bottom:571.972587px;}
.yce{bottom:572.731625px;}
.y237{bottom:575.284752px;}
.y99{bottom:578.676422px;}
.yfb{bottom:579.873482px;}
.y295{bottom:581.069042px;}
.y65{bottom:581.346405px;}
.y1b2{bottom:581.987087px;}
.y211{bottom:584.450211px;}
.y18{bottom:584.559716px;}
.y150{bottom:584.660221px;}
.y264{bottom:585.006738px;}
.y17c{bottom:586.547315px;}
.y12c{bottom:590.204498px;}
.ycd{bottom:590.963536px;}
.y236{bottom:593.516664px;}
.y98{bottom:596.908333px;}
.yfa{bottom:598.105543px;}
.y294{bottom:599.300953px;}
.y64{bottom:599.579967px;}
.y1b1{bottom:600.220499px;}
.y210{bottom:602.682122px;}
.y17{bottom:602.791628px;}
.y14f{bottom:602.893633px;}
.y263{bottom:603.238500px;}
.y12b{bottom:608.710924px;}
.ycc{bottom:609.196948px;}
.y235{bottom:611.750075px;}
.y97{bottom:615.140245px;}
.y96{bottom:615.140695px;}
.yf9{bottom:616.337305px;}
.y293{bottom:617.532865px;}
.y63{bottom:617.811729px;}
.y1b0{bottom:618.452411px;}
.y20f{bottom:620.915534px;}
.y16{bottom:621.025039px;}
.y14e{bottom:621.125394px;}
.y262{bottom:621.472062px;}
.y12a{bottom:626.942835px;}
.y129{bottom:626.942985px;}
.ycb{bottom:627.428859px;}
.y234{bottom:629.981987px;}
.y95{bottom:633.373657px;}
.yf8{bottom:634.570716px;}
.y292{bottom:635.766276px;}
.y291{bottom:635.766576px;}
.y62{bottom:636.045290px;}
.y1af{bottom:636.684172px;}
.y20e{bottom:639.147445px;}
.y15{bottom:639.256951px;}
.y14d{bottom:639.358956px;}
.y261{bottom:639.703973px;}
.y17b{bottom:644.480362px;}
.y128{bottom:645.174747px;}
.yca{bottom:645.662271px;}
.y233{bottom:648.214949px;}
.y94{bottom:651.605568px;}
.yf7{bottom:652.802628px;}
.y1ae{bottom:654.917734px;}
.y14{bottom:657.490362px;}
.y14c{bottom:657.590867px;}
.y260{bottom:657.937385px;}
.y179{bottom:662.712123px;}
.y127{bottom:663.408158px;}
.y61{bottom:663.805828px;}
.yc9{bottom:663.894183px;}
.y290{bottom:665.953786px;}
.y232{bottom:666.447310px;}
.y92{bottom:667.222849px;}
.y17a{bottom:668.136395px;}
.y91{bottom:669.838530px;}
.y93{bottom:669.838980px;}
.yf6{bottom:671.036040px;}
.y1d1{bottom:672.269101px;}
.y20c{bottom:672.642620px;}
.y1ad{bottom:673.149495px;}
.y13{bottom:675.722274px;}
.y14b{bottom:675.824279px;}
.y25f{bottom:676.169296px;}
.y178{bottom:680.945685px;}
.y126{bottom:681.640070px;}
.yc8{bottom:682.125944px;}
.y28f{bottom:684.187197px;}
.y231{bottom:684.679222px;}
.y90{bottom:688.070891px;}
.y8e{bottom:688.071041px;}
.yf5{bottom:689.268101px;}
.y1ac{bottom:691.383057px;}
.y8f{bottom:693.493662px;}
.y12{bottom:693.954035px;}
.y25e{bottom:694.401208px;}
.y177{bottom:699.177447px;}
.y125{bottom:699.873481px;}
.y124{bottom:699.873631px;}
.yc7{bottom:700.359506px;}
.y28e{bottom:702.419109px;}
.y230{bottom:702.912183px;}
.y14a{bottom:705.497413px;}
.y8d{bottom:706.302803px;}
.y60{bottom:707.204348px;}
.yf4{bottom:707.499863px;}
.y11{bottom:712.187597px;}
.y176{bottom:717.410858px;}
.y122{bottom:718.105393px;}
.yc6{bottom:718.591417px;}
.y1ab{bottom:719.752625px;}
.y28d{bottom:720.652520px;}
.y28c{bottom:720.652820px;}
.y22f{bottom:721.144545px;}
.y25d{bottom:723.254850px;}
.y123{bottom:723.528164px;}
.y5f{bottom:725.437760px;}
.y8c{bottom:725.538265px;}
.yf3{bottom:725.733274px;}
.y10{bottom:730.419509px;}
.y175{bottom:735.642770px;}
.y121{bottom:736.338805px;}
.yc5{bottom:736.824829px;}
.y22e{bottom:739.377957px;}
.y5e{bottom:743.669671px;}
.y8b{bottom:743.771826px;}
.yf2{bottom:743.965186px;}
.y149{bottom:747.703373px;}
.yf{bottom:748.652920px;}
.y28b{bottom:750.840030px;}
.y174{bottom:753.876331px;}
.y120{bottom:754.570716px;}
.yc4{bottom:755.056740px;}
.y22d{bottom:757.609718px;}
.y1aa{bottom:758.187397px;}
.y5d{bottom:761.901583px;}
.y8a{bottom:762.003588px;}
.yf1{bottom:762.198598px;}
.y148{bottom:765.935284px;}
.ye{bottom:766.884832px;}
.y28a{bottom:769.073441px;}
.y25c{bottom:769.809978px;}
.y173{bottom:772.108093px;}
.yc3{bottom:773.290152px;}
.y22c{bottom:775.843280px;}
.y1a9{bottom:776.419309px;}
.y5c{bottom:780.134994px;}
.y89{bottom:780.236999px;}
.yf0{bottom:780.430509px;}
.y11f{bottom:782.289552px;}
.y147{bottom:784.167196px;}
.yd{bottom:785.118393px;}
.y288{bottom:787.305053px;}
.y289{bottom:787.305353px;}
.y25b{bottom:788.043390px;}
.y172{bottom:790.340005px;}
.yc2{bottom:791.522064px;}
.y22b{bottom:794.075191px;}
.y1a8{bottom:794.651220px;}
.y5b{bottom:798.366756px;}
.y88{bottom:798.468911px;}
.yef{bottom:798.663921px;}
.y146{bottom:802.400608px;}
.yc{bottom:803.350155px;}
.y25a{bottom:806.275301px;}
.y171{bottom:808.572516px;}
.yc1{bottom:809.754425px;}
.y22a{bottom:812.306953px;}
.y1a7{bottom:812.884632px;}
.y5a{bottom:816.600317px;}
.y87{bottom:816.700672px;}
.yee{bottom:816.895982px;}
.y287{bottom:817.492862px;}
.yb{bottom:821.582067px;}
.y259{bottom:824.508713px;}
.y11e{bottom:825.560265px;}
.y170{bottom:826.804278px;}
.yc0{bottom:827.987387px;}
.y229{bottom:830.540514px;}
.y1a6{bottom:831.116543px;}
.y59{bottom:834.832229px;}
.y86{bottom:834.934234px;}
.yed{bottom:835.127744px;}
.y286{bottom:835.726274px;}
.ya{bottom:839.815478px;}
.y258{bottom:842.740624px;}
.y11d{bottom:843.793677px;}
.y16f{bottom:845.037839px;}
.ybf{bottom:846.219298px;}
.y228{bottom:848.772426px;}
.y1a5{bottom:849.349955px;}
.y58{bottom:853.063991px;}
.y145{bottom:853.073141px;}
.y85{bottom:853.165996px;}
.yec{bottom:853.361155px;}
.y285{bottom:853.958185px;}
.y257{bottom:860.974036px;}
.y11c{bottom:862.025589px;}
.y16e{bottom:863.270201px;}
.ybe{bottom:864.452860px;}
.y227{bottom:867.005838px;}
.y1a4{bottom:867.581866px;}
.y57{bottom:871.297552px;}
.y144{bottom:871.306553px;}
.y84{bottom:871.399557px;}
.yeb{bottom:871.592917px;}
.y9{bottom:874.021703px;}
.y256{bottom:879.205948px;}
.y11b{bottom:880.259000px;}
.y16d{bottom:881.502562px;}
.ybd{bottom:882.684622px;}
.y284{bottom:884.147195px;}
.y226{bottom:885.237599px;}
.y1a3{bottom:885.813628px;}
.y56{bottom:889.529464px;}
.y143{bottom:889.538464px;}
.yea{bottom:889.826479px;}
.y255{bottom:897.437859px;}
.y11a{bottom:898.490912px;}
.y16c{bottom:899.735974px;}
.y83{bottom:900.503862px;}
.ybc{bottom:900.916533px;}
.y283{bottom:902.378956px;}
.y225{bottom:903.471161px;}
.y1a2{bottom:904.047190px;}
.y55{bottom:908.058390px;}
.y254{bottom:915.670821px;}
.y119{bottom:916.722823px;}
.ybb{bottom:919.150095px;}
.y282{bottom:920.612518px;}
.y16b{bottom:922.129094px;}
.y1a1{bottom:922.279101px;}
.y54{bottom:926.290302px;}
.y253{bottom:933.903182px;}
.y118{bottom:934.956385px;}
.yba{bottom:937.381856px;}
.y281{bottom:938.844429px;}
.y8{bottom:940.077206px;}
.y16a{bottom:940.362505px;}
.y82{bottom:941.064540px;}
.y53{bottom:944.523713px;}
.ye9{bottom:944.523863px;}
.y1a0{bottom:950.649870px;}
.y252{bottom:952.136594px;}
.y117{bottom:953.188147px;}
.y224{bottom:954.917733px;}
.y169{bottom:958.594417px;}
.y81{bottom:959.296602px;}
.y52{bottom:962.755625px;}
.yb9{bottom:964.581366px;}
.y7{bottom:967.507412px;}
.y280{bottom:969.033439px;}
.y251{bottom:970.368506px;}
.y116{bottom:971.421558px;}
.y168{bottom:976.827828px;}
.y80{bottom:977.528363px;}
.y51{bottom:980.989037px;}
.ye8{bottom:980.989187px;}
.y27f{bottom:987.265350px;}
.y6{bottom:988.430519px;}
.y250{bottom:988.600417px;}
.y19f{bottom:989.083441px;}
.y115{bottom:989.653470px;}
.y7f{bottom:995.761775px;}
.y50{bottom:999.220948px;}
.yb8{bottom:999.221398px;}
.ye7{bottom:999.221548px;}
.y1d0{bottom:1002.987636px;}
.y27e{bottom:1005.497262px;}
.y24f{bottom:1006.833979px;}
.y19e{bottom:1007.316853px;}
.y114{bottom:1007.886881px;}
.y5{bottom:1009.352455px;}
.yb7{bottom:1017.453910px;}
.y4f{bottom:1017.454360px;}
.y1cf{bottom:1021.219548px;}
.y27d{bottom:1023.730223px;}
.y7e{bottom:1024.865780px;}
.y24e{bottom:1025.065740px;}
.y19d{bottom:1025.548914px;}
.y113{bottom:1026.118793px;}
.y4{bottom:1030.275576px;}
.y4e{bottom:1035.686271px;}
.y27c{bottom:1041.962585px;}
.y24d{bottom:1043.298702px;}
.y19c{bottom:1043.780676px;}
.y112{bottom:1044.350554px;}
.y3{bottom:1044.689841px;}
.y4d{bottom:1053.918183px;}
.y1ce{bottom:1057.224648px;}
.y24c{bottom:1061.531063px;}
.y19b{bottom:1062.014088px;}
.y111{bottom:1062.584116px;}
.y2{bottom:1065.612317px;}
.y4c{bottom:1072.151594px;}
.yb6{bottom:1072.151744px;}
.y1cd{bottom:1074.944284px;}
.y24b{bottom:1079.764475px;}
.y19a{bottom:1080.245999px;}
.y110{bottom:1080.816028px;}
.y4b{bottom:1090.383506px;}
.y1cc{bottom:1092.665120px;}
.y24a{bottom:1097.996387px;}
.y199{bottom:1098.479411px;}
.y10f{bottom:1108.534563px;}
.y4a{bottom:1108.616918px;}
.yb5{bottom:1108.617068px;}
.y249{bottom:1116.228298px;}
.y198{bottom:1116.711322px;}
.y1cb{bottom:1117.386356px;}
.y1{bottom:1121.169545px;}
.y49{bottom:1126.848829px;}
.y1ca{bottom:1133.245149px;}
.y48{bottom:1145.080741px;}
.yb4{bottom:1195.604767px;}
.h22{height:21.609273px;}
.h18{height:26.541693px;}
.h1f{height:27.403094px;}
.h20{height:29.617077px;}
.hd{height:31.921980px;}
.h9{height:35.939128px;}
.h11{height:37.241954px;}
.h7{height:37.808298px;}
.h6{height:37.812979px;}
.h8{height:37.815319px;}
.h16{height:39.932097px;}
.h23{height:41.008112px;}
.h14{height:41.282064px;}
.ha{height:41.366783px;}
.h19{height:41.486341px;}
.he{height:42.562462px;}
.h15{height:44.833942px;}
.h12{height:50.395120px;}
.h1d{height:51.707936px;}
.hf{height:52.961182px;}
.h1a{height:53.073794px;}
.h17{height:53.080874px;}
.hb{height:53.202944px;}
.h24{height:53.802974px;}
.h1b{height:55.127036px;}
.h4{height:58.311500px;}
.h5{height:58.313841px;}
.h10{height:58.932078px;}
.hc{height:58.934419px;}
.h13{height:58.939159px;}
.h3{height:59.568401px;}
.h1c{height:87.154228px;}
.h21{height:279.207460px;}
.h1e{height:297.595379px;}
.h2{height:1233.106642px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:16.952648px;}
.w2{width:296.254312px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5e{left:1.848242px;}
.x6b{left:9.532977px;}
.x47{left:80.482325px;}
.xb{left:82.469924px;}
.x64{left:84.593879px;}
.x5f{left:85.711825px;}
.x20{left:86.927997px;}
.x62{left:89.671768px;}
.x69{left:92.901040px;}
.x4b{left:94.840893px;}
.xc{left:96.517827px;}
.xa{left:100.402871px;}
.x23{left:103.989550px;}
.x40{left:105.818292px;}
.x4d{left:108.618632px;}
.x60{left:110.280249px;}
.x43{left:113.504526px;}
.x63{left:114.844377px;}
.x67{left:116.236567px;}
.x41{left:117.382370px;}
.x65{left:120.610740px;}
.x66{left:122.195779px;}
.x7{left:123.947988px;}
.x44{left:126.745538px;}
.x61{left:128.074303px;}
.x2{left:131.535728px;}
.x68{left:132.937307px;}
.x30{left:139.103606px;}
.x6c{left:140.953347px;}
.x4{left:142.258279px;}
.xd{left:146.252963px;}
.x1{left:154.332217px;}
.x4c{left:155.716787px;}
.x3a{left:159.469974px;}
.x42{left:163.124157px;}
.x6e{left:164.286715px;}
.x3b{left:170.263014px;}
.x37{left:171.637083px;}
.x5{left:173.310986px;}
.x38{left:179.275464px;}
.x3{left:186.278115px;}
.x13{left:196.412321px;}
.x9{left:216.780415px;}
.x2b{left:218.625132px;}
.x45{left:226.455823px;}
.x4e{left:232.609430px;}
.x46{left:235.048253px;}
.x5a{left:237.206950px;}
.x4f{left:238.324956px;}
.x54{left:239.650977px;}
.x39{left:241.257063px;}
.x55{left:242.284899px;}
.x3c{left:244.602231px;}
.x50{left:246.863668px;}
.x52{left:248.012740px;}
.x56{left:249.175868px;}
.x14{left:250.467524px;}
.x53{left:253.586464px;}
.x22{left:259.851993px;}
.x51{left:262.893379px;}
.x21{left:266.264814px;}
.x58{left:267.457477px;}
.x35{left:268.606431px;}
.x5b{left:269.861062px;}
.x5d{left:272.610490px;}
.x59{left:274.063087px;}
.x3d{left:277.465874px;}
.x5c{left:279.006810px;}
.x36{left:281.400570px;}
.x57{left:283.660507px;}
.x33{left:290.849543px;}
.x6a{left:299.344468px;}
.x6{left:329.161113px;}
.x34{left:345.533277px;}
.x8{left:351.315991px;}
.x31{left:370.076004px;}
.x2c{left:393.237162px;}
.x2e{left:396.252313px;}
.x3e{left:400.005500px;}
.x32{left:403.941697px;}
.x2d{left:407.903395px;}
.x1f{left:409.104955px;}
.x3f{left:416.428322px;}
.x12{left:426.745500px;}
.x2f{left:429.355968px;}
.x1e{left:443.752500px;}
.x70{left:455.213211px;}
.x29{left:463.671519px;}
.xe{left:465.165758px;}
.x1c{left:479.213961px;}
.xf{left:483.099155px;}
.x6f{left:485.595281px;}
.x1d{left:486.685834px;}
.x28{left:502.127306px;}
.x49{left:541.422071px;}
.x48{left:574.616030px;}
.x6d{left:578.771238px;}
.x71{left:593.398502px;}
.x15{left:596.016850px;}
.x26{left:606.181809px;}
.x4a{left:627.305865px;}
.x1a{left:636.748837px;}
.x18{left:657.124356px;}
.x16{left:664.999749px;}
.x2a{left:671.702085px;}
.x17{left:680.504525px;}
.x27{left:704.816240px;}
.x19{left:716.638331px;}
.x24{left:720.021000px;}
.x25{left:732.476123px;}
.x10{left:757.344366px;}
.x1b{left:759.291464px;}
.x11{left:807.572878px;}
@media print{
.v2{vertical-align:-23.138650pt;}
.v4{vertical-align:-15.004910pt;}
.v8{vertical-align:-9.596320pt;}
.v7{vertical-align:-7.975385pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:9.300465pt;}
.v3{vertical-align:19.282191pt;}
.v9{vertical-align:21.105215pt;}
.v1{vertical-align:23.138650pt;}
.va{vertical-align:31.507815pt;}
.v6{vertical-align:43.041725pt;}
.lsa{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.002839pt;}
.ls4{letter-spacing:0.004110pt;}
.ls2a{letter-spacing:0.004861pt;}
.ls24{letter-spacing:0.008063pt;}
.ls2b{letter-spacing:0.009079pt;}
.ls1{letter-spacing:0.009904pt;}
.ls1b{letter-spacing:0.010143pt;}
.ls3c{letter-spacing:0.010255pt;}
.ls2{letter-spacing:0.010350pt;}
.ls38{letter-spacing:0.011159pt;}
.ls19{letter-spacing:0.012299pt;}
.ls12{letter-spacing:0.012336pt;}
.ls3{letter-spacing:0.016198pt;}
.ls40{letter-spacing:0.016496pt;}
.ls2f{letter-spacing:0.016513pt;}
.ls18{letter-spacing:0.016797pt;}
.ls36{letter-spacing:0.017453pt;}
.ls25{letter-spacing:0.018470pt;}
.ls32{letter-spacing:0.018593pt;}
.ls28{letter-spacing:0.021666pt;}
.ls13{letter-spacing:0.022945pt;}
.ls14{letter-spacing:0.027470pt;}
.ls29{letter-spacing:0.029550pt;}
.ls37{letter-spacing:0.033710pt;}
.ls15{letter-spacing:0.035904pt;}
.lsc{letter-spacing:0.046569pt;}
.lsd{letter-spacing:0.050906pt;}
.ls1c{letter-spacing:0.688186pt;}
.lsf{letter-spacing:0.898842pt;}
.ls3a{letter-spacing:1.344119pt;}
.ls33{letter-spacing:2.670308pt;}
.ls1d{letter-spacing:2.670650pt;}
.ls35{letter-spacing:2.672389pt;}
.ls3f{letter-spacing:2.673051pt;}
.ls1a{letter-spacing:2.676549pt;}
.ls26{letter-spacing:2.678629pt;}
.ls39{letter-spacing:3.151954pt;}
.ls3d{letter-spacing:3.674110pt;}
.ls2e{letter-spacing:7.382187pt;}
.ls45{letter-spacing:8.609204pt;}
.lse{letter-spacing:8.892764pt;}
.ls27{letter-spacing:8.915671pt;}
.ls9{letter-spacing:10.624851pt;}
.ls31{letter-spacing:12.540893pt;}
.ls34{letter-spacing:12.547133pt;}
.ls3e{letter-spacing:13.288024pt;}
.ls1f{letter-spacing:14.766458pt;}
.ls30{letter-spacing:14.797219pt;}
.ls2d{letter-spacing:14.801059pt;}
.ls1e{letter-spacing:14.801096pt;}
.ls10{letter-spacing:14.823810pt;}
.ls11{letter-spacing:14.826066pt;}
.ls17{letter-spacing:14.826127pt;}
.ls44{letter-spacing:14.842661pt;}
.ls42{letter-spacing:15.094248pt;}
.ls43{letter-spacing:15.130142pt;}
.ls16{letter-spacing:15.685021pt;}
.ls41{letter-spacing:15.965281pt;}
.ls20{letter-spacing:16.239431pt;}
.ls3b{letter-spacing:17.429734pt;}
.ls2c{letter-spacing:17.437097pt;}
.ls8{letter-spacing:18.608754pt;}
.ls7{letter-spacing:18.612914pt;}
.lsb{letter-spacing:25.244035pt;}
.ls23{letter-spacing:26.197621pt;}
.ls22{letter-spacing:28.835587pt;}
.ls5{letter-spacing:185.737697pt;}
.ls6{letter-spacing:185.739830pt;}
.ls0{letter-spacing:185.741963pt;}
.ws13f{word-spacing:-35.483933pt;}
.ws9a{word-spacing:-31.881914pt;}
.ws2b{word-spacing:-25.505595pt;}
.ws9f{word-spacing:-22.578622pt;}
.ws141{word-spacing:-17.673412pt;}
.ws12c{word-spacing:-17.652591pt;}
.ws9{word-spacing:-13.284131pt;}
.ws149{word-spacing:-13.265266pt;}
.ws145{word-spacing:-11.807839pt;}
.ws2f{word-spacing:-10.627331pt;}
.ws14f{word-spacing:-2.976283pt;}
.ws1be{word-spacing:-1.063368pt;}
.ws1cb{word-spacing:-0.159356pt;}
.wsc1{word-spacing:-0.053137pt;}
.wsb4{word-spacing:-0.042509pt;}
.ws148{word-spacing:-0.037195pt;}
.ws0{word-spacing:-0.000995pt;}
.ws199{word-spacing:-0.000797pt;}
.ws6{word-spacing:-0.000701pt;}
.ws11b{word-spacing:-0.000638pt;}
.wsdf{word-spacing:-0.000585pt;}
.ws3{word-spacing:-0.000446pt;}
.ws8c{word-spacing:-0.000266pt;}
.ws1{word-spacing:-0.000255pt;}
.wsbe{word-spacing:-0.000213pt;}
.ws51{word-spacing:0.000000pt;}
.ws1d1{word-spacing:0.000106pt;}
.ws108{word-spacing:0.000266pt;}
.ws68{word-spacing:0.000372pt;}
.ws4{word-spacing:0.000383pt;}
.ws5{word-spacing:0.000510pt;}
.ws2{word-spacing:0.000893pt;}
.ws36{word-spacing:3.507223pt;}
.wsed{word-spacing:8.925981pt;}
.ws2e{word-spacing:9.223588pt;}
.ws1a{word-spacing:9.243321pt;}
.ws8a{word-spacing:9.243862pt;}
.ws143{word-spacing:9.565584pt;}
.ws225{word-spacing:10.202744pt;}
.ws150{word-spacing:10.255083pt;}
.ws151{word-spacing:10.273073pt;}
.ws152{word-spacing:10.307688pt;}
.wsa0{word-spacing:10.361410pt;}
.ws14d{word-spacing:10.414062pt;}
.ws193{word-spacing:10.456444pt;}
.ws7c{word-spacing:10.466939pt;}
.ws192{word-spacing:10.499973pt;}
.ws33{word-spacing:10.541633pt;}
.ws32{word-spacing:10.547718pt;}
.ws191{word-spacing:10.583759pt;}
.wsb2{word-spacing:10.584057pt;}
.ws14e{word-spacing:10.584142pt;}
.wsb5{word-spacing:10.584312pt;}
.wsee{word-spacing:10.584439pt;}
.ws35{word-spacing:10.584652pt;}
.ws194{word-spacing:10.585375pt;}
.wsb3{word-spacing:10.585842pt;}
.ws34{word-spacing:10.585900pt;}
.ws3b{word-spacing:10.778455pt;}
.ws3d{word-spacing:10.786608pt;}
.ws20f{word-spacing:10.787511pt;}
.wsc6{word-spacing:10.892084pt;}
.ws238{word-spacing:10.892615pt;}
.ws1fc{word-spacing:10.945486pt;}
.ws190{word-spacing:11.010170pt;}
.ws20b{word-spacing:11.053300pt;}
.ws21f{word-spacing:11.103621pt;}
.ws6b{word-spacing:11.104683pt;}
.ws130{word-spacing:11.105533pt;}
.ws1fe{word-spacing:11.157554pt;}
.ws1e7{word-spacing:11.158085pt;}
.ws144{word-spacing:11.264146pt;}
.ws1b2{word-spacing:11.264518pt;}
.ws9c{word-spacing:11.372013pt;}
.wsbc{word-spacing:11.476586pt;}
.wsbd{word-spacing:11.477064pt;}
.ws61{word-spacing:11.582912pt;}
.ws1ff{word-spacing:11.584612pt;}
.ws119{word-spacing:11.689451pt;}
.ws11a{word-spacing:11.689610pt;}
.ws54{word-spacing:11.690141pt;}
.ws87{word-spacing:11.901890pt;}
.wsc7{word-spacing:12.061353pt;}
.ws198{word-spacing:12.062416pt;}
.ws46{word-spacing:12.168742pt;}
.ws1bf{word-spacing:12.169273pt;}
.wsfd{word-spacing:12.220816pt;}
.ws212{word-spacing:12.222410pt;}
.ws3c{word-spacing:12.250108pt;}
.wsae{word-spacing:12.328152pt;}
.ws62{word-spacing:12.380013pt;}
.ws17e{word-spacing:12.380119pt;}
.ws1d9{word-spacing:12.432990pt;}
.ws21d{word-spacing:12.433256pt;}
.ws1d0{word-spacing:12.433415pt;}
.ws20c{word-spacing:12.433468pt;}
.ws94{word-spacing:12.433681pt;}
.ws21c{word-spacing:12.434212pt;}
.ws135{word-spacing:12.486180pt;}
.ws171{word-spacing:12.487030pt;}
.wsf4{word-spacing:12.487083pt;}
.wsf3{word-spacing:12.487614pt;}
.ws1dd{word-spacing:12.539157pt;}
.ws187{word-spacing:12.539422pt;}
.ws117{word-spacing:12.539688pt;}
.ws220{word-spacing:12.540485pt;}
.ws195{word-spacing:12.592293pt;}
.ws164{word-spacing:12.593887pt;}
.wsab{word-spacing:12.646280pt;}
.wsb0{word-spacing:12.698619pt;}
.ws18d{word-spacing:12.751809pt;}
.ws88{word-spacing:12.751915pt;}
.ws18e{word-spacing:12.806487pt;}
.ws14c{word-spacing:12.858029pt;}
.ws185{word-spacing:12.858082pt;}
.ws1dc{word-spacing:12.858188pt;}
.ws1e4{word-spacing:12.858454pt;}
.wsd6{word-spacing:12.858826pt;}
.ws1b9{word-spacing:12.858892pt;}
.wse5{word-spacing:12.859676pt;}
.ws48{word-spacing:12.911166pt;}
.ws127{word-spacing:12.911325pt;}
.ws1ee{word-spacing:12.911750pt;}
.ws7a{word-spacing:12.911803pt;}
.ws9e{word-spacing:12.912175pt;}
.ws1ae{word-spacing:12.964249pt;}
.ws16{word-spacing:12.964355pt;}
.ws91{word-spacing:12.964515pt;}
.ws13a{word-spacing:12.964621pt;}
.ws18b{word-spacing:12.964780pt;}
.wse9{word-spacing:12.964887pt;}
.wsb6{word-spacing:12.964940pt;}
.ws203{word-spacing:12.965046pt;}
.ws66{word-spacing:12.965312pt;}
.ws13b{word-spacing:12.965418pt;}
.ws3f{word-spacing:12.965524pt;}
.ws45{word-spacing:13.017385pt;}
.ws111{word-spacing:13.017492pt;}
.wse6{word-spacing:13.017598pt;}
.wsd9{word-spacing:13.017651pt;}
.wsfb{word-spacing:13.017811pt;}
.ws15{word-spacing:13.017864pt;}
.wse0{word-spacing:13.017917pt;}
.wse1{word-spacing:13.017970pt;}
.ws44{word-spacing:13.018023pt;}
.ws16a{word-spacing:13.018129pt;}
.ws5a{word-spacing:13.018236pt;}
.ws209{word-spacing:13.018395pt;}
.ws74{word-spacing:13.018448pt;}
.ws226{word-spacing:13.018554pt;}
.ws189{word-spacing:13.018767pt;}
.wsd8{word-spacing:13.027851pt;}
.wsd7{word-spacing:13.033933pt;}
.ws1cd{word-spacing:13.070681pt;}
.ws188{word-spacing:13.070735pt;}
.wsd1{word-spacing:13.070788pt;}
.ws4d{word-spacing:13.070841pt;}
.ws211{word-spacing:13.070894pt;}
.ws170{word-spacing:13.071000pt;}
.ws56{word-spacing:13.071107pt;}
.ws1aa{word-spacing:13.071160pt;}
.ws22{word-spacing:13.071213pt;}
.ws172{word-spacing:13.071319pt;}
.ws1ce{word-spacing:13.071478pt;}
.ws1af{word-spacing:13.071797pt;}
.ws1f4{word-spacing:13.071904pt;}
.ws1b4{word-spacing:13.072010pt;}
.ws1cc{word-spacing:13.072149pt;}
.wsf{word-spacing:13.072169pt;}
.wsce{word-spacing:13.072329pt;}
.ws103{word-spacing:13.072488pt;}
.wsf1{word-spacing:13.123712pt;}
.ws42{word-spacing:13.123818pt;}
.ws18c{word-spacing:13.123871pt;}
.ws20a{word-spacing:13.124084pt;}
.ws64{word-spacing:13.124243pt;}
.ws79{word-spacing:13.124296pt;}
.ws155{word-spacing:13.124349pt;}
.ws19{word-spacing:13.124456pt;}
.ws1f5{word-spacing:13.124509pt;}
.ws10e{word-spacing:13.124562pt;}
.ws175{word-spacing:13.124615pt;}
.ws1a8{word-spacing:13.124721pt;}
.ws1a6{word-spacing:13.125199pt;}
.ws215{word-spacing:13.125306pt;}
.ws174{word-spacing:13.125412pt;}
.ws202{word-spacing:13.125465pt;}
.ws1a5{word-spacing:13.176848pt;}
.ws82{word-spacing:13.176954pt;}
.ws133{word-spacing:13.177008pt;}
.ws72{word-spacing:13.177114pt;}
.ws55{word-spacing:13.177167pt;}
.wsf7{word-spacing:13.177220pt;}
.wsd2{word-spacing:13.177273pt;}
.ws1a7{word-spacing:13.177326pt;}
.ws19d{word-spacing:13.177433pt;}
.ws181{word-spacing:13.177486pt;}
.ws13e{word-spacing:13.177645pt;}
.ws1df{word-spacing:13.177698pt;}
.ws104{word-spacing:13.177752pt;}
.ws105{word-spacing:13.178123pt;}
.wseb{word-spacing:13.178336pt;}
.ws218{word-spacing:13.178389pt;}
.ws1a1{word-spacing:13.178495pt;}
.ws11f{word-spacing:13.178549pt;}
.ws38{word-spacing:13.226315pt;}
.ws140{word-spacing:13.227587pt;}
.ws81{word-spacing:13.229932pt;}
.wsde{word-spacing:13.230038pt;}
.ws47{word-spacing:13.230091pt;}
.ws156{word-spacing:13.230095pt;}
.ws18f{word-spacing:13.230144pt;}
.ws15e{word-spacing:13.230151pt;}
.ws4a{word-spacing:13.230197pt;}
.wse3{word-spacing:13.230250pt;}
.ws7e{word-spacing:13.230304pt;}
.ws39{word-spacing:13.230357pt;}
.ws8b{word-spacing:13.230463pt;}
.ws2a{word-spacing:13.230516pt;}
.ws12b{word-spacing:13.230569pt;}
.ws43{word-spacing:13.230622pt;}
.ws137{word-spacing:13.230729pt;}
.ws1ab{word-spacing:13.230835pt;}
.ws5d{word-spacing:13.230941pt;}
.ws67{word-spacing:13.231101pt;}
.wsef{word-spacing:13.231260pt;}
.ws147{word-spacing:13.231366pt;}
.wscc{word-spacing:13.231473pt;}
.ws4f{word-spacing:13.231632pt;}
.ws93{word-spacing:13.231685pt;}
.ws12f{word-spacing:13.231791pt;}
.ws29{word-spacing:13.231845pt;}
.ws229{word-spacing:13.233399pt;}
.wsea{word-spacing:13.283174pt;}
.ws59{word-spacing:13.283281pt;}
.ws1a0{word-spacing:13.283334pt;}
.ws1d{word-spacing:13.283387pt;}
.ws21{word-spacing:13.283440pt;}
.wsd5{word-spacing:13.283493pt;}
.ws40{word-spacing:13.283599pt;}
.ws182{word-spacing:13.283653pt;}
.ws18a{word-spacing:13.283759pt;}
.ws4b{word-spacing:13.283812pt;}
.ws1da{word-spacing:13.283865pt;}
.ws57{word-spacing:13.283918pt;}
.ws52{word-spacing:13.283971pt;}
.ws124{word-spacing:13.284025pt;}
.wse4{word-spacing:13.284078pt;}
.ws60{word-spacing:13.284131pt;}
.wsa4{word-spacing:13.284556pt;}
.ws10d{word-spacing:13.284662pt;}
.ws1eb{word-spacing:13.284715pt;}
.ws153{word-spacing:13.284928pt;}
.wsb{word-spacing:13.285087pt;}
.ws120{word-spacing:13.336258pt;}
.ws11c{word-spacing:13.336311pt;}
.wsd3{word-spacing:13.336417pt;}
.ws6c{word-spacing:13.336523pt;}
.ws28{word-spacing:13.336577pt;}
.ws73{word-spacing:13.336842pt;}
.ws1ef{word-spacing:13.336895pt;}
.ws7f{word-spacing:13.337002pt;}
.ws1a2{word-spacing:13.337055pt;}
.ws169{word-spacing:13.337267pt;}
.wsa7{word-spacing:13.337427pt;}
.ws75{word-spacing:13.337480pt;}
.ws15f{word-spacing:13.337533pt;}
.ws116{word-spacing:13.338118pt;}
.ws126{word-spacing:13.338171pt;}
.ws1fa{word-spacing:13.338277pt;}
.ws22e{word-spacing:13.338383pt;}
.wscb{word-spacing:13.389341pt;}
.ws1e6{word-spacing:13.389394pt;}
.wsdd{word-spacing:13.389501pt;}
.ws1b1{word-spacing:13.389554pt;}
.ws63{word-spacing:13.389819pt;}
.ws10{word-spacing:13.389979pt;}
.ws146{word-spacing:13.390032pt;}
.wsc9{word-spacing:13.390191pt;}
.ws159{word-spacing:13.390244pt;}
.ws154{word-spacing:13.390298pt;}
.ws219{word-spacing:13.390404pt;}
.ws121{word-spacing:13.390616pt;}
.wsaf{word-spacing:13.390670pt;}
.ws21e{word-spacing:13.390723pt;}
.ws1fb{word-spacing:13.390776pt;}
.ws138{word-spacing:13.391254pt;}
.ws1de{word-spacing:13.391413pt;}
.ws231{word-spacing:13.391467pt;}
.ws1f7{word-spacing:13.442637pt;}
.wsa9{word-spacing:13.442743pt;}
.ws114{word-spacing:13.442850pt;}
.ws1d3{word-spacing:13.443062pt;}
.wsbf{word-spacing:13.443168pt;}
.ws5c{word-spacing:13.443328pt;}
.ws1d6{word-spacing:13.443434pt;}
.wsac{word-spacing:13.443487pt;}
.wsec{word-spacing:13.443540pt;}
.ws80{word-spacing:13.443700pt;}
.ws5b{word-spacing:13.443753pt;}
.ws139{word-spacing:13.443966pt;}
.ws14a{word-spacing:13.444391pt;}
.ws100{word-spacing:13.444497pt;}
.wsd4{word-spacing:13.444550pt;}
.ws14{word-spacing:13.495667pt;}
.ws13{word-spacing:13.495827pt;}
.ws1e{word-spacing:13.495880pt;}
.ws15d{word-spacing:13.496358pt;}
.ws83{word-spacing:13.496624pt;}
.ws233{word-spacing:13.496677pt;}
.ws22b{word-spacing:13.496730pt;}
.ws85{word-spacing:13.496996pt;}
.ws222{word-spacing:13.497155pt;}
.ws232{word-spacing:13.497315pt;}
.ws58{word-spacing:13.497368pt;}
.ws12a{word-spacing:13.497421pt;}
.ws86{word-spacing:13.497687pt;}
.wsc4{word-spacing:13.503707pt;}
.ws1ca{word-spacing:13.504129pt;}
.ws15c{word-spacing:13.512931pt;}
.wsc3{word-spacing:13.526493pt;}
.ws210{word-spacing:13.546796pt;}
.ws129{word-spacing:13.548804pt;}
.ws17{word-spacing:13.549070pt;}
.ws224{word-spacing:13.549548pt;}
.wse8{word-spacing:13.549654pt;}
.wsc5{word-spacing:13.550292pt;}
.ws22c{word-spacing:13.550611pt;}
.wsb8{word-spacing:13.602047pt;}
.ws1d2{word-spacing:13.602578pt;}
.ws176{word-spacing:13.655236pt;}
.ws1b0{word-spacing:13.655661pt;}
.ws26{word-spacing:13.655927pt;}
.ws27{word-spacing:13.656937pt;}
.ws25{word-spacing:13.708745pt;}
.wse7{word-spacing:13.709117pt;}
.ws183{word-spacing:13.709914pt;}
.ws10b{word-spacing:13.761881pt;}
.ws200{word-spacing:13.762147pt;}
.wse{word-spacing:13.762253pt;}
.ws166{word-spacing:13.762891pt;}
.ws1b3{word-spacing:13.815018pt;}
.wsb7{word-spacing:13.867676pt;}
.ws69{word-spacing:13.867729pt;}
.ws1a4{word-spacing:13.868101pt;}
.ws12{word-spacing:13.868739pt;}
.wsfe{word-spacing:13.921450pt;}
.ws4e{word-spacing:13.973949pt;}
.wsb1{word-spacing:13.974055pt;}
.ws16b{word-spacing:13.974587pt;}
.ws122{word-spacing:14.027405pt;}
.ws1c{word-spacing:14.027511pt;}
.ws184{word-spacing:14.027830pt;}
.ws7d{word-spacing:14.080435pt;}
.ws115{word-spacing:14.080807pt;}
.ws11{word-spacing:14.133943pt;}
.ws10c{word-spacing:14.186761pt;}
.ws76{word-spacing:14.187558pt;}
.ws1e8{word-spacing:14.239579pt;}
.ws19c{word-spacing:14.241385pt;}
.ws235{word-spacing:14.292715pt;}
.ws6d{word-spacing:14.292875pt;}
.ws234{word-spacing:14.293247pt;}
.ws1e3{word-spacing:14.293884pt;}
.ws112{word-spacing:14.293990pt;}
.wsa{word-spacing:14.294097pt;}
.ws17f{word-spacing:14.294628pt;}
.ws1ec{word-spacing:14.345799pt;}
.wse2{word-spacing:14.346755pt;}
.ws1f0{word-spacing:14.347605pt;}
.wsdb{word-spacing:14.399201pt;}
.wsda{word-spacing:14.400476pt;}
.ws101{word-spacing:14.400954pt;}
.ws8d{word-spacing:14.452284pt;}
.ws6e{word-spacing:14.452550pt;}
.ws65{word-spacing:14.453241pt;}
.ws1a3{word-spacing:14.453559pt;}
.ws19e{word-spacing:14.505368pt;}
.ws109{word-spacing:14.506165pt;}
.ws18{word-spacing:14.558451pt;}
.wsa6{word-spacing:14.559779pt;}
.wsaa{word-spacing:14.611853pt;}
.ws118{word-spacing:14.612385pt;}
.ws20e{word-spacing:14.664671pt;}
.ws77{word-spacing:14.664777pt;}
.ws128{word-spacing:14.665202pt;}
.wsdc{word-spacing:14.665468pt;}
.ws30{word-spacing:14.707249pt;}
.ws131{word-spacing:14.760476pt;}
.ws4c{word-spacing:14.772963pt;}
.ws2c{word-spacing:14.779005pt;}
.ws1e2{word-spacing:14.824293pt;}
.wsc{word-spacing:14.824665pt;}
.ws1b6{word-spacing:14.877376pt;}
.ws84{word-spacing:14.877536pt;}
.wsad{word-spacing:14.877908pt;}
.ws23{word-spacing:14.878280pt;}
.wsf9{word-spacing:14.878439pt;}
.ws16c{word-spacing:14.878652pt;}
.ws3a{word-spacing:14.931257pt;}
.ws20{word-spacing:14.983596pt;}
.ws123{word-spacing:15.036733pt;}
.ws10a{word-spacing:15.036839pt;}
.wsf8{word-spacing:15.037211pt;}
.wsc8{word-spacing:15.089816pt;}
.ws205{word-spacing:15.090773pt;}
.ws5e{word-spacing:15.142953pt;}
.ws162{word-spacing:15.196036pt;}
.ws1d7{word-spacing:15.196089pt;}
.ws24{word-spacing:15.196195pt;}
.ws17d{word-spacing:15.197046pt;}
.ws1f6{word-spacing:15.197471pt;}
.ws1e0{word-spacing:15.197790pt;}
.wsf0{word-spacing:15.197843pt;}
.ws14b{word-spacing:15.250926pt;}
.ws157{word-spacing:15.302522pt;}
.ws223{word-spacing:15.303159pt;}
.ws6a{word-spacing:15.303319pt;}
.ws2d{word-spacing:15.346717pt;}
.wsca{word-spacing:15.355499pt;}
.ws22d{word-spacing:15.355871pt;}
.wsf5{word-spacing:15.356880pt;}
.ws1e1{word-spacing:15.357146pt;}
.wsff{word-spacing:15.409007pt;}
.ws12e{word-spacing:15.409379pt;}
.ws3e{word-spacing:15.410017pt;}
.ws7b{word-spacing:15.461984pt;}
.ws1b7{word-spacing:15.462356pt;}
.ws1f8{word-spacing:15.462622pt;}
.ws22f{word-spacing:15.514962pt;}
.ws239{word-spacing:15.515971pt;}
.ws1d5{word-spacing:15.516396pt;}
.ws23a{word-spacing:15.516715pt;}
.ws1d4{word-spacing:15.568257pt;}
.wscd{word-spacing:15.569161pt;}
.ws177{word-spacing:15.569267pt;}
.ws96{word-spacing:15.617314pt;}
.ws97{word-spacing:15.621288pt;}
.ws98{word-spacing:15.622669pt;}
.wsa8{word-spacing:15.674371pt;}
.ws228{word-spacing:15.674530pt;}
.wsbb{word-spacing:15.781547pt;}
.ws31{word-spacing:15.812406pt;}
.wsfc{word-spacing:15.835375pt;}
.ws7{word-spacing:15.876598pt;}
.ws8{word-spacing:15.878256pt;}
.ws125{word-spacing:15.887608pt;}
.wsf2{word-spacing:15.888246pt;}
.ws167{word-spacing:15.940054pt;}
.ws207{word-spacing:15.940585pt;}
.ws132{word-spacing:15.941382pt;}
.ws53{word-spacing:15.993137pt;}
.ws165{word-spacing:16.046380pt;}
.ws10f{word-spacing:16.046539pt;}
.ws11d{word-spacing:16.046911pt;}
.wsf6{word-spacing:16.047177pt;}
.ws173{word-spacing:16.047549pt;}
.ws213{word-spacing:16.099782pt;}
.wsc2{word-spacing:16.099995pt;}
.ws15b{word-spacing:16.100632pt;}
.wsc0{word-spacing:16.100792pt;}
.wsa1{word-spacing:16.152865pt;}
.ws1ad{word-spacing:16.153237pt;}
.ws8f{word-spacing:16.153503pt;}
.wsa3{word-spacing:16.153769pt;}
.wsa2{word-spacing:16.187476pt;}
.ws1f2{word-spacing:16.206640pt;}
.ws95{word-spacing:16.206852pt;}
.wsd0{word-spacing:16.259085pt;}
.ws227{word-spacing:16.260254pt;}
.ws178{word-spacing:16.312169pt;}
.ws1a9{word-spacing:16.312328pt;}
.ws113{word-spacing:16.312434pt;}
.ws214{word-spacing:16.418389pt;}
.ws186{word-spacing:16.471685pt;}
.ws16e{word-spacing:16.471791pt;}
.ws204{word-spacing:16.472322pt;}
.wsfa{word-spacing:16.472429pt;}
.ws16d{word-spacing:16.524981pt;}
.ws1fd{word-spacing:16.526256pt;}
.ws168{word-spacing:16.683806pt;}
.ws37{word-spacing:16.684071pt;}
.ws163{word-spacing:16.737155pt;}
.ws1f3{word-spacing:16.737952pt;}
.ws12d{word-spacing:16.790929pt;}
.ws17a{word-spacing:16.790982pt;}
.ws49{word-spacing:16.845181pt;}
.ws20d{word-spacing:16.896883pt;}
.ws158{word-spacing:16.897521pt;}
.ws1b5{word-spacing:16.949966pt;}
.ws107{word-spacing:17.003209pt;}
.ws1f{word-spacing:17.003687pt;}
.ws1f9{word-spacing:17.056186pt;}
.ws19f{word-spacing:17.162034pt;}
.ws1ed{word-spacing:17.215383pt;}
.ws9d{word-spacing:17.215755pt;}
.ws17c{word-spacing:17.268626pt;}
.ws19b{word-spacing:17.321603pt;}
.ws19a{word-spacing:17.321869pt;}
.ws1cf{word-spacing:17.375218pt;}
.ws90{word-spacing:17.375484pt;}
.ws1d8{word-spacing:17.375909pt;}
.ws1e9{word-spacing:17.428567pt;}
.ws15a{word-spacing:17.480907pt;}
.ws8e{word-spacing:17.481066pt;}
.ws50{word-spacing:17.481438pt;}
.ws161{word-spacing:17.534574pt;}
.ws21b{word-spacing:17.534787pt;}
.ws136{word-spacing:17.746589pt;}
.ws160{word-spacing:17.800098pt;}
.ws1ea{word-spacing:17.800363pt;}
.ws180{word-spacing:17.801373pt;}
.ws5f{word-spacing:17.853181pt;}
.ws89{word-spacing:17.853447pt;}
.ws1db{word-spacing:17.959348pt;}
.ws216{word-spacing:18.065408pt;}
.ws217{word-spacing:18.065621pt;}
.ws6f{word-spacing:18.118651pt;}
.wscf{word-spacing:18.119129pt;}
.ws92{word-spacing:18.331304pt;}
.ws16f{word-spacing:18.384281pt;}
.ws1f1{word-spacing:18.437630pt;}
.ws106{word-spacing:18.545603pt;}
.ws17b{word-spacing:18.597039pt;}
.ws134{word-spacing:18.598049pt;}
.ws1b{word-spacing:18.598315pt;}
.ws41{word-spacing:18.704056pt;}
.ws70{word-spacing:18.757937pt;}
.ws1e5{word-spacing:18.809479pt;}
.ws11e{word-spacing:18.863466pt;}
.ws13d{word-spacing:18.968836pt;}
.ws206{word-spacing:18.968995pt;}
.ws13c{word-spacing:19.021866pt;}
.wsba{word-spacing:19.022503pt;}
.ws179{word-spacing:19.181382pt;}
.ws208{word-spacing:19.287708pt;}
.ws196{word-spacing:19.342226pt;}
.ws197{word-spacing:19.607749pt;}
.ws221{word-spacing:19.659770pt;}
.ws71{word-spacing:19.661204pt;}
.ws78{word-spacing:19.766627pt;}
.ws9b{word-spacing:19.820189pt;}
.ws99{word-spacing:19.820720pt;}
.wsd{word-spacing:19.820827pt;}
.wsb9{word-spacing:19.872900pt;}
.ws236{word-spacing:19.926409pt;}
.ws1ac{word-spacing:20.191932pt;}
.ws102{word-spacing:20.510220pt;}
.ws21a{word-spacing:23.857502pt;}
.ws201{word-spacing:23.910585pt;}
.wsa5{word-spacing:26.515391pt;}
.ws230{word-spacing:26.939739pt;}
.ws22a{word-spacing:27.895718pt;}
.ws1c0{word-spacing:39.781216pt;}
.ws237{word-spacing:43.464932pt;}
.ws1c5{word-spacing:43.942640pt;}
.ws1c4{word-spacing:64.179008pt;}
.ws1c9{word-spacing:64.179264pt;}
.ws1c2{word-spacing:64.779248pt;}
.ws1c7{word-spacing:66.330487pt;}
.ws1ba{word-spacing:67.239683pt;}
.ws110{word-spacing:72.957509pt;}
.ws1bd{word-spacing:75.602047pt;}
.ws1bc{word-spacing:75.603647pt;}
.ws1c6{word-spacing:88.226297pt;}
.ws1bb{word-spacing:88.465113pt;}
.ws1c8{word-spacing:92.939757pt;}
.ws1c1{word-spacing:92.940013pt;}
.ws1c3{word-spacing:110.181335pt;}
.ws142{word-spacing:164.329685pt;}
.ws1b8{word-spacing:212.884630pt;}
._1b{margin-left:-30.230936pt;}
._1c{margin-left:-29.338958pt;}
._1d{margin-left:-24.152407pt;}
._3{margin-left:-7.074644pt;}
._19{margin-left:-5.996971pt;}
._12{margin-left:-5.047778pt;}
._2{margin-left:-4.085494pt;}
._0{margin-left:-2.294680pt;}
._1{margin-left:-0.955584pt;}
._a{width:2.678912pt;}
._1a{width:3.713403pt;}
._1e{width:6.806364pt;}
._2e{width:10.149023pt;}
._2c{width:11.109002pt;}
._c{width:12.123503pt;}
._8{width:14.037307pt;}
._6{width:15.094400pt;}
._5{width:16.794595pt;}
._7{width:18.067002pt;}
._18{width:19.137159pt;}
._e{width:20.191507pt;}
._9{width:21.573375pt;}
._15{width:23.289920pt;}
._16{width:24.292154pt;}
._f{width:25.293463pt;}
._1f{width:26.250771pt;}
._d{width:27.290442pt;}
._b{width:28.362572pt;}
._14{width:29.334285pt;}
._10{width:30.819343pt;}
._11{width:31.882445pt;}
._13{width:35.504386pt;}
._4{width:36.717922pt;}
._17{width:38.898433pt;}
._2b{width:40.459462pt;}
._29{width:49.934705pt;}
._2f{width:51.224884pt;}
._2d{width:52.980365pt;}
._2a{width:56.792087pt;}
._25{width:61.972058pt;}
._28{width:73.986040pt;}
._23{width:75.090517pt;}
._26{width:76.276759pt;}
._27{width:79.169305pt;}
._24{width:80.926213pt;}
._22{width:84.231802pt;}
._21{width:88.000314pt;}
._20{width:220.208414pt;}
.fsa{font-size:25.640322pt;}
.fsc{font-size:28.139114pt;}
.fs6{font-size:31.882127pt;}
.fsb{font-size:35.777202pt;}
.fs5{font-size:37.195460pt;}
.fs2{font-size:42.509325pt;}
.fs3{font-size:47.823191pt;}
.fs9{font-size:51.643382pt;}
.fs7{font-size:53.133867pt;}
.fs4{font-size:53.136523pt;}
.fs8{font-size:53.336000pt;}
.fs1{font-size:63.764255pt;}
.fs0{font-size:76.516892pt;}
.y0{bottom:0.000000pt;}
.y1ed{bottom:7.081541pt;}
.y20a{bottom:9.467287pt;}
.y1ec{bottom:14.832968pt;}
.y209{bottom:17.368202pt;}
.y1eb{bottom:22.733883pt;}
.y208{bottom:25.119629pt;}
.y1ea{bottom:30.634798pt;}
.y207{bottom:33.020544pt;}
.y1e9{bottom:38.386746pt;}
.y206{bottom:40.772492pt;}
.y1e8{bottom:46.287661pt;}
.y47{bottom:46.968000pt;}
.y205{bottom:48.673407pt;}
.y1e7{bottom:54.039609pt;}
.y204{bottom:56.573802pt;}
.y1e6{bottom:61.940524pt;}
.y203{bottom:64.325749pt;}
.y1e5{bottom:69.840919pt;}
.y202{bottom:72.226664pt;}
.y1e4{bottom:77.592866pt;}
.y46{bottom:78.645256pt;}
.y201{bottom:79.978092pt;}
.y30{bottom:82.142911pt;}
.y1e3{bottom:85.493781pt;}
.y200{bottom:87.879007pt;}
.yb3{bottom:90.601587pt;}
.y1e2{bottom:93.245209pt;}
.yb2{bottom:94.352841pt;}
.y7d{bottom:94.852733pt;}
.y45{bottom:94.852866pt;}
.y2f{bottom:95.294088pt;}
.y1ff{bottom:95.630955pt;}
.y1e1{bottom:101.146124pt;}
.y197{bottom:102.556852pt;}
.yb1{bottom:103.342358pt;}
.y1fe{bottom:103.531870pt;}
.y196{bottom:106.308012pt;}
.yb0{bottom:107.093758pt;}
.y2e{bottom:108.445039pt;}
.y1e0{bottom:108.898071pt;}
.y7c{bottom:111.058743pt;}
.y44{bottom:111.058877pt;}
.y1fd{bottom:111.432785pt;}
.ye6{bottom:113.785680pt;}
.y195{bottom:115.299089pt;}
.y142{bottom:115.343091pt;}
.y1df{bottom:116.798986pt;}
.y10e{bottom:118.605921pt;}
.y1fc{bottom:119.184732pt;}
.yaf{bottom:119.833982pt;}
.y2d{bottom:121.596737pt;}
.y1de{bottom:124.699381pt;}
.y1fb{bottom:127.085647pt;}
.y194{bottom:127.254353pt;}
.y43{bottom:127.266354pt;}
.y167{bottom:127.266487pt;}
.y10d{bottom:129.991823pt;}
.ye5{bottom:129.993157pt;}
.y193{bottom:131.005207pt;}
.y141{bottom:131.550701pt;}
.y1dd{bottom:132.451329pt;}
.y2c{bottom:134.748061pt;}
.y1fa{bottom:134.837075pt;}
.y1dc{bottom:140.352244pt;}
.y1f9{bottom:142.737990pt;}
.y1c9{bottom:143.472364pt;}
.y42{bottom:143.472497pt;}
.y27b{bottom:143.472631pt;}
.yae{bottom:143.635172pt;}
.y10c{bottom:146.197967pt;}
.ye4{bottom:146.199300pt;}
.y140{bottom:147.756711pt;}
.y2b{bottom:147.899012pt;}
.y1db{bottom:148.104192pt;}
.y1f8{bottom:150.638905pt;}
.y1da{bottom:156.005107pt;}
.y1f7{bottom:158.390332pt;}
.y1c8{bottom:159.679974pt;}
.yad{bottom:159.842649pt;}
.y7b{bottom:159.942654pt;}
.y166{bottom:160.836032pt;}
.y2a{bottom:161.050709pt;}
.y41{bottom:162.384109pt;}
.y10b{bottom:162.405444pt;}
.ye3{bottom:162.406777pt;}
.y1d9{bottom:163.906022pt;}
.y13f{bottom:164.205534pt;}
.y192{bottom:166.036292pt;}
.y1f6{bottom:166.291247pt;}
.y1d8{bottom:171.657449pt;}
.y27a{bottom:173.400660pt;}
.y1f5{bottom:174.043195pt;}
.y1c7{bottom:175.886118pt;}
.yac{bottom:176.048793pt;}
.y7a{bottom:176.148798pt;}
.y165{bottom:177.043509pt;}
.y40{bottom:178.590253pt;}
.y10a{bottom:178.611587pt;}
.ye2{bottom:178.612521pt;}
.y1d7{bottom:179.558364pt;}
.y13e{bottom:180.413011pt;}
.y191{bottom:182.243769pt;}
.y1d6{bottom:187.310312pt;}
.y279{bottom:189.606671pt;}
.y1f4{bottom:189.844518pt;}
.y1c6{bottom:192.092128pt;}
.y248{bottom:192.092261pt;}
.yab{bottom:192.256270pt;}
.y223{bottom:192.297605pt;}
.y79{bottom:192.356275pt;}
.y164{bottom:193.249653pt;}
.y3f{bottom:194.797730pt;}
.ye1{bottom:194.819064pt;}
.y1d5{bottom:195.210707pt;}
.y13d{bottom:196.619154pt;}
.y1f3{bottom:197.596466pt;}
.y190{bottom:198.449913pt;}
.y1d4{bottom:205.198699pt;}
.y1f2{bottom:205.496861pt;}
.y278{bottom:205.814281pt;}
.y1c5{bottom:208.299738pt;}
.y247{bottom:208.299872pt;}
.yaa{bottom:208.462413pt;}
.y222{bottom:208.503749pt;}
.y78{bottom:208.562418pt;}
.y29{bottom:208.565085pt;}
.y163{bottom:209.457130pt;}
.y3e{bottom:211.003874pt;}
.y109{bottom:211.025208pt;}
.ye0{bottom:211.026541pt;}
.y13c{bottom:212.826631pt;}
.y1d3{bottom:213.099614pt;}
.y1f1{bottom:213.248809pt;}
.y18f{bottom:214.656056pt;}
.y1d2{bottom:220.851042pt;}
.y1f0{bottom:221.149724pt;}
.y277{bottom:222.020424pt;}
.y20d{bottom:223.161824pt;}
.y1c4{bottom:224.505882pt;}
.ya9{bottom:224.668557pt;}
.y221{bottom:224.709892pt;}
.y77{bottom:224.768562pt;}
.y162{bottom:225.663273pt;}
.y3d{bottom:227.211351pt;}
.ydf{bottom:227.232685pt;}
.y108{bottom:227.232952pt;}
.y28{bottom:229.715476pt;}
.y18e{bottom:230.863533pt;}
.y275{bottom:238.227768pt;}
.y276{bottom:238.227901pt;}
.y1c3{bottom:240.713359pt;}
.ya8{bottom:240.876034pt;}
.y220{bottom:240.917503pt;}
.y76{bottom:240.976039pt;}
.y161{bottom:241.870750pt;}
.y13b{bottom:243.045609pt;}
.y3c{bottom:243.417494pt;}
.y107{bottom:243.438962pt;}
.yde{bottom:243.439762pt;}
.y27{bottom:245.922953pt;}
.y18d{bottom:247.069677pt;}
.y1ee{bottom:254.540580pt;}
.y1ef{bottom:254.690067pt;}
.y20b{bottom:254.690214pt;}
.y246{bottom:256.919503pt;}
.ya7{bottom:257.082177pt;}
.y21f{bottom:257.123513pt;}
.y75{bottom:257.182182pt;}
.y1c2{bottom:257.467530pt;}
.y160{bottom:258.076894pt;}
.y3b{bottom:259.623638pt;}
.y106{bottom:259.644972pt;}
.ydd{bottom:259.646306pt;}
.y26{bottom:262.129096pt;}
.y18c{bottom:263.277154pt;}
.y274{bottom:268.154731pt;}
.y13a{bottom:273.021641pt;}
.y245{bottom:273.125513pt;}
.ya6{bottom:273.289654pt;}
.y21e{bottom:273.330990pt;}
.y74{bottom:273.389659pt;}
.y1c1{bottom:273.673674pt;}
.y15f{bottom:274.283037pt;}
.ydc{bottom:275.853783pt;}
.y25{bottom:278.335773pt;}
.y3a{bottom:278.535250pt;}
.y18b{bottom:279.483297pt;}
.y273{bottom:284.362208pt;}
.y105{bottom:287.130213pt;}
.y139{bottom:289.227785pt;}
.y244{bottom:289.333123pt;}
.ya5{bottom:289.495798pt;}
.y21d{bottom:289.537133pt;}
.y73{bottom:289.595803pt;}
.y1c0{bottom:289.881151pt;}
.y15e{bottom:290.490648pt;}
.ydb{bottom:292.059926pt;}
.y24{bottom:294.542317pt;}
.y39{bottom:294.742727pt;}
.y18a{bottom:295.689441pt;}
.y272{bottom:300.568352pt;}
.y138{bottom:305.435262pt;}
.y243{bottom:305.539267pt;}
.ya4{bottom:305.701808pt;}
.y21c{bottom:305.744744pt;}
.y72{bottom:305.803413pt;}
.y1bf{bottom:306.087294pt;}
.y15d{bottom:306.696658pt;}
.yda{bottom:308.266070pt;}
.y23{bottom:310.748861pt;}
.y38{bottom:310.948871pt;}
.y189{bottom:311.896918pt;}
.y104{bottom:314.614387pt;}
.y271{bottom:316.775429pt;}
.y137{bottom:321.641405pt;}
.y242{bottom:321.746744pt;}
.ya3{bottom:321.909419pt;}
.y21b{bottom:321.950754pt;}
.y71{bottom:322.009424pt;}
.y1be{bottom:322.293438pt;}
.y15c{bottom:324.061526pt;}
.yd9{bottom:324.473547pt;}
.y22{bottom:326.956338pt;}
.y37{bottom:327.156348pt;}
.y188{bottom:328.103062pt;}
.y103{bottom:330.821864pt;}
.y270{bottom:332.981972pt;}
.y26f{bottom:332.982106pt;}
.y136{bottom:337.848882pt;}
.y241{bottom:337.952887pt;}
.ya2{bottom:338.115562pt;}
.y21a{bottom:338.156898pt;}
.y70{bottom:338.479580pt;}
.y1bd{bottom:338.501048pt;}
.y15b{bottom:340.267670pt;}
.yd8{bottom:340.679690pt;}
.y21{bottom:343.163015pt;}
.y36{bottom:343.362625pt;}
.y187{bottom:344.310539pt;}
.y102{bottom:347.028008pt;}
.y135{bottom:354.055026pt;}
.y240{bottom:354.160364pt;}
.ya1{bottom:354.323039pt;}
.y219{bottom:354.364375pt;}
.y6f{bottom:354.685724pt;}
.y1bc{bottom:354.707058pt;}
.y15a{bottom:356.473813pt;}
.y20{bottom:359.369558pt;}
.y35{bottom:359.568635pt;}
.y29f{bottom:360.017991pt;}
.y186{bottom:360.516682pt;}
.y26e{bottom:362.910135pt;}
.y101{bottom:363.235485pt;}
.yd7{bottom:364.857166pt;}
.y134{bottom:370.261169pt;}
.y23f{bottom:370.366508pt;}
.ya0{bottom:370.529183pt;}
.y218{bottom:370.570518pt;}
.y6e{bottom:370.893201pt;}
.y1bb{bottom:370.914535pt;}
.y159{bottom:372.681424pt;}
.y1f{bottom:375.576102pt;}
.y34{bottom:375.776112pt;}
.y29e{bottom:376.224134pt;}
.y185{bottom:376.724159pt;}
.y26d{bottom:379.116279pt;}
.y100{bottom:379.441762pt;}
.y133{bottom:386.468646pt;}
.y23e{bottom:386.572652pt;}
.y217{bottom:386.777995pt;}
.y6d{bottom:387.099345pt;}
.y1ba{bottom:387.120679pt;}
.y9f{bottom:387.627371pt;}
.y158{bottom:388.887434pt;}
.y1e{bottom:391.782245pt;}
.y33{bottom:391.982255pt;}
.y29d{bottom:392.430278pt;}
.y184{bottom:392.930303pt;}
.y26c{bottom:395.323756pt;}
.yd6{bottom:395.647772pt;}
.y132{bottom:402.674790pt;}
.y23d{bottom:402.780129pt;}
.y216{bottom:402.984139pt;}
.y6c{bottom:403.305488pt;}
.y1b9{bottom:403.328289pt;}
.y9e{bottom:403.833515pt;}
.y157{bottom:405.095044pt;}
.y1d{bottom:407.989722pt;}
.y29c{bottom:408.637755pt;}
.y182{bottom:409.136446pt;}
.y26b{bottom:411.529899pt;}
.yd5{bottom:411.853916pt;}
.yff{bottom:411.855382pt;}
.y183{bottom:413.958021pt;}
.y215{bottom:419.395626pt;}
.y6b{bottom:419.512965pt;}
.y1b8{bottom:419.534300pt;}
.y156{bottom:421.301055pt;}
.y1c{bottom:424.195866pt;}
.y29b{bottom:424.843898pt;}
.y181{bottom:425.343923pt;}
.y131{bottom:427.312955pt;}
.y26a{bottom:427.736043pt;}
.y269{bottom:427.736176pt;}
.yd4{bottom:428.061393pt;}
.y9d{bottom:429.704008pt;}
.y23c{bottom:430.330839pt;}
.y214{bottom:435.601770pt;}
.y6a{bottom:435.719109pt;}
.y1b7{bottom:436.288471pt;}
.y155{bottom:437.507198pt;}
.y32{bottom:440.120662pt;}
.y29a{bottom:441.051375pt;}
.y299{bottom:441.051642pt;}
.y180{bottom:441.549934pt;}
.yd3{bottom:444.267536pt;}
.y23b{bottom:446.536850pt;}
.y1b{bottom:448.807670pt;}
.y213{bottom:451.809247pt;}
.y69{bottom:451.926186pt;}
.yfe{bottom:452.238335pt;}
.y1b6{bottom:452.495948pt;}
.y154{bottom:454.872066pt;}
.y31{bottom:456.326806pt;}
.y268{bottom:457.664206pt;}
.y17f{bottom:457.757544pt;}
.y130{bottom:459.798979pt;}
.yd2{bottom:460.474613pt;}
.y23a{bottom:462.744460pt;}
.y9c{bottom:465.757944pt;}
.y298{bottom:467.884717pt;}
.y68{bottom:468.132729pt;}
.y1b5{bottom:468.702091pt;}
.y153{bottom:471.078210pt;}
.y267{bottom:473.871816pt;}
.y17e{bottom:473.963688pt;}
.y12f{bottom:476.006456pt;}
.y212{bottom:476.374208pt;}
.yd0{bottom:476.681157pt;}
.y239{bottom:478.950470pt;}
.yd1{bottom:481.501398pt;}
.y9b{bottom:481.965421pt;}
.yfd{bottom:483.029474pt;}
.y297{bottom:484.092194pt;}
.y67{bottom:484.338740pt;}
.y1b4{bottom:484.908235pt;}
.y1a{bottom:487.195016pt;}
.y152{bottom:487.285820pt;}
.y266{bottom:490.077827pt;}
.y265{bottom:490.077960pt;}
.y17d{bottom:490.169831pt;}
.y12e{bottom:492.212600pt;}
.ycf{bottom:492.888634pt;}
.y238{bottom:495.158081pt;}
.y9a{bottom:498.171565pt;}
.yfc{bottom:499.235618pt;}
.y296{bottom:500.298204pt;}
.y66{bottom:500.546350pt;}
.y1b3{bottom:501.115712pt;}
.y19{bottom:503.402493pt;}
.y151{bottom:503.491831pt;}
.y12d{bottom:508.420077pt;}
.yce{bottom:509.094777pt;}
.y237{bottom:511.364224pt;}
.y99{bottom:514.379042pt;}
.yfb{bottom:515.443095pt;}
.y295{bottom:516.505815pt;}
.y65{bottom:516.752360pt;}
.y1b2{bottom:517.321855pt;}
.y211{bottom:519.511298pt;}
.y18{bottom:519.608636pt;}
.y150{bottom:519.697974pt;}
.y264{bottom:520.005990pt;}
.y17c{bottom:521.375391pt;}
.y12c{bottom:524.626221pt;}
.ycd{bottom:525.300921pt;}
.y236{bottom:527.570368pt;}
.y98{bottom:530.585185pt;}
.yfa{bottom:531.649372pt;}
.y294{bottom:532.711958pt;}
.y64{bottom:532.959971pt;}
.y1b1{bottom:533.529332pt;}
.y210{bottom:535.717442pt;}
.y17{bottom:535.814780pt;}
.y14f{bottom:535.905451pt;}
.y263{bottom:536.212000pt;}
.y12b{bottom:541.076376pt;}
.ycc{bottom:541.508398pt;}
.y235{bottom:543.777845pt;}
.y97{bottom:546.791329pt;}
.y96{bottom:546.791729pt;}
.yf9{bottom:547.855382pt;}
.y293{bottom:548.918102pt;}
.y63{bottom:549.165981pt;}
.y1b0{bottom:549.735476pt;}
.y20f{bottom:551.924919pt;}
.y16{bottom:552.022257pt;}
.y14e{bottom:552.111462pt;}
.y262{bottom:552.419610pt;}
.y12a{bottom:557.282520pt;}
.y129{bottom:557.282653pt;}
.ycb{bottom:557.714542pt;}
.y234{bottom:559.983988pt;}
.y95{bottom:562.998806pt;}
.yf8{bottom:564.062859pt;}
.y292{bottom:565.125579pt;}
.y291{bottom:565.125846pt;}
.y62{bottom:565.373591pt;}
.y1af{bottom:565.941486pt;}
.y20e{bottom:568.131062pt;}
.y15{bottom:568.228401pt;}
.y14d{bottom:568.319072pt;}
.y261{bottom:568.625754pt;}
.y17b{bottom:572.871433pt;}
.y128{bottom:573.488664pt;}
.yca{bottom:573.922019pt;}
.y233{bottom:576.191065pt;}
.y94{bottom:579.204949pt;}
.yf7{bottom:580.269003pt;}
.y1ae{bottom:582.149097pt;}
.y14{bottom:584.435878pt;}
.y14c{bottom:584.525215pt;}
.y260{bottom:584.833231pt;}
.y179{bottom:589.077443pt;}
.y127{bottom:589.696141pt;}
.y61{bottom:590.049625pt;}
.yc9{bottom:590.128162pt;}
.y290{bottom:591.958920pt;}
.y232{bottom:592.397609pt;}
.y92{bottom:593.086977pt;}
.y17a{bottom:593.899017pt;}
.y91{bottom:595.412026pt;}
.y93{bottom:595.412426pt;}
.yf6{bottom:596.476480pt;}
.y1d1{bottom:597.572534pt;}
.y20c{bottom:597.904551pt;}
.y1ad{bottom:598.355107pt;}
.y13{bottom:600.642021pt;}
.y14b{bottom:600.732692pt;}
.y25f{bottom:601.039374pt;}
.y178{bottom:605.285053pt;}
.y126{bottom:605.902284pt;}
.yc8{bottom:606.334173pt;}
.y28f{bottom:608.166397pt;}
.y231{bottom:608.603753pt;}
.y90{bottom:611.618570pt;}
.y8e{bottom:611.618703pt;}
.yf5{bottom:612.682757pt;}
.y1ac{bottom:614.562717pt;}
.y8f{bottom:616.438811pt;}
.y12{bottom:616.848032pt;}
.y25e{bottom:617.245518pt;}
.y177{bottom:621.491064pt;}
.y125{bottom:622.109761pt;}
.y124{bottom:622.109895pt;}
.yc7{bottom:622.541783pt;}
.y28e{bottom:624.372541pt;}
.y230{bottom:624.810830pt;}
.y14a{bottom:627.108811pt;}
.y8d{bottom:627.824714pt;}
.y60{bottom:628.626087pt;}
.yf4{bottom:628.888767pt;}
.y11{bottom:633.055642pt;}
.y176{bottom:637.698541pt;}
.y122{bottom:638.315905pt;}
.yc6{bottom:638.747926pt;}
.y1ab{bottom:639.780111pt;}
.y28d{bottom:640.580018pt;}
.y28c{bottom:640.580285pt;}
.y22f{bottom:641.017373pt;}
.y25d{bottom:642.893200pt;}
.y123{bottom:643.136146pt;}
.y5f{bottom:644.833564pt;}
.y8c{bottom:644.922902pt;}
.yf3{bottom:645.096244pt;}
.y10{bottom:649.261785pt;}
.y175{bottom:653.904684pt;}
.y121{bottom:654.523382pt;}
.yc5{bottom:654.955403pt;}
.y22e{bottom:657.224850pt;}
.y5e{bottom:661.039708pt;}
.y8b{bottom:661.130512pt;}
.yf2{bottom:661.302387pt;}
.y149{bottom:664.625220pt;}
.yf{bottom:665.469262pt;}
.y28b{bottom:667.413360pt;}
.y174{bottom:670.112295pt;}
.y120{bottom:670.729525pt;}
.yc4{bottom:671.161547pt;}
.y22d{bottom:673.430861pt;}
.y1aa{bottom:673.944353pt;}
.y5d{bottom:677.245851pt;}
.y8a{bottom:677.336522pt;}
.yf1{bottom:677.509864pt;}
.y148{bottom:680.831364pt;}
.ye{bottom:681.675406pt;}
.y28a{bottom:683.620837pt;}
.y25c{bottom:684.275536pt;}
.y173{bottom:686.318305pt;}
.yc3{bottom:687.369024pt;}
.y22c{bottom:689.638471pt;}
.y1a9{bottom:690.150496pt;}
.y5c{bottom:693.453328pt;}
.y89{bottom:693.543999pt;}
.yf0{bottom:693.716008pt;}
.y11f{bottom:695.368491pt;}
.y147{bottom:697.037507pt;}
.yd{bottom:697.883016pt;}
.y288{bottom:699.826714pt;}
.y289{bottom:699.826980pt;}
.y25b{bottom:700.483013pt;}
.y172{bottom:702.524448pt;}
.yc2{bottom:703.575168pt;}
.y22b{bottom:705.844614pt;}
.y1a8{bottom:706.356640pt;}
.y5b{bottom:709.659339pt;}
.y88{bottom:709.750143pt;}
.yef{bottom:709.923485pt;}
.y146{bottom:713.244984pt;}
.yc{bottom:714.089027pt;}
.y25a{bottom:716.689157pt;}
.y171{bottom:718.731125pt;}
.yc1{bottom:719.781711pt;}
.y22a{bottom:722.050625pt;}
.y1a7{bottom:722.564117pt;}
.y5a{bottom:725.866949pt;}
.y87{bottom:725.956153pt;}
.yee{bottom:726.129762pt;}
.y287{bottom:726.660322pt;}
.yb{bottom:730.295170pt;}
.y259{bottom:732.896634pt;}
.y11e{bottom:733.831347pt;}
.y170{bottom:734.937136pt;}
.yc0{bottom:735.988788pt;}
.y229{bottom:738.258235pt;}
.y1a6{bottom:738.770261pt;}
.y59{bottom:742.073092pt;}
.y86{bottom:742.163764pt;}
.yed{bottom:742.335772pt;}
.y286{bottom:742.867799pt;}
.ya{bottom:746.502647pt;}
.y258{bottom:749.102777pt;}
.y11d{bottom:750.038824pt;}
.y16f{bottom:751.144746pt;}
.ybf{bottom:752.194932pt;}
.y228{bottom:754.464379pt;}
.y1a5{bottom:754.977738pt;}
.y58{bottom:758.279103pt;}
.y145{bottom:758.287236pt;}
.y85{bottom:758.369774pt;}
.yec{bottom:758.543249pt;}
.y285{bottom:759.073942pt;}
.y257{bottom:765.310254pt;}
.y11c{bottom:766.244968pt;}
.y16e{bottom:767.351290pt;}
.ybe{bottom:768.402542pt;}
.y227{bottom:770.671856pt;}
.y1a4{bottom:771.183881pt;}
.y57{bottom:774.486713pt;}
.y144{bottom:774.494713pt;}
.y84{bottom:774.577384pt;}
.yeb{bottom:774.749260pt;}
.y9{bottom:776.908181pt;}
.y256{bottom:781.516398pt;}
.y11b{bottom:782.452445pt;}
.y16d{bottom:783.557833pt;}
.ybd{bottom:784.608552pt;}
.y284{bottom:785.908617pt;}
.y226{bottom:786.877866pt;}
.y1a3{bottom:787.389892pt;}
.y56{bottom:790.692857pt;}
.y143{bottom:790.700857pt;}
.yea{bottom:790.956870pt;}
.y255{bottom:797.722541pt;}
.y11a{bottom:798.658588pt;}
.y16c{bottom:799.765310pt;}
.y83{bottom:800.447878pt;}
.ybc{bottom:800.814696pt;}
.y283{bottom:802.114628pt;}
.y225{bottom:803.085476pt;}
.y1a2{bottom:803.597502pt;}
.y55{bottom:807.163013pt;}
.y254{bottom:813.929618pt;}
.y119{bottom:814.864732pt;}
.ybb{bottom:817.022306pt;}
.y282{bottom:818.322238pt;}
.y16b{bottom:819.670305pt;}
.y1a1{bottom:819.803645pt;}
.y54{bottom:823.369157pt;}
.y253{bottom:830.136162pt;}
.y118{bottom:831.072342pt;}
.yba{bottom:833.228317pt;}
.y281{bottom:834.528382pt;}
.y8{bottom:835.624183pt;}
.y16a{bottom:835.877782pt;}
.y82{bottom:836.501814pt;}
.y53{bottom:839.576634pt;}
.ye9{bottom:839.576767pt;}
.y1a0{bottom:845.022106pt;}
.y252{bottom:846.343639pt;}
.y117{bottom:847.278352pt;}
.y224{bottom:848.815763pt;}
.y169{bottom:852.083926pt;}
.y81{bottom:852.708091pt;}
.y52{bottom:855.782778pt;}
.yb9{bottom:857.405659pt;}
.y7{bottom:860.006589pt;}
.y280{bottom:861.363057pt;}
.y251{bottom:862.549783pt;}
.y116{bottom:863.485829pt;}
.y168{bottom:868.291403pt;}
.y80{bottom:868.914101pt;}
.y51{bottom:871.990255pt;}
.ye8{bottom:871.990388pt;}
.y27f{bottom:877.569200pt;}
.y6{bottom:878.604905pt;}
.y250{bottom:878.755926pt;}
.y19f{bottom:879.185281pt;}
.y115{bottom:879.691973pt;}
.y7f{bottom:885.121578pt;}
.y50{bottom:888.196398pt;}
.yb8{bottom:888.196798pt;}
.ye7{bottom:888.196932pt;}
.y1d0{bottom:891.544566pt;}
.y27e{bottom:893.775344pt;}
.y24f{bottom:894.963537pt;}
.y19e{bottom:895.392758pt;}
.y114{bottom:895.899450pt;}
.y5{bottom:897.202182pt;}
.yb7{bottom:904.403475pt;}
.y4f{bottom:904.403875pt;}
.y1cf{bottom:907.750709pt;}
.y27d{bottom:909.982421pt;}
.y7e{bottom:910.991805pt;}
.y24e{bottom:911.169547pt;}
.y19d{bottom:911.599035pt;}
.y113{bottom:912.105594pt;}
.y4{bottom:915.800512pt;}
.y4e{bottom:920.610019pt;}
.y27c{bottom:926.188964pt;}
.y24d{bottom:927.376624pt;}
.y19c{bottom:927.805045pt;}
.y112{bottom:928.311604pt;}
.y3{bottom:928.613192pt;}
.y4d{bottom:936.816162pt;}
.y1ce{bottom:939.755243pt;}
.y24c{bottom:943.583167pt;}
.y19b{bottom:944.012522pt;}
.y111{bottom:944.519214pt;}
.y2{bottom:947.210949pt;}
.y4c{bottom:953.023639pt;}
.yb6{bottom:953.023773pt;}
.y1cd{bottom:955.506030pt;}
.y24b{bottom:959.790644pt;}
.y19a{bottom:960.218666pt;}
.y110{bottom:960.725358pt;}
.y4b{bottom:969.229783pt;}
.y1cc{bottom:971.257884pt;}
.y24a{bottom:975.996788pt;}
.y199{bottom:976.426143pt;}
.y10f{bottom:985.364056pt;}
.y4a{bottom:985.437260pt;}
.yb5{bottom:985.437393pt;}
.y249{bottom:992.202932pt;}
.y198{bottom:992.632286pt;}
.y1cb{bottom:993.232316pt;}
.y1{bottom:996.595151pt;}
.y49{bottom:1001.643404pt;}
.y1ca{bottom:1007.329021pt;}
.y48{bottom:1017.849547pt;}
.yb4{bottom:1062.759793pt;}
.h22{height:19.208243pt;}
.h18{height:23.592616pt;}
.h1f{height:24.358306pt;}
.h20{height:26.326291pt;}
.hd{height:28.375093pt;}
.h9{height:31.945892pt;}
.h11{height:33.103959pt;}
.h7{height:33.607376pt;}
.h6{height:33.611536pt;}
.h8{height:33.613617pt;}
.h16{height:35.495198pt;}
.h23{height:36.451655pt;}
.h14{height:36.695168pt;}
.ha{height:36.770474pt;}
.h19{height:36.876747pt;}
.he{height:37.833300pt;}
.h15{height:39.852393pt;}
.h12{height:44.795663pt;}
.h1d{height:45.962610pt;}
.hf{height:47.076606pt;}
.h1a{height:47.176705pt;}
.h17{height:47.182999pt;}
.hb{height:47.291506pt;}
.h24{height:47.824866pt;}
.h1b{height:49.001810pt;}
.h4{height:51.832445pt;}
.h5{height:51.834525pt;}
.h10{height:52.384070pt;}
.hc{height:52.386150pt;}
.h13{height:52.390363pt;}
.h3{height:52.949689pt;}
.h1c{height:77.470425pt;}
.h21{height:248.184409pt;}
.h1e{height:264.529226pt;}
.h2{height:1096.094793pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:15.069020pt;}
.w2{width:263.337166pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5e{left:1.642882pt;}
.x6b{left:8.473757pt;}
.x47{left:71.539844pt;}
.xb{left:73.306599pt;}
.x64{left:75.194560pt;}
.x5f{left:76.188289pt;}
.x20{left:77.269331pt;}
.x62{left:79.708239pt;}
.x69{left:82.578702pt;}
.x4b{left:84.303016pt;}
.xc{left:85.793624pt;}
.xa{left:89.246996pt;}
.x23{left:92.435156pt;}
.x40{left:94.060704pt;}
.x4d{left:96.549895pt;}
.x60{left:98.026888pt;}
.x43{left:100.892912pt;}
.x63{left:102.083891pt;}
.x67{left:103.321392pt;}
.x41{left:104.339884pt;}
.x65{left:107.209547pt;}
.x66{left:108.618471pt;}
.x7{left:110.175990pt;}
.x44{left:112.662701pt;}
.x61{left:113.843825pt;}
.x2{left:116.920647pt;}
.x68{left:118.166495pt;}
.x30{left:123.647650pt;}
.x6c{left:125.291864pt;}
.x4{left:126.451803pt;}
.xd{left:130.002634pt;}
.x1{left:137.184193pt;}
.x4c{left:138.414921pt;}
.x3a{left:141.751088pt;}
.x42{left:144.999251pt;}
.x6e{left:146.032636pt;}
.x3b{left:151.344901pt;}
.x37{left:152.566296pt;}
.x5{left:154.054210pt;}
.x38{left:159.355968pt;}
.x3{left:165.580546pt;}
.x13{left:174.588730pt;}
.x9{left:192.693702pt;}
.x2b{left:194.333451pt;}
.x45{left:201.294065pt;}
.x4e{left:206.763938pt;}
.x46{left:208.931780pt;}
.x5a{left:210.850622pt;}
.x4f{left:211.844405pt;}
.x54{left:213.023091pt;}
.x39{left:214.450723pt;}
.x55{left:215.364354pt;}
.x3c{left:217.424205pt;}
.x50{left:219.434371pt;}
.x52{left:220.455769pt;}
.x56{left:221.489661pt;}
.x14{left:222.637799pt;}
.x53{left:225.410190pt;}
.x22{left:230.979549pt;}
.x51{left:233.683004pt;}
.x21{left:236.679834pt;}
.x58{left:237.739980pt;}
.x35{left:238.761272pt;}
.x5b{left:239.876500pt;}
.x5d{left:242.320435pt;}
.x59{left:243.611633pt;}
.x3d{left:246.636332pt;}
.x5c{left:248.006053pt;}
.x36{left:250.133840pt;}
.x57{left:252.142673pt;}
.x33{left:258.532927pt;}
.x6a{left:266.083971pt;}
.x6{left:292.587656pt;}
.x34{left:307.140691pt;}
.x8{left:312.280881pt;}
.x31{left:328.956448pt;}
.x2c{left:349.544144pt;}
.x2e{left:352.224278pt;}
.x3e{left:355.560445pt;}
.x32{left:359.059286pt;}
.x2d{left:362.580796pt;}
.x1f{left:363.648849pt;}
.x3f{left:370.158508pt;}
.x12{left:379.329333pt;}
.x2f{left:381.649749pt;}
.x1e{left:394.446667pt;}
.x70{left:404.633965pt;}
.x29{left:412.152461pt;}
.xe{left:413.480674pt;}
.x1c{left:425.967965pt;}
.xf{left:429.421471pt;}
.x6f{left:431.640250pt;}
.x1d{left:432.609630pt;}
.x28{left:446.335383pt;}
.x49{left:481.264063pt;}
.x48{left:510.769805pt;}
.x6d{left:514.463323pt;}
.x71{left:527.465335pt;}
.x15{left:529.792756pt;}
.x26{left:538.828274pt;}
.x4a{left:557.605213pt;}
.x1a{left:565.998966pt;}
.x18{left:584.110538pt;}
.x16{left:591.110888pt;}
.x2a{left:597.068520pt;}
.x17{left:604.892911pt;}
.x27{left:626.503325pt;}
.x19{left:637.011850pt;}
.x24{left:640.018667pt;}
.x25{left:651.089887pt;}
.x10{left:673.194992pt;}
.x1b{left:674.925746pt;}
.x11{left:717.842558pt;}
}




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