
    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_0a46112023489f334184572f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.901000;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_6da08cc257290020a07f7885.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f8af8410ae159b37820c8255.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7d0dcb2bc2849eb97c803d85.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1990b97ea2fc157808c13cb4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.898000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_c555a266910a7445f7fef593.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_e2a6af7deb090d1e61bb6fd2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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_7d0dcb2bc2849eb97c803d85.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_3f31e44e6e366dda88bdd78f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_540e1a2d48878e45d8877111.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_fa4ef8cac2e8c8caa86bf3d4.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_1a4efe256fc4b44029326c98.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_bfd3ff88ef9909e0511fa035.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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_666c1f2981b4ff267d3f2940.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ec4b90ee2c8f775a1e666e66.woff2')format("woff");}.fff{font-family:fff;line-height:0.897450;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_c7970d45feaefe69c0566c2e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.052000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{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);}
.m7{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m20{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);}
.m6{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);}
.m21{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);}
.m18{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);}
.m19{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);}
.m1d{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);}
.m1{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);}
.m16{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);}
.md{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);}
.m2{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);}
.m1b{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);}
.m12{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);}
.m5{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);}
.m14{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);}
.m22{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);}
.m3{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);}
.m1e{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);}
.me{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);}
.m9{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);}
.mb{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);}
.m1a{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);}
.m17{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);}
.m11{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);}
.m8{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m1c{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);}
.m1f{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);}
.m10{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);}
.m4{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);}
.mf{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);}
.v21{vertical-align:-17.934000px;}
.v2c{vertical-align:-16.536000px;}
.v2{vertical-align:-9.816000px;}
.v9{vertical-align:-6.642000px;}
.v0{vertical-align:0.000000px;}
.v26{vertical-align:6.366000px;}
.v6{vertical-align:13.614000px;}
.vd{vertical-align:16.878000px;}
.v18{vertical-align:18.906000px;}
.ve{vertical-align:19.950000px;}
.vb{vertical-align:22.572000px;}
.v7{vertical-align:23.952000px;}
.v5{vertical-align:25.770000px;}
.v15{vertical-align:27.024000px;}
.v3{vertical-align:30.162000px;}
.v1{vertical-align:31.236000px;}
.v17{vertical-align:35.082000px;}
.v13{vertical-align:42.522000px;}
.v11{vertical-align:43.902000px;}
.v1e{vertical-align:45.942000px;}
.vc{vertical-align:48.342000px;}
.v8{vertical-align:49.722000px;}
.v20{vertical-align:52.668000px;}
.v28{vertical-align:63.858000px;}
.v12{vertical-align:66.036000px;}
.v10{vertical-align:67.422000px;}
.v2b{vertical-align:71.922000px;}
.v2d{vertical-align:73.806000px;}
.v27{vertical-align:79.362000px;}
.v14{vertical-align:82.782000px;}
.v24{vertical-align:85.704000px;}
.v16{vertical-align:89.178000px;}
.va{vertical-align:90.342000px;}
.vf{vertical-align:91.728000px;}
.v1d{vertical-align:103.632000px;}
.v1a{vertical-align:108.750000px;}
.v23{vertical-align:115.704000px;}
.v1c{vertical-align:116.898000px;}
.v29{vertical-align:120.816000px;}
.v19{vertical-align:127.680000px;}
.v22{vertical-align:130.602000px;}
.v2a{vertical-align:131.994000px;}
.v1b{vertical-align:135.828000px;}
.v25{vertical-align:148.536000px;}
.v1f{vertical-align:156.300000px;}
.v4{vertical-align:157.434000px;}
.ls1{letter-spacing:0.000000px;}
.ls5d{letter-spacing:0.000236px;}
.lse8{letter-spacing:0.000366px;}
.ls105{letter-spacing:0.000410px;}
.ls7a{letter-spacing:0.000444px;}
.lsf0{letter-spacing:0.000493px;}
.ls36{letter-spacing:0.000553px;}
.lsa0{letter-spacing:0.000932px;}
.lsd0{letter-spacing:0.000998px;}
.lsb8{letter-spacing:0.001050px;}
.lsa4{letter-spacing:0.001057px;}
.ls37{letter-spacing:0.001059px;}
.ls14{letter-spacing:0.001593px;}
.lsc0{letter-spacing:0.001597px;}
.ls2{letter-spacing:0.001599px;}
.lsb1{letter-spacing:0.002012px;}
.lsca{letter-spacing:0.002111px;}
.lsd8{letter-spacing:0.002147px;}
.ls45{letter-spacing:0.002676px;}
.lsa5{letter-spacing:0.002698px;}
.ls10{letter-spacing:0.002706px;}
.ls6c{letter-spacing:0.003181px;}
.lsf{letter-spacing:0.003242px;}
.ls7b{letter-spacing:0.003642px;}
.lsc3{letter-spacing:0.003657px;}
.lscf{letter-spacing:0.004267px;}
.lsdb{letter-spacing:0.004300px;}
.ls5a{letter-spacing:0.004332px;}
.ls109{letter-spacing:0.004336px;}
.ls13{letter-spacing:0.004338px;}
.lsce{letter-spacing:0.004811px;}
.lscd{letter-spacing:0.004855px;}
.ls15{letter-spacing:0.005166px;}
.lsbc{letter-spacing:0.005412px;}
.lsa2{letter-spacing:0.005873px;}
.ls69{letter-spacing:0.005972px;}
.lsf1{letter-spacing:0.006493px;}
.lse3{letter-spacing:0.007593px;}
.ls29{letter-spacing:0.008090px;}
.lsf2{letter-spacing:0.008571px;}
.ls6f{letter-spacing:0.009070px;}
.ls10b{letter-spacing:0.011256px;}
.lsb2{letter-spacing:0.011377px;}
.lsa7{letter-spacing:0.011865px;}
.ls7e{letter-spacing:0.011867px;}
.lsf5{letter-spacing:0.011870px;}
.lsbe{letter-spacing:0.011889px;}
.lsf3{letter-spacing:0.011905px;}
.lsf6{letter-spacing:0.011919px;}
.lsf7{letter-spacing:0.012463px;}
.ls5f{letter-spacing:0.013490px;}
.ls78{letter-spacing:0.013523px;}
.ls75{letter-spacing:0.014090px;}
.lsb3{letter-spacing:0.014117px;}
.ls10a{letter-spacing:0.015659px;}
.ls2e{letter-spacing:0.016220px;}
.ls76{letter-spacing:0.016790px;}
.lsb4{letter-spacing:0.016794px;}
.ls2f{letter-spacing:0.017390px;}
.ls7d{letter-spacing:0.017867px;}
.lsfc{letter-spacing:0.017905px;}
.lsfd{letter-spacing:0.018463px;}
.ls61{letter-spacing:0.018820px;}
.lsa8{letter-spacing:0.019317px;}
.ls79{letter-spacing:0.019523px;}
.ls87{letter-spacing:0.019865px;}
.lse0{letter-spacing:0.020084px;}
.ls85{letter-spacing:0.020953px;}
.ls9d{letter-spacing:0.021075px;}
.ls7c{letter-spacing:0.021167px;}
.ls10d{letter-spacing:0.021659px;}
.lsdf{letter-spacing:0.023306px;}
.lsa1{letter-spacing:0.023858px;}
.ls82{letter-spacing:0.025317px;}
.lsaa{letter-spacing:0.025865px;}
.ls9f{letter-spacing:0.026029px;}
.lsa9{letter-spacing:0.026953px;}
.ls9e{letter-spacing:0.029858px;}
.ls5b{letter-spacing:0.030285px;}
.lsa{letter-spacing:0.030333px;}
.ls38{letter-spacing:0.301956px;}
.ls9{letter-spacing:0.327273px;}
.ls54{letter-spacing:0.448893px;}
.lsd5{letter-spacing:0.502322px;}
.lsac{letter-spacing:0.507761px;}
.lsad{letter-spacing:1.759052px;}
.lsf9{letter-spacing:2.008465px;}
.lsd4{letter-spacing:2.346512px;}
.ls5{letter-spacing:2.356366px;}
.lsd2{letter-spacing:2.358890px;}
.lse6{letter-spacing:2.773595px;}
.ls3b{letter-spacing:2.820810px;}
.ls34{letter-spacing:2.823866px;}
.ls41{letter-spacing:2.826810px;}
.ls4{letter-spacing:2.880002px;}
.lsdc{letter-spacing:2.981971px;}
.ls23{letter-spacing:2.984915px;}
.ls0{letter-spacing:2.986200px;}
.lse4{letter-spacing:2.987971px;}
.lsb{letter-spacing:2.988499px;}
.ls35{letter-spacing:2.988532px;}
.lsa3{letter-spacing:2.989289px;}
.ls2a{letter-spacing:2.990915px;}
.ls86{letter-spacing:2.992200px;}
.ls7f{letter-spacing:3.007613px;}
.ls52{letter-spacing:3.010912px;}
.ls1b{letter-spacing:3.108339px;}
.ls18{letter-spacing:3.127272px;}
.ls47{letter-spacing:3.638153px;}
.lsc{letter-spacing:4.399329px;}
.ls9c{letter-spacing:4.843640px;}
.ls4f{letter-spacing:5.105459px;}
.lsd6{letter-spacing:5.134864px;}
.lse7{letter-spacing:5.743488px;}
.lsbd{letter-spacing:7.129599px;}
.ls83{letter-spacing:7.134551px;}
.lsb7{letter-spacing:7.135599px;}
.ls28{letter-spacing:7.172012px;}
.lsc8{letter-spacing:7.172700px;}
.ls6b{letter-spacing:7.173181px;}
.ls3a{letter-spacing:7.178012px;}
.ls1c{letter-spacing:7.188904px;}
.ls97{letter-spacing:7.678322px;}
.lse9{letter-spacing:8.057159px;}
.lsae{letter-spacing:9.002915px;}
.lse1{letter-spacing:9.088332px;}
.lscb{letter-spacing:9.092676px;}
.lsdd{letter-spacing:9.094332px;}
.ls88{letter-spacing:9.098189px;}
.lscc{letter-spacing:9.098676px;}
.ls95{letter-spacing:9.997599px;}
.ls1e{letter-spacing:10.158532px;}
.lsc9{letter-spacing:10.448700px;}
.lsc4{letter-spacing:10.905192px;}
.lsba{letter-spacing:10.905657px;}
.lsb6{letter-spacing:10.907412px;}
.ls6e{letter-spacing:10.908777px;}
.lsb5{letter-spacing:10.910012px;}
.lsf8{letter-spacing:10.910706px;}
.ls55{letter-spacing:10.912893px;}
.lsaf{letter-spacing:10.917795px;}
.ls7{letter-spacing:10.930918px;}
.ls81{letter-spacing:13.892915px;}
.ls6a{letter-spacing:13.895236px;}
.ls84{letter-spacing:13.898915px;}
.ls21{letter-spacing:14.530921px;}
.lsc6{letter-spacing:14.541657px;}
.ls6d{letter-spacing:14.543412px;}
.lsc2{letter-spacing:14.547657px;}
.lsbf{letter-spacing:14.548332px;}
.ls9b{letter-spacing:14.596376px;}
.lsc1{letter-spacing:15.926915px;}
.lsc5{letter-spacing:15.932915px;}
.ls98{letter-spacing:16.887287px;}
.ls48{letter-spacing:17.072915px;}
.lsed{letter-spacing:17.410924px;}
.ls20{letter-spacing:17.528915px;}
.lsde{letter-spacing:17.531971px;}
.ls77{letter-spacing:17.534915px;}
.ls92{letter-spacing:17.996915px;}
.ls4c{letter-spacing:18.080700px;}
.ls99{letter-spacing:18.130924px;}
.lsd7{letter-spacing:18.156991px;}
.ls5c{letter-spacing:18.162932px;}
.lsd9{letter-spacing:18.164045px;}
.ls58{letter-spacing:18.164081px;}
.ls43{letter-spacing:18.165733px;}
.ls59{letter-spacing:18.179856px;}
.ls72{letter-spacing:18.185412px;}
.ls6{letter-spacing:18.196379px;}
.ls27{letter-spacing:18.379956px;}
.lsff{letter-spacing:18.981834px;}
.lse5{letter-spacing:19.963653px;}
.ls11{letter-spacing:20.950177px;}
.lsd{letter-spacing:20.956177px;}
.ls32{letter-spacing:21.164915px;}
.ls71{letter-spacing:21.167236px;}
.ls22{letter-spacing:21.168499px;}
.ls24{letter-spacing:21.170915px;}
.ls3e{letter-spacing:21.207290px;}
.ls108{letter-spacing:21.403654px;}
.ls100{letter-spacing:21.665473px;}
.lsc7{letter-spacing:21.713412px;}
.ls3d{letter-spacing:21.719412px;}
.ls39{letter-spacing:21.792532px;}
.ls2b{letter-spacing:21.796382px;}
.ls89{letter-spacing:21.861836px;}
.ls4a{letter-spacing:21.927291px;}
.ls3{letter-spacing:22.058200px;}
.lsf4{letter-spacing:22.320019px;}
.ls1f{letter-spacing:22.579329px;}
.lsfb{letter-spacing:22.624888px;}
.lsfe{letter-spacing:22.630888px;}
.lsd3{letter-spacing:23.301838px;}
.ls80{letter-spacing:23.629111px;}
.lseb{letter-spacing:23.923488px;}
.ls10c{letter-spacing:24.800915px;}
.ls70{letter-spacing:24.803236px;}
.ls30{letter-spacing:24.806915px;}
.lsa6{letter-spacing:24.808200px;}
.ls102{letter-spacing:24.824915px;}
.ls31{letter-spacing:24.872748px;}
.ls57{letter-spacing:25.330930px;}
.ls94{letter-spacing:25.335144px;}
.ls65{letter-spacing:25.335176px;}
.ls3f{letter-spacing:25.335734px;}
.ls8a{letter-spacing:25.339520px;}
.ls8e{letter-spacing:25.340081px;}
.ls25{letter-spacing:25.349412px;}
.ls33{letter-spacing:25.355412px;}
.ls8c{letter-spacing:25.356444px;}
.ls2c{letter-spacing:25.377184px;}
.ls9a{letter-spacing:25.378254px;}
.ls4b{letter-spacing:25.379360px;}
.ls73{letter-spacing:25.592749px;}
.ls67{letter-spacing:26.560677px;}
.ls4d{letter-spacing:26.566677px;}
.ls104{letter-spacing:26.624915px;}
.ls66{letter-spacing:26.822700px;}
.ls64{letter-spacing:27.294568px;}
.ls103{letter-spacing:27.410915px;}
.ls106{letter-spacing:27.692915px;}
.ls50{letter-spacing:28.222177px;}
.ls2d{letter-spacing:28.301412px;}
.ls19{letter-spacing:28.344532px;}
.ls90{letter-spacing:28.931851px;}
.lsbb{letter-spacing:29.061842px;}
.lsb9{letter-spacing:29.127297px;}
.ls93{letter-spacing:29.810915px;}
.ls101{letter-spacing:29.840915px;}
.ls46{letter-spacing:30.455412px;}
.ls63{letter-spacing:30.894571px;}
.ls40{letter-spacing:31.561956px;}
.ls96{letter-spacing:31.583331px;}
.ls26{letter-spacing:31.931412px;}
.ls91{letter-spacing:32.455059px;}
.ls51{letter-spacing:32.727300px;}
.ls44{letter-spacing:33.736677px;}
.lsfa{letter-spacing:39.758362px;}
.lsd1{letter-spacing:39.882445px;}
.lsb0{letter-spacing:40.460915px;}
.ls42{letter-spacing:40.997412px;}
.ls3c{letter-spacing:41.790532px;}
.ls107{letter-spacing:43.658218px;}
.ls74{letter-spacing:49.610915px;}
.ls68{letter-spacing:49.616915px;}
.ls1d{letter-spacing:50.309412px;}
.ls4e{letter-spacing:50.462122px;}
.ls8f{letter-spacing:58.393059px;}
.ls8d{letter-spacing:58.843059px;}
.ls8b{letter-spacing:62.188322px;}
.lsee{letter-spacing:63.831759px;}
.ls17{letter-spacing:64.367412px;}
.lsab{letter-spacing:76.868700px;}
.ls1a{letter-spacing:84.371412px;}
.ls60{letter-spacing:92.683714px;}
.ls10e{letter-spacing:97.920082px;}
.ls5e{letter-spacing:104.465542px;}
.lsda{letter-spacing:580.844120px;}
.lse2{letter-spacing:595.178678px;}
.ls62{letter-spacing:648.000540px;}
.ls53{letter-spacing:793.309752px;}
.ls49{letter-spacing:923.302588px;}
.ls16{letter-spacing:924.284407px;}
.lse{letter-spacing:985.222639px;}
.lsef{letter-spacing:993.208100px;}
.ls12{letter-spacing:1000.211743px;}
.ls56{letter-spacing:1031.891769px;}
.lsea{letter-spacing:1040.531776px;}
.ls8{letter-spacing:1081.702720px;}
.lsec{letter-spacing:1101.011827px;}
.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;}
}
.ws68{word-spacing:-65.454600px;}
.ws7b{word-spacing:-47.324343px;}
.ws4b{word-spacing:-42.637126px;}
.wsd0{word-spacing:-36.379667px;}
.wsb3{word-spacing:-33.453846px;}
.ws51{word-spacing:-33.211407px;}
.ws4c{word-spacing:-32.727300px;}
.ws9a{word-spacing:-32.714209px;}
.ws50{word-spacing:-31.706208px;}
.ws8f{word-spacing:-31.693215px;}
.ws90{word-spacing:-30.333382px;}
.ws8d{word-spacing:-30.327382px;}
.ws8a{word-spacing:-28.106205px;}
.ws92{word-spacing:-28.088795px;}
.ws80{word-spacing:-25.095294px;}
.wsc5{word-spacing:-24.506202px;}
.ws86{word-spacing:-24.440748px;}
.wsdc{word-spacing:-23.982565px;}
.wse0{word-spacing:-23.917111px;}
.ws0{word-spacing:-23.245312px;}
.ws84{word-spacing:-19.335289px;}
.ws52{word-spacing:-18.183288px;}
.wsd2{word-spacing:-17.371651px;}
.ws83{word-spacing:-17.306196px;}
.wscf{word-spacing:-16.232741px;}
.ws11{word-spacing:-16.139475px;}
.wsbf{word-spacing:-15.905468px;}
.ws93{word-spacing:-15.789382px;}
.ws91{word-spacing:-15.783382px;}
.wsa0{word-spacing:-15.674257px;}
.ws9f{word-spacing:-15.668257px;}
.ws71{word-spacing:-15.342558px;}
.wsc3{word-spacing:-15.316376px;}
.wsfc{word-spacing:-15.120013px;}
.ws5c{word-spacing:-14.269103px;}
.ws99{word-spacing:-14.203648px;}
.wsfd{word-spacing:-13.817466px;}
.ws18{word-spacing:-13.745466px;}
.wsf2{word-spacing:-13.418193px;}
.ws9c{word-spacing:-12.829102px;}
.ws9d{word-spacing:-12.763647px;}
.ws17{word-spacing:-12.370919px;}
.ws53{word-spacing:-12.305465px;}
.wsf3{word-spacing:-12.246556px;}
.ws26{word-spacing:-12.240010px;}
.ws9b{word-spacing:-12.200737px;}
.ws29{word-spacing:-12.174556px;}
.ws2d{word-spacing:-12.043646px;}
.ws8b{word-spacing:-12.040654px;}
.wsa1{word-spacing:-12.034744px;}
.wsa2{word-spacing:-12.028744px;}
.wsee{word-spacing:-11.716373px;}
.ws5e{word-spacing:-11.677101px;}
.ws20{word-spacing:-11.520010px;}
.ws3b{word-spacing:-11.454555px;}
.ws14{word-spacing:-11.389100px;}
.ws23{word-spacing:-11.323646px;}
.ws10{word-spacing:-11.258191px;}
.ws2a{word-spacing:-11.192737px;}
.ws27{word-spacing:-11.133827px;}
.ws2e{word-spacing:-11.127282px;}
.ws12{word-spacing:-11.061827px;}
.ws15{word-spacing:-10.996373px;}
.ws4{word-spacing:-10.930918px;}
.ws1e{word-spacing:-10.865464px;}
.ws3d{word-spacing:-10.800009px;}
.ws7c{word-spacing:-10.770087px;}
.ws1b{word-spacing:-10.734554px;}
.wsef{word-spacing:-10.675645px;}
.ws49{word-spacing:-10.669100px;}
.ws5d{word-spacing:-10.631579px;}
.ws3c{word-spacing:-10.610191px;}
.wsb5{word-spacing:-10.603645px;}
.ws1a{word-spacing:-10.538191px;}
.ws21{word-spacing:-10.479281px;}
.ws19{word-spacing:-10.472736px;}
.ws4d{word-spacing:-10.407281px;}
.ws2b{word-spacing:-10.348372px;}
.ws44{word-spacing:-10.341827px;}
.wsf1{word-spacing:-10.217463px;}
.wsea{word-spacing:-10.152008px;}
.ws8{word-spacing:-10.102076px;}
.wsdd{word-spacing:-10.086554px;}
.ws9e{word-spacing:-10.080008px;}
.wsce{word-spacing:-10.040736px;}
.wsd6{word-spacing:-10.021099px;}
.ws94{word-spacing:-10.011382px;}
.ws6{word-spacing:-9.982525px;}
.ws37{word-spacing:-9.949099px;}
.ws82{word-spacing:-9.910414px;}
.ws4a{word-spacing:-9.909826px;}
.ws100{word-spacing:-9.890190px;}
.ws4f{word-spacing:-9.883645px;}
.ws7{word-spacing:-9.862974px;}
.ws88{word-spacing:-9.844372px;}
.wse9{word-spacing:-9.824735px;}
.ws3a{word-spacing:-9.818190px;}
.wsc{word-spacing:-9.743423px;}
.wsc8{word-spacing:-9.687281px;}
.ws62{word-spacing:-9.636789px;}
.wsed{word-spacing:-9.628372px;}
.wsb2{word-spacing:-9.621826px;}
.wscd{word-spacing:-9.582553px;}
.wsd{word-spacing:-9.564096px;}
.wsb4{word-spacing:-9.562917px;}
.wsaf{word-spacing:-9.556372px;}
.wscc{word-spacing:-9.517099px;}
.ws16{word-spacing:-9.490917px;}
.ws81{word-spacing:-9.451644px;}
.wsf6{word-spacing:-9.366553px;}
.wsd9{word-spacing:-9.360008px;}
.ws85{word-spacing:-9.286630px;}
.ws38{word-spacing:-9.235644px;}
.wsb8{word-spacing:-9.163644px;}
.ws1d{word-spacing:-9.151644px;}
.wsb0{word-spacing:-9.098189px;}
.wsd3{word-spacing:-9.032735px;}
.wseb{word-spacing:-8.777462px;}
.wsaa{word-spacing:-8.770916px;}
.ws9{word-spacing:-8.607686px;}
.ws65{word-spacing:-8.574553px;}
.wsa{word-spacing:-8.547911px;}
.wsb1{word-spacing:-8.509098px;}
.ws95{word-spacing:-8.410654px;}
.wsac{word-spacing:-8.312734px;}
.ws24{word-spacing:-8.247280px;}
.wscb{word-spacing:-8.208007px;}
.wsad{word-spacing:-8.116370px;}
.wsfe{word-spacing:-8.050916px;}
.ws32{word-spacing:-7.985461px;}
.wsdb{word-spacing:-7.880734px;}
.ws1f{word-spacing:-7.854552px;}
.wsb{word-spacing:-7.830604px;}
.wsfa{word-spacing:-7.658188px;}
.wsd5{word-spacing:-7.553461px;}
.ws61{word-spacing:-7.542683px;}
.wsf5{word-spacing:-7.527279px;}
.wsff{word-spacing:-7.468370px;}
.ws45{word-spacing:-7.396370px;}
.wsab{word-spacing:-7.291642px;}
.wsf8{word-spacing:-7.265461px;}
.wsfb{word-spacing:-7.141097px;}
.wsa7{word-spacing:-7.134551px;}
.ws33{word-spacing:-7.069097px;}
.ws64{word-spacing:-7.029824px;}
.wsf4{word-spacing:-7.010188px;}
.ws46{word-spacing:-7.003642px;}
.wsf7{word-spacing:-6.748369px;}
.ws3e{word-spacing:-6.741824px;}
.ws34{word-spacing:-6.617460px;}
.wsa9{word-spacing:-6.610915px;}
.ws31{word-spacing:-6.414551px;}
.ws3f{word-spacing:-6.224732px;}
.ws36{word-spacing:-6.218187px;}
.ws13{word-spacing:-6.152732px;}
.wse{word-spacing:-6.097111px;}
.wsa6{word-spacing:-6.087278px;}
.wsa4{word-spacing:-5.890914px;}
.ws2f{word-spacing:-5.760005px;}
.wsa8{word-spacing:-5.655277px;}
.ws96{word-spacing:-5.367277px;}
.wsd1{word-spacing:-5.170913px;}
.wsa3{word-spacing:-4.869822px;}
.ws41{word-spacing:-4.778186px;}
.ws42{word-spacing:-4.457458px;}
.ws30{word-spacing:-4.189094px;}
.ws22{word-spacing:-4.058185px;}
.ws2c{word-spacing:-3.992731px;}
.ws97{word-spacing:-3.822549px;}
.ws25{word-spacing:-3.730912px;}
.ws7f{word-spacing:-3.652367px;}
.ws28{word-spacing:-3.600003px;}
.ws48{word-spacing:-3.141821px;}
.wsbc{word-spacing:-2.160002px;}
.wsc4{word-spacing:-0.772364px;}
.wsc7{word-spacing:-0.314182px;}
.wsc1{word-spacing:-0.248727px;}
.ws39{word-spacing:-0.130909px;}
.ws3{word-spacing:-0.071731px;}
.ws4e{word-spacing:-0.052364px;}
.ws5b{word-spacing:-0.047821px;}
.ws55{word-spacing:-0.022510px;}
.ws1c{word-spacing:0.000000px;}
.ws6a{word-spacing:0.008596px;}
.ws54{word-spacing:0.013091px;}
.ws87{word-spacing:0.078546px;}
.ws98{word-spacing:0.209455px;}
.wsc0{word-spacing:0.340364px;}
.ws7e{word-spacing:1.021092px;}
.wsb7{word-spacing:2.042184px;}
.wsca{word-spacing:2.369457px;}
.ws66{word-spacing:2.440265px;}
.wsae{word-spacing:2.631275px;}
.wsda{word-spacing:2.958548px;}
.wsc6{word-spacing:3.220366px;}
.wsc2{word-spacing:3.285821px;}
.wsd4{word-spacing:3.482185px;}
.ws89{word-spacing:3.547639px;}
.wsbe{word-spacing:3.613094px;}
.wsb6{word-spacing:3.678549px;}
.ws60{word-spacing:3.850487px;}
.wsc9{word-spacing:4.856731px;}
.ws5f{word-spacing:7.007317px;}
.ws35{word-spacing:8.574553px;}
.ws40{word-spacing:9.556372px;}
.wsa5{word-spacing:10.603645px;}
.wsba{word-spacing:10.813100px;}
.wsb9{word-spacing:12.318556px;}
.wsbd{word-spacing:12.384010px;}
.ws8c{word-spacing:13.842010px;}
.ws8e{word-spacing:13.848010px;}
.wsbb{word-spacing:14.936740px;}
.ws43{word-spacing:15.512740px;}
.ws5a{word-spacing:21.114010px;}
.wsec{word-spacing:21.730927px;}
.wsf0{word-spacing:21.796382px;}
.ws67{word-spacing:22.887180px;}
.ws2{word-spacing:23.527834px;}
.ws5{word-spacing:25.003657px;}
.wsf9{word-spacing:25.461839px;}
.ws1{word-spacing:27.975090px;}
.wsf{word-spacing:28.603660px;}
.ws6c{word-spacing:31.719299px;}
.ws59{word-spacing:32.727300px;}
.ws6b{word-spacing:33.813846px;}
.wsd8{word-spacing:39.010942px;}
.wsdf{word-spacing:41.392832px;}
.wse2{word-spacing:48.418425px;}
.wse5{word-spacing:53.554954px;}
.wse6{word-spacing:59.445868px;}
.wse7{word-spacing:61.891080px;}
.ws56{word-spacing:62.712010px;}
.wse8{word-spacing:65.402236px;}
.ws77{word-spacing:69.222010px;}
.ws70{word-spacing:71.162241px;}
.wsd7{word-spacing:71.738242px;}
.ws6e{word-spacing:74.500426px;}
.ws79{word-spacing:77.707701px;}
.ws58{word-spacing:77.969520px;}
.ws73{word-spacing:83.009524px;}
.ws74{word-spacing:86.346010px;}
.ws6f{word-spacing:92.340010px;}
.ws76{word-spacing:94.856806px;}
.ws6d{word-spacing:95.592010px;}
.ws78{word-spacing:98.850010px;}
.ws57{word-spacing:99.120010px;}
.ws72{word-spacing:104.160010px;}
.ws7a{word-spacing:107.412010px;}
.ws75{word-spacing:115.974010px;}
.wsde{word-spacing:294.917681px;}
.ws7d{word-spacing:377.057769px;}
.wse3{word-spacing:421.507484px;}
.ws47{word-spacing:454.264513px;}
.ws63{word-spacing:699.814401px;}
.ws69{word-spacing:731.428973px;}
.wse1{word-spacing:1000.214005px;}
.wse4{word-spacing:1059.746005px;}
._1f{margin-left:-38.683669px;}
._25{margin-left:-17.955179px;}
._3{margin-left:-5.881958px;}
._1{margin-left:-3.843225px;}
._2{margin-left:-2.008474px;}
._13{margin-left:-1.002438px;}
._4{width:1.832729px;}
._0{width:3.843225px;}
._19{width:5.743076px;}
._20{width:7.190665px;}
._1a{width:9.062582px;}
._21{width:10.879159px;}
._3f{width:18.654561px;}
._3d{width:20.665057px;}
._15{width:21.713906px;}
._f{width:22.826634px;}
._24{width:24.878368px;}
._6{width:25.891235px;}
._a{width:27.448982px;}
._5{width:29.127297px;}
._8{width:30.733058px;}
._7{width:32.111479px;}
._9{width:33.156312px;}
._d{width:34.473955px;}
._23{width:35.631519px;}
._10{width:37.832759px;}
._e{width:39.010942px;}
._16{width:40.626688px;}
._14{width:41.720819px;}
._c{width:44.423054px;}
._12{width:50.730913px;}
._11{width:51.961997px;}
._22{width:56.094592px;}
._28{width:71.256554px;}
._33{width:74.111737px;}
._2c{width:76.201588px;}
._2e{width:78.283702px;}
._38{width:88.471114px;}
._39{width:91.403518px;}
._b{width:96.836850px;}
._3c{width:98.509173px;}
._30{width:104.072814px;}
._3b{width:106.298270px;}
._2d{width:108.261908px;}
._1c{width:119.061917px;}
._1b{width:125.541923px;}
._32{width:129.011017px;}
._17{width:132.611020px;}
._29{width:137.192842px;}
._1d{width:142.691028px;}
._3a{width:153.925714px;}
._37{width:154.954543px;}
._26{width:192.436524px;}
._34{width:219.011092px;}
._35{width:225.920591px;}
._2f{width:239.629291px;}
._2b{width:242.205525px;}
._2a{width:279.274159px;}
._27{width:313.134806px;}
._36{width:370.800309px;}
._3e{width:456.665414px;}
._18{width:489.392714px;}
._31{width:545.143989px;}
._1e{width:1037.212188px;}
.fc2{color:rgb(5,150,105);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,185,129);}
.fs6{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y26{bottom:61.467000px;}
.y67{bottom:105.475500px;}
.y25{bottom:106.299000px;}
.y181{bottom:113.181000px;}
.y64{bottom:125.494500px;}
.y66{bottom:130.128000px;}
.y24{bottom:130.951500px;}
.y61{bottom:130.968000px;}
.y63{bottom:135.058500px;}
.y180{bottom:137.833500px;}
.y62{bottom:144.025500px;}
.y65{bottom:154.780500px;}
.yb7{bottom:154.782000px;}
.y23{bottom:155.604000px;}
.y17f{bottom:156.843000px;}
.yf8{bottom:160.714500px;}
.y17d{bottom:162.486000px;}
.y132{bottom:168.025500px;}
.y17e{bottom:168.928500px;}
.y68{bottom:170.326500px;}
.y22{bottom:180.258000px;}
.y17c{bottom:187.138500px;}
.yb6{bottom:193.471500px;}
.y1f0{bottom:194.308500px;}
.y60{bottom:198.184500px;}
.y1d3{bottom:198.901500px;}
.y21{bottom:204.910500px;}
.yf7{bottom:205.306500px;}
.y17b{bottom:206.148000px;}
.y179{bottom:211.791000px;}
.y17a{bottom:218.233500px;}
.y1ef{bottom:218.961000px;}
.y5f{bottom:222.838500px;}
.y130{bottom:223.026000px;}
.yb5{bottom:225.417000px;}
.y20{bottom:229.563000px;}
.y178{bottom:230.800500px;}
.y176{bottom:236.443500px;}
.y1a9{bottom:236.953500px;}
.yb4{bottom:238.584000px;}
.y177{bottom:242.887500px;}
.y12d{bottom:243.045000px;}
.y1ee{bottom:243.613500px;}
.y1ac{bottom:247.114500px;}
.y5e{bottom:247.491000px;}
.y12f{bottom:247.678500px;}
.y12a{bottom:248.518500px;}
.yf6{bottom:249.900000px;}
.y12c{bottom:252.609000px;}
.y1f{bottom:254.215500px;}
.y1a8{bottom:257.277000px;}
.y1d2{bottom:260.839500px;}
.y175{bottom:261.096000px;}
.y12b{bottom:261.576000px;}
.y1ab{bottom:267.438000px;}
.yf5{bottom:268.909500px;}
.y12e{bottom:272.331000px;}
.yf3{bottom:274.552500px;}
.y1a7{bottom:277.600500px;}
.y1e{bottom:278.868000px;}
.y174{bottom:280.107000px;}
.y1d1{bottom:281.163000px;}
.y1ed{bottom:282.318000px;}
.yf4{bottom:282.528000px;}
.y5d{bottom:283.926000px;}
.yb3{bottom:284.695500px;}
.y172{bottom:285.750000px;}
.y1aa{bottom:287.763000px;}
.y131{bottom:287.877000px;}
.y4a{bottom:290.386500px;}
.y129{bottom:291.082500px;}
.y173{bottom:292.192500px;}
.y1a6{bottom:297.924000px;}
.y1d0{bottom:301.486500px;}
.y1d{bottom:303.520500px;}
.y171{bottom:304.759500px;}
.y1ec{bottom:306.970500px;}
.yf2{bottom:307.096500px;}
.y5c{bottom:308.578500px;}
.yb2{bottom:309.348000px;}
.y16f{bottom:310.402500px;}
.y49{bottom:315.039000px;}
.y128{bottom:315.735000px;}
.y170{bottom:316.845000px;}
.yf1{bottom:318.321000px;}
.y1cf{bottom:321.811500px;}
.y1c{bottom:328.173000px;}
.y16e{bottom:329.412000px;}
.y1eb{bottom:331.623000px;}
.y5b{bottom:333.231000px;}
.y16c{bottom:335.055000px;}
.y48{bottom:339.691500px;}
.yb1{bottom:340.678500px;}
.y16d{bottom:341.497500px;}
.y1ce{bottom:342.135000px;}
.yb0{bottom:342.715500px;}
.y127{bottom:352.170000px;}
.y1b{bottom:352.825500px;}
.yaf{bottom:353.940000px;}
.y5a{bottom:357.883500px;}
.yf0{bottom:362.188500px;}
.y1cd{bottom:363.057000px;}
.y47{bottom:364.345500px;}
.y15f{bottom:366.792000px;}
.y1ea{bottom:370.327500px;}
.y15e{bottom:372.435000px;}
.yef{bottom:373.413000px;}
.y126{bottom:376.822500px;}
.y16a{bottom:377.199000px;}
.y1a{bottom:377.479500px;}
.y169{bottom:381.682500px;}
.y1cc{bottom:383.977500px;}
.y168{bottom:386.164500px;}
.y46{bottom:388.998000px;}
.y167{bottom:390.648000px;}
.y1e9{bottom:394.980000px;}
.y166{bottom:395.131500px;}
.y15d{bottom:397.129500px;}
.y125{bottom:401.476500px;}
.y19e{bottom:402.132000px;}
.y59{bottom:402.477000px;}
.yae{bottom:402.688500px;}
.y15c{bottom:402.772500px;}
.y16b{bottom:404.490000px;}
.y45{bottom:413.650500px;}
.y19{bottom:419.226000px;}
.y1cb{bottom:419.844000px;}
.yee{bottom:421.372500px;}
.y165{bottom:422.031000px;}
.y164{bottom:426.514500px;}
.y19d{bottom:426.784500px;}
.y15b{bottom:427.465500px;}
.y123{bottom:428.479500px;}
.y163{bottom:430.998000px;}
.y15a{bottom:433.108500px;}
.y1e8{bottom:433.683000px;}
.y162{bottom:435.481500px;}
.y44{bottom:438.303000px;}
.y124{bottom:439.704000px;}
.y161{bottom:439.963500px;}
.y1ca{bottom:440.167500px;}
.yed{bottom:446.025000px;}
.y58{bottom:447.069000px;}
.y122{bottom:450.774000px;}
.y19c{bottom:451.437000px;}
.y160{bottom:453.414000px;}
.y159{bottom:455.580000px;}
.yad{bottom:458.188500px;}
.y1e7{bottom:458.335500px;}
.y43{bottom:462.955500px;}
.yec{bottom:470.677500px;}
.y57{bottom:471.721500px;}
.y19b{bottom:476.089500px;}
.yac{bottom:480.483000px;}
.y1c9{bottom:481.537500px;}
.y18{bottom:482.409000px;}
.y42{bottom:487.608000px;}
.y121{bottom:489.010500px;}
.y14c{bottom:489.462000px;}
.y157{bottom:493.579500px;}
.y1e6{bottom:497.040000px;}
.y156{bottom:498.063000px;}
.yab{bottom:498.802500px;}
.y19a{bottom:500.742000px;}
.y1c8{bottom:501.861000px;}
.y155{bottom:502.546500px;}
.y154{bottom:507.028500px;}
.y17{bottom:507.061500px;}
.y153{bottom:511.512000px;}
.y41{bottom:512.260500px;}
.y120{bottom:513.663000px;}
.ydf{bottom:513.717000px;}
.yea{bottom:517.834500px;}
.y14b{bottom:519.045000px;}
.y158{bottom:520.872000px;}
.y1e5{bottom:521.692500px;}
.y1c7{bottom:522.184500px;}
.ye9{bottom:522.316500px;}
.yaa{bottom:523.455000px;}
.y199{bottom:525.394500px;}
.ye8{bottom:526.800000px;}
.ye7{bottom:531.283500px;}
.ye6{bottom:535.767000px;}
.y40{bottom:536.913000px;}
.y11f{bottom:538.315500px;}
.y152{bottom:538.411500px;}
.y1c6{bottom:542.508000px;}
.y151{bottom:542.895000px;}
.yde{bottom:543.300000px;}
.yeb{bottom:545.125500px;}
.y150{bottom:547.378500px;}
.ya9{bottom:548.004000px;}
.y14a{bottom:548.629500px;}
.y198{bottom:550.048500px;}
.y16{bottom:550.276500px;}
.y14f{bottom:551.862000px;}
.y14e{bottom:556.345500px;}
.ya8{bottom:557.823000px;}
.y1e4{bottom:560.397000px;}
.y3f{bottom:561.567000px;}
.y56{bottom:562.191000px;}
.ye5{bottom:562.666500px;}
.y1c5{bottom:562.831500px;}
.ya6{bottom:565.953000px;}
.ye4{bottom:567.150000px;}
.y14d{bottom:569.794500px;}
.y11e{bottom:569.965500px;}
.y149{bottom:571.288500px;}
.ye3{bottom:571.632000px;}
.y15{bottom:572.029500px;}
.ydd{bottom:572.883000px;}
.y197{bottom:574.701000px;}
.ye2{bottom:576.115500px;}
.ya7{bottom:577.228500px;}
.ye1{bottom:580.599000px;}
.y11c{bottom:581.190000px;}
.y1c4{bottom:583.156500px;}
.y1e3{bottom:585.049500px;}
.y3e{bottom:586.219500px;}
.y11d{bottom:592.260000px;}
.y14{bottom:593.781000px;}
.ye0{bottom:594.049500px;}
.y148{bottom:595.941000px;}
.y196{bottom:599.353500px;}
.y1c3{bottom:603.480000px;}
.y3d{bottom:610.872000px;}
.y13{bottom:615.534000px;}
.ydc{bottom:618.664500px;}
.y147{bottom:620.595000px;}
.y1e2{bottom:623.752500px;}
.y1c2{bottom:623.803500px;}
.y195{bottom:624.006000px;}
.y11b{bottom:631.047000px;}
.y3c{bottom:635.524500px;}
.y12{bottom:637.287000px;}
.y119{bottom:642.271500px;}
.ydb{bottom:643.317000px;}
.y1c1{bottom:644.127000px;}
.y146{bottom:645.247500px;}
.y1e1{bottom:648.406500px;}
.y194{bottom:648.658500px;}
.y98{bottom:649.965000px;}
.y11a{bottom:653.341500px;}
.y97{bottom:655.608000px;}
.y11{bottom:659.038500px;}
.ya4{bottom:659.724000px;}
.y3b{bottom:660.177000px;}
.y99{bottom:662.256000px;}
.ya3{bottom:664.207500px;}
.y1c0{bottom:664.450500px;}
.ya2{bottom:668.691000px;}
.y145{bottom:669.900000px;}
.y1e0{bottom:673.059000px;}
.ya1{bottom:673.174500px;}
.y193{bottom:673.311000px;}
.yda{bottom:675.708000px;}
.ya0{bottom:677.658000px;}
.y95{bottom:679.686000px;}
.yd9{bottom:679.753500px;}
.y96{bottom:680.031000px;}
.y10{bottom:680.791500px;}
.y3a{bottom:684.829500px;}
.y1bf{bottom:685.372500px;}
.y94{bottom:685.674000px;}
.ya5{bottom:687.016500px;}
.y118{bottom:692.128500px;}
.y144{bottom:697.158000px;}
.y192{bottom:697.963500px;}
.yf{bottom:702.543000px;}
.y116{bottom:703.353000px;}
.y9f{bottom:704.557500px;}
.y1be{bottom:706.294500px;}
.y143{bottom:708.382500px;}
.y9e{bottom:709.039500px;}
.y93{bottom:709.270500px;}
.y39{bottom:709.482000px;}
.y1df{bottom:711.762000px;}
.y9d{bottom:713.523000px;}
.y117{bottom:714.423000px;}
.y92{bottom:715.257000px;}
.yd7{bottom:715.647000px;}
.yd6{bottom:717.684000px;}
.y9c{bottom:718.006500px;}
.y9b{bottom:722.490000px;}
.y191{bottom:722.616000px;}
.ye{bottom:724.296000px;}
.yd8{bottom:724.863000px;}
.yd5{bottom:728.908500px;}
.y38{bottom:734.136000px;}
.y142{bottom:735.747000px;}
.y9a{bottom:735.939000px;}
.y1de{bottom:736.414500px;}
.y1bd{bottom:742.159500px;}
.yd{bottom:746.047500px;}
.y190{bottom:747.270000px;}
.y115{bottom:750.237000px;}
.y141{bottom:760.401000px;}
.y91{bottom:760.581000px;}
.y113{bottom:761.461500px;}
.y1bc{bottom:762.483000px;}
.y1a2{bottom:768.048000px;}
.y37{bottom:770.307000px;}
.y18f{bottom:771.922500px;}
.y114{bottom:772.531500px;}
.y1dd{bottom:777.561000px;}
.y1a5{bottom:778.210500px;}
.yd4{bottom:778.566000px;}
.yc{bottom:779.440500px;}
.y1bb{bottom:782.806500px;}
.y1a1{bottom:788.373000px;}
.y83{bottom:788.670000px;}
.y82{bottom:794.313000px;}
.y36{bottom:794.959500px;}
.y18e{bottom:796.575000px;}
.y13f{bottom:796.926000px;}
.y1a4{bottom:798.534000px;}
.y8f{bottom:798.672000px;}
.y84{bottom:800.961000px;}
.y8e{bottom:803.155500px;}
.y8d{bottom:807.639000px;}
.y112{bottom:808.347000px;}
.y1a0{bottom:808.696500px;}
.y8c{bottom:812.121000px;}
.yd3{bottom:812.272500px;}
.y140{bottom:815.184000px;}
.y8b{bottom:816.604500px;}
.y81{bottom:818.737500px;}
.y1a3{bottom:818.857500px;}
.y110{bottom:819.571500px;}
.y35{bottom:819.612000px;}
.yb{bottom:820.966500px;}
.y18d{bottom:821.227500px;}
.yd2{bottom:822.091500px;}
.y1ba{bottom:824.176500px;}
.y80{bottom:824.380500px;}
.y90{bottom:825.963000px;}
.y19f{bottom:829.020000px;}
.y13e{bottom:829.735500px;}
.yd0{bottom:830.221500px;}
.y111{bottom:830.641500px;}
.y13d{bottom:834.219000px;}
.y1dc{bottom:835.701000px;}
.yd1{bottom:841.497000px;}
.y8a{bottom:843.504000px;}
.y34{bottom:844.264500px;}
.y1b9{bottom:844.500000px;}
.y18c{bottom:845.880000px;}
.y89{bottom:847.987500px;}
.y7f{bottom:848.320500px;}
.y55{bottom:848.511000px;}
.ya{bottom:850.900500px;}
.y88{bottom:852.471000px;}
.y7e{bottom:853.963500px;}
.y87{bottom:856.954500px;}
.y1db{bottom:860.353500px;}
.y86{bottom:861.436500px;}
.y1b8{bottom:864.825000px;}
.y10d{bottom:867.391500px;}
.y13c{bottom:868.632000px;}
.y33{bottom:868.917000px;}
.y10f{bottom:869.428500px;}
.y18b{bottom:870.532500px;}
.y85{bottom:874.887000px;}
.y9{bottom:875.553000px;}
.y10c{bottom:880.653000px;}
.ycf{bottom:881.916000px;}
.y1da{bottom:885.006000px;}
.y1b7{bottom:885.148500px;}
.y10e{bottom:891.723000px;}
.y54{bottom:893.103000px;}
.y13b{bottom:893.284500px;}
.y32{bottom:893.569500px;}
.y18a{bottom:895.185000px;}
.y8{bottom:900.205500px;}
.y7d{bottom:901.033500px;}
.y1f7{bottom:902.527500px;}
.y1b6{bottom:905.472000px;}
.y1d9{bottom:909.660000px;}
.y53{bottom:917.755500px;}
.y31{bottom:918.223500px;}
.yce{bottom:919.686000px;}
.y189{bottom:919.839000px;}
.ycd{bottom:921.723000px;}
.y7c{bottom:925.686000px;}
.y1b5{bottom:926.394000px;}
.y1f6{bottom:927.180000px;}
.y13a{bottom:929.901000px;}
.y10b{bottom:931.566000px;}
.ycc{bottom:932.947500px;}
.y7{bottom:933.040500px;}
.y10a{bottom:933.601500px;}
.y52{bottom:942.408000px;}
.y30{bottom:942.876000px;}
.y188{bottom:944.491500px;}
.y109{bottom:944.826000px;}
.y1b4{bottom:947.314500px;}
.y137{bottom:948.159000px;}
.y7b{bottom:950.340000px;}
.y6{bottom:959.449500px;}
.y139{bottom:962.712000px;}
.y1d8{bottom:962.982000px;}
.y1f5{bottom:965.281500px;}
.y51{bottom:967.060500px;}
.y138{bottom:967.194000px;}
.y2f{bottom:967.528500px;}
.y187{bottom:969.144000px;}
.y7a{bottom:974.992500px;}
.y1b3{bottom:983.181000px;}
.y1d7{bottom:983.305500px;}
.ycb{bottom:984.070500px;}
.y5{bottom:984.826500px;}
.y1f4{bottom:989.934000px;}
.y4{bottom:991.335000px;}
.y50{bottom:991.713000px;}
.y2e{bottom:992.181000px;}
.y108{bottom:993.109500px;}
.y186{bottom:993.796500px;}
.y136{bottom:1001.607000px;}
.y1b2{bottom:1003.504500px;}
.y1d6{bottom:1003.629000px;}
.y6d{bottom:1008.966000px;}
.y78{bottom:1013.082000px;}
.y3{bottom:1014.418500px;}
.y1f3{bottom:1014.586500px;}
.yca{bottom:1016.016000px;}
.y4f{bottom:1016.367000px;}
.y2d{bottom:1016.833500px;}
.y77{bottom:1017.565500px;}
.y185{bottom:1018.449000px;}
.y76{bottom:1022.049000px;}
.y1d5{bottom:1023.952500px;}
.y135{bottom:1026.259500px;}
.y75{bottom:1026.532500px;}
.y74{bottom:1031.014500px;}
.yfb{bottom:1035.148500px;}
.yc4{bottom:1037.148000px;}
.y6c{bottom:1038.549000px;}
.y106{bottom:1039.266000px;}
.y79{bottom:1040.374500px;}
.yc9{bottom:1040.668500px;}
.y4e{bottom:1041.019500px;}
.y2c{bottom:1041.486000px;}
.y184{bottom:1043.101500px;}
.y105{bottom:1043.749500px;}
.y1d4{bottom:1044.276000px;}
.y1b1{bottom:1044.874500px;}
.yc3{bottom:1046.712000px;}
.y104{bottom:1048.233000px;}
.y134{bottom:1050.912000px;}
.y1f2{bottom:1052.689500px;}
.y103{bottom:1052.716500px;}
.yc2{bottom:1055.677500px;}
.y102{bottom:1057.198500px;}
.y73{bottom:1057.914000px;}
.y72{bottom:1062.397500px;}
.yc1{bottom:1064.644500px;}
.yfa{bottom:1064.733000px;}
.y1b0{bottom:1065.198000px;}
.yc8{bottom:1065.321000px;}
.y4d{bottom:1065.672000px;}
.y2b{bottom:1066.138500px;}
.y107{bottom:1066.558500px;}
.y71{bottom:1066.881000px;}
.y183{bottom:1067.754000px;}
.y6b{bottom:1068.132000px;}
.y70{bottom:1071.364500px;}
.yc0{bottom:1073.611500px;}
.y6f{bottom:1075.848000px;}
.y1f1{bottom:1077.342000px;}
.yb8{bottom:1078.486500px;}
.ybf{bottom:1082.577000px;}
.y101{bottom:1084.098000px;}
.y1af{bottom:1086.120000px;}
.y100{bottom:1088.581500px;}
.y6e{bottom:1089.297000px;}
.yc7{bottom:1089.973500px;}
.y2{bottom:1090.027500px;}
.y4c{bottom:1090.324500px;}
.y2a{bottom:1090.791000px;}
.ybe{bottom:1091.544000px;}
.y182{bottom:1092.406500px;}
.yff{bottom:1093.065000px;}
.yf9{bottom:1094.316000px;}
.y133{bottom:1095.504000px;}
.yfe{bottom:1097.548500px;}
.ybd{bottom:1100.511000px;}
.yfd{bottom:1102.032000px;}
.ybc{bottom:1109.476500px;}
.yc6{bottom:1114.626000px;}
.y29{bottom:1115.445000px;}
.yfc{bottom:1115.481000px;}
.ybb{bottom:1118.443500px;}
.y1ae{bottom:1121.985000px;}
.yba{bottom:1127.410500px;}
.y4b{bottom:1133.695500px;}
.y69{bottom:1134.109500px;}
.y6a{bottom:1134.325500px;}
.y1{bottom:1135.345500px;}
.yc5{bottom:1139.278500px;}
.y28{bottom:1140.097500px;}
.y1ad{bottom:1142.308500px;}
.yb9{bottom:1153.711500px;}
.y27{bottom:1199.275500px;}
.h10{height:2.391024px;}
.h21{height:23.850624px;}
.h22{height:24.871000px;}
.h16{height:34.191729px;}
.h4{height:35.865450px;}
.h1b{height:37.464624px;}
.h9{height:41.723369px;}
.hb{height:42.799330px;}
.h8{height:44.831700px;}
.h7{height:45.687311px;}
.hc{height:46.865494px;}
.h6{height:49.090950px;}
.h3b{height:50.211840px;}
.h5{height:51.216077px;}
.h3a{height:57.945729px;}
.h26{height:59.619450px;}
.h11{height:59.961729px;}
.ha{height:60.254040px;}
.h15{height:60.783729px;}
.h2a{height:61.215729px;}
.h17{height:61.635450px;}
.h1c{height:61.641450px;}
.h23{height:62.889450px;}
.h39{height:62.895450px;}
.hd{height:64.347729px;}
.he{height:64.353729px;}
.h1a{height:67.320624px;}
.h3d{height:70.161024px;}
.h3f{height:70.167024px;}
.h14{height:70.817494px;}
.h3{height:76.067700px;}
.h30{height:79.071450px;}
.h13{height:83.049729px;}
.h12{height:83.913729px;}
.h19{height:84.207450px;}
.h1e{height:84.735729px;}
.h2{height:86.782500px;}
.h2d{height:91.145494px;}
.h37{height:91.763494px;}
.h18{height:92.733024px;}
.h1f{height:92.739024px;}
.h27{height:93.370950px;}
.h25{height:93.988950px;}
.h1d{height:94.119024px;}
.h34{height:99.717450px;}
.h2b{height:106.023024px;}
.h2e{height:106.029024px;}
.h3e{height:107.997729px;}
.h20{height:108.277000px;}
.h33{height:123.207024px;}
.h31{height:136.043494px;}
.h24{height:138.268950px;}
.h28{height:142.941729px;}
.h32{height:144.621450px;}
.h3c{height:149.895729px;}
.h36{height:150.927024px;}
.h2f{height:151.569450px;}
.h29{height:152.763450px;}
.h2c{height:158.691024px;}
.hf{height:159.825024px;}
.h35{height:167.859450px;}
.h38{height:167.865450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:105.664500px;}
.x5{left:112.762500px;}
.x139{left:114.481500px;}
.x1{left:118.921500px;}
.x10b{left:119.931000px;}
.x2c{left:121.168500px;}
.xc3{left:124.075500px;}
.xab{left:125.613000px;}
.x129{left:126.681000px;}
.x116{left:128.530500px;}
.x1a{left:131.704500px;}
.xac{left:134.965500px;}
.xc6{left:137.391000px;}
.x13b{left:138.681000px;}
.x13a{left:139.935000px;}
.x12a{left:141.198000px;}
.x9a{left:145.666500px;}
.xc{left:147.208500px;}
.x48{left:156.394500px;}
.x52{left:157.510500px;}
.x41{left:159.094500px;}
.xad{left:164.941500px;}
.x12b{left:167.221500px;}
.x67{left:171.408000px;}
.xae{left:173.082000px;}
.x117{left:175.162500px;}
.xa0{left:176.569500px;}
.x32{left:180.453000px;}
.x14{left:183.886500px;}
.x49{left:184.924500px;}
.x42{left:187.032000px;}
.x33{left:188.782500px;}
.x15{left:192.067500px;}
.xaf{left:196.704000px;}
.x9c{left:198.198000px;}
.xbf{left:199.456500px;}
.x68{left:201.210000px;}
.x138{left:209.157000px;}
.xc1{left:210.300000px;}
.xb0{left:212.166000px;}
.xd{left:214.690500px;}
.x101{left:216.091500px;}
.x24{left:217.866000px;}
.xcf{left:220.102500px;}
.xd0{left:221.545500px;}
.xe{left:222.873000px;}
.x81{left:225.841500px;}
.x89{left:227.941500px;}
.xa1{left:231.426000px;}
.x37{left:233.103000px;}
.x25{left:234.229500px;}
.x8a{left:236.161500px;}
.x38{left:239.391000px;}
.xa2{left:240.778500px;}
.x130{left:243.349500px;}
.x7{left:245.163000px;}
.x69{left:247.026000px;}
.x9b{left:249.780000px;}
.xd6{left:251.212500px;}
.x102{left:252.327000px;}
.x11b{left:255.315000px;}
.x82{left:258.900000px;}
.xc4{left:262.123500px;}
.x103{left:267.477000px;}
.xb1{left:269.239500px;}
.x26{left:271.398000px;}
.x5d{left:273.045000px;}
.xd1{left:274.167000px;}
.x96{left:276.027000px;}
.xb2{left:277.606500px;}
.xda{left:278.692500px;}
.x20{left:280.267500px;}
.x40{left:281.389500px;}
.x3{left:283.758000px;}
.xa3{left:285.313500px;}
.xa5{left:286.581000px;}
.x27{left:287.761500px;}
.x12{left:289.855500px;}
.xa8{left:292.773000px;}
.x91{left:295.474500px;}
.x21{left:296.631000px;}
.x13{left:298.038000px;}
.x97{left:299.215500px;}
.xa4{left:304.762500px;}
.x39{left:306.900000px;}
.x9e{left:308.902500px;}
.x7f{left:310.915500px;}
.x9d{left:312.285000px;}
.xa{left:313.911000px;}
.xb3{left:315.136500px;}
.xe1{left:318.093000px;}
.x2{left:319.755000px;}
.x9{left:322.297500px;}
.xf1{left:324.042000px;}
.x18{left:325.975500px;}
.x86{left:327.009000px;}
.x60{left:328.513500px;}
.x118{left:330.265500px;}
.x3a{left:331.458000px;}
.xb4{left:332.863500px;}
.x19{left:334.156500px;}
.xb5{left:339.220500px;}
.xa6{left:341.548500px;}
.xb{left:342.555000px;}
.x8b{left:344.386500px;}
.x93{left:345.718500px;}
.x131{left:346.920000px;}
.x4a{left:349.162500px;}
.x34{left:351.160500px;}
.x92{left:353.125500px;}
.xc7{left:354.718500px;}
.x5a{left:356.371500px;}
.x1b{left:358.752000px;}
.x5e{left:360.895500px;}
.x83{left:363.756000px;}
.x79{left:365.353500px;}
.x1c{left:366.934500px;}
.xa9{left:369.057000px;}
.x122{left:370.138500px;}
.x47{left:371.595000px;}
.xd8{left:373.516500px;}
.x51{left:375.351000px;}
.xb6{left:376.755000px;}
.xc2{left:378.295500px;}
.x11d{left:380.119500px;}
.xef{left:381.193500px;}
.x3b{left:382.732500px;}
.xb7{left:385.122000px;}
.xcb{left:386.235000px;}
.xd2{left:387.709500px;}
.xd3{left:389.152500px;}
.x88{left:391.443000px;}
.x64{left:393.466500px;}
.x63{left:394.846500px;}
.x8{left:396.076500px;}
.x76{left:397.240500px;}
.x53{left:399.732000px;}
.xb8{left:400.831500px;}
.x1f{left:402.033000px;}
.x123{left:403.521000px;}
.xed{left:407.248500px;}
.xeb{left:408.967500px;}
.x5b{left:410.260500px;}
.x6{left:413.119500px;}
.xea{left:416.295000px;}
.x11e{left:417.555000px;}
.x16{left:419.268000px;}
.xee{left:421.159500px;}
.x11{left:423.957000px;}
.x3c{left:425.979000px;}
.x17{left:427.449000px;}
.xe6{left:428.526000px;}
.x2d{left:429.582000px;}
.x87{left:431.122500px;}
.xec{left:433.516500px;}
.xe5{left:435.852000px;}
.x77{left:437.560500px;}
.x2e{left:439.621500px;}
.x72{left:442.446000px;}
.x3d{left:444.249000px;}
.x7a{left:445.558500px;}
.xdc{left:446.623500px;}
.x2f{left:447.757500px;}
.x3e{left:450.537000px;}
.xb9{left:451.555500px;}
.xe7{left:453.073500px;}
.x104{left:454.248000px;}
.x7b{left:455.496000px;}
.x30{left:457.797000px;}
.x7c{left:459.331500px;}
.xf4{left:461.197500px;}
.x80{left:463.014000px;}
.x5f{left:464.901000px;}
.x31{left:466.126500px;}
.x10c{left:469.749000px;}
.x4b{left:471.181500px;}
.x75{left:473.560500px;}
.xc8{left:477.312000px;}
.x98{left:478.552500px;}
.x54{left:480.240000px;}
.xd9{left:481.917000px;}
.x6a{left:483.552000px;}
.x73{left:485.371500px;}
.x71{left:489.207000px;}
.xfd{left:492.346500px;}
.x4c{left:493.432500px;}
.x65{left:495.429000px;}
.x105{left:498.007500px;}
.x55{left:500.349000px;}
.x3f{left:501.811500px;}
.x84{left:504.396000px;}
.x85{left:506.125500px;}
.xf0{left:507.702000px;}
.xba{left:509.895000px;}
.x74{left:513.928500px;}
.x6b{left:515.161500px;}
.xa7{left:518.196000px;}
.x5c{left:519.307500px;}
.x7d{left:520.879500px;}
.xf{left:522.541500px;}
.x99{left:523.767000px;}
.x78{left:525.150000px;}
.xfe{left:527.190000px;}
.x10{left:530.724000px;}
.x56{left:532.017000px;}
.x11f{left:534.360000px;}
.x12c{left:536.016000px;}
.xd4{left:537.141000px;}
.xe8{left:539.401500px;}
.x12d{left:540.562500px;}
.xf5{left:544.719000px;}
.x6c{left:546.297000px;}
.x43{left:548.614500px;}
.xd7{left:551.040000px;}
.x124{left:552.199500px;}
.x1d{left:553.476000px;}
.xc9{left:554.826000px;}
.xcc{left:556.389000px;}
.x7e{left:558.360000px;}
.x6d{left:559.509000px;}
.x1e{left:561.658500px;}
.x115{left:563.820000px;}
.xf2{left:564.853500px;}
.x8c{left:565.912500px;}
.xe9{left:567.289500px;}
.x125{left:568.890000px;}
.x44{left:572.598000px;}
.x8d{left:575.874000px;}
.x94{left:580.204500px;}
.x45{left:583.155000px;}
.x106{left:585.103500px;}
.x8e{left:586.236000px;}
.x110{left:587.643000px;}
.x28{left:590.071500px;}
.x35{left:591.120000px;}
.x95{left:592.894500px;}
.x22{left:594.910500px;}
.xdb{left:596.986500px;}
.x36{left:599.256000px;}
.xc5{left:600.574500px;}
.x12e{left:601.954500px;}
.xe2{left:603.333000px;}
.xcd{left:604.776000px;}
.x10d{left:606.537000px;}
.x29{left:608.082000px;}
.x23{left:609.811500px;}
.xd5{left:611.100000px;}
.x132{left:613.975500px;}
.x46{left:615.285000px;}
.x6e{left:617.365500px;}
.xe3{left:618.603000px;}
.xf6{left:619.734000px;}
.x107{left:623.587500px;}
.xff{left:628.278000px;}
.x126{left:633.403500px;}
.xaa{left:638.739000px;}
.x100{left:641.161500px;}
.xc0{left:644.500500px;}
.xf3{left:652.012500px;}
.x127{left:654.397500px;}
.x133{left:655.797000px;}
.xce{left:657.441000px;}
.xe4{left:659.454000px;}
.x10e{left:662.155500px;}
.x6f{left:664.102500px;}
.xf7{left:665.250000px;}
.x4d{left:666.762000px;}
.x61{left:669.249000px;}
.x10f{left:671.268000px;}
.x11c{left:674.671500px;}
.x12f{left:675.999000px;}
.x2a{left:677.845500px;}
.x4e{left:679.902000px;}
.x128{left:680.971500px;}
.x62{left:682.104000px;}
.x108{left:684.331500px;}
.xf8{left:686.799000px;}
.x111{left:688.230000px;}
.x8f{left:692.475000px;}
.x2b{left:694.441500px;}
.x109{left:698.292000px;}
.xf9{left:701.772000px;}
.x90{left:705.165000px;}
.x134{left:707.022000px;}
.x70{left:709.347000px;}
.x4f{left:710.742000px;}
.x120{left:713.568000px;}
.x121{left:718.113000px;}
.xca{left:719.482500px;}
.x136{left:721.201500px;}
.xfa{left:723.190500px;}
.x50{left:725.097000px;}
.x112{left:726.942000px;}
.xfb{left:728.616000px;}
.x113{left:730.081500px;}
.x57{left:731.992500px;}
.x114{left:734.626500px;}
.x10a{left:737.691000px;}
.xbb{left:739.731000px;}
.xfc{left:742.183500px;}
.x135{left:743.869500px;}
.x58{left:745.593000px;}
.x137{left:746.979000px;}
.xbc{left:748.098000px;}
.xdd{left:749.152500px;}
.xe0{left:751.480500px;}
.xbd{left:754.455000px;}
.x9f{left:759.438000px;}
.xde{left:760.987500px;}
.xbe{left:763.807500px;}
.x66{left:767.619000px;}
.x119{left:774.459000px;}
.x59{left:777.262500px;}
.x11a{left:779.005500px;}
.xdf{left:782.292000px;}
@media print{
.v21{vertical-align:-15.941333pt;}
.v2c{vertical-align:-14.698667pt;}
.v2{vertical-align:-8.725333pt;}
.v9{vertical-align:-5.904000pt;}
.v0{vertical-align:0.000000pt;}
.v26{vertical-align:5.658667pt;}
.v6{vertical-align:12.101333pt;}
.vd{vertical-align:15.002667pt;}
.v18{vertical-align:16.805333pt;}
.ve{vertical-align:17.733333pt;}
.vb{vertical-align:20.064000pt;}
.v7{vertical-align:21.290667pt;}
.v5{vertical-align:22.906667pt;}
.v15{vertical-align:24.021333pt;}
.v3{vertical-align:26.810667pt;}
.v1{vertical-align:27.765333pt;}
.v17{vertical-align:31.184000pt;}
.v13{vertical-align:37.797333pt;}
.v11{vertical-align:39.024000pt;}
.v1e{vertical-align:40.837333pt;}
.vc{vertical-align:42.970667pt;}
.v8{vertical-align:44.197333pt;}
.v20{vertical-align:46.816000pt;}
.v28{vertical-align:56.762667pt;}
.v12{vertical-align:58.698667pt;}
.v10{vertical-align:59.930667pt;}
.v2b{vertical-align:63.930667pt;}
.v2d{vertical-align:65.605333pt;}
.v27{vertical-align:70.544000pt;}
.v14{vertical-align:73.584000pt;}
.v24{vertical-align:76.181333pt;}
.v16{vertical-align:79.269333pt;}
.va{vertical-align:80.304000pt;}
.vf{vertical-align:81.536000pt;}
.v1d{vertical-align:92.117333pt;}
.v1a{vertical-align:96.666667pt;}
.v23{vertical-align:102.848000pt;}
.v1c{vertical-align:103.909333pt;}
.v29{vertical-align:107.392000pt;}
.v19{vertical-align:113.493333pt;}
.v22{vertical-align:116.090667pt;}
.v2a{vertical-align:117.328000pt;}
.v1b{vertical-align:120.736000pt;}
.v25{vertical-align:132.032000pt;}
.v1f{vertical-align:138.933333pt;}
.v4{vertical-align:139.941333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls5d{letter-spacing:0.000210pt;}
.lse8{letter-spacing:0.000325pt;}
.ls105{letter-spacing:0.000364pt;}
.ls7a{letter-spacing:0.000395pt;}
.lsf0{letter-spacing:0.000438pt;}
.ls36{letter-spacing:0.000491pt;}
.lsa0{letter-spacing:0.000829pt;}
.lsd0{letter-spacing:0.000887pt;}
.lsb8{letter-spacing:0.000933pt;}
.lsa4{letter-spacing:0.000939pt;}
.ls37{letter-spacing:0.000942pt;}
.ls14{letter-spacing:0.001416pt;}
.lsc0{letter-spacing:0.001420pt;}
.ls2{letter-spacing:0.001421pt;}
.lsb1{letter-spacing:0.001788pt;}
.lsca{letter-spacing:0.001876pt;}
.lsd8{letter-spacing:0.001908pt;}
.ls45{letter-spacing:0.002378pt;}
.lsa5{letter-spacing:0.002399pt;}
.ls10{letter-spacing:0.002405pt;}
.ls6c{letter-spacing:0.002827pt;}
.lsf{letter-spacing:0.002881pt;}
.ls7b{letter-spacing:0.003238pt;}
.lsc3{letter-spacing:0.003251pt;}
.lscf{letter-spacing:0.003793pt;}
.lsdb{letter-spacing:0.003822pt;}
.ls5a{letter-spacing:0.003851pt;}
.ls109{letter-spacing:0.003854pt;}
.ls13{letter-spacing:0.003856pt;}
.lsce{letter-spacing:0.004276pt;}
.lscd{letter-spacing:0.004316pt;}
.ls15{letter-spacing:0.004592pt;}
.lsbc{letter-spacing:0.004811pt;}
.lsa2{letter-spacing:0.005220pt;}
.ls69{letter-spacing:0.005308pt;}
.lsf1{letter-spacing:0.005771pt;}
.lse3{letter-spacing:0.006750pt;}
.ls29{letter-spacing:0.007191pt;}
.lsf2{letter-spacing:0.007619pt;}
.ls6f{letter-spacing:0.008062pt;}
.ls10b{letter-spacing:0.010005pt;}
.lsb2{letter-spacing:0.010113pt;}
.lsa7{letter-spacing:0.010547pt;}
.ls7e{letter-spacing:0.010548pt;}
.lsf5{letter-spacing:0.010551pt;}
.lsbe{letter-spacing:0.010568pt;}
.lsf3{letter-spacing:0.010582pt;}
.lsf6{letter-spacing:0.010594pt;}
.lsf7{letter-spacing:0.011078pt;}
.ls5f{letter-spacing:0.011991pt;}
.ls78{letter-spacing:0.012020pt;}
.ls75{letter-spacing:0.012524pt;}
.lsb3{letter-spacing:0.012548pt;}
.ls10a{letter-spacing:0.013919pt;}
.ls2e{letter-spacing:0.014418pt;}
.ls76{letter-spacing:0.014924pt;}
.lsb4{letter-spacing:0.014928pt;}
.ls2f{letter-spacing:0.015458pt;}
.ls7d{letter-spacing:0.015881pt;}
.lsfc{letter-spacing:0.015916pt;}
.lsfd{letter-spacing:0.016411pt;}
.ls61{letter-spacing:0.016729pt;}
.lsa8{letter-spacing:0.017171pt;}
.ls79{letter-spacing:0.017354pt;}
.ls87{letter-spacing:0.017658pt;}
.lse0{letter-spacing:0.017853pt;}
.ls85{letter-spacing:0.018625pt;}
.ls9d{letter-spacing:0.018733pt;}
.ls7c{letter-spacing:0.018815pt;}
.ls10d{letter-spacing:0.019253pt;}
.lsdf{letter-spacing:0.020716pt;}
.lsa1{letter-spacing:0.021207pt;}
.ls82{letter-spacing:0.022504pt;}
.lsaa{letter-spacing:0.022991pt;}
.ls9f{letter-spacing:0.023137pt;}
.lsa9{letter-spacing:0.023959pt;}
.ls9e{letter-spacing:0.026540pt;}
.ls5b{letter-spacing:0.026920pt;}
.lsa{letter-spacing:0.026962pt;}
.ls38{letter-spacing:0.268405pt;}
.ls9{letter-spacing:0.290909pt;}
.ls54{letter-spacing:0.399016pt;}
.lsd5{letter-spacing:0.446509pt;}
.lsac{letter-spacing:0.451343pt;}
.lsad{letter-spacing:1.563602pt;}
.lsf9{letter-spacing:1.785302pt;}
.lsd4{letter-spacing:2.085788pt;}
.ls5{letter-spacing:2.094547pt;}
.lsd2{letter-spacing:2.096791pt;}
.lse6{letter-spacing:2.465418pt;}
.ls3b{letter-spacing:2.507387pt;}
.ls34{letter-spacing:2.510103pt;}
.ls41{letter-spacing:2.512720pt;}
.ls4{letter-spacing:2.560002pt;}
.lsdc{letter-spacing:2.650641pt;}
.ls23{letter-spacing:2.653258pt;}
.ls0{letter-spacing:2.654400pt;}
.lse4{letter-spacing:2.655975pt;}
.lsb{letter-spacing:2.656444pt;}
.ls35{letter-spacing:2.656473pt;}
.lsa3{letter-spacing:2.657146pt;}
.ls2a{letter-spacing:2.658591pt;}
.ls86{letter-spacing:2.659733pt;}
.ls7f{letter-spacing:2.673433pt;}
.ls52{letter-spacing:2.676366pt;}
.ls1b{letter-spacing:2.762968pt;}
.ls18{letter-spacing:2.779797pt;}
.ls47{letter-spacing:3.233914pt;}
.lsc{letter-spacing:3.910514pt;}
.ls9c{letter-spacing:4.305458pt;}
.ls4f{letter-spacing:4.538186pt;}
.lsd6{letter-spacing:4.564323pt;}
.lse7{letter-spacing:5.105323pt;}
.lsbd{letter-spacing:6.337421pt;}
.ls83{letter-spacing:6.341823pt;}
.lsb7{letter-spacing:6.342755pt;}
.ls28{letter-spacing:6.375121pt;}
.lsc8{letter-spacing:6.375733pt;}
.ls6b{letter-spacing:6.376161pt;}
.ls3a{letter-spacing:6.380455pt;}
.ls1c{letter-spacing:6.390137pt;}
.ls97{letter-spacing:6.825175pt;}
.lse9{letter-spacing:7.161919pt;}
.lsae{letter-spacing:8.002591pt;}
.lse1{letter-spacing:8.078517pt;}
.lscb{letter-spacing:8.082378pt;}
.lsdd{letter-spacing:8.083850pt;}
.ls88{letter-spacing:8.087279pt;}
.lscc{letter-spacing:8.087712pt;}
.ls95{letter-spacing:8.886755pt;}
.ls1e{letter-spacing:9.029806pt;}
.lsc9{letter-spacing:9.287733pt;}
.lsc4{letter-spacing:9.693504pt;}
.lsba{letter-spacing:9.693918pt;}
.lsb6{letter-spacing:9.695477pt;}
.ls6e{letter-spacing:9.696690pt;}
.lsb5{letter-spacing:9.697788pt;}
.lsf8{letter-spacing:9.698405pt;}
.ls55{letter-spacing:9.700349pt;}
.lsaf{letter-spacing:9.704707pt;}
.ls7{letter-spacing:9.716372pt;}
.ls81{letter-spacing:12.349258pt;}
.ls6a{letter-spacing:12.351321pt;}
.ls84{letter-spacing:12.354591pt;}
.ls21{letter-spacing:12.916374pt;}
.lsc6{letter-spacing:12.925918pt;}
.ls6d{letter-spacing:12.927477pt;}
.lsc2{letter-spacing:12.931251pt;}
.lsbf{letter-spacing:12.931851pt;}
.ls9b{letter-spacing:12.974556pt;}
.lsc1{letter-spacing:14.157258pt;}
.lsc5{letter-spacing:14.162591pt;}
.ls98{letter-spacing:15.010922pt;}
.ls48{letter-spacing:15.175925pt;}
.lsed{letter-spacing:15.476377pt;}
.ls20{letter-spacing:15.581258pt;}
.lsde{letter-spacing:15.583975pt;}
.ls77{letter-spacing:15.586591pt;}
.ls92{letter-spacing:15.997258pt;}
.ls4c{letter-spacing:16.071733pt;}
.ls99{letter-spacing:16.116377pt;}
.lsd7{letter-spacing:16.139547pt;}
.ls5c{letter-spacing:16.144828pt;}
.lsd9{letter-spacing:16.145817pt;}
.ls58{letter-spacing:16.145850pt;}
.ls43{letter-spacing:16.147319pt;}
.ls59{letter-spacing:16.159872pt;}
.ls72{letter-spacing:16.164811pt;}
.ls6{letter-spacing:16.174559pt;}
.ls27{letter-spacing:16.337739pt;}
.lsff{letter-spacing:16.872741pt;}
.lse5{letter-spacing:17.745469pt;}
.ls11{letter-spacing:18.622379pt;}
.lsd{letter-spacing:18.627713pt;}
.ls32{letter-spacing:18.813258pt;}
.ls71{letter-spacing:18.815321pt;}
.ls22{letter-spacing:18.816444pt;}
.ls24{letter-spacing:18.818591pt;}
.ls3e{letter-spacing:18.850925pt;}
.ls108{letter-spacing:19.025470pt;}
.ls100{letter-spacing:19.258198pt;}
.lsc7{letter-spacing:19.300811pt;}
.ls3d{letter-spacing:19.306144pt;}
.ls39{letter-spacing:19.371139pt;}
.ls2b{letter-spacing:19.374562pt;}
.ls89{letter-spacing:19.432743pt;}
.ls4a{letter-spacing:19.490925pt;}
.ls3{letter-spacing:19.607289pt;}
.lsf4{letter-spacing:19.840017pt;}
.ls1f{letter-spacing:20.070514pt;}
.lsfb{letter-spacing:20.111012pt;}
.lsfe{letter-spacing:20.116345pt;}
.lsd3{letter-spacing:20.712745pt;}
.ls80{letter-spacing:21.003654pt;}
.lseb{letter-spacing:21.265323pt;}
.ls10c{letter-spacing:22.045258pt;}
.ls70{letter-spacing:22.047321pt;}
.ls30{letter-spacing:22.050591pt;}
.lsa6{letter-spacing:22.051733pt;}
.ls102{letter-spacing:22.066591pt;}
.ls31{letter-spacing:22.109109pt;}
.ls57{letter-spacing:22.516382pt;}
.ls94{letter-spacing:22.520128pt;}
.ls65{letter-spacing:22.520156pt;}
.ls3f{letter-spacing:22.520653pt;}
.ls8a{letter-spacing:22.524017pt;}
.ls8e{letter-spacing:22.524516pt;}
.ls25{letter-spacing:22.532811pt;}
.ls33{letter-spacing:22.538144pt;}
.ls8c{letter-spacing:22.539061pt;}
.ls2c{letter-spacing:22.557497pt;}
.ls9a{letter-spacing:22.558448pt;}
.ls4b{letter-spacing:22.559431pt;}
.ls73{letter-spacing:22.749110pt;}
.ls67{letter-spacing:23.609490pt;}
.ls4d{letter-spacing:23.614824pt;}
.ls104{letter-spacing:23.666591pt;}
.ls66{letter-spacing:23.842400pt;}
.ls64{letter-spacing:24.261838pt;}
.ls103{letter-spacing:24.365258pt;}
.ls106{letter-spacing:24.615925pt;}
.ls50{letter-spacing:25.086379pt;}
.ls2d{letter-spacing:25.156811pt;}
.ls19{letter-spacing:25.195139pt;}
.ls90{letter-spacing:25.717200pt;}
.lsbb{letter-spacing:25.832749pt;}
.lsb9{letter-spacing:25.890931pt;}
.ls93{letter-spacing:26.498591pt;}
.ls101{letter-spacing:26.525258pt;}
.ls46{letter-spacing:27.071477pt;}
.ls63{letter-spacing:27.461841pt;}
.ls40{letter-spacing:28.055072pt;}
.ls96{letter-spacing:28.074072pt;}
.ls26{letter-spacing:28.383477pt;}
.ls91{letter-spacing:28.848942pt;}
.ls51{letter-spacing:29.090933pt;}
.ls44{letter-spacing:29.988157pt;}
.lsfa{letter-spacing:35.340766pt;}
.lsd1{letter-spacing:35.451063pt;}
.lsb0{letter-spacing:35.965258pt;}
.ls42{letter-spacing:36.442144pt;}
.ls3c{letter-spacing:37.147139pt;}
.ls107{letter-spacing:38.807305pt;}
.ls74{letter-spacing:44.098591pt;}
.ls68{letter-spacing:44.103925pt;}
.ls1d{letter-spacing:44.719477pt;}
.ls4e{letter-spacing:44.855219pt;}
.ls8f{letter-spacing:51.904942pt;}
.ls8d{letter-spacing:52.304942pt;}
.ls8b{letter-spacing:55.278509pt;}
.lsee{letter-spacing:56.739342pt;}
.ls17{letter-spacing:57.215477pt;}
.lsab{letter-spacing:68.327733pt;}
.ls1a{letter-spacing:74.996811pt;}
.ls60{letter-spacing:82.385523pt;}
.ls10e{letter-spacing:87.040073pt;}
.ls5e{letter-spacing:92.858259pt;}
.lsda{letter-spacing:516.305885pt;}
.lse2{letter-spacing:529.047714pt;}
.ls62{letter-spacing:576.000480pt;}
.ls53{letter-spacing:705.164224pt;}
.ls49{letter-spacing:820.713411pt;}
.ls16{letter-spacing:821.586139pt;}
.lse{letter-spacing:875.753457pt;}
.lsef{letter-spacing:882.851645pt;}
.ls12{letter-spacing:889.077105pt;}
.ls56{letter-spacing:917.237128pt;}
.lsea{letter-spacing:924.917134pt;}
.ls8{letter-spacing:961.513529pt;}
.lsec{letter-spacing:978.677179pt;}
.ws68{word-spacing:-58.181867pt;}
.ws7b{word-spacing:-42.066082pt;}
.ws4b{word-spacing:-37.899668pt;}
.wsd0{word-spacing:-32.337481pt;}
.wsb3{word-spacing:-29.736752pt;}
.ws51{word-spacing:-29.521250pt;}
.ws4c{word-spacing:-29.090933pt;}
.ws9a{word-spacing:-29.079297pt;}
.ws50{word-spacing:-28.183296pt;}
.ws8f{word-spacing:-28.171747pt;}
.ws90{word-spacing:-26.963006pt;}
.ws8d{word-spacing:-26.957673pt;}
.ws8a{word-spacing:-24.983294pt;}
.ws92{word-spacing:-24.967817pt;}
.ws80{word-spacing:-22.306928pt;}
.wsc5{word-spacing:-21.783291pt;}
.ws86{word-spacing:-21.725109pt;}
.wsdc{word-spacing:-21.317836pt;}
.wse0{word-spacing:-21.259654pt;}
.ws0{word-spacing:-20.662500pt;}
.ws84{word-spacing:-17.186923pt;}
.ws52{word-spacing:-16.162923pt;}
.wsd2{word-spacing:-15.441467pt;}
.ws83{word-spacing:-15.383286pt;}
.wscf{word-spacing:-14.429103pt;}
.ws11{word-spacing:-14.346200pt;}
.wsbf{word-spacing:-14.138194pt;}
.ws93{word-spacing:-14.035006pt;}
.ws91{word-spacing:-14.029673pt;}
.wsa0{word-spacing:-13.932673pt;}
.ws9f{word-spacing:-13.927339pt;}
.ws71{word-spacing:-13.637830pt;}
.wsc3{word-spacing:-13.614557pt;}
.wsfc{word-spacing:-13.440011pt;}
.ws5c{word-spacing:-12.683647pt;}
.ws99{word-spacing:-12.625465pt;}
.wsfd{word-spacing:-12.282192pt;}
.ws18{word-spacing:-12.218192pt;}
.wsf2{word-spacing:-11.927283pt;}
.ws9c{word-spacing:-11.403646pt;}
.ws9d{word-spacing:-11.345464pt;}
.ws17{word-spacing:-10.996373pt;}
.ws53{word-spacing:-10.938191pt;}
.wsf3{word-spacing:-10.885827pt;}
.ws26{word-spacing:-10.880009pt;}
.ws9b{word-spacing:-10.845100pt;}
.ws29{word-spacing:-10.821827pt;}
.ws2d{word-spacing:-10.705463pt;}
.ws8b{word-spacing:-10.702804pt;}
.wsa1{word-spacing:-10.697550pt;}
.wsa2{word-spacing:-10.692217pt;}
.wsee{word-spacing:-10.414554pt;}
.ws5e{word-spacing:-10.379645pt;}
.ws20{word-spacing:-10.240009pt;}
.ws3b{word-spacing:-10.181827pt;}
.ws14{word-spacing:-10.123645pt;}
.ws23{word-spacing:-10.065463pt;}
.ws10{word-spacing:-10.007281pt;}
.ws2a{word-spacing:-9.949099pt;}
.ws27{word-spacing:-9.896736pt;}
.ws2e{word-spacing:-9.890917pt;}
.ws12{word-spacing:-9.832735pt;}
.ws15{word-spacing:-9.774554pt;}
.ws4{word-spacing:-9.716372pt;}
.ws1e{word-spacing:-9.658190pt;}
.ws3d{word-spacing:-9.600008pt;}
.ws7c{word-spacing:-9.573411pt;}
.ws1b{word-spacing:-9.541826pt;}
.wsef{word-spacing:-9.489462pt;}
.ws49{word-spacing:-9.483644pt;}
.ws5d{word-spacing:-9.450292pt;}
.ws3c{word-spacing:-9.431281pt;}
.wsb5{word-spacing:-9.425462pt;}
.ws1a{word-spacing:-9.367281pt;}
.ws21{word-spacing:-9.314917pt;}
.ws19{word-spacing:-9.309099pt;}
.ws4d{word-spacing:-9.250917pt;}
.ws2b{word-spacing:-9.198553pt;}
.ws44{word-spacing:-9.192735pt;}
.wsf1{word-spacing:-9.082189pt;}
.wsea{word-spacing:-9.024008pt;}
.ws8{word-spacing:-8.979623pt;}
.wsdd{word-spacing:-8.965826pt;}
.ws9e{word-spacing:-8.960007pt;}
.wsce{word-spacing:-8.925098pt;}
.wsd6{word-spacing:-8.907644pt;}
.ws94{word-spacing:-8.899006pt;}
.ws6{word-spacing:-8.873356pt;}
.ws37{word-spacing:-8.843644pt;}
.ws82{word-spacing:-8.809257pt;}
.ws4a{word-spacing:-8.808735pt;}
.ws100{word-spacing:-8.791280pt;}
.ws4f{word-spacing:-8.785462pt;}
.ws7{word-spacing:-8.767088pt;}
.ws88{word-spacing:-8.750553pt;}
.wse9{word-spacing:-8.733098pt;}
.ws3a{word-spacing:-8.727280pt;}
.wsc{word-spacing:-8.660820pt;}
.wsc8{word-spacing:-8.610916pt;}
.ws62{word-spacing:-8.566035pt;}
.wsed{word-spacing:-8.558553pt;}
.wsb2{word-spacing:-8.552734pt;}
.wscd{word-spacing:-8.517825pt;}
.wsd{word-spacing:-8.501419pt;}
.wsb4{word-spacing:-8.500371pt;}
.wsaf{word-spacing:-8.494553pt;}
.wscc{word-spacing:-8.459643pt;}
.ws16{word-spacing:-8.436371pt;}
.ws81{word-spacing:-8.401462pt;}
.wsf6{word-spacing:-8.325825pt;}
.wsd9{word-spacing:-8.320007pt;}
.ws85{word-spacing:-8.254782pt;}
.ws38{word-spacing:-8.209461pt;}
.wsb8{word-spacing:-8.145461pt;}
.ws1d{word-spacing:-8.134795pt;}
.wsb0{word-spacing:-8.087279pt;}
.wsd3{word-spacing:-8.029098pt;}
.wseb{word-spacing:-7.802188pt;}
.wsaa{word-spacing:-7.796370pt;}
.ws9{word-spacing:-7.651277pt;}
.ws65{word-spacing:-7.621825pt;}
.wsa{word-spacing:-7.598143pt;}
.wsb1{word-spacing:-7.563643pt;}
.ws95{word-spacing:-7.476137pt;}
.wsac{word-spacing:-7.389097pt;}
.ws24{word-spacing:-7.330915pt;}
.wscb{word-spacing:-7.296006pt;}
.wsad{word-spacing:-7.214551pt;}
.wsfe{word-spacing:-7.156370pt;}
.ws32{word-spacing:-7.098188pt;}
.wsdb{word-spacing:-7.005097pt;}
.ws1f{word-spacing:-6.981824pt;}
.wsb{word-spacing:-6.960537pt;}
.wsfa{word-spacing:-6.807278pt;}
.wsd5{word-spacing:-6.714187pt;}
.ws61{word-spacing:-6.704607pt;}
.wsf5{word-spacing:-6.690915pt;}
.wsff{word-spacing:-6.638551pt;}
.ws45{word-spacing:-6.574551pt;}
.wsab{word-spacing:-6.481460pt;}
.wsf8{word-spacing:-6.458187pt;}
.wsfb{word-spacing:-6.347642pt;}
.wsa7{word-spacing:-6.341823pt;}
.ws33{word-spacing:-6.283642pt;}
.ws64{word-spacing:-6.248732pt;}
.wsf4{word-spacing:-6.231278pt;}
.ws46{word-spacing:-6.225460pt;}
.wsf7{word-spacing:-5.998550pt;}
.ws3e{word-spacing:-5.992732pt;}
.ws34{word-spacing:-5.882187pt;}
.wsa9{word-spacing:-5.876369pt;}
.ws31{word-spacing:-5.701823pt;}
.ws3f{word-spacing:-5.533096pt;}
.ws36{word-spacing:-5.527277pt;}
.ws13{word-spacing:-5.469095pt;}
.wse{word-spacing:-5.419654pt;}
.wsa6{word-spacing:-5.410914pt;}
.wsa4{word-spacing:-5.236368pt;}
.ws2f{word-spacing:-5.120004pt;}
.wsa8{word-spacing:-5.026913pt;}
.ws96{word-spacing:-4.770913pt;}
.wsd1{word-spacing:-4.596367pt;}
.wsa3{word-spacing:-4.328731pt;}
.ws41{word-spacing:-4.247276pt;}
.ws42{word-spacing:-3.962185pt;}
.ws30{word-spacing:-3.723639pt;}
.ws22{word-spacing:-3.607276pt;}
.ws2c{word-spacing:-3.549094pt;}
.ws97{word-spacing:-3.397821pt;}
.ws25{word-spacing:-3.316366pt;}
.ws7f{word-spacing:-3.246548pt;}
.ws28{word-spacing:-3.200003pt;}
.ws48{word-spacing:-2.792730pt;}
.wsbc{word-spacing:-1.920002pt;}
.wsc4{word-spacing:-0.686546pt;}
.wsc7{word-spacing:-0.279273pt;}
.wsc1{word-spacing:-0.221091pt;}
.ws39{word-spacing:-0.116364pt;}
.ws3{word-spacing:-0.063761pt;}
.ws4e{word-spacing:-0.046545pt;}
.ws5b{word-spacing:-0.042507pt;}
.ws55{word-spacing:-0.020009pt;}
.ws1c{word-spacing:0.000000pt;}
.ws6a{word-spacing:0.007641pt;}
.ws54{word-spacing:0.011636pt;}
.ws87{word-spacing:0.069818pt;}
.ws98{word-spacing:0.186182pt;}
.wsc0{word-spacing:0.302546pt;}
.ws7e{word-spacing:0.907637pt;}
.wsb7{word-spacing:1.815274pt;}
.wsca{word-spacing:2.106184pt;}
.ws66{word-spacing:2.169124pt;}
.wsae{word-spacing:2.338911pt;}
.wsda{word-spacing:2.629820pt;}
.wsc6{word-spacing:2.862548pt;}
.wsc2{word-spacing:2.920730pt;}
.wsd4{word-spacing:3.095275pt;}
.ws89{word-spacing:3.153457pt;}
.wsbe{word-spacing:3.211639pt;}
.wsb6{word-spacing:3.269821pt;}
.ws60{word-spacing:3.422655pt;}
.wsc9{word-spacing:4.317095pt;}
.ws5f{word-spacing:6.228726pt;}
.ws35{word-spacing:7.621825pt;}
.ws40{word-spacing:8.494553pt;}
.wsa5{word-spacing:9.425462pt;}
.wsba{word-spacing:9.611644pt;}
.wsb9{word-spacing:10.949827pt;}
.wsbd{word-spacing:11.008009pt;}
.ws8c{word-spacing:12.304009pt;}
.ws8e{word-spacing:12.309342pt;}
.wsbb{word-spacing:13.277102pt;}
.ws43{word-spacing:13.789102pt;}
.ws5a{word-spacing:18.768009pt;}
.wsec{word-spacing:19.316380pt;}
.wsf0{word-spacing:19.374562pt;}
.ws67{word-spacing:20.344160pt;}
.ws2{word-spacing:20.913630pt;}
.ws5{word-spacing:22.225473pt;}
.wsf9{word-spacing:22.632746pt;}
.ws1{word-spacing:24.866747pt;}
.wsf{word-spacing:25.425476pt;}
.ws6c{word-spacing:28.194933pt;}
.ws59{word-spacing:29.090933pt;}
.ws6b{word-spacing:30.056752pt;}
.wsd8{word-spacing:34.676393pt;}
.wsdf{word-spacing:36.793628pt;}
.wse2{word-spacing:43.038600pt;}
.wse5{word-spacing:47.604403pt;}
.wse6{word-spacing:52.840771pt;}
.wse7{word-spacing:55.014294pt;}
.ws56{word-spacing:55.744009pt;}
.wse8{word-spacing:58.135321pt;}
.ws77{word-spacing:61.530675pt;}
.ws70{word-spacing:63.255325pt;}
.wsd7{word-spacing:63.767326pt;}
.ws6e{word-spacing:66.222601pt;}
.ws79{word-spacing:69.073512pt;}
.ws58{word-spacing:69.306240pt;}
.ws73{word-spacing:73.786243pt;}
.ws74{word-spacing:76.752009pt;}
.ws6f{word-spacing:82.080009pt;}
.ws76{word-spacing:84.317161pt;}
.ws6d{word-spacing:84.970675pt;}
.ws78{word-spacing:87.866675pt;}
.ws57{word-spacing:88.106675pt;}
.ws72{word-spacing:92.586675pt;}
.ws7a{word-spacing:95.477342pt;}
.ws75{word-spacing:103.088009pt;}
.wsde{word-spacing:262.149050pt;}
.ws7d{word-spacing:335.162461pt;}
.wse3{word-spacing:374.673319pt;}
.ws47{word-spacing:403.790678pt;}
.ws63{word-spacing:622.057246pt;}
.ws69{word-spacing:650.159087pt;}
.wse1{word-spacing:889.079115pt;}
.wse4{word-spacing:941.996448pt;}
._1f{margin-left:-34.385483pt;}
._25{margin-left:-15.960159pt;}
._3{margin-left:-5.228407pt;}
._1{margin-left:-3.416200pt;}
._2{margin-left:-1.785310pt;}
._13{margin-left:-0.891056pt;}
._4{width:1.629092pt;}
._0{width:3.416200pt;}
._19{width:5.104957pt;}
._20{width:6.391702pt;}
._1a{width:8.055628pt;}
._21{width:9.670364pt;}
._3f{width:16.581832pt;}
._3d{width:18.368940pt;}
._15{width:19.301250pt;}
._f{width:20.290341pt;}
._24{width:22.114105pt;}
._6{width:23.014431pt;}
._a{width:24.399095pt;}
._5{width:25.890931pt;}
._8{width:27.318274pt;}
._7{width:28.543537pt;}
._9{width:29.472277pt;}
._d{width:30.643516pt;}
._23{width:31.672461pt;}
._10{width:33.629119pt;}
._e{width:34.676393pt;}
._16{width:36.112611pt;}
._14{width:37.085173pt;}
._c{width:39.487159pt;}
._12{width:45.094145pt;}
._11{width:46.188442pt;}
._22{width:49.861860pt;}
._28{width:63.339159pt;}
._33{width:65.877100pt;}
._2c{width:67.734745pt;}
._2e{width:69.585513pt;}
._38{width:78.640990pt;}
._39{width:81.247572pt;}
._b{width:86.077200pt;}
._3c{width:87.563709pt;}
._30{width:92.509168pt;}
._3b{width:94.487351pt;}
._2d{width:96.232807pt;}
._1c{width:105.832815pt;}
._1b{width:111.592820pt;}
._32{width:114.676459pt;}
._17{width:117.876462pt;}
._29{width:121.949193pt;}
._1d{width:126.836469pt;}
._3a{width:136.822857pt;}
._37{width:137.737372pt;}
._26{width:171.054688pt;}
._34{width:194.676526pt;}
._35{width:200.818303pt;}
._2f{width:213.003814pt;}
._2b{width:215.293800pt;}
._2a{width:248.243697pt;}
._27{width:278.342050pt;}
._36{width:329.600275pt;}
._3e{width:405.924812pt;}
._18{width:435.015746pt;}
._31{width:484.572434pt;}
._1e{width:921.966389pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:54.637333pt;}
.y67{bottom:93.756000pt;}
.y25{bottom:94.488000pt;}
.y181{bottom:100.605333pt;}
.y64{bottom:111.550667pt;}
.y66{bottom:115.669333pt;}
.y24{bottom:116.401333pt;}
.y61{bottom:116.416000pt;}
.y63{bottom:120.052000pt;}
.y180{bottom:122.518667pt;}
.y62{bottom:128.022667pt;}
.y65{bottom:137.582667pt;}
.yb7{bottom:137.584000pt;}
.y23{bottom:138.314667pt;}
.y17f{bottom:139.416000pt;}
.yf8{bottom:142.857333pt;}
.y17d{bottom:144.432000pt;}
.y132{bottom:149.356000pt;}
.y17e{bottom:150.158667pt;}
.y68{bottom:151.401333pt;}
.y22{bottom:160.229333pt;}
.y17c{bottom:166.345333pt;}
.yb6{bottom:171.974667pt;}
.y1f0{bottom:172.718667pt;}
.y60{bottom:176.164000pt;}
.y1d3{bottom:176.801333pt;}
.y21{bottom:182.142667pt;}
.yf7{bottom:182.494667pt;}
.y17b{bottom:183.242667pt;}
.y179{bottom:188.258667pt;}
.y17a{bottom:193.985333pt;}
.y1ef{bottom:194.632000pt;}
.y5f{bottom:198.078667pt;}
.y130{bottom:198.245333pt;}
.yb5{bottom:200.370667pt;}
.y20{bottom:204.056000pt;}
.y178{bottom:205.156000pt;}
.y176{bottom:210.172000pt;}
.y1a9{bottom:210.625333pt;}
.yb4{bottom:212.074667pt;}
.y177{bottom:215.900000pt;}
.y12d{bottom:216.040000pt;}
.y1ee{bottom:216.545333pt;}
.y1ac{bottom:219.657333pt;}
.y5e{bottom:219.992000pt;}
.y12f{bottom:220.158667pt;}
.y12a{bottom:220.905333pt;}
.yf6{bottom:222.133333pt;}
.y12c{bottom:224.541333pt;}
.y1f{bottom:225.969333pt;}
.y1a8{bottom:228.690667pt;}
.y1d2{bottom:231.857333pt;}
.y175{bottom:232.085333pt;}
.y12b{bottom:232.512000pt;}
.y1ab{bottom:237.722667pt;}
.yf5{bottom:239.030667pt;}
.y12e{bottom:242.072000pt;}
.yf3{bottom:244.046667pt;}
.y1a7{bottom:246.756000pt;}
.y1e{bottom:247.882667pt;}
.y174{bottom:248.984000pt;}
.y1d1{bottom:249.922667pt;}
.y1ed{bottom:250.949333pt;}
.yf4{bottom:251.136000pt;}
.y5d{bottom:252.378667pt;}
.yb3{bottom:253.062667pt;}
.y172{bottom:254.000000pt;}
.y1aa{bottom:255.789333pt;}
.y131{bottom:255.890667pt;}
.y4a{bottom:258.121333pt;}
.y129{bottom:258.740000pt;}
.y173{bottom:259.726667pt;}
.y1a6{bottom:264.821333pt;}
.y1d0{bottom:267.988000pt;}
.y1d{bottom:269.796000pt;}
.y171{bottom:270.897333pt;}
.y1ec{bottom:272.862667pt;}
.yf2{bottom:272.974667pt;}
.y5c{bottom:274.292000pt;}
.yb2{bottom:274.976000pt;}
.y16f{bottom:275.913333pt;}
.y49{bottom:280.034667pt;}
.y128{bottom:280.653333pt;}
.y170{bottom:281.640000pt;}
.yf1{bottom:282.952000pt;}
.y1cf{bottom:286.054667pt;}
.y1c{bottom:291.709333pt;}
.y16e{bottom:292.810667pt;}
.y1eb{bottom:294.776000pt;}
.y5b{bottom:296.205333pt;}
.y16c{bottom:297.826667pt;}
.y48{bottom:301.948000pt;}
.yb1{bottom:302.825333pt;}
.y16d{bottom:303.553333pt;}
.y1ce{bottom:304.120000pt;}
.yb0{bottom:304.636000pt;}
.y127{bottom:313.040000pt;}
.y1b{bottom:313.622667pt;}
.yaf{bottom:314.613333pt;}
.y5a{bottom:318.118667pt;}
.yf0{bottom:321.945333pt;}
.y1cd{bottom:322.717333pt;}
.y47{bottom:323.862667pt;}
.y15f{bottom:326.037333pt;}
.y1ea{bottom:329.180000pt;}
.y15e{bottom:331.053333pt;}
.yef{bottom:331.922667pt;}
.y126{bottom:334.953333pt;}
.y16a{bottom:335.288000pt;}
.y1a{bottom:335.537333pt;}
.y169{bottom:339.273333pt;}
.y1cc{bottom:341.313333pt;}
.y168{bottom:343.257333pt;}
.y46{bottom:345.776000pt;}
.y167{bottom:347.242667pt;}
.y1e9{bottom:351.093333pt;}
.y166{bottom:351.228000pt;}
.y15d{bottom:353.004000pt;}
.y125{bottom:356.868000pt;}
.y19e{bottom:357.450667pt;}
.y59{bottom:357.757333pt;}
.yae{bottom:357.945333pt;}
.y15c{bottom:358.020000pt;}
.y16b{bottom:359.546667pt;}
.y45{bottom:367.689333pt;}
.y19{bottom:372.645333pt;}
.y1cb{bottom:373.194667pt;}
.yee{bottom:374.553333pt;}
.y165{bottom:375.138667pt;}
.y164{bottom:379.124000pt;}
.y19d{bottom:379.364000pt;}
.y15b{bottom:379.969333pt;}
.y123{bottom:380.870667pt;}
.y163{bottom:383.109333pt;}
.y15a{bottom:384.985333pt;}
.y1e8{bottom:385.496000pt;}
.y162{bottom:387.094667pt;}
.y44{bottom:389.602667pt;}
.y124{bottom:390.848000pt;}
.y161{bottom:391.078667pt;}
.y1ca{bottom:391.260000pt;}
.yed{bottom:396.466667pt;}
.y58{bottom:397.394667pt;}
.y122{bottom:400.688000pt;}
.y19c{bottom:401.277333pt;}
.y160{bottom:403.034667pt;}
.y159{bottom:404.960000pt;}
.yad{bottom:407.278667pt;}
.y1e7{bottom:407.409333pt;}
.y43{bottom:411.516000pt;}
.yec{bottom:418.380000pt;}
.y57{bottom:419.308000pt;}
.y19b{bottom:423.190667pt;}
.yac{bottom:427.096000pt;}
.y1c9{bottom:428.033333pt;}
.y18{bottom:428.808000pt;}
.y42{bottom:433.429333pt;}
.y121{bottom:434.676000pt;}
.y14c{bottom:435.077333pt;}
.y157{bottom:438.737333pt;}
.y1e6{bottom:441.813333pt;}
.y156{bottom:442.722667pt;}
.yab{bottom:443.380000pt;}
.y19a{bottom:445.104000pt;}
.y1c8{bottom:446.098667pt;}
.y155{bottom:446.708000pt;}
.y154{bottom:450.692000pt;}
.y17{bottom:450.721333pt;}
.y153{bottom:454.677333pt;}
.y41{bottom:455.342667pt;}
.y120{bottom:456.589333pt;}
.ydf{bottom:456.637333pt;}
.yea{bottom:460.297333pt;}
.y14b{bottom:461.373333pt;}
.y158{bottom:462.997333pt;}
.y1e5{bottom:463.726667pt;}
.y1c7{bottom:464.164000pt;}
.ye9{bottom:464.281333pt;}
.yaa{bottom:465.293333pt;}
.y199{bottom:467.017333pt;}
.ye8{bottom:468.266667pt;}
.ye7{bottom:472.252000pt;}
.ye6{bottom:476.237333pt;}
.y40{bottom:477.256000pt;}
.y11f{bottom:478.502667pt;}
.y152{bottom:478.588000pt;}
.y1c6{bottom:482.229333pt;}
.y151{bottom:482.573333pt;}
.yde{bottom:482.933333pt;}
.yeb{bottom:484.556000pt;}
.y150{bottom:486.558667pt;}
.ya9{bottom:487.114667pt;}
.y14a{bottom:487.670667pt;}
.y198{bottom:488.932000pt;}
.y16{bottom:489.134667pt;}
.y14f{bottom:490.544000pt;}
.y14e{bottom:494.529333pt;}
.ya8{bottom:495.842667pt;}
.y1e4{bottom:498.130667pt;}
.y3f{bottom:499.170667pt;}
.y56{bottom:499.725333pt;}
.ye5{bottom:500.148000pt;}
.y1c5{bottom:500.294667pt;}
.ya6{bottom:503.069333pt;}
.ye4{bottom:504.133333pt;}
.y14d{bottom:506.484000pt;}
.y11e{bottom:506.636000pt;}
.y149{bottom:507.812000pt;}
.ye3{bottom:508.117333pt;}
.y15{bottom:508.470667pt;}
.ydd{bottom:509.229333pt;}
.y197{bottom:510.845333pt;}
.ye2{bottom:512.102667pt;}
.ya7{bottom:513.092000pt;}
.ye1{bottom:516.088000pt;}
.y11c{bottom:516.613333pt;}
.y1c4{bottom:518.361333pt;}
.y1e3{bottom:520.044000pt;}
.y3e{bottom:521.084000pt;}
.y11d{bottom:526.453333pt;}
.y14{bottom:527.805333pt;}
.ye0{bottom:528.044000pt;}
.y148{bottom:529.725333pt;}
.y196{bottom:532.758667pt;}
.y1c3{bottom:536.426667pt;}
.y3d{bottom:542.997333pt;}
.y13{bottom:547.141333pt;}
.ydc{bottom:549.924000pt;}
.y147{bottom:551.640000pt;}
.y1e2{bottom:554.446667pt;}
.y1c2{bottom:554.492000pt;}
.y195{bottom:554.672000pt;}
.y11b{bottom:560.930667pt;}
.y3c{bottom:564.910667pt;}
.y12{bottom:566.477333pt;}
.y119{bottom:570.908000pt;}
.ydb{bottom:571.837333pt;}
.y1c1{bottom:572.557333pt;}
.y146{bottom:573.553333pt;}
.y1e1{bottom:576.361333pt;}
.y194{bottom:576.585333pt;}
.y98{bottom:577.746667pt;}
.y11a{bottom:580.748000pt;}
.y97{bottom:582.762667pt;}
.y11{bottom:585.812000pt;}
.ya4{bottom:586.421333pt;}
.y3b{bottom:586.824000pt;}
.y99{bottom:588.672000pt;}
.ya3{bottom:590.406667pt;}
.y1c0{bottom:590.622667pt;}
.ya2{bottom:594.392000pt;}
.y145{bottom:595.466667pt;}
.y1e0{bottom:598.274667pt;}
.ya1{bottom:598.377333pt;}
.y193{bottom:598.498667pt;}
.yda{bottom:600.629333pt;}
.ya0{bottom:602.362667pt;}
.y95{bottom:604.165333pt;}
.yd9{bottom:604.225333pt;}
.y96{bottom:604.472000pt;}
.y10{bottom:605.148000pt;}
.y3a{bottom:608.737333pt;}
.y1bf{bottom:609.220000pt;}
.y94{bottom:609.488000pt;}
.ya5{bottom:610.681333pt;}
.y118{bottom:615.225333pt;}
.y144{bottom:619.696000pt;}
.y192{bottom:620.412000pt;}
.yf{bottom:624.482667pt;}
.y116{bottom:625.202667pt;}
.y9f{bottom:626.273333pt;}
.y1be{bottom:627.817333pt;}
.y143{bottom:629.673333pt;}
.y9e{bottom:630.257333pt;}
.y93{bottom:630.462667pt;}
.y39{bottom:630.650667pt;}
.y1df{bottom:632.677333pt;}
.y9d{bottom:634.242667pt;}
.y117{bottom:635.042667pt;}
.y92{bottom:635.784000pt;}
.yd7{bottom:636.130667pt;}
.yd6{bottom:637.941333pt;}
.y9c{bottom:638.228000pt;}
.y9b{bottom:642.213333pt;}
.y191{bottom:642.325333pt;}
.ye{bottom:643.818667pt;}
.yd8{bottom:644.322667pt;}
.yd5{bottom:647.918667pt;}
.y38{bottom:652.565333pt;}
.y142{bottom:653.997333pt;}
.y9a{bottom:654.168000pt;}
.y1de{bottom:654.590667pt;}
.y1bd{bottom:659.697333pt;}
.yd{bottom:663.153333pt;}
.y190{bottom:664.240000pt;}
.y115{bottom:666.877333pt;}
.y141{bottom:675.912000pt;}
.y91{bottom:676.072000pt;}
.y113{bottom:676.854667pt;}
.y1bc{bottom:677.762667pt;}
.y1a2{bottom:682.709333pt;}
.y37{bottom:684.717333pt;}
.y18f{bottom:686.153333pt;}
.y114{bottom:686.694667pt;}
.y1dd{bottom:691.165333pt;}
.y1a5{bottom:691.742667pt;}
.yd4{bottom:692.058667pt;}
.yc{bottom:692.836000pt;}
.y1bb{bottom:695.828000pt;}
.y1a1{bottom:700.776000pt;}
.y83{bottom:701.040000pt;}
.y82{bottom:706.056000pt;}
.y36{bottom:706.630667pt;}
.y18e{bottom:708.066667pt;}
.y13f{bottom:708.378667pt;}
.y1a4{bottom:709.808000pt;}
.y8f{bottom:709.930667pt;}
.y84{bottom:711.965333pt;}
.y8e{bottom:713.916000pt;}
.y8d{bottom:717.901333pt;}
.y112{bottom:718.530667pt;}
.y1a0{bottom:718.841333pt;}
.y8c{bottom:721.885333pt;}
.yd3{bottom:722.020000pt;}
.y140{bottom:724.608000pt;}
.y8b{bottom:725.870667pt;}
.y81{bottom:727.766667pt;}
.y1a3{bottom:727.873333pt;}
.y110{bottom:728.508000pt;}
.y35{bottom:728.544000pt;}
.yb{bottom:729.748000pt;}
.y18d{bottom:729.980000pt;}
.yd2{bottom:730.748000pt;}
.y1ba{bottom:732.601333pt;}
.y80{bottom:732.782667pt;}
.y90{bottom:734.189333pt;}
.y19f{bottom:736.906667pt;}
.y13e{bottom:737.542667pt;}
.yd0{bottom:737.974667pt;}
.y111{bottom:738.348000pt;}
.y13d{bottom:741.528000pt;}
.y1dc{bottom:742.845333pt;}
.yd1{bottom:747.997333pt;}
.y8a{bottom:749.781333pt;}
.y34{bottom:750.457333pt;}
.y1b9{bottom:750.666667pt;}
.y18c{bottom:751.893333pt;}
.y89{bottom:753.766667pt;}
.y7f{bottom:754.062667pt;}
.y55{bottom:754.232000pt;}
.ya{bottom:756.356000pt;}
.y88{bottom:757.752000pt;}
.y7e{bottom:759.078667pt;}
.y87{bottom:761.737333pt;}
.y1db{bottom:764.758667pt;}
.y86{bottom:765.721333pt;}
.y1b8{bottom:768.733333pt;}
.y10d{bottom:771.014667pt;}
.y13c{bottom:772.117333pt;}
.y33{bottom:772.370667pt;}
.y10f{bottom:772.825333pt;}
.y18b{bottom:773.806667pt;}
.y85{bottom:777.677333pt;}
.y9{bottom:778.269333pt;}
.y10c{bottom:782.802667pt;}
.ycf{bottom:783.925333pt;}
.y1da{bottom:786.672000pt;}
.y1b7{bottom:786.798667pt;}
.y10e{bottom:792.642667pt;}
.y54{bottom:793.869333pt;}
.y13b{bottom:794.030667pt;}
.y32{bottom:794.284000pt;}
.y18a{bottom:795.720000pt;}
.y8{bottom:800.182667pt;}
.y7d{bottom:800.918667pt;}
.y1f7{bottom:802.246667pt;}
.y1b6{bottom:804.864000pt;}
.y1d9{bottom:808.586667pt;}
.y53{bottom:815.782667pt;}
.y31{bottom:816.198667pt;}
.yce{bottom:817.498667pt;}
.y189{bottom:817.634667pt;}
.ycd{bottom:819.309333pt;}
.y7c{bottom:822.832000pt;}
.y1b5{bottom:823.461333pt;}
.y1f6{bottom:824.160000pt;}
.y13a{bottom:826.578667pt;}
.y10b{bottom:828.058667pt;}
.ycc{bottom:829.286667pt;}
.y7{bottom:829.369333pt;}
.y10a{bottom:829.868000pt;}
.y52{bottom:837.696000pt;}
.y30{bottom:838.112000pt;}
.y188{bottom:839.548000pt;}
.y109{bottom:839.845333pt;}
.y1b4{bottom:842.057333pt;}
.y137{bottom:842.808000pt;}
.y7b{bottom:844.746667pt;}
.y6{bottom:852.844000pt;}
.y139{bottom:855.744000pt;}
.y1d8{bottom:855.984000pt;}
.y1f5{bottom:858.028000pt;}
.y51{bottom:859.609333pt;}
.y138{bottom:859.728000pt;}
.y2f{bottom:860.025333pt;}
.y187{bottom:861.461333pt;}
.y7a{bottom:866.660000pt;}
.y1b3{bottom:873.938667pt;}
.y1d7{bottom:874.049333pt;}
.ycb{bottom:874.729333pt;}
.y5{bottom:875.401333pt;}
.y1f4{bottom:879.941333pt;}
.y4{bottom:881.186667pt;}
.y50{bottom:881.522667pt;}
.y2e{bottom:881.938667pt;}
.y108{bottom:882.764000pt;}
.y186{bottom:883.374667pt;}
.y136{bottom:890.317333pt;}
.y1b2{bottom:892.004000pt;}
.y1d6{bottom:892.114667pt;}
.y6d{bottom:896.858667pt;}
.y78{bottom:900.517333pt;}
.y3{bottom:901.705333pt;}
.y1f3{bottom:901.854667pt;}
.yca{bottom:903.125333pt;}
.y4f{bottom:903.437333pt;}
.y2d{bottom:903.852000pt;}
.y77{bottom:904.502667pt;}
.y185{bottom:905.288000pt;}
.y76{bottom:908.488000pt;}
.y1d5{bottom:910.180000pt;}
.y135{bottom:912.230667pt;}
.y75{bottom:912.473333pt;}
.y74{bottom:916.457333pt;}
.yfb{bottom:920.132000pt;}
.yc4{bottom:921.909333pt;}
.y6c{bottom:923.154667pt;}
.y106{bottom:923.792000pt;}
.y79{bottom:924.777333pt;}
.yc9{bottom:925.038667pt;}
.y4e{bottom:925.350667pt;}
.y2c{bottom:925.765333pt;}
.y184{bottom:927.201333pt;}
.y105{bottom:927.777333pt;}
.y1d4{bottom:928.245333pt;}
.y1b1{bottom:928.777333pt;}
.yc3{bottom:930.410667pt;}
.y104{bottom:931.762667pt;}
.y134{bottom:934.144000pt;}
.y1f2{bottom:935.724000pt;}
.y103{bottom:935.748000pt;}
.yc2{bottom:938.380000pt;}
.y102{bottom:939.732000pt;}
.y73{bottom:940.368000pt;}
.y72{bottom:944.353333pt;}
.yc1{bottom:946.350667pt;}
.yfa{bottom:946.429333pt;}
.y1b0{bottom:946.842667pt;}
.yc8{bottom:946.952000pt;}
.y4d{bottom:947.264000pt;}
.y2b{bottom:947.678667pt;}
.y107{bottom:948.052000pt;}
.y71{bottom:948.338667pt;}
.y183{bottom:949.114667pt;}
.y6b{bottom:949.450667pt;}
.y70{bottom:952.324000pt;}
.yc0{bottom:954.321333pt;}
.y6f{bottom:956.309333pt;}
.y1f1{bottom:957.637333pt;}
.yb8{bottom:958.654667pt;}
.ybf{bottom:962.290667pt;}
.y101{bottom:963.642667pt;}
.y1af{bottom:965.440000pt;}
.y100{bottom:967.628000pt;}
.y6e{bottom:968.264000pt;}
.yc7{bottom:968.865333pt;}
.y2{bottom:968.913333pt;}
.y4c{bottom:969.177333pt;}
.y2a{bottom:969.592000pt;}
.ybe{bottom:970.261333pt;}
.y182{bottom:971.028000pt;}
.yff{bottom:971.613333pt;}
.yf9{bottom:972.725333pt;}
.y133{bottom:973.781333pt;}
.yfe{bottom:975.598667pt;}
.ybd{bottom:978.232000pt;}
.yfd{bottom:979.584000pt;}
.ybc{bottom:986.201333pt;}
.yc6{bottom:990.778667pt;}
.y29{bottom:991.506667pt;}
.yfc{bottom:991.538667pt;}
.ybb{bottom:994.172000pt;}
.y1ae{bottom:997.320000pt;}
.yba{bottom:1002.142667pt;}
.y4b{bottom:1007.729333pt;}
.y69{bottom:1008.097333pt;}
.y6a{bottom:1008.289333pt;}
.y1{bottom:1009.196000pt;}
.yc5{bottom:1012.692000pt;}
.y28{bottom:1013.420000pt;}
.y1ad{bottom:1015.385333pt;}
.yb9{bottom:1025.521333pt;}
.y27{bottom:1066.022667pt;}
.h10{height:2.125355pt;}
.h21{height:21.200555pt;}
.h22{height:22.107556pt;}
.h16{height:30.392648pt;}
.h4{height:31.880400pt;}
.h1b{height:33.301888pt;}
.h9{height:37.087439pt;}
.hb{height:38.043849pt;}
.h8{height:39.850400pt;}
.h7{height:40.610943pt;}
.hc{height:41.658217pt;}
.h6{height:43.636400pt;}
.h3b{height:44.632747pt;}
.h5{height:45.525402pt;}
.h3a{height:51.507315pt;}
.h26{height:52.995067pt;}
.h11{height:53.299315pt;}
.ha{height:53.559147pt;}
.h15{height:54.029981pt;}
.h2a{height:54.413981pt;}
.h17{height:54.787067pt;}
.h1c{height:54.792400pt;}
.h23{height:55.901733pt;}
.h39{height:55.907067pt;}
.hd{height:57.197981pt;}
.he{height:57.203315pt;}
.h1a{height:59.840555pt;}
.h3d{height:62.365355pt;}
.h3f{height:62.370688pt;}
.h14{height:62.948883pt;}
.h3{height:67.615733pt;}
.h30{height:70.285733pt;}
.h13{height:73.821981pt;}
.h12{height:74.589981pt;}
.h19{height:74.851067pt;}
.h1e{height:75.320648pt;}
.h2{height:77.140000pt;}
.h2d{height:81.018217pt;}
.h37{height:81.567550pt;}
.h18{height:82.429355pt;}
.h1f{height:82.434688pt;}
.h27{height:82.996400pt;}
.h25{height:83.545733pt;}
.h1d{height:83.661355pt;}
.h34{height:88.637733pt;}
.h2b{height:94.242688pt;}
.h2e{height:94.248021pt;}
.h3e{height:95.997981pt;}
.h20{height:96.246223pt;}
.h33{height:109.517355pt;}
.h31{height:120.927550pt;}
.h24{height:122.905733pt;}
.h28{height:127.059315pt;}
.h32{height:128.552400pt;}
.h3c{height:133.240648pt;}
.h36{height:134.157355pt;}
.h2f{height:134.728400pt;}
.h29{height:135.789733pt;}
.h2c{height:141.058688pt;}
.hf{height:142.066688pt;}
.h35{height:149.208400pt;}
.h38{height:149.213733pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:93.924000pt;}
.x5{left:100.233333pt;}
.x139{left:101.761333pt;}
.x1{left:105.708000pt;}
.x10b{left:106.605333pt;}
.x2c{left:107.705333pt;}
.xc3{left:110.289333pt;}
.xab{left:111.656000pt;}
.x129{left:112.605333pt;}
.x116{left:114.249333pt;}
.x1a{left:117.070667pt;}
.xac{left:119.969333pt;}
.xc6{left:122.125333pt;}
.x13b{left:123.272000pt;}
.x13a{left:124.386667pt;}
.x12a{left:125.509333pt;}
.x9a{left:129.481333pt;}
.xc{left:130.852000pt;}
.x48{left:139.017333pt;}
.x52{left:140.009333pt;}
.x41{left:141.417333pt;}
.xad{left:146.614667pt;}
.x12b{left:148.641333pt;}
.x67{left:152.362667pt;}
.xae{left:153.850667pt;}
.x117{left:155.700000pt;}
.xa0{left:156.950667pt;}
.x32{left:160.402667pt;}
.x14{left:163.454667pt;}
.x49{left:164.377333pt;}
.x42{left:166.250667pt;}
.x33{left:167.806667pt;}
.x15{left:170.726667pt;}
.xaf{left:174.848000pt;}
.x9c{left:176.176000pt;}
.xbf{left:177.294667pt;}
.x68{left:178.853333pt;}
.x138{left:185.917333pt;}
.xc1{left:186.933333pt;}
.xb0{left:188.592000pt;}
.xd{left:190.836000pt;}
.x101{left:192.081333pt;}
.x24{left:193.658667pt;}
.xcf{left:195.646667pt;}
.xd0{left:196.929333pt;}
.xe{left:198.109333pt;}
.x81{left:200.748000pt;}
.x89{left:202.614667pt;}
.xa1{left:205.712000pt;}
.x37{left:207.202667pt;}
.x25{left:208.204000pt;}
.x8a{left:209.921333pt;}
.x38{left:212.792000pt;}
.xa2{left:214.025333pt;}
.x130{left:216.310667pt;}
.x7{left:217.922667pt;}
.x69{left:219.578667pt;}
.x9b{left:222.026667pt;}
.xd6{left:223.300000pt;}
.x102{left:224.290667pt;}
.x11b{left:226.946667pt;}
.x82{left:230.133333pt;}
.xc4{left:232.998667pt;}
.x103{left:237.757333pt;}
.xb1{left:239.324000pt;}
.x26{left:241.242667pt;}
.x5d{left:242.706667pt;}
.xd1{left:243.704000pt;}
.x96{left:245.357333pt;}
.xb2{left:246.761333pt;}
.xda{left:247.726667pt;}
.x20{left:249.126667pt;}
.x40{left:250.124000pt;}
.x3{left:252.229333pt;}
.xa3{left:253.612000pt;}
.xa5{left:254.738667pt;}
.x27{left:255.788000pt;}
.x12{left:257.649333pt;}
.xa8{left:260.242667pt;}
.x91{left:262.644000pt;}
.x21{left:263.672000pt;}
.x13{left:264.922667pt;}
.x97{left:265.969333pt;}
.xa4{left:270.900000pt;}
.x39{left:272.800000pt;}
.x9e{left:274.580000pt;}
.x7f{left:276.369333pt;}
.x9d{left:277.586667pt;}
.xa{left:279.032000pt;}
.xb3{left:280.121333pt;}
.xe1{left:282.749333pt;}
.x2{left:284.226667pt;}
.x9{left:286.486667pt;}
.xf1{left:288.037333pt;}
.x18{left:289.756000pt;}
.x86{left:290.674667pt;}
.x60{left:292.012000pt;}
.x118{left:293.569333pt;}
.x3a{left:294.629333pt;}
.xb4{left:295.878667pt;}
.x19{left:297.028000pt;}
.xb5{left:301.529333pt;}
.xa6{left:303.598667pt;}
.xb{left:304.493333pt;}
.x8b{left:306.121333pt;}
.x93{left:307.305333pt;}
.x131{left:308.373333pt;}
.x4a{left:310.366667pt;}
.x34{left:312.142667pt;}
.x92{left:313.889333pt;}
.xc7{left:315.305333pt;}
.x5a{left:316.774667pt;}
.x1b{left:318.890667pt;}
.x5e{left:320.796000pt;}
.x83{left:323.338667pt;}
.x79{left:324.758667pt;}
.x1c{left:326.164000pt;}
.xa9{left:328.050667pt;}
.x122{left:329.012000pt;}
.x47{left:330.306667pt;}
.xd8{left:332.014667pt;}
.x51{left:333.645333pt;}
.xb6{left:334.893333pt;}
.xc2{left:336.262667pt;}
.x11d{left:337.884000pt;}
.xef{left:338.838667pt;}
.x3b{left:340.206667pt;}
.xb7{left:342.330667pt;}
.xcb{left:343.320000pt;}
.xd2{left:344.630667pt;}
.xd3{left:345.913333pt;}
.x88{left:347.949333pt;}
.x64{left:349.748000pt;}
.x63{left:350.974667pt;}
.x8{left:352.068000pt;}
.x76{left:353.102667pt;}
.x53{left:355.317333pt;}
.xb8{left:356.294667pt;}
.x1f{left:357.362667pt;}
.x123{left:358.685333pt;}
.xed{left:361.998667pt;}
.xeb{left:363.526667pt;}
.x5b{left:364.676000pt;}
.x6{left:367.217333pt;}
.xea{left:370.040000pt;}
.x11e{left:371.160000pt;}
.x16{left:372.682667pt;}
.xee{left:374.364000pt;}
.x11{left:376.850667pt;}
.x3c{left:378.648000pt;}
.x17{left:379.954667pt;}
.xe6{left:380.912000pt;}
.x2d{left:381.850667pt;}
.x87{left:383.220000pt;}
.xec{left:385.348000pt;}
.xe5{left:387.424000pt;}
.x77{left:388.942667pt;}
.x2e{left:390.774667pt;}
.x72{left:393.285333pt;}
.x3d{left:394.888000pt;}
.x7a{left:396.052000pt;}
.xdc{left:396.998667pt;}
.x2f{left:398.006667pt;}
.x3e{left:400.477333pt;}
.xb9{left:401.382667pt;}
.xe7{left:402.732000pt;}
.x104{left:403.776000pt;}
.x7b{left:404.885333pt;}
.x30{left:406.930667pt;}
.x7c{left:408.294667pt;}
.xf4{left:409.953333pt;}
.x80{left:411.568000pt;}
.x5f{left:413.245333pt;}
.x31{left:414.334667pt;}
.x10c{left:417.554667pt;}
.x4b{left:418.828000pt;}
.x75{left:420.942667pt;}
.xc8{left:424.277333pt;}
.x98{left:425.380000pt;}
.x54{left:426.880000pt;}
.xd9{left:428.370667pt;}
.x6a{left:429.824000pt;}
.x73{left:431.441333pt;}
.x71{left:434.850667pt;}
.xfd{left:437.641333pt;}
.x4c{left:438.606667pt;}
.x65{left:440.381333pt;}
.x105{left:442.673333pt;}
.x55{left:444.754667pt;}
.x3f{left:446.054667pt;}
.x84{left:448.352000pt;}
.x85{left:449.889333pt;}
.xf0{left:451.290667pt;}
.xba{left:453.240000pt;}
.x74{left:456.825333pt;}
.x6b{left:457.921333pt;}
.xa7{left:460.618667pt;}
.x5c{left:461.606667pt;}
.x7d{left:463.004000pt;}
.xf{left:464.481333pt;}
.x99{left:465.570667pt;}
.x78{left:466.800000pt;}
.xfe{left:468.613333pt;}
.x10{left:471.754667pt;}
.x56{left:472.904000pt;}
.x11f{left:474.986667pt;}
.x12c{left:476.458667pt;}
.xd4{left:477.458667pt;}
.xe8{left:479.468000pt;}
.x12d{left:480.500000pt;}
.xf5{left:484.194667pt;}
.x6c{left:485.597333pt;}
.x43{left:487.657333pt;}
.xd7{left:489.813333pt;}
.x124{left:490.844000pt;}
.x1d{left:491.978667pt;}
.xc9{left:493.178667pt;}
.xcc{left:494.568000pt;}
.x7e{left:496.320000pt;}
.x6d{left:497.341333pt;}
.x1e{left:499.252000pt;}
.x115{left:501.173333pt;}
.xf2{left:502.092000pt;}
.x8c{left:503.033333pt;}
.xe9{left:504.257333pt;}
.x125{left:505.680000pt;}
.x44{left:508.976000pt;}
.x8d{left:511.888000pt;}
.x94{left:515.737333pt;}
.x45{left:518.360000pt;}
.x106{left:520.092000pt;}
.x8e{left:521.098667pt;}
.x110{left:522.349333pt;}
.x28{left:524.508000pt;}
.x35{left:525.440000pt;}
.x95{left:527.017333pt;}
.x22{left:528.809333pt;}
.xdb{left:530.654667pt;}
.x36{left:532.672000pt;}
.xc5{left:533.844000pt;}
.x12e{left:535.070667pt;}
.xe2{left:536.296000pt;}
.xcd{left:537.578667pt;}
.x10d{left:539.144000pt;}
.x29{left:540.517333pt;}
.x23{left:542.054667pt;}
.xd5{left:543.200000pt;}
.x132{left:545.756000pt;}
.x46{left:546.920000pt;}
.x6e{left:548.769333pt;}
.xe3{left:549.869333pt;}
.xf6{left:550.874667pt;}
.x107{left:554.300000pt;}
.xff{left:558.469333pt;}
.x126{left:563.025333pt;}
.xaa{left:567.768000pt;}
.x100{left:569.921333pt;}
.xc0{left:572.889333pt;}
.xf3{left:579.566667pt;}
.x127{left:581.686667pt;}
.x133{left:582.930667pt;}
.xce{left:584.392000pt;}
.xe4{left:586.181333pt;}
.x10e{left:588.582667pt;}
.x6f{left:590.313333pt;}
.xf7{left:591.333333pt;}
.x4d{left:592.677333pt;}
.x61{left:594.888000pt;}
.x10f{left:596.682667pt;}
.x11c{left:599.708000pt;}
.x12f{left:600.888000pt;}
.x2a{left:602.529333pt;}
.x4e{left:604.357333pt;}
.x128{left:605.308000pt;}
.x62{left:606.314667pt;}
.x108{left:608.294667pt;}
.xf8{left:610.488000pt;}
.x111{left:611.760000pt;}
.x8f{left:615.533333pt;}
.x2b{left:617.281333pt;}
.x109{left:620.704000pt;}
.xf9{left:623.797333pt;}
.x90{left:626.813333pt;}
.x134{left:628.464000pt;}
.x70{left:630.530667pt;}
.x4f{left:631.770667pt;}
.x120{left:634.282667pt;}
.x121{left:638.322667pt;}
.xca{left:639.540000pt;}
.x136{left:641.068000pt;}
.xfa{left:642.836000pt;}
.x50{left:644.530667pt;}
.x112{left:646.170667pt;}
.xfb{left:647.658667pt;}
.x113{left:648.961333pt;}
.x57{left:650.660000pt;}
.x114{left:653.001333pt;}
.x10a{left:655.725333pt;}
.xbb{left:657.538667pt;}
.xfc{left:659.718667pt;}
.x135{left:661.217333pt;}
.x58{left:662.749333pt;}
.x137{left:663.981333pt;}
.xbc{left:664.976000pt;}
.xdd{left:665.913333pt;}
.xe0{left:667.982667pt;}
.xbd{left:670.626667pt;}
.x9f{left:675.056000pt;}
.xde{left:676.433333pt;}
.xbe{left:678.940000pt;}
.x66{left:682.328000pt;}
.x119{left:688.408000pt;}
.x59{left:690.900000pt;}
.x11a{left:692.449333pt;}
.xdf{left:695.370667pt;}
}




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