
    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_1970b76e02a901b749683c06.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_d334ca60123232cdaf958761.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.974000;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_1a1aed2f8a042aaef0498787.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958000;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_b403eea3ff3a6b69e8cd68b2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.974000;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_641e60140a5745e350e0053e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919000;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_6dd45f814dcaa991b7823d78.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.946000;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_959228ab7770d342d937fca4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.829000;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_e0c1a1e687e004d48b30787f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.942000;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_65afa2479029fd23d67de9b7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ca720443cc9bdffa62e5dc98.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.936000;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_91b6079fd18cfdf37f7f038a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.934000;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_9e1f5b7e05dd14496f8f2614.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.974000;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_d044ba78572ad8d961b8f53d.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.800000;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_5f87cea14b04d7d561bf77ce.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.259000;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_de61365ac70a9b25df07b115.woff2')format("woff");}.fff{font-family:fff;line-height:0.571000;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_0186b7ed65fb62c2f9c8cd96.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.712000;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;}
.m4{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);}
.m11{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);}
.m22{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);}
.m26{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);}
.m3{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);}
.m1e{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m27{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);}
.me{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m1b{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);}
.mf{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m5{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);}
.m28{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);}
.m1c{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);}
.m14{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);}
.m23{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);}
.m20{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);}
.m8{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1d{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);}
.m6{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m1f{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);}
.mc{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);}
.ma{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);}
.m12{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m17{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);}
.m10{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);}
.m9{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);}
.m2{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);}
.m24{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);}
.m16{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m18{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);}
.m21{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);}
.m15{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);}
.v15{vertical-align:-48.954000px;}
.v9{vertical-align:-34.512000px;}
.v1e{vertical-align:-22.218000px;}
.v8{vertical-align:-19.530000px;}
.v4{vertical-align:-16.842000px;}
.v11{vertical-align:-14.988000px;}
.ve{vertical-align:-11.784000px;}
.v17{vertical-align:-9.534000px;}
.v1{vertical-align:-8.070000px;}
.vf{vertical-align:-6.546000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:8.070000px;}
.v6{vertical-align:10.260000px;}
.v13{vertical-align:11.784000px;}
.v19{vertical-align:14.304000px;}
.v12{vertical-align:16.818000px;}
.v5{vertical-align:18.330000px;}
.va{vertical-align:19.530000px;}
.v2{vertical-align:21.198000px;}
.vc{vertical-align:22.236000px;}
.v18{vertical-align:23.838000px;}
.v16{vertical-align:29.280000px;}
.v1a{vertical-align:34.002000px;}
.v10{vertical-align:36.420000px;}
.v7{vertical-align:37.860000px;}
.vd{vertical-align:41.766000px;}
.v1b{vertical-align:43.056000px;}
.v14{vertical-align:48.954000px;}
.v3{vertical-align:57.000000px;}
.v1c{vertical-align:59.448000px;}
.v1d{vertical-align:61.602000px;}
.ls6{letter-spacing:0.000000px;}
.ls4e{letter-spacing:0.001428px;}
.ls76{letter-spacing:0.002640px;}
.ls74{letter-spacing:0.004596px;}
.ls2f{letter-spacing:0.004692px;}
.ls52{letter-spacing:0.083796px;}
.ls31{letter-spacing:0.089796px;}
.ls57{letter-spacing:0.135756px;}
.ls43{letter-spacing:0.137292px;}
.ls4a{letter-spacing:0.138012px;}
.ls5b{letter-spacing:0.141756px;}
.ls1e{letter-spacing:0.143292px;}
.ls24{letter-spacing:0.218832px;}
.ls1b{letter-spacing:0.271932px;}
.ls3b{letter-spacing:0.353292px;}
.ls7{letter-spacing:0.359292px;}
.ls6f{letter-spacing:0.433020px;}
.ls6d{letter-spacing:0.443592px;}
.ls44{letter-spacing:0.541932px;}
.ls83{letter-spacing:0.862860px;}
.ls34{letter-spacing:0.889512px;}
.ls84{letter-spacing:0.914880px;}
.ls75{letter-spacing:1.074624px;}
.ls51{letter-spacing:1.345932px;}
.ls36{letter-spacing:1.368498px;}
.ls2d{letter-spacing:1.374330px;}
.lsf{letter-spacing:1.742232px;}
.ls3c{letter-spacing:1.748232px;}
.ls20{letter-spacing:2.149932px;}
.ls9{letter-spacing:2.155932px;}
.ls56{letter-spacing:2.687916px;}
.ls80{letter-spacing:2.689932px;}
.ls78{letter-spacing:2.693916px;}
.ls85{letter-spacing:2.988330px;}
.ls67{letter-spacing:3.007806px;}
.ls47{letter-spacing:3.073134px;}
.ls25{letter-spacing:3.079134px;}
.ls6b{letter-spacing:3.097806px;}
.ls18{letter-spacing:3.421878px;}
.ls27{letter-spacing:3.792012px;}
.ls5c{letter-spacing:3.793356px;}
.ls29{letter-spacing:3.793944px;}
.ls45{letter-spacing:4.328616px;}
.lsb{letter-spacing:4.429062px;}
.lse{letter-spacing:4.435932px;}
.ls6e{letter-spacing:4.621806px;}
.ls64{letter-spacing:4.627806px;}
.ls69{letter-spacing:4.711806px;}
.ls1c{letter-spacing:5.108628px;}
.ls14{letter-spacing:5.261292px;}
.ls15{letter-spacing:5.267292px;}
.ls7d{letter-spacing:5.479806px;}
.ls11{letter-spacing:5.676330px;}
.ls55{letter-spacing:5.679744px;}
.ls3e{letter-spacing:5.682330px;}
.ls35{letter-spacing:5.809062px;}
.ls37{letter-spacing:6.175062px;}
.ls1a{letter-spacing:6.409878px;}
.ls41{letter-spacing:6.415878px;}
.lsd{letter-spacing:7.417062px;}
.ls40{letter-spacing:7.423062px;}
.ls79{letter-spacing:7.483878px;}
.ls12{letter-spacing:7.532976px;}
.ls71{letter-spacing:7.723032px;}
.ls72{letter-spacing:7.945032px;}
.ls7f{letter-spacing:8.116278px;}
.ls23{letter-spacing:8.967744px;}
.ls2e{letter-spacing:9.493236px;}
.ls82{letter-spacing:9.506880px;}
.ls38{letter-spacing:9.555360px;}
.ls26{letter-spacing:9.800634px;}
.ls73{letter-spacing:10.123032px;}
.ls86{letter-spacing:10.249165px;}
.ls5{letter-spacing:10.458420px;}
.ls28{letter-spacing:11.065134px;}
.lsc{letter-spacing:11.144634px;}
.ls19{letter-spacing:11.150634px;}
.ls50{letter-spacing:11.415000px;}
.ls3d{letter-spacing:11.952330px;}
.ls66{letter-spacing:11.953056px;}
.ls10{letter-spacing:11.958330px;}
.ls6a{letter-spacing:11.959056px;}
.ls5a{letter-spacing:12.302640px;}
.ls59{letter-spacing:12.307800px;}
.ls7c{letter-spacing:12.489000px;}
.ls54{letter-spacing:12.495000px;}
.ls5e{letter-spacing:13.332768px;}
.ls30{letter-spacing:13.348200px;}
.ls88{letter-spacing:13.387943px;}
.ls1{letter-spacing:13.426843px;}
.ls0{letter-spacing:13.433604px;}
.ls4{letter-spacing:13.450896px;}
.ls3{letter-spacing:13.451604px;}
.ls60{letter-spacing:13.461744px;}
.ls61{letter-spacing:13.510200px;}
.ls2a{letter-spacing:13.537134px;}
.ls48{letter-spacing:13.543134px;}
.ls4b{letter-spacing:13.608563px;}
.ls77{letter-spacing:14.137806px;}
.ls6c{letter-spacing:14.940768px;}
.ls65{letter-spacing:14.945100px;}
.ls22{letter-spacing:14.946768px;}
.ls87{letter-spacing:15.024588px;}
.ls4f{letter-spacing:15.483162px;}
.ls2{letter-spacing:16.793604px;}
.ls46{letter-spacing:17.635932px;}
.ls21{letter-spacing:17.636832px;}
.ls16{letter-spacing:17.645088px;}
.ls33{letter-spacing:18.198768px;}
.ls2c{letter-spacing:18.222768px;}
.ls3a{letter-spacing:18.596628px;}
.ls63{letter-spacing:19.567806px;}
.ls53{letter-spacing:19.909062px;}
.ls4c{letter-spacing:20.869062px;}
.ls39{letter-spacing:20.905062px;}
.ls17{letter-spacing:21.607062px;}
.ls4d{letter-spacing:22.357062px;}
.ls32{letter-spacing:22.381062px;}
.lsa{letter-spacing:22.639236px;}
.ls62{letter-spacing:23.241876px;}
.ls68{letter-spacing:63.302880px;}
.ls70{letter-spacing:74.035806px;}
.ls7b{letter-spacing:91.279806px;}
.ls5d{letter-spacing:156.043062px;}
.ls1d{letter-spacing:245.383932px;}
.ls13{letter-spacing:258.115932px;}
.ls7a{letter-spacing:270.390624px;}
.ls58{letter-spacing:273.787932px;}
.ls81{letter-spacing:283.788984px;}
.ls42{letter-spacing:307.423932px;}
.ls1f{letter-spacing:307.722792px;}
.ls3f{letter-spacing:310.963932px;}
.ls8{letter-spacing:343.002792px;}
.ls49{letter-spacing:393.823932px;}
.ls2b{letter-spacing:424.651932px;}
.ls5f{letter-spacing:426.111744px;}
.ls7e{letter-spacing:479.168880px;}
.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;}
}
.ws4e{word-spacing:-72.732192px;}
.ws4c{word-spacing:-55.087104px;}
.wse7{word-spacing:-46.910112px;}
.ws73{word-spacing:-45.729876px;}
.ws68{word-spacing:-44.685312px;}
.ws6b{word-spacing:-42.041095px;}
.ws49{word-spacing:-41.813095px;}
.ws4b{word-spacing:-34.268052px;}
.wsd8{word-spacing:-32.385192px;}
.ws65{word-spacing:-29.586564px;}
.ws62{word-spacing:-25.983629px;}
.wse0{word-spacing:-25.983468px;}
.wsd9{word-spacing:-25.875607px;}
.ws67{word-spacing:-23.885370px;}
.ws4f{word-spacing:-22.414298px;}
.ws47{word-spacing:-22.303362px;}
.ws4a{word-spacing:-20.550072px;}
.ws77{word-spacing:-19.763892px;}
.ws50{word-spacing:-19.720298px;}
.ws48{word-spacing:-19.615362px;}
.wsc8{word-spacing:-19.615187px;}
.ws6a{word-spacing:-19.609362px;}
.ws3{word-spacing:-14.944500px;}
.ws4d{word-spacing:-13.449000px;}
.wsd2{word-spacing:-10.909500px;}
.ws11a{word-spacing:-10.461000px;}
.wsd3{word-spacing:-9.680343px;}
.wsa6{word-spacing:-8.857362px;}
.ws72{word-spacing:-8.851362px;}
.wsce{word-spacing:-8.720343px;}
.wscf{word-spacing:-7.232256px;}
.ws9{word-spacing:-4.303626px;}
.wsa7{word-spacing:-3.980796px;}
.wsec{word-spacing:-3.766043px;}
.wscb{word-spacing:-3.658020px;}
.wsf7{word-spacing:-3.496632px;}
.ws54{word-spacing:-3.389256px;}
.wsff{word-spacing:-3.347813px;}
.ws82{word-spacing:-3.281879px;}
.wsda{word-spacing:-3.186389px;}
.ws13e{word-spacing:-3.180395px;}
.wscc{word-spacing:-3.174448px;}
.ws33{word-spacing:-3.173856px;}
.wsd{word-spacing:-3.119845px;}
.wsa2{word-spacing:-2.851080px;}
.ws138{word-spacing:-2.845601px;}
.ws117{word-spacing:-2.803590px;}
.ws25{word-spacing:-2.743704px;}
.ws120{word-spacing:-2.720195px;}
.ws11{word-spacing:-2.689692px;}
.wsf{word-spacing:-2.635681px;}
.ws12{word-spacing:-2.528304px;}
.wsba{word-spacing:-2.474293px;}
.ws11e{word-spacing:-2.468754px;}
.wsd1{word-spacing:-2.420874px;}
.ws2d{word-spacing:-2.366916px;}
.wsfb{word-spacing:-2.312905px;}
.ws7a{word-spacing:-2.206120px;}
.wsc0{word-spacing:-2.152109px;}
.wsd5{word-spacing:-2.098098px;}
.ws2c{word-spacing:-2.044732px;}
.ws8e{word-spacing:-2.044087px;}
.wsb2{word-spacing:-1.990721px;}
.wsd7{word-spacing:-1.936710px;}
.wsa9{word-spacing:-1.903980px;}
.wsaa{word-spacing:-1.882699px;}
.ws89{word-spacing:-1.829333px;}
.wsf6{word-spacing:-1.775322px;}
.ws63{word-spacing:-1.667945px;}
.wscd{word-spacing:-1.596113px;}
.wsfc{word-spacing:-1.506557px;}
.wsc2{word-spacing:-1.505911px;}
.ws139{word-spacing:-1.464331px;}
.ws60{word-spacing:-1.452546px;}
.ws58{word-spacing:-1.398535px;}
.ws132{word-spacing:-1.296955px;}
.wsf1{word-spacing:-1.291158px;}
.ws2f{word-spacing:-1.237738px;}
.ws6c{word-spacing:-1.183727px;}
.ws111{word-spacing:-1.171548px;}
.wsd0{word-spacing:-1.152389px;}
.ws5a{word-spacing:-1.129770px;}
.ws71{word-spacing:-1.066146px;}
.ws76{word-spacing:-1.022339px;}
.ws36{word-spacing:-0.968382px;}
.wsb1{word-spacing:-0.860951px;}
.ws5b{word-spacing:-0.806940px;}
.wsb7{word-spacing:-0.752983px;}
.ws35{word-spacing:-0.699563px;}
.wsc6{word-spacing:-0.645552px;}
.ws51{word-spacing:-0.537583px;}
.ws52{word-spacing:-0.484164px;}
.ws26{word-spacing:-0.460535px;}
.ws56{word-spacing:-0.430798px;}
.ws57{word-spacing:-0.430207px;}
.wsfd{word-spacing:-0.376787px;}
.ws12b{word-spacing:-0.334501px;}
.ws31{word-spacing:-0.322776px;}
.wsb4{word-spacing:-0.269410px;}
.ws6{word-spacing:-0.268765px;}
.ws3b{word-spacing:-0.215399px;}
.wsb5{word-spacing:-0.214807px;}
.ws107{word-spacing:-0.209094px;}
.wsaf{word-spacing:-0.193319px;}
.ws21{word-spacing:-0.191519px;}
.ws12f{word-spacing:-0.188555px;}
.wsdd{word-spacing:-0.172572px;}
.ws6d{word-spacing:-0.169596px;}
.ws118{word-spacing:-0.167711px;}
.ws12a{word-spacing:-0.167125px;}
.wsa1{word-spacing:-0.161980px;}
.ws39{word-spacing:-0.161388px;}
.ws102{word-spacing:-0.125699px;}
.wsdc{word-spacing:-0.119459px;}
.ws43{word-spacing:-0.108372px;}
.ws32{word-spacing:-0.107969px;}
.ws24{word-spacing:-0.107377px;}
.ws114{word-spacing:-0.083688px;}
.ws19{word-spacing:-0.065454px;}
.ws8{word-spacing:-0.054011px;}
.ws3d{word-spacing:-0.053796px;}
.ws8b{word-spacing:-0.053419px;}
.wse1{word-spacing:-0.042389px;}
.ws94{word-spacing:-0.041844px;}
.ws130{word-spacing:-0.041718px;}
.wsd4{word-spacing:-0.030228px;}
.ws103{word-spacing:-0.000293px;}
.ws22{word-spacing:-0.000143px;}
.ws2{word-spacing:0.000000px;}
.ws104{word-spacing:0.000293px;}
.ws10c{word-spacing:0.001884px;}
.ws18{word-spacing:0.009900px;}
.ws64{word-spacing:0.010236px;}
.wsb6{word-spacing:0.025776px;}
.ws100{word-spacing:0.041718px;}
.ws75{word-spacing:0.052404px;}
.ws61{word-spacing:0.053419px;}
.ws69{word-spacing:0.053796px;}
.ws34{word-spacing:0.054011px;}
.ws106{word-spacing:0.083688px;}
.ws28{word-spacing:0.107377px;}
.ws10d{word-spacing:0.125699px;}
.wsa{word-spacing:0.161388px;}
.ws110{word-spacing:0.167083px;}
.ws12e{word-spacing:0.167711px;}
.ws108{word-spacing:0.209094px;}
.ws74{word-spacing:0.214807px;}
.wsc{word-spacing:0.215399px;}
.ws7{word-spacing:0.268765px;}
.ws53{word-spacing:0.322776px;}
.ws3c{word-spacing:0.376787px;}
.ws10b{word-spacing:0.460493px;}
.wsc5{word-spacing:0.538175px;}
.ws13d{word-spacing:0.669337px;}
.ws4{word-spacing:0.699563px;}
.ws135{word-spacing:0.711306px;}
.ws41{word-spacing:0.712662px;}
.ws40{word-spacing:0.752983px;}
.ws13f{word-spacing:0.794701px;}
.wsb3{word-spacing:0.806940px;}
.wsf2{word-spacing:0.860359px;}
.wsb8{word-spacing:0.914371px;}
.ws38{word-spacing:0.968382px;}
.ws12d{word-spacing:1.004130px;}
.wsca{word-spacing:1.021747px;}
.wsdb{word-spacing:1.022339px;}
.wsef{word-spacing:1.075759px;}
.ws9f{word-spacing:1.129770px;}
.ws9e{word-spacing:1.183727px;}
.ws11d{word-spacing:1.213518px;}
.wse{word-spacing:1.237147px;}
.ws30{word-spacing:1.291158px;}
.ws59{word-spacing:1.398535px;}
.ws5c{word-spacing:1.613934px;}
.ws37{word-spacing:1.721311px;}
.ws81{word-spacing:1.775322px;}
.wsa0{word-spacing:1.882699px;}
.wse6{word-spacing:1.936710px;}
.wsf5{word-spacing:1.990129px;}
.wsae{word-spacing:1.990721px;}
.ws137{word-spacing:2.050565px;}
.ws66{word-spacing:2.098098px;}
.ws101{word-spacing:2.133960px;}
.ws13b{word-spacing:2.217983px;}
.ws1d{word-spacing:2.247444px;}
.ws5f{word-spacing:2.313497px;}
.ws3f{word-spacing:2.366916px;}
.ws10e{word-spacing:2.468754px;}
.wsb9{word-spacing:2.528304px;}
.ws13{word-spacing:2.582262px;}
.ws7c{word-spacing:2.635681px;}
.ws78{word-spacing:2.636273px;}
.ws55{word-spacing:2.689692px;}
.wsee{word-spacing:2.690284px;}
.ws6f{word-spacing:2.743704px;}
.wsed{word-spacing:2.797069px;}
.wsfa{word-spacing:2.797661px;}
.ws7f{word-spacing:2.851080px;}
.ws5e{word-spacing:2.958457px;}
.ws115{word-spacing:2.970966px;}
.ws5d{word-spacing:3.012468px;}
.wsf0{word-spacing:3.173856px;}
.ws10a{word-spacing:3.221779px;}
.wsf4{word-spacing:3.281233px;}
.ws17{word-spacing:3.335244px;}
.ws126{word-spacing:3.347813px;}
.wsde{word-spacing:3.389256px;}
.ws45{word-spacing:3.550644px;}
.wsf8{word-spacing:3.604063px;}
.ws7d{word-spacing:3.658020px;}
.ws122{word-spacing:3.691674px;}
.ws2e{word-spacing:3.712032px;}
.ws11c{word-spacing:3.723990px;}
.ws1c{word-spacing:3.825409px;}
.wsbf{word-spacing:3.926839px;}
.wsad{word-spacing:3.927431px;}
.wse8{word-spacing:3.980796px;}
.ws29{word-spacing:4.034808px;}
.wsc3{word-spacing:4.088819px;}
.wsfe{word-spacing:4.249615px;}
.ws8d{word-spacing:4.357584px;}
.ws121{word-spacing:4.393620px;}
.ws83{word-spacing:4.465014px;}
.ws1a{word-spacing:4.572391px;}
.ws109{word-spacing:4.603049px;}
.ws113{word-spacing:4.644433px;}
.wsc1{word-spacing:4.679768px;}
.ws5{word-spacing:4.680413px;}
.ws127{word-spacing:4.686444px;}
.wse9{word-spacing:4.734371px;}
.ws70{word-spacing:4.841210px;}
.wsb{word-spacing:4.841801px;}
.wsf9{word-spacing:4.949178px;}
.ws10{word-spacing:5.003189px;}
.wsc4{word-spacing:5.056555px;}
.ws125{word-spacing:5.188656px;}
.ws2a{word-spacing:5.433342px;}
.ws2b{word-spacing:5.487353px;}
.wseb{word-spacing:5.702161px;}
.wsac{word-spacing:5.971517px;}
.wsab{word-spacing:6.018000px;}
.wsdf{word-spacing:7.024068px;}
.wsbd{word-spacing:7.260672px;}
.wse5{word-spacing:7.288218px;}
.ws93{word-spacing:7.290714px;}
.ws91{word-spacing:7.293438px;}
.ws95{word-spacing:7.294050px;}
.ws97{word-spacing:7.294218px;}
.wse3{word-spacing:7.296714px;}
.wsa3{word-spacing:7.401480px;}
.ws12c{word-spacing:7.908390px;}
.ws11f{word-spacing:7.950402px;}
.ws133{word-spacing:8.326579px;}
.ws1f{word-spacing:9.229260px;}
.ws112{word-spacing:9.247608px;}
.wsbe{word-spacing:9.749819px;}
.ws119{word-spacing:10.251445px;}
.ws136{word-spacing:10.293457px;}
.ws131{word-spacing:10.377438px;}
.ws105{word-spacing:10.418863px;}
.ws46{word-spacing:10.419156px;}
.ws27{word-spacing:10.419449px;}
.wsa4{word-spacing:10.460874px;}
.ws10f{word-spacing:10.502844px;}
.ws134{word-spacing:10.628250px;}
.ws140{word-spacing:11.214485px;}
.ws13a{word-spacing:11.487324px;}
.ws88{word-spacing:11.578464px;}
.ws20{word-spacing:11.715661px;}
.wsa5{word-spacing:11.888647px;}
.ws1b{word-spacing:11.907180px;}
.ws13c{word-spacing:12.637139px;}
.ws9b{word-spacing:12.911040px;}
.wsd6{word-spacing:13.125794px;}
.ws8a{word-spacing:13.164241px;}
.ws80{word-spacing:13.171836px;}
.wsc7{word-spacing:13.179805px;}
.ws8c{word-spacing:13.230708px;}
.ws6e{word-spacing:13.233816px;}
.ws44{word-spacing:13.287827px;}
.ws116{word-spacing:13.348152px;}
.ws15{word-spacing:13.395204px;}
.ws11b{word-spacing:13.427832px;}
.ws8f{word-spacing:13.448623px;}
.ws90{word-spacing:13.449215px;}
.ws87{word-spacing:13.502581px;}
.ws86{word-spacing:13.503173px;}
.ws79{word-spacing:13.506204px;}
.ws3a{word-spacing:13.556592px;}
.ws98{word-spacing:13.825411px;}
.wsa8{word-spacing:13.962756px;}
.ws9a{word-spacing:14.068272px;}
.ws123{word-spacing:14.143146px;}
.ws1e{word-spacing:14.154624px;}
.ws9d{word-spacing:14.506272px;}
.ws42{word-spacing:14.578339px;}
.ws9c{word-spacing:14.619468px;}
.ws85{word-spacing:14.997041px;}
.ws99{word-spacing:15.021468px;}
.ws129{word-spacing:15.063714px;}
.ws128{word-spacing:15.105600px;}
.wsf3{word-spacing:15.331914px;}
.wsb0{word-spacing:15.612756px;}
.ws3e{word-spacing:15.762120px;}
.ws7b{word-spacing:16.023726px;}
.ws7e{word-spacing:16.276242px;}
.ws14{word-spacing:16.298046px;}
.ws84{word-spacing:16.298177px;}
.ws16{word-spacing:16.730448px;}
.wsbb{word-spacing:23.631480px;}
.ws0{word-spacing:25.718900px;}
.ws1{word-spacing:25.719210px;}
.ws124{word-spacing:32.721631px;}
.wsbc{word-spacing:33.391094px;}
.ws23{word-spacing:65.388546px;}
.ws92{word-spacing:214.231284px;}
.wsc9{word-spacing:308.779068px;}
.ws96{word-spacing:335.283876px;}
.wse2{word-spacing:513.156282px;}
.wsea{word-spacing:556.473012px;}
.wse4{word-spacing:584.545998px;}
._e{margin-left:-8.382372px;}
._15{margin-left:-5.875077px;}
._2{margin-left:-4.303800px;}
._5{margin-left:-3.119845px;}
._0{margin-left:-1.549040px;}
._3{width:1.022985px;}
._1{width:2.479373px;}
._c{width:3.868455px;}
._d{width:5.018370px;}
._12{width:7.093472px;}
._19{width:9.332484px;}
._f{width:10.382520px;}
._13{width:11.587548px;}
._4{width:12.640769px;}
._11{width:14.524651px;}
._6{width:15.708992px;}
._8{width:16.732541px;}
._7{width:18.414195px;}
._1c{width:23.181660px;}
._18{width:24.646325px;}
._1a{width:26.026382px;}
._17{width:27.575614px;}
._16{width:29.218992px;}
._1b{width:32.076144px;}
._10{width:65.454000px;}
._a{width:586.574136px;}
._14{width:625.242860px;}
._b{width:757.908396px;}
._9{width:1726.209284px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:32.880000px;}
.fs6{font-size:41.844000px;}
.fs7{font-size:43.638000px;}
.fs5{font-size:47.820000px;}
.fs4{font-size:53.796000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.778000px;}
.fs3{font-size:65.454000px;}
.fs1{font-size:71.730000px;}
.fs0{font-size:103.290000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:43.905000px;}
.y31{bottom:126.979500px;}
.y30{bottom:138.934500px;}
.ya0{bottom:143.416500px;}
.y2f{bottom:150.889500px;}
.y5e{bottom:154.042500px;}
.y158{bottom:156.423000px;}
.y9f{bottom:159.855000px;}
.y157{bottom:161.301000px;}
.y1f4{bottom:162.844500px;}
.y2e{bottom:164.040000px;}
.y5d{bottom:170.481000px;}
.y192{bottom:173.883000px;}
.y1f3{bottom:174.799500px;}
.yff{bottom:176.293500px;}
.y2d{bottom:177.190500px;}
.y156{bottom:178.012500px;}
.ycc{bottom:179.280000px;}
.y9e{bottom:180.403500px;}
.y191{bottom:181.176000px;}
.y1f2{bottom:186.754500px;}
.y5c{bottom:186.919500px;}
.yfe{bottom:192.732000px;}
.y155{bottom:194.451000px;}
.ycb{bottom:195.718500px;}
.y1f1{bottom:198.709500px;}
.y190{bottom:200.370000px;}
.y5b{bottom:203.358000px;}
.y112{bottom:209.170500px;}
.y1f0{bottom:210.664500px;}
.y154{bottom:210.889500px;}
.yfd{bottom:213.280500px;}
.yca{bottom:216.267000px;}
.y9d{bottom:218.232000px;}
.y5a{bottom:219.796500px;}
.y1ef{bottom:222.619500px;}
.y18f{bottom:225.393000px;}
.y111{bottom:225.609000px;}
.y2c{bottom:226.036500px;}
.y153{bottom:227.328000px;}
.y1ee{bottom:234.576000px;}
.y9c{bottom:234.670500px;}
.y59{bottom:236.235000px;}
.y18e{bottom:241.830000px;}
.y110{bottom:242.047500px;}
.y2b{bottom:242.475000px;}
.y152{bottom:243.766500px;}
.y1ed{bottom:246.531000px;}
.yc9{bottom:248.136000px;}
.yfc{bottom:248.647500px;}
.y9b{bottom:248.692500px;}
.y9a{bottom:249.091500px;}
.y99{bottom:251.109000px;}
.y58{bottom:252.673500px;}
.y10f{bottom:258.486000px;}
.y151{bottom:260.205000px;}
.y18d{bottom:260.262000px;}
.y2a{bottom:263.023500px;}
.yc8{bottom:264.574500px;}
.yfb{bottom:265.086000px;}
.y18c{bottom:266.221500px;}
.y98{bottom:267.547500px;}
.y57{bottom:269.110500px;}
.y1ec{bottom:270.441000px;}
.y10e{bottom:274.924500px;}
.y150{bottom:276.643500px;}
.yc7{bottom:281.013000px;}
.yfa{bottom:281.524500px;}
.y1eb{bottom:282.396000px;}
.y97{bottom:283.986000px;}
.y56{bottom:285.549000px;}
.y18b{bottom:290.322000px;}
.y10d{bottom:291.363000px;}
.y14f{bottom:293.082000px;}
.y1ea{bottom:294.351000px;}
.y29{bottom:294.529500px;}
.yc6{bottom:297.451500px;}
.yf9{bottom:297.963000px;}
.y96{bottom:300.424500px;}
.y55{bottom:301.987500px;}
.y1e9{bottom:306.306000px;}
.y18a{bottom:306.760500px;}
.y10c{bottom:307.800000px;}
.y28{bottom:309.474000px;}
.yf8{bottom:314.401500px;}
.yc4{bottom:315.562500px;}
.y95{bottom:316.863000px;}
.y1e8{bottom:318.261000px;}
.y54{bottom:318.426000px;}
.y10b{bottom:324.238500px;}
.y27{bottom:324.418500px;}
.y14e{bottom:325.959000px;}
.yc5{bottom:327.195000px;}
.y188{bottom:327.874500px;}
.y189{bottom:328.684500px;}
.y1e7{bottom:330.216000px;}
.yf7{bottom:330.840000px;}
.yc1{bottom:331.372500px;}
.y93{bottom:333.301500px;}
.y187{bottom:333.834000px;}
.y53{bottom:334.864500px;}
.y94{bottom:338.182500px;}
.y26{bottom:339.361500px;}
.y10a{bottom:340.677000px;}
.y1e6{bottom:342.172500px;}
.y14d{bottom:342.396000px;}
.yc3{bottom:345.135000px;}
.yf6{bottom:347.278500px;}
.yc2{bottom:347.824500px;}
.y92{bottom:349.738500px;}
.y52{bottom:351.303000px;}
.y1e5{bottom:354.127500px;}
.y25{bottom:354.306000px;}
.y109{bottom:357.115500px;}
.y186{bottom:358.735500px;}
.y14c{bottom:358.834500px;}
.yf5{bottom:363.717000px;}
.y1e4{bottom:366.082500px;}
.y91{bottom:366.177000px;}
.yc0{bottom:366.972000px;}
.y51{bottom:367.741500px;}
.y24{bottom:369.249000px;}
.y185{bottom:373.156500px;}
.y108{bottom:373.554000px;}
.y184{bottom:375.174000px;}
.y14b{bottom:375.273000px;}
.y1e3{bottom:378.037500px;}
.yf4{bottom:380.154000px;}
.y90{bottom:382.615500px;}
.ybf{bottom:383.410500px;}
.y50{bottom:384.180000px;}
.y107{bottom:389.992500px;}
.y23{bottom:390.234000px;}
.y183{bottom:391.612500px;}
.y14a{bottom:391.711500px;}
.yf3{bottom:396.592500px;}
.y8f{bottom:399.054000px;}
.ybe{bottom:399.849000px;}
.y4f{bottom:400.618500px;}
.y1e2{bottom:401.947500px;}
.y181{bottom:402.648000px;}
.y182{bottom:402.726000px;}
.y149{bottom:404.589000px;}
.y180{bottom:406.189500px;}
.y12e{bottom:406.431000px;}
.y22{bottom:406.672500px;}
.y17f{bottom:408.606000px;}
.y148{bottom:409.467000px;}
.y1b5{bottom:410.541000px;}
.yf2{bottom:413.031000px;}
.y1e1{bottom:413.902500px;}
.y8e{bottom:415.492500px;}
.ybd{bottom:416.287500px;}
.y4e{bottom:417.057000px;}
.y12d{bottom:422.869500px;}
.y1e0{bottom:425.857500px;}
.y147{bottom:426.180000px;}
.y21{bottom:427.219500px;}
.y106{bottom:427.654500px;}
.ybc{bottom:429.292500px;}
.yf1{bottom:429.469500px;}
.y17d{bottom:430.371000px;}
.y17e{bottom:431.121000px;}
.y8d{bottom:431.931000px;}
.y4d{bottom:433.495500px;}
.ybb{bottom:434.170500px;}
.y17c{bottom:436.330500px;}
.y1df{bottom:437.812500px;}
.y12c{bottom:439.308000px;}
.y146{bottom:442.618500px;}
.y105{bottom:444.093000px;}
.yf0{bottom:445.908000px;}
.y1b4{bottom:449.365500px;}
.y1de{bottom:449.769000px;}
.y4c{bottom:449.932500px;}
.yba{bottom:450.883500px;}
.y8c{bottom:452.479500px;}
.y12b{bottom:455.746500px;}
.y145{bottom:459.057000px;}
.y20{bottom:459.124500px;}
.y104{bottom:460.531500px;}
.y1dd{bottom:461.724000px;}
.y17b{bottom:461.881500px;}
.yef{bottom:462.346500px;}
.y1b3{bottom:465.802500px;}
.y4b{bottom:466.371000px;}
.yb9{bottom:467.322000px;}
.y12a{bottom:472.185000px;}
.y1dc{bottom:473.679000px;}
.y1f{bottom:475.563000px;}
.y8b{bottom:477.552000px;}
.y17a{bottom:478.320000px;}
.yee{bottom:478.785000px;}
.yb8{bottom:481.743000px;}
.y1b2{bottom:482.241000px;}
.y4a{bottom:482.809500px;}
.y103{bottom:482.904000px;}
.yb7{bottom:483.760500px;}
.y1db{bottom:485.634000px;}
.y129{bottom:488.622000px;}
.y144{bottom:491.934000px;}
.y1e{bottom:492.001500px;}
.y8a{bottom:493.990500px;}
.y179{bottom:494.758500px;}
.yed{bottom:495.223500px;}
.y1da{bottom:497.589000px;}
.y1b1{bottom:498.679500px;}
.y49{bottom:499.248000px;}
.yb6{bottom:502.113000px;}
.y128{bottom:505.060500px;}
.y143{bottom:508.371000px;}
.y1d9{bottom:509.544000px;}
.yb3{bottom:509.673000px;}
.y89{bottom:510.429000px;}
.y178{bottom:511.197000px;}
.yec{bottom:511.662000px;}
.y1d{bottom:512.548500px;}
.yb2{bottom:514.695000px;}
.y1b0{bottom:515.118000px;}
.y48{bottom:515.686500px;}
.yb1{bottom:518.899500px;}
.y127{bottom:521.499000px;}
.y142{bottom:524.809500px;}
.y88{bottom:526.867500px;}
.y177{bottom:527.635500px;}
.yeb{bottom:531.337500px;}
.y1af{bottom:531.556500px;}
.y47{bottom:532.125000px;}
.yb5{bottom:532.662000px;}
.y1d8{bottom:533.454000px;}
.yb4{bottom:535.351500px;}
.y126{bottom:537.937500px;}
.y87{bottom:543.304500px;}
.y176{bottom:544.074000px;}
.y1c{bottom:544.453500px;}
.y141{bottom:545.358000px;}
.y1d7{bottom:545.409000px;}
.yea{bottom:547.776000px;}
.y1ae{bottom:547.995000px;}
.y46{bottom:548.563500px;}
.y125{bottom:554.376000px;}
.yb0{bottom:554.385000px;}
.y1d6{bottom:557.365500px;}
.y86{bottom:559.743000px;}
.y175{bottom:560.512500px;}
.y1b{bottom:560.892000px;}
.y1ad{bottom:564.433500px;}
.y45{bottom:565.002000px;}
.ye9{bottom:568.323000px;}
.y1d5{bottom:569.320500px;}
.y124{bottom:570.814500px;}
.yaf{bottom:570.823500px;}
.y85{bottom:576.181500px;}
.y174{bottom:576.951000px;}
.y1a{bottom:577.330500px;}
.y140{bottom:580.378500px;}
.y1ac{bottom:580.872000px;}
.y1d4{bottom:581.275500px;}
.y44{bottom:581.440500px;}
.y123{bottom:587.253000px;}
.yae{bottom:587.260500px;}
.y84{bottom:592.620000px;}
.y1d3{bottom:593.230500px;}
.y13f{bottom:593.256000px;}
.y173{bottom:593.389500px;}
.y19{bottom:593.769000px;}
.y1ab{bottom:597.310500px;}
.y43{bottom:597.879000px;}
.y13e{bottom:598.134000px;}
.yad{bottom:600.139500px;}
.ye8{bottom:600.454500px;}
.y122{bottom:603.691500px;}
.y102{bottom:604.879500px;}
.yac{bottom:605.017500px;}
.y1d2{bottom:605.185500px;}
.y83{bottom:609.058500px;}
.y172{bottom:609.826500px;}
.y18{bottom:610.207500px;}
.y1aa{bottom:613.749000px;}
.y42{bottom:614.316000px;}
.y13d{bottom:615.834000px;}
.ye7{bottom:616.893000px;}
.y1d1{bottom:617.140500px;}
.y121{bottom:620.130000px;}
.yab{bottom:621.729000px;}
.y82{bottom:625.497000px;}
.y171{bottom:626.265000px;}
.y17{bottom:626.646000px;}
.y1d0{bottom:629.095500px;}
.y1a9{bottom:630.187500px;}
.y41{bottom:630.754500px;}
.y13c{bottom:632.272500px;}
.ye6{bottom:633.330000px;}
.y120{bottom:636.568500px;}
.yaa{bottom:638.167500px;}
.y1cf{bottom:641.050500px;}
.y81{bottom:641.935500px;}
.y170{bottom:642.703500px;}
.y16{bottom:643.084500px;}
.y1a8{bottom:646.624500px;}
.y40{bottom:647.193000px;}
.y13b{bottom:648.711000px;}
.ye5{bottom:649.768500px;}
.y11f{bottom:653.005500px;}
.ya9{bottom:654.606000px;}
.y80{bottom:658.374000px;}
.y16f{bottom:659.142000px;}
.y15{bottom:659.521500px;}
.y1a7{bottom:663.063000px;}
.y3f{bottom:663.631500px;}
.y1ce{bottom:664.962000px;}
.y13a{bottom:665.148000px;}
.ye4{bottom:666.207000px;}
.y11e{bottom:669.444000px;}
.ya8{bottom:671.044500px;}
.y7f{bottom:674.812500px;}
.y16e{bottom:675.580500px;}
.y14{bottom:675.960000px;}
.y1cd{bottom:676.917000px;}
.y1a6{bottom:679.501500px;}
.y3e{bottom:680.070000px;}
.y139{bottom:681.586500px;}
.ye3{bottom:682.645500px;}
.y11d{bottom:685.882500px;}
.ya7{bottom:687.483000px;}
.y1cc{bottom:688.872000px;}
.y7e{bottom:691.251000px;}
.y16d{bottom:692.019000px;}
.y13{bottom:692.398500px;}
.y1a5{bottom:695.940000px;}
.y3d{bottom:696.508500px;}
.y137{bottom:698.025000px;}
.ye2{bottom:699.084000px;}
.y1cb{bottom:700.827000px;}
.y11c{bottom:702.321000px;}
.y138{bottom:702.907500px;}
.ya6{bottom:705.594000px;}
.y196{bottom:706.431000px;}
.y7d{bottom:707.688000px;}
.y16c{bottom:708.457500px;}
.y12{bottom:708.837000px;}
.ya3{bottom:712.177500px;}
.y1a4{bottom:712.378500px;}
.y1ca{bottom:712.782000px;}
.y3c{bottom:712.947000px;}
.y136{bottom:714.463500px;}
.ye1{bottom:715.522500px;}
.y11b{bottom:718.759500px;}
.ya2{bottom:721.404000px;}
.y7c{bottom:724.126500px;}
.y1c9{bottom:724.737000px;}
.y11{bottom:725.275500px;}
.y135{bottom:727.341000px;}
.y1a3{bottom:728.817000px;}
.y3b{bottom:729.385500px;}
.y195{bottom:731.808000px;}
.ye0{bottom:731.961000px;}
.y134{bottom:732.219000px;}
.ya5{bottom:735.166500px;}
.y11a{bottom:735.198000px;}
.y1c8{bottom:736.692000px;}
.ya4{bottom:737.856000px;}
.y7b{bottom:740.565000px;}
.y16b{bottom:741.334500px;}
.y10{bottom:741.714000px;}
.y1a2{bottom:745.255500px;}
.y3a{bottom:745.824000px;}
.ydf{bottom:748.399500px;}
.y101{bottom:748.483500px;}
.y1c7{bottom:748.647000px;}
.y133{bottom:748.932000px;}
.y194{bottom:749.572500px;}
.y119{bottom:751.636500px;}
.y7a{bottom:757.003500px;}
.y16a{bottom:757.773000px;}
.yf{bottom:758.152500px;}
.y1c6{bottom:760.602000px;}
.y1a1{bottom:761.694000px;}
.y39{bottom:762.262500px;}
.yde{bottom:764.838000px;}
.y100{bottom:764.922000px;}
.y132{bottom:765.370500px;}
.y118{bottom:768.075000px;}
.y1c5{bottom:772.558500px;}
.y79{bottom:773.442000px;}
.ye{bottom:774.591000px;}
.y169{bottom:777.520500px;}
.y1a0{bottom:778.132500px;}
.y38{bottom:778.701000px;}
.ydd{bottom:781.276500px;}
.y168{bottom:781.848000px;}
.y117{bottom:784.513500px;}
.y78{bottom:789.880500px;}
.yd{bottom:791.029500px;}
.y19f{bottom:794.571000px;}
.y37{bottom:795.138000px;}
.y1c4{bottom:796.468500px;}
.y131{bottom:799.461000px;}
.ydc{bottom:800.952000px;}
.y77{bottom:806.319000px;}
.yc{bottom:807.468000px;}
.y1c3{bottom:808.423500px;}
.y167{bottom:808.968000px;}
.y19e{bottom:811.008000px;}
.y36{bottom:811.576500px;}
.ydb{bottom:817.390500px;}
.y130{bottom:817.602000px;}
.y1c2{bottom:820.378500px;}
.y76{bottom:822.757500px;}
.yb{bottom:823.905000px;}
.y166{bottom:825.406500px;}
.y19d{bottom:827.446500px;}
.y35{bottom:828.015000px;}
.y12f{bottom:829.557000px;}
.y1c1{bottom:832.333500px;}
.yda{bottom:833.827500px;}
.y75{bottom:839.196000px;}
.ya{bottom:840.343500px;}
.y165{bottom:841.845000px;}
.y1c0{bottom:844.288500px;}
.y33{bottom:844.453500px;}
.y34{bottom:849.336000px;}
.yd9{bottom:850.266000px;}
.y74{bottom:855.634500px;}
.y1bf{bottom:856.243500px;}
.y9{bottom:856.782000px;}
.y164{bottom:858.283500px;}
.ya1{bottom:860.515500px;}
.y32{bottom:860.892000px;}
.yd8{bottom:866.704500px;}
.y1be{bottom:868.198500px;}
.y116{bottom:871.222500px;}
.y73{bottom:872.073000px;}
.y115{bottom:876.100500px;}
.y19c{bottom:876.753000px;}
.y8{bottom:877.330500px;}
.y163{bottom:879.513000px;}
.y1bd{bottom:880.155000px;}
.yd7{bottom:883.143000px;}
.y199{bottom:886.972500px;}
.y72{bottom:888.510000px;}
.y1bc{bottom:892.110000px;}
.y114{bottom:892.839000px;}
.y19b{bottom:893.191500px;}
.yd6{bottom:899.581500px;}
.y198{bottom:903.411000px;}
.y1bb{bottom:904.065000px;}
.y7{bottom:907.308000px;}
.y19a{bottom:911.280000px;}
.y193{bottom:911.724000px;}
.y162{bottom:914.274000px;}
.y71{bottom:914.719500px;}
.y113{bottom:915.232500px;}
.yd5{bottom:916.020000px;}
.y197{bottom:921.499500px;}
.y6{bottom:925.240500px;}
.y1ba{bottom:927.975000px;}
.y161{bottom:930.712500px;}
.yd4{bottom:932.458500px;}
.y70{bottom:936.073500px;}
.y1fe{bottom:939.930000px;}
.y5{bottom:943.173000px;}
.y1b9{bottom:944.040000px;}
.y160{bottom:945.133500px;}
.y15f{bottom:947.151000px;}
.y6f{bottom:947.661000px;}
.y6e{bottom:947.928000px;}
.yd3{bottom:948.897000px;}
.y1fd{bottom:951.885000px;}
.y6d{bottom:952.512000px;}
.y4{bottom:961.105500px;}
.y15e{bottom:963.589500px;}
.y1fc{bottom:963.840000px;}
.yd2{bottom:965.335500px;}
.y68{bottom:967.021500px;}
.y67{bottom:971.899500px;}
.y6c{bottom:972.174000px;}
.y1fb{bottom:975.795000px;}
.y3{bottom:979.039500px;}
.y15d{bottom:980.028000px;}
.yd1{bottom:981.774000px;}
.y6b{bottom:983.052000px;}
.y69{bottom:983.734500px;}
.y6a{bottom:983.971500px;}
.y1fa{bottom:987.751500px;}
.y66{bottom:988.611000px;}
.y1b8{bottom:994.102500px;}
.yd0{bottom:998.211000px;}
.y1f9{bottom:999.706500px;}
.y15c{bottom:1000.543500px;}
.y15b{bottom:1004.748000px;}
.y65{bottom:1005.586500px;}
.y1b7{bottom:1010.541000px;}
.y1f8{bottom:1011.661500px;}
.ycf{bottom:1014.649500px;}
.y2{bottom:1014.675000px;}
.y63{bottom:1017.190500px;}
.y64{bottom:1017.442500px;}
.y62{bottom:1022.025000px;}
.y1f6{bottom:1023.616500px;}
.y1b6{bottom:1026.979500px;}
.y1f7{bottom:1027.576500px;}
.y15a{bottom:1029.771000px;}
.yce{bottom:1031.088000px;}
.y1f5{bottom:1035.571500px;}
.y159{bottom:1042.648500px;}
.y1{bottom:1044.562500px;}
.y61{bottom:1046.094000px;}
.ycd{bottom:1047.526500px;}
.y60{bottom:1086.979500px;}
.h22{height:3.012576px;}
.h3b{height:23.574960px;}
.he{height:29.500020px;}
.hb{height:29.625552px;}
.h21{height:30.459324px;}
.ha{height:30.797184px;}
.hc{height:31.288446px;}
.h23{height:32.117568px;}
.h9{height:33.856560px;}
.h7{height:34.430400px;}
.h8{height:35.195520px;}
.hd{height:37.152000px;}
.h1f{height:37.549608px;}
.h1c{height:37.657200px;}
.h6{height:38.571732px;}
.hf{height:38.733120px;}
.h5{height:39.593856px;}
.h3{height:43.996608px;}
.h1d{height:45.619608px;}
.h4{height:47.126880px;}
.h1e{height:48.237732px;}
.h25{height:49.983324px;}
.h13{height:49.989324px;}
.h18{height:51.273324px;}
.h39{height:51.647568px;}
.h3a{height:51.833856px;}
.h26{height:52.677324px;}
.h2{height:52.793280px;}
.h10{height:53.315568px;}
.h2c{height:53.506446px;}
.h24{height:54.335568px;}
.h29{height:56.303856px;}
.h2b{height:56.411856px;}
.h2e{height:56.903856px;}
.h2a{height:58.245120px;}
.h1b{height:58.997856px;}
.h14{height:59.105856px;}
.h2f{height:59.625324px;}
.h34{height:59.631324px;}
.h33{height:60.431856px;}
.h35{height:61.391568px;}
.h2d{height:61.397568px;}
.h36{height:62.460576px;}
.h38{height:63.431856px;}
.h16{height:69.837324px;}
.h12{height:69.977568px;}
.h19{height:69.983568px;}
.h11{height:70.617324px;}
.h28{height:71.045568px;}
.h1a{height:71.051568px;}
.h1{height:72.096420px;}
.h15{height:72.821568px;}
.h32{height:73.515324px;}
.h17{height:73.883568px;}
.h20{height:76.013856px;}
.h31{height:76.515324px;}
.h37{height:83.058576px;}
.h30{height:83.463324px;}
.h27{height:92.831856px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x12{left:80.697000px;}
.xdf{left:85.561500px;}
.x1{left:88.644000px;}
.x51{left:95.641500px;}
.xcb{left:98.454000px;}
.x8f{left:100.129500px;}
.x4b{left:101.242500px;}
.xe0{left:103.350000px;}
.x88{left:104.647500px;}
.x56{left:108.825000px;}
.x90{left:112.638000px;}
.x89{left:116.866500px;}
.xc2{left:120.126000px;}
.x7{left:121.401000px;}
.x5{left:125.436000px;}
.x57{left:129.504000px;}
.xd8{left:130.837500px;}
.xd1{left:132.396000px;}
.xc1{left:138.196500px;}
.xde{left:140.896500px;}
.xcc{left:143.445000px;}
.x6{left:145.999500px;}
.x52{left:149.155500px;}
.x3{left:158.020500px;}
.x53{left:161.662500px;}
.xd6{left:162.790500px;}
.x97{left:163.794000px;}
.x8c{left:165.771000px;}
.x17{left:167.971500px;}
.x4{left:169.087500px;}
.x8e{left:172.777500px;}
.x8a{left:174.094500px;}
.x98{left:176.302500px;}
.x54{left:178.338000px;}
.xb0{left:180.277500px;}
.x93{left:181.723500px;}
.xc3{left:183.051000px;}
.x18{left:184.635000px;}
.x8b{left:186.603000px;}
.x94{left:187.978500px;}
.x66{left:189.909000px;}
.xad{left:198.361500px;}
.xc4{left:200.070000px;}
.x91{left:202.057500px;}
.xc5{left:205.660500px;}
.x92{left:208.312500px;}
.xb1{left:214.494000px;}
.xc8{left:217.900500px;}
.xbc{left:225.409500px;}
.xa9{left:227.592000px;}
.xbd{left:234.549000px;}
.xc7{left:243.664500px;}
.x64{left:247.420500px;}
.xc9{left:249.438000px;}
.xaa{left:252.163500px;}
.xcd{left:253.284000px;}
.x65{left:255.718500px;}
.xbe{left:259.626000px;}
.x15{left:260.701500px;}
.x13{left:264.492000px;}
.x55{left:269.800500px;}
.x8d{left:271.459500px;}
.x5e{left:273.798000px;}
.x16{left:278.755500px;}
.xc6{left:280.225500px;}
.x14{left:281.616000px;}
.xd5{left:283.308000px;}
.xa5{left:285.892500px;}
.xa8{left:288.274500px;}
.x5f{left:291.198000px;}
.xca{left:292.351500px;}
.xce{left:293.415000px;}
.x5a{left:297.834000px;}
.xac{left:299.182500px;}
.x99{left:300.913500px;}
.xa6{left:304.320000px;}
.xd2{left:305.458500px;}
.x60{left:308.850000px;}
.x5b{left:310.342500px;}
.x95{left:312.789000px;}
.xd7{left:314.437500px;}
.x50{left:316.240500px;}
.xae{left:322.644000px;}
.xd3{left:328.765500px;}
.x96{left:332.814000px;}
.x9a{left:336.288000px;}
.x4c{left:340.500000px;}
.xab{left:345.448500px;}
.x61{left:348.366000px;}
.x4d{left:349.641000px;}
.x9{left:355.192500px;}
.xaf{left:356.821500px;}
.xd4{left:360.889500px;}
.xcf{left:362.844000px;}
.x5c{left:366.132000px;}
.x62{left:368.358000px;}
.xb{left:371.659500px;}
.x2{left:373.177500px;}
.x58{left:377.095500px;}
.x5d{left:386.260500px;}
.xa7{left:388.908000px;}
.xbf{left:390.048000px;}
.xc0{left:401.419500px;}
.xd0{left:402.952500px;}
.x59{left:407.625000px;}
.x67{left:410.239500px;}
.x48{left:412.201500px;}
.xd9{left:414.133500px;}
.xc{left:415.692000px;}
.x8{left:418.170000px;}
.x63{left:426.307500px;}
.x49{left:434.652000px;}
.x4e{left:437.914500px;}
.xda{left:439.579500px;}
.xa{left:441.441000px;}
.x47{left:452.250000px;}
.x4f{left:475.396500px;}
.x19{left:476.932500px;}
.x38{left:481.816500px;}
.xb4{left:485.803500px;}
.xdb{left:487.552500px;}
.x21{left:491.877000px;}
.x39{left:494.325000px;}
.xb5{left:495.919500px;}
.xb6{left:499.936500px;}
.x3a{left:501.018000px;}
.x86{left:505.008000px;}
.x40{left:507.159000px;}
.xb7{left:509.077500px;}
.x6f{left:511.600500px;}
.x3b{left:513.526500px;}
.x3c{left:520.219500px;}
.xa1{left:523.402500px;}
.x41{left:526.026000px;}
.x7a{left:530.730000px;}
.x3d{left:532.728000px;}
.x9c{left:533.892000px;}
.xdc{left:537.087000px;}
.xb3{left:538.264500px;}
.x3e{left:539.421000px;}
.x9e{left:544.131000px;}
.x70{left:545.442000px;}
.x9d{left:547.533000px;}
.xdd{left:549.595500px;}
.x3f{left:551.929500px;}
.x2c{left:553.954500px;}
.x2d{left:560.209500px;}
.xa2{left:562.230000px;}
.x2e{left:566.563500px;}
.x73{left:568.495500px;}
.xba{left:570.561000px;}
.x74{left:574.749000px;}
.x6a{left:576.631500px;}
.x2f{left:579.072000px;}
.x22{left:585.214500px;}
.x87{left:586.789500px;}
.x82{left:587.911500px;}
.x23{left:591.468000px;}
.x4a{left:592.771500px;}
.x80{left:594.702000px;}
.x34{left:596.434500px;}
.x24{left:597.819000px;}
.x6c{left:599.005500px;}
.xbb{left:601.389000px;}
.x25{left:604.074000px;}
.x35{left:608.941500px;}
.x26{left:610.425000px;}
.x36{left:615.285000px;}
.xf{left:617.884500px;}
.x71{left:620.268000px;}
.x27{left:622.933500px;}
.x37{left:627.793500px;}
.x72{left:629.407500px;}
.x7c{left:632.563500px;}
.x75{left:635.076000px;}
.x10{left:638.446500px;}
.x76{left:640.483500px;}
.x77{left:644.373000px;}
.x1a{left:647.368500px;}
.x6d{left:651.928500px;}
.x78{left:654.129000px;}
.x11{left:655.162500px;}
.x6b{left:656.857500px;}
.xb2{left:658.305000px;}
.x7d{left:660.492000px;}
.xe{left:661.536000px;}
.xd{left:662.914500px;}
.x6e{left:671.761500px;}
.x79{left:674.307000px;}
.x83{left:675.835500px;}
.xa3{left:679.146000px;}
.x84{left:680.617500px;}
.x9b{left:684.519000px;}
.x81{left:687.132000px;}
.x7e{left:692.239500px;}
.xa4{left:703.717500px;}
.x7f{left:704.748000px;}
.x9f{left:706.678500px;}
.x85{left:714.169500px;}
.xb8{left:717.388500px;}
.xb9{left:729.897000px;}
.xa0{left:730.944000px;}
.x42{left:733.341000px;}
.x43{left:745.849500px;}
.x7b{left:747.096000px;}
.x30{left:750.754500px;}
.x44{left:752.482500px;}
.x31{left:757.009500px;}
.x1f{left:760.363500px;}
.x32{left:763.363500px;}
.x45{left:764.991000px;}
.x68{left:770.830500px;}
.x20{left:772.872000px;}
.x33{left:775.872000px;}
.x69{left:778.981500px;}
.x28{left:789.096000px;}
.x29{left:795.349500px;}
.x1b{left:799.629000px;}
.x2a{left:800.761500px;}
.x1c{left:812.137500px;}
.x2b{left:813.270000px;}
.x1d{left:818.473500px;}
.x46{left:825.288000px;}
.x1e{left:830.980500px;}
@media print{
.v15{vertical-align:-43.514667pt;}
.v9{vertical-align:-30.677333pt;}
.v1e{vertical-align:-19.749333pt;}
.v8{vertical-align:-17.360000pt;}
.v4{vertical-align:-14.970667pt;}
.v11{vertical-align:-13.322667pt;}
.ve{vertical-align:-10.474667pt;}
.v17{vertical-align:-8.474667pt;}
.v1{vertical-align:-7.173333pt;}
.vf{vertical-align:-5.818667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.173333pt;}
.v6{vertical-align:9.120000pt;}
.v13{vertical-align:10.474667pt;}
.v19{vertical-align:12.714667pt;}
.v12{vertical-align:14.949333pt;}
.v5{vertical-align:16.293333pt;}
.va{vertical-align:17.360000pt;}
.v2{vertical-align:18.842667pt;}
.vc{vertical-align:19.765333pt;}
.v18{vertical-align:21.189333pt;}
.v16{vertical-align:26.026667pt;}
.v1a{vertical-align:30.224000pt;}
.v10{vertical-align:32.373333pt;}
.v7{vertical-align:33.653333pt;}
.vd{vertical-align:37.125333pt;}
.v1b{vertical-align:38.272000pt;}
.v14{vertical-align:43.514667pt;}
.v3{vertical-align:50.666667pt;}
.v1c{vertical-align:52.842667pt;}
.v1d{vertical-align:54.757333pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4e{letter-spacing:0.001269pt;}
.ls76{letter-spacing:0.002347pt;}
.ls74{letter-spacing:0.004085pt;}
.ls2f{letter-spacing:0.004171pt;}
.ls52{letter-spacing:0.074485pt;}
.ls31{letter-spacing:0.079819pt;}
.ls57{letter-spacing:0.120672pt;}
.ls43{letter-spacing:0.122037pt;}
.ls4a{letter-spacing:0.122677pt;}
.ls5b{letter-spacing:0.126005pt;}
.ls1e{letter-spacing:0.127371pt;}
.ls24{letter-spacing:0.194517pt;}
.ls1b{letter-spacing:0.241717pt;}
.ls3b{letter-spacing:0.314037pt;}
.ls7{letter-spacing:0.319371pt;}
.ls6f{letter-spacing:0.384907pt;}
.ls6d{letter-spacing:0.394304pt;}
.ls44{letter-spacing:0.481717pt;}
.ls83{letter-spacing:0.766987pt;}
.ls34{letter-spacing:0.790677pt;}
.ls84{letter-spacing:0.813227pt;}
.ls75{letter-spacing:0.955221pt;}
.ls51{letter-spacing:1.196384pt;}
.ls36{letter-spacing:1.216443pt;}
.ls2d{letter-spacing:1.221627pt;}
.lsf{letter-spacing:1.548651pt;}
.ls3c{letter-spacing:1.553984pt;}
.ls20{letter-spacing:1.911051pt;}
.ls9{letter-spacing:1.916384pt;}
.ls56{letter-spacing:2.389259pt;}
.ls80{letter-spacing:2.391051pt;}
.ls78{letter-spacing:2.394592pt;}
.ls85{letter-spacing:2.656293pt;}
.ls67{letter-spacing:2.673605pt;}
.ls47{letter-spacing:2.731675pt;}
.ls25{letter-spacing:2.737008pt;}
.ls6b{letter-spacing:2.753605pt;}
.ls18{letter-spacing:3.041669pt;}
.ls27{letter-spacing:3.370677pt;}
.ls5c{letter-spacing:3.371872pt;}
.ls29{letter-spacing:3.372395pt;}
.ls45{letter-spacing:3.847659pt;}
.lsb{letter-spacing:3.936944pt;}
.lse{letter-spacing:3.943051pt;}
.ls6e{letter-spacing:4.108272pt;}
.ls64{letter-spacing:4.113605pt;}
.ls69{letter-spacing:4.188272pt;}
.ls1c{letter-spacing:4.541003pt;}
.ls14{letter-spacing:4.676704pt;}
.ls15{letter-spacing:4.682037pt;}
.ls7d{letter-spacing:4.870939pt;}
.ls11{letter-spacing:5.045627pt;}
.ls55{letter-spacing:5.048661pt;}
.ls3e{letter-spacing:5.050960pt;}
.ls35{letter-spacing:5.163611pt;}
.ls37{letter-spacing:5.488944pt;}
.ls1a{letter-spacing:5.697669pt;}
.ls41{letter-spacing:5.703003pt;}
.lsd{letter-spacing:6.592944pt;}
.ls40{letter-spacing:6.598277pt;}
.ls79{letter-spacing:6.652336pt;}
.ls12{letter-spacing:6.695979pt;}
.ls71{letter-spacing:6.864917pt;}
.ls72{letter-spacing:7.062251pt;}
.ls7f{letter-spacing:7.214469pt;}
.ls23{letter-spacing:7.971328pt;}
.ls2e{letter-spacing:8.438432pt;}
.ls82{letter-spacing:8.450560pt;}
.ls38{letter-spacing:8.493653pt;}
.ls26{letter-spacing:8.711675pt;}
.ls73{letter-spacing:8.998251pt;}
.ls86{letter-spacing:9.110369pt;}
.ls5{letter-spacing:9.296373pt;}
.ls28{letter-spacing:9.835675pt;}
.lsc{letter-spacing:9.906341pt;}
.ls19{letter-spacing:9.911675pt;}
.ls50{letter-spacing:10.146667pt;}
.ls3d{letter-spacing:10.624293pt;}
.ls66{letter-spacing:10.624939pt;}
.ls10{letter-spacing:10.629627pt;}
.ls6a{letter-spacing:10.630272pt;}
.ls5a{letter-spacing:10.935680pt;}
.ls59{letter-spacing:10.940267pt;}
.ls7c{letter-spacing:11.101333pt;}
.ls54{letter-spacing:11.106667pt;}
.ls5e{letter-spacing:11.851349pt;}
.ls30{letter-spacing:11.865067pt;}
.ls88{letter-spacing:11.900394pt;}
.ls1{letter-spacing:11.934971pt;}
.ls0{letter-spacing:11.940981pt;}
.ls4{letter-spacing:11.956352pt;}
.ls3{letter-spacing:11.956981pt;}
.ls60{letter-spacing:11.965995pt;}
.ls61{letter-spacing:12.009067pt;}
.ls2a{letter-spacing:12.033008pt;}
.ls48{letter-spacing:12.038341pt;}
.ls4b{letter-spacing:12.096501pt;}
.ls77{letter-spacing:12.566939pt;}
.ls6c{letter-spacing:13.280683pt;}
.ls65{letter-spacing:13.284533pt;}
.ls22{letter-spacing:13.286016pt;}
.ls87{letter-spacing:13.355190pt;}
.ls4f{letter-spacing:13.762811pt;}
.ls2{letter-spacing:14.927648pt;}
.ls46{letter-spacing:15.676384pt;}
.ls21{letter-spacing:15.677184pt;}
.ls16{letter-spacing:15.684523pt;}
.ls33{letter-spacing:16.176683pt;}
.ls2c{letter-spacing:16.198016pt;}
.ls3a{letter-spacing:16.530336pt;}
.ls63{letter-spacing:17.393605pt;}
.ls53{letter-spacing:17.696944pt;}
.ls4c{letter-spacing:18.550277pt;}
.ls39{letter-spacing:18.582277pt;}
.ls17{letter-spacing:19.206277pt;}
.ls4d{letter-spacing:19.872944pt;}
.ls32{letter-spacing:19.894277pt;}
.lsa{letter-spacing:20.123765pt;}
.ls62{letter-spacing:20.659445pt;}
.ls68{letter-spacing:56.269227pt;}
.ls70{letter-spacing:65.809605pt;}
.ls7b{letter-spacing:81.137605pt;}
.ls5d{letter-spacing:138.704944pt;}
.ls1d{letter-spacing:218.119051pt;}
.ls13{letter-spacing:229.436384pt;}
.ls7a{letter-spacing:240.347221pt;}
.ls58{letter-spacing:243.367051pt;}
.ls81{letter-spacing:252.256875pt;}
.ls42{letter-spacing:273.265717pt;}
.ls1f{letter-spacing:273.531371pt;}
.ls3f{letter-spacing:276.412384pt;}
.ls8{letter-spacing:304.891371pt;}
.ls49{letter-spacing:350.065717pt;}
.ls2b{letter-spacing:377.468384pt;}
.ls5f{letter-spacing:378.765995pt;}
.ls7e{letter-spacing:425.927893pt;}
.ws4e{word-spacing:-64.650837pt;}
.ws4c{word-spacing:-48.966315pt;}
.wse7{word-spacing:-41.697877pt;}
.ws73{word-spacing:-40.648779pt;}
.ws68{word-spacing:-39.720277pt;}
.ws6b{word-spacing:-37.369863pt;}
.ws49{word-spacing:-37.167196pt;}
.ws4b{word-spacing:-30.460491pt;}
.wsd8{word-spacing:-28.786837pt;}
.ws65{word-spacing:-26.299168pt;}
.ws62{word-spacing:-23.096559pt;}
.wse0{word-spacing:-23.096416pt;}
.wsd9{word-spacing:-23.000540pt;}
.ws67{word-spacing:-21.231440pt;}
.ws4f{word-spacing:-19.923820pt;}
.ws47{word-spacing:-19.825211pt;}
.ws4a{word-spacing:-18.266731pt;}
.ws77{word-spacing:-17.567904pt;}
.ws50{word-spacing:-17.529153pt;}
.ws48{word-spacing:-17.435877pt;}
.wsc8{word-spacing:-17.435722pt;}
.ws6a{word-spacing:-17.430544pt;}
.ws3{word-spacing:-13.284000pt;}
.ws4d{word-spacing:-11.954667pt;}
.wsd2{word-spacing:-9.697333pt;}
.ws11a{word-spacing:-9.298667pt;}
.wsd3{word-spacing:-8.604750pt;}
.wsa6{word-spacing:-7.873211pt;}
.ws72{word-spacing:-7.867877pt;}
.wsce{word-spacing:-7.751416pt;}
.wscf{word-spacing:-6.428672pt;}
.ws9{word-spacing:-3.825446pt;}
.wsa7{word-spacing:-3.538486pt;}
.wsec{word-spacing:-3.347594pt;}
.wscb{word-spacing:-3.251574pt;}
.wsf7{word-spacing:-3.108118pt;}
.ws54{word-spacing:-3.012672pt;}
.wsff{word-spacing:-2.975834pt;}
.ws82{word-spacing:-2.917226pt;}
.wsda{word-spacing:-2.832346pt;}
.ws13e{word-spacing:-2.827018pt;}
.wscc{word-spacing:-2.821732pt;}
.ws33{word-spacing:-2.821206pt;}
.wsd{word-spacing:-2.773196pt;}
.wsa2{word-spacing:-2.534294pt;}
.ws138{word-spacing:-2.529423pt;}
.ws117{word-spacing:-2.492080pt;}
.ws25{word-spacing:-2.438848pt;}
.ws120{word-spacing:-2.417951pt;}
.ws11{word-spacing:-2.390838pt;}
.wsf{word-spacing:-2.342828pt;}
.ws12{word-spacing:-2.247382pt;}
.wsba{word-spacing:-2.199372pt;}
.ws11e{word-spacing:-2.194448pt;}
.wsd1{word-spacing:-2.151888pt;}
.ws2d{word-spacing:-2.103926pt;}
.wsfb{word-spacing:-2.055916pt;}
.ws7a{word-spacing:-1.960996pt;}
.wsc0{word-spacing:-1.912986pt;}
.wsd5{word-spacing:-1.864976pt;}
.ws2c{word-spacing:-1.817540pt;}
.ws8e{word-spacing:-1.816966pt;}
.wsb2{word-spacing:-1.769530pt;}
.wsd7{word-spacing:-1.721520pt;}
.wsa9{word-spacing:-1.692427pt;}
.wsaa{word-spacing:-1.673510pt;}
.ws89{word-spacing:-1.626074pt;}
.wsf6{word-spacing:-1.578064pt;}
.ws63{word-spacing:-1.482618pt;}
.wscd{word-spacing:-1.418767pt;}
.wsfc{word-spacing:-1.339162pt;}
.wsc2{word-spacing:-1.338588pt;}
.ws139{word-spacing:-1.301627pt;}
.ws60{word-spacing:-1.291152pt;}
.ws58{word-spacing:-1.243142pt;}
.ws132{word-spacing:-1.152849pt;}
.wsf1{word-spacing:-1.147696pt;}
.ws2f{word-spacing:-1.100212pt;}
.ws6c{word-spacing:-1.052202pt;}
.ws111{word-spacing:-1.041376pt;}
.wsd0{word-spacing:-1.024346pt;}
.ws5a{word-spacing:-1.004240pt;}
.ws71{word-spacing:-0.947686pt;}
.ws76{word-spacing:-0.908746pt;}
.ws36{word-spacing:-0.860784pt;}
.wsb1{word-spacing:-0.765290pt;}
.ws5b{word-spacing:-0.717280pt;}
.wsb7{word-spacing:-0.669318pt;}
.ws35{word-spacing:-0.621834pt;}
.wsc6{word-spacing:-0.573824pt;}
.ws51{word-spacing:-0.477852pt;}
.ws52{word-spacing:-0.430368pt;}
.ws26{word-spacing:-0.409365pt;}
.ws56{word-spacing:-0.382932pt;}
.ws57{word-spacing:-0.382406pt;}
.wsfd{word-spacing:-0.334922pt;}
.ws12b{word-spacing:-0.297334pt;}
.ws31{word-spacing:-0.286912pt;}
.wsb4{word-spacing:-0.239476pt;}
.ws6{word-spacing:-0.238902pt;}
.ws3b{word-spacing:-0.191466pt;}
.wsb5{word-spacing:-0.190940pt;}
.ws107{word-spacing:-0.185862pt;}
.wsaf{word-spacing:-0.171839pt;}
.ws21{word-spacing:-0.170239pt;}
.ws12f{word-spacing:-0.167605pt;}
.wsdd{word-spacing:-0.153397pt;}
.ws6d{word-spacing:-0.150752pt;}
.ws118{word-spacing:-0.149076pt;}
.ws12a{word-spacing:-0.148555pt;}
.wsa1{word-spacing:-0.143982pt;}
.ws39{word-spacing:-0.143456pt;}
.ws102{word-spacing:-0.111733pt;}
.wsdc{word-spacing:-0.106186pt;}
.ws43{word-spacing:-0.096331pt;}
.ws32{word-spacing:-0.095972pt;}
.ws24{word-spacing:-0.095446pt;}
.ws114{word-spacing:-0.074389pt;}
.ws19{word-spacing:-0.058181pt;}
.ws8{word-spacing:-0.048010pt;}
.ws3d{word-spacing:-0.047819pt;}
.ws8b{word-spacing:-0.047484pt;}
.wse1{word-spacing:-0.037679pt;}
.ws94{word-spacing:-0.037195pt;}
.ws130{word-spacing:-0.037083pt;}
.wsd4{word-spacing:-0.026869pt;}
.ws103{word-spacing:-0.000260pt;}
.ws22{word-spacing:-0.000128pt;}
.ws2{word-spacing:0.000000pt;}
.ws104{word-spacing:0.000260pt;}
.ws10c{word-spacing:0.001675pt;}
.ws18{word-spacing:0.008800pt;}
.ws64{word-spacing:0.009099pt;}
.wsb6{word-spacing:0.022912pt;}
.ws100{word-spacing:0.037083pt;}
.ws75{word-spacing:0.046581pt;}
.ws61{word-spacing:0.047484pt;}
.ws69{word-spacing:0.047819pt;}
.ws34{word-spacing:0.048010pt;}
.ws106{word-spacing:0.074389pt;}
.ws28{word-spacing:0.095446pt;}
.ws10d{word-spacing:0.111733pt;}
.wsa{word-spacing:0.143456pt;}
.ws110{word-spacing:0.148518pt;}
.ws12e{word-spacing:0.149076pt;}
.ws108{word-spacing:0.185862pt;}
.ws74{word-spacing:0.190940pt;}
.wsc{word-spacing:0.191466pt;}
.ws7{word-spacing:0.238902pt;}
.ws53{word-spacing:0.286912pt;}
.ws3c{word-spacing:0.334922pt;}
.ws10b{word-spacing:0.409327pt;}
.wsc5{word-spacing:0.478378pt;}
.ws13d{word-spacing:0.594966pt;}
.ws4{word-spacing:0.621834pt;}
.ws135{word-spacing:0.632272pt;}
.ws41{word-spacing:0.633478pt;}
.ws40{word-spacing:0.669318pt;}
.ws13f{word-spacing:0.706401pt;}
.wsb3{word-spacing:0.717280pt;}
.wsf2{word-spacing:0.764764pt;}
.wsb8{word-spacing:0.812774pt;}
.ws38{word-spacing:0.860784pt;}
.ws12d{word-spacing:0.892560pt;}
.wsca{word-spacing:0.908220pt;}
.wsdb{word-spacing:0.908746pt;}
.wsef{word-spacing:0.956230pt;}
.ws9f{word-spacing:1.004240pt;}
.ws9e{word-spacing:1.052202pt;}
.ws11d{word-spacing:1.078683pt;}
.wse{word-spacing:1.099686pt;}
.ws30{word-spacing:1.147696pt;}
.ws59{word-spacing:1.243142pt;}
.ws5c{word-spacing:1.434608pt;}
.ws37{word-spacing:1.530054pt;}
.ws81{word-spacing:1.578064pt;}
.wsa0{word-spacing:1.673510pt;}
.wse6{word-spacing:1.721520pt;}
.wsf5{word-spacing:1.769004pt;}
.wsae{word-spacing:1.769530pt;}
.ws137{word-spacing:1.822725pt;}
.ws66{word-spacing:1.864976pt;}
.ws101{word-spacing:1.896854pt;}
.ws13b{word-spacing:1.971541pt;}
.ws1d{word-spacing:1.997728pt;}
.ws5f{word-spacing:2.056442pt;}
.ws3f{word-spacing:2.103926pt;}
.ws10e{word-spacing:2.194448pt;}
.wsb9{word-spacing:2.247382pt;}
.ws13{word-spacing:2.295344pt;}
.ws7c{word-spacing:2.342828pt;}
.ws78{word-spacing:2.343354pt;}
.ws55{word-spacing:2.390838pt;}
.wsee{word-spacing:2.391364pt;}
.ws6f{word-spacing:2.438848pt;}
.wsed{word-spacing:2.486284pt;}
.wsfa{word-spacing:2.486810pt;}
.ws7f{word-spacing:2.534294pt;}
.ws5e{word-spacing:2.629740pt;}
.ws115{word-spacing:2.640859pt;}
.ws5d{word-spacing:2.677750pt;}
.wsf0{word-spacing:2.821206pt;}
.ws10a{word-spacing:2.863803pt;}
.wsf4{word-spacing:2.916652pt;}
.ws17{word-spacing:2.964662pt;}
.ws126{word-spacing:2.975834pt;}
.wsde{word-spacing:3.012672pt;}
.ws45{word-spacing:3.156128pt;}
.wsf8{word-spacing:3.203612pt;}
.ws7d{word-spacing:3.251574pt;}
.ws122{word-spacing:3.281488pt;}
.ws2e{word-spacing:3.299584pt;}
.ws11c{word-spacing:3.310214pt;}
.ws1c{word-spacing:3.400363pt;}
.wsbf{word-spacing:3.490524pt;}
.wsad{word-spacing:3.491050pt;}
.wse8{word-spacing:3.538486pt;}
.ws29{word-spacing:3.586496pt;}
.wsc3{word-spacing:3.634506pt;}
.wsfe{word-spacing:3.777436pt;}
.ws8d{word-spacing:3.873408pt;}
.ws121{word-spacing:3.905440pt;}
.ws83{word-spacing:3.968902pt;}
.ws1a{word-spacing:4.064348pt;}
.ws109{word-spacing:4.091599pt;}
.ws113{word-spacing:4.128385pt;}
.wsc1{word-spacing:4.159794pt;}
.ws5{word-spacing:4.160367pt;}
.ws127{word-spacing:4.165728pt;}
.wse9{word-spacing:4.208330pt;}
.ws70{word-spacing:4.303297pt;}
.wsb{word-spacing:4.303823pt;}
.wsf9{word-spacing:4.399270pt;}
.ws10{word-spacing:4.447279pt;}
.wsc4{word-spacing:4.494716pt;}
.ws125{word-spacing:4.612139pt;}
.ws2a{word-spacing:4.829638pt;}
.ws2b{word-spacing:4.877647pt;}
.wseb{word-spacing:5.068587pt;}
.wsac{word-spacing:5.308015pt;}
.wsab{word-spacing:5.349333pt;}
.wsdf{word-spacing:6.243616pt;}
.wsbd{word-spacing:6.453931pt;}
.wse5{word-spacing:6.478416pt;}
.ws93{word-spacing:6.480635pt;}
.ws91{word-spacing:6.483056pt;}
.ws95{word-spacing:6.483600pt;}
.ws97{word-spacing:6.483749pt;}
.wse3{word-spacing:6.485968pt;}
.wsa3{word-spacing:6.579093pt;}
.ws12c{word-spacing:7.029680pt;}
.ws11f{word-spacing:7.067024pt;}
.ws133{word-spacing:7.401404pt;}
.ws1f{word-spacing:8.203787pt;}
.ws112{word-spacing:8.220096pt;}
.wsbe{word-spacing:8.666506pt;}
.ws119{word-spacing:9.112396pt;}
.ws136{word-spacing:9.149739pt;}
.ws131{word-spacing:9.224389pt;}
.ws105{word-spacing:9.261212pt;}
.ws46{word-spacing:9.261472pt;}
.ws27{word-spacing:9.261732pt;}
.wsa4{word-spacing:9.298555pt;}
.ws10f{word-spacing:9.335861pt;}
.ws134{word-spacing:9.447334pt;}
.ws140{word-spacing:9.968431pt;}
.ws13a{word-spacing:10.210955pt;}
.ws88{word-spacing:10.291968pt;}
.ws20{word-spacing:10.413921pt;}
.wsa5{word-spacing:10.567686pt;}
.ws1b{word-spacing:10.584160pt;}
.ws13c{word-spacing:11.233013pt;}
.ws9b{word-spacing:11.476480pt;}
.wsd6{word-spacing:11.667372pt;}
.ws8a{word-spacing:11.701548pt;}
.ws80{word-spacing:11.708299pt;}
.wsc7{word-spacing:11.715382pt;}
.ws8c{word-spacing:11.760629pt;}
.ws6e{word-spacing:11.763392pt;}
.ws44{word-spacing:11.811402pt;}
.ws116{word-spacing:11.865024pt;}
.ws15{word-spacing:11.906848pt;}
.ws11b{word-spacing:11.935851pt;}
.ws8f{word-spacing:11.954332pt;}
.ws90{word-spacing:11.954858pt;}
.ws87{word-spacing:12.002294pt;}
.ws86{word-spacing:12.002820pt;}
.ws79{word-spacing:12.005515pt;}
.ws3a{word-spacing:12.050304pt;}
.ws98{word-spacing:12.289254pt;}
.wsa8{word-spacing:12.411339pt;}
.ws9a{word-spacing:12.505131pt;}
.ws123{word-spacing:12.571686pt;}
.ws1e{word-spacing:12.581888pt;}
.ws9d{word-spacing:12.894464pt;}
.ws42{word-spacing:12.958524pt;}
.ws9c{word-spacing:12.995083pt;}
.ws85{word-spacing:13.330703pt;}
.ws99{word-spacing:13.352416pt;}
.ws129{word-spacing:13.389968pt;}
.ws128{word-spacing:13.427200pt;}
.wsf3{word-spacing:13.628368pt;}
.wsb0{word-spacing:13.878005pt;}
.ws3e{word-spacing:14.010774pt;}
.ws7b{word-spacing:14.243312pt;}
.ws7e{word-spacing:14.467771pt;}
.ws14{word-spacing:14.487152pt;}
.ws84{word-spacing:14.487268pt;}
.ws16{word-spacing:14.871510pt;}
.wsbb{word-spacing:21.005760pt;}
.ws0{word-spacing:22.861245pt;}
.ws1{word-spacing:22.861520pt;}
.ws124{word-spacing:29.085895pt;}
.wsbc{word-spacing:29.680972pt;}
.ws23{word-spacing:58.123152pt;}
.ws92{word-spacing:190.427808pt;}
.wsc9{word-spacing:274.470282pt;}
.ws96{word-spacing:298.030112pt;}
.wse2{word-spacing:456.138917pt;}
.wsea{word-spacing:494.642677pt;}
.wse4{word-spacing:519.596443pt;}
._e{margin-left:-7.450997pt;}
._15{margin-left:-5.222291pt;}
._2{margin-left:-3.825600pt;}
._5{margin-left:-2.773196pt;}
._0{margin-left:-1.376925pt;}
._3{width:0.909320pt;}
._1{width:2.203887pt;}
._c{width:3.438627pt;}
._d{width:4.460773pt;}
._12{width:6.305309pt;}
._19{width:8.295542pt;}
._f{width:9.228907pt;}
._13{width:10.300043pt;}
._4{width:11.236239pt;}
._11{width:12.910801pt;}
._6{width:13.963549pt;}
._8{width:14.873369pt;}
._7{width:16.368173pt;}
._1c{width:20.605920pt;}
._18{width:21.907845pt;}
._1a{width:23.134562pt;}
._17{width:24.511657pt;}
._16{width:25.972437pt;}
._1b{width:28.512128pt;}
._10{width:58.181333pt;}
._a{width:521.399232pt;}
._14{width:555.771431pt;}
._b{width:673.696352pt;}
._9{width:1534.408253pt;}
.fs9{font-size:29.226667pt;}
.fs6{font-size:37.194667pt;}
.fs7{font-size:38.789333pt;}
.fs5{font-size:42.506667pt;}
.fs4{font-size:47.818667pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.136000pt;}
.fs3{font-size:58.181333pt;}
.fs1{font-size:63.760000pt;}
.fs0{font-size:91.813333pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:39.026667pt;}
.y31{bottom:112.870667pt;}
.y30{bottom:123.497333pt;}
.ya0{bottom:127.481333pt;}
.y2f{bottom:134.124000pt;}
.y5e{bottom:136.926667pt;}
.y158{bottom:139.042667pt;}
.y9f{bottom:142.093333pt;}
.y157{bottom:143.378667pt;}
.y1f4{bottom:144.750667pt;}
.y2e{bottom:145.813333pt;}
.y5d{bottom:151.538667pt;}
.y192{bottom:154.562667pt;}
.y1f3{bottom:155.377333pt;}
.yff{bottom:156.705333pt;}
.y2d{bottom:157.502667pt;}
.y156{bottom:158.233333pt;}
.ycc{bottom:159.360000pt;}
.y9e{bottom:160.358667pt;}
.y191{bottom:161.045333pt;}
.y1f2{bottom:166.004000pt;}
.y5c{bottom:166.150667pt;}
.yfe{bottom:171.317333pt;}
.y155{bottom:172.845333pt;}
.ycb{bottom:173.972000pt;}
.y1f1{bottom:176.630667pt;}
.y190{bottom:178.106667pt;}
.y5b{bottom:180.762667pt;}
.y112{bottom:185.929333pt;}
.y1f0{bottom:187.257333pt;}
.y154{bottom:187.457333pt;}
.yfd{bottom:189.582667pt;}
.yca{bottom:192.237333pt;}
.y9d{bottom:193.984000pt;}
.y5a{bottom:195.374667pt;}
.y1ef{bottom:197.884000pt;}
.y18f{bottom:200.349333pt;}
.y111{bottom:200.541333pt;}
.y2c{bottom:200.921333pt;}
.y153{bottom:202.069333pt;}
.y1ee{bottom:208.512000pt;}
.y9c{bottom:208.596000pt;}
.y59{bottom:209.986667pt;}
.y18e{bottom:214.960000pt;}
.y110{bottom:215.153333pt;}
.y2b{bottom:215.533333pt;}
.y152{bottom:216.681333pt;}
.y1ed{bottom:219.138667pt;}
.yc9{bottom:220.565333pt;}
.yfc{bottom:221.020000pt;}
.y9b{bottom:221.060000pt;}
.y9a{bottom:221.414667pt;}
.y99{bottom:223.208000pt;}
.y58{bottom:224.598667pt;}
.y10f{bottom:229.765333pt;}
.y151{bottom:231.293333pt;}
.y18d{bottom:231.344000pt;}
.y2a{bottom:233.798667pt;}
.yc8{bottom:235.177333pt;}
.yfb{bottom:235.632000pt;}
.y18c{bottom:236.641333pt;}
.y98{bottom:237.820000pt;}
.y57{bottom:239.209333pt;}
.y1ec{bottom:240.392000pt;}
.y10e{bottom:244.377333pt;}
.y150{bottom:245.905333pt;}
.yc7{bottom:249.789333pt;}
.yfa{bottom:250.244000pt;}
.y1eb{bottom:251.018667pt;}
.y97{bottom:252.432000pt;}
.y56{bottom:253.821333pt;}
.y18b{bottom:258.064000pt;}
.y10d{bottom:258.989333pt;}
.y14f{bottom:260.517333pt;}
.y1ea{bottom:261.645333pt;}
.y29{bottom:261.804000pt;}
.yc6{bottom:264.401333pt;}
.yf9{bottom:264.856000pt;}
.y96{bottom:267.044000pt;}
.y55{bottom:268.433333pt;}
.y1e9{bottom:272.272000pt;}
.y18a{bottom:272.676000pt;}
.y10c{bottom:273.600000pt;}
.y28{bottom:275.088000pt;}
.yf8{bottom:279.468000pt;}
.yc4{bottom:280.500000pt;}
.y95{bottom:281.656000pt;}
.y1e8{bottom:282.898667pt;}
.y54{bottom:283.045333pt;}
.y10b{bottom:288.212000pt;}
.y27{bottom:288.372000pt;}
.y14e{bottom:289.741333pt;}
.yc5{bottom:290.840000pt;}
.y188{bottom:291.444000pt;}
.y189{bottom:292.164000pt;}
.y1e7{bottom:293.525333pt;}
.yf7{bottom:294.080000pt;}
.yc1{bottom:294.553333pt;}
.y93{bottom:296.268000pt;}
.y187{bottom:296.741333pt;}
.y53{bottom:297.657333pt;}
.y94{bottom:300.606667pt;}
.y26{bottom:301.654667pt;}
.y10a{bottom:302.824000pt;}
.y1e6{bottom:304.153333pt;}
.y14d{bottom:304.352000pt;}
.yc3{bottom:306.786667pt;}
.yf6{bottom:308.692000pt;}
.yc2{bottom:309.177333pt;}
.y92{bottom:310.878667pt;}
.y52{bottom:312.269333pt;}
.y1e5{bottom:314.780000pt;}
.y25{bottom:314.938667pt;}
.y109{bottom:317.436000pt;}
.y186{bottom:318.876000pt;}
.y14c{bottom:318.964000pt;}
.yf5{bottom:323.304000pt;}
.y1e4{bottom:325.406667pt;}
.y91{bottom:325.490667pt;}
.yc0{bottom:326.197333pt;}
.y51{bottom:326.881333pt;}
.y24{bottom:328.221333pt;}
.y185{bottom:331.694667pt;}
.y108{bottom:332.048000pt;}
.y184{bottom:333.488000pt;}
.y14b{bottom:333.576000pt;}
.y1e3{bottom:336.033333pt;}
.yf4{bottom:337.914667pt;}
.y90{bottom:340.102667pt;}
.ybf{bottom:340.809333pt;}
.y50{bottom:341.493333pt;}
.y107{bottom:346.660000pt;}
.y23{bottom:346.874667pt;}
.y183{bottom:348.100000pt;}
.y14a{bottom:348.188000pt;}
.yf3{bottom:352.526667pt;}
.y8f{bottom:354.714667pt;}
.ybe{bottom:355.421333pt;}
.y4f{bottom:356.105333pt;}
.y1e2{bottom:357.286667pt;}
.y181{bottom:357.909333pt;}
.y182{bottom:357.978667pt;}
.y149{bottom:359.634667pt;}
.y180{bottom:361.057333pt;}
.y12e{bottom:361.272000pt;}
.y22{bottom:361.486667pt;}
.y17f{bottom:363.205333pt;}
.y148{bottom:363.970667pt;}
.y1b5{bottom:364.925333pt;}
.yf2{bottom:367.138667pt;}
.y1e1{bottom:367.913333pt;}
.y8e{bottom:369.326667pt;}
.ybd{bottom:370.033333pt;}
.y4e{bottom:370.717333pt;}
.y12d{bottom:375.884000pt;}
.y1e0{bottom:378.540000pt;}
.y147{bottom:378.826667pt;}
.y21{bottom:379.750667pt;}
.y106{bottom:380.137333pt;}
.ybc{bottom:381.593333pt;}
.yf1{bottom:381.750667pt;}
.y17d{bottom:382.552000pt;}
.y17e{bottom:383.218667pt;}
.y8d{bottom:383.938667pt;}
.y4d{bottom:385.329333pt;}
.ybb{bottom:385.929333pt;}
.y17c{bottom:387.849333pt;}
.y1df{bottom:389.166667pt;}
.y12c{bottom:390.496000pt;}
.y146{bottom:393.438667pt;}
.y105{bottom:394.749333pt;}
.yf0{bottom:396.362667pt;}
.y1b4{bottom:399.436000pt;}
.y1de{bottom:399.794667pt;}
.y4c{bottom:399.940000pt;}
.yba{bottom:400.785333pt;}
.y8c{bottom:402.204000pt;}
.y12b{bottom:405.108000pt;}
.y145{bottom:408.050667pt;}
.y20{bottom:408.110667pt;}
.y104{bottom:409.361333pt;}
.y1dd{bottom:410.421333pt;}
.y17b{bottom:410.561333pt;}
.yef{bottom:410.974667pt;}
.y1b3{bottom:414.046667pt;}
.y4b{bottom:414.552000pt;}
.yb9{bottom:415.397333pt;}
.y12a{bottom:419.720000pt;}
.y1dc{bottom:421.048000pt;}
.y1f{bottom:422.722667pt;}
.y8b{bottom:424.490667pt;}
.y17a{bottom:425.173333pt;}
.yee{bottom:425.586667pt;}
.yb8{bottom:428.216000pt;}
.y1b2{bottom:428.658667pt;}
.y4a{bottom:429.164000pt;}
.y103{bottom:429.248000pt;}
.yb7{bottom:430.009333pt;}
.y1db{bottom:431.674667pt;}
.y129{bottom:434.330667pt;}
.y144{bottom:437.274667pt;}
.y1e{bottom:437.334667pt;}
.y8a{bottom:439.102667pt;}
.y179{bottom:439.785333pt;}
.yed{bottom:440.198667pt;}
.y1da{bottom:442.301333pt;}
.y1b1{bottom:443.270667pt;}
.y49{bottom:443.776000pt;}
.yb6{bottom:446.322667pt;}
.y128{bottom:448.942667pt;}
.y143{bottom:451.885333pt;}
.y1d9{bottom:452.928000pt;}
.yb3{bottom:453.042667pt;}
.y89{bottom:453.714667pt;}
.y178{bottom:454.397333pt;}
.yec{bottom:454.810667pt;}
.y1d{bottom:455.598667pt;}
.yb2{bottom:457.506667pt;}
.y1b0{bottom:457.882667pt;}
.y48{bottom:458.388000pt;}
.yb1{bottom:461.244000pt;}
.y127{bottom:463.554667pt;}
.y142{bottom:466.497333pt;}
.y88{bottom:468.326667pt;}
.y177{bottom:469.009333pt;}
.yeb{bottom:472.300000pt;}
.y1af{bottom:472.494667pt;}
.y47{bottom:473.000000pt;}
.yb5{bottom:473.477333pt;}
.y1d8{bottom:474.181333pt;}
.yb4{bottom:475.868000pt;}
.y126{bottom:478.166667pt;}
.y87{bottom:482.937333pt;}
.y176{bottom:483.621333pt;}
.y1c{bottom:483.958667pt;}
.y141{bottom:484.762667pt;}
.y1d7{bottom:484.808000pt;}
.yea{bottom:486.912000pt;}
.y1ae{bottom:487.106667pt;}
.y46{bottom:487.612000pt;}
.y125{bottom:492.778667pt;}
.yb0{bottom:492.786667pt;}
.y1d6{bottom:495.436000pt;}
.y86{bottom:497.549333pt;}
.y175{bottom:498.233333pt;}
.y1b{bottom:498.570667pt;}
.y1ad{bottom:501.718667pt;}
.y45{bottom:502.224000pt;}
.ye9{bottom:505.176000pt;}
.y1d5{bottom:506.062667pt;}
.y124{bottom:507.390667pt;}
.yaf{bottom:507.398667pt;}
.y85{bottom:512.161333pt;}
.y174{bottom:512.845333pt;}
.y1a{bottom:513.182667pt;}
.y140{bottom:515.892000pt;}
.y1ac{bottom:516.330667pt;}
.y1d4{bottom:516.689333pt;}
.y44{bottom:516.836000pt;}
.y123{bottom:522.002667pt;}
.yae{bottom:522.009333pt;}
.y84{bottom:526.773333pt;}
.y1d3{bottom:527.316000pt;}
.y13f{bottom:527.338667pt;}
.y173{bottom:527.457333pt;}
.y19{bottom:527.794667pt;}
.y1ab{bottom:530.942667pt;}
.y43{bottom:531.448000pt;}
.y13e{bottom:531.674667pt;}
.yad{bottom:533.457333pt;}
.ye8{bottom:533.737333pt;}
.y122{bottom:536.614667pt;}
.y102{bottom:537.670667pt;}
.yac{bottom:537.793333pt;}
.y1d2{bottom:537.942667pt;}
.y83{bottom:541.385333pt;}
.y172{bottom:542.068000pt;}
.y18{bottom:542.406667pt;}
.y1aa{bottom:545.554667pt;}
.y42{bottom:546.058667pt;}
.y13d{bottom:547.408000pt;}
.ye7{bottom:548.349333pt;}
.y1d1{bottom:548.569333pt;}
.y121{bottom:551.226667pt;}
.yab{bottom:552.648000pt;}
.y82{bottom:555.997333pt;}
.y171{bottom:556.680000pt;}
.y17{bottom:557.018667pt;}
.y1d0{bottom:559.196000pt;}
.y1a9{bottom:560.166667pt;}
.y41{bottom:560.670667pt;}
.y13c{bottom:562.020000pt;}
.ye6{bottom:562.960000pt;}
.y120{bottom:565.838667pt;}
.yaa{bottom:567.260000pt;}
.y1cf{bottom:569.822667pt;}
.y81{bottom:570.609333pt;}
.y170{bottom:571.292000pt;}
.y16{bottom:571.630667pt;}
.y1a8{bottom:574.777333pt;}
.y40{bottom:575.282667pt;}
.y13b{bottom:576.632000pt;}
.ye5{bottom:577.572000pt;}
.y11f{bottom:580.449333pt;}
.ya9{bottom:581.872000pt;}
.y80{bottom:585.221333pt;}
.y16f{bottom:585.904000pt;}
.y15{bottom:586.241333pt;}
.y1a7{bottom:589.389333pt;}
.y3f{bottom:589.894667pt;}
.y1ce{bottom:591.077333pt;}
.y13a{bottom:591.242667pt;}
.ye4{bottom:592.184000pt;}
.y11e{bottom:595.061333pt;}
.ya8{bottom:596.484000pt;}
.y7f{bottom:599.833333pt;}
.y16e{bottom:600.516000pt;}
.y14{bottom:600.853333pt;}
.y1cd{bottom:601.704000pt;}
.y1a6{bottom:604.001333pt;}
.y3e{bottom:604.506667pt;}
.y139{bottom:605.854667pt;}
.ye3{bottom:606.796000pt;}
.y11d{bottom:609.673333pt;}
.ya7{bottom:611.096000pt;}
.y1cc{bottom:612.330667pt;}
.y7e{bottom:614.445333pt;}
.y16d{bottom:615.128000pt;}
.y13{bottom:615.465333pt;}
.y1a5{bottom:618.613333pt;}
.y3d{bottom:619.118667pt;}
.y137{bottom:620.466667pt;}
.ye2{bottom:621.408000pt;}
.y1cb{bottom:622.957333pt;}
.y11c{bottom:624.285333pt;}
.y138{bottom:624.806667pt;}
.ya6{bottom:627.194667pt;}
.y196{bottom:627.938667pt;}
.y7d{bottom:629.056000pt;}
.y16c{bottom:629.740000pt;}
.y12{bottom:630.077333pt;}
.ya3{bottom:633.046667pt;}
.y1a4{bottom:633.225333pt;}
.y1ca{bottom:633.584000pt;}
.y3c{bottom:633.730667pt;}
.y136{bottom:635.078667pt;}
.ye1{bottom:636.020000pt;}
.y11b{bottom:638.897333pt;}
.ya2{bottom:641.248000pt;}
.y7c{bottom:643.668000pt;}
.y1c9{bottom:644.210667pt;}
.y11{bottom:644.689333pt;}
.y135{bottom:646.525333pt;}
.y1a3{bottom:647.837333pt;}
.y3b{bottom:648.342667pt;}
.y195{bottom:650.496000pt;}
.ye0{bottom:650.632000pt;}
.y134{bottom:650.861333pt;}
.ya5{bottom:653.481333pt;}
.y11a{bottom:653.509333pt;}
.y1c8{bottom:654.837333pt;}
.ya4{bottom:655.872000pt;}
.y7b{bottom:658.280000pt;}
.y16b{bottom:658.964000pt;}
.y10{bottom:659.301333pt;}
.y1a2{bottom:662.449333pt;}
.y3a{bottom:662.954667pt;}
.ydf{bottom:665.244000pt;}
.y101{bottom:665.318667pt;}
.y1c7{bottom:665.464000pt;}
.y133{bottom:665.717333pt;}
.y194{bottom:666.286667pt;}
.y119{bottom:668.121333pt;}
.y7a{bottom:672.892000pt;}
.y16a{bottom:673.576000pt;}
.yf{bottom:673.913333pt;}
.y1c6{bottom:676.090667pt;}
.y1a1{bottom:677.061333pt;}
.y39{bottom:677.566667pt;}
.yde{bottom:679.856000pt;}
.y100{bottom:679.930667pt;}
.y132{bottom:680.329333pt;}
.y118{bottom:682.733333pt;}
.y1c5{bottom:686.718667pt;}
.y79{bottom:687.504000pt;}
.ye{bottom:688.525333pt;}
.y169{bottom:691.129333pt;}
.y1a0{bottom:691.673333pt;}
.y38{bottom:692.178667pt;}
.ydd{bottom:694.468000pt;}
.y168{bottom:694.976000pt;}
.y117{bottom:697.345333pt;}
.y78{bottom:702.116000pt;}
.yd{bottom:703.137333pt;}
.y19f{bottom:706.285333pt;}
.y37{bottom:706.789333pt;}
.y1c4{bottom:707.972000pt;}
.y131{bottom:710.632000pt;}
.ydc{bottom:711.957333pt;}
.y77{bottom:716.728000pt;}
.yc{bottom:717.749333pt;}
.y1c3{bottom:718.598667pt;}
.y167{bottom:719.082667pt;}
.y19e{bottom:720.896000pt;}
.y36{bottom:721.401333pt;}
.ydb{bottom:726.569333pt;}
.y130{bottom:726.757333pt;}
.y1c2{bottom:729.225333pt;}
.y76{bottom:731.340000pt;}
.yb{bottom:732.360000pt;}
.y166{bottom:733.694667pt;}
.y19d{bottom:735.508000pt;}
.y35{bottom:736.013333pt;}
.y12f{bottom:737.384000pt;}
.y1c1{bottom:739.852000pt;}
.yda{bottom:741.180000pt;}
.y75{bottom:745.952000pt;}
.ya{bottom:746.972000pt;}
.y165{bottom:748.306667pt;}
.y1c0{bottom:750.478667pt;}
.y33{bottom:750.625333pt;}
.y34{bottom:754.965333pt;}
.yd9{bottom:755.792000pt;}
.y74{bottom:760.564000pt;}
.y1bf{bottom:761.105333pt;}
.y9{bottom:761.584000pt;}
.y164{bottom:762.918667pt;}
.ya1{bottom:764.902667pt;}
.y32{bottom:765.237333pt;}
.yd8{bottom:770.404000pt;}
.y1be{bottom:771.732000pt;}
.y116{bottom:774.420000pt;}
.y73{bottom:775.176000pt;}
.y115{bottom:778.756000pt;}
.y19c{bottom:779.336000pt;}
.y8{bottom:779.849333pt;}
.y163{bottom:781.789333pt;}
.y1bd{bottom:782.360000pt;}
.yd7{bottom:785.016000pt;}
.y199{bottom:788.420000pt;}
.y72{bottom:789.786667pt;}
.y1bc{bottom:792.986667pt;}
.y114{bottom:793.634667pt;}
.y19b{bottom:793.948000pt;}
.yd6{bottom:799.628000pt;}
.y198{bottom:803.032000pt;}
.y1bb{bottom:803.613333pt;}
.y7{bottom:806.496000pt;}
.y19a{bottom:810.026667pt;}
.y193{bottom:810.421333pt;}
.y162{bottom:812.688000pt;}
.y71{bottom:813.084000pt;}
.y113{bottom:813.540000pt;}
.yd5{bottom:814.240000pt;}
.y197{bottom:819.110667pt;}
.y6{bottom:822.436000pt;}
.y1ba{bottom:824.866667pt;}
.y161{bottom:827.300000pt;}
.yd4{bottom:828.852000pt;}
.y70{bottom:832.065333pt;}
.y1fe{bottom:835.493333pt;}
.y5{bottom:838.376000pt;}
.y1b9{bottom:839.146667pt;}
.y160{bottom:840.118667pt;}
.y15f{bottom:841.912000pt;}
.y6f{bottom:842.365333pt;}
.y6e{bottom:842.602667pt;}
.yd3{bottom:843.464000pt;}
.y1fd{bottom:846.120000pt;}
.y6d{bottom:846.677333pt;}
.y4{bottom:854.316000pt;}
.y15e{bottom:856.524000pt;}
.y1fc{bottom:856.746667pt;}
.yd2{bottom:858.076000pt;}
.y68{bottom:859.574667pt;}
.y67{bottom:863.910667pt;}
.y6c{bottom:864.154667pt;}
.y1fb{bottom:867.373333pt;}
.y3{bottom:870.257333pt;}
.y15d{bottom:871.136000pt;}
.yd1{bottom:872.688000pt;}
.y6b{bottom:873.824000pt;}
.y69{bottom:874.430667pt;}
.y6a{bottom:874.641333pt;}
.y1fa{bottom:878.001333pt;}
.y66{bottom:878.765333pt;}
.y1b8{bottom:883.646667pt;}
.yd0{bottom:887.298667pt;}
.y1f9{bottom:888.628000pt;}
.y15c{bottom:889.372000pt;}
.y15b{bottom:893.109333pt;}
.y65{bottom:893.854667pt;}
.y1b7{bottom:898.258667pt;}
.y1f8{bottom:899.254667pt;}
.ycf{bottom:901.910667pt;}
.y2{bottom:901.933333pt;}
.y63{bottom:904.169333pt;}
.y64{bottom:904.393333pt;}
.y62{bottom:908.466667pt;}
.y1f6{bottom:909.881333pt;}
.y1b6{bottom:912.870667pt;}
.y1f7{bottom:913.401333pt;}
.y15a{bottom:915.352000pt;}
.yce{bottom:916.522667pt;}
.y1f5{bottom:920.508000pt;}
.y159{bottom:926.798667pt;}
.y1{bottom:928.500000pt;}
.y61{bottom:929.861333pt;}
.ycd{bottom:931.134667pt;}
.y60{bottom:966.204000pt;}
.h22{height:2.677845pt;}
.h3b{height:20.955520pt;}
.he{height:26.222240pt;}
.hb{height:26.333824pt;}
.h21{height:27.074955pt;}
.ha{height:27.375275pt;}
.hc{height:27.811952pt;}
.h23{height:28.548949pt;}
.h9{height:30.094720pt;}
.h7{height:30.604800pt;}
.h8{height:31.284907pt;}
.hd{height:33.024000pt;}
.h1f{height:33.377429pt;}
.h1c{height:33.473067pt;}
.h6{height:34.285984pt;}
.hf{height:34.429440pt;}
.h5{height:35.194539pt;}
.h3{height:39.108096pt;}
.h1d{height:40.550763pt;}
.h4{height:41.890560pt;}
.h1e{height:42.877984pt;}
.h25{height:44.429621pt;}
.h13{height:44.434955pt;}
.h18{height:45.576288pt;}
.h39{height:45.908949pt;}
.h3a{height:46.074539pt;}
.h26{height:46.824288pt;}
.h2{height:46.927360pt;}
.h10{height:47.391616pt;}
.h2c{height:47.561285pt;}
.h24{height:48.298283pt;}
.h29{height:50.047872pt;}
.h2b{height:50.143872pt;}
.h2e{height:50.581205pt;}
.h2a{height:51.773440pt;}
.h1b{height:52.442539pt;}
.h14{height:52.538539pt;}
.h2f{height:53.000288pt;}
.h34{height:53.005621pt;}
.h33{height:53.717205pt;}
.h35{height:54.570283pt;}
.h2d{height:54.575616pt;}
.h36{height:55.520512pt;}
.h38{height:56.383872pt;}
.h16{height:62.077621pt;}
.h12{height:62.202283pt;}
.h19{height:62.207616pt;}
.h11{height:62.770955pt;}
.h28{height:63.151616pt;}
.h1a{height:63.156949pt;}
.h1{height:64.085707pt;}
.h15{height:64.730283pt;}
.h32{height:65.346955pt;}
.h17{height:65.674283pt;}
.h20{height:67.567872pt;}
.h31{height:68.013621pt;}
.h37{height:73.829845pt;}
.h30{height:74.189621pt;}
.h27{height:82.517205pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x12{left:71.730667pt;}
.xdf{left:76.054667pt;}
.x1{left:78.794667pt;}
.x51{left:85.014667pt;}
.xcb{left:87.514667pt;}
.x8f{left:89.004000pt;}
.x4b{left:89.993333pt;}
.xe0{left:91.866667pt;}
.x88{left:93.020000pt;}
.x56{left:96.733333pt;}
.x90{left:100.122667pt;}
.x89{left:103.881333pt;}
.xc2{left:106.778667pt;}
.x7{left:107.912000pt;}
.x5{left:111.498667pt;}
.x57{left:115.114667pt;}
.xd8{left:116.300000pt;}
.xd1{left:117.685333pt;}
.xc1{left:122.841333pt;}
.xde{left:125.241333pt;}
.xcc{left:127.506667pt;}
.x6{left:129.777333pt;}
.x52{left:132.582667pt;}
.x3{left:140.462667pt;}
.x53{left:143.700000pt;}
.xd6{left:144.702667pt;}
.x97{left:145.594667pt;}
.x8c{left:147.352000pt;}
.x17{left:149.308000pt;}
.x4{left:150.300000pt;}
.x8e{left:153.580000pt;}
.x8a{left:154.750667pt;}
.x98{left:156.713333pt;}
.x54{left:158.522667pt;}
.xb0{left:160.246667pt;}
.x93{left:161.532000pt;}
.xc3{left:162.712000pt;}
.x18{left:164.120000pt;}
.x8b{left:165.869333pt;}
.x94{left:167.092000pt;}
.x66{left:168.808000pt;}
.xad{left:176.321333pt;}
.xc4{left:177.840000pt;}
.x91{left:179.606667pt;}
.xc5{left:182.809333pt;}
.x92{left:185.166667pt;}
.xb1{left:190.661333pt;}
.xc8{left:193.689333pt;}
.xbc{left:200.364000pt;}
.xa9{left:202.304000pt;}
.xbd{left:208.488000pt;}
.xc7{left:216.590667pt;}
.x64{left:219.929333pt;}
.xc9{left:221.722667pt;}
.xaa{left:224.145333pt;}
.xcd{left:225.141333pt;}
.x65{left:227.305333pt;}
.xbe{left:230.778667pt;}
.x15{left:231.734667pt;}
.x13{left:235.104000pt;}
.x55{left:239.822667pt;}
.x8d{left:241.297333pt;}
.x5e{left:243.376000pt;}
.x16{left:247.782667pt;}
.xc6{left:249.089333pt;}
.x14{left:250.325333pt;}
.xd5{left:251.829333pt;}
.xa5{left:254.126667pt;}
.xa8{left:256.244000pt;}
.x5f{left:258.842667pt;}
.xca{left:259.868000pt;}
.xce{left:260.813333pt;}
.x5a{left:264.741333pt;}
.xac{left:265.940000pt;}
.x99{left:267.478667pt;}
.xa6{left:270.506667pt;}
.xd2{left:271.518667pt;}
.x60{left:274.533333pt;}
.x5b{left:275.860000pt;}
.x95{left:278.034667pt;}
.xd7{left:279.500000pt;}
.x50{left:281.102667pt;}
.xae{left:286.794667pt;}
.xd3{left:292.236000pt;}
.x96{left:295.834667pt;}
.x9a{left:298.922667pt;}
.x4c{left:302.666667pt;}
.xab{left:307.065333pt;}
.x61{left:309.658667pt;}
.x4d{left:310.792000pt;}
.x9{left:315.726667pt;}
.xaf{left:317.174667pt;}
.xd4{left:320.790667pt;}
.xcf{left:322.528000pt;}
.x5c{left:325.450667pt;}
.x62{left:327.429333pt;}
.xb{left:330.364000pt;}
.x2{left:331.713333pt;}
.x58{left:335.196000pt;}
.x5d{left:343.342667pt;}
.xa7{left:345.696000pt;}
.xbf{left:346.709333pt;}
.xc0{left:356.817333pt;}
.xd0{left:358.180000pt;}
.x59{left:362.333333pt;}
.x67{left:364.657333pt;}
.x48{left:366.401333pt;}
.xd9{left:368.118667pt;}
.xc{left:369.504000pt;}
.x8{left:371.706667pt;}
.x63{left:378.940000pt;}
.x49{left:386.357333pt;}
.x4e{left:389.257333pt;}
.xda{left:390.737333pt;}
.xa{left:392.392000pt;}
.x47{left:402.000000pt;}
.x4f{left:422.574667pt;}
.x19{left:423.940000pt;}
.x38{left:428.281333pt;}
.xb4{left:431.825333pt;}
.xdb{left:433.380000pt;}
.x21{left:437.224000pt;}
.x39{left:439.400000pt;}
.xb5{left:440.817333pt;}
.xb6{left:444.388000pt;}
.x3a{left:445.349333pt;}
.x86{left:448.896000pt;}
.x40{left:450.808000pt;}
.xb7{left:452.513333pt;}
.x6f{left:454.756000pt;}
.x3b{left:456.468000pt;}
.x3c{left:462.417333pt;}
.xa1{left:465.246667pt;}
.x41{left:467.578667pt;}
.x7a{left:471.760000pt;}
.x3d{left:473.536000pt;}
.x9c{left:474.570667pt;}
.xdc{left:477.410667pt;}
.xb3{left:478.457333pt;}
.x3e{left:479.485333pt;}
.x9e{left:483.672000pt;}
.x70{left:484.837333pt;}
.x9d{left:486.696000pt;}
.xdd{left:488.529333pt;}
.x3f{left:490.604000pt;}
.x2c{left:492.404000pt;}
.x2d{left:497.964000pt;}
.xa2{left:499.760000pt;}
.x2e{left:503.612000pt;}
.x73{left:505.329333pt;}
.xba{left:507.165333pt;}
.x74{left:510.888000pt;}
.x6a{left:512.561333pt;}
.x2f{left:514.730667pt;}
.x22{left:520.190667pt;}
.x87{left:521.590667pt;}
.x82{left:522.588000pt;}
.x23{left:525.749333pt;}
.x4a{left:526.908000pt;}
.x80{left:528.624000pt;}
.x34{left:530.164000pt;}
.x24{left:531.394667pt;}
.x6c{left:532.449333pt;}
.xbb{left:534.568000pt;}
.x25{left:536.954667pt;}
.x35{left:541.281333pt;}
.x26{left:542.600000pt;}
.x36{left:546.920000pt;}
.xf{left:549.230667pt;}
.x71{left:551.349333pt;}
.x27{left:553.718667pt;}
.x37{left:558.038667pt;}
.x72{left:559.473333pt;}
.x7c{left:562.278667pt;}
.x75{left:564.512000pt;}
.x10{left:567.508000pt;}
.x76{left:569.318667pt;}
.x77{left:572.776000pt;}
.x1a{left:575.438667pt;}
.x6d{left:579.492000pt;}
.x78{left:581.448000pt;}
.x11{left:582.366667pt;}
.x6b{left:583.873333pt;}
.xb2{left:585.160000pt;}
.x7d{left:587.104000pt;}
.xe{left:588.032000pt;}
.xd{left:589.257333pt;}
.x6e{left:597.121333pt;}
.x79{left:599.384000pt;}
.x83{left:600.742667pt;}
.xa3{left:603.685333pt;}
.x84{left:604.993333pt;}
.x9b{left:608.461333pt;}
.x81{left:610.784000pt;}
.x7e{left:615.324000pt;}
.xa4{left:625.526667pt;}
.x7f{left:626.442667pt;}
.x9f{left:628.158667pt;}
.x85{left:634.817333pt;}
.xb8{left:637.678667pt;}
.xb9{left:648.797333pt;}
.xa0{left:649.728000pt;}
.x42{left:651.858667pt;}
.x43{left:662.977333pt;}
.x7b{left:664.085333pt;}
.x30{left:667.337333pt;}
.x44{left:668.873333pt;}
.x31{left:672.897333pt;}
.x1f{left:675.878667pt;}
.x32{left:678.545333pt;}
.x45{left:679.992000pt;}
.x68{left:685.182667pt;}
.x20{left:686.997333pt;}
.x33{left:689.664000pt;}
.x69{left:692.428000pt;}
.x28{left:701.418667pt;}
.x29{left:706.977333pt;}
.x1b{left:710.781333pt;}
.x2a{left:711.788000pt;}
.x1c{left:721.900000pt;}
.x2b{left:722.906667pt;}
.x1d{left:727.532000pt;}
.x46{left:733.589333pt;}
.x1e{left:738.649333pt;}
}




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