
    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_7889eb3f2fed0093b56cefbc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.151000;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_3eda88c9b4ed3caacc98e83e.woff')format("woff");}.ff2{font-family:ff2;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_8689e28cbe3bdaece7ea3c9b.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_f59e8ffc9fdbf555fc17d7ba.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8eab92a4f3c35c626b94ed9a.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bfc55ff47215dd5f1ead434a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.174316;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_f59e8ffc9fdbf555fc17d7ba.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_412a6023441bc60f777864e7.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_db6d94760d61e6d0c513fcd2.woff')format("woff");}.ff9{font-family:ff9;line-height:1.174316;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_7d659560cfcb6c5f9e3fd9ef.woff')format("woff");}.ffa{font-family:ffa;line-height:0.040000;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_f59e8ffc9fdbf555fc17d7ba.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c748c9bf03ad38c5db24df00.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_7db0bbd5baf1233f463aae6c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.174316;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_f59e8ffc9fdbf555fc17d7ba.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_db0f45989f62fc83ad279915.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_354c17d09d496069242c14a3.woff')format("woff");}.ff10{font-family:ff10;line-height:1.174316;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_f59e8ffc9fdbf555fc17d7ba.woff')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_1e40f0840b2214e567ef6f7d.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_b296ac808f49a171363254b1.woff')format("woff");}.ff13{font-family:ff13;line-height:1.174316;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;}
.mb{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);}
.md{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);}
.m12{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);}
.m13{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);}
.m2d{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);}
.m19{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m24{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);}
.m1d{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);}
.m3{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);}
.m9{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);}
.m4{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);}
.mc{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m16{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);}
.m17{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);}
.m1a{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);}
.m11{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);}
.m2b{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m29{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);}
.m2c{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);}
.m2a{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);}
.m1f{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);}
.m18{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);}
.m15{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);}
.m23{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);}
.m1e{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);}
.m1c{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);}
.m7{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);}
.me{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);}
.m25{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);}
.m1b{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);}
.ma{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);}
.m21{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);}
.m14{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);}
.m27{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);}
.mf{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);}
.m22{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);}
.m1{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);}
.m20{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);}
.m26{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m10{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;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v1{vertical-align:21.696000px;}
.ls5a{letter-spacing:-0.258516px;}
.ls3c{letter-spacing:-0.247454px;}
.ls1f{letter-spacing:-0.222444px;}
.ls25{letter-spacing:-0.216432px;}
.ls4d{letter-spacing:-0.164969px;}
.ls72{letter-spacing:-0.162324px;}
.ls67{letter-spacing:-0.153216px;}
.ls40{letter-spacing:-0.153186px;}
.ls5d{letter-spacing:-0.150300px;}
.ls3a{letter-spacing:-0.150152px;}
.ls20{letter-spacing:-0.144288px;}
.ls19{letter-spacing:-0.143640px;}
.ls2a{letter-spacing:-0.138276px;}
.ls1d{letter-spacing:-0.132264px;}
.ls5b{letter-spacing:-0.126252px;}
.ls3d{letter-spacing:-0.123727px;}
.ls2c{letter-spacing:-0.120240px;}
.ls23{letter-spacing:-0.108216px;}
.ls4f{letter-spacing:-0.106052px;}
.ls4b{letter-spacing:-0.105840px;}
.ls28{letter-spacing:-0.102204px;}
.ls49{letter-spacing:-0.100160px;}
.ls5e{letter-spacing:-0.096192px;}
.ls48{letter-spacing:-0.094268px;}
.ls6a{letter-spacing:-0.090180px;}
.ls45{letter-spacing:-0.088376px;}
.ls6d{letter-spacing:-0.084168px;}
.ls58{letter-spacing:-0.078156px;}
.ls46{letter-spacing:-0.076593px;}
.ls26{letter-spacing:-0.072144px;}
.ls4e{letter-spacing:-0.070701px;}
.ls71{letter-spacing:-0.066132px;}
.ls6c{letter-spacing:-0.060120px;}
.ls1e{letter-spacing:-0.054108px;}
.ls3f{letter-spacing:-0.053026px;}
.ls6b{letter-spacing:-0.048096px;}
.ls2b{letter-spacing:-0.042084px;}
.ls44{letter-spacing:-0.041242px;}
.ls24{letter-spacing:-0.036072px;}
.ls50{letter-spacing:-0.035351px;}
.ls21{letter-spacing:-0.030060px;}
.ls43{letter-spacing:-0.029459px;}
.ls1c{letter-spacing:-0.024048px;}
.ls4c{letter-spacing:-0.023567px;}
.ls27{letter-spacing:-0.018036px;}
.ls47{letter-spacing:-0.017675px;}
.ls57{letter-spacing:-0.016200px;}
.ls68{letter-spacing:-0.014364px;}
.ls3b{letter-spacing:-0.014077px;}
.ls29{letter-spacing:-0.012024px;}
.ls41{letter-spacing:-0.011784px;}
.ls70{letter-spacing:-0.010800px;}
.ls1b{letter-spacing:-0.006012px;}
.ls42{letter-spacing:-0.005892px;}
.ls4a{letter-spacing:-0.005292px;}
.ls1a{letter-spacing:-0.004788px;}
.ls5{letter-spacing:0.000000px;}
.ls34{letter-spacing:0.005292px;}
.ls63{letter-spacing:0.005400px;}
.ls32{letter-spacing:0.005892px;}
.ls15{letter-spacing:0.006012px;}
.ls22{letter-spacing:0.007200px;}
.ls53{letter-spacing:0.010800px;}
.ls65{letter-spacing:0.012024px;}
.ls10{letter-spacing:0.016200px;}
.ls31{letter-spacing:0.017675px;}
.lsf{letter-spacing:0.018036px;}
.ls52{letter-spacing:0.021600px;}
.lsa{letter-spacing:0.024048px;}
.ls33{letter-spacing:0.029459px;}
.ls9{letter-spacing:0.030060px;}
.ls37{letter-spacing:0.031752px;}
.ls6f{letter-spacing:0.032400px;}
.ls30{letter-spacing:0.035351px;}
.lsc{letter-spacing:0.036072px;}
.ls35{letter-spacing:0.037044px;}
.ls51{letter-spacing:0.037800px;}
.lsb{letter-spacing:0.042084px;}
.ls36{letter-spacing:0.042336px;}
.ls6e{letter-spacing:0.043200px;}
.ls2d{letter-spacing:0.046922px;}
.ls60{letter-spacing:0.047880px;}
.ls17{letter-spacing:0.048096px;}
.ls64{letter-spacing:0.048600px;}
.ls38{letter-spacing:0.053026px;}
.lsd{letter-spacing:0.054108px;}
.ls11{letter-spacing:0.059400px;}
.lse{letter-spacing:0.060120px;}
.ls6{letter-spacing:0.062244px;}
.ls13{letter-spacing:0.064800px;}
.ls16{letter-spacing:0.066132px;}
.ls55{letter-spacing:0.072144px;}
.ls54{letter-spacing:0.090180px;}
.ls12{letter-spacing:0.091800px;}
.ls14{letter-spacing:0.096192px;}
.ls69{letter-spacing:0.102204px;}
.ls59{letter-spacing:0.126252px;}
.ls56{letter-spacing:0.144288px;}
.ls5c{letter-spacing:0.162324px;}
.ls2f{letter-spacing:0.164228px;}
.ls62{letter-spacing:0.172368px;}
.ls8{letter-spacing:0.177156px;}
.ls2e{letter-spacing:0.178305px;}
.ls61{letter-spacing:0.181944px;}
.ls7{letter-spacing:0.191520px;}
.ls3e{letter-spacing:4.672166px;}
.ls0{letter-spacing:8.367300px;}
.ls78{letter-spacing:11.229992px;}
.ls75{letter-spacing:11.897339px;}
.ls4{letter-spacing:11.954850px;}
.ls73{letter-spacing:13.436400px;}
.ls74{letter-spacing:13.448400px;}
.ls76{letter-spacing:13.454400px;}
.ls39{letter-spacing:13.688612px;}
.ls5f{letter-spacing:13.927715px;}
.ls77{letter-spacing:14.468047px;}
.ls66{letter-spacing:14.704798px;}
.ls18{letter-spacing:15.063451px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.ls1{letter-spacing:72.361200px;}
.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;}
}
.ws110{word-spacing:-14.943900px;}
.ws114{word-spacing:-14.939820px;}
.ws191{word-spacing:-13.449600px;}
.ws55{word-spacing:-12.161520px;}
.ws113{word-spacing:-12.151944px;}
.ws56{word-spacing:-11.970000px;}
.ws1f{word-spacing:-11.955150px;}
.wsa0{word-spacing:-11.908905px;}
.wsa1{word-spacing:-11.730600px;}
.ws6{word-spacing:-11.357400px;}
.ws2{word-spacing:-10.460700px;}
.ws115{word-spacing:-9.000000px;}
.wsa2{word-spacing:-8.114400px;}
.ws122{word-spacing:-3.541068px;}
.ws123{word-spacing:-3.492972px;}
.ws14f{word-spacing:-3.227882px;}
.wsf1{word-spacing:-3.210408px;}
.ws96{word-spacing:-3.198384px;}
.wsf0{word-spacing:-3.162312px;}
.ws95{word-spacing:-3.132252px;}
.ws176{word-spacing:-3.120228px;}
.ws78{word-spacing:-3.115800px;}
.ws77{word-spacing:-3.072600px;}
.ws177{word-spacing:-3.060108px;}
.ws4a{word-spacing:-2.809453px;}
.wsbd{word-spacing:-2.727885px;}
.wsc3{word-spacing:-2.716101px;}
.ws24{word-spacing:-2.689902px;}
.wsc4{word-spacing:-2.657184px;}
.ws25{word-spacing:-2.630126px;}
.wse4{word-spacing:-2.510575px;}
.ws82{word-spacing:-2.476944px;}
.wsf6{word-spacing:-2.422836px;}
.wsbc{word-spacing:-2.409730px;}
.ws156{word-spacing:-2.404800px;}
.ws185{word-spacing:-2.391024px;}
.ws29{word-spacing:-2.331248px;}
.wsf7{word-spacing:-2.290572px;}
.wse3{word-spacing:-2.211697px;}
.ws1af{word-spacing:-2.205734px;}
.ws7b{word-spacing:-2.128248px;}
.ws12b{word-spacing:-2.092176px;}
.ws0{word-spacing:-2.092140px;}
.ws12e{word-spacing:-2.080152px;}
.ws1b0{word-spacing:-2.044339px;}
.ws34{word-spacing:-2.032370px;}
.ws131{word-spacing:-1.965924px;}
.ws15f{word-spacing:-1.917828px;}
.ws21{word-spacing:-1.912819px;}
.ws22{word-spacing:-1.853044px;}
.ws32{word-spacing:-1.793268px;}
.ws106{word-spacing:-1.779552px;}
.ws64{word-spacing:-1.731456px;}
.wsd4{word-spacing:-1.726286px;}
.ws126{word-spacing:-1.725444px;}
.ws105{word-spacing:-1.695384px;}
.ws63{word-spacing:-1.683360px;}
.ws151{word-spacing:-1.673717px;}
.wsd3{word-spacing:-1.667368px;}
.ws153{word-spacing:-1.663200px;}
.ws154{word-spacing:-1.652400px;}
.wsdc{word-spacing:-1.643801px;}
.ws152{word-spacing:-1.625400px;}
.ws1ba{word-spacing:-1.613952px;}
.ws148{word-spacing:-1.613941px;}
.ws7c{word-spacing:-1.605204px;}
.ws1a2{word-spacing:-1.560154px;}
.ws1a3{word-spacing:-1.556700px;}
.ws1a4{word-spacing:-1.506355px;}
.ws18a{word-spacing:-1.494390px;}
.ws187{word-spacing:-1.434614px;}
.ws1a1{word-spacing:-1.398758px;}
.ws89{word-spacing:-1.394784px;}
.ws8a{word-spacing:-1.382760px;}
.wsa8{word-spacing:-1.374839px;}
.ws127{word-spacing:-1.370736px;}
.ws73{word-spacing:-1.364724px;}
.ws72{word-spacing:-1.346688px;}
.ws12c{word-spacing:-1.328652px;}
.ws8{word-spacing:-1.315063px;}
.ws12d{word-spacing:-1.304604px;}
.wsc1{word-spacing:-1.296187px;}
.ws11d{word-spacing:-1.296000px;}
.ws164{word-spacing:-1.292580px;}
.ws11e{word-spacing:-1.269000px;}
.wse9{word-spacing:-1.263600px;}
.ws51{word-spacing:-1.255288px;}
.wsc2{word-spacing:-1.243161px;}
.ws163{word-spacing:-1.220436px;}
.wsaf{word-spacing:-1.201919px;}
.wsa7{word-spacing:-1.195512px;}
.wsfa{word-spacing:-1.148292px;}
.ws12{word-spacing:-1.135736px;}
.wsdf{word-spacing:-1.075961px;}
.ws162{word-spacing:-1.040076px;}
.wsb{word-spacing:-1.016185px;}
.ws129{word-spacing:-1.016028px;}
.ws133{word-spacing:-1.010016px;}
.ws84{word-spacing:-0.991980px;}
.ws83{word-spacing:-0.973944px;}
.ws1ae{word-spacing:-0.968371px;}
.wsd{word-spacing:-0.956410px;}
.ws134{word-spacing:-0.943884px;}
.ws19d{word-spacing:-0.914573px;}
.ws46{word-spacing:-0.896634px;}
.ws1b4{word-spacing:-0.860774px;}
.ws1b{word-spacing:-0.836858px;}
.ws7{word-spacing:-0.829905px;}
.ws10{word-spacing:-0.777083px;}
.ws107{word-spacing:-0.769536px;}
.wsae{word-spacing:-0.724686px;}
.ws58{word-spacing:-0.717307px;}
.ws16f{word-spacing:-0.673344px;}
.ws157{word-spacing:-0.661320px;}
.ws186{word-spacing:-0.657532px;}
.ws169{word-spacing:-0.655308px;}
.wsfc{word-spacing:-0.625248px;}
.wsd2{word-spacing:-0.606851px;}
.ws12a{word-spacing:-0.535068px;}
.ws13{word-spacing:-0.533252px;}
.ws37{word-spacing:-0.478205px;}
.wsfb{word-spacing:-0.474948px;}
.wsd1{word-spacing:-0.453666px;}
.wsa9{word-spacing:-0.418429px;}
.ws3f{word-spacing:-0.358654px;}
.ws81{word-spacing:-0.330660px;}
.ws1b1{word-spacing:-0.322790px;}
.ws124{word-spacing:-0.312624px;}
.ws39{word-spacing:-0.298878px;}
.ws168{word-spacing:-0.294588px;}
.ws1aa{word-spacing:-0.268992px;}
.ws16b{word-spacing:-0.264528px;}
.wsb9{word-spacing:-0.259237px;}
.ws80{word-spacing:-0.252504px;}
.ws125{word-spacing:-0.240480px;}
.ws1a{word-spacing:-0.239102px;}
.wsa3{word-spacing:-0.215194px;}
.ws17{word-spacing:-0.179327px;}
.wsc5{word-spacing:-0.170861px;}
.ws108{word-spacing:-0.168336px;}
.ws193{word-spacing:-0.161395px;}
.ws15{word-spacing:-0.119551px;}
.ws1bd{word-spacing:-0.107597px;}
.ws5f{word-spacing:-0.081396px;}
.ws11b{word-spacing:-0.076608px;}
.wsac{word-spacing:-0.075076px;}
.wse0{word-spacing:-0.062287px;}
.ws2e{word-spacing:-0.059776px;}
.ws7a{word-spacing:-0.057600px;}
.wsa4{word-spacing:-0.053798px;}
.wsf2{word-spacing:-0.030060px;}
.ws19a{word-spacing:-0.019421px;}
.ws1a8{word-spacing:-0.003427px;}
.ws1e{word-spacing:-0.003238px;}
.ws5{word-spacing:-0.000533px;}
.ws4{word-spacing:0.000000px;}
.ws76{word-spacing:0.042084px;}
.wsb0{word-spacing:0.053026px;}
.wsa5{word-spacing:0.053798px;}
.ws5e{word-spacing:0.057456px;}
.ws23{word-spacing:0.059776px;}
.wsab{word-spacing:0.060999px;}
.ws11a{word-spacing:0.062244px;}
.ws144{word-spacing:0.066132px;}
.ws1a7{word-spacing:0.070122px;}
.ws16a{word-spacing:0.072144px;}
.wsfd{word-spacing:0.078156px;}
.ws79{word-spacing:0.091800px;}
.wsfe{word-spacing:0.102204px;}
.ws1a6{word-spacing:0.107597px;}
.wsf3{word-spacing:0.108216px;}
.ws17a{word-spacing:0.114228px;}
.wsc7{word-spacing:0.117835px;}
.ws18{word-spacing:0.119551px;}
.ws100{word-spacing:0.120240px;}
.ws10d{word-spacing:0.126252px;}
.ws11f{word-spacing:0.129600px;}
.wsff{word-spacing:0.150300px;}
.wse1{word-spacing:0.161395px;}
.wsce{word-spacing:0.169344px;}
.ws2a{word-spacing:0.179327px;}
.wsc6{word-spacing:0.188536px;}
.ws155{word-spacing:0.189000px;}
.wsea{word-spacing:0.199800px;}
.ws197{word-spacing:0.215194px;}
.ws2b{word-spacing:0.239102px;}
.ws1ab{word-spacing:0.268992px;}
.ws26{word-spacing:0.298878px;}
.ws94{word-spacing:0.318636px;}
.ws1c0{word-spacing:0.322790px;}
.ws16{word-spacing:0.358654px;}
.ws1bf{word-spacing:0.376589px;}
.wsd6{word-spacing:0.388856px;}
.ws19{word-spacing:0.418429px;}
.ws3{word-spacing:0.422252px;}
.wsb6{word-spacing:0.424207px;}
.ws7d{word-spacing:0.432864px;}
.wsbe{word-spacing:0.441882px;}
.wsb5{word-spacing:0.447774px;}
.ws97{word-spacing:0.468936px;}
.ws33{word-spacing:0.478205px;}
.ws1bb{word-spacing:0.484186px;}
.ws167{word-spacing:0.486972px;}
.ws98{word-spacing:0.492984px;}
.wsd5{word-spacing:0.512583px;}
.ws16d{word-spacing:0.517032px;}
.ws28{word-spacing:0.537980px;}
.ws16e{word-spacing:0.559116px;}
.ws48{word-spacing:0.597756px;}
.wse2{word-spacing:0.645581px;}
.ws49{word-spacing:0.657532px;}
.ws41{word-spacing:0.717307px;}
.ws7e{word-spacing:0.721440px;}
.ws1a9{word-spacing:0.753178px;}
.wsf9{word-spacing:0.769536px;}
.ws2d{word-spacing:0.777083px;}
.wsed{word-spacing:0.793584px;}
.ws7f{word-spacing:0.811620px;}
.ws9b{word-spacing:0.829656px;}
.wsf8{word-spacing:0.835668px;}
.ws9c{word-spacing:0.859716px;}
.ws141{word-spacing:0.931860px;}
.ws4d{word-spacing:0.956410px;}
.ws184{word-spacing:1.016185px;}
.ws14e{word-spacing:1.075961px;}
.ws43{word-spacing:1.135736px;}
.ws88{word-spacing:1.142280px;}
.ws87{word-spacing:1.154304px;}
.ws172{word-spacing:1.172340px;}
.ws8b{word-spacing:1.184364px;}
.ws5d{word-spacing:1.195512px;}
.wsc9{word-spacing:1.195992px;}
.ws8c{word-spacing:1.202400px;}
.ws86{word-spacing:1.220436px;}
.wsc8{word-spacing:1.227744px;}
.wse5{word-spacing:1.255288px;}
.ws54{word-spacing:1.315063px;}
.ws85{word-spacing:1.316628px;}
.ws59{word-spacing:1.374839px;}
.ws4e{word-spacing:1.434614px;}
.ws130{word-spacing:1.478952px;}
.ws13e{word-spacing:1.490976px;}
.ws15d{word-spacing:1.515024px;}
.ws9a{word-spacing:1.521036px;}
.ws128{word-spacing:1.527048px;}
.ws99{word-spacing:1.545084px;}
.ws12f{word-spacing:1.551096px;}
.ws10f{word-spacing:1.554166px;}
.ws1b7{word-spacing:1.560154px;}
.ws6b{word-spacing:1.569132px;}
.ws140{word-spacing:1.587168px;}
.ws11{word-spacing:1.613941px;}
.ws13f{word-spacing:1.623240px;}
.ws199{word-spacing:1.667750px;}
.ws188{word-spacing:1.673717px;}
.ws14a{word-spacing:1.733492px;}
.ws192{word-spacing:1.775347px;}
.wsf{word-spacing:1.793268px;}
.ws159{word-spacing:1.821636px;}
.ws47{word-spacing:1.853044px;}
.ws8d{word-spacing:1.863720px;}
.ws13b{word-spacing:1.881756px;}
.ws13c{word-spacing:1.893780px;}
.ws158{word-spacing:1.899792px;}
.ws42{word-spacing:1.912819px;}
.ws3a{word-spacing:1.972595px;}
.ws14d{word-spacing:2.032370px;}
.ws116{word-spacing:2.092146px;}
.ws27{word-spacing:2.151922px;}
.wsef{word-spacing:2.260512px;}
.ws44{word-spacing:2.271473px;}
.ws75{word-spacing:2.272536px;}
.wsee{word-spacing:2.290572px;}
.ws74{word-spacing:2.326644px;}
.ws20{word-spacing:2.331248px;}
.ws6e{word-spacing:2.362716px;}
.ws36{word-spacing:2.391024px;}
.ws1b3{word-spacing:2.420928px;}
.ws3d{word-spacing:2.450800px;}
.ws9{word-spacing:2.510575px;}
.ws70{word-spacing:2.555100px;}
.ws161{word-spacing:2.561112px;}
.ws2f{word-spacing:2.570351px;}
.ws65{word-spacing:2.573136px;}
.ws147{word-spacing:2.585160px;}
.wsca{word-spacing:2.603664px;}
.wse6{word-spacing:2.630126px;}
.ws17b{word-spacing:2.633256px;}
.ws17f{word-spacing:2.639268px;}
.ws6f{word-spacing:2.651292px;}
.ws180{word-spacing:2.657304px;}
.ws17c{word-spacing:2.675340px;}
.ws2c{word-spacing:2.689902px;}
.ws1b2{word-spacing:2.743718px;}
.ws40{word-spacing:2.749678px;}
.ws45{word-spacing:2.809453px;}
.ws18b{word-spacing:2.869229px;}
.wsd0{word-spacing:2.881071px;}
.ws194{word-spacing:2.905114px;}
.ws136{word-spacing:2.927844px;}
.ws165{word-spacing:2.933856px;}
.ws6a{word-spacing:2.939868px;}
.ws19c{word-spacing:2.958912px;}
.ws143{word-spacing:2.963916px;}
.ws10b{word-spacing:2.969928px;}
.ws135{word-spacing:2.975940px;}
.ws174{word-spacing:2.981952px;}
.ws142{word-spacing:2.987964px;}
.ws5a{word-spacing:2.988780px;}
.ws10c{word-spacing:3.006000px;}
.ws173{word-spacing:3.012012px;}
.ws166{word-spacing:3.018024px;}
.ws16c{word-spacing:3.030048px;}
.wse{word-spacing:3.108331px;}
.ws69{word-spacing:3.120228px;}
.wsc{word-spacing:3.168107px;}
.ws1ac{word-spacing:3.219802px;}
.ws19e{word-spacing:3.220358px;}
.ws195{word-spacing:3.224822px;}
.ws1b9{word-spacing:3.226358px;}
.ws1ad{word-spacing:3.227549px;}
.ws52{word-spacing:3.227882px;}
.ws19b{word-spacing:3.227904px;}
.wsf5{word-spacing:3.240468px;}
.wsdb{word-spacing:3.264035px;}
.ws109{word-spacing:3.282552px;}
.wscf{word-spacing:3.287602px;}
.ws5b{word-spacing:3.287658px;}
.wsda{word-spacing:3.299386px;}
.wsbf{word-spacing:3.317061px;}
.ws10a{word-spacing:3.342672px;}
.wsa{word-spacing:3.347434px;}
.wsc0{word-spacing:3.352411px;}
.ws1d{word-spacing:3.407209px;}
.ws38{word-spacing:3.466985px;}
.ws1c1{word-spacing:3.496896px;}
.ws196{word-spacing:3.523487px;}
.ws1bc{word-spacing:3.550694px;}
.ws71{word-spacing:3.553092px;}
.ws68{word-spacing:3.559104px;}
.ws30{word-spacing:3.586536px;}
.ws1a0{word-spacing:3.604493px;}
.ws3b{word-spacing:3.646312px;}
.wsd7{word-spacing:3.646999px;}
.wsf4{word-spacing:3.649284px;}
.ws198{word-spacing:3.658291px;}
.wsd8{word-spacing:3.694134px;}
.ws9d{word-spacing:3.703392px;}
.ws112{word-spacing:3.706087px;}
.ws119{word-spacing:3.765863px;}
.ws53{word-spacing:3.825638px;}
.ws1b5{word-spacing:3.873485px;}
.ws31{word-spacing:3.885414px;}
.ws1b6{word-spacing:3.927283px;}
.ws10e{word-spacing:3.945190px;}
.ws8e{word-spacing:3.991968px;}
.ws62{word-spacing:4.064112px;}
.ws8f{word-spacing:4.076136px;}
.ws4b{word-spacing:4.124516px;}
.ws14c{word-spacing:4.303843px;}
.ws14{word-spacing:4.303872px;}
.wsb4{word-spacing:4.306877px;}
.wsb8{word-spacing:4.318660px;}
.wsb7{word-spacing:4.330444px;}
.wsb3{word-spacing:4.336335px;}
.ws18c{word-spacing:4.363619px;}
.wscd{word-spacing:4.376484px;}
.ws61{word-spacing:4.388760px;}
.ws4c{word-spacing:4.423394px;}
.ws67{word-spacing:4.472928px;}
.ws35{word-spacing:4.483170px;}
.wscc{word-spacing:4.514076px;}
.ws66{word-spacing:4.551084px;}
.ws57{word-spacing:4.572864px;}
.ws3c{word-spacing:4.602721px;}
.ws118{word-spacing:4.662497px;}
.ws15c{word-spacing:4.719420px;}
.ws189{word-spacing:4.722272px;}
.wscb{word-spacing:4.768092px;}
.ws1c{word-spacing:4.782048px;}
.ws1be{word-spacing:4.841856px;}
.ws15e{word-spacing:4.851684px;}
.ws18e{word-spacing:4.961375px;}
.wsaa{word-spacing:5.021150px;}
.ws1a5{word-spacing:5.057050px;}
.wsa6{word-spacing:5.080926px;}
.ws171{word-spacing:5.128236px;}
.ws183{word-spacing:5.140702px;}
.ws92{word-spacing:5.152284px;}
.ws93{word-spacing:5.164308px;}
.wse7{word-spacing:5.189400px;}
.ws170{word-spacing:5.200380px;}
.wse8{word-spacing:5.205600px;}
.ws4f{word-spacing:5.320028px;}
.ws50{word-spacing:5.379804px;}
.ws15a{word-spacing:5.470920px;}
.ws102{word-spacing:5.488956px;}
.ws101{word-spacing:5.500980px;}
.ws18d{word-spacing:5.678682px;}
.ws182{word-spacing:5.738458px;}
.ws103{word-spacing:5.765508px;}
.ws15b{word-spacing:5.885748px;}
.ws111{word-spacing:5.917784px;}
.ws104{word-spacing:5.933844px;}
.ws5c{word-spacing:6.097111px;}
.wsba{word-spacing:6.115647px;}
.wsbb{word-spacing:6.127430px;}
.ws3e{word-spacing:6.156887px;}
.ws19f{word-spacing:6.186816px;}
.ws14b{word-spacing:6.336214px;}
.ws149{word-spacing:6.395989px;}
.wsb1{word-spacing:6.492720px;}
.ws132{word-spacing:6.541056px;}
.wsd9{word-spacing:6.545745px;}
.wsb2{word-spacing:6.592879px;}
.ws181{word-spacing:6.694867px;}
.ws121{word-spacing:6.829632px;}
.ws13d{word-spacing:6.865704px;}
.ws190{word-spacing:6.874194px;}
.ws18f{word-spacing:6.933970px;}
.ws17d{word-spacing:6.937848px;}
.ws17e{word-spacing:6.949872px;}
.ws120{word-spacing:6.985944px;}
.ws175{word-spacing:7.262496px;}
.ws146{word-spacing:7.310592px;}
.ws145{word-spacing:7.334640px;}
.ws117{word-spacing:8.189257px;}
.ws6d{word-spacing:8.326620px;}
.ws6c{word-spacing:8.404776px;}
.ws150{word-spacing:8.428360px;}
.ws179{word-spacing:8.687340px;}
.ws160{word-spacing:8.693352px;}
.ws178{word-spacing:8.891748px;}
.ws138{word-spacing:9.090144px;}
.wseb{word-spacing:9.108180px;}
.wsec{word-spacing:9.156276px;}
.ws137{word-spacing:9.186336px;}
.ws1b8{word-spacing:9.522317px;}
.ws90{word-spacing:9.853668px;}
.ws91{word-spacing:9.937836px;}
.wsad{word-spacing:11.388066px;}
.ws11c{word-spacing:11.615688px;}
.ws60{word-spacing:11.620476px;}
.ws139{word-spacing:14.873688px;}
.ws13a{word-spacing:14.879700px;}
.ws9f{word-spacing:18.444816px;}
.ws9e{word-spacing:18.571068px;}
.wsdd{word-spacing:19.825772px;}
.wsde{word-spacing:19.843448px;}
.ws1{word-spacing:22.179541px;}
._27{margin-left:-23.994086px;}
._24{margin-left:-20.692642px;}
._23{margin-left:-17.335026px;}
._f{margin-left:-8.392514px;}
._6{margin-left:-6.635092px;}
._1{margin-left:-4.644551px;}
._8{margin-left:-3.538724px;}
._2{margin-left:-2.301354px;}
._7{margin-left:-1.243336px;}
._1a{width:1.321488px;}
._4{width:2.998886px;}
._26{width:5.110715px;}
._0{width:10.879128px;}
._13{width:12.110543px;}
._9{width:13.963615px;}
._19{width:15.888358px;}
._e{width:17.316958px;}
._b{width:18.518420px;}
._d{width:19.576476px;}
._3{width:21.761856px;}
._14{width:23.653192px;}
._18{width:24.854698px;}
._10{width:26.217481px;}
._a{width:27.945062px;}
._15{width:29.887800px;}
._c{width:30.951796px;}
._16{width:32.876580px;}
._1d{width:35.482776px;}
._21{width:36.522828px;}
._17{width:37.646676px;}
._1e{width:39.565422px;}
._5{width:54.385238px;}
._25{width:61.868160px;}
._22{width:88.767360px;}
._11{width:1719.800700px;}
._1c{width:2064.202560px;}
._1f{width:2082.593268px;}
._1b{width:2107.213164px;}
._20{width:2493.680700px;}
._12{width:2517.590700px;}
.fc2{color:transparent;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:32.457600px;}
.fs4{font-size:35.865600px;}
.fs9{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fsd{font-size:46.922400px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:47.880000px;}
.fsf{font-size:52.920000px;}
.fsc{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fse{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fs8{font-size:60.120000px;}
.fs11{font-size:62.286600px;}
.fs6{font-size:71.731200px;}
.fsb{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.y1f4{bottom:-739.927530px;}
.y1f3{bottom:-718.867494px;}
.y1f2{bottom:-697.897638px;}
.y1f1{bottom:-676.927782px;}
.y1f0{bottom:-655.867746px;}
.y1c5{bottom:-649.978074px;}
.y1ef{bottom:-634.897890px;}
.y1c4{bottom:-628.918038px;}
.y1ee{bottom:-613.928034px;}
.y1c3{bottom:-607.948182px;}
.y1ed{bottom:-592.867998px;}
.y1c2{bottom:-586.978326px;}
.y1ec{bottom:-571.898142px;}
.y1c1{bottom:-565.918290px;}
.ye6{bottom:-554.488140px;}
.y1eb{bottom:-550.928286px;}
.y1c0{bottom:-544.948434px;}
.ye5{bottom:-533.428104px;}
.y1ea{bottom:-529.868250px;}
.y1bf{bottom:-523.978578px;}
.ye4{bottom:-512.458248px;}
.y1e9{bottom:-508.898394px;}
.y1be{bottom:-502.918542px;}
.ye3{bottom:-491.488392px;}
.y1e8{bottom:-487.928538px;}
.y173{bottom:-482.757504px;}
.y1bd{bottom:-481.948686px;}
.ye2{bottom:-470.428356px;}
.y1e7{bottom:-466.868502px;}
.y172{bottom:-461.787648px;}
.y1bc{bottom:-460.978830px;}
.ye1{bottom:-449.458500px;}
.y1e6{bottom:-445.898646px;}
.y171{bottom:-440.817792px;}
.y1bb{bottom:-439.918794px;}
.ye0{bottom:-428.488644px;}
.y1e5{bottom:-424.928790px;}
.y170{bottom:-419.757756px;}
.y1ba{bottom:-418.948938px;}
.ydf{bottom:-407.428608px;}
.y1e4{bottom:-403.868754px;}
.y16e{bottom:-398.787900px;}
.y16d{bottom:-398.787792px;}
.y1b9{bottom:-397.979082px;}
.y16f{bottom:-395.008050px;}
.yde{bottom:-386.458752px;}
.y1e3{bottom:-382.898898px;}
.y16c{bottom:-377.817936px;}
.y1b8{bottom:-376.919046px;}
.ydd{bottom:-365.488896px;}
.y1e2{bottom:-361.929042px;}
.y16a{bottom:-356.757900px;}
.y169{bottom:-356.757654px;}
.y1b7{bottom:-355.949190px;}
.y16b{bottom:-352.978050px;}
.y12a{bottom:-346.682007px;}
.ydc{bottom:-344.428860px;}
.y1e1{bottom:-340.869006px;}
.y168{bottom:-335.787798px;}
.y1b6{bottom:-334.979334px;}
.y129{bottom:-326.131548px;}
.ydb{bottom:-323.459004px;}
.y1e0{bottom:-319.899150px;}
.y167{bottom:-314.817942px;}
.y1b5{bottom:-313.919298px;}
.y128{bottom:-305.581089px;}
.yda{bottom:-302.489148px;}
.y1df{bottom:-298.929294px;}
.y166{bottom:-293.757906px;}
.y1b4{bottom:-292.949442px;}
.y127{bottom:-284.942254px;}
.yd9{bottom:-281.429112px;}
.y1de{bottom:-277.869258px;}
.y164{bottom:-272.788050px;}
.y163{bottom:-272.787942px;}
.y1b3{bottom:-271.979586px;}
.y165{bottom:-269.007900px;}
.y126{bottom:-264.391795px;}
.yd8{bottom:-260.459256px;}
.y1dd{bottom:-256.899402px;}
.y162{bottom:-251.818086px;}
.y1b2{bottom:-250.919046px;}
.y125{bottom:-243.841336px;}
.yd7{bottom:-239.489400px;}
.yd6{bottom:-239.488896px;}
.y1dc{bottom:-235.929546px;}
.y160{bottom:-230.758050px;}
.y15f{bottom:-230.757906px;}
.y1b1{bottom:-229.949190px;}
.y161{bottom:-226.978050px;}
.y124{bottom:-223.202501px;}
.yd5{bottom:-218.428860px;}
.y1db{bottom:-214.869510px;}
.y15d{bottom:-209.788050px;}
.y15c{bottom:-209.787906px;}
.y1b0{bottom:-208.979334px;}
.y15e{bottom:-206.008050px;}
.y123{bottom:-202.652042px;}
.yd4{bottom:-197.459004px;}
.y1da{bottom:-193.899654px;}
.y159{bottom:-188.818086px;}
.y15a{bottom:-188.818050px;}
.y1af{bottom:-187.919298px;}
.y15b{bottom:-185.038050px;}
.y122{bottom:-182.101583px;}
.yd3{bottom:-176.489148px;}
.y1d9{bottom:-172.929798px;}
.y157{bottom:-167.758050px;}
.y156{bottom:-167.757798px;}
.y1ae{bottom:-166.949442px;}
.y158{bottom:-163.978050px;}
.y121{bottom:-161.462748px;}
.yd2{bottom:-155.429112px;}
.y1d8{bottom:-151.869762px;}
.y155{bottom:-146.787942px;}
.y1ad{bottom:-145.979586px;}
.y120{bottom:-140.912289px;}
.yd1{bottom:-134.459256px;}
.y1d7{bottom:-130.899906px;}
.y154{bottom:-125.818086px;}
.y1ac{bottom:-124.919262px;}
.yd0{bottom:-113.489400px;}
.y1d6{bottom:-109.930050px;}
.y153{bottom:-104.758050px;}
.y1ab{bottom:-103.949406px;}
.y11f{bottom:-103.162689px;}
.ycf{bottom:-87.119550px;}
.y1d5{bottom:-83.560050px;}
.y1aa{bottom:-82.979550px;}
.y11e{bottom:-82.523007px;}
.y152{bottom:-66.237600px;}
.y11d{bottom:-61.972848px;}
.yce{bottom:-46.079100px;}
.y151{bottom:-45.268050px;}
.y1a9{bottom:-44.369100px;}
.y1d4{bottom:-42.610050px;}
.y11c{bottom:-41.422689px;}
.ycd{bottom:-25.109550px;}
.y150{bottom:-24.208050px;}
.y1a8{bottom:-23.399550px;}
.y1d3{bottom:-21.550050px;}
.y11b{bottom:-20.783889px;}
.y0{bottom:0.000000px;}
.ycc{bottom:0.811188px;}
.y14f{bottom:1.711950px;}
.y1a7{bottom:2.520450px;}
.y1d2{bottom:4.369950px;}
.y11a{bottom:4.530217px;}
.y40{bottom:45.921000px;}
.y106{bottom:99.720000px;}
.y15{bottom:100.260000px;}
.y260{bottom:100.954500px;}
.y3f{bottom:102.213000px;}
.y14a{bottom:103.845000px;}
.y199{bottom:105.399000px;}
.y292{bottom:105.961500px;}
.y149{bottom:106.575000px;}
.y198{bottom:108.129000px;}
.y200{bottom:109.480500px;}
.yb3{bottom:114.882000px;}
.y73{bottom:116.407500px;}
.y83{bottom:116.839500px;}
.y14{bottom:118.147500px;}
.y232{bottom:118.536000px;}
.y25f{bottom:120.105000px;}
.ya7{bottom:120.322500px;}
.y105{bottom:120.610500px;}
.y3e{bottom:123.105000px;}
.y291{bottom:125.112000px;}
.y197{bottom:126.289500px;}
.y148{bottom:127.465500px;}
.y196{bottom:129.019500px;}
.y1ff{bottom:130.371000px;}
.yb2{bottom:135.774000px;}
.y13{bottom:136.035000px;}
.y72{bottom:137.298000px;}
.y82{bottom:137.731500px;}
.y231{bottom:138.034500px;}
.y25e{bottom:139.255500px;}
.ya6{bottom:141.213000px;}
.y104{bottom:141.502500px;}
.y3d{bottom:143.995500px;}
.y290{bottom:144.262500px;}
.y195{bottom:147.181500px;}
.y147{bottom:148.357500px;}
.y194{bottom:149.911500px;}
.y1fe{bottom:151.263000px;}
.y12{bottom:153.922500px;}
.yb1{bottom:156.666000px;}
.y230{bottom:157.534500px;}
.y71{bottom:158.190000px;}
.y25d{bottom:158.406000px;}
.y81{bottom:158.623500px;}
.y1cc{bottom:159.664500px;}
.ya5{bottom:162.105000px;}
.y103{bottom:162.394500px;}
.y28f{bottom:163.413000px;}
.y3c{bottom:164.887500px;}
.y1cd{bottom:167.818500px;}
.y146{bottom:169.249500px;}
.y193{bottom:170.803500px;}
.y11{bottom:171.811500px;}
.y1fd{bottom:172.155000px;}
.yb0{bottom:177.556500px;}
.y70{bottom:179.082000px;}
.y80{bottom:179.514000px;}
.y28e{bottom:182.563500px;}
.ya4{bottom:182.997000px;}
.y102{bottom:183.285000px;}
.y3b{bottom:185.779500px;}
.y22f{bottom:185.998500px;}
.y192{bottom:188.964000px;}
.y10{bottom:189.699000px;}
.y145{bottom:190.140000px;}
.y191{bottom:191.694000px;}
.y1fc{bottom:193.047000px;}
.y25c{bottom:196.708500px;}
.yaf{bottom:198.448500px;}
.y6f{bottom:199.972500px;}
.y7f{bottom:200.406000px;}
.y28d{bottom:201.714000px;}
.y101{bottom:204.177000px;}
.y3a{bottom:206.670000px;}
.yf{bottom:207.586500px;}
.ya3{bottom:208.371000px;}
.y190{bottom:209.856000px;}
.y144{bottom:211.032000px;}
.y18f{bottom:212.586000px;}
.y1fb{bottom:213.937500px;}
.y22e{bottom:214.464000px;}
.y25b{bottom:215.859000px;}
.yae{bottom:219.340500px;}
.y6e{bottom:220.864500px;}
.y7e{bottom:221.298000px;}
.y100{bottom:225.069000px;}
.ye{bottom:225.475500px;}
.y39{bottom:227.562000px;}
.y18e{bottom:230.748000px;}
.y143{bottom:231.924000px;}
.y18d{bottom:233.478000px;}
.y1fa{bottom:234.829500px;}
.y25a{bottom:235.009500px;}
.y28c{bottom:240.015000px;}
.yad{bottom:240.232500px;}
.y6d{bottom:241.756500px;}
.y7d{bottom:242.190000px;}
.y22d{bottom:242.929500px;}
.ya2{bottom:243.714000px;}
.yff{bottom:245.961000px;}
.y38{bottom:248.454000px;}
.ycb{bottom:248.580738px;}
.y18c{bottom:251.638500px;}
.yd{bottom:252.330000px;}
.y142{bottom:252.814500px;}
.y259{bottom:254.160000px;}
.y18b{bottom:254.368500px;}
.y1f9{bottom:255.721500px;}
.y28b{bottom:259.165500px;}
.yac{bottom:261.123000px;}
.y22c{bottom:262.428000px;}
.y6c{bottom:262.647000px;}
.y7c{bottom:263.080500px;}
.ya1{bottom:264.606000px;}
.yfe{bottom:266.851500px;}
.y37{bottom:269.344500px;}
.yca{bottom:269.550594px;}
.yc{bottom:270.217500px;}
.y18a{bottom:272.530500px;}
.y258{bottom:273.310500px;}
.y141{bottom:273.706500px;}
.y189{bottom:275.260500px;}
.y1f8{bottom:276.612000px;}
.y28a{bottom:278.316000px;}
.y22b{bottom:281.926500px;}
.yaa{bottom:282.015000px;}
.y6b{bottom:283.539000px;}
.ya0{bottom:285.496500px;}
.yab{bottom:287.439000px;}
.yfd{bottom:287.743500px;}
.yb{bottom:288.105000px;}
.y7b{bottom:288.456000px;}
.y36{bottom:290.236500px;}
.yc9{bottom:290.520450px;}
.yc7{bottom:290.520558px;}
.y257{bottom:292.461000px;}
.y188{bottom:293.422500px;}
.yc8{bottom:294.300450px;}
.y140{bottom:294.598500px;}
.y187{bottom:296.152500px;}
.y289{bottom:297.466500px;}
.y22a{bottom:301.425000px;}
.y1f7{bottom:301.987500px;}
.y6a{bottom:304.431000px;}
.y1ca{bottom:305.905500px;}
.ya{bottom:305.994000px;}
.y9f{bottom:306.388500px;}
.ya9{bottom:307.389000px;}
.yfc{bottom:308.635500px;}
.y35{bottom:311.128500px;}
.yc6{bottom:311.580594px;}
.y256{bottom:311.611500px;}
.y1cb{bottom:314.059500px;}
.y13f{bottom:315.489000px;}
.y288{bottom:316.617000px;}
.y186{bottom:317.043000px;}
.y229{bottom:320.923500px;}
.y7a{bottom:323.797500px;}
.y9{bottom:323.881500px;}
.y69{bottom:325.323000px;}
.y9e{bottom:327.280500px;}
.yfb{bottom:329.526000px;}
.y255{bottom:330.762000px;}
.yc5{bottom:332.550450px;}
.yc3{bottom:332.551062px;}
.y287{bottom:335.767500px;}
.yc4{bottom:336.330450px;}
.y13e{bottom:336.381000px;}
.y34{bottom:336.502500px;}
.y1f6{bottom:337.615500px;}
.y185{bottom:337.935000px;}
.y8{bottom:341.769000px;}
.y79{bottom:344.689500px;}
.y68{bottom:346.213500px;}
.y1c8{bottom:347.688000px;}
.y9d{bottom:348.171000px;}
.y228{bottom:349.389000px;}
.y254{bottom:349.912500px;}
.yfa{bottom:350.418000px;}
.y1a6{bottom:350.550585px;}
.yc2{bottom:353.520918px;}
.y286{bottom:354.918000px;}
.y1c9{bottom:355.842000px;}
.y1f5{bottom:356.848500px;}
.y13d{bottom:357.273000px;}
.y184{bottom:358.827000px;}
.y1d1{bottom:359.060085px;}
.y7{bottom:359.658000px;}
.y1a5{bottom:360.180450px;}
.y78{bottom:365.581500px;}
.y67{bottom:367.105500px;}
.y1d0{bottom:368.689950px;}
.y9c{bottom:369.063000px;}
.y227{bottom:369.411000px;}
.yf9{bottom:371.310000px;}
.y119{bottom:373.030346px;}
.y285{bottom:374.070000px;}
.yc1{bottom:374.580954px;}
.y6{bottom:377.545500px;}
.y13c{bottom:378.165000px;}
.y183{bottom:379.719000px;}
.y1cf{bottom:382.266000px;}
.y77{bottom:386.472000px;}
.y66{bottom:387.997500px;}
.y253{bottom:388.213500px;}
.y9b{bottom:389.955000px;}
.yf8{bottom:392.200500px;}
.y284{bottom:393.220500px;}
.y118{bottom:393.580805px;}
.yc0{bottom:395.550810px;}
.y13b{bottom:399.055500px;}
.y182{bottom:400.609500px;}
.y5{bottom:401.410500px;}
.y1c7{bottom:405.861000px;}
.y76{bottom:407.364000px;}
.y14e{bottom:408.152085px;}
.y65{bottom:408.888000px;}
.y9a{bottom:410.845500px;}
.y283{bottom:412.371000px;}
.yf7{bottom:413.092500px;}
.y117{bottom:414.131264px;}
.y33{bottom:415.714500px;}
.ybf{bottom:416.520666px;}
.y14d{bottom:417.781950px;}
.y4{bottom:419.299500px;}
.y13a{bottom:419.947500px;}
.y181{bottom:421.501500px;}
.y1c6{bottom:425.094000px;}
.y252{bottom:426.514500px;}
.y75{bottom:428.256000px;}
.y99{bottom:429.007500px;}
.y64{bottom:429.780000px;}
.y282{bottom:431.521500px;}
.y98{bottom:431.737500px;}
.yf6{bottom:433.984500px;}
.y116{bottom:434.770099px;}
.y3{bottom:437.187000px;}
.ybe{bottom:437.580702px;}
.y139{bottom:440.839500px;}
.y180{bottom:442.393500px;}
.y251{bottom:445.665000px;}
.y1a4{bottom:447.523500px;}
.y226{bottom:449.146500px;}
.y63{bottom:450.672000px;}
.y97{bottom:452.629500px;}
.y74{bottom:453.630000px;}
.y32{bottom:454.539000px;}
.yf5{bottom:454.875000px;}
.y2{bottom:455.074500px;}
.y115{bottom:455.320558px;}
.ybd{bottom:458.550558px;}
.y17f{bottom:460.554000px;}
.y138{bottom:461.730000px;}
.y17e{bottom:463.284000px;}
.y250{bottom:464.815500px;}
.y281{bottom:469.822500px;}
.y225{bottom:470.038500px;}
.y62{bottom:471.562500px;}
.y96{bottom:473.520000px;}
.y31{bottom:475.431000px;}
.yf4{bottom:475.767000px;}
.y114{bottom:475.871017px;}
.y1{bottom:478.941000px;}
.ybc{bottom:479.520414px;}
.y17d{bottom:481.446000px;}
.y137{bottom:482.622000px;}
.y24f{bottom:483.966000px;}
.y17c{bottom:484.176000px;}
.y280{bottom:488.973000px;}
.y224{bottom:490.930500px;}
.y61{bottom:492.454500px;}
.y95{bottom:494.412000px;}
.y30{bottom:496.321500px;}
.y113{bottom:496.509852px;}
.yf3{bottom:496.659000px;}
.ybb{bottom:500.580450px;}
.y17b{bottom:502.338000px;}
.y24e{bottom:503.116500px;}
.y136{bottom:503.514000px;}
.y17a{bottom:505.068000px;}
.y27f{bottom:508.123500px;}
.y223{bottom:511.822500px;}
.y60{bottom:513.346500px;}
.y94{bottom:515.304000px;}
.y112{bottom:517.060311px;}
.y2f{bottom:517.213500px;}
.yf2{bottom:517.551000px;}
.y24d{bottom:522.267000px;}
.y135{bottom:524.404500px;}
.y179{bottom:525.958500px;}
.y27e{bottom:527.274000px;}
.y222{bottom:532.713000px;}
.y5f{bottom:534.237000px;}
.yf1{bottom:535.711500px;}
.y93{bottom:536.194500px;}
.y111{bottom:537.610770px;}
.y2e{bottom:538.105500px;}
.yf0{bottom:538.441500px;}
.y24c{bottom:541.417500px;}
.y134{bottom:545.296500px;}
.y27d{bottom:546.424500px;}
.y178{bottom:546.850500px;}
.y221{bottom:553.605000px;}
.y5e{bottom:555.129000px;}
.yba{bottom:556.740585px;}
.y92{bottom:557.086500px;}
.y110{bottom:558.249605px;}
.y2d{bottom:558.996000px;}
.yef{bottom:559.333500px;}
.y24b{bottom:560.568000px;}
.y27c{bottom:565.575000px;}
.y133{bottom:566.188500px;}
.yb9{bottom:566.370450px;}
.y177{bottom:567.742500px;}
.y220{bottom:574.497000px;}
.y5d{bottom:576.021000px;}
.y91{bottom:577.978500px;}
.y10f{bottom:578.800064px;}
.y24a{bottom:579.720000px;}
.y2c{bottom:579.888000px;}
.yee{bottom:580.225500px;}
.y27b{bottom:584.725500px;}
.y132{bottom:587.079000px;}
.y21f{bottom:595.387500px;}
.y5c{bottom:596.913000px;}
.y90{bottom:598.870500px;}
.y10e{bottom:599.350523px;}
.y2b{bottom:600.780000px;}
.yed{bottom:601.116000px;}
.y176{bottom:603.370500px;}
.y27a{bottom:603.876000px;}
.y131{bottom:607.971000px;}
.y21e{bottom:616.279500px;}
.y5b{bottom:617.803500px;}
.y249{bottom:618.021000px;}
.y8f{bottom:619.761000px;}
.y10d{bottom:619.989358px;}
.y2a{bottom:621.670500px;}
.yec{bottom:622.008000px;}
.y175{bottom:622.603500px;}
.y279{bottom:623.026500px;}
.y206{bottom:635.965500px;}
.y21d{bottom:637.171500px;}
.y5a{bottom:638.695500px;}
.y10c{bottom:640.539817px;}
.y8e{bottom:640.653000px;}
.y174{bottom:641.835000px;}
.y278{bottom:642.177000px;}
.y29{bottom:642.562500px;}
.yeb{bottom:642.900000px;}
.y130{bottom:643.599000px;}
.y207{bottom:644.119500px;}
.y248{bottom:656.322000px;}
.y204{bottom:656.857500px;}
.y21c{bottom:658.062000px;}
.y59{bottom:659.587500px;}
.y12f{bottom:660.210000px;}
.y10b{bottom:661.090276px;}
.y277{bottom:661.327500px;}
.y8d{bottom:661.545000px;}
.y12e{bottom:662.832000px;}
.y28{bottom:663.454500px;}
.yea{bottom:663.790500px;}
.y14c{bottom:664.264500px;}
.y205{bottom:665.011500px;}
.y247{bottom:675.472500px;}
.y202{bottom:677.748000px;}
.y21b{bottom:678.954000px;}
.y58{bottom:680.478000px;}
.y10a{bottom:681.729111px;}
.y12d{bottom:682.065000px;}
.y8c{bottom:682.435500px;}
.y27{bottom:684.346500px;}
.y203{bottom:685.903500px;}
.ye9{bottom:689.166000px;}
.y246{bottom:694.623000px;}
.ya8{bottom:698.640000px;}
.y276{bottom:699.628500px;}
.y21a{bottom:699.846000px;}
.y12c{bottom:701.298000px;}
.y57{bottom:701.370000px;}
.y8b{bottom:703.327500px;}
.y26{bottom:705.237000px;}
.y201{bottom:706.794000px;}
.y245{bottom:713.773500px;}
.y275{bottom:718.779000px;}
.y12b{bottom:720.531000px;}
.y219{bottom:720.736500px;}
.y56{bottom:722.262000px;}
.ye8{bottom:723.969000px;}
.y8a{bottom:724.219500px;}
.y25{bottom:726.129000px;}
.y244{bottom:732.924000px;}
.y109{bottom:736.766043px;}
.y274{bottom:737.929500px;}
.y218{bottom:741.628500px;}
.y55{bottom:743.152500px;}
.ye7{bottom:743.200500px;}
.y89{bottom:745.110000px;}
.y107{bottom:745.948500px;}
.y108{bottom:746.203311px;}
.y24{bottom:747.021000px;}
.y243{bottom:752.074500px;}
.y273{bottom:757.081500px;}
.y217{bottom:762.520500px;}
.y54{bottom:764.044500px;}
.y88{bottom:766.002000px;}
.y23{bottom:767.911500px;}
.yb8{bottom:768.619500px;}
.y242{bottom:771.225000px;}
.y272{bottom:776.232000px;}
.y216{bottom:783.411000px;}
.y53{bottom:784.936500px;}
.y87{bottom:786.894000px;}
.y241{bottom:790.375500px;}
.y296{bottom:790.651500px;}
.y271{bottom:795.382500px;}
.y215{bottom:804.303000px;}
.y52{bottom:805.827000px;}
.y86{bottom:807.784500px;}
.y22{bottom:807.931500px;}
.y240{bottom:809.526000px;}
.y295{bottom:809.802000px;}
.y270{bottom:814.533000px;}
.y1a2{bottom:823.989000px;}
.y214{bottom:825.195000px;}
.y51{bottom:826.719000px;}
.y21{bottom:828.411000px;}
.y85{bottom:828.676500px;}
.y294{bottom:828.954000px;}
.y1a3{bottom:832.144500px;}
.y26f{bottom:833.683500px;}
.y20{bottom:840.211500px;}
.y213{bottom:846.087000px;}
.y50{bottom:847.611000px;}
.y23f{bottom:847.827000px;}
.y26e{bottom:852.834000px;}
.y84{bottom:854.052000px;}
.y1f{bottom:860.689500px;}
.y212{bottom:866.977500px;}
.y4f{bottom:868.503000px;}
.y26d{bottom:871.984500px;}
.y1e{bottom:872.490000px;}
.y23e{bottom:886.128000px;}
.y1a0{bottom:886.663500px;}
.y211{bottom:887.869500px;}
.y4e{bottom:889.393500px;}
.y26c{bottom:891.135000px;}
.y1d{bottom:892.969500px;}
.y1a1{bottom:894.819000px;}
.y1c{bottom:904.768500px;}
.y23d{bottom:905.278500px;}
.y19e{bottom:907.555500px;}
.y210{bottom:908.761500px;}
.y4d{bottom:910.285500px;}
.y19f{bottom:915.709500px;}
.y23c{bottom:924.429000px;}
.y1b{bottom:925.248000px;}
.y19c{bottom:928.447500px;}
.y26b{bottom:929.436000px;}
.y20f{bottom:929.652000px;}
.y4c{bottom:931.177500px;}
.y19d{bottom:936.601500px;}
.y23b{bottom:943.579500px;}
.y26a{bottom:948.586500px;}
.y20e{bottom:950.544000px;}
.y4b{bottom:952.068000px;}
.y23a{bottom:962.731500px;}
.y269{bottom:967.737000px;}
.y1a{bottom:969.925500px;}
.y20d{bottom:971.436000px;}
.y4a{bottom:972.960000px;}
.y239{bottom:981.882000px;}
.y268{bottom:986.887500px;}
.y20c{bottom:992.326500px;}
.y49{bottom:993.852000px;}
.y238{bottom:1001.032500px;}
.y267{bottom:1006.038000px;}
.y19{bottom:1008.748500px;}
.y20b{bottom:1013.218500px;}
.y48{bottom:1014.742500px;}
.y237{bottom:1020.183000px;}
.y266{bottom:1025.188500px;}
.y20a{bottom:1034.110500px;}
.y47{bottom:1035.634500px;}
.y236{bottom:1039.333500px;}
.y18{bottom:1040.086500px;}
.yb7{bottom:1041.058500px;}
.y265{bottom:1044.339000px;}
.y209{bottom:1055.001000px;}
.y46{bottom:1056.526500px;}
.y235{bottom:1058.484000px;}
.yb6{bottom:1061.950500px;}
.y264{bottom:1063.489500px;}
.y17{bottom:1071.424500px;}
.y14b{bottom:1074.688500px;}
.y45{bottom:1077.417000px;}
.y234{bottom:1077.634500px;}
.y208{bottom:1080.376500px;}
.y263{bottom:1082.640000px;}
.yb5{bottom:1082.842500px;}
.y1ce{bottom:1095.579000px;}
.y44{bottom:1098.309000px;}
.y293{bottom:1099.168500px;}
.y233{bottom:1101.268500px;}
.y262{bottom:1101.790500px;}
.y16{bottom:1102.761000px;}
.yb4{bottom:1103.734500px;}
.y19b{bottom:1116.471000px;}
.y43{bottom:1119.201000px;}
.y261{bottom:1120.941000px;}
.y19a{bottom:1137.363000px;}
.y42{bottom:1140.091500px;}
.y41{bottom:1200.196500px;}
.h16{height:16.817382px;}
.h6{height:31.131341px;}
.he{height:32.150391px;}
.h2{height:36.319550px;}
.ha{height:39.432893px;}
.h1a{height:39.434227px;}
.h7{height:41.508281px;}
.h13{height:41.904819px;}
.hc{height:42.760020px;}
.h3{height:43.815515px;}
.h11{height:46.697011px;}
.h15{height:47.261074px;}
.hf{height:48.225586px;}
.h9{height:51.861658px;}
.h8{height:51.885221px;}
.h14{height:52.617329px;}
.h10{height:53.015625px;}
.hd{height:53.691152px;}
.h5{height:54.541601px;}
.h4{height:77.792486px;}
.hb{height:227.791500px;}
.h18{height:314.848500px;}
.h19{height:325.321500px;}
.h12{height:354.096540px;}
.h17{height:373.104000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:327.285000px;}
.w4{width:386.196000px;}
.w2{width:719.372100px;}
.w6{width:763.883100px;}
.w3{width:774.905649px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x71{left:-194.082000px;}
.xb5{left:-192.118500px;}
.x53{left:-33.057900px;}
.xc6{left:-10.802400px;}
.x0{left:0.000000px;}
.x73{left:1.488000px;}
.x65{left:3.526089px;}
.x79{left:23.898000px;}
.x7a{left:30.288000px;}
.x74{left:33.348000px;}
.xb7{left:35.311500px;}
.x2{left:52.525500px;}
.x1{left:53.574000px;}
.x7b{left:55.488000px;}
.x64{left:58.792971px;}
.x7c{left:59.988000px;}
.xc5{left:64.302900px;}
.xd3{left:85.404000px;}
.x52{left:86.558400px;}
.x7d{left:123.168000px;}
.x7e{left:129.828000px;}
.x87{left:133.158000px;}
.x88{left:139.818000px;}
.x7f{left:155.028000px;}
.x80{left:159.528000px;}
.x54{left:162.512100px;}
.x89{left:165.018000px;}
.x8a{left:169.518000px;}
.x5a{left:175.742100px;}
.x5b{left:180.242100px;}
.xc7{left:184.767600px;}
.x5e{left:194.372100px;}
.x55{left:200.582100px;}
.x56{left:207.692100px;}
.xc8{left:216.627600px;}
.x66{left:226.408071px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.x5f{left:253.592100px;}
.x4{left:269.914500px;}
.x45{left:272.406000px;}
.x6{left:281.479500px;}
.x13{left:283.296000px;}
.x46{left:287.350500px;}
.x14{left:290.767500px;}
.x68{left:292.020000px;}
.x37{left:293.230500px;}
.x81{left:297.318000px;}
.x69{left:301.369500px;}
.x38{left:303.558000px;}
.x9e{left:312.186000px;}
.x57{left:314.072100px;}
.x77{left:315.948000px;}
.x6a{left:317.067000px;}
.x49{left:319.110000px;}
.x4e{left:320.251500px;}
.x82{left:322.518000px;}
.xb6{left:326.101500px;}
.x7{left:327.547500px;}
.x4f{left:330.381000px;}
.x98{left:331.407000px;}
.x8{left:335.020500px;}
.x1b{left:337.378500px;}
.x8d{left:340.488000px;}
.x1d{left:342.535500px;}
.xb0{left:349.152000px;}
.x1c{left:352.323000px;}
.xb1{left:355.381500px;}
.x1e{left:357.480000px;}
.x39{left:361.662000px;}
.xa2{left:366.711000px;}
.xa1{left:370.159500px;}
.xcb{left:374.446500px;}
.x3a{left:376.606500px;}
.xbc{left:378.352500px;}
.x9c{left:379.563000px;}
.x72{left:384.438000px;}
.x8e{left:386.673000px;}
.xbd{left:388.410000px;}
.x9d{left:390.651000px;}
.xc9{left:392.574000px;}
.x8f{left:398.964000px;}
.x27{left:405.658500px;}
.xca{left:407.518500px;}
.xcf{left:409.305000px;}
.xd0{left:415.533000px;}
.x6d{left:416.608500px;}
.xcd{left:418.351500px;}
.xaa{left:419.583000px;}
.x28{left:420.603000px;}
.xbe{left:423.657000px;}
.x6e{left:426.388500px;}
.xab{left:429.507000px;}
.x83{left:430.698000px;}
.x19{left:437.050500px;}
.x84{left:438.348000px;}
.x90{left:440.977500px;}
.x1f{left:444.309000px;}
.xce{left:447.661500px;}
.x1a{left:451.995000px;}
.x6b{left:453.750000px;}
.x20{left:459.252000px;}
.x85{left:463.548000px;}
.x3c{left:465.228000px;}
.x86{left:468.048000px;}
.x78{left:470.118000px;}
.x51{left:473.592000px;}
.x2f{left:474.951000px;}
.x3d{left:480.171000px;}
.xb2{left:484.080000px;}
.xd{left:487.119000px;}
.x5c{left:489.302100px;}
.xe{left:494.590500px;}
.x23{left:499.603500px;}
.x42{left:502.366500px;}
.x3e{left:504.852000px;}
.x24{left:514.548000px;}
.x99{left:516.205500px;}
.x75{left:517.368000px;}
.x3f{left:519.795000px;}
.xb3{left:521.886000px;}
.x76{left:523.577850px;}
.x9a{left:526.117500px;}
.xb4{left:528.114000px;}
.x58{left:532.232100px;}
.x59{left:536.732100px;}
.x35{left:538.698000px;}
.x50{left:544.318500px;}
.x6f{left:549.550500px;}
.x36{left:553.642500px;}
.x43{left:554.892000px;}
.x40{left:557.037000px;}
.x70{left:559.330500px;}
.x9f{left:563.667000px;}
.x44{left:565.494000px;}
.xc3{left:567.127500px;}
.xac{left:568.528500px;}
.x41{left:571.980000px;}
.xa0{left:573.900000px;}
.x91{left:578.350500px;}
.xa5{left:580.896000px;}
.x92{left:588.496500px;}
.xa6{left:591.066000px;}
.x4a{left:597.877500px;}
.xa3{left:600.121500px;}
.xad{left:607.662000px;}
.xa4{left:610.288500px;}
.x4b{left:612.822000px;}
.xae{left:613.891500px;}
.xc4{left:618.838500px;}
.x30{left:624.631500px;}
.xd2{left:630.552000px;}
.x93{left:632.829000px;}
.x31{left:639.574500px;}
.x94{left:645.121500px;}
.x32{left:646.920000px;}
.x21{left:648.253500px;}
.x25{left:650.856000px;}
.x47{left:657.118500px;}
.x6c{left:659.478000px;}
.x33{left:661.863000px;}
.x22{left:663.196500px;}
.x26{left:665.800500px;}
.x48{left:667.908000px;}
.xb8{left:669.327000px;}
.x96{left:674.877000px;}
.xb9{left:679.603500px;}
.x97{left:685.050000px;}
.xa9{left:687.006000px;}
.xb{left:692.883000px;}
.xd1{left:698.491500px;}
.xc{left:700.354500px;}
.x95{left:702.807000px;}
.x60{left:707.552100px;}
.xba{left:709.602000px;}
.x61{left:712.052100px;}
.xbb{left:716.028000px;}
.x5d{left:718.262162px;}
.x34{left:721.728000px;}
.xbf{left:727.422000px;}
.x15{left:730.024500px;}
.x3b{left:732.033000px;}
.x17{left:736.560000px;}
.x2b{left:739.573500px;}
.x29{left:743.475000px;}
.x16{left:744.969000px;}
.x2c{left:747.780000px;}
.x18{left:751.504500px;}
.x9{left:754.842000px;}
.xcc{left:756.636000px;}
.x2a{left:758.419500px;}
.x9b{left:760.831500px;}
.xa{left:762.313500px;}
.xaf{left:765.270000px;}
.xc0{left:766.311000px;}
.xf{left:767.592000px;}
.x67{left:773.073550px;}
.x10{left:775.065000px;}
.x11{left:778.857000px;}
.x12{left:786.328500px;}
.x62{left:789.760500px;}
.xa7{left:791.593500px;}
.x8b{left:794.011500px;}
.x4c{left:796.300500px;}
.x63{left:800.098500px;}
.xa8{left:801.763500px;}
.x8c{left:803.487000px;}
.x4d{left:806.449500px;}
.x2d{left:817.723500px;}
.xc1{left:819.022500px;}
.x2e{left:832.668000px;}
.xc2{left:833.967000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v1{vertical-align:19.285333pt;}
.ls5a{letter-spacing:-0.229792pt;}
.ls3c{letter-spacing:-0.219959pt;}
.ls1f{letter-spacing:-0.197728pt;}
.ls25{letter-spacing:-0.192384pt;}
.ls4d{letter-spacing:-0.146639pt;}
.ls72{letter-spacing:-0.144288pt;}
.ls67{letter-spacing:-0.136192pt;}
.ls40{letter-spacing:-0.136165pt;}
.ls5d{letter-spacing:-0.133600pt;}
.ls3a{letter-spacing:-0.133468pt;}
.ls20{letter-spacing:-0.128256pt;}
.ls19{letter-spacing:-0.127680pt;}
.ls2a{letter-spacing:-0.122912pt;}
.ls1d{letter-spacing:-0.117568pt;}
.ls5b{letter-spacing:-0.112224pt;}
.ls3d{letter-spacing:-0.109980pt;}
.ls2c{letter-spacing:-0.106880pt;}
.ls23{letter-spacing:-0.096192pt;}
.ls4f{letter-spacing:-0.094268pt;}
.ls4b{letter-spacing:-0.094080pt;}
.ls28{letter-spacing:-0.090848pt;}
.ls49{letter-spacing:-0.089031pt;}
.ls5e{letter-spacing:-0.085504pt;}
.ls48{letter-spacing:-0.083794pt;}
.ls6a{letter-spacing:-0.080160pt;}
.ls45{letter-spacing:-0.078557pt;}
.ls6d{letter-spacing:-0.074816pt;}
.ls58{letter-spacing:-0.069472pt;}
.ls46{letter-spacing:-0.068083pt;}
.ls26{letter-spacing:-0.064128pt;}
.ls4e{letter-spacing:-0.062845pt;}
.ls71{letter-spacing:-0.058784pt;}
.ls6c{letter-spacing:-0.053440pt;}
.ls1e{letter-spacing:-0.048096pt;}
.ls3f{letter-spacing:-0.047134pt;}
.ls6b{letter-spacing:-0.042752pt;}
.ls2b{letter-spacing:-0.037408pt;}
.ls44{letter-spacing:-0.036660pt;}
.ls24{letter-spacing:-0.032064pt;}
.ls50{letter-spacing:-0.031423pt;}
.ls21{letter-spacing:-0.026720pt;}
.ls43{letter-spacing:-0.026186pt;}
.ls1c{letter-spacing:-0.021376pt;}
.ls4c{letter-spacing:-0.020948pt;}
.ls27{letter-spacing:-0.016032pt;}
.ls47{letter-spacing:-0.015711pt;}
.ls57{letter-spacing:-0.014400pt;}
.ls68{letter-spacing:-0.012768pt;}
.ls3b{letter-spacing:-0.012513pt;}
.ls29{letter-spacing:-0.010688pt;}
.ls41{letter-spacing:-0.010474pt;}
.ls70{letter-spacing:-0.009600pt;}
.ls1b{letter-spacing:-0.005344pt;}
.ls42{letter-spacing:-0.005237pt;}
.ls4a{letter-spacing:-0.004704pt;}
.ls1a{letter-spacing:-0.004256pt;}
.ls5{letter-spacing:0.000000pt;}
.ls34{letter-spacing:0.004704pt;}
.ls63{letter-spacing:0.004800pt;}
.ls32{letter-spacing:0.005237pt;}
.ls15{letter-spacing:0.005344pt;}
.ls22{letter-spacing:0.006400pt;}
.ls53{letter-spacing:0.009600pt;}
.ls65{letter-spacing:0.010688pt;}
.ls10{letter-spacing:0.014400pt;}
.ls31{letter-spacing:0.015711pt;}
.lsf{letter-spacing:0.016032pt;}
.ls52{letter-spacing:0.019200pt;}
.lsa{letter-spacing:0.021376pt;}
.ls33{letter-spacing:0.026186pt;}
.ls9{letter-spacing:0.026720pt;}
.ls37{letter-spacing:0.028224pt;}
.ls6f{letter-spacing:0.028800pt;}
.ls30{letter-spacing:0.031423pt;}
.lsc{letter-spacing:0.032064pt;}
.ls35{letter-spacing:0.032928pt;}
.ls51{letter-spacing:0.033600pt;}
.lsb{letter-spacing:0.037408pt;}
.ls36{letter-spacing:0.037632pt;}
.ls6e{letter-spacing:0.038400pt;}
.ls2d{letter-spacing:0.041709pt;}
.ls60{letter-spacing:0.042560pt;}
.ls17{letter-spacing:0.042752pt;}
.ls64{letter-spacing:0.043200pt;}
.ls38{letter-spacing:0.047134pt;}
.lsd{letter-spacing:0.048096pt;}
.ls11{letter-spacing:0.052800pt;}
.lse{letter-spacing:0.053440pt;}
.ls6{letter-spacing:0.055328pt;}
.ls13{letter-spacing:0.057600pt;}
.ls16{letter-spacing:0.058784pt;}
.ls55{letter-spacing:0.064128pt;}
.ls54{letter-spacing:0.080160pt;}
.ls12{letter-spacing:0.081600pt;}
.ls14{letter-spacing:0.085504pt;}
.ls69{letter-spacing:0.090848pt;}
.ls59{letter-spacing:0.112224pt;}
.ls56{letter-spacing:0.128256pt;}
.ls5c{letter-spacing:0.144288pt;}
.ls2f{letter-spacing:0.145981pt;}
.ls62{letter-spacing:0.153216pt;}
.ls8{letter-spacing:0.157472pt;}
.ls2e{letter-spacing:0.158493pt;}
.ls61{letter-spacing:0.161728pt;}
.ls7{letter-spacing:0.170240pt;}
.ls3e{letter-spacing:4.153036pt;}
.ls0{letter-spacing:7.437600pt;}
.ls78{letter-spacing:9.982215pt;}
.ls75{letter-spacing:10.575412pt;}
.ls4{letter-spacing:10.626533pt;}
.ls73{letter-spacing:11.943467pt;}
.ls74{letter-spacing:11.954133pt;}
.ls76{letter-spacing:11.959467pt;}
.ls39{letter-spacing:12.167655pt;}
.ls5f{letter-spacing:12.380191pt;}
.ls77{letter-spacing:12.860486pt;}
.ls66{letter-spacing:13.070931pt;}
.ls18{letter-spacing:13.389734pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.ls1{letter-spacing:64.321067pt;}
.ws110{word-spacing:-13.283467pt;}
.ws114{word-spacing:-13.279840pt;}
.ws191{word-spacing:-11.955200pt;}
.ws55{word-spacing:-10.810240pt;}
.ws113{word-spacing:-10.801728pt;}
.ws56{word-spacing:-10.640000pt;}
.ws1f{word-spacing:-10.626800pt;}
.wsa0{word-spacing:-10.585693pt;}
.wsa1{word-spacing:-10.427200pt;}
.ws6{word-spacing:-10.095467pt;}
.ws2{word-spacing:-9.298400pt;}
.ws115{word-spacing:-8.000000pt;}
.wsa2{word-spacing:-7.212800pt;}
.ws122{word-spacing:-3.147616pt;}
.ws123{word-spacing:-3.104864pt;}
.ws14f{word-spacing:-2.869229pt;}
.wsf1{word-spacing:-2.853696pt;}
.ws96{word-spacing:-2.843008pt;}
.wsf0{word-spacing:-2.810944pt;}
.ws95{word-spacing:-2.784224pt;}
.ws176{word-spacing:-2.773536pt;}
.ws78{word-spacing:-2.769600pt;}
.ws77{word-spacing:-2.731200pt;}
.ws177{word-spacing:-2.720096pt;}
.ws4a{word-spacing:-2.497292pt;}
.wsbd{word-spacing:-2.424787pt;}
.wsc3{word-spacing:-2.414312pt;}
.ws24{word-spacing:-2.391024pt;}
.wsc4{word-spacing:-2.361941pt;}
.ws25{word-spacing:-2.337890pt;}
.wse4{word-spacing:-2.231622pt;}
.ws82{word-spacing:-2.201728pt;}
.wsf6{word-spacing:-2.153632pt;}
.wsbc{word-spacing:-2.141982pt;}
.ws156{word-spacing:-2.137600pt;}
.ws185{word-spacing:-2.125355pt;}
.ws29{word-spacing:-2.072221pt;}
.wsf7{word-spacing:-2.036064pt;}
.wse3{word-spacing:-1.965953pt;}
.ws1af{word-spacing:-1.960653pt;}
.ws7b{word-spacing:-1.891776pt;}
.ws12b{word-spacing:-1.859712pt;}
.ws0{word-spacing:-1.859680pt;}
.ws12e{word-spacing:-1.849024pt;}
.ws1b0{word-spacing:-1.817190pt;}
.ws34{word-spacing:-1.806551pt;}
.ws131{word-spacing:-1.747488pt;}
.ws15f{word-spacing:-1.704736pt;}
.ws21{word-spacing:-1.700284pt;}
.ws22{word-spacing:-1.647150pt;}
.ws32{word-spacing:-1.594016pt;}
.ws106{word-spacing:-1.581824pt;}
.ws64{word-spacing:-1.539072pt;}
.wsd4{word-spacing:-1.534476pt;}
.ws126{word-spacing:-1.533728pt;}
.ws105{word-spacing:-1.507008pt;}
.ws63{word-spacing:-1.496320pt;}
.ws151{word-spacing:-1.487748pt;}
.wsd3{word-spacing:-1.482105pt;}
.ws153{word-spacing:-1.478400pt;}
.ws154{word-spacing:-1.468800pt;}
.wsdc{word-spacing:-1.461156pt;}
.ws152{word-spacing:-1.444800pt;}
.ws1ba{word-spacing:-1.434624pt;}
.ws148{word-spacing:-1.434614pt;}
.ws7c{word-spacing:-1.426848pt;}
.ws1a2{word-spacing:-1.386803pt;}
.ws1a3{word-spacing:-1.383733pt;}
.ws1a4{word-spacing:-1.338982pt;}
.ws18a{word-spacing:-1.328347pt;}
.ws187{word-spacing:-1.275213pt;}
.ws1a1{word-spacing:-1.243341pt;}
.ws89{word-spacing:-1.239808pt;}
.ws8a{word-spacing:-1.229120pt;}
.wsa8{word-spacing:-1.222079pt;}
.ws127{word-spacing:-1.218432pt;}
.ws73{word-spacing:-1.213088pt;}
.ws72{word-spacing:-1.197056pt;}
.ws12c{word-spacing:-1.181024pt;}
.ws8{word-spacing:-1.168945pt;}
.ws12d{word-spacing:-1.159648pt;}
.wsc1{word-spacing:-1.152166pt;}
.ws11d{word-spacing:-1.152000pt;}
.ws164{word-spacing:-1.148960pt;}
.ws11e{word-spacing:-1.128000pt;}
.wse9{word-spacing:-1.123200pt;}
.ws51{word-spacing:-1.115811pt;}
.wsc2{word-spacing:-1.105032pt;}
.ws163{word-spacing:-1.084832pt;}
.wsaf{word-spacing:-1.068372pt;}
.wsa7{word-spacing:-1.062677pt;}
.wsfa{word-spacing:-1.020704pt;}
.ws12{word-spacing:-1.009543pt;}
.wsdf{word-spacing:-0.956410pt;}
.ws162{word-spacing:-0.924512pt;}
.wsb{word-spacing:-0.903276pt;}
.ws129{word-spacing:-0.903136pt;}
.ws133{word-spacing:-0.897792pt;}
.ws84{word-spacing:-0.881760pt;}
.ws83{word-spacing:-0.865728pt;}
.ws1ae{word-spacing:-0.860774pt;}
.wsd{word-spacing:-0.850142pt;}
.ws134{word-spacing:-0.839008pt;}
.ws19d{word-spacing:-0.812954pt;}
.ws46{word-spacing:-0.797008pt;}
.ws1b4{word-spacing:-0.765133pt;}
.ws1b{word-spacing:-0.743874pt;}
.ws7{word-spacing:-0.737693pt;}
.ws10{word-spacing:-0.690740pt;}
.ws107{word-spacing:-0.684032pt;}
.wsae{word-spacing:-0.644166pt;}
.ws58{word-spacing:-0.637606pt;}
.ws16f{word-spacing:-0.598528pt;}
.ws157{word-spacing:-0.587840pt;}
.ws186{word-spacing:-0.584473pt;}
.ws169{word-spacing:-0.582496pt;}
.wsfc{word-spacing:-0.555776pt;}
.wsd2{word-spacing:-0.539423pt;}
.ws12a{word-spacing:-0.475616pt;}
.ws13{word-spacing:-0.474002pt;}
.ws37{word-spacing:-0.425071pt;}
.wsfb{word-spacing:-0.422176pt;}
.wsd1{word-spacing:-0.403258pt;}
.wsa9{word-spacing:-0.371937pt;}
.ws3f{word-spacing:-0.318803pt;}
.ws81{word-spacing:-0.293920pt;}
.ws1b1{word-spacing:-0.286925pt;}
.ws124{word-spacing:-0.277888pt;}
.ws39{word-spacing:-0.265669pt;}
.ws168{word-spacing:-0.261856pt;}
.ws1aa{word-spacing:-0.239104pt;}
.ws16b{word-spacing:-0.235136pt;}
.wsb9{word-spacing:-0.230433pt;}
.ws80{word-spacing:-0.224448pt;}
.ws125{word-spacing:-0.213760pt;}
.ws1a{word-spacing:-0.212535pt;}
.wsa3{word-spacing:-0.191283pt;}
.ws17{word-spacing:-0.159402pt;}
.wsc5{word-spacing:-0.151876pt;}
.ws108{word-spacing:-0.149632pt;}
.ws193{word-spacing:-0.143462pt;}
.ws15{word-spacing:-0.106268pt;}
.ws1bd{word-spacing:-0.095642pt;}
.ws5f{word-spacing:-0.072352pt;}
.ws11b{word-spacing:-0.068096pt;}
.wsac{word-spacing:-0.066734pt;}
.wse0{word-spacing:-0.055366pt;}
.ws2e{word-spacing:-0.053134pt;}
.ws7a{word-spacing:-0.051200pt;}
.wsa4{word-spacing:-0.047821pt;}
.wsf2{word-spacing:-0.026720pt;}
.ws19a{word-spacing:-0.017263pt;}
.ws1a8{word-spacing:-0.003046pt;}
.ws1e{word-spacing:-0.002878pt;}
.ws5{word-spacing:-0.000474pt;}
.ws4{word-spacing:0.000000pt;}
.ws76{word-spacing:0.037408pt;}
.wsb0{word-spacing:0.047134pt;}
.wsa5{word-spacing:0.047821pt;}
.ws5e{word-spacing:0.051072pt;}
.ws23{word-spacing:0.053134pt;}
.wsab{word-spacing:0.054221pt;}
.ws11a{word-spacing:0.055328pt;}
.ws144{word-spacing:0.058784pt;}
.ws1a7{word-spacing:0.062331pt;}
.ws16a{word-spacing:0.064128pt;}
.wsfd{word-spacing:0.069472pt;}
.ws79{word-spacing:0.081600pt;}
.wsfe{word-spacing:0.090848pt;}
.ws1a6{word-spacing:0.095642pt;}
.wsf3{word-spacing:0.096192pt;}
.ws17a{word-spacing:0.101536pt;}
.wsc7{word-spacing:0.104742pt;}
.ws18{word-spacing:0.106268pt;}
.ws100{word-spacing:0.106880pt;}
.ws10d{word-spacing:0.112224pt;}
.ws11f{word-spacing:0.115200pt;}
.wsff{word-spacing:0.133600pt;}
.wse1{word-spacing:0.143462pt;}
.wsce{word-spacing:0.150528pt;}
.ws2a{word-spacing:0.159402pt;}
.wsc6{word-spacing:0.167588pt;}
.ws155{word-spacing:0.168000pt;}
.wsea{word-spacing:0.177600pt;}
.ws197{word-spacing:0.191283pt;}
.ws2b{word-spacing:0.212535pt;}
.ws1ab{word-spacing:0.239104pt;}
.ws26{word-spacing:0.265669pt;}
.ws94{word-spacing:0.283232pt;}
.ws1c0{word-spacing:0.286925pt;}
.ws16{word-spacing:0.318803pt;}
.ws1bf{word-spacing:0.334746pt;}
.wsd6{word-spacing:0.345650pt;}
.ws19{word-spacing:0.371937pt;}
.ws3{word-spacing:0.375335pt;}
.wsb6{word-spacing:0.377073pt;}
.ws7d{word-spacing:0.384768pt;}
.wsbe{word-spacing:0.392784pt;}
.wsb5{word-spacing:0.398021pt;}
.ws97{word-spacing:0.416832pt;}
.ws33{word-spacing:0.425071pt;}
.ws1bb{word-spacing:0.430387pt;}
.ws167{word-spacing:0.432864pt;}
.ws98{word-spacing:0.438208pt;}
.wsd5{word-spacing:0.455629pt;}
.ws16d{word-spacing:0.459584pt;}
.ws28{word-spacing:0.478205pt;}
.ws16e{word-spacing:0.496992pt;}
.ws48{word-spacing:0.531339pt;}
.wse2{word-spacing:0.573850pt;}
.ws49{word-spacing:0.584473pt;}
.ws41{word-spacing:0.637606pt;}
.ws7e{word-spacing:0.641280pt;}
.ws1a9{word-spacing:0.669491pt;}
.wsf9{word-spacing:0.684032pt;}
.ws2d{word-spacing:0.690740pt;}
.wsed{word-spacing:0.705408pt;}
.ws7f{word-spacing:0.721440pt;}
.ws9b{word-spacing:0.737472pt;}
.wsf8{word-spacing:0.742816pt;}
.ws9c{word-spacing:0.764192pt;}
.ws141{word-spacing:0.828320pt;}
.ws4d{word-spacing:0.850142pt;}
.ws184{word-spacing:0.903276pt;}
.ws14e{word-spacing:0.956410pt;}
.ws43{word-spacing:1.009543pt;}
.ws88{word-spacing:1.015360pt;}
.ws87{word-spacing:1.026048pt;}
.ws172{word-spacing:1.042080pt;}
.ws8b{word-spacing:1.052768pt;}
.ws5d{word-spacing:1.062677pt;}
.wsc9{word-spacing:1.063104pt;}
.ws8c{word-spacing:1.068800pt;}
.ws86{word-spacing:1.084832pt;}
.wsc8{word-spacing:1.091328pt;}
.wse5{word-spacing:1.115811pt;}
.ws54{word-spacing:1.168945pt;}
.ws85{word-spacing:1.170336pt;}
.ws59{word-spacing:1.222079pt;}
.ws4e{word-spacing:1.275213pt;}
.ws130{word-spacing:1.314624pt;}
.ws13e{word-spacing:1.325312pt;}
.ws15d{word-spacing:1.346688pt;}
.ws9a{word-spacing:1.352032pt;}
.ws128{word-spacing:1.357376pt;}
.ws99{word-spacing:1.373408pt;}
.ws12f{word-spacing:1.378752pt;}
.ws10f{word-spacing:1.381481pt;}
.ws1b7{word-spacing:1.386803pt;}
.ws6b{word-spacing:1.394784pt;}
.ws140{word-spacing:1.410816pt;}
.ws11{word-spacing:1.434614pt;}
.ws13f{word-spacing:1.442880pt;}
.ws199{word-spacing:1.482445pt;}
.ws188{word-spacing:1.487748pt;}
.ws14a{word-spacing:1.540882pt;}
.ws192{word-spacing:1.578086pt;}
.wsf{word-spacing:1.594016pt;}
.ws159{word-spacing:1.619232pt;}
.ws47{word-spacing:1.647150pt;}
.ws8d{word-spacing:1.656640pt;}
.ws13b{word-spacing:1.672672pt;}
.ws13c{word-spacing:1.683360pt;}
.ws158{word-spacing:1.688704pt;}
.ws42{word-spacing:1.700284pt;}
.ws3a{word-spacing:1.753418pt;}
.ws14d{word-spacing:1.806551pt;}
.ws116{word-spacing:1.859685pt;}
.ws27{word-spacing:1.912819pt;}
.wsef{word-spacing:2.009344pt;}
.ws44{word-spacing:2.019087pt;}
.ws75{word-spacing:2.020032pt;}
.wsee{word-spacing:2.036064pt;}
.ws74{word-spacing:2.068128pt;}
.ws20{word-spacing:2.072221pt;}
.ws6e{word-spacing:2.100192pt;}
.ws36{word-spacing:2.125355pt;}
.ws1b3{word-spacing:2.151936pt;}
.ws3d{word-spacing:2.178489pt;}
.ws9{word-spacing:2.231622pt;}
.ws70{word-spacing:2.271200pt;}
.ws161{word-spacing:2.276544pt;}
.ws2f{word-spacing:2.284756pt;}
.ws65{word-spacing:2.287232pt;}
.ws147{word-spacing:2.297920pt;}
.wsca{word-spacing:2.314368pt;}
.wse6{word-spacing:2.337890pt;}
.ws17b{word-spacing:2.340672pt;}
.ws17f{word-spacing:2.346016pt;}
.ws6f{word-spacing:2.356704pt;}
.ws180{word-spacing:2.362048pt;}
.ws17c{word-spacing:2.378080pt;}
.ws2c{word-spacing:2.391024pt;}
.ws1b2{word-spacing:2.438861pt;}
.ws40{word-spacing:2.444158pt;}
.ws45{word-spacing:2.497292pt;}
.ws18b{word-spacing:2.550426pt;}
.wsd0{word-spacing:2.560952pt;}
.ws194{word-spacing:2.582323pt;}
.ws136{word-spacing:2.602528pt;}
.ws165{word-spacing:2.607872pt;}
.ws6a{word-spacing:2.613216pt;}
.ws19c{word-spacing:2.630144pt;}
.ws143{word-spacing:2.634592pt;}
.ws10b{word-spacing:2.639936pt;}
.ws135{word-spacing:2.645280pt;}
.ws174{word-spacing:2.650624pt;}
.ws142{word-spacing:2.655968pt;}
.ws5a{word-spacing:2.656693pt;}
.ws10c{word-spacing:2.672000pt;}
.ws173{word-spacing:2.677344pt;}
.ws166{word-spacing:2.682688pt;}
.ws16c{word-spacing:2.693376pt;}
.wse{word-spacing:2.762961pt;}
.ws69{word-spacing:2.773536pt;}
.wsc{word-spacing:2.816095pt;}
.ws1ac{word-spacing:2.862046pt;}
.ws19e{word-spacing:2.862541pt;}
.ws195{word-spacing:2.866509pt;}
.ws1b9{word-spacing:2.867874pt;}
.ws1ad{word-spacing:2.868932pt;}
.ws52{word-spacing:2.869229pt;}
.ws19b{word-spacing:2.869248pt;}
.wsf5{word-spacing:2.880416pt;}
.wsdb{word-spacing:2.901364pt;}
.ws109{word-spacing:2.917824pt;}
.wscf{word-spacing:2.922313pt;}
.ws5b{word-spacing:2.922363pt;}
.wsda{word-spacing:2.932787pt;}
.wsbf{word-spacing:2.948499pt;}
.ws10a{word-spacing:2.971264pt;}
.wsa{word-spacing:2.975497pt;}
.wsc0{word-spacing:2.979921pt;}
.ws1d{word-spacing:3.028630pt;}
.ws38{word-spacing:3.081764pt;}
.ws1c1{word-spacing:3.108352pt;}
.ws196{word-spacing:3.131989pt;}
.ws1bc{word-spacing:3.156173pt;}
.ws71{word-spacing:3.158304pt;}
.ws68{word-spacing:3.163648pt;}
.ws30{word-spacing:3.188032pt;}
.ws1a0{word-spacing:3.203994pt;}
.ws3b{word-spacing:3.241166pt;}
.wsd7{word-spacing:3.241777pt;}
.wsf4{word-spacing:3.243808pt;}
.ws198{word-spacing:3.251814pt;}
.wsd8{word-spacing:3.283674pt;}
.ws9d{word-spacing:3.291904pt;}
.ws112{word-spacing:3.294300pt;}
.ws119{word-spacing:3.347434pt;}
.ws53{word-spacing:3.400567pt;}
.ws1b5{word-spacing:3.443098pt;}
.ws31{word-spacing:3.453701pt;}
.ws1b6{word-spacing:3.490918pt;}
.ws10e{word-spacing:3.506835pt;}
.ws8e{word-spacing:3.548416pt;}
.ws62{word-spacing:3.612544pt;}
.ws8f{word-spacing:3.623232pt;}
.ws4b{word-spacing:3.666237pt;}
.ws14c{word-spacing:3.825638pt;}
.ws14{word-spacing:3.825664pt;}
.wsb4{word-spacing:3.828335pt;}
.wsb8{word-spacing:3.838809pt;}
.wsb7{word-spacing:3.849283pt;}
.wsb3{word-spacing:3.854520pt;}
.ws18c{word-spacing:3.878772pt;}
.wscd{word-spacing:3.890208pt;}
.ws61{word-spacing:3.901120pt;}
.ws4c{word-spacing:3.931906pt;}
.ws67{word-spacing:3.975936pt;}
.ws35{word-spacing:3.985040pt;}
.wscc{word-spacing:4.012512pt;}
.ws66{word-spacing:4.045408pt;}
.ws57{word-spacing:4.064768pt;}
.ws3c{word-spacing:4.091308pt;}
.ws118{word-spacing:4.144442pt;}
.ws15c{word-spacing:4.195040pt;}
.ws189{word-spacing:4.197575pt;}
.wscb{word-spacing:4.238304pt;}
.ws1c{word-spacing:4.250709pt;}
.ws1be{word-spacing:4.303872pt;}
.ws15e{word-spacing:4.312608pt;}
.ws18e{word-spacing:4.410111pt;}
.wsaa{word-spacing:4.463245pt;}
.ws1a5{word-spacing:4.495155pt;}
.wsa6{word-spacing:4.516379pt;}
.ws171{word-spacing:4.558432pt;}
.ws183{word-spacing:4.569513pt;}
.ws92{word-spacing:4.579808pt;}
.ws93{word-spacing:4.590496pt;}
.wse7{word-spacing:4.612800pt;}
.ws170{word-spacing:4.622560pt;}
.wse8{word-spacing:4.627200pt;}
.ws4f{word-spacing:4.728914pt;}
.ws50{word-spacing:4.782048pt;}
.ws15a{word-spacing:4.863040pt;}
.ws102{word-spacing:4.879072pt;}
.ws101{word-spacing:4.889760pt;}
.ws18d{word-spacing:5.047717pt;}
.ws182{word-spacing:5.100851pt;}
.ws103{word-spacing:5.124896pt;}
.ws15b{word-spacing:5.231776pt;}
.ws111{word-spacing:5.260253pt;}
.ws104{word-spacing:5.274528pt;}
.ws5c{word-spacing:5.419654pt;}
.wsba{word-spacing:5.436131pt;}
.wsbb{word-spacing:5.446605pt;}
.ws3e{word-spacing:5.472788pt;}
.ws19f{word-spacing:5.499392pt;}
.ws14b{word-spacing:5.632190pt;}
.ws149{word-spacing:5.685324pt;}
.wsb1{word-spacing:5.771306pt;}
.ws132{word-spacing:5.814272pt;}
.wsd9{word-spacing:5.818440pt;}
.wsb2{word-spacing:5.860337pt;}
.ws181{word-spacing:5.950993pt;}
.ws121{word-spacing:6.070784pt;}
.ws13d{word-spacing:6.102848pt;}
.ws190{word-spacing:6.110395pt;}
.ws18f{word-spacing:6.163529pt;}
.ws17d{word-spacing:6.166976pt;}
.ws17e{word-spacing:6.177664pt;}
.ws120{word-spacing:6.209728pt;}
.ws175{word-spacing:6.455552pt;}
.ws146{word-spacing:6.498304pt;}
.ws145{word-spacing:6.519680pt;}
.ws117{word-spacing:7.279340pt;}
.ws6d{word-spacing:7.401440pt;}
.ws6c{word-spacing:7.470912pt;}
.ws150{word-spacing:7.491875pt;}
.ws179{word-spacing:7.722080pt;}
.ws160{word-spacing:7.727424pt;}
.ws178{word-spacing:7.903776pt;}
.ws138{word-spacing:8.080128pt;}
.wseb{word-spacing:8.096160pt;}
.wsec{word-spacing:8.138912pt;}
.ws137{word-spacing:8.165632pt;}
.ws1b8{word-spacing:8.464282pt;}
.ws90{word-spacing:8.758816pt;}
.ws91{word-spacing:8.833632pt;}
.wsad{word-spacing:10.122726pt;}
.ws11c{word-spacing:10.325056pt;}
.ws60{word-spacing:10.329312pt;}
.ws139{word-spacing:13.221056pt;}
.ws13a{word-spacing:13.226400pt;}
.ws9f{word-spacing:16.395392pt;}
.ws9e{word-spacing:16.507616pt;}
.wsdd{word-spacing:17.622909pt;}
.wsde{word-spacing:17.638620pt;}
.ws1{word-spacing:19.715148pt;}
._27{margin-left:-21.328077pt;}
._24{margin-left:-18.393459pt;}
._23{margin-left:-15.408912pt;}
._f{margin-left:-7.460013pt;}
._6{margin-left:-5.897859pt;}
._1{margin-left:-4.128490pt;}
._8{margin-left:-3.145533pt;}
._2{margin-left:-2.045648pt;}
._7{margin-left:-1.105187pt;}
._1a{width:1.174656pt;}
._4{width:2.665677pt;}
._26{width:4.542858pt;}
._0{width:9.670336pt;}
._13{width:10.764927pt;}
._9{width:12.412102pt;}
._19{width:14.122985pt;}
._e{width:15.392851pt;}
._b{width:16.460818pt;}
._d{width:17.401312pt;}
._3{width:19.343872pt;}
._14{width:21.025059pt;}
._18{width:22.093065pt;}
._10{width:23.304428pt;}
._a{width:24.840055pt;}
._15{width:26.566933pt;}
._c{width:27.512707pt;}
._16{width:29.223627pt;}
._1d{width:31.540245pt;}
._21{width:32.464736pt;}
._17{width:33.463712pt;}
._1e{width:35.169264pt;}
._5{width:48.342434pt;}
._25{width:54.993920pt;}
._22{width:78.904320pt;}
._11{width:1528.711733pt;}
._1c{width:1834.846720pt;}
._1f{width:1851.194016pt;}
._1b{width:1873.078368pt;}
._20{width:2216.605067pt;}
._12{width:2237.858400pt;}
.fs10{font-size:28.851200pt;}
.fs4{font-size:31.880533pt;}
.fs9{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fsd{font-size:41.708800pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:42.560000pt;}
.fsf{font-size:47.040000pt;}
.fsc{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fse{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fs8{font-size:53.440000pt;}
.fs11{font-size:55.365867pt;}
.fs6{font-size:63.761067pt;}
.fsb{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.y1f4{bottom:-657.713360pt;}
.y1f3{bottom:-638.993328pt;}
.y1f2{bottom:-620.353456pt;}
.y1f1{bottom:-601.713584pt;}
.y1f0{bottom:-582.993552pt;}
.y1c5{bottom:-577.758288pt;}
.y1ef{bottom:-564.353680pt;}
.y1c4{bottom:-559.038256pt;}
.y1ee{bottom:-545.713808pt;}
.y1c3{bottom:-540.398384pt;}
.y1ed{bottom:-526.993776pt;}
.y1c2{bottom:-521.758512pt;}
.y1ec{bottom:-508.353904pt;}
.y1c1{bottom:-503.038480pt;}
.ye6{bottom:-492.878347pt;}
.y1eb{bottom:-489.714032pt;}
.y1c0{bottom:-484.398608pt;}
.ye5{bottom:-474.158315pt;}
.y1ea{bottom:-470.994000pt;}
.y1bf{bottom:-465.758736pt;}
.ye4{bottom:-455.518443pt;}
.y1e9{bottom:-452.354128pt;}
.y1be{bottom:-447.038704pt;}
.ye3{bottom:-436.878571pt;}
.y1e8{bottom:-433.714256pt;}
.y173{bottom:-429.117781pt;}
.y1bd{bottom:-428.398832pt;}
.ye2{bottom:-418.158539pt;}
.y1e7{bottom:-414.994224pt;}
.y172{bottom:-410.477909pt;}
.y1bc{bottom:-409.758960pt;}
.ye1{bottom:-399.518667pt;}
.y1e6{bottom:-396.354352pt;}
.y171{bottom:-391.838037pt;}
.y1bb{bottom:-391.038928pt;}
.ye0{bottom:-380.878795pt;}
.y1e5{bottom:-377.714480pt;}
.y170{bottom:-373.118005pt;}
.y1ba{bottom:-372.399056pt;}
.ydf{bottom:-362.158763pt;}
.y1e4{bottom:-358.994448pt;}
.y16e{bottom:-354.478133pt;}
.y16d{bottom:-354.478037pt;}
.y1b9{bottom:-353.759184pt;}
.y16f{bottom:-351.118267pt;}
.yde{bottom:-343.518891pt;}
.y1e3{bottom:-340.354576pt;}
.y16c{bottom:-335.838165pt;}
.y1b8{bottom:-335.039152pt;}
.ydd{bottom:-324.879019pt;}
.y1e2{bottom:-321.714704pt;}
.y16a{bottom:-317.118133pt;}
.y169{bottom:-317.117915pt;}
.y1b7{bottom:-316.399280pt;}
.y16b{bottom:-313.758267pt;}
.y12a{bottom:-308.161784pt;}
.ydc{bottom:-306.158987pt;}
.y1e1{bottom:-302.994672pt;}
.y168{bottom:-298.478043pt;}
.y1b6{bottom:-297.759408pt;}
.y129{bottom:-289.894709pt;}
.ydb{bottom:-287.519115pt;}
.y1e0{bottom:-284.354800pt;}
.y167{bottom:-279.838171pt;}
.y1b5{bottom:-279.039376pt;}
.y128{bottom:-271.627635pt;}
.yda{bottom:-268.879243pt;}
.y1df{bottom:-265.714928pt;}
.y166{bottom:-261.118139pt;}
.y1b4{bottom:-260.399504pt;}
.y127{bottom:-253.282004pt;}
.yd9{bottom:-250.159211pt;}
.y1de{bottom:-246.994896pt;}
.y164{bottom:-242.478267pt;}
.y163{bottom:-242.478171pt;}
.y1b3{bottom:-241.759632pt;}
.y165{bottom:-239.118133pt;}
.y126{bottom:-235.014929pt;}
.yd8{bottom:-231.519339pt;}
.y1dd{bottom:-228.355024pt;}
.y162{bottom:-223.838299pt;}
.y1b2{bottom:-223.039152pt;}
.y125{bottom:-216.747854pt;}
.yd7{bottom:-212.879467pt;}
.yd6{bottom:-212.879019pt;}
.y1dc{bottom:-209.715152pt;}
.y160{bottom:-205.118267pt;}
.y15f{bottom:-205.118139pt;}
.y1b1{bottom:-204.399280pt;}
.y161{bottom:-201.758267pt;}
.y124{bottom:-198.402223pt;}
.yd5{bottom:-194.158987pt;}
.y1db{bottom:-190.995120pt;}
.y15d{bottom:-186.478267pt;}
.y15c{bottom:-186.478139pt;}
.y1b0{bottom:-185.759408pt;}
.y15e{bottom:-183.118267pt;}
.y123{bottom:-180.135148pt;}
.yd4{bottom:-175.519115pt;}
.y1da{bottom:-172.355248pt;}
.y159{bottom:-167.838299pt;}
.y15a{bottom:-167.838267pt;}
.y1af{bottom:-167.039376pt;}
.y15b{bottom:-164.478267pt;}
.y122{bottom:-161.868074pt;}
.yd3{bottom:-156.879243pt;}
.y1d9{bottom:-153.715376pt;}
.y157{bottom:-149.118267pt;}
.y156{bottom:-149.118043pt;}
.y1ae{bottom:-148.399504pt;}
.y158{bottom:-145.758267pt;}
.y121{bottom:-143.522443pt;}
.yd2{bottom:-138.159211pt;}
.y1d8{bottom:-134.995344pt;}
.y155{bottom:-130.478171pt;}
.y1ad{bottom:-129.759632pt;}
.y120{bottom:-125.255368pt;}
.yd1{bottom:-119.519339pt;}
.y1d7{bottom:-116.355472pt;}
.y154{bottom:-111.838299pt;}
.y1ac{bottom:-111.039344pt;}
.yd0{bottom:-100.879467pt;}
.y1d6{bottom:-97.715600pt;}
.y153{bottom:-93.118267pt;}
.y1ab{bottom:-92.399472pt;}
.y11f{bottom:-91.700168pt;}
.ycf{bottom:-77.439600pt;}
.y1d5{bottom:-74.275600pt;}
.y1aa{bottom:-73.759600pt;}
.y11e{bottom:-73.353784pt;}
.y152{bottom:-58.877867pt;}
.y11d{bottom:-55.086976pt;}
.yce{bottom:-40.959200pt;}
.y151{bottom:-40.238267pt;}
.y1a9{bottom:-39.439200pt;}
.y1d4{bottom:-37.875600pt;}
.y11c{bottom:-36.820168pt;}
.ycd{bottom:-22.319600pt;}
.y150{bottom:-21.518267pt;}
.y1a8{bottom:-20.799600pt;}
.y1d3{bottom:-19.155600pt;}
.y11b{bottom:-18.474568pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:0.721056pt;}
.y14f{bottom:1.521733pt;}
.y1a7{bottom:2.240400pt;}
.y1d2{bottom:3.884400pt;}
.y11a{bottom:4.026859pt;}
.y40{bottom:40.818667pt;}
.y106{bottom:88.640000pt;}
.y15{bottom:89.120000pt;}
.y260{bottom:89.737333pt;}
.y3f{bottom:90.856000pt;}
.y14a{bottom:92.306667pt;}
.y199{bottom:93.688000pt;}
.y292{bottom:94.188000pt;}
.y149{bottom:94.733333pt;}
.y198{bottom:96.114667pt;}
.y200{bottom:97.316000pt;}
.yb3{bottom:102.117333pt;}
.y73{bottom:103.473333pt;}
.y83{bottom:103.857333pt;}
.y14{bottom:105.020000pt;}
.y232{bottom:105.365333pt;}
.y25f{bottom:106.760000pt;}
.ya7{bottom:106.953333pt;}
.y105{bottom:107.209333pt;}
.y3e{bottom:109.426667pt;}
.y291{bottom:111.210667pt;}
.y197{bottom:112.257333pt;}
.y148{bottom:113.302667pt;}
.y196{bottom:114.684000pt;}
.y1ff{bottom:115.885333pt;}
.yb2{bottom:120.688000pt;}
.y13{bottom:120.920000pt;}
.y72{bottom:122.042667pt;}
.y82{bottom:122.428000pt;}
.y231{bottom:122.697333pt;}
.y25e{bottom:123.782667pt;}
.ya6{bottom:125.522667pt;}
.y104{bottom:125.780000pt;}
.y3d{bottom:127.996000pt;}
.y290{bottom:128.233333pt;}
.y195{bottom:130.828000pt;}
.y147{bottom:131.873333pt;}
.y194{bottom:133.254667pt;}
.y1fe{bottom:134.456000pt;}
.y12{bottom:136.820000pt;}
.yb1{bottom:139.258667pt;}
.y230{bottom:140.030667pt;}
.y71{bottom:140.613333pt;}
.y25d{bottom:140.805333pt;}
.y81{bottom:140.998667pt;}
.y1cc{bottom:141.924000pt;}
.ya5{bottom:144.093333pt;}
.y103{bottom:144.350667pt;}
.y28f{bottom:145.256000pt;}
.y3c{bottom:146.566667pt;}
.y1cd{bottom:149.172000pt;}
.y146{bottom:150.444000pt;}
.y193{bottom:151.825333pt;}
.y11{bottom:152.721333pt;}
.y1fd{bottom:153.026667pt;}
.yb0{bottom:157.828000pt;}
.y70{bottom:159.184000pt;}
.y80{bottom:159.568000pt;}
.y28e{bottom:162.278667pt;}
.ya4{bottom:162.664000pt;}
.y102{bottom:162.920000pt;}
.y3b{bottom:165.137333pt;}
.y22f{bottom:165.332000pt;}
.y192{bottom:167.968000pt;}
.y10{bottom:168.621333pt;}
.y145{bottom:169.013333pt;}
.y191{bottom:170.394667pt;}
.y1fc{bottom:171.597333pt;}
.y25c{bottom:174.852000pt;}
.yaf{bottom:176.398667pt;}
.y6f{bottom:177.753333pt;}
.y7f{bottom:178.138667pt;}
.y28d{bottom:179.301333pt;}
.y101{bottom:181.490667pt;}
.y3a{bottom:183.706667pt;}
.yf{bottom:184.521333pt;}
.ya3{bottom:185.218667pt;}
.y190{bottom:186.538667pt;}
.y144{bottom:187.584000pt;}
.y18f{bottom:188.965333pt;}
.y1fb{bottom:190.166667pt;}
.y22e{bottom:190.634667pt;}
.y25b{bottom:191.874667pt;}
.yae{bottom:194.969333pt;}
.y6e{bottom:196.324000pt;}
.y7e{bottom:196.709333pt;}
.y100{bottom:200.061333pt;}
.ye{bottom:200.422667pt;}
.y39{bottom:202.277333pt;}
.y18e{bottom:205.109333pt;}
.y143{bottom:206.154667pt;}
.y18d{bottom:207.536000pt;}
.y1fa{bottom:208.737333pt;}
.y25a{bottom:208.897333pt;}
.y28c{bottom:213.346667pt;}
.yad{bottom:213.540000pt;}
.y6d{bottom:214.894667pt;}
.y7d{bottom:215.280000pt;}
.y22d{bottom:215.937333pt;}
.ya2{bottom:216.634667pt;}
.yff{bottom:218.632000pt;}
.y38{bottom:220.848000pt;}
.ycb{bottom:220.960656pt;}
.y18c{bottom:223.678667pt;}
.yd{bottom:224.293333pt;}
.y142{bottom:224.724000pt;}
.y259{bottom:225.920000pt;}
.y18b{bottom:226.105333pt;}
.y1f9{bottom:227.308000pt;}
.y28b{bottom:230.369333pt;}
.yac{bottom:232.109333pt;}
.y22c{bottom:233.269333pt;}
.y6c{bottom:233.464000pt;}
.y7c{bottom:233.849333pt;}
.ya1{bottom:235.205333pt;}
.yfe{bottom:237.201333pt;}
.y37{bottom:239.417333pt;}
.yca{bottom:239.600528pt;}
.yc{bottom:240.193333pt;}
.y18a{bottom:242.249333pt;}
.y258{bottom:242.942667pt;}
.y141{bottom:243.294667pt;}
.y189{bottom:244.676000pt;}
.y1f8{bottom:245.877333pt;}
.y28a{bottom:247.392000pt;}
.y22b{bottom:250.601333pt;}
.yaa{bottom:250.680000pt;}
.y6b{bottom:252.034667pt;}
.ya0{bottom:253.774667pt;}
.yab{bottom:255.501333pt;}
.yfd{bottom:255.772000pt;}
.yb{bottom:256.093333pt;}
.y7b{bottom:256.405333pt;}
.y36{bottom:257.988000pt;}
.yc9{bottom:258.240400pt;}
.yc7{bottom:258.240496pt;}
.y257{bottom:259.965333pt;}
.y188{bottom:260.820000pt;}
.yc8{bottom:261.600400pt;}
.y140{bottom:261.865333pt;}
.y187{bottom:263.246667pt;}
.y289{bottom:264.414667pt;}
.y22a{bottom:267.933333pt;}
.y1f7{bottom:268.433333pt;}
.y6a{bottom:270.605333pt;}
.y1ca{bottom:271.916000pt;}
.ya{bottom:271.994667pt;}
.y9f{bottom:272.345333pt;}
.ya9{bottom:273.234667pt;}
.yfc{bottom:274.342667pt;}
.y35{bottom:276.558667pt;}
.yc6{bottom:276.960528pt;}
.y256{bottom:276.988000pt;}
.y1cb{bottom:279.164000pt;}
.y13f{bottom:280.434667pt;}
.y288{bottom:281.437333pt;}
.y186{bottom:281.816000pt;}
.y229{bottom:285.265333pt;}
.y7a{bottom:287.820000pt;}
.y9{bottom:287.894667pt;}
.y69{bottom:289.176000pt;}
.y9e{bottom:290.916000pt;}
.yfb{bottom:292.912000pt;}
.y255{bottom:294.010667pt;}
.yc5{bottom:295.600400pt;}
.yc3{bottom:295.600944pt;}
.y287{bottom:298.460000pt;}
.yc4{bottom:298.960400pt;}
.y13e{bottom:299.005333pt;}
.y34{bottom:299.113333pt;}
.y1f6{bottom:300.102667pt;}
.y185{bottom:300.386667pt;}
.y8{bottom:303.794667pt;}
.y79{bottom:306.390667pt;}
.y68{bottom:307.745333pt;}
.y1c8{bottom:309.056000pt;}
.y9d{bottom:309.485333pt;}
.y228{bottom:310.568000pt;}
.y254{bottom:311.033333pt;}
.yfa{bottom:311.482667pt;}
.y1a6{bottom:311.600520pt;}
.yc2{bottom:314.240816pt;}
.y286{bottom:315.482667pt;}
.y1c9{bottom:316.304000pt;}
.y1f5{bottom:317.198667pt;}
.y13d{bottom:317.576000pt;}
.y184{bottom:318.957333pt;}
.y1d1{bottom:319.164520pt;}
.y7{bottom:319.696000pt;}
.y1a5{bottom:320.160400pt;}
.y78{bottom:324.961333pt;}
.y67{bottom:326.316000pt;}
.y1d0{bottom:327.724400pt;}
.y9c{bottom:328.056000pt;}
.y227{bottom:328.365333pt;}
.yf9{bottom:330.053333pt;}
.y119{bottom:331.582530pt;}
.y285{bottom:332.506667pt;}
.yc1{bottom:332.960848pt;}
.y6{bottom:335.596000pt;}
.y13c{bottom:336.146667pt;}
.y183{bottom:337.528000pt;}
.y1cf{bottom:339.792000pt;}
.y77{bottom:343.530667pt;}
.y66{bottom:344.886667pt;}
.y253{bottom:345.078667pt;}
.y9b{bottom:346.626667pt;}
.yf8{bottom:348.622667pt;}
.y284{bottom:349.529333pt;}
.y118{bottom:349.849604pt;}
.yc0{bottom:351.600720pt;}
.y13b{bottom:354.716000pt;}
.y182{bottom:356.097333pt;}
.y5{bottom:356.809333pt;}
.y1c7{bottom:360.765333pt;}
.y76{bottom:362.101333pt;}
.y14e{bottom:362.801853pt;}
.y65{bottom:363.456000pt;}
.y9a{bottom:365.196000pt;}
.y283{bottom:366.552000pt;}
.yf7{bottom:367.193333pt;}
.y117{bottom:368.116679pt;}
.y33{bottom:369.524000pt;}
.ybf{bottom:370.240592pt;}
.y14d{bottom:371.361733pt;}
.y4{bottom:372.710667pt;}
.y13a{bottom:373.286667pt;}
.y181{bottom:374.668000pt;}
.y1c6{bottom:377.861333pt;}
.y252{bottom:379.124000pt;}
.y75{bottom:380.672000pt;}
.y99{bottom:381.340000pt;}
.y64{bottom:382.026667pt;}
.y282{bottom:383.574667pt;}
.y98{bottom:383.766667pt;}
.yf6{bottom:385.764000pt;}
.y116{bottom:386.462310pt;}
.y3{bottom:388.610667pt;}
.ybe{bottom:388.960624pt;}
.y139{bottom:391.857333pt;}
.y180{bottom:393.238667pt;}
.y251{bottom:396.146667pt;}
.y1a4{bottom:397.798667pt;}
.y226{bottom:399.241333pt;}
.y63{bottom:400.597333pt;}
.y97{bottom:402.337333pt;}
.y74{bottom:403.226667pt;}
.y32{bottom:404.034667pt;}
.yf5{bottom:404.333333pt;}
.y2{bottom:404.510667pt;}
.y115{bottom:404.729385pt;}
.ybd{bottom:407.600496pt;}
.y17f{bottom:409.381333pt;}
.y138{bottom:410.426667pt;}
.y17e{bottom:411.808000pt;}
.y250{bottom:413.169333pt;}
.y281{bottom:417.620000pt;}
.y225{bottom:417.812000pt;}
.y62{bottom:419.166667pt;}
.y96{bottom:420.906667pt;}
.y31{bottom:422.605333pt;}
.yf4{bottom:422.904000pt;}
.y114{bottom:422.996459pt;}
.y1{bottom:425.725333pt;}
.ybc{bottom:426.240368pt;}
.y17d{bottom:427.952000pt;}
.y137{bottom:428.997333pt;}
.y24f{bottom:430.192000pt;}
.y17c{bottom:430.378667pt;}
.y280{bottom:434.642667pt;}
.y224{bottom:436.382667pt;}
.y61{bottom:437.737333pt;}
.y95{bottom:439.477333pt;}
.y30{bottom:441.174667pt;}
.y113{bottom:441.342091pt;}
.yf3{bottom:441.474667pt;}
.ybb{bottom:444.960400pt;}
.y17b{bottom:446.522667pt;}
.y24e{bottom:447.214667pt;}
.y136{bottom:447.568000pt;}
.y17a{bottom:448.949333pt;}
.y27f{bottom:451.665333pt;}
.y223{bottom:454.953333pt;}
.y60{bottom:456.308000pt;}
.y94{bottom:458.048000pt;}
.y112{bottom:459.609165pt;}
.y2f{bottom:459.745333pt;}
.yf2{bottom:460.045333pt;}
.y24d{bottom:464.237333pt;}
.y135{bottom:466.137333pt;}
.y179{bottom:467.518667pt;}
.y27e{bottom:468.688000pt;}
.y222{bottom:473.522667pt;}
.y5f{bottom:474.877333pt;}
.yf1{bottom:476.188000pt;}
.y93{bottom:476.617333pt;}
.y111{bottom:477.876240pt;}
.y2e{bottom:478.316000pt;}
.yf0{bottom:478.614667pt;}
.y24c{bottom:481.260000pt;}
.y134{bottom:484.708000pt;}
.y27d{bottom:485.710667pt;}
.y178{bottom:486.089333pt;}
.y221{bottom:492.093333pt;}
.y5e{bottom:493.448000pt;}
.yba{bottom:494.880520pt;}
.y92{bottom:495.188000pt;}
.y110{bottom:496.221871pt;}
.y2d{bottom:496.885333pt;}
.yef{bottom:497.185333pt;}
.y24b{bottom:498.282667pt;}
.y27c{bottom:502.733333pt;}
.y133{bottom:503.278667pt;}
.yb9{bottom:503.440400pt;}
.y177{bottom:504.660000pt;}
.y220{bottom:510.664000pt;}
.y5d{bottom:512.018667pt;}
.y91{bottom:513.758667pt;}
.y10f{bottom:514.488946pt;}
.y24a{bottom:515.306667pt;}
.y2c{bottom:515.456000pt;}
.yee{bottom:515.756000pt;}
.y27b{bottom:519.756000pt;}
.y132{bottom:521.848000pt;}
.y21f{bottom:529.233333pt;}
.y5c{bottom:530.589333pt;}
.y90{bottom:532.329333pt;}
.y10e{bottom:532.756020pt;}
.y2b{bottom:534.026667pt;}
.yed{bottom:534.325333pt;}
.y176{bottom:536.329333pt;}
.y27a{bottom:536.778667pt;}
.y131{bottom:540.418667pt;}
.y21e{bottom:547.804000pt;}
.y5b{bottom:549.158667pt;}
.y249{bottom:549.352000pt;}
.y8f{bottom:550.898667pt;}
.y10d{bottom:551.101652pt;}
.y2a{bottom:552.596000pt;}
.yec{bottom:552.896000pt;}
.y175{bottom:553.425333pt;}
.y279{bottom:553.801333pt;}
.y206{bottom:565.302667pt;}
.y21d{bottom:566.374667pt;}
.y5a{bottom:567.729333pt;}
.y10c{bottom:569.368726pt;}
.y8e{bottom:569.469333pt;}
.y174{bottom:570.520000pt;}
.y278{bottom:570.824000pt;}
.y29{bottom:571.166667pt;}
.yeb{bottom:571.466667pt;}
.y130{bottom:572.088000pt;}
.y207{bottom:572.550667pt;}
.y248{bottom:583.397333pt;}
.y204{bottom:583.873333pt;}
.y21c{bottom:584.944000pt;}
.y59{bottom:586.300000pt;}
.y12f{bottom:586.853333pt;}
.y10b{bottom:587.635801pt;}
.y277{bottom:587.846667pt;}
.y8d{bottom:588.040000pt;}
.y12e{bottom:589.184000pt;}
.y28{bottom:589.737333pt;}
.yea{bottom:590.036000pt;}
.y14c{bottom:590.457333pt;}
.y205{bottom:591.121333pt;}
.y247{bottom:600.420000pt;}
.y202{bottom:602.442667pt;}
.y21b{bottom:603.514667pt;}
.y58{bottom:604.869333pt;}
.y10a{bottom:605.981432pt;}
.y12d{bottom:606.280000pt;}
.y8c{bottom:606.609333pt;}
.y27{bottom:608.308000pt;}
.y203{bottom:609.692000pt;}
.ye9{bottom:612.592000pt;}
.y246{bottom:617.442667pt;}
.ya8{bottom:621.013333pt;}
.y276{bottom:621.892000pt;}
.y21a{bottom:622.085333pt;}
.y12c{bottom:623.376000pt;}
.y57{bottom:623.440000pt;}
.y8b{bottom:625.180000pt;}
.y26{bottom:626.877333pt;}
.y201{bottom:628.261333pt;}
.y245{bottom:634.465333pt;}
.y275{bottom:638.914667pt;}
.y12b{bottom:640.472000pt;}
.y219{bottom:640.654667pt;}
.y56{bottom:642.010667pt;}
.ye8{bottom:643.528000pt;}
.y8a{bottom:643.750667pt;}
.y25{bottom:645.448000pt;}
.y244{bottom:651.488000pt;}
.y109{bottom:654.903150pt;}
.y274{bottom:655.937333pt;}
.y218{bottom:659.225333pt;}
.y55{bottom:660.580000pt;}
.ye7{bottom:660.622667pt;}
.y89{bottom:662.320000pt;}
.y107{bottom:663.065333pt;}
.y108{bottom:663.291832pt;}
.y24{bottom:664.018667pt;}
.y243{bottom:668.510667pt;}
.y273{bottom:672.961333pt;}
.y217{bottom:677.796000pt;}
.y54{bottom:679.150667pt;}
.y88{bottom:680.890667pt;}
.y23{bottom:682.588000pt;}
.yb8{bottom:683.217333pt;}
.y242{bottom:685.533333pt;}
.y272{bottom:689.984000pt;}
.y216{bottom:696.365333pt;}
.y53{bottom:697.721333pt;}
.y87{bottom:699.461333pt;}
.y241{bottom:702.556000pt;}
.y296{bottom:702.801333pt;}
.y271{bottom:707.006667pt;}
.y215{bottom:714.936000pt;}
.y52{bottom:716.290667pt;}
.y86{bottom:718.030667pt;}
.y22{bottom:718.161333pt;}
.y240{bottom:719.578667pt;}
.y295{bottom:719.824000pt;}
.y270{bottom:724.029333pt;}
.y1a2{bottom:732.434667pt;}
.y214{bottom:733.506667pt;}
.y51{bottom:734.861333pt;}
.y21{bottom:736.365333pt;}
.y85{bottom:736.601333pt;}
.y294{bottom:736.848000pt;}
.y1a3{bottom:739.684000pt;}
.y26f{bottom:741.052000pt;}
.y20{bottom:746.854667pt;}
.y213{bottom:752.077333pt;}
.y50{bottom:753.432000pt;}
.y23f{bottom:753.624000pt;}
.y26e{bottom:758.074667pt;}
.y84{bottom:759.157333pt;}
.y1f{bottom:765.057333pt;}
.y212{bottom:770.646667pt;}
.y4f{bottom:772.002667pt;}
.y26d{bottom:775.097333pt;}
.y1e{bottom:775.546667pt;}
.y23e{bottom:787.669333pt;}
.y1a0{bottom:788.145333pt;}
.y211{bottom:789.217333pt;}
.y4e{bottom:790.572000pt;}
.y26c{bottom:792.120000pt;}
.y1d{bottom:793.750667pt;}
.y1a1{bottom:795.394667pt;}
.y1c{bottom:804.238667pt;}
.y23d{bottom:804.692000pt;}
.y19e{bottom:806.716000pt;}
.y210{bottom:807.788000pt;}
.y4d{bottom:809.142667pt;}
.y19f{bottom:813.964000pt;}
.y23c{bottom:821.714667pt;}
.y1b{bottom:822.442667pt;}
.y19c{bottom:825.286667pt;}
.y26b{bottom:826.165333pt;}
.y20f{bottom:826.357333pt;}
.y4c{bottom:827.713333pt;}
.y19d{bottom:832.534667pt;}
.y23b{bottom:838.737333pt;}
.y26a{bottom:843.188000pt;}
.y20e{bottom:844.928000pt;}
.y4b{bottom:846.282667pt;}
.y23a{bottom:855.761333pt;}
.y269{bottom:860.210667pt;}
.y1a{bottom:862.156000pt;}
.y20d{bottom:863.498667pt;}
.y4a{bottom:864.853333pt;}
.y239{bottom:872.784000pt;}
.y268{bottom:877.233333pt;}
.y20c{bottom:882.068000pt;}
.y49{bottom:883.424000pt;}
.y238{bottom:889.806667pt;}
.y267{bottom:894.256000pt;}
.y19{bottom:896.665333pt;}
.y20b{bottom:900.638667pt;}
.y48{bottom:901.993333pt;}
.y237{bottom:906.829333pt;}
.y266{bottom:911.278667pt;}
.y20a{bottom:919.209333pt;}
.y47{bottom:920.564000pt;}
.y236{bottom:923.852000pt;}
.y18{bottom:924.521333pt;}
.yb7{bottom:925.385333pt;}
.y265{bottom:928.301333pt;}
.y209{bottom:937.778667pt;}
.y46{bottom:939.134667pt;}
.y235{bottom:940.874667pt;}
.yb6{bottom:943.956000pt;}
.y264{bottom:945.324000pt;}
.y17{bottom:952.377333pt;}
.y14b{bottom:955.278667pt;}
.y45{bottom:957.704000pt;}
.y234{bottom:957.897333pt;}
.y208{bottom:960.334667pt;}
.y263{bottom:962.346667pt;}
.yb5{bottom:962.526667pt;}
.y1ce{bottom:973.848000pt;}
.y44{bottom:976.274667pt;}
.y293{bottom:977.038667pt;}
.y233{bottom:978.905333pt;}
.y262{bottom:979.369333pt;}
.y16{bottom:980.232000pt;}
.yb4{bottom:981.097333pt;}
.y19b{bottom:992.418667pt;}
.y43{bottom:994.845333pt;}
.y261{bottom:996.392000pt;}
.y19a{bottom:1010.989333pt;}
.y42{bottom:1013.414667pt;}
.y41{bottom:1066.841333pt;}
.h16{height:14.948784pt;}
.h6{height:27.672303pt;}
.he{height:28.578125pt;}
.h2{height:32.284045pt;}
.ha{height:35.051460pt;}
.h1a{height:35.052646pt;}
.h7{height:36.896250pt;}
.h13{height:37.248728pt;}
.hc{height:38.008906pt;}
.h3{height:38.947124pt;}
.h11{height:41.508454pt;}
.h15{height:42.009844pt;}
.hf{height:42.867188pt;}
.h9{height:46.099251pt;}
.h8{height:46.120196pt;}
.h14{height:46.770959pt;}
.h10{height:47.125000pt;}
.hd{height:47.725469pt;}
.h5{height:48.481423pt;}
.h4{height:69.148877pt;}
.hb{height:202.481333pt;}
.h18{height:279.865333pt;}
.h19{height:289.174667pt;}
.h12{height:314.752480pt;}
.h17{height:331.648000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:290.920000pt;}
.w4{width:343.285333pt;}
.w2{width:639.441867pt;}
.w6{width:679.007200pt;}
.w3{width:688.805021pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x71{left:-172.517333pt;}
.xb5{left:-170.772000pt;}
.x53{left:-29.384800pt;}
.xc6{left:-9.602133pt;}
.x0{left:0.000000pt;}
.x73{left:1.322667pt;}
.x65{left:3.134301pt;}
.x79{left:21.242667pt;}
.x7a{left:26.922667pt;}
.x74{left:29.642667pt;}
.xb7{left:31.388000pt;}
.x2{left:46.689333pt;}
.x1{left:47.621333pt;}
.x7b{left:49.322667pt;}
.x64{left:52.260419pt;}
.x7c{left:53.322667pt;}
.xc5{left:57.158133pt;}
.xd3{left:75.914667pt;}
.x52{left:76.940800pt;}
.x7d{left:109.482667pt;}
.x7e{left:115.402667pt;}
.x87{left:118.362667pt;}
.x88{left:124.282667pt;}
.x7f{left:137.802667pt;}
.x80{left:141.802667pt;}
.x54{left:144.455200pt;}
.x89{left:146.682667pt;}
.x8a{left:150.682667pt;}
.x5a{left:156.215200pt;}
.x5b{left:160.215200pt;}
.xc7{left:164.237867pt;}
.x5e{left:172.775200pt;}
.x55{left:178.295200pt;}
.x56{left:184.615200pt;}
.xc8{left:192.557867pt;}
.x66{left:201.251619pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.x5f{left:225.415200pt;}
.x4{left:239.924000pt;}
.x45{left:242.138667pt;}
.x6{left:250.204000pt;}
.x13{left:251.818667pt;}
.x46{left:255.422667pt;}
.x14{left:258.460000pt;}
.x68{left:259.573333pt;}
.x37{left:260.649333pt;}
.x81{left:264.282667pt;}
.x69{left:267.884000pt;}
.x38{left:269.829333pt;}
.x9e{left:277.498667pt;}
.x57{left:279.175200pt;}
.x77{left:280.842667pt;}
.x6a{left:281.837333pt;}
.x49{left:283.653333pt;}
.x4e{left:284.668000pt;}
.x82{left:286.682667pt;}
.xb6{left:289.868000pt;}
.x7{left:291.153333pt;}
.x4f{left:293.672000pt;}
.x98{left:294.584000pt;}
.x8{left:297.796000pt;}
.x1b{left:299.892000pt;}
.x8d{left:302.656000pt;}
.x1d{left:304.476000pt;}
.xb0{left:310.357333pt;}
.x1c{left:313.176000pt;}
.xb1{left:315.894667pt;}
.x1e{left:317.760000pt;}
.x39{left:321.477333pt;}
.xa2{left:325.965333pt;}
.xa1{left:329.030667pt;}
.xcb{left:332.841333pt;}
.x3a{left:334.761333pt;}
.xbc{left:336.313333pt;}
.x9c{left:337.389333pt;}
.x72{left:341.722667pt;}
.x8e{left:343.709333pt;}
.xbd{left:345.253333pt;}
.x9d{left:347.245333pt;}
.xc9{left:348.954667pt;}
.x8f{left:354.634667pt;}
.x27{left:360.585333pt;}
.xca{left:362.238667pt;}
.xcf{left:363.826667pt;}
.xd0{left:369.362667pt;}
.x6d{left:370.318667pt;}
.xcd{left:371.868000pt;}
.xaa{left:372.962667pt;}
.x28{left:373.869333pt;}
.xbe{left:376.584000pt;}
.x6e{left:379.012000pt;}
.xab{left:381.784000pt;}
.x83{left:382.842667pt;}
.x19{left:388.489333pt;}
.x84{left:389.642667pt;}
.x90{left:391.980000pt;}
.x1f{left:394.941333pt;}
.xce{left:397.921333pt;}
.x1a{left:401.773333pt;}
.x6b{left:403.333333pt;}
.x20{left:408.224000pt;}
.x85{left:412.042667pt;}
.x3c{left:413.536000pt;}
.x86{left:416.042667pt;}
.x78{left:417.882667pt;}
.x51{left:420.970667pt;}
.x2f{left:422.178667pt;}
.x3d{left:426.818667pt;}
.xb2{left:430.293333pt;}
.xd{left:432.994667pt;}
.x5c{left:434.935200pt;}
.xe{left:439.636000pt;}
.x23{left:444.092000pt;}
.x42{left:446.548000pt;}
.x3e{left:448.757333pt;}
.x24{left:457.376000pt;}
.x99{left:458.849333pt;}
.x75{left:459.882667pt;}
.x3f{left:462.040000pt;}
.xb3{left:463.898667pt;}
.x76{left:465.402533pt;}
.x9a{left:467.660000pt;}
.xb4{left:469.434667pt;}
.x58{left:473.095200pt;}
.x59{left:477.095200pt;}
.x35{left:478.842667pt;}
.x50{left:483.838667pt;}
.x6f{left:488.489333pt;}
.x36{left:492.126667pt;}
.x43{left:493.237333pt;}
.x40{left:495.144000pt;}
.x70{left:497.182667pt;}
.x9f{left:501.037333pt;}
.x44{left:502.661333pt;}
.xc3{left:504.113333pt;}
.xac{left:505.358667pt;}
.x41{left:508.426667pt;}
.xa0{left:510.133333pt;}
.x91{left:514.089333pt;}
.xa5{left:516.352000pt;}
.x92{left:523.108000pt;}
.xa6{left:525.392000pt;}
.x4a{left:531.446667pt;}
.xa3{left:533.441333pt;}
.xad{left:540.144000pt;}
.xa4{left:542.478667pt;}
.x4b{left:544.730667pt;}
.xae{left:545.681333pt;}
.xc4{left:550.078667pt;}
.x30{left:555.228000pt;}
.xd2{left:560.490667pt;}
.x93{left:562.514667pt;}
.x31{left:568.510667pt;}
.x94{left:573.441333pt;}
.x32{left:575.040000pt;}
.x21{left:576.225333pt;}
.x25{left:578.538667pt;}
.x47{left:584.105333pt;}
.x6c{left:586.202667pt;}
.x33{left:588.322667pt;}
.x22{left:589.508000pt;}
.x26{left:591.822667pt;}
.x48{left:593.696000pt;}
.xb8{left:594.957333pt;}
.x96{left:599.890667pt;}
.xb9{left:604.092000pt;}
.x97{left:608.933333pt;}
.xa9{left:610.672000pt;}
.xb{left:615.896000pt;}
.xd1{left:620.881333pt;}
.xc{left:622.537333pt;}
.x95{left:624.717333pt;}
.x60{left:628.935200pt;}
.xba{left:630.757333pt;}
.x61{left:632.935200pt;}
.xbb{left:636.469333pt;}
.x5d{left:638.455255pt;}
.x34{left:641.536000pt;}
.xbf{left:646.597333pt;}
.x15{left:648.910667pt;}
.x3b{left:650.696000pt;}
.x17{left:654.720000pt;}
.x2b{left:657.398667pt;}
.x29{left:660.866667pt;}
.x16{left:662.194667pt;}
.x2c{left:664.693333pt;}
.x18{left:668.004000pt;}
.x9{left:670.970667pt;}
.xcc{left:672.565333pt;}
.x2a{left:674.150667pt;}
.x9b{left:676.294667pt;}
.xa{left:677.612000pt;}
.xaf{left:680.240000pt;}
.xc0{left:681.165333pt;}
.xf{left:682.304000pt;}
.x67{left:687.176489pt;}
.x10{left:688.946667pt;}
.x11{left:692.317333pt;}
.x12{left:698.958667pt;}
.x62{left:702.009333pt;}
.xa7{left:703.638667pt;}
.x8b{left:705.788000pt;}
.x4c{left:707.822667pt;}
.x63{left:711.198667pt;}
.xa8{left:712.678667pt;}
.x8c{left:714.210667pt;}
.x4d{left:716.844000pt;}
.x2d{left:726.865333pt;}
.xc1{left:728.020000pt;}
.x2e{left:740.149333pt;}
.xc2{left:741.304000pt;}
}




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