
    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_40343421ce94ff05e86bd0c4.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;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_8c45420dd4bdbd580a8bcbeb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_0ec5d331089fcff041b01811.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_9b31b5842532891a8e197fda.woff')format("woff");}.ff4{font-family:ff4;line-height:0.761000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_04f893caf7f3da757140d881.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925000;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_f55fdd7b31e45630afb77dcd.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_12b85562171d986fc35be4b8.woff')format("woff");}.ff7{font-family:ff7;line-height:0.388000;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_1d8eecddc5e22408a5d79bd1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740000;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_4dfb6167d54c2a98f812d8b0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_60de1f47a723b0952ee2fa6e.woff')format("woff");}.ffa{font-family:ffa;line-height:1.006836;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_895d768c24c9b426c09aeae7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_23971cd6e401b33141d283e5.woff')format("woff");}.ffc{font-family:ffc;line-height:1.021484;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_ee4ab40a745517dee3e52b06.woff')format("woff");}.ffd{font-family:ffd;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_688cccea00c464ed4fdb1fa2.woff')format("woff");}.ffe{font-family:ffe;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_6b857d5657493ca007146741.woff')format("woff");}.fff{font-family:fff;line-height:1.006836;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_6b1047dea8acf9cc3fa8422b.woff')format("woff");}.ff10{font-family:ff10;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_23971cd6e401b33141d283e5.woff')format("woff");}.ff11{font-family:ff11;line-height:1.021484;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_ee4ab40a745517dee3e52b06.woff')format("woff");}.ff12{font-family:ff12;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_4c5b27232ffe7116a507c19a.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_8fcdf4943eab8c103d4838e2.woff')format("woff");}.ff14{font-family:ff14;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_51f2f3e4c02ee648b17e218a.woff')format("woff");}.ff15{font-family:ff15;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_8683ac3a565ce0f0fc9972c4.woff')format("woff");}.ff16{font-family:ff16;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_ee4ab40a745517dee3e52b06.woff')format("woff");}.ff17{font-family:ff17;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_08d7bd6a843c9d8fbe4c1ff6.woff')format("woff");}.ff18{font-family:ff18;line-height:1.021484;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_4dfb6167d54c2a98f812d8b0.woff')format("woff");}.ff19{font-family:ff19;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_3607fed4dc923e5723036972.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.006836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_a806c60a534572a7c72f8430.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_ee4ab40a745517dee3e52b06.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_a176b5045bf4a6a2674b192c.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.021484;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.mc{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);}
.m8{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);}
.m9{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);}
.m1b{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);}
.m1e{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);}
.m5{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);}
.m1f{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);}
.m0{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);}
.m20{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);}
.m27{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);}
.m2c{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);}
.m1a{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);}
.m1d{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);}
.m21{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);}
.m25{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);}
.m3{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);}
.m28{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);}
.m4{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);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m16{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mf{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);}
.m15{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);}
.m19{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);}
.md{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);}
.m1c{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);}
.m17{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);}
.m12{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);}
.m10{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);}
.m24{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);}
.ma{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);}
.mb{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);}
.m11{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);}
.m22{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);}
.m13{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);}
.m18{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);}
.m23{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);}
.me{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);}
.m7{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);}
.m6{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.248000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.ls5c{letter-spacing:-0.294588px;}
.ls84{letter-spacing:-0.276552px;}
.ls6f{letter-spacing:-0.270540px;}
.ls67{letter-spacing:-0.240480px;}
.ls88{letter-spacing:-0.210420px;}
.ls8b{letter-spacing:-0.204408px;}
.ls6b{letter-spacing:-0.192384px;}
.ls73{letter-spacing:-0.180360px;}
.ls6a{letter-spacing:-0.156312px;}
.ls8c{letter-spacing:-0.138276px;}
.ls62{letter-spacing:-0.132264px;}
.ls5b{letter-spacing:-0.120240px;}
.ls5d{letter-spacing:-0.114228px;}
.ls39{letter-spacing:-0.108577px;}
.ls86{letter-spacing:-0.108216px;}
.ls36{letter-spacing:-0.103406px;}
.ls85{letter-spacing:-0.102204px;}
.ls37{letter-spacing:-0.093066px;}
.ls72{letter-spacing:-0.090180px;}
.ls70{letter-spacing:-0.086400px;}
.ls66{letter-spacing:-0.084168px;}
.ls69{letter-spacing:-0.078156px;}
.ls3e{letter-spacing:-0.077555px;}
.ls34{letter-spacing:-0.074304px;}
.ls35{letter-spacing:-0.069660px;}
.ls63{letter-spacing:-0.066132px;}
.ls3c{letter-spacing:-0.062044px;}
.ls64{letter-spacing:-0.060120px;}
.ls87{letter-spacing:-0.054108px;}
.ls61{letter-spacing:-0.048096px;}
.ls5f{letter-spacing:-0.042084px;}
.ls58{letter-spacing:-0.036072px;}
.ls3b{letter-spacing:-0.031022px;}
.ls71{letter-spacing:-0.030060px;}
.ls38{letter-spacing:-0.025852px;}
.ls60{letter-spacing:-0.024048px;}
.ls33{letter-spacing:-0.018576px;}
.ls65{letter-spacing:-0.018036px;}
.ls57{letter-spacing:-0.014364px;}
.ls32{letter-spacing:-0.012353px;}
.ls68{letter-spacing:-0.012024px;}
.ls8a{letter-spacing:-0.010800px;}
.ls3d{letter-spacing:-0.010341px;}
.ls5e{letter-spacing:-0.006012px;}
.ls83{letter-spacing:-0.004788px;}
.ls8{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000233px;}
.ls9b{letter-spacing:0.000406px;}
.ls1c{letter-spacing:0.000612px;}
.ls2f{letter-spacing:0.000800px;}
.ls31{letter-spacing:0.002400px;}
.ls30{letter-spacing:0.002467px;}
.ls19{letter-spacing:0.002728px;}
.ls8e{letter-spacing:0.003070px;}
.ls6d{letter-spacing:0.003178px;}
.ls2e{letter-spacing:0.003341px;}
.ls55{letter-spacing:0.003853px;}
.ls82{letter-spacing:0.004028px;}
.ls6e{letter-spacing:0.004090px;}
.ls20{letter-spacing:0.004644px;}
.ls90{letter-spacing:0.004800px;}
.ls7b{letter-spacing:0.005400px;}
.ls50{letter-spacing:0.006012px;}
.ls89{letter-spacing:0.010800px;}
.ls52{letter-spacing:0.012024px;}
.ls22{letter-spacing:0.013932px;}
.ls46{letter-spacing:0.018036px;}
.ls21{letter-spacing:0.018576px;}
.ls2a{letter-spacing:0.020681px;}
.ls4c{letter-spacing:0.024048px;}
.ls3a{letter-spacing:0.025852px;}
.ls4d{letter-spacing:0.030060px;}
.ls80{letter-spacing:0.032400px;}
.ls26{letter-spacing:0.032508px;}
.ls76{letter-spacing:0.036072px;}
.ls2b{letter-spacing:0.036192px;}
.ls7a{letter-spacing:0.037800px;}
.ls25{letter-spacing:0.041796px;}
.ls54{letter-spacing:0.042084px;}
.ls7d{letter-spacing:0.043200px;}
.ls1d{letter-spacing:0.045294px;}
.ls51{letter-spacing:0.048096px;}
.ls43{letter-spacing:0.052668px;}
.ls4f{letter-spacing:0.054108px;}
.ls2c{letter-spacing:0.056874px;}
.ls7c{letter-spacing:0.059400px;}
.ls5a{letter-spacing:0.060120px;}
.ls74{letter-spacing:0.062244px;}
.ls53{letter-spacing:0.066132px;}
.ls27{letter-spacing:0.069660px;}
.ls4a{letter-spacing:0.070200px;}
.ls48{letter-spacing:0.072144px;}
.ls59{letter-spacing:0.078156px;}
.ls4e{letter-spacing:0.084168px;}
.ls29{letter-spacing:0.087895px;}
.ls4b{letter-spacing:0.090180px;}
.ls23{letter-spacing:0.092880px;}
.ls81{letter-spacing:0.096192px;}
.ls47{letter-spacing:0.102204px;}
.ls28{letter-spacing:0.106812px;}
.ls77{letter-spacing:0.120240px;}
.ls7e{letter-spacing:0.124200px;}
.ls7f{letter-spacing:0.140400px;}
.ls1f{letter-spacing:0.144119px;}
.ls8d{letter-spacing:0.150300px;}
.ls24{letter-spacing:0.153252px;}
.ls2d{letter-spacing:0.155110px;}
.ls1e{letter-spacing:0.156472px;}
.ls45{letter-spacing:0.167580px;}
.ls6c{letter-spacing:0.172368px;}
.ls49{letter-spacing:0.180360px;}
.ls44{letter-spacing:0.181944px;}
.ls75{letter-spacing:0.191520px;}
.ls78{letter-spacing:0.192384px;}
.ls79{letter-spacing:0.817632px;}
.ls0{letter-spacing:2.089762px;}
.lsf{letter-spacing:2.988600px;}
.ls2{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.lsa{letter-spacing:3.559200px;}
.ls7{letter-spacing:11.954850px;}
.ls97{letter-spacing:12.032033px;}
.ls92{letter-spacing:13.158563px;}
.ls93{letter-spacing:13.188280px;}
.ls9a{letter-spacing:13.190164px;}
.ls8f{letter-spacing:13.448400px;}
.lse{letter-spacing:13.450090px;}
.ls94{letter-spacing:13.454400px;}
.ls99{letter-spacing:13.559500px;}
.ls1a{letter-spacing:13.581588px;}
.ls96{letter-spacing:13.642237px;}
.ls98{letter-spacing:13.715034px;}
.ls14{letter-spacing:13.722404px;}
.ls95{letter-spacing:13.909224px;}
.ls1b{letter-spacing:14.011705px;}
.ls16{letter-spacing:14.706318px;}
.ls12{letter-spacing:14.790132px;}
.ls3f{letter-spacing:14.815757px;}
.ls41{letter-spacing:14.849252px;}
.ls10{letter-spacing:14.941200px;}
.ls56{letter-spacing:14.943292px;}
.ls3{letter-spacing:14.944200px;}
.ls11{letter-spacing:14.944766px;}
.ls13{letter-spacing:15.115227px;}
.ls15{letter-spacing:15.308118px;}
.ls91{letter-spacing:15.550400px;}
.ls17{letter-spacing:16.688671px;}
.ls42{letter-spacing:17.359259px;}
.lsb{letter-spacing:19.341612px;}
.ls9{letter-spacing:19.759259px;}
.ls40{letter-spacing:20.141612px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:62.917200px;}
.ls5{letter-spacing:64.321654px;}
.ls18{letter-spacing:451.452600px;}
.lsd{letter-spacing:785.076600px;}
.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;}
}
.wse0{word-spacing:-60.120000px;}
.wsfa{word-spacing:-54.000000px;}
.ws86{word-spacing:-51.703200px;}
.wsfc{word-spacing:-15.180300px;}
.wsa8{word-spacing:-15.030000px;}
.wsab{word-spacing:-14.963868px;}
.wsf5{word-spacing:-14.943900px;}
.wse{word-spacing:-14.355754px;}
.wsaa{word-spacing:-13.570200px;}
.wsfb{word-spacing:-13.500000px;}
.ws74{word-spacing:-13.449600px;}
.wsdf{word-spacing:-13.413600px;}
.ws87{word-spacing:-12.925800px;}
.ws85{word-spacing:-12.863756px;}
.wsf9{word-spacing:-12.161520px;}
.wsa6{word-spacing:-12.151944px;}
.wsa7{word-spacing:-11.970000px;}
.ws1a{word-spacing:-11.955150px;}
.ws83{word-spacing:-11.610000px;}
.ws11{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws81{word-spacing:-10.450672px;}
.ws82{word-spacing:-10.294200px;}
.ws4b{word-spacing:-3.227882px;}
.ws113{word-spacing:-3.204396px;}
.ws135{word-spacing:-3.144276px;}
.ws159{word-spacing:-3.108331px;}
.wsad{word-spacing:-3.048556px;}
.ws3f{word-spacing:-2.929004px;}
.ws112{word-spacing:-2.873736px;}
.ws4c{word-spacing:-2.749678px;}
.ws4d{word-spacing:-2.689902px;}
.ws111{word-spacing:-2.675340px;}
.ws67{word-spacing:-2.630126px;}
.wscd{word-spacing:-2.500992px;}
.ws11d{word-spacing:-2.428848px;}
.ws176{word-spacing:-2.420928px;}
.ws15c{word-spacing:-2.331248px;}
.ws11c{word-spacing:-2.314620px;}
.ws49{word-spacing:-2.211697px;}
.ws131{word-spacing:-2.110212px;}
.ws1{word-spacing:-2.092140px;}
.ws5{word-spacing:-2.091215px;}
.ws3{word-spacing:-2.050297px;}
.ws15b{word-spacing:-2.032370px;}
.wsf2{word-spacing:-2.020032px;}
.ws0{word-spacing:-2.008454px;}
.ws5a{word-spacing:-1.972595px;}
.ws4{word-spacing:-1.924769px;}
.ws52{word-spacing:-1.912819px;}
.ws195{word-spacing:-1.829146px;}
.ws109{word-spacing:-1.785564px;}
.wsdc{word-spacing:-1.773540px;}
.ws108{word-spacing:-1.677348px;}
.ws58{word-spacing:-1.673717px;}
.wsf1{word-spacing:-1.629252px;}
.ws14c{word-spacing:-1.613941px;}
.ws60{word-spacing:-1.554166px;}
.wsa{word-spacing:-1.494390px;}
.ws4e{word-spacing:-1.434614px;}
.ws196{word-spacing:-1.398758px;}
.ws7c{word-spacing:-1.374839px;}
.ws14f{word-spacing:-1.315063px;}
.ws12a{word-spacing:-1.312200px;}
.ws12b{word-spacing:-1.296000px;}
.ws23{word-spacing:-1.255288px;}
.ws12c{word-spacing:-1.252800px;}
.wsfe{word-spacing:-1.129766px;}
.wsf8{word-spacing:-1.075961px;}
.ws149{word-spacing:-1.016185px;}
.wscb{word-spacing:-0.997992px;}
.ws59{word-spacing:-0.956410px;}
.wsf0{word-spacing:-0.949896px;}
.ws1a6{word-spacing:-0.914573px;}
.wsef{word-spacing:-0.907812px;}
.ws15a{word-spacing:-0.896634px;}
.ws154{word-spacing:-0.836858px;}
.ws14b{word-spacing:-0.777083px;}
.ws7a{word-spacing:-0.765130px;}
.ws148{word-spacing:-0.657532px;}
.wsca{word-spacing:-0.655308px;}
.ws8{word-spacing:-0.645581px;}
.wsce{word-spacing:-0.619236px;}
.wsf7{word-spacing:-0.597756px;}
.ws140{word-spacing:-0.571140px;}
.ws179{word-spacing:-0.537984px;}
.wsa2{word-spacing:-0.537980px;}
.ws53{word-spacing:-0.478205px;}
.ws187{word-spacing:-0.430387px;}
.ws68{word-spacing:-0.418429px;}
.wscc{word-spacing:-0.390780px;}
.ws16b{word-spacing:-0.376589px;}
.ws20{word-spacing:-0.358654px;}
.wsb4{word-spacing:-0.342684px;}
.wseb{word-spacing:-0.330660px;}
.ws1a9{word-spacing:-0.322790px;}
.wse9{word-spacing:-0.318636px;}
.wse8{word-spacing:-0.312624px;}
.ws34{word-spacing:-0.298878px;}
.ws79{word-spacing:-0.286924px;}
.ws103{word-spacing:-0.277704px;}
.wsaf{word-spacing:-0.272916px;}
.ws13f{word-spacing:-0.270540px;}
.ws1ab{word-spacing:-0.269774px;}
.ws167{word-spacing:-0.268992px;}
.wsea{word-spacing:-0.264528px;}
.ws11a{word-spacing:-0.258516px;}
.wsc0{word-spacing:-0.246492px;}
.ws26{word-spacing:-0.239102px;}
.ws8a{word-spacing:-0.234708px;}
.wsbf{word-spacing:-0.228456px;}
.ws88{word-spacing:-0.215194px;}
.ws119{word-spacing:-0.210420px;}
.wscf{word-spacing:-0.204408px;}
.ws116{word-spacing:-0.198396px;}
.ws1b{word-spacing:-0.191282px;}
.ws25{word-spacing:-0.179327px;}
.ws16d{word-spacing:-0.161395px;}
.ws38{word-spacing:-0.119551px;}
.ws165{word-spacing:-0.107597px;}
.ws104{word-spacing:-0.081396px;}
.wsb0{word-spacing:-0.076608px;}
.ws8b{word-spacing:-0.065883px;}
.wsa9{word-spacing:-0.060120px;}
.ws3a{word-spacing:-0.059776px;}
.ws72{word-spacing:-0.053798px;}
.ws84{word-spacing:-0.051703px;}
.ws17{word-spacing:-0.047821px;}
.ws1a7{word-spacing:-0.046466px;}
.wsc1{word-spacing:-0.012024px;}
.ws1a4{word-spacing:-0.009792px;}
.ws198{word-spacing:-0.009504px;}
.ws194{word-spacing:-0.008563px;}
.ws63{word-spacing:-0.006307px;}
.ws64{word-spacing:-0.005942px;}
.ws65{word-spacing:-0.005875px;}
.wsf{word-spacing:-0.005366px;}
.ws19a{word-spacing:-0.005126px;}
.ws6e{word-spacing:-0.004291px;}
.ws181{word-spacing:-0.004282px;}
.ws75{word-spacing:-0.004272px;}
.ws17e{word-spacing:-0.003600px;}
.wsde{word-spacing:-0.003300px;}
.ws1aa{word-spacing:-0.003149px;}
.ws70{word-spacing:-0.003110px;}
.ws7f{word-spacing:-0.003000px;}
.ws180{word-spacing:-0.002688px;}
.ws77{word-spacing:-0.002323px;}
.ws80{word-spacing:-0.002082px;}
.ws100{word-spacing:-0.001488px;}
.ws73{word-spacing:-0.000902px;}
.ws62{word-spacing:-0.000768px;}
.ws71{word-spacing:-0.000614px;}
.ws14{word-spacing:-0.000499px;}
.ws19c{word-spacing:-0.000384px;}
.ws76{word-spacing:-0.000259px;}
.ws12{word-spacing:-0.000140px;}
.ws9{word-spacing:0.000000px;}
.ws61{word-spacing:0.000643px;}
.ws1e{word-spacing:0.002285px;}
.wsc3{word-spacing:0.006012px;}
.wsb5{word-spacing:0.012024px;}
.wsc7{word-spacing:0.036072px;}
.wsdd{word-spacing:0.048096px;}
.wsac{word-spacing:0.053798px;}
.ws51{word-spacing:0.059776px;}
.wsc2{word-spacing:0.060120px;}
.wse5{word-spacing:0.072144px;}
.ws93{word-spacing:0.083592px;}
.ws1a8{word-spacing:0.086358px;}
.wse7{word-spacing:0.090180px;}
.ws16{word-spacing:0.095641px;}
.wsbc{word-spacing:0.096192px;}
.ws172{word-spacing:0.107597px;}
.ws118{word-spacing:0.114228px;}
.ws46{word-spacing:0.119551px;}
.wse6{word-spacing:0.126252px;}
.wsc4{word-spacing:0.138276px;}
.ws18{word-spacing:0.143462px;}
.wsc6{word-spacing:0.150300px;}
.ws130{word-spacing:0.151200px;}
.ws166{word-spacing:0.161395px;}
.ws24{word-spacing:0.179327px;}
.ws10a{word-spacing:0.198396px;}
.ws185{word-spacing:0.215194px;}
.wsc5{word-spacing:0.222444px;}
.ws27{word-spacing:0.239102px;}
.ws19e{word-spacing:0.242824px;}
.ws199{word-spacing:0.268992px;}
.ws22{word-spacing:0.298878px;}
.ws126{word-spacing:0.306612px;}
.ws18d{word-spacing:0.311636px;}
.ws168{word-spacing:0.322790px;}
.ws69{word-spacing:0.358654px;}
.ws169{word-spacing:0.376589px;}
.ws105{word-spacing:0.414828px;}
.wsa1{word-spacing:0.418429px;}
.ws7{word-spacing:0.422252px;}
.ws106{word-spacing:0.438876px;}
.ws18e{word-spacing:0.484186px;}
.ws54{word-spacing:0.562500px;}
.wsbb{word-spacing:0.565128px;}
.ws3d{word-spacing:0.597756px;}
.ws174{word-spacing:0.699379px;}
.ws97{word-spacing:0.723845px;}
.ws14e{word-spacing:0.777083px;}
.ws98{word-spacing:0.806570px;}
.ws10f{word-spacing:0.811620px;}
.ws121{word-spacing:0.817632px;}
.ws110{word-spacing:0.829656px;}
.ws6d{word-spacing:0.836858px;}
.ws162{word-spacing:0.896634px;}
.wsd0{word-spacing:0.925848px;}
.ws5f{word-spacing:0.956410px;}
.ws18b{word-spacing:0.968371px;}
.ws99{word-spacing:0.982361px;}
.ws40{word-spacing:1.016185px;}
.ws132{word-spacing:1.022040px;}
.ws9a{word-spacing:1.039234px;}
.ws153{word-spacing:1.075961px;}
.ws137{word-spacing:1.124244px;}
.ws14d{word-spacing:1.135736px;}
.wsb2{word-spacing:1.154304px;}
.ws107{word-spacing:1.172340px;}
.ws114{word-spacing:1.184364px;}
.ws136{word-spacing:1.190376px;}
.ws2b{word-spacing:1.195512px;}
.ws6a{word-spacing:1.255288px;}
.ws57{word-spacing:1.315063px;}
.ws170{word-spacing:1.344960px;}
.ws7d{word-spacing:1.374839px;}
.ws47{word-spacing:1.434614px;}
.wsd6{word-spacing:1.454904px;}
.ws138{word-spacing:1.472940px;}
.ws41{word-spacing:1.494390px;}
.wsb3{word-spacing:1.563120px;}
.ws115{word-spacing:1.575144px;}
.wsd5{word-spacing:1.605204px;}
.ws15d{word-spacing:1.613941px;}
.ws16a{word-spacing:1.613952px;}
.wsd8{word-spacing:1.641276px;}
.wsd4{word-spacing:1.647288px;}
.ws163{word-spacing:1.673717px;}
.wsd7{word-spacing:1.683360px;}
.ws6b{word-spacing:1.733492px;}
.wsa3{word-spacing:1.793268px;}
.ws160{word-spacing:1.853044px;}
.ws175{word-spacing:1.882944px;}
.ws10d{word-spacing:1.899792px;}
.ws151{word-spacing:1.912819px;}
.ws186{word-spacing:1.936742px;}
.ws8f{word-spacing:1.992276px;}
.ws8e{word-spacing:2.006208px;}
.ws8d{word-spacing:2.029428px;}
.ws35{word-spacing:2.092146px;}
.ws183{word-spacing:2.098138px;}
.ws117{word-spacing:2.134260px;}
.ws145{word-spacing:2.151922px;}
.ws95{word-spacing:2.223238px;}
.ws10e{word-spacing:2.230452px;}
.ws171{word-spacing:2.259533px;}
.ws37{word-spacing:2.271473px;}
.ws2a{word-spacing:2.331248px;}
.ws96{word-spacing:2.336985px;}
.ws94{word-spacing:2.347325px;}
.wsa4{word-spacing:2.391024px;}
.ws189{word-spacing:2.420928px;}
.wsf3{word-spacing:2.450800px;}
.ws39{word-spacing:2.510575px;}
.wsd9{word-spacing:2.519028px;}
.ws197{word-spacing:2.528525px;}
.wsb6{word-spacing:2.549088px;}
.ws102{word-spacing:2.570351px;}
.ws120{word-spacing:2.603196px;}
.ws11f{word-spacing:2.609208px;}
.wsc8{word-spacing:2.627244px;}
.ws55{word-spacing:2.630126px;}
.ws122{word-spacing:2.639268px;}
.ws123{word-spacing:2.669328px;}
.wsc9{word-spacing:2.693376px;}
.wsb7{word-spacing:2.729448px;}
.wsff{word-spacing:2.743718px;}
.ws150{word-spacing:2.749678px;}
.ws17f{word-spacing:2.797517px;}
.ws9d{word-spacing:2.828165px;}
.ws44{word-spacing:2.869229px;}
.ws1d{word-spacing:2.869236px;}
.ws9e{word-spacing:2.874698px;}
.ws11b{word-spacing:2.891772px;}
.ws36{word-spacing:2.929004px;}
.wsd3{word-spacing:2.981952px;}
.ws146{word-spacing:2.988780px;}
.ws1a1{word-spacing:3.062858px;}
.ws1a2{word-spacing:3.066509px;}
.ws101{word-spacing:3.108331px;}
.ws19d{word-spacing:3.120307px;}
.ws173{word-spacing:3.147564px;}
.wsda{word-spacing:3.162312px;}
.wsf6{word-spacing:3.168107px;}
.ws19f{word-spacing:3.218170px;}
.ws18a{word-spacing:3.223430px;}
.ws184{word-spacing:3.223853px;}
.ws18f{word-spacing:3.223949px;}
.ws1a0{word-spacing:3.224112px;}
.ws18c{word-spacing:3.224371px;}
.ws193{word-spacing:3.224592px;}
.ws16e{word-spacing:3.224822px;}
.ws19b{word-spacing:3.224880px;}
.ws190{word-spacing:3.225341px;}
.ws192{word-spacing:3.225571px;}
.ws89{word-spacing:3.227904px;}
.ws16f{word-spacing:3.281702px;}
.wsdb{word-spacing:3.282552px;}
.wsf4{word-spacing:3.287658px;}
.ws11e{word-spacing:3.288564px;}
.ws188{word-spacing:3.305967px;}
.ws48{word-spacing:3.347434px;}
.wsd2{word-spacing:3.378744px;}
.ws17c{word-spacing:3.389299px;}
.ws127{word-spacing:3.391200px;}
.ws45{word-spacing:3.407209px;}
.ws129{word-spacing:3.418200px;}
.ws128{word-spacing:3.423600px;}
.wsa5{word-spacing:3.466985px;}
.ws1ac{word-spacing:3.496896px;}
.ws43{word-spacing:3.526760px;}
.ws3b{word-spacing:3.531330px;}
.wse2{word-spacing:3.550694px;}
.ws56{word-spacing:3.586536px;}
.ws13b{word-spacing:3.601188px;}
.ws2e{word-spacing:3.646312px;}
.ws16c{word-spacing:3.658291px;}
.ws4a{word-spacing:3.765863px;}
.ws152{word-spacing:3.825638px;}
.wsa0{word-spacing:3.872570px;}
.wsae{word-spacing:3.885414px;}
.ws13c{word-spacing:3.979944px;}
.wsd1{word-spacing:4.003992px;}
.ws7e{word-spacing:4.004965px;}
.ws9f{word-spacing:4.043190px;}
.ws66{word-spacing:4.064741px;}
.ws13d{word-spacing:4.070124px;}
.ws9b{word-spacing:4.079382px;}
.ws178{word-spacing:4.142477px;}
.wsfd{word-spacing:4.196275px;}
.ws5c{word-spacing:4.303843px;}
.ws3e{word-spacing:4.303872px;}
.ws9c{word-spacing:4.353409px;}
.ws125{word-spacing:4.364712px;}
.ws5d{word-spacing:4.423394px;}
.ws17a{word-spacing:4.465267px;}
.ws17b{word-spacing:4.519066px;}
.ws21{word-spacing:4.542946px;}
.ws158{word-spacing:4.602721px;}
.ws33{word-spacing:4.782048px;}
.wse3{word-spacing:4.788058px;}
.ws124{word-spacing:4.797576px;}
.ws4f{word-spacing:4.841824px;}
.ws1a5{word-spacing:4.895654px;}
.ws147{word-spacing:4.901599px;}
.ws5e{word-spacing:4.961375px;}
.ws3c{word-spacing:4.986534px;}
.ws17d{word-spacing:5.057050px;}
.ws13e{word-spacing:5.104188px;}
.ws1f{word-spacing:5.200477px;}
.ws1a3{word-spacing:5.218445px;}
.wse1{word-spacing:5.272243px;}
.ws157{word-spacing:5.320028px;}
.ws90{word-spacing:5.377752px;}
.ws91{word-spacing:5.414904px;}
.ws30{word-spacing:5.439580px;}
.ws92{word-spacing:5.493852px;}
.ws32{word-spacing:5.499355px;}
.ws12e{word-spacing:5.551200px;}
.ws155{word-spacing:5.559131px;}
.ws12f{word-spacing:5.583600px;}
.ws177{word-spacing:5.595034px;}
.ws12d{word-spacing:5.599800px;}
.ws15f{word-spacing:5.618906px;}
.ws156{word-spacing:5.738458px;}
.ws13a{word-spacing:5.753484px;}
.ws142{word-spacing:5.798233px;}
.wsb8{word-spacing:5.807592px;}
.ws139{word-spacing:5.825628px;}
.ws141{word-spacing:5.858009px;}
.wsba{word-spacing:5.885748px;}
.ws5b{word-spacing:5.917784px;}
.ws2f{word-spacing:6.037336px;}
.ws191{word-spacing:6.079219px;}
.wsb9{word-spacing:6.144264px;}
.wsbe{word-spacing:6.150276px;}
.ws143{word-spacing:6.156887px;}
.ws29{word-spacing:6.216662px;}
.wsbd{word-spacing:6.252480px;}
.ws161{word-spacing:6.395989px;}
.ws42{word-spacing:6.635092px;}
.ws6c{word-spacing:6.694867px;}
.ws2c{word-spacing:6.993745px;}
.ws144{word-spacing:7.113296px;}
.ws15e{word-spacing:7.412174px;}
.ws7b{word-spacing:7.591501px;}
.ws182{word-spacing:8.553946px;}
.ws10b{word-spacing:8.687340px;}
.ws10c{word-spacing:8.753472px;}
.ws8c{word-spacing:9.993609px;}
.ws78{word-spacing:10.663994px;}
.ws2d{word-spacing:11.045671px;}
.wse4{word-spacing:11.615688px;}
.wsb1{word-spacing:11.620476px;}
.ws14a{word-spacing:12.851754px;}
.ws50{word-spacing:13.329959px;}
.ws133{word-spacing:13.382712px;}
.ws134{word-spacing:13.557060px;}
.wsee{word-spacing:14.038020px;}
.wsec{word-spacing:14.218380px;}
.wsed{word-spacing:14.308560px;}
.ws31{word-spacing:14.740478px;}
.ws28{word-spacing:16.256810px;}
.ws164{word-spacing:20.819981px;}
.ws2{word-spacing:22.179541px;}
.wsd{word-spacing:40.802554px;}
.wsc{word-spacing:40.808554px;}
.ws1c{word-spacing:41.838000px;}
.ws19{word-spacing:41.844000px;}
.wsb{word-spacing:45.557198px;}
.ws13{word-spacing:46.041293px;}
.ws10{word-spacing:46.059000px;}
.ws15{word-spacing:61.012615px;}
.ws6f{word-spacing:77.706778px;}
._50{margin-left:-24.532070px;}
._8{margin-left:-11.943245px;}
._6{margin-left:-7.262809px;}
._d{margin-left:-6.168857px;}
._c{margin-left:-4.908814px;}
._2{margin-left:-3.849538px;}
._3{margin-left:-2.636096px;}
._1{margin-left:-1.506341px;}
._9{width:1.919272px;}
._a{width:2.975897px;}
._4a{width:4.244068px;}
._4f{width:7.316582px;}
._0{width:11.004656px;}
._4d{width:12.427430px;}
._1b{width:14.238544px;}
._e{width:15.685157px;}
._12{width:17.215373px;}
._16{width:18.291334px;}
._13{width:19.439021px;}
._19{width:20.443255px;}
._4{width:21.759456px;}
._14{width:23.342446px;}
._5{width:25.177464px;}
._17{width:26.540366px;}
._1a{width:27.556552px;}
._11{width:29.148069px;}
._2a{width:30.856160px;}
._1c{width:32.219048px;}
._7{width:33.355008px;}
._46{width:34.610072px;}
._15{width:37.240199px;}
._18{width:38.913916px;}
._4b{width:41.526031px;}
._4c{width:58.490203px;}
._4e{width:61.868160px;}
._b{width:69.423346px;}
._2c{width:91.689475px;}
._2b{width:93.606970px;}
._3a{width:210.566938px;}
._30{width:250.323955px;}
._33{width:254.412634px;}
._43{width:267.862234px;}
._36{width:281.311834px;}
._40{width:293.577869px;}
._3d{width:294.761434px;}
._3f{width:302.777420px;}
._37{width:304.714138px;}
._32{width:307.027469px;}
._2f{width:308.211034px;}
._42{width:320.477069px;}
._3e{width:321.768230px;}
._34{width:328.440232px;}
._39{width:337.584935px;}
._35{width:347.376269px;}
._3b{width:361.310054px;}
._3c{width:374.275469px;}
._41{width:384.658585px;}
._2e{width:401.174669px;}
._44{width:411.183520px;}
._38{width:414.624269px;}
._20{width:517.823597px;}
._2d{width:581.557432px;}
._31{width:619.108716px;}
._26{width:859.859827px;}
._1f{width:1013.992243px;}
._21{width:1061.711424px;}
._22{width:1213.369114px;}
._24{width:1268.566272px;}
._29{width:1286.857728px;}
._27{width:1321.019712px;}
._25{width:1335.545280px;}
._28{width:1395.476698px;}
._23{width:1457.667648px;}
._1e{width:1492.864961px;}
._1d{width:1567.739174px;}
._f{width:1822.179000px;}
._45{width:1839.181928px;}
._48{width:2115.138020px;}
._47{width:2138.896076px;}
._49{width:2551.395000px;}
._10{width:2575.305000px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs9{font-size:41.176800px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fsb{font-size:46.440000px;}
.fs7{font-size:47.337600px;}
.fs5{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fsa{font-size:51.703200px;}
.fs8{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fs1{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fs6{font-size:71.731200px;}
.fsf{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.y12b{bottom:-432.038550px;}
.y144{bottom:-383.977056px;}
.y143{bottom:-363.007200px;}
.y171{bottom:-343.747050px;}
.y142{bottom:-341.947164px;}
.y141{bottom:-320.977308px;}
.y195{bottom:-310.716438px;}
.y140{bottom:-300.007452px;}
.y194{bottom:-289.656402px;}
.y13f{bottom:-278.947416px;}
.y193{bottom:-268.686546px;}
.y13e{bottom:-257.977560px;}
.y151{bottom:-253.088550px;}
.y192{bottom:-247.716690px;}
.y13d{bottom:-237.007704px;}
.y191{bottom:-226.656654px;}
.y15b{bottom:-218.168262px;}
.y13c{bottom:-215.947668px;}
.y11a{bottom:-206.131293px;}
.y190{bottom:-205.686798px;}
.y15a{bottom:-197.198406px;}
.y13b{bottom:-194.977812px;}
.y18f{bottom:-184.716942px;}
.y124{bottom:-178.731383px;}
.y159{bottom:-176.228550px;}
.y13a{bottom:-174.007956px;}
.y18e{bottom:-163.656906px;}
.y123{bottom:-160.697307px;}
.y139{bottom:-152.947920px;}
.y158{bottom:-149.858550px;}
.y18d{bottom:-142.687050px;}
.y122{bottom:-142.585676px;}
.y138{bottom:-131.978064px;}
.y121{bottom:-124.551600px;}
.y157{bottom:-108.458334px;}
.y120{bottom:-106.517524px;}
.y137{bottom:-106.508226px;}
.y18c{bottom:-104.166150px;}
.y11f{bottom:-88.405893px;}
.y156{bottom:-87.398298px;}
.y18b{bottom:-83.106150px;}
.y136{bottom:-67.448262px;}
.y155{bottom:-66.428442px;}
.y18a{bottom:-62.136600px;}
.y11e{bottom:-55.278306px;}
.y135{bottom:-46.478406px;}
.y154{bottom:-45.458586px;}
.y189{bottom:-41.167050px;}
.y11d{bottom:-37.244493px;}
.y134{bottom:-25.507110px;}
.y153{bottom:-24.398082px;}
.y11c{bottom:-19.132893px;}
.y188{bottom:-15.245358px;}
.y133{bottom:-0.037272px;}
.y0{bottom:0.000000px;}
.y152{bottom:1.071756px;}
.y11b{bottom:3.158090px;}
.y57{bottom:45.921000px;}
.yf2{bottom:99.720000px;}
.y1a{bottom:100.260000px;}
.yd5{bottom:101.388000px;}
.y127{bottom:101.827500px;}
.y10c{bottom:104.418000px;}
.y56{bottom:105.898500px;}
.y220{bottom:105.961500px;}
.y1be{bottom:106.525500px;}
.yab{bottom:111.342000px;}
.y1ab{bottom:116.407500px;}
.y55{bottom:117.699000px;}
.y19{bottom:118.147500px;}
.y10a{bottom:118.614000px;}
.yf1{bottom:120.610500px;}
.y126{bottom:121.060500px;}
.y85{bottom:122.196000px;}
.yd4{bottom:122.280000px;}
.y10b{bottom:122.953500px;}
.y21f{bottom:125.112000px;}
.y1bd{bottom:126.546000px;}
.y15f{bottom:128.566500px;}
.yaa{bottom:132.234000px;}
.y109{bottom:132.811500px;}
.y54{bottom:133.837500px;}
.y18{bottom:136.035000px;}
.y108{bottom:137.151000px;}
.y1aa{bottom:137.298000px;}
.y125{bottom:140.293500px;}
.y1ee{bottom:141.081000px;}
.yf0{bottom:141.502500px;}
.y84{bottom:143.088000px;}
.yd3{bottom:143.170500px;}
.y21e{bottom:144.262500px;}
.y1bc{bottom:146.568000px;}
.y15e{bottom:147.799500px;}
.ya9{bottom:153.126000px;}
.y17{bottom:153.924000px;}
.y53{bottom:154.317000px;}
.y107{bottom:156.547500px;}
.y1a9{bottom:158.190000px;}
.y223{bottom:158.683500px;}
.y1ed{bottom:160.231500px;}
.y1ec{bottom:160.233000px;}
.y14d{bottom:162.394500px;}
.y117{bottom:162.723000px;}
.y21d{bottom:163.413000px;}
.y83{bottom:163.978500px;}
.yd2{bottom:164.062500px;}
.y52{bottom:166.117500px;}
.y1bb{bottom:166.588500px;}
.y15d{bottom:167.032500px;}
.y16{bottom:171.811500px;}
.y106{bottom:172.986000px;}
.ya8{bottom:174.016500px;}
.y222{bottom:177.834000px;}
.y1a8{bottom:179.082000px;}
.y1eb{bottom:179.383500px;}
.y51{bottom:182.256000px;}
.y21c{bottom:182.563500px;}
.yef{bottom:182.637000px;}
.y14c{bottom:183.285000px;}
.y82{bottom:184.870500px;}
.yd1{bottom:184.954500px;}
.y15c{bottom:186.265500px;}
.y50{bottom:186.597000px;}
.y1ba{bottom:186.609000px;}
.y105{bottom:189.424500px;}
.y15{bottom:189.699000px;}
.ya7{bottom:194.908500px;}
.y221{bottom:196.984500px;}
.y4f{bottom:198.396000px;}
.y1ea{bottom:198.534000px;}
.yee{bottom:199.044000px;}
.y1a7{bottom:199.972500px;}
.y21b{bottom:201.714000px;}
.y14b{bottom:204.177000px;}
.y81{bottom:205.762500px;}
.yd0{bottom:205.845000px;}
.y104{bottom:205.863000px;}
.y1b9{bottom:206.631000px;}
.y14{bottom:207.586500px;}
.y14e{bottom:208.695000px;}
.yed{bottom:215.482500px;}
.ya6{bottom:215.800500px;}
.y1e9{bottom:217.684500px;}
.y4e{bottom:218.875500px;}
.y1a6{bottom:220.864500px;}
.y103{bottom:222.301500px;}
.y14a{bottom:225.069000px;}
.y13{bottom:225.475500px;}
.y1b8{bottom:226.651500px;}
.y80{bottom:226.653000px;}
.y4d{bottom:230.674500px;}
.ycf{bottom:231.220500px;}
.yec{bottom:231.921000px;}
.ya5{bottom:236.691000px;}
.y1e8{bottom:236.835000px;}
.y102{bottom:238.740000px;}
.y21a{bottom:240.015000px;}
.y1a5{bottom:241.756500px;}
.y149{bottom:245.961000px;}
.y1b7{bottom:246.672000px;}
.y7f{bottom:247.545000px;}
.yeb{bottom:248.359500px;}
.y4c{bottom:251.154000px;}
.y12{bottom:252.330000px;}
.y101{bottom:255.177000px;}
.y1e7{bottom:255.985500px;}
.ya4{bottom:257.583000px;}
.y219{bottom:259.165500px;}
.y199{bottom:260.061000px;}
.y1a4{bottom:262.647000px;}
.y4b{bottom:262.954500px;}
.yea{bottom:264.798000px;}
.yce{bottom:266.563500px;}
.y1b6{bottom:266.694000px;}
.y148{bottom:266.851500px;}
.y11{bottom:270.217500px;}
.y100{bottom:271.615500px;}
.y7e{bottom:272.920500px;}
.y1e6{bottom:275.136000px;}
.y218{bottom:278.316000px;}
.ya3{bottom:278.475000px;}
.y198{bottom:279.294000px;}
.ye9{bottom:281.236500px;}
.y4a{bottom:283.434000px;}
.y1a3{bottom:283.539000px;}
.y1b5{bottom:286.714500px;}
.ycd{bottom:287.454000px;}
.yff{bottom:288.054000px;}
.y10{bottom:288.105000px;}
.y147{bottom:292.227000px;}
.y1e5{bottom:294.286500px;}
.y49{bottom:295.233000px;}
.y187{bottom:295.345083px;}
.y217{bottom:297.466500px;}
.ye8{bottom:297.675000px;}
.y197{bottom:298.527000px;}
.ya2{bottom:299.365500px;}
.y1a2{bottom:304.431000px;}
.yfe{bottom:304.492500px;}
.yf{bottom:305.994000px;}
.y1b4{bottom:306.735000px;}
.ycc{bottom:308.346000px;}
.y1e4{bottom:313.437000px;}
.ye7{bottom:314.112000px;}
.y48{bottom:315.712500px;}
.y186{bottom:316.314939px;}
.y216{bottom:316.617000px;}
.y196{bottom:317.760000px;}
.ya1{bottom:320.257500px;}
.yfd{bottom:320.931000px;}
.ye{bottom:323.881500px;}
.y146{bottom:324.333000px;}
.y1a1{bottom:325.323000px;}
.ycb{bottom:329.238000px;}
.ye6{bottom:330.550500px;}
.y47{bottom:331.852500px;}
.y1e3{bottom:332.587500px;}
.y215{bottom:335.767500px;}
.y185{bottom:337.284795px;}
.yfc{bottom:337.369500px;}
.ya0{bottom:341.149500px;}
.yd{bottom:341.769000px;}
.y16e{bottom:343.177500px;}
.y145{bottom:343.566000px;}
.y1b3{bottom:344.689500px;}
.y1a0{bottom:346.213500px;}
.ye5{bottom:346.989000px;}
.y46{bottom:347.992500px;}
.yca{bottom:350.128500px;}
.y1e2{bottom:351.738000px;}
.y7d{bottom:352.131000px;}
.yfb{bottom:353.808000px;}
.y214{bottom:354.918000px;}
.y184{bottom:358.344831px;}
.yc{bottom:359.658000px;}
.y45{bottom:359.791500px;}
.y9f{bottom:362.041500px;}
.ye4{bottom:363.427500px;}
.y1b2{bottom:365.581500px;}
.y128{bottom:365.995500px;}
.y19f{bottom:367.105500px;}
.yfa{bottom:370.246500px;}
.y1e1{bottom:370.888500px;}
.yc9{bottom:371.020500px;}
.y7c{bottom:373.023000px;}
.y213{bottom:374.070000px;}
.yb{bottom:377.545500px;}
.y183{bottom:379.314687px;}
.ye3{bottom:379.866000px;}
.y44{bottom:380.271000px;}
.y9e{bottom:382.932000px;}
.y1b1{bottom:386.472000px;}
.yf9{bottom:386.685000px;}
.y19e{bottom:387.997500px;}
.yc8{bottom:391.912500px;}
.y43{bottom:392.070000px;}
.y212{bottom:393.220500px;}
.y1e0{bottom:394.522500px;}
.ya{bottom:395.433000px;}
.ye2{bottom:396.304500px;}
.y182{bottom:400.284543px;}
.yf8{bottom:403.123500px;}
.y9d{bottom:403.824000px;}
.y1b0{bottom:407.364000px;}
.y19d{bottom:408.888000px;}
.y7b{bottom:411.847500px;}
.y211{bottom:412.371000px;}
.y42{bottom:412.549500px;}
.ye1{bottom:412.743000px;}
.yc7{bottom:412.803000px;}
.y9{bottom:413.322000px;}
.yf7{bottom:419.560500px;}
.y181{bottom:421.344579px;}
.y41{bottom:424.350000px;}
.y1af{bottom:428.256000px;}
.y9c{bottom:429.198000px;}
.y19c{bottom:429.780000px;}
.ye0{bottom:429.805500px;}
.y8{bottom:431.209500px;}
.y210{bottom:431.521500px;}
.y7a{bottom:432.739500px;}
.y1df{bottom:433.347000px;}
.yc6{bottom:433.695000px;}
.y180{bottom:442.314435px;}
.yf6{bottom:443.202000px;}
.y40{bottom:444.829500px;}
.ydf{bottom:446.244000px;}
.y7{bottom:449.097000px;}
.y1ae{bottom:449.146500px;}
.y19b{bottom:450.672000px;}
.y1de{bottom:452.845500px;}
.y79{bottom:453.630000px;}
.yc5{bottom:454.587000px;}
.y3f{bottom:456.628500px;}
.yde{bottom:462.682500px;}
.y17f{bottom:463.284291px;}
.y6{bottom:466.986000px;}
.y20f{bottom:469.822500px;}
.y1ad{bottom:470.038500px;}
.y19a{bottom:471.562500px;}
.y1dd{bottom:472.344000px;}
.y78{bottom:474.522000px;}
.yc4{bottom:475.477500px;}
.y3e{bottom:477.108000px;}
.yf5{bottom:478.200000px;}
.ydd{bottom:479.121000px;}
.y17e{bottom:484.344327px;}
.y3d{bottom:488.908500px;}
.y20e{bottom:488.973000px;}
.y5{bottom:490.851000px;}
.y1ac{bottom:490.930500px;}
.y9b{bottom:492.454500px;}
.y77{bottom:495.414000px;}
.y1dc{bottom:500.809500px;}
.yc3{bottom:500.853000px;}
.ydc{bottom:502.761000px;}
.y17d{bottom:505.314183px;}
.y20d{bottom:508.123500px;}
.y4{bottom:508.738500px;}
.y3c{bottom:509.388000px;}
.y9a{bottom:513.346500px;}
.yf4{bottom:515.304000px;}
.y76{bottom:516.304500px;}
.y1db{bottom:520.308000px;}
.y3b{bottom:521.187000px;}
.y132{bottom:522.052323px;}
.y17c{bottom:526.284039px;}
.y3{bottom:526.627500px;}
.y20c{bottom:527.274000px;}
.y99{bottom:534.237000px;}
.ydb{bottom:534.771000px;}
.yc2{bottom:536.194500px;}
.y75{bottom:537.196500px;}
.y1da{bottom:539.806500px;}
.y3a{bottom:541.666500px;}
.y131{bottom:543.022179px;}
.y2{bottom:544.515000px;}
.y20b{bottom:546.424500px;}
.y17b{bottom:547.344075px;}
.y98{bottom:555.129000px;}
.yc1{bottom:557.086500px;}
.y39{bottom:557.806500px;}
.y74{bottom:558.088500px;}
.y1d9{bottom:559.305000px;}
.y130{bottom:563.992035px;}
.y20a{bottom:565.575000px;}
.y17a{bottom:568.313931px;}
.y1{bottom:568.380000px;}
.yda{bottom:570.955500px;}
.y38{bottom:573.945000px;}
.y97{bottom:576.021000px;}
.yc0{bottom:577.978500px;}
.y1d8{bottom:578.803500px;}
.y73{bottom:578.979000px;}
.y209{bottom:584.725500px;}
.y12f{bottom:585.052071px;}
.y179{bottom:589.283787px;}
.y37{bottom:590.085000px;}
.yd9{bottom:591.847500px;}
.y96{bottom:596.913000px;}
.y1d7{bottom:598.303500px;}
.ybf{bottom:598.870500px;}
.y72{bottom:599.871000px;}
.y36{bottom:601.885500px;}
.y208{bottom:603.876000px;}
.y12e{bottom:606.021927px;}
.y178{bottom:610.343823px;}
.yd8{bottom:612.739500px;}
.y1d6{bottom:617.802000px;}
.y95{bottom:617.803500px;}
.ybe{bottom:619.761000px;}
.y71{bottom:620.763000px;}
.y35{bottom:622.363500px;}
.y207{bottom:623.026500px;}
.y12d{bottom:626.991783px;}
.y177{bottom:631.313679px;}
.yd7{bottom:633.631500px;}
.y34{bottom:634.164000px;}
.y16d{bottom:634.212000px;}
.y1d5{bottom:637.300500px;}
.y94{bottom:638.695500px;}
.ybd{bottom:640.653000px;}
.y70{bottom:641.653500px;}
.y206{bottom:642.177000px;}
.y12c{bottom:648.051819px;}
.y33{bottom:650.304000px;}
.y176{bottom:652.283535px;}
.y32{bottom:654.643500px;}
.y16c{bottom:655.104000px;}
.yd6{bottom:659.005500px;}
.y93{bottom:659.587500px;}
.y205{bottom:661.327500px;}
.ybc{bottom:661.545000px;}
.y6f{bottom:662.545500px;}
.y1d4{bottom:665.766000px;}
.y31{bottom:666.442500px;}
.y175{bottom:673.343571px;}
.y16b{bottom:675.996000px;}
.y92{bottom:680.478000px;}
.ybb{bottom:682.435500px;}
.y30{bottom:682.582500px;}
.y6e{bottom:683.437500px;}
.y1d3{bottom:685.264500px;}
.y174{bottom:694.313427px;}
.y16a{bottom:696.886500px;}
.y204{bottom:699.628500px;}
.y91{bottom:701.370000px;}
.y2f{bottom:703.062000px;}
.yb9{bottom:703.327500px;}
.y12a{bottom:704.211585px;}
.y6d{bottom:704.329500px;}
.y1d2{bottom:704.763000px;}
.yba{bottom:708.751500px;}
.y129{bottom:713.841450px;}
.y2e{bottom:714.861000px;}
.y173{bottom:715.283283px;}
.y169{bottom:717.778500px;}
.y203{bottom:718.779000px;}
.y90{bottom:722.262000px;}
.yb8{bottom:724.219500px;}
.y6c{bottom:725.220000px;}
.y1d1{bottom:733.228500px;}
.y2d{bottom:735.340500px;}
.y172{bottom:736.343319px;}
.y202{bottom:737.929500px;}
.y168{bottom:738.670500px;}
.y8f{bottom:743.152500px;}
.yb7{bottom:745.110000px;}
.y6b{bottom:746.112000px;}
.y2c{bottom:747.141000px;}
.yf3{bottom:749.593500px;}
.y1d0{bottom:752.727000px;}
.y201{bottom:757.081500px;}
.y167{bottom:759.561000px;}
.y2b{bottom:763.281000px;}
.y8e{bottom:764.044500px;}
.yb6{bottom:766.002000px;}
.y6a{bottom:767.004000px;}
.y119{bottom:771.043823px;}
.y200{bottom:776.232000px;}
.y118{bottom:779.325507px;}
.y2a{bottom:779.419500px;}
.y166{bottom:780.453000px;}
.y1cf{bottom:781.192500px;}
.y8d{bottom:784.936500px;}
.yb5{bottom:786.894000px;}
.y69{bottom:787.894500px;}
.y170{bottom:792.503085px;}
.y1ff{bottom:795.382500px;}
.y29{bottom:795.559500px;}
.y28{bottom:799.899000px;}
.y1ce{bottom:800.691000px;}
.y165{bottom:801.345000px;}
.y16f{bottom:802.132950px;}
.y8c{bottom:805.827000px;}
.yb4{bottom:807.784500px;}
.y68{bottom:808.786500px;}
.y1fe{bottom:814.533000px;}
.y1cd{bottom:820.189500px;}
.y164{bottom:822.235500px;}
.y8b{bottom:826.719000px;}
.yb3{bottom:828.676500px;}
.y67{bottom:829.678500px;}
.y1fd{bottom:833.683500px;}
.y1cc{bottom:839.688000px;}
.y163{bottom:843.127500px;}
.y27{bottom:844.575000px;}
.y8a{bottom:847.611000px;}
.yb2{bottom:849.568500px;}
.y66{bottom:850.569000px;}
.y1fc{bottom:852.834000px;}
.y1cb{bottom:859.186500px;}
.y162{bottom:864.019500px;}
.y26{bottom:865.467000px;}
.y89{bottom:868.503000px;}
.yb1{bottom:870.460500px;}
.y65{bottom:871.461000px;}
.y1fb{bottom:871.984500px;}
.y1ca{bottom:878.686500px;}
.y150{bottom:883.161585px;}
.y161{bottom:884.910000px;}
.y24{bottom:886.359000px;}
.y88{bottom:889.393500px;}
.y1fa{bottom:891.135000px;}
.yb0{bottom:891.351000px;}
.y25{bottom:891.783000px;}
.y64{bottom:892.353000px;}
.y14f{bottom:892.791450px;}
.y160{bottom:905.802000px;}
.y1c9{bottom:907.150500px;}
.y23{bottom:907.251000px;}
.y87{bottom:910.285500px;}
.yaf{bottom:912.243000px;}
.y63{bottom:913.243500px;}
.y116{bottom:926.694000px;}
.y22{bottom:928.141500px;}
.y1f9{bottom:929.436000px;}
.y86{bottom:931.177500px;}
.yae{bottom:933.135000px;}
.y1c8{bottom:935.616000px;}
.y115{bottom:947.584500px;}
.y1f8{bottom:948.586500px;}
.y20{bottom:949.033500px;}
.y62{bottom:952.068000px;}
.yad{bottom:954.025500px;}
.y21{bottom:954.457500px;}
.y1c7{bottom:955.114500px;}
.y1f7{bottom:967.737000px;}
.y114{bottom:968.476500px;}
.y1f{bottom:969.925500px;}
.y61{bottom:972.960000px;}
.y1c6{bottom:974.613000px;}
.yac{bottom:979.401000px;}
.y1f6{bottom:986.887500px;}
.y113{bottom:989.368500px;}
.y60{bottom:993.852000px;}
.y1c5{bottom:994.113000px;}
.y1f5{bottom:1006.038000px;}
.y1e{bottom:1008.748500px;}
.y112{bottom:1010.260500px;}
.y1c4{bottom:1013.611500px;}
.y5f{bottom:1014.742500px;}
.y1f4{bottom:1025.188500px;}
.y111{bottom:1031.151000px;}
.y1c3{bottom:1033.110000px;}
.y5e{bottom:1035.634500px;}
.y1d{bottom:1040.086500px;}
.y1f3{bottom:1044.339000px;}
.y110{bottom:1052.043000px;}
.y1c2{bottom:1052.608500px;}
.y5d{bottom:1056.526500px;}
.y1f2{bottom:1063.489500px;}
.y1c{bottom:1071.424500px;}
.y1c1{bottom:1072.107000px;}
.y10f{bottom:1072.935000px;}
.y5c{bottom:1077.417000px;}
.y1f1{bottom:1082.640000px;}
.y1c0{bottom:1091.605500px;}
.y10e{bottom:1093.825500px;}
.y5b{bottom:1098.309000px;}
.y1f0{bottom:1101.790500px;}
.y1b{bottom:1102.761000px;}
.y10d{bottom:1114.717500px;}
.y5a{bottom:1119.201000px;}
.y1bf{bottom:1120.071000px;}
.y1ef{bottom:1120.941000px;}
.y59{bottom:1140.091500px;}
.y58{bottom:1200.543000px;}
.h9{height:32.565965px;}
.h7{height:32.845601px;}
.h1f{height:37.551283px;}
.h2{height:37.993262px;}
.h14{height:38.080498px;}
.hf{height:41.250077px;}
.hd{height:41.723369px;}
.h16{height:42.947930px;}
.h6{height:43.217759px;}
.ha{height:43.421105px;}
.h1a{height:43.622227px;}
.hb{height:43.660208px;}
.h3{height:43.815515px;}
.h18{height:44.279648px;}
.h15{height:47.815362px;}
.h10{height:48.848947px;}
.h20{height:49.117939px;}
.h11{height:49.782344px;}
.h1e{height:49.939453px;}
.he{height:51.861658px;}
.h1c{height:53.015625px;}
.hc{height:54.276245px;}
.h5{height:54.541601px;}
.h8{height:54.547601px;}
.h19{height:55.599258px;}
.h12{height:57.523262px;}
.h4{height:77.792486px;}
.h1d{height:268.029000px;}
.h17{height:499.797000px;}
.h13{height:740.331000px;}
.h1b{height:845.083500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:381.013110px;}
.w4{width:551.038500px;}
.w3{width:580.206000px;}
.w5{width:733.140600px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x57{left:-192.745500px;}
.x4c{left:-165.761130px;}
.x6d{left:-20.102400px;}
.x0{left:0.000000px;}
.x4e{left:2.429070px;}
.x4f{left:29.828670px;}
.x59{left:34.681980px;}
.x64{left:35.967000px;}
.x1{left:53.574000px;}
.x42{left:62.541000px;}
.x43{left:75.990000px;}
.x6c{left:79.674900px;}
.xb6{left:85.848000px;}
.x41{left:155.593500px;}
.x6e{left:175.466510px;}
.x6f{left:207.326405px;}
.xa{left:210.321000px;}
.xb{left:236.032500px;}
.x13{left:248.526000px;}
.x10{left:249.591000px;}
.x5a{left:253.974000px;}
.x3a{left:258.556500px;}
.x44{left:260.143500px;}
.x2{left:261.333000px;}
.x3{left:267.757500px;}
.x11{left:269.743500px;}
.x12{left:270.805500px;}
.x5e{left:272.656500px;}
.x56{left:274.761000px;}
.x1c{left:281.479500px;}
.x2c{left:284.724000px;}
.x2e{left:289.549500px;}
.x2d{left:292.195500px;}
.xb7{left:299.229000px;}
.x39{left:300.964500px;}
.x5b{left:302.467500px;}
.x60{left:306.576000px;}
.xb8{left:308.139000px;}
.x5c{left:309.816000px;}
.x23{left:312.306000px;}
.x55{left:314.482500px;}
.x68{left:318.091500px;}
.x24{left:319.779000px;}
.x54{left:322.615500px;}
.xab{left:324.414000px;}
.x69{left:325.564500px;}
.x7f{left:333.688500px;}
.xad{left:336.460500px;}
.xa9{left:338.223000px;}
.xac{left:339.358500px;}
.x16{left:342.745500px;}
.x86{left:349.002000px;}
.x17{left:351.976500px;}
.x5f{left:354.624000px;}
.x31{left:356.946000px;}
.x33{left:361.656000px;}
.x48{left:364.564500px;}
.x5d{left:367.440000px;}
.x32{left:371.890500px;}
.x2f{left:374.287500px;}
.x34{left:376.600500px;}
.x4d{left:377.819171px;}
.x2b{left:379.630500px;}
.x84{left:381.973500px;}
.x6a{left:383.865000px;}
.x30{left:387.252000px;}
.x85{left:391.875000px;}
.x6b{left:393.094500px;}
.x73{left:398.191500px;}
.x27{left:399.580500px;}
.x97{left:402.355500px;}
.x82{left:405.163500px;}
.x28{left:407.053500px;}
.xc{left:417.669000px;}
.x83{left:420.108000px;}
.x89{left:424.557000px;}
.x8a{left:439.501500px;}
.x4{left:443.220000px;}
.x74{left:455.782500px;}
.x8d{left:468.316500px;}
.x5{left:473.265000px;}
.x3d{left:479.556000px;}
.x71{left:480.874500px;}
.x8e{left:483.261000px;}
.x3e{left:487.027500px;}
.x7d{left:489.034500px;}
.x18{left:491.272500px;}
.x7e{left:492.844500px;}
.x49{left:494.529000px;}
.x75{left:498.121500px;}
.x19{left:500.503500px;}
.xb3{left:502.096500px;}
.x4a{left:503.760000px;}
.x98{left:505.056000px;}
.x76{left:507.961500px;}
.xb4{left:511.084500px;}
.x77{left:520.833000px;}
.xaf{left:525.465000px;}
.xb5{left:526.813500px;}
.x65{left:530.305500px;}
.x92{left:532.303500px;}
.x78{left:535.777500px;}
.x66{left:539.535000px;}
.x3f{left:545.776500px;}
.x93{left:547.246500px;}
.x63{left:549.237576px;}
.x40{left:553.248000px;}
.x87{left:561.273000px;}
.xa6{left:564.013500px;}
.x58{left:575.224374px;}
.xa7{left:578.958000px;}
.x50{left:584.124000px;}
.x7b{left:590.496000px;}
.x51{left:593.355000px;}
.x1d{left:596.610000px;}
.xa4{left:597.882000px;}
.x7c{left:600.336000px;}
.x1e{left:604.081500px;}
.x21{left:606.394500px;}
.x1f{left:611.547000px;}
.xa5{left:612.826500px;}
.x22{left:613.867500px;}
.x20{left:619.018500px;}
.x9e{left:620.598000px;}
.xd{left:625.017000px;}
.x9f{left:630.498000px;}
.x6{left:637.149000px;}
.x1a{left:638.629500px;}
.x7{left:643.575000px;}
.x9c{left:644.844000px;}
.x1b{left:647.859000px;}
.xe{left:650.727000px;}
.x52{left:657.966000px;}
.x62{left:660.213000px;}
.xa0{left:662.494500px;}
.x53{left:667.197000px;}
.x99{left:669.504000px;}
.x67{left:670.512000px;}
.x45{left:672.333000px;}
.xb2{left:675.817500px;}
.xa1{left:677.437500px;}
.x46{left:680.421000px;}
.x9a{left:684.448500px;}
.xb0{left:693.489000px;}
.x29{left:699.961500px;}
.xb1{left:700.962000px;}
.x14{left:703.422000px;}
.x2a{left:707.433000px;}
.xae{left:709.449000px;}
.x15{left:712.651500px;}
.x8f{left:715.083000px;}
.x80{left:717.375000px;}
.x88{left:721.707000px;}
.x90{left:724.314000px;}
.x94{left:726.705000px;}
.x81{left:732.318000px;}
.x47{left:746.440500px;}
.x79{left:749.833500px;}
.x70{left:754.885099px;}
.xaa{left:760.414500px;}
.x7a{left:764.778000px;}
.x8b{left:767.755500px;}
.x25{left:772.279500px;}
.x4b{left:778.186500px;}
.x26{left:779.751000px;}
.x8c{left:782.698500px;}
.xa2{left:785.848500px;}
.x61{left:789.394500px;}
.x3b{left:795.750000px;}
.x9b{left:797.788500px;}
.xa8{left:799.005000px;}
.xa3{left:800.791500px;}
.x91{left:804.027000px;}
.x9d{left:812.104500px;}
.x95{left:813.321000px;}
.x35{left:817.819500px;}
.x37{left:818.977500px;}
.x96{left:822.550500px;}
.xf{left:824.884500px;}
.x72{left:826.417500px;}
.x8{left:830.631000px;}
.x36{left:832.764000px;}
.x38{left:833.922000px;}
.x3c{left:835.531500px;}
.x9{left:837.057000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.109333pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.ls5c{letter-spacing:-0.261856pt;}
.ls84{letter-spacing:-0.245824pt;}
.ls6f{letter-spacing:-0.240480pt;}
.ls67{letter-spacing:-0.213760pt;}
.ls88{letter-spacing:-0.187040pt;}
.ls8b{letter-spacing:-0.181696pt;}
.ls6b{letter-spacing:-0.171008pt;}
.ls73{letter-spacing:-0.160320pt;}
.ls6a{letter-spacing:-0.138944pt;}
.ls8c{letter-spacing:-0.122912pt;}
.ls62{letter-spacing:-0.117568pt;}
.ls5b{letter-spacing:-0.106880pt;}
.ls5d{letter-spacing:-0.101536pt;}
.ls39{letter-spacing:-0.096513pt;}
.ls86{letter-spacing:-0.096192pt;}
.ls36{letter-spacing:-0.091917pt;}
.ls85{letter-spacing:-0.090848pt;}
.ls37{letter-spacing:-0.082725pt;}
.ls72{letter-spacing:-0.080160pt;}
.ls70{letter-spacing:-0.076800pt;}
.ls66{letter-spacing:-0.074816pt;}
.ls69{letter-spacing:-0.069472pt;}
.ls3e{letter-spacing:-0.068938pt;}
.ls34{letter-spacing:-0.066048pt;}
.ls35{letter-spacing:-0.061920pt;}
.ls63{letter-spacing:-0.058784pt;}
.ls3c{letter-spacing:-0.055150pt;}
.ls64{letter-spacing:-0.053440pt;}
.ls87{letter-spacing:-0.048096pt;}
.ls61{letter-spacing:-0.042752pt;}
.ls5f{letter-spacing:-0.037408pt;}
.ls58{letter-spacing:-0.032064pt;}
.ls3b{letter-spacing:-0.027575pt;}
.ls71{letter-spacing:-0.026720pt;}
.ls38{letter-spacing:-0.022979pt;}
.ls60{letter-spacing:-0.021376pt;}
.ls33{letter-spacing:-0.016512pt;}
.ls65{letter-spacing:-0.016032pt;}
.ls57{letter-spacing:-0.012768pt;}
.ls32{letter-spacing:-0.010980pt;}
.ls68{letter-spacing:-0.010688pt;}
.ls8a{letter-spacing:-0.009600pt;}
.ls3d{letter-spacing:-0.009192pt;}
.ls5e{letter-spacing:-0.005344pt;}
.ls83{letter-spacing:-0.004256pt;}
.ls8{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000207pt;}
.ls9b{letter-spacing:0.000361pt;}
.ls1c{letter-spacing:0.000544pt;}
.ls2f{letter-spacing:0.000711pt;}
.ls31{letter-spacing:0.002133pt;}
.ls30{letter-spacing:0.002193pt;}
.ls19{letter-spacing:0.002425pt;}
.ls8e{letter-spacing:0.002729pt;}
.ls6d{letter-spacing:0.002825pt;}
.ls2e{letter-spacing:0.002970pt;}
.ls55{letter-spacing:0.003425pt;}
.ls82{letter-spacing:0.003581pt;}
.ls6e{letter-spacing:0.003635pt;}
.ls20{letter-spacing:0.004128pt;}
.ls90{letter-spacing:0.004267pt;}
.ls7b{letter-spacing:0.004800pt;}
.ls50{letter-spacing:0.005344pt;}
.ls89{letter-spacing:0.009600pt;}
.ls52{letter-spacing:0.010688pt;}
.ls22{letter-spacing:0.012384pt;}
.ls46{letter-spacing:0.016032pt;}
.ls21{letter-spacing:0.016512pt;}
.ls2a{letter-spacing:0.018383pt;}
.ls4c{letter-spacing:0.021376pt;}
.ls3a{letter-spacing:0.022979pt;}
.ls4d{letter-spacing:0.026720pt;}
.ls80{letter-spacing:0.028800pt;}
.ls26{letter-spacing:0.028896pt;}
.ls76{letter-spacing:0.032064pt;}
.ls2b{letter-spacing:0.032171pt;}
.ls7a{letter-spacing:0.033600pt;}
.ls25{letter-spacing:0.037152pt;}
.ls54{letter-spacing:0.037408pt;}
.ls7d{letter-spacing:0.038400pt;}
.ls1d{letter-spacing:0.040262pt;}
.ls51{letter-spacing:0.042752pt;}
.ls43{letter-spacing:0.046816pt;}
.ls4f{letter-spacing:0.048096pt;}
.ls2c{letter-spacing:0.050554pt;}
.ls7c{letter-spacing:0.052800pt;}
.ls5a{letter-spacing:0.053440pt;}
.ls74{letter-spacing:0.055328pt;}
.ls53{letter-spacing:0.058784pt;}
.ls27{letter-spacing:0.061920pt;}
.ls4a{letter-spacing:0.062400pt;}
.ls48{letter-spacing:0.064128pt;}
.ls59{letter-spacing:0.069472pt;}
.ls4e{letter-spacing:0.074816pt;}
.ls29{letter-spacing:0.078129pt;}
.ls4b{letter-spacing:0.080160pt;}
.ls23{letter-spacing:0.082560pt;}
.ls81{letter-spacing:0.085504pt;}
.ls47{letter-spacing:0.090848pt;}
.ls28{letter-spacing:0.094944pt;}
.ls77{letter-spacing:0.106880pt;}
.ls7e{letter-spacing:0.110400pt;}
.ls7f{letter-spacing:0.124800pt;}
.ls1f{letter-spacing:0.128106pt;}
.ls8d{letter-spacing:0.133600pt;}
.ls24{letter-spacing:0.136224pt;}
.ls2d{letter-spacing:0.137875pt;}
.ls1e{letter-spacing:0.139086pt;}
.ls45{letter-spacing:0.148960pt;}
.ls6c{letter-spacing:0.153216pt;}
.ls49{letter-spacing:0.160320pt;}
.ls44{letter-spacing:0.161728pt;}
.ls75{letter-spacing:0.170240pt;}
.ls78{letter-spacing:0.171008pt;}
.ls79{letter-spacing:0.726784pt;}
.ls0{letter-spacing:1.857566pt;}
.lsf{letter-spacing:2.656533pt;}
.ls2{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.lsa{letter-spacing:3.163733pt;}
.ls7{letter-spacing:10.626533pt;}
.ls97{letter-spacing:10.695140pt;}
.ls92{letter-spacing:11.696501pt;}
.ls93{letter-spacing:11.722916pt;}
.ls9a{letter-spacing:11.724590pt;}
.ls8f{letter-spacing:11.954133pt;}
.lse{letter-spacing:11.955635pt;}
.ls94{letter-spacing:11.959467pt;}
.ls99{letter-spacing:12.052889pt;}
.ls1a{letter-spacing:12.072522pt;}
.ls96{letter-spacing:12.126433pt;}
.ls98{letter-spacing:12.191141pt;}
.ls14{letter-spacing:12.197693pt;}
.ls95{letter-spacing:12.363754pt;}
.ls1b{letter-spacing:12.454849pt;}
.ls16{letter-spacing:13.072282pt;}
.ls12{letter-spacing:13.146784pt;}
.ls3f{letter-spacing:13.169562pt;}
.ls41{letter-spacing:13.199335pt;}
.ls10{letter-spacing:13.281067pt;}
.ls56{letter-spacing:13.282926pt;}
.ls3{letter-spacing:13.283733pt;}
.ls11{letter-spacing:13.284237pt;}
.ls13{letter-spacing:13.435758pt;}
.ls15{letter-spacing:13.607216pt;}
.ls91{letter-spacing:13.822578pt;}
.ls17{letter-spacing:14.834374pt;}
.ls42{letter-spacing:15.430452pt;}
.lsb{letter-spacing:17.192544pt;}
.ls9{letter-spacing:17.563786pt;}
.ls40{letter-spacing:17.903655pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:55.926400pt;}
.ls5{letter-spacing:57.174803pt;}
.ls18{letter-spacing:401.291200pt;}
.lsd{letter-spacing:697.845867pt;}
.wse0{word-spacing:-53.440000pt;}
.wsfa{word-spacing:-48.000000pt;}
.ws86{word-spacing:-45.958400pt;}
.wsfc{word-spacing:-13.493600pt;}
.wsa8{word-spacing:-13.360000pt;}
.wsab{word-spacing:-13.301216pt;}
.wsf5{word-spacing:-13.283467pt;}
.wse{word-spacing:-12.760670pt;}
.wsaa{word-spacing:-12.062400pt;}
.wsfb{word-spacing:-12.000000pt;}
.ws74{word-spacing:-11.955200pt;}
.wsdf{word-spacing:-11.923200pt;}
.ws87{word-spacing:-11.489600pt;}
.ws85{word-spacing:-11.434450pt;}
.wsf9{word-spacing:-10.810240pt;}
.wsa6{word-spacing:-10.801728pt;}
.wsa7{word-spacing:-10.640000pt;}
.ws1a{word-spacing:-10.626800pt;}
.ws83{word-spacing:-10.320000pt;}
.ws11{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws81{word-spacing:-9.289486pt;}
.ws82{word-spacing:-9.150400pt;}
.ws4b{word-spacing:-2.869229pt;}
.ws113{word-spacing:-2.848352pt;}
.ws135{word-spacing:-2.794912pt;}
.ws159{word-spacing:-2.762961pt;}
.wsad{word-spacing:-2.709827pt;}
.ws3f{word-spacing:-2.603559pt;}
.ws112{word-spacing:-2.554432pt;}
.ws4c{word-spacing:-2.444158pt;}
.ws4d{word-spacing:-2.391024pt;}
.ws111{word-spacing:-2.378080pt;}
.ws67{word-spacing:-2.337890pt;}
.wscd{word-spacing:-2.223104pt;}
.ws11d{word-spacing:-2.158976pt;}
.ws176{word-spacing:-2.151936pt;}
.ws15c{word-spacing:-2.072221pt;}
.ws11c{word-spacing:-2.057440pt;}
.ws49{word-spacing:-1.965953pt;}
.ws131{word-spacing:-1.875744pt;}
.ws1{word-spacing:-1.859680pt;}
.ws5{word-spacing:-1.858858pt;}
.ws3{word-spacing:-1.822486pt;}
.ws15b{word-spacing:-1.806551pt;}
.wsf2{word-spacing:-1.795584pt;}
.ws0{word-spacing:-1.785293pt;}
.ws5a{word-spacing:-1.753418pt;}
.ws4{word-spacing:-1.710906pt;}
.ws52{word-spacing:-1.700284pt;}
.ws195{word-spacing:-1.625907pt;}
.ws109{word-spacing:-1.587168pt;}
.wsdc{word-spacing:-1.576480pt;}
.ws108{word-spacing:-1.490976pt;}
.ws58{word-spacing:-1.487748pt;}
.wsf1{word-spacing:-1.448224pt;}
.ws14c{word-spacing:-1.434614pt;}
.ws60{word-spacing:-1.381481pt;}
.wsa{word-spacing:-1.328347pt;}
.ws4e{word-spacing:-1.275213pt;}
.ws196{word-spacing:-1.243341pt;}
.ws7c{word-spacing:-1.222079pt;}
.ws14f{word-spacing:-1.168945pt;}
.ws12a{word-spacing:-1.166400pt;}
.ws12b{word-spacing:-1.152000pt;}
.ws23{word-spacing:-1.115811pt;}
.ws12c{word-spacing:-1.113600pt;}
.wsfe{word-spacing:-1.004237pt;}
.wsf8{word-spacing:-0.956410pt;}
.ws149{word-spacing:-0.903276pt;}
.wscb{word-spacing:-0.887104pt;}
.ws59{word-spacing:-0.850142pt;}
.wsf0{word-spacing:-0.844352pt;}
.ws1a6{word-spacing:-0.812954pt;}
.wsef{word-spacing:-0.806944pt;}
.ws15a{word-spacing:-0.797008pt;}
.ws154{word-spacing:-0.743874pt;}
.ws14b{word-spacing:-0.690740pt;}
.ws7a{word-spacing:-0.680115pt;}
.ws148{word-spacing:-0.584473pt;}
.wsca{word-spacing:-0.582496pt;}
.ws8{word-spacing:-0.573850pt;}
.wsce{word-spacing:-0.550432pt;}
.wsf7{word-spacing:-0.531339pt;}
.ws140{word-spacing:-0.507680pt;}
.ws179{word-spacing:-0.478208pt;}
.wsa2{word-spacing:-0.478205pt;}
.ws53{word-spacing:-0.425071pt;}
.ws187{word-spacing:-0.382566pt;}
.ws68{word-spacing:-0.371937pt;}
.wscc{word-spacing:-0.347360pt;}
.ws16b{word-spacing:-0.334746pt;}
.ws20{word-spacing:-0.318803pt;}
.wsb4{word-spacing:-0.304608pt;}
.wseb{word-spacing:-0.293920pt;}
.ws1a9{word-spacing:-0.286925pt;}
.wse9{word-spacing:-0.283232pt;}
.wse8{word-spacing:-0.277888pt;}
.ws34{word-spacing:-0.265669pt;}
.ws79{word-spacing:-0.255043pt;}
.ws103{word-spacing:-0.246848pt;}
.wsaf{word-spacing:-0.242592pt;}
.ws13f{word-spacing:-0.240480pt;}
.ws1ab{word-spacing:-0.239799pt;}
.ws167{word-spacing:-0.239104pt;}
.wsea{word-spacing:-0.235136pt;}
.ws11a{word-spacing:-0.229792pt;}
.wsc0{word-spacing:-0.219104pt;}
.ws26{word-spacing:-0.212535pt;}
.ws8a{word-spacing:-0.208629pt;}
.wsbf{word-spacing:-0.203072pt;}
.ws88{word-spacing:-0.191283pt;}
.ws119{word-spacing:-0.187040pt;}
.wscf{word-spacing:-0.181696pt;}
.ws116{word-spacing:-0.176352pt;}
.ws1b{word-spacing:-0.170029pt;}
.ws25{word-spacing:-0.159402pt;}
.ws16d{word-spacing:-0.143462pt;}
.ws38{word-spacing:-0.106268pt;}
.ws165{word-spacing:-0.095642pt;}
.ws104{word-spacing:-0.072352pt;}
.wsb0{word-spacing:-0.068096pt;}
.ws8b{word-spacing:-0.058563pt;}
.wsa9{word-spacing:-0.053440pt;}
.ws3a{word-spacing:-0.053134pt;}
.ws72{word-spacing:-0.047821pt;}
.ws84{word-spacing:-0.045958pt;}
.ws17{word-spacing:-0.042507pt;}
.ws1a7{word-spacing:-0.041303pt;}
.wsc1{word-spacing:-0.010688pt;}
.ws1a4{word-spacing:-0.008704pt;}
.ws198{word-spacing:-0.008448pt;}
.ws194{word-spacing:-0.007612pt;}
.ws63{word-spacing:-0.005606pt;}
.ws64{word-spacing:-0.005282pt;}
.ws65{word-spacing:-0.005222pt;}
.wsf{word-spacing:-0.004770pt;}
.ws19a{word-spacing:-0.004557pt;}
.ws6e{word-spacing:-0.003814pt;}
.ws181{word-spacing:-0.003806pt;}
.ws75{word-spacing:-0.003797pt;}
.ws17e{word-spacing:-0.003200pt;}
.wsde{word-spacing:-0.002933pt;}
.ws1aa{word-spacing:-0.002799pt;}
.ws70{word-spacing:-0.002765pt;}
.ws7f{word-spacing:-0.002667pt;}
.ws180{word-spacing:-0.002389pt;}
.ws77{word-spacing:-0.002065pt;}
.ws80{word-spacing:-0.001851pt;}
.ws100{word-spacing:-0.001323pt;}
.ws73{word-spacing:-0.000802pt;}
.ws62{word-spacing:-0.000683pt;}
.ws71{word-spacing:-0.000546pt;}
.ws14{word-spacing:-0.000444pt;}
.ws19c{word-spacing:-0.000341pt;}
.ws76{word-spacing:-0.000230pt;}
.ws12{word-spacing:-0.000125pt;}
.ws9{word-spacing:0.000000pt;}
.ws61{word-spacing:0.000572pt;}
.ws1e{word-spacing:0.002031pt;}
.wsc3{word-spacing:0.005344pt;}
.wsb5{word-spacing:0.010688pt;}
.wsc7{word-spacing:0.032064pt;}
.wsdd{word-spacing:0.042752pt;}
.wsac{word-spacing:0.047821pt;}
.ws51{word-spacing:0.053134pt;}
.wsc2{word-spacing:0.053440pt;}
.wse5{word-spacing:0.064128pt;}
.ws93{word-spacing:0.074304pt;}
.ws1a8{word-spacing:0.076762pt;}
.wse7{word-spacing:0.080160pt;}
.ws16{word-spacing:0.085014pt;}
.wsbc{word-spacing:0.085504pt;}
.ws172{word-spacing:0.095642pt;}
.ws118{word-spacing:0.101536pt;}
.ws46{word-spacing:0.106268pt;}
.wse6{word-spacing:0.112224pt;}
.wsc4{word-spacing:0.122912pt;}
.ws18{word-spacing:0.127522pt;}
.wsc6{word-spacing:0.133600pt;}
.ws130{word-spacing:0.134400pt;}
.ws166{word-spacing:0.143462pt;}
.ws24{word-spacing:0.159402pt;}
.ws10a{word-spacing:0.176352pt;}
.ws185{word-spacing:0.191283pt;}
.wsc5{word-spacing:0.197728pt;}
.ws27{word-spacing:0.212535pt;}
.ws19e{word-spacing:0.215843pt;}
.ws199{word-spacing:0.239104pt;}
.ws22{word-spacing:0.265669pt;}
.ws126{word-spacing:0.272544pt;}
.ws18d{word-spacing:0.277009pt;}
.ws168{word-spacing:0.286925pt;}
.ws69{word-spacing:0.318803pt;}
.ws169{word-spacing:0.334746pt;}
.ws105{word-spacing:0.368736pt;}
.wsa1{word-spacing:0.371937pt;}
.ws7{word-spacing:0.375335pt;}
.ws106{word-spacing:0.390112pt;}
.ws18e{word-spacing:0.430387pt;}
.ws54{word-spacing:0.500000pt;}
.wsbb{word-spacing:0.502336pt;}
.ws3d{word-spacing:0.531339pt;}
.ws174{word-spacing:0.621670pt;}
.ws97{word-spacing:0.643418pt;}
.ws14e{word-spacing:0.690740pt;}
.ws98{word-spacing:0.716951pt;}
.ws10f{word-spacing:0.721440pt;}
.ws121{word-spacing:0.726784pt;}
.ws110{word-spacing:0.737472pt;}
.ws6d{word-spacing:0.743874pt;}
.ws162{word-spacing:0.797008pt;}
.wsd0{word-spacing:0.822976pt;}
.ws5f{word-spacing:0.850142pt;}
.ws18b{word-spacing:0.860774pt;}
.ws99{word-spacing:0.873210pt;}
.ws40{word-spacing:0.903276pt;}
.ws132{word-spacing:0.908480pt;}
.ws9a{word-spacing:0.923764pt;}
.ws153{word-spacing:0.956410pt;}
.ws137{word-spacing:0.999328pt;}
.ws14d{word-spacing:1.009543pt;}
.wsb2{word-spacing:1.026048pt;}
.ws107{word-spacing:1.042080pt;}
.ws114{word-spacing:1.052768pt;}
.ws136{word-spacing:1.058112pt;}
.ws2b{word-spacing:1.062677pt;}
.ws6a{word-spacing:1.115811pt;}
.ws57{word-spacing:1.168945pt;}
.ws170{word-spacing:1.195520pt;}
.ws7d{word-spacing:1.222079pt;}
.ws47{word-spacing:1.275213pt;}
.wsd6{word-spacing:1.293248pt;}
.ws138{word-spacing:1.309280pt;}
.ws41{word-spacing:1.328347pt;}
.wsb3{word-spacing:1.389440pt;}
.ws115{word-spacing:1.400128pt;}
.wsd5{word-spacing:1.426848pt;}
.ws15d{word-spacing:1.434614pt;}
.ws16a{word-spacing:1.434624pt;}
.wsd8{word-spacing:1.458912pt;}
.wsd4{word-spacing:1.464256pt;}
.ws163{word-spacing:1.487748pt;}
.wsd7{word-spacing:1.496320pt;}
.ws6b{word-spacing:1.540882pt;}
.wsa3{word-spacing:1.594016pt;}
.ws160{word-spacing:1.647150pt;}
.ws175{word-spacing:1.673728pt;}
.ws10d{word-spacing:1.688704pt;}
.ws151{word-spacing:1.700284pt;}
.ws186{word-spacing:1.721549pt;}
.ws8f{word-spacing:1.770912pt;}
.ws8e{word-spacing:1.783296pt;}
.ws8d{word-spacing:1.803936pt;}
.ws35{word-spacing:1.859685pt;}
.ws183{word-spacing:1.865011pt;}
.ws117{word-spacing:1.897120pt;}
.ws145{word-spacing:1.912819pt;}
.ws95{word-spacing:1.976211pt;}
.ws10e{word-spacing:1.982624pt;}
.ws171{word-spacing:2.008474pt;}
.ws37{word-spacing:2.019087pt;}
.ws2a{word-spacing:2.072221pt;}
.ws96{word-spacing:2.077320pt;}
.ws94{word-spacing:2.086511pt;}
.wsa4{word-spacing:2.125355pt;}
.ws189{word-spacing:2.151936pt;}
.wsf3{word-spacing:2.178489pt;}
.ws39{word-spacing:2.231622pt;}
.wsd9{word-spacing:2.239136pt;}
.ws197{word-spacing:2.247578pt;}
.wsb6{word-spacing:2.265856pt;}
.ws102{word-spacing:2.284756pt;}
.ws120{word-spacing:2.313952pt;}
.ws11f{word-spacing:2.319296pt;}
.wsc8{word-spacing:2.335328pt;}
.ws55{word-spacing:2.337890pt;}
.ws122{word-spacing:2.346016pt;}
.ws123{word-spacing:2.372736pt;}
.wsc9{word-spacing:2.394112pt;}
.wsb7{word-spacing:2.426176pt;}
.wsff{word-spacing:2.438861pt;}
.ws150{word-spacing:2.444158pt;}
.ws17f{word-spacing:2.486682pt;}
.ws9d{word-spacing:2.513924pt;}
.ws44{word-spacing:2.550426pt;}
.ws1d{word-spacing:2.550432pt;}
.ws9e{word-spacing:2.555287pt;}
.ws11b{word-spacing:2.570464pt;}
.ws36{word-spacing:2.603559pt;}
.wsd3{word-spacing:2.650624pt;}
.ws146{word-spacing:2.656693pt;}
.ws1a1{word-spacing:2.722540pt;}
.ws1a2{word-spacing:2.725786pt;}
.ws101{word-spacing:2.762961pt;}
.ws19d{word-spacing:2.773606pt;}
.ws173{word-spacing:2.797835pt;}
.wsda{word-spacing:2.810944pt;}
.wsf6{word-spacing:2.816095pt;}
.ws19f{word-spacing:2.860595pt;}
.ws18a{word-spacing:2.865271pt;}
.ws184{word-spacing:2.865647pt;}
.ws18f{word-spacing:2.865732pt;}
.ws1a0{word-spacing:2.865877pt;}
.ws18c{word-spacing:2.866108pt;}
.ws193{word-spacing:2.866304pt;}
.ws16e{word-spacing:2.866509pt;}
.ws19b{word-spacing:2.866560pt;}
.ws190{word-spacing:2.866970pt;}
.ws192{word-spacing:2.867174pt;}
.ws89{word-spacing:2.869248pt;}
.ws16f{word-spacing:2.917069pt;}
.wsdb{word-spacing:2.917824pt;}
.wsf4{word-spacing:2.922363pt;}
.ws11e{word-spacing:2.923168pt;}
.ws188{word-spacing:2.938638pt;}
.ws48{word-spacing:2.975497pt;}
.wsd2{word-spacing:3.003328pt;}
.ws17c{word-spacing:3.012710pt;}
.ws127{word-spacing:3.014400pt;}
.ws45{word-spacing:3.028630pt;}
.ws129{word-spacing:3.038400pt;}
.ws128{word-spacing:3.043200pt;}
.wsa5{word-spacing:3.081764pt;}
.ws1ac{word-spacing:3.108352pt;}
.ws43{word-spacing:3.134898pt;}
.ws3b{word-spacing:3.138960pt;}
.wse2{word-spacing:3.156173pt;}
.ws56{word-spacing:3.188032pt;}
.ws13b{word-spacing:3.201056pt;}
.ws2e{word-spacing:3.241166pt;}
.ws16c{word-spacing:3.251814pt;}
.ws4a{word-spacing:3.347434pt;}
.ws152{word-spacing:3.400567pt;}
.wsa0{word-spacing:3.442284pt;}
.wsae{word-spacing:3.453701pt;}
.ws13c{word-spacing:3.537728pt;}
.wsd1{word-spacing:3.559104pt;}
.ws7e{word-spacing:3.559969pt;}
.ws9f{word-spacing:3.593947pt;}
.ws66{word-spacing:3.613103pt;}
.ws13d{word-spacing:3.617888pt;}
.ws9b{word-spacing:3.626118pt;}
.ws178{word-spacing:3.682202pt;}
.wsfd{word-spacing:3.730022pt;}
.ws5c{word-spacing:3.825638pt;}
.ws3e{word-spacing:3.825664pt;}
.ws9c{word-spacing:3.869697pt;}
.ws125{word-spacing:3.879744pt;}
.ws5d{word-spacing:3.931906pt;}
.ws17a{word-spacing:3.969126pt;}
.ws17b{word-spacing:4.016947pt;}
.ws21{word-spacing:4.038174pt;}
.ws158{word-spacing:4.091308pt;}
.ws33{word-spacing:4.250709pt;}
.wse3{word-spacing:4.256051pt;}
.ws124{word-spacing:4.264512pt;}
.ws4f{word-spacing:4.303843pt;}
.ws1a5{word-spacing:4.351693pt;}
.ws147{word-spacing:4.356977pt;}
.ws5e{word-spacing:4.410111pt;}
.ws3c{word-spacing:4.432474pt;}
.ws17d{word-spacing:4.495155pt;}
.ws13e{word-spacing:4.537056pt;}
.ws1f{word-spacing:4.622646pt;}
.ws1a3{word-spacing:4.638618pt;}
.wse1{word-spacing:4.686438pt;}
.ws157{word-spacing:4.728914pt;}
.ws90{word-spacing:4.780224pt;}
.ws91{word-spacing:4.813248pt;}
.ws30{word-spacing:4.835182pt;}
.ws92{word-spacing:4.883424pt;}
.ws32{word-spacing:4.888316pt;}
.ws12e{word-spacing:4.934400pt;}
.ws155{word-spacing:4.941450pt;}
.ws12f{word-spacing:4.963200pt;}
.ws177{word-spacing:4.973363pt;}
.ws12d{word-spacing:4.977600pt;}
.ws15f{word-spacing:4.994583pt;}
.ws156{word-spacing:5.100851pt;}
.ws13a{word-spacing:5.114208pt;}
.ws142{word-spacing:5.153985pt;}
.wsb8{word-spacing:5.162304pt;}
.ws139{word-spacing:5.178336pt;}
.ws141{word-spacing:5.207119pt;}
.wsba{word-spacing:5.231776pt;}
.ws5b{word-spacing:5.260253pt;}
.ws2f{word-spacing:5.366521pt;}
.ws191{word-spacing:5.403750pt;}
.wsb9{word-spacing:5.461568pt;}
.wsbe{word-spacing:5.466912pt;}
.ws143{word-spacing:5.472788pt;}
.ws29{word-spacing:5.525922pt;}
.wsbd{word-spacing:5.557760pt;}
.ws161{word-spacing:5.685324pt;}
.ws42{word-spacing:5.897859pt;}
.ws6c{word-spacing:5.950993pt;}
.ws2c{word-spacing:6.216662pt;}
.ws144{word-spacing:6.322930pt;}
.ws15e{word-spacing:6.588599pt;}
.ws7b{word-spacing:6.748001pt;}
.ws182{word-spacing:7.603507pt;}
.ws10b{word-spacing:7.722080pt;}
.ws10c{word-spacing:7.780864pt;}
.ws8c{word-spacing:8.883208pt;}
.ws78{word-spacing:9.479106pt;}
.ws2d{word-spacing:9.818375pt;}
.wse4{word-spacing:10.325056pt;}
.wsb1{word-spacing:10.329312pt;}
.ws14a{word-spacing:11.423781pt;}
.ws50{word-spacing:11.848852pt;}
.ws133{word-spacing:11.895744pt;}
.ws134{word-spacing:12.050720pt;}
.wsee{word-spacing:12.478240pt;}
.wsec{word-spacing:12.638560pt;}
.wsed{word-spacing:12.718720pt;}
.ws31{word-spacing:13.102647pt;}
.ws28{word-spacing:14.450498pt;}
.ws164{word-spacing:18.506650pt;}
.ws2{word-spacing:19.715148pt;}
.wsd{word-spacing:36.268937pt;}
.wsc{word-spacing:36.274270pt;}
.ws1c{word-spacing:37.189333pt;}
.ws19{word-spacing:37.194667pt;}
.wsb{word-spacing:40.495287pt;}
.ws13{word-spacing:40.925594pt;}
.ws10{word-spacing:40.941333pt;}
.ws15{word-spacing:54.233436pt;}
.ws6f{word-spacing:69.072691pt;}
._50{margin-left:-21.806285pt;}
._8{margin-left:-10.616218pt;}
._6{margin-left:-6.455830pt;}
._d{margin-left:-5.483429pt;}
._c{margin-left:-4.363390pt;}
._2{margin-left:-3.421811pt;}
._3{margin-left:-2.343197pt;}
._1{margin-left:-1.338970pt;}
._9{width:1.706019pt;}
._a{width:2.645242pt;}
._4a{width:3.772505pt;}
._4f{width:6.503629pt;}
._0{width:9.781917pt;}
._4d{width:11.046605pt;}
._1b{width:12.656483pt;}
._e{width:13.942362pt;}
._12{width:15.302554pt;}
._16{width:16.258963pt;}
._13{width:17.279130pt;}
._19{width:18.171782pt;}
._4{width:19.341739pt;}
._14{width:20.748841pt;}
._5{width:22.379968pt;}
._17{width:23.591437pt;}
._1a{width:24.494713pt;}
._11{width:25.909395pt;}
._2a{width:27.427698pt;}
._1c{width:28.639154pt;}
._7{width:29.648896pt;}
._46{width:30.764509pt;}
._15{width:33.102399pt;}
._18{width:34.590147pt;}
._4b{width:36.912028pt;}
._4c{width:51.991292pt;}
._4e{width:54.993920pt;}
._b{width:61.709641pt;}
._2c{width:81.501756pt;}
._2b{width:83.206195pt;}
._3a{width:187.170611pt;}
._30{width:222.510182pt;}
._33{width:226.144563pt;}
._43{width:238.099763pt;}
._36{width:250.054963pt;}
._40{width:260.958106pt;}
._3d{width:262.010163pt;}
._3f{width:269.135485pt;}
._37{width:270.857011pt;}
._32{width:272.913306pt;}
._2f{width:273.965363pt;}
._42{width:284.868506pt;}
._3e{width:286.016205pt;}
._34{width:291.946873pt;}
._39{width:300.075498pt;}
._35{width:308.778906pt;}
._3b{width:321.164493pt;}
._3c{width:332.689306pt;}
._41{width:341.918742pt;}
._2e{width:356.599706pt;}
._44{width:365.496462pt;}
._38{width:368.554906pt;}
._20{width:460.287642pt;}
._2d{width:516.939940pt;}
._31{width:550.318858pt;}
._26{width:764.319846pt;}
._1f{width:901.326438pt;}
._21{width:943.743488pt;}
._22{width:1078.550323pt;}
._24{width:1127.614464pt;}
._29{width:1143.873536pt;}
._27{width:1174.239744pt;}
._25{width:1187.151360pt;}
._28{width:1240.423731pt;}
._23{width:1295.704576pt;}
._1e{width:1326.991076pt;}
._1d{width:1393.545933pt;}
._f{width:1619.714667pt;}
._45{width:1634.828380pt;}
._48{width:1880.122685pt;}
._47{width:1901.240957pt;}
._49{width:2267.906667pt;}
._10{width:2289.160000pt;}
.fs4{font-size:31.880533pt;}
.fs9{font-size:36.601600pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsb{font-size:41.280000pt;}
.fs7{font-size:42.077867pt;}
.fs5{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fsa{font-size:45.958400pt;}
.fs8{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fs1{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fs6{font-size:63.761067pt;}
.fsf{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.y12b{bottom:-384.034267pt;}
.y144{bottom:-341.312939pt;}
.y143{bottom:-322.673067pt;}
.y171{bottom:-305.552933pt;}
.y142{bottom:-303.953035pt;}
.y141{bottom:-285.313163pt;}
.y195{bottom:-276.192389pt;}
.y140{bottom:-266.673291pt;}
.y194{bottom:-257.472357pt;}
.y13f{bottom:-247.953259pt;}
.y193{bottom:-238.832485pt;}
.y13e{bottom:-229.313387pt;}
.y151{bottom:-224.967600pt;}
.y192{bottom:-220.192613pt;}
.y13d{bottom:-210.673515pt;}
.y191{bottom:-201.472581pt;}
.y15b{bottom:-193.927344pt;}
.y13c{bottom:-191.953483pt;}
.y11a{bottom:-183.227816pt;}
.y190{bottom:-182.832709pt;}
.y15a{bottom:-175.287472pt;}
.y13b{bottom:-173.313611pt;}
.y18f{bottom:-164.192837pt;}
.y124{bottom:-158.872341pt;}
.y159{bottom:-156.647600pt;}
.y13a{bottom:-154.673739pt;}
.y18e{bottom:-145.472805pt;}
.y123{bottom:-142.842051pt;}
.y139{bottom:-135.953707pt;}
.y158{bottom:-133.207600pt;}
.y18d{bottom:-126.832933pt;}
.y122{bottom:-126.742823pt;}
.y138{bottom:-117.313835pt;}
.y121{bottom:-110.712533pt;}
.y157{bottom:-96.407408pt;}
.y120{bottom:-94.682244pt;}
.y137{bottom:-94.673979pt;}
.y18c{bottom:-92.592133pt;}
.y11f{bottom:-78.583016pt;}
.y156{bottom:-77.687376pt;}
.y18b{bottom:-73.872133pt;}
.y136{bottom:-59.954011pt;}
.y155{bottom:-59.047504pt;}
.y18a{bottom:-55.232533pt;}
.y11e{bottom:-49.136272pt;}
.y135{bottom:-41.314139pt;}
.y154{bottom:-40.407632pt;}
.y189{bottom:-36.592933pt;}
.y11d{bottom:-33.106216pt;}
.y134{bottom:-22.672987pt;}
.y153{bottom:-21.687184pt;}
.y11c{bottom:-17.007016pt;}
.y188{bottom:-13.551429pt;}
.y133{bottom:-0.033131pt;}
.y0{bottom:0.000000pt;}
.y152{bottom:0.952672pt;}
.y11b{bottom:2.807191pt;}
.y57{bottom:40.818667pt;}
.yf2{bottom:88.640000pt;}
.y1a{bottom:89.120000pt;}
.yd5{bottom:90.122667pt;}
.y127{bottom:90.513333pt;}
.y10c{bottom:92.816000pt;}
.y56{bottom:94.132000pt;}
.y220{bottom:94.188000pt;}
.y1be{bottom:94.689333pt;}
.yab{bottom:98.970667pt;}
.y1ab{bottom:103.473333pt;}
.y55{bottom:104.621333pt;}
.y19{bottom:105.020000pt;}
.y10a{bottom:105.434667pt;}
.yf1{bottom:107.209333pt;}
.y126{bottom:107.609333pt;}
.y85{bottom:108.618667pt;}
.yd4{bottom:108.693333pt;}
.y10b{bottom:109.292000pt;}
.y21f{bottom:111.210667pt;}
.y1bd{bottom:112.485333pt;}
.y15f{bottom:114.281333pt;}
.yaa{bottom:117.541333pt;}
.y109{bottom:118.054667pt;}
.y54{bottom:118.966667pt;}
.y18{bottom:120.920000pt;}
.y108{bottom:121.912000pt;}
.y1aa{bottom:122.042667pt;}
.y125{bottom:124.705333pt;}
.y1ee{bottom:125.405333pt;}
.yf0{bottom:125.780000pt;}
.y84{bottom:127.189333pt;}
.yd3{bottom:127.262667pt;}
.y21e{bottom:128.233333pt;}
.y1bc{bottom:130.282667pt;}
.y15e{bottom:131.377333pt;}
.ya9{bottom:136.112000pt;}
.y17{bottom:136.821333pt;}
.y53{bottom:137.170667pt;}
.y107{bottom:139.153333pt;}
.y1a9{bottom:140.613333pt;}
.y223{bottom:141.052000pt;}
.y1ed{bottom:142.428000pt;}
.y1ec{bottom:142.429333pt;}
.y14d{bottom:144.350667pt;}
.y117{bottom:144.642667pt;}
.y21d{bottom:145.256000pt;}
.y83{bottom:145.758667pt;}
.yd2{bottom:145.833333pt;}
.y52{bottom:147.660000pt;}
.y1bb{bottom:148.078667pt;}
.y15d{bottom:148.473333pt;}
.y16{bottom:152.721333pt;}
.y106{bottom:153.765333pt;}
.ya8{bottom:154.681333pt;}
.y222{bottom:158.074667pt;}
.y1a8{bottom:159.184000pt;}
.y1eb{bottom:159.452000pt;}
.y51{bottom:162.005333pt;}
.y21c{bottom:162.278667pt;}
.yef{bottom:162.344000pt;}
.y14c{bottom:162.920000pt;}
.y82{bottom:164.329333pt;}
.yd1{bottom:164.404000pt;}
.y15c{bottom:165.569333pt;}
.y50{bottom:165.864000pt;}
.y1ba{bottom:165.874667pt;}
.y105{bottom:168.377333pt;}
.y15{bottom:168.621333pt;}
.ya7{bottom:173.252000pt;}
.y221{bottom:175.097333pt;}
.y4f{bottom:176.352000pt;}
.y1ea{bottom:176.474667pt;}
.yee{bottom:176.928000pt;}
.y1a7{bottom:177.753333pt;}
.y21b{bottom:179.301333pt;}
.y14b{bottom:181.490667pt;}
.y81{bottom:182.900000pt;}
.yd0{bottom:182.973333pt;}
.y104{bottom:182.989333pt;}
.y1b9{bottom:183.672000pt;}
.y14{bottom:184.521333pt;}
.y14e{bottom:185.506667pt;}
.yed{bottom:191.540000pt;}
.ya6{bottom:191.822667pt;}
.y1e9{bottom:193.497333pt;}
.y4e{bottom:194.556000pt;}
.y1a6{bottom:196.324000pt;}
.y103{bottom:197.601333pt;}
.y14a{bottom:200.061333pt;}
.y13{bottom:200.422667pt;}
.y1b8{bottom:201.468000pt;}
.y80{bottom:201.469333pt;}
.y4d{bottom:205.044000pt;}
.ycf{bottom:205.529333pt;}
.yec{bottom:206.152000pt;}
.ya5{bottom:210.392000pt;}
.y1e8{bottom:210.520000pt;}
.y102{bottom:212.213333pt;}
.y21a{bottom:213.346667pt;}
.y1a5{bottom:214.894667pt;}
.y149{bottom:218.632000pt;}
.y1b7{bottom:219.264000pt;}
.y7f{bottom:220.040000pt;}
.yeb{bottom:220.764000pt;}
.y4c{bottom:223.248000pt;}
.y12{bottom:224.293333pt;}
.y101{bottom:226.824000pt;}
.y1e7{bottom:227.542667pt;}
.ya4{bottom:228.962667pt;}
.y219{bottom:230.369333pt;}
.y199{bottom:231.165333pt;}
.y1a4{bottom:233.464000pt;}
.y4b{bottom:233.737333pt;}
.yea{bottom:235.376000pt;}
.yce{bottom:236.945333pt;}
.y1b6{bottom:237.061333pt;}
.y148{bottom:237.201333pt;}
.y11{bottom:240.193333pt;}
.y100{bottom:241.436000pt;}
.y7e{bottom:242.596000pt;}
.y1e6{bottom:244.565333pt;}
.y218{bottom:247.392000pt;}
.ya3{bottom:247.533333pt;}
.y198{bottom:248.261333pt;}
.ye9{bottom:249.988000pt;}
.y4a{bottom:251.941333pt;}
.y1a3{bottom:252.034667pt;}
.y1b5{bottom:254.857333pt;}
.ycd{bottom:255.514667pt;}
.yff{bottom:256.048000pt;}
.y10{bottom:256.093333pt;}
.y147{bottom:259.757333pt;}
.y1e5{bottom:261.588000pt;}
.y49{bottom:262.429333pt;}
.y187{bottom:262.528963pt;}
.y217{bottom:264.414667pt;}
.ye8{bottom:264.600000pt;}
.y197{bottom:265.357333pt;}
.ya2{bottom:266.102667pt;}
.y1a2{bottom:270.605333pt;}
.yfe{bottom:270.660000pt;}
.yf{bottom:271.994667pt;}
.y1b4{bottom:272.653333pt;}
.ycc{bottom:274.085333pt;}
.y1e4{bottom:278.610667pt;}
.ye7{bottom:279.210667pt;}
.y48{bottom:280.633333pt;}
.y186{bottom:281.168835pt;}
.y216{bottom:281.437333pt;}
.y196{bottom:282.453333pt;}
.ya1{bottom:284.673333pt;}
.yfd{bottom:285.272000pt;}
.ye{bottom:287.894667pt;}
.y146{bottom:288.296000pt;}
.y1a1{bottom:289.176000pt;}
.ycb{bottom:292.656000pt;}
.ye6{bottom:293.822667pt;}
.y47{bottom:294.980000pt;}
.y1e3{bottom:295.633333pt;}
.y215{bottom:298.460000pt;}
.y185{bottom:299.808707pt;}
.yfc{bottom:299.884000pt;}
.ya0{bottom:303.244000pt;}
.yd{bottom:303.794667pt;}
.y16e{bottom:305.046667pt;}
.y145{bottom:305.392000pt;}
.y1b3{bottom:306.390667pt;}
.y1a0{bottom:307.745333pt;}
.ye5{bottom:308.434667pt;}
.y46{bottom:309.326667pt;}
.yca{bottom:311.225333pt;}
.y1e2{bottom:312.656000pt;}
.y7d{bottom:313.005333pt;}
.yfb{bottom:314.496000pt;}
.y214{bottom:315.482667pt;}
.y184{bottom:318.528739pt;}
.yc{bottom:319.696000pt;}
.y45{bottom:319.814667pt;}
.y9f{bottom:321.814667pt;}
.ye4{bottom:323.046667pt;}
.y1b2{bottom:324.961333pt;}
.y128{bottom:325.329333pt;}
.y19f{bottom:326.316000pt;}
.yfa{bottom:329.108000pt;}
.y1e1{bottom:329.678667pt;}
.yc9{bottom:329.796000pt;}
.y7c{bottom:331.576000pt;}
.y213{bottom:332.506667pt;}
.yb{bottom:335.596000pt;}
.y183{bottom:337.168611pt;}
.ye3{bottom:337.658667pt;}
.y44{bottom:338.018667pt;}
.y9e{bottom:340.384000pt;}
.y1b1{bottom:343.530667pt;}
.yf9{bottom:343.720000pt;}
.y19e{bottom:344.886667pt;}
.yc8{bottom:348.366667pt;}
.y43{bottom:348.506667pt;}
.y212{bottom:349.529333pt;}
.y1e0{bottom:350.686667pt;}
.ya{bottom:351.496000pt;}
.ye2{bottom:352.270667pt;}
.y182{bottom:355.808483pt;}
.yf8{bottom:358.332000pt;}
.y9d{bottom:358.954667pt;}
.y1b0{bottom:362.101333pt;}
.y19d{bottom:363.456000pt;}
.y7b{bottom:366.086667pt;}
.y211{bottom:366.552000pt;}
.y42{bottom:366.710667pt;}
.ye1{bottom:366.882667pt;}
.yc7{bottom:366.936000pt;}
.y9{bottom:367.397333pt;}
.yf7{bottom:372.942667pt;}
.y181{bottom:374.528515pt;}
.y41{bottom:377.200000pt;}
.y1af{bottom:380.672000pt;}
.y9c{bottom:381.509333pt;}
.y19c{bottom:382.026667pt;}
.ye0{bottom:382.049333pt;}
.y8{bottom:383.297333pt;}
.y210{bottom:383.574667pt;}
.y7a{bottom:384.657333pt;}
.y1df{bottom:385.197333pt;}
.yc6{bottom:385.506667pt;}
.y180{bottom:393.168387pt;}
.yf6{bottom:393.957333pt;}
.y40{bottom:395.404000pt;}
.ydf{bottom:396.661333pt;}
.y7{bottom:399.197333pt;}
.y1ae{bottom:399.241333pt;}
.y19b{bottom:400.597333pt;}
.y1de{bottom:402.529333pt;}
.y79{bottom:403.226667pt;}
.yc5{bottom:404.077333pt;}
.y3f{bottom:405.892000pt;}
.yde{bottom:411.273333pt;}
.y17f{bottom:411.808259pt;}
.y6{bottom:415.098667pt;}
.y20f{bottom:417.620000pt;}
.y1ad{bottom:417.812000pt;}
.y19a{bottom:419.166667pt;}
.y1dd{bottom:419.861333pt;}
.y78{bottom:421.797333pt;}
.yc4{bottom:422.646667pt;}
.y3e{bottom:424.096000pt;}
.yf5{bottom:425.066667pt;}
.ydd{bottom:425.885333pt;}
.y17e{bottom:430.528291pt;}
.y3d{bottom:434.585333pt;}
.y20e{bottom:434.642667pt;}
.y5{bottom:436.312000pt;}
.y1ac{bottom:436.382667pt;}
.y9b{bottom:437.737333pt;}
.y77{bottom:440.368000pt;}
.y1dc{bottom:445.164000pt;}
.yc3{bottom:445.202667pt;}
.ydc{bottom:446.898667pt;}
.y17d{bottom:449.168163pt;}
.y20d{bottom:451.665333pt;}
.y4{bottom:452.212000pt;}
.y3c{bottom:452.789333pt;}
.y9a{bottom:456.308000pt;}
.yf4{bottom:458.048000pt;}
.y76{bottom:458.937333pt;}
.y1db{bottom:462.496000pt;}
.y3b{bottom:463.277333pt;}
.y132{bottom:464.046509pt;}
.y17c{bottom:467.808035pt;}
.y3{bottom:468.113333pt;}
.y20c{bottom:468.688000pt;}
.y99{bottom:474.877333pt;}
.ydb{bottom:475.352000pt;}
.yc2{bottom:476.617333pt;}
.y75{bottom:477.508000pt;}
.y1da{bottom:479.828000pt;}
.y3a{bottom:481.481333pt;}
.y131{bottom:482.686381pt;}
.y2{bottom:484.013333pt;}
.y20b{bottom:485.710667pt;}
.y17b{bottom:486.528067pt;}
.y98{bottom:493.448000pt;}
.yc1{bottom:495.188000pt;}
.y39{bottom:495.828000pt;}
.y74{bottom:496.078667pt;}
.y1d9{bottom:497.160000pt;}
.y130{bottom:501.326253pt;}
.y20a{bottom:502.733333pt;}
.y17a{bottom:505.167939pt;}
.y1{bottom:505.226667pt;}
.yda{bottom:507.516000pt;}
.y38{bottom:510.173333pt;}
.y97{bottom:512.018667pt;}
.yc0{bottom:513.758667pt;}
.y1d8{bottom:514.492000pt;}
.y73{bottom:514.648000pt;}
.y209{bottom:519.756000pt;}
.y12f{bottom:520.046285pt;}
.y179{bottom:523.807811pt;}
.y37{bottom:524.520000pt;}
.yd9{bottom:526.086667pt;}
.y96{bottom:530.589333pt;}
.y1d7{bottom:531.825333pt;}
.ybf{bottom:532.329333pt;}
.y72{bottom:533.218667pt;}
.y36{bottom:535.009333pt;}
.y208{bottom:536.778667pt;}
.y12e{bottom:538.686157pt;}
.y178{bottom:542.527843pt;}
.yd8{bottom:544.657333pt;}
.y1d6{bottom:549.157333pt;}
.y95{bottom:549.158667pt;}
.ybe{bottom:550.898667pt;}
.y71{bottom:551.789333pt;}
.y35{bottom:553.212000pt;}
.y207{bottom:553.801333pt;}
.y12d{bottom:557.326029pt;}
.y177{bottom:561.167715pt;}
.yd7{bottom:563.228000pt;}
.y34{bottom:563.701333pt;}
.y16d{bottom:563.744000pt;}
.y1d5{bottom:566.489333pt;}
.y94{bottom:567.729333pt;}
.ybd{bottom:569.469333pt;}
.y70{bottom:570.358667pt;}
.y206{bottom:570.824000pt;}
.y12c{bottom:576.046061pt;}
.y33{bottom:578.048000pt;}
.y176{bottom:579.807587pt;}
.y32{bottom:581.905333pt;}
.y16c{bottom:582.314667pt;}
.yd6{bottom:585.782667pt;}
.y93{bottom:586.300000pt;}
.y205{bottom:587.846667pt;}
.ybc{bottom:588.040000pt;}
.y6f{bottom:588.929333pt;}
.y1d4{bottom:591.792000pt;}
.y31{bottom:592.393333pt;}
.y175{bottom:598.527619pt;}
.y16b{bottom:600.885333pt;}
.y92{bottom:604.869333pt;}
.ybb{bottom:606.609333pt;}
.y30{bottom:606.740000pt;}
.y6e{bottom:607.500000pt;}
.y1d3{bottom:609.124000pt;}
.y174{bottom:617.167491pt;}
.y16a{bottom:619.454667pt;}
.y204{bottom:621.892000pt;}
.y91{bottom:623.440000pt;}
.y2f{bottom:624.944000pt;}
.yb9{bottom:625.180000pt;}
.y12a{bottom:625.965853pt;}
.y6d{bottom:626.070667pt;}
.y1d2{bottom:626.456000pt;}
.yba{bottom:630.001333pt;}
.y129{bottom:634.525733pt;}
.y2e{bottom:635.432000pt;}
.y173{bottom:635.807363pt;}
.y169{bottom:638.025333pt;}
.y203{bottom:638.914667pt;}
.y90{bottom:642.010667pt;}
.yb8{bottom:643.750667pt;}
.y6c{bottom:644.640000pt;}
.y1d1{bottom:651.758667pt;}
.y2d{bottom:653.636000pt;}
.y172{bottom:654.527395pt;}
.y202{bottom:655.937333pt;}
.y168{bottom:656.596000pt;}
.y8f{bottom:660.580000pt;}
.yb7{bottom:662.320000pt;}
.y6b{bottom:663.210667pt;}
.y2c{bottom:664.125333pt;}
.yf3{bottom:666.305333pt;}
.y1d0{bottom:669.090667pt;}
.y201{bottom:672.961333pt;}
.y167{bottom:675.165333pt;}
.y2b{bottom:678.472000pt;}
.y8e{bottom:679.150667pt;}
.yb6{bottom:680.890667pt;}
.y6a{bottom:681.781333pt;}
.y119{bottom:685.372287pt;}
.y200{bottom:689.984000pt;}
.y118{bottom:692.733784pt;}
.y2a{bottom:692.817333pt;}
.y166{bottom:693.736000pt;}
.y1cf{bottom:694.393333pt;}
.y8d{bottom:697.721333pt;}
.yb5{bottom:699.461333pt;}
.y69{bottom:700.350667pt;}
.y170{bottom:704.447187pt;}
.y1ff{bottom:707.006667pt;}
.y29{bottom:707.164000pt;}
.y28{bottom:711.021333pt;}
.y1ce{bottom:711.725333pt;}
.y165{bottom:712.306667pt;}
.y16f{bottom:713.007067pt;}
.y8c{bottom:716.290667pt;}
.yb4{bottom:718.030667pt;}
.y68{bottom:718.921333pt;}
.y1fe{bottom:724.029333pt;}
.y1cd{bottom:729.057333pt;}
.y164{bottom:730.876000pt;}
.y8b{bottom:734.861333pt;}
.yb3{bottom:736.601333pt;}
.y67{bottom:737.492000pt;}
.y1fd{bottom:741.052000pt;}
.y1cc{bottom:746.389333pt;}
.y163{bottom:749.446667pt;}
.y27{bottom:750.733333pt;}
.y8a{bottom:753.432000pt;}
.yb2{bottom:755.172000pt;}
.y66{bottom:756.061333pt;}
.y1fc{bottom:758.074667pt;}
.y1cb{bottom:763.721333pt;}
.y162{bottom:768.017333pt;}
.y26{bottom:769.304000pt;}
.y89{bottom:772.002667pt;}
.yb1{bottom:773.742667pt;}
.y65{bottom:774.632000pt;}
.y1fb{bottom:775.097333pt;}
.y1ca{bottom:781.054667pt;}
.y150{bottom:785.032520pt;}
.y161{bottom:786.586667pt;}
.y24{bottom:787.874667pt;}
.y88{bottom:790.572000pt;}
.y1fa{bottom:792.120000pt;}
.yb0{bottom:792.312000pt;}
.y25{bottom:792.696000pt;}
.y64{bottom:793.202667pt;}
.y14f{bottom:793.592400pt;}
.y160{bottom:805.157333pt;}
.y1c9{bottom:806.356000pt;}
.y23{bottom:806.445333pt;}
.y87{bottom:809.142667pt;}
.yaf{bottom:810.882667pt;}
.y63{bottom:811.772000pt;}
.y116{bottom:823.728000pt;}
.y22{bottom:825.014667pt;}
.y1f9{bottom:826.165333pt;}
.y86{bottom:827.713333pt;}
.yae{bottom:829.453333pt;}
.y1c8{bottom:831.658667pt;}
.y115{bottom:842.297333pt;}
.y1f8{bottom:843.188000pt;}
.y20{bottom:843.585333pt;}
.y62{bottom:846.282667pt;}
.yad{bottom:848.022667pt;}
.y21{bottom:848.406667pt;}
.y1c7{bottom:848.990667pt;}
.y1f7{bottom:860.210667pt;}
.y114{bottom:860.868000pt;}
.y1f{bottom:862.156000pt;}
.y61{bottom:864.853333pt;}
.y1c6{bottom:866.322667pt;}
.yac{bottom:870.578667pt;}
.y1f6{bottom:877.233333pt;}
.y113{bottom:879.438667pt;}
.y60{bottom:883.424000pt;}
.y1c5{bottom:883.656000pt;}
.y1f5{bottom:894.256000pt;}
.y1e{bottom:896.665333pt;}
.y112{bottom:898.009333pt;}
.y1c4{bottom:900.988000pt;}
.y5f{bottom:901.993333pt;}
.y1f4{bottom:911.278667pt;}
.y111{bottom:916.578667pt;}
.y1c3{bottom:918.320000pt;}
.y5e{bottom:920.564000pt;}
.y1d{bottom:924.521333pt;}
.y1f3{bottom:928.301333pt;}
.y110{bottom:935.149333pt;}
.y1c2{bottom:935.652000pt;}
.y5d{bottom:939.134667pt;}
.y1f2{bottom:945.324000pt;}
.y1c{bottom:952.377333pt;}
.y1c1{bottom:952.984000pt;}
.y10f{bottom:953.720000pt;}
.y5c{bottom:957.704000pt;}
.y1f1{bottom:962.346667pt;}
.y1c0{bottom:970.316000pt;}
.y10e{bottom:972.289333pt;}
.y5b{bottom:976.274667pt;}
.y1f0{bottom:979.369333pt;}
.y1b{bottom:980.232000pt;}
.y10d{bottom:990.860000pt;}
.y5a{bottom:994.845333pt;}
.y1bf{bottom:995.618667pt;}
.y1ef{bottom:996.392000pt;}
.y59{bottom:1013.414667pt;}
.y58{bottom:1067.149333pt;}
.h9{height:28.947524pt;}
.h7{height:29.196090pt;}
.h1f{height:33.378918pt;}
.h2{height:33.771789pt;}
.h14{height:33.849331pt;}
.hf{height:36.666735pt;}
.hd{height:37.087439pt;}
.h16{height:38.175937pt;}
.h6{height:38.415786pt;}
.ha{height:38.596538pt;}
.h1a{height:38.775312pt;}
.hb{height:38.809074pt;}
.h3{height:38.947124pt;}
.h18{height:39.359687pt;}
.h15{height:42.502544pt;}
.h10{height:43.421286pt;}
.h20{height:43.660390pt;}
.h11{height:44.250973pt;}
.h1e{height:44.390625pt;}
.he{height:46.099251pt;}
.h1c{height:47.125000pt;}
.hc{height:48.245551pt;}
.h5{height:48.481423pt;}
.h8{height:48.486756pt;}
.h19{height:49.421563pt;}
.h12{height:51.131789pt;}
.h4{height:69.148877pt;}
.h1d{height:238.248000pt;}
.h17{height:444.264000pt;}
.h13{height:658.072000pt;}
.h1b{height:751.185333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:338.678320pt;}
.w4{width:489.812000pt;}
.w3{width:515.738667pt;}
.w5{width:651.680533pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x57{left:-171.329333pt;}
.x4c{left:-147.343227pt;}
.x6d{left:-17.868800pt;}
.x0{left:0.000000pt;}
.x4e{left:2.159173pt;}
.x4f{left:26.514373pt;}
.x59{left:30.828427pt;}
.x64{left:31.970667pt;}
.x1{left:47.621333pt;}
.x42{left:55.592000pt;}
.x43{left:67.546667pt;}
.x6c{left:70.822133pt;}
.xb6{left:76.309333pt;}
.x41{left:138.305333pt;}
.x6e{left:155.970231pt;}
.x6f{left:184.290138pt;}
.xa{left:186.952000pt;}
.xb{left:209.806667pt;}
.x13{left:220.912000pt;}
.x10{left:221.858667pt;}
.x5a{left:225.754667pt;}
.x3a{left:229.828000pt;}
.x44{left:231.238667pt;}
.x2{left:232.296000pt;}
.x3{left:238.006667pt;}
.x11{left:239.772000pt;}
.x12{left:240.716000pt;}
.x5e{left:242.361333pt;}
.x56{left:244.232000pt;}
.x1c{left:250.204000pt;}
.x2c{left:253.088000pt;}
.x2e{left:257.377333pt;}
.x2d{left:259.729333pt;}
.xb7{left:265.981333pt;}
.x39{left:267.524000pt;}
.x5b{left:268.860000pt;}
.x60{left:272.512000pt;}
.xb8{left:273.901333pt;}
.x5c{left:275.392000pt;}
.x23{left:277.605333pt;}
.x55{left:279.540000pt;}
.x68{left:282.748000pt;}
.x24{left:284.248000pt;}
.x54{left:286.769333pt;}
.xab{left:288.368000pt;}
.x69{left:289.390667pt;}
.x7f{left:296.612000pt;}
.xad{left:299.076000pt;}
.xa9{left:300.642667pt;}
.xac{left:301.652000pt;}
.x16{left:304.662667pt;}
.x86{left:310.224000pt;}
.x17{left:312.868000pt;}
.x5f{left:315.221333pt;}
.x31{left:317.285333pt;}
.x33{left:321.472000pt;}
.x48{left:324.057333pt;}
.x5d{left:326.613333pt;}
.x32{left:330.569333pt;}
.x2f{left:332.700000pt;}
.x34{left:334.756000pt;}
.x4d{left:335.839263pt;}
.x2b{left:337.449333pt;}
.x84{left:339.532000pt;}
.x6a{left:341.213333pt;}
.x30{left:344.224000pt;}
.x85{left:348.333333pt;}
.x6b{left:349.417333pt;}
.x73{left:353.948000pt;}
.x27{left:355.182667pt;}
.x97{left:357.649333pt;}
.x82{left:360.145333pt;}
.x28{left:361.825333pt;}
.xc{left:371.261333pt;}
.x83{left:373.429333pt;}
.x89{left:377.384000pt;}
.x8a{left:390.668000pt;}
.x4{left:393.973333pt;}
.x74{left:405.140000pt;}
.x8d{left:416.281333pt;}
.x5{left:420.680000pt;}
.x3d{left:426.272000pt;}
.x71{left:427.444000pt;}
.x8e{left:429.565333pt;}
.x3e{left:432.913333pt;}
.x7d{left:434.697333pt;}
.x18{left:436.686667pt;}
.x7e{left:438.084000pt;}
.x49{left:439.581333pt;}
.x75{left:442.774667pt;}
.x19{left:444.892000pt;}
.xb3{left:446.308000pt;}
.x4a{left:447.786667pt;}
.x98{left:448.938667pt;}
.x76{left:451.521333pt;}
.xb4{left:454.297333pt;}
.x77{left:462.962667pt;}
.xaf{left:467.080000pt;}
.xb5{left:468.278667pt;}
.x65{left:471.382667pt;}
.x92{left:473.158667pt;}
.x78{left:476.246667pt;}
.x66{left:479.586667pt;}
.x3f{left:485.134667pt;}
.x93{left:486.441333pt;}
.x63{left:488.211179pt;}
.x40{left:491.776000pt;}
.x87{left:498.909333pt;}
.xa6{left:501.345333pt;}
.x58{left:511.310555pt;}
.xa7{left:514.629333pt;}
.x50{left:519.221333pt;}
.x7b{left:524.885333pt;}
.x51{left:527.426667pt;}
.x1d{left:530.320000pt;}
.xa4{left:531.450667pt;}
.x7c{left:533.632000pt;}
.x1e{left:536.961333pt;}
.x21{left:539.017333pt;}
.x1f{left:543.597333pt;}
.xa5{left:544.734667pt;}
.x22{left:545.660000pt;}
.x20{left:550.238667pt;}
.x9e{left:551.642667pt;}
.xd{left:555.570667pt;}
.x9f{left:560.442667pt;}
.x6{left:566.354667pt;}
.x1a{left:567.670667pt;}
.x7{left:572.066667pt;}
.x9c{left:573.194667pt;}
.x1b{left:575.874667pt;}
.xe{left:578.424000pt;}
.x52{left:584.858667pt;}
.x62{left:586.856000pt;}
.xa0{left:588.884000pt;}
.x53{left:593.064000pt;}
.x99{left:595.114667pt;}
.x67{left:596.010667pt;}
.x45{left:597.629333pt;}
.xb2{left:600.726667pt;}
.xa1{left:602.166667pt;}
.x46{left:604.818667pt;}
.x9a{left:608.398667pt;}
.xb0{left:616.434667pt;}
.x29{left:622.188000pt;}
.xb1{left:623.077333pt;}
.x14{left:625.264000pt;}
.x2a{left:628.829333pt;}
.xae{left:630.621333pt;}
.x15{left:633.468000pt;}
.x8f{left:635.629333pt;}
.x80{left:637.666667pt;}
.x88{left:641.517333pt;}
.x90{left:643.834667pt;}
.x94{left:645.960000pt;}
.x81{left:650.949333pt;}
.x47{left:663.502667pt;}
.x79{left:666.518667pt;}
.x70{left:671.008977pt;}
.xaa{left:675.924000pt;}
.x7a{left:679.802667pt;}
.x8b{left:682.449333pt;}
.x25{left:686.470667pt;}
.x4b{left:691.721333pt;}
.x26{left:693.112000pt;}
.x8c{left:695.732000pt;}
.xa2{left:698.532000pt;}
.x61{left:701.684000pt;}
.x3b{left:707.333333pt;}
.x9b{left:709.145333pt;}
.xa8{left:710.226667pt;}
.xa3{left:711.814667pt;}
.x91{left:714.690667pt;}
.x9d{left:721.870667pt;}
.x95{left:722.952000pt;}
.x35{left:726.950667pt;}
.x37{left:727.980000pt;}
.x96{left:731.156000pt;}
.xf{left:733.230667pt;}
.x72{left:734.593333pt;}
.x8{left:738.338667pt;}
.x36{left:740.234667pt;}
.x38{left:741.264000pt;}
.x3c{left:742.694667pt;}
.x9{left:744.050667pt;}
}




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