
    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_51faf13499bce9929d620892.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_724b50c0a0637a67eb69c70b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_22e02fdf80540cc905eb24e5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.736000;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_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.660000;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_52521e14869355c48b53979a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.885000;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_39ecd1c56cba2d824bbec91c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.011000;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_8b5257afc1850b94903471a0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.488000;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_25c21d6524afbf3982936c01.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_817ac7286063bceff28b621e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b112cbe48526c61f2c45ae5a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;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_217e99306bcd14e371a1c9e1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.873535;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_79a03a0e0e8d72498316cded.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;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_09598668cb16902951841642.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_83cbbd47dacaedf1afc438ec.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2a239840e5f6e75114d5ce8d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.011230;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_685b169ac98b374bf0975741.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2b{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);}
.m13{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);}
.m29{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);}
.m15{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m16{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);}
.m18{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);}
.m3{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);}
.m5{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);}
.m28{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.mb{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);}
.m8{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);}
.m2c{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);}
.m17{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);}
.m19{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);}
.m1f{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);}
.m22{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);}
.m1d{transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249762,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.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);}
.m23{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);}
.m6{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);}
.m4{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);}
.m9{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m20{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2a{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);}
.m14{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);}
.m7{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m25{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);}
.m11{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);}
.me{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);}
.m26{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);}
.mf{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.v7{vertical-align:-37.488000px;}
.v2{vertical-align:-17.358000px;}
.v4{vertical-align:-1.254000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.282000px;}
.v5{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:32.874000px;}
.v8{vertical-align:40.677192px;}
.ls4f{letter-spacing:-0.258516px;}
.ls2b{letter-spacing:-0.179712px;}
.ls4b{letter-spacing:-0.174348px;}
.ls42{letter-spacing:-0.156312px;}
.ls2c{letter-spacing:-0.148458px;}
.ls27{letter-spacing:-0.138276px;}
.ls43{letter-spacing:-0.126252px;}
.ls4c{letter-spacing:-0.120240px;}
.ls26{letter-spacing:-0.114228px;}
.ls46{letter-spacing:-0.096192px;}
.ls3f{letter-spacing:-0.090972px;}
.ls44{letter-spacing:-0.090180px;}
.ls1d{letter-spacing:-0.086184px;}
.ls2a{letter-spacing:-0.084168px;}
.ls28{letter-spacing:-0.078156px;}
.ls24{letter-spacing:-0.072144px;}
.ls49{letter-spacing:-0.060120px;}
.ls48{letter-spacing:-0.059400px;}
.ls20{letter-spacing:-0.054108px;}
.ls45{letter-spacing:-0.048096px;}
.ls29{letter-spacing:-0.042084px;}
.ls21{letter-spacing:-0.036072px;}
.ls23{letter-spacing:-0.030060px;}
.ls25{letter-spacing:-0.024048px;}
.ls41{letter-spacing:-0.021600px;}
.ls1f{letter-spacing:-0.018036px;}
.ls40{letter-spacing:-0.014364px;}
.ls22{letter-spacing:-0.012024px;}
.ls47{letter-spacing:-0.005400px;}
.ls1e{letter-spacing:-0.004788px;}
.ls6{letter-spacing:0.000000px;}
.ls78{letter-spacing:0.000088px;}
.ls5a{letter-spacing:0.000478px;}
.ls61{letter-spacing:0.000503px;}
.ls77{letter-spacing:0.000658px;}
.ls65{letter-spacing:0.000699px;}
.ls59{letter-spacing:0.000800px;}
.ls63{letter-spacing:0.000901px;}
.ls68{letter-spacing:0.001036px;}
.ls5d{letter-spacing:0.001701px;}
.ls56{letter-spacing:0.001831px;}
.ls64{letter-spacing:0.002053px;}
.ls57{letter-spacing:0.002283px;}
.ls5e{letter-spacing:0.002338px;}
.ls67{letter-spacing:0.002544px;}
.ls72{letter-spacing:0.002697px;}
.ls62{letter-spacing:0.002841px;}
.ls71{letter-spacing:0.002856px;}
.ls55{letter-spacing:0.003586px;}
.ls6b{letter-spacing:0.004800px;}
.ls39{letter-spacing:0.006012px;}
.ls19{letter-spacing:0.010800px;}
.ls11{letter-spacing:0.012024px;}
.ls16{letter-spacing:0.016200px;}
.lsd{letter-spacing:0.018036px;}
.ls18{letter-spacing:0.021600px;}
.lsb{letter-spacing:0.024048px;}
.ls37{letter-spacing:0.027000px;}
.lsf{letter-spacing:0.030060px;}
.ls1b{letter-spacing:0.036072px;}
.ls15{letter-spacing:0.037800px;}
.ls3d{letter-spacing:0.042084px;}
.ls13{letter-spacing:0.043200px;}
.ls1a{letter-spacing:0.048096px;}
.ls17{letter-spacing:0.048600px;}
.lse{letter-spacing:0.054108px;}
.ls14{letter-spacing:0.059400px;}
.ls3e{letter-spacing:0.059776px;}
.lsc{letter-spacing:0.060120px;}
.ls34{letter-spacing:0.062244px;}
.ls10{letter-spacing:0.066132px;}
.ls8{letter-spacing:0.067032px;}
.ls38{letter-spacing:0.070200px;}
.ls2d{letter-spacing:0.078136px;}
.ls1c{letter-spacing:0.078156px;}
.ls12{letter-spacing:0.086400px;}
.ls3b{letter-spacing:0.108216px;}
.ls3a{letter-spacing:0.120240px;}
.ls4d{letter-spacing:0.138276px;}
.ls4e{letter-spacing:0.156312px;}
.ls4a{letter-spacing:0.162324px;}
.ls36{letter-spacing:0.167580px;}
.lsa{letter-spacing:0.177156px;}
.ls3c{letter-spacing:0.180360px;}
.ls35{letter-spacing:0.181944px;}
.ls9{letter-spacing:0.191520px;}
.ls7{letter-spacing:1.275394px;}
.ls1{letter-spacing:1.861130px;}
.ls2{letter-spacing:10.461300px;}
.ls60{letter-spacing:11.860604px;}
.ls5{letter-spacing:11.954850px;}
.ls5f{letter-spacing:11.995298px;}
.ls75{letter-spacing:13.109224px;}
.ls66{letter-spacing:13.188280px;}
.ls70{letter-spacing:13.204587px;}
.ls69{letter-spacing:13.240665px;}
.ls6c{letter-spacing:13.276590px;}
.ls51{letter-spacing:13.448400px;}
.ls54{letter-spacing:13.454400px;}
.ls74{letter-spacing:13.508316px;}
.ls58{letter-spacing:13.538635px;}
.ls6a{letter-spacing:13.586690px;}
.ls73{letter-spacing:13.657216px;}
.ls53{letter-spacing:13.712150px;}
.ls32{letter-spacing:14.094088px;}
.ls2e{letter-spacing:14.100088px;}
.ls30{letter-spacing:14.122800px;}
.ls5b{letter-spacing:14.697459px;}
.ls52{letter-spacing:14.773929px;}
.ls6f{letter-spacing:15.597459px;}
.ls76{letter-spacing:15.726871px;}
.ls6d{letter-spacing:16.056282px;}
.ls2f{letter-spacing:16.440600px;}
.ls6e{letter-spacing:16.615106px;}
.ls5c{letter-spacing:16.909224px;}
.ls0{letter-spacing:57.415200px;}
.ls3{letter-spacing:62.761200px;}
.ls4{letter-spacing:64.321654px;}
.ls50{letter-spacing:264.923050px;}
.ls33{letter-spacing:439.338600px;}
.ls31{letter-spacing:459.510600px;}
.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;}
}
.wsed{word-spacing:-14.943900px;}
.ws8f{word-spacing:-13.449600px;}
.ws4e{word-spacing:-12.161520px;}
.wsad{word-spacing:-12.151944px;}
.ws2c{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.wscb{word-spacing:-3.781548px;}
.wsca{word-spacing:-3.384756px;}
.wsc9{word-spacing:-3.354696px;}
.ws6b{word-spacing:-3.120228px;}
.ws45{word-spacing:-2.689902px;}
.ws66{word-spacing:-2.452896px;}
.wsce{word-spacing:-2.380752px;}
.wscf{word-spacing:-2.332656px;}
.ws48{word-spacing:-2.151922px;}
.ws136{word-spacing:-2.044339px;}
.ws2f{word-spacing:-2.032370px;}
.ws13e{word-spacing:-1.990541px;}
.ws103{word-spacing:-1.912819px;}
.ws3{word-spacing:-1.908367px;}
.ws132{word-spacing:-1.882944px;}
.ws50{word-spacing:-1.793268px;}
.ws23{word-spacing:-1.775347px;}
.ws5c{word-spacing:-1.725444px;}
.ws7c{word-spacing:-1.653300px;}
.ws137{word-spacing:-1.613952px;}
.ws7d{word-spacing:-1.569132px;}
.ws133{word-spacing:-1.452557px;}
.ws9d{word-spacing:-1.434614px;}
.ws3a{word-spacing:-1.374839px;}
.ws2{word-spacing:-1.322630px;}
.wsa3{word-spacing:-1.315063px;}
.ws6f{word-spacing:-1.292580px;}
.ws135{word-spacing:-1.291162px;}
.ws70{word-spacing:-1.208412px;}
.ws3c{word-spacing:-1.135736px;}
.ws109{word-spacing:-1.075961px;}
.ws6e{word-spacing:-1.052100px;}
.ws38{word-spacing:-1.042778px;}
.ws39{word-spacing:-1.016185px;}
.ws80{word-spacing:-0.961920px;}
.ws4b{word-spacing:-0.956410px;}
.ws81{word-spacing:-0.943884px;}
.wsc0{word-spacing:-0.908591px;}
.wsee{word-spacing:-0.836858px;}
.ws128{word-spacing:-0.806976px;}
.ws149{word-spacing:-0.753178px;}
.wsbf{word-spacing:-0.717309px;}
.ws86{word-spacing:-0.703404px;}
.ws16{word-spacing:-0.699379px;}
.ws88{word-spacing:-0.655308px;}
.ws7e{word-spacing:-0.649296px;}
.ws105{word-spacing:-0.597756px;}
.wsef{word-spacing:-0.537980px;}
.ws147{word-spacing:-0.430387px;}
.ws108{word-spacing:-0.418429px;}
.ws18{word-spacing:-0.376589px;}
.ws107{word-spacing:-0.358654px;}
.ws14b{word-spacing:-0.322790px;}
.ws2d{word-spacing:-0.298878px;}
.ws5e{word-spacing:-0.294588px;}
.ws11d{word-spacing:-0.268992px;}
.ws34{word-spacing:-0.239102px;}
.ws120{word-spacing:-0.215194px;}
.ws5f{word-spacing:-0.210420px;}
.ws85{word-spacing:-0.192384px;}
.ws7a{word-spacing:-0.189000px;}
.ws7b{word-spacing:-0.186372px;}
.ws35{word-spacing:-0.179327px;}
.ws11f{word-spacing:-0.161395px;}
.ws36{word-spacing:-0.119551px;}
.ws21{word-spacing:-0.107597px;}
.ws57{word-spacing:-0.081396px;}
.wsc5{word-spacing:-0.076608px;}
.wsde{word-spacing:-0.066132px;}
.ws29{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.wsd4{word-spacing:-0.030060px;}
.ws13a{word-spacing:-0.011510px;}
.ws13d{word-spacing:-0.010282px;}
.ws148{word-spacing:-0.008304px;}
.ws160{word-spacing:-0.008179px;}
.ws144{word-spacing:-0.005683px;}
.ws11c{word-spacing:-0.005318px;}
.ws156{word-spacing:-0.002986px;}
.ws139{word-spacing:-0.002774px;}
.ws141{word-spacing:-0.002467px;}
.ws5{word-spacing:-0.002454px;}
.ws124{word-spacing:-0.002429px;}
.ws12b{word-spacing:-0.002006px;}
.ws161{word-spacing:-0.001843px;}
.ws11e{word-spacing:-0.001267px;}
.ws2b{word-spacing:-0.001083px;}
.ws117{word-spacing:-0.000134px;}
.ws0{word-spacing:0.000000px;}
.ws14c{word-spacing:0.003178px;}
.wscd{word-spacing:0.030060px;}
.wsd5{word-spacing:0.042084px;}
.ws1a{word-spacing:0.053798px;}
.wsd1{word-spacing:0.054108px;}
.ws49{word-spacing:0.059776px;}
.ws71{word-spacing:0.072144px;}
.wsd0{word-spacing:0.084168px;}
.wsd9{word-spacing:0.102204px;}
.ws24{word-spacing:0.107597px;}
.ws8b{word-spacing:0.114228px;}
.ws28{word-spacing:0.119551px;}
.wsd7{word-spacing:0.150300px;}
.ws4f{word-spacing:0.161395px;}
.ws79{word-spacing:0.167400px;}
.ws6a{word-spacing:0.168336px;}
.ws37{word-spacing:0.179327px;}
.wsd2{word-spacing:0.183600px;}
.ws7{word-spacing:0.209214px;}
.ws17{word-spacing:0.215194px;}
.wsd3{word-spacing:0.237600px;}
.ws3b{word-spacing:0.239102px;}
.ws10a{word-spacing:0.268992px;}
.ws9{word-spacing:0.292900px;}
.ws41{word-spacing:0.298878px;}
.ws14{word-spacing:0.322790px;}
.wsa1{word-spacing:0.358654px;}
.ws116{word-spacing:0.376589px;}
.wsa4{word-spacing:0.418429px;}
.ws8a{word-spacing:0.426852px;}
.ws13{word-spacing:0.430387px;}
.wsc8{word-spacing:0.469800px;}
.ws22{word-spacing:0.484186px;}
.wsc6{word-spacing:0.513000px;}
.wsec{word-spacing:0.537980px;}
.wsc7{word-spacing:0.561600px;}
.ws4c{word-spacing:0.597756px;}
.ws10d{word-spacing:0.645581px;}
.ws30{word-spacing:0.657532px;}
.ws90{word-spacing:0.668400px;}
.ws93{word-spacing:0.674400px;}
.ws12{word-spacing:0.699379px;}
.ws89{word-spacing:0.895788px;}
.ws33{word-spacing:0.896634px;}
.ws121{word-spacing:0.914573px;}
.ws4d{word-spacing:0.956410px;}
.ws111{word-spacing:0.968371px;}
.wsa9{word-spacing:1.016185px;}
.ws110{word-spacing:1.022170px;}
.ws5b{word-spacing:1.118232px;}
.ws69{word-spacing:1.124244px;}
.ws10e{word-spacing:1.129766px;}
.ws145{word-spacing:1.183565px;}
.wsa6{word-spacing:1.195512px;}
.ws5a{word-spacing:1.196388px;}
.ws77{word-spacing:1.215000px;}
.ws123{word-spacing:1.237363px;}
.ws78{word-spacing:1.242000px;}
.ws76{word-spacing:1.247400px;}
.wsa5{word-spacing:1.255288px;}
.ws15{word-spacing:1.344960px;}
.ws1e{word-spacing:1.452557px;}
.ws40{word-spacing:1.494390px;}
.ws65{word-spacing:1.527048px;}
.ws3d{word-spacing:1.613941px;}
.ws153{word-spacing:1.667750px;}
.ws42{word-spacing:1.673717px;}
.ws15e{word-spacing:1.721549px;}
.ws9f{word-spacing:1.733492px;}
.ws163{word-spacing:1.751921px;}
.ws162{word-spacing:1.775347px;}
.ws2a{word-spacing:1.793268px;}
.ws60{word-spacing:1.827648px;}
.ws13f{word-spacing:1.829146px;}
.ws9e{word-spacing:1.853044px;}
.ws13b{word-spacing:1.882944px;}
.wsaa{word-spacing:1.912819px;}
.ws8{word-spacing:2.008454px;}
.ws14d{word-spacing:2.044339px;}
.ws1f{word-spacing:2.098138px;}
.ws140{word-spacing:2.151936px;}
.ws5d{word-spacing:2.200392px;}
.ws61{word-spacing:2.254500px;}
.ws165{word-spacing:2.259533px;}
.ws20{word-spacing:2.367130px;}
.ws9a{word-spacing:2.391024px;}
.ws14f{word-spacing:2.474726px;}
.ws1b{word-spacing:2.528525px;}
.wsa7{word-spacing:2.570351px;}
.ws14e{word-spacing:2.582323px;}
.ws3e{word-spacing:2.630126px;}
.ws152{word-spacing:2.636122px;}
.ws9b{word-spacing:2.689902px;}
.ws126{word-spacing:2.689920px;}
.wsff{word-spacing:2.749678px;}
.ws11a{word-spacing:2.797517px;}
.ws155{word-spacing:2.851315px;}
.ws47{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.ws15d{word-spacing:2.905114px;}
.wsfd{word-spacing:2.929004px;}
.ws15c{word-spacing:2.958912px;}
.ws102{word-spacing:2.988780px;}
.ws131{word-spacing:3.066509px;}
.ws27{word-spacing:3.108331px;}
.ws159{word-spacing:3.148544px;}
.ws46{word-spacing:3.168107px;}
.ws151{word-spacing:3.174106px;}
.ws12f{word-spacing:3.217229px;}
.ws25{word-spacing:3.219667px;}
.ws130{word-spacing:3.221933px;}
.ws118{word-spacing:3.222163px;}
.ws10c{word-spacing:3.222576px;}
.ws129{word-spacing:3.222835px;}
.ws115{word-spacing:3.223229px;}
.ws14a{word-spacing:3.224141px;}
.ws113{word-spacing:3.224544px;}
.ws114{word-spacing:3.224592px;}
.ws10b{word-spacing:3.224822px;}
.ws143{word-spacing:3.224947px;}
.ws112{word-spacing:3.225178px;}
.ws15a{word-spacing:3.225235px;}
.ws11b{word-spacing:3.226848px;}
.ws4a{word-spacing:3.227882px;}
.ws10f{word-spacing:3.227904px;}
.ws134{word-spacing:3.229238px;}
.ws157{word-spacing:3.229584px;}
.ws99{word-spacing:3.287658px;}
.ws8c{word-spacing:3.347434px;}
.ws142{word-spacing:3.389299px;}
.ws53{word-spacing:3.466985px;}
.ws158{word-spacing:3.496896px;}
.ws26{word-spacing:3.586536px;}
.ws1d{word-spacing:3.658291px;}
.wsfc{word-spacing:3.706087px;}
.ws51{word-spacing:3.765863px;}
.ws101{word-spacing:3.825638px;}
.wsac{word-spacing:3.885414px;}
.ws125{word-spacing:3.927283px;}
.wsab{word-spacing:3.945190px;}
.wsf0{word-spacing:4.004965px;}
.ws43{word-spacing:4.124516px;}
.ws44{word-spacing:4.184292px;}
.wsa2{word-spacing:4.244068px;}
.ws6c{word-spacing:4.400784px;}
.ws87{word-spacing:4.406796px;}
.ws6d{word-spacing:4.533048px;}
.ws56{word-spacing:4.722272px;}
.ws7f{word-spacing:4.731444px;}
.ws64{word-spacing:4.755492px;}
.ws12c{word-spacing:4.768494px;}
.ws12d{word-spacing:4.788058px;}
.ws3f{word-spacing:4.841824px;}
.ws12a{word-spacing:4.841856px;}
.ws13c{word-spacing:4.895654px;}
.ws15b{word-spacing:5.003251px;}
.wsa0{word-spacing:5.021150px;}
.wsa8{word-spacing:5.080926px;}
.ws119{word-spacing:5.218445px;}
.ws146{word-spacing:5.326042px;}
.ws52{word-spacing:5.379804px;}
.ws138{word-spacing:5.379840px;}
.wsc4{word-spacing:5.439580px;}
.ws2e{word-spacing:5.499355px;}
.ws104{word-spacing:5.559131px;}
.ws1c{word-spacing:5.595034px;}
.ws31{word-spacing:5.618906px;}
.wscc{word-spacing:5.801580px;}
.ws59{word-spacing:5.831640px;}
.ws32{word-spacing:5.858009px;}
.ws63{word-spacing:5.867712px;}
.ws62{word-spacing:5.891760px;}
.ws8d{word-spacing:5.917784px;}
.wsf7{word-spacing:5.977560px;}
.ws12e{word-spacing:6.025421px;}
.wsf{word-spacing:6.067206px;}
.ws10{word-spacing:6.150892px;}
.ws83{word-spacing:6.204384px;}
.ws55{word-spacing:6.276438px;}
.ws82{word-spacing:6.300576px;}
.wsf8{word-spacing:6.515540px;}
.ws122{word-spacing:6.563405px;}
.wsfa{word-spacing:6.575316px;}
.ws67{word-spacing:6.913800px;}
.ws68{word-spacing:6.967908px;}
.wsf1{word-spacing:6.993745px;}
.ws106{word-spacing:7.053521px;}
.wsc2{word-spacing:7.173072px;}
.wsfe{word-spacing:7.232848px;}
.wsf9{word-spacing:7.292623px;}
.wsfb{word-spacing:7.531726px;}
.wsc1{word-spacing:8.009930px;}
.wsaf{word-spacing:8.177357px;}
.ws15f{word-spacing:8.553946px;}
.wsae{word-spacing:8.607744px;}
.wsd{word-spacing:8.661460px;}
.ws154{word-spacing:8.715341px;}
.ws164{word-spacing:9.038131px;}
.wsf2{word-spacing:10.400954px;}
.ws150{word-spacing:11.136269px;}
.ws58{word-spacing:11.620476px;}
.ws127{word-spacing:11.835648px;}
.ws9c{word-spacing:12.074671px;}
.ws54{word-spacing:14.525471px;}
.ws84{word-spacing:15.186312px;}
.ws4{word-spacing:15.483541px;}
.wsa{word-spacing:16.142252px;}
.wsb{word-spacing:16.151321px;}
.wsc{word-spacing:17.699504px;}
.wsc3{word-spacing:25.643732px;}
.wse{word-spacing:27.448877px;}
.ws72{word-spacing:112.465800px;}
.ws74{word-spacing:112.492800px;}
.ws73{word-spacing:112.509000px;}
.ws75{word-spacing:112.514400px;}
.wsd8{word-spacing:151.827048px;}
.wsb7{word-spacing:162.255974px;}
.wsdb{word-spacing:181.706688px;}
.wsd6{word-spacing:190.147536px;}
.wsb8{word-spacing:195.879974px;}
.wsb2{word-spacing:199.215475px;}
.wsbd{word-spacing:206.639654px;}
.wsb1{word-spacing:208.093776px;}
.wsb6{word-spacing:211.212518px;}
.wsdc{word-spacing:221.668452px;}
.wsb3{word-spacing:222.779174px;}
.wsb5{word-spacing:222.832973px;}
.ws91{word-spacing:227.068954px;}
.wse7{word-spacing:235.852186px;}
.wsbe{word-spacing:236.228774px;}
.wse0{word-spacing:237.227508px;}
.wse1{word-spacing:242.361792px;}
.wseb{word-spacing:250.270157px;}
.wse5{word-spacing:261.029837px;}
.wse4{word-spacing:262.697587px;}
.wsda{word-spacing:266.668272px;}
.ws95{word-spacing:274.211578px;}
.wsba{word-spacing:281.311834px;}
.wsdd{word-spacing:281.788452px;}
.wse9{word-spacing:283.732762px;}
.ws8e{word-spacing:286.907578px;}
.wsb9{word-spacing:293.900659px;}
.wse8{word-spacing:296.267789px;}
.wsea{word-spacing:296.375386px;}
.wse6{word-spacing:302.938790px;}
.wse2{word-spacing:314.882035px;}
.wsdf{word-spacing:321.750216px;}
.wsbc{word-spacing:345.977510px;}
.wse3{word-spacing:353.670682px;}
.wsf6{word-spacing:369.541210px;}
.wsf3{word-spacing:374.006477px;}
.wsf5{word-spacing:389.123827px;}
.ws96{word-spacing:394.880256px;}
.wsf4{word-spacing:417.152794px;}
.wsb0{word-spacing:430.043578px;}
.ws98{word-spacing:435.229056px;}
.ws94{word-spacing:441.469670px;}
.ws97{word-spacing:475.577856px;}
.ws92{word-spacing:481.818470px;}
.wsb4{word-spacing:837.963878px;}
.ws100{word-spacing:932.487667px;}
.wsbb{word-spacing:1808.726294px;}
._5c{margin-left:-171.029386px;}
._55{margin-left:-168.510358px;}
._59{margin-left:-141.390216px;}
._56{margin-left:-139.442338px;}
._54{margin-left:-130.706902px;}
._1a{margin-left:-113.092200px;}
._5b{margin-left:-100.081764px;}
._5a{margin-left:-86.067802px;}
._5d{margin-left:-71.909532px;}
._58{margin-left:-55.081944px;}
._53{margin-left:-45.270360px;}
._47{margin-left:-36.295499px;}
._94{margin-left:-20.909598px;}
._49{margin-left:-15.180319px;}
._1b{margin-left:-11.053800px;}
._96{margin-left:-7.949770px;}
._e{margin-left:-6.845587px;}
._7{margin-left:-5.397721px;}
._a{margin-left:-4.309861px;}
._8{margin-left:-2.994731px;}
._3{margin-left:-1.322630px;}
._4{width:1.091170px;}
._1{width:2.994731px;}
._b{width:11.094379px;}
._5{width:12.971268px;}
._9{width:14.824386px;}
._c{width:16.117190px;}
._12{width:17.300755px;}
._10{width:18.681235px;}
._44{width:20.383480px;}
._16{width:21.586559px;}
._11{width:23.025715px;}
._d{width:24.747264px;}
._6{width:25.946136px;}
._f{width:28.082765px;}
._20{width:30.014918px;}
._18{width:31.561517px;}
._0{width:33.355008px;}
._15{width:35.088277px;}
._17{width:36.582667px;}
._85{width:38.391070px;}
._5f{width:41.801357px;}
._1c{width:43.939800px;}
._7b{width:50.541551px;}
._4d{width:54.089964px;}
._95{width:61.868160px;}
._2{width:69.354349px;}
._45{width:72.174060px;}
._4a{width:73.974626px;}
._4f{width:84.300254px;}
._5e{width:86.200056px;}
._93{width:88.767360px;}
._4e{width:89.834318px;}
._51{width:98.839682px;}
._50{width:100.412414px;}
._80{width:104.099904px;}
._4b{width:113.133816px;}
._48{width:114.835212px;}
._52{width:134.834138px;}
._72{width:141.705456px;}
._46{width:150.798986px;}
._73{width:152.006851px;}
._57{width:164.362049px;}
._1f{width:166.746600px;}
._1e{width:172.513800px;}
._1d{width:178.653600px;}
._71{width:185.765875px;}
._81{width:187.917811px;}
._74{width:189.692141px;}
._69{width:202.604774px;}
._68{width:209.329574px;}
._6e{width:236.228774px;}
._61{width:239.564275px;}
._60{width:244.083341px;}
._7c{width:245.912486px;}
._64{width:260.760845px;}
._21{width:266.885501px;}
._4c{width:270.996912px;}
._63{width:275.609203px;}
._6f{width:281.580826px;}
._28{width:291.009619px;}
._7e{width:294.438643px;}
._36{width:296.213990px;}
._62{width:299.657088px;}
._84{width:304.014758px;}
._43{width:305.090726px;}
._41{width:309.842867px;}
._30{width:315.134784px;}
._24{width:318.863117px;}
._22{width:322.142419px;}
._31{width:325.097878px;}
._3c{width:334.303258px;}
._2d{width:338.230541px;}
._29{width:339.909110px;}
._2a{width:342.928883px;}
._39{width:349.904794px;}
._7a{width:351.173626px;}
._79{width:353.670682px;}
._7f{width:357.831040px;}
._23{width:359.896522px;}
._3f{width:363.426073px;}
._38{width:365.075942px;}
._76{width:367.120282px;}
._77{width:368.465242px;}
._42{width:370.939968px;}
._78{width:376.996858px;}
._32{width:380.785075px;}
._75{width:390.092198px;}
._35{width:393.798434px;}
._26{width:398.161958px;}
._2e{width:400.152499px;}
._2c{width:404.079782px;}
._2b{width:408.329856px;}
._3e{width:417.744576px;}
._3b{width:421.779456px;}
._3d{width:424.038605px;}
._2f{width:435.229056px;}
._33{width:448.678656px;}
._27{width:454.919270px;}
._3a{width:462.558643px;}
._25{width:468.315072px;}
._34{width:489.027456px;}
._37{width:501.454886px;}
._40{width:504.760579px;}
._8b{width:577.041638px;}
._6d{width:613.732147px;}
._91{width:658.653811px;}
._65{width:668.931706px;}
._87{width:719.661197px;}
._67{width:741.503347px;}
._8e{width:762.699917px;}
._8f{width:764.098675px;}
._86{width:769.855104px;}
._89{width:775.073549px;}
._90{width:788.630746px;}
._8d{width:797.830272px;}
._88{width:808.751347px;}
._8c{width:881.648179px;}
._8a{width:894.237005px;}
._13{width:897.208297px;}
._66{width:1049.283994px;}
._70{width:1090.063181px;}
._6c{width:1103.512781px;}
._83{width:1156.934592px;}
._7d{width:1191.042778px;}
._82{width:1203.308813px;}
._6b{width:1475.797709px;}
._6a{width:1513.994573px;}
._19{width:2149.606610px;}
._92{width:2558.493000px;}
._14{width:2582.403000px;}
.fc5{color:rgb(148,54,52);}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(52,54,118);}
.fs7{font-size:35.865600px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fsa{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fsc{font-size:54.000000px;}
.fse{font-size:56.058000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fsd{font-size:78.135600px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.y12b{bottom:-695.971050px;}
.y14a{bottom:-637.383753px;}
.y149{bottom:-617.133834px;}
.y148{bottom:-596.883915px;}
.y147{bottom:-576.633996px;}
.y146{bottom:-556.384077px;}
.y145{bottom:-536.134158px;}
.y144{bottom:-515.884239px;}
.y143{bottom:-495.724500px;}
.y142{bottom:-475.473078px;}
.y141{bottom:-455.223159px;}
.y140{bottom:-434.973240px;}
.y13f{bottom:-414.723321px;}
.y13e{bottom:-394.473402px;}
.y13d{bottom:-374.312160px;}
.y92{bottom:-370.393050px;}
.y13c{bottom:-354.062241px;}
.y13b{bottom:-333.810819px;}
.y13a{bottom:-313.560900px;}
.yb8{bottom:-310.175436px;}
.y139{bottom:-293.310819px;}
.yb7{bottom:-291.006174px;}
.y138{bottom:-273.060900px;}
.yb6{bottom:-271.746732px;}
.yb5{bottom:-252.487290px;}
.y136{bottom:-252.091671px;}
.y135{bottom:-242.011050px;}
.yb4{bottom:-233.318028px;}
.y137{bottom:-231.841752px;}
.yb3{bottom:-214.058586px;}
.y134{bottom:-201.780900px;}
.yb2{bottom:-194.889324px;}
.yb1{bottom:-175.629882px;}
.y133{bottom:-166.048458px;}
.yb0{bottom:-156.370440px;}
.y132{bottom:-146.879196px;}
.yaf{bottom:-137.201178px;}
.y131{bottom:-127.619754px;}
.yae{bottom:-117.941736px;}
.y130{bottom:-108.450492px;}
.yad{bottom:-98.772474px;}
.y12f{bottom:-89.191050px;}
.yac{bottom:-75.013050px;}
.y12e{bottom:-52.381500px;}
.yab{bottom:-38.204250px;}
.y12d{bottom:-35.011050px;}
.yaa{bottom:-20.833800px;}
.y12c{bottom:-12.600537px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.425340px;}
.ya9{bottom:5.626200px;}
.y8{bottom:14.151273px;}
.y2{bottom:16.744467px;}
.ya8{bottom:25.156650px;}
.y4b{bottom:31.890000px;}
.ya7{bottom:44.596650px;}
.ya6{bottom:64.127100px;}
.ya5{bottom:88.615635px;}
.y101{bottom:88.993500px;}
.y223{bottom:91.318500px;}
.yce{bottom:99.160500px;}
.y22{bottom:102.823500px;}
.y25b{bottom:103.557000px;}
.y4a{bottom:103.621500px;}
.y80{bottom:107.125500px;}
.y1cd{bottom:107.607000px;}
.y100{bottom:107.823000px;}
.y222{bottom:108.579000px;}
.yba{bottom:114.617100px;}
.y19a{bottom:117.309000px;}
.ycd{bottom:117.990000px;}
.y21{bottom:120.711000px;}
.y25a{bottom:120.817500px;}
.y49{bottom:122.449500px;}
.y1cc{bottom:124.045500px;}
.y127{bottom:125.076000px;}
.y167{bottom:125.619000px;}
.y221{bottom:125.839500px;}
.y7f{bottom:125.955000px;}
.yff{bottom:126.652500px;}
.y199{bottom:136.138500px;}
.ycc{bottom:136.819500px;}
.y259{bottom:138.078000px;}
.y20{bottom:138.600000px;}
.y1cb{bottom:140.484000px;}
.y48{bottom:141.279000px;}
.y220{bottom:143.098500px;}
.y126{bottom:143.905500px;}
.y166{bottom:144.448500px;}
.y7e{bottom:144.784500px;}
.yfe{bottom:145.482000px;}
.ybb{bottom:150.436950px;}
.y198{bottom:154.968000px;}
.y258{bottom:155.338500px;}
.ycb{bottom:155.649000px;}
.y1f{bottom:156.487500px;}
.y1ca{bottom:156.922500px;}
.y47{bottom:160.108500px;}
.y21f{bottom:160.359000px;}
.y125{bottom:162.735000px;}
.y165{bottom:163.278000px;}
.y7d{bottom:163.614000px;}
.yfd{bottom:164.311500px;}
.y257{bottom:172.599000px;}
.y1c9{bottom:173.359500px;}
.y197{bottom:173.797500px;}
.y1e{bottom:174.375000px;}
.yca{bottom:174.478500px;}
.y21e{bottom:177.619500px;}
.y124{bottom:181.564500px;}
.y164{bottom:182.107500px;}
.y7c{bottom:182.443500px;}
.y1ef{bottom:183.141000px;}
.y46{bottom:183.421500px;}
.y1c8{bottom:189.798000px;}
.y256{bottom:189.858000px;}
.y1d{bottom:192.264000px;}
.y196{bottom:192.627000px;}
.yc9{bottom:193.308000px;}
.y21d{bottom:194.880000px;}
.y123{bottom:200.394000px;}
.y163{bottom:200.937000px;}
.yfc{bottom:201.166500px;}
.y7b{bottom:201.273000px;}
.y1ee{bottom:201.970500px;}
.yb9{bottom:203.356950px;}
.y255{bottom:207.118500px;}
.y1c{bottom:210.151500px;}
.y195{bottom:211.456500px;}
.yc8{bottom:212.136000px;}
.y21c{bottom:212.140500px;}
.y1c7{bottom:213.439500px;}
.y122{bottom:219.223500px;}
.y162{bottom:219.766500px;}
.yfb{bottom:220.009500px;}
.y7a{bottom:220.102500px;}
.y1ed{bottom:220.800000px;}
.y254{bottom:224.379000px;}
.y1b{bottom:228.039000px;}
.y21b{bottom:229.401000px;}
.y194{bottom:230.286000px;}
.yc7{bottom:230.965500px;}
.yfa{bottom:236.448000px;}
.y121{bottom:238.053000px;}
.y161{bottom:238.596000px;}
.y79{bottom:238.932000px;}
.y1ec{bottom:239.629500px;}
.y253{bottom:241.639500px;}
.y1c6{bottom:245.059500px;}
.y21a{bottom:246.661500px;}
.y193{bottom:249.115500px;}
.yc6{bottom:249.795000px;}
.yf9{bottom:252.886500px;}
.y120{bottom:256.882500px;}
.y160{bottom:257.425500px;}
.y78{bottom:257.761500px;}
.y1eb{bottom:258.459000px;}
.y45{bottom:258.571500px;}
.y252{bottom:258.900000px;}
.y219{bottom:263.922000px;}
.y192{bottom:267.945000px;}
.yc5{bottom:268.624500px;}
.yf8{bottom:269.325000px;}
.y11f{bottom:275.712000px;}
.y251{bottom:276.160500px;}
.y77{bottom:276.591000px;}
.y1ea{bottom:277.288500px;}
.y1c5{bottom:281.079000px;}
.y218{bottom:281.182500px;}
.y15f{bottom:284.623500px;}
.yf7{bottom:285.763500px;}
.y191{bottom:286.774500px;}
.yc4{bottom:287.454000px;}
.y250{bottom:293.421000px;}
.y11e{bottom:294.541500px;}
.y76{bottom:295.420500px;}
.y44{bottom:295.962000px;}
.y1e9{bottom:296.118000px;}
.y217{bottom:298.441500px;}
.y15e{bottom:298.819500px;}
.y1c4{bottom:299.908500px;}
.yf6{bottom:302.202000px;}
.y190{bottom:305.604000px;}
.yc3{bottom:306.283500px;}
.y1a{bottom:307.299000px;}
.y24f{bottom:310.681500px;}
.y1e8{bottom:314.947500px;}
.y43{bottom:315.418500px;}
.y216{bottom:315.702000px;}
.y11d{bottom:317.854500px;}
.yf5{bottom:318.640500px;}
.y75{bottom:318.732000px;}
.y1c3{bottom:318.738000px;}
.y15d{bottom:321.567000px;}
.y18f{bottom:324.433500px;}
.yc2{bottom:325.113000px;}
.y19{bottom:325.186500px;}
.y24e{bottom:327.940500px;}
.y215{bottom:332.962500px;}
.y1e7{bottom:333.777000px;}
.y42{bottom:334.876500px;}
.yf4{bottom:335.077500px;}
.y1c2{bottom:337.567500px;}
.y15c{bottom:338.005500px;}
.y74{bottom:338.907000px;}
.y18{bottom:343.074000px;}
.y18e{bottom:343.261500px;}
.yc1{bottom:343.942500px;}
.y24d{bottom:345.201000px;}
.y214{bottom:350.223000px;}
.y11c{bottom:351.478500px;}
.yf3{bottom:351.516000px;}
.y1e6{bottom:352.606500px;}
.y41{bottom:354.333000px;}
.y15b{bottom:354.444000px;}
.y1c1{bottom:356.397000px;}
.y17{bottom:360.963000px;}
.y18d{bottom:362.091000px;}
.y24c{bottom:362.461500px;}
.yc0{bottom:362.772000px;}
.y213{bottom:367.483500px;}
.yf2{bottom:367.954500px;}
.y11b{bottom:370.308000px;}
.y15a{bottom:370.882500px;}
.y1e5{bottom:371.436000px;}
.y73{bottom:372.531000px;}
.y40{bottom:373.789500px;}
.y1c0{bottom:375.226500px;}
.y24b{bottom:379.722000px;}
.y18c{bottom:380.920500px;}
.ybf{bottom:381.601500px;}
.ya4{bottom:382.195122px;}
.yf1{bottom:384.393000px;}
.y212{bottom:384.744000px;}
.y159{bottom:387.321000px;}
.y11a{bottom:389.137500px;}
.y1e4{bottom:390.265500px;}
.y72{bottom:391.360500px;}
.y3f{bottom:393.247500px;}
.y1bf{bottom:394.056000px;}
.y24a{bottom:396.982500px;}
.y16{bottom:399.024000px;}
.y18b{bottom:399.750000px;}
.yf0{bottom:400.831500px;}
.ya3{bottom:401.364384px;}
.y211{bottom:402.004500px;}
.y158{bottom:403.759500px;}
.ybe{bottom:404.914500px;}
.y119{bottom:407.967000px;}
.y1e3{bottom:409.095000px;}
.y71{bottom:410.190000px;}
.y3e{bottom:412.704000px;}
.y1be{bottom:412.885500px;}
.y249{bottom:414.243000px;}
.y15{bottom:416.913000px;}
.yef{bottom:417.270000px;}
.y18a{bottom:418.579500px;}
.y210{bottom:419.265000px;}
.y157{bottom:420.198000px;}
.ya2{bottom:420.623826px;}
.y118{bottom:426.796500px;}
.y1e2{bottom:427.923000px;}
.y70{bottom:429.019500px;}
.y248{bottom:431.503500px;}
.y1bd{bottom:431.715000px;}
.y3d{bottom:432.160500px;}
.yee{bottom:433.708500px;}
.y14{bottom:434.800500px;}
.y20e{bottom:436.524000px;}
.y20f{bottom:436.525500px;}
.y156{bottom:436.635000px;}
.y189{bottom:437.409000px;}
.y12a{bottom:438.119085px;}
.ybd{bottom:439.825500px;}
.ya1{bottom:439.883268px;}
.y117{bottom:445.626000px;}
.y129{bottom:447.748950px;}
.y6f{bottom:447.849000px;}
.y247{bottom:448.764000px;}
.yed{bottom:450.147000px;}
.y1bc{bottom:450.544500px;}
.y1e1{bottom:451.236000px;}
.y3c{bottom:451.618500px;}
.y155{bottom:453.073500px;}
.y20d{bottom:453.784500px;}
.y188{bottom:456.238500px;}
.ya0{bottom:459.054033px;}
.ybc{bottom:459.058500px;}
.y116{bottom:464.454000px;}
.y246{bottom:466.024500px;}
.y6e{bottom:466.678500px;}
.y1bb{bottom:469.374000px;}
.y154{bottom:469.512000px;}
.y13{bottom:470.622000px;}
.y20c{bottom:471.045000px;}
.y3b{bottom:471.075000px;}
.yeb{bottom:473.787000px;}
.y187{bottom:475.068000px;}
.y9f{bottom:478.313475px;}
.y8f{bottom:481.486500px;}
.yea{bottom:482.007000px;}
.y115{bottom:483.283500px;}
.y1e0{bottom:484.860000px;}
.y6d{bottom:485.508000px;}
.y153{bottom:485.950500px;}
.y1ba{bottom:488.203500px;}
.y20b{bottom:488.305500px;}
.y12{bottom:488.509500px;}
.yec{bottom:490.225500px;}
.y3a{bottom:490.533000px;}
.y186{bottom:493.897500px;}
.y9e{bottom:497.482737px;}
.y245{bottom:500.544000px;}
.y114{bottom:502.113000px;}
.y152{bottom:502.389000px;}
.y1df{bottom:503.689500px;}
.y6c{bottom:504.337500px;}
.y20a{bottom:505.566000px;}
.y11{bottom:506.397000px;}
.y1b9{bottom:507.033000px;}
.y39{bottom:509.989500px;}
.y9d{bottom:516.742179px;}
.y185{bottom:517.210500px;}
.y244{bottom:517.804500px;}
.y151{bottom:518.827500px;}
.y113{bottom:520.942500px;}
.ye9{bottom:521.845500px;}
.y1de{bottom:522.519000px;}
.y209{bottom:522.826500px;}
.y6b{bottom:523.167000px;}
.y10{bottom:524.286000px;}
.y38{bottom:529.446000px;}
.y1b8{bottom:530.346000px;}
.y243{bottom:535.065000px;}
.y9c{bottom:536.001621px;}
.y184{bottom:537.385500px;}
.y112{bottom:539.772000px;}
.y208{bottom:540.087000px;}
.y1dd{bottom:541.348500px;}
.y6a{bottom:541.996500px;}
.y14f{bottom:542.467500px;}
.y37{bottom:548.904000px;}
.y1b7{bottom:550.519500px;}
.y14e{bottom:550.687500px;}
.y242{bottom:552.325500px;}
.y9b{bottom:555.170883px;}
.y207{bottom:557.347500px;}
.y111{bottom:558.601500px;}
.y150{bottom:558.906000px;}
.yf{bottom:560.106000px;}
.y1dc{bottom:560.178000px;}
.y69{bottom:560.826000px;}
.ye8{bottom:563.418000px;}
.y36{bottom:568.360500px;}
.y241{bottom:569.586000px;}
.y9a{bottom:574.430325px;}
.y206{bottom:574.608000px;}
.y110{bottom:577.431000px;}
.ye{bottom:577.993500px;}
.y1db{bottom:579.007500px;}
.y68{bottom:579.655500px;}
.y183{bottom:579.708000px;}
.ye7{bottom:580.168500px;}
.y1b6{bottom:584.143500px;}
.y240{bottom:586.846500px;}
.y14d{bottom:590.526000px;}
.y205{bottom:591.867000px;}
.y99{bottom:593.689767px;}
.yd{bottom:595.882500px;}
.y182{bottom:596.146500px;}
.y10f{bottom:596.260500px;}
.ye6{bottom:596.607000px;}
.y1da{bottom:597.837000px;}
.y67{bottom:598.485000px;}
.y1b5{bottom:602.973000px;}
.y23f{bottom:604.107000px;}
.y35{bottom:605.751000px;}
.y204{bottom:609.127500px;}
.y181{bottom:612.585000px;}
.y98{bottom:612.859029px;}
.ye5{bottom:613.045500px;}
.yc{bottom:613.770000px;}
.y10e{bottom:615.090000px;}
.y1d9{bottom:616.666500px;}
.y66{bottom:617.314500px;}
.y23e{bottom:621.366000px;}
.y1b4{bottom:621.802500px;}
.y14c{bottom:623.208000px;}
.y34{bottom:625.207500px;}
.y203{bottom:626.388000px;}
.y180{bottom:629.023500px;}
.ye4{bottom:629.484000px;}
.yb{bottom:631.657500px;}
.y97{bottom:632.118471px;}
.y10d{bottom:633.919500px;}
.y1d8{bottom:635.496000px;}
.y65{bottom:636.144000px;}
.y23d{bottom:638.626500px;}
.y1b3{bottom:640.632000px;}
.y14b{bottom:642.441000px;}
.y202{bottom:643.648500px;}
.y33{bottom:644.664000px;}
.y17f{bottom:645.462000px;}
.ye3{bottom:646.234500px;}
.ya{bottom:649.546500px;}
.y96{bottom:651.287733px;}
.y10c{bottom:652.749000px;}
.y1d7{bottom:654.325500px;}
.y64{bottom:654.973500px;}
.y23c{bottom:655.887000px;}
.y1b2{bottom:659.461500px;}
.y201{bottom:660.909000px;}
.y17e{bottom:661.900500px;}
.ye2{bottom:663.297000px;}
.y32{bottom:664.122000px;}
.y128{bottom:664.870500px;}
.y95{bottom:670.547175px;}
.y10b{bottom:671.578500px;}
.y7{bottom:671.917464px;}
.y23b{bottom:673.147500px;}
.y1d6{bottom:673.155000px;}
.y63{bottom:673.801500px;}
.y200{bottom:678.169500px;}
.y1b1{bottom:678.291000px;}
.y17d{bottom:678.339000px;}
.ye1{bottom:680.047500px;}
.y31{bottom:683.578500px;}
.y94{bottom:689.806617px;}
.y10a{bottom:690.408000px;}
.y1d5{bottom:691.984500px;}
.y62{bottom:692.631000px;}
.y17c{bottom:694.777500px;}
.y1ff{bottom:695.430000px;}
.ye0{bottom:696.486000px;}
.y1b0{bottom:701.604000px;}
.y30{bottom:703.035000px;}
.y23a{bottom:707.668500px;}
.y93{bottom:708.977382px;}
.y109{bottom:709.237500px;}
.y1d4{bottom:710.814000px;}
.y17b{bottom:711.216000px;}
.y61{bottom:711.460500px;}
.y1fe{bottom:712.690500px;}
.ydf{bottom:713.236500px;}
.y2f{bottom:722.493000px;}
.y239{bottom:724.929000px;}
.y17a{bottom:727.654500px;}
.y108{bottom:728.067000px;}
.y1d3{bottom:729.643500px;}
.y1fd{bottom:729.951000px;}
.y60{bottom:730.290000px;}
.yde{bottom:730.300500px;}
.y1af{bottom:735.228000px;}
.y2e{bottom:741.949500px;}
.y238{bottom:742.189500px;}
.y179{bottom:744.091500px;}
.y107{bottom:746.896500px;}
.y1fc{bottom:747.210000px;}
.y1d2{bottom:748.473000px;}
.y5f{bottom:749.119500px;}
.y1ae{bottom:754.057500px;}
.ydc{bottom:754.252500px;}
.y237{bottom:759.450000px;}
.y178{bottom:760.530000px;}
.y2d{bottom:761.407500px;}
.ydb{bottom:762.472500px;}
.y91{bottom:763.697085px;}
.y1fb{bottom:764.470500px;}
.y106{bottom:765.726000px;}
.ydd{bottom:770.691000px;}
.y1d1{bottom:771.784500px;}
.y5e{bottom:772.432500px;}
.y1ad{bottom:772.887000px;}
.y90{bottom:773.326950px;}
.y236{bottom:776.709000px;}
.y177{bottom:776.968500px;}
.y2c{bottom:780.864000px;}
.y1fa{bottom:781.731000px;}
.y105{bottom:784.555500px;}
.y1ac{bottom:791.716500px;}
.y176{bottom:793.407000px;}
.y235{bottom:793.969500px;}
.y2b{bottom:800.320500px;}
.yda{bottom:802.311000px;}
.y104{bottom:803.385000px;}
.y1f9{bottom:803.475000px;}
.y1d0{bottom:805.408500px;}
.y5d{bottom:806.056500px;}
.y175{bottom:809.845500px;}
.y234{bottom:811.230000px;}
.y2a{bottom:819.778500px;}
.y103{bottom:822.214500px;}
.y1cf{bottom:824.238000px;}
.y5c{bottom:824.886000px;}
.y174{bottom:826.284000px;}
.y233{bottom:828.490500px;}
.y1f8{bottom:837.099000px;}
.y1ab{bottom:837.178500px;}
.yd9{bottom:839.250000px;}
.y102{bottom:841.044000px;}
.y173{bottom:842.722500px;}
.y1ce{bottom:843.067500px;}
.y5b{bottom:843.715500px;}
.y232{bottom:845.751000px;}
.y1aa{bottom:853.617000px;}
.y29{bottom:857.725500px;}
.yd8{bottom:858.079500px;}
.y172{bottom:859.161000px;}
.y8e{bottom:859.873500px;}
.y5a{bottom:862.545000px;}
.y231{bottom:863.011500px;}
.y1f7{bottom:863.638500px;}
.y1a9{bottom:870.055500px;}
.y28{bottom:873.865500px;}
.y171{bottom:875.599500px;}
.yd7{bottom:876.909000px;}
.y8d{bottom:878.703000px;}
.y230{bottom:880.272000px;}
.y59{bottom:881.374500px;}
.y1a8{bottom:886.492500px;}
.y1f6{bottom:890.179500px;}
.y170{bottom:892.038000px;}
.y27{bottom:894.345000px;}
.yd6{bottom:895.738500px;}
.y8c{bottom:897.532500px;}
.y58{bottom:900.204000px;}
.y1a7{bottom:902.931000px;}
.y26{bottom:906.145500px;}
.y16f{bottom:908.475000px;}
.yd5{bottom:914.568000px;}
.y22e{bottom:914.791500px;}
.y22f{bottom:914.793000px;}
.y8b{bottom:916.362000px;}
.y1f5{bottom:916.720500px;}
.y57{bottom:919.033500px;}
.y1a6{bottom:919.369500px;}
.y16e{bottom:924.913500px;}
.y25{bottom:926.623500px;}
.y22d{bottom:932.052000px;}
.yd4{bottom:933.397500px;}
.y8a{bottom:935.191500px;}
.y1a5{bottom:935.808000px;}
.y56{bottom:937.863000px;}
.y24{bottom:938.424000px;}
.y16d{bottom:941.352000px;}
.y1f4{bottom:943.261500px;}
.y22c{bottom:949.312500px;}
.yd3{bottom:952.227000px;}
.y1a4{bottom:952.246500px;}
.y89{bottom:954.021000px;}
.y55{bottom:956.692500px;}
.y16c{bottom:957.790500px;}
.y23{bottom:958.903500px;}
.y22b{bottom:966.573000px;}
.y1a3{bottom:968.685000px;}
.y1f3{bottom:969.801000px;}
.yd2{bottom:971.056500px;}
.y88{bottom:972.849000px;}
.y54{bottom:975.522000px;}
.y16b{bottom:981.432000px;}
.y22a{bottom:983.833500px;}
.y1a2{bottom:985.123500px;}
.y16a{bottom:989.650500px;}
.yd1{bottom:989.886000px;}
.y87{bottom:991.678500px;}
.y53{bottom:994.351500px;}
.y1f2{bottom:996.342000px;}
.y6{bottom:998.460000px;}
.y229{bottom:1001.094000px;}
.y1a1{bottom:1001.562000px;}
.y86{bottom:1010.508000px;}
.y52{bottom:1013.181000px;}
.yd0{bottom:1013.199000px;}
.y1f1{bottom:1013.916000px;}
.y1a0{bottom:1018.000500px;}
.y228{bottom:1018.354500px;}
.y19e{bottom:1026.219000px;}
.y85{bottom:1029.337500px;}
.y169{bottom:1029.489000px;}
.y1f0{bottom:1031.490000px;}
.y51{bottom:1032.010500px;}
.ycf{bottom:1033.372500px;}
.y19d{bottom:1034.439000px;}
.y227{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y84{bottom:1048.167000px;}
.y168{bottom:1048.722000px;}
.y50{bottom:1050.840000px;}
.y19f{bottom:1050.876000px;}
.y226{bottom:1052.875500px;}
.y83{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y4f{bottom:1069.669500px;}
.y225{bottom:1070.134500px;}
.y19c{bottom:1074.517500px;}
.y82{bottom:1085.826000px;}
.y224{bottom:1087.395000px;}
.y4e{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.y81{bottom:1104.655500px;}
.y19b{bottom:1106.137500px;}
.y4d{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y4c{bottom:1173.397500px;}
.h7{height:25.508090px;}
.hc{height:26.110157px;}
.h13{height:27.974981px;}
.ha{height:30.461558px;}
.hb{height:30.712615px;}
.h9{height:33.112997px;}
.h8{height:34.199443px;}
.hd{height:34.813397px;}
.h16{height:34.951465px;}
.h12{height:35.100320px;}
.h15{height:35.255391px;}
.he{height:38.896243px;}
.hf{height:39.165235px;}
.h18{height:39.418945px;}
.h28{height:39.488026px;}
.h19{height:39.761719px;}
.h10{height:43.217759px;}
.h1a{height:43.269961px;}
.h11{height:43.516637px;}
.h4{height:43.875290px;}
.h17{height:43.886426px;}
.h21{height:44.268047px;}
.h1d{height:48.737558px;}
.h1e{height:48.743558px;}
.h2{height:50.930649px;}
.h1b{height:54.328659px;}
.h6{height:54.541601px;}
.h1c{height:71.770243px;}
.h25{height:71.776243px;}
.h27{height:72.039235px;}
.h5{height:77.792486px;}
.h23{height:84.208910px;}
.h24{height:84.563618px;}
.h22{height:84.590531px;}
.h20{height:84.945239px;}
.h3{height:102.503837px;}
.h26{height:104.650243px;}
.h14{height:354.745500px;}
.h1f{height:397.315500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:171.557860px;}
.w5{width:562.863300px;}
.w4{width:578.629500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x44{left:-108.394500px;}
.x49{left:-76.535401px;}
.x9a{left:-70.555200px;}
.x9c{left:-38.695200px;}
.x0{left:0.000000px;}
.x4a{left:3.565500px;}
.x3{left:29.274117px;}
.x1{left:54.000000px;}
.x2{left:58.186140px;}
.xb7{left:72.051000px;}
.xb2{left:76.557000px;}
.xb1{left:82.225500px;}
.xb3{left:84.822000px;}
.x4c{left:85.890000px;}
.x45{left:87.174410px;}
.xb5{left:90.718500px;}
.xb0{left:91.942500px;}
.xb4{left:93.873000px;}
.xb6{left:96.805500px;}
.x48{left:111.655500px;}
.x46{left:119.034305px;}
.x9d{left:125.015709px;}
.xa1{left:126.904800px;}
.xa5{left:130.234035px;}
.xa6{left:131.944449px;}
.xa3{left:134.374800px;}
.xa2{left:136.444341px;}
.xa8{left:139.594719px;}
.x4b{left:142.705500px;}
.x9e{left:143.824800px;}
.xaa{left:145.262532px;}
.xa7{left:147.874746px;}
.xac{left:151.743000px;}
.xa4{left:154.624719px;}
.x43{left:157.143000px;}
.x99{left:165.025200px;}
.x9f{left:225.095016px;}
.xa9{left:226.265214px;}
.xab{left:230.042253px;}
.xad{left:241.764000px;}
.x6{left:249.832500px;}
.x4{left:250.897500px;}
.xcd{left:262.824000px;}
.x6c{left:268.039500px;}
.x5{left:271.221000px;}
.xc1{left:272.451000px;}
.x6e{left:273.843000px;}
.xc2{left:276.055500px;}
.x6d{left:277.245000px;}
.xc0{left:279.154500px;}
.x74{left:281.004000px;}
.x9{left:282.786000px;}
.xbf{left:284.299500px;}
.xce{left:285.721500px;}
.x6b{left:286.989000px;}
.x6f{left:288.253500px;}
.x53{left:289.288500px;}
.x76{left:291.091500px;}
.x75{left:295.053000px;}
.xbe{left:301.690500px;}
.x54{left:304.233000px;}
.xa0{left:309.423837px;}
.x8{left:312.442500px;}
.xea{left:317.904000px;}
.x33{left:323.161500px;}
.x65{left:324.280500px;}
.x8d{left:327.331500px;}
.x12{left:330.883500px;}
.x63{left:332.991000px;}
.x77{left:335.464500px;}
.x13{left:338.355000px;}
.x14{left:342.166500px;}
.xd1{left:346.698000px;}
.x64{left:347.935500px;}
.x15{left:349.638000px;}
.xe4{left:350.748000px;}
.xec{left:352.321500px;}
.x16{left:353.448000px;}
.xe7{left:354.507000px;}
.xcb{left:359.196000px;}
.x17{left:360.921000px;}
.xe6{left:362.926500px;}
.x7{left:366.190500px;}
.x81{left:367.209000px;}
.x78{left:369.028500px;}
.x79{left:372.705000px;}
.xeb{left:374.325000px;}
.xd2{left:375.981000px;}
.xe8{left:379.476000px;}
.x82{left:382.153500px;}
.xd6{left:384.018000px;}
.x83{left:385.956000px;}
.x7a{left:387.649500px;}
.xaf{left:389.725500px;}
.xf0{left:392.062500px;}
.x23{left:394.288500px;}
.xae{left:396.067500px;}
.x93{left:397.836000px;}
.xd7{left:398.962500px;}
.x5c{left:400.039500px;}
.x94{left:401.646000px;}
.x38{left:402.732000px;}
.xe0{left:407.220000px;}
.x24{left:409.233000px;}
.x31{left:412.570500px;}
.x39{left:413.962500px;}
.x5d{left:414.984000px;}
.x95{left:416.590500px;}
.xc6{left:418.656000px;}
.xda{left:419.968500px;}
.x84{left:421.416000px;}
.xe1{left:425.974500px;}
.x32{left:427.515000px;}
.x3a{left:428.905500px;}
.x88{left:430.816500px;}
.x3b{left:432.664500px;}
.xcf{left:434.727000px;}
.x85{left:436.360500px;}
.xe2{left:440.919000px;}
.xd0{left:442.200000px;}
.x67{left:444.658500px;}
.x89{left:445.759500px;}
.x3c{left:447.609000px;}
.x8a{left:449.571000px;}
.x70{left:452.358000px;}
.xed{left:453.490500px;}
.x1e{left:454.579500px;}
.xc7{left:459.091500px;}
.x86{left:460.843500px;}
.xe3{left:463.485000px;}
.x8b{left:464.515500px;}
.x87{left:468.316500px;}
.x1f{left:469.522500px;}
.x60{left:472.458000px;}
.xc8{left:474.036000px;}
.xa{left:475.557000px;}
.xb{left:483.028500px;}
.xc{left:486.787500px;}
.x66{left:487.851000px;}
.xd{left:494.259000px;}
.x55{left:501.058500px;}
.xba{left:503.016000px;}
.x56{left:504.870000px;}
.x96{left:509.202000px;}
.xc3{left:515.199000px;}
.xbb{left:517.960500px;}
.x57{left:519.813000px;}
.xbc{left:521.752500px;}
.x97{left:524.146500px;}
.x58{left:527.434500px;}
.x8e{left:531.834000px;}
.xc4{left:533.953500px;}
.xbd{left:536.697000px;}
.x8f{left:539.305500px;}
.x59{left:542.379000px;}
.x98{left:546.711000px;}
.xfb{left:554.689500px;}
.xee{left:555.780000px;}
.x68{left:557.515500px;}
.x3d{left:560.706000px;}
.x71{left:562.572000px;}
.x20{left:566.940000px;}
.x3e{left:568.179000px;}
.xef{left:570.723000px;}
.x3f{left:571.888500px;}
.x2b{left:573.126000px;}
.xd3{left:576.291000px;}
.x40{left:579.360000px;}
.x21{left:581.884500px;}
.x41{left:583.071000px;}
.x18{left:585.126000px;}
.x47{left:586.672831px;}
.x2c{left:588.070500px;}
.x19{left:592.597500px;}
.x69{left:593.916000px;}
.xd4{left:595.045500px;}
.x1a{left:596.352000px;}
.x42{left:598.014000px;}
.x22{left:600.606000px;}
.xfc{left:602.074500px;}
.x1b{left:611.296500px;}
.xd5{left:613.800000px;}
.x2f{left:617.818500px;}
.xe5{left:622.671000px;}
.xe9{left:625.086000px;}
.x36{left:626.400000px;}
.x30{left:632.763000px;}
.x25{left:634.011000px;}
.x37{left:641.343000px;}
.x26{left:643.851000px;}
.xe{left:651.981000px;}
.x9b{left:653.405331px;}
.xf{left:659.452500px;}
.x10{left:663.252000px;}
.x11{left:670.725000px;}
.xcc{left:672.043500px;}
.x51{left:690.967500px;}
.xdb{left:692.946000px;}
.x61{left:694.272000px;}
.xf4{left:698.875500px;}
.x52{left:705.912000px;}
.xdc{left:707.889000px;}
.x62{left:709.216500px;}
.xdd{left:711.655500px;}
.x7f{left:718.551000px;}
.xd8{left:720.745500px;}
.x73{left:725.076000px;}
.xde{left:726.598500px;}
.x2d{left:729.349500px;}
.x6a{left:730.678500px;}
.x80{left:733.494000px;}
.x72{left:735.331500px;}
.xf9{left:736.500000px;}
.xf8{left:737.581500px;}
.x7b{left:740.077500px;}
.x2e{left:744.292500px;}
.xdf{left:745.309500px;}
.x7c{left:747.550500px;}
.xb8{left:748.899000px;}
.x90{left:750.151500px;}
.x7d{left:751.230000px;}
.x91{left:753.961500px;}
.xfd{left:758.535000px;}
.xf1{left:761.709000px;}
.xf7{left:762.723000px;}
.xb9{left:763.843500px;}
.x7e{left:766.174500px;}
.x5e{left:767.289000px;}
.x92{left:768.906000px;}
.x4d{left:772.005000px;}
.x5f{left:774.760500px;}
.x34{left:777.273000px;}
.x4f{left:782.059500px;}
.xc5{left:783.084000px;}
.x4e{left:786.949500px;}
.xf2{left:789.775500px;}
.x1c{left:790.890000px;}
.x35{left:792.216000px;}
.xfa{left:795.352500px;}
.x50{left:797.002500px;}
.x27{left:799.441500px;}
.xc9{left:801.660000px;}
.x1d{left:805.833000px;}
.x8c{left:806.913000px;}
.xf3{left:808.845000px;}
.xf5{left:810.330000px;}
.x28{left:814.384500px;}
.xca{left:816.604500px;}
.x29{left:818.046000px;}
.x5a{left:819.052500px;}
.xfe{left:823.801500px;}
.xd9{left:831.894000px;}
.x2a{left:832.990500px;}
.x5b{left:833.997000px;}
.xf6{left:837.228000px;}
@media print{
.v7{vertical-align:-33.322667pt;}
.v2{vertical-align:-15.429333pt;}
.v4{vertical-align:-1.114667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.250667pt;}
.v5{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:29.221333pt;}
.v8{vertical-align:36.157504pt;}
.ls4f{letter-spacing:-0.229792pt;}
.ls2b{letter-spacing:-0.159744pt;}
.ls4b{letter-spacing:-0.154976pt;}
.ls42{letter-spacing:-0.138944pt;}
.ls2c{letter-spacing:-0.131962pt;}
.ls27{letter-spacing:-0.122912pt;}
.ls43{letter-spacing:-0.112224pt;}
.ls4c{letter-spacing:-0.106880pt;}
.ls26{letter-spacing:-0.101536pt;}
.ls46{letter-spacing:-0.085504pt;}
.ls3f{letter-spacing:-0.080864pt;}
.ls44{letter-spacing:-0.080160pt;}
.ls1d{letter-spacing:-0.076608pt;}
.ls2a{letter-spacing:-0.074816pt;}
.ls28{letter-spacing:-0.069472pt;}
.ls24{letter-spacing:-0.064128pt;}
.ls49{letter-spacing:-0.053440pt;}
.ls48{letter-spacing:-0.052800pt;}
.ls20{letter-spacing:-0.048096pt;}
.ls45{letter-spacing:-0.042752pt;}
.ls29{letter-spacing:-0.037408pt;}
.ls21{letter-spacing:-0.032064pt;}
.ls23{letter-spacing:-0.026720pt;}
.ls25{letter-spacing:-0.021376pt;}
.ls41{letter-spacing:-0.019200pt;}
.ls1f{letter-spacing:-0.016032pt;}
.ls40{letter-spacing:-0.012768pt;}
.ls22{letter-spacing:-0.010688pt;}
.ls47{letter-spacing:-0.004800pt;}
.ls1e{letter-spacing:-0.004256pt;}
.ls6{letter-spacing:0.000000pt;}
.ls78{letter-spacing:0.000078pt;}
.ls5a{letter-spacing:0.000425pt;}
.ls61{letter-spacing:0.000447pt;}
.ls77{letter-spacing:0.000585pt;}
.ls65{letter-spacing:0.000621pt;}
.ls59{letter-spacing:0.000711pt;}
.ls63{letter-spacing:0.000801pt;}
.ls68{letter-spacing:0.000921pt;}
.ls5d{letter-spacing:0.001512pt;}
.ls56{letter-spacing:0.001628pt;}
.ls64{letter-spacing:0.001825pt;}
.ls57{letter-spacing:0.002030pt;}
.ls5e{letter-spacing:0.002078pt;}
.ls67{letter-spacing:0.002262pt;}
.ls72{letter-spacing:0.002397pt;}
.ls62{letter-spacing:0.002525pt;}
.ls71{letter-spacing:0.002538pt;}
.ls55{letter-spacing:0.003187pt;}
.ls6b{letter-spacing:0.004267pt;}
.ls39{letter-spacing:0.005344pt;}
.ls19{letter-spacing:0.009600pt;}
.ls11{letter-spacing:0.010688pt;}
.ls16{letter-spacing:0.014400pt;}
.lsd{letter-spacing:0.016032pt;}
.ls18{letter-spacing:0.019200pt;}
.lsb{letter-spacing:0.021376pt;}
.ls37{letter-spacing:0.024000pt;}
.lsf{letter-spacing:0.026720pt;}
.ls1b{letter-spacing:0.032064pt;}
.ls15{letter-spacing:0.033600pt;}
.ls3d{letter-spacing:0.037408pt;}
.ls13{letter-spacing:0.038400pt;}
.ls1a{letter-spacing:0.042752pt;}
.ls17{letter-spacing:0.043200pt;}
.lse{letter-spacing:0.048096pt;}
.ls14{letter-spacing:0.052800pt;}
.ls3e{letter-spacing:0.053134pt;}
.lsc{letter-spacing:0.053440pt;}
.ls34{letter-spacing:0.055328pt;}
.ls10{letter-spacing:0.058784pt;}
.ls8{letter-spacing:0.059584pt;}
.ls38{letter-spacing:0.062400pt;}
.ls2d{letter-spacing:0.069454pt;}
.ls1c{letter-spacing:0.069472pt;}
.ls12{letter-spacing:0.076800pt;}
.ls3b{letter-spacing:0.096192pt;}
.ls3a{letter-spacing:0.106880pt;}
.ls4d{letter-spacing:0.122912pt;}
.ls4e{letter-spacing:0.138944pt;}
.ls4a{letter-spacing:0.144288pt;}
.ls36{letter-spacing:0.148960pt;}
.lsa{letter-spacing:0.157472pt;}
.ls3c{letter-spacing:0.160320pt;}
.ls35{letter-spacing:0.161728pt;}
.ls9{letter-spacing:0.170240pt;}
.ls7{letter-spacing:1.133683pt;}
.ls1{letter-spacing:1.654338pt;}
.ls2{letter-spacing:9.298933pt;}
.ls60{letter-spacing:10.542759pt;}
.ls5{letter-spacing:10.626533pt;}
.ls5f{letter-spacing:10.662487pt;}
.ls75{letter-spacing:11.652643pt;}
.ls66{letter-spacing:11.722916pt;}
.ls70{letter-spacing:11.737411pt;}
.ls69{letter-spacing:11.769480pt;}
.ls6c{letter-spacing:11.801414pt;}
.ls51{letter-spacing:11.954133pt;}
.ls54{letter-spacing:11.959467pt;}
.ls74{letter-spacing:12.007392pt;}
.ls58{letter-spacing:12.034342pt;}
.ls6a{letter-spacing:12.077058pt;}
.ls73{letter-spacing:12.139747pt;}
.ls53{letter-spacing:12.188578pt;}
.ls32{letter-spacing:12.528078pt;}
.ls2e{letter-spacing:12.533411pt;}
.ls30{letter-spacing:12.553600pt;}
.ls5b{letter-spacing:13.064408pt;}
.ls52{letter-spacing:13.132382pt;}
.ls6f{letter-spacing:13.864408pt;}
.ls76{letter-spacing:13.979441pt;}
.ls6d{letter-spacing:14.272251pt;}
.ls2f{letter-spacing:14.613867pt;}
.ls6e{letter-spacing:14.768983pt;}
.ls5c{letter-spacing:15.030421pt;}
.ls0{letter-spacing:51.035733pt;}
.ls3{letter-spacing:55.787733pt;}
.ls4{letter-spacing:57.174803pt;}
.ls50{letter-spacing:235.487155pt;}
.ls33{letter-spacing:390.523200pt;}
.ls31{letter-spacing:408.453867pt;}
.wsed{word-spacing:-13.283467pt;}
.ws8f{word-spacing:-11.955200pt;}
.ws4e{word-spacing:-10.810240pt;}
.wsad{word-spacing:-10.801728pt;}
.ws2c{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.wscb{word-spacing:-3.361376pt;}
.wsca{word-spacing:-3.008672pt;}
.wsc9{word-spacing:-2.981952pt;}
.ws6b{word-spacing:-2.773536pt;}
.ws45{word-spacing:-2.391024pt;}
.ws66{word-spacing:-2.180352pt;}
.wsce{word-spacing:-2.116224pt;}
.wscf{word-spacing:-2.073472pt;}
.ws48{word-spacing:-1.912819pt;}
.ws136{word-spacing:-1.817190pt;}
.ws2f{word-spacing:-1.806551pt;}
.ws13e{word-spacing:-1.769370pt;}
.ws103{word-spacing:-1.700284pt;}
.ws3{word-spacing:-1.696326pt;}
.ws132{word-spacing:-1.673728pt;}
.ws50{word-spacing:-1.594016pt;}
.ws23{word-spacing:-1.578086pt;}
.ws5c{word-spacing:-1.533728pt;}
.ws7c{word-spacing:-1.469600pt;}
.ws137{word-spacing:-1.434624pt;}
.ws7d{word-spacing:-1.394784pt;}
.ws133{word-spacing:-1.291162pt;}
.ws9d{word-spacing:-1.275213pt;}
.ws3a{word-spacing:-1.222079pt;}
.ws2{word-spacing:-1.175671pt;}
.wsa3{word-spacing:-1.168945pt;}
.ws6f{word-spacing:-1.148960pt;}
.ws135{word-spacing:-1.147699pt;}
.ws70{word-spacing:-1.074144pt;}
.ws3c{word-spacing:-1.009543pt;}
.ws109{word-spacing:-0.956410pt;}
.ws6e{word-spacing:-0.935200pt;}
.ws38{word-spacing:-0.926914pt;}
.ws39{word-spacing:-0.903276pt;}
.ws80{word-spacing:-0.855040pt;}
.ws4b{word-spacing:-0.850142pt;}
.ws81{word-spacing:-0.839008pt;}
.wsc0{word-spacing:-0.807637pt;}
.wsee{word-spacing:-0.743874pt;}
.ws128{word-spacing:-0.717312pt;}
.ws149{word-spacing:-0.669491pt;}
.wsbf{word-spacing:-0.637608pt;}
.ws86{word-spacing:-0.625248pt;}
.ws16{word-spacing:-0.621670pt;}
.ws88{word-spacing:-0.582496pt;}
.ws7e{word-spacing:-0.577152pt;}
.ws105{word-spacing:-0.531339pt;}
.wsef{word-spacing:-0.478205pt;}
.ws147{word-spacing:-0.382566pt;}
.ws108{word-spacing:-0.371937pt;}
.ws18{word-spacing:-0.334746pt;}
.ws107{word-spacing:-0.318803pt;}
.ws14b{word-spacing:-0.286925pt;}
.ws2d{word-spacing:-0.265669pt;}
.ws5e{word-spacing:-0.261856pt;}
.ws11d{word-spacing:-0.239104pt;}
.ws34{word-spacing:-0.212535pt;}
.ws120{word-spacing:-0.191283pt;}
.ws5f{word-spacing:-0.187040pt;}
.ws85{word-spacing:-0.171008pt;}
.ws7a{word-spacing:-0.168000pt;}
.ws7b{word-spacing:-0.165664pt;}
.ws35{word-spacing:-0.159402pt;}
.ws11f{word-spacing:-0.143462pt;}
.ws36{word-spacing:-0.106268pt;}
.ws21{word-spacing:-0.095642pt;}
.ws57{word-spacing:-0.072352pt;}
.wsc5{word-spacing:-0.068096pt;}
.wsde{word-spacing:-0.058784pt;}
.ws29{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.wsd4{word-spacing:-0.026720pt;}
.ws13a{word-spacing:-0.010231pt;}
.ws13d{word-spacing:-0.009139pt;}
.ws148{word-spacing:-0.007381pt;}
.ws160{word-spacing:-0.007270pt;}
.ws144{word-spacing:-0.005052pt;}
.ws11c{word-spacing:-0.004727pt;}
.ws156{word-spacing:-0.002654pt;}
.ws139{word-spacing:-0.002466pt;}
.ws141{word-spacing:-0.002193pt;}
.ws5{word-spacing:-0.002181pt;}
.ws124{word-spacing:-0.002159pt;}
.ws12b{word-spacing:-0.001783pt;}
.ws161{word-spacing:-0.001638pt;}
.ws11e{word-spacing:-0.001126pt;}
.ws2b{word-spacing:-0.000963pt;}
.ws117{word-spacing:-0.000119pt;}
.ws0{word-spacing:0.000000pt;}
.ws14c{word-spacing:0.002825pt;}
.wscd{word-spacing:0.026720pt;}
.wsd5{word-spacing:0.037408pt;}
.ws1a{word-spacing:0.047821pt;}
.wsd1{word-spacing:0.048096pt;}
.ws49{word-spacing:0.053134pt;}
.ws71{word-spacing:0.064128pt;}
.wsd0{word-spacing:0.074816pt;}
.wsd9{word-spacing:0.090848pt;}
.ws24{word-spacing:0.095642pt;}
.ws8b{word-spacing:0.101536pt;}
.ws28{word-spacing:0.106268pt;}
.wsd7{word-spacing:0.133600pt;}
.ws4f{word-spacing:0.143462pt;}
.ws79{word-spacing:0.148800pt;}
.ws6a{word-spacing:0.149632pt;}
.ws37{word-spacing:0.159402pt;}
.wsd2{word-spacing:0.163200pt;}
.ws7{word-spacing:0.185968pt;}
.ws17{word-spacing:0.191283pt;}
.wsd3{word-spacing:0.211200pt;}
.ws3b{word-spacing:0.212535pt;}
.ws10a{word-spacing:0.239104pt;}
.ws9{word-spacing:0.260355pt;}
.ws41{word-spacing:0.265669pt;}
.ws14{word-spacing:0.286925pt;}
.wsa1{word-spacing:0.318803pt;}
.ws116{word-spacing:0.334746pt;}
.wsa4{word-spacing:0.371937pt;}
.ws8a{word-spacing:0.379424pt;}
.ws13{word-spacing:0.382566pt;}
.wsc8{word-spacing:0.417600pt;}
.ws22{word-spacing:0.430387pt;}
.wsc6{word-spacing:0.456000pt;}
.wsec{word-spacing:0.478205pt;}
.wsc7{word-spacing:0.499200pt;}
.ws4c{word-spacing:0.531339pt;}
.ws10d{word-spacing:0.573850pt;}
.ws30{word-spacing:0.584473pt;}
.ws90{word-spacing:0.594133pt;}
.ws93{word-spacing:0.599467pt;}
.ws12{word-spacing:0.621670pt;}
.ws89{word-spacing:0.796256pt;}
.ws33{word-spacing:0.797008pt;}
.ws121{word-spacing:0.812954pt;}
.ws4d{word-spacing:0.850142pt;}
.ws111{word-spacing:0.860774pt;}
.wsa9{word-spacing:0.903276pt;}
.ws110{word-spacing:0.908595pt;}
.ws5b{word-spacing:0.993984pt;}
.ws69{word-spacing:0.999328pt;}
.ws10e{word-spacing:1.004237pt;}
.ws145{word-spacing:1.052058pt;}
.wsa6{word-spacing:1.062677pt;}
.ws5a{word-spacing:1.063456pt;}
.ws77{word-spacing:1.080000pt;}
.ws123{word-spacing:1.099878pt;}
.ws78{word-spacing:1.104000pt;}
.ws76{word-spacing:1.108800pt;}
.wsa5{word-spacing:1.115811pt;}
.ws15{word-spacing:1.195520pt;}
.ws1e{word-spacing:1.291162pt;}
.ws40{word-spacing:1.328347pt;}
.ws65{word-spacing:1.357376pt;}
.ws3d{word-spacing:1.434614pt;}
.ws153{word-spacing:1.482445pt;}
.ws42{word-spacing:1.487748pt;}
.ws15e{word-spacing:1.530266pt;}
.ws9f{word-spacing:1.540882pt;}
.ws163{word-spacing:1.557263pt;}
.ws162{word-spacing:1.578086pt;}
.ws2a{word-spacing:1.594016pt;}
.ws60{word-spacing:1.624576pt;}
.ws13f{word-spacing:1.625907pt;}
.ws9e{word-spacing:1.647150pt;}
.ws13b{word-spacing:1.673728pt;}
.wsaa{word-spacing:1.700284pt;}
.ws8{word-spacing:1.785293pt;}
.ws14d{word-spacing:1.817190pt;}
.ws1f{word-spacing:1.865011pt;}
.ws140{word-spacing:1.912832pt;}
.ws5d{word-spacing:1.955904pt;}
.ws61{word-spacing:2.004000pt;}
.ws165{word-spacing:2.008474pt;}
.ws20{word-spacing:2.104115pt;}
.ws9a{word-spacing:2.125355pt;}
.ws14f{word-spacing:2.199757pt;}
.ws1b{word-spacing:2.247578pt;}
.wsa7{word-spacing:2.284756pt;}
.ws14e{word-spacing:2.295398pt;}
.ws3e{word-spacing:2.337890pt;}
.ws152{word-spacing:2.343219pt;}
.ws9b{word-spacing:2.391024pt;}
.ws126{word-spacing:2.391040pt;}
.wsff{word-spacing:2.444158pt;}
.ws11a{word-spacing:2.486682pt;}
.ws155{word-spacing:2.534502pt;}
.ws47{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.ws15d{word-spacing:2.582323pt;}
.wsfd{word-spacing:2.603559pt;}
.ws15c{word-spacing:2.630144pt;}
.ws102{word-spacing:2.656693pt;}
.ws131{word-spacing:2.725786pt;}
.ws27{word-spacing:2.762961pt;}
.ws159{word-spacing:2.798705pt;}
.ws46{word-spacing:2.816095pt;}
.ws151{word-spacing:2.821427pt;}
.ws12f{word-spacing:2.859759pt;}
.ws25{word-spacing:2.861926pt;}
.ws130{word-spacing:2.863940pt;}
.ws118{word-spacing:2.864145pt;}
.ws10c{word-spacing:2.864512pt;}
.ws129{word-spacing:2.864742pt;}
.ws115{word-spacing:2.865092pt;}
.ws14a{word-spacing:2.865903pt;}
.ws113{word-spacing:2.866261pt;}
.ws114{word-spacing:2.866304pt;}
.ws10b{word-spacing:2.866509pt;}
.ws143{word-spacing:2.866620pt;}
.ws112{word-spacing:2.866825pt;}
.ws15a{word-spacing:2.866876pt;}
.ws11b{word-spacing:2.868309pt;}
.ws4a{word-spacing:2.869229pt;}
.ws10f{word-spacing:2.869248pt;}
.ws134{word-spacing:2.870434pt;}
.ws157{word-spacing:2.870741pt;}
.ws99{word-spacing:2.922363pt;}
.ws8c{word-spacing:2.975497pt;}
.ws142{word-spacing:3.012710pt;}
.ws53{word-spacing:3.081764pt;}
.ws158{word-spacing:3.108352pt;}
.ws26{word-spacing:3.188032pt;}
.ws1d{word-spacing:3.251814pt;}
.wsfc{word-spacing:3.294300pt;}
.ws51{word-spacing:3.347434pt;}
.ws101{word-spacing:3.400567pt;}
.wsac{word-spacing:3.453701pt;}
.ws125{word-spacing:3.490918pt;}
.wsab{word-spacing:3.506835pt;}
.wsf0{word-spacing:3.559969pt;}
.ws43{word-spacing:3.666237pt;}
.ws44{word-spacing:3.719371pt;}
.wsa2{word-spacing:3.772505pt;}
.ws6c{word-spacing:3.911808pt;}
.ws87{word-spacing:3.917152pt;}
.ws6d{word-spacing:4.029376pt;}
.ws56{word-spacing:4.197575pt;}
.ws7f{word-spacing:4.205728pt;}
.ws64{word-spacing:4.227104pt;}
.ws12c{word-spacing:4.238661pt;}
.ws12d{word-spacing:4.256051pt;}
.ws3f{word-spacing:4.303843pt;}
.ws12a{word-spacing:4.303872pt;}
.ws13c{word-spacing:4.351693pt;}
.ws15b{word-spacing:4.447334pt;}
.wsa0{word-spacing:4.463245pt;}
.wsa8{word-spacing:4.516379pt;}
.ws119{word-spacing:4.638618pt;}
.ws146{word-spacing:4.734259pt;}
.ws52{word-spacing:4.782048pt;}
.ws138{word-spacing:4.782080pt;}
.wsc4{word-spacing:4.835182pt;}
.ws2e{word-spacing:4.888316pt;}
.ws104{word-spacing:4.941450pt;}
.ws1c{word-spacing:4.973363pt;}
.ws31{word-spacing:4.994583pt;}
.wscc{word-spacing:5.156960pt;}
.ws59{word-spacing:5.183680pt;}
.ws32{word-spacing:5.207119pt;}
.ws63{word-spacing:5.215744pt;}
.ws62{word-spacing:5.237120pt;}
.ws8d{word-spacing:5.260253pt;}
.wsf7{word-spacing:5.313387pt;}
.ws12e{word-spacing:5.355930pt;}
.wsf{word-spacing:5.393072pt;}
.ws10{word-spacing:5.467459pt;}
.ws83{word-spacing:5.515008pt;}
.ws55{word-spacing:5.579056pt;}
.ws82{word-spacing:5.600512pt;}
.wsf8{word-spacing:5.791591pt;}
.ws122{word-spacing:5.834138pt;}
.wsfa{word-spacing:5.844725pt;}
.ws67{word-spacing:6.145600pt;}
.ws68{word-spacing:6.193696pt;}
.wsf1{word-spacing:6.216662pt;}
.ws106{word-spacing:6.269796pt;}
.wsc2{word-spacing:6.376064pt;}
.wsfe{word-spacing:6.429198pt;}
.wsf9{word-spacing:6.482332pt;}
.wsfb{word-spacing:6.694867pt;}
.wsc1{word-spacing:7.119938pt;}
.wsaf{word-spacing:7.268762pt;}
.ws15f{word-spacing:7.603507pt;}
.wsae{word-spacing:7.651328pt;}
.wsd{word-spacing:7.699075pt;}
.ws154{word-spacing:7.746970pt;}
.ws164{word-spacing:8.033894pt;}
.wsf2{word-spacing:9.245293pt;}
.ws150{word-spacing:9.898906pt;}
.ws58{word-spacing:10.329312pt;}
.ws127{word-spacing:10.520576pt;}
.ws9c{word-spacing:10.733041pt;}
.ws54{word-spacing:12.911530pt;}
.ws84{word-spacing:13.498944pt;}
.ws4{word-spacing:13.763148pt;}
.wsa{word-spacing:14.348669pt;}
.wsb{word-spacing:14.356730pt;}
.wsc{word-spacing:15.732893pt;}
.wsc3{word-spacing:22.794429pt;}
.wse{word-spacing:24.399002pt;}
.ws72{word-spacing:99.969600pt;}
.ws74{word-spacing:99.993600pt;}
.ws73{word-spacing:100.008000pt;}
.ws75{word-spacing:100.012800pt;}
.wsd8{word-spacing:134.957376pt;}
.wsb7{word-spacing:144.227533pt;}
.wsdb{word-spacing:161.517056pt;}
.wsd6{word-spacing:169.020032pt;}
.wsb8{word-spacing:174.115533pt;}
.wsb2{word-spacing:177.080422pt;}
.wsbd{word-spacing:183.679693pt;}
.wsb1{word-spacing:184.972245pt;}
.wsb6{word-spacing:187.744461pt;}
.wsdc{word-spacing:197.038624pt;}
.wsb3{word-spacing:198.025933pt;}
.wsb5{word-spacing:198.073754pt;}
.ws91{word-spacing:201.839070pt;}
.wse7{word-spacing:209.646387pt;}
.wsbe{word-spacing:209.981133pt;}
.wse0{word-spacing:210.868896pt;}
.wse1{word-spacing:215.432704pt;}
.wseb{word-spacing:222.462362pt;}
.wse5{word-spacing:232.026522pt;}
.wse4{word-spacing:233.508966pt;}
.wsda{word-spacing:237.038464pt;}
.ws95{word-spacing:243.743625pt;}
.wsba{word-spacing:250.054963pt;}
.wsdd{word-spacing:250.478624pt;}
.wse9{word-spacing:252.206899pt;}
.ws8e{word-spacing:255.028958pt;}
.wsb9{word-spacing:261.245030pt;}
.wse8{word-spacing:263.349146pt;}
.wsea{word-spacing:263.444787pt;}
.wse6{word-spacing:269.278925pt;}
.wse2{word-spacing:279.895142pt;}
.wsdf{word-spacing:286.000192pt;}
.wsbc{word-spacing:307.535565pt;}
.wse3{word-spacing:314.373939pt;}
.wsf6{word-spacing:328.481075pt;}
.wsf3{word-spacing:332.450202pt;}
.wsf5{word-spacing:345.887846pt;}
.ws96{word-spacing:351.004672pt;}
.wsf4{word-spacing:370.802483pt;}
.wsb0{word-spacing:382.260958pt;}
.ws98{word-spacing:386.870272pt;}
.ws94{word-spacing:392.417485pt;}
.ws97{word-spacing:422.735872pt;}
.ws92{word-spacing:428.283085pt;}
.wsb4{word-spacing:744.856781pt;}
.ws100{word-spacing:828.877926pt;}
.wsbb{word-spacing:1607.756706pt;}
._5c{margin-left:-152.026121pt;}
._55{margin-left:-149.786985pt;}
._59{margin-left:-125.680192pt;}
._56{margin-left:-123.948745pt;}
._54{margin-left:-116.183913pt;}
._1a{margin-left:-100.526400pt;}
._5b{margin-left:-88.961568pt;}
._5a{margin-left:-76.504713pt;}
._5d{margin-left:-63.919584pt;}
._58{margin-left:-48.961728pt;}
._53{margin-left:-40.240320pt;}
._47{margin-left:-32.262666pt;}
._94{margin-left:-18.586309pt;}
._49{margin-left:-13.493617pt;}
._1b{margin-left:-9.825600pt;}
._96{margin-left:-7.066462pt;}
._e{margin-left:-6.084966pt;}
._7{margin-left:-4.797974pt;}
._a{margin-left:-3.830987pt;}
._8{margin-left:-2.661983pt;}
._3{margin-left:-1.175671pt;}
._4{width:0.969929pt;}
._1{width:2.661983pt;}
._b{width:9.861670pt;}
._5{width:11.530016pt;}
._9{width:13.177232pt;}
._c{width:14.326391pt;}
._12{width:15.378449pt;}
._10{width:16.605542pt;}
._44{width:18.118649pt;}
._16{width:19.188052pt;}
._11{width:20.467302pt;}
._d{width:21.997568pt;}
._6{width:23.063232pt;}
._f{width:24.962458pt;}
._20{width:26.679927pt;}
._18{width:28.054682pt;}
._0{width:29.648896pt;}
._15{width:31.189580pt;}
._17{width:32.517926pt;}
._85{width:34.125395pt;}
._5f{width:37.156762pt;}
._1c{width:39.057600pt;}
._7b{width:44.925823pt;}
._4d{width:48.079968pt;}
._95{width:54.993920pt;}
._2{width:61.648310pt;}
._45{width:64.154720pt;}
._4a{width:65.755223pt;}
._4f{width:74.933559pt;}
._5e{width:76.622272pt;}
._93{width:78.904320pt;}
._4e{width:79.852727pt;}
._51{width:87.857495pt;}
._50{width:89.255479pt;}
._80{width:92.533248pt;}
._4b{width:100.563392pt;}
._48{width:102.075744pt;}
._52{width:119.852567pt;}
._72{width:125.960405pt;}
._46{width:134.043543pt;}
._73{width:135.117201pt;}
._57{width:146.099599pt;}
._1f{width:148.219200pt;}
._1e{width:153.345600pt;}
._1d{width:158.803200pt;}
._71{width:165.125222pt;}
._81{width:167.038054pt;}
._74{width:168.615236pt;}
._69{width:180.093133pt;}
._68{width:186.070733pt;}
._6e{width:209.981133pt;}
._61{width:212.946022pt;}
._60{width:216.962970pt;}
._7c{width:218.588877pt;}
._64{width:231.787418pt;}
._21{width:237.231556pt;}
._4c{width:240.886144pt;}
._63{width:244.985958pt;}
._6f{width:250.294067pt;}
._28{width:258.675217pt;}
._7e{width:261.723238pt;}
._36{width:263.301325pt;}
._62{width:266.361856pt;}
._84{width:270.235341pt;}
._43{width:271.191757pt;}
._41{width:275.415882pt;}
._30{width:280.119808pt;}
._24{width:283.433882pt;}
._22{width:286.348817pt;}
._31{width:288.975891pt;}
._3c{width:297.158451pt;}
._2d{width:300.649370pt;}
._29{width:302.141431pt;}
._2a{width:304.825674pt;}
._39{width:311.026483pt;}
._7a{width:312.154334pt;}
._79{width:314.373939pt;}
._7f{width:318.072035pt;}
._23{width:319.908019pt;}
._3f{width:323.045398pt;}
._38{width:324.511949pt;}
._76{width:326.329139pt;}
._77{width:327.524659pt;}
._42{width:329.724416pt;}
._78{width:335.108318pt;}
._32{width:338.475622pt;}
._75{width:346.748621pt;}
._35{width:350.043053pt;}
._26{width:353.921741pt;}
._2e{width:355.691110pt;}
._2c{width:359.182029pt;}
._2b{width:362.959872pt;}
._3e{width:371.328512pt;}
._3b{width:374.915072pt;}
._3d{width:376.923204pt;}
._2f{width:386.870272pt;}
._33{width:398.825472pt;}
._27{width:404.372685pt;}
._3a{width:411.163238pt;}
._25{width:416.280064pt;}
._34{width:434.691072pt;}
._37{width:445.737677pt;}
._40{width:448.676070pt;}
._8b{width:512.925901pt;}
._6d{width:545.539686pt;}
._91{width:585.470054pt;}
._65{width:594.605961pt;}
._87{width:639.698842pt;}
._67{width:659.114086pt;}
._8e{width:677.955482pt;}
._8f{width:679.198822pt;}
._86{width:684.315648pt;}
._89{width:688.954266pt;}
._90{width:701.005107pt;}
._8d{width:709.182464pt;}
._88{width:718.890086pt;}
._8c{width:783.687270pt;}
._8a{width:794.877338pt;}
._13{width:797.518486pt;}
._66{width:932.696883pt;}
._70{width:968.945050pt;}
._6c{width:980.900250pt;}
._83{width:1028.386304pt;}
._7d{width:1058.704691pt;}
._82{width:1069.607834pt;}
._6b{width:1311.820186pt;}
._6a{width:1345.772954pt;}
._19{width:1910.761431pt;}
._92{width:2274.216000pt;}
._14{width:2295.469333pt;}
.fs7{font-size:31.880533pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fsa{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fsc{font-size:48.000000pt;}
.fse{font-size:49.829333pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fsd{font-size:69.453867pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.y12b{bottom:-618.640933pt;}
.y14a{bottom:-566.563336pt;}
.y149{bottom:-548.563408pt;}
.y148{bottom:-530.563480pt;}
.y147{bottom:-512.563552pt;}
.y146{bottom:-494.563624pt;}
.y145{bottom:-476.563696pt;}
.y144{bottom:-458.563768pt;}
.y143{bottom:-440.644000pt;}
.y142{bottom:-422.642736pt;}
.y141{bottom:-404.642808pt;}
.y140{bottom:-386.642880pt;}
.y13f{bottom:-368.642952pt;}
.y13e{bottom:-350.643024pt;}
.y13d{bottom:-332.721920pt;}
.y92{bottom:-329.238267pt;}
.y13c{bottom:-314.721992pt;}
.y13b{bottom:-296.720728pt;}
.y13a{bottom:-278.720800pt;}
.yb8{bottom:-275.711499pt;}
.y139{bottom:-260.720728pt;}
.yb7{bottom:-258.672155pt;}
.y138{bottom:-242.720800pt;}
.yb6{bottom:-241.552651pt;}
.yb5{bottom:-224.433147pt;}
.y136{bottom:-224.081485pt;}
.y135{bottom:-215.120933pt;}
.yb4{bottom:-207.393803pt;}
.y137{bottom:-206.081557pt;}
.yb3{bottom:-190.274299pt;}
.y134{bottom:-179.360800pt;}
.yb2{bottom:-173.234955pt;}
.yb1{bottom:-156.115451pt;}
.y133{bottom:-147.598629pt;}
.yb0{bottom:-138.995947pt;}
.y132{bottom:-130.559285pt;}
.yaf{bottom:-121.956603pt;}
.y131{bottom:-113.439781pt;}
.yae{bottom:-104.837099pt;}
.y130{bottom:-96.400437pt;}
.yad{bottom:-87.797755pt;}
.y12f{bottom:-79.280933pt;}
.yac{bottom:-66.678267pt;}
.y12e{bottom:-46.561333pt;}
.yab{bottom:-33.959333pt;}
.y12d{bottom:-31.120933pt;}
.yaa{bottom:-18.518933pt;}
.y12c{bottom:-11.200477pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.044747pt;}
.ya9{bottom:5.001067pt;}
.y8{bottom:12.578910pt;}
.y2{bottom:14.883970pt;}
.ya8{bottom:22.361467pt;}
.y4b{bottom:28.346667pt;}
.ya7{bottom:39.641467pt;}
.ya6{bottom:57.001867pt;}
.ya5{bottom:78.769453pt;}
.y101{bottom:79.105333pt;}
.y223{bottom:81.172000pt;}
.yce{bottom:88.142667pt;}
.y22{bottom:91.398667pt;}
.y25b{bottom:92.050667pt;}
.y4a{bottom:92.108000pt;}
.y80{bottom:95.222667pt;}
.y1cd{bottom:95.650667pt;}
.y100{bottom:95.842667pt;}
.y222{bottom:96.514667pt;}
.yba{bottom:101.881867pt;}
.y19a{bottom:104.274667pt;}
.ycd{bottom:104.880000pt;}
.y21{bottom:107.298667pt;}
.y25a{bottom:107.393333pt;}
.y49{bottom:108.844000pt;}
.y1cc{bottom:110.262667pt;}
.y127{bottom:111.178667pt;}
.y167{bottom:111.661333pt;}
.y221{bottom:111.857333pt;}
.y7f{bottom:111.960000pt;}
.yff{bottom:112.580000pt;}
.y199{bottom:121.012000pt;}
.ycc{bottom:121.617333pt;}
.y259{bottom:122.736000pt;}
.y20{bottom:123.200000pt;}
.y1cb{bottom:124.874667pt;}
.y48{bottom:125.581333pt;}
.y220{bottom:127.198667pt;}
.y126{bottom:127.916000pt;}
.y166{bottom:128.398667pt;}
.y7e{bottom:128.697333pt;}
.yfe{bottom:129.317333pt;}
.ybb{bottom:133.721733pt;}
.y198{bottom:137.749333pt;}
.y258{bottom:138.078667pt;}
.ycb{bottom:138.354667pt;}
.y1f{bottom:139.100000pt;}
.y1ca{bottom:139.486667pt;}
.y47{bottom:142.318667pt;}
.y21f{bottom:142.541333pt;}
.y125{bottom:144.653333pt;}
.y165{bottom:145.136000pt;}
.y7d{bottom:145.434667pt;}
.yfd{bottom:146.054667pt;}
.y257{bottom:153.421333pt;}
.y1c9{bottom:154.097333pt;}
.y197{bottom:154.486667pt;}
.y1e{bottom:155.000000pt;}
.yca{bottom:155.092000pt;}
.y21e{bottom:157.884000pt;}
.y124{bottom:161.390667pt;}
.y164{bottom:161.873333pt;}
.y7c{bottom:162.172000pt;}
.y1ef{bottom:162.792000pt;}
.y46{bottom:163.041333pt;}
.y1c8{bottom:168.709333pt;}
.y256{bottom:168.762667pt;}
.y1d{bottom:170.901333pt;}
.y196{bottom:171.224000pt;}
.yc9{bottom:171.829333pt;}
.y21d{bottom:173.226667pt;}
.y123{bottom:178.128000pt;}
.y163{bottom:178.610667pt;}
.yfc{bottom:178.814667pt;}
.y7b{bottom:178.909333pt;}
.y1ee{bottom:179.529333pt;}
.yb9{bottom:180.761733pt;}
.y255{bottom:184.105333pt;}
.y1c{bottom:186.801333pt;}
.y195{bottom:187.961333pt;}
.yc8{bottom:188.565333pt;}
.y21c{bottom:188.569333pt;}
.y1c7{bottom:189.724000pt;}
.y122{bottom:194.865333pt;}
.y162{bottom:195.348000pt;}
.yfb{bottom:195.564000pt;}
.y7a{bottom:195.646667pt;}
.y1ed{bottom:196.266667pt;}
.y254{bottom:199.448000pt;}
.y1b{bottom:202.701333pt;}
.y21b{bottom:203.912000pt;}
.y194{bottom:204.698667pt;}
.yc7{bottom:205.302667pt;}
.yfa{bottom:210.176000pt;}
.y121{bottom:211.602667pt;}
.y161{bottom:212.085333pt;}
.y79{bottom:212.384000pt;}
.y1ec{bottom:213.004000pt;}
.y253{bottom:214.790667pt;}
.y1c6{bottom:217.830667pt;}
.y21a{bottom:219.254667pt;}
.y193{bottom:221.436000pt;}
.yc6{bottom:222.040000pt;}
.yf9{bottom:224.788000pt;}
.y120{bottom:228.340000pt;}
.y160{bottom:228.822667pt;}
.y78{bottom:229.121333pt;}
.y1eb{bottom:229.741333pt;}
.y45{bottom:229.841333pt;}
.y252{bottom:230.133333pt;}
.y219{bottom:234.597333pt;}
.y192{bottom:238.173333pt;}
.yc5{bottom:238.777333pt;}
.yf8{bottom:239.400000pt;}
.y11f{bottom:245.077333pt;}
.y251{bottom:245.476000pt;}
.y77{bottom:245.858667pt;}
.y1ea{bottom:246.478667pt;}
.y1c5{bottom:249.848000pt;}
.y218{bottom:249.940000pt;}
.y15f{bottom:252.998667pt;}
.yf7{bottom:254.012000pt;}
.y191{bottom:254.910667pt;}
.yc4{bottom:255.514667pt;}
.y250{bottom:260.818667pt;}
.y11e{bottom:261.814667pt;}
.y76{bottom:262.596000pt;}
.y44{bottom:263.077333pt;}
.y1e9{bottom:263.216000pt;}
.y217{bottom:265.281333pt;}
.y15e{bottom:265.617333pt;}
.y1c4{bottom:266.585333pt;}
.yf6{bottom:268.624000pt;}
.y190{bottom:271.648000pt;}
.yc3{bottom:272.252000pt;}
.y1a{bottom:273.154667pt;}
.y24f{bottom:276.161333pt;}
.y1e8{bottom:279.953333pt;}
.y43{bottom:280.372000pt;}
.y216{bottom:280.624000pt;}
.y11d{bottom:282.537333pt;}
.yf5{bottom:283.236000pt;}
.y75{bottom:283.317333pt;}
.y1c3{bottom:283.322667pt;}
.y15d{bottom:285.837333pt;}
.y18f{bottom:288.385333pt;}
.yc2{bottom:288.989333pt;}
.y19{bottom:289.054667pt;}
.y24e{bottom:291.502667pt;}
.y215{bottom:295.966667pt;}
.y1e7{bottom:296.690667pt;}
.y42{bottom:297.668000pt;}
.yf4{bottom:297.846667pt;}
.y1c2{bottom:300.060000pt;}
.y15c{bottom:300.449333pt;}
.y74{bottom:301.250667pt;}
.y18{bottom:304.954667pt;}
.y18e{bottom:305.121333pt;}
.yc1{bottom:305.726667pt;}
.y24d{bottom:306.845333pt;}
.y214{bottom:311.309333pt;}
.y11c{bottom:312.425333pt;}
.yf3{bottom:312.458667pt;}
.y1e6{bottom:313.428000pt;}
.y41{bottom:314.962667pt;}
.y15b{bottom:315.061333pt;}
.y1c1{bottom:316.797333pt;}
.y17{bottom:320.856000pt;}
.y18d{bottom:321.858667pt;}
.y24c{bottom:322.188000pt;}
.yc0{bottom:322.464000pt;}
.y213{bottom:326.652000pt;}
.yf2{bottom:327.070667pt;}
.y11b{bottom:329.162667pt;}
.y15a{bottom:329.673333pt;}
.y1e5{bottom:330.165333pt;}
.y73{bottom:331.138667pt;}
.y40{bottom:332.257333pt;}
.y1c0{bottom:333.534667pt;}
.y24b{bottom:337.530667pt;}
.y18c{bottom:338.596000pt;}
.ybf{bottom:339.201333pt;}
.ya4{bottom:339.728997pt;}
.yf1{bottom:341.682667pt;}
.y212{bottom:341.994667pt;}
.y159{bottom:344.285333pt;}
.y11a{bottom:345.900000pt;}
.y1e4{bottom:346.902667pt;}
.y72{bottom:347.876000pt;}
.y3f{bottom:349.553333pt;}
.y1bf{bottom:350.272000pt;}
.y24a{bottom:352.873333pt;}
.y16{bottom:354.688000pt;}
.y18b{bottom:355.333333pt;}
.yf0{bottom:356.294667pt;}
.ya3{bottom:356.768341pt;}
.y211{bottom:357.337333pt;}
.y158{bottom:358.897333pt;}
.ybe{bottom:359.924000pt;}
.y119{bottom:362.637333pt;}
.y1e3{bottom:363.640000pt;}
.y71{bottom:364.613333pt;}
.y3e{bottom:366.848000pt;}
.y1be{bottom:367.009333pt;}
.y249{bottom:368.216000pt;}
.y15{bottom:370.589333pt;}
.yef{bottom:370.906667pt;}
.y18a{bottom:372.070667pt;}
.y210{bottom:372.680000pt;}
.y157{bottom:373.509333pt;}
.ya2{bottom:373.887845pt;}
.y118{bottom:379.374667pt;}
.y1e2{bottom:380.376000pt;}
.y70{bottom:381.350667pt;}
.y248{bottom:383.558667pt;}
.y1bd{bottom:383.746667pt;}
.y3d{bottom:384.142667pt;}
.yee{bottom:385.518667pt;}
.y14{bottom:386.489333pt;}
.y20e{bottom:388.021333pt;}
.y20f{bottom:388.022667pt;}
.y156{bottom:388.120000pt;}
.y189{bottom:388.808000pt;}
.y12a{bottom:389.439187pt;}
.ybd{bottom:390.956000pt;}
.ya1{bottom:391.007349pt;}
.y117{bottom:396.112000pt;}
.y129{bottom:397.999067pt;}
.y6f{bottom:398.088000pt;}
.y247{bottom:398.901333pt;}
.yed{bottom:400.130667pt;}
.y1bc{bottom:400.484000pt;}
.y1e1{bottom:401.098667pt;}
.y3c{bottom:401.438667pt;}
.y155{bottom:402.732000pt;}
.y20d{bottom:403.364000pt;}
.y188{bottom:405.545333pt;}
.ya0{bottom:408.048029pt;}
.ybc{bottom:408.052000pt;}
.y116{bottom:412.848000pt;}
.y246{bottom:414.244000pt;}
.y6e{bottom:414.825333pt;}
.y1bb{bottom:417.221333pt;}
.y154{bottom:417.344000pt;}
.y13{bottom:418.330667pt;}
.y20c{bottom:418.706667pt;}
.y3b{bottom:418.733333pt;}
.yeb{bottom:421.144000pt;}
.y187{bottom:422.282667pt;}
.y9f{bottom:425.167533pt;}
.y8f{bottom:427.988000pt;}
.yea{bottom:428.450667pt;}
.y115{bottom:429.585333pt;}
.y1e0{bottom:430.986667pt;}
.y6d{bottom:431.562667pt;}
.y153{bottom:431.956000pt;}
.y1ba{bottom:433.958667pt;}
.y20b{bottom:434.049333pt;}
.y12{bottom:434.230667pt;}
.yec{bottom:435.756000pt;}
.y3a{bottom:436.029333pt;}
.y186{bottom:439.020000pt;}
.y9e{bottom:442.206877pt;}
.y245{bottom:444.928000pt;}
.y114{bottom:446.322667pt;}
.y152{bottom:446.568000pt;}
.y1df{bottom:447.724000pt;}
.y6c{bottom:448.300000pt;}
.y20a{bottom:449.392000pt;}
.y11{bottom:450.130667pt;}
.y1b9{bottom:450.696000pt;}
.y39{bottom:453.324000pt;}
.y9d{bottom:459.326381pt;}
.y185{bottom:459.742667pt;}
.y244{bottom:460.270667pt;}
.y151{bottom:461.180000pt;}
.y113{bottom:463.060000pt;}
.ye9{bottom:463.862667pt;}
.y1de{bottom:464.461333pt;}
.y209{bottom:464.734667pt;}
.y6b{bottom:465.037333pt;}
.y10{bottom:466.032000pt;}
.y38{bottom:470.618667pt;}
.y1b8{bottom:471.418667pt;}
.y243{bottom:475.613333pt;}
.y9c{bottom:476.445885pt;}
.y184{bottom:477.676000pt;}
.y112{bottom:479.797333pt;}
.y208{bottom:480.077333pt;}
.y1dd{bottom:481.198667pt;}
.y6a{bottom:481.774667pt;}
.y14f{bottom:482.193333pt;}
.y37{bottom:487.914667pt;}
.y1b7{bottom:489.350667pt;}
.y14e{bottom:489.500000pt;}
.y242{bottom:490.956000pt;}
.y9b{bottom:493.485229pt;}
.y207{bottom:495.420000pt;}
.y111{bottom:496.534667pt;}
.y150{bottom:496.805333pt;}
.yf{bottom:497.872000pt;}
.y1dc{bottom:497.936000pt;}
.y69{bottom:498.512000pt;}
.ye8{bottom:500.816000pt;}
.y36{bottom:505.209333pt;}
.y241{bottom:506.298667pt;}
.y9a{bottom:510.604733pt;}
.y206{bottom:510.762667pt;}
.y110{bottom:513.272000pt;}
.ye{bottom:513.772000pt;}
.y1db{bottom:514.673333pt;}
.y68{bottom:515.249333pt;}
.y183{bottom:515.296000pt;}
.ye7{bottom:515.705333pt;}
.y1b6{bottom:519.238667pt;}
.y240{bottom:521.641333pt;}
.y14d{bottom:524.912000pt;}
.y205{bottom:526.104000pt;}
.y99{bottom:527.724237pt;}
.yd{bottom:529.673333pt;}
.y182{bottom:529.908000pt;}
.y10f{bottom:530.009333pt;}
.ye6{bottom:530.317333pt;}
.y1da{bottom:531.410667pt;}
.y67{bottom:531.986667pt;}
.y1b5{bottom:535.976000pt;}
.y23f{bottom:536.984000pt;}
.y35{bottom:538.445333pt;}
.y204{bottom:541.446667pt;}
.y181{bottom:544.520000pt;}
.y98{bottom:544.763581pt;}
.ye5{bottom:544.929333pt;}
.yc{bottom:545.573333pt;}
.y10e{bottom:546.746667pt;}
.y1d9{bottom:548.148000pt;}
.y66{bottom:548.724000pt;}
.y23e{bottom:552.325333pt;}
.y1b4{bottom:552.713333pt;}
.y14c{bottom:553.962667pt;}
.y34{bottom:555.740000pt;}
.y203{bottom:556.789333pt;}
.y180{bottom:559.132000pt;}
.ye4{bottom:559.541333pt;}
.yb{bottom:561.473333pt;}
.y97{bottom:561.883085pt;}
.y10d{bottom:563.484000pt;}
.y1d8{bottom:564.885333pt;}
.y65{bottom:565.461333pt;}
.y23d{bottom:567.668000pt;}
.y1b3{bottom:569.450667pt;}
.y14b{bottom:571.058667pt;}
.y202{bottom:572.132000pt;}
.y33{bottom:573.034667pt;}
.y17f{bottom:573.744000pt;}
.ye3{bottom:574.430667pt;}
.ya{bottom:577.374667pt;}
.y96{bottom:578.922429pt;}
.y10c{bottom:580.221333pt;}
.y1d7{bottom:581.622667pt;}
.y64{bottom:582.198667pt;}
.y23c{bottom:583.010667pt;}
.y1b2{bottom:586.188000pt;}
.y201{bottom:587.474667pt;}
.y17e{bottom:588.356000pt;}
.ye2{bottom:589.597333pt;}
.y32{bottom:590.330667pt;}
.y128{bottom:590.996000pt;}
.y95{bottom:596.041933pt;}
.y10b{bottom:596.958667pt;}
.y7{bottom:597.259968pt;}
.y23b{bottom:598.353333pt;}
.y1d6{bottom:598.360000pt;}
.y63{bottom:598.934667pt;}
.y200{bottom:602.817333pt;}
.y1b1{bottom:602.925333pt;}
.y17d{bottom:602.968000pt;}
.ye1{bottom:604.486667pt;}
.y31{bottom:607.625333pt;}
.y94{bottom:613.161437pt;}
.y10a{bottom:613.696000pt;}
.y1d5{bottom:615.097333pt;}
.y62{bottom:615.672000pt;}
.y17c{bottom:617.580000pt;}
.y1ff{bottom:618.160000pt;}
.ye0{bottom:619.098667pt;}
.y1b0{bottom:623.648000pt;}
.y30{bottom:624.920000pt;}
.y23a{bottom:629.038667pt;}
.y93{bottom:630.202117pt;}
.y109{bottom:630.433333pt;}
.y1d4{bottom:631.834667pt;}
.y17b{bottom:632.192000pt;}
.y61{bottom:632.409333pt;}
.y1fe{bottom:633.502667pt;}
.ydf{bottom:633.988000pt;}
.y2f{bottom:642.216000pt;}
.y239{bottom:644.381333pt;}
.y17a{bottom:646.804000pt;}
.y108{bottom:647.170667pt;}
.y1d3{bottom:648.572000pt;}
.y1fd{bottom:648.845333pt;}
.y60{bottom:649.146667pt;}
.yde{bottom:649.156000pt;}
.y1af{bottom:653.536000pt;}
.y2e{bottom:659.510667pt;}
.y238{bottom:659.724000pt;}
.y179{bottom:661.414667pt;}
.y107{bottom:663.908000pt;}
.y1fc{bottom:664.186667pt;}
.y1d2{bottom:665.309333pt;}
.y5f{bottom:665.884000pt;}
.y1ae{bottom:670.273333pt;}
.ydc{bottom:670.446667pt;}
.y237{bottom:675.066667pt;}
.y178{bottom:676.026667pt;}
.y2d{bottom:676.806667pt;}
.ydb{bottom:677.753333pt;}
.y91{bottom:678.841853pt;}
.y1fb{bottom:679.529333pt;}
.y106{bottom:680.645333pt;}
.ydd{bottom:685.058667pt;}
.y1d1{bottom:686.030667pt;}
.y5e{bottom:686.606667pt;}
.y1ad{bottom:687.010667pt;}
.y90{bottom:687.401733pt;}
.y236{bottom:690.408000pt;}
.y177{bottom:690.638667pt;}
.y2c{bottom:694.101333pt;}
.y1fa{bottom:694.872000pt;}
.y105{bottom:697.382667pt;}
.y1ac{bottom:703.748000pt;}
.y176{bottom:705.250667pt;}
.y235{bottom:705.750667pt;}
.y2b{bottom:711.396000pt;}
.yda{bottom:713.165333pt;}
.y104{bottom:714.120000pt;}
.y1f9{bottom:714.200000pt;}
.y1d0{bottom:715.918667pt;}
.y5d{bottom:716.494667pt;}
.y175{bottom:719.862667pt;}
.y234{bottom:721.093333pt;}
.y2a{bottom:728.692000pt;}
.y103{bottom:730.857333pt;}
.y1cf{bottom:732.656000pt;}
.y5c{bottom:733.232000pt;}
.y174{bottom:734.474667pt;}
.y233{bottom:736.436000pt;}
.y1f8{bottom:744.088000pt;}
.y1ab{bottom:744.158667pt;}
.yd9{bottom:746.000000pt;}
.y102{bottom:747.594667pt;}
.y173{bottom:749.086667pt;}
.y1ce{bottom:749.393333pt;}
.y5b{bottom:749.969333pt;}
.y232{bottom:751.778667pt;}
.y1aa{bottom:758.770667pt;}
.y29{bottom:762.422667pt;}
.yd8{bottom:762.737333pt;}
.y172{bottom:763.698667pt;}
.y8e{bottom:764.332000pt;}
.y5a{bottom:766.706667pt;}
.y231{bottom:767.121333pt;}
.y1f7{bottom:767.678667pt;}
.y1a9{bottom:773.382667pt;}
.y28{bottom:776.769333pt;}
.y171{bottom:778.310667pt;}
.yd7{bottom:779.474667pt;}
.y8d{bottom:781.069333pt;}
.y230{bottom:782.464000pt;}
.y59{bottom:783.444000pt;}
.y1a8{bottom:787.993333pt;}
.y1f6{bottom:791.270667pt;}
.y170{bottom:792.922667pt;}
.y27{bottom:794.973333pt;}
.yd6{bottom:796.212000pt;}
.y8c{bottom:797.806667pt;}
.y58{bottom:800.181333pt;}
.y1a7{bottom:802.605333pt;}
.y26{bottom:805.462667pt;}
.y16f{bottom:807.533333pt;}
.yd5{bottom:812.949333pt;}
.y22e{bottom:813.148000pt;}
.y22f{bottom:813.149333pt;}
.y8b{bottom:814.544000pt;}
.y1f5{bottom:814.862667pt;}
.y57{bottom:816.918667pt;}
.y1a6{bottom:817.217333pt;}
.y16e{bottom:822.145333pt;}
.y25{bottom:823.665333pt;}
.y22d{bottom:828.490667pt;}
.yd4{bottom:829.686667pt;}
.y8a{bottom:831.281333pt;}
.y1a5{bottom:831.829333pt;}
.y56{bottom:833.656000pt;}
.y24{bottom:834.154667pt;}
.y16d{bottom:836.757333pt;}
.y1f4{bottom:838.454667pt;}
.y22c{bottom:843.833333pt;}
.yd3{bottom:846.424000pt;}
.y1a4{bottom:846.441333pt;}
.y89{bottom:848.018667pt;}
.y55{bottom:850.393333pt;}
.y16c{bottom:851.369333pt;}
.y23{bottom:852.358667pt;}
.y22b{bottom:859.176000pt;}
.y1a3{bottom:861.053333pt;}
.y1f3{bottom:862.045333pt;}
.yd2{bottom:863.161333pt;}
.y88{bottom:864.754667pt;}
.y54{bottom:867.130667pt;}
.y16b{bottom:872.384000pt;}
.y22a{bottom:874.518667pt;}
.y1a2{bottom:875.665333pt;}
.y16a{bottom:879.689333pt;}
.yd1{bottom:879.898667pt;}
.y87{bottom:881.492000pt;}
.y53{bottom:883.868000pt;}
.y1f2{bottom:885.637333pt;}
.y6{bottom:887.520000pt;}
.y229{bottom:889.861333pt;}
.y1a1{bottom:890.277333pt;}
.y86{bottom:898.229333pt;}
.y52{bottom:900.605333pt;}
.yd0{bottom:900.621333pt;}
.y1f1{bottom:901.258667pt;}
.y1a0{bottom:904.889333pt;}
.y228{bottom:905.204000pt;}
.y19e{bottom:912.194667pt;}
.y85{bottom:914.966667pt;}
.y169{bottom:915.101333pt;}
.y1f0{bottom:916.880000pt;}
.y51{bottom:917.342667pt;}
.ycf{bottom:918.553333pt;}
.y19d{bottom:919.501333pt;}
.y227{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y84{bottom:931.704000pt;}
.y168{bottom:932.197333pt;}
.y50{bottom:934.080000pt;}
.y19f{bottom:934.112000pt;}
.y226{bottom:935.889333pt;}
.y83{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y4f{bottom:950.817333pt;}
.y225{bottom:951.230667pt;}
.y19c{bottom:955.126667pt;}
.y82{bottom:965.178667pt;}
.y224{bottom:966.573333pt;}
.y4e{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.y81{bottom:981.916000pt;}
.y19b{bottom:983.233333pt;}
.y4d{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y4c{bottom:1043.020000pt;}
.h7{height:22.673858pt;}
.hc{height:23.209028pt;}
.h13{height:24.866650pt;}
.ha{height:27.076941pt;}
.hb{height:27.300102pt;}
.h9{height:29.433775pt;}
.h8{height:30.399505pt;}
.hd{height:30.945242pt;}
.h16{height:31.067969pt;}
.h12{height:31.200285pt;}
.h15{height:31.338125pt;}
.he{height:34.574438pt;}
.hf{height:34.813542pt;}
.h18{height:35.039062pt;}
.h28{height:35.100467pt;}
.h19{height:35.343750pt;}
.h10{height:38.415786pt;}
.h1a{height:38.462187pt;}
.h11{height:38.681455pt;}
.h4{height:39.000258pt;}
.h17{height:39.010156pt;}
.h21{height:39.349375pt;}
.h1d{height:43.322274pt;}
.h1e{height:43.327607pt;}
.h2{height:45.271688pt;}
.h1b{height:48.292142pt;}
.h6{height:48.481423pt;}
.h1c{height:63.795772pt;}
.h25{height:63.801105pt;}
.h27{height:64.034876pt;}
.h5{height:69.148877pt;}
.h23{height:74.852364pt;}
.h24{height:75.167660pt;}
.h22{height:75.191583pt;}
.h20{height:75.506879pt;}
.h3{height:91.114522pt;}
.h26{height:93.022438pt;}
.h14{height:315.329333pt;}
.h1f{height:353.169333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:152.495875pt;}
.w5{width:500.322933pt;}
.w4{width:514.337333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x44{left:-96.350667pt;}
.x49{left:-68.031467pt;}
.x9a{left:-62.715733pt;}
.x9c{left:-34.395733pt;}
.x0{left:0.000000pt;}
.x4a{left:3.169333pt;}
.x3{left:26.021437pt;}
.x1{left:48.000000pt;}
.x2{left:51.721014pt;}
.xb7{left:64.045333pt;}
.xb2{left:68.050667pt;}
.xb1{left:73.089333pt;}
.xb3{left:75.397333pt;}
.x4c{left:76.346667pt;}
.x45{left:77.488365pt;}
.xb5{left:80.638667pt;}
.xb0{left:81.726667pt;}
.xb4{left:83.442667pt;}
.xb6{left:86.049333pt;}
.x48{left:99.249333pt;}
.x46{left:105.808271pt;}
.x9d{left:111.125075pt;}
.xa1{left:112.804267pt;}
.xa5{left:115.763587pt;}
.xa6{left:117.283955pt;}
.xa3{left:119.444267pt;}
.xa2{left:121.283859pt;}
.xa8{left:124.084195pt;}
.x4b{left:126.849333pt;}
.x9e{left:127.844267pt;}
.xaa{left:129.122251pt;}
.xa7{left:131.444219pt;}
.xac{left:134.882667pt;}
.xa4{left:137.444195pt;}
.x43{left:139.682667pt;}
.x99{left:146.689067pt;}
.x9f{left:200.084459pt;}
.xa9{left:201.124635pt;}
.xab{left:204.482003pt;}
.xad{left:214.901333pt;}
.x6{left:222.073333pt;}
.x4{left:223.020000pt;}
.xcd{left:233.621333pt;}
.x6c{left:238.257333pt;}
.x5{left:241.085333pt;}
.xc1{left:242.178667pt;}
.x6e{left:243.416000pt;}
.xc2{left:245.382667pt;}
.x6d{left:246.440000pt;}
.xc0{left:248.137333pt;}
.x74{left:249.781333pt;}
.x9{left:251.365333pt;}
.xbf{left:252.710667pt;}
.xce{left:253.974667pt;}
.x6b{left:255.101333pt;}
.x6f{left:256.225333pt;}
.x53{left:257.145333pt;}
.x76{left:258.748000pt;}
.x75{left:262.269333pt;}
.xbe{left:268.169333pt;}
.x54{left:270.429333pt;}
.xa0{left:275.043411pt;}
.x8{left:277.726667pt;}
.xea{left:282.581333pt;}
.x33{left:287.254667pt;}
.x65{left:288.249333pt;}
.x8d{left:290.961333pt;}
.x12{left:294.118667pt;}
.x63{left:295.992000pt;}
.x77{left:298.190667pt;}
.x13{left:300.760000pt;}
.x14{left:304.148000pt;}
.xd1{left:308.176000pt;}
.x64{left:309.276000pt;}
.x15{left:310.789333pt;}
.xe4{left:311.776000pt;}
.xec{left:313.174667pt;}
.x16{left:314.176000pt;}
.xe7{left:315.117333pt;}
.xcb{left:319.285333pt;}
.x17{left:320.818667pt;}
.xe6{left:322.601333pt;}
.x7{left:325.502667pt;}
.x81{left:326.408000pt;}
.x78{left:328.025333pt;}
.x79{left:331.293333pt;}
.xeb{left:332.733333pt;}
.xd2{left:334.205333pt;}
.xe8{left:337.312000pt;}
.x82{left:339.692000pt;}
.xd6{left:341.349333pt;}
.x83{left:343.072000pt;}
.x7a{left:344.577333pt;}
.xaf{left:346.422667pt;}
.xf0{left:348.500000pt;}
.x23{left:350.478667pt;}
.xae{left:352.060000pt;}
.x93{left:353.632000pt;}
.xd7{left:354.633333pt;}
.x5c{left:355.590667pt;}
.x94{left:357.018667pt;}
.x38{left:357.984000pt;}
.xe0{left:361.973333pt;}
.x24{left:363.762667pt;}
.x31{left:366.729333pt;}
.x39{left:367.966667pt;}
.x5d{left:368.874667pt;}
.x95{left:370.302667pt;}
.xc6{left:372.138667pt;}
.xda{left:373.305333pt;}
.x84{left:374.592000pt;}
.xe1{left:378.644000pt;}
.x32{left:380.013333pt;}
.x3a{left:381.249333pt;}
.x88{left:382.948000pt;}
.x3b{left:384.590667pt;}
.xcf{left:386.424000pt;}
.x85{left:387.876000pt;}
.xe2{left:391.928000pt;}
.xd0{left:393.066667pt;}
.x67{left:395.252000pt;}
.x89{left:396.230667pt;}
.x3c{left:397.874667pt;}
.x8a{left:399.618667pt;}
.x70{left:402.096000pt;}
.xed{left:403.102667pt;}
.x1e{left:404.070667pt;}
.xc7{left:408.081333pt;}
.x86{left:409.638667pt;}
.xe3{left:411.986667pt;}
.x8b{left:412.902667pt;}
.x87{left:416.281333pt;}
.x1f{left:417.353333pt;}
.x60{left:419.962667pt;}
.xc8{left:421.365333pt;}
.xa{left:422.717333pt;}
.xb{left:429.358667pt;}
.xc{left:432.700000pt;}
.x66{left:433.645333pt;}
.xd{left:439.341333pt;}
.x55{left:445.385333pt;}
.xba{left:447.125333pt;}
.x56{left:448.773333pt;}
.x96{left:452.624000pt;}
.xc3{left:457.954667pt;}
.xbb{left:460.409333pt;}
.x57{left:462.056000pt;}
.xbc{left:463.780000pt;}
.x97{left:465.908000pt;}
.x58{left:468.830667pt;}
.x8e{left:472.741333pt;}
.xc4{left:474.625333pt;}
.xbd{left:477.064000pt;}
.x8f{left:479.382667pt;}
.x59{left:482.114667pt;}
.x98{left:485.965333pt;}
.xfb{left:493.057333pt;}
.xee{left:494.026667pt;}
.x68{left:495.569333pt;}
.x3d{left:498.405333pt;}
.x71{left:500.064000pt;}
.x20{left:503.946667pt;}
.x3e{left:505.048000pt;}
.xef{left:507.309333pt;}
.x3f{left:508.345333pt;}
.x2b{left:509.445333pt;}
.xd3{left:512.258667pt;}
.x40{left:514.986667pt;}
.x21{left:517.230667pt;}
.x41{left:518.285333pt;}
.x18{left:520.112000pt;}
.x47{left:521.486961pt;}
.x2c{left:522.729333pt;}
.x19{left:526.753333pt;}
.x69{left:527.925333pt;}
.xd4{left:528.929333pt;}
.x1a{left:530.090667pt;}
.x42{left:531.568000pt;}
.x22{left:533.872000pt;}
.xfc{left:535.177333pt;}
.x1b{left:543.374667pt;}
.xd5{left:545.600000pt;}
.x2f{left:549.172000pt;}
.xe5{left:553.485333pt;}
.xe9{left:555.632000pt;}
.x36{left:556.800000pt;}
.x30{left:562.456000pt;}
.x25{left:563.565333pt;}
.x37{left:570.082667pt;}
.x26{left:572.312000pt;}
.xe{left:579.538667pt;}
.x9b{left:580.804739pt;}
.xf{left:586.180000pt;}
.x10{left:589.557333pt;}
.x11{left:596.200000pt;}
.xcc{left:597.372000pt;}
.x51{left:614.193333pt;}
.xdb{left:615.952000pt;}
.x61{left:617.130667pt;}
.xf4{left:621.222667pt;}
.x52{left:627.477333pt;}
.xdc{left:629.234667pt;}
.x62{left:630.414667pt;}
.xdd{left:632.582667pt;}
.x7f{left:638.712000pt;}
.xd8{left:640.662667pt;}
.x73{left:644.512000pt;}
.xde{left:645.865333pt;}
.x2d{left:648.310667pt;}
.x6a{left:649.492000pt;}
.x80{left:651.994667pt;}
.x72{left:653.628000pt;}
.xf9{left:654.666667pt;}
.xf8{left:655.628000pt;}
.x7b{left:657.846667pt;}
.x2e{left:661.593333pt;}
.xdf{left:662.497333pt;}
.x7c{left:664.489333pt;}
.xb8{left:665.688000pt;}
.x90{left:666.801333pt;}
.x7d{left:667.760000pt;}
.x91{left:670.188000pt;}
.xfd{left:674.253333pt;}
.xf1{left:677.074667pt;}
.xf7{left:677.976000pt;}
.xb9{left:678.972000pt;}
.x7e{left:681.044000pt;}
.x5e{left:682.034667pt;}
.x92{left:683.472000pt;}
.x4d{left:686.226667pt;}
.x5f{left:688.676000pt;}
.x34{left:690.909333pt;}
.x4f{left:695.164000pt;}
.xc5{left:696.074667pt;}
.x4e{left:699.510667pt;}
.xf2{left:702.022667pt;}
.x1c{left:703.013333pt;}
.x35{left:704.192000pt;}
.xfa{left:706.980000pt;}
.x50{left:708.446667pt;}
.x27{left:710.614667pt;}
.xc9{left:712.586667pt;}
.x1d{left:716.296000pt;}
.x8c{left:717.256000pt;}
.xf3{left:718.973333pt;}
.xf5{left:720.293333pt;}
.x28{left:723.897333pt;}
.xca{left:725.870667pt;}
.x29{left:727.152000pt;}
.x5a{left:728.046667pt;}
.xfe{left:732.268000pt;}
.xd9{left:739.461333pt;}
.x2a{left:740.436000pt;}
.x5b{left:741.330667pt;}
.xf6{left:744.202667pt;}
}




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