
    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_2cac1d1430c0f20bfc58f933.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.911000;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_009c3bed44c421aed97d418f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_6d8abea62a5ed1b1b3954cd2.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.916000;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_db3ea309d4e91019414c4b32.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.994000;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_4b85129e5a0e231e231a44e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938000;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_3c743bd998d08af7b2f5f476.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.793945;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_672421c7f32ec16f7c378117.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.991638;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_5246fbc18ec8ed9a203c5474.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938000;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_edaac81f4a97185f1c13239f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938000;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_9b56d0755a0bad6226b05f7a.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.840820;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_b488bfa619649aa7459c133d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.839844;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_0cecc349a8a119864485f5f2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.839844;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;}
.md{transform:matrix(0.000000,-0.095437,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.095437,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.095437,0.250000,0.000000,0,0);}
.m16{transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249850,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250025,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.000000,-0.250110,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250110,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250110,0.250000,0.000000,0,0);}
.m19{transform:matrix(0.000000,-0.250113,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250113,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250113,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.282580,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.282580,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.282580,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.284519,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.284519,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.284519,0.250000,0.000000,0,0);}
.m13{transform:matrix(0.136697,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136697,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136697,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.180050,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200060,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.200063,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200063,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200063,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.200081,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200081,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200081,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.200089,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200089,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200089,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.219671,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219671,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219671,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219700,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.219712,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.219712,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.219712,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.221203,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221203,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221203,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.221204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.221204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.221204,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.238850,0.000000,-0.073827,0.238850,0,0);-ms-transform:matrix(0.238850,0.000000,-0.073827,0.238850,0,0);-webkit-transform:matrix(0.238850,0.000000,-0.073827,0.238850,0,0);}
.m18{transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249917,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249919,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249919,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);}
.m1b{transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250027,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250039,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250045,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250182,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250200,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.654960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654960,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.654979,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.654979,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.654979,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.655069,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.655069,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.655069,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-24.484868px;}
.v6{vertical-align:-18.000000px;}
.vb{vertical-align:-16.560000px;}
.v5{vertical-align:-9.432000px;}
.va{vertical-align:-4.320000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:9.359400px;}
.v4{vertical-align:16.560000px;}
.v9{vertical-align:17.977771px;}
.v7{vertical-align:23.742600px;}
.v3{vertical-align:27.354171px;}
.v1{vertical-align:31.680000px;}
.ls3d{letter-spacing:-4.793531px;}
.ls91{letter-spacing:-2.562931px;}
.ls37{letter-spacing:-2.366847px;}
.ls39{letter-spacing:-1.807580px;}
.ls93{letter-spacing:-1.044167px;}
.ls92{letter-spacing:-1.044054px;}
.ls98{letter-spacing:-0.961200px;}
.ls3f{letter-spacing:-0.598119px;}
.ls3e{letter-spacing:-0.537125px;}
.ls69{letter-spacing:-0.412172px;}
.ls38{letter-spacing:-0.406084px;}
.ls90{letter-spacing:-0.324914px;}
.ls8d{letter-spacing:-0.299920px;}
.ls8e{letter-spacing:-0.294366px;}
.ls97{letter-spacing:-0.243000px;}
.ls6a{letter-spacing:-0.239513px;}
.ls3c{letter-spacing:-0.226800px;}
.ls6d{letter-spacing:-0.221400px;}
.ls33{letter-spacing:-0.216000px;}
.ls74{letter-spacing:-0.210600px;}
.ls36{letter-spacing:-0.205200px;}
.ls3b{letter-spacing:-0.199800px;}
.ls6b{letter-spacing:-0.198701px;}
.ls2e{letter-spacing:-0.194400px;}
.ls83{letter-spacing:-0.189000px;}
.ls87{letter-spacing:-0.187041px;}
.ls32{letter-spacing:-0.183600px;}
.ls66{letter-spacing:-0.151200px;}
.ls3a{letter-spacing:-0.146882px;}
.ls84{letter-spacing:-0.145800px;}
.ls40{letter-spacing:-0.140898px;}
.ls68{letter-spacing:-0.138099px;}
.ls64{letter-spacing:-0.135000px;}
.ls2d{letter-spacing:-0.124200px;}
.ls72{letter-spacing:-0.118800px;}
.ls94{letter-spacing:-0.113400px;}
.ls77{letter-spacing:-0.108000px;}
.ls27{letter-spacing:-0.102600px;}
.ls29{letter-spacing:-0.097200px;}
.ls34{letter-spacing:-0.091800px;}
.ls44{letter-spacing:-0.086400px;}
.ls96{letter-spacing:-0.081000px;}
.ls28{letter-spacing:-0.070200px;}
.ls25{letter-spacing:-0.064800px;}
.ls30{letter-spacing:-0.059400px;}
.ls35{letter-spacing:-0.054000px;}
.ls26{letter-spacing:-0.050400px;}
.ls6e{letter-spacing:-0.048600px;}
.ls24{letter-spacing:-0.043200px;}
.ls73{letter-spacing:-0.039600px;}
.ls95{letter-spacing:-0.037800px;}
.ls76{letter-spacing:-0.032400px;}
.ls88{letter-spacing:-0.027000px;}
.ls31{letter-spacing:-0.021600px;}
.ls42{letter-spacing:-0.016200px;}
.ls21{letter-spacing:-0.014400px;}
.ls22{letter-spacing:-0.007200px;}
.ls23{letter-spacing:0.000000px;}
.ls6f{letter-spacing:0.002215px;}
.ls70{letter-spacing:0.002726px;}
.ls5b{letter-spacing:0.005400px;}
.lsb{letter-spacing:0.010800px;}
.ls48{letter-spacing:0.016200px;}
.ls1d{letter-spacing:0.043200px;}
.lsd{letter-spacing:0.048600px;}
.ls82{letter-spacing:0.059400px;}
.ls2{letter-spacing:0.064800px;}
.ls7a{letter-spacing:0.070200px;}
.ls5f{letter-spacing:0.072000px;}
.ls10{letter-spacing:0.081000px;}
.ls8c{letter-spacing:0.091800px;}
.ls71{letter-spacing:0.097200px;}
.ls4c{letter-spacing:0.102600px;}
.ls8f{letter-spacing:0.105528px;}
.ls5e{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.113400px;}
.ls67{letter-spacing:0.118800px;}
.ls4b{letter-spacing:0.124200px;}
.ls7b{letter-spacing:0.128400px;}
.ls47{letter-spacing:0.129600px;}
.ls46{letter-spacing:0.135000px;}
.ls4a{letter-spacing:0.140400px;}
.ls7d{letter-spacing:0.141600px;}
.ls9{letter-spacing:0.151200px;}
.ls57{letter-spacing:0.156600px;}
.ls3{letter-spacing:0.162000px;}
.ls7e{letter-spacing:0.164400px;}
.ls19{letter-spacing:0.167400px;}
.ls4{letter-spacing:0.172800px;}
.ls0{letter-spacing:0.173664px;}
.ls1e{letter-spacing:0.178200px;}
.ls6c{letter-spacing:0.179996px;}
.ls52{letter-spacing:0.183600px;}
.ls7c{letter-spacing:0.189000px;}
.ls59{letter-spacing:0.194400px;}
.lsa{letter-spacing:0.199800px;}
.ls89{letter-spacing:0.202724px;}
.ls43{letter-spacing:0.205200px;}
.ls13{letter-spacing:0.210600px;}
.lse{letter-spacing:0.216000px;}
.ls1b{letter-spacing:0.216143px;}
.ls8{letter-spacing:0.221400px;}
.ls15{letter-spacing:0.226800px;}
.ls1f{letter-spacing:0.232200px;}
.ls60{letter-spacing:0.234000px;}
.ls2b{letter-spacing:0.237600px;}
.ls12{letter-spacing:0.243000px;}
.ls7{letter-spacing:0.248400px;}
.lsc{letter-spacing:0.253800px;}
.ls11{letter-spacing:0.259200px;}
.ls6{letter-spacing:0.264600px;}
.ls41{letter-spacing:0.270000px;}
.ls18{letter-spacing:0.275400px;}
.ls1{letter-spacing:0.279792px;}
.ls5{letter-spacing:0.280800px;}
.ls2a{letter-spacing:0.286200px;}
.ls14{letter-spacing:0.291600px;}
.ls81{letter-spacing:0.297000px;}
.ls20{letter-spacing:0.302400px;}
.ls65{letter-spacing:0.307800px;}
.ls45{letter-spacing:0.313200px;}
.ls63{letter-spacing:0.318600px;}
.ls4d{letter-spacing:0.324000px;}
.ls5d{letter-spacing:0.329400px;}
.ls80{letter-spacing:0.352456px;}
.ls2c{letter-spacing:0.361800px;}
.ls5c{letter-spacing:0.372600px;}
.ls49{letter-spacing:0.378000px;}
.ls2f{letter-spacing:0.739800px;}
.ls56{letter-spacing:0.756000px;}
.ls99{letter-spacing:0.928800px;}
.ls51{letter-spacing:3.756293px;}
.ls17{letter-spacing:5.267531px;}
.ls1c{letter-spacing:6.145163px;}
.ls58{letter-spacing:19.332000px;}
.ls78{letter-spacing:19.440000px;}
.ls85{letter-spacing:19.618200px;}
.ls4e{letter-spacing:43.004476px;}
.ls4f{letter-spacing:43.279256px;}
.ls50{letter-spacing:44.103596px;}
.ls1a{letter-spacing:65.316695px;}
.ls8b{letter-spacing:107.668025px;}
.ls8a{letter-spacing:109.827792px;}
.ls62{letter-spacing:118.385948px;}
.ls53{letter-spacing:119.766140px;}
.ls5a{letter-spacing:121.700534px;}
.ls54{letter-spacing:127.677446px;}
.ls16{letter-spacing:180.923157px;}
.ls55{letter-spacing:233.513520px;}
.ls79{letter-spacing:293.195338px;}
.ls61{letter-spacing:500.717681px;}
.ls75{letter-spacing:586.892747px;}
.ls7f{letter-spacing:604.296000px;}
.ls86{letter-spacing:972.939528px;}
.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;}
}
.ws7b{word-spacing:-18.000000px;}
.ws70{word-spacing:-17.978250px;}
.wscd{word-spacing:-17.962050px;}
.ws6b{word-spacing:-15.179696px;}
.ws62{word-spacing:-13.861800px;}
.ws75{word-spacing:-13.726800px;}
.ws6c{word-spacing:-13.662000px;}
.wscc{word-spacing:-13.635000px;}
.ws63{word-spacing:-13.618800px;}
.ws73{word-spacing:-13.516200px;}
.ws5b{word-spacing:-13.500000px;}
.ws6{word-spacing:-11.905671px;}
.wsf{word-spacing:-11.325137px;}
.ws6e{word-spacing:-10.487100px;}
.ws79{word-spacing:-10.477200px;}
.ws6a{word-spacing:-9.325245px;}
.ws74{word-spacing:-9.000000px;}
.ws76{word-spacing:-8.960400px;}
.ws10{word-spacing:-8.193097px;}
.ws7{word-spacing:-8.186446px;}
.ws2{word-spacing:-8.018650px;}
.ws12d{word-spacing:-7.825699px;}
.ws12e{word-spacing:-7.425805px;}
.ws12f{word-spacing:-7.395258px;}
.wsd7{word-spacing:-7.017951px;}
.ws68{word-spacing:-6.709487px;}
.ws133{word-spacing:-6.676004px;}
.ws132{word-spacing:-6.675283px;}
.ws1{word-spacing:-6.167309px;}
.ws9{word-spacing:-6.099347px;}
.wse{word-spacing:-5.396117px;}
.ws130{word-spacing:-5.156406px;}
.ws5{word-spacing:-4.830560px;}
.ws67{word-spacing:-2.541022px;}
.wsa4{word-spacing:-0.183600px;}
.ws151{word-spacing:-0.129600px;}
.ws177{word-spacing:-0.118800px;}
.wsa9{word-spacing:-0.113400px;}
.ws9b{word-spacing:-0.108000px;}
.ws9a{word-spacing:-0.102600px;}
.ws12{word-spacing:-0.101304px;}
.ws48{word-spacing:-0.097200px;}
.ws16d{word-spacing:-0.091800px;}
.ws92{word-spacing:-0.086400px;}
.wsf7{word-spacing:-0.075600px;}
.ws157{word-spacing:-0.070200px;}
.ws13{word-spacing:-0.064800px;}
.ws97{word-spacing:-0.059400px;}
.ws88{word-spacing:-0.054000px;}
.ws3e{word-spacing:-0.048600px;}
.ws14d{word-spacing:-0.043200px;}
.wsbc{word-spacing:-0.037800px;}
.wsc6{word-spacing:-0.032400px;}
.ws46{word-spacing:-0.027000px;}
.wse3{word-spacing:-0.021600px;}
.ws144{word-spacing:-0.016200px;}
.ws156{word-spacing:-0.010800px;}
.wsa3{word-spacing:-0.005400px;}
.ws16{word-spacing:0.000000px;}
.ws10b{word-spacing:0.002398px;}
.ws137{word-spacing:0.002777px;}
.ws11{word-spacing:0.004824px;}
.ws47{word-spacing:0.005400px;}
.ws15{word-spacing:0.007200px;}
.ws161{word-spacing:0.010800px;}
.ws14{word-spacing:0.014400px;}
.ws4d{word-spacing:0.016200px;}
.ws167{word-spacing:0.021600px;}
.wsa5{word-spacing:0.027000px;}
.ws9c{word-spacing:0.037800px;}
.ws17{word-spacing:0.043200px;}
.ws19{word-spacing:0.050400px;}
.ws18{word-spacing:0.064800px;}
.wsf6{word-spacing:0.081000px;}
.ws2e{word-spacing:0.167400px;}
.ws178{word-spacing:0.178200px;}
.wsaf{word-spacing:0.226800px;}
.ws41{word-spacing:0.232200px;}
.ws3f{word-spacing:0.237600px;}
.ws148{word-spacing:0.259200px;}
.wsb2{word-spacing:0.280800px;}
.ws179{word-spacing:0.286200px;}
.ws139{word-spacing:0.291600px;}
.wsbb{word-spacing:0.297000px;}
.ws15a{word-spacing:0.313200px;}
.ws38{word-spacing:0.361800px;}
.wsfb{word-spacing:0.372600px;}
.wsf0{word-spacing:0.383400px;}
.ws10a{word-spacing:0.388800px;}
.ws14c{word-spacing:0.421200px;}
.ws138{word-spacing:0.499867px;}
.ws136{word-spacing:0.505421px;}
.wsf5{word-spacing:0.583200px;}
.wsb6{word-spacing:0.626400px;}
.ws15f{word-spacing:0.648000px;}
.ws13f{word-spacing:0.658800px;}
.ws56{word-spacing:0.669600px;}
.ws160{word-spacing:0.680400px;}
.ws82{word-spacing:0.723600px;}
.ws51{word-spacing:0.750600px;}
.ws8{word-spacing:0.829415px;}
.ws140{word-spacing:0.939600px;}
.ws40{word-spacing:0.993600px;}
.ws114{word-spacing:1.333800px;}
.ws22{word-spacing:1.355400px;}
.ws2f{word-spacing:1.366200px;}
.ws7d{word-spacing:1.404000px;}
.wsb5{word-spacing:1.409400px;}
.ws27{word-spacing:1.468800px;}
.ws69{word-spacing:1.520983px;}
.wsf2{word-spacing:1.641600px;}
.ws145{word-spacing:1.701000px;}
.wsf1{word-spacing:1.809000px;}
.ws86{word-spacing:1.814400px;}
.ws4c{word-spacing:1.846800px;}
.ws57{word-spacing:2.035800px;}
.wsef{word-spacing:2.068200px;}
.ws119{word-spacing:2.073600px;}
.ws53{word-spacing:2.084400px;}
.ws104{word-spacing:2.122200px;}
.ws29{word-spacing:2.138400px;}
.wsb1{word-spacing:2.143800px;}
.wsdf{word-spacing:2.214000px;}
.ws24{word-spacing:2.532600px;}
.ws4b{word-spacing:2.538000px;}
.wsde{word-spacing:2.543400px;}
.ws162{word-spacing:2.786400px;}
.ws5a{word-spacing:2.802600px;}
.ws13b{word-spacing:2.808000px;}
.ws123{word-spacing:2.835000px;}
.wsfe{word-spacing:2.851200px;}
.ws2c{word-spacing:3.159000px;}
.ws2b{word-spacing:3.164400px;}
.ws103{word-spacing:3.250800px;}
.ws108{word-spacing:3.272400px;}
.wsa2{word-spacing:3.277800px;}
.wsa1{word-spacing:3.456000px;}
.ws3d{word-spacing:3.488400px;}
.ws9e{word-spacing:3.504600px;}
.ws91{word-spacing:3.515400px;}
.ws10e{word-spacing:3.526200px;}
.ws176{word-spacing:3.542400px;}
.ws58{word-spacing:3.558600px;}
.ws164{word-spacing:3.580200px;}
.ws10d{word-spacing:3.639600px;}
.ws9f{word-spacing:3.655800px;}
.wsa0{word-spacing:3.677400px;}
.ws30{word-spacing:3.839400px;}
.ws59{word-spacing:3.866400px;}
.ws142{word-spacing:3.963600px;}
.ws12a{word-spacing:3.990600px;}
.ws118{word-spacing:4.136400px;}
.ws16b{word-spacing:4.206600px;}
.ws127{word-spacing:4.239000px;}
.ws174{word-spacing:4.260600px;}
.ws102{word-spacing:4.271400px;}
.ws149{word-spacing:4.293000px;}
.ws16c{word-spacing:4.320000px;}
.wseb{word-spacing:4.357800px;}
.ws163{word-spacing:4.374000px;}
.ws35{word-spacing:4.411800px;}
.ws37{word-spacing:4.417200px;}
.ws36{word-spacing:4.519800px;}
.ws175{word-spacing:4.741200px;}
.ws23{word-spacing:4.968000px;}
.ws3b{word-spacing:4.978800px;}
.wsa8{word-spacing:4.984200px;}
.wsed{word-spacing:5.038200px;}
.ws4a{word-spacing:5.054400px;}
.ws11c{word-spacing:5.248800px;}
.ws8b{word-spacing:5.286600px;}
.ws1c{word-spacing:5.292000px;}
.ws1d{word-spacing:5.319000px;}
.ws117{word-spacing:5.427000px;}
.ws124{word-spacing:5.675400px;}
.ws52{word-spacing:5.761800px;}
.wsae{word-spacing:5.778000px;}
.wsad{word-spacing:5.783400px;}
.ws126{word-spacing:5.907600px;}
.ws43{word-spacing:6.145200px;}
.ws115{word-spacing:6.339600px;}
.ws129{word-spacing:6.382800px;}
.ws134{word-spacing:6.399000px;}
.ws128{word-spacing:6.431400px;}
.ws3c{word-spacing:6.442200px;}
.wsea{word-spacing:6.496200px;}
.ws15c{word-spacing:6.550200px;}
.ws125{word-spacing:6.598800px;}
.ws33{word-spacing:6.609600px;}
.ws7e{word-spacing:6.712200px;}
.wsdd{word-spacing:6.766200px;}
.ws55{word-spacing:6.841800px;}
.ws80{word-spacing:7.063200px;}
.ws1e{word-spacing:7.095600px;}
.ws116{word-spacing:7.144200px;}
.wsff{word-spacing:7.149600px;}
.ws49{word-spacing:7.155000px;}
.ws146{word-spacing:7.171200px;}
.ws28{word-spacing:7.425000px;}
.wsdc{word-spacing:7.473600px;}
.wsdb{word-spacing:7.484400px;}
.ws147{word-spacing:7.830000px;}
.ws8c{word-spacing:7.862400px;}
.ws96{word-spacing:7.970400px;}
.ws50{word-spacing:8.056800px;}
.ws10c{word-spacing:8.505000px;}
.ws112{word-spacing:8.532000px;}
.wsa7{word-spacing:8.553600px;}
.ws172{word-spacing:8.575200px;}
.ws173{word-spacing:8.623800px;}
.ws1a{word-spacing:8.656200px;}
.ws4f{word-spacing:8.818200px;}
.wsac{word-spacing:9.018000px;}
.ws39{word-spacing:9.034200px;}
.wsc9{word-spacing:9.288000px;}
.ws42{word-spacing:9.293400px;}
.ws153{word-spacing:9.298800px;}
.wsa6{word-spacing:9.374400px;}
.wse0{word-spacing:9.385200px;}
.wse1{word-spacing:9.417600px;}
.ws89{word-spacing:9.606600px;}
.ws11d{word-spacing:9.747000px;}
.wsba{word-spacing:9.930600px;}
.wsab{word-spacing:10.006200px;}
.ws2a{word-spacing:10.017000px;}
.ws1b{word-spacing:10.049400px;}
.wsc5{word-spacing:10.060200px;}
.ws100{word-spacing:10.076400px;}
.wsb8{word-spacing:10.616400px;}
.ws110{word-spacing:10.697400px;}
.ws143{word-spacing:10.702800px;}
.wsb7{word-spacing:10.713600px;}
.ws168{word-spacing:10.810800px;}
.ws72{word-spacing:10.886400px;}
.ws109{word-spacing:11.102400px;}
.ws85{word-spacing:11.161800px;}
.wsb9{word-spacing:11.183400px;}
.wsaa{word-spacing:11.199600px;}
.ws84{word-spacing:11.426400px;}
.ws26{word-spacing:11.480400px;}
.wsc0{word-spacing:11.529000px;}
.wsbe{word-spacing:12.220200px;}
.ws93{word-spacing:12.285000px;}
.ws13a{word-spacing:12.328200px;}
.wsca{word-spacing:12.452400px;}
.wscb{word-spacing:12.528000px;}
.wsbf{word-spacing:12.571200px;}
.ws120{word-spacing:12.619800px;}
.ws13e{word-spacing:12.625200px;}
.ws11b{word-spacing:12.835800px;}
.ws12b{word-spacing:12.862800px;}
.ws107{word-spacing:12.868200px;}
.ws106{word-spacing:12.873600px;}
.ws3a{word-spacing:12.879000px;}
.ws81{word-spacing:12.884400px;}
.wsfd{word-spacing:12.889800px;}
.wsec{word-spacing:12.906000px;}
.ws11e{word-spacing:12.965400px;}
.ws8d{word-spacing:13.332600px;}
.ws83{word-spacing:13.548600px;}
.ws17b{word-spacing:13.575600px;}
.ws17a{word-spacing:13.586400px;}
.ws169{word-spacing:13.608000px;}
.ws17c{word-spacing:13.613400px;}
.ws141{word-spacing:13.656600px;}
.ws2d{word-spacing:13.840200px;}
.ws15b{word-spacing:14.050800px;}
.ws11f{word-spacing:14.250600px;}
.ws20{word-spacing:14.299200px;}
.ws25{word-spacing:14.331600px;}
.ws135{word-spacing:14.337000px;}
.ws16e{word-spacing:14.353200px;}
.ws1f{word-spacing:14.407200px;}
.ws122{word-spacing:14.677200px;}
.wsb3{word-spacing:15.022800px;}
.ws8e{word-spacing:15.492600px;}
.ws4e{word-spacing:15.751800px;}
.ws111{word-spacing:15.784200px;}
.wsb4{word-spacing:15.870600px;}
.ws8a{word-spacing:16.216200px;}
.ws15d{word-spacing:16.518600px;}
.wsee{word-spacing:16.551000px;}
.wse9{word-spacing:16.950600px;}
.ws94{word-spacing:17.150400px;}
.ws170{word-spacing:17.172000px;}
.ws121{word-spacing:17.193600px;}
.ws16f{word-spacing:17.199000px;}
.ws95{word-spacing:17.204400px;}
.ws152{word-spacing:17.236800px;}
.ws11a{word-spacing:17.917200px;}
.wse2{word-spacing:18.079200px;}
.ws13c{word-spacing:18.376200px;}
.wse8{word-spacing:18.651600px;}
.ws21{word-spacing:18.662400px;}
.ws45{word-spacing:18.678600px;}
.wsb0{word-spacing:18.732600px;}
.wsbd{word-spacing:18.991800px;}
.ws7f{word-spacing:19.094400px;}
.ws159{word-spacing:19.359000px;}
.ws14e{word-spacing:19.369800px;}
.ws87{word-spacing:19.380600px;}
.ws158{word-spacing:19.456200px;}
.wsfa{word-spacing:19.672200px;}
.wsf9{word-spacing:19.764000px;}
.ws101{word-spacing:20.050200px;}
.ws13d{word-spacing:20.790000px;}
.ws171{word-spacing:20.800800px;}
.ws32{word-spacing:20.822400px;}
.ws113{word-spacing:21.567600px;}
.ws105{word-spacing:22.982400px;}
.ws34{word-spacing:24.445800px;}
.wsd6{word-spacing:24.826138px;}
.ws31{word-spacing:25.434000px;}
.wse5{word-spacing:25.471800px;}
.ws44{word-spacing:25.563600px;}
.wsc7{word-spacing:25.590600px;}
.ws14b{word-spacing:25.876800px;}
.ws155{word-spacing:26.622000px;}
.ws150{word-spacing:27.275400px;}
.ws154{word-spacing:27.561600px;}
.ws54{word-spacing:28.690200px;}
.ws8f{word-spacing:28.755000px;}
.ws14f{word-spacing:29.219400px;}
.ws9d{word-spacing:29.883600px;}
.ws90{word-spacing:30.256200px;}
.wsf8{word-spacing:31.606200px;}
.wsc3{word-spacing:32.578200px;}
.wsc1{word-spacing:33.058800px;}
.wsc2{word-spacing:33.145200px;}
.ws165{word-spacing:35.229600px;}
.ws166{word-spacing:35.283600px;}
.ws10f{word-spacing:35.289000px;}
.ws14a{word-spacing:36.271800px;}
.wse7{word-spacing:39.711600px;}
.wse6{word-spacing:40.181400px;}
.ws65{word-spacing:41.147523px;}
.ws64{word-spacing:41.423219px;}
.wsf3{word-spacing:41.774400px;}
.ws66{word-spacing:41.978241px;}
.ws16a{word-spacing:43.788600px;}
.wsd9{word-spacing:49.096383px;}
.wsb{word-spacing:51.579863px;}
.wsc{word-spacing:52.371109px;}
.wsa{word-spacing:52.377890px;}
.ws15e{word-spacing:52.450200px;}
.wsda{word-spacing:53.611200px;}
.ws0{word-spacing:53.908200px;}
.wsd{word-spacing:54.008570px;}
.wsd8{word-spacing:62.711755px;}
.ws131{word-spacing:91.234086px;}
.ws12c{word-spacing:132.345188px;}
.ws60{word-spacing:145.512000px;}
.wsd3{word-spacing:159.624000px;}
.wsfc{word-spacing:162.885600px;}
.ws3{word-spacing:178.720498px;}
.ws4{word-spacing:179.547453px;}
.wscf{word-spacing:221.342962px;}
.wsd4{word-spacing:360.221300px;}
.ws5f{word-spacing:385.056000px;}
.ws61{word-spacing:423.146400px;}
.wsc4{word-spacing:426.405600px;}
.wsf4{word-spacing:438.642000px;}
.wsd1{word-spacing:460.008000px;}
.wsc8{word-spacing:508.345200px;}
.wsce{word-spacing:516.179845px;}
.ws5d{word-spacing:539.870940px;}
.ws5e{word-spacing:543.033018px;}
.ws7a{word-spacing:558.928434px;}
.ws5c{word-spacing:574.488180px;}
.ws98{word-spacing:576.163800px;}
.wsd2{word-spacing:629.486088px;}
.wsd0{word-spacing:656.424000px;}
.wse4{word-spacing:672.645600px;}
.ws77{word-spacing:688.162060px;}
.ws7c{word-spacing:701.064000px;}
.ws78{word-spacing:713.116549px;}
.ws99{word-spacing:786.402000px;}
.ws6d{word-spacing:879.502960px;}
.ws71{word-spacing:887.154585px;}
.wsd5{word-spacing:1054.728000px;}
.ws6f{word-spacing:1074.900228px;}
._8{margin-left:-1440.000000px;}
._34{margin-left:-744.708290px;}
._46{margin-left:-514.850997px;}
._3f{margin-left:-508.345797px;}
._4e{margin-left:-443.650748px;}
._3d{margin-left:-358.099797px;}
._39{margin-left:-352.504800px;}
._35{margin-left:-338.581153px;}
._37{margin-left:-331.921887px;}
._4a{margin-left:-329.072088px;}
._50{margin-left:-327.151371px;}
._4d{margin-left:-319.298997px;}
._5b{margin-left:-312.451654px;}
._14{margin-left:-306.527760px;}
._5c{margin-left:-298.122733px;}
._2d{margin-left:-294.339909px;}
._48{margin-left:-272.808000px;}
._2b{margin-left:-269.458011px;}
._17{margin-left:-262.800000px;}
._5d{margin-left:-261.779005px;}
._26{margin-left:-256.578393px;}
._5e{margin-left:-250.575096px;}
._2c{margin-left:-244.288461px;}
._15{margin-left:-229.536720px;}
._45{margin-left:-227.736000px;}
._4f{margin-left:-226.224000px;}
._9{margin-left:-211.797180px;}
._24{margin-left:-209.710215px;}
._19{margin-left:-188.328240px;}
._1c{margin-left:-186.470271px;}
._4c{margin-left:-185.123455px;}
._b{margin-left:-182.774718px;}
._32{margin-left:-180.212335px;}
._30{margin-left:-175.812545px;}
._47{margin-left:-174.580300px;}
._40{margin-left:-172.938617px;}
._12{margin-left:-170.859780px;}
._38{margin-left:-168.972327px;}
._11{margin-left:-167.699700px;}
._42{margin-left:-163.219940px;}
._51{margin-left:-162.144000px;}
._e{margin-left:-160.589520px;}
._d{margin-left:-154.197540px;}
._22{margin-left:-147.853128px;}
._49{margin-left:-143.328240px;}
._21{margin-left:-141.739449px;}
._44{margin-left:-137.120124px;}
._10{margin-left:-134.159760px;}
._3a{margin-left:-131.911200px;}
._31{margin-left:-130.487330px;}
._16{margin-left:-128.088000px;}
._3b{margin-left:-126.136800px;}
._41{margin-left:-124.591964px;}
._3e{margin-left:-121.176000px;}
._18{margin-left:-119.448000px;}
._2f{margin-left:-116.860762px;}
._33{margin-left:-111.795799px;}
._23{margin-left:-109.379673px;}
._a{margin-left:-103.133520px;}
._2a{margin-left:-98.325659px;}
._25{margin-left:-95.716203px;}
._13{margin-left:-92.073240px;}
._f{margin-left:-90.636840px;}
._3c{margin-left:-88.056000px;}
._c{margin-left:-86.543100px;}
._20{margin-left:-71.186435px;}
._28{margin-left:-69.638539px;}
._1f{margin-left:-55.539682px;}
._43{margin-left:-54.216000px;}
._27{margin-left:-49.469071px;}
._4b{margin-left:-47.599200px;}
._29{margin-left:-38.252746px;}
._5{margin-left:-7.067947px;}
._7{margin-left:-5.925294px;}
._1b{margin-left:-3.898641px;}
._0{margin-left:-1.862064px;}
._2{width:1.134000px;}
._4{width:3.133078px;}
._1a{width:5.983200px;}
._1e{width:9.547200px;}
._36{width:11.005200px;}
._61{width:17.010000px;}
._54{width:31.260312px;}
._53{width:35.495577px;}
._58{width:44.094718px;}
._57{width:49.834168px;}
._52{width:51.879765px;}
._6{width:59.639606px;}
._56{width:64.829387px;}
._3{width:67.608000px;}
._55{width:69.145928px;}
._5a{width:79.580991px;}
._2e{width:98.658000px;}
._5f{width:100.584914px;}
._60{width:110.985532px;}
._59{width:141.504369px;}
._1{width:920.880000px;}
._1d{width:1000.782000px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:7.354800px;}
.fsf{font-size:10.623000px;}
.fs11{font-size:15.255600px;}
.fs25{font-size:17.968800px;}
.fs28{font-size:17.991600px;}
.fsa{font-size:18.633000px;}
.fs6{font-size:18.759600px;}
.fs2c{font-size:19.437000px;}
.fs16{font-size:22.148400px;}
.fs9{font-size:23.872200px;}
.fs5{font-size:23.878200px;}
.fs27{font-size:23.959200px;}
.fs26{font-size:23.976600px;}
.fs29{font-size:23.979600px;}
.fs2a{font-size:23.987400px;}
.fs14{font-size:27.258600px;}
.fs2b{font-size:27.767400px;}
.fs2e{font-size:27.770400px;}
.fs20{font-size:29.936400px;}
.fs7{font-size:29.976000px;}
.fsb{font-size:29.978400px;}
.fs23{font-size:29.998200px;}
.fs4{font-size:30.304800px;}
.fs8{font-size:30.493200px;}
.fs3{font-size:30.698400px;}
.fs17{font-size:32.371800px;}
.fs2d{font-size:33.319200px;}
.fs12{font-size:34.258800px;}
.fs1d{font-size:36.000000px;}
.fs15{font-size:37.482600px;}
.fs1f{font-size:41.908800px;}
.fs19{font-size:41.948400px;}
.fse{font-size:41.998800px;}
.fs1b{font-size:43.906553px;}
.fs18{font-size:44.296800px;}
.fsc{font-size:48.000000px;}
.fs0{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs13{font-size:59.998800px;}
.fsd{font-size:71.820000px;}
.fs1e{font-size:71.848200px;}
.fs1a{font-size:71.913000px;}
.fs1{font-size:72.000000px;}
.fs24{font-size:98.437800px;}
.fs1c{font-size:107.870400px;}
.fs22{font-size:108.000000px;}
.fs21{font-size:129.748800px;}
.y181{bottom:-0.360000px;}
.y0{bottom:0.000000px;}
.y191{bottom:0.360000px;}
.y105{bottom:0.900000px;}
.y18f{bottom:1.620000px;}
.yae{bottom:1.800000px;}
.y96{bottom:3.240150px;}
.y5e{bottom:57.684150px;}
.yd8{bottom:122.035500px;}
.y120{bottom:122.071500px;}
.y5d{bottom:122.085000px;}
.y1a0{bottom:122.094000px;}
.y15e{bottom:122.170500px;}
.y30{bottom:122.179500px;}
.y1d8{bottom:122.229000px;}
.yd7{bottom:137.871000px;}
.y11f{bottom:137.907000px;}
.y5c{bottom:137.920500px;}
.y19f{bottom:137.929500px;}
.y15d{bottom:138.006000px;}
.y2f{bottom:138.015000px;}
.y1d7{bottom:138.064500px;}
.y11e{bottom:153.742500px;}
.y5b{bottom:153.756000px;}
.y19e{bottom:153.765000px;}
.y15c{bottom:153.841500px;}
.y2e{bottom:153.850500px;}
.yd6{bottom:153.895500px;}
.y1d6{bottom:153.900000px;}
.y91{bottom:155.164500px;}
.y11d{bottom:169.578000px;}
.y5a{bottom:169.591500px;}
.y19d{bottom:169.600500px;}
.y15b{bottom:169.677000px;}
.y2d{bottom:169.686000px;}
.y1d5{bottom:170.275500px;}
.y90{bottom:171.000000px;}
.yd3{bottom:179.820000px;}
.yd1{bottom:182.515726px;}
.yce{bottom:182.520000px;}
.y11c{bottom:185.413500px;}
.y59{bottom:185.427000px;}
.y19c{bottom:185.436000px;}
.y15a{bottom:185.512500px;}
.y1d4{bottom:186.651000px;}
.yd4{bottom:192.598483px;}
.y8e{bottom:194.220000px;}
.yd2{bottom:195.118750px;}
.ycd{bottom:195.480000px;}
.y8b{bottom:195.839978px;}
.y8c{bottom:197.460000px;}
.ycf{bottom:199.620000px;}
.ycc{bottom:199.800000px;}
.y8a{bottom:200.700000px;}
.y11b{bottom:201.249000px;}
.y58{bottom:201.262500px;}
.y19b{bottom:201.271500px;}
.y159{bottom:201.348000px;}
.y1d3{bottom:202.486500px;}
.y2c{bottom:204.610500px;}
.yd5{bottom:207.720330px;}
.y11a{bottom:217.084500px;}
.y57{bottom:217.098000px;}
.y19a{bottom:217.107000px;}
.y158{bottom:217.183500px;}
.yd0{bottom:217.980000px;}
.y1d2{bottom:218.322000px;}
.y119{bottom:232.920000px;}
.y56{bottom:232.933500px;}
.y199{bottom:232.942500px;}
.y157{bottom:233.019000px;}
.y1d1{bottom:234.697500px;}
.ycb{bottom:242.100000px;}
.y2b{bottom:243.315000px;}
.y8f{bottom:244.800000px;}
.y55{bottom:248.769000px;}
.y198{bottom:248.778000px;}
.y156{bottom:248.854500px;}
.y1d0{bottom:250.533000px;}
.yca{bottom:257.935500px;}
.y2a{bottom:259.150500px;}
.y54{bottom:264.604500px;}
.y197{bottom:264.613500px;}
.y155{bottom:264.690000px;}
.y1cf{bottom:266.368500px;}
.yc9{bottom:273.964500px;}
.y29{bottom:274.986000px;}
.y118{bottom:275.040000px;}
.y196{bottom:280.449000px;}
.y154{bottom:280.525500px;}
.y53{bottom:281.344500px;}
.y1ce{bottom:282.744000px;}
.yc8{bottom:289.795500px;}
.y28{bottom:290.821500px;}
.y195{bottom:296.284500px;}
.y153{bottom:296.361000px;}
.y52{bottom:297.180000px;}
.y1cd{bottom:298.579500px;}
.y8d{bottom:298.980000px;}
.y116{bottom:300.420000px;}
.y27{bottom:306.657000px;}
.y112{bottom:311.040000px;}
.y152{bottom:312.196500px;}
.y51{bottom:313.015500px;}
.y113{bottom:314.280000px;}
.y1cc{bottom:314.415000px;}
.y89{bottom:320.787000px;}
.yc7{bottom:322.020000px;}
.y26{bottom:322.492500px;}
.y117{bottom:327.960000px;}
.y151{bottom:328.032000px;}
.y1cb{bottom:330.790500px;}
.y114{bottom:331.560000px;}
.y88{bottom:336.622500px;}
.y25{bottom:338.328000px;}
.y50{bottom:338.760000px;}
.y150{bottom:343.867500px;}
.y1ca{bottom:346.626000px;}
.y194{bottom:346.680000px;}
.y115{bottom:348.840000px;}
.yc6{bottom:352.444500px;}
.y87{bottom:352.458000px;}
.y24{bottom:354.163500px;}
.y110{bottom:356.400000px;}
.y14f{bottom:359.703000px;}
.y10d{bottom:361.080000px;}
.y1c9{bottom:362.461500px;}
.y45{bottom:364.500000px;}
.yc5{bottom:368.284500px;}
.y86{bottom:368.293500px;}
.y23{bottom:369.999000px;}
.y14e{bottom:375.538500px;}
.y47{bottom:376.560000px;}
.y1c8{bottom:379.026000px;}
.y48{bottom:380.880000px;}
.y10e{bottom:381.780000px;}
.y111{bottom:381.960000px;}
.y85{bottom:384.129000px;}
.yc4{bottom:384.138000px;}
.y22{bottom:385.834500px;}
.y14d{bottom:391.374000px;}
.y1c7{bottom:394.861500px;}
.y46{bottom:396.180000px;}
.y49{bottom:396.900000px;}
.y10f{bottom:399.060000px;}
.y84{bottom:399.964500px;}
.yc3{bottom:399.973500px;}
.y21{bottom:401.670000px;}
.y10b{bottom:406.620000px;}
.y14c{bottom:407.209500px;}
.y193{bottom:409.860000px;}
.y104{bottom:410.400000px;}
.y1c6{bottom:410.697000px;}
.y103{bottom:411.300000px;}
.y4a{bottom:413.460000px;}
.y106{bottom:414.720000px;}
.y83{bottom:415.800000px;}
.yc2{bottom:415.809000px;}
.y20{bottom:417.505500px;}
.y107{bottom:424.080000px;}
.y14b{bottom:424.854000px;}
.y1c5{bottom:426.532500px;}
.y10c{bottom:429.660000px;}
.y4b{bottom:429.840000px;}
.yc1{bottom:431.833500px;}
.y1f{bottom:433.341000px;}
.y108{bottom:433.620000px;}
.y14a{bottom:440.689500px;}
.y1c4{bottom:443.097000px;}
.y109{bottom:443.160000px;}
.y82{bottom:444.960000px;}
.y4c{bottom:446.220000px;}
.yc0{bottom:447.669000px;}
.y1e{bottom:449.176500px;}
.y180{bottom:450.540000px;}
.y10a{bottom:452.520000px;}
.y81{bottom:452.880000px;}
.y149{bottom:456.525000px;}
.y4d{bottom:456.658672px;}
.y1c3{bottom:458.932500px;}
.y4e{bottom:459.720074px;}
.ybf{bottom:463.504500px;}
.y17c{bottom:463.860000px;}
.y17d{bottom:464.220000px;}
.y1d{bottom:465.012000px;}
.y17e{bottom:469.800000px;}
.yfc{bottom:469.801442px;}
.y148{bottom:472.360500px;}
.y101{bottom:472.495526px;}
.yfe{bottom:472.500000px;}
.y1c2{bottom:474.768000px;}
.y1c{bottom:480.847500px;}
.y102{bottom:485.099598px;}
.y17f{bottom:485.820000px;}
.y147{bottom:488.196000px;}
.y4f{bottom:488.340000px;}
.ybc{bottom:489.060547px;}
.yfd{bottom:489.600000px;}
.yf9{bottom:489.780000px;}
.y80{bottom:489.960000px;}
.yff{bottom:490.680000px;}
.y1c1{bottom:491.332500px;}
.y177{bottom:494.822983px;}
.y1b{bottom:496.683000px;}
.y178{bottom:498.960000px;}
.ybe{bottom:502.020000px;}
.y146{bottom:504.031500px;}
.ybd{bottom:506.160000px;}
.yfb{bottom:506.340000px;}
.y176{bottom:506.520000px;}
.y1c0{bottom:507.168000px;}
.y100{bottom:509.040000px;}
.y179{bottom:512.280000px;}
.y1a{bottom:512.518500px;}
.yfa{bottom:512.640000px;}
.yba{bottom:514.260000px;}
.y7f{bottom:518.706000px;}
.y145{bottom:519.867000px;}
.y1bf{bottom:523.003500px;}
.ybb{bottom:524.517433px;}
.y17a{bottom:528.300000px;}
.y19{bottom:528.354000px;}
.y44{bottom:530.122500px;}
.y7e{bottom:534.541500px;}
.y144{bottom:535.702500px;}
.yf8{bottom:537.124500px;}
.y171{bottom:537.302983px;}
.y1be{bottom:538.839000px;}
.y172{bottom:541.440000px;}
.y18{bottom:544.189500px;}
.y17b{bottom:544.320000px;}
.y43{bottom:545.958000px;}
.yb9{bottom:548.644500px;}
.y170{bottom:549.000000px;}
.y7d{bottom:550.377000px;}
.yf7{bottom:550.620000px;}
.y143{bottom:551.538000px;}
.yf6{bottom:552.969000px;}
.y173{bottom:554.760000px;}
.y1bd{bottom:555.403500px;}
.y17{bottom:560.025000px;}
.y42{bottom:561.793500px;}
.yb8{bottom:564.480000px;}
.y7c{bottom:566.212500px;}
.y142{bottom:567.373500px;}
.yf5{bottom:568.804500px;}
.y174{bottom:570.780000px;}
.y1bc{bottom:571.239000px;}
.y16{bottom:575.860500px;}
.y41{bottom:577.629000px;}
.y16b{bottom:579.782777px;}
.yb7{bottom:580.315500px;}
.y141{bottom:583.209000px;}
.y16c{bottom:583.920000px;}
.yf4{bottom:584.640000px;}
.y175{bottom:586.980000px;}
.y1bb{bottom:587.074500px;}
.y16a{bottom:591.300000px;}
.y15{bottom:591.696000px;}
.y40{bottom:593.464500px;}
.y16d{bottom:597.240000px;}
.y140{bottom:600.853500px;}
.y7b{bottom:601.137000px;}
.yf3{bottom:601.204500px;}
.y1ba{bottom:602.910000px;}
.yb6{bottom:605.520000px;}
.y14{bottom:607.531500px;}
.y3f{bottom:610.380000px;}
.y16e{bottom:613.260000px;}
.y13f{bottom:616.689000px;}
.yf2{bottom:617.040000px;}
.y1b9{bottom:619.474500px;}
.y165{bottom:622.082983px;}
.y166{bottom:626.400000px;}
.y34{bottom:627.480000px;}
.y16f{bottom:629.460000px;}
.y13e{bottom:632.524500px;}
.y164{bottom:633.780000px;}
.y1b8{bottom:635.310000px;}
.y167{bottom:639.720000px;}
.y7a{bottom:639.841500px;}
.y183{bottom:641.701276px;}
.y36{bottom:642.420000px;}
.y13{bottom:642.456000px;}
.yb2{bottom:642.960000px;}
.y37{bottom:647.280000px;}
.yb0{bottom:648.360000px;}
.yf1{bottom:649.440000px;}
.y1b7{bottom:651.145500px;}
.y79{bottom:655.677000px;}
.y168{bottom:655.740000px;}
.y13d{bottom:664.195500px;}
.y15f{bottom:664.562983px;}
.y38{bottom:665.100000px;}
.y1b6{bottom:667.710000px;}
.y160{bottom:668.880000px;}
.y78{bottom:671.512500px;}
.y169{bottom:671.760000px;}
.y35{bottom:675.000000px;}
.yb5{bottom:675.356955px;}
.yad{bottom:676.260000px;}
.yaf{bottom:678.060000px;}
.yf0{bottom:679.329000px;}
.y12{bottom:681.336000px;}
.y161{bottom:682.200000px;}
.y182{bottom:683.100000px;}
.y39{bottom:683.280000px;}
.y1b5{bottom:683.545500px;}
.y77{bottom:687.348000px;}
.yef{bottom:695.164500px;}
.yb1{bottom:696.960000px;}
.y11{bottom:697.171500px;}
.y162{bottom:698.220000px;}
.y1b4{bottom:699.381000px;}
.y13c{bottom:700.915500px;}
.yac{bottom:701.100000px;}
.y3a{bottom:701.460000px;}
.y76{bottom:703.183500px;}
.ya6{bottom:707.578342px;}
.yab{bottom:708.832238px;}
.yee{bottom:711.000000px;}
.y10{bottom:713.007000px;}
.y163{bottom:714.240000px;}
.y1b3{bottom:715.945500px;}
.ya5{bottom:716.220000px;}
.y75{bottom:719.019000px;}
.y3b{bottom:719.820000px;}
.y184{bottom:721.080000px;}
.yaa{bottom:724.492304px;}
.yb4{bottom:725.036700px;}
.ya8{bottom:725.400015px;}
.yed{bottom:727.564500px;}
.yf{bottom:728.842500px;}
.y185{bottom:729.900000px;}
.y3c{bottom:731.519721px;}
.y1b2{bottom:731.781000px;}
.ya9{bottom:732.595604px;}
.yb3{bottom:733.140000px;}
.ya7{bottom:734.039628px;}
.y3d{bottom:734.760000px;}
.y74{bottom:734.854500px;}
.y186{bottom:735.660000px;}
.yec{bottom:743.413500px;}
.ye{bottom:744.678000px;}
.y1b1{bottom:747.616500px;}
.y13b{bottom:750.420000px;}
.y73{bottom:750.690000px;}
.ya4{bottom:758.929500px;}
.yeb{bottom:759.249000px;}
.y3e{bottom:759.780000px;}
.yd{bottom:760.513500px;}
.y187{bottom:763.200000px;}
.y1b0{bottom:764.181000px;}
.y72{bottom:766.525500px;}
.ya3{bottom:774.765000px;}
.yea{bottom:775.084500px;}
.yc{bottom:776.349000px;}
.y139{bottom:777.420000px;}
.y1af{bottom:780.016500px;}
.y71{bottom:782.361000px;}
.y136{bottom:787.680000px;}
.y135{bottom:788.580000px;}
.y188{bottom:790.380000px;}
.ya2{bottom:790.600500px;}
.ye9{bottom:790.924500px;}
.y137{bottom:791.820000px;}
.yb{bottom:792.184500px;}
.y13a{bottom:794.520150px;}
.y1ae{bottom:796.581000px;}
.y70{bottom:798.196500px;}
.ye8{bottom:806.782500px;}
.ya{bottom:808.020000px;}
.y1ad{bottom:812.416500px;}
.y138{bottom:813.960000px;}
.y6f{bottom:814.032000px;}
.y189{bottom:817.380000px;}
.y132{bottom:820.980000px;}
.ye7{bottom:822.618000px;}
.y134{bottom:823.680000px;}
.y9{bottom:823.855500px;}
.y33{bottom:824.368500px;}
.ya1{bottom:825.876000px;}
.y1ac{bottom:828.252000px;}
.y6e{bottom:829.867500px;}
.ye6{bottom:838.453500px;}
.y32{bottom:840.204000px;}
.y190{bottom:842.220000px;}
.y133{bottom:843.120000px;}
.y18a{bottom:844.380000px;}
.y1ab{bottom:844.816500px;}
.y6d{bottom:845.703000px;}
.y192{bottom:846.720000px;}
.y12f{bottom:850.140000px;}
.y131{bottom:852.660000px;}
.ye5{bottom:854.289000px;}
.y8{bottom:855.540000px;}
.y31{bottom:856.039500px;}
.y1aa{bottom:860.652000px;}
.y6c{bottom:861.538500px;}
.ya0{bottom:864.931500px;}
.ye4{bottom:870.124500px;}
.y130{bottom:872.100000px;}
.y1a9{bottom:877.216500px;}
.y6b{bottom:877.374000px;}
.y12c{bottom:879.300000px;}
.y9f{bottom:880.767000px;}
.y12e{bottom:881.820000px;}
.ye3{bottom:885.964500px;}
.y1a8{bottom:893.052000px;}
.y6a{bottom:893.209500px;}
.y9e{bottom:896.602500px;}
.y18b{bottom:899.100000px;}
.y12d{bottom:901.260000px;}
.ye2{bottom:901.800000px;}
.y129{bottom:908.280000px;}
.y1a7{bottom:908.887500px;}
.y69{bottom:909.045000px;}
.y12b{bottom:910.800000px;}
.y9d{bottom:912.438000px;}
.y7{bottom:912.960150px;}
.y68{bottom:924.880500px;}
.y18c{bottom:926.100000px;}
.ye0{bottom:928.080000px;}
.y9c{bottom:928.638000px;}
.y12a{bottom:930.420000px;}
.y6{bottom:931.680150px;}
.ydd{bottom:932.580000px;}
.y67{bottom:940.716000px;}
.ye1{bottom:942.125557px;}
.y9b{bottom:944.473500px;}
.y1a6{bottom:944.527500px;}
.ydf{bottom:946.626323px;}
.y5{bottom:952.920150px;}
.y18d{bottom:953.280000px;}
.y66{bottom:956.551500px;}
.y128{bottom:956.556000px;}
.yde{bottom:958.139997px;}
.y9a{bottom:960.309000px;}
.y65{bottom:972.387000px;}
.y127{bottom:972.391500px;}
.y4{bottom:974.160150px;}
.y99{bottom:976.144500px;}
.y18e{bottom:978.660000px;}
.y1a5{bottom:983.947500px;}
.ydc{bottom:988.208850px;}
.y64{bottom:988.222500px;}
.y126{bottom:988.227000px;}
.y95{bottom:998.100000px;}
.y1a4{bottom:999.783000px;}
.ydb{bottom:1004.044350px;}
.y63{bottom:1004.058000px;}
.y125{bottom:1004.062500px;}
.y93{bottom:1009.260000px;}
.y98{bottom:1013.040198px;}
.y3{bottom:1014.840150px;}
.y1a3{bottom:1015.618500px;}
.y94{bottom:1019.161217px;}
.yda{bottom:1019.884500px;}
.y62{bottom:1019.893500px;}
.y124{bottom:1019.898000px;}
.y97{bottom:1022.940000px;}
.y1a2{bottom:1031.454000px;}
.yd9{bottom:1035.724500px;}
.y61{bottom:1035.729000px;}
.y123{bottom:1035.733500px;}
.y92{bottom:1051.200000px;}
.y60{bottom:1051.564500px;}
.y122{bottom:1051.569000px;}
.y2{bottom:1055.160150px;}
.y1a1{bottom:1067.094000px;}
.y5f{bottom:1067.400000px;}
.y121{bottom:1067.404500px;}
.y1{bottom:1122.660150px;}
.h3f{height:5.040000px;}
.h4b{height:5.220000px;}
.h18{height:5.354294px;}
.h4a{height:6.479850px;}
.h47{height:7.200000px;}
.h17{height:7.733544px;}
.h21{height:9.540000px;}
.h19{height:11.106077px;}
.h3e{height:13.081286px;}
.h42{height:13.097885px;}
.h10{height:13.564824px;}
.hb{height:13.656989px;}
.h46{height:14.150136px;}
.h20{height:16.124035px;}
.h1b{height:16.560000px;}
.hf{height:17.378962px;}
.ha{height:17.383330px;}
.h41{height:17.442298px;}
.h40{height:17.454965px;}
.h43{height:17.457149px;}
.h44{height:17.462827px;}
.h1e{height:19.844261px;}
.h45{height:20.214667px;}
.h49{height:20.216851px;}
.h3b{height:20.848749px;}
.h31{height:20.998740px;}
.hc{height:21.822528px;}
.h11{height:21.824275px;}
.h9{height:22.061894px;}
.he{height:22.199050px;}
.h8{height:22.348435px;}
.h22{height:23.566670px;}
.h48{height:24.256378px;}
.h1a{height:24.940406px;}
.h1f{height:27.287333px;}
.h27{height:29.154138px;}
.h33{height:29.189166px;}
.h30{height:29.336160px;}
.h25{height:29.363880px;}
.h14{height:29.399160px;}
.h2a{height:32.116236px;}
.h23{height:32.248070px;}
.h1{height:33.526800px;}
.h29{height:33.615424px;}
.h12{height:34.453125px;}
.h6{height:36.612000px;}
.h7{height:37.530000px;}
.hd{height:37.800000px;}
.h2d{height:37.818000px;}
.h1c{height:41.999160px;}
.h1d{height:45.935855px;}
.h39{height:46.890000px;}
.h2{height:48.816000px;}
.h34{height:48.942600px;}
.h35{height:49.934499px;}
.h28{height:49.979535px;}
.h4{height:50.040000px;}
.h36{height:50.293740px;}
.h3{height:50.400000px;}
.h24{height:50.920841px;}
.h13{height:54.986319px;}
.h2c{height:55.007909px;}
.h5{height:55.008000px;}
.h16{height:55.124129px;}
.h37{height:57.390868px;}
.h26{height:61.554138px;}
.h3c{height:63.332578px;}
.h15{height:63.834823px;}
.h3d{height:68.401608px;}
.h38{height:72.985680px;}
.h3a{height:75.365250px;}
.h32{height:78.486067px;}
.h2f{height:79.892578px;}
.h2b{height:79.902049px;}
.h2e{height:99.337355px;}
.h0{height:1188.000000px;}
.w6{width:3.960000px;}
.w4{width:4.680000px;}
.w7{width:7.020000px;}
.w3{width:9.180000px;}
.w1{width:11.160000px;}
.w2{width:29.700000px;}
.w5{width:32.400000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x68{left:2.500500px;}
.x76{left:4.859400px;}
.x5e{left:7.500000px;}
.x1f{left:81.060900px;}
.x77{left:85.920900px;}
.x2a{left:87.540900px;}
.x20{left:94.560900px;}
.x72{left:97.080900px;}
.x28{left:98.520900px;}
.x1{left:102.660900px;}
.x6e{left:103.920900px;}
.x70{left:106.260900px;}
.x7{left:107.341500px;}
.x75{left:109.681500px;}
.x6f{left:112.020900px;}
.x74{left:113.280900px;}
.xe{left:116.161500px;}
.x50{left:117.961500px;}
.x64{left:126.240900px;}
.x25{left:149.280900px;}
.x21{left:150.356400px;}
.x4d{left:154.338938px;}
.x59{left:156.841500px;}
.x4e{left:166.738101px;}
.x4a{left:172.330136px;}
.x54{left:174.841500px;}
.x5a{left:175.921500px;}
.x2b{left:178.441350px;}
.x5{left:179.881500px;}
.x5b{left:181.317258px;}
.xf{left:183.135000px;}
.x3{left:187.621500px;}
.x24{left:188.881500px;}
.x60{left:191.221500px;}
.x5f{left:193.381500px;}
.x61{left:194.821500px;}
.x51{left:198.241500px;}
.x5d{left:200.221500px;}
.x23{left:204.901500px;}
.xd{left:210.297000px;}
.x4{left:214.621500px;}
.x58{left:215.701500px;}
.x6{left:222.361500px;}
.x4b{left:231.541500px;}
.x4c{left:236.409341px;}
.x29{left:238.741500px;}
.xc{left:240.901500px;}
.x48{left:252.241500px;}
.x71{left:254.041500px;}
.x49{left:255.492631px;}
.x22{left:260.521500px;}
.x73{left:265.921500px;}
.x63{left:271.321500px;}
.x57{left:274.741500px;}
.x62{left:276.361500px;}
.x2{left:296.701500px;}
.x56{left:300.841500px;}
.x4f{left:315.961500px;}
.x55{left:328.381500px;}
.x5c{left:367.434239px;}
.x53{left:373.021500px;}
.x52{left:384.361500px;}
.x26{left:406.858656px;}
.x6c{left:412.621615px;}
.x27{left:420.361500px;}
.x6d{left:425.581500px;}
.x1e{left:450.000000px;}
.x2c{left:465.356850px;}
.x31{left:468.061957px;}
.x32{left:478.866000px;}
.x10{left:486.979500px;}
.x2f{left:489.661500px;}
.x30{left:490.921500px;}
.x35{left:492.543072px;}
.x2e{left:496.495582px;}
.x17{left:500.470500px;}
.x1d{left:508.560000px;}
.x3a{left:522.241500px;}
.x6a{left:528.000000px;}
.x8{left:534.481500px;}
.x2d{left:536.101500px;}
.x16{left:542.401500px;}
.x39{left:544.741500px;}
.x3d{left:547.428277px;}
.x38{left:548.521500px;}
.x12{left:549.601500px;}
.x43{left:553.567323px;}
.x42{left:555.004055px;}
.x14{left:556.801500px;}
.x19{left:559.501500px;}
.x13{left:560.761500px;}
.x9{left:563.641500px;}
.x1b{left:564.721500px;}
.xb{left:569.221500px;}
.x1a{left:571.921500px;}
.x15{left:573.181500px;}
.x66{left:575.521500px;}
.x1c{left:579.841651px;}
.x65{left:581.821500px;}
.xa{left:591.541500px;}
.x44{left:594.604468px;}
.x34{left:600.721774px;}
.x45{left:602.158638px;}
.x33{left:604.501500px;}
.x6b{left:617.637000px;}
.x47{left:643.381500px;}
.x37{left:644.818577px;}
.x46{left:650.042517px;}
.x69{left:651.661500px;}
.x11{left:661.741500px;}
.x18{left:662.821500px;}
.x3f{left:681.361500px;}
.x36{left:691.260119px;}
.x3e{left:692.701500px;}
.x41{left:701.340000px;}
.x40{left:723.661500px;}
.x3b{left:725.094006px;}
.x67{left:758.581500px;}
.x3c{left:760.200000px;}
@media print{
.v2{vertical-align:-21.764327pt;}
.v6{vertical-align:-16.000000pt;}
.vb{vertical-align:-14.720000pt;}
.v5{vertical-align:-8.384000pt;}
.va{vertical-align:-3.840000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:8.319467pt;}
.v4{vertical-align:14.720000pt;}
.v9{vertical-align:15.980241pt;}
.v7{vertical-align:21.104533pt;}
.v3{vertical-align:24.314819pt;}
.v1{vertical-align:28.160000pt;}
.ls3d{letter-spacing:-4.260916pt;}
.ls91{letter-spacing:-2.278161pt;}
.ls37{letter-spacing:-2.103864pt;}
.ls39{letter-spacing:-1.606738pt;}
.ls93{letter-spacing:-0.928148pt;}
.ls92{letter-spacing:-0.928048pt;}
.ls98{letter-spacing:-0.854400pt;}
.ls3f{letter-spacing:-0.531662pt;}
.ls3e{letter-spacing:-0.477444pt;}
.ls69{letter-spacing:-0.366375pt;}
.ls38{letter-spacing:-0.360964pt;}
.ls90{letter-spacing:-0.288812pt;}
.ls8d{letter-spacing:-0.266596pt;}
.ls8e{letter-spacing:-0.261659pt;}
.ls97{letter-spacing:-0.216000pt;}
.ls6a{letter-spacing:-0.212900pt;}
.ls3c{letter-spacing:-0.201600pt;}
.ls6d{letter-spacing:-0.196800pt;}
.ls33{letter-spacing:-0.192000pt;}
.ls74{letter-spacing:-0.187200pt;}
.ls36{letter-spacing:-0.182400pt;}
.ls3b{letter-spacing:-0.177600pt;}
.ls6b{letter-spacing:-0.176623pt;}
.ls2e{letter-spacing:-0.172800pt;}
.ls83{letter-spacing:-0.168000pt;}
.ls87{letter-spacing:-0.166259pt;}
.ls32{letter-spacing:-0.163200pt;}
.ls66{letter-spacing:-0.134400pt;}
.ls3a{letter-spacing:-0.130562pt;}
.ls84{letter-spacing:-0.129600pt;}
.ls40{letter-spacing:-0.125243pt;}
.ls68{letter-spacing:-0.122755pt;}
.ls64{letter-spacing:-0.120000pt;}
.ls2d{letter-spacing:-0.110400pt;}
.ls72{letter-spacing:-0.105600pt;}
.ls94{letter-spacing:-0.100800pt;}
.ls77{letter-spacing:-0.096000pt;}
.ls27{letter-spacing:-0.091200pt;}
.ls29{letter-spacing:-0.086400pt;}
.ls34{letter-spacing:-0.081600pt;}
.ls44{letter-spacing:-0.076800pt;}
.ls96{letter-spacing:-0.072000pt;}
.ls28{letter-spacing:-0.062400pt;}
.ls25{letter-spacing:-0.057600pt;}
.ls30{letter-spacing:-0.052800pt;}
.ls35{letter-spacing:-0.048000pt;}
.ls26{letter-spacing:-0.044800pt;}
.ls6e{letter-spacing:-0.043200pt;}
.ls24{letter-spacing:-0.038400pt;}
.ls73{letter-spacing:-0.035200pt;}
.ls95{letter-spacing:-0.033600pt;}
.ls76{letter-spacing:-0.028800pt;}
.ls88{letter-spacing:-0.024000pt;}
.ls31{letter-spacing:-0.019200pt;}
.ls42{letter-spacing:-0.014400pt;}
.ls21{letter-spacing:-0.012800pt;}
.ls22{letter-spacing:-0.006400pt;}
.ls23{letter-spacing:0.000000pt;}
.ls6f{letter-spacing:0.001969pt;}
.ls70{letter-spacing:0.002423pt;}
.ls5b{letter-spacing:0.004800pt;}
.lsb{letter-spacing:0.009600pt;}
.ls48{letter-spacing:0.014400pt;}
.ls1d{letter-spacing:0.038400pt;}
.lsd{letter-spacing:0.043200pt;}
.ls82{letter-spacing:0.052800pt;}
.ls2{letter-spacing:0.057600pt;}
.ls7a{letter-spacing:0.062400pt;}
.ls5f{letter-spacing:0.064000pt;}
.ls10{letter-spacing:0.072000pt;}
.ls8c{letter-spacing:0.081600pt;}
.ls71{letter-spacing:0.086400pt;}
.ls4c{letter-spacing:0.091200pt;}
.ls8f{letter-spacing:0.093802pt;}
.ls5e{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.100800pt;}
.ls67{letter-spacing:0.105600pt;}
.ls4b{letter-spacing:0.110400pt;}
.ls7b{letter-spacing:0.114133pt;}
.ls47{letter-spacing:0.115200pt;}
.ls46{letter-spacing:0.120000pt;}
.ls4a{letter-spacing:0.124800pt;}
.ls7d{letter-spacing:0.125867pt;}
.ls9{letter-spacing:0.134400pt;}
.ls57{letter-spacing:0.139200pt;}
.ls3{letter-spacing:0.144000pt;}
.ls7e{letter-spacing:0.146133pt;}
.ls19{letter-spacing:0.148800pt;}
.ls4{letter-spacing:0.153600pt;}
.ls0{letter-spacing:0.154368pt;}
.ls1e{letter-spacing:0.158400pt;}
.ls6c{letter-spacing:0.159997pt;}
.ls52{letter-spacing:0.163200pt;}
.ls7c{letter-spacing:0.168000pt;}
.ls59{letter-spacing:0.172800pt;}
.lsa{letter-spacing:0.177600pt;}
.ls89{letter-spacing:0.180199pt;}
.ls43{letter-spacing:0.182400pt;}
.ls13{letter-spacing:0.187200pt;}
.lse{letter-spacing:0.192000pt;}
.ls1b{letter-spacing:0.192127pt;}
.ls8{letter-spacing:0.196800pt;}
.ls15{letter-spacing:0.201600pt;}
.ls1f{letter-spacing:0.206400pt;}
.ls60{letter-spacing:0.208000pt;}
.ls2b{letter-spacing:0.211200pt;}
.ls12{letter-spacing:0.216000pt;}
.ls7{letter-spacing:0.220800pt;}
.lsc{letter-spacing:0.225600pt;}
.ls11{letter-spacing:0.230400pt;}
.ls6{letter-spacing:0.235200pt;}
.ls41{letter-spacing:0.240000pt;}
.ls18{letter-spacing:0.244800pt;}
.ls1{letter-spacing:0.248704pt;}
.ls5{letter-spacing:0.249600pt;}
.ls2a{letter-spacing:0.254400pt;}
.ls14{letter-spacing:0.259200pt;}
.ls81{letter-spacing:0.264000pt;}
.ls20{letter-spacing:0.268800pt;}
.ls65{letter-spacing:0.273600pt;}
.ls45{letter-spacing:0.278400pt;}
.ls63{letter-spacing:0.283200pt;}
.ls4d{letter-spacing:0.288000pt;}
.ls5d{letter-spacing:0.292800pt;}
.ls80{letter-spacing:0.313294pt;}
.ls2c{letter-spacing:0.321600pt;}
.ls5c{letter-spacing:0.331200pt;}
.ls49{letter-spacing:0.336000pt;}
.ls2f{letter-spacing:0.657600pt;}
.ls56{letter-spacing:0.672000pt;}
.ls99{letter-spacing:0.825600pt;}
.ls51{letter-spacing:3.338927pt;}
.ls17{letter-spacing:4.682250pt;}
.ls1c{letter-spacing:5.462367pt;}
.ls58{letter-spacing:17.184000pt;}
.ls78{letter-spacing:17.280000pt;}
.ls85{letter-spacing:17.438400pt;}
.ls4e{letter-spacing:38.226201pt;}
.ls4f{letter-spacing:38.470450pt;}
.ls50{letter-spacing:39.203197pt;}
.ls1a{letter-spacing:58.059285pt;}
.ls8b{letter-spacing:95.704911pt;}
.ls8a{letter-spacing:97.624704pt;}
.ls62{letter-spacing:105.231954pt;}
.ls53{letter-spacing:106.458791pt;}
.ls5a{letter-spacing:108.178253pt;}
.ls54{letter-spacing:113.491063pt;}
.ls16{letter-spacing:160.820584pt;}
.ls55{letter-spacing:207.567573pt;}
.ls79{letter-spacing:260.618078pt;}
.ls61{letter-spacing:445.082383pt;}
.ls75{letter-spacing:521.682442pt;}
.ls7f{letter-spacing:537.152000pt;}
.ls86{letter-spacing:864.835136pt;}
.ws7b{word-spacing:-16.000000pt;}
.ws70{word-spacing:-15.980667pt;}
.wscd{word-spacing:-15.966267pt;}
.ws6b{word-spacing:-13.493063pt;}
.ws62{word-spacing:-12.321600pt;}
.ws75{word-spacing:-12.201600pt;}
.ws6c{word-spacing:-12.144000pt;}
.wscc{word-spacing:-12.120000pt;}
.ws63{word-spacing:-12.105600pt;}
.ws73{word-spacing:-12.014400pt;}
.ws5b{word-spacing:-12.000000pt;}
.ws6{word-spacing:-10.582818pt;}
.wsf{word-spacing:-10.066789pt;}
.ws6e{word-spacing:-9.321867pt;}
.ws79{word-spacing:-9.313067pt;}
.ws6a{word-spacing:-8.289107pt;}
.ws74{word-spacing:-8.000000pt;}
.ws76{word-spacing:-7.964800pt;}
.ws10{word-spacing:-7.282753pt;}
.ws7{word-spacing:-7.276841pt;}
.ws2{word-spacing:-7.127689pt;}
.ws12d{word-spacing:-6.956177pt;}
.ws12e{word-spacing:-6.600716pt;}
.ws12f{word-spacing:-6.573562pt;}
.wsd7{word-spacing:-6.238179pt;}
.ws68{word-spacing:-5.963988pt;}
.ws133{word-spacing:-5.934226pt;}
.ws132{word-spacing:-5.933585pt;}
.ws1{word-spacing:-5.482052pt;}
.ws9{word-spacing:-5.421642pt;}
.wse{word-spacing:-4.796548pt;}
.ws130{word-spacing:-4.583472pt;}
.ws5{word-spacing:-4.293831pt;}
.ws67{word-spacing:-2.258686pt;}
.wsa4{word-spacing:-0.163200pt;}
.ws151{word-spacing:-0.115200pt;}
.ws177{word-spacing:-0.105600pt;}
.wsa9{word-spacing:-0.100800pt;}
.ws9b{word-spacing:-0.096000pt;}
.ws9a{word-spacing:-0.091200pt;}
.ws12{word-spacing:-0.090048pt;}
.ws48{word-spacing:-0.086400pt;}
.ws16d{word-spacing:-0.081600pt;}
.ws92{word-spacing:-0.076800pt;}
.wsf7{word-spacing:-0.067200pt;}
.ws157{word-spacing:-0.062400pt;}
.ws13{word-spacing:-0.057600pt;}
.ws97{word-spacing:-0.052800pt;}
.ws88{word-spacing:-0.048000pt;}
.ws3e{word-spacing:-0.043200pt;}
.ws14d{word-spacing:-0.038400pt;}
.wsbc{word-spacing:-0.033600pt;}
.wsc6{word-spacing:-0.028800pt;}
.ws46{word-spacing:-0.024000pt;}
.wse3{word-spacing:-0.019200pt;}
.ws144{word-spacing:-0.014400pt;}
.ws156{word-spacing:-0.009600pt;}
.wsa3{word-spacing:-0.004800pt;}
.ws16{word-spacing:0.000000pt;}
.ws10b{word-spacing:0.002132pt;}
.ws137{word-spacing:0.002468pt;}
.ws11{word-spacing:0.004288pt;}
.ws47{word-spacing:0.004800pt;}
.ws15{word-spacing:0.006400pt;}
.ws161{word-spacing:0.009600pt;}
.ws14{word-spacing:0.012800pt;}
.ws4d{word-spacing:0.014400pt;}
.ws167{word-spacing:0.019200pt;}
.wsa5{word-spacing:0.024000pt;}
.ws9c{word-spacing:0.033600pt;}
.ws17{word-spacing:0.038400pt;}
.ws19{word-spacing:0.044800pt;}
.ws18{word-spacing:0.057600pt;}
.wsf6{word-spacing:0.072000pt;}
.ws2e{word-spacing:0.148800pt;}
.ws178{word-spacing:0.158400pt;}
.wsaf{word-spacing:0.201600pt;}
.ws41{word-spacing:0.206400pt;}
.ws3f{word-spacing:0.211200pt;}
.ws148{word-spacing:0.230400pt;}
.wsb2{word-spacing:0.249600pt;}
.ws179{word-spacing:0.254400pt;}
.ws139{word-spacing:0.259200pt;}
.wsbb{word-spacing:0.264000pt;}
.ws15a{word-spacing:0.278400pt;}
.ws38{word-spacing:0.321600pt;}
.wsfb{word-spacing:0.331200pt;}
.wsf0{word-spacing:0.340800pt;}
.ws10a{word-spacing:0.345600pt;}
.ws14c{word-spacing:0.374400pt;}
.ws138{word-spacing:0.444326pt;}
.ws136{word-spacing:0.449263pt;}
.wsf5{word-spacing:0.518400pt;}
.wsb6{word-spacing:0.556800pt;}
.ws15f{word-spacing:0.576000pt;}
.ws13f{word-spacing:0.585600pt;}
.ws56{word-spacing:0.595200pt;}
.ws160{word-spacing:0.604800pt;}
.ws82{word-spacing:0.643200pt;}
.ws51{word-spacing:0.667200pt;}
.ws8{word-spacing:0.737258pt;}
.ws140{word-spacing:0.835200pt;}
.ws40{word-spacing:0.883200pt;}
.ws114{word-spacing:1.185600pt;}
.ws22{word-spacing:1.204800pt;}
.ws2f{word-spacing:1.214400pt;}
.ws7d{word-spacing:1.248000pt;}
.wsb5{word-spacing:1.252800pt;}
.ws27{word-spacing:1.305600pt;}
.ws69{word-spacing:1.351985pt;}
.wsf2{word-spacing:1.459200pt;}
.ws145{word-spacing:1.512000pt;}
.wsf1{word-spacing:1.608000pt;}
.ws86{word-spacing:1.612800pt;}
.ws4c{word-spacing:1.641600pt;}
.ws57{word-spacing:1.809600pt;}
.wsef{word-spacing:1.838400pt;}
.ws119{word-spacing:1.843200pt;}
.ws53{word-spacing:1.852800pt;}
.ws104{word-spacing:1.886400pt;}
.ws29{word-spacing:1.900800pt;}
.wsb1{word-spacing:1.905600pt;}
.wsdf{word-spacing:1.968000pt;}
.ws24{word-spacing:2.251200pt;}
.ws4b{word-spacing:2.256000pt;}
.wsde{word-spacing:2.260800pt;}
.ws162{word-spacing:2.476800pt;}
.ws5a{word-spacing:2.491200pt;}
.ws13b{word-spacing:2.496000pt;}
.ws123{word-spacing:2.520000pt;}
.wsfe{word-spacing:2.534400pt;}
.ws2c{word-spacing:2.808000pt;}
.ws2b{word-spacing:2.812800pt;}
.ws103{word-spacing:2.889600pt;}
.ws108{word-spacing:2.908800pt;}
.wsa2{word-spacing:2.913600pt;}
.wsa1{word-spacing:3.072000pt;}
.ws3d{word-spacing:3.100800pt;}
.ws9e{word-spacing:3.115200pt;}
.ws91{word-spacing:3.124800pt;}
.ws10e{word-spacing:3.134400pt;}
.ws176{word-spacing:3.148800pt;}
.ws58{word-spacing:3.163200pt;}
.ws164{word-spacing:3.182400pt;}
.ws10d{word-spacing:3.235200pt;}
.ws9f{word-spacing:3.249600pt;}
.wsa0{word-spacing:3.268800pt;}
.ws30{word-spacing:3.412800pt;}
.ws59{word-spacing:3.436800pt;}
.ws142{word-spacing:3.523200pt;}
.ws12a{word-spacing:3.547200pt;}
.ws118{word-spacing:3.676800pt;}
.ws16b{word-spacing:3.739200pt;}
.ws127{word-spacing:3.768000pt;}
.ws174{word-spacing:3.787200pt;}
.ws102{word-spacing:3.796800pt;}
.ws149{word-spacing:3.816000pt;}
.ws16c{word-spacing:3.840000pt;}
.wseb{word-spacing:3.873600pt;}
.ws163{word-spacing:3.888000pt;}
.ws35{word-spacing:3.921600pt;}
.ws37{word-spacing:3.926400pt;}
.ws36{word-spacing:4.017600pt;}
.ws175{word-spacing:4.214400pt;}
.ws23{word-spacing:4.416000pt;}
.ws3b{word-spacing:4.425600pt;}
.wsa8{word-spacing:4.430400pt;}
.wsed{word-spacing:4.478400pt;}
.ws4a{word-spacing:4.492800pt;}
.ws11c{word-spacing:4.665600pt;}
.ws8b{word-spacing:4.699200pt;}
.ws1c{word-spacing:4.704000pt;}
.ws1d{word-spacing:4.728000pt;}
.ws117{word-spacing:4.824000pt;}
.ws124{word-spacing:5.044800pt;}
.ws52{word-spacing:5.121600pt;}
.wsae{word-spacing:5.136000pt;}
.wsad{word-spacing:5.140800pt;}
.ws126{word-spacing:5.251200pt;}
.ws43{word-spacing:5.462400pt;}
.ws115{word-spacing:5.635200pt;}
.ws129{word-spacing:5.673600pt;}
.ws134{word-spacing:5.688000pt;}
.ws128{word-spacing:5.716800pt;}
.ws3c{word-spacing:5.726400pt;}
.wsea{word-spacing:5.774400pt;}
.ws15c{word-spacing:5.822400pt;}
.ws125{word-spacing:5.865600pt;}
.ws33{word-spacing:5.875200pt;}
.ws7e{word-spacing:5.966400pt;}
.wsdd{word-spacing:6.014400pt;}
.ws55{word-spacing:6.081600pt;}
.ws80{word-spacing:6.278400pt;}
.ws1e{word-spacing:6.307200pt;}
.ws116{word-spacing:6.350400pt;}
.wsff{word-spacing:6.355200pt;}
.ws49{word-spacing:6.360000pt;}
.ws146{word-spacing:6.374400pt;}
.ws28{word-spacing:6.600000pt;}
.wsdc{word-spacing:6.643200pt;}
.wsdb{word-spacing:6.652800pt;}
.ws147{word-spacing:6.960000pt;}
.ws8c{word-spacing:6.988800pt;}
.ws96{word-spacing:7.084800pt;}
.ws50{word-spacing:7.161600pt;}
.ws10c{word-spacing:7.560000pt;}
.ws112{word-spacing:7.584000pt;}
.wsa7{word-spacing:7.603200pt;}
.ws172{word-spacing:7.622400pt;}
.ws173{word-spacing:7.665600pt;}
.ws1a{word-spacing:7.694400pt;}
.ws4f{word-spacing:7.838400pt;}
.wsac{word-spacing:8.016000pt;}
.ws39{word-spacing:8.030400pt;}
.wsc9{word-spacing:8.256000pt;}
.ws42{word-spacing:8.260800pt;}
.ws153{word-spacing:8.265600pt;}
.wsa6{word-spacing:8.332800pt;}
.wse0{word-spacing:8.342400pt;}
.wse1{word-spacing:8.371200pt;}
.ws89{word-spacing:8.539200pt;}
.ws11d{word-spacing:8.664000pt;}
.wsba{word-spacing:8.827200pt;}
.wsab{word-spacing:8.894400pt;}
.ws2a{word-spacing:8.904000pt;}
.ws1b{word-spacing:8.932800pt;}
.wsc5{word-spacing:8.942400pt;}
.ws100{word-spacing:8.956800pt;}
.wsb8{word-spacing:9.436800pt;}
.ws110{word-spacing:9.508800pt;}
.ws143{word-spacing:9.513600pt;}
.wsb7{word-spacing:9.523200pt;}
.ws168{word-spacing:9.609600pt;}
.ws72{word-spacing:9.676800pt;}
.ws109{word-spacing:9.868800pt;}
.ws85{word-spacing:9.921600pt;}
.wsb9{word-spacing:9.940800pt;}
.wsaa{word-spacing:9.955200pt;}
.ws84{word-spacing:10.156800pt;}
.ws26{word-spacing:10.204800pt;}
.wsc0{word-spacing:10.248000pt;}
.wsbe{word-spacing:10.862400pt;}
.ws93{word-spacing:10.920000pt;}
.ws13a{word-spacing:10.958400pt;}
.wsca{word-spacing:11.068800pt;}
.wscb{word-spacing:11.136000pt;}
.wsbf{word-spacing:11.174400pt;}
.ws120{word-spacing:11.217600pt;}
.ws13e{word-spacing:11.222400pt;}
.ws11b{word-spacing:11.409600pt;}
.ws12b{word-spacing:11.433600pt;}
.ws107{word-spacing:11.438400pt;}
.ws106{word-spacing:11.443200pt;}
.ws3a{word-spacing:11.448000pt;}
.ws81{word-spacing:11.452800pt;}
.wsfd{word-spacing:11.457600pt;}
.wsec{word-spacing:11.472000pt;}
.ws11e{word-spacing:11.524800pt;}
.ws8d{word-spacing:11.851200pt;}
.ws83{word-spacing:12.043200pt;}
.ws17b{word-spacing:12.067200pt;}
.ws17a{word-spacing:12.076800pt;}
.ws169{word-spacing:12.096000pt;}
.ws17c{word-spacing:12.100800pt;}
.ws141{word-spacing:12.139200pt;}
.ws2d{word-spacing:12.302400pt;}
.ws15b{word-spacing:12.489600pt;}
.ws11f{word-spacing:12.667200pt;}
.ws20{word-spacing:12.710400pt;}
.ws25{word-spacing:12.739200pt;}
.ws135{word-spacing:12.744000pt;}
.ws16e{word-spacing:12.758400pt;}
.ws1f{word-spacing:12.806400pt;}
.ws122{word-spacing:13.046400pt;}
.wsb3{word-spacing:13.353600pt;}
.ws8e{word-spacing:13.771200pt;}
.ws4e{word-spacing:14.001600pt;}
.ws111{word-spacing:14.030400pt;}
.wsb4{word-spacing:14.107200pt;}
.ws8a{word-spacing:14.414400pt;}
.ws15d{word-spacing:14.683200pt;}
.wsee{word-spacing:14.712000pt;}
.wse9{word-spacing:15.067200pt;}
.ws94{word-spacing:15.244800pt;}
.ws170{word-spacing:15.264000pt;}
.ws121{word-spacing:15.283200pt;}
.ws16f{word-spacing:15.288000pt;}
.ws95{word-spacing:15.292800pt;}
.ws152{word-spacing:15.321600pt;}
.ws11a{word-spacing:15.926400pt;}
.wse2{word-spacing:16.070400pt;}
.ws13c{word-spacing:16.334400pt;}
.wse8{word-spacing:16.579200pt;}
.ws21{word-spacing:16.588800pt;}
.ws45{word-spacing:16.603200pt;}
.wsb0{word-spacing:16.651200pt;}
.wsbd{word-spacing:16.881600pt;}
.ws7f{word-spacing:16.972800pt;}
.ws159{word-spacing:17.208000pt;}
.ws14e{word-spacing:17.217600pt;}
.ws87{word-spacing:17.227200pt;}
.ws158{word-spacing:17.294400pt;}
.wsfa{word-spacing:17.486400pt;}
.wsf9{word-spacing:17.568000pt;}
.ws101{word-spacing:17.822400pt;}
.ws13d{word-spacing:18.480000pt;}
.ws171{word-spacing:18.489600pt;}
.ws32{word-spacing:18.508800pt;}
.ws113{word-spacing:19.171200pt;}
.ws105{word-spacing:20.428800pt;}
.ws34{word-spacing:21.729600pt;}
.wsd6{word-spacing:22.067678pt;}
.ws31{word-spacing:22.608000pt;}
.wse5{word-spacing:22.641600pt;}
.ws44{word-spacing:22.723200pt;}
.wsc7{word-spacing:22.747200pt;}
.ws14b{word-spacing:23.001600pt;}
.ws155{word-spacing:23.664000pt;}
.ws150{word-spacing:24.244800pt;}
.ws154{word-spacing:24.499200pt;}
.ws54{word-spacing:25.502400pt;}
.ws8f{word-spacing:25.560000pt;}
.ws14f{word-spacing:25.972800pt;}
.ws9d{word-spacing:26.563200pt;}
.ws90{word-spacing:26.894400pt;}
.wsf8{word-spacing:28.094400pt;}
.wsc3{word-spacing:28.958400pt;}
.wsc1{word-spacing:29.385600pt;}
.wsc2{word-spacing:29.462400pt;}
.ws165{word-spacing:31.315200pt;}
.ws166{word-spacing:31.363200pt;}
.ws10f{word-spacing:31.368000pt;}
.ws14a{word-spacing:32.241600pt;}
.wse7{word-spacing:35.299200pt;}
.wse6{word-spacing:35.716800pt;}
.ws65{word-spacing:36.575576pt;}
.ws64{word-spacing:36.820639pt;}
.wsf3{word-spacing:37.132800pt;}
.ws66{word-spacing:37.313992pt;}
.ws16a{word-spacing:38.923200pt;}
.wsd9{word-spacing:43.641229pt;}
.wsb{word-spacing:45.848767pt;}
.wsc{word-spacing:46.552097pt;}
.wsa{word-spacing:46.558124pt;}
.ws15e{word-spacing:46.622400pt;}
.wsda{word-spacing:47.654400pt;}
.ws0{word-spacing:47.918400pt;}
.wsd{word-spacing:48.007618pt;}
.wsd8{word-spacing:55.743782pt;}
.ws131{word-spacing:81.096965pt;}
.ws12c{word-spacing:117.640167pt;}
.ws60{word-spacing:129.344000pt;}
.wsd3{word-spacing:141.888000pt;}
.wsfc{word-spacing:144.787200pt;}
.ws3{word-spacing:158.862665pt;}
.ws4{word-spacing:159.597736pt;}
.wscf{word-spacing:196.749300pt;}
.wsd4{word-spacing:320.196711pt;}
.ws5f{word-spacing:342.272000pt;}
.ws61{word-spacing:376.130133pt;}
.wsc4{word-spacing:379.027200pt;}
.wsf4{word-spacing:389.904000pt;}
.wsd1{word-spacing:408.896000pt;}
.wsc8{word-spacing:451.862400pt;}
.wsce{word-spacing:458.826529pt;}
.ws5d{word-spacing:479.885280pt;}
.ws5e{word-spacing:482.696016pt;}
.ws7a{word-spacing:496.825275pt;}
.ws5c{word-spacing:510.656160pt;}
.ws98{word-spacing:512.145600pt;}
.wsd2{word-spacing:559.543190pt;}
.wsd0{word-spacing:583.488000pt;}
.wse4{word-spacing:597.907200pt;}
.ws77{word-spacing:611.699609pt;}
.ws7c{word-spacing:623.168000pt;}
.ws78{word-spacing:633.881377pt;}
.ws99{word-spacing:699.024000pt;}
.ws6d{word-spacing:781.780409pt;}
.ws71{word-spacing:788.581853pt;}
.wsd5{word-spacing:937.536000pt;}
.ws6f{word-spacing:955.466869pt;}
._8{margin-left:-1280.000000pt;}
._34{margin-left:-661.962924pt;}
._46{margin-left:-457.645331pt;}
._3f{margin-left:-451.862931pt;}
._4e{margin-left:-394.356220pt;}
._3d{margin-left:-318.310931pt;}
._39{margin-left:-313.337600pt;}
._35{margin-left:-300.961025pt;}
._37{margin-left:-295.041677pt;}
._4a{margin-left:-292.508523pt;}
._50{margin-left:-290.801219pt;}
._4d{margin-left:-283.821331pt;}
._5b{margin-left:-277.734804pt;}
._14{margin-left:-272.469120pt;}
._5c{margin-left:-264.997985pt;}
._2d{margin-left:-261.635475pt;}
._48{margin-left:-242.496000pt;}
._2b{margin-left:-239.518232pt;}
._17{margin-left:-233.600000pt;}
._5d{margin-left:-232.692449pt;}
._26{margin-left:-228.069682pt;}
._5e{margin-left:-222.733419pt;}
._2c{margin-left:-217.145299pt;}
._15{margin-left:-204.032640pt;}
._45{margin-left:-202.432000pt;}
._4f{margin-left:-201.088000pt;}
._9{margin-left:-188.264160pt;}
._24{margin-left:-186.409080pt;}
._19{margin-left:-167.402880pt;}
._1c{margin-left:-165.751352pt;}
._4c{margin-left:-164.554182pt;}
._b{margin-left:-162.466416pt;}
._32{margin-left:-160.188743pt;}
._30{margin-left:-156.277818pt;}
._47{margin-left:-155.182489pt;}
._40{margin-left:-153.723215pt;}
._12{margin-left:-151.875360pt;}
._38{margin-left:-150.197624pt;}
._11{margin-left:-149.066400pt;}
._42{margin-left:-145.084391pt;}
._51{margin-left:-144.128000pt;}
._e{margin-left:-142.746240pt;}
._d{margin-left:-137.064480pt;}
._22{margin-left:-131.425003pt;}
._49{margin-left:-127.402880pt;}
._21{margin-left:-125.990621pt;}
._44{margin-left:-121.884555pt;}
._10{margin-left:-119.253120pt;}
._3a{margin-left:-117.254400pt;}
._31{margin-left:-115.988738pt;}
._16{margin-left:-113.856000pt;}
._3b{margin-left:-112.121600pt;}
._41{margin-left:-110.748412pt;}
._3e{margin-left:-107.712000pt;}
._18{margin-left:-106.176000pt;}
._2f{margin-left:-103.876233pt;}
._33{margin-left:-99.374044pt;}
._23{margin-left:-97.226376pt;}
._a{margin-left:-91.674240pt;}
._2a{margin-left:-87.400586pt;}
._25{margin-left:-85.081069pt;}
._13{margin-left:-81.842880pt;}
._f{margin-left:-80.566080pt;}
._3c{margin-left:-78.272000pt;}
._c{margin-left:-76.927200pt;}
._20{margin-left:-63.276831pt;}
._28{margin-left:-61.900923pt;}
._1f{margin-left:-49.368606pt;}
._43{margin-left:-48.192000pt;}
._27{margin-left:-43.972507pt;}
._4b{margin-left:-42.310400pt;}
._29{margin-left:-34.002441pt;}
._5{margin-left:-6.282620pt;}
._7{margin-left:-5.266928pt;}
._1b{margin-left:-3.465459pt;}
._0{margin-left:-1.655168pt;}
._2{width:1.008000pt;}
._4{width:2.784958pt;}
._1a{width:5.318400pt;}
._1e{width:8.486400pt;}
._36{width:9.782400pt;}
._61{width:15.120000pt;}
._54{width:27.786944pt;}
._53{width:31.551624pt;}
._58{width:39.195305pt;}
._57{width:44.297039pt;}
._52{width:46.115347pt;}
._6{width:53.012983pt;}
._56{width:57.626122pt;}
._3{width:60.096000pt;}
._55{width:61.463047pt;}
._5a{width:70.738659pt;}
._2e{width:87.696000pt;}
._5f{width:89.408812pt;}
._60{width:98.653806pt;}
._59{width:125.781662pt;}
._1{width:818.560000pt;}
._1d{width:889.584000pt;}
.fs10{font-size:6.537600pt;}
.fsf{font-size:9.442667pt;}
.fs11{font-size:13.560533pt;}
.fs25{font-size:15.972267pt;}
.fs28{font-size:15.992533pt;}
.fsa{font-size:16.562667pt;}
.fs6{font-size:16.675200pt;}
.fs2c{font-size:17.277333pt;}
.fs16{font-size:19.687467pt;}
.fs9{font-size:21.219733pt;}
.fs5{font-size:21.225067pt;}
.fs27{font-size:21.297067pt;}
.fs26{font-size:21.312533pt;}
.fs29{font-size:21.315200pt;}
.fs2a{font-size:21.322133pt;}
.fs14{font-size:24.229867pt;}
.fs2b{font-size:24.682133pt;}
.fs2e{font-size:24.684800pt;}
.fs20{font-size:26.610133pt;}
.fs7{font-size:26.645333pt;}
.fsb{font-size:26.647467pt;}
.fs23{font-size:26.665067pt;}
.fs4{font-size:26.937600pt;}
.fs8{font-size:27.105067pt;}
.fs3{font-size:27.287467pt;}
.fs17{font-size:28.774933pt;}
.fs2d{font-size:29.617067pt;}
.fs12{font-size:30.452267pt;}
.fs1d{font-size:32.000000pt;}
.fs15{font-size:33.317867pt;}
.fs1f{font-size:37.252267pt;}
.fs19{font-size:37.287467pt;}
.fse{font-size:37.332267pt;}
.fs1b{font-size:39.028047pt;}
.fs18{font-size:39.374933pt;}
.fsc{font-size:42.666667pt;}
.fs0{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs13{font-size:53.332267pt;}
.fsd{font-size:63.840000pt;}
.fs1e{font-size:63.865067pt;}
.fs1a{font-size:63.922667pt;}
.fs1{font-size:64.000000pt;}
.fs24{font-size:87.500267pt;}
.fs1c{font-size:95.884800pt;}
.fs22{font-size:96.000000pt;}
.fs21{font-size:115.332267pt;}
.y181{bottom:-0.320000pt;}
.y0{bottom:0.000000pt;}
.y191{bottom:0.320000pt;}
.y105{bottom:0.800000pt;}
.y18f{bottom:1.440000pt;}
.yae{bottom:1.600000pt;}
.y96{bottom:2.880133pt;}
.y5e{bottom:51.274800pt;}
.yd8{bottom:108.476000pt;}
.y120{bottom:108.508000pt;}
.y5d{bottom:108.520000pt;}
.y1a0{bottom:108.528000pt;}
.y15e{bottom:108.596000pt;}
.y30{bottom:108.604000pt;}
.y1d8{bottom:108.648000pt;}
.yd7{bottom:122.552000pt;}
.y11f{bottom:122.584000pt;}
.y5c{bottom:122.596000pt;}
.y19f{bottom:122.604000pt;}
.y15d{bottom:122.672000pt;}
.y2f{bottom:122.680000pt;}
.y1d7{bottom:122.724000pt;}
.y11e{bottom:136.660000pt;}
.y5b{bottom:136.672000pt;}
.y19e{bottom:136.680000pt;}
.y15c{bottom:136.748000pt;}
.y2e{bottom:136.756000pt;}
.yd6{bottom:136.796000pt;}
.y1d6{bottom:136.800000pt;}
.y91{bottom:137.924000pt;}
.y11d{bottom:150.736000pt;}
.y5a{bottom:150.748000pt;}
.y19d{bottom:150.756000pt;}
.y15b{bottom:150.824000pt;}
.y2d{bottom:150.832000pt;}
.y1d5{bottom:151.356000pt;}
.y90{bottom:152.000000pt;}
.yd3{bottom:159.840000pt;}
.yd1{bottom:162.236201pt;}
.yce{bottom:162.240000pt;}
.y11c{bottom:164.812000pt;}
.y59{bottom:164.824000pt;}
.y19c{bottom:164.832000pt;}
.y15a{bottom:164.900000pt;}
.y1d4{bottom:165.912000pt;}
.yd4{bottom:171.198652pt;}
.y8e{bottom:172.640000pt;}
.yd2{bottom:173.438889pt;}
.ycd{bottom:173.760000pt;}
.y8b{bottom:174.079980pt;}
.y8c{bottom:175.520000pt;}
.ycf{bottom:177.440000pt;}
.ycc{bottom:177.600000pt;}
.y8a{bottom:178.400000pt;}
.y11b{bottom:178.888000pt;}
.y58{bottom:178.900000pt;}
.y19b{bottom:178.908000pt;}
.y159{bottom:178.976000pt;}
.y1d3{bottom:179.988000pt;}
.y2c{bottom:181.876000pt;}
.yd5{bottom:184.640293pt;}
.y11a{bottom:192.964000pt;}
.y57{bottom:192.976000pt;}
.y19a{bottom:192.984000pt;}
.y158{bottom:193.052000pt;}
.yd0{bottom:193.760000pt;}
.y1d2{bottom:194.064000pt;}
.y119{bottom:207.040000pt;}
.y56{bottom:207.052000pt;}
.y199{bottom:207.060000pt;}
.y157{bottom:207.128000pt;}
.y1d1{bottom:208.620000pt;}
.ycb{bottom:215.200000pt;}
.y2b{bottom:216.280000pt;}
.y8f{bottom:217.600000pt;}
.y55{bottom:221.128000pt;}
.y198{bottom:221.136000pt;}
.y156{bottom:221.204000pt;}
.y1d0{bottom:222.696000pt;}
.yca{bottom:229.276000pt;}
.y2a{bottom:230.356000pt;}
.y54{bottom:235.204000pt;}
.y197{bottom:235.212000pt;}
.y155{bottom:235.280000pt;}
.y1cf{bottom:236.772000pt;}
.yc9{bottom:243.524000pt;}
.y29{bottom:244.432000pt;}
.y118{bottom:244.480000pt;}
.y196{bottom:249.288000pt;}
.y154{bottom:249.356000pt;}
.y53{bottom:250.084000pt;}
.y1ce{bottom:251.328000pt;}
.yc8{bottom:257.596000pt;}
.y28{bottom:258.508000pt;}
.y195{bottom:263.364000pt;}
.y153{bottom:263.432000pt;}
.y52{bottom:264.160000pt;}
.y1cd{bottom:265.404000pt;}
.y8d{bottom:265.760000pt;}
.y116{bottom:267.040000pt;}
.y27{bottom:272.584000pt;}
.y112{bottom:276.480000pt;}
.y152{bottom:277.508000pt;}
.y51{bottom:278.236000pt;}
.y113{bottom:279.360000pt;}
.y1cc{bottom:279.480000pt;}
.y89{bottom:285.144000pt;}
.yc7{bottom:286.240000pt;}
.y26{bottom:286.660000pt;}
.y117{bottom:291.520000pt;}
.y151{bottom:291.584000pt;}
.y1cb{bottom:294.036000pt;}
.y114{bottom:294.720000pt;}
.y88{bottom:299.220000pt;}
.y25{bottom:300.736000pt;}
.y50{bottom:301.120000pt;}
.y150{bottom:305.660000pt;}
.y1ca{bottom:308.112000pt;}
.y194{bottom:308.160000pt;}
.y115{bottom:310.080000pt;}
.yc6{bottom:313.284000pt;}
.y87{bottom:313.296000pt;}
.y24{bottom:314.812000pt;}
.y110{bottom:316.800000pt;}
.y14f{bottom:319.736000pt;}
.y10d{bottom:320.960000pt;}
.y1c9{bottom:322.188000pt;}
.y45{bottom:324.000000pt;}
.yc5{bottom:327.364000pt;}
.y86{bottom:327.372000pt;}
.y23{bottom:328.888000pt;}
.y14e{bottom:333.812000pt;}
.y47{bottom:334.720000pt;}
.y1c8{bottom:336.912000pt;}
.y48{bottom:338.560000pt;}
.y10e{bottom:339.360000pt;}
.y111{bottom:339.520000pt;}
.y85{bottom:341.448000pt;}
.yc4{bottom:341.456000pt;}
.y22{bottom:342.964000pt;}
.y14d{bottom:347.888000pt;}
.y1c7{bottom:350.988000pt;}
.y46{bottom:352.160000pt;}
.y49{bottom:352.800000pt;}
.y10f{bottom:354.720000pt;}
.y84{bottom:355.524000pt;}
.yc3{bottom:355.532000pt;}
.y21{bottom:357.040000pt;}
.y10b{bottom:361.440000pt;}
.y14c{bottom:361.964000pt;}
.y193{bottom:364.320000pt;}
.y104{bottom:364.800000pt;}
.y1c6{bottom:365.064000pt;}
.y103{bottom:365.600000pt;}
.y4a{bottom:367.520000pt;}
.y106{bottom:368.640000pt;}
.y83{bottom:369.600000pt;}
.yc2{bottom:369.608000pt;}
.y20{bottom:371.116000pt;}
.y107{bottom:376.960000pt;}
.y14b{bottom:377.648000pt;}
.y1c5{bottom:379.140000pt;}
.y10c{bottom:381.920000pt;}
.y4b{bottom:382.080000pt;}
.yc1{bottom:383.852000pt;}
.y1f{bottom:385.192000pt;}
.y108{bottom:385.440000pt;}
.y14a{bottom:391.724000pt;}
.y1c4{bottom:393.864000pt;}
.y109{bottom:393.920000pt;}
.y82{bottom:395.520000pt;}
.y4c{bottom:396.640000pt;}
.yc0{bottom:397.928000pt;}
.y1e{bottom:399.268000pt;}
.y180{bottom:400.480000pt;}
.y10a{bottom:402.240000pt;}
.y81{bottom:402.560000pt;}
.y149{bottom:405.800000pt;}
.y4d{bottom:405.918820pt;}
.y1c3{bottom:407.940000pt;}
.y4e{bottom:408.640066pt;}
.ybf{bottom:412.004000pt;}
.y17c{bottom:412.320000pt;}
.y17d{bottom:412.640000pt;}
.y1d{bottom:413.344000pt;}
.y17e{bottom:417.600000pt;}
.yfc{bottom:417.601282pt;}
.y148{bottom:419.876000pt;}
.y101{bottom:419.996023pt;}
.yfe{bottom:420.000000pt;}
.y1c2{bottom:422.016000pt;}
.y1c{bottom:427.420000pt;}
.y102{bottom:431.199643pt;}
.y17f{bottom:431.840000pt;}
.y147{bottom:433.952000pt;}
.y4f{bottom:434.080000pt;}
.ybc{bottom:434.720487pt;}
.yfd{bottom:435.200000pt;}
.yf9{bottom:435.360000pt;}
.y80{bottom:435.520000pt;}
.yff{bottom:436.160000pt;}
.y1c1{bottom:436.740000pt;}
.y177{bottom:439.842651pt;}
.y1b{bottom:441.496000pt;}
.y178{bottom:443.520000pt;}
.ybe{bottom:446.240000pt;}
.y146{bottom:448.028000pt;}
.ybd{bottom:449.920000pt;}
.yfb{bottom:450.080000pt;}
.y176{bottom:450.240000pt;}
.y1c0{bottom:450.816000pt;}
.y100{bottom:452.480000pt;}
.y179{bottom:455.360000pt;}
.y1a{bottom:455.572000pt;}
.yfa{bottom:455.680000pt;}
.yba{bottom:457.120000pt;}
.y7f{bottom:461.072000pt;}
.y145{bottom:462.104000pt;}
.y1bf{bottom:464.892000pt;}
.ybb{bottom:466.237718pt;}
.y17a{bottom:469.600000pt;}
.y19{bottom:469.648000pt;}
.y44{bottom:471.220000pt;}
.y7e{bottom:475.148000pt;}
.y144{bottom:476.180000pt;}
.yf8{bottom:477.444000pt;}
.y171{bottom:477.602651pt;}
.y1be{bottom:478.968000pt;}
.y172{bottom:481.280000pt;}
.y18{bottom:483.724000pt;}
.y17b{bottom:483.840000pt;}
.y43{bottom:485.296000pt;}
.yb9{bottom:487.684000pt;}
.y170{bottom:488.000000pt;}
.y7d{bottom:489.224000pt;}
.yf7{bottom:489.440000pt;}
.y143{bottom:490.256000pt;}
.yf6{bottom:491.528000pt;}
.y173{bottom:493.120000pt;}
.y1bd{bottom:493.692000pt;}
.y17{bottom:497.800000pt;}
.y42{bottom:499.372000pt;}
.yb8{bottom:501.760000pt;}
.y7c{bottom:503.300000pt;}
.y142{bottom:504.332000pt;}
.yf5{bottom:505.604000pt;}
.y174{bottom:507.360000pt;}
.y1bc{bottom:507.768000pt;}
.y16{bottom:511.876000pt;}
.y41{bottom:513.448000pt;}
.y16b{bottom:515.362468pt;}
.yb7{bottom:515.836000pt;}
.y141{bottom:518.408000pt;}
.y16c{bottom:519.040000pt;}
.yf4{bottom:519.680000pt;}
.y175{bottom:521.760000pt;}
.y1bb{bottom:521.844000pt;}
.y16a{bottom:525.600000pt;}
.y15{bottom:525.952000pt;}
.y40{bottom:527.524000pt;}
.y16d{bottom:530.880000pt;}
.y140{bottom:534.092000pt;}
.y7b{bottom:534.344000pt;}
.yf3{bottom:534.404000pt;}
.y1ba{bottom:535.920000pt;}
.yb6{bottom:538.240000pt;}
.y14{bottom:540.028000pt;}
.y3f{bottom:542.560000pt;}
.y16e{bottom:545.120000pt;}
.y13f{bottom:548.168000pt;}
.yf2{bottom:548.480000pt;}
.y1b9{bottom:550.644000pt;}
.y165{bottom:552.962651pt;}
.y166{bottom:556.800000pt;}
.y34{bottom:557.760000pt;}
.y16f{bottom:559.520000pt;}
.y13e{bottom:562.244000pt;}
.y164{bottom:563.360000pt;}
.y1b8{bottom:564.720000pt;}
.y167{bottom:568.640000pt;}
.y7a{bottom:568.748000pt;}
.y183{bottom:570.401134pt;}
.y36{bottom:571.040000pt;}
.y13{bottom:571.072000pt;}
.yb2{bottom:571.520000pt;}
.y37{bottom:575.360000pt;}
.yb0{bottom:576.320000pt;}
.yf1{bottom:577.280000pt;}
.y1b7{bottom:578.796000pt;}
.y79{bottom:582.824000pt;}
.y168{bottom:582.880000pt;}
.y13d{bottom:590.396000pt;}
.y15f{bottom:590.722651pt;}
.y38{bottom:591.200000pt;}
.y1b6{bottom:593.520000pt;}
.y160{bottom:594.560000pt;}
.y78{bottom:596.900000pt;}
.y169{bottom:597.120000pt;}
.y35{bottom:600.000000pt;}
.yb5{bottom:600.317293pt;}
.yad{bottom:601.120000pt;}
.yaf{bottom:602.720000pt;}
.yf0{bottom:603.848000pt;}
.y12{bottom:605.632000pt;}
.y161{bottom:606.400000pt;}
.y182{bottom:607.200000pt;}
.y39{bottom:607.360000pt;}
.y1b5{bottom:607.596000pt;}
.y77{bottom:610.976000pt;}
.yef{bottom:617.924000pt;}
.yb1{bottom:619.520000pt;}
.y11{bottom:619.708000pt;}
.y162{bottom:620.640000pt;}
.y1b4{bottom:621.672000pt;}
.y13c{bottom:623.036000pt;}
.yac{bottom:623.200000pt;}
.y3a{bottom:623.520000pt;}
.y76{bottom:625.052000pt;}
.ya6{bottom:628.958527pt;}
.yab{bottom:630.073100pt;}
.yee{bottom:632.000000pt;}
.y10{bottom:633.784000pt;}
.y163{bottom:634.880000pt;}
.y1b3{bottom:636.396000pt;}
.ya5{bottom:636.640000pt;}
.y75{bottom:639.128000pt;}
.y3b{bottom:639.840000pt;}
.y184{bottom:640.960000pt;}
.yaa{bottom:643.993159pt;}
.yb4{bottom:644.477066pt;}
.ya8{bottom:644.800013pt;}
.yed{bottom:646.724000pt;}
.yf{bottom:647.860000pt;}
.y185{bottom:648.800000pt;}
.y3c{bottom:650.239752pt;}
.y1b2{bottom:650.472000pt;}
.ya9{bottom:651.196092pt;}
.yb3{bottom:651.680000pt;}
.ya7{bottom:652.479670pt;}
.y3d{bottom:653.120000pt;}
.y74{bottom:653.204000pt;}
.y186{bottom:653.920000pt;}
.yec{bottom:660.812000pt;}
.ye{bottom:661.936000pt;}
.y1b1{bottom:664.548000pt;}
.y13b{bottom:667.040000pt;}
.y73{bottom:667.280000pt;}
.ya4{bottom:674.604000pt;}
.yeb{bottom:674.888000pt;}
.y3e{bottom:675.360000pt;}
.yd{bottom:676.012000pt;}
.y187{bottom:678.400000pt;}
.y1b0{bottom:679.272000pt;}
.y72{bottom:681.356000pt;}
.ya3{bottom:688.680000pt;}
.yea{bottom:688.964000pt;}
.yc{bottom:690.088000pt;}
.y139{bottom:691.040000pt;}
.y1af{bottom:693.348000pt;}
.y71{bottom:695.432000pt;}
.y136{bottom:700.160000pt;}
.y135{bottom:700.960000pt;}
.y188{bottom:702.560000pt;}
.ya2{bottom:702.756000pt;}
.ye9{bottom:703.044000pt;}
.y137{bottom:703.840000pt;}
.yb{bottom:704.164000pt;}
.y13a{bottom:706.240133pt;}
.y1ae{bottom:708.072000pt;}
.y70{bottom:709.508000pt;}
.ye8{bottom:717.140000pt;}
.ya{bottom:718.240000pt;}
.y1ad{bottom:722.148000pt;}
.y138{bottom:723.520000pt;}
.y6f{bottom:723.584000pt;}
.y189{bottom:726.560000pt;}
.y132{bottom:729.760000pt;}
.ye7{bottom:731.216000pt;}
.y134{bottom:732.160000pt;}
.y9{bottom:732.316000pt;}
.y33{bottom:732.772000pt;}
.ya1{bottom:734.112000pt;}
.y1ac{bottom:736.224000pt;}
.y6e{bottom:737.660000pt;}
.ye6{bottom:745.292000pt;}
.y32{bottom:746.848000pt;}
.y190{bottom:748.640000pt;}
.y133{bottom:749.440000pt;}
.y18a{bottom:750.560000pt;}
.y1ab{bottom:750.948000pt;}
.y6d{bottom:751.736000pt;}
.y192{bottom:752.640000pt;}
.y12f{bottom:755.680000pt;}
.y131{bottom:757.920000pt;}
.ye5{bottom:759.368000pt;}
.y8{bottom:760.480000pt;}
.y31{bottom:760.924000pt;}
.y1aa{bottom:765.024000pt;}
.y6c{bottom:765.812000pt;}
.ya0{bottom:768.828000pt;}
.ye4{bottom:773.444000pt;}
.y130{bottom:775.200000pt;}
.y1a9{bottom:779.748000pt;}
.y6b{bottom:779.888000pt;}
.y12c{bottom:781.600000pt;}
.y9f{bottom:782.904000pt;}
.y12e{bottom:783.840000pt;}
.ye3{bottom:787.524000pt;}
.y1a8{bottom:793.824000pt;}
.y6a{bottom:793.964000pt;}
.y9e{bottom:796.980000pt;}
.y18b{bottom:799.200000pt;}
.y12d{bottom:801.120000pt;}
.ye2{bottom:801.600000pt;}
.y129{bottom:807.360000pt;}
.y1a7{bottom:807.900000pt;}
.y69{bottom:808.040000pt;}
.y12b{bottom:809.600000pt;}
.y9d{bottom:811.056000pt;}
.y7{bottom:811.520133pt;}
.y68{bottom:822.116000pt;}
.y18c{bottom:823.200000pt;}
.ye0{bottom:824.960000pt;}
.y9c{bottom:825.456000pt;}
.y12a{bottom:827.040000pt;}
.y6{bottom:828.160133pt;}
.ydd{bottom:828.960000pt;}
.y67{bottom:836.192000pt;}
.ye1{bottom:837.444940pt;}
.y9b{bottom:839.532000pt;}
.y1a6{bottom:839.580000pt;}
.ydf{bottom:841.445621pt;}
.y5{bottom:847.040133pt;}
.y18d{bottom:847.360000pt;}
.y66{bottom:850.268000pt;}
.y128{bottom:850.272000pt;}
.yde{bottom:851.679997pt;}
.y9a{bottom:853.608000pt;}
.y65{bottom:864.344000pt;}
.y127{bottom:864.348000pt;}
.y4{bottom:865.920133pt;}
.y99{bottom:867.684000pt;}
.y18e{bottom:869.920000pt;}
.y1a5{bottom:874.620000pt;}
.ydc{bottom:878.407867pt;}
.y64{bottom:878.420000pt;}
.y126{bottom:878.424000pt;}
.y95{bottom:887.200000pt;}
.y1a4{bottom:888.696000pt;}
.ydb{bottom:892.483867pt;}
.y63{bottom:892.496000pt;}
.y125{bottom:892.500000pt;}
.y93{bottom:897.120000pt;}
.y98{bottom:900.480176pt;}
.y3{bottom:902.080133pt;}
.y1a3{bottom:902.772000pt;}
.y94{bottom:905.921082pt;}
.yda{bottom:906.564000pt;}
.y62{bottom:906.572000pt;}
.y124{bottom:906.576000pt;}
.y97{bottom:909.280000pt;}
.y1a2{bottom:916.848000pt;}
.yd9{bottom:920.644000pt;}
.y61{bottom:920.648000pt;}
.y123{bottom:920.652000pt;}
.y92{bottom:934.400000pt;}
.y60{bottom:934.724000pt;}
.y122{bottom:934.728000pt;}
.y2{bottom:937.920133pt;}
.y1a1{bottom:948.528000pt;}
.y5f{bottom:948.800000pt;}
.y121{bottom:948.804000pt;}
.y1{bottom:997.920133pt;}
.h3f{height:4.480000pt;}
.h4b{height:4.640000pt;}
.h18{height:4.759373pt;}
.h4a{height:5.759867pt;}
.h47{height:6.400000pt;}
.h17{height:6.874261pt;}
.h21{height:8.480000pt;}
.h19{height:9.872068pt;}
.h3e{height:11.627810pt;}
.h42{height:11.642564pt;}
.h10{height:12.057621pt;}
.hb{height:12.139546pt;}
.h46{height:12.577899pt;}
.h20{height:14.332476pt;}
.h1b{height:14.720000pt;}
.hf{height:15.447966pt;}
.ha{height:15.451849pt;}
.h41{height:15.504265pt;}
.h40{height:15.515524pt;}
.h43{height:15.517466pt;}
.h44{height:15.522513pt;}
.h1e{height:17.639343pt;}
.h45{height:17.968593pt;}
.h49{height:17.970534pt;}
.h3b{height:18.532221pt;}
.h31{height:18.665547pt;}
.hc{height:19.397803pt;}
.h11{height:19.399356pt;}
.h9{height:19.610573pt;}
.he{height:19.732489pt;}
.h8{height:19.865276pt;}
.h22{height:20.948151pt;}
.h48{height:21.561225pt;}
.h1a{height:22.169250pt;}
.h1f{height:24.255407pt;}
.h27{height:25.914789pt;}
.h33{height:25.945925pt;}
.h30{height:26.076587pt;}
.h25{height:26.101227pt;}
.h14{height:26.132587pt;}
.h2a{height:28.547766pt;}
.h23{height:28.664951pt;}
.h1{height:29.801600pt;}
.h29{height:29.880377pt;}
.h12{height:30.625000pt;}
.h6{height:32.544000pt;}
.h7{height:33.360000pt;}
.hd{height:33.600000pt;}
.h2d{height:33.616000pt;}
.h1c{height:37.332587pt;}
.h1d{height:40.831872pt;}
.h39{height:41.680000pt;}
.h2{height:43.392000pt;}
.h34{height:43.504533pt;}
.h35{height:44.386221pt;}
.h28{height:44.426253pt;}
.h4{height:44.480000pt;}
.h36{height:44.705547pt;}
.h3{height:44.800000pt;}
.h24{height:45.262970pt;}
.h13{height:48.876728pt;}
.h2c{height:48.895919pt;}
.h5{height:48.896000pt;}
.h16{height:48.999226pt;}
.h37{height:51.014105pt;}
.h26{height:54.714789pt;}
.h3c{height:56.295625pt;}
.h15{height:56.742065pt;}
.h3d{height:60.801429pt;}
.h38{height:64.876160pt;}
.h3a{height:66.991333pt;}
.h32{height:69.765393pt;}
.h2f{height:71.015625pt;}
.h2b{height:71.024044pt;}
.h2e{height:88.299872pt;}
.h0{height:1056.000000pt;}
.w6{width:3.520000pt;}
.w4{width:4.160000pt;}
.w7{width:6.240000pt;}
.w3{width:8.160000pt;}
.w1{width:9.920000pt;}
.w2{width:26.400000pt;}
.w5{width:28.800000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x68{left:2.222667pt;}
.x76{left:4.319467pt;}
.x5e{left:6.666667pt;}
.x1f{left:72.054133pt;}
.x77{left:76.374133pt;}
.x2a{left:77.814133pt;}
.x20{left:84.054133pt;}
.x72{left:86.294133pt;}
.x28{left:87.574133pt;}
.x1{left:91.254133pt;}
.x6e{left:92.374133pt;}
.x70{left:94.454133pt;}
.x7{left:95.414667pt;}
.x75{left:97.494667pt;}
.x6f{left:99.574133pt;}
.x74{left:100.694133pt;}
.xe{left:103.254667pt;}
.x50{left:104.854667pt;}
.x64{left:112.214133pt;}
.x25{left:132.694133pt;}
.x21{left:133.650133pt;}
.x4d{left:137.190168pt;}
.x59{left:139.414667pt;}
.x4e{left:148.211646pt;}
.x4a{left:153.182343pt;}
.x54{left:155.414667pt;}
.x5a{left:156.374667pt;}
.x2b{left:158.614533pt;}
.x5{left:159.894667pt;}
.x5b{left:161.170896pt;}
.xf{left:162.786667pt;}
.x3{left:166.774667pt;}
.x24{left:167.894667pt;}
.x60{left:169.974667pt;}
.x5f{left:171.894667pt;}
.x61{left:173.174667pt;}
.x51{left:176.214667pt;}
.x5d{left:177.974667pt;}
.x23{left:182.134667pt;}
.xd{left:186.930667pt;}
.x4{left:190.774667pt;}
.x58{left:191.734667pt;}
.x6{left:197.654667pt;}
.x4b{left:205.814667pt;}
.x4c{left:210.141637pt;}
.x29{left:212.214667pt;}
.xc{left:214.134667pt;}
.x48{left:224.214667pt;}
.x71{left:225.814667pt;}
.x49{left:227.104561pt;}
.x22{left:231.574667pt;}
.x73{left:236.374667pt;}
.x63{left:241.174667pt;}
.x57{left:244.214667pt;}
.x62{left:245.654667pt;}
.x2{left:263.734667pt;}
.x56{left:267.414667pt;}
.x4f{left:280.854667pt;}
.x55{left:291.894667pt;}
.x5c{left:326.608212pt;}
.x53{left:331.574667pt;}
.x52{left:341.654667pt;}
.x26{left:361.652139pt;}
.x6c{left:366.774769pt;}
.x27{left:373.654667pt;}
.x6d{left:378.294667pt;}
.x1e{left:400.000000pt;}
.x2c{left:413.650533pt;}
.x31{left:416.055073pt;}
.x32{left:425.658667pt;}
.x10{left:432.870667pt;}
.x2f{left:435.254667pt;}
.x30{left:436.374667pt;}
.x35{left:437.816064pt;}
.x2e{left:441.329406pt;}
.x17{left:444.862667pt;}
.x1d{left:452.053333pt;}
.x3a{left:464.214667pt;}
.x6a{left:469.333333pt;}
.x8{left:475.094667pt;}
.x2d{left:476.534667pt;}
.x16{left:482.134667pt;}
.x39{left:484.214667pt;}
.x3d{left:486.602913pt;}
.x38{left:487.574667pt;}
.x12{left:488.534667pt;}
.x43{left:492.059842pt;}
.x42{left:493.336938pt;}
.x14{left:494.934667pt;}
.x19{left:497.334667pt;}
.x13{left:498.454667pt;}
.x9{left:501.014667pt;}
.x1b{left:501.974667pt;}
.xb{left:505.974667pt;}
.x1a{left:508.374667pt;}
.x15{left:509.494667pt;}
.x66{left:511.574667pt;}
.x1c{left:515.414801pt;}
.x65{left:517.174667pt;}
.xa{left:525.814667pt;}
.x44{left:528.537305pt;}
.x34{left:533.974910pt;}
.x45{left:535.252123pt;}
.x33{left:537.334667pt;}
.x6b{left:549.010667pt;}
.x47{left:571.894667pt;}
.x37{left:573.172068pt;}
.x46{left:577.815571pt;}
.x69{left:579.254667pt;}
.x11{left:588.214667pt;}
.x18{left:589.174667pt;}
.x3f{left:605.654667pt;}
.x36{left:614.453439pt;}
.x3e{left:615.734667pt;}
.x41{left:623.413333pt;}
.x40{left:643.254667pt;}
.x3b{left:644.528005pt;}
.x67{left:674.294667pt;}
.x3c{left:675.733333pt;}
}




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