
    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_e14b8a36a18f851d3ffdbe6d.woff')format("woff");}.ff1{font-family:ff1;line-height:0.986000;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_415771d136c083d33c7e117a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_fa880b4de4407b9873ce9c9a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ea57affcc61103b435e16d9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_979a2be4f77c76664226d790.woff')format("woff");}.ff5{font-family:ff5;line-height:0.747000;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_b81f0a65f05062d7b2d034e0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_dfe75727c138b01233ae67ea.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_777b021cb1990515bc6bec90.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_0b7f228eebd2d57f3f77c92b.woff')format("woff");}.ff9{font-family:ff9;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ea33ff1a60011fa9f7323ba7.woff')format("woff");}.ffa{font-family:ffa;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7e7e03fa5da1dfee6f1837a3.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c57f9b21c10b79ab34e0c59a.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_d894f37c97a5b3a542d3bea0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_7e7e03fa5da1dfee6f1837a3.woff')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_c57f9b21c10b79ab34e0c59a.woff')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_d894f37c97a5b3a542d3bea0.woff')format("woff");}.ff10{font-family:ff10;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_7e7e03fa5da1dfee6f1837a3.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_a3819020c4766a5b0e0ecbdb.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_20d071892ba8b48ba1ae78b3.woff')format("woff");}.ff13{font-family:ff13;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_7e7e03fa5da1dfee6f1837a3.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_d6c66b662224d06ffe119546.woff')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_995f39d7938fe131e6f372f0.woff')format("woff");}.ff16{font-family:ff16;line-height:1.206055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_14fc22567d42ed5f3ba74d6e.woff')format("woff");}.ff17{font-family:ff17;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mc{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);}
.m18{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);}
.m11{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);}
.m16{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.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);}
.m6{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);}
.m1d{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);}
.m2b{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);}
.m10{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);}
.ma{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);}
.m2c{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);}
.m12{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);}
.mf{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);}
.md{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);}
.m17{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);}
.m2a{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);}
.m1a{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);}
.m28{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mb{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);}
.m19{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);}
.m22{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);}
.m24{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);}
.m23{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);}
.m25{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);}
.m27{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);}
.m9{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);}
.m2{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);}
.m1b{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);}
.m8{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);}
.m26{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);}
.m4{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);}
.m1e{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);}
.m7{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);}
.m1c{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);}
.m15{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);}
.m1f{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);}
.m13{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);}
.m3{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);}
.m5{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);}
.m29{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);}
.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);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls7a{letter-spacing:-0.271021px;}
.ls60{letter-spacing:-0.246492px;}
.ls57{letter-spacing:-0.241562px;}
.ls7c{letter-spacing:-0.235670px;}
.ls28{letter-spacing:-0.210420px;}
.ls50{letter-spacing:-0.206212px;}
.ls7d{letter-spacing:-0.194428px;}
.ls2c{letter-spacing:-0.168336px;}
.ls78{letter-spacing:-0.147294px;}
.ls27{letter-spacing:-0.144288px;}
.ls24{letter-spacing:-0.132264px;}
.ls21{letter-spacing:-0.118800px;}
.ls79{letter-spacing:-0.117835px;}
.ls62{letter-spacing:-0.114228px;}
.ls59{letter-spacing:-0.111943px;}
.ls61{letter-spacing:-0.102204px;}
.ls58{letter-spacing:-0.100160px;}
.ls5f{letter-spacing:-0.096192px;}
.ls56{letter-spacing:-0.094268px;}
.ls7b{letter-spacing:-0.082485px;}
.ls5e{letter-spacing:-0.078156px;}
.ls54{letter-spacing:-0.076593px;}
.ls6f{letter-spacing:-0.070701px;}
.ls25{letter-spacing:-0.060120px;}
.ls6e{letter-spacing:-0.047134px;}
.ls26{letter-spacing:-0.042084px;}
.ls70{letter-spacing:-0.035351px;}
.ls76{letter-spacing:-0.029459px;}
.ls29{letter-spacing:-0.024048px;}
.ls53{letter-spacing:-0.023567px;}
.ls2b{letter-spacing:-0.018036px;}
.ls6d{letter-spacing:-0.017675px;}
.ls23{letter-spacing:-0.012024px;}
.ls55{letter-spacing:-0.011784px;}
.ls5b{letter-spacing:-0.010800px;}
.ls4f{letter-spacing:-0.010584px;}
.ls22{letter-spacing:-0.006012px;}
.ls6c{letter-spacing:-0.005892px;}
.ls5a{letter-spacing:-0.005400px;}
.ls4e{letter-spacing:-0.005292px;}
.ls9{letter-spacing:0.000000px;}
.ls82{letter-spacing:0.000800px;}
.ls7e{letter-spacing:0.001036px;}
.ls84{letter-spacing:0.001155px;}
.ls69{letter-spacing:0.001555px;}
.ls75{letter-spacing:0.002467px;}
.ls83{letter-spacing:0.002544px;}
.ls8c{letter-spacing:0.002841px;}
.ls1{letter-spacing:0.003634px;}
.ls34{letter-spacing:0.005292px;}
.ls47{letter-spacing:0.005400px;}
.ls3f{letter-spacing:0.005892px;}
.ls4b{letter-spacing:0.006012px;}
.ls2d{letter-spacing:0.009384px;}
.lsc{letter-spacing:0.009576px;}
.ls52{letter-spacing:0.010584px;}
.ls5d{letter-spacing:0.010800px;}
.ls63{letter-spacing:0.011784px;}
.ls36{letter-spacing:0.015876px;}
.ls13{letter-spacing:0.016200px;}
.ls3b{letter-spacing:0.017675px;}
.ls19{letter-spacing:0.018036px;}
.ls39{letter-spacing:0.021168px;}
.ls14{letter-spacing:0.021600px;}
.ls3e{letter-spacing:0.023567px;}
.ls1c{letter-spacing:0.024048px;}
.ls51{letter-spacing:0.026460px;}
.ls5c{letter-spacing:0.027000px;}
.ls3c{letter-spacing:0.029459px;}
.ls17{letter-spacing:0.030060px;}
.ls35{letter-spacing:0.031752px;}
.ls10{letter-spacing:0.032400px;}
.ls40{letter-spacing:0.035351px;}
.ls18{letter-spacing:0.036072px;}
.ls31{letter-spacing:0.037044px;}
.ls15{letter-spacing:0.037800px;}
.ls38{letter-spacing:0.041242px;}
.ls48{letter-spacing:0.042084px;}
.ls2f{letter-spacing:0.042230px;}
.ls68{letter-spacing:0.042336px;}
.lse{letter-spacing:0.043092px;}
.ls3d{letter-spacing:0.047134px;}
.ls66{letter-spacing:0.047628px;}
.ls4a{letter-spacing:0.048096px;}
.ls3a{letter-spacing:0.053026px;}
.ls12{letter-spacing:0.054000px;}
.ls49{letter-spacing:0.054108px;}
.ls72{letter-spacing:0.058212px;}
.ls65{letter-spacing:0.058918px;}
.ls1d{letter-spacing:0.060120px;}
.ls32{letter-spacing:0.063504px;}
.ls45{letter-spacing:0.064800px;}
.ls41{letter-spacing:0.064809px;}
.ls4c{letter-spacing:0.066132px;}
.ls67{letter-spacing:0.068796px;}
.ls42{letter-spacing:0.070701px;}
.ls1a{letter-spacing:0.072144px;}
.ls11{letter-spacing:0.075600px;}
.ls64{letter-spacing:0.076593px;}
.ls2a{letter-spacing:0.078156px;}
.ls43{letter-spacing:0.082485px;}
.ls4d{letter-spacing:0.084168px;}
.ls77{letter-spacing:0.088376px;}
.ls1b{letter-spacing:0.090180px;}
.ls44{letter-spacing:0.094268px;}
.ls16{letter-spacing:0.096192px;}
.ls6a{letter-spacing:0.100160px;}
.ls33{letter-spacing:0.121716px;}
.ls74{letter-spacing:0.123727px;}
.ls46{letter-spacing:0.124200px;}
.ls37{letter-spacing:0.147294px;}
.ls1e{letter-spacing:0.150300px;}
.ls6b{letter-spacing:0.170861px;}
.ls30{letter-spacing:0.173613px;}
.lsf{letter-spacing:0.177156px;}
.ls2e{letter-spacing:0.187690px;}
.lsd{letter-spacing:0.191520px;}
.ls71{letter-spacing:0.375732px;}
.ls2{letter-spacing:2.998354px;}
.ls0{letter-spacing:10.461300px;}
.ls73{letter-spacing:11.742278px;}
.ls8{letter-spacing:11.954850px;}
.lsb{letter-spacing:12.406078px;}
.ls8b{letter-spacing:12.693257px;}
.ls81{letter-spacing:13.309089px;}
.ls87{letter-spacing:13.317747px;}
.ls85{letter-spacing:13.356756px;}
.ls7f{letter-spacing:13.448400px;}
.ls80{letter-spacing:13.454400px;}
.ls8a{letter-spacing:13.517234px;}
.ls8f{letter-spacing:13.589914px;}
.ls7{letter-spacing:14.094088px;}
.ls89{letter-spacing:14.126871px;}
.ls20{letter-spacing:15.165141px;}
.ls1f{letter-spacing:15.657483px;}
.ls88{letter-spacing:16.226871px;}
.lsa{letter-spacing:17.928089px;}
.ls4{letter-spacing:17.935200px;}
.ls8e{letter-spacing:18.585694px;}
.ls8d{letter-spacing:19.050400px;}
.ls86{letter-spacing:21.020988px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls6{letter-spacing:64.321654px;}
.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;}
}
.wsd{word-spacing:-93.519509px;}
.ws8e{word-spacing:-15.030000px;}
.ws12{word-spacing:-14.943900px;}
.ws8a{word-spacing:-14.729400px;}
.ws10{word-spacing:-14.355754px;}
.ws8d{word-spacing:-13.500000px;}
.ws140{word-spacing:-13.449600px;}
.ws89{word-spacing:-13.230000px;}
.ws63{word-spacing:-12.161520px;}
.ws64{word-spacing:-11.970000px;}
.ws2a{word-spacing:-11.955150px;}
.ws87{word-spacing:-11.918290px;}
.ws88{word-spacing:-11.730600px;}
.wse{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws16d{word-spacing:-3.817860px;}
.ws16c{word-spacing:-3.511489px;}
.ws130{word-spacing:-3.128525px;}
.ws112{word-spacing:-3.081390px;}
.ws82{word-spacing:-2.873736px;}
.ws67{word-spacing:-2.869229px;}
.ws135{word-spacing:-2.780911px;}
.ws113{word-spacing:-2.763235px;}
.ws134{word-spacing:-2.745560px;}
.ws62{word-spacing:-2.570351px;}
.wsf7{word-spacing:-2.494980px;}
.wsc7{word-spacing:-2.445080px;}
.ws3c{word-spacing:-2.391024px;}
.ws15e{word-spacing:-2.368488px;}
.ws190{word-spacing:-2.151922px;}
.ws1d5{word-spacing:-2.098138px;}
.ws182{word-spacing:-2.085683px;}
.ws136{word-spacing:-2.056224px;}
.ws15d{word-spacing:-2.032657px;}
.ws23{word-spacing:-1.882944px;}
.wsfd{word-spacing:-1.853044px;}
.ws7b{word-spacing:-1.779552px;}
.ws1ce{word-spacing:-1.775347px;}
.wsde{word-spacing:-1.761516px;}
.wsdf{word-spacing:-1.749492px;}
.wsff{word-spacing:-1.733492px;}
.wsae{word-spacing:-1.726286px;}
.wsdd{word-spacing:-1.725444px;}
.ws1a1{word-spacing:-1.721549px;}
.wsaf{word-spacing:-1.714502px;}
.wsad{word-spacing:-1.690935px;}
.ws7a{word-spacing:-1.647288px;}
.wsd5{word-spacing:-1.641600px;}
.wsd3{word-spacing:-1.630800px;}
.wsd7{word-spacing:-1.625400px;}
.wsd4{word-spacing:-1.614600px;}
.wsa4{word-spacing:-1.608768px;}
.wsd6{word-spacing:-1.603800px;}
.wsa2{word-spacing:-1.598184px;}
.wsa6{word-spacing:-1.592892px;}
.wsa3{word-spacing:-1.582308px;}
.ws79{word-spacing:-1.575144px;}
.wsa5{word-spacing:-1.571724px;}
.ws1f2{word-spacing:-1.506355px;}
.ws126{word-spacing:-1.402239px;}
.wsda{word-spacing:-1.400796px;}
.ws1b6{word-spacing:-1.398758px;}
.ws43{word-spacing:-1.374839px;}
.wsa9{word-spacing:-1.372780px;}
.ws11b{word-spacing:-1.366888px;}
.ws11c{word-spacing:-1.349213px;}
.ws176{word-spacing:-1.337430px;}
.ws186{word-spacing:-1.325646px;}
.ws187{word-spacing:-1.319754px;}
.ws5d{word-spacing:-1.315063px;}
.ws39{word-spacing:-1.195512px;}
.wse2{word-spacing:-1.034064px;}
.ws1d1{word-spacing:-1.022170px;}
.ws16e{word-spacing:-1.019274px;}
.wsb2{word-spacing:-1.013383px;}
.wsdb{word-spacing:-0.985968px;}
.wsaa{word-spacing:-0.966249px;}
.ws30{word-spacing:-0.956410px;}
.ws31{word-spacing:-0.896634px;}
.ws1e2{word-spacing:-0.860774px;}
.wsfc{word-spacing:-0.777083px;}
.ws1d3{word-spacing:-0.753178px;}
.ws104{word-spacing:-0.717307px;}
.ws1bd{word-spacing:-0.699379px;}
.ws92{word-spacing:-0.657532px;}
.ws18f{word-spacing:-0.597756px;}
.ws69{word-spacing:-0.478205px;}
.ws1ed{word-spacing:-0.430387px;}
.ws175{word-spacing:-0.382964px;}
.ws16{word-spacing:-0.376589px;}
.ws3d{word-spacing:-0.358654px;}
.ws18{word-spacing:-0.322790px;}
.wse5{word-spacing:-0.300600px;}
.ws38{word-spacing:-0.298878px;}
.wsb5{word-spacing:-0.294588px;}
.ws6a{word-spacing:-0.277704px;}
.ws97{word-spacing:-0.272150px;}
.ws66{word-spacing:-0.268992px;}
.wsd9{word-spacing:-0.240480px;}
.ws45{word-spacing:-0.239102px;}
.wsa8{word-spacing:-0.235670px;}
.ws1a{word-spacing:-0.215194px;}
.ws2e{word-spacing:-0.179327px;}
.ws1e{word-spacing:-0.161395px;}
.ws6b{word-spacing:-0.129276px;}
.ws98{word-spacing:-0.126690px;}
.ws3a{word-spacing:-0.119551px;}
.ws20{word-spacing:-0.107597px;}
.ws13{word-spacing:-0.059776px;}
.ws19{word-spacing:-0.053798px;}
.ws2b{word-spacing:-0.047821px;}
.ws4{word-spacing:-0.041843px;}
.ws1df{word-spacing:-0.007824px;}
.ws106{word-spacing:-0.005892px;}
.ws1{word-spacing:0.000000px;}
.ws14{word-spacing:0.000625px;}
.ws83{word-spacing:0.018036px;}
.ws122{word-spacing:0.029459px;}
.ws127{word-spacing:0.035351px;}
.ws86{word-spacing:0.036072px;}
.ws118{word-spacing:0.041242px;}
.ws22{word-spacing:0.053798px;}
.ws159{word-spacing:0.058918px;}
.ws41{word-spacing:0.059776px;}
.ws172{word-spacing:0.088376px;}
.ws139{word-spacing:0.100160px;}
.wsb7{word-spacing:0.106052px;}
.ws2c{word-spacing:0.107597px;}
.ws6e{word-spacing:0.108000px;}
.wse7{word-spacing:0.108216px;}
.ws13d{word-spacing:0.111132px;}
.ws173{word-spacing:0.111943px;}
.ws2f{word-spacing:0.119551px;}
.ws14f{word-spacing:0.121716px;}
.ws13e{word-spacing:0.137592px;}
.ws171{word-spacing:0.141402px;}
.ws6d{word-spacing:0.151200px;}
.wsa7{word-spacing:0.158760px;}
.ws24{word-spacing:0.161395px;}
.wsd8{word-spacing:0.162000px;}
.ws37{word-spacing:0.179327px;}
.wsa0{word-spacing:0.190512px;}
.wsd1{word-spacing:0.194400px;}
.ws174{word-spacing:0.212103px;}
.ws1d{word-spacing:0.215194px;}
.ws35{word-spacing:0.239102px;}
.ws198{word-spacing:0.268992px;}
.ws40{word-spacing:0.298878px;}
.ws194{word-spacing:0.322790px;}
.ws3f{word-spacing:0.358654px;}
.ws197{word-spacing:0.376589px;}
.wsbc{word-spacing:0.418315px;}
.ws32{word-spacing:0.418429px;}
.wsec{word-spacing:0.426852px;}
.wscb{word-spacing:0.430098px;}
.wsfb{word-spacing:0.438876px;}
.ws46{word-spacing:0.478205px;}
.ws1ca{word-spacing:0.484186px;}
.ws13f{word-spacing:0.537984px;}
.ws50{word-spacing:0.597756px;}
.ws61{word-spacing:0.657532px;}
.ws25{word-spacing:0.673200px;}
.ws21{word-spacing:0.699379px;}
.ws169{word-spacing:0.701119px;}
.ws55{word-spacing:0.717307px;}
.ws163{word-spacing:0.748254px;}
.ws68{word-spacing:0.748800px;}
.wsbb{word-spacing:0.771821px;}
.ws143{word-spacing:0.777083px;}
.ws153{word-spacing:0.777712px;}
.wsba{word-spacing:0.783604px;}
.wseb{word-spacing:0.787572px;}
.wsea{word-spacing:0.799596px;}
.ws26{word-spacing:0.806976px;}
.ws1d6{word-spacing:0.860774px;}
.wsb8{word-spacing:0.895548px;}
.ws8f{word-spacing:0.896634px;}
.wse8{word-spacing:0.913824px;}
.ws3b{word-spacing:0.956410px;}
.ws56{word-spacing:1.016185px;}
.wsb9{word-spacing:1.042842px;}
.wse9{word-spacing:1.064124px;}
.ws18a{word-spacing:1.075961px;}
.ws12c{word-spacing:1.125326px;}
.ws18d{word-spacing:1.135736px;}
.ws109{word-spacing:1.137110px;}
.ws17c{word-spacing:1.143001px;}
.ws154{word-spacing:1.184244px;}
.ws12b{word-spacing:1.225486px;}
.ws48{word-spacing:1.255288px;}
.ws4c{word-spacing:1.315063px;}
.ws52{word-spacing:1.374839px;}
.ws3e{word-spacing:1.434614px;}
.ws181{word-spacing:1.472940px;}
.ws132{word-spacing:1.490615px;}
.ws4b{word-spacing:1.494390px;}
.ws17{word-spacing:1.506355px;}
.wsc2{word-spacing:1.508291px;}
.ws7d{word-spacing:1.521036px;}
.ws131{word-spacing:1.525966px;}
.wsf2{word-spacing:1.539072px;}
.ws5f{word-spacing:1.554166px;}
.ws44{word-spacing:1.613941px;}
.ws7e{word-spacing:1.683360px;}
.ws1c2{word-spacing:1.775347px;}
.wsc1{word-spacing:1.785203px;}
.wsf1{word-spacing:1.821636px;}
.ws183{word-spacing:1.826446px;}
.ws8b{word-spacing:1.829146px;}
.ws180{word-spacing:1.838229px;}
.ws9f{word-spacing:1.931580px;}
.ws6f{word-spacing:1.933200px;}
.ws1b7{word-spacing:1.936742px;}
.ws70{word-spacing:1.971000px;}
.ws142{word-spacing:1.972595px;}
.ws1a7{word-spacing:1.990541px;}
.ws71{word-spacing:2.106000px;}
.ws47{word-spacing:2.151922px;}
.ws1c5{word-spacing:2.151936px;}
.ws156{word-spacing:2.162276px;}
.ws121{word-spacing:2.174059px;}
.ws155{word-spacing:2.203518px;}
.ws10e{word-spacing:2.215302px;}
.ws1dc{word-spacing:2.259533px;}
.ws188{word-spacing:2.271473px;}
.ws73{word-spacing:2.311200px;}
.ws72{word-spacing:2.327400px;}
.ws144{word-spacing:2.331248px;}
.ws102{word-spacing:2.391024px;}
.ws95{word-spacing:2.450800px;}
.wsca{word-spacing:2.468647px;}
.ws158{word-spacing:2.474539px;}
.ws1d4{word-spacing:2.474726px;}
.ws157{word-spacing:2.498106px;}
.ws14c{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.wsfa{word-spacing:2.519028px;}
.wsc6{word-spacing:2.521673px;}
.ws15a{word-spacing:2.539349px;}
.ws189{word-spacing:2.570351px;}
.wsf6{word-spacing:2.573136px;}
.ws10d{word-spacing:2.586483px;}
.ws9c{word-spacing:2.587788px;}
.ws14d{word-spacing:2.614248px;}
.ws9e{word-spacing:2.619540px;}
.ws51{word-spacing:2.630126px;}
.ws28{word-spacing:2.636122px;}
.wsce{word-spacing:2.640600px;}
.ws9d{word-spacing:2.646000px;}
.ws14e{word-spacing:2.656584px;}
.wsd0{word-spacing:2.673000px;}
.ws1c{word-spacing:2.689920px;}
.wscf{word-spacing:2.700000px;}
.ws1c7{word-spacing:2.797517px;}
.ws14a{word-spacing:2.809453px;}
.wsb1{word-spacing:2.875179px;}
.wsb0{word-spacing:2.886962px;}
.wsc9{word-spacing:2.898746px;}
.ws12a{word-spacing:2.910529px;}
.ws54{word-spacing:2.929004px;}
.wse1{word-spacing:2.933856px;}
.wse0{word-spacing:2.945880px;}
.wsf9{word-spacing:2.957904px;}
.ws8c{word-spacing:2.958912px;}
.ws123{word-spacing:2.963555px;}
.ws5e{word-spacing:2.988780px;}
.ws65{word-spacing:3.012710px;}
.ws59{word-spacing:3.048556px;}
.ws1e1{word-spacing:3.218246px;}
.ws1a5{word-spacing:3.218342px;}
.ws1b3{word-spacing:3.218717px;}
.ws1eb{word-spacing:3.222758px;}
.ws196{word-spacing:3.224822px;}
.ws199{word-spacing:3.227904px;}
.wsc5{word-spacing:3.228684px;}
.ws117{word-spacing:3.240468px;}
.ws160{word-spacing:3.246360px;}
.ws116{word-spacing:3.264035px;}
.ws1d0{word-spacing:3.281702px;}
.wsf5{word-spacing:3.294576px;}
.ws81{word-spacing:3.360708px;}
.ws149{word-spacing:3.407209px;}
.ws91{word-spacing:3.466985px;}
.ws103{word-spacing:3.526760px;}
.ws1ee{word-spacing:3.550694px;}
.ws16a{word-spacing:3.576298px;}
.ws2d{word-spacing:3.586536px;}
.ws1ba{word-spacing:3.604493px;}
.ws14b{word-spacing:3.646312px;}
.ws1b5{word-spacing:3.658291px;}
.ws15{word-spacing:3.712090px;}
.ws1c8{word-spacing:3.765888px;}
.ws1ec{word-spacing:3.819686px;}
.ws5a{word-spacing:3.885414px;}
.ws15c{word-spacing:3.929804px;}
.ws148{word-spacing:3.945190px;}
.ws1d8{word-spacing:3.981082px;}
.ws12e{word-spacing:3.982830px;}
.ws12d{word-spacing:4.012289px;}
.ws9a{word-spacing:4.027212px;}
.ws1e8{word-spacing:4.034880px;}
.wsfe{word-spacing:4.064741px;}
.ws9b{word-spacing:4.069548px;}
.wscc{word-spacing:4.109400px;}
.wscd{word-spacing:4.152600px;}
.ws19d{word-spacing:4.196275px;}
.ws146{word-spacing:4.244068px;}
.ws19e{word-spacing:4.250074px;}
.ws1de{word-spacing:4.357670px;}
.ws141{word-spacing:4.363619px;}
.ws1e5{word-spacing:4.411469px;}
.ws100{word-spacing:4.483170px;}
.ws58{word-spacing:4.542946px;}
.ws19c{word-spacing:4.572864px;}
.ws1cc{word-spacing:4.626662px;}
.ws4e{word-spacing:4.662497px;}
.ws42{word-spacing:4.722272px;}
.ws1b{word-spacing:4.734259px;}
.wsb{word-spacing:4.770079px;}
.ws36{word-spacing:4.782048px;}
.ws7f{word-spacing:4.785552px;}
.ws18c{word-spacing:4.841824px;}
.ws1f0{word-spacing:4.841856px;}
.wsc{word-spacing:4.853765px;}
.ws4d{word-spacing:4.901599px;}
.ws1c9{word-spacing:4.949453px;}
.ws80{word-spacing:4.989960px;}
.ws185{word-spacing:4.996212px;}
.ws16b{word-spacing:5.019780px;}
.ws128{word-spacing:5.031563px;}
.ws151{word-spacing:5.037455px;}
.ws129{word-spacing:5.055130px;}
.ws4a{word-spacing:5.080926px;}
.ws1ea{word-spacing:5.110848px;}
.ws93{word-spacing:5.140702px;}
.ws1c3{word-spacing:5.218445px;}
.ws33{word-spacing:5.320028px;}
.ws179{word-spacing:5.343826px;}
.ws1f{word-spacing:5.379840px;}
.ws150{word-spacing:5.414527px;}
.ws1ab{word-spacing:5.487437px;}
.ws1bc{word-spacing:5.541235px;}
.ws5b{word-spacing:5.559131px;}
.ws1e7{word-spacing:5.595034px;}
.ws138{word-spacing:5.673765px;}
.ws133{word-spacing:5.720899px;}
.ws137{word-spacing:5.732682px;}
.ws18b{word-spacing:5.738458px;}
.ws161{word-spacing:5.738574px;}
.ws162{word-spacing:5.756250px;}
.ws4f{word-spacing:5.917784px;}
.ws1ae{word-spacing:5.971622px;}
.ws1b9{word-spacing:6.025421px;}
.wsc0{word-spacing:6.027270px;}
.ws15f{word-spacing:6.056729px;}
.wsbf{word-spacing:6.086188px;}
.ws12f{word-spacing:6.103863px;}
.ws1b0{word-spacing:6.133018px;}
.wsf0{word-spacing:6.150276px;}
.ws145{word-spacing:6.156887px;}
.ws75{word-spacing:6.186348px;}
.ws27{word-spacing:6.186816px;}
.wsef{word-spacing:6.210396px;}
.ws74{word-spacing:6.222420px;}
.ws76{word-spacing:6.228432px;}
.ws191{word-spacing:6.336214px;}
.ws177{word-spacing:6.392560px;}
.ws19b{word-spacing:6.402010px;}
.ws178{word-spacing:6.422018px;}
.ws15b{word-spacing:6.451477px;}
.ws101{word-spacing:6.455765px;}
.ws192{word-spacing:6.509606px;}
.ws18e{word-spacing:6.635092px;}
.ws19a{word-spacing:6.778598px;}
.wsab{word-spacing:6.781416px;}
.ws90{word-spacing:6.874194px;}
.ws1c0{word-spacing:6.886195px;}
.ws77{word-spacing:6.901776px;}
.ws78{word-spacing:6.919812px;}
.ws147{word-spacing:6.933970px;}
.ws10c{word-spacing:7.111354px;}
.ws10f{word-spacing:7.123138px;}
.wsac{word-spacing:7.229190px;}
.wsbd{word-spacing:7.252757px;}
.wsdc{word-spacing:7.376724px;}
.wsed{word-spacing:7.400772px;}
.ws195{word-spacing:7.424179px;}
.ws57{word-spacing:7.471950px;}
.ws166{word-spacing:7.476643px;}
.ws165{word-spacing:7.494319px;}
.ws1ad{word-spacing:7.531776px;}
.ws1ac{word-spacing:7.585574px;}
.ws60{word-spacing:7.591501px;}
.wsbe{word-spacing:7.618046px;}
.ws96{word-spacing:7.651277px;}
.ws193{word-spacing:7.693171px;}
.wsee{word-spacing:7.773516px;}
.ws9{word-spacing:7.782761px;}
.ws53{word-spacing:7.830604px;}
.ws94{word-spacing:8.249033px;}
.ws10b{word-spacing:8.843532px;}
.ws10a{word-spacing:8.878882px;}
.ws34{word-spacing:9.026116px;}
.ws17a{word-spacing:9.350223px;}
.ws1da{word-spacing:9.576115px;}
.ws164{word-spacing:10.310580px;}
.ws2{word-spacing:10.414088px;}
.ws152{word-spacing:10.640519px;}
.ws17e{word-spacing:10.999916px;}
.ws17f{word-spacing:11.229695px;}
.ws99{word-spacing:11.388066px;}
.ws1cf{word-spacing:11.620454px;}
.ws6c{word-spacing:11.620476px;}
.wsc8{word-spacing:11.659793px;}
.ws11d{word-spacing:11.706927px;}
.ws168{word-spacing:11.718711px;}
.ws167{word-spacing:11.889572px;}
.wsf8{word-spacing:11.897748px;}
.ws29{word-spacing:11.900582px;}
.ws7{word-spacing:12.176255px;}
.ws1d2{word-spacing:12.373632px;}
.ws11e{word-spacing:12.767444px;}
.ws115{word-spacing:12.773336px;}
.ws1d9{word-spacing:13.073011px;}
.ws1a3{word-spacing:13.180608px;}
.ws1a9{word-spacing:13.288205px;}
.ws1bb{word-spacing:13.385846px;}
.ws1f1{word-spacing:13.387008px;}
.ws1b8{word-spacing:13.387786px;}
.ws1dd{word-spacing:13.388755px;}
.ws1e3{word-spacing:13.388765px;}
.ws1e0{word-spacing:13.389658px;}
.ws1e4{word-spacing:13.393498px;}
.ws1ef{word-spacing:13.393603px;}
.ws1f3{word-spacing:13.395619px;}
.ws1a0{word-spacing:13.395802px;}
.ws120{word-spacing:13.444996px;}
.ws1cd{word-spacing:13.449600px;}
.ws11a{word-spacing:13.480347px;}
.ws19f{word-spacing:13.503398px;}
.ws11f{word-spacing:13.521589px;}
.ws1bf{word-spacing:13.557197px;}
.ws108{word-spacing:14.157899px;}
.ws107{word-spacing:14.199142px;}
.ws13c{word-spacing:14.251356px;}
.ws13a{word-spacing:14.261940px;}
.ws13b{word-spacing:14.277816px;}
.ws5c{word-spacing:14.884124px;}
.ws5{word-spacing:15.481836px;}
.ws1c6{word-spacing:15.547738px;}
.ws8{word-spacing:16.109478px;}
.ws114{word-spacing:16.255366px;}
.ws111{word-spacing:16.273041px;}
.ws85{word-spacing:16.280496px;}
.ws84{word-spacing:16.322580px;}
.ws1b1{word-spacing:16.516109px;}
.ws1af{word-spacing:16.569907px;}
.ws119{word-spacing:16.585304px;}
.ws1a2{word-spacing:16.613846px;}
.ws1be{word-spacing:16.614326px;}
.ws1c4{word-spacing:16.617322px;}
.ws1a8{word-spacing:16.619846px;}
.ws1b2{word-spacing:16.620960px;}
.ws1a4{word-spacing:16.621142px;}
.ws1d7{word-spacing:16.622294px;}
.ws1b4{word-spacing:16.623005px;}
.ws1aa{word-spacing:16.623322px;}
.ws1a6{word-spacing:16.623706px;}
.ws110{word-spacing:16.673681px;}
.ws1c1{word-spacing:16.785101px;}
.ws184{word-spacing:16.997728px;}
.ws1e9{word-spacing:17.430682px;}
.ws17b{word-spacing:17.622254px;}
.ws1e6{word-spacing:17.807270px;}
.wsb6{word-spacing:18.458884px;}
.ws1cb{word-spacing:18.560448px;}
.wsb3{word-spacing:18.777039px;}
.wsb4{word-spacing:18.794714px;}
.wse6{word-spacing:18.835596px;}
.wse3{word-spacing:19.160244px;}
.wse4{word-spacing:19.178280px;}
.ws49{word-spacing:20.383480px;}
.wsc4{word-spacing:21.286929px;}
.wsc3{word-spacing:21.292821px;}
.wsf4{word-spacing:21.721356px;}
.wsf3{word-spacing:21.727368px;}
.ws1db{word-spacing:22.971917px;}
.ws17d{word-spacing:25.517213px;}
.wsa{word-spacing:26.109907px;}
.ws6{word-spacing:26.840252px;}
.ws16f{word-spacing:28.681088px;}
.ws170{word-spacing:28.728222px;}
.ws105{word-spacing:30.790338px;}
.ws125{word-spacing:36.729232px;}
.ws124{word-spacing:36.752799px;}
.ws11{word-spacing:40.042186px;}
.wsf{word-spacing:46.636891px;}
.ws7c{word-spacing:85.851360px;}
.wsa1{word-spacing:1413.468575px;}
.wsd2{word-spacing:1442.314872px;}
._5{margin-left:-8.482266px;}
._9{margin-left:-6.635708px;}
._0{margin-left:-5.397721px;}
._a{margin-left:-4.303854px;}
._1{margin-left:-3.096367px;}
._2{margin-left:-1.506341px;}
._19{width:1.231200px;}
._7{width:3.001712px;}
._8{width:4.023547px;}
._1c{width:11.086343px;}
._3{width:12.971268px;}
._11{width:14.828586px;}
._c{width:16.462282px;}
._e{width:17.658527px;}
._10{width:19.170736px;}
._d{width:20.873779px;}
._14{width:22.379976px;}
._24{width:23.529531px;}
._f{width:24.693451px;}
._1a{width:26.522597px;}
._15{width:27.915205px;}
._20{width:29.290044px;}
._4{width:30.587087px;}
._1d{width:32.231616px;}
._6{width:33.355008px;}
._17{width:35.100228px;}
._26{width:36.848018px;}
._1e{width:37.909681px;}
._1f{width:39.810550px;}
._16{width:42.034198px;}
._25{width:45.864159px;}
._b{width:56.810873px;}
._23{width:61.868160px;}
._22{width:88.767360px;}
._12{width:645.721562px;}
._1b{width:2025.621239px;}
._18{width:2066.960448px;}
._21{width:2453.414700px;}
._13{width:2477.324700px;}
.fc3{color:transparent;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(65,127,142);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:33.120000px;}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fse{font-size:46.922400px;}
.fs6{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fs10{font-size:52.920000px;}
.fs7{font-size:53.798400px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:56.058000px;}
.fsf{font-size:58.917600px;}
.fs2{font-size:59.775600px;}
.fsa{font-size:60.120000px;}
.fsd{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:120.205025px;}
.y10c{bottom:-897.287559px;}
.y19f{bottom:-896.051289px;}
.y12b{bottom:-830.950322px;}
.y1cb{bottom:-824.239334px;}
.y12a{bottom:-812.076069px;}
.y1ca{bottom:-805.365081px;}
.y129{bottom:-793.290192px;}
.y1c9{bottom:-786.577731px;}
.y128{bottom:-774.415939px;}
.y1c8{bottom:-767.703478px;}
.y127{bottom:-755.630062px;}
.y1c7{bottom:-748.829225px;}
.y126{bottom:-736.755809px;}
.y1c6{bottom:-730.043348px;}
.y125{bottom:-717.881556px;}
.y1c5{bottom:-711.169095px;}
.y124{bottom:-699.095679px;}
.y1c4{bottom:-692.294842px;}
.y123{bottom:-680.221426px;}
.y1c3{bottom:-673.508965px;}
.y122{bottom:-661.347173px;}
.y1c2{bottom:-654.634712px;}
.y121{bottom:-642.561296px;}
.y1c1{bottom:-635.848835px;}
.y120{bottom:-623.687043px;}
.y1c0{bottom:-616.974582px;}
.y11f{bottom:-604.901166px;}
.y1bf{bottom:-598.100329px;}
.y11e{bottom:-586.026913px;}
.y1be{bottom:-579.314452px;}
.y133{bottom:-570.001050px;}
.y11d{bottom:-567.152660px;}
.y1bd{bottom:-560.440199px;}
.y11c{bottom:-548.366783px;}
.y1bc{bottom:-541.654322px;}
.y11b{bottom:-529.492530px;}
.y1bb{bottom:-522.780069px;}
.y11a{bottom:-510.706653px;}
.y1ba{bottom:-503.905816px;}
.y152{bottom:-502.309992px;}
.y119{bottom:-491.832400px;}
.ye0{bottom:-488.015550px;}
.y1b9{bottom:-485.119939px;}
.y151{bottom:-483.050550px;}
.y118{bottom:-472.958147px;}
.y1b8{bottom:-466.245686px;}
.y150{bottom:-463.881288px;}
.y117{bottom:-454.170797px;}
.y1b7{bottom:-447.459809px;}
.y14f{bottom:-444.621846px;}
.y116{bottom:-435.296544px;}
.y1b6{bottom:-428.585556px;}
.y14e{bottom:-425.452584px;}
.y115{bottom:-412.099212px;}
.y1b5{bottom:-409.711303px;}
.y14d{bottom:-406.193142px;}
.y1b4{bottom:-390.925426px;}
.y14c{bottom:-386.933700px;}
.y114{bottom:-376.025118px;}
.y1b3{bottom:-372.051173px;}
.y14b{bottom:-367.764438px;}
.y113{bottom:-358.914759px;}
.yf5{bottom:-358.859289px;}
.y1b2{bottom:-353.176920px;}
.y14a{bottom:-348.504996px;}
.yf4{bottom:-339.599847px;}
.y1b1{bottom:-334.391043px;}
.y112{bottom:-332.542959px;}
.y149{bottom:-329.245554px;}
.yf3{bottom:-320.430585px;}
.y1b0{bottom:-315.516790px;}
.y148{bottom:-310.076292px;}
.yf2{bottom:-301.171143px;}
.y1af{bottom:-296.729440px;}
.y147{bottom:-290.816850px;}
.yf1{bottom:-281.911701px;}
.y1ae{bottom:-277.855187px;}
.y146{bottom:-271.647588px;}
.yf0{bottom:-262.742439px;}
.y1ad{bottom:-258.980934px;}
.y145{bottom:-252.388146px;}
.yef{bottom:-243.482997px;}
.y1ac{bottom:-240.193584px;}
.y144{bottom:-233.128704px;}
.yee{bottom:-224.223555px;}
.y1ab{bottom:-221.319331px;}
.y143{bottom:-213.959442px;}
.yed{bottom:-205.054293px;}
.y1aa{bottom:-202.533454px;}
.y142{bottom:-194.700000px;}
.yec{bottom:-185.794851px;}
.y1a9{bottom:-183.659201px;}
.y141{bottom:-175.530738px;}
.yeb{bottom:-166.625589px;}
.y1a8{bottom:-164.784948px;}
.y140{bottom:-156.271296px;}
.yea{bottom:-147.366147px;}
.y1a7{bottom:-145.997598px;}
.y16f{bottom:-143.894919px;}
.y13f{bottom:-137.011854px;}
.y1a6{bottom:-127.123345px;}
.ye9{bottom:-123.695400px;}
.y13e{bottom:-117.841089px;}
.y1a5{bottom:-108.335995px;}
.y13d{bottom:-98.581647px;}
.y1a4{bottom:-89.461742px;}
.ye8{bottom:-86.885100px;}
.y13c{bottom:-74.910900px;}
.y1a3{bottom:-70.587489px;}
.ye7{bottom:-69.425550px;}
.y111{bottom:-68.559918px;}
.ye6{bottom:-52.145550px;}
.ye4{bottom:-52.145400px;}
.y110{bottom:-51.449559px;}
.ye5{bottom:-48.365550px;}
.y13b{bottom:-38.100600px;}
.ye3{bottom:-34.865400px;}
.y199{bottom:-34.791960px;}
.y10f{bottom:-34.515159px;}
.y1a2{bottom:-34.514130px;}
.y13a{bottom:-20.641050px;}
.y198{bottom:-17.768919px;}
.ye2{bottom:-17.585400px;}
.y10e{bottom:-17.580759px;}
.y1a1{bottom:-17.491089px;}
.y0{bottom:0.000000px;}
.y197{bottom:4.207725px;}
.y10d{bottom:4.381500px;}
.y1a0{bottom:4.470349px;}
.ye1{bottom:4.914342px;}
.y139{bottom:6.268950px;}
.y1c{bottom:17.541026px;}
.y4c{bottom:31.890000px;}
.y1f7{bottom:91.665000px;}
.y203{bottom:93.025500px;}
.y16a{bottom:99.427500px;}
.y26f{bottom:104.503500px;}
.y1a{bottom:104.646000px;}
.y1f6{bottom:110.494500px;}
.y202{bottom:110.599500px;}
.y169{bottom:118.257000px;}
.y7f{bottom:121.527000px;}
.y26e{bottom:121.762500px;}
.y19{bottom:122.535000px;}
.y237{bottom:123.213000px;}
.y201{bottom:128.175000px;}
.y1f5{bottom:129.324000px;}
.y168{bottom:137.086500px;}
.y26c{bottom:139.023000px;}
.y7e{bottom:140.356500px;}
.y18{bottom:140.422500px;}
.y236{bottom:140.473500px;}
.y4b{bottom:144.058500px;}
.y108{bottom:147.325500px;}
.y1f4{bottom:148.153500px;}
.y167{bottom:155.916000px;}
.y26b{bottom:156.283500px;}
.y235{bottom:157.734000px;}
.y17{bottom:158.310000px;}
.y7d{bottom:159.186000px;}
.y19b{bottom:159.535500px;}
.y4a{bottom:163.516500px;}
.yb1{bottom:163.681500px;}
.y107{bottom:166.155000px;}
.y1f3{bottom:166.983000px;}
.y26a{bottom:173.544000px;}
.y166{bottom:174.745500px;}
.y234{bottom:174.994500px;}
.y16{bottom:176.199000px;}
.y7c{bottom:178.015500px;}
.y19a{bottom:178.768500px;}
.yb0{bottom:182.511000px;}
.y49{bottom:182.973000px;}
.y106{bottom:184.984500px;}
.y1f2{bottom:185.812500px;}
.y269{bottom:190.804500px;}
.y233{bottom:192.255000px;}
.y165{bottom:193.575000px;}
.y15{bottom:194.086500px;}
.y7b{bottom:196.845000px;}
.y196{bottom:197.983293px;}
.yaf{bottom:201.340500px;}
.y48{bottom:202.429500px;}
.y105{bottom:203.814000px;}
.y16c{bottom:204.186000px;}
.y1f1{bottom:204.642000px;}
.y268{bottom:208.065000px;}
.y232{bottom:209.515500px;}
.y14{bottom:211.974000px;}
.y164{bottom:212.404500px;}
.y10b{bottom:214.120773px;}
.y19e{bottom:215.357043px;}
.y7a{bottom:215.674500px;}
.y195{bottom:216.857546px;}
.yae{bottom:220.170000px;}
.y47{bottom:221.887500px;}
.y104{bottom:222.642000px;}
.y1f0{bottom:223.471500px;}
.y10a{bottom:223.558041px;}
.y19d{bottom:224.794311px;}
.y267{bottom:225.325500px;}
.y231{bottom:226.776000px;}
.y13{bottom:229.863000px;}
.y163{bottom:231.234000px;}
.y79{bottom:234.504000px;}
.y194{bottom:235.644896px;}
.yad{bottom:238.999500px;}
.y46{bottom:241.344000px;}
.y103{bottom:241.471500px;}
.y1ef{bottom:242.301000px;}
.y266{bottom:242.586000px;}
.y230{bottom:244.035000px;}
.y162{bottom:250.063500px;}
.y78{bottom:253.333500px;}
.y193{bottom:254.519149px;}
.yac{bottom:257.829000px;}
.y265{bottom:259.846500px;}
.y102{bottom:260.301000px;}
.y45{bottom:260.802000px;}
.y1ee{bottom:261.130500px;}
.y22f{bottom:261.295500px;}
.y200{bottom:262.311000px;}
.y161{bottom:268.893000px;}
.ydc{bottom:271.278000px;}
.y77{bottom:272.163000px;}
.y192{bottom:273.305025px;}
.y138{bottom:275.639400px;}
.yab{bottom:276.658500px;}
.y264{bottom:277.105500px;}
.y22e{bottom:278.556000px;}
.y101{bottom:279.130500px;}
.y1ed{bottom:279.960000px;}
.y44{bottom:280.258500px;}
.y160{bottom:287.722500px;}
.ydb{bottom:290.107500px;}
.y76{bottom:290.992500px;}
.y191{bottom:292.179279px;}
.y137{bottom:293.098950px;}
.y263{bottom:294.366000px;}
.yaa{bottom:295.488000px;}
.y22d{bottom:295.816500px;}
.y1ff{bottom:295.935000px;}
.y100{bottom:297.960000px;}
.y1ec{bottom:298.789500px;}
.y43{bottom:299.715000px;}
.y12{bottom:299.892000px;}
.y15f{bottom:306.552000px;}
.yda{bottom:308.937000px;}
.y75{bottom:309.822000px;}
.y136{bottom:310.378950px;}
.y190{bottom:311.053532px;}
.y262{bottom:311.626500px;}
.y22c{bottom:313.077000px;}
.ya9{bottom:314.317500px;}
.y1fe{bottom:314.764500px;}
.yff{bottom:316.789500px;}
.y1eb{bottom:317.619000px;}
.y11{bottom:317.779500px;}
.y42{bottom:319.173000px;}
.y15e{bottom:325.381500px;}
.y135{bottom:327.658950px;}
.yd9{bottom:327.766500px;}
.y74{bottom:328.651500px;}
.y261{bottom:328.887000px;}
.y18f{bottom:329.840881px;}
.y22b{bottom:330.337500px;}
.ya8{bottom:333.145500px;}
.y1fd{bottom:333.594000px;}
.yfe{bottom:335.619000px;}
.y10{bottom:335.667000px;}
.y1ea{bottom:336.448500px;}
.y41{bottom:338.629500px;}
.y15d{bottom:344.211000px;}
.y260{bottom:346.147500px;}
.yd8{bottom:346.596000px;}
.y73{bottom:347.481000px;}
.y22a{bottom:347.598000px;}
.y18e{bottom:348.715135px;}
.y134{bottom:350.069418px;}
.ya7{bottom:351.975000px;}
.y1fc{bottom:352.423500px;}
.yf{bottom:353.556000px;}
.yfd{bottom:354.448500px;}
.y1e9{bottom:355.278000px;}
.y40{bottom:358.086000px;}
.y15c{bottom:363.039000px;}
.y25f{bottom:363.408000px;}
.y229{bottom:364.858500px;}
.yd7{bottom:365.425500px;}
.y72{bottom:366.310500px;}
.y18d{bottom:367.501011px;}
.ya6{bottom:370.804500px;}
.y1fb{bottom:371.253000px;}
.y1e8{bottom:374.107500px;}
.y3f{bottom:377.544000px;}
.yfc{bottom:377.761500px;}
.y25e{bottom:380.668500px;}
.y15b{bottom:381.868500px;}
.ye{bottom:381.904500px;}
.y228{bottom:382.117500px;}
.yd6{bottom:384.255000px;}
.y71{bottom:385.140000px;}
.y18c{bottom:386.375265px;}
.y1fa{bottom:390.082500px;}
.y1e7{bottom:392.937000px;}
.ya5{bottom:394.117500px;}
.y3e{bottom:397.000500px;}
.y25d{bottom:397.929000px;}
.y227{bottom:399.378000px;}
.y15a{bottom:400.698000px;}
.yd5{bottom:403.084500px;}
.y70{bottom:403.969500px;}
.y18b{bottom:405.249518px;}
.yfb{bottom:408.189000px;}
.yd{bottom:408.759000px;}
.y16b{bottom:408.912000px;}
.y1e6{bottom:411.766500px;}
.y25c{bottom:415.188000px;}
.y3d{bottom:416.458500px;}
.y226{bottom:416.638500px;}
.y159{bottom:419.527500px;}
.yd4{bottom:421.914000px;}
.y6f{bottom:422.799000px;}
.y18a{bottom:424.035394px;}
.yc{bottom:426.646500px;}
.yfa{bottom:427.422000px;}
.ya4{bottom:427.741500px;}
.y1e5{bottom:430.596000px;}
.y25b{bottom:432.448500px;}
.y225{bottom:433.899000px;}
.y3c{bottom:435.915000px;}
.y158{bottom:438.357000px;}
.yd3{bottom:440.743500px;}
.y6e{bottom:441.628500px;}
.y189{bottom:442.909648px;}
.yb{bottom:444.534000px;}
.ya3{bottom:446.571000px;}
.yf8{bottom:446.655000px;}
.y1e4{bottom:449.425500px;}
.y25a{bottom:449.709000px;}
.y224{bottom:451.159500px;}
.yf9{bottom:451.537500px;}
.y3a{bottom:455.371500px;}
.y157{bottom:457.186500px;}
.yd2{bottom:459.573000px;}
.y3b{bottom:460.254000px;}
.y6d{bottom:460.458000px;}
.y188{bottom:461.783901px;}
.ya{bottom:462.423000px;}
.ya2{bottom:465.400500px;}
.yf7{bottom:465.888000px;}
.y259{bottom:466.969500px;}
.y1e3{bottom:468.255000px;}
.y223{bottom:468.420000px;}
.y39{bottom:474.829500px;}
.y156{bottom:476.016000px;}
.yd1{bottom:478.402500px;}
.y6c{bottom:479.287500px;}
.y9{bottom:480.310500px;}
.y187{bottom:480.569778px;}
.ya1{bottom:484.230000px;}
.yf6{bottom:485.121000px;}
.y222{bottom:485.680500px;}
.y1e2{bottom:487.084500px;}
.y38{bottom:494.286000px;}
.yd0{bottom:497.232000px;}
.y6b{bottom:498.117000px;}
.y8{bottom:498.198000px;}
.y155{bottom:499.329000px;}
.y186{bottom:499.444031px;}
.y258{bottom:501.490500px;}
.y221{bottom:502.941000px;}
.ya0{bottom:503.059500px;}
.y1e1{bottom:505.914000px;}
.ydd{bottom:507.549000px;}
.y37{bottom:513.742500px;}
.y272{bottom:514.192500px;}
.ycf{bottom:516.061500px;}
.y7{bottom:516.087000px;}
.y6a{bottom:516.946500px;}
.y185{bottom:518.231380px;}
.y257{bottom:518.751000px;}
.y220{bottom:520.201500px;}
.y9f{bottom:521.889000px;}
.y1e0{bottom:524.743500px;}
.y154{bottom:529.756500px;}
.y271{bottom:531.453000px;}
.y36{bottom:533.200500px;}
.y6{bottom:533.974500px;}
.yce{bottom:534.891000px;}
.y69{bottom:535.776000px;}
.y256{bottom:536.011500px;}
.y184{bottom:537.105634px;}
.y21f{bottom:537.460500px;}
.y9e{bottom:540.718500px;}
.y1df{bottom:543.573000px;}
.y270{bottom:548.713500px;}
.y153{bottom:548.989500px;}
.y5{bottom:551.862000px;}
.y35{bottom:552.657000px;}
.y255{bottom:553.272000px;}
.y68{bottom:554.604000px;}
.y21e{bottom:554.721000px;}
.y183{bottom:555.979887px;}
.ycd{bottom:558.202500px;}
.y9d{bottom:559.548000px;}
.y1de{bottom:562.401000px;}
.y132{bottom:564.089085px;}
.y4{bottom:569.751000px;}
.y254{bottom:570.531000px;}
.y21d{bottom:571.981500px;}
.y34{bottom:572.115000px;}
.y67{bottom:573.433500px;}
.y131{bottom:573.718950px;}
.y130{bottom:574.407000px;}
.y182{bottom:574.767236px;}
.y9c{bottom:578.377500px;}
.y1dd{bottom:581.230500px;}
.y3{bottom:587.638500px;}
.y253{bottom:587.791500px;}
.y21c{bottom:589.242000px;}
.y33{bottom:591.571500px;}
.ycc{bottom:591.826500px;}
.y66{bottom:592.263000px;}
.y181{bottom:593.641490px;}
.y9b{bottom:597.207000px;}
.y1dc{bottom:600.060000px;}
.y252{bottom:605.052000px;}
.y2{bottom:605.526000px;}
.ycb{bottom:610.656000px;}
.y21b{bottom:610.986000px;}
.y32{bottom:611.028000px;}
.y65{bottom:611.092500px;}
.y180{bottom:612.427366px;}
.y9a{bottom:616.036500px;}
.y1db{bottom:618.889500px;}
.y251{bottom:622.312500px;}
.y1{bottom:623.415000px;}
.yca{bottom:629.485500px;}
.y64{bottom:629.922000px;}
.y31{bottom:630.486000px;}
.y17f{bottom:631.301619px;}
.y99{bottom:634.866000px;}
.y1da{bottom:637.719000px;}
.y250{bottom:639.573000px;}
.ydf{bottom:646.074585px;}
.y21a{bottom:647.598000px;}
.yc9{bottom:648.315000px;}
.y63{bottom:648.751500px;}
.y30{bottom:649.942500px;}
.y17e{bottom:650.175873px;}
.y98{bottom:653.695500px;}
.yde{bottom:655.704450px;}
.y1d9{bottom:656.548500px;}
.y24f{bottom:656.833500px;}
.y219{bottom:665.172000px;}
.yc8{bottom:667.144500px;}
.y62{bottom:667.581000px;}
.y17d{bottom:668.963222px;}
.y2f{bottom:669.399000px;}
.y97{bottom:672.525000px;}
.y24e{bottom:674.094000px;}
.y1d8{bottom:675.378000px;}
.y218{bottom:682.746000px;}
.yc7{bottom:685.974000px;}
.y61{bottom:686.410500px;}
.y17c{bottom:687.837475px;}
.y2e{bottom:688.857000px;}
.y96{bottom:691.354500px;}
.y1d7{bottom:694.207500px;}
.y217{bottom:700.321500px;}
.y60{bottom:705.240000px;}
.y17b{bottom:706.623352px;}
.y24d{bottom:708.613500px;}
.yc6{bottom:709.287000px;}
.y95{bottom:710.184000px;}
.y1d6{bottom:713.037000px;}
.y216{bottom:717.895500px;}
.y5f{bottom:724.069500px;}
.y17a{bottom:725.497605px;}
.y24c{bottom:725.874000px;}
.y2d{bottom:727.441500px;}
.y94{bottom:729.013500px;}
.y1d5{bottom:731.866500px;}
.y215{bottom:735.469500px;}
.y5e{bottom:742.899000px;}
.yc5{bottom:742.911000px;}
.y24b{bottom:743.134500px;}
.y2c{bottom:743.581500px;}
.y179{bottom:744.371859px;}
.y1f9{bottom:747.841500px;}
.y92{bottom:747.843000px;}
.y1d4{bottom:750.696000px;}
.y214{bottom:753.043500px;}
.y93{bottom:753.267000px;}
.y2b{bottom:759.721500px;}
.y24a{bottom:760.395000px;}
.y5d{bottom:761.728500px;}
.yc4{bottom:761.740500px;}
.y178{bottom:763.157735px;}
.y91{bottom:766.671000px;}
.y1d3{bottom:769.525500px;}
.y249{bottom:777.655500px;}
.y213{bottom:779.583000px;}
.y2a{bottom:780.201000px;}
.y5c{bottom:780.558000px;}
.yc3{bottom:780.570000px;}
.y177{bottom:782.031988px;}
.y90{bottom:785.500500px;}
.y1d2{bottom:788.355000px;}
.y248{bottom:794.916000px;}
.y29{bottom:796.339500px;}
.y212{bottom:797.158500px;}
.y5b{bottom:799.387500px;}
.yc2{bottom:799.399500px;}
.y176{bottom:800.906242px;}
.y8f{bottom:804.330000px;}
.y1d1{bottom:807.184500px;}
.y28{bottom:808.140000px;}
.y247{bottom:812.176500px;}
.y211{bottom:814.732500px;}
.y5a{bottom:818.217000px;}
.yc1{bottom:818.229000px;}
.y175{bottom:819.692118px;}
.y8e{bottom:823.159500px;}
.y1d0{bottom:826.014000px;}
.y27{bottom:828.619500px;}
.y246{bottom:829.437000px;}
.y210{bottom:832.306500px;}
.y59{bottom:837.046500px;}
.yc0{bottom:837.058500px;}
.y174{bottom:838.566372px;}
.y8d{bottom:841.989000px;}
.y26{bottom:844.758000px;}
.y1cf{bottom:844.843500px;}
.y245{bottom:846.697500px;}
.y58{bottom:855.876000px;}
.ybf{bottom:855.888000px;}
.y173{bottom:857.352248px;}
.y20f{bottom:858.846000px;}
.y12f{bottom:859.434000px;}
.y8c{bottom:860.818500px;}
.y25{bottom:860.898000px;}
.y1ce{bottom:863.673000px;}
.y244{bottom:863.956500px;}
.ybe{bottom:871.987500px;}
.y57{bottom:874.705500px;}
.ybd{bottom:874.717500px;}
.y172{bottom:876.226502px;}
.y20e{bottom:876.420000px;}
.y12e{bottom:878.667000px;}
.y8b{bottom:879.648000px;}
.y243{bottom:881.217000px;}
.y56{bottom:893.535000px;}
.ybc{bottom:893.547000px;}
.y171{bottom:895.100755px;}
.y1cd{bottom:896.664000px;}
.y12d{bottom:897.900000px;}
.y8a{bottom:898.477500px;}
.y20d{bottom:902.961000px;}
.y24{bottom:905.575500px;}
.y55{bottom:912.364500px;}
.y170{bottom:913.888104px;}
.y242{bottom:915.738000px;}
.y1cc{bottom:915.895500px;}
.ybb{bottom:916.858500px;}
.y12c{bottom:917.133000px;}
.y89{bottom:917.307000px;}
.y23{bottom:924.405000px;}
.y20c{bottom:929.502000px;}
.y54{bottom:931.194000px;}
.y241{bottom:932.998500px;}
.y88{bottom:936.136500px;}
.y19c{bottom:941.314500px;}
.y109{bottom:942.550500px;}
.y22{bottom:943.233000px;}
.y20b{bottom:947.076000px;}
.y53{bottom:950.023500px;}
.y240{bottom:950.259000px;}
.yba{bottom:950.482500px;}
.y87{bottom:954.966000px;}
.y20a{bottom:964.650000px;}
.y16e{bottom:967.513413px;}
.y23f{bottom:967.519500px;}
.y52{bottom:968.853000px;}
.yb9{bottom:969.312000px;}
.y86{bottom:973.795500px;}
.y16d{bottom:976.950681px;}
.y21{bottom:979.996500px;}
.y209{bottom:982.224000px;}
.y23e{bottom:984.780000px;}
.y51{bottom:987.682500px;}
.yb8{bottom:988.141500px;}
.y85{bottom:992.625000px;}
.y26d{bottom:1002.039000px;}
.y23d{bottom:1002.040500px;}
.yb7{bottom:1006.971000px;}
.y20{bottom:1008.240000px;}
.y208{bottom:1008.765000px;}
.y50{bottom:1010.994000px;}
.y84{bottom:1011.454500px;}
.y23c{bottom:1019.299500px;}
.yb6{bottom:1025.800500px;}
.y83{bottom:1030.284000px;}
.y207{bottom:1035.304500px;}
.y1f{bottom:1036.485000px;}
.y23b{bottom:1036.560000px;}
.yb5{bottom:1044.630000px;}
.y82{bottom:1049.113500px;}
.y206{bottom:1052.880000px;}
.y23a{bottom:1053.820500px;}
.yb4{bottom:1063.459500px;}
.y1e{bottom:1064.728500px;}
.y81{bottom:1067.943000px;}
.y205{bottom:1070.454000px;}
.y239{bottom:1071.081000px;}
.yb2{bottom:1082.289000px;}
.y4f{bottom:1086.144000px;}
.y80{bottom:1086.772500px;}
.yb3{bottom:1087.713000px;}
.y204{bottom:1088.028000px;}
.y238{bottom:1088.341500px;}
.y1f8{bottom:1092.196500px;}
.y1d{bottom:1092.972000px;}
.y4e{bottom:1105.602000px;}
.y1b{bottom:1136.460000px;}
.y4d{bottom:1168.366500px;}
.ha{height:26.110157px;}
.h12{height:27.974981px;}
.h2{height:30.461558px;}
.h19{height:30.629531px;}
.h3{height:30.670772px;}
.h13{height:33.072749px;}
.hb{height:34.813397px;}
.hf{height:35.052500px;}
.he{height:37.334628px;}
.hc{height:38.734848px;}
.hd{height:39.165235px;}
.h25{height:39.434227px;}
.h1b{height:41.482876px;}
.h10{height:43.038432px;}
.h20{height:43.382686px;}
.h1d{height:43.394055px;}
.h11{height:43.516637px;}
.h6{height:43.815515px;}
.h1a{height:44.268047px;}
.h16{height:44.279648px;}
.h1f{height:48.940664px;}
.h24{height:49.117939px;}
.h18{height:49.939453px;}
.h4{height:50.617695px;}
.h9{height:54.405312px;}
.h8{height:54.411312px;}
.h1e{height:54.487273px;}
.h14{height:54.768749px;}
.h17{height:55.599258px;}
.h7{height:77.469696px;}
.h5{height:81.499007px;}
.h1c{height:177.996420px;}
.h23{height:179.232690px;}
.h22{height:181.086360px;}
.h21{height:259.830000px;}
.h15{height:612.997500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:196.289934px;}
.w3{width:542.994000px;}
.w5{width:764.354100px;}
.w4{width:776.260695px;}
.w7{width:778.114365px;}
.w6{width:779.351076px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x54{left:-191.955000px;}
.x70{left:-10.326900px;}
.x0{left:0.000000px;}
.x56{left:3.615000px;}
.x86{left:5.948796px;}
.x59{left:35.474894px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x85{left:56.571294px;}
.x2{left:57.699701px;}
.x6f{left:64.067400px;}
.xa8{left:85.848000px;}
.x57{left:117.825000px;}
.x58{left:124.035000px;}
.xb6{left:147.346500px;}
.x73{left:182.993100px;}
.x72{left:185.243100px;}
.xac{left:190.186500px;}
.x67{left:193.548285px;}
.x66{left:195.753285px;}
.x87{left:197.606328px;}
.x74{left:217.102994px;}
.x68{left:226.975982px;}
.x88{left:228.829025px;}
.xba{left:238.488000px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x52{left:261.886500px;}
.x2c{left:267.237000px;}
.x53{left:268.312500px;}
.x5{left:269.914500px;}
.x2d{left:277.077000px;}
.x60{left:278.919000px;}
.x12{left:281.479500px;}
.x78{left:285.067500px;}
.x5d{left:286.950000px;}
.x9c{left:294.864000px;}
.x6e{left:296.610000px;}
.x28{left:299.071500px;}
.xf{left:303.555000px;}
.x5a{left:306.796500px;}
.x69{left:308.644500px;}
.x7{left:310.159500px;}
.x9b{left:312.471000px;}
.x29{left:314.014500px;}
.x22{left:316.411500px;}
.x10{left:317.991000px;}
.x11{left:319.891500px;}
.x9f{left:321.208500px;}
.x23{left:323.883000px;}
.x24{left:327.597000px;}
.x51{left:329.464500px;}
.x79{left:331.474500px;}
.x25{left:342.541500px;}
.x8b{left:346.824000px;}
.x26{left:349.968000px;}
.x61{left:351.172500px;}
.x8c{left:354.445500px;}
.x6a{left:357.418500px;}
.x27{left:364.912500px;}
.x6b{left:367.881000px;}
.x8d{left:369.388500px;}
.xa6{left:372.399000px;}
.x5b{left:379.357500px;}
.xa7{left:382.729500px;}
.x5c{left:391.261500px;}
.xa4{left:395.589000px;}
.x15{left:397.654500px;}
.x18{left:403.962000px;}
.x7a{left:406.863000px;}
.x19{left:411.435000px;}
.x1a{left:415.095000px;}
.x1b{left:422.568000px;}
.x9e{left:426.918000px;}
.x75{left:428.577000px;}
.x8{left:430.104000px;}
.xa5{left:434.790000px;}
.x32{left:438.421500px;}
.x9{left:442.021500px;}
.x33{left:446.043000px;}
.x2e{left:455.709000px;}
.x34{left:460.987500px;}
.x93{left:464.001000px;}
.x2f{left:470.653500px;}
.x1c{left:473.814000px;}
.x76{left:475.438500px;}
.xa2{left:477.945000px;}
.x94{left:478.945500px;}
.x1d{left:481.287000px;}
.x6c{left:482.877000px;}
.x77{left:484.408500px;}
.x1e{left:488.908500px;}
.x6d{left:491.847000px;}
.x95{left:494.551500px;}
.x1f{left:496.380000px;}
.x20{left:508.371000px;}
.x4d{left:512.701500px;}
.x7b{left:514.239000px;}
.x8f{left:517.939500px;}
.x21{left:523.315500px;}
.x4e{left:527.646000px;}
.x7c{left:529.183500px;}
.x4f{left:531.456000px;}
.x7d{left:532.993500px;}
.x55{left:537.852326px;}
.xa{left:542.730000px;}
.x50{left:546.400500px;}
.x7e{left:547.938000px;}
.x35{left:549.118500px;}
.x7f{left:551.748000px;}
.xb{left:557.167500px;}
.xa0{left:561.192000px;}
.x36{left:564.063000px;}
.x80{left:566.692500px;}
.x62{left:567.715500px;}
.xb7{left:571.338000px;}
.x83{left:572.542500px;}
.xa1{left:576.136500px;}
.x63{left:583.861500px;}
.x84{left:587.947500px;}
.x9d{left:602.646000px;}
.x48{left:604.248000px;}
.x41{left:616.027500px;}
.x96{left:617.131500px;}
.x49{left:619.192500px;}
.x4a{left:626.814000px;}
.x42{left:630.970500px;}
.x43{left:634.782000px;}
.xc{left:636.817500px;}
.xb8{left:638.475000px;}
.x39{left:641.319000px;}
.x30{left:645.067500px;}
.x44{left:649.726500px;}
.xd{left:651.256500px;}
.x3a{left:656.263500px;}
.x31{left:660.012000px;}
.x3b{left:663.885000px;}
.xb9{left:665.374500px;}
.xb4{left:668.767500px;}
.x8e{left:672.373500px;}
.x64{left:674.767500px;}
.x81{left:677.079000px;}
.x3c{left:678.828000px;}
.x45{left:686.548500px;}
.x65{left:690.913500px;}
.x82{left:692.023500px;}
.xb5{left:695.667000px;}
.x16{left:697.954500px;}
.x46{left:701.491500px;}
.x17{left:705.427500px;}
.x97{left:709.573500px;}
.x47{left:720.246000px;}
.x98{left:722.535000px;}
.x89{left:723.975000px;}
.xb0{left:725.461500px;}
.xb2{left:727.209000px;}
.x2a{left:730.462500px;}
.xae{left:731.623500px;}
.x8a{left:734.437500px;}
.x13{left:736.489500px;}
.x90{left:739.470000px;}
.x14{left:743.962500px;}
.x2b{left:745.405500px;}
.xa3{left:748.941000px;}
.xb1{left:752.361000px;}
.xb3{left:754.108500px;}
.xaf{left:758.523000px;}
.x3d{left:761.398500px;}
.xad{left:763.438500px;}
.x4b{left:766.752000px;}
.xe{left:773.884500px;}
.x71{left:774.920489px;}
.x3e{left:776.341500px;}
.x91{left:778.645500px;}
.x4c{left:781.696500px;}
.x3f{left:783.963000px;}
.x99{left:786.022500px;}
.xab{left:790.029000px;}
.x92{left:793.590000px;}
.x5e{left:794.775000px;}
.x40{left:798.907500px;}
.x9a{left:800.967000px;}
.xa9{left:810.376500px;}
.x5f{left:812.238000px;}
.x37{left:816.951000px;}
.x38{left:831.894000px;}
.xaa{left:837.276000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls7a{letter-spacing:-0.240908pt;}
.ls60{letter-spacing:-0.219104pt;}
.ls57{letter-spacing:-0.214722pt;}
.ls7c{letter-spacing:-0.209485pt;}
.ls28{letter-spacing:-0.187040pt;}
.ls50{letter-spacing:-0.183299pt;}
.ls7d{letter-spacing:-0.172825pt;}
.ls2c{letter-spacing:-0.149632pt;}
.ls78{letter-spacing:-0.130928pt;}
.ls27{letter-spacing:-0.128256pt;}
.ls24{letter-spacing:-0.117568pt;}
.ls21{letter-spacing:-0.105600pt;}
.ls79{letter-spacing:-0.104742pt;}
.ls62{letter-spacing:-0.101536pt;}
.ls59{letter-spacing:-0.099505pt;}
.ls61{letter-spacing:-0.090848pt;}
.ls58{letter-spacing:-0.089031pt;}
.ls5f{letter-spacing:-0.085504pt;}
.ls56{letter-spacing:-0.083794pt;}
.ls7b{letter-spacing:-0.073320pt;}
.ls5e{letter-spacing:-0.069472pt;}
.ls54{letter-spacing:-0.068083pt;}
.ls6f{letter-spacing:-0.062845pt;}
.ls25{letter-spacing:-0.053440pt;}
.ls6e{letter-spacing:-0.041897pt;}
.ls26{letter-spacing:-0.037408pt;}
.ls70{letter-spacing:-0.031423pt;}
.ls76{letter-spacing:-0.026186pt;}
.ls29{letter-spacing:-0.021376pt;}
.ls53{letter-spacing:-0.020948pt;}
.ls2b{letter-spacing:-0.016032pt;}
.ls6d{letter-spacing:-0.015711pt;}
.ls23{letter-spacing:-0.010688pt;}
.ls55{letter-spacing:-0.010474pt;}
.ls5b{letter-spacing:-0.009600pt;}
.ls4f{letter-spacing:-0.009408pt;}
.ls22{letter-spacing:-0.005344pt;}
.ls6c{letter-spacing:-0.005237pt;}
.ls5a{letter-spacing:-0.004800pt;}
.ls4e{letter-spacing:-0.004704pt;}
.ls9{letter-spacing:0.000000pt;}
.ls82{letter-spacing:0.000711pt;}
.ls7e{letter-spacing:0.000921pt;}
.ls84{letter-spacing:0.001026pt;}
.ls69{letter-spacing:0.001382pt;}
.ls75{letter-spacing:0.002193pt;}
.ls83{letter-spacing:0.002262pt;}
.ls8c{letter-spacing:0.002525pt;}
.ls1{letter-spacing:0.003230pt;}
.ls34{letter-spacing:0.004704pt;}
.ls47{letter-spacing:0.004800pt;}
.ls3f{letter-spacing:0.005237pt;}
.ls4b{letter-spacing:0.005344pt;}
.ls2d{letter-spacing:0.008342pt;}
.lsc{letter-spacing:0.008512pt;}
.ls52{letter-spacing:0.009408pt;}
.ls5d{letter-spacing:0.009600pt;}
.ls63{letter-spacing:0.010474pt;}
.ls36{letter-spacing:0.014112pt;}
.ls13{letter-spacing:0.014400pt;}
.ls3b{letter-spacing:0.015711pt;}
.ls19{letter-spacing:0.016032pt;}
.ls39{letter-spacing:0.018816pt;}
.ls14{letter-spacing:0.019200pt;}
.ls3e{letter-spacing:0.020948pt;}
.ls1c{letter-spacing:0.021376pt;}
.ls51{letter-spacing:0.023520pt;}
.ls5c{letter-spacing:0.024000pt;}
.ls3c{letter-spacing:0.026186pt;}
.ls17{letter-spacing:0.026720pt;}
.ls35{letter-spacing:0.028224pt;}
.ls10{letter-spacing:0.028800pt;}
.ls40{letter-spacing:0.031423pt;}
.ls18{letter-spacing:0.032064pt;}
.ls31{letter-spacing:0.032928pt;}
.ls15{letter-spacing:0.033600pt;}
.ls38{letter-spacing:0.036660pt;}
.ls48{letter-spacing:0.037408pt;}
.ls2f{letter-spacing:0.037538pt;}
.ls68{letter-spacing:0.037632pt;}
.lse{letter-spacing:0.038304pt;}
.ls3d{letter-spacing:0.041897pt;}
.ls66{letter-spacing:0.042336pt;}
.ls4a{letter-spacing:0.042752pt;}
.ls3a{letter-spacing:0.047134pt;}
.ls12{letter-spacing:0.048000pt;}
.ls49{letter-spacing:0.048096pt;}
.ls72{letter-spacing:0.051744pt;}
.ls65{letter-spacing:0.052371pt;}
.ls1d{letter-spacing:0.053440pt;}
.ls32{letter-spacing:0.056448pt;}
.ls45{letter-spacing:0.057600pt;}
.ls41{letter-spacing:0.057608pt;}
.ls4c{letter-spacing:0.058784pt;}
.ls67{letter-spacing:0.061152pt;}
.ls42{letter-spacing:0.062845pt;}
.ls1a{letter-spacing:0.064128pt;}
.ls11{letter-spacing:0.067200pt;}
.ls64{letter-spacing:0.068083pt;}
.ls2a{letter-spacing:0.069472pt;}
.ls43{letter-spacing:0.073320pt;}
.ls4d{letter-spacing:0.074816pt;}
.ls77{letter-spacing:0.078557pt;}
.ls1b{letter-spacing:0.080160pt;}
.ls44{letter-spacing:0.083794pt;}
.ls16{letter-spacing:0.085504pt;}
.ls6a{letter-spacing:0.089031pt;}
.ls33{letter-spacing:0.108192pt;}
.ls74{letter-spacing:0.109980pt;}
.ls46{letter-spacing:0.110400pt;}
.ls37{letter-spacing:0.130928pt;}
.ls1e{letter-spacing:0.133600pt;}
.ls6b{letter-spacing:0.151876pt;}
.ls30{letter-spacing:0.154323pt;}
.lsf{letter-spacing:0.157472pt;}
.ls2e{letter-spacing:0.166835pt;}
.lsd{letter-spacing:0.170240pt;}
.ls71{letter-spacing:0.333984pt;}
.ls2{letter-spacing:2.665203pt;}
.ls0{letter-spacing:9.298933pt;}
.ls73{letter-spacing:10.437580pt;}
.ls8{letter-spacing:10.626533pt;}
.lsb{letter-spacing:11.027624pt;}
.ls8b{letter-spacing:11.282895pt;}
.ls81{letter-spacing:11.830301pt;}
.ls87{letter-spacing:11.837997pt;}
.ls85{letter-spacing:11.872672pt;}
.ls7f{letter-spacing:11.954133pt;}
.ls80{letter-spacing:11.959467pt;}
.ls8a{letter-spacing:12.015319pt;}
.ls8f{letter-spacing:12.079923pt;}
.ls7{letter-spacing:12.528078pt;}
.ls89{letter-spacing:12.557218pt;}
.ls20{letter-spacing:13.480125pt;}
.ls1f{letter-spacing:13.917762pt;}
.ls88{letter-spacing:14.423885pt;}
.lsa{letter-spacing:15.936079pt;}
.ls4{letter-spacing:15.942400pt;}
.ls8e{letter-spacing:16.520617pt;}
.ls8d{letter-spacing:16.933689pt;}
.ls86{letter-spacing:18.685323pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls6{letter-spacing:57.174803pt;}
.wsd{word-spacing:-83.128453pt;}
.ws8e{word-spacing:-13.360000pt;}
.ws12{word-spacing:-13.283467pt;}
.ws8a{word-spacing:-13.092800pt;}
.ws10{word-spacing:-12.760670pt;}
.ws8d{word-spacing:-12.000000pt;}
.ws140{word-spacing:-11.955200pt;}
.ws89{word-spacing:-11.760000pt;}
.ws63{word-spacing:-10.810240pt;}
.ws64{word-spacing:-10.640000pt;}
.ws2a{word-spacing:-10.626800pt;}
.ws87{word-spacing:-10.594035pt;}
.ws88{word-spacing:-10.427200pt;}
.wse{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws16d{word-spacing:-3.393654pt;}
.ws16c{word-spacing:-3.121324pt;}
.ws130{word-spacing:-2.780911pt;}
.ws112{word-spacing:-2.739014pt;}
.ws82{word-spacing:-2.554432pt;}
.ws67{word-spacing:-2.550426pt;}
.ws135{word-spacing:-2.471921pt;}
.ws113{word-spacing:-2.456209pt;}
.ws134{word-spacing:-2.440498pt;}
.ws62{word-spacing:-2.284756pt;}
.wsf7{word-spacing:-2.217760pt;}
.wsc7{word-spacing:-2.173405pt;}
.ws3c{word-spacing:-2.125355pt;}
.ws15e{word-spacing:-2.105322pt;}
.ws190{word-spacing:-1.912819pt;}
.ws1d5{word-spacing:-1.865011pt;}
.ws182{word-spacing:-1.853940pt;}
.ws136{word-spacing:-1.827755pt;}
.ws15d{word-spacing:-1.806806pt;}
.ws23{word-spacing:-1.673728pt;}
.wsfd{word-spacing:-1.647150pt;}
.ws7b{word-spacing:-1.581824pt;}
.ws1ce{word-spacing:-1.578086pt;}
.wsde{word-spacing:-1.565792pt;}
.wsdf{word-spacing:-1.555104pt;}
.wsff{word-spacing:-1.540882pt;}
.wsae{word-spacing:-1.534476pt;}
.wsdd{word-spacing:-1.533728pt;}
.ws1a1{word-spacing:-1.530266pt;}
.wsaf{word-spacing:-1.524002pt;}
.wsad{word-spacing:-1.503053pt;}
.ws7a{word-spacing:-1.464256pt;}
.wsd5{word-spacing:-1.459200pt;}
.wsd3{word-spacing:-1.449600pt;}
.wsd7{word-spacing:-1.444800pt;}
.wsd4{word-spacing:-1.435200pt;}
.wsa4{word-spacing:-1.430016pt;}
.wsd6{word-spacing:-1.425600pt;}
.wsa2{word-spacing:-1.420608pt;}
.wsa6{word-spacing:-1.415904pt;}
.wsa3{word-spacing:-1.406496pt;}
.ws79{word-spacing:-1.400128pt;}
.wsa5{word-spacing:-1.397088pt;}
.ws1f2{word-spacing:-1.338982pt;}
.ws126{word-spacing:-1.246435pt;}
.wsda{word-spacing:-1.245152pt;}
.ws1b6{word-spacing:-1.243341pt;}
.ws43{word-spacing:-1.222079pt;}
.wsa9{word-spacing:-1.220249pt;}
.ws11b{word-spacing:-1.215012pt;}
.ws11c{word-spacing:-1.199300pt;}
.ws176{word-spacing:-1.188826pt;}
.ws186{word-spacing:-1.178352pt;}
.ws187{word-spacing:-1.173115pt;}
.ws5d{word-spacing:-1.168945pt;}
.ws39{word-spacing:-1.062677pt;}
.wse2{word-spacing:-0.919168pt;}
.ws1d1{word-spacing:-0.908595pt;}
.ws16e{word-spacing:-0.906022pt;}
.wsb2{word-spacing:-0.900785pt;}
.wsdb{word-spacing:-0.876416pt;}
.wsaa{word-spacing:-0.858888pt;}
.ws30{word-spacing:-0.850142pt;}
.ws31{word-spacing:-0.797008pt;}
.ws1e2{word-spacing:-0.765133pt;}
.wsfc{word-spacing:-0.690740pt;}
.ws1d3{word-spacing:-0.669491pt;}
.ws104{word-spacing:-0.637606pt;}
.ws1bd{word-spacing:-0.621670pt;}
.ws92{word-spacing:-0.584473pt;}
.ws18f{word-spacing:-0.531339pt;}
.ws69{word-spacing:-0.425071pt;}
.ws1ed{word-spacing:-0.382566pt;}
.ws175{word-spacing:-0.340413pt;}
.ws16{word-spacing:-0.334746pt;}
.ws3d{word-spacing:-0.318803pt;}
.ws18{word-spacing:-0.286925pt;}
.wse5{word-spacing:-0.267200pt;}
.ws38{word-spacing:-0.265669pt;}
.wsb5{word-spacing:-0.261856pt;}
.ws6a{word-spacing:-0.246848pt;}
.ws97{word-spacing:-0.241911pt;}
.ws66{word-spacing:-0.239104pt;}
.wsd9{word-spacing:-0.213760pt;}
.ws45{word-spacing:-0.212535pt;}
.wsa8{word-spacing:-0.209485pt;}
.ws1a{word-spacing:-0.191283pt;}
.ws2e{word-spacing:-0.159402pt;}
.ws1e{word-spacing:-0.143462pt;}
.ws6b{word-spacing:-0.114912pt;}
.ws98{word-spacing:-0.112614pt;}
.ws3a{word-spacing:-0.106268pt;}
.ws20{word-spacing:-0.095642pt;}
.ws13{word-spacing:-0.053134pt;}
.ws19{word-spacing:-0.047821pt;}
.ws2b{word-spacing:-0.042507pt;}
.ws4{word-spacing:-0.037194pt;}
.ws1df{word-spacing:-0.006955pt;}
.ws106{word-spacing:-0.005237pt;}
.ws1{word-spacing:0.000000pt;}
.ws14{word-spacing:0.000556pt;}
.ws83{word-spacing:0.016032pt;}
.ws122{word-spacing:0.026186pt;}
.ws127{word-spacing:0.031423pt;}
.ws86{word-spacing:0.032064pt;}
.ws118{word-spacing:0.036660pt;}
.ws22{word-spacing:0.047821pt;}
.ws159{word-spacing:0.052371pt;}
.ws41{word-spacing:0.053134pt;}
.ws172{word-spacing:0.078557pt;}
.ws139{word-spacing:0.089031pt;}
.wsb7{word-spacing:0.094268pt;}
.ws2c{word-spacing:0.095642pt;}
.ws6e{word-spacing:0.096000pt;}
.wse7{word-spacing:0.096192pt;}
.ws13d{word-spacing:0.098784pt;}
.ws173{word-spacing:0.099505pt;}
.ws2f{word-spacing:0.106268pt;}
.ws14f{word-spacing:0.108192pt;}
.ws13e{word-spacing:0.122304pt;}
.ws171{word-spacing:0.125691pt;}
.ws6d{word-spacing:0.134400pt;}
.wsa7{word-spacing:0.141120pt;}
.ws24{word-spacing:0.143462pt;}
.wsd8{word-spacing:0.144000pt;}
.ws37{word-spacing:0.159402pt;}
.wsa0{word-spacing:0.169344pt;}
.wsd1{word-spacing:0.172800pt;}
.ws174{word-spacing:0.188536pt;}
.ws1d{word-spacing:0.191283pt;}
.ws35{word-spacing:0.212535pt;}
.ws198{word-spacing:0.239104pt;}
.ws40{word-spacing:0.265669pt;}
.ws194{word-spacing:0.286925pt;}
.ws3f{word-spacing:0.318803pt;}
.ws197{word-spacing:0.334746pt;}
.wsbc{word-spacing:0.371836pt;}
.ws32{word-spacing:0.371937pt;}
.wsec{word-spacing:0.379424pt;}
.wscb{word-spacing:0.382310pt;}
.wsfb{word-spacing:0.390112pt;}
.ws46{word-spacing:0.425071pt;}
.ws1ca{word-spacing:0.430387pt;}
.ws13f{word-spacing:0.478208pt;}
.ws50{word-spacing:0.531339pt;}
.ws61{word-spacing:0.584473pt;}
.ws25{word-spacing:0.598400pt;}
.ws21{word-spacing:0.621670pt;}
.ws169{word-spacing:0.623217pt;}
.ws55{word-spacing:0.637606pt;}
.ws163{word-spacing:0.665114pt;}
.ws68{word-spacing:0.665600pt;}
.wsbb{word-spacing:0.686063pt;}
.ws143{word-spacing:0.690740pt;}
.ws153{word-spacing:0.691300pt;}
.wsba{word-spacing:0.696537pt;}
.wseb{word-spacing:0.700064pt;}
.wsea{word-spacing:0.710752pt;}
.ws26{word-spacing:0.717312pt;}
.ws1d6{word-spacing:0.765133pt;}
.wsb8{word-spacing:0.796042pt;}
.ws8f{word-spacing:0.797008pt;}
.wse8{word-spacing:0.812288pt;}
.ws3b{word-spacing:0.850142pt;}
.ws56{word-spacing:0.903276pt;}
.wsb9{word-spacing:0.926970pt;}
.wse9{word-spacing:0.945888pt;}
.ws18a{word-spacing:0.956410pt;}
.ws12c{word-spacing:1.000290pt;}
.ws18d{word-spacing:1.009543pt;}
.ws109{word-spacing:1.010764pt;}
.ws17c{word-spacing:1.016001pt;}
.ws154{word-spacing:1.052661pt;}
.ws12b{word-spacing:1.089321pt;}
.ws48{word-spacing:1.115811pt;}
.ws4c{word-spacing:1.168945pt;}
.ws52{word-spacing:1.222079pt;}
.ws3e{word-spacing:1.275213pt;}
.ws181{word-spacing:1.309280pt;}
.ws132{word-spacing:1.324991pt;}
.ws4b{word-spacing:1.328347pt;}
.ws17{word-spacing:1.338982pt;}
.wsc2{word-spacing:1.340703pt;}
.ws7d{word-spacing:1.352032pt;}
.ws131{word-spacing:1.356414pt;}
.wsf2{word-spacing:1.368064pt;}
.ws5f{word-spacing:1.381481pt;}
.ws44{word-spacing:1.434614pt;}
.ws7e{word-spacing:1.496320pt;}
.ws1c2{word-spacing:1.578086pt;}
.wsc1{word-spacing:1.586847pt;}
.wsf1{word-spacing:1.619232pt;}
.ws183{word-spacing:1.623507pt;}
.ws8b{word-spacing:1.625907pt;}
.ws180{word-spacing:1.633981pt;}
.ws9f{word-spacing:1.716960pt;}
.ws6f{word-spacing:1.718400pt;}
.ws1b7{word-spacing:1.721549pt;}
.ws70{word-spacing:1.752000pt;}
.ws142{word-spacing:1.753418pt;}
.ws1a7{word-spacing:1.769370pt;}
.ws71{word-spacing:1.872000pt;}
.ws47{word-spacing:1.912819pt;}
.ws1c5{word-spacing:1.912832pt;}
.ws156{word-spacing:1.922023pt;}
.ws121{word-spacing:1.932497pt;}
.ws155{word-spacing:1.958683pt;}
.ws10e{word-spacing:1.969157pt;}
.ws1dc{word-spacing:2.008474pt;}
.ws188{word-spacing:2.019087pt;}
.ws73{word-spacing:2.054400pt;}
.ws72{word-spacing:2.068800pt;}
.ws144{word-spacing:2.072221pt;}
.ws102{word-spacing:2.125355pt;}
.ws95{word-spacing:2.178489pt;}
.wsca{word-spacing:2.194353pt;}
.ws158{word-spacing:2.199590pt;}
.ws1d4{word-spacing:2.199757pt;}
.ws157{word-spacing:2.220539pt;}
.ws14c{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.wsfa{word-spacing:2.239136pt;}
.wsc6{word-spacing:2.241487pt;}
.ws15a{word-spacing:2.257199pt;}
.ws189{word-spacing:2.284756pt;}
.wsf6{word-spacing:2.287232pt;}
.ws10d{word-spacing:2.299096pt;}
.ws9c{word-spacing:2.300256pt;}
.ws14d{word-spacing:2.323776pt;}
.ws9e{word-spacing:2.328480pt;}
.ws51{word-spacing:2.337890pt;}
.ws28{word-spacing:2.343219pt;}
.wsce{word-spacing:2.347200pt;}
.ws9d{word-spacing:2.352000pt;}
.ws14e{word-spacing:2.361408pt;}
.wsd0{word-spacing:2.376000pt;}
.ws1c{word-spacing:2.391040pt;}
.wscf{word-spacing:2.400000pt;}
.ws1c7{word-spacing:2.486682pt;}
.ws14a{word-spacing:2.497292pt;}
.wsb1{word-spacing:2.555715pt;}
.wsb0{word-spacing:2.566189pt;}
.wsc9{word-spacing:2.576663pt;}
.ws12a{word-spacing:2.587137pt;}
.ws54{word-spacing:2.603559pt;}
.wse1{word-spacing:2.607872pt;}
.wse0{word-spacing:2.618560pt;}
.wsf9{word-spacing:2.629248pt;}
.ws8c{word-spacing:2.630144pt;}
.ws123{word-spacing:2.634271pt;}
.ws5e{word-spacing:2.656693pt;}
.ws65{word-spacing:2.677965pt;}
.ws59{word-spacing:2.709827pt;}
.ws1e1{word-spacing:2.860663pt;}
.ws1a5{word-spacing:2.860749pt;}
.ws1b3{word-spacing:2.861082pt;}
.ws1eb{word-spacing:2.864674pt;}
.ws196{word-spacing:2.866509pt;}
.ws199{word-spacing:2.869248pt;}
.wsc5{word-spacing:2.869942pt;}
.ws117{word-spacing:2.880416pt;}
.ws160{word-spacing:2.885653pt;}
.ws116{word-spacing:2.901364pt;}
.ws1d0{word-spacing:2.917069pt;}
.wsf5{word-spacing:2.928512pt;}
.ws81{word-spacing:2.987296pt;}
.ws149{word-spacing:3.028630pt;}
.ws91{word-spacing:3.081764pt;}
.ws103{word-spacing:3.134898pt;}
.ws1ee{word-spacing:3.156173pt;}
.ws16a{word-spacing:3.178932pt;}
.ws2d{word-spacing:3.188032pt;}
.ws1ba{word-spacing:3.203994pt;}
.ws14b{word-spacing:3.241166pt;}
.ws1b5{word-spacing:3.251814pt;}
.ws15{word-spacing:3.299635pt;}
.ws1c8{word-spacing:3.347456pt;}
.ws1ec{word-spacing:3.395277pt;}
.ws5a{word-spacing:3.453701pt;}
.ws15c{word-spacing:3.493159pt;}
.ws148{word-spacing:3.506835pt;}
.ws1d8{word-spacing:3.538739pt;}
.ws12e{word-spacing:3.540293pt;}
.ws12d{word-spacing:3.566479pt;}
.ws9a{word-spacing:3.579744pt;}
.ws1e8{word-spacing:3.586560pt;}
.wsfe{word-spacing:3.613103pt;}
.ws9b{word-spacing:3.617376pt;}
.wscc{word-spacing:3.652800pt;}
.wscd{word-spacing:3.691200pt;}
.ws19d{word-spacing:3.730022pt;}
.ws146{word-spacing:3.772505pt;}
.ws19e{word-spacing:3.777843pt;}
.ws1de{word-spacing:3.873485pt;}
.ws141{word-spacing:3.878772pt;}
.ws1e5{word-spacing:3.921306pt;}
.ws100{word-spacing:3.985040pt;}
.ws58{word-spacing:4.038174pt;}
.ws19c{word-spacing:4.064768pt;}
.ws1cc{word-spacing:4.112589pt;}
.ws4e{word-spacing:4.144442pt;}
.ws42{word-spacing:4.197575pt;}
.ws1b{word-spacing:4.208230pt;}
.wsb{word-spacing:4.240070pt;}
.ws36{word-spacing:4.250709pt;}
.ws7f{word-spacing:4.253824pt;}
.ws18c{word-spacing:4.303843pt;}
.ws1f0{word-spacing:4.303872pt;}
.wsc{word-spacing:4.314458pt;}
.ws4d{word-spacing:4.356977pt;}
.ws1c9{word-spacing:4.399514pt;}
.ws80{word-spacing:4.435520pt;}
.ws185{word-spacing:4.441078pt;}
.ws16b{word-spacing:4.462026pt;}
.ws128{word-spacing:4.472500pt;}
.ws151{word-spacing:4.477738pt;}
.ws129{word-spacing:4.493449pt;}
.ws4a{word-spacing:4.516379pt;}
.ws1ea{word-spacing:4.542976pt;}
.ws93{word-spacing:4.569513pt;}
.ws1c3{word-spacing:4.638618pt;}
.ws33{word-spacing:4.728914pt;}
.ws179{word-spacing:4.750068pt;}
.ws1f{word-spacing:4.782080pt;}
.ws150{word-spacing:4.812913pt;}
.ws1ab{word-spacing:4.877722pt;}
.ws1bc{word-spacing:4.925542pt;}
.ws5b{word-spacing:4.941450pt;}
.ws1e7{word-spacing:4.973363pt;}
.ws138{word-spacing:5.043347pt;}
.ws133{word-spacing:5.085244pt;}
.ws137{word-spacing:5.095718pt;}
.ws18b{word-spacing:5.100851pt;}
.ws161{word-spacing:5.100955pt;}
.ws162{word-spacing:5.116666pt;}
.ws4f{word-spacing:5.260253pt;}
.ws1ae{word-spacing:5.308109pt;}
.ws1b9{word-spacing:5.355930pt;}
.wsc0{word-spacing:5.357574pt;}
.ws15f{word-spacing:5.383759pt;}
.wsbf{word-spacing:5.409945pt;}
.ws12f{word-spacing:5.425656pt;}
.ws1b0{word-spacing:5.451571pt;}
.wsf0{word-spacing:5.466912pt;}
.ws145{word-spacing:5.472788pt;}
.ws75{word-spacing:5.498976pt;}
.ws27{word-spacing:5.499392pt;}
.wsef{word-spacing:5.520352pt;}
.ws74{word-spacing:5.531040pt;}
.ws76{word-spacing:5.536384pt;}
.ws191{word-spacing:5.632190pt;}
.ws177{word-spacing:5.682275pt;}
.ws19b{word-spacing:5.690675pt;}
.ws178{word-spacing:5.708461pt;}
.ws15b{word-spacing:5.734646pt;}
.ws101{word-spacing:5.738458pt;}
.ws192{word-spacing:5.786317pt;}
.ws18e{word-spacing:5.897859pt;}
.ws19a{word-spacing:6.025421pt;}
.wsab{word-spacing:6.027925pt;}
.ws90{word-spacing:6.110395pt;}
.ws1c0{word-spacing:6.121062pt;}
.ws77{word-spacing:6.134912pt;}
.ws78{word-spacing:6.150944pt;}
.ws147{word-spacing:6.163529pt;}
.ws10c{word-spacing:6.321204pt;}
.ws10f{word-spacing:6.331678pt;}
.wsac{word-spacing:6.425946pt;}
.wsbd{word-spacing:6.446895pt;}
.wsdc{word-spacing:6.557088pt;}
.wsed{word-spacing:6.578464pt;}
.ws195{word-spacing:6.599270pt;}
.ws57{word-spacing:6.641733pt;}
.ws166{word-spacing:6.645905pt;}
.ws165{word-spacing:6.661617pt;}
.ws1ad{word-spacing:6.694912pt;}
.ws1ac{word-spacing:6.742733pt;}
.ws60{word-spacing:6.748001pt;}
.wsbe{word-spacing:6.771596pt;}
.ws96{word-spacing:6.801135pt;}
.ws193{word-spacing:6.838374pt;}
.wsee{word-spacing:6.909792pt;}
.ws9{word-spacing:6.918010pt;}
.ws53{word-spacing:6.960537pt;}
.ws94{word-spacing:7.332474pt;}
.ws10b{word-spacing:7.860917pt;}
.ws10a{word-spacing:7.892340pt;}
.ws34{word-spacing:8.023214pt;}
.ws17a{word-spacing:8.311309pt;}
.ws1da{word-spacing:8.512102pt;}
.ws164{word-spacing:9.164960pt;}
.ws2{word-spacing:9.256967pt;}
.ws152{word-spacing:9.458239pt;}
.ws17e{word-spacing:9.777703pt;}
.ws17f{word-spacing:9.981951pt;}
.ws99{word-spacing:10.122726pt;}
.ws1cf{word-spacing:10.329293pt;}
.ws6c{word-spacing:10.329312pt;}
.wsc8{word-spacing:10.364260pt;}
.ws11d{word-spacing:10.406157pt;}
.ws168{word-spacing:10.416632pt;}
.ws167{word-spacing:10.568508pt;}
.wsf8{word-spacing:10.575776pt;}
.ws29{word-spacing:10.578295pt;}
.ws7{word-spacing:10.823338pt;}
.ws1d2{word-spacing:10.998784pt;}
.ws11e{word-spacing:11.348839pt;}
.ws115{word-spacing:11.354076pt;}
.ws1d9{word-spacing:11.620454pt;}
.ws1a3{word-spacing:11.716096pt;}
.ws1a9{word-spacing:11.811738pt;}
.ws1bb{word-spacing:11.898530pt;}
.ws1f1{word-spacing:11.899563pt;}
.ws1b8{word-spacing:11.900254pt;}
.ws1dd{word-spacing:11.901116pt;}
.ws1e3{word-spacing:11.901124pt;}
.ws1e0{word-spacing:11.901918pt;}
.ws1e4{word-spacing:11.905331pt;}
.ws1ef{word-spacing:11.905425pt;}
.ws1f3{word-spacing:11.907217pt;}
.ws1a0{word-spacing:11.907379pt;}
.ws120{word-spacing:11.951108pt;}
.ws1cd{word-spacing:11.955200pt;}
.ws11a{word-spacing:11.982531pt;}
.ws19f{word-spacing:12.003021pt;}
.ws11f{word-spacing:12.019190pt;}
.ws1bf{word-spacing:12.050842pt;}
.ws108{word-spacing:12.584799pt;}
.ws107{word-spacing:12.621459pt;}
.ws13c{word-spacing:12.667872pt;}
.ws13a{word-spacing:12.677280pt;}
.ws13b{word-spacing:12.691392pt;}
.ws5c{word-spacing:13.230333pt;}
.ws5{word-spacing:13.761632pt;}
.ws1c6{word-spacing:13.820211pt;}
.ws8{word-spacing:14.319536pt;}
.ws114{word-spacing:14.449214pt;}
.ws111{word-spacing:14.464925pt;}
.ws85{word-spacing:14.471552pt;}
.ws84{word-spacing:14.508960pt;}
.ws1b1{word-spacing:14.680986pt;}
.ws1af{word-spacing:14.728806pt;}
.ws119{word-spacing:14.742493pt;}
.ws1a2{word-spacing:14.767863pt;}
.ws1be{word-spacing:14.768290pt;}
.ws1c4{word-spacing:14.770953pt;}
.ws1a8{word-spacing:14.773197pt;}
.ws1b2{word-spacing:14.774187pt;}
.ws1a4{word-spacing:14.774349pt;}
.ws1d7{word-spacing:14.775373pt;}
.ws1b4{word-spacing:14.776004pt;}
.ws1aa{word-spacing:14.776286pt;}
.ws1a6{word-spacing:14.776627pt;}
.ws110{word-spacing:14.821050pt;}
.ws1c1{word-spacing:14.920090pt;}
.ws184{word-spacing:15.109091pt;}
.ws1e9{word-spacing:15.493939pt;}
.ws17b{word-spacing:15.664226pt;}
.ws1e6{word-spacing:15.828685pt;}
.wsb6{word-spacing:16.407897pt;}
.ws1cb{word-spacing:16.498176pt;}
.wsb3{word-spacing:16.690701pt;}
.wsb4{word-spacing:16.706413pt;}
.wse6{word-spacing:16.742752pt;}
.wse3{word-spacing:17.031328pt;}
.wse4{word-spacing:17.047360pt;}
.ws49{word-spacing:18.118649pt;}
.wsc4{word-spacing:18.921715pt;}
.wsc3{word-spacing:18.926952pt;}
.wsf4{word-spacing:19.307872pt;}
.wsf3{word-spacing:19.313216pt;}
.ws1db{word-spacing:20.419482pt;}
.ws17d{word-spacing:22.681967pt;}
.wsa{word-spacing:23.208806pt;}
.ws6{word-spacing:23.858002pt;}
.ws16f{word-spacing:25.494300pt;}
.ws170{word-spacing:25.536197pt;}
.ws105{word-spacing:27.369189pt;}
.ws125{word-spacing:32.648206pt;}
.ws124{word-spacing:32.669155pt;}
.ws11{word-spacing:35.593054pt;}
.wsf{word-spacing:41.455014pt;}
.ws7c{word-spacing:76.312320pt;}
.wsa1{word-spacing:1256.416511pt;}
.wsd2{word-spacing:1282.057664pt;}
._5{margin-left:-7.539792pt;}
._9{margin-left:-5.898407pt;}
._0{margin-left:-4.797974pt;}
._a{margin-left:-3.825648pt;}
._1{margin-left:-2.752326pt;}
._2{margin-left:-1.338970pt;}
._19{width:1.094400pt;}
._7{width:2.668189pt;}
._8{width:3.576486pt;}
._1c{width:9.854527pt;}
._3{width:11.530016pt;}
._11{width:13.180965pt;}
._c{width:14.633139pt;}
._e{width:15.696468pt;}
._10{width:17.040654pt;}
._d{width:18.554470pt;}
._14{width:19.893312pt;}
._24{width:20.915138pt;}
._f{width:21.949734pt;}
._1a{width:23.575642pt;}
._15{width:24.813516pt;}
._20{width:26.035595pt;}
._4{width:27.188522pt;}
._1d{width:28.650325pt;}
._6{width:29.648896pt;}
._17{width:31.200203pt;}
._26{width:32.753794pt;}
._1e{width:33.697494pt;}
._1f{width:35.387155pt;}
._16{width:37.363731pt;}
._25{width:40.768142pt;}
._b{width:50.498554pt;}
._23{width:54.993920pt;}
._22{width:78.904320pt;}
._12{width:573.974722pt;}
._1b{width:1800.552212pt;}
._18{width:1837.298176pt;}
._21{width:2180.813067pt;}
._13{width:2202.066400pt;}
.fsc{font-size:29.440000pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fse{font-size:41.708800pt;}
.fs6{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fs10{font-size:47.040000pt;}
.fs7{font-size:47.820800pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:49.829333pt;}
.fsf{font-size:52.371200pt;}
.fs2{font-size:53.133867pt;}
.fsa{font-size:53.440000pt;}
.fsd{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:106.848911pt;}
.y10c{bottom:-797.588941pt;}
.y19f{bottom:-796.490035pt;}
.y12b{bottom:-738.622509pt;}
.y1cb{bottom:-732.657186pt;}
.y12a{bottom:-721.845395pt;}
.y1ca{bottom:-715.880072pt;}
.y129{bottom:-705.146838pt;}
.y1c9{bottom:-699.180206pt;}
.y128{bottom:-688.369724pt;}
.y1c8{bottom:-682.403092pt;}
.y127{bottom:-671.671167pt;}
.y1c7{bottom:-665.625978pt;}
.y126{bottom:-654.894053pt;}
.y1c6{bottom:-648.927421pt;}
.y125{bottom:-638.116939pt;}
.y1c5{bottom:-632.150307pt;}
.y124{bottom:-621.418382pt;}
.y1c4{bottom:-615.373193pt;}
.y123{bottom:-604.641268pt;}
.y1c3{bottom:-598.674636pt;}
.y122{bottom:-587.864154pt;}
.y1c2{bottom:-581.897522pt;}
.y121{bottom:-571.165597pt;}
.y1c1{bottom:-565.198965pt;}
.y120{bottom:-554.388483pt;}
.y1c0{bottom:-548.421851pt;}
.y11f{bottom:-537.689926pt;}
.y1bf{bottom:-531.644737pt;}
.y11e{bottom:-520.912812pt;}
.y1be{bottom:-514.946180pt;}
.y133{bottom:-506.667600pt;}
.y11d{bottom:-504.135698pt;}
.y1bd{bottom:-498.169066pt;}
.y11c{bottom:-487.437141pt;}
.y1bc{bottom:-481.470509pt;}
.y11b{bottom:-470.660027pt;}
.y1bb{bottom:-464.693395pt;}
.y11a{bottom:-453.961470pt;}
.y1ba{bottom:-447.916281pt;}
.y152{bottom:-446.497771pt;}
.y119{bottom:-437.184356pt;}
.ye0{bottom:-433.791600pt;}
.y1b9{bottom:-431.217724pt;}
.y151{bottom:-429.378267pt;}
.y118{bottom:-420.407242pt;}
.y1b8{bottom:-414.440610pt;}
.y150{bottom:-412.338923pt;}
.y117{bottom:-403.707375pt;}
.y1b7{bottom:-397.742053pt;}
.y14f{bottom:-395.219419pt;}
.y116{bottom:-386.930261pt;}
.y1b6{bottom:-380.964939pt;}
.y14e{bottom:-378.180075pt;}
.y115{bottom:-366.310411pt;}
.y1b5{bottom:-364.187825pt;}
.y14d{bottom:-361.060571pt;}
.y1b4{bottom:-347.489268pt;}
.y14c{bottom:-343.941067pt;}
.y114{bottom:-334.244549pt;}
.y1b3{bottom:-330.712154pt;}
.y14b{bottom:-326.901723pt;}
.y113{bottom:-319.035341pt;}
.yf5{bottom:-318.986035pt;}
.y1b2{bottom:-313.935040pt;}
.y14a{bottom:-309.782219pt;}
.yf4{bottom:-301.866531pt;}
.y1b1{bottom:-297.236483pt;}
.y112{bottom:-295.593741pt;}
.y149{bottom:-292.662715pt;}
.yf3{bottom:-284.827187pt;}
.y1b0{bottom:-280.459369pt;}
.y148{bottom:-275.623371pt;}
.yf2{bottom:-267.707683pt;}
.y1af{bottom:-263.759502pt;}
.y147{bottom:-258.503867pt;}
.yf1{bottom:-250.588179pt;}
.y1ae{bottom:-246.982388pt;}
.y146{bottom:-241.464523pt;}
.yf0{bottom:-233.548835pt;}
.y1ad{bottom:-230.205275pt;}
.y145{bottom:-224.345019pt;}
.yef{bottom:-216.429331pt;}
.y1ac{bottom:-213.505408pt;}
.y144{bottom:-207.225515pt;}
.yee{bottom:-199.309827pt;}
.y1ab{bottom:-196.728294pt;}
.y143{bottom:-190.186171pt;}
.yed{bottom:-182.270483pt;}
.y1aa{bottom:-180.029737pt;}
.y142{bottom:-173.066667pt;}
.yec{bottom:-165.150979pt;}
.y1a9{bottom:-163.252623pt;}
.y141{bottom:-156.027323pt;}
.yeb{bottom:-148.111635pt;}
.y1a8{bottom:-146.475509pt;}
.y140{bottom:-138.907819pt;}
.yea{bottom:-130.992131pt;}
.y1a7{bottom:-129.775643pt;}
.y16f{bottom:-127.906595pt;}
.y13f{bottom:-121.788315pt;}
.y1a6{bottom:-112.998529pt;}
.ye9{bottom:-109.951467pt;}
.y13e{bottom:-104.747635pt;}
.y1a5{bottom:-96.298663pt;}
.y13d{bottom:-87.628131pt;}
.y1a4{bottom:-79.521549pt;}
.ye8{bottom:-77.231200pt;}
.y13c{bottom:-66.587467pt;}
.y1a3{bottom:-62.744435pt;}
.ye7{bottom:-61.711600pt;}
.y111{bottom:-60.942149pt;}
.ye6{bottom:-46.351600pt;}
.ye4{bottom:-46.351467pt;}
.y110{bottom:-45.732941pt;}
.ye5{bottom:-42.991600pt;}
.y13b{bottom:-33.867200pt;}
.ye3{bottom:-30.991467pt;}
.y199{bottom:-30.926187pt;}
.y10f{bottom:-30.680141pt;}
.y1a2{bottom:-30.679227pt;}
.y13a{bottom:-18.347600pt;}
.y198{bottom:-15.794595pt;}
.ye2{bottom:-15.631467pt;}
.y10e{bottom:-15.627341pt;}
.y1a1{bottom:-15.547635pt;}
.y0{bottom:0.000000pt;}
.y197{bottom:3.740200pt;}
.y10d{bottom:3.894666pt;}
.y1a0{bottom:3.973644pt;}
.ye1{bottom:4.368304pt;}
.y139{bottom:5.572400pt;}
.y1c{bottom:15.592023pt;}
.y4c{bottom:28.346667pt;}
.y1f7{bottom:81.480000pt;}
.y203{bottom:82.689333pt;}
.y16a{bottom:88.380000pt;}
.y26f{bottom:92.892000pt;}
.y1a{bottom:93.018667pt;}
.y1f6{bottom:98.217333pt;}
.y202{bottom:98.310667pt;}
.y169{bottom:105.117333pt;}
.y7f{bottom:108.024000pt;}
.y26e{bottom:108.233333pt;}
.y19{bottom:108.920000pt;}
.y237{bottom:109.522667pt;}
.y201{bottom:113.933333pt;}
.y1f5{bottom:114.954667pt;}
.y168{bottom:121.854667pt;}
.y26c{bottom:123.576000pt;}
.y7e{bottom:124.761333pt;}
.y18{bottom:124.820000pt;}
.y236{bottom:124.865333pt;}
.y4b{bottom:128.052000pt;}
.y108{bottom:130.956000pt;}
.y1f4{bottom:131.692000pt;}
.y167{bottom:138.592000pt;}
.y26b{bottom:138.918667pt;}
.y235{bottom:140.208000pt;}
.y17{bottom:140.720000pt;}
.y7d{bottom:141.498667pt;}
.y19b{bottom:141.809333pt;}
.y4a{bottom:145.348000pt;}
.yb1{bottom:145.494667pt;}
.y107{bottom:147.693333pt;}
.y1f3{bottom:148.429333pt;}
.y26a{bottom:154.261333pt;}
.y166{bottom:155.329333pt;}
.y234{bottom:155.550667pt;}
.y16{bottom:156.621333pt;}
.y7c{bottom:158.236000pt;}
.y19a{bottom:158.905333pt;}
.yb0{bottom:162.232000pt;}
.y49{bottom:162.642667pt;}
.y106{bottom:164.430667pt;}
.y1f2{bottom:165.166667pt;}
.y269{bottom:169.604000pt;}
.y233{bottom:170.893333pt;}
.y165{bottom:172.066667pt;}
.y15{bottom:172.521333pt;}
.y7b{bottom:174.973333pt;}
.y196{bottom:175.985149pt;}
.yaf{bottom:178.969333pt;}
.y48{bottom:179.937333pt;}
.y105{bottom:181.168000pt;}
.y16c{bottom:181.498667pt;}
.y1f1{bottom:181.904000pt;}
.y268{bottom:184.946667pt;}
.y232{bottom:186.236000pt;}
.y14{bottom:188.421333pt;}
.y164{bottom:188.804000pt;}
.y10b{bottom:190.329576pt;}
.y19e{bottom:191.428483pt;}
.y7a{bottom:191.710667pt;}
.y195{bottom:192.762263pt;}
.yae{bottom:195.706667pt;}
.y47{bottom:197.233333pt;}
.y104{bottom:197.904000pt;}
.y1f0{bottom:198.641333pt;}
.y10a{bottom:198.718259pt;}
.y19d{bottom:199.817165pt;}
.y267{bottom:200.289333pt;}
.y231{bottom:201.578667pt;}
.y13{bottom:204.322667pt;}
.y163{bottom:205.541333pt;}
.y79{bottom:208.448000pt;}
.y194{bottom:209.462129pt;}
.yad{bottom:212.444000pt;}
.y46{bottom:214.528000pt;}
.y103{bottom:214.641333pt;}
.y1ef{bottom:215.378667pt;}
.y266{bottom:215.632000pt;}
.y230{bottom:216.920000pt;}
.y162{bottom:222.278667pt;}
.y78{bottom:225.185333pt;}
.y193{bottom:226.239243pt;}
.yac{bottom:229.181333pt;}
.y265{bottom:230.974667pt;}
.y102{bottom:231.378667pt;}
.y45{bottom:231.824000pt;}
.y1ee{bottom:232.116000pt;}
.y22f{bottom:232.262667pt;}
.y200{bottom:233.165333pt;}
.y161{bottom:239.016000pt;}
.ydc{bottom:241.136000pt;}
.y77{bottom:241.922667pt;}
.y192{bottom:242.937800pt;}
.y138{bottom:245.012800pt;}
.yab{bottom:245.918667pt;}
.y264{bottom:246.316000pt;}
.y22e{bottom:247.605333pt;}
.y101{bottom:248.116000pt;}
.y1ed{bottom:248.853333pt;}
.y44{bottom:249.118667pt;}
.y160{bottom:255.753333pt;}
.ydb{bottom:257.873333pt;}
.y76{bottom:258.660000pt;}
.y191{bottom:259.714914pt;}
.y137{bottom:260.532400pt;}
.y263{bottom:261.658667pt;}
.yaa{bottom:262.656000pt;}
.y22d{bottom:262.948000pt;}
.y1ff{bottom:263.053333pt;}
.y100{bottom:264.853333pt;}
.y1ec{bottom:265.590667pt;}
.y43{bottom:266.413333pt;}
.y12{bottom:266.570667pt;}
.y15f{bottom:272.490667pt;}
.yda{bottom:274.610667pt;}
.y75{bottom:275.397333pt;}
.y136{bottom:275.892400pt;}
.y190{bottom:276.492028pt;}
.y262{bottom:277.001333pt;}
.y22c{bottom:278.290667pt;}
.ya9{bottom:279.393333pt;}
.y1fe{bottom:279.790667pt;}
.yff{bottom:281.590667pt;}
.y1eb{bottom:282.328000pt;}
.y11{bottom:282.470667pt;}
.y42{bottom:283.709333pt;}
.y15e{bottom:289.228000pt;}
.y135{bottom:291.252400pt;}
.yd9{bottom:291.348000pt;}
.y74{bottom:292.134667pt;}
.y261{bottom:292.344000pt;}
.y18f{bottom:293.191895pt;}
.y22b{bottom:293.633333pt;}
.ya8{bottom:296.129333pt;}
.y1fd{bottom:296.528000pt;}
.yfe{bottom:298.328000pt;}
.y10{bottom:298.370667pt;}
.y1ea{bottom:299.065333pt;}
.y41{bottom:301.004000pt;}
.y15d{bottom:305.965333pt;}
.y260{bottom:307.686667pt;}
.yd8{bottom:308.085333pt;}
.y73{bottom:308.872000pt;}
.y22a{bottom:308.976000pt;}
.y18e{bottom:309.969009pt;}
.y134{bottom:311.172816pt;}
.ya7{bottom:312.866667pt;}
.y1fc{bottom:313.265333pt;}
.yf{bottom:314.272000pt;}
.yfd{bottom:315.065333pt;}
.y1e9{bottom:315.802667pt;}
.y40{bottom:318.298667pt;}
.y15c{bottom:322.701333pt;}
.y25f{bottom:323.029333pt;}
.y229{bottom:324.318667pt;}
.yd7{bottom:324.822667pt;}
.y72{bottom:325.609333pt;}
.y18d{bottom:326.667566pt;}
.ya6{bottom:329.604000pt;}
.y1fb{bottom:330.002667pt;}
.y1e8{bottom:332.540000pt;}
.y3f{bottom:335.594667pt;}
.yfc{bottom:335.788000pt;}
.y25e{bottom:338.372000pt;}
.y15b{bottom:339.438667pt;}
.ye{bottom:339.470667pt;}
.y228{bottom:339.660000pt;}
.yd6{bottom:341.560000pt;}
.y71{bottom:342.346667pt;}
.y18c{bottom:343.444680pt;}
.y1fa{bottom:346.740000pt;}
.y1e7{bottom:349.277333pt;}
.ya5{bottom:350.326667pt;}
.y3e{bottom:352.889333pt;}
.y25d{bottom:353.714667pt;}
.y227{bottom:355.002667pt;}
.y15a{bottom:356.176000pt;}
.yd5{bottom:358.297333pt;}
.y70{bottom:359.084000pt;}
.y18b{bottom:360.221793pt;}
.yfb{bottom:362.834667pt;}
.yd{bottom:363.341333pt;}
.y16b{bottom:363.477333pt;}
.y1e6{bottom:366.014667pt;}
.y25c{bottom:369.056000pt;}
.y3d{bottom:370.185333pt;}
.y226{bottom:370.345333pt;}
.y159{bottom:372.913333pt;}
.yd4{bottom:375.034667pt;}
.y6f{bottom:375.821333pt;}
.y18a{bottom:376.920351pt;}
.yc{bottom:379.241333pt;}
.yfa{bottom:379.930667pt;}
.ya4{bottom:380.214667pt;}
.y1e5{bottom:382.752000pt;}
.y25b{bottom:384.398667pt;}
.y225{bottom:385.688000pt;}
.y3c{bottom:387.480000pt;}
.y158{bottom:389.650667pt;}
.yd3{bottom:391.772000pt;}
.y6e{bottom:392.558667pt;}
.y189{bottom:393.697465pt;}
.yb{bottom:395.141333pt;}
.ya3{bottom:396.952000pt;}
.yf8{bottom:397.026667pt;}
.y1e4{bottom:399.489333pt;}
.y25a{bottom:399.741333pt;}
.y224{bottom:401.030667pt;}
.yf9{bottom:401.366667pt;}
.y3a{bottom:404.774667pt;}
.y157{bottom:406.388000pt;}
.yd2{bottom:408.509333pt;}
.y3b{bottom:409.114667pt;}
.y6d{bottom:409.296000pt;}
.y188{bottom:410.474578pt;}
.ya{bottom:411.042667pt;}
.ya2{bottom:413.689333pt;}
.yf7{bottom:414.122667pt;}
.y259{bottom:415.084000pt;}
.y1e3{bottom:416.226667pt;}
.y223{bottom:416.373333pt;}
.y39{bottom:422.070667pt;}
.y156{bottom:423.125333pt;}
.yd1{bottom:425.246667pt;}
.y6c{bottom:426.033333pt;}
.y9{bottom:426.942667pt;}
.y187{bottom:427.173136pt;}
.ya1{bottom:430.426667pt;}
.yf6{bottom:431.218667pt;}
.y222{bottom:431.716000pt;}
.y1e2{bottom:432.964000pt;}
.y38{bottom:439.365333pt;}
.yd0{bottom:441.984000pt;}
.y6b{bottom:442.770667pt;}
.y8{bottom:442.842667pt;}
.y155{bottom:443.848000pt;}
.y186{bottom:443.950249pt;}
.y258{bottom:445.769333pt;}
.y221{bottom:447.058667pt;}
.ya0{bottom:447.164000pt;}
.y1e1{bottom:449.701333pt;}
.ydd{bottom:451.154667pt;}
.y37{bottom:456.660000pt;}
.y272{bottom:457.060000pt;}
.ycf{bottom:458.721333pt;}
.y7{bottom:458.744000pt;}
.y6a{bottom:459.508000pt;}
.y185{bottom:460.650116pt;}
.y257{bottom:461.112000pt;}
.y220{bottom:462.401333pt;}
.y9f{bottom:463.901333pt;}
.y1e0{bottom:466.438667pt;}
.y154{bottom:470.894667pt;}
.y271{bottom:472.402667pt;}
.y36{bottom:473.956000pt;}
.y6{bottom:474.644000pt;}
.yce{bottom:475.458667pt;}
.y69{bottom:476.245333pt;}
.y256{bottom:476.454667pt;}
.y184{bottom:477.427230pt;}
.y21f{bottom:477.742667pt;}
.y9e{bottom:480.638667pt;}
.y1df{bottom:483.176000pt;}
.y270{bottom:487.745333pt;}
.y153{bottom:487.990667pt;}
.y5{bottom:490.544000pt;}
.y35{bottom:491.250667pt;}
.y255{bottom:491.797333pt;}
.y68{bottom:492.981333pt;}
.y21e{bottom:493.085333pt;}
.y183{bottom:494.204344pt;}
.ycd{bottom:496.180000pt;}
.y9d{bottom:497.376000pt;}
.y1de{bottom:499.912000pt;}
.y132{bottom:501.412520pt;}
.y4{bottom:506.445333pt;}
.y254{bottom:507.138667pt;}
.y21d{bottom:508.428000pt;}
.y34{bottom:508.546667pt;}
.y67{bottom:509.718667pt;}
.y131{bottom:509.972400pt;}
.y130{bottom:510.584000pt;}
.y182{bottom:510.904210pt;}
.y9c{bottom:514.113333pt;}
.y1dd{bottom:516.649333pt;}
.y3{bottom:522.345333pt;}
.y253{bottom:522.481333pt;}
.y21c{bottom:523.770667pt;}
.y33{bottom:525.841333pt;}
.ycc{bottom:526.068000pt;}
.y66{bottom:526.456000pt;}
.y181{bottom:527.681324pt;}
.y9b{bottom:530.850667pt;}
.y1dc{bottom:533.386667pt;}
.y252{bottom:537.824000pt;}
.y2{bottom:538.245333pt;}
.ycb{bottom:542.805333pt;}
.y21b{bottom:543.098667pt;}
.y32{bottom:543.136000pt;}
.y65{bottom:543.193333pt;}
.y180{bottom:544.379881pt;}
.y9a{bottom:547.588000pt;}
.y1db{bottom:550.124000pt;}
.y251{bottom:553.166667pt;}
.y1{bottom:554.146667pt;}
.yca{bottom:559.542667pt;}
.y64{bottom:559.930667pt;}
.y31{bottom:560.432000pt;}
.y17f{bottom:561.156995pt;}
.y99{bottom:564.325333pt;}
.y1da{bottom:566.861333pt;}
.y250{bottom:568.509333pt;}
.ydf{bottom:574.288520pt;}
.y21a{bottom:575.642667pt;}
.yc9{bottom:576.280000pt;}
.y63{bottom:576.668000pt;}
.y30{bottom:577.726667pt;}
.y17e{bottom:577.934109pt;}
.y98{bottom:581.062667pt;}
.yde{bottom:582.848400pt;}
.y1d9{bottom:583.598667pt;}
.y24f{bottom:583.852000pt;}
.y219{bottom:591.264000pt;}
.yc8{bottom:593.017333pt;}
.y62{bottom:593.405333pt;}
.y17d{bottom:594.633975pt;}
.y2f{bottom:595.021333pt;}
.y97{bottom:597.800000pt;}
.y24e{bottom:599.194667pt;}
.y1d8{bottom:600.336000pt;}
.y218{bottom:606.885333pt;}
.yc7{bottom:609.754667pt;}
.y61{bottom:610.142667pt;}
.y17c{bottom:611.411089pt;}
.y2e{bottom:612.317333pt;}
.y96{bottom:614.537333pt;}
.y1d7{bottom:617.073333pt;}
.y217{bottom:622.508000pt;}
.y60{bottom:626.880000pt;}
.y17b{bottom:628.109646pt;}
.y24d{bottom:629.878667pt;}
.yc6{bottom:630.477333pt;}
.y95{bottom:631.274667pt;}
.y1d6{bottom:633.810667pt;}
.y216{bottom:638.129333pt;}
.y5f{bottom:643.617333pt;}
.y17a{bottom:644.886760pt;}
.y24c{bottom:645.221333pt;}
.y2d{bottom:646.614667pt;}
.y94{bottom:648.012000pt;}
.y1d5{bottom:650.548000pt;}
.y215{bottom:653.750667pt;}
.y5e{bottom:660.354667pt;}
.yc5{bottom:660.365333pt;}
.y24b{bottom:660.564000pt;}
.y2c{bottom:660.961333pt;}
.y179{bottom:661.663874pt;}
.y1f9{bottom:664.748000pt;}
.y92{bottom:664.749333pt;}
.y1d4{bottom:667.285333pt;}
.y214{bottom:669.372000pt;}
.y93{bottom:669.570667pt;}
.y2b{bottom:675.308000pt;}
.y24a{bottom:675.906667pt;}
.y5d{bottom:677.092000pt;}
.yc4{bottom:677.102667pt;}
.y178{bottom:678.362431pt;}
.y91{bottom:681.485333pt;}
.y1d3{bottom:684.022667pt;}
.y249{bottom:691.249333pt;}
.y213{bottom:692.962667pt;}
.y2a{bottom:693.512000pt;}
.y5c{bottom:693.829333pt;}
.yc3{bottom:693.840000pt;}
.y177{bottom:695.139545pt;}
.y90{bottom:698.222667pt;}
.y1d2{bottom:700.760000pt;}
.y248{bottom:706.592000pt;}
.y29{bottom:707.857333pt;}
.y212{bottom:708.585333pt;}
.y5b{bottom:710.566667pt;}
.yc2{bottom:710.577333pt;}
.y176{bottom:711.916659pt;}
.y8f{bottom:714.960000pt;}
.y1d1{bottom:717.497333pt;}
.y28{bottom:718.346667pt;}
.y247{bottom:721.934667pt;}
.y211{bottom:724.206667pt;}
.y5a{bottom:727.304000pt;}
.yc1{bottom:727.314667pt;}
.y175{bottom:728.615216pt;}
.y8e{bottom:731.697333pt;}
.y1d0{bottom:734.234667pt;}
.y27{bottom:736.550667pt;}
.y246{bottom:737.277333pt;}
.y210{bottom:739.828000pt;}
.y59{bottom:744.041333pt;}
.yc0{bottom:744.052000pt;}
.y174{bottom:745.392330pt;}
.y8d{bottom:748.434667pt;}
.y26{bottom:750.896000pt;}
.y1cf{bottom:750.972000pt;}
.y245{bottom:752.620000pt;}
.y58{bottom:760.778667pt;}
.ybf{bottom:760.789333pt;}
.y173{bottom:762.090887pt;}
.y20f{bottom:763.418667pt;}
.y12f{bottom:763.941333pt;}
.y8c{bottom:765.172000pt;}
.y25{bottom:765.242667pt;}
.y1ce{bottom:767.709333pt;}
.y244{bottom:767.961333pt;}
.ybe{bottom:775.100000pt;}
.y57{bottom:777.516000pt;}
.ybd{bottom:777.526667pt;}
.y172{bottom:778.868001pt;}
.y20e{bottom:779.040000pt;}
.y12e{bottom:781.037333pt;}
.y8b{bottom:781.909333pt;}
.y243{bottom:783.304000pt;}
.y56{bottom:794.253333pt;}
.ybc{bottom:794.264000pt;}
.y171{bottom:795.645115pt;}
.y1cd{bottom:797.034667pt;}
.y12d{bottom:798.133333pt;}
.y8a{bottom:798.646667pt;}
.y20d{bottom:802.632000pt;}
.y24{bottom:804.956000pt;}
.y55{bottom:810.990667pt;}
.y170{bottom:812.344982pt;}
.y242{bottom:813.989333pt;}
.y1cc{bottom:814.129333pt;}
.ybb{bottom:814.985333pt;}
.y12c{bottom:815.229333pt;}
.y89{bottom:815.384000pt;}
.y23{bottom:821.693333pt;}
.y20c{bottom:826.224000pt;}
.y54{bottom:827.728000pt;}
.y241{bottom:829.332000pt;}
.y88{bottom:832.121333pt;}
.y19c{bottom:836.724000pt;}
.y109{bottom:837.822667pt;}
.y22{bottom:838.429333pt;}
.y20b{bottom:841.845333pt;}
.y53{bottom:844.465333pt;}
.y240{bottom:844.674667pt;}
.yba{bottom:844.873333pt;}
.y87{bottom:848.858667pt;}
.y20a{bottom:857.466667pt;}
.y16e{bottom:860.011923pt;}
.y23f{bottom:860.017333pt;}
.y52{bottom:861.202667pt;}
.yb9{bottom:861.610667pt;}
.y86{bottom:865.596000pt;}
.y16d{bottom:868.400605pt;}
.y21{bottom:871.108000pt;}
.y209{bottom:873.088000pt;}
.y23e{bottom:875.360000pt;}
.y51{bottom:877.940000pt;}
.yb8{bottom:878.348000pt;}
.y85{bottom:882.333333pt;}
.y26d{bottom:890.701333pt;}
.y23d{bottom:890.702667pt;}
.yb7{bottom:895.085333pt;}
.y20{bottom:896.213333pt;}
.y208{bottom:896.680000pt;}
.y50{bottom:898.661333pt;}
.y84{bottom:899.070667pt;}
.y23c{bottom:906.044000pt;}
.yb6{bottom:911.822667pt;}
.y83{bottom:915.808000pt;}
.y207{bottom:920.270667pt;}
.y1f{bottom:921.320000pt;}
.y23b{bottom:921.386667pt;}
.yb5{bottom:928.560000pt;}
.y82{bottom:932.545333pt;}
.y206{bottom:935.893333pt;}
.y23a{bottom:936.729333pt;}
.yb4{bottom:945.297333pt;}
.y1e{bottom:946.425333pt;}
.y81{bottom:949.282667pt;}
.y205{bottom:951.514667pt;}
.y239{bottom:952.072000pt;}
.yb2{bottom:962.034667pt;}
.y4f{bottom:965.461333pt;}
.y80{bottom:966.020000pt;}
.yb3{bottom:966.856000pt;}
.y204{bottom:967.136000pt;}
.y238{bottom:967.414667pt;}
.y1f8{bottom:970.841333pt;}
.y1d{bottom:971.530667pt;}
.y4e{bottom:982.757333pt;}
.y1b{bottom:1010.186667pt;}
.y4d{bottom:1038.548000pt;}
.ha{height:23.209028pt;}
.h12{height:24.866650pt;}
.h2{height:27.076941pt;}
.h19{height:27.226250pt;}
.h3{height:27.262909pt;}
.h13{height:29.397999pt;}
.hb{height:30.945242pt;}
.hf{height:31.157778pt;}
.he{height:33.186336pt;}
.hc{height:34.430976pt;}
.hd{height:34.813542pt;}
.h25{height:35.052646pt;}
.h1b{height:36.873667pt;}
.h10{height:38.256384pt;}
.h20{height:38.562387pt;}
.h1d{height:38.572494pt;}
.h11{height:38.681455pt;}
.h6{height:38.947124pt;}
.h1a{height:39.349375pt;}
.h16{height:39.359687pt;}
.h1f{height:43.502813pt;}
.h24{height:43.660390pt;}
.h18{height:44.390625pt;}
.h4{height:44.993506pt;}
.h9{height:48.360277pt;}
.h8{height:48.365611pt;}
.h1e{height:48.433131pt;}
.h14{height:48.683332pt;}
.h17{height:49.421563pt;}
.h7{height:68.861952pt;}
.h5{height:72.443562pt;}
.h1c{height:158.219040pt;}
.h23{height:159.317947pt;}
.h22{height:160.965653pt;}
.h21{height:230.960000pt;}
.h15{height:544.886667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:174.479941pt;}
.w3{width:482.661333pt;}
.w5{width:679.425867pt;}
.w4{width:690.009507pt;}
.w7{width:691.657213pt;}
.w6{width:692.756512pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x54{left:-170.626667pt;}
.x70{left:-9.179467pt;}
.x0{left:0.000000pt;}
.x56{left:3.213333pt;}
.x86{left:5.287819pt;}
.x59{left:31.533239pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x85{left:50.285595pt;}
.x2{left:51.288623pt;}
.x6f{left:56.948800pt;}
.xa8{left:76.309333pt;}
.x57{left:104.733333pt;}
.x58{left:110.253333pt;}
.xb6{left:130.974667pt;}
.x73{left:162.660533pt;}
.x72{left:164.660533pt;}
.xac{left:169.054667pt;}
.x67{left:172.042920pt;}
.x66{left:174.002920pt;}
.x87{left:175.650070pt;}
.x74{left:192.980439pt;}
.x68{left:201.756428pt;}
.x88{left:203.403578pt;}
.xba{left:211.989333pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x52{left:232.788000pt;}
.x2c{left:237.544000pt;}
.x53{left:238.500000pt;}
.x5{left:239.924000pt;}
.x2d{left:246.290667pt;}
.x60{left:247.928000pt;}
.x12{left:250.204000pt;}
.x78{left:253.393333pt;}
.x5d{left:255.066667pt;}
.x9c{left:262.101333pt;}
.x6e{left:263.653333pt;}
.x28{left:265.841333pt;}
.xf{left:269.826667pt;}
.x5a{left:272.708000pt;}
.x69{left:274.350667pt;}
.x7{left:275.697333pt;}
.x9b{left:277.752000pt;}
.x29{left:279.124000pt;}
.x22{left:281.254667pt;}
.x10{left:282.658667pt;}
.x11{left:284.348000pt;}
.x9f{left:285.518667pt;}
.x23{left:287.896000pt;}
.x24{left:291.197333pt;}
.x51{left:292.857333pt;}
.x79{left:294.644000pt;}
.x25{left:304.481333pt;}
.x8b{left:308.288000pt;}
.x26{left:311.082667pt;}
.x61{left:312.153333pt;}
.x8c{left:315.062667pt;}
.x6a{left:317.705333pt;}
.x27{left:324.366667pt;}
.x6b{left:327.005333pt;}
.x8d{left:328.345333pt;}
.xa6{left:331.021333pt;}
.x5b{left:337.206667pt;}
.xa7{left:340.204000pt;}
.x5c{left:347.788000pt;}
.xa4{left:351.634667pt;}
.x15{left:353.470667pt;}
.x18{left:359.077333pt;}
.x7a{left:361.656000pt;}
.x19{left:365.720000pt;}
.x1a{left:368.973333pt;}
.x1b{left:375.616000pt;}
.x9e{left:379.482667pt;}
.x75{left:380.957333pt;}
.x8{left:382.314667pt;}
.xa5{left:386.480000pt;}
.x32{left:389.708000pt;}
.x9{left:392.908000pt;}
.x33{left:396.482667pt;}
.x2e{left:405.074667pt;}
.x34{left:409.766667pt;}
.x93{left:412.445333pt;}
.x2f{left:418.358667pt;}
.x1c{left:421.168000pt;}
.x76{left:422.612000pt;}
.xa2{left:424.840000pt;}
.x94{left:425.729333pt;}
.x1d{left:427.810667pt;}
.x6c{left:429.224000pt;}
.x77{left:430.585333pt;}
.x1e{left:434.585333pt;}
.x6d{left:437.197333pt;}
.x95{left:439.601333pt;}
.x1f{left:441.226667pt;}
.x20{left:451.885333pt;}
.x4d{left:455.734667pt;}
.x7b{left:457.101333pt;}
.x8f{left:460.390667pt;}
.x21{left:465.169333pt;}
.x4e{left:469.018667pt;}
.x7c{left:470.385333pt;}
.x4f{left:472.405333pt;}
.x7d{left:473.772000pt;}
.x55{left:478.090957pt;}
.xa{left:482.426667pt;}
.x50{left:485.689333pt;}
.x7e{left:487.056000pt;}
.x35{left:488.105333pt;}
.x7f{left:490.442667pt;}
.xb{left:495.260000pt;}
.xa0{left:498.837333pt;}
.x36{left:501.389333pt;}
.x80{left:503.726667pt;}
.x62{left:504.636000pt;}
.xb7{left:507.856000pt;}
.x83{left:508.926667pt;}
.xa1{left:512.121333pt;}
.x63{left:518.988000pt;}
.x84{left:522.620000pt;}
.x9d{left:535.685333pt;}
.x48{left:537.109333pt;}
.x41{left:547.580000pt;}
.x96{left:548.561333pt;}
.x49{left:550.393333pt;}
.x4a{left:557.168000pt;}
.x42{left:560.862667pt;}
.x43{left:564.250667pt;}
.xc{left:566.060000pt;}
.xb8{left:567.533333pt;}
.x39{left:570.061333pt;}
.x30{left:573.393333pt;}
.x44{left:577.534667pt;}
.xd{left:578.894667pt;}
.x3a{left:583.345333pt;}
.x31{left:586.677333pt;}
.x3b{left:590.120000pt;}
.xb9{left:591.444000pt;}
.xb4{left:594.460000pt;}
.x8e{left:597.665333pt;}
.x64{left:599.793333pt;}
.x81{left:601.848000pt;}
.x3c{left:603.402667pt;}
.x45{left:610.265333pt;}
.x65{left:614.145333pt;}
.x82{left:615.132000pt;}
.xb5{left:618.370667pt;}
.x16{left:620.404000pt;}
.x46{left:623.548000pt;}
.x17{left:627.046667pt;}
.x97{left:630.732000pt;}
.x47{left:640.218667pt;}
.x98{left:642.253333pt;}
.x89{left:643.533333pt;}
.xb0{left:644.854667pt;}
.xb2{left:646.408000pt;}
.x2a{left:649.300000pt;}
.xae{left:650.332000pt;}
.x8a{left:652.833333pt;}
.x13{left:654.657333pt;}
.x90{left:657.306667pt;}
.x14{left:661.300000pt;}
.x2b{left:662.582667pt;}
.xa3{left:665.725333pt;}
.xb1{left:668.765333pt;}
.xb3{left:670.318667pt;}
.xaf{left:674.242667pt;}
.x3d{left:676.798667pt;}
.xad{left:678.612000pt;}
.x4b{left:681.557333pt;}
.xe{left:687.897333pt;}
.x71{left:688.818212pt;}
.x3e{left:690.081333pt;}
.x91{left:692.129333pt;}
.x4c{left:694.841333pt;}
.x3f{left:696.856000pt;}
.x99{left:698.686667pt;}
.xab{left:702.248000pt;}
.x92{left:705.413333pt;}
.x5e{left:706.466667pt;}
.x40{left:710.140000pt;}
.x9a{left:711.970667pt;}
.xa9{left:720.334667pt;}
.x5f{left:721.989333pt;}
.x37{left:726.178667pt;}
.x38{left:739.461333pt;}
.xaa{left:744.245333pt;}
}




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