
    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_ef4f54918babe40776236234.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_7f210de699662cc06f62033f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ee43bdb45af0dffadd2d315a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_cf5f4b89fd1d4b534bcac18f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_79761b2c220f2b85039e6b75.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d12c0d49bc0497dd7e562678.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.704000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_208b85ef1281775146b93f20.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ed99ea8d38e62f48aabcb1ec.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b84af4e76449d524c9a29634.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_54c621d9b6a03e821913ec05.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.684000;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_74b216bfb32c517077195b5b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_ad262a307e8e7fcd172440b6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.911000;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_860fde347ae67dd4f124a695.woff2')format("woff");}.ffd{font-family:ffd;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_b80dfbe715c9f00e86b5e529.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_0262cdda49d5086fe647ea5d.woff2')format("woff");}.fff{font-family:fff;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d993cdbb997504788f951b0f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_0ad650ec6f7781c8eff932fd.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.082000;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_4580597b9f51bf6d54427551.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.001000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_3b957ccf07ed6abc334d5d04.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_38a2381658420f206df2e710.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.887450;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_ccc621e3d433f1e74df1ba43.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.052000;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_d4bdf8d87e21d184674e1b70.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.686000;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_6e2b6b63ac000548821a6999.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.514000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_45c17d09ca8df56e13fe6c94.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_f2f67d84ae32f86eb32268c3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.923000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_7e756484cd87575b8ae6f2e8.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_d6b217a23b96216a47d8e49a.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_2f6cbfd9a2e8dd9e2a1f2f09.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_cfbe831ec0d339f61b651435.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.603000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_cd41f0e4d63352a29262704f.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{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);}
.m4{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);}
.m3{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);}
.mb{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);}
.m16{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);}
.me{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);}
.mf{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);}
.md{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.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);}
.m7{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);}
.m14{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);}
.m2{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);}
.m11{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);}
.m15{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);}
.ma{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);}
.m1a{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m10{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.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);}
.m9{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);}
.m19{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);}
.m1b{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);}
.m5{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);}
.m18{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);}
.m1e{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);}
.m6{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);}
.m12{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);}
.m1d{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.v2d{vertical-align:-56.400000px;}
.v10{vertical-align:-23.754000px;}
.v2b{vertical-align:-22.734000px;}
.v20{vertical-align:-20.130000px;}
.v1b{vertical-align:-18.930000px;}
.v13{vertical-align:-16.872000px;}
.v23{vertical-align:-15.348000px;}
.v3{vertical-align:-10.662000px;}
.v1{vertical-align:-8.964000px;}
.v24{vertical-align:-5.982000px;}
.v8{vertical-align:-4.794000px;}
.v22{vertical-align:-3.660000px;}
.v0{vertical-align:0.000000px;}
.v9{vertical-align:2.988000px;}
.v21{vertical-align:7.104000px;}
.v1a{vertical-align:8.814000px;}
.v14{vertical-align:10.296000px;}
.v15{vertical-align:13.272000px;}
.v1c{vertical-align:16.512000px;}
.v17{vertical-align:17.832000px;}
.v25{vertical-align:18.960000px;}
.ve{vertical-align:20.226000px;}
.v2{vertical-align:21.690000px;}
.v7{vertical-align:23.754000px;}
.v11{vertical-align:25.770000px;}
.va{vertical-align:27.024000px;}
.v16{vertical-align:29.190000px;}
.v2c{vertical-align:30.192000px;}
.vd{vertical-align:31.848000px;}
.v19{vertical-align:35.610000px;}
.v27{vertical-align:37.632000px;}
.v1d{vertical-align:39.060000px;}
.v18{vertical-align:41.586000px;}
.vb{vertical-align:44.280000px;}
.v26{vertical-align:45.654000px;}
.vf{vertical-align:47.256000px;}
.v12{vertical-align:48.780000px;}
.v6{vertical-align:51.924000px;}
.v5{vertical-align:71.400000px;}
.v28{vertical-align:74.436000px;}
.vc{vertical-align:89.178000px;}
.v2a{vertical-align:90.906000px;}
.v29{vertical-align:102.318000px;}
.v4{vertical-align:103.638000px;}
.v1f{vertical-align:116.502000px;}
.v1e{vertical-align:135.432000px;}
.ls16{letter-spacing:0.000000px;}
.ls92{letter-spacing:0.000125px;}
.ls4{letter-spacing:0.000564px;}
.lsd2{letter-spacing:0.000780px;}
.lsde{letter-spacing:0.001002px;}
.ls8e{letter-spacing:0.001223px;}
.ls8a{letter-spacing:0.001288px;}
.lscc{letter-spacing:0.001405px;}
.ls71{letter-spacing:0.001601px;}
.lsa3{letter-spacing:0.001614px;}
.lsa4{letter-spacing:0.001620px;}
.ls0{letter-spacing:0.001866px;}
.ls76{letter-spacing:0.002112px;}
.ls8{letter-spacing:0.002149px;}
.lsc4{letter-spacing:0.002156px;}
.ls94{letter-spacing:0.002352px;}
.lsf2{letter-spacing:0.002682px;}
.ls3d{letter-spacing:0.002688px;}
.lsc1{letter-spacing:0.002694px;}
.ls67{letter-spacing:0.002696px;}
.ls35{letter-spacing:0.002698px;}
.lsf{letter-spacing:0.002700px;}
.ls13{letter-spacing:0.002706px;}
.lsc6{letter-spacing:0.002712px;}
.lsad{letter-spacing:0.002802px;}
.ls74{letter-spacing:0.002809px;}
.lsee{letter-spacing:0.003017px;}
.ls49{letter-spacing:0.003056px;}
.ls91{letter-spacing:0.003543px;}
.ls7d{letter-spacing:0.003791px;}
.lse4{letter-spacing:0.003894px;}
.ls6c{letter-spacing:0.004003px;}
.ls22{letter-spacing:0.004059px;}
.ls68{letter-spacing:0.004478px;}
.ls5d{letter-spacing:0.004528px;}
.ls9b{letter-spacing:0.007289px;}
.ls29{letter-spacing:0.008149px;}
.ls6a{letter-spacing:0.242692px;}
.ls5e{letter-spacing:1.271644px;}
.lsa7{letter-spacing:1.440001px;}
.lse5{letter-spacing:1.572476px;}
.lsd3{letter-spacing:1.578476px;}
.ls66{letter-spacing:1.819593px;}
.ls3{letter-spacing:1.880823px;}
.ls2c{letter-spacing:2.056335px;}
.ls32{letter-spacing:2.062335px;}
.ls9c{letter-spacing:2.984289px;}
.ls14{letter-spacing:2.984915px;}
.ls6d{letter-spacing:2.986478px;}
.ls93{letter-spacing:2.988532px;}
.ls5{letter-spacing:2.988710px;}
.ls8d{letter-spacing:2.989223px;}
.lsba{letter-spacing:2.990289px;}
.lscd{letter-spacing:2.990352px;}
.ls44{letter-spacing:2.990915px;}
.lsa6{letter-spacing:2.991543px;}
.lsd0{letter-spacing:3.059364px;}
.lsd4{letter-spacing:3.734425px;}
.lse7{letter-spacing:3.740425px;}
.ls82{letter-spacing:3.771239px;}
.lsae{letter-spacing:4.000868px;}
.lsa1{letter-spacing:4.179471px;}
.ls46{letter-spacing:4.259644px;}
.ls7{letter-spacing:4.265644px;}
.ls95{letter-spacing:5.976125px;}
.ls1f{letter-spacing:7.170777px;}
.ls9{letter-spacing:7.176777px;}
.lsa0{letter-spacing:10.904712px;}
.lsca{letter-spacing:10.910700px;}
.ls26{letter-spacing:10.910712px;}
.lsbe{letter-spacing:10.930918px;}
.ls11{letter-spacing:11.475791px;}
.lsd7{letter-spacing:12.283002px;}
.lsdd{letter-spacing:12.283559px;}
.lsdc{letter-spacing:12.289002px;}
.lsd8{letter-spacing:12.289559px;}
.lsb1{letter-spacing:13.282200px;}
.lsb2{letter-spacing:13.284538px;}
.ls40{letter-spacing:14.540712px;}
.ls27{letter-spacing:14.543412px;}
.ls4d{letter-spacing:14.546149px;}
.ls10{letter-spacing:14.546696px;}
.ls4b{letter-spacing:14.546712px;}
.ls7e{letter-spacing:14.547791px;}
.ls7a{letter-spacing:14.549412px;}
.ls81{letter-spacing:14.553791px;}
.lsdf{letter-spacing:15.276532px;}
.lscf{letter-spacing:15.355336px;}
.lsce{letter-spacing:15.361405px;}
.ls4a{letter-spacing:17.528915px;}
.lsbc{letter-spacing:17.533289px;}
.ls3f{letter-spacing:17.534915px;}
.ls9e{letter-spacing:17.539289px;}
.ls47{letter-spacing:18.176700px;}
.ls2a{letter-spacing:18.176706px;}
.ls6e{letter-spacing:18.176712px;}
.lsab{letter-spacing:18.178881px;}
.ls1d{letter-spacing:18.179400px;}
.ls2b{letter-spacing:18.179412px;}
.ls2f{letter-spacing:18.179418px;}
.ls45{letter-spacing:18.182149px;}
.ls1c{letter-spacing:18.182688px;}
.ls64{letter-spacing:18.182696px;}
.ls83{letter-spacing:18.182698px;}
.lsaa{letter-spacing:18.182700px;}
.ls3e{letter-spacing:18.182706px;}
.ls1b{letter-spacing:18.182712px;}
.ls84{letter-spacing:18.183791px;}
.ls48{letter-spacing:18.185412px;}
.ls43{letter-spacing:18.188149px;}
.ls25{letter-spacing:18.196379px;}
.ls19{letter-spacing:18.239418px;}
.ls61{letter-spacing:18.422692px;}
.lse1{letter-spacing:18.427559px;}
.ls6{letter-spacing:19.924200px;}
.ls89{letter-spacing:19.925518px;}
.ls2{letter-spacing:20.061898px;}
.lse{letter-spacing:20.242335px;}
.ls59{letter-spacing:20.287488px;}
.ls18{letter-spacing:20.302335px;}
.ls12{letter-spacing:20.691067px;}
.lse9{letter-spacing:21.164915px;}
.ls79{letter-spacing:21.170915px;}
.ls37{letter-spacing:21.172478px;}
.ls6b{letter-spacing:21.182915px;}
.ls51{letter-spacing:21.719412px;}
.ls30{letter-spacing:21.748788px;}
.lsb6{letter-spacing:21.812700px;}
.ls85{letter-spacing:21.812712px;}
.ls7c{letter-spacing:21.817062px;}
.lsb{letter-spacing:21.818149px;}
.ls65{letter-spacing:21.818696px;}
.ls7b{letter-spacing:21.818700px;}
.ls87{letter-spacing:21.818712px;}
.ls78{letter-spacing:21.819791px;}
.ls97{letter-spacing:21.823062px;}
.lsc8{letter-spacing:21.824149px;}
.ls58{letter-spacing:21.927796px;}
.ls15{letter-spacing:22.035566px;}
.ls63{letter-spacing:22.058692px;}
.ls88{letter-spacing:22.327300px;}
.ls1a{letter-spacing:22.445644px;}
.ls98{letter-spacing:23.172700px;}
.ls34{letter-spacing:23.414698px;}
.ls36{letter-spacing:23.416881px;}
.ls21{letter-spacing:23.420149px;}
.ls1e{letter-spacing:23.420688px;}
.ls28{letter-spacing:23.420700px;}
.ls8f{letter-spacing:23.421792px;}
.lsd{letter-spacing:23.878335px;}
.ls62{letter-spacing:24.800915px;}
.lsf7{letter-spacing:24.806915px;}
.ls50{letter-spacing:24.998700px;}
.ls70{letter-spacing:25.349412px;}
.ls86{letter-spacing:25.352915px;}
.ls4f{letter-spacing:25.355412px;}
.ls31{letter-spacing:25.480335px;}
.ls1{letter-spacing:25.494553px;}
.ls60{letter-spacing:26.081644px;}
.ls3c{letter-spacing:26.402915px;}
.lsa8{letter-spacing:26.403543px;}
.ls5c{letter-spacing:26.408915px;}
.lsc3{letter-spacing:26.409543px;}
.lsf8{letter-spacing:27.154335px;}
.lsf3{letter-spacing:27.313786px;}
.lsb8{letter-spacing:27.677644px;}
.ls90{letter-spacing:27.683644px;}
.ls2e{letter-spacing:28.575010px;}
.ls4c{letter-spacing:29.090149px;}
.ls56{letter-spacing:29.096149px;}
.ls77{letter-spacing:29.305300px;}
.lsf1{letter-spacing:29.318855px;}
.ls7f{letter-spacing:29.368198px;}
.lsf4{letter-spacing:29.469521px;}
.lsc2{letter-spacing:29.475010px;}
.lsf6{letter-spacing:29.588245px;}
.ls5b{letter-spacing:29.699581px;}
.lsf5{letter-spacing:29.754486px;}
.ls96{letter-spacing:29.881074px;}
.ls57{letter-spacing:29.883255px;}
.ls9f{letter-spacing:29.887074px;}
.ls8b{letter-spacing:29.887223px;}
.ls73{letter-spacing:30.016667px;}
.ls17{letter-spacing:30.087255px;}
.ls24{letter-spacing:30.193423px;}
.ls38{letter-spacing:30.196567px;}
.ls33{letter-spacing:30.251556px;}
.lsb7{letter-spacing:30.404328px;}
.lsc0{letter-spacing:30.469608px;}
.ls75{letter-spacing:30.542149px;}
.ls8c{letter-spacing:30.951961px;}
.ls3a{letter-spacing:31.679412px;}
.ls3b{letter-spacing:31.688149px;}
.ls99{letter-spacing:32.199020px;}
.lsa9{letter-spacing:32.610785px;}
.lsa5{letter-spacing:32.725614px;}
.lsa2{letter-spacing:33.916667px;}
.lscb{letter-spacing:34.363665px;}
.ls39{letter-spacing:34.670915px;}
.lsef{letter-spacing:34.832289px;}
.lsea{letter-spacing:37.297289px;}
.lsbd{letter-spacing:37.818532px;}
.lsed{letter-spacing:37.820289px;}
.lsec{letter-spacing:37.824532px;}
.lsbf{letter-spacing:38.979539px;}
.ls9a{letter-spacing:46.028915px;}
.ls41{letter-spacing:65.456149px;}
.ls54{letter-spacing:65.456706px;}
.ls5f{letter-spacing:67.696478px;}
.lse8{letter-spacing:71.731002px;}
.ls52{letter-spacing:74.330700px;}
.lsd1{letter-spacing:85.770476px;}
.lse6{letter-spacing:99.378780px;}
.ls9d{letter-spacing:102.217289px;}
.lsbb{letter-spacing:102.223289px;}
.lsac{letter-spacing:104.930823px;}
.lsc7{letter-spacing:108.166053px;}
.lsc{letter-spacing:108.956915px;}
.ls23{letter-spacing:110.414915px;}
.lsb4{letter-spacing:114.922200px;}
.lsb3{letter-spacing:129.868200px;}
.lsaf{letter-spacing:138.526200px;}
.lsc5{letter-spacing:141.790053px;}
.lsa{letter-spacing:142.580915px;}
.ls20{letter-spacing:144.038915px;}
.ls6f{letter-spacing:144.226881px;}
.lsb5{letter-spacing:155.976710px;}
.lsb0{letter-spacing:170.922710px;}
.lsb9{letter-spacing:176.483412px;}
.lse0{letter-spacing:185.113002px;}
.ls80{letter-spacing:193.525074px;}
.lsda{letter-spacing:197.563002px;}
.lsd9{letter-spacing:211.387002px;}
.lsd5{letter-spacing:219.457002px;}
.lse2{letter-spacing:235.710532px;}
.lsdb{letter-spacing:235.716532px;}
.lsd6{letter-spacing:249.540532px;}
.lsf0{letter-spacing:271.235412px;}
.lse3{letter-spacing:376.764476px;}
.lsc9{letter-spacing:736.466706px;}
.ls69{letter-spacing:803.408700px;}
.ls5a{letter-spacing:875.498706px;}
.lseb{letter-spacing:909.026915px;}
.ls42{letter-spacing:914.102706px;}
.ls2d{letter-spacing:931.220706px;}
.ls72{letter-spacing:1048.180881px;}
.ls55{letter-spacing:1301.312706px;}
.ls53{letter-spacing:1304.390706px;}
.ls4e{letter-spacing:1685.696700px;}
.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;}
}
.ws32{word-spacing:-83.650979px;}
.ws43{word-spacing:-65.454600px;}
.wsb2{word-spacing:-53.568045px;}
.wsd0{word-spacing:-48.418425px;}
.ws9d{word-spacing:-47.258221px;}
.wscd{word-spacing:-43.610882px;}
.ws13{word-spacing:-42.637126px;}
.ws8{word-spacing:-38.937826px;}
.ws11a{word-spacing:-37.636395px;}
.ws4b{word-spacing:-36.379667px;}
.ws6e{word-spacing:-34.887302px;}
.wseb{word-spacing:-34.429120px;}
.ws44{word-spacing:-33.774574px;}
.ws2c{word-spacing:-33.453846px;}
.ws18{word-spacing:-33.211407px;}
.ws1e{word-spacing:-32.727300px;}
.ws31{word-spacing:-31.706208px;}
.ws11c{word-spacing:-24.471395px;}
.ws9f{word-spacing:-20.819546px;}
.wsc0{word-spacing:-18.877107px;}
.ws14{word-spacing:-18.183288px;}
.wsa1{word-spacing:-16.605662px;}
.ws109{word-spacing:-16.486526px;}
.ws29{word-spacing:-16.139475px;}
.ws4f{word-spacing:-15.800960px;}
.ws4c{word-spacing:-15.794960px;}
.wsd9{word-spacing:-15.512740px;}
.ws90{word-spacing:-15.279441px;}
.wsd2{word-spacing:-14.792740px;}
.ws34{word-spacing:-14.723605px;}
.ws10a{word-spacing:-14.334557px;}
.wsda{word-spacing:-14.210194px;}
.ws102{word-spacing:-14.156690px;}
.ws103{word-spacing:-14.072739px;}
.wsc7{word-spacing:-13.941830px;}
.ws85{word-spacing:-13.483711px;}
.wsbc{word-spacing:-13.470353px;}
.ws6f{word-spacing:-13.449900px;}
.ws21{word-spacing:-13.449600px;}
.ws74{word-spacing:-13.162920px;}
.ws107{word-spacing:-13.009609px;}
.wsc3{word-spacing:-12.960011px;}
.ws71{word-spacing:-12.951526px;}
.wsc4{word-spacing:-12.894556px;}
.ws10d{word-spacing:-12.871336px;}
.ws35{word-spacing:-12.829102px;}
.ws112{word-spacing:-12.799816px;}
.ws5a{word-spacing:-12.687638px;}
.ws58{word-spacing:-12.567283px;}
.ws119{word-spacing:-12.548915px;}
.ws8e{word-spacing:-12.540954px;}
.ws22{word-spacing:-12.501829px;}
.wscb{word-spacing:-12.436374px;}
.ws10c{word-spacing:-12.406735px;}
.ws2a{word-spacing:-12.349732px;}
.ws40{word-spacing:-12.318752px;}
.ws38{word-spacing:-12.305407px;}
.ws30{word-spacing:-12.299931px;}
.ws117{word-spacing:-12.174556px;}
.wsc8{word-spacing:-12.109101px;}
.wsad{word-spacing:-12.054787px;}
.ws1f{word-spacing:-12.043646px;}
.wsc2{word-spacing:-11.781828px;}
.ws36{word-spacing:-11.722919px;}
.ws10e{word-spacing:-11.716373px;}
.wsbd{word-spacing:-11.650919px;}
.ws68{word-spacing:-11.544946px;}
.wse7{word-spacing:-11.496289px;}
.wse9{word-spacing:-11.454555px;}
.ws56{word-spacing:-11.390639px;}
.ws57{word-spacing:-11.389100px;}
.ws25{word-spacing:-11.323646px;}
.ws11{word-spacing:-11.258191px;}
.wsc5{word-spacing:-11.192737px;}
.ws20{word-spacing:-11.127282px;}
.ws11d{word-spacing:-11.061827px;}
.ws5b{word-spacing:-10.996373px;}
.wsab{word-spacing:-10.973893px;}
.wsac{word-spacing:-10.967893px;}
.ws78{word-spacing:-10.965715px;}
.wsce{word-spacing:-10.961882px;}
.ws60{word-spacing:-10.957940px;}
.ws113{word-spacing:-10.957580px;}
.ws53{word-spacing:-10.956965px;}
.ws4a{word-spacing:-10.954073px;}
.ws9e{word-spacing:-10.953609px;}
.ws1c{word-spacing:-10.953042px;}
.ws4e{word-spacing:-10.948224px;}
.ws8a{word-spacing:-10.948053px;}
.wse1{word-spacing:-10.942318px;}
.ws82{word-spacing:-10.942053px;}
.ws50{word-spacing:-10.942023px;}
.ws100{word-spacing:-10.934386px;}
.ws64{word-spacing:-10.932130px;}
.wscc{word-spacing:-10.931934px;}
.ws17{word-spacing:-10.930918px;}
.ws9c{word-spacing:-10.927388px;}
.ws70{word-spacing:-10.922939px;}
.ws1a{word-spacing:-10.922897px;}
.ws49{word-spacing:-10.915745px;}
.ws61{word-spacing:-10.915709px;}
.ws4d{word-spacing:-10.915164px;}
.ws114{word-spacing:-10.913043px;}
.ws5f{word-spacing:-10.912445px;}
.ws16{word-spacing:-10.912428px;}
.ws8f{word-spacing:-10.907724px;}
.wsbb{word-spacing:-10.902139px;}
.ws63{word-spacing:-10.900192px;}
.ws27{word-spacing:-10.865464px;}
.ws12{word-spacing:-10.800009px;}
.wse6{word-spacing:-10.757427px;}
.ws2b{word-spacing:-10.734554px;}
.wsbf{word-spacing:-10.698273px;}
.wsbe{word-spacing:-10.675645px;}
.ws26{word-spacing:-10.669100px;}
.wsb4{word-spacing:-10.639643px;}
.wscf{word-spacing:-10.603645px;}
.ws110{word-spacing:-10.538191px;}
.wse8{word-spacing:-10.479281px;}
.ws23{word-spacing:-10.472736px;}
.ws73{word-spacing:-10.455834px;}
.ws72{word-spacing:-10.413827px;}
.wsd1{word-spacing:-10.407281px;}
.wsde{word-spacing:-10.348372px;}
.ws5c{word-spacing:-10.217463px;}
.ws5d{word-spacing:-10.192765px;}
.wsf{word-spacing:-10.161852px;}
.wsd6{word-spacing:-10.108450px;}
.ws37{word-spacing:-10.086554px;}
.wsd8{word-spacing:-10.080008px;}
.ws46{word-spacing:-10.066819px;}
.ws59{word-spacing:-10.065532px;}
.ws7e{word-spacing:-10.063420px;}
.ws3d{word-spacing:-10.052459px;}
.ws5e{word-spacing:-10.050812px;}
.wsb9{word-spacing:-10.048757px;}
.ws3e{word-spacing:-10.045823px;}
.ws3c{word-spacing:-10.043106px;}
.ws108{word-spacing:-10.039827px;}
.ws95{word-spacing:-10.037538px;}
.ws3b{word-spacing:-10.034808px;}
.ws75{word-spacing:-10.033857px;}
.ws2e{word-spacing:-10.033158px;}
.wsb0{word-spacing:-10.031538px;}
.ws2f{word-spacing:-10.021099px;}
.ws69{word-spacing:-10.014554px;}
.ws9{word-spacing:-9.982525px;}
.wsa{word-spacing:-9.982433px;}
.wse5{word-spacing:-9.955645px;}
.ws6{word-spacing:-9.862974px;}
.ws2d{word-spacing:-9.824735px;}
.ws3a{word-spacing:-9.759281px;}
.ws10f{word-spacing:-9.739784px;}
.wsae{word-spacing:-9.628372px;}
.wsc{word-spacing:-9.623872px;}
.ws7a{word-spacing:-9.569057px;}
.wsb{word-spacing:-9.564096px;}
.wsd3{word-spacing:-9.562917px;}
.ws84{word-spacing:-9.556372px;}
.wsdf{word-spacing:-9.490917px;}
.wsd7{word-spacing:-9.366553px;}
.wse{word-spacing:-9.324994px;}
.ws6a{word-spacing:-9.301099px;}
.wsb5{word-spacing:-9.229099px;}
.wse4{word-spacing:-9.163644px;}
.wse0{word-spacing:-8.777462px;}
.wsc9{word-spacing:-8.705462px;}
.wsb6{word-spacing:-8.581098px;}
.wsb7{word-spacing:-8.532126px;}
.wsb8{word-spacing:-8.515643px;}
.ws7b{word-spacing:-8.312734px;}
.ws11f{word-spacing:-8.116370px;}
.wsc1{word-spacing:-8.050916px;}
.ws115{word-spacing:-7.920007px;}
.ws7c{word-spacing:-7.730188px;}
.ws9b{word-spacing:-7.664734px;}
.ws2{word-spacing:-7.292623px;}
.wsd4{word-spacing:-7.265461px;}
.ws11b{word-spacing:-7.125568px;}
.ws86{word-spacing:-6.940182px;}
.ws116{word-spacing:-6.938188px;}
.ws10b{word-spacing:-6.751557px;}
.wsd5{word-spacing:-6.748369px;}
.wsba{word-spacing:-6.610915px;}
.ws96{word-spacing:-6.101207px;}
.ws87{word-spacing:-6.021823px;}
.wsdd{word-spacing:-5.825459px;}
.wsdb{word-spacing:-5.760005px;}
.ws88{word-spacing:-5.635641px;}
.wsdc{word-spacing:-5.373823px;}
.ws97{word-spacing:-5.301823px;}
.ws11e{word-spacing:-5.040004px;}
.ws99{word-spacing:-4.981095px;}
.ws98{word-spacing:-4.915640px;}
.ws3{word-spacing:-4.423394px;}
.ws4{word-spacing:-4.363619px;}
.ws6d{word-spacing:-4.058185px;}
.ws1d{word-spacing:-3.652367px;}
.wse2{word-spacing:-3.600003px;}
.wse3{word-spacing:-3.410185px;}
.ws91{word-spacing:-3.351949px;}
.ws42{word-spacing:-3.213821px;}
.ws41{word-spacing:-3.196529px;}
.ws92{word-spacing:-2.945457px;}
.ws7f{word-spacing:-2.867598px;}
.ws93{word-spacing:-2.755639px;}
.ws94{word-spacing:-1.505456px;}
.ws48{word-spacing:-0.739463px;}
.ws6c{word-spacing:-0.071731px;}
.ws24{word-spacing:-0.065455px;}
.ws7{word-spacing:-0.059776px;}
.wsed{word-spacing:-0.053798px;}
.ws19{word-spacing:-0.047821px;}
.ws80{word-spacing:-0.035866px;}
.ws6b{word-spacing:-0.018142px;}
.ws15{word-spacing:-0.017549px;}
.ws62{word-spacing:-0.012142px;}
.ws118{word-spacing:-0.003888px;}
.ws28{word-spacing:0.000000px;}
.ws1b{word-spacing:0.013091px;}
.ws65{word-spacing:0.078546px;}
.ws39{word-spacing:0.209455px;}
.ws55{word-spacing:0.340364px;}
.ws76{word-spacing:0.405819px;}
.ws111{word-spacing:0.994910px;}
.ws83{word-spacing:2.565820px;}
.wsc6{word-spacing:3.357042px;}
.ws3f{word-spacing:3.619445px;}
.ws77{word-spacing:3.634824px;}
.ws54{word-spacing:3.656042px;}
.ws51{word-spacing:3.658142px;}
.ws33{word-spacing:3.658148px;}
.ws67{word-spacing:3.659336px;}
.ws47{word-spacing:3.662042px;}
.wsd{word-spacing:3.685860px;}
.ws8d{word-spacing:3.882752px;}
.wsca{word-spacing:5.831765px;}
.wsb1{word-spacing:7.168824px;}
.ws9a{word-spacing:7.620001px;}
.ws5{word-spacing:9.635827px;}
.ws66{word-spacing:11.074918px;}
.ws45{word-spacing:12.842193px;}
.wsaf{word-spacing:13.848151px;}
.wsfd{word-spacing:15.278746px;}
.wsfe{word-spacing:15.296763px;}
.wsff{word-spacing:15.332544px;}
.wsf1{word-spacing:18.345254px;}
.wsfa{word-spacing:18.359157px;}
.wsfb{word-spacing:18.364946px;}
.wsf0{word-spacing:18.399053px;}
.ws1{word-spacing:23.312640px;}
.ws79{word-spacing:25.302010px;}
.ws8c{word-spacing:26.818191px;}
.ws104{word-spacing:28.938151px;}
.ws0{word-spacing:31.091012px;}
.wsea{word-spacing:34.298210px;}
.wsa4{word-spacing:41.842920px;}
.ws10{word-spacing:48.418425px;}
.ws81{word-spacing:54.372151px;}
.wsa3{word-spacing:55.123077px;}
.wsa2{word-spacing:55.125058px;}
.wsa7{word-spacing:55.620600px;}
.wsa5{word-spacing:56.786820px;}
.wsa0{word-spacing:59.757760px;}
.wsee{word-spacing:71.659469px;}
.wsef{word-spacing:71.672763px;}
.wsf3{word-spacing:71.678763px;}
.wsf2{word-spacing:71.691629px;}
.wsec{word-spacing:85.431859px;}
.wsa9{word-spacing:93.690600px;}
.wsaa{word-spacing:137.543656px;}
.wsa8{word-spacing:152.487556px;}
.wsf7{word-spacing:156.596206px;}
.wsf9{word-spacing:157.964206px;}
.wsfc{word-spacing:158.597683px;}
.wsa6{word-spacing:163.665593px;}
.wsf5{word-spacing:170.420206px;}
.wsf8{word-spacing:183.686206px;}
.wsf6{word-spacing:205.580206px;}
.wsf4{word-spacing:228.804595px;}
.ws52{word-spacing:509.367697px;}
.ws106{word-spacing:665.599530px;}
.wsb3{word-spacing:666.325530px;}
.ws101{word-spacing:672.775530px;}
.ws105{word-spacing:748.460112px;}
.ws8b{word-spacing:776.359530px;}
.ws89{word-spacing:893.954118px;}
.ws7d{word-spacing:943.940118px;}
._28{margin-left:-34.363665px;}
._10{margin-left:-32.269118px;}
._e{margin-left:-18.227636px;}
._27{margin-left:-11.064496px;}
._0{margin-left:-8.160100px;}
._24{margin-left:-6.742733px;}
._8{margin-left:-5.563641px;}
._a{margin-left:-4.447334px;}
._2{margin-left:-2.788895px;}
._4{margin-left:-1.494390px;}
._3{width:1.613941px;}
._1{width:2.685602px;}
._26{width:4.263838px;}
._46{width:5.534410px;}
._15{width:6.724760px;}
._16{width:10.930918px;}
._14{width:14.447390px;}
._d{width:16.445305px;}
._44{width:19.629223px;}
._5{width:20.942138px;}
._7{width:22.829360px;}
._12{width:25.069112px;}
._25{width:27.360932px;}
._11{width:29.006557px;}
._13{width:30.466978px;}
._18{width:32.727300px;}
._45{width:62.103568px;}
._f{width:65.447422px;}
._29{width:68.727330px;}
._35{width:72.658811px;}
._9{width:80.697600px;}
._3d{width:83.392529px;}
._39{width:84.670440px;}
._40{width:92.371853px;}
._b{width:96.836850px;}
._41{width:99.182229px;}
._1e{width:101.140315px;}
._38{width:102.366390px;}
._3e{width:112.712646px;}
._19{width:116.084215px;}
._2a{width:125.188877px;}
._42{width:133.151040px;}
._2f{width:137.737154px;}
._34{width:138.854866px;}
._3c{width:143.426534px;}
._2e{width:149.559552px;}
._37{width:157.252723px;}
._30{width:158.866945px;}
._3b{width:160.206637px;}
._43{width:163.781382px;}
._1f{width:167.371680px;}
._32{width:170.540928px;}
._33{width:172.693134px;}
._3a{width:174.037824px;}
._21{width:178.609493px;}
._23{width:182.315580px;}
._2d{width:184.420915px;}
._2b{width:185.819674px;}
._36{width:187.859015px;}
._31{width:190.984320px;}
._1c{width:193.553393px;}
._1a{width:197.319256px;}
._20{width:201.264445px;}
._2c{width:204.756710px;}
._1b{width:216.148570px;}
._22{width:219.997302px;}
._1d{width:234.945102px;}
._3f{width:325.306960px;}
._c{width:864.789051px;}
._6{width:869.560160px;}
._17{width:1022.570991px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y27{bottom:61.467000px;}
.yaa{bottom:106.299000px;}
.y16b{bottom:110.167500px;}
.y11e{bottom:114.711000px;}
.yfe{bottom:115.219500px;}
.y143{bottom:119.998500px;}
.y1be{bottom:125.406000px;}
.y1fc{bottom:126.622500px;}
.yfd{bottom:135.543000px;}
.y26{bottom:136.413000px;}
.ya9{bottom:138.786000px;}
.y142{bottom:140.322000px;}
.y186{bottom:140.530500px;}
.y82{bottom:144.460500px;}
.y1fb{bottom:146.947500px;}
.y11d{bottom:148.485000px;}
.y1bc{bottom:148.887000px;}
.y16a{bottom:150.816000px;}
.y1bd{bottom:152.001000px;}
.y25{bottom:156.736500px;}
.y1b9{bottom:157.971000px;}
.y54{bottom:158.263500px;}
.y53{bottom:163.320000px;}
.y81{bottom:164.785500px;}
.y1fa{bottom:167.271000px;}
.yfc{bottom:169.315500px;}
.y169{bottom:171.139500px;}
.ya8{bottom:171.274500px;}
.y1bb{bottom:175.608000px;}
.y1ba{bottom:176.137500px;}
.y24{bottom:177.060000px;}
.y185{bottom:177.291000px;}
.y141{bottom:180.969000px;}
.y1db{bottom:181.903500px;}
.y11c{bottom:182.257500px;}
.y80{bottom:185.109000px;}
.y1f9{bottom:187.594500px;}
.y168{bottom:191.463000px;}
.y184{bottom:193.729500px;}
.y1b8{bottom:194.365500px;}
.y23{bottom:197.383500px;}
.y52{bottom:200.082000px;}
.y11b{bottom:202.581000px;}
.yfb{bottom:203.089500px;}
.ya7{bottom:203.761500px;}
.y1f8{bottom:207.918000px;}
.y183{bottom:210.168000px;}
.y1b7{bottom:214.690500px;}
.yda{bottom:214.771500px;}
.y1da{bottom:215.676000px;}
.y22{bottom:217.708500px;}
.y7f{bottom:217.755000px;}
.yd9{bottom:218.817000px;}
.y140{bottom:221.617500px;}
.y7e{bottom:223.527000px;}
.y182{bottom:226.606500px;}
.y1b6{bottom:227.457000px;}
.y1f7{bottom:228.241500px;}
.y167{bottom:232.111500px;}
.y51{bottom:233.856000px;}
.yfa{bottom:233.980500px;}
.y1b3{bottom:234.747000px;}
.y11a{bottom:236.355000px;}
.yd7{bottom:236.686500px;}
.y21{bottom:238.032000px;}
.ya6{bottom:238.159500px;}
.y1b5{bottom:238.383000px;}
.yd6{bottom:239.140500px;}
.y13f{bottom:241.941000px;}
.y181{bottom:243.045000px;}
.y1b2{bottom:244.155000px;}
.yd8{bottom:245.079000px;}
.y1f6{bottom:248.566500px;}
.y1b4{bottom:249.142500px;}
.y1d9{bottom:249.450000px;}
.y4f{bottom:254.179500px;}
.y119{bottom:256.678500px;}
.y7d{bottom:256.800000px;}
.ya5{bottom:258.483000px;}
.y180{bottom:259.483500px;}
.y50{bottom:260.118000px;}
.y13e{bottom:262.264500px;}
.y1af{bottom:265.681500px;}
.y1b1{bottom:267.673500px;}
.yd5{bottom:268.869000px;}
.y20{bottom:268.923000px;}
.y1ae{bottom:270.339000px;}
.y166{bottom:272.758500px;}
.yd4{bottom:272.914500px;}
.y4e{bottom:274.503000px;}
.y17f{bottom:275.922000px;}
.y1b0{bottom:276.277500px;}
.y7c{bottom:277.123500px;}
.yf9{bottom:277.800000px;}
.y1f5{bottom:279.457500px;}
.y13d{bottom:282.588000px;}
.y1d8{bottom:283.222500px;}
.ya4{bottom:289.375500px;}
.y118{bottom:290.452500px;}
.y17e{bottom:292.360500px;}
.y165{bottom:293.082000px;}
.y7b{bottom:297.447000px;}
.yf8{bottom:298.123500px;}
.y1ac{bottom:300.877500px;}
.y13c{bottom:302.913000px;}
.yd3{bottom:303.805500px;}
.y1ad{bottom:303.991500px;}
.y17d{bottom:308.799000px;}
.y1ab{bottom:309.961500px;}
.y117{bottom:310.776000px;}
.y4d{bottom:311.265000px;}
.y1f{bottom:312.742500px;}
.y164{bottom:313.405500px;}
.y1d7{bottom:316.996500px;}
.y1f4{bottom:322.791000px;}
.y13b{bottom:323.236500px;}
.y17c{bottom:325.236000px;}
.ya3{bottom:326.500500px;}
.y7a{bottom:328.339500px;}
.y4c{bottom:331.704000px;}
.yf7{bottom:331.897500px;}
.y1e{bottom:333.066000px;}
.y163{bottom:333.730500px;}
.y17b{bottom:341.674500px;}
.y4b{bottom:342.928500px;}
.y116{bottom:344.548500px;}
.y1aa{bottom:346.723500px;}
.yd2{bottom:347.625000px;}
.yf6{bottom:352.221000px;}
.y1d{bottom:353.389500px;}
.y162{bottom:354.054000px;}
.y1d6{bottom:355.252500px;}
.y1f3{bottom:355.534500px;}
.y17a{bottom:358.113000px;}
.y13a{bottom:363.883500px;}
.y115{bottom:364.873500px;}
.yd1{bottom:365.283000px;}
.y79{bottom:366.514500px;}
.y4a{bottom:367.021500px;}
.yd0{bottom:367.948500px;}
.y1a8{bottom:370.789500px;}
.y78{bottom:372.157500px;}
.y179{bottom:374.551500px;}
.ya2{bottom:377.452500px;}
.y49{bottom:378.246000px;}
.y139{bottom:384.207000px;}
.y1a9{bottom:384.390000px;}
.yf5{bottom:385.995000px;}
.y1d5{bottom:386.145000px;}
.y1c{bottom:387.163500px;}
.y1f2{bottom:388.278000px;}
.y1a5{bottom:388.300500px;}
.y1a4{bottom:389.047500px;}
.y178{bottom:390.990000px;}
.y161{bottom:394.701000px;}
.ya1{bottom:395.110500px;}
.ya0{bottom:397.776000px;}
.y114{bottom:398.646000px;}
.y77{bottom:400.288500px;}
.ycf{bottom:401.722500px;}
.y1a7{bottom:403.599000px;}
.y138{bottom:404.532000px;}
.y76{bottom:405.931500px;}
.yf4{bottom:406.318500px;}
.y48{bottom:406.657500px;}
.y177{bottom:407.428500px;}
.y1a6{bottom:408.082500px;}
.y160{bottom:415.024500px;}
.y47{bottom:417.882000px;}
.y9f{bottom:418.099500px;}
.y113{bottom:418.969500px;}
.ycd{bottom:419.379000px;}
.y1b{bottom:420.936000px;}
.y1f1{bottom:421.021500px;}
.ycc{bottom:422.046000px;}
.y1d4{bottom:423.270000px;}
.y176{bottom:423.867000px;}
.y137{bottom:424.855500px;}
.yce{bottom:427.984500px;}
.y15f{bottom:435.349500px;}
.y1a3{bottom:436.542000px;}
.y75{bottom:439.704000px;}
.yf3{bottom:440.091000px;}
.y175{bottom:440.305500px;}
.y9e{bottom:448.992000px;}
.y1a1{bottom:452.407500px;}
.y112{bottom:452.743500px;}
.y1a2{bottom:452.821500px;}
.ycb{bottom:452.937000px;}
.y1a{bottom:454.710000px;}
.y15e{bottom:455.673000px;}
.y1f0{bottom:456.189000px;}
.y174{bottom:456.744000px;}
.y1a0{bottom:456.867000px;}
.y74{bottom:460.029000px;}
.yf2{bottom:460.416000px;}
.y46{bottom:461.431500px;}
.y136{bottom:465.502500px;}
.y111{bottom:473.067000px;}
.y173{bottom:473.182500px;}
.y1d3{bottom:474.828000px;}
.y1ef{bottom:476.512500px;}
.y45{bottom:481.755000px;}
.y135{bottom:485.826000px;}
.y19f{bottom:487.758000px;}
.y73{bottom:488.158500px;}
.y19{bottom:488.484000px;}
.yc9{bottom:489.589500px;}
.y172{bottom:489.619500px;}
.y9d{bottom:492.204000px;}
.yca{bottom:492.703500px;}
.y71{bottom:493.801500px;}
.yf1{bottom:494.188500px;}
.y1d2{bottom:495.151500px;}
.y15d{bottom:496.320000px;}
.yc6{bottom:498.673500px;}
.y72{bottom:501.114000px;}
.y44{bottom:502.078500px;}
.y134{bottom:506.151000px;}
.y110{bottom:506.841000px;}
.y1ee{bottom:507.403500px;}
.y70{bottom:511.671000px;}
.yf0{bottom:511.846500px;}
.y9c{bottom:512.527500px;}
.y18{bottom:512.728500px;}
.y6f{bottom:514.125000px;}
.y171{bottom:514.267500px;}
.yef{bottom:514.512000px;}
.yc8{bottom:516.310500px;}
.y15c{bottom:516.643500px;}
.yc7{bottom:516.840000px;}
.yc5{bottom:520.968000px;}
.y17{bottom:524.814000px;}
.y19e{bottom:524.884500px;}
.y10f{bottom:527.164500px;}
.y1d1{bottom:528.925500px;}
.y15{bottom:531.352500px;}
.y43{bottom:535.851000px;}
.y15b{bottom:536.968500px;}
.y16{bottom:537.117000px;}
.y9b{bottom:543.087000px;}
.y133{bottom:546.798000px;}
.y6e{bottom:547.899000px;}
.y1d0{bottom:549.249000px;}
.y1ed{bottom:550.737000px;}
.yee{bottom:552.769500px;}
.y15a{bottom:557.292000px;}
.yc4{bottom:558.154500px;}
.y170{bottom:563.643000px;}
.y10e{bottom:563.692500px;}
.y132{bottom:567.121500px;}
.y1ec{bottom:571.062000px;}
.y42{bottom:572.614500px;}
.yed{bottom:573.093000px;}
.yc3{bottom:573.820500px;}
.yc2{bottom:574.350000px;}
.y9a{bottom:575.574000px;}
.yc0{bottom:578.478000px;}
.y6d{bottom:578.790000px;}
.y1cf{bottom:580.141500px;}
.y14{bottom:581.650500px;}
.y159{bottom:588.183000px;}
.yc1{bottom:590.041500px;}
.y19d{bottom:594.069000px;}
.y16f{bottom:600.768000px;}
.y13{bottom:601.974000px;}
.y1eb{bottom:603.805500px;}
.y131{bottom:607.770000px;}
.y99{bottom:608.061000px;}
.ybf{bottom:609.370500px;}
.y41{bottom:609.376500px;}
.yec{bottom:609.621000px;}
.y10d{bottom:615.250500px;}
.y6c{bottom:615.916500px;}
.y12{bottom:622.297500px;}
.y1ce{bottom:623.959500px;}
.y1ea{bottom:624.129000px;}
.y3e{bottom:627.034500px;}
.y130{bottom:628.093500px;}
.y40{bottom:628.953000px;}
.y3d{bottom:629.700000px;}
.y19c{bottom:630.831000px;}
.y158{bottom:632.002500px;}
.y10c{bottom:635.574000px;}
.y3f{bottom:635.638500px;}
.y98{bottom:638.619000px;}
.y1cd{bottom:644.284500px;}
.ybe{bottom:646.497000px;}
.y19b{bottom:647.269500px;}
.y12f{bottom:648.417000px;}
.y3c{bottom:650.023500px;}
.y157{bottom:652.326000px;}
.y1e9{bottom:656.872500px;}
.y11{bottom:658.825500px;}
.y97{bottom:658.942500px;}
.yeb{bottom:661.179000px;}
.y19a{bottom:663.708000px;}
.y1cc{bottom:664.608000px;}
.y6b{bottom:667.474500px;}
.y12e{bottom:668.740500px;}
.y10b{bottom:672.102000px;}
.y156{bottom:672.649500px;}
.y1e8{bottom:677.196000px;}
.yea{bottom:681.502500px;}
.y3b{bottom:683.797500px;}
.y6a{bottom:685.132500px;}
.y69{bottom:687.798000px;}
.y199{bottom:688.356000px;}
.y12d{bottom:689.064000px;}
.y96{bottom:689.500500px;}
.y1cb{bottom:691.656000px;}
.y155{bottom:692.973000px;}
.ybd{bottom:698.053500px;}
.y3a{bottom:704.121000px;}
.y1e7{bottom:708.088500px;}
.y10{bottom:710.383500px;}
.y1ca{bottom:711.979500px;}
.ye9{bottom:712.395000px;}
.y154{bottom:713.298000px;}
.y68{bottom:718.690500px;}
.y95{bottom:720.058500px;}
.y10a{bottom:723.660000px;}
.yf{bottom:728.316000px;}
.y12c{bottom:729.712500px;}
.ybc{bottom:731.827500px;}
.y153{bottom:733.621500px;}
.y39{bottom:735.012000px;}
.y198{bottom:737.730000px;}
.y94{bottom:740.383500px;}
.y1c9{bottom:742.872000px;}
.y109{bottom:743.983500px;}
.ye{bottom:746.248500px;}
.y12b{bottom:750.036000px;}
.y1e6{bottom:751.420500px;}
.y152{bottom:753.945000px;}
.ye8{bottom:756.213000px;}
.y67{bottom:762.508500px;}
.yd{bottom:764.182500px;}
.y108{bottom:764.307000px;}
.ybb{bottom:765.601500px;}
.y12a{bottom:770.359500px;}
.y93{bottom:771.274500px;}
.y1e5{bottom:771.745500px;}
.y38{bottom:772.138500px;}
.y151{bottom:774.268500px;}
.y1c8{bottom:779.997000px;}
.y65{bottom:780.166500px;}
.yc{bottom:782.115000px;}
.y64{bottom:782.832000px;}
.y66{bottom:788.770500px;}
.ye7{bottom:789.987000px;}
.y129{bottom:790.683000px;}
.y1e4{bottom:792.069000px;}
.y150{bottom:794.592000px;}
.yba{bottom:796.492500px;}
.y107{bottom:798.081000px;}
.y197{bottom:799.176000px;}
.yb{bottom:800.047500px;}
.y92{bottom:808.401000px;}
.y1e3{bottom:812.392500px;}
.y14f{bottom:814.917000px;}
.ya{bottom:817.980000px;}
.y128{bottom:821.575500px;}
.y37{bottom:823.696500px;}
.ye6{bottom:823.759500px;}
.yb9{bottom:827.982000px;}
.y1c7{bottom:831.555000px;}
.y106{bottom:831.855000px;}
.y14e{bottom:835.240500px;}
.y8{bottom:835.912500px;}
.y196{bottom:835.938000px;}
.y9{bottom:841.336500px;}
.y36{bottom:844.020000px;}
.y63{bottom:845.584500px;}
.y1e2{bottom:848.920500px;}
.y1c6{bottom:851.880000px;}
.y195{bottom:852.376500px;}
.y91{bottom:853.708500px;}
.y7{bottom:853.845000px;}
.y16e{bottom:855.564000px;}
.ye5{bottom:857.533500px;}
.y127{bottom:858.700500px;}
.y90{bottom:859.351500px;}
.y105{bottom:865.627500px;}
.y62{bottom:867.879000px;}
.y194{bottom:868.815000px;}
.y6{bottom:871.779000px;}
.y14d{bottom:875.887500px;}
.yb8{bottom:877.491000px;}
.y35{bottom:877.794000px;}
.ye4{bottom:877.857000px;}
.y193{bottom:885.253500px;}
.y1c5{bottom:885.652500px;}
.y8f{bottom:892.255500px;}
.y14c{bottom:896.211000px;}
.y61{bottom:898.084500px;}
.y34{bottom:898.117500px;}
.y5{bottom:899.050500px;}
.y104{bottom:899.401500px;}
.y1e1{bottom:899.992500px;}
.y192{bottom:901.692000px;}
.y1c4{bottom:905.976000px;}
.ye3{bottom:908.749500px;}
.y126{bottom:910.258500px;}
.yb7{bottom:914.700000px;}
.y16d{bottom:916.536000px;}
.y8e{bottom:917.062500px;}
.y191{bottom:918.129000px;}
.y60{bottom:918.408000px;}
.y1e0{bottom:920.317500px;}
.y125{bottom:930.582000px;}
.y33{bottom:931.890000px;}
.yb6{bottom:932.632500px;}
.y103{bottom:933.174000px;}
.y190{bottom:934.567500px;}
.y14b{bottom:936.859500px;}
.y5e{bottom:938.731500px;}
.y1c3{bottom:939.750000px;}
.y5f{bottom:944.670000px;}
.y8d{bottom:949.966500px;}
.yb5{bottom:950.565000px;}
.y18f{bottom:951.006000px;}
.ye2{bottom:952.567500px;}
.y1df{bottom:955.483500px;}
.y14a{bottom:957.183000px;}
.y4{bottom:959.461500px;}
.y1c2{bottom:960.073500px;}
.y32{bottom:961.927500px;}
.y102{bottom:964.066500px;}
.y124{bottom:964.356000px;}
.y18e{bottom:967.444500px;}
.yb4{bottom:968.499000px;}
.y8c{bottom:970.290000px;}
.ye1{bottom:972.891000px;}
.y5d{bottom:975.495000px;}
.y149{bottom:977.506500px;}
.y31{bottom:982.251000px;}
.y18d{bottom:983.883000px;}
.yb3{bottom:986.431500px;}
.y1de{bottom:988.227000px;}
.y1c1{bottom:990.966000px;}
.y3{bottom:996.150000px;}
.y148{bottom:997.830000px;}
.y123{bottom:998.130000px;}
.y30{bottom:999.909000px;}
.y18c{bottom:1000.321500px;}
.y8b{bottom:1000.849500px;}
.y2f{bottom:1002.576000px;}
.ye0{bottom:1003.861500px;}
.yb2{bottom:1004.364000px;}
.y101{bottom:1007.884500px;}
.y5c{bottom:1012.257000px;}
.ydf{bottom:1015.947000px;}
.y18b{bottom:1016.760000px;}
.y16c{bottom:1018.155000px;}
.y1dd{bottom:1020.970500px;}
.yb1{bottom:1022.296500px;}
.ydd{bottom:1022.485500px;}
.y89{bottom:1027.690500px;}
.yde{bottom:1028.250000px;}
.y2e{bottom:1031.466000px;}
.y122{bottom:1031.902500px;}
.y5b{bottom:1032.580500px;}
.y18a{bottom:1033.198500px;}
.y1c0{bottom:1034.784000px;}
.y147{bottom:1038.478500px;}
.yb0{bottom:1040.229000px;}
.y8a{bottom:1041.291000px;}
.y2{bottom:1041.616500px;}
.y100{bottom:1041.658500px;}
.y2d{bottom:1043.551500px;}
.y86{bottom:1045.948500px;}
.y189{bottom:1049.637000px;}
.y2b{bottom:1050.090000px;}
.y5a{bottom:1052.904000px;}
.y1dc{bottom:1053.714000px;}
.y1bf{bottom:1055.107500px;}
.y2c{bottom:1055.854500px;}
.yaf{bottom:1058.161500px;}
.y146{bottom:1058.802000px;}
.y88{bottom:1060.500000px;}
.y87{bottom:1064.983500px;}
.y121{bottom:1065.676500px;}
.y188{bottom:1066.075500px;}
.ydc{bottom:1072.080000px;}
.y1{bottom:1074.493500px;}
.yff{bottom:1075.432500px;}
.yae{bottom:1076.095500px;}
.y145{bottom:1079.125500px;}
.y59{bottom:1081.035000px;}
.y2a{bottom:1083.244500px;}
.y120{bottom:1086.000000px;}
.y58{bottom:1086.678000px;}
.y85{bottom:1088.881500px;}
.y187{bottom:1090.722000px;}
.yad{bottom:1094.028000px;}
.y144{bottom:1099.449000px;}
.ydb{bottom:1102.971000px;}
.y29{bottom:1103.569500px;}
.y83{bottom:1104.747000px;}
.y84{bottom:1105.159500px;}
.y57{bottom:1106.539500px;}
.y55{bottom:1109.205000px;}
.yac{bottom:1111.960500px;}
.y56{bottom:1115.143500px;}
.y11f{bottom:1119.774000px;}
.yab{bottom:1138.102500px;}
.y28{bottom:1140.097500px;}
.h26{height:2.391024px;}
.h2b{height:14.257496px;}
.h6{height:19.456902px;}
.h1b{height:22.236579px;}
.h3e{height:24.871000px;}
.h10{height:33.187496px;}
.hc{height:35.865450px;}
.h34{height:40.348800px;}
.h4{height:42.082022px;}
.h12{height:44.296950px;}
.h5{height:44.831700px;}
.h33{height:45.425492px;}
.h1f{height:46.080038px;}
.h35{height:46.704624px;}
.h9{height:49.090950px;}
.h7{height:49.473619px;}
.h2a{height:49.479619px;}
.h13{height:52.078950px;}
.h3d{height:52.719450px;}
.h3{height:53.798400px;}
.he{height:54.458227px;}
.h11{height:56.941496px;}
.h21{height:59.215496px;}
.h14{height:59.613450px;}
.h16{height:59.619450px;}
.h20{height:61.635450px;}
.h29{height:61.641450px;}
.h36{height:62.371496px;}
.h24{height:62.377496px;}
.h15{height:62.889450px;}
.h1a{height:62.895450px;}
.h3b{height:63.019496px;}
.h38{height:63.025496px;}
.h8{height:64.557900px;}
.h1c{height:65.035496px;}
.h31{height:65.272950px;}
.h27{height:65.703450px;}
.h28{height:67.720950px;}
.h1e{height:67.767450px;}
.h39{height:67.890579px;}
.h37{height:68.050950px;}
.h32{height:70.640227px;}
.hb{height:71.662950px;}
.h3f{height:72.178950px;}
.h3a{height:72.970950px;}
.h2{height:73.027727px;}
.h22{height:73.651000px;}
.h25{height:74.773496px;}
.hf{height:77.030227px;}
.h23{height:77.546227px;}
.h2c{height:79.537496px;}
.h2e{height:82.215450px;}
.h1d{height:83.121450px;}
.h2f{height:85.426950px;}
.h40{height:86.722950px;}
.h41{height:89.728950px;}
.h17{height:93.370950px;}
.h18{height:93.988950px;}
.ha{height:106.029024px;}
.h30{height:117.868950px;}
.hd{height:123.586950px;}
.h3c{height:127.189000px;}
.h19{height:138.268950px;}
.h2d{height:149.689496px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3e{left:105.045000px;}
.x1e{left:106.299000px;}
.xa7{left:110.080500px;}
.x1{left:115.240500px;}
.xa6{left:120.699000px;}
.xad{left:126.300000px;}
.x1f{left:131.704500px;}
.xc6{left:139.935000px;}
.x10{left:145.459500px;}
.x7{left:147.208500px;}
.x11{left:151.237500px;}
.xcd{left:158.643000px;}
.xce{left:160.311000px;}
.x12{left:163.530000px;}
.xc5{left:168.304500px;}
.x6{left:169.624500px;}
.xcb{left:172.627500px;}
.xc7{left:175.026000px;}
.x13{left:178.407000px;}
.x9a{left:182.302500px;}
.x14{left:186.657000px;}
.x15{left:192.435000px;}
.x16{left:199.906500px;}
.x6e{left:201.130500px;}
.x23{left:202.561500px;}
.xbf{left:203.736000px;}
.xa9{left:209.503500px;}
.x24{left:216.141000px;}
.xb8{left:217.789500px;}
.xae{left:226.024500px;}
.x2{left:228.343500px;}
.x25{left:233.160000px;}
.x8b{left:236.914500px;}
.xaa{left:240.864000px;}
.xcc{left:242.139000px;}
.xc8{left:243.753000px;}
.x29{left:244.954500px;}
.xca{left:247.348500px;}
.x6f{left:249.795000px;}
.x80{left:251.491500px;}
.x70{left:256.128000px;}
.x26{left:259.857000px;}
.x58{left:261.604500px;}
.x8c{left:266.301000px;}
.x71{left:267.960000px;}
.xdd{left:269.913000px;}
.xa2{left:275.679000px;}
.xc9{left:278.116500px;}
.xde{left:279.598500px;}
.x59{left:286.150500px;}
.x81{left:295.675500px;}
.x5a{left:300.405000px;}
.x56{left:303.609000px;}
.x72{left:306.930000px;}
.x49{left:310.366500px;}
.x73{left:313.261500px;}
.xb1{left:314.505000px;}
.x5b{left:316.711500px;}
.x27{left:319.888500px;}
.x57{left:323.494500px;}
.xda{left:327.547500px;}
.xa1{left:332.110500px;}
.x28{left:333.192000px;}
.x6d{left:334.327500px;}
.x55{left:338.013000px;}
.x31{left:339.843000px;}
.x20{left:340.888500px;}
.x89{left:343.087500px;}
.x63{left:344.169000px;}
.x4a{left:349.401000px;}
.x3{left:352.593000px;}
.x54{left:353.818500px;}
.x4b{left:355.891500px;}
.x3d{left:358.099500px;}
.xd6{left:359.986500px;}
.x99{left:361.728000px;}
.xdb{left:365.439000px;}
.x4c{left:370.911000px;}
.x74{left:373.813500px;}
.x6c{left:375.973500px;}
.x82{left:380.235000px;}
.xb3{left:382.278000px;}
.x7a{left:383.545500px;}
.x34{left:394.693500px;}
.x83{left:395.725500px;}
.x64{left:397.198500px;}
.x4{left:399.238500px;}
.xbe{left:400.239000px;}
.x2a{left:403.939500px;}
.x35{left:409.576500px;}
.x5{left:412.038000px;}
.x7b{left:413.262000px;}
.x32{left:414.411000px;}
.x21{left:415.458000px;}
.x9f{left:416.524500px;}
.x75{left:419.331000px;}
.x33{left:422.817000px;}
.x22{left:423.864000px;}
.x84{left:428.070000px;}
.x96{left:430.878000px;}
.x42{left:435.124500px;}
.x65{left:436.231500px;}
.xa0{left:439.077000px;}
.xcf{left:440.931000px;}
.x2e{left:442.366500px;}
.x4d{left:444.493500px;}
.x5c{left:446.592000px;}
.xd7{left:447.900000px;}
.x66{left:449.733000px;}
.x4e{left:452.839500px;}
.x7c{left:455.145000px;}
.x93{left:457.135500px;}
.x85{left:459.106500px;}
.xd8{left:461.220000px;}
.x3f{left:462.964500px;}
.x8a{left:464.131500px;}
.xb2{left:466.435500px;}
.x5d{left:468.808500px;}
.xd0{left:471.081000px;}
.x1c{left:475.342500px;}
.xdc{left:484.134000px;}
.x1d{left:485.367000px;}
.x2d{left:487.090500px;}
.x8{left:488.127000px;}
.xd9{left:494.907000px;}
.x9{left:496.377000px;}
.x43{left:497.739000px;}
.x67{left:499.122000px;}
.xd1{left:502.017000px;}
.x40{left:503.815500px;}
.xaf{left:506.268000px;}
.xd2{left:510.249000px;}
.x68{left:514.008000px;}
.x86{left:519.724500px;}
.x4f{left:520.936500px;}
.xb9{left:522.141000px;}
.x44{left:527.481000px;}
.x17{left:529.240500px;}
.x76{left:530.796000px;}
.xe1{left:534.627000px;}
.xba{left:536.476500px;}
.x97{left:537.897000px;}
.x5e{left:541.293000px;}
.x2f{left:543.756000px;}
.x50{left:545.383500px;}
.x77{left:548.008500px;}
.x94{left:550.200000px;}
.x45{left:552.025500px;}
.x46{left:558.300000px;}
.xc4{left:561.039000px;}
.x18{left:564.888000px;}
.x9b{left:566.847000px;}
.xe0{left:568.515000px;}
.x19{left:570.666000px;}
.xd3{left:578.758500px;}
.x5f{left:580.327500px;}
.x78{left:581.392500px;}
.x1a{left:582.520500px;}
.x60{left:586.563000px;}
.x47{left:589.032000px;}
.x30{left:590.502000px;}
.x95{left:592.264500px;}
.x79{left:595.366500px;}
.x61{left:598.900500px;}
.x69{left:602.884500px;}
.x48{left:603.907500px;}
.xbc{left:605.908500px;}
.xd4{left:608.908500px;}
.xc0{left:614.100000px;}
.x51{left:615.106500px;}
.xa{left:618.346500px;}
.xb4{left:619.674000px;}
.x41{left:621.213000px;}
.xd5{left:627.669000px;}
.x2b{left:631.548000px;}
.xb{left:633.015000px;}
.xbd{left:634.113000px;}
.xc1{left:635.296500px;}
.xc{left:638.943000px;}
.x9c{left:642.766500px;}
.x98{left:644.479500px;}
.xd{left:647.913000px;}
.x7d{left:649.198500px;}
.x2c{left:652.681500px;}
.xa8{left:656.344500px;}
.x52{left:658.765500px;}
.xb5{left:663.615000px;}
.x6a{left:664.657500px;}
.xa5{left:667.174500px;}
.x36{left:671.961000px;}
.x53{left:674.664000px;}
.x8d{left:675.769500px;}
.xc2{left:677.076000px;}
.xe{left:679.068000px;}
.xe2{left:681.834000px;}
.x37{left:684.186000px;}
.x7e{left:688.231500px;}
.x8e{left:691.969500px;}
.x38{left:693.226500px;}
.xf{left:695.509500px;}
.x8f{left:699.243000px;}
.x39{left:701.409000px;}
.xb6{left:702.649500px;}
.x1b{left:703.860000px;}
.x7f{left:707.983500px;}
.x3a{left:709.500000px;}
.x3b{left:716.773500px;}
.x87{left:721.477500px;}
.xb7{left:722.593500px;}
.x3c{left:724.864500px;}
.xbb{left:731.880000px;}
.xa3{left:733.147500px;}
.x88{left:736.465500px;}
.xb0{left:738.274500px;}
.x9d{left:741.474000px;}
.xa4{left:744.124500px;}
.xdf{left:749.104500px;}
.xc3{left:751.939500px;}
.xab{left:755.293500px;}
.x9e{left:761.875500px;}
.x90{left:768.006000px;}
.xac{left:769.552500px;}
.x62{left:770.907000px;}
.x91{left:776.023500px;}
.x6b{left:778.935000px;}
.x92{left:784.206000px;}
@media print{
.v2d{vertical-align:-50.133333pt;}
.v10{vertical-align:-21.114667pt;}
.v2b{vertical-align:-20.208000pt;}
.v20{vertical-align:-17.893333pt;}
.v1b{vertical-align:-16.826667pt;}
.v13{vertical-align:-14.997333pt;}
.v23{vertical-align:-13.642667pt;}
.v3{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.968000pt;}
.v24{vertical-align:-5.317333pt;}
.v8{vertical-align:-4.261333pt;}
.v22{vertical-align:-3.253333pt;}
.v0{vertical-align:0.000000pt;}
.v9{vertical-align:2.656000pt;}
.v21{vertical-align:6.314667pt;}
.v1a{vertical-align:7.834667pt;}
.v14{vertical-align:9.152000pt;}
.v15{vertical-align:11.797333pt;}
.v1c{vertical-align:14.677333pt;}
.v17{vertical-align:15.850667pt;}
.v25{vertical-align:16.853333pt;}
.ve{vertical-align:17.978667pt;}
.v2{vertical-align:19.280000pt;}
.v7{vertical-align:21.114667pt;}
.v11{vertical-align:22.906667pt;}
.va{vertical-align:24.021333pt;}
.v16{vertical-align:25.946667pt;}
.v2c{vertical-align:26.837333pt;}
.vd{vertical-align:28.309333pt;}
.v19{vertical-align:31.653333pt;}
.v27{vertical-align:33.450667pt;}
.v1d{vertical-align:34.720000pt;}
.v18{vertical-align:36.965333pt;}
.vb{vertical-align:39.360000pt;}
.v26{vertical-align:40.581333pt;}
.vf{vertical-align:42.005333pt;}
.v12{vertical-align:43.360000pt;}
.v6{vertical-align:46.154667pt;}
.v5{vertical-align:63.466667pt;}
.v28{vertical-align:66.165333pt;}
.vc{vertical-align:79.269333pt;}
.v2a{vertical-align:80.805333pt;}
.v29{vertical-align:90.949333pt;}
.v4{vertical-align:92.122667pt;}
.v1f{vertical-align:103.557333pt;}
.v1e{vertical-align:120.384000pt;}
.ls16{letter-spacing:0.000000pt;}
.ls92{letter-spacing:0.000111pt;}
.ls4{letter-spacing:0.000501pt;}
.lsd2{letter-spacing:0.000693pt;}
.lsde{letter-spacing:0.000891pt;}
.ls8e{letter-spacing:0.001087pt;}
.ls8a{letter-spacing:0.001145pt;}
.lscc{letter-spacing:0.001249pt;}
.ls71{letter-spacing:0.001423pt;}
.lsa3{letter-spacing:0.001435pt;}
.lsa4{letter-spacing:0.001440pt;}
.ls0{letter-spacing:0.001659pt;}
.ls76{letter-spacing:0.001877pt;}
.ls8{letter-spacing:0.001910pt;}
.lsc4{letter-spacing:0.001916pt;}
.ls94{letter-spacing:0.002091pt;}
.lsf2{letter-spacing:0.002384pt;}
.ls3d{letter-spacing:0.002389pt;}
.lsc1{letter-spacing:0.002395pt;}
.ls67{letter-spacing:0.002397pt;}
.ls35{letter-spacing:0.002399pt;}
.lsf{letter-spacing:0.002400pt;}
.ls13{letter-spacing:0.002405pt;}
.lsc6{letter-spacing:0.002411pt;}
.lsad{letter-spacing:0.002491pt;}
.ls74{letter-spacing:0.002497pt;}
.lsee{letter-spacing:0.002681pt;}
.ls49{letter-spacing:0.002717pt;}
.ls91{letter-spacing:0.003149pt;}
.ls7d{letter-spacing:0.003370pt;}
.lse4{letter-spacing:0.003461pt;}
.ls6c{letter-spacing:0.003558pt;}
.ls22{letter-spacing:0.003608pt;}
.ls68{letter-spacing:0.003980pt;}
.ls5d{letter-spacing:0.004025pt;}
.ls9b{letter-spacing:0.006479pt;}
.ls29{letter-spacing:0.007244pt;}
.ls6a{letter-spacing:0.215727pt;}
.ls5e{letter-spacing:1.130350pt;}
.lsa7{letter-spacing:1.280001pt;}
.lse5{letter-spacing:1.397757pt;}
.lsd3{letter-spacing:1.403090pt;}
.ls66{letter-spacing:1.617416pt;}
.ls3{letter-spacing:1.671842pt;}
.ls2c{letter-spacing:1.827854pt;}
.ls32{letter-spacing:1.833187pt;}
.ls9c{letter-spacing:2.652701pt;}
.ls14{letter-spacing:2.653258pt;}
.ls6d{letter-spacing:2.654647pt;}
.ls93{letter-spacing:2.656473pt;}
.ls5{letter-spacing:2.656631pt;}
.ls8d{letter-spacing:2.657087pt;}
.lsba{letter-spacing:2.658034pt;}
.lscd{letter-spacing:2.658091pt;}
.ls44{letter-spacing:2.658591pt;}
.lsa6{letter-spacing:2.659149pt;}
.lsd0{letter-spacing:2.719435pt;}
.lsd4{letter-spacing:3.319489pt;}
.lse7{letter-spacing:3.324822pt;}
.ls82{letter-spacing:3.352213pt;}
.lsae{letter-spacing:3.556327pt;}
.lsa1{letter-spacing:3.715086pt;}
.ls46{letter-spacing:3.786350pt;}
.ls7{letter-spacing:3.791684pt;}
.ls95{letter-spacing:5.312111pt;}
.ls1f{letter-spacing:6.374024pt;}
.ls9{letter-spacing:6.379357pt;}
.lsa0{letter-spacing:9.693077pt;}
.lsca{letter-spacing:9.698400pt;}
.ls26{letter-spacing:9.698411pt;}
.lsbe{letter-spacing:9.716372pt;}
.ls11{letter-spacing:10.200703pt;}
.lsd7{letter-spacing:10.918224pt;}
.lsdd{letter-spacing:10.918719pt;}
.lsdc{letter-spacing:10.923558pt;}
.lsd8{letter-spacing:10.924052pt;}
.lsb1{letter-spacing:11.806400pt;}
.lsb2{letter-spacing:11.808479pt;}
.ls40{letter-spacing:12.925077pt;}
.ls27{letter-spacing:12.927477pt;}
.ls4d{letter-spacing:12.929910pt;}
.ls10{letter-spacing:12.930397pt;}
.ls4b{letter-spacing:12.930411pt;}
.ls7e{letter-spacing:12.931370pt;}
.ls7a{letter-spacing:12.932811pt;}
.ls81{letter-spacing:12.936703pt;}
.lsdf{letter-spacing:13.579139pt;}
.lscf{letter-spacing:13.649188pt;}
.lsce{letter-spacing:13.654583pt;}
.ls4a{letter-spacing:15.581258pt;}
.lsbc{letter-spacing:15.585146pt;}
.ls3f{letter-spacing:15.586591pt;}
.ls9e{letter-spacing:15.590479pt;}
.ls47{letter-spacing:16.157067pt;}
.ls2a{letter-spacing:16.157072pt;}
.ls6e{letter-spacing:16.157077pt;}
.lsab{letter-spacing:16.159005pt;}
.ls1d{letter-spacing:16.159467pt;}
.ls2b{letter-spacing:16.159477pt;}
.ls2f{letter-spacing:16.159483pt;}
.ls45{letter-spacing:16.161910pt;}
.ls1c{letter-spacing:16.162389pt;}
.ls64{letter-spacing:16.162397pt;}
.ls83{letter-spacing:16.162399pt;}
.lsaa{letter-spacing:16.162400pt;}
.ls3e{letter-spacing:16.162405pt;}
.ls1b{letter-spacing:16.162411pt;}
.ls84{letter-spacing:16.163370pt;}
.ls48{letter-spacing:16.164811pt;}
.ls43{letter-spacing:16.167244pt;}
.ls25{letter-spacing:16.174559pt;}
.ls19{letter-spacing:16.212816pt;}
.ls61{letter-spacing:16.375727pt;}
.lse1{letter-spacing:16.380052pt;}
.ls6{letter-spacing:17.710400pt;}
.ls89{letter-spacing:17.711572pt;}
.ls2{letter-spacing:17.832798pt;}
.lse{letter-spacing:17.993187pt;}
.ls59{letter-spacing:18.033323pt;}
.ls18{letter-spacing:18.046520pt;}
.ls12{letter-spacing:18.392060pt;}
.lse9{letter-spacing:18.813258pt;}
.ls79{letter-spacing:18.818591pt;}
.ls37{letter-spacing:18.819980pt;}
.ls6b{letter-spacing:18.829258pt;}
.ls51{letter-spacing:19.306144pt;}
.ls30{letter-spacing:19.332256pt;}
.lsb6{letter-spacing:19.389067pt;}
.ls85{letter-spacing:19.389077pt;}
.ls7c{letter-spacing:19.392944pt;}
.lsb{letter-spacing:19.393910pt;}
.ls65{letter-spacing:19.394397pt;}
.ls7b{letter-spacing:19.394400pt;}
.ls87{letter-spacing:19.394411pt;}
.ls78{letter-spacing:19.395370pt;}
.ls97{letter-spacing:19.398277pt;}
.lsc8{letter-spacing:19.399244pt;}
.ls58{letter-spacing:19.491374pt;}
.ls15{letter-spacing:19.587170pt;}
.ls63{letter-spacing:19.607727pt;}
.ls88{letter-spacing:19.846489pt;}
.ls1a{letter-spacing:19.951684pt;}
.ls98{letter-spacing:20.597956pt;}
.ls34{letter-spacing:20.813065pt;}
.ls36{letter-spacing:20.815005pt;}
.ls21{letter-spacing:20.817910pt;}
.ls1e{letter-spacing:20.818389pt;}
.ls28{letter-spacing:20.818400pt;}
.ls8f{letter-spacing:20.819370pt;}
.lsd{letter-spacing:21.225187pt;}
.ls62{letter-spacing:22.045258pt;}
.lsf7{letter-spacing:22.050591pt;}
.ls50{letter-spacing:22.221067pt;}
.ls70{letter-spacing:22.532811pt;}
.ls86{letter-spacing:22.535925pt;}
.ls4f{letter-spacing:22.538144pt;}
.ls31{letter-spacing:22.649187pt;}
.ls1{letter-spacing:22.661825pt;}
.ls60{letter-spacing:23.183684pt;}
.ls3c{letter-spacing:23.469258pt;}
.lsa8{letter-spacing:23.469816pt;}
.ls5c{letter-spacing:23.474591pt;}
.lsc3{letter-spacing:23.475149pt;}
.lsf8{letter-spacing:24.137187pt;}
.lsf3{letter-spacing:24.278921pt;}
.lsb8{letter-spacing:24.602350pt;}
.ls90{letter-spacing:24.607684pt;}
.ls2e{letter-spacing:25.400009pt;}
.ls4c{letter-spacing:25.857910pt;}
.ls56{letter-spacing:25.863244pt;}
.ls77{letter-spacing:26.049155pt;}
.lsf1{letter-spacing:26.061204pt;}
.ls7f{letter-spacing:26.105065pt;}
.lsf4{letter-spacing:26.195130pt;}
.lsc2{letter-spacing:26.200009pt;}
.lsf6{letter-spacing:26.300663pt;}
.ls5b{letter-spacing:26.399628pt;}
.lsf5{letter-spacing:26.448432pt;}
.ls96{letter-spacing:26.560955pt;}
.ls57{letter-spacing:26.562894pt;}
.ls9f{letter-spacing:26.566288pt;}
.ls8b{letter-spacing:26.566420pt;}
.ls73{letter-spacing:26.681482pt;}
.ls17{letter-spacing:26.744227pt;}
.ls24{letter-spacing:26.838598pt;}
.ls38{letter-spacing:26.841393pt;}
.ls33{letter-spacing:26.890272pt;}
.lsb7{letter-spacing:27.026070pt;}
.lsc0{letter-spacing:27.084096pt;}
.ls75{letter-spacing:27.148577pt;}
.ls8c{letter-spacing:27.512854pt;}
.ls3a{letter-spacing:28.159477pt;}
.ls3b{letter-spacing:28.167244pt;}
.ls99{letter-spacing:28.621351pt;}
.lsa9{letter-spacing:28.987364pt;}
.lsa5{letter-spacing:29.089435pt;}
.lsa2{letter-spacing:30.148149pt;}
.lscb{letter-spacing:30.545480pt;}
.ls39{letter-spacing:30.818591pt;}
.lsef{letter-spacing:30.962034pt;}
.lsea{letter-spacing:33.153146pt;}
.lsbd{letter-spacing:33.616473pt;}
.lsed{letter-spacing:33.618034pt;}
.lsec{letter-spacing:33.621806pt;}
.lsbf{letter-spacing:34.648479pt;}
.ls9a{letter-spacing:40.914591pt;}
.ls41{letter-spacing:58.183244pt;}
.ls54{letter-spacing:58.183739pt;}
.ls5f{letter-spacing:60.174647pt;}
.lse8{letter-spacing:63.760891pt;}
.ls52{letter-spacing:66.071733pt;}
.lsd1{letter-spacing:76.240423pt;}
.lse6{letter-spacing:88.336693pt;}
.ls9d{letter-spacing:90.859812pt;}
.lsbb{letter-spacing:90.865146pt;}
.lsac{letter-spacing:93.271842pt;}
.lsc7{letter-spacing:96.147603pt;}
.lsc{letter-spacing:96.850591pt;}
.ls23{letter-spacing:98.146591pt;}
.lsb4{letter-spacing:102.153067pt;}
.lsb3{letter-spacing:115.438400pt;}
.lsaf{letter-spacing:123.134400pt;}
.lsc5{letter-spacing:126.035603pt;}
.lsa{letter-spacing:126.738591pt;}
.ls20{letter-spacing:128.034591pt;}
.ls6f{letter-spacing:128.201672pt;}
.lsb5{letter-spacing:138.645964pt;}
.lsb0{letter-spacing:151.931297pt;}
.lsb9{letter-spacing:156.874144pt;}
.lse0{letter-spacing:164.544891pt;}
.ls80{letter-spacing:172.022288pt;}
.lsda{letter-spacing:175.611558pt;}
.lsd9{letter-spacing:187.899558pt;}
.lsd5{letter-spacing:195.072891pt;}
.lse2{letter-spacing:209.520473pt;}
.lsdb{letter-spacing:209.525806pt;}
.lsd6{letter-spacing:221.813806pt;}
.lsf0{letter-spacing:241.098144pt;}
.lse3{letter-spacing:334.901757pt;}
.lsc9{letter-spacing:654.637072pt;}
.ls69{letter-spacing:714.141067pt;}
.ls5a{letter-spacing:778.221072pt;}
.lseb{letter-spacing:808.023925pt;}
.ls42{letter-spacing:812.535739pt;}
.ls2d{letter-spacing:827.751739pt;}
.ls72{letter-spacing:931.716338pt;}
.ls55{letter-spacing:1156.722405pt;}
.ls53{letter-spacing:1159.458405pt;}
.ls4e{letter-spacing:1498.397067pt;}
.ws32{word-spacing:-74.356426pt;}
.ws43{word-spacing:-58.181867pt;}
.wsb2{word-spacing:-47.616040pt;}
.wsd0{word-spacing:-43.038600pt;}
.ws9d{word-spacing:-42.007308pt;}
.wscd{word-spacing:-38.765228pt;}
.ws13{word-spacing:-37.899668pt;}
.ws8{word-spacing:-34.611401pt;}
.ws11a{word-spacing:-33.454573pt;}
.ws4b{word-spacing:-32.337481pt;}
.ws6e{word-spacing:-31.010935pt;}
.wseb{word-spacing:-30.603662pt;}
.ws44{word-spacing:-30.021843pt;}
.ws2c{word-spacing:-29.736752pt;}
.ws18{word-spacing:-29.521250pt;}
.ws1e{word-spacing:-29.090933pt;}
.ws31{word-spacing:-28.183296pt;}
.ws11c{word-spacing:-21.752351pt;}
.ws9f{word-spacing:-18.506263pt;}
.wsc0{word-spacing:-16.779650pt;}
.ws14{word-spacing:-16.162923pt;}
.wsa1{word-spacing:-14.760588pt;}
.ws109{word-spacing:-14.654690pt;}
.ws29{word-spacing:-14.346200pt;}
.ws4f{word-spacing:-14.045298pt;}
.ws4c{word-spacing:-14.039965pt;}
.wsd9{word-spacing:-13.789102pt;}
.ws90{word-spacing:-13.581725pt;}
.wsd2{word-spacing:-13.149102pt;}
.ws34{word-spacing:-13.087649pt;}
.ws10a{word-spacing:-12.741829pt;}
.wsda{word-spacing:-12.631283pt;}
.ws102{word-spacing:-12.583724pt;}
.ws103{word-spacing:-12.509101pt;}
.wsc7{word-spacing:-12.392738pt;}
.ws85{word-spacing:-11.985521pt;}
.wsbc{word-spacing:-11.973648pt;}
.ws6f{word-spacing:-11.955466pt;}
.ws21{word-spacing:-11.955200pt;}
.ws74{word-spacing:-11.700373pt;}
.ws107{word-spacing:-11.564097pt;}
.wsc3{word-spacing:-11.520010pt;}
.ws71{word-spacing:-11.512468pt;}
.wsc4{word-spacing:-11.461828pt;}
.ws10d{word-spacing:-11.441187pt;}
.ws35{word-spacing:-11.403646pt;}
.ws112{word-spacing:-11.377614pt;}
.ws5a{word-spacing:-11.277900pt;}
.ws58{word-spacing:-11.170918pt;}
.ws119{word-spacing:-11.154591pt;}
.ws8e{word-spacing:-11.147514pt;}
.ws22{word-spacing:-11.112737pt;}
.wscb{word-spacing:-11.054555pt;}
.ws10c{word-spacing:-11.028209pt;}
.ws2a{word-spacing:-10.977539pt;}
.ws40{word-spacing:-10.950001pt;}
.ws38{word-spacing:-10.938140pt;}
.ws30{word-spacing:-10.933272pt;}
.ws117{word-spacing:-10.821827pt;}
.wsc8{word-spacing:-10.763645pt;}
.wsad{word-spacing:-10.715366pt;}
.ws1f{word-spacing:-10.705463pt;}
.wsc2{word-spacing:-10.472736pt;}
.ws36{word-spacing:-10.420372pt;}
.ws10e{word-spacing:-10.414554pt;}
.wsbd{word-spacing:-10.356372pt;}
.ws68{word-spacing:-10.262174pt;}
.wse7{word-spacing:-10.218924pt;}
.wse9{word-spacing:-10.181827pt;}
.ws56{word-spacing:-10.125013pt;}
.ws57{word-spacing:-10.123645pt;}
.ws25{word-spacing:-10.065463pt;}
.ws11{word-spacing:-10.007281pt;}
.wsc5{word-spacing:-9.949099pt;}
.ws20{word-spacing:-9.890917pt;}
.ws11d{word-spacing:-9.832735pt;}
.ws5b{word-spacing:-9.774554pt;}
.wsab{word-spacing:-9.754572pt;}
.wsac{word-spacing:-9.749238pt;}
.ws78{word-spacing:-9.747303pt;}
.wsce{word-spacing:-9.743895pt;}
.ws60{word-spacing:-9.740391pt;}
.ws113{word-spacing:-9.740071pt;}
.ws53{word-spacing:-9.739525pt;}
.ws4a{word-spacing:-9.736954pt;}
.ws9e{word-spacing:-9.736541pt;}
.ws1c{word-spacing:-9.736037pt;}
.ws4e{word-spacing:-9.731754pt;}
.ws8a{word-spacing:-9.731603pt;}
.wse1{word-spacing:-9.726505pt;}
.ws82{word-spacing:-9.726270pt;}
.ws50{word-spacing:-9.726242pt;}
.ws100{word-spacing:-9.719455pt;}
.ws64{word-spacing:-9.717449pt;}
.wscc{word-spacing:-9.717275pt;}
.ws17{word-spacing:-9.716372pt;}
.ws9c{word-spacing:-9.713234pt;}
.ws70{word-spacing:-9.709279pt;}
.ws1a{word-spacing:-9.709242pt;}
.ws49{word-spacing:-9.702885pt;}
.ws61{word-spacing:-9.702853pt;}
.ws4d{word-spacing:-9.702368pt;}
.ws114{word-spacing:-9.700482pt;}
.ws5f{word-spacing:-9.699952pt;}
.ws16{word-spacing:-9.699936pt;}
.ws8f{word-spacing:-9.695755pt;}
.wsbb{word-spacing:-9.690790pt;}
.ws63{word-spacing:-9.689060pt;}
.ws27{word-spacing:-9.658190pt;}
.ws12{word-spacing:-9.600008pt;}
.wse6{word-spacing:-9.562158pt;}
.ws2b{word-spacing:-9.541826pt;}
.wsbf{word-spacing:-9.509576pt;}
.wsbe{word-spacing:-9.489462pt;}
.ws26{word-spacing:-9.483644pt;}
.wsb4{word-spacing:-9.457461pt;}
.wscf{word-spacing:-9.425462pt;}
.ws110{word-spacing:-9.367281pt;}
.wse8{word-spacing:-9.314917pt;}
.ws23{word-spacing:-9.309099pt;}
.ws73{word-spacing:-9.294074pt;}
.ws72{word-spacing:-9.256735pt;}
.wsd1{word-spacing:-9.250917pt;}
.wsde{word-spacing:-9.198553pt;}
.ws5c{word-spacing:-9.082189pt;}
.ws5d{word-spacing:-9.060236pt;}
.wsf{word-spacing:-9.032757pt;}
.wsd6{word-spacing:-8.985289pt;}
.ws37{word-spacing:-8.965826pt;}
.wsd8{word-spacing:-8.960007pt;}
.ws46{word-spacing:-8.948283pt;}
.ws59{word-spacing:-8.947140pt;}
.ws7e{word-spacing:-8.945262pt;}
.ws3d{word-spacing:-8.935519pt;}
.ws5e{word-spacing:-8.934055pt;}
.wsb9{word-spacing:-8.932228pt;}
.ws3e{word-spacing:-8.929621pt;}
.ws3c{word-spacing:-8.927205pt;}
.ws108{word-spacing:-8.924290pt;}
.ws95{word-spacing:-8.922256pt;}
.ws3b{word-spacing:-8.919829pt;}
.ws75{word-spacing:-8.918984pt;}
.ws2e{word-spacing:-8.918363pt;}
.wsb0{word-spacing:-8.916923pt;}
.ws2f{word-spacing:-8.907644pt;}
.ws69{word-spacing:-8.901826pt;}
.ws9{word-spacing:-8.873356pt;}
.wsa{word-spacing:-8.873273pt;}
.wse5{word-spacing:-8.849462pt;}
.ws6{word-spacing:-8.767088pt;}
.ws2d{word-spacing:-8.733098pt;}
.ws3a{word-spacing:-8.674916pt;}
.ws10f{word-spacing:-8.657586pt;}
.wsae{word-spacing:-8.558553pt;}
.wsc{word-spacing:-8.554553pt;}
.ws7a{word-spacing:-8.505828pt;}
.wsb{word-spacing:-8.501419pt;}
.wsd3{word-spacing:-8.500371pt;}
.ws84{word-spacing:-8.494553pt;}
.wsdf{word-spacing:-8.436371pt;}
.wsd7{word-spacing:-8.325825pt;}
.wse{word-spacing:-8.288883pt;}
.ws6a{word-spacing:-8.267643pt;}
.wsb5{word-spacing:-8.203643pt;}
.wse4{word-spacing:-8.145461pt;}
.wse0{word-spacing:-7.802188pt;}
.wsc9{word-spacing:-7.738188pt;}
.wsb6{word-spacing:-7.627643pt;}
.wsb7{word-spacing:-7.584112pt;}
.wsb8{word-spacing:-7.569461pt;}
.ws7b{word-spacing:-7.389097pt;}
.ws11f{word-spacing:-7.214551pt;}
.wsc1{word-spacing:-7.156370pt;}
.ws115{word-spacing:-7.040006pt;}
.ws7c{word-spacing:-6.871278pt;}
.ws9b{word-spacing:-6.813097pt;}
.ws2{word-spacing:-6.482332pt;}
.wsd4{word-spacing:-6.458187pt;}
.ws11b{word-spacing:-6.333839pt;}
.ws86{word-spacing:-6.169050pt;}
.ws116{word-spacing:-6.167278pt;}
.ws10b{word-spacing:-6.001384pt;}
.wsd5{word-spacing:-5.998550pt;}
.wsba{word-spacing:-5.876369pt;}
.ws96{word-spacing:-5.423295pt;}
.ws87{word-spacing:-5.352732pt;}
.wsdd{word-spacing:-5.178186pt;}
.wsdb{word-spacing:-5.120004pt;}
.ws88{word-spacing:-5.009459pt;}
.wsdc{word-spacing:-4.776731pt;}
.ws97{word-spacing:-4.712731pt;}
.ws11e{word-spacing:-4.480004pt;}
.ws99{word-spacing:-4.427640pt;}
.ws98{word-spacing:-4.369458pt;}
.ws3{word-spacing:-3.931906pt;}
.ws4{word-spacing:-3.878772pt;}
.ws6d{word-spacing:-3.607276pt;}
.ws1d{word-spacing:-3.246548pt;}
.wse2{word-spacing:-3.200003pt;}
.wse3{word-spacing:-3.031275pt;}
.ws91{word-spacing:-2.979511pt;}
.ws42{word-spacing:-2.856730pt;}
.ws41{word-spacing:-2.841360pt;}
.ws92{word-spacing:-2.618184pt;}
.ws7f{word-spacing:-2.548976pt;}
.ws93{word-spacing:-2.449457pt;}
.ws94{word-spacing:-1.338183pt;}
.ws48{word-spacing:-0.657301pt;}
.ws6c{word-spacing:-0.063761pt;}
.ws24{word-spacing:-0.058182pt;}
.ws7{word-spacing:-0.053134pt;}
.wsed{word-spacing:-0.047821pt;}
.ws19{word-spacing:-0.042507pt;}
.ws80{word-spacing:-0.031881pt;}
.ws6b{word-spacing:-0.016127pt;}
.ws15{word-spacing:-0.015599pt;}
.ws62{word-spacing:-0.010793pt;}
.ws118{word-spacing:-0.003456pt;}
.ws28{word-spacing:0.000000pt;}
.ws1b{word-spacing:0.011636pt;}
.ws65{word-spacing:0.069818pt;}
.ws39{word-spacing:0.186182pt;}
.ws55{word-spacing:0.302546pt;}
.ws76{word-spacing:0.360728pt;}
.ws111{word-spacing:0.884364pt;}
.ws83{word-spacing:2.280729pt;}
.wsc6{word-spacing:2.984037pt;}
.ws3f{word-spacing:3.217284pt;}
.ws77{word-spacing:3.230955pt;}
.ws54{word-spacing:3.249815pt;}
.ws51{word-spacing:3.251682pt;}
.ws33{word-spacing:3.251687pt;}
.ws67{word-spacing:3.252743pt;}
.ws47{word-spacing:3.255148pt;}
.wsd{word-spacing:3.276320pt;}
.ws8d{word-spacing:3.451335pt;}
.wsca{word-spacing:5.183791pt;}
.wsb1{word-spacing:6.372288pt;}
.ws9a{word-spacing:6.773334pt;}
.ws5{word-spacing:8.565179pt;}
.ws66{word-spacing:9.844372pt;}
.ws45{word-spacing:11.415282pt;}
.wsaf{word-spacing:12.309467pt;}
.wsfd{word-spacing:13.581107pt;}
.wsfe{word-spacing:13.597123pt;}
.wsff{word-spacing:13.628928pt;}
.wsf1{word-spacing:16.306893pt;}
.wsfa{word-spacing:16.319251pt;}
.wsfb{word-spacing:16.324396pt;}
.wsf0{word-spacing:16.354714pt;}
.ws1{word-spacing:20.722347pt;}
.ws79{word-spacing:22.490675pt;}
.ws8c{word-spacing:23.838392pt;}
.ws104{word-spacing:25.722801pt;}
.ws0{word-spacing:27.636455pt;}
.wsea{word-spacing:30.487298pt;}
.wsa4{word-spacing:37.193707pt;}
.ws10{word-spacing:43.038600pt;}
.ws81{word-spacing:48.330801pt;}
.wsa3{word-spacing:48.998290pt;}
.wsa2{word-spacing:49.000052pt;}
.wsa7{word-spacing:49.440533pt;}
.wsa5{word-spacing:50.477173pt;}
.wsa0{word-spacing:53.118009pt;}
.wsee{word-spacing:63.697306pt;}
.wsef{word-spacing:63.709123pt;}
.wsf3{word-spacing:63.714456pt;}
.wsf2{word-spacing:63.725892pt;}
.wsec{word-spacing:75.939430pt;}
.wsa9{word-spacing:83.280533pt;}
.wsaa{word-spacing:122.261027pt;}
.wsa8{word-spacing:135.544494pt;}
.wsf7{word-spacing:139.196628pt;}
.wsf9{word-spacing:140.412628pt;}
.wsfc{word-spacing:140.975718pt;}
.wsa6{word-spacing:145.480527pt;}
.wsf5{word-spacing:151.484628pt;}
.wsf8{word-spacing:163.276628pt;}
.wsf6{word-spacing:182.737961pt;}
.wsf4{word-spacing:203.381862pt;}
.ws52{word-spacing:452.771286pt;}
.ws106{word-spacing:591.644027pt;}
.wsb3{word-spacing:592.289360pt;}
.ws101{word-spacing:598.022694pt;}
.ws105{word-spacing:665.297877pt;}
.ws8b{word-spacing:690.097360pt;}
.ws89{word-spacing:794.625883pt;}
.ws7d{word-spacing:839.057883pt;}
._28{margin-left:-30.545480pt;}
._10{margin-left:-28.683660pt;}
._e{margin-left:-16.202343pt;}
._27{margin-left:-9.835107pt;}
._0{margin-left:-7.253422pt;}
._24{margin-left:-5.993540pt;}
._8{margin-left:-4.945459pt;}
._a{margin-left:-3.953186pt;}
._2{margin-left:-2.479018pt;}
._4{margin-left:-1.328347pt;}
._3{width:1.434614pt;}
._1{width:2.387202pt;}
._26{width:3.790079pt;}
._46{width:4.919475pt;}
._15{width:5.977565pt;}
._16{width:9.716372pt;}
._14{width:12.842124pt;}
._d{width:14.618049pt;}
._44{width:17.448199pt;}
._5{width:18.615234pt;}
._7{width:20.292765pt;}
._12{width:22.283655pt;}
._25{width:24.320828pt;}
._11{width:25.783606pt;}
._13{width:27.081759pt;}
._18{width:29.090933pt;}
._45{width:55.203172pt;}
._f{width:58.175486pt;}
._29{width:61.090960pt;}
._35{width:64.585610pt;}
._9{width:71.731200pt;}
._3d{width:74.126692pt;}
._39{width:75.262613pt;}
._40{width:82.108314pt;}
._b{width:86.077200pt;}
._41{width:88.161981pt;}
._1e{width:89.902502pt;}
._38{width:90.992347pt;}
._3e{width:100.189018pt;}
._19{width:103.185969pt;}
._2a{width:111.279002pt;}
._42{width:118.356480pt;}
._2f{width:122.433026pt;}
._34{width:123.426547pt;}
._3c{width:127.490253pt;}
._2e{width:132.941824pt;}
._37{width:139.780198pt;}
._30{width:141.215062pt;}
._3b{width:142.405900pt;}
._43{width:145.583450pt;}
._1f{width:148.774827pt;}
._32{width:151.591936pt;}
._33{width:153.505008pt;}
._3a{width:154.700288pt;}
._21{width:158.763994pt;}
._23{width:162.058293pt;}
._2d{width:163.929702pt;}
._2b{width:165.173043pt;}
._36{width:166.985791pt;}
._31{width:169.763840pt;}
._1c{width:172.047460pt;}
._1a{width:175.394894pt;}
._20{width:178.901729pt;}
._2c{width:182.005965pt;}
._1b{width:192.132062pt;}
._22{width:195.553157pt;}
._1d{width:208.840090pt;}
._3f{width:289.161742pt;}
._c{width:768.701379pt;}
._6{width:772.942365pt;}
._17{width:908.951992pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:54.637333pt;}
.yaa{bottom:94.488000pt;}
.y16b{bottom:97.926667pt;}
.y11e{bottom:101.965333pt;}
.yfe{bottom:102.417333pt;}
.y143{bottom:106.665333pt;}
.y1be{bottom:111.472000pt;}
.y1fc{bottom:112.553333pt;}
.yfd{bottom:120.482667pt;}
.y26{bottom:121.256000pt;}
.ya9{bottom:123.365333pt;}
.y142{bottom:124.730667pt;}
.y186{bottom:124.916000pt;}
.y82{bottom:128.409333pt;}
.y1fb{bottom:130.620000pt;}
.y11d{bottom:131.986667pt;}
.y1bc{bottom:132.344000pt;}
.y16a{bottom:134.058667pt;}
.y1bd{bottom:135.112000pt;}
.y25{bottom:139.321333pt;}
.y1b9{bottom:140.418667pt;}
.y54{bottom:140.678667pt;}
.y53{bottom:145.173333pt;}
.y81{bottom:146.476000pt;}
.y1fa{bottom:148.685333pt;}
.yfc{bottom:150.502667pt;}
.y169{bottom:152.124000pt;}
.ya8{bottom:152.244000pt;}
.y1bb{bottom:156.096000pt;}
.y1ba{bottom:156.566667pt;}
.y24{bottom:157.386667pt;}
.y185{bottom:157.592000pt;}
.y141{bottom:160.861333pt;}
.y1db{bottom:161.692000pt;}
.y11c{bottom:162.006667pt;}
.y80{bottom:164.541333pt;}
.y1f9{bottom:166.750667pt;}
.y168{bottom:170.189333pt;}
.y184{bottom:172.204000pt;}
.y1b8{bottom:172.769333pt;}
.y23{bottom:175.452000pt;}
.y52{bottom:177.850667pt;}
.y11b{bottom:180.072000pt;}
.yfb{bottom:180.524000pt;}
.ya7{bottom:181.121333pt;}
.y1f8{bottom:184.816000pt;}
.y183{bottom:186.816000pt;}
.y1b7{bottom:190.836000pt;}
.yda{bottom:190.908000pt;}
.y1da{bottom:191.712000pt;}
.y22{bottom:193.518667pt;}
.y7f{bottom:193.560000pt;}
.yd9{bottom:194.504000pt;}
.y140{bottom:196.993333pt;}
.y7e{bottom:198.690667pt;}
.y182{bottom:201.428000pt;}
.y1b6{bottom:202.184000pt;}
.y1f7{bottom:202.881333pt;}
.y167{bottom:206.321333pt;}
.y51{bottom:207.872000pt;}
.yfa{bottom:207.982667pt;}
.y1b3{bottom:208.664000pt;}
.y11a{bottom:210.093333pt;}
.yd7{bottom:210.388000pt;}
.y21{bottom:211.584000pt;}
.ya6{bottom:211.697333pt;}
.y1b5{bottom:211.896000pt;}
.yd6{bottom:212.569333pt;}
.y13f{bottom:215.058667pt;}
.y181{bottom:216.040000pt;}
.y1b2{bottom:217.026667pt;}
.yd8{bottom:217.848000pt;}
.y1f6{bottom:220.948000pt;}
.y1b4{bottom:221.460000pt;}
.y1d9{bottom:221.733333pt;}
.y4f{bottom:225.937333pt;}
.y119{bottom:228.158667pt;}
.y7d{bottom:228.266667pt;}
.ya5{bottom:229.762667pt;}
.y180{bottom:230.652000pt;}
.y50{bottom:231.216000pt;}
.y13e{bottom:233.124000pt;}
.y1af{bottom:236.161333pt;}
.y1b1{bottom:237.932000pt;}
.yd5{bottom:238.994667pt;}
.y20{bottom:239.042667pt;}
.y1ae{bottom:240.301333pt;}
.y166{bottom:242.452000pt;}
.yd4{bottom:242.590667pt;}
.y4e{bottom:244.002667pt;}
.y17f{bottom:245.264000pt;}
.y1b0{bottom:245.580000pt;}
.y7c{bottom:246.332000pt;}
.yf9{bottom:246.933333pt;}
.y1f5{bottom:248.406667pt;}
.y13d{bottom:251.189333pt;}
.y1d8{bottom:251.753333pt;}
.ya4{bottom:257.222667pt;}
.y118{bottom:258.180000pt;}
.y17e{bottom:259.876000pt;}
.y165{bottom:260.517333pt;}
.y7b{bottom:264.397333pt;}
.yf8{bottom:264.998667pt;}
.y1ac{bottom:267.446667pt;}
.y13c{bottom:269.256000pt;}
.yd3{bottom:270.049333pt;}
.y1ad{bottom:270.214667pt;}
.y17d{bottom:274.488000pt;}
.y1ab{bottom:275.521333pt;}
.y117{bottom:276.245333pt;}
.y4d{bottom:276.680000pt;}
.y1f{bottom:277.993333pt;}
.y164{bottom:278.582667pt;}
.y1d7{bottom:281.774667pt;}
.y1f4{bottom:286.925333pt;}
.y13b{bottom:287.321333pt;}
.y17c{bottom:289.098667pt;}
.ya3{bottom:290.222667pt;}
.y7a{bottom:291.857333pt;}
.y4c{bottom:294.848000pt;}
.yf7{bottom:295.020000pt;}
.y1e{bottom:296.058667pt;}
.y163{bottom:296.649333pt;}
.y17b{bottom:303.710667pt;}
.y4b{bottom:304.825333pt;}
.y116{bottom:306.265333pt;}
.y1aa{bottom:308.198667pt;}
.yd2{bottom:309.000000pt;}
.yf6{bottom:313.085333pt;}
.y1d{bottom:314.124000pt;}
.y162{bottom:314.714667pt;}
.y1d6{bottom:315.780000pt;}
.y1f3{bottom:316.030667pt;}
.y17a{bottom:318.322667pt;}
.y13a{bottom:323.452000pt;}
.y115{bottom:324.332000pt;}
.yd1{bottom:324.696000pt;}
.y79{bottom:325.790667pt;}
.y4a{bottom:326.241333pt;}
.yd0{bottom:327.065333pt;}
.y1a8{bottom:329.590667pt;}
.y78{bottom:330.806667pt;}
.y179{bottom:332.934667pt;}
.ya2{bottom:335.513333pt;}
.y49{bottom:336.218667pt;}
.y139{bottom:341.517333pt;}
.y1a9{bottom:341.680000pt;}
.yf5{bottom:343.106667pt;}
.y1d5{bottom:343.240000pt;}
.y1c{bottom:344.145333pt;}
.y1f2{bottom:345.136000pt;}
.y1a5{bottom:345.156000pt;}
.y1a4{bottom:345.820000pt;}
.y178{bottom:347.546667pt;}
.y161{bottom:350.845333pt;}
.ya1{bottom:351.209333pt;}
.ya0{bottom:353.578667pt;}
.y114{bottom:354.352000pt;}
.y77{bottom:355.812000pt;}
.ycf{bottom:357.086667pt;}
.y1a7{bottom:358.754667pt;}
.y138{bottom:359.584000pt;}
.y76{bottom:360.828000pt;}
.yf4{bottom:361.172000pt;}
.y48{bottom:361.473333pt;}
.y177{bottom:362.158667pt;}
.y1a6{bottom:362.740000pt;}
.y160{bottom:368.910667pt;}
.y47{bottom:371.450667pt;}
.y9f{bottom:371.644000pt;}
.y113{bottom:372.417333pt;}
.ycd{bottom:372.781333pt;}
.y1b{bottom:374.165333pt;}
.y1f1{bottom:374.241333pt;}
.ycc{bottom:375.152000pt;}
.y1d4{bottom:376.240000pt;}
.y176{bottom:376.770667pt;}
.y137{bottom:377.649333pt;}
.yce{bottom:380.430667pt;}
.y15f{bottom:386.977333pt;}
.y1a3{bottom:388.037333pt;}
.y75{bottom:390.848000pt;}
.yf3{bottom:391.192000pt;}
.y175{bottom:391.382667pt;}
.y9e{bottom:399.104000pt;}
.y1a1{bottom:402.140000pt;}
.y112{bottom:402.438667pt;}
.y1a2{bottom:402.508000pt;}
.ycb{bottom:402.610667pt;}
.y1a{bottom:404.186667pt;}
.y15e{bottom:405.042667pt;}
.y1f0{bottom:405.501333pt;}
.y174{bottom:405.994667pt;}
.y1a0{bottom:406.104000pt;}
.y74{bottom:408.914667pt;}
.yf2{bottom:409.258667pt;}
.y46{bottom:410.161333pt;}
.y136{bottom:413.780000pt;}
.y111{bottom:420.504000pt;}
.y173{bottom:420.606667pt;}
.y1d3{bottom:422.069333pt;}
.y1ef{bottom:423.566667pt;}
.y45{bottom:428.226667pt;}
.y135{bottom:431.845333pt;}
.y19f{bottom:433.562667pt;}
.y73{bottom:433.918667pt;}
.y19{bottom:434.208000pt;}
.yc9{bottom:435.190667pt;}
.y172{bottom:435.217333pt;}
.y9d{bottom:437.514667pt;}
.yca{bottom:437.958667pt;}
.y71{bottom:438.934667pt;}
.yf1{bottom:439.278667pt;}
.y1d2{bottom:440.134667pt;}
.y15d{bottom:441.173333pt;}
.yc6{bottom:443.265333pt;}
.y72{bottom:445.434667pt;}
.y44{bottom:446.292000pt;}
.y134{bottom:449.912000pt;}
.y110{bottom:450.525333pt;}
.y1ee{bottom:451.025333pt;}
.y70{bottom:454.818667pt;}
.yf0{bottom:454.974667pt;}
.y9c{bottom:455.580000pt;}
.y18{bottom:455.758667pt;}
.y6f{bottom:457.000000pt;}
.y171{bottom:457.126667pt;}
.yef{bottom:457.344000pt;}
.yc8{bottom:458.942667pt;}
.y15c{bottom:459.238667pt;}
.yc7{bottom:459.413333pt;}
.yc5{bottom:463.082667pt;}
.y17{bottom:466.501333pt;}
.y19e{bottom:466.564000pt;}
.y10f{bottom:468.590667pt;}
.y1d1{bottom:470.156000pt;}
.y15{bottom:472.313333pt;}
.y43{bottom:476.312000pt;}
.y15b{bottom:477.305333pt;}
.y16{bottom:477.437333pt;}
.y9b{bottom:482.744000pt;}
.y133{bottom:486.042667pt;}
.y6e{bottom:487.021333pt;}
.y1d0{bottom:488.221333pt;}
.y1ed{bottom:489.544000pt;}
.yee{bottom:491.350667pt;}
.y15a{bottom:495.370667pt;}
.yc4{bottom:496.137333pt;}
.y170{bottom:501.016000pt;}
.y10e{bottom:501.060000pt;}
.y132{bottom:504.108000pt;}
.y1ec{bottom:507.610667pt;}
.y42{bottom:508.990667pt;}
.yed{bottom:509.416000pt;}
.yc3{bottom:510.062667pt;}
.yc2{bottom:510.533333pt;}
.y9a{bottom:511.621333pt;}
.yc0{bottom:514.202667pt;}
.y6d{bottom:514.480000pt;}
.y1cf{bottom:515.681333pt;}
.y14{bottom:517.022667pt;}
.y159{bottom:522.829333pt;}
.yc1{bottom:524.481333pt;}
.y19d{bottom:528.061333pt;}
.y16f{bottom:534.016000pt;}
.y13{bottom:535.088000pt;}
.y1eb{bottom:536.716000pt;}
.y131{bottom:540.240000pt;}
.y99{bottom:540.498667pt;}
.ybf{bottom:541.662667pt;}
.y41{bottom:541.668000pt;}
.yec{bottom:541.885333pt;}
.y10d{bottom:546.889333pt;}
.y6c{bottom:547.481333pt;}
.y12{bottom:553.153333pt;}
.y1ce{bottom:554.630667pt;}
.y1ea{bottom:554.781333pt;}
.y3e{bottom:557.364000pt;}
.y130{bottom:558.305333pt;}
.y40{bottom:559.069333pt;}
.y3d{bottom:559.733333pt;}
.y19c{bottom:560.738667pt;}
.y158{bottom:561.780000pt;}
.y10c{bottom:564.954667pt;}
.y3f{bottom:565.012000pt;}
.y98{bottom:567.661333pt;}
.y1cd{bottom:572.697333pt;}
.ybe{bottom:574.664000pt;}
.y19b{bottom:575.350667pt;}
.y12f{bottom:576.370667pt;}
.y3c{bottom:577.798667pt;}
.y157{bottom:579.845333pt;}
.y1e9{bottom:583.886667pt;}
.y11{bottom:585.622667pt;}
.y97{bottom:585.726667pt;}
.yeb{bottom:587.714667pt;}
.y19a{bottom:589.962667pt;}
.y1cc{bottom:590.762667pt;}
.y6b{bottom:593.310667pt;}
.y12e{bottom:594.436000pt;}
.y10b{bottom:597.424000pt;}
.y156{bottom:597.910667pt;}
.y1e8{bottom:601.952000pt;}
.yea{bottom:605.780000pt;}
.y3b{bottom:607.820000pt;}
.y6a{bottom:609.006667pt;}
.y69{bottom:611.376000pt;}
.y199{bottom:611.872000pt;}
.y12d{bottom:612.501333pt;}
.y96{bottom:612.889333pt;}
.y1cb{bottom:614.805333pt;}
.y155{bottom:615.976000pt;}
.ybd{bottom:620.492000pt;}
.y3a{bottom:625.885333pt;}
.y1e7{bottom:629.412000pt;}
.y10{bottom:631.452000pt;}
.y1ca{bottom:632.870667pt;}
.ye9{bottom:633.240000pt;}
.y154{bottom:634.042667pt;}
.y68{bottom:638.836000pt;}
.y95{bottom:640.052000pt;}
.y10a{bottom:643.253333pt;}
.yf{bottom:647.392000pt;}
.y12c{bottom:648.633333pt;}
.ybc{bottom:650.513333pt;}
.y153{bottom:652.108000pt;}
.y39{bottom:653.344000pt;}
.y198{bottom:655.760000pt;}
.y94{bottom:658.118667pt;}
.y1c9{bottom:660.330667pt;}
.y109{bottom:661.318667pt;}
.ye{bottom:663.332000pt;}
.y12b{bottom:666.698667pt;}
.y1e6{bottom:667.929333pt;}
.y152{bottom:670.173333pt;}
.ye8{bottom:672.189333pt;}
.y67{bottom:677.785333pt;}
.yd{bottom:679.273333pt;}
.y108{bottom:679.384000pt;}
.ybb{bottom:680.534667pt;}
.y12a{bottom:684.764000pt;}
.y93{bottom:685.577333pt;}
.y1e5{bottom:685.996000pt;}
.y38{bottom:686.345333pt;}
.y151{bottom:688.238667pt;}
.y1c8{bottom:693.330667pt;}
.y65{bottom:693.481333pt;}
.yc{bottom:695.213333pt;}
.y64{bottom:695.850667pt;}
.y66{bottom:701.129333pt;}
.ye7{bottom:702.210667pt;}
.y129{bottom:702.829333pt;}
.y1e4{bottom:704.061333pt;}
.y150{bottom:706.304000pt;}
.yba{bottom:707.993333pt;}
.y107{bottom:709.405333pt;}
.y197{bottom:710.378667pt;}
.yb{bottom:711.153333pt;}
.y92{bottom:718.578667pt;}
.y1e3{bottom:722.126667pt;}
.y14f{bottom:724.370667pt;}
.ya{bottom:727.093333pt;}
.y128{bottom:730.289333pt;}
.y37{bottom:732.174667pt;}
.ye6{bottom:732.230667pt;}
.yb9{bottom:735.984000pt;}
.y1c7{bottom:739.160000pt;}
.y106{bottom:739.426667pt;}
.y14e{bottom:742.436000pt;}
.y8{bottom:743.033333pt;}
.y196{bottom:743.056000pt;}
.y9{bottom:747.854667pt;}
.y36{bottom:750.240000pt;}
.y63{bottom:751.630667pt;}
.y1e2{bottom:754.596000pt;}
.y1c6{bottom:757.226667pt;}
.y195{bottom:757.668000pt;}
.y91{bottom:758.852000pt;}
.y7{bottom:758.973333pt;}
.y16e{bottom:760.501333pt;}
.ye5{bottom:762.252000pt;}
.y127{bottom:763.289333pt;}
.y90{bottom:763.868000pt;}
.y105{bottom:769.446667pt;}
.y62{bottom:771.448000pt;}
.y194{bottom:772.280000pt;}
.y6{bottom:774.914667pt;}
.y14d{bottom:778.566667pt;}
.yb8{bottom:779.992000pt;}
.y35{bottom:780.261333pt;}
.ye4{bottom:780.317333pt;}
.y193{bottom:786.892000pt;}
.y1c5{bottom:787.246667pt;}
.y8f{bottom:793.116000pt;}
.y14c{bottom:796.632000pt;}
.y61{bottom:798.297333pt;}
.y34{bottom:798.326667pt;}
.y5{bottom:799.156000pt;}
.y104{bottom:799.468000pt;}
.y1e1{bottom:799.993333pt;}
.y192{bottom:801.504000pt;}
.y1c4{bottom:805.312000pt;}
.ye3{bottom:807.777333pt;}
.y126{bottom:809.118667pt;}
.yb7{bottom:813.066667pt;}
.y16d{bottom:814.698667pt;}
.y8e{bottom:815.166667pt;}
.y191{bottom:816.114667pt;}
.y60{bottom:816.362667pt;}
.y1e0{bottom:818.060000pt;}
.y125{bottom:827.184000pt;}
.y33{bottom:828.346667pt;}
.yb6{bottom:829.006667pt;}
.y103{bottom:829.488000pt;}
.y190{bottom:830.726667pt;}
.y14b{bottom:832.764000pt;}
.y5e{bottom:834.428000pt;}
.y1c3{bottom:835.333333pt;}
.y5f{bottom:839.706667pt;}
.y8d{bottom:844.414667pt;}
.yb5{bottom:844.946667pt;}
.y18f{bottom:845.338667pt;}
.ye2{bottom:846.726667pt;}
.y1df{bottom:849.318667pt;}
.y14a{bottom:850.829333pt;}
.y4{bottom:852.854667pt;}
.y1c2{bottom:853.398667pt;}
.y32{bottom:855.046667pt;}
.y102{bottom:856.948000pt;}
.y124{bottom:857.205333pt;}
.y18e{bottom:859.950667pt;}
.yb4{bottom:860.888000pt;}
.y8c{bottom:862.480000pt;}
.ye1{bottom:864.792000pt;}
.y5d{bottom:867.106667pt;}
.y149{bottom:868.894667pt;}
.y31{bottom:873.112000pt;}
.y18d{bottom:874.562667pt;}
.yb3{bottom:876.828000pt;}
.y1de{bottom:878.424000pt;}
.y1c1{bottom:880.858667pt;}
.y3{bottom:885.466667pt;}
.y148{bottom:886.960000pt;}
.y123{bottom:887.226667pt;}
.y30{bottom:888.808000pt;}
.y18c{bottom:889.174667pt;}
.y8b{bottom:889.644000pt;}
.y2f{bottom:891.178667pt;}
.ye0{bottom:892.321333pt;}
.yb2{bottom:892.768000pt;}
.y101{bottom:895.897333pt;}
.y5c{bottom:899.784000pt;}
.ydf{bottom:903.064000pt;}
.y18b{bottom:903.786667pt;}
.y16c{bottom:905.026667pt;}
.y1dd{bottom:907.529333pt;}
.yb1{bottom:908.708000pt;}
.ydd{bottom:908.876000pt;}
.y89{bottom:913.502667pt;}
.yde{bottom:914.000000pt;}
.y2e{bottom:916.858667pt;}
.y122{bottom:917.246667pt;}
.y5b{bottom:917.849333pt;}
.y18a{bottom:918.398667pt;}
.y1c0{bottom:919.808000pt;}
.y147{bottom:923.092000pt;}
.yb0{bottom:924.648000pt;}
.y8a{bottom:925.592000pt;}
.y2{bottom:925.881333pt;}
.y100{bottom:925.918667pt;}
.y2d{bottom:927.601333pt;}
.y86{bottom:929.732000pt;}
.y189{bottom:933.010667pt;}
.y2b{bottom:933.413333pt;}
.y5a{bottom:935.914667pt;}
.y1dc{bottom:936.634667pt;}
.y1bf{bottom:937.873333pt;}
.y2c{bottom:938.537333pt;}
.yaf{bottom:940.588000pt;}
.y146{bottom:941.157333pt;}
.y88{bottom:942.666667pt;}
.y87{bottom:946.652000pt;}
.y121{bottom:947.268000pt;}
.y188{bottom:947.622667pt;}
.ydc{bottom:952.960000pt;}
.y1{bottom:955.105333pt;}
.yff{bottom:955.940000pt;}
.yae{bottom:956.529333pt;}
.y145{bottom:959.222667pt;}
.y59{bottom:960.920000pt;}
.y2a{bottom:962.884000pt;}
.y120{bottom:965.333333pt;}
.y58{bottom:965.936000pt;}
.y85{bottom:967.894667pt;}
.y187{bottom:969.530667pt;}
.yad{bottom:972.469333pt;}
.y144{bottom:977.288000pt;}
.ydb{bottom:980.418667pt;}
.y29{bottom:980.950667pt;}
.y83{bottom:981.997333pt;}
.y84{bottom:982.364000pt;}
.y57{bottom:983.590667pt;}
.y55{bottom:985.960000pt;}
.yac{bottom:988.409333pt;}
.y56{bottom:991.238667pt;}
.y11f{bottom:995.354667pt;}
.yab{bottom:1011.646667pt;}
.y28{bottom:1013.420000pt;}
.h26{height:2.125355pt;}
.h2b{height:12.673330pt;}
.h6{height:17.295024pt;}
.h1b{height:19.765848pt;}
.h3e{height:22.107556pt;}
.h10{height:29.499997pt;}
.hc{height:31.880400pt;}
.h34{height:35.865600pt;}
.h4{height:37.406242pt;}
.h12{height:39.375067pt;}
.h5{height:39.850400pt;}
.h33{height:40.378215pt;}
.h1f{height:40.960034pt;}
.h35{height:41.515221pt;}
.h9{height:43.636400pt;}
.h7{height:43.976550pt;}
.h2a{height:43.981884pt;}
.h13{height:46.292400pt;}
.h3d{height:46.861733pt;}
.h3{height:47.820800pt;}
.he{height:48.407313pt;}
.h11{height:50.614663pt;}
.h21{height:52.635997pt;}
.h14{height:52.989733pt;}
.h16{height:52.995067pt;}
.h20{height:54.787067pt;}
.h29{height:54.792400pt;}
.h36{height:55.441330pt;}
.h24{height:55.446663pt;}
.h15{height:55.901733pt;}
.h1a{height:55.907067pt;}
.h3b{height:56.017330pt;}
.h38{height:56.022663pt;}
.h8{height:57.384800pt;}
.h1c{height:57.809330pt;}
.h31{height:58.020400pt;}
.h27{height:58.403067pt;}
.h28{height:60.196400pt;}
.h1e{height:60.237733pt;}
.h39{height:60.347181pt;}
.h37{height:60.489733pt;}
.h32{height:62.791313pt;}
.hb{height:63.700400pt;}
.h3f{height:64.159067pt;}
.h3a{height:64.863067pt;}
.h2{height:64.913535pt;}
.h22{height:65.467556pt;}
.h25{height:66.465330pt;}
.hf{height:68.471313pt;}
.h23{height:68.929980pt;}
.h2c{height:70.699997pt;}
.h2e{height:73.080400pt;}
.h1d{height:73.885733pt;}
.h2f{height:75.935067pt;}
.h40{height:77.087067pt;}
.h41{height:79.759067pt;}
.h17{height:82.996400pt;}
.h18{height:83.545733pt;}
.ha{height:94.248021pt;}
.h30{height:104.772400pt;}
.hd{height:109.855067pt;}
.h3c{height:113.056889pt;}
.h19{height:122.905733pt;}
.h2d{height:133.057330pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3e{left:93.373333pt;}
.x1e{left:94.488000pt;}
.xa7{left:97.849333pt;}
.x1{left:102.436000pt;}
.xa6{left:107.288000pt;}
.xad{left:112.266667pt;}
.x1f{left:117.070667pt;}
.xc6{left:124.386667pt;}
.x10{left:129.297333pt;}
.x7{left:130.852000pt;}
.x11{left:134.433333pt;}
.xcd{left:141.016000pt;}
.xce{left:142.498667pt;}
.x12{left:145.360000pt;}
.xc5{left:149.604000pt;}
.x6{left:150.777333pt;}
.xcb{left:153.446667pt;}
.xc7{left:155.578667pt;}
.x13{left:158.584000pt;}
.x9a{left:162.046667pt;}
.x14{left:165.917333pt;}
.x15{left:171.053333pt;}
.x16{left:177.694667pt;}
.x6e{left:178.782667pt;}
.x23{left:180.054667pt;}
.xbf{left:181.098667pt;}
.xa9{left:186.225333pt;}
.x24{left:192.125333pt;}
.xb8{left:193.590667pt;}
.xae{left:200.910667pt;}
.x2{left:202.972000pt;}
.x25{left:207.253333pt;}
.x8b{left:210.590667pt;}
.xaa{left:214.101333pt;}
.xcc{left:215.234667pt;}
.xc8{left:216.669333pt;}
.x29{left:217.737333pt;}
.xca{left:219.865333pt;}
.x6f{left:222.040000pt;}
.x80{left:223.548000pt;}
.x70{left:227.669333pt;}
.x26{left:230.984000pt;}
.x58{left:232.537333pt;}
.x8c{left:236.712000pt;}
.x71{left:238.186667pt;}
.xdd{left:239.922667pt;}
.xa2{left:245.048000pt;}
.xc9{left:247.214667pt;}
.xde{left:248.532000pt;}
.x59{left:254.356000pt;}
.x81{left:262.822667pt;}
.x5a{left:267.026667pt;}
.x56{left:269.874667pt;}
.x72{left:272.826667pt;}
.x49{left:275.881333pt;}
.x73{left:278.454667pt;}
.xb1{left:279.560000pt;}
.x5b{left:281.521333pt;}
.x27{left:284.345333pt;}
.x57{left:287.550667pt;}
.xda{left:291.153333pt;}
.xa1{left:295.209333pt;}
.x28{left:296.170667pt;}
.x6d{left:297.180000pt;}
.x55{left:300.456000pt;}
.x31{left:302.082667pt;}
.x20{left:303.012000pt;}
.x89{left:304.966667pt;}
.x63{left:305.928000pt;}
.x4a{left:310.578667pt;}
.x3{left:313.416000pt;}
.x54{left:314.505333pt;}
.x4b{left:316.348000pt;}
.x3d{left:318.310667pt;}
.xd6{left:319.988000pt;}
.x99{left:321.536000pt;}
.xdb{left:324.834667pt;}
.x4c{left:329.698667pt;}
.x74{left:332.278667pt;}
.x6c{left:334.198667pt;}
.x82{left:337.986667pt;}
.xb3{left:339.802667pt;}
.x7a{left:340.929333pt;}
.x34{left:350.838667pt;}
.x83{left:351.756000pt;}
.x64{left:353.065333pt;}
.x4{left:354.878667pt;}
.xbe{left:355.768000pt;}
.x2a{left:359.057333pt;}
.x35{left:364.068000pt;}
.x5{left:366.256000pt;}
.x7b{left:367.344000pt;}
.x32{left:368.365333pt;}
.x21{left:369.296000pt;}
.x9f{left:370.244000pt;}
.x75{left:372.738667pt;}
.x33{left:375.837333pt;}
.x22{left:376.768000pt;}
.x84{left:380.506667pt;}
.x96{left:383.002667pt;}
.x42{left:386.777333pt;}
.x65{left:387.761333pt;}
.xa0{left:390.290667pt;}
.xcf{left:391.938667pt;}
.x2e{left:393.214667pt;}
.x4d{left:395.105333pt;}
.x5c{left:396.970667pt;}
.xd7{left:398.133333pt;}
.x66{left:399.762667pt;}
.x4e{left:402.524000pt;}
.x7c{left:404.573333pt;}
.x93{left:406.342667pt;}
.x85{left:408.094667pt;}
.xd8{left:409.973333pt;}
.x3f{left:411.524000pt;}
.x8a{left:412.561333pt;}
.xb2{left:414.609333pt;}
.x5d{left:416.718667pt;}
.xd0{left:418.738667pt;}
.x1c{left:422.526667pt;}
.xdc{left:430.341333pt;}
.x1d{left:431.437333pt;}
.x2d{left:432.969333pt;}
.x8{left:433.890667pt;}
.xd9{left:439.917333pt;}
.x9{left:441.224000pt;}
.x43{left:442.434667pt;}
.x67{left:443.664000pt;}
.xd1{left:446.237333pt;}
.x40{left:447.836000pt;}
.xaf{left:450.016000pt;}
.xd2{left:453.554667pt;}
.x68{left:456.896000pt;}
.x86{left:461.977333pt;}
.x4f{left:463.054667pt;}
.xb9{left:464.125333pt;}
.x44{left:468.872000pt;}
.x17{left:470.436000pt;}
.x76{left:471.818667pt;}
.xe1{left:475.224000pt;}
.xba{left:476.868000pt;}
.x97{left:478.130667pt;}
.x5e{left:481.149333pt;}
.x2f{left:483.338667pt;}
.x50{left:484.785333pt;}
.x77{left:487.118667pt;}
.x94{left:489.066667pt;}
.x45{left:490.689333pt;}
.x46{left:496.266667pt;}
.xc4{left:498.701333pt;}
.x18{left:502.122667pt;}
.x9b{left:503.864000pt;}
.xe0{left:505.346667pt;}
.x19{left:507.258667pt;}
.xd3{left:514.452000pt;}
.x5f{left:515.846667pt;}
.x78{left:516.793333pt;}
.x1a{left:517.796000pt;}
.x60{left:521.389333pt;}
.x47{left:523.584000pt;}
.x30{left:524.890667pt;}
.x95{left:526.457333pt;}
.x79{left:529.214667pt;}
.x61{left:532.356000pt;}
.x69{left:535.897333pt;}
.x48{left:536.806667pt;}
.xbc{left:538.585333pt;}
.xd4{left:541.252000pt;}
.xc0{left:545.866667pt;}
.x51{left:546.761333pt;}
.xa{left:549.641333pt;}
.xb4{left:550.821333pt;}
.x41{left:552.189333pt;}
.xd5{left:557.928000pt;}
.x2b{left:561.376000pt;}
.xb{left:562.680000pt;}
.xbd{left:563.656000pt;}
.xc1{left:564.708000pt;}
.xc{left:567.949333pt;}
.x9c{left:571.348000pt;}
.x98{left:572.870667pt;}
.xd{left:575.922667pt;}
.x7d{left:577.065333pt;}
.x2c{left:580.161333pt;}
.xa8{left:583.417333pt;}
.x52{left:585.569333pt;}
.xb5{left:589.880000pt;}
.x6a{left:590.806667pt;}
.xa5{left:593.044000pt;}
.x36{left:597.298667pt;}
.x53{left:599.701333pt;}
.x8d{left:600.684000pt;}
.xc2{left:601.845333pt;}
.xe{left:603.616000pt;}
.xe2{left:606.074667pt;}
.x37{left:608.165333pt;}
.x7e{left:611.761333pt;}
.x8e{left:615.084000pt;}
.x38{left:616.201333pt;}
.xf{left:618.230667pt;}
.x8f{left:621.549333pt;}
.x39{left:623.474667pt;}
.xb6{left:624.577333pt;}
.x1b{left:625.653333pt;}
.x7f{left:629.318667pt;}
.x3a{left:630.666667pt;}
.x3b{left:637.132000pt;}
.x87{left:641.313333pt;}
.xb7{left:642.305333pt;}
.x3c{left:644.324000pt;}
.xbb{left:650.560000pt;}
.xa3{left:651.686667pt;}
.x88{left:654.636000pt;}
.xb0{left:656.244000pt;}
.x9d{left:659.088000pt;}
.xa4{left:661.444000pt;}
.xdf{left:665.870667pt;}
.xc3{left:668.390667pt;}
.xab{left:671.372000pt;}
.x9e{left:677.222667pt;}
.x90{left:682.672000pt;}
.xac{left:684.046667pt;}
.x62{left:685.250667pt;}
.x91{left:689.798667pt;}
.x6b{left:692.386667pt;}
.x92{left:697.072000pt;}
}




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