
    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_101628673ea0654bb2de5b75.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_09c5b5ce02e53d88d028d595.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_fa46a62045307e1bb28f7c19.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_54bbf0f46d6f6753e3c41ca9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.693000;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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.710000;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_1e20be19e5c019ff57ae6e20.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.929000;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_baf5902c328a73233070f87b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_026407a65eaf0d64d5bc71d3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_ac0edfd8c1beade41863f31b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.200684;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_26befa8378f44892d5bb4979.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.211426;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_413746f6bb59e19b5966b5b9.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.836426;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_f5567cf93573b51bbb256727.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5e583f240297fcf1a809cd9e.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0b471fbf2acaa2ea635799d7.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.200684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_89540a39b9e89eeb1b6add85.woff2')format("woff");}.fff{font-family:fff;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_e180b8263a4c077fb363ca85.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.836426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_f5567cf93573b51bbb256727.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_51b58287b1772826db326b98.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.667000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_5e583f240297fcf1a809cd9e.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_4fa9a3e139a53ad6e5cf8aec.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.200684;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_689812aa35a8bb6d79261ad7.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.211426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_413746f6bb59e19b5966b5b9.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.836426;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_f5567cf93573b51bbb256727.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.727539;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:ff18;src:url('chunks/assets/font_5e583f240297fcf1a809cd9e.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_85a37288f1afb662382ec712.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.200684;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:ff1a;src:url('chunks/assets/font_c82cfadfd78c7b0ee3177062.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.211426;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:ff1b;src:url('chunks/assets/font_a0cb8ce6fcd9d774a1fac155.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.836426;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:ff1c;src:url('chunks/assets/font_f5567cf93573b51bbb256727.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.727539;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:ff1d;src:url('chunks/assets/font_e8e98b5965384d8d0b7212af.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.703000;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:ff1e;src:url('chunks/assets/font_b53dea2049814935b2109148.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.933000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m2a{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v3{vertical-align:-11.958000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.ls9a{letter-spacing:-1.458000px;}
.lsb1{letter-spacing:-0.534600px;}
.lsb2{letter-spacing:-0.361800px;}
.ls6d{letter-spacing:-0.351000px;}
.ls66{letter-spacing:-0.348696px;}
.ls3e{letter-spacing:-0.312624px;}
.lsb4{letter-spacing:-0.288576px;}
.ls96{letter-spacing:-0.264528px;}
.ls9c{letter-spacing:-0.232200px;}
.lsb5{letter-spacing:-0.228456px;}
.ls69{letter-spacing:-0.199800px;}
.ls39{letter-spacing:-0.168336px;}
.lsa2{letter-spacing:-0.162324px;}
.ls9f{letter-spacing:-0.156312px;}
.lsa0{letter-spacing:-0.144288px;}
.ls3d{letter-spacing:-0.138276px;}
.ls62{letter-spacing:-0.135000px;}
.ls64{letter-spacing:-0.126252px;}
.ls6c{letter-spacing:-0.124200px;}
.ls40{letter-spacing:-0.120240px;}
.ls61{letter-spacing:-0.118800px;}
.ls3b{letter-spacing:-0.114228px;}
.ls67{letter-spacing:-0.108216px;}
.ls41{letter-spacing:-0.102204px;}
.ls9d{letter-spacing:-0.097200px;}
.lsa1{letter-spacing:-0.096192px;}
.ls3a{letter-spacing:-0.090180px;}
.ls42{letter-spacing:-0.084168px;}
.lsb3{letter-spacing:-0.075600px;}
.ls97{letter-spacing:-0.072144px;}
.ls45{letter-spacing:-0.066132px;}
.ls32{letter-spacing:-0.062244px;}
.ls35{letter-spacing:-0.060120px;}
.ls3f{letter-spacing:-0.054108px;}
.ls3c{letter-spacing:-0.048096px;}
.ls60{letter-spacing:-0.043200px;}
.ls34{letter-spacing:-0.042084px;}
.ls6b{letter-spacing:-0.037800px;}
.ls44{letter-spacing:-0.036072px;}
.ls43{letter-spacing:-0.030060px;}
.ls33{letter-spacing:-0.024048px;}
.ls65{letter-spacing:-0.018036px;}
.ls5f{letter-spacing:-0.016200px;}
.ls36{letter-spacing:-0.012024px;}
.ls99{letter-spacing:-0.010800px;}
.ls37{letter-spacing:-0.006012px;}
.ls6a{letter-spacing:-0.005400px;}
.ls8{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.000297px;}
.lsd0{letter-spacing:0.000406px;}
.ls3{letter-spacing:0.000583px;}
.lsab{letter-spacing:0.000731px;}
.lsc6{letter-spacing:0.000800px;}
.ls86{letter-spacing:0.000989px;}
.lscd{letter-spacing:0.001036px;}
.lsce{letter-spacing:0.001155px;}
.ls8a{letter-spacing:0.001271px;}
.ls5c{letter-spacing:0.001520px;}
.lsae{letter-spacing:0.001647px;}
.lsd3{letter-spacing:0.001902px;}
.lscc{letter-spacing:0.002544px;}
.ls87{letter-spacing:0.002581px;}
.lsc8{letter-spacing:0.002973px;}
.ls8b{letter-spacing:0.003327px;}
.ls2d{letter-spacing:0.003391px;}
.lscf{letter-spacing:0.003634px;}
.lsbf{letter-spacing:0.003668px;}
.lsad{letter-spacing:0.003747px;}
.ls5e{letter-spacing:0.003752px;}
.ls2e{letter-spacing:0.004483px;}
.lsbd{letter-spacing:0.004800px;}
.ls5a{letter-spacing:0.005400px;}
.lsc2{letter-spacing:0.005522px;}
.ls54{letter-spacing:0.006012px;}
.ls4b{letter-spacing:0.010800px;}
.ls24{letter-spacing:0.012024px;}
.ls48{letter-spacing:0.016200px;}
.ls2c{letter-spacing:0.018036px;}
.ls59{letter-spacing:0.021600px;}
.lsaa{letter-spacing:0.024048px;}
.ls4d{letter-spacing:0.027000px;}
.ls56{letter-spacing:0.030060px;}
.ls4f{letter-spacing:0.032400px;}
.ls55{letter-spacing:0.036072px;}
.ls81{letter-spacing:0.037800px;}
.ls2a{letter-spacing:0.042084px;}
.ls1a{letter-spacing:0.043092px;}
.ls9e{letter-spacing:0.043200px;}
.ls21{letter-spacing:0.048096px;}
.ls51{letter-spacing:0.048600px;}
.ls83{letter-spacing:0.054000px;}
.ls2b{letter-spacing:0.054108px;}
.ls4e{letter-spacing:0.059400px;}
.ls57{letter-spacing:0.060120px;}
.ls5b{letter-spacing:0.064800px;}
.ls25{letter-spacing:0.066132px;}
.ls50{letter-spacing:0.070200px;}
.ls53{letter-spacing:0.078156px;}
.ls52{letter-spacing:0.081000px;}
.ls27{letter-spacing:0.084168px;}
.lsa8{letter-spacing:0.086400px;}
.ls26{letter-spacing:0.090180px;}
.ls1e{letter-spacing:0.096192px;}
.ls84{letter-spacing:0.097200px;}
.ls1d{letter-spacing:0.102204px;}
.ls4c{letter-spacing:0.102600px;}
.ls80{letter-spacing:0.108000px;}
.ls22{letter-spacing:0.108216px;}
.ls1f{letter-spacing:0.114228px;}
.lsa9{letter-spacing:0.118800px;}
.ls20{letter-spacing:0.120240px;}
.ls4a{letter-spacing:0.124200px;}
.ls38{letter-spacing:0.126252px;}
.ls85{letter-spacing:0.132264px;}
.ls23{letter-spacing:0.138276px;}
.ls49{letter-spacing:0.140400px;}
.ls98{letter-spacing:0.144288px;}
.ls82{letter-spacing:0.145800px;}
.ls28{letter-spacing:0.150300px;}
.ls29{letter-spacing:0.162324px;}
.ls58{letter-spacing:0.168336px;}
.ls1b{letter-spacing:0.177156px;}
.ls19{letter-spacing:0.191520px;}
.ls1c{letter-spacing:0.192384px;}
.ls63{letter-spacing:0.372600px;}
.lsc1{letter-spacing:0.670282px;}
.ls9b{letter-spacing:0.907200px;}
.ls68{letter-spacing:1.178352px;}
.lsaf{letter-spacing:2.197200px;}
.ls8d{letter-spacing:2.203200px;}
.lsd2{letter-spacing:2.988600px;}
.ls1{letter-spacing:2.989200px;}
.lsb7{letter-spacing:3.553200px;}
.ls0{letter-spacing:10.455300px;}
.ls7{letter-spacing:11.954850px;}
.ls2f{letter-spacing:12.578351px;}
.ls30{letter-spacing:12.584473px;}
.ls75{letter-spacing:13.165261px;}
.lsc3{letter-spacing:13.287346px;}
.lsbe{letter-spacing:13.380251px;}
.ls88{letter-spacing:13.410490px;}
.ls9{letter-spacing:13.437789px;}
.lsb{letter-spacing:13.444800px;}
.lsbb{letter-spacing:13.448400px;}
.lsa{letter-spacing:13.450800px;}
.lsbc{letter-spacing:13.454400px;}
.lsc0{letter-spacing:13.571677px;}
.lscb{letter-spacing:13.574691px;}
.ls89{letter-spacing:13.596250px;}
.lsac{letter-spacing:13.693693px;}
.lsca{letter-spacing:13.773187px;}
.lsc{letter-spacing:14.094088px;}
.lsd{letter-spacing:14.100088px;}
.lsc4{letter-spacing:14.356282px;}
.ls8c{letter-spacing:14.541483px;}
.lsc9{letter-spacing:14.603341px;}
.ls18{letter-spacing:14.664263px;}
.ls7d{letter-spacing:14.665261px;}
.ls47{letter-spacing:14.692909px;}
.ls76{letter-spacing:14.713390px;}
.ls95{letter-spacing:14.769005px;}
.lsa3{letter-spacing:14.782788px;}
.ls94{letter-spacing:14.789828px;}
.lsb9{letter-spacing:14.824055px;}
.ls7c{letter-spacing:14.860182px;}
.ls74{letter-spacing:14.865421px;}
.lsa4{letter-spacing:14.870889px;}
.ls14{letter-spacing:14.885108px;}
.ls15{letter-spacing:14.910999px;}
.lsa7{letter-spacing:14.911801px;}
.ls8f{letter-spacing:14.923389px;}
.ls8e{letter-spacing:14.924232px;}
.ls92{letter-spacing:14.942100px;}
.ls12{letter-spacing:14.944200px;}
.ls79{letter-spacing:15.003984px;}
.ls7a{letter-spacing:15.100103px;}
.ls93{letter-spacing:15.130456px;}
.ls17{letter-spacing:15.133477px;}
.ls77{letter-spacing:15.194553px;}
.ls13{letter-spacing:15.225120px;}
.ls16{letter-spacing:15.237582px;}
.ls46{letter-spacing:15.429847px;}
.ls6e{letter-spacing:15.657483px;}
.ls7b{letter-spacing:15.663483px;}
.ls71{letter-spacing:15.682788px;}
.ls70{letter-spacing:15.688671px;}
.ls73{letter-spacing:15.693483px;}
.ls10{letter-spacing:15.929847px;}
.ls91{letter-spacing:15.965141px;}
.lsa6{letter-spacing:16.182788px;}
.ls7f{letter-spacing:16.271024px;}
.lsd1{letter-spacing:16.415106px;}
.ls90{letter-spacing:16.626688px;}
.lsc5{letter-spacing:16.909224px;}
.lsa5{letter-spacing:16.956100px;}
.ls7e{letter-spacing:17.079629px;}
.ls72{letter-spacing:17.194553px;}
.ls6f{letter-spacing:17.265141px;}
.lsc7{letter-spacing:17.462165px;}
.lse{letter-spacing:18.676906px;}
.lsf{letter-spacing:18.682788px;}
.lsba{letter-spacing:19.205943px;}
.ls5d{letter-spacing:19.794918px;}
.ls11{letter-spacing:19.900435px;}
.ls78{letter-spacing:19.947494px;}
.lsb0{letter-spacing:20.276906px;}
.lsb6{letter-spacing:20.659259px;}
.lsb8{letter-spacing:22.029472px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls6{letter-spacing:62.917200px;}
.ls5{letter-spacing:64.321654px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf0{word-spacing:-60.120000px;}
.ws92{word-spacing:-54.000000px;}
.ws4b{word-spacing:-15.030000px;}
.ws45{word-spacing:-14.943900px;}
.ws91{word-spacing:-13.500000px;}
.ws94{word-spacing:-13.449600px;}
.ws49{word-spacing:-12.161520px;}
.ws4a{word-spacing:-11.970000px;}
.ws29{word-spacing:-11.955150px;}
.ws10{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws176{word-spacing:-3.883752px;}
.wsf4{word-spacing:-3.765863px;}
.wsb5{word-spacing:-3.535056px;}
.wsb6{word-spacing:-3.474936px;}
.ws109{word-spacing:-3.432852px;}
.ws177{word-spacing:-3.390768px;}
.wsb{word-spacing:-3.335501px;}
.ws18c{word-spacing:-3.198384px;}
.ws18d{word-spacing:-3.120228px;}
.ws18e{word-spacing:-3.054096px;}
.ws1b8{word-spacing:-2.988780px;}
.ws6f{word-spacing:-2.873736px;}
.ws15b{word-spacing:-2.819628px;}
.ws192{word-spacing:-2.809453px;}
.ws15a{word-spacing:-2.801592px;}
.wsc{word-spacing:-2.797517px;}
.wsfc{word-spacing:-2.783556px;}
.ws74{word-spacing:-2.777544px;}
.wsfb{word-spacing:-2.765520px;}
.ws148{word-spacing:-2.754000px;}
.ws8e{word-spacing:-2.749678px;}
.ws114{word-spacing:-2.727000px;}
.ws73{word-spacing:-2.663316px;}
.ws31{word-spacing:-2.630126px;}
.ws17f{word-spacing:-2.476944px;}
.ws8f{word-spacing:-2.450800px;}
.ws180{word-spacing:-2.422836px;}
.ws127{word-spacing:-2.416824px;}
.ws116{word-spacing:-2.386800px;}
.ws117{word-spacing:-2.376000px;}
.ws115{word-spacing:-2.359800px;}
.ws113{word-spacing:-2.354400px;}
.ws112{word-spacing:-2.349000px;}
.ws18b{word-spacing:-2.332656px;}
.ws1b3{word-spacing:-2.271473px;}
.ws88{word-spacing:-2.151922px;}
.ws17e{word-spacing:-2.068128px;}
.ws126{word-spacing:-2.056104px;}
.ws141{word-spacing:-2.032370px;}
.ws17d{word-spacing:-2.026044px;}
.ws170{word-spacing:-1.971936px;}
.ws128{word-spacing:-1.965924px;}
.ws168{word-spacing:-1.959912px;}
.ws20a{word-spacing:-1.829146px;}
.wse2{word-spacing:-1.793268px;}
.wsc5{word-spacing:-1.767528px;}
.ws84{word-spacing:-1.761516px;}
.wsfe{word-spacing:-1.755504px;}
.ws1b9{word-spacing:-1.733492px;}
.ws163{word-spacing:-1.725444px;}
.wsfd{word-spacing:-1.713420px;}
.ws153{word-spacing:-1.701000px;}
.ws154{word-spacing:-1.652400px;}
.ws152{word-spacing:-1.647000px;}
.ws12e{word-spacing:-1.623240px;}
.ws155{word-spacing:-1.620000px;}
.ws12d{word-spacing:-1.581156px;}
.wsf8{word-spacing:-1.494390px;}
.ws2c{word-spacing:-1.434614px;}
.ws171{word-spacing:-1.418832px;}
.wsff{word-spacing:-1.400796px;}
.ws2e{word-spacing:-1.374839px;}
.wsf9{word-spacing:-1.315063px;}
.ws162{word-spacing:-1.310616px;}
.ws147{word-spacing:-1.279800px;}
.ws144{word-spacing:-1.269000px;}
.ws145{word-spacing:-1.258200px;}
.ws1b4{word-spacing:-1.255288px;}
.ws146{word-spacing:-1.236600px;}
.ws1ba{word-spacing:-1.195512px;}
.ws44{word-spacing:-1.135736px;}
.ws7f{word-spacing:-1.106208px;}
.ws1b7{word-spacing:-1.075961px;}
.ws130{word-spacing:-1.022040px;}
.ws13e{word-spacing:-0.896634px;}
.ws4f{word-spacing:-0.877040px;}
.ws4e{word-spacing:-0.875993px;}
.ws50{word-spacing:-0.875246px;}
.ws4d{word-spacing:-0.860774px;}
.ws2a{word-spacing:-0.777083px;}
.wsca{word-spacing:-0.679356px;}
.ws7e{word-spacing:-0.667332px;}
.ws11c{word-spacing:-0.661320px;}
.ws19a{word-spacing:-0.657532px;}
.ws1e9{word-spacing:-0.645581px;}
.ws149{word-spacing:-0.637200px;}
.ws14a{word-spacing:-0.621000px;}
.ws7d{word-spacing:-0.619236px;}
.ws133{word-spacing:-0.597756px;}
.ws132{word-spacing:-0.537980px;}
.ws14f{word-spacing:-0.523800px;}
.ws2d{word-spacing:-0.478205px;}
.ws14e{word-spacing:-0.459000px;}
.wsba{word-spacing:-0.432864px;}
.ws8d{word-spacing:-0.418429px;}
.ws14d{word-spacing:-0.415800px;}
.ws10a{word-spacing:-0.408816px;}
.ws7c{word-spacing:-0.384768px;}
.ws1bb{word-spacing:-0.377564px;}
.ws1bc{word-spacing:-0.376589px;}
.wsf5{word-spacing:-0.376032px;}
.ws142{word-spacing:-0.375198px;}
.ws140{word-spacing:-0.369198px;}
.ws10b{word-spacing:-0.360720px;}
.ws80{word-spacing:-0.354708px;}
.ws70{word-spacing:-0.348696px;}
.wsc1{word-spacing:-0.342684px;}
.ws6c{word-spacing:-0.330660px;}
.ws18{word-spacing:-0.322790px;}
.ws14b{word-spacing:-0.302400px;}
.wsae{word-spacing:-0.300600px;}
.ws1e{word-spacing:-0.298878px;}
.ws85{word-spacing:-0.282564px;}
.ws53{word-spacing:-0.277704px;}
.ws1c2{word-spacing:-0.268992px;}
.ws5c{word-spacing:-0.252504px;}
.ws8a{word-spacing:-0.251006px;}
.ws157{word-spacing:-0.240480px;}
.ws28{word-spacing:-0.239102px;}
.ws81{word-spacing:-0.228456px;}
.ws83{word-spacing:-0.216432px;}
.ws17{word-spacing:-0.215194px;}
.ws72{word-spacing:-0.210420px;}
.ws82{word-spacing:-0.198396px;}
.wsce{word-spacing:-0.194400px;}
.ws24{word-spacing:-0.179327px;}
.ws14c{word-spacing:-0.172800px;}
.wsf1{word-spacing:-0.161395px;}
.wsaf{word-spacing:-0.138276px;}
.ws54{word-spacing:-0.129276px;}
.ws8b{word-spacing:-0.119551px;}
.ws13{word-spacing:-0.107597px;}
.ws131{word-spacing:-0.102204px;}
.ws11e{word-spacing:-0.096192px;}
.wsea{word-spacing:-0.082855px;}
.ws4c{word-spacing:-0.060120px;}
.ws21{word-spacing:-0.059776px;}
.ws99{word-spacing:-0.053798px;}
.ws78{word-spacing:-0.030060px;}
.ws52{word-spacing:-0.023940px;}
.wsbe{word-spacing:-0.018036px;}
.ws207{word-spacing:-0.012950px;}
.ws1e7{word-spacing:-0.010512px;}
.ws1d2{word-spacing:-0.008688px;}
.ws20b{word-spacing:-0.007517px;}
.ws1eb{word-spacing:-0.006883px;}
.ws1cc{word-spacing:-0.006806px;}
.ws1d0{word-spacing:-0.004858px;}
.wse{word-spacing:-0.004483px;}
.ws1d1{word-spacing:-0.004435px;}
.ws1fa{word-spacing:-0.003379px;}
.ws1f4{word-spacing:-0.003120px;}
.ws1c5{word-spacing:-0.002400px;}
.ws32{word-spacing:-0.002333px;}
.ws1c7{word-spacing:-0.002141px;}
.ws97{word-spacing:-0.001910px;}
.ws1fb{word-spacing:-0.001133px;}
.ws1fd{word-spacing:-0.000557px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:0.001483px;}
.ws11d{word-spacing:0.006012px;}
.wscd{word-spacing:0.027000px;}
.ws105{word-spacing:0.036072px;}
.ws71{word-spacing:0.048096px;}
.ws95{word-spacing:0.053798px;}
.ws27{word-spacing:0.059776px;}
.ws174{word-spacing:0.066132px;}
.wse6{word-spacing:0.072034px;}
.ws4{word-spacing:0.083686px;}
.ws69{word-spacing:0.084168px;}
.ws119{word-spacing:0.086400px;}
.ws1f7{word-spacing:0.102522px;}
.wsa9{word-spacing:0.102600px;}
.ws1cb{word-spacing:0.103072px;}
.ws51{word-spacing:0.107597px;}
.ws2b{word-spacing:0.119551px;}
.ws175{word-spacing:0.120240px;}
.ws6b{word-spacing:0.144288px;}
.wsf2{word-spacing:0.144437px;}
.wscb{word-spacing:0.151200px;}
.ws100{word-spacing:0.156312px;}
.wsf3{word-spacing:0.161395px;}
.wsa8{word-spacing:0.167400px;}
.wscc{word-spacing:0.172800px;}
.ws26{word-spacing:0.179327px;}
.ws77{word-spacing:0.180360px;}
.ws118{word-spacing:0.183600px;}
.wse7{word-spacing:0.184335px;}
.ws156{word-spacing:0.189000px;}
.ws48{word-spacing:0.195132px;}
.ws75{word-spacing:0.198396px;}
.wsfa{word-spacing:0.199307px;}
.ws6a{word-spacing:0.210420px;}
.ws16{word-spacing:0.215194px;}
.ws13a{word-spacing:0.217262px;}
.wsbb{word-spacing:0.222444px;}
.ws1f{word-spacing:0.239102px;}
.ws125{word-spacing:0.240480px;}
.ws139{word-spacing:0.268992px;}
.ws1f0{word-spacing:0.275993px;}
.ws22{word-spacing:0.298878px;}
.ws47{word-spacing:0.300007px;}
.ws1dd{word-spacing:0.322790px;}
.ws62{word-spacing:0.330660px;}
.ws2f{word-spacing:0.358654px;}
.ws129{word-spacing:0.390780px;}
.ws104{word-spacing:0.408816px;}
.wsc4{word-spacing:0.438876px;}
.wsb9{word-spacing:0.462924px;}
.ws89{word-spacing:0.478205px;}
.wsc2{word-spacing:0.480960px;}
.wse3{word-spacing:0.516665px;}
.ws1ad{word-spacing:0.537980px;}
.ws1d3{word-spacing:0.537984px;}
.wsb8{word-spacing:0.547092px;}
.wsc3{word-spacing:0.565128px;}
.ws103{word-spacing:0.583164px;}
.wsd9{word-spacing:0.597756px;}
.ws63{word-spacing:0.625248px;}
.ws19{word-spacing:0.645581px;}
.ws38{word-spacing:0.646042px;}
.ws79{word-spacing:0.655308px;}
.ws1a0{word-spacing:0.657532px;}
.ws3a{word-spacing:0.667574px;}
.ws36{word-spacing:0.672000px;}
.ws68{word-spacing:0.679356px;}
.ws3c{word-spacing:0.693840px;}
.ws39{word-spacing:0.695885px;}
.ws35{word-spacing:0.697085px;}
.ws34{word-spacing:0.698285px;}
.ws37{word-spacing:0.699840px;}
.ws3b{word-spacing:0.700262px;}
.wsdc{word-spacing:0.717307px;}
.ws198{word-spacing:0.744900px;}
.wsec{word-spacing:0.746700px;}
.wse9{word-spacing:0.748800px;}
.wsda{word-spacing:0.753000px;}
.ws12a{word-spacing:0.775548px;}
.ws10f{word-spacing:0.799200px;}
.ws61{word-spacing:0.823644px;}
.ws3d{word-spacing:0.836858px;}
.wsd3{word-spacing:0.842400px;}
.ws7b{word-spacing:0.847692px;}
.ws1ee{word-spacing:0.860774px;}
.ws111{word-spacing:0.869400px;}
.wsd2{word-spacing:0.880200px;}
.wsd4{word-spacing:0.885600px;}
.ws10c{word-spacing:0.891000px;}
.wseb{word-spacing:0.896634px;}
.ws7a{word-spacing:0.901800px;}
.ws1d9{word-spacing:0.914573px;}
.ws10d{word-spacing:0.918000px;}
.wsd5{word-spacing:0.945000px;}
.ws40{word-spacing:0.956410px;}
.ws110{word-spacing:1.004400px;}
.ws30{word-spacing:1.016185px;}
.wsd6{word-spacing:1.031400px;}
.ws1a9{word-spacing:1.075961px;}
.wsb7{word-spacing:1.118232px;}
.ws1ef{word-spacing:1.129766px;}
.ws1c{word-spacing:1.135736px;}
.ws10e{word-spacing:1.139400px;}
.ws12b{word-spacing:1.142280px;}
.ws16b{word-spacing:1.160316px;}
.ws12c{word-spacing:1.166328px;}
.ws138{word-spacing:1.195512px;}
.ws1c4{word-spacing:1.237363px;}
.wsa5{word-spacing:1.252800px;}
.ws137{word-spacing:1.255288px;}
.wsd7{word-spacing:1.258200px;}
.ws67{word-spacing:1.268532px;}
.wsbd{word-spacing:1.286568px;}
.ws1bd{word-spacing:1.291162px;}
.wsef{word-spacing:1.315063px;}
.ws208{word-spacing:1.344960px;}
.ws19f{word-spacing:1.374839px;}
.wsa{word-spacing:1.380812px;}
.ws1d{word-spacing:1.434614px;}
.ws201{word-spacing:1.452557px;}
.ws185{word-spacing:1.490976px;}
.ws19e{word-spacing:1.554166px;}
.wsa1{word-spacing:1.555200px;}
.ws184{word-spacing:1.563120px;}
.wsa0{word-spacing:1.593000px;}
.ws3e{word-spacing:1.613941px;}
.wsa2{word-spacing:1.668600px;}
.ws41{word-spacing:1.673717px;}
.ws13d{word-spacing:1.733492px;}
.wsa3{word-spacing:1.744200px;}
.wsa4{word-spacing:1.760400px;}
.ws1a4{word-spacing:1.853044px;}
.ws186{word-spacing:1.881756px;}
.ws25{word-spacing:1.972595px;}
.ws13b{word-spacing:1.990541px;}
.ws87{word-spacing:2.032370px;}
.ws187{word-spacing:2.056104px;}
.ws1b1{word-spacing:2.092146px;}
.ws1b0{word-spacing:2.151922px;}
.wsdf{word-spacing:2.211697px;}
.ws159{word-spacing:2.242476px;}
.wsbf{word-spacing:2.266524px;}
.ws46{word-spacing:2.271473px;}
.ws15e{word-spacing:2.272536px;}
.ws158{word-spacing:2.284560px;}
.ws202{word-spacing:2.313331px;}
.ws203{word-spacing:2.329789px;}
.wsdb{word-spacing:2.331248px;}
.ws9a{word-spacing:2.332800px;}
.ws9c{word-spacing:2.338200px;}
.ws9b{word-spacing:2.349000px;}
.ws167{word-spacing:2.362716px;}
.ws165{word-spacing:2.374740px;}
.ws166{word-spacing:2.380752px;}
.wsc0{word-spacing:2.392776px;}
.ws1ed{word-spacing:2.420928px;}
.wsf6{word-spacing:2.450800px;}
.ws1a3{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws2{word-spacing:2.511685px;}
.ws15f{word-spacing:2.555100px;}
.ws1c1{word-spacing:2.582323px;}
.ws1aa{word-spacing:2.630126px;}
.ws1d6{word-spacing:2.636122px;}
.ws188{word-spacing:2.651292px;}
.wsd1{word-spacing:2.673000px;}
.ws1da{word-spacing:2.689920px;}
.wscf{word-spacing:2.700000px;}
.wsd0{word-spacing:2.710800px;}
.wse0{word-spacing:2.749678px;}
.ws1a8{word-spacing:2.809453px;}
.ws1a6{word-spacing:2.869229px;}
.ws11{word-spacing:2.869236px;}
.ws173{word-spacing:2.921832px;}
.ws1a5{word-spacing:2.929004px;}
.ws204{word-spacing:2.958912px;}
.ws172{word-spacing:2.975940px;}
.ws1b5{word-spacing:2.988780px;}
.ws160{word-spacing:2.999988px;}
.ws18a{word-spacing:3.018024px;}
.ws161{word-spacing:3.030048px;}
.ws1a2{word-spacing:3.048556px;}
.ws1d7{word-spacing:3.066509px;}
.ws12{word-spacing:3.082236px;}
.ws1a1{word-spacing:3.108331px;}
.ws1e2{word-spacing:3.158865px;}
.ws1ab{word-spacing:3.168107px;}
.ws1e1{word-spacing:3.174106px;}
.ws189{word-spacing:3.204396px;}
.ws1f3{word-spacing:3.218784px;}
.ws209{word-spacing:3.219216px;}
.ws1de{word-spacing:3.219600px;}
.ws1a{word-spacing:3.219667px;}
.ws1c8{word-spacing:3.220070px;}
.ws1c9{word-spacing:3.221434px;}
.ws1c6{word-spacing:3.221904px;}
.ws206{word-spacing:3.222192px;}
.ws1fc{word-spacing:3.222672px;}
.ws1cf{word-spacing:3.222979px;}
.ws1ec{word-spacing:3.223018px;}
.ws1ff{word-spacing:3.223094px;}
.ws1d5{word-spacing:3.223469px;}
.ws1c3{word-spacing:3.223565px;}
.ws1e5{word-spacing:3.223747px;}
.ws1e8{word-spacing:3.224179px;}
.ws1ea{word-spacing:3.224506px;}
.ws1e0{word-spacing:3.224717px;}
.ws1df{word-spacing:3.225600px;}
.ws43{word-spacing:3.227882px;}
.ws98{word-spacing:3.227904px;}
.wsc9{word-spacing:3.282552px;}
.wsc8{word-spacing:3.330648px;}
.ws1fe{word-spacing:3.335501px;}
.ws193{word-spacing:3.347434px;}
.ws56{word-spacing:3.360708px;}
.ws164{word-spacing:3.402792px;}
.ws1dc{word-spacing:3.443098px;}
.ws197{word-spacing:3.466985px;}
.ws20c{word-spacing:3.496896px;}
.ws191{word-spacing:3.526760px;}
.wsde{word-spacing:3.528429px;}
.ws1e4{word-spacing:3.550694px;}
.ws5e{word-spacing:3.583152px;}
.ws1b{word-spacing:3.586536px;}
.ws19c{word-spacing:3.646312px;}
.ws178{word-spacing:3.649284px;}
.ws123{word-spacing:3.703392px;}
.ws3f{word-spacing:3.706087px;}
.wsc6{word-spacing:3.715416px;}
.wsc7{word-spacing:3.721428px;}
.wsa7{word-spacing:3.736800px;}
.wsa6{word-spacing:3.753000px;}
.ws93{word-spacing:3.927283px;}
.ws5d{word-spacing:3.937860px;}
.ws8c{word-spacing:3.945190px;}
.ws1e3{word-spacing:4.034880px;}
.ws5f{word-spacing:4.064112px;}
.ws90{word-spacing:4.064741px;}
.ws122{word-spacing:4.070124px;}
.wsb3{word-spacing:4.142268px;}
.wsb4{word-spacing:4.160304px;}
.ws1ac{word-spacing:4.184292px;}
.ws124{word-spacing:4.214412px;}
.ws136{word-spacing:4.244068px;}
.ws1be{word-spacing:4.250074px;}
.ws23{word-spacing:4.303843px;}
.ws1f5{word-spacing:4.303872px;}
.ws1ca{word-spacing:4.357670px;}
.ws1a7{word-spacing:4.363619px;}
.ws169{word-spacing:4.388760px;}
.ws1b6{word-spacing:4.423394px;}
.ws16a{word-spacing:4.442868px;}
.ws1f9{word-spacing:4.465267px;}
.ws9e{word-spacing:4.482000px;}
.ws14{word-spacing:4.519066px;}
.ws17a{word-spacing:4.521024px;}
.ws9d{word-spacing:4.525200px;}
.wsdd{word-spacing:4.542946px;}
.ws134{word-spacing:4.602721px;}
.ws60{word-spacing:4.731444px;}
.ws1f2{word-spacing:4.734259px;}
.ws13f{word-spacing:4.782048px;}
.ws179{word-spacing:4.803588px;}
.ws151{word-spacing:4.822200px;}
.ws86{word-spacing:4.841824px;}
.ws150{word-spacing:4.865400px;}
.ws42{word-spacing:4.961375px;}
.wse4{word-spacing:5.021150px;}
.ws64{word-spacing:5.032044px;}
.ws65{word-spacing:5.038056px;}
.wsab{word-spacing:5.062104px;}
.ws20{word-spacing:5.080926px;}
.ws57{word-spacing:5.086152px;}
.ws15c{word-spacing:5.110200px;}
.ws15d{word-spacing:5.128236px;}
.wsac{word-spacing:5.134248px;}
.ws76{word-spacing:5.146272px;}
.ws66{word-spacing:5.164308px;}
.ws1d4{word-spacing:5.164646px;}
.wsd8{word-spacing:5.221800px;}
.ws143{word-spacing:5.320028px;}
.ws19d{word-spacing:5.379804px;}
.ws1f8{word-spacing:5.379840px;}
.wsaa{word-spacing:5.392764px;}
.ws183{word-spacing:5.434848px;}
.ws8{word-spacing:5.481407px;}
.ws200{word-spacing:5.541235px;}
.ws194{word-spacing:5.559131px;}
.ws1d8{word-spacing:5.702630px;}
.ws121{word-spacing:5.723424px;}
.ws199{word-spacing:5.738458px;}
.wsbc{word-spacing:5.801580px;}
.ws1f1{word-spacing:6.025421px;}
.ws13c{word-spacing:6.037336px;}
.ws1e6{word-spacing:6.079219px;}
.ws182{word-spacing:6.204384px;}
.ws11f{word-spacing:6.222420px;}
.ws6e{word-spacing:6.228432px;}
.ws5b{word-spacing:6.276528px;}
.ws181{word-spacing:6.288552px;}
.wsad{word-spacing:6.306588px;}
.ws120{word-spacing:6.318612px;}
.ws96{word-spacing:6.348211px;}
.ws6d{word-spacing:6.354684px;}
.wse8{word-spacing:6.395989px;}
.ws59{word-spacing:6.474924px;}
.ws5a{word-spacing:6.480936px;}
.ws1c0{word-spacing:6.509606px;}
.ws1ae{word-spacing:6.515540px;}
.ws108{word-spacing:6.529032px;}
.ws18f{word-spacing:6.575316px;}
.ws11a{word-spacing:6.589152px;}
.ws11b{word-spacing:6.613200px;}
.ws58{word-spacing:6.619212px;}
.ws19b{word-spacing:6.635092px;}
.ws16d{word-spacing:6.913800px;}
.ws205{word-spacing:6.939994px;}
.ws16c{word-spacing:6.949872px;}
.ws195{word-spacing:6.993745px;}
.ws135{word-spacing:7.053521px;}
.ws1af{word-spacing:7.113296px;}
.ws15{word-spacing:7.316582px;}
.ws1b2{word-spacing:7.412174px;}
.wsed{word-spacing:7.471950px;}
.wsee{word-spacing:7.531726px;}
.ws107{word-spacing:7.581132px;}
.wse1{word-spacing:7.651277px;}
.wse5{word-spacing:7.657841px;}
.ws106{word-spacing:7.683336px;}
.ws9f{word-spacing:7.689600px;}
.ws190{word-spacing:7.770828px;}
.ws16f{word-spacing:8.044056px;}
.wsf7{word-spacing:8.069706px;}
.ws16e{word-spacing:8.080128px;}
.ws1f6{word-spacing:8.338752px;}
.ws196{word-spacing:8.368584px;}
.wsb1{word-spacing:9.721404px;}
.ws6{word-spacing:9.833058px;}
.wsb0{word-spacing:9.835632px;}
.wsb2{word-spacing:10.166292px;}
.ws55{word-spacing:11.620476px;}
.ws1db{word-spacing:11.833004px;}
.ws7{word-spacing:11.841512px;}
.ws1bf{word-spacing:11.896469px;}
.ws12f{word-spacing:12.294540px;}
.ws17b{word-spacing:12.372696px;}
.ws17c{word-spacing:12.408768px;}
.ws1cd{word-spacing:14.095181px;}
.ws1ce{word-spacing:14.364173px;}
.ws102{word-spacing:15.931800px;}
.ws101{word-spacing:15.961860px;}
.ws5{word-spacing:22.339429px;}
.ws9{word-spacing:22.720640px;}
.wsd{word-spacing:46.627738px;}
.ws33{word-spacing:277.330752px;}
._3{margin-left:-35.544868px;}
._36{margin-left:-8.015962px;}
._a{margin-left:-6.832397px;}
._7{margin-left:-5.308087px;}
._13{margin-left:-3.993014px;}
._4{margin-left:-2.689920px;}
._0{margin-left:-1.506341px;}
._26{width:1.445976px;}
._5{width:2.999570px;}
._6{width:4.085490px;}
._2b{width:6.120216px;}
._2d{width:9.564096px;}
._2c{width:11.173212px;}
._1{width:12.220133px;}
._10{width:14.291431px;}
._c{width:16.193318px;}
._14{width:18.066374px;}
._8{width:19.152230px;}
._f{width:21.011165px;}
._b{width:22.649126px;}
._25{width:24.400396px;}
._2{width:25.946136px;}
._28{width:28.393419px;}
._31{width:29.828024px;}
._e{width:31.860395px;}
._2f{width:32.876580px;}
._d{width:34.311194px;}
._34{width:35.562337px;}
._29{width:36.582898px;}
._30{width:37.897730px;}
._9{width:39.057638px;}
._2a{width:41.544042px;}
._35{width:60.016352px;}
._37{width:61.868160px;}
._33{width:88.767360px;}
._24{width:101.409984px;}
._1a{width:108.188582px;}
._1d{width:114.913382px;}
._21{width:124.650893px;}
._19{width:135.840960px;}
._16{width:141.328397px;}
._22{width:156.768538px;}
._1c{width:163.484669px;}
._1f{width:167.259226px;}
._23{width:170.218138px;}
._20{width:180.708826px;}
._1e{width:185.089219px;}
._1b{width:188.133005px;}
._17{width:198.538819px;}
._18{width:211.320115px;}
._15{width:351.895334px;}
._11{width:872.917232px;}
._27{width:1999.047456px;}
._32{width:2378.612466px;}
._12{width:2401.475545px;}
._2e{width:2402.522466px;}
.fc5{color:rgb(8,117,183);}
.fc4{color:rgb(53,30,58);}
.fc6{color:transparent;}
.fc3{color:rgb(90,40,100);}
.fc2{color:rgb(14,15,14);}
.fc1{color:rgb(72,62,33);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:33.120000px;}
.fs7{font-size:35.865600px;}
.fsf{font-size:36.000000px;}
.fs0{font-size:41.842800px;}
.fs6{font-size:45.429600px;}
.fs11{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fsc{font-size:47.880000px;}
.fs1{font-size:52.914960px;}
.fs9{font-size:53.798400px;}
.fse{font-size:54.000000px;}
.fsa{font-size:56.058000px;}
.fs2{font-size:56.694600px;}
.fs4{font-size:59.775600px;}
.fsd{font-size:60.120000px;}
.fsb{font-size:62.286600px;}
.fs3{font-size:68.033520px;}
.fs5{font-size:107.596800px;}
.y15f{bottom:-780.343050px;}
.y186{bottom:-720.475635px;}
.y185{bottom:-701.306373px;}
.y184{bottom:-682.046931px;}
.y183{bottom:-662.787489px;}
.y182{bottom:-643.618227px;}
.y181{bottom:-624.358785px;}
.y180{bottom:-605.189523px;}
.y17f{bottom:-585.930081px;}
.y17e{bottom:-566.670639px;}
.y17d{bottom:-547.501377px;}
.y17c{bottom:-528.241935px;}
.y17b{bottom:-509.072673px;}
.y17a{bottom:-489.813231px;}
.y105{bottom:-473.882550px;}
.y179{bottom:-470.553789px;}
.y178{bottom:-451.384527px;}
.y177{bottom:-432.125085px;}
.y176{bottom:-412.955823px;}
.y132{bottom:-409.442550px;}
.y130{bottom:-409.440696px;}
.y131{bottom:-405.662550px;}
.y175{bottom:-393.696381px;}
.y12f{bottom:-390.181254px;}
.y174{bottom:-374.436939px;}
.y12e{bottom:-371.011992px;}
.y173{bottom:-355.267677px;}
.y12d{bottom:-351.752550px;}
.y12b{bottom:-351.745692px;}
.y12c{bottom:-347.972550px;}
.y172{bottom:-336.008235px;}
.y12a{bottom:-332.486250px;}
.y171{bottom:-316.748793px;}
.y129{bottom:-313.316988px;}
.y170{bottom:-297.579531px;}
.y128{bottom:-294.057546px;}
.y16f{bottom:-278.320089px;}
.y127{bottom:-274.888284px;}
.y16e{bottom:-259.150827px;}
.y126{bottom:-255.628842px;}
.y16d{bottom:-239.891385px;}
.y125{bottom:-236.369400px;}
.y16c{bottom:-220.631943px;}
.y124{bottom:-217.200138px;}
.y16b{bottom:-201.461178px;}
.y123{bottom:-197.940696px;}
.y16a{bottom:-182.201736px;}
.y122{bottom:-178.771434px;}
.y169{bottom:-163.032474px;}
.y121{bottom:-159.511992px;}
.ybe{bottom:-153.571050px;}
.y120{bottom:-140.252550px;}
.y168{bottom:-139.273050px;}
.y11f{bottom:-103.532100px;}
.y167{bottom:-102.463950px;}
.y11e{bottom:-86.072550px;}
.y166{bottom:-85.093500px;}
.ye0{bottom:-84.451500px;}
.y11d{bottom:-68.792550px;}
.y165{bottom:-67.813500px;}
.ydf{bottom:-67.171500px;}
.y91{bottom:-62.382600px;}
.y11a{bottom:-51.512850px;}
.y11c{bottom:-51.512550px;}
.y163{bottom:-50.443050px;}
.yde{bottom:-49.801050px;}
.y11b{bottom:-47.732550px;}
.y164{bottom:-46.663050px;}
.y119{bottom:-34.232850px;}
.y162{bottom:-33.163050px;}
.ydd{bottom:-32.521050px;}
.y118{bottom:-16.862400px;}
.y161{bottom:-15.883050px;}
.ydc{bottom:-15.241050px;}
.yad{bottom:-5.758578px;}
.y0{bottom:0.000000px;}
.y117{bottom:5.548179px;}
.y160{bottom:6.527049px;}
.ydb{bottom:7.175925px;}
.y1b{bottom:9.473101px;}
.y1a{bottom:28.937869px;}
.y49{bottom:31.890000px;}
.y19{bottom:32.769195px;}
.y48{bottom:103.621500px;}
.y17{bottom:104.646000px;}
.y7f{bottom:115.699500px;}
.y274{bottom:116.458500px;}
.y1e4{bottom:116.907000px;}
.y20b{bottom:118.251000px;}
.y1a8{bottom:119.148000px;}
.y1b8{bottom:119.596500px;}
.y47{bottom:122.449500px;}
.y16{bottom:122.535000px;}
.ye7{bottom:123.514500px;}
.y23d{bottom:130.132500px;}
.y273{bottom:133.719000px;}
.y7e{bottom:134.529000px;}
.y1e3{bottom:135.736500px;}
.y155{bottom:135.879000px;}
.y20a{bottom:137.080500px;}
.y1a7{bottom:137.977500px;}
.y1b7{bottom:138.426000px;}
.y15{bottom:140.422500px;}
.y46{bottom:141.279000px;}
.y156{bottom:141.303000px;}
.ye6{bottom:142.747500px;}
.y23c{bottom:147.393000px;}
.y270{bottom:150.978000px;}
.y7d{bottom:153.358500px;}
.y1e2{bottom:154.566000px;}
.y154{bottom:154.708500px;}
.y209{bottom:155.910000px;}
.y1a6{bottom:156.807000px;}
.y1b6{bottom:157.255500px;}
.y14{bottom:158.310000px;}
.y45{bottom:160.108500px;}
.ye5{bottom:161.980500px;}
.y23b{bottom:164.653500px;}
.y18f{bottom:165.534000px;}
.y26f{bottom:168.238500px;}
.yb3{bottom:168.849000px;}
.y7c{bottom:172.188000px;}
.y153{bottom:173.538000px;}
.y208{bottom:174.739500px;}
.y1a5{bottom:175.636500px;}
.y1b5{bottom:176.085000px;}
.y13{bottom:176.199000px;}
.y1e1{bottom:177.879000px;}
.y44{bottom:178.938000px;}
.ye4{bottom:181.213500px;}
.y239{bottom:181.912500px;}
.y23a{bottom:181.914000px;}
.y26e{bottom:185.499000px;}
.yb2{bottom:188.082000px;}
.y7b{bottom:191.017500px;}
.y151{bottom:192.367500px;}
.y207{bottom:193.569000px;}
.y12{bottom:194.086500px;}
.y101{bottom:194.466000px;}
.y1b4{bottom:194.914500px;}
.y43{bottom:197.767500px;}
.y152{bottom:197.791500px;}
.y238{bottom:199.173000px;}
.ye3{bottom:200.446500px;}
.y26d{bottom:202.759500px;}
.yb1{bottom:207.315000px;}
.y7a{bottom:209.847000px;}
.y150{bottom:211.197000px;}
.y1e0{bottom:211.503000px;}
.y11{bottom:211.974000px;}
.y206{bottom:212.398500px;}
.yff{bottom:213.295500px;}
.y1b3{bottom:213.744000px;}
.y237{bottom:216.433500px;}
.y42{bottom:216.597000px;}
.y100{bottom:218.719500px;}
.ye2{bottom:219.678000px;}
.y26c{bottom:220.020000px;}
.yb0{bottom:226.548000px;}
.y10{bottom:229.863000px;}
.y14f{bottom:230.026500px;}
.y1df{bottom:230.331000px;}
.y205{bottom:231.228000px;}
.yfd{bottom:232.125000px;}
.y1b2{bottom:232.573500px;}
.y236{bottom:233.694000px;}
.y41{bottom:235.426500px;}
.y26b{bottom:237.280500px;}
.yfe{bottom:237.549000px;}
.ye1{bottom:238.911000px;}
.y18e{bottom:240.852000px;}
.yaf{bottom:245.781000px;}
.y14e{bottom:248.856000px;}
.y1de{bottom:249.160500px;}
.yfb{bottom:250.954500px;}
.y1b1{bottom:251.403000px;}
.y40{bottom:254.256000px;}
.y204{bottom:254.541000px;}
.y79{bottom:255.309000px;}
.yfc{bottom:256.378500px;}
.ybb{bottom:264.330000px;}
.yae{bottom:265.014000px;}
.y14d{bottom:267.685500px;}
.y1dd{bottom:267.990000px;}
.y235{bottom:268.215000px;}
.yf9{bottom:269.784000px;}
.y1b0{bottom:270.232500px;}
.y76{bottom:270.388500px;}
.y78{bottom:271.747500px;}
.y26a{bottom:271.801500px;}
.y3f{bottom:273.085500px;}
.yfa{bottom:275.208000px;}
.y234{bottom:285.475500px;}
.y14c{bottom:286.515000px;}
.y8e{bottom:287.443050px;}
.y203{bottom:288.165000px;}
.y77{bottom:288.186000px;}
.yf8{bottom:288.613500px;}
.y1af{bottom:289.062000px;}
.y1dc{bottom:291.303000px;}
.y3e{bottom:291.915000px;}
.yf{bottom:299.892000px;}
.y233{bottom:302.736000px;}
.y14b{bottom:305.344500px;}
.y269{bottom:306.321000px;}
.y202{bottom:306.994500px;}
.yf7{bottom:307.443000px;}
.y1ae{bottom:307.891500px;}
.y3d{bottom:310.744500px;}
.y75{bottom:311.826000px;}
.ye{bottom:317.779500px;}
.y232{bottom:319.996500px;}
.y18d{bottom:323.442000px;}
.y268{bottom:323.581500px;}
.y14a{bottom:324.174000px;}
.y1db{bottom:324.927000px;}
.y201{bottom:325.824000px;}
.yf6{bottom:326.272500px;}
.y1ad{bottom:326.719500px;}
.y72{bottom:326.907000px;}
.y74{bottom:328.264500px;}
.y3c{bottom:329.574000px;}
.yd{bottom:335.667000px;}
.y231{bottom:337.255500px;}
.y267{bottom:340.842000px;}
.y18c{bottom:342.675000px;}
.y149{bottom:343.003500px;}
.y1da{bottom:343.756500px;}
.y200{bottom:344.653500px;}
.y73{bottom:344.703000px;}
.yf5{bottom:345.102000px;}
.y1ac{bottom:345.549000px;}
.y3b{bottom:348.403500px;}
.yc{bottom:353.556000px;}
.y15e{bottom:353.747085px;}
.y230{bottom:354.516000px;}
.y266{bottom:358.102500px;}
.y148{bottom:361.833000px;}
.y18b{bottom:361.908000px;}
.y1d9{bottom:362.586000px;}
.y15d{bottom:363.376950px;}
.y1ff{bottom:363.483000px;}
.yf4{bottom:363.931500px;}
.y1ab{bottom:364.378500px;}
.y3a{bottom:367.233000px;}
.y71{bottom:368.344500px;}
.y22f{bottom:371.776500px;}
.y265{bottom:375.363000px;}
.yda{bottom:377.796186px;}
.y147{bottom:380.662500px;}
.y189{bottom:381.141000px;}
.y1d8{bottom:381.415500px;}
.yb{bottom:381.904500px;}
.y1fe{bottom:382.312500px;}
.y1a4{bottom:382.761000px;}
.y1aa{bottom:383.208000px;}
.y70{bottom:384.783000px;}
.y18a{bottom:386.023500px;}
.y39{bottom:386.062500px;}
.yf3{bottom:387.243000px;}
.y22e{bottom:389.037000px;}
.y264{bottom:392.623500px;}
.yd9{bottom:396.966951px;}
.y6d{bottom:398.845500px;}
.y146{bottom:399.492000px;}
.ya{bottom:399.792000px;}
.y1d7{bottom:400.245000px;}
.y188{bottom:400.374000px;}
.y1fd{bottom:401.142000px;}
.y6f{bottom:401.221500px;}
.y1a3{bottom:401.589000px;}
.y1a9{bottom:402.037500px;}
.y38{bottom:404.892000px;}
.y22d{bottom:406.297500px;}
.y263{bottom:409.884000px;}
.y116{bottom:413.247450px;}
.y114{bottom:413.248746px;}
.yd8{bottom:416.226393px;}
.y115{bottom:417.027450px;}
.y145{bottom:418.320000px;}
.y1d5{bottom:419.074500px;}
.y187{bottom:419.607000px;}
.y1fc{bottom:419.971500px;}
.y1a2{bottom:420.418500px;}
.yf2{bottom:420.867000px;}
.y22c{bottom:423.558000px;}
.y37{bottom:423.721500px;}
.y1d6{bottom:424.498500px;}
.y6e{bottom:424.861500px;}
.y9{bottom:426.646500px;}
.y262{bottom:427.144500px;}
.y113{bottom:432.508188px;}
.yd7{bottom:435.485835px;}
.y143{bottom:437.149500px;}
.y1d4{bottom:437.904000px;}
.y1fb{bottom:438.801000px;}
.y1a1{bottom:439.248000px;}
.yf1{bottom:439.696500px;}
.y22b{bottom:440.818500px;}
.y15c{bottom:442.036500px;}
.y36{bottom:442.551000px;}
.y144{bottom:442.575000px;}
.y261{bottom:444.403500px;}
.y8{bottom:444.534000px;}
.y112{bottom:451.677450px;}
.y110{bottom:451.679304px;}
.yd6{bottom:454.656600px;}
.y111{bottom:455.457450px;}
.y142{bottom:455.979000px;}
.y6c{bottom:456.481500px;}
.y1d3{bottom:456.733500px;}
.y1fa{bottom:457.630500px;}
.y1a0{bottom:458.077500px;}
.y22a{bottom:458.079000px;}
.yf0{bottom:458.526000px;}
.y35{bottom:461.380500px;}
.y260{bottom:461.664000px;}
.y7{bottom:462.423000px;}
.y10f{bottom:470.938746px;}
.y141{bottom:474.808500px;}
.y229{bottom:475.339500px;}
.y1d2{bottom:475.563000px;}
.y6b{bottom:475.714500px;}
.y1f9{bottom:476.458500px;}
.y19f{bottom:476.907000px;}
.yef{bottom:477.355500px;}
.yd5{bottom:478.416024px;}
.y25f{bottom:478.924500px;}
.y34{bottom:480.210000px;}
.y6{bottom:480.310500px;}
.yac{bottom:490.141242px;}
.y10e{bottom:490.198188px;}
.y228{bottom:492.598500px;}
.y13f{bottom:493.638000px;}
.y6a{bottom:494.946000px;}
.y1f8{bottom:495.288000px;}
.y19e{bottom:495.736500px;}
.yee{bottom:496.185000px;}
.y5{bottom:498.198000px;}
.y1d1{bottom:498.876000px;}
.y140{bottom:499.063500px;}
.y33{bottom:503.523000px;}
.y10d{bottom:509.367450px;}
.y10b{bottom:509.369529px;}
.yab{bottom:509.400684px;}
.y227{bottom:509.859000px;}
.y13e{bottom:512.467500px;}
.y10c{bottom:513.147450px;}
.y25e{bottom:513.445500px;}
.y1f7{bottom:514.117500px;}
.y19d{bottom:514.566000px;}
.yed{bottom:515.014500px;}
.yd4{bottom:515.675394px;}
.y4{bottom:516.087000px;}
.y226{bottom:527.119500px;}
.y10a{bottom:528.628971px;}
.yaa{bottom:528.660126px;}
.y25d{bottom:530.706000px;}
.y13d{bottom:531.297000px;}
.y69{bottom:532.051500px;}
.y1d0{bottom:532.500000px;}
.y1f5{bottom:532.947000px;}
.y19c{bottom:533.395500px;}
.yec{bottom:533.844000px;}
.y3{bottom:533.974500px;}
.yd3{bottom:534.844656px;}
.y1f6{bottom:538.372500px;}
.y225{bottom:544.380000px;}
.y109{bottom:547.798233px;}
.ya9{bottom:547.829388px;}
.y25c{bottom:547.966500px;}
.y13c{bottom:550.126500px;}
.y68{bottom:550.881000px;}
.y1cf{bottom:551.329500px;}
.y1f4{bottom:551.776500px;}
.y2{bottom:551.862000px;}
.y19b{bottom:552.225000px;}
.yeb{bottom:552.673500px;}
.yd2{bottom:554.104098px;}
.y224{bottom:561.640500px;}
.y25b{bottom:565.227000px;}
.y108{bottom:567.057675px;}
.ya8{bottom:567.088830px;}
.y13b{bottom:568.956000px;}
.y1{bottom:569.751000px;}
.y1f3{bottom:570.606000px;}
.y19a{bottom:571.054500px;}
.yea{bottom:571.503000px;}
.yd1{bottom:573.273360px;}
.y67{bottom:574.192500px;}
.y1ce{bottom:574.641000px;}
.y32{bottom:578.673000px;}
.y223{bottom:578.901000px;}
.y25a{bottom:582.487500px;}
.ya7{bottom:586.258092px;}
.y107{bottom:586.317117px;}
.y1f2{bottom:586.705500px;}
.y13a{bottom:587.785500px;}
.y1f1{bottom:589.435500px;}
.y199{bottom:589.884000px;}
.ye9{bottom:590.332500px;}
.yd0{bottom:592.532802px;}
.y66{bottom:594.367500px;}
.y222{bottom:596.161500px;}
.y259{bottom:599.746500px;}
.y106{bottom:605.487882px;}
.ya6{bottom:605.517534px;}
.y1cd{bottom:608.265000px;}
.y198{bottom:608.713500px;}
.ye8{bottom:609.162000px;}
.ycf{bottom:611.792244px;}
.y221{bottom:613.422000px;}
.y1f0{bottom:613.690500px;}
.y31{bottom:616.062000px;}
.y258{bottom:617.007000px;}
.y139{bottom:621.351000px;}
.ya5{bottom:624.776976px;}
.y1cc{bottom:627.094500px;}
.y197{bottom:627.543000px;}
.y65{bottom:627.991500px;}
.y220{bottom:630.681000px;}
.yce{bottom:630.961506px;}
.y257{bottom:634.267500px;}
.y30{bottom:635.518500px;}
.y138{bottom:640.584000px;}
.ya4{bottom:643.946238px;}
.y1cb{bottom:645.924000px;}
.yba{bottom:646.372500px;}
.y64{bottom:646.821000px;}
.y21f{bottom:647.941500px;}
.ycd{bottom:650.220948px;}
.y256{bottom:651.528000px;}
.y2f{bottom:654.976500px;}
.y137{bottom:659.817000px;}
.y104{bottom:660.207585px;}
.ya3{bottom:663.205680px;}
.y1ca{bottom:664.753500px;}
.yb9{bottom:665.202000px;}
.y63{bottom:665.650500px;}
.y255{bottom:668.788500px;}
.ycc{bottom:669.390210px;}
.y103{bottom:669.837450px;}
.y2e{bottom:674.433000px;}
.y135{bottom:679.050000px;}
.ya2{bottom:682.374942px;}
.y21e{bottom:682.462500px;}
.y1c9{bottom:683.583000px;}
.y136{bottom:683.932500px;}
.yb8{bottom:684.031500px;}
.y62{bottom:684.480000px;}
.y254{bottom:686.049000px;}
.ycb{bottom:688.649652px;}
.y2d{bottom:693.891000px;}
.y134{bottom:698.283000px;}
.y21d{bottom:699.723000px;}
.y272{bottom:700.686000px;}
.ya1{bottom:701.634384px;}
.y1c8{bottom:702.412500px;}
.yb7{bottom:702.861000px;}
.y61{bottom:703.309500px;}
.y1ef{bottom:706.896000px;}
.y196{bottom:707.344500px;}
.yca{bottom:707.909094px;}
.y2c{bottom:713.347500px;}
.y21c{bottom:716.983500px;}
.y133{bottom:717.516000px;}
.y253{bottom:720.570000px;}
.ya0{bottom:720.893826px;}
.y1c7{bottom:721.242000px;}
.yb6{bottom:721.690500px;}
.y60{bottom:722.139000px;}
.yc9{bottom:727.079859px;}
.y2b{bottom:732.804000px;}
.y252{bottom:737.829000px;}
.y21b{bottom:738.727500px;}
.y9f{bottom:740.064591px;}
.y1c6{bottom:740.071500px;}
.y1ee{bottom:740.520000px;}
.y5f{bottom:740.968500px;}
.y102{bottom:742.933500px;}
.yb5{bottom:745.003500px;}
.yc8{bottom:746.339301px;}
.y2a{bottom:752.262000px;}
.y251{bottom:755.089500px;}
.y1c5{bottom:758.901000px;}
.y9e{bottom:759.324033px;}
.y1ed{bottom:759.349500px;}
.y5e{bottom:759.798000px;}
.yc7{bottom:765.510066px;}
.y29{bottom:771.718500px;}
.y250{bottom:772.350000px;}
.y21a{bottom:772.351500px;}
.y8d{bottom:776.833500px;}
.y1c4{bottom:777.730500px;}
.y15b{bottom:778.179000px;}
.y5d{bottom:778.627500px;}
.y9d{bottom:782.993277px;}
.y195{bottom:784.051500px;}
.yc6{bottom:784.769508px;}
.y24f{bottom:789.610500px;}
.y28{bottom:791.175000px;}
.y8c{bottom:795.663000px;}
.y1c3{bottom:796.560000px;}
.y15a{bottom:797.008500px;}
.y5c{bottom:797.457000px;}
.y219{bottom:798.891000px;}
.y194{bottom:802.881000px;}
.yc5{bottom:804.028950px;}
.y9c{bottom:806.752701px;}
.y24e{bottom:806.871000px;}
.y27{bottom:810.633000px;}
.y8b{bottom:814.492500px;}
.y1c2{bottom:815.389500px;}
.y159{bottom:815.838000px;}
.yb4{bottom:816.285000px;}
.y5b{bottom:816.286500px;}
.y218{bottom:816.465000px;}
.y24d{bottom:824.131500px;}
.y8a{bottom:833.322000px;}
.y1c1{bottom:834.219000px;}
.y1ec{bottom:834.667500px;}
.y5a{bottom:835.114500px;}
.y271{bottom:838.768500px;}
.y158{bottom:839.149500px;}
.yc4{bottom:840.838050px;}
.y24c{bottom:841.392000px;}
.y217{bottom:843.006000px;}
.y9b{bottom:844.012071px;}
.y89{bottom:852.151500px;}
.y26{bottom:852.826500px;}
.y1c0{bottom:853.048500px;}
.y1eb{bottom:853.497000px;}
.y59{bottom:853.944000px;}
.yc3{bottom:858.208500px;}
.y24b{bottom:858.652500px;}
.y9a{bottom:863.181333px;}
.y25{bottom:864.627000px;}
.y216{bottom:869.547000px;}
.y88{bottom:870.981000px;}
.y1bf{bottom:871.878000px;}
.y1ea{bottom:872.326500px;}
.y58{bottom:872.773500px;}
.yc2{bottom:875.488500px;}
.y24a{bottom:875.913000px;}
.y193{bottom:878.199000px;}
.y24{bottom:880.767000px;}
.y99{bottom:882.440775px;}
.y215{bottom:887.121000px;}
.y87{bottom:889.810500px;}
.y1be{bottom:890.707500px;}
.y1e9{bottom:891.156000px;}
.y57{bottom:891.603000px;}
.yc1{bottom:892.768500px;}
.y249{bottom:893.172000px;}
.y192{bottom:897.028500px;}
.y23{bottom:901.245000px;}
.y98{bottom:901.700217px;}
.y86{bottom:908.640000px;}
.y1bd{bottom:909.537000px;}
.y1e8{bottom:909.984000px;}
.yc0{bottom:910.138950px;}
.y56{bottom:910.432500px;}
.y22{bottom:913.045500px;}
.y214{bottom:913.660500px;}
.y97{bottom:920.869479px;}
.ybf{bottom:927.418950px;}
.y85{bottom:927.469500px;}
.y248{bottom:927.693000px;}
.y1e7{bottom:928.813500px;}
.y55{bottom:929.262000px;}
.y213{bottom:931.234500px;}
.y1bc{bottom:932.848500px;}
.y21{bottom:933.525000px;}
.y157{bottom:934.687500px;}
.y96{bottom:940.128921px;}
.y247{bottom:944.953500px;}
.y84{bottom:946.299000px;}
.y1e6{bottom:947.643000px;}
.y54{bottom:948.091500px;}
.y212{bottom:948.810000px;}
.y95{bottom:959.298183px;}
.y246{bottom:962.214000px;}
.y83{bottom:965.128500px;}
.y1bb{bottom:966.472500px;}
.y53{bottom:966.921000px;}
.y277{bottom:974.916000px;}
.y211{bottom:975.349500px;}
.y20{bottom:977.470500px;}
.y94{bottom:978.557625px;}
.y245{bottom:979.474500px;}
.ybd{bottom:980.519085px;}
.y82{bottom:983.958000px;}
.y1ba{bottom:985.302000px;}
.y52{bottom:985.750500px;}
.y1e5{bottom:989.785500px;}
.ybc{bottom:990.148950px;}
.y276{bottom:992.176500px;}
.y210{bottom:992.923500px;}
.y1f{bottom:996.300000px;}
.y244{bottom:996.735000px;}
.y93{bottom:997.817067px;}
.y1b9{bottom:1004.131500px;}
.y51{bottom:1004.580000px;}
.y81{bottom:1007.269500px;}
.y275{bottom:1009.437000px;}
.y20f{bottom:1010.497500px;}
.y243{bottom:1013.995500px;}
.y92{bottom:1016.987832px;}
.y50{bottom:1023.409500px;}
.y80{bottom:1027.444500px;}
.y20e{bottom:1028.073000px;}
.y191{bottom:1028.835000px;}
.y242{bottom:1031.254500px;}
.y1e{bottom:1036.630500px;}
.y4f{bottom:1042.239000px;}
.y20d{bottom:1045.647000px;}
.y241{bottom:1048.515000px;}
.y4e{bottom:1061.068500px;}
.y20c{bottom:1063.221000px;}
.y1d{bottom:1064.874000px;}
.y240{bottom:1065.775500px;}
.y190{bottom:1066.492500px;}
.y90{bottom:1071.707535px;}
.y4d{bottom:1079.898000px;}
.y8f{bottom:1081.337400px;}
.y23f{bottom:1083.036000px;}
.y1c{bottom:1093.119000px;}
.y4c{bottom:1098.727500px;}
.y23e{bottom:1100.296500px;}
.y4b{bottom:1117.557000px;}
.y18{bottom:1136.605500px;}
.y4a{bottom:1177.662000px;}
.h21{height:27.974981px;}
.h1d{height:30.807422px;}
.h22{height:31.526842px;}
.hb{height:32.565965px;}
.h1c{height:33.486328px;}
.h4{height:35.876343px;}
.h10{height:37.334628px;}
.h2{height:37.993262px;}
.h11{height:38.734848px;}
.h5{height:39.402747px;}
.h1a{height:41.250077px;}
.h12{height:41.482876px;}
.h20{height:41.842920px;}
.he{height:43.038432px;}
.h16{height:43.269961px;}
.hc{height:43.421105px;}
.h7{height:43.875290px;}
.h14{height:44.536816px;}
.h6{height:46.126727px;}
.hd{height:48.848947px;}
.h23{height:49.117939px;}
.h18{height:50.229492px;}
.h3{height:50.931027px;}
.hf{height:54.276245px;}
.ha{height:54.405312px;}
.h9{height:55.352206px;}
.h15{height:55.922168px;}
.h24{height:57.523262px;}
.h19{height:62.946077px;}
.h1e{height:62.952077px;}
.h8{height:77.469696px;}
.h1f{height:314.541000px;}
.h17{height:358.402500px;}
.h1b{height:389.568000px;}
.h13{height:465.750450px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:215.864690px;}
.w3{width:499.803000px;}
.w6{width:588.103500px;}
.w5{width:610.035300px;}
.w4{width:634.852500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x4a{left:-199.363500px;}
.xa9{left:-92.016000px;}
.x83{left:-80.473200px;}
.x5d{left:-72.970500px;}
.x4c{left:-3.794590px;}
.x0{left:0.000000px;}
.x4b{left:28.065305px;}
.x1{left:53.574000px;}
.x3{left:60.027581px;}
.xf0{left:85.848000px;}
.xab{left:103.554000px;}
.x85{left:115.095710px;}
.x5e{left:122.599500px;}
.x5c{left:128.818500px;}
.xad{left:135.413894px;}
.x82{left:141.227700px;}
.x84{left:146.955605px;}
.x5f{left:154.459500px;}
.x86{left:175.306800px;}
.x87{left:179.806800px;}
.x2{left:181.274369px;}
.xac{left:183.834000px;}
.x8b{left:229.396800px;}
.x8c{left:233.536800px;}
.xee{left:247.333500px;}
.x6{left:248.526000px;}
.x4{left:249.591000px;}
.x38{left:253.989000px;}
.x5{left:269.914500px;}
.x30{left:277.339500px;}
.x43{left:278.577000px;}
.xca{left:279.861000px;}
.x7{left:281.479500px;}
.x6e{left:283.015500px;}
.x37{left:284.233500px;}
.xcd{left:288.937500px;}
.x36{left:290.769000px;}
.x44{left:294.604500px;}
.x27{left:297.277500px;}
.x6f{left:298.531500px;}
.x6b{left:299.992500px;}
.x18{left:304.191000px;}
.x39{left:307.882500px;}
.x28{left:312.222000px;}
.xcb{left:313.533000px;}
.x73{left:314.686500px;}
.x19{left:319.135500px;}
.x14{left:321.520500px;}
.xd7{left:323.811000px;}
.x29{left:325.189500px;}
.x1a{left:326.457000px;}
.x62{left:328.569000px;}
.x50{left:330.030000px;}
.x65{left:332.466000px;}
.xae{left:334.173000px;}
.x15{left:336.465000px;}
.x59{left:338.913000px;}
.x2a{left:340.134000px;}
.x1b{left:341.401500px;}
.xe0{left:342.423000px;}
.x2b{left:343.944000px;}
.x51{left:346.068000px;}
.x66{left:348.318000px;}
.xea{left:349.488000px;}
.xf3{left:350.709000px;}
.xa6{left:353.875500px;}
.x5a{left:354.927000px;}
.xe1{left:357.366000px;}
.x2c{left:358.888500px;}
.x4f{left:360.561000px;}
.x90{left:364.575000px;}
.x20{left:366.457500px;}
.xe6{left:371.082000px;}
.x91{left:373.909500px;}
.x33{left:376.422000px;}
.xe7{left:377.887500px;}
.x32{left:379.731000px;}
.x21{left:381.400500px;}
.x35{left:388.077000px;}
.xba{left:392.196000px;}
.x8a{left:398.776800px;}
.xcc{left:399.780000px;}
.x45{left:401.457000px;}
.xc{left:402.466500px;}
.x76{left:404.092500px;}
.xb2{left:405.639000px;}
.x93{left:407.347500px;}
.xd{left:409.938000px;}
.xce{left:411.450000px;}
.x99{left:413.193000px;}
.xc7{left:415.081500px;}
.x46{left:417.484500px;}
.x94{left:423.373500px;}
.xcf{left:426.394500px;}
.x9a{left:428.827500px;}
.xc8{left:430.026000px;}
.xa8{left:432.907500px;}
.x88{left:445.036800px;}
.x89{left:449.536800px;}
.x3d{left:451.006500px;}
.xda{left:457.668000px;}
.xb3{left:461.109000px;}
.x6c{left:462.699000px;}
.xd4{left:464.376000px;}
.x3e{left:466.942500px;}
.xd5{left:468.073500px;}
.x3f{left:471.184500px;}
.xdb{left:472.611000px;}
.xbe{left:475.197000px;}
.xb4{left:477.126000px;}
.x6d{left:478.732500px;}
.xb0{left:480.283500px;}
.xd0{left:481.671000px;}
.x52{left:483.316500px;}
.x40{left:487.213500px;}
.xbb{left:489.220500px;}
.x47{left:490.986000px;}
.xd1{left:496.615500px;}
.xe8{left:500.034000px;}
.x70{left:502.794000px;}
.x12{left:506.124000px;}
.x34{left:508.375500px;}
.xbc{left:510.897000px;}
.x13{left:513.595500px;}
.x1c{left:516.007500px;}
.x95{left:520.309500px;}
.x31{left:522.585000px;}
.x3b{left:524.968500px;}
.x67{left:527.502000px;}
.x1d{left:530.952000px;}
.x4d{left:532.604278px;}
.xef{left:535.482000px;}
.xd2{left:537.214500px;}
.xa7{left:539.568000px;}
.x3c{left:540.982500px;}
.x77{left:542.103000px;}
.x68{left:543.354000px;}
.x9b{left:546.817500px;}
.xd9{left:552.834000px;}
.xd3{left:555.939000px;}
.x23{left:557.854500px;}
.x78{left:560.119500px;}
.x9c{left:562.671000px;}
.xb5{left:568.323000px;}
.xb1{left:571.471500px;}
.x24{left:572.797500px;}
.x3a{left:574.125000px;}
.x74{left:576.747000px;}
.xb7{left:577.920000px;}
.x2e{left:582.531000px;}
.xd8{left:587.185500px;}
.xc4{left:591.591000px;}
.x41{left:593.524500px;}
.x69{left:595.758000px;}
.x2f{left:596.962500px;}
.xa0{left:598.737000px;}
.xaa{left:601.971106px;}
.x8d{left:607.936650px;}
.x42{left:609.553500px;}
.xbf{left:611.388000px;}
.x6a{left:612.435000px;}
.xa1{left:614.751000px;}
.x63{left:619.467000px;}
.xe3{left:623.415000px;}
.xdc{left:625.942500px;}
.x48{left:627.697500px;}
.xc6{left:628.771500px;}
.x53{left:632.125500px;}
.x64{left:635.509500px;}
.x60{left:639.108199px;}
.xe{left:640.135500px;}
.xe2{left:642.055500px;}
.x49{left:643.738500px;}
.xf{left:647.607000px;}
.xe4{left:649.342500px;}
.x98{left:651.490500px;}
.x10{left:655.125000px;}
.x75{left:659.554500px;}
.x79{left:660.694500px;}
.x11{left:662.596500px;}
.xe5{left:664.287000px;}
.x7c{left:667.519500px;}
.xbd{left:672.541500px;}
.x7d{left:673.945500px;}
.x9f{left:676.317000px;}
.xa3{left:678.336000px;}
.xc1{left:683.056500px;}
.x8e{left:684.976650px;}
.x8f{left:689.476650px;}
.x25{left:692.673000px;}
.x9d{left:694.147500px;}
.x8{left:696.612000px;}
.x92{left:700.458000px;}
.xc5{left:702.096000px;}
.x9{left:704.083500px;}
.x26{left:707.617500px;}
.xb8{left:710.622000px;}
.xa{left:711.705000px;}
.xde{left:715.146000px;}
.xc0{left:717.913500px;}
.xb{left:719.176500px;}
.xb6{left:721.746000px;}
.x7e{left:723.991500px;}
.x54{left:726.612000px;}
.xb9{left:728.706000px;}
.xdf{left:730.090500px;}
.xeb{left:732.067500px;}
.x7a{left:735.484500px;}
.xaf{left:738.364500px;}
.x7f{left:740.032500px;}
.x55{left:742.459500px;}
.xec{left:743.872500px;}
.xe9{left:745.672500px;}
.xed{left:754.035000px;}
.x16{left:763.140000px;}
.x57{left:764.392500px;}
.xa4{left:765.700500px;}
.x9e{left:767.641500px;}
.x56{left:775.366500px;}
.xc9{left:777.354000px;}
.x22{left:778.606500px;}
.x58{left:780.148500px;}
.xa5{left:781.737000px;}
.x5b{left:788.761500px;}
.x17{left:792.736500px;}
.x71{left:794.130000px;}
.xc2{left:795.660000px;}
.x96{left:799.320000px;}
.xc3{left:802.086000px;}
.xd6{left:803.752500px;}
.x4e{left:808.657500px;}
.x72{left:810.295500px;}
.xdd{left:813.426000px;}
.x97{left:816.049500px;}
.x1e{left:817.968000px;}
.xf1{left:821.340000px;}
.x7b{left:825.669000px;}
.x61{left:827.851500px;}
.x80{left:829.084500px;}
.xa2{left:830.641500px;}
.x1f{left:832.912500px;}
.x81{left:835.510500px;}
.xf2{left:836.577000px;}
.x2d{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.629333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.ls9a{letter-spacing:-1.296000pt;}
.lsb1{letter-spacing:-0.475200pt;}
.lsb2{letter-spacing:-0.321600pt;}
.ls6d{letter-spacing:-0.312000pt;}
.ls66{letter-spacing:-0.309952pt;}
.ls3e{letter-spacing:-0.277888pt;}
.lsb4{letter-spacing:-0.256512pt;}
.ls96{letter-spacing:-0.235136pt;}
.ls9c{letter-spacing:-0.206400pt;}
.lsb5{letter-spacing:-0.203072pt;}
.ls69{letter-spacing:-0.177600pt;}
.ls39{letter-spacing:-0.149632pt;}
.lsa2{letter-spacing:-0.144288pt;}
.ls9f{letter-spacing:-0.138944pt;}
.lsa0{letter-spacing:-0.128256pt;}
.ls3d{letter-spacing:-0.122912pt;}
.ls62{letter-spacing:-0.120000pt;}
.ls64{letter-spacing:-0.112224pt;}
.ls6c{letter-spacing:-0.110400pt;}
.ls40{letter-spacing:-0.106880pt;}
.ls61{letter-spacing:-0.105600pt;}
.ls3b{letter-spacing:-0.101536pt;}
.ls67{letter-spacing:-0.096192pt;}
.ls41{letter-spacing:-0.090848pt;}
.ls9d{letter-spacing:-0.086400pt;}
.lsa1{letter-spacing:-0.085504pt;}
.ls3a{letter-spacing:-0.080160pt;}
.ls42{letter-spacing:-0.074816pt;}
.lsb3{letter-spacing:-0.067200pt;}
.ls97{letter-spacing:-0.064128pt;}
.ls45{letter-spacing:-0.058784pt;}
.ls32{letter-spacing:-0.055328pt;}
.ls35{letter-spacing:-0.053440pt;}
.ls3f{letter-spacing:-0.048096pt;}
.ls3c{letter-spacing:-0.042752pt;}
.ls60{letter-spacing:-0.038400pt;}
.ls34{letter-spacing:-0.037408pt;}
.ls6b{letter-spacing:-0.033600pt;}
.ls44{letter-spacing:-0.032064pt;}
.ls43{letter-spacing:-0.026720pt;}
.ls33{letter-spacing:-0.021376pt;}
.ls65{letter-spacing:-0.016032pt;}
.ls5f{letter-spacing:-0.014400pt;}
.ls36{letter-spacing:-0.010688pt;}
.ls99{letter-spacing:-0.009600pt;}
.ls37{letter-spacing:-0.005344pt;}
.ls6a{letter-spacing:-0.004800pt;}
.ls8{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.000264pt;}
.lsd0{letter-spacing:0.000361pt;}
.ls3{letter-spacing:0.000518pt;}
.lsab{letter-spacing:0.000650pt;}
.lsc6{letter-spacing:0.000711pt;}
.ls86{letter-spacing:0.000879pt;}
.lscd{letter-spacing:0.000921pt;}
.lsce{letter-spacing:0.001026pt;}
.ls8a{letter-spacing:0.001130pt;}
.ls5c{letter-spacing:0.001351pt;}
.lsae{letter-spacing:0.001464pt;}
.lsd3{letter-spacing:0.001691pt;}
.lscc{letter-spacing:0.002262pt;}
.ls87{letter-spacing:0.002294pt;}
.lsc8{letter-spacing:0.002643pt;}
.ls8b{letter-spacing:0.002957pt;}
.ls2d{letter-spacing:0.003014pt;}
.lscf{letter-spacing:0.003230pt;}
.lsbf{letter-spacing:0.003261pt;}
.lsad{letter-spacing:0.003330pt;}
.ls5e{letter-spacing:0.003335pt;}
.ls2e{letter-spacing:0.003985pt;}
.lsbd{letter-spacing:0.004267pt;}
.ls5a{letter-spacing:0.004800pt;}
.lsc2{letter-spacing:0.004909pt;}
.ls54{letter-spacing:0.005344pt;}
.ls4b{letter-spacing:0.009600pt;}
.ls24{letter-spacing:0.010688pt;}
.ls48{letter-spacing:0.014400pt;}
.ls2c{letter-spacing:0.016032pt;}
.ls59{letter-spacing:0.019200pt;}
.lsaa{letter-spacing:0.021376pt;}
.ls4d{letter-spacing:0.024000pt;}
.ls56{letter-spacing:0.026720pt;}
.ls4f{letter-spacing:0.028800pt;}
.ls55{letter-spacing:0.032064pt;}
.ls81{letter-spacing:0.033600pt;}
.ls2a{letter-spacing:0.037408pt;}
.ls1a{letter-spacing:0.038304pt;}
.ls9e{letter-spacing:0.038400pt;}
.ls21{letter-spacing:0.042752pt;}
.ls51{letter-spacing:0.043200pt;}
.ls83{letter-spacing:0.048000pt;}
.ls2b{letter-spacing:0.048096pt;}
.ls4e{letter-spacing:0.052800pt;}
.ls57{letter-spacing:0.053440pt;}
.ls5b{letter-spacing:0.057600pt;}
.ls25{letter-spacing:0.058784pt;}
.ls50{letter-spacing:0.062400pt;}
.ls53{letter-spacing:0.069472pt;}
.ls52{letter-spacing:0.072000pt;}
.ls27{letter-spacing:0.074816pt;}
.lsa8{letter-spacing:0.076800pt;}
.ls26{letter-spacing:0.080160pt;}
.ls1e{letter-spacing:0.085504pt;}
.ls84{letter-spacing:0.086400pt;}
.ls1d{letter-spacing:0.090848pt;}
.ls4c{letter-spacing:0.091200pt;}
.ls80{letter-spacing:0.096000pt;}
.ls22{letter-spacing:0.096192pt;}
.ls1f{letter-spacing:0.101536pt;}
.lsa9{letter-spacing:0.105600pt;}
.ls20{letter-spacing:0.106880pt;}
.ls4a{letter-spacing:0.110400pt;}
.ls38{letter-spacing:0.112224pt;}
.ls85{letter-spacing:0.117568pt;}
.ls23{letter-spacing:0.122912pt;}
.ls49{letter-spacing:0.124800pt;}
.ls98{letter-spacing:0.128256pt;}
.ls82{letter-spacing:0.129600pt;}
.ls28{letter-spacing:0.133600pt;}
.ls29{letter-spacing:0.144288pt;}
.ls58{letter-spacing:0.149632pt;}
.ls1b{letter-spacing:0.157472pt;}
.ls19{letter-spacing:0.170240pt;}
.ls1c{letter-spacing:0.171008pt;}
.ls63{letter-spacing:0.331200pt;}
.lsc1{letter-spacing:0.595806pt;}
.ls9b{letter-spacing:0.806400pt;}
.ls68{letter-spacing:1.047424pt;}
.lsaf{letter-spacing:1.953067pt;}
.ls8d{letter-spacing:1.958400pt;}
.lsd2{letter-spacing:2.656533pt;}
.ls1{letter-spacing:2.657067pt;}
.lsb7{letter-spacing:3.158400pt;}
.ls0{letter-spacing:9.293600pt;}
.ls7{letter-spacing:10.626533pt;}
.ls2f{letter-spacing:11.180756pt;}
.ls30{letter-spacing:11.186199pt;}
.ls75{letter-spacing:11.702454pt;}
.lsc3{letter-spacing:11.810974pt;}
.lsbe{letter-spacing:11.893556pt;}
.ls88{letter-spacing:11.920436pt;}
.ls9{letter-spacing:11.944701pt;}
.lsb{letter-spacing:11.950933pt;}
.lsbb{letter-spacing:11.954133pt;}
.lsa{letter-spacing:11.956267pt;}
.lsbc{letter-spacing:11.959467pt;}
.lsc0{letter-spacing:12.063713pt;}
.lscb{letter-spacing:12.066392pt;}
.ls89{letter-spacing:12.085556pt;}
.lsac{letter-spacing:12.172172pt;}
.lsca{letter-spacing:12.242833pt;}
.lsc{letter-spacing:12.528078pt;}
.lsd{letter-spacing:12.533411pt;}
.lsc4{letter-spacing:12.761140pt;}
.ls8c{letter-spacing:12.925762pt;}
.lsc9{letter-spacing:12.980748pt;}
.ls18{letter-spacing:13.034900pt;}
.ls7d{letter-spacing:13.035788pt;}
.ls47{letter-spacing:13.060363pt;}
.ls76{letter-spacing:13.078569pt;}
.ls95{letter-spacing:13.128004pt;}
.lsa3{letter-spacing:13.140256pt;}
.ls94{letter-spacing:13.146514pt;}
.lsb9{letter-spacing:13.176938pt;}
.ls7c{letter-spacing:13.209050pt;}
.ls74{letter-spacing:13.213708pt;}
.lsa4{letter-spacing:13.218568pt;}
.ls14{letter-spacing:13.231207pt;}
.ls15{letter-spacing:13.254221pt;}
.lsa7{letter-spacing:13.254934pt;}
.ls8f{letter-spacing:13.265234pt;}
.ls8e{letter-spacing:13.265984pt;}
.ls92{letter-spacing:13.281867pt;}
.ls12{letter-spacing:13.283733pt;}
.ls79{letter-spacing:13.336874pt;}
.ls7a{letter-spacing:13.422314pt;}
.ls93{letter-spacing:13.449294pt;}
.ls17{letter-spacing:13.451979pt;}
.ls77{letter-spacing:13.506269pt;}
.ls13{letter-spacing:13.533440pt;}
.ls16{letter-spacing:13.544518pt;}
.ls46{letter-spacing:13.715420pt;}
.ls6e{letter-spacing:13.917762pt;}
.ls7b{letter-spacing:13.923096pt;}
.ls71{letter-spacing:13.940256pt;}
.ls70{letter-spacing:13.945485pt;}
.ls73{letter-spacing:13.949762pt;}
.ls10{letter-spacing:14.159864pt;}
.ls91{letter-spacing:14.191237pt;}
.lsa6{letter-spacing:14.384701pt;}
.ls7f{letter-spacing:14.463132pt;}
.lsd1{letter-spacing:14.591205pt;}
.ls90{letter-spacing:14.779278pt;}
.lsc5{letter-spacing:15.030421pt;}
.lsa5{letter-spacing:15.072089pt;}
.ls7e{letter-spacing:15.181893pt;}
.ls72{letter-spacing:15.284047pt;}
.ls6f{letter-spacing:15.346792pt;}
.lsc7{letter-spacing:15.521924pt;}
.lse{letter-spacing:16.601694pt;}
.lsf{letter-spacing:16.606923pt;}
.lsba{letter-spacing:17.071949pt;}
.ls5d{letter-spacing:17.595482pt;}
.ls11{letter-spacing:17.689276pt;}
.ls78{letter-spacing:17.731106pt;}
.lsb0{letter-spacing:18.023916pt;}
.lsb6{letter-spacing:18.363786pt;}
.lsb8{letter-spacing:19.581753pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls6{letter-spacing:55.926400pt;}
.ls5{letter-spacing:57.174803pt;}
.wsf0{word-spacing:-53.440000pt;}
.ws92{word-spacing:-48.000000pt;}
.ws4b{word-spacing:-13.360000pt;}
.ws45{word-spacing:-13.283467pt;}
.ws91{word-spacing:-12.000000pt;}
.ws94{word-spacing:-11.955200pt;}
.ws49{word-spacing:-10.810240pt;}
.ws4a{word-spacing:-10.640000pt;}
.ws29{word-spacing:-10.626800pt;}
.ws10{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws176{word-spacing:-3.452224pt;}
.wsf4{word-spacing:-3.347434pt;}
.wsb5{word-spacing:-3.142272pt;}
.wsb6{word-spacing:-3.088832pt;}
.ws109{word-spacing:-3.051424pt;}
.ws177{word-spacing:-3.014016pt;}
.wsb{word-spacing:-2.964890pt;}
.ws18c{word-spacing:-2.843008pt;}
.ws18d{word-spacing:-2.773536pt;}
.ws18e{word-spacing:-2.714752pt;}
.ws1b8{word-spacing:-2.656693pt;}
.ws6f{word-spacing:-2.554432pt;}
.ws15b{word-spacing:-2.506336pt;}
.ws192{word-spacing:-2.497292pt;}
.ws15a{word-spacing:-2.490304pt;}
.wsc{word-spacing:-2.486682pt;}
.wsfc{word-spacing:-2.474272pt;}
.ws74{word-spacing:-2.468928pt;}
.wsfb{word-spacing:-2.458240pt;}
.ws148{word-spacing:-2.448000pt;}
.ws8e{word-spacing:-2.444158pt;}
.ws114{word-spacing:-2.424000pt;}
.ws73{word-spacing:-2.367392pt;}
.ws31{word-spacing:-2.337890pt;}
.ws17f{word-spacing:-2.201728pt;}
.ws8f{word-spacing:-2.178489pt;}
.ws180{word-spacing:-2.153632pt;}
.ws127{word-spacing:-2.148288pt;}
.ws116{word-spacing:-2.121600pt;}
.ws117{word-spacing:-2.112000pt;}
.ws115{word-spacing:-2.097600pt;}
.ws113{word-spacing:-2.092800pt;}
.ws112{word-spacing:-2.088000pt;}
.ws18b{word-spacing:-2.073472pt;}
.ws1b3{word-spacing:-2.019087pt;}
.ws88{word-spacing:-1.912819pt;}
.ws17e{word-spacing:-1.838336pt;}
.ws126{word-spacing:-1.827648pt;}
.ws141{word-spacing:-1.806551pt;}
.ws17d{word-spacing:-1.800928pt;}
.ws170{word-spacing:-1.752832pt;}
.ws128{word-spacing:-1.747488pt;}
.ws168{word-spacing:-1.742144pt;}
.ws20a{word-spacing:-1.625907pt;}
.wse2{word-spacing:-1.594016pt;}
.wsc5{word-spacing:-1.571136pt;}
.ws84{word-spacing:-1.565792pt;}
.wsfe{word-spacing:-1.560448pt;}
.ws1b9{word-spacing:-1.540882pt;}
.ws163{word-spacing:-1.533728pt;}
.wsfd{word-spacing:-1.523040pt;}
.ws153{word-spacing:-1.512000pt;}
.ws154{word-spacing:-1.468800pt;}
.ws152{word-spacing:-1.464000pt;}
.ws12e{word-spacing:-1.442880pt;}
.ws155{word-spacing:-1.440000pt;}
.ws12d{word-spacing:-1.405472pt;}
.wsf8{word-spacing:-1.328347pt;}
.ws2c{word-spacing:-1.275213pt;}
.ws171{word-spacing:-1.261184pt;}
.wsff{word-spacing:-1.245152pt;}
.ws2e{word-spacing:-1.222079pt;}
.wsf9{word-spacing:-1.168945pt;}
.ws162{word-spacing:-1.164992pt;}
.ws147{word-spacing:-1.137600pt;}
.ws144{word-spacing:-1.128000pt;}
.ws145{word-spacing:-1.118400pt;}
.ws1b4{word-spacing:-1.115811pt;}
.ws146{word-spacing:-1.099200pt;}
.ws1ba{word-spacing:-1.062677pt;}
.ws44{word-spacing:-1.009543pt;}
.ws7f{word-spacing:-0.983296pt;}
.ws1b7{word-spacing:-0.956410pt;}
.ws130{word-spacing:-0.908480pt;}
.ws13e{word-spacing:-0.797008pt;}
.ws4f{word-spacing:-0.779591pt;}
.ws4e{word-spacing:-0.778660pt;}
.ws50{word-spacing:-0.777997pt;}
.ws4d{word-spacing:-0.765133pt;}
.ws2a{word-spacing:-0.690740pt;}
.wsca{word-spacing:-0.603872pt;}
.ws7e{word-spacing:-0.593184pt;}
.ws11c{word-spacing:-0.587840pt;}
.ws19a{word-spacing:-0.584473pt;}
.ws1e9{word-spacing:-0.573850pt;}
.ws149{word-spacing:-0.566400pt;}
.ws14a{word-spacing:-0.552000pt;}
.ws7d{word-spacing:-0.550432pt;}
.ws133{word-spacing:-0.531339pt;}
.ws132{word-spacing:-0.478205pt;}
.ws14f{word-spacing:-0.465600pt;}
.ws2d{word-spacing:-0.425071pt;}
.ws14e{word-spacing:-0.408000pt;}
.wsba{word-spacing:-0.384768pt;}
.ws8d{word-spacing:-0.371937pt;}
.ws14d{word-spacing:-0.369600pt;}
.ws10a{word-spacing:-0.363392pt;}
.ws7c{word-spacing:-0.342016pt;}
.ws1bb{word-spacing:-0.335613pt;}
.ws1bc{word-spacing:-0.334746pt;}
.wsf5{word-spacing:-0.334251pt;}
.ws142{word-spacing:-0.333509pt;}
.ws140{word-spacing:-0.328176pt;}
.ws10b{word-spacing:-0.320640pt;}
.ws80{word-spacing:-0.315296pt;}
.ws70{word-spacing:-0.309952pt;}
.wsc1{word-spacing:-0.304608pt;}
.ws6c{word-spacing:-0.293920pt;}
.ws18{word-spacing:-0.286925pt;}
.ws14b{word-spacing:-0.268800pt;}
.wsae{word-spacing:-0.267200pt;}
.ws1e{word-spacing:-0.265669pt;}
.ws85{word-spacing:-0.251168pt;}
.ws53{word-spacing:-0.246848pt;}
.ws1c2{word-spacing:-0.239104pt;}
.ws5c{word-spacing:-0.224448pt;}
.ws8a{word-spacing:-0.223116pt;}
.ws157{word-spacing:-0.213760pt;}
.ws28{word-spacing:-0.212535pt;}
.ws81{word-spacing:-0.203072pt;}
.ws83{word-spacing:-0.192384pt;}
.ws17{word-spacing:-0.191283pt;}
.ws72{word-spacing:-0.187040pt;}
.ws82{word-spacing:-0.176352pt;}
.wsce{word-spacing:-0.172800pt;}
.ws24{word-spacing:-0.159402pt;}
.ws14c{word-spacing:-0.153600pt;}
.wsf1{word-spacing:-0.143462pt;}
.wsaf{word-spacing:-0.122912pt;}
.ws54{word-spacing:-0.114912pt;}
.ws8b{word-spacing:-0.106268pt;}
.ws13{word-spacing:-0.095642pt;}
.ws131{word-spacing:-0.090848pt;}
.ws11e{word-spacing:-0.085504pt;}
.wsea{word-spacing:-0.073649pt;}
.ws4c{word-spacing:-0.053440pt;}
.ws21{word-spacing:-0.053134pt;}
.ws99{word-spacing:-0.047821pt;}
.ws78{word-spacing:-0.026720pt;}
.ws52{word-spacing:-0.021280pt;}
.wsbe{word-spacing:-0.016032pt;}
.ws207{word-spacing:-0.011511pt;}
.ws1e7{word-spacing:-0.009344pt;}
.ws1d2{word-spacing:-0.007723pt;}
.ws20b{word-spacing:-0.006682pt;}
.ws1eb{word-spacing:-0.006118pt;}
.ws1cc{word-spacing:-0.006050pt;}
.ws1d0{word-spacing:-0.004318pt;}
.wse{word-spacing:-0.003985pt;}
.ws1d1{word-spacing:-0.003942pt;}
.ws1fa{word-spacing:-0.003004pt;}
.ws1f4{word-spacing:-0.002773pt;}
.ws1c5{word-spacing:-0.002133pt;}
.ws32{word-spacing:-0.002074pt;}
.ws1c7{word-spacing:-0.001903pt;}
.ws97{word-spacing:-0.001698pt;}
.ws1fb{word-spacing:-0.001007pt;}
.ws1fd{word-spacing:-0.000495pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:0.001318pt;}
.ws11d{word-spacing:0.005344pt;}
.wscd{word-spacing:0.024000pt;}
.ws105{word-spacing:0.032064pt;}
.ws71{word-spacing:0.042752pt;}
.ws95{word-spacing:0.047821pt;}
.ws27{word-spacing:0.053134pt;}
.ws174{word-spacing:0.058784pt;}
.wse6{word-spacing:0.064030pt;}
.ws4{word-spacing:0.074387pt;}
.ws69{word-spacing:0.074816pt;}
.ws119{word-spacing:0.076800pt;}
.ws1f7{word-spacing:0.091130pt;}
.wsa9{word-spacing:0.091200pt;}
.ws1cb{word-spacing:0.091619pt;}
.ws51{word-spacing:0.095642pt;}
.ws2b{word-spacing:0.106268pt;}
.ws175{word-spacing:0.106880pt;}
.ws6b{word-spacing:0.128256pt;}
.wsf2{word-spacing:0.128389pt;}
.wscb{word-spacing:0.134400pt;}
.ws100{word-spacing:0.138944pt;}
.wsf3{word-spacing:0.143462pt;}
.wsa8{word-spacing:0.148800pt;}
.wscc{word-spacing:0.153600pt;}
.ws26{word-spacing:0.159402pt;}
.ws77{word-spacing:0.160320pt;}
.ws118{word-spacing:0.163200pt;}
.wse7{word-spacing:0.163854pt;}
.ws156{word-spacing:0.168000pt;}
.ws48{word-spacing:0.173450pt;}
.ws75{word-spacing:0.176352pt;}
.wsfa{word-spacing:0.177162pt;}
.ws6a{word-spacing:0.187040pt;}
.ws16{word-spacing:0.191283pt;}
.ws13a{word-spacing:0.193122pt;}
.wsbb{word-spacing:0.197728pt;}
.ws1f{word-spacing:0.212535pt;}
.ws125{word-spacing:0.213760pt;}
.ws139{word-spacing:0.239104pt;}
.ws1f0{word-spacing:0.245327pt;}
.ws22{word-spacing:0.265669pt;}
.ws47{word-spacing:0.266673pt;}
.ws1dd{word-spacing:0.286925pt;}
.ws62{word-spacing:0.293920pt;}
.ws2f{word-spacing:0.318803pt;}
.ws129{word-spacing:0.347360pt;}
.ws104{word-spacing:0.363392pt;}
.wsc4{word-spacing:0.390112pt;}
.wsb9{word-spacing:0.411488pt;}
.ws89{word-spacing:0.425071pt;}
.wsc2{word-spacing:0.427520pt;}
.wse3{word-spacing:0.459258pt;}
.ws1ad{word-spacing:0.478205pt;}
.ws1d3{word-spacing:0.478208pt;}
.wsb8{word-spacing:0.486304pt;}
.wsc3{word-spacing:0.502336pt;}
.ws103{word-spacing:0.518368pt;}
.wsd9{word-spacing:0.531339pt;}
.ws63{word-spacing:0.555776pt;}
.ws19{word-spacing:0.573850pt;}
.ws38{word-spacing:0.574259pt;}
.ws79{word-spacing:0.582496pt;}
.ws1a0{word-spacing:0.584473pt;}
.ws3a{word-spacing:0.593399pt;}
.ws36{word-spacing:0.597333pt;}
.ws68{word-spacing:0.603872pt;}
.ws3c{word-spacing:0.616747pt;}
.ws39{word-spacing:0.618564pt;}
.ws35{word-spacing:0.619631pt;}
.ws34{word-spacing:0.620698pt;}
.ws37{word-spacing:0.622080pt;}
.ws3b{word-spacing:0.622455pt;}
.wsdc{word-spacing:0.637606pt;}
.ws198{word-spacing:0.662133pt;}
.wsec{word-spacing:0.663733pt;}
.wse9{word-spacing:0.665600pt;}
.wsda{word-spacing:0.669333pt;}
.ws12a{word-spacing:0.689376pt;}
.ws10f{word-spacing:0.710400pt;}
.ws61{word-spacing:0.732128pt;}
.ws3d{word-spacing:0.743874pt;}
.wsd3{word-spacing:0.748800pt;}
.ws7b{word-spacing:0.753504pt;}
.ws1ee{word-spacing:0.765133pt;}
.ws111{word-spacing:0.772800pt;}
.wsd2{word-spacing:0.782400pt;}
.wsd4{word-spacing:0.787200pt;}
.ws10c{word-spacing:0.792000pt;}
.wseb{word-spacing:0.797008pt;}
.ws7a{word-spacing:0.801600pt;}
.ws1d9{word-spacing:0.812954pt;}
.ws10d{word-spacing:0.816000pt;}
.wsd5{word-spacing:0.840000pt;}
.ws40{word-spacing:0.850142pt;}
.ws110{word-spacing:0.892800pt;}
.ws30{word-spacing:0.903276pt;}
.wsd6{word-spacing:0.916800pt;}
.ws1a9{word-spacing:0.956410pt;}
.wsb7{word-spacing:0.993984pt;}
.ws1ef{word-spacing:1.004237pt;}
.ws1c{word-spacing:1.009543pt;}
.ws10e{word-spacing:1.012800pt;}
.ws12b{word-spacing:1.015360pt;}
.ws16b{word-spacing:1.031392pt;}
.ws12c{word-spacing:1.036736pt;}
.ws138{word-spacing:1.062677pt;}
.ws1c4{word-spacing:1.099878pt;}
.wsa5{word-spacing:1.113600pt;}
.ws137{word-spacing:1.115811pt;}
.wsd7{word-spacing:1.118400pt;}
.ws67{word-spacing:1.127584pt;}
.wsbd{word-spacing:1.143616pt;}
.ws1bd{word-spacing:1.147699pt;}
.wsef{word-spacing:1.168945pt;}
.ws208{word-spacing:1.195520pt;}
.ws19f{word-spacing:1.222079pt;}
.wsa{word-spacing:1.227389pt;}
.ws1d{word-spacing:1.275213pt;}
.ws201{word-spacing:1.291162pt;}
.ws185{word-spacing:1.325312pt;}
.ws19e{word-spacing:1.381481pt;}
.wsa1{word-spacing:1.382400pt;}
.ws184{word-spacing:1.389440pt;}
.wsa0{word-spacing:1.416000pt;}
.ws3e{word-spacing:1.434614pt;}
.wsa2{word-spacing:1.483200pt;}
.ws41{word-spacing:1.487748pt;}
.ws13d{word-spacing:1.540882pt;}
.wsa3{word-spacing:1.550400pt;}
.wsa4{word-spacing:1.564800pt;}
.ws1a4{word-spacing:1.647150pt;}
.ws186{word-spacing:1.672672pt;}
.ws25{word-spacing:1.753418pt;}
.ws13b{word-spacing:1.769370pt;}
.ws87{word-spacing:1.806551pt;}
.ws187{word-spacing:1.827648pt;}
.ws1b1{word-spacing:1.859685pt;}
.ws1b0{word-spacing:1.912819pt;}
.wsdf{word-spacing:1.965953pt;}
.ws159{word-spacing:1.993312pt;}
.wsbf{word-spacing:2.014688pt;}
.ws46{word-spacing:2.019087pt;}
.ws15e{word-spacing:2.020032pt;}
.ws158{word-spacing:2.030720pt;}
.ws202{word-spacing:2.056294pt;}
.ws203{word-spacing:2.070924pt;}
.wsdb{word-spacing:2.072221pt;}
.ws9a{word-spacing:2.073600pt;}
.ws9c{word-spacing:2.078400pt;}
.ws9b{word-spacing:2.088000pt;}
.ws167{word-spacing:2.100192pt;}
.ws165{word-spacing:2.110880pt;}
.ws166{word-spacing:2.116224pt;}
.wsc0{word-spacing:2.126912pt;}
.ws1ed{word-spacing:2.151936pt;}
.wsf6{word-spacing:2.178489pt;}
.ws1a3{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws2{word-spacing:2.232609pt;}
.ws15f{word-spacing:2.271200pt;}
.ws1c1{word-spacing:2.295398pt;}
.ws1aa{word-spacing:2.337890pt;}
.ws1d6{word-spacing:2.343219pt;}
.ws188{word-spacing:2.356704pt;}
.wsd1{word-spacing:2.376000pt;}
.ws1da{word-spacing:2.391040pt;}
.wscf{word-spacing:2.400000pt;}
.wsd0{word-spacing:2.409600pt;}
.wse0{word-spacing:2.444158pt;}
.ws1a8{word-spacing:2.497292pt;}
.ws1a6{word-spacing:2.550426pt;}
.ws11{word-spacing:2.550432pt;}
.ws173{word-spacing:2.597184pt;}
.ws1a5{word-spacing:2.603559pt;}
.ws204{word-spacing:2.630144pt;}
.ws172{word-spacing:2.645280pt;}
.ws1b5{word-spacing:2.656693pt;}
.ws160{word-spacing:2.666656pt;}
.ws18a{word-spacing:2.682688pt;}
.ws161{word-spacing:2.693376pt;}
.ws1a2{word-spacing:2.709827pt;}
.ws1d7{word-spacing:2.725786pt;}
.ws12{word-spacing:2.739765pt;}
.ws1a1{word-spacing:2.762961pt;}
.ws1e2{word-spacing:2.807880pt;}
.ws1ab{word-spacing:2.816095pt;}
.ws1e1{word-spacing:2.821427pt;}
.ws189{word-spacing:2.848352pt;}
.ws1f3{word-spacing:2.861141pt;}
.ws209{word-spacing:2.861525pt;}
.ws1de{word-spacing:2.861867pt;}
.ws1a{word-spacing:2.861926pt;}
.ws1c8{word-spacing:2.862285pt;}
.ws1c9{word-spacing:2.863497pt;}
.ws1c6{word-spacing:2.863915pt;}
.ws206{word-spacing:2.864171pt;}
.ws1fc{word-spacing:2.864597pt;}
.ws1cf{word-spacing:2.864870pt;}
.ws1ec{word-spacing:2.864905pt;}
.ws1ff{word-spacing:2.864973pt;}
.ws1d5{word-spacing:2.865306pt;}
.ws1c3{word-spacing:2.865391pt;}
.ws1e5{word-spacing:2.865553pt;}
.ws1e8{word-spacing:2.865937pt;}
.ws1ea{word-spacing:2.866227pt;}
.ws1e0{word-spacing:2.866415pt;}
.ws1df{word-spacing:2.867200pt;}
.ws43{word-spacing:2.869229pt;}
.ws98{word-spacing:2.869248pt;}
.wsc9{word-spacing:2.917824pt;}
.wsc8{word-spacing:2.960576pt;}
.ws1fe{word-spacing:2.964890pt;}
.ws193{word-spacing:2.975497pt;}
.ws56{word-spacing:2.987296pt;}
.ws164{word-spacing:3.024704pt;}
.ws1dc{word-spacing:3.060531pt;}
.ws197{word-spacing:3.081764pt;}
.ws20c{word-spacing:3.108352pt;}
.ws191{word-spacing:3.134898pt;}
.wsde{word-spacing:3.136382pt;}
.ws1e4{word-spacing:3.156173pt;}
.ws5e{word-spacing:3.185024pt;}
.ws1b{word-spacing:3.188032pt;}
.ws19c{word-spacing:3.241166pt;}
.ws178{word-spacing:3.243808pt;}
.ws123{word-spacing:3.291904pt;}
.ws3f{word-spacing:3.294300pt;}
.wsc6{word-spacing:3.302592pt;}
.wsc7{word-spacing:3.307936pt;}
.wsa7{word-spacing:3.321600pt;}
.wsa6{word-spacing:3.336000pt;}
.ws93{word-spacing:3.490918pt;}
.ws5d{word-spacing:3.500320pt;}
.ws8c{word-spacing:3.506835pt;}
.ws1e3{word-spacing:3.586560pt;}
.ws5f{word-spacing:3.612544pt;}
.ws90{word-spacing:3.613103pt;}
.ws122{word-spacing:3.617888pt;}
.wsb3{word-spacing:3.682016pt;}
.wsb4{word-spacing:3.698048pt;}
.ws1ac{word-spacing:3.719371pt;}
.ws124{word-spacing:3.746144pt;}
.ws136{word-spacing:3.772505pt;}
.ws1be{word-spacing:3.777843pt;}
.ws23{word-spacing:3.825638pt;}
.ws1f5{word-spacing:3.825664pt;}
.ws1ca{word-spacing:3.873485pt;}
.ws1a7{word-spacing:3.878772pt;}
.ws169{word-spacing:3.901120pt;}
.ws1b6{word-spacing:3.931906pt;}
.ws16a{word-spacing:3.949216pt;}
.ws1f9{word-spacing:3.969126pt;}
.ws9e{word-spacing:3.984000pt;}
.ws14{word-spacing:4.016947pt;}
.ws17a{word-spacing:4.018688pt;}
.ws9d{word-spacing:4.022400pt;}
.wsdd{word-spacing:4.038174pt;}
.ws134{word-spacing:4.091308pt;}
.ws60{word-spacing:4.205728pt;}
.ws1f2{word-spacing:4.208230pt;}
.ws13f{word-spacing:4.250709pt;}
.ws179{word-spacing:4.269856pt;}
.ws151{word-spacing:4.286400pt;}
.ws86{word-spacing:4.303843pt;}
.ws150{word-spacing:4.324800pt;}
.ws42{word-spacing:4.410111pt;}
.wse4{word-spacing:4.463245pt;}
.ws64{word-spacing:4.472928pt;}
.ws65{word-spacing:4.478272pt;}
.wsab{word-spacing:4.499648pt;}
.ws20{word-spacing:4.516379pt;}
.ws57{word-spacing:4.521024pt;}
.ws15c{word-spacing:4.542400pt;}
.ws15d{word-spacing:4.558432pt;}
.wsac{word-spacing:4.563776pt;}
.ws76{word-spacing:4.574464pt;}
.ws66{word-spacing:4.590496pt;}
.ws1d4{word-spacing:4.590797pt;}
.wsd8{word-spacing:4.641600pt;}
.ws143{word-spacing:4.728914pt;}
.ws19d{word-spacing:4.782048pt;}
.ws1f8{word-spacing:4.782080pt;}
.wsaa{word-spacing:4.793568pt;}
.ws183{word-spacing:4.830976pt;}
.ws8{word-spacing:4.872362pt;}
.ws200{word-spacing:4.925542pt;}
.ws194{word-spacing:4.941450pt;}
.ws1d8{word-spacing:5.069005pt;}
.ws121{word-spacing:5.087488pt;}
.ws199{word-spacing:5.100851pt;}
.wsbc{word-spacing:5.156960pt;}
.ws1f1{word-spacing:5.355930pt;}
.ws13c{word-spacing:5.366521pt;}
.ws1e6{word-spacing:5.403750pt;}
.ws182{word-spacing:5.515008pt;}
.ws11f{word-spacing:5.531040pt;}
.ws6e{word-spacing:5.536384pt;}
.ws5b{word-spacing:5.579136pt;}
.ws181{word-spacing:5.589824pt;}
.wsad{word-spacing:5.605856pt;}
.ws120{word-spacing:5.616544pt;}
.ws96{word-spacing:5.642854pt;}
.ws6d{word-spacing:5.648608pt;}
.wse8{word-spacing:5.685324pt;}
.ws59{word-spacing:5.755488pt;}
.ws5a{word-spacing:5.760832pt;}
.ws1c0{word-spacing:5.786317pt;}
.ws1ae{word-spacing:5.791591pt;}
.ws108{word-spacing:5.803584pt;}
.ws18f{word-spacing:5.844725pt;}
.ws11a{word-spacing:5.857024pt;}
.ws11b{word-spacing:5.878400pt;}
.ws58{word-spacing:5.883744pt;}
.ws19b{word-spacing:5.897859pt;}
.ws16d{word-spacing:6.145600pt;}
.ws205{word-spacing:6.168883pt;}
.ws16c{word-spacing:6.177664pt;}
.ws195{word-spacing:6.216662pt;}
.ws135{word-spacing:6.269796pt;}
.ws1af{word-spacing:6.322930pt;}
.ws15{word-spacing:6.503629pt;}
.ws1b2{word-spacing:6.588599pt;}
.wsed{word-spacing:6.641733pt;}
.wsee{word-spacing:6.694867pt;}
.ws107{word-spacing:6.738784pt;}
.wse1{word-spacing:6.801135pt;}
.wse5{word-spacing:6.806970pt;}
.ws106{word-spacing:6.829632pt;}
.ws9f{word-spacing:6.835200pt;}
.ws190{word-spacing:6.907403pt;}
.ws16f{word-spacing:7.150272pt;}
.wsf7{word-spacing:7.173072pt;}
.ws16e{word-spacing:7.182336pt;}
.ws1f6{word-spacing:7.412224pt;}
.ws196{word-spacing:7.438741pt;}
.wsb1{word-spacing:8.641248pt;}
.ws6{word-spacing:8.740496pt;}
.wsb0{word-spacing:8.742784pt;}
.wsb2{word-spacing:9.036704pt;}
.ws55{word-spacing:10.329312pt;}
.ws1db{word-spacing:10.518225pt;}
.ws7{word-spacing:10.525789pt;}
.ws1bf{word-spacing:10.574640pt;}
.ws12f{word-spacing:10.928480pt;}
.ws17b{word-spacing:10.997952pt;}
.ws17c{word-spacing:11.030016pt;}
.ws1cd{word-spacing:12.529050pt;}
.ws1ce{word-spacing:12.768154pt;}
.ws102{word-spacing:14.161600pt;}
.ws101{word-spacing:14.188320pt;}
.ws5{word-spacing:19.857270pt;}
.ws9{word-spacing:20.196125pt;}
.wsd{word-spacing:41.446878pt;}
.ws33{word-spacing:246.516224pt;}
._3{margin-left:-31.595439pt;}
._36{margin-left:-7.125299pt;}
._a{margin-left:-6.073242pt;}
._7{margin-left:-4.718299pt;}
._13{margin-left:-3.549346pt;}
._4{margin-left:-2.391040pt;}
._0{margin-left:-1.338970pt;}
._26{width:1.285312pt;}
._5{width:2.666285pt;}
._6{width:3.631547pt;}
._2b{width:5.440192pt;}
._2d{width:8.501419pt;}
._2c{width:9.931744pt;}
._1{width:10.862340pt;}
._10{width:12.703494pt;}
._c{width:14.394061pt;}
._14{width:16.058999pt;}
._8{width:17.024205pt;}
._f{width:18.676591pt;}
._b{width:20.132557pt;}
._25{width:21.689241pt;}
._2{width:23.063232pt;}
._28{width:25.238595pt;}
._31{width:26.513799pt;}
._e{width:28.320351pt;}
._2f{width:29.223627pt;}
._d{width:30.498839pt;}
._34{width:31.610966pt;}
._29{width:32.518131pt;}
._30{width:33.686871pt;}
._9{width:34.717901pt;}
._2a{width:36.928037pt;}
._35{width:53.347869pt;}
._37{width:54.993920pt;}
._33{width:78.904320pt;}
._24{width:90.142208pt;}
._1a{width:96.167629pt;}
._1d{width:102.145229pt;}
._21{width:110.800794pt;}
._19{width:120.747520pt;}
._16{width:125.625242pt;}
._22{width:139.349811pt;}
._1c{width:145.319706pt;}
._1f{width:148.674867pt;}
._23{width:151.305011pt;}
._20{width:160.630067pt;}
._1e{width:164.523750pt;}
._1b{width:167.229338pt;}
._17{width:176.478950pt;}
._18{width:187.840102pt;}
._15{width:312.795853pt;}
._11{width:775.926429pt;}
._27{width:1776.931072pt;}
._32{width:2114.322192pt;}
._12{width:2134.644929pt;}
._2e{width:2135.575525pt;}
.fs10{font-size:29.440000pt;}
.fs7{font-size:31.880533pt;}
.fsf{font-size:32.000000pt;}
.fs0{font-size:37.193600pt;}
.fs6{font-size:40.381867pt;}
.fs11{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fsc{font-size:42.560000pt;}
.fs1{font-size:47.035520pt;}
.fs9{font-size:47.820800pt;}
.fse{font-size:48.000000pt;}
.fsa{font-size:49.829333pt;}
.fs2{font-size:50.395200pt;}
.fs4{font-size:53.133867pt;}
.fsd{font-size:53.440000pt;}
.fsb{font-size:55.365867pt;}
.fs3{font-size:60.474240pt;}
.fs5{font-size:95.641600pt;}
.y15f{bottom:-693.638267pt;}
.y186{bottom:-640.422787pt;}
.y185{bottom:-623.383443pt;}
.y184{bottom:-606.263939pt;}
.y183{bottom:-589.144435pt;}
.y182{bottom:-572.105091pt;}
.y181{bottom:-554.985587pt;}
.y180{bottom:-537.946243pt;}
.y17f{bottom:-520.826739pt;}
.y17e{bottom:-503.707235pt;}
.y17d{bottom:-486.667891pt;}
.y17c{bottom:-469.548387pt;}
.y17b{bottom:-452.509043pt;}
.y17a{bottom:-435.389539pt;}
.y105{bottom:-421.228933pt;}
.y179{bottom:-418.270035pt;}
.y178{bottom:-401.230691pt;}
.y177{bottom:-384.111187pt;}
.y176{bottom:-367.071843pt;}
.y132{bottom:-363.948933pt;}
.y130{bottom:-363.947285pt;}
.y131{bottom:-360.588933pt;}
.y175{bottom:-349.952339pt;}
.y12f{bottom:-346.827781pt;}
.y174{bottom:-332.832835pt;}
.y12e{bottom:-329.788437pt;}
.y173{bottom:-315.793491pt;}
.y12d{bottom:-312.668933pt;}
.y12b{bottom:-312.662837pt;}
.y12c{bottom:-309.308933pt;}
.y172{bottom:-298.673987pt;}
.y12a{bottom:-295.543333pt;}
.y171{bottom:-281.554483pt;}
.y129{bottom:-278.503989pt;}
.y170{bottom:-264.515139pt;}
.y128{bottom:-261.384485pt;}
.y16f{bottom:-247.395635pt;}
.y127{bottom:-244.345141pt;}
.y16e{bottom:-230.356291pt;}
.y126{bottom:-227.225637pt;}
.y16d{bottom:-213.236787pt;}
.y125{bottom:-210.106133pt;}
.y16c{bottom:-196.117283pt;}
.y124{bottom:-193.066789pt;}
.y16b{bottom:-179.076603pt;}
.y123{bottom:-175.947285pt;}
.y16a{bottom:-161.957099pt;}
.y122{bottom:-158.907941pt;}
.y169{bottom:-144.917755pt;}
.y121{bottom:-141.788437pt;}
.ybe{bottom:-136.507600pt;}
.y120{bottom:-124.668933pt;}
.y168{bottom:-123.798267pt;}
.y11f{bottom:-92.028533pt;}
.y167{bottom:-91.079067pt;}
.y11e{bottom:-76.508933pt;}
.y166{bottom:-75.638667pt;}
.ye0{bottom:-75.068000pt;}
.y11d{bottom:-61.148933pt;}
.y165{bottom:-60.278667pt;}
.ydf{bottom:-59.708000pt;}
.y91{bottom:-55.451200pt;}
.y11a{bottom:-45.789200pt;}
.y11c{bottom:-45.788933pt;}
.y163{bottom:-44.838267pt;}
.yde{bottom:-44.267600pt;}
.y11b{bottom:-42.428933pt;}
.y164{bottom:-41.478267pt;}
.y119{bottom:-30.429200pt;}
.y162{bottom:-29.478267pt;}
.ydd{bottom:-28.907600pt;}
.y118{bottom:-14.988800pt;}
.y161{bottom:-14.118267pt;}
.ydc{bottom:-13.547600pt;}
.yad{bottom:-5.118736pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:4.931715pt;}
.y160{bottom:5.801821pt;}
.ydb{bottom:6.378600pt;}
.y1b{bottom:8.420534pt;}
.y1a{bottom:25.722550pt;}
.y49{bottom:28.346667pt;}
.y19{bottom:29.128174pt;}
.y48{bottom:92.108000pt;}
.y17{bottom:93.018667pt;}
.y7f{bottom:102.844000pt;}
.y274{bottom:103.518667pt;}
.y1e4{bottom:103.917333pt;}
.y20b{bottom:105.112000pt;}
.y1a8{bottom:105.909333pt;}
.y1b8{bottom:106.308000pt;}
.y47{bottom:108.844000pt;}
.y16{bottom:108.920000pt;}
.ye7{bottom:109.790667pt;}
.y23d{bottom:115.673333pt;}
.y273{bottom:118.861333pt;}
.y7e{bottom:119.581333pt;}
.y1e3{bottom:120.654667pt;}
.y155{bottom:120.781333pt;}
.y20a{bottom:121.849333pt;}
.y1a7{bottom:122.646667pt;}
.y1b7{bottom:123.045333pt;}
.y15{bottom:124.820000pt;}
.y46{bottom:125.581333pt;}
.y156{bottom:125.602667pt;}
.ye6{bottom:126.886667pt;}
.y23c{bottom:131.016000pt;}
.y270{bottom:134.202667pt;}
.y7d{bottom:136.318667pt;}
.y1e2{bottom:137.392000pt;}
.y154{bottom:137.518667pt;}
.y209{bottom:138.586667pt;}
.y1a6{bottom:139.384000pt;}
.y1b6{bottom:139.782667pt;}
.y14{bottom:140.720000pt;}
.y45{bottom:142.318667pt;}
.ye5{bottom:143.982667pt;}
.y23b{bottom:146.358667pt;}
.y18f{bottom:147.141333pt;}
.y26f{bottom:149.545333pt;}
.yb3{bottom:150.088000pt;}
.y7c{bottom:153.056000pt;}
.y153{bottom:154.256000pt;}
.y208{bottom:155.324000pt;}
.y1a5{bottom:156.121333pt;}
.y1b5{bottom:156.520000pt;}
.y13{bottom:156.621333pt;}
.y1e1{bottom:158.114667pt;}
.y44{bottom:159.056000pt;}
.ye4{bottom:161.078667pt;}
.y239{bottom:161.700000pt;}
.y23a{bottom:161.701333pt;}
.y26e{bottom:164.888000pt;}
.yb2{bottom:167.184000pt;}
.y7b{bottom:169.793333pt;}
.y151{bottom:170.993333pt;}
.y207{bottom:172.061333pt;}
.y12{bottom:172.521333pt;}
.y101{bottom:172.858667pt;}
.y1b4{bottom:173.257333pt;}
.y43{bottom:175.793333pt;}
.y152{bottom:175.814667pt;}
.y238{bottom:177.042667pt;}
.ye3{bottom:178.174667pt;}
.y26d{bottom:180.230667pt;}
.yb1{bottom:184.280000pt;}
.y7a{bottom:186.530667pt;}
.y150{bottom:187.730667pt;}
.y1e0{bottom:188.002667pt;}
.y11{bottom:188.421333pt;}
.y206{bottom:188.798667pt;}
.yff{bottom:189.596000pt;}
.y1b3{bottom:189.994667pt;}
.y237{bottom:192.385333pt;}
.y42{bottom:192.530667pt;}
.y100{bottom:194.417333pt;}
.ye2{bottom:195.269333pt;}
.y26c{bottom:195.573333pt;}
.yb0{bottom:201.376000pt;}
.y10{bottom:204.322667pt;}
.y14f{bottom:204.468000pt;}
.y1df{bottom:204.738667pt;}
.y205{bottom:205.536000pt;}
.yfd{bottom:206.333333pt;}
.y1b2{bottom:206.732000pt;}
.y236{bottom:207.728000pt;}
.y41{bottom:209.268000pt;}
.y26b{bottom:210.916000pt;}
.yfe{bottom:211.154667pt;}
.ye1{bottom:212.365333pt;}
.y18e{bottom:214.090667pt;}
.yaf{bottom:218.472000pt;}
.y14e{bottom:221.205333pt;}
.y1de{bottom:221.476000pt;}
.yfb{bottom:223.070667pt;}
.y1b1{bottom:223.469333pt;}
.y40{bottom:226.005333pt;}
.y204{bottom:226.258667pt;}
.y79{bottom:226.941333pt;}
.yfc{bottom:227.892000pt;}
.ybb{bottom:234.960000pt;}
.yae{bottom:235.568000pt;}
.y14d{bottom:237.942667pt;}
.y1dd{bottom:238.213333pt;}
.y235{bottom:238.413333pt;}
.yf9{bottom:239.808000pt;}
.y1b0{bottom:240.206667pt;}
.y76{bottom:240.345333pt;}
.y78{bottom:241.553333pt;}
.y26a{bottom:241.601333pt;}
.y3f{bottom:242.742667pt;}
.yfa{bottom:244.629333pt;}
.y234{bottom:253.756000pt;}
.y14c{bottom:254.680000pt;}
.y8e{bottom:255.504933pt;}
.y203{bottom:256.146667pt;}
.y77{bottom:256.165333pt;}
.yf8{bottom:256.545333pt;}
.y1af{bottom:256.944000pt;}
.y1dc{bottom:258.936000pt;}
.y3e{bottom:259.480000pt;}
.yf{bottom:266.570667pt;}
.y233{bottom:269.098667pt;}
.y14b{bottom:271.417333pt;}
.y269{bottom:272.285333pt;}
.y202{bottom:272.884000pt;}
.yf7{bottom:273.282667pt;}
.y1ae{bottom:273.681333pt;}
.y3d{bottom:276.217333pt;}
.y75{bottom:277.178667pt;}
.ye{bottom:282.470667pt;}
.y232{bottom:284.441333pt;}
.y18d{bottom:287.504000pt;}
.y268{bottom:287.628000pt;}
.y14a{bottom:288.154667pt;}
.y1db{bottom:288.824000pt;}
.y201{bottom:289.621333pt;}
.yf6{bottom:290.020000pt;}
.y1ad{bottom:290.417333pt;}
.y72{bottom:290.584000pt;}
.y74{bottom:291.790667pt;}
.y3c{bottom:292.954667pt;}
.yd{bottom:298.370667pt;}
.y231{bottom:299.782667pt;}
.y267{bottom:302.970667pt;}
.y18c{bottom:304.600000pt;}
.y149{bottom:304.892000pt;}
.y1da{bottom:305.561333pt;}
.y200{bottom:306.358667pt;}
.y73{bottom:306.402667pt;}
.yf5{bottom:306.757333pt;}
.y1ac{bottom:307.154667pt;}
.y3b{bottom:309.692000pt;}
.yc{bottom:314.272000pt;}
.y15e{bottom:314.441853pt;}
.y230{bottom:315.125333pt;}
.y266{bottom:318.313333pt;}
.y148{bottom:321.629333pt;}
.y18b{bottom:321.696000pt;}
.y1d9{bottom:322.298667pt;}
.y15d{bottom:323.001733pt;}
.y1ff{bottom:323.096000pt;}
.yf4{bottom:323.494667pt;}
.y1ab{bottom:323.892000pt;}
.y3a{bottom:326.429333pt;}
.y71{bottom:327.417333pt;}
.y22f{bottom:330.468000pt;}
.y265{bottom:333.656000pt;}
.yda{bottom:335.818832pt;}
.y147{bottom:338.366667pt;}
.y189{bottom:338.792000pt;}
.y1d8{bottom:339.036000pt;}
.yb{bottom:339.470667pt;}
.y1fe{bottom:339.833333pt;}
.y1a4{bottom:340.232000pt;}
.y1aa{bottom:340.629333pt;}
.y70{bottom:342.029333pt;}
.y18a{bottom:343.132000pt;}
.y39{bottom:343.166667pt;}
.yf3{bottom:344.216000pt;}
.y22e{bottom:345.810667pt;}
.y264{bottom:348.998667pt;}
.yd9{bottom:352.859512pt;}
.y6d{bottom:354.529333pt;}
.y146{bottom:355.104000pt;}
.ya{bottom:355.370667pt;}
.y1d7{bottom:355.773333pt;}
.y188{bottom:355.888000pt;}
.y1fd{bottom:356.570667pt;}
.y6f{bottom:356.641333pt;}
.y1a3{bottom:356.968000pt;}
.y1a9{bottom:357.366667pt;}
.y38{bottom:359.904000pt;}
.y22d{bottom:361.153333pt;}
.y263{bottom:364.341333pt;}
.y116{bottom:367.331067pt;}
.y114{bottom:367.332219pt;}
.yd8{bottom:369.979016pt;}
.y115{bottom:370.691067pt;}
.y145{bottom:371.840000pt;}
.y1d5{bottom:372.510667pt;}
.y187{bottom:372.984000pt;}
.y1fc{bottom:373.308000pt;}
.y1a2{bottom:373.705333pt;}
.yf2{bottom:374.104000pt;}
.y22c{bottom:376.496000pt;}
.y37{bottom:376.641333pt;}
.y1d6{bottom:377.332000pt;}
.y6e{bottom:377.654667pt;}
.y9{bottom:379.241333pt;}
.y262{bottom:379.684000pt;}
.y113{bottom:384.451723pt;}
.yd7{bottom:387.098520pt;}
.y143{bottom:388.577333pt;}
.y1d4{bottom:389.248000pt;}
.y1fb{bottom:390.045333pt;}
.y1a1{bottom:390.442667pt;}
.yf1{bottom:390.841333pt;}
.y22b{bottom:391.838667pt;}
.y15c{bottom:392.921333pt;}
.y36{bottom:393.378667pt;}
.y144{bottom:393.400000pt;}
.y261{bottom:395.025333pt;}
.y8{bottom:395.141333pt;}
.y112{bottom:401.491067pt;}
.y110{bottom:401.492715pt;}
.yd6{bottom:404.139200pt;}
.y111{bottom:404.851067pt;}
.y142{bottom:405.314667pt;}
.y6c{bottom:405.761333pt;}
.y1d3{bottom:405.985333pt;}
.y1fa{bottom:406.782667pt;}
.y1a0{bottom:407.180000pt;}
.y22a{bottom:407.181333pt;}
.yf0{bottom:407.578667pt;}
.y35{bottom:410.116000pt;}
.y260{bottom:410.368000pt;}
.y7{bottom:411.042667pt;}
.y10f{bottom:418.612219pt;}
.y141{bottom:422.052000pt;}
.y229{bottom:422.524000pt;}
.y1d2{bottom:422.722667pt;}
.y6b{bottom:422.857333pt;}
.y1f9{bottom:423.518667pt;}
.y19f{bottom:423.917333pt;}
.yef{bottom:424.316000pt;}
.yd5{bottom:425.258688pt;}
.y25f{bottom:425.710667pt;}
.y34{bottom:426.853333pt;}
.y6{bottom:426.942667pt;}
.yac{bottom:435.681104pt;}
.y10e{bottom:435.731723pt;}
.y228{bottom:437.865333pt;}
.y13f{bottom:438.789333pt;}
.y6a{bottom:439.952000pt;}
.y1f8{bottom:440.256000pt;}
.y19e{bottom:440.654667pt;}
.yee{bottom:441.053333pt;}
.y5{bottom:442.842667pt;}
.y1d1{bottom:443.445333pt;}
.y140{bottom:443.612000pt;}
.y33{bottom:447.576000pt;}
.y10d{bottom:452.771067pt;}
.y10b{bottom:452.772915pt;}
.yab{bottom:452.800608pt;}
.y227{bottom:453.208000pt;}
.y13e{bottom:455.526667pt;}
.y10c{bottom:456.131067pt;}
.y25e{bottom:456.396000pt;}
.y1f7{bottom:456.993333pt;}
.y19d{bottom:457.392000pt;}
.yed{bottom:457.790667pt;}
.yd4{bottom:458.378128pt;}
.y4{bottom:458.744000pt;}
.y226{bottom:468.550667pt;}
.y10a{bottom:469.892419pt;}
.yaa{bottom:469.920112pt;}
.y25d{bottom:471.738667pt;}
.y13d{bottom:472.264000pt;}
.y69{bottom:472.934667pt;}
.y1d0{bottom:473.333333pt;}
.y1f5{bottom:473.730667pt;}
.y19c{bottom:474.129333pt;}
.yec{bottom:474.528000pt;}
.y3{bottom:474.644000pt;}
.yd3{bottom:475.417472pt;}
.y1f6{bottom:478.553333pt;}
.y225{bottom:483.893333pt;}
.y109{bottom:486.931763pt;}
.ya9{bottom:486.959456pt;}
.y25c{bottom:487.081333pt;}
.y13c{bottom:489.001333pt;}
.y68{bottom:489.672000pt;}
.y1cf{bottom:490.070667pt;}
.y1f4{bottom:490.468000pt;}
.y2{bottom:490.544000pt;}
.y19b{bottom:490.866667pt;}
.yeb{bottom:491.265333pt;}
.yd2{bottom:492.536976pt;}
.y224{bottom:499.236000pt;}
.y25b{bottom:502.424000pt;}
.y108{bottom:504.051267pt;}
.ya8{bottom:504.078960pt;}
.y13b{bottom:505.738667pt;}
.y1{bottom:506.445333pt;}
.y1f3{bottom:507.205333pt;}
.y19a{bottom:507.604000pt;}
.yea{bottom:508.002667pt;}
.yd1{bottom:509.576320pt;}
.y67{bottom:510.393333pt;}
.y1ce{bottom:510.792000pt;}
.y32{bottom:514.376000pt;}
.y223{bottom:514.578667pt;}
.y25a{bottom:517.766667pt;}
.ya7{bottom:521.118304pt;}
.y107{bottom:521.170771pt;}
.y1f2{bottom:521.516000pt;}
.y13a{bottom:522.476000pt;}
.y1f1{bottom:523.942667pt;}
.y199{bottom:524.341333pt;}
.ye9{bottom:524.740000pt;}
.yd0{bottom:526.695824pt;}
.y66{bottom:528.326667pt;}
.y222{bottom:529.921333pt;}
.y259{bottom:533.108000pt;}
.y106{bottom:538.211451pt;}
.ya6{bottom:538.237808pt;}
.y1cd{bottom:540.680000pt;}
.y198{bottom:541.078667pt;}
.ye8{bottom:541.477333pt;}
.ycf{bottom:543.815328pt;}
.y221{bottom:545.264000pt;}
.y1f0{bottom:545.502667pt;}
.y31{bottom:547.610667pt;}
.y258{bottom:548.450667pt;}
.y139{bottom:552.312000pt;}
.ya5{bottom:555.357312pt;}
.y1cc{bottom:557.417333pt;}
.y197{bottom:557.816000pt;}
.y65{bottom:558.214667pt;}
.y220{bottom:560.605333pt;}
.yce{bottom:560.854672pt;}
.y257{bottom:563.793333pt;}
.y30{bottom:564.905333pt;}
.y138{bottom:569.408000pt;}
.ya4{bottom:572.396656pt;}
.y1cb{bottom:574.154667pt;}
.yba{bottom:574.553333pt;}
.y64{bottom:574.952000pt;}
.y21f{bottom:575.948000pt;}
.ycd{bottom:577.974176pt;}
.y256{bottom:579.136000pt;}
.y2f{bottom:582.201333pt;}
.y137{bottom:586.504000pt;}
.y104{bottom:586.851187pt;}
.ya3{bottom:589.516160pt;}
.y1ca{bottom:590.892000pt;}
.yb9{bottom:591.290667pt;}
.y63{bottom:591.689333pt;}
.y255{bottom:594.478667pt;}
.ycc{bottom:595.013520pt;}
.y103{bottom:595.411067pt;}
.y2e{bottom:599.496000pt;}
.y135{bottom:603.600000pt;}
.ya2{bottom:606.555504pt;}
.y21e{bottom:606.633333pt;}
.y1c9{bottom:607.629333pt;}
.y136{bottom:607.940000pt;}
.yb8{bottom:608.028000pt;}
.y62{bottom:608.426667pt;}
.y254{bottom:609.821333pt;}
.ycb{bottom:612.133024pt;}
.y2d{bottom:616.792000pt;}
.y134{bottom:620.696000pt;}
.y21d{bottom:621.976000pt;}
.y272{bottom:622.832000pt;}
.ya1{bottom:623.675008pt;}
.y1c8{bottom:624.366667pt;}
.yb7{bottom:624.765333pt;}
.y61{bottom:625.164000pt;}
.y1ef{bottom:628.352000pt;}
.y196{bottom:628.750667pt;}
.yca{bottom:629.252528pt;}
.y2c{bottom:634.086667pt;}
.y21c{bottom:637.318667pt;}
.y133{bottom:637.792000pt;}
.y253{bottom:640.506667pt;}
.ya0{bottom:640.794512pt;}
.y1c7{bottom:641.104000pt;}
.yb6{bottom:641.502667pt;}
.y60{bottom:641.901333pt;}
.yc9{bottom:646.293208pt;}
.y2b{bottom:651.381333pt;}
.y252{bottom:655.848000pt;}
.y21b{bottom:656.646667pt;}
.y9f{bottom:657.835192pt;}
.y1c6{bottom:657.841333pt;}
.y1ee{bottom:658.240000pt;}
.y5f{bottom:658.638667pt;}
.y102{bottom:660.385333pt;}
.yb5{bottom:662.225333pt;}
.yc8{bottom:663.412712pt;}
.y2a{bottom:668.677333pt;}
.y251{bottom:671.190667pt;}
.y1c5{bottom:674.578667pt;}
.y9e{bottom:674.954696pt;}
.y1ed{bottom:674.977333pt;}
.y5e{bottom:675.376000pt;}
.yc7{bottom:680.453392pt;}
.y29{bottom:685.972000pt;}
.y250{bottom:686.533333pt;}
.y21a{bottom:686.534667pt;}
.y8d{bottom:690.518667pt;}
.y1c4{bottom:691.316000pt;}
.y15b{bottom:691.714667pt;}
.y5d{bottom:692.113333pt;}
.y9d{bottom:695.994024pt;}
.y195{bottom:696.934667pt;}
.yc6{bottom:697.572896pt;}
.y24f{bottom:701.876000pt;}
.y28{bottom:703.266667pt;}
.y8c{bottom:707.256000pt;}
.y1c3{bottom:708.053333pt;}
.y15a{bottom:708.452000pt;}
.y5c{bottom:708.850667pt;}
.y219{bottom:710.125333pt;}
.y194{bottom:713.672000pt;}
.yc5{bottom:714.692400pt;}
.y9c{bottom:717.113512pt;}
.y24e{bottom:717.218667pt;}
.y27{bottom:720.562667pt;}
.y8b{bottom:723.993333pt;}
.y1c2{bottom:724.790667pt;}
.y159{bottom:725.189333pt;}
.yb4{bottom:725.586667pt;}
.y5b{bottom:725.588000pt;}
.y218{bottom:725.746667pt;}
.y24d{bottom:732.561333pt;}
.y8a{bottom:740.730667pt;}
.y1c1{bottom:741.528000pt;}
.y1ec{bottom:741.926667pt;}
.y5a{bottom:742.324000pt;}
.y271{bottom:745.572000pt;}
.y158{bottom:745.910667pt;}
.yc4{bottom:747.411600pt;}
.y24c{bottom:747.904000pt;}
.y217{bottom:749.338667pt;}
.y9b{bottom:750.232952pt;}
.y89{bottom:757.468000pt;}
.y26{bottom:758.068000pt;}
.y1c0{bottom:758.265333pt;}
.y1eb{bottom:758.664000pt;}
.y59{bottom:759.061333pt;}
.yc3{bottom:762.852000pt;}
.y24b{bottom:763.246667pt;}
.y9a{bottom:767.272296pt;}
.y25{bottom:768.557333pt;}
.y216{bottom:772.930667pt;}
.y88{bottom:774.205333pt;}
.y1bf{bottom:775.002667pt;}
.y1ea{bottom:775.401333pt;}
.y58{bottom:775.798667pt;}
.yc2{bottom:778.212000pt;}
.y24a{bottom:778.589333pt;}
.y193{bottom:780.621333pt;}
.y24{bottom:782.904000pt;}
.y99{bottom:784.391800pt;}
.y215{bottom:788.552000pt;}
.y87{bottom:790.942667pt;}
.y1be{bottom:791.740000pt;}
.y1e9{bottom:792.138667pt;}
.y57{bottom:792.536000pt;}
.yc1{bottom:793.572000pt;}
.y249{bottom:793.930667pt;}
.y192{bottom:797.358667pt;}
.y23{bottom:801.106667pt;}
.y98{bottom:801.511304pt;}
.y86{bottom:807.680000pt;}
.y1bd{bottom:808.477333pt;}
.y1e8{bottom:808.874667pt;}
.yc0{bottom:809.012400pt;}
.y56{bottom:809.273333pt;}
.y22{bottom:811.596000pt;}
.y214{bottom:812.142667pt;}
.y97{bottom:818.550648pt;}
.ybf{bottom:824.372400pt;}
.y85{bottom:824.417333pt;}
.y248{bottom:824.616000pt;}
.y1e7{bottom:825.612000pt;}
.y55{bottom:826.010667pt;}
.y213{bottom:827.764000pt;}
.y1bc{bottom:829.198667pt;}
.y21{bottom:829.800000pt;}
.y157{bottom:830.833333pt;}
.y96{bottom:835.670152pt;}
.y247{bottom:839.958667pt;}
.y84{bottom:841.154667pt;}
.y1e6{bottom:842.349333pt;}
.y54{bottom:842.748000pt;}
.y212{bottom:843.386667pt;}
.y95{bottom:852.709496pt;}
.y246{bottom:855.301333pt;}
.y83{bottom:857.892000pt;}
.y1bb{bottom:859.086667pt;}
.y53{bottom:859.485333pt;}
.y277{bottom:866.592000pt;}
.y211{bottom:866.977333pt;}
.y20{bottom:868.862667pt;}
.y94{bottom:869.829000pt;}
.y245{bottom:870.644000pt;}
.ybd{bottom:871.572520pt;}
.y82{bottom:874.629333pt;}
.y1ba{bottom:875.824000pt;}
.y52{bottom:876.222667pt;}
.y1e5{bottom:879.809333pt;}
.ybc{bottom:880.132400pt;}
.y276{bottom:881.934667pt;}
.y210{bottom:882.598667pt;}
.y1f{bottom:885.600000pt;}
.y244{bottom:885.986667pt;}
.y93{bottom:886.948504pt;}
.y1b9{bottom:892.561333pt;}
.y51{bottom:892.960000pt;}
.y81{bottom:895.350667pt;}
.y275{bottom:897.277333pt;}
.y20f{bottom:898.220000pt;}
.y243{bottom:901.329333pt;}
.y92{bottom:903.989184pt;}
.y50{bottom:909.697333pt;}
.y80{bottom:913.284000pt;}
.y20e{bottom:913.842667pt;}
.y191{bottom:914.520000pt;}
.y242{bottom:916.670667pt;}
.y1e{bottom:921.449333pt;}
.y4f{bottom:926.434667pt;}
.y20d{bottom:929.464000pt;}
.y241{bottom:932.013333pt;}
.y4e{bottom:943.172000pt;}
.y20c{bottom:945.085333pt;}
.y1d{bottom:946.554667pt;}
.y240{bottom:947.356000pt;}
.y190{bottom:947.993333pt;}
.y90{bottom:952.628920pt;}
.y4d{bottom:959.909333pt;}
.y8f{bottom:961.188800pt;}
.y23f{bottom:962.698667pt;}
.y1c{bottom:971.661333pt;}
.y4c{bottom:976.646667pt;}
.y23e{bottom:978.041333pt;}
.y4b{bottom:993.384000pt;}
.y18{bottom:1010.316000pt;}
.y4a{bottom:1046.810667pt;}
.h21{height:24.866650pt;}
.h1d{height:27.384375pt;}
.h22{height:28.023859pt;}
.hb{height:28.947524pt;}
.h1c{height:29.765625pt;}
.h4{height:31.890083pt;}
.h10{height:33.186336pt;}
.h2{height:33.771789pt;}
.h11{height:34.430976pt;}
.h5{height:35.024664pt;}
.h1a{height:36.666735pt;}
.h12{height:36.873667pt;}
.h20{height:37.193707pt;}
.he{height:38.256384pt;}
.h16{height:38.462187pt;}
.hc{height:38.596538pt;}
.h7{height:39.000258pt;}
.h14{height:39.588281pt;}
.h6{height:41.001535pt;}
.hd{height:43.421286pt;}
.h23{height:43.660390pt;}
.h18{height:44.648438pt;}
.h3{height:45.272024pt;}
.hf{height:48.245551pt;}
.ha{height:48.360277pt;}
.h9{height:49.201961pt;}
.h15{height:49.708594pt;}
.h24{height:51.131789pt;}
.h19{height:55.952068pt;}
.h1e{height:55.957402pt;}
.h8{height:68.861952pt;}
.h1f{height:279.592000pt;}
.h17{height:318.580000pt;}
.h1b{height:346.282667pt;}
.h13{height:414.000400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:191.879724pt;}
.w3{width:444.269333pt;}
.w6{width:522.758667pt;}
.w5{width:542.253600pt;}
.w4{width:564.313333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x4a{left:-177.212000pt;}
.xa9{left:-81.792000pt;}
.x83{left:-71.531733pt;}
.x5d{left:-64.862667pt;}
.x4c{left:-3.372969pt;}
.x0{left:0.000000pt;}
.x4b{left:24.946938pt;}
.x1{left:47.621333pt;}
.x3{left:53.357850pt;}
.xf0{left:76.309333pt;}
.xab{left:92.048000pt;}
.x85{left:102.307298pt;}
.x5e{left:108.977333pt;}
.x5c{left:114.505333pt;}
.xad{left:120.367906pt;}
.x82{left:125.535733pt;}
.x84{left:130.627204pt;}
.x5f{left:137.297333pt;}
.x86{left:155.828267pt;}
.x87{left:159.828267pt;}
.x2{left:161.132773pt;}
.xac{left:163.408000pt;}
.x8b{left:203.908267pt;}
.x8c{left:207.588267pt;}
.xee{left:219.852000pt;}
.x6{left:220.912000pt;}
.x4{left:221.858667pt;}
.x38{left:225.768000pt;}
.x5{left:239.924000pt;}
.x30{left:246.524000pt;}
.x43{left:247.624000pt;}
.xca{left:248.765333pt;}
.x7{left:250.204000pt;}
.x6e{left:251.569333pt;}
.x37{left:252.652000pt;}
.xcd{left:256.833333pt;}
.x36{left:258.461333pt;}
.x44{left:261.870667pt;}
.x27{left:264.246667pt;}
.x6f{left:265.361333pt;}
.x6b{left:266.660000pt;}
.x18{left:270.392000pt;}
.x39{left:273.673333pt;}
.x28{left:277.530667pt;}
.xcb{left:278.696000pt;}
.x73{left:279.721333pt;}
.x19{left:283.676000pt;}
.x14{left:285.796000pt;}
.xd7{left:287.832000pt;}
.x29{left:289.057333pt;}
.x1a{left:290.184000pt;}
.x62{left:292.061333pt;}
.x50{left:293.360000pt;}
.x65{left:295.525333pt;}
.xae{left:297.042667pt;}
.x15{left:299.080000pt;}
.x59{left:301.256000pt;}
.x2a{left:302.341333pt;}
.x1b{left:303.468000pt;}
.xe0{left:304.376000pt;}
.x2b{left:305.728000pt;}
.x51{left:307.616000pt;}
.x66{left:309.616000pt;}
.xea{left:310.656000pt;}
.xf3{left:311.741333pt;}
.xa6{left:314.556000pt;}
.x5a{left:315.490667pt;}
.xe1{left:317.658667pt;}
.x2c{left:319.012000pt;}
.x4f{left:320.498667pt;}
.x90{left:324.066667pt;}
.x20{left:325.740000pt;}
.xe6{left:329.850667pt;}
.x91{left:332.364000pt;}
.x33{left:334.597333pt;}
.xe7{left:335.900000pt;}
.x32{left:337.538667pt;}
.x21{left:339.022667pt;}
.x35{left:344.957333pt;}
.xba{left:348.618667pt;}
.x8a{left:354.468267pt;}
.xcc{left:355.360000pt;}
.x45{left:356.850667pt;}
.xc{left:357.748000pt;}
.x76{left:359.193333pt;}
.xb2{left:360.568000pt;}
.x93{left:362.086667pt;}
.xd{left:364.389333pt;}
.xce{left:365.733333pt;}
.x99{left:367.282667pt;}
.xc7{left:368.961333pt;}
.x46{left:371.097333pt;}
.x94{left:376.332000pt;}
.xcf{left:379.017333pt;}
.x9a{left:381.180000pt;}
.xc8{left:382.245333pt;}
.xa8{left:384.806667pt;}
.x88{left:395.588267pt;}
.x89{left:399.588267pt;}
.x3d{left:400.894667pt;}
.xda{left:406.816000pt;}
.xb3{left:409.874667pt;}
.x6c{left:411.288000pt;}
.xd4{left:412.778667pt;}
.x3e{left:415.060000pt;}
.xd5{left:416.065333pt;}
.x3f{left:418.830667pt;}
.xdb{left:420.098667pt;}
.xbe{left:422.397333pt;}
.xb4{left:424.112000pt;}
.x6d{left:425.540000pt;}
.xb0{left:426.918667pt;}
.xd0{left:428.152000pt;}
.x52{left:429.614667pt;}
.x40{left:433.078667pt;}
.xbb{left:434.862667pt;}
.x47{left:436.432000pt;}
.xd1{left:441.436000pt;}
.xe8{left:444.474667pt;}
.x70{left:446.928000pt;}
.x12{left:449.888000pt;}
.x34{left:451.889333pt;}
.xbc{left:454.130667pt;}
.x13{left:456.529333pt;}
.x1c{left:458.673333pt;}
.x95{left:462.497333pt;}
.x31{left:464.520000pt;}
.x3b{left:466.638667pt;}
.x67{left:468.890667pt;}
.x1d{left:471.957333pt;}
.x4d{left:473.426025pt;}
.xef{left:475.984000pt;}
.xd2{left:477.524000pt;}
.xa7{left:479.616000pt;}
.x3c{left:480.873333pt;}
.x77{left:481.869333pt;}
.x68{left:482.981333pt;}
.x9b{left:486.060000pt;}
.xd9{left:491.408000pt;}
.xd3{left:494.168000pt;}
.x23{left:495.870667pt;}
.x78{left:497.884000pt;}
.x9c{left:500.152000pt;}
.xb5{left:505.176000pt;}
.xb1{left:507.974667pt;}
.x24{left:509.153333pt;}
.x3a{left:510.333333pt;}
.x74{left:512.664000pt;}
.xb7{left:513.706667pt;}
.x2e{left:517.805333pt;}
.xd8{left:521.942667pt;}
.xc4{left:525.858667pt;}
.x41{left:527.577333pt;}
.x69{left:529.562667pt;}
.x2f{left:530.633333pt;}
.xa0{left:532.210667pt;}
.xaa{left:535.085427pt;}
.x8d{left:540.388133pt;}
.x42{left:541.825333pt;}
.xbf{left:543.456000pt;}
.x6a{left:544.386667pt;}
.xa1{left:546.445333pt;}
.x63{left:550.637333pt;}
.xe3{left:554.146667pt;}
.xdc{left:556.393333pt;}
.x48{left:557.953333pt;}
.xc6{left:558.908000pt;}
.x53{left:561.889333pt;}
.x64{left:564.897333pt;}
.x60{left:568.096177pt;}
.xe{left:569.009333pt;}
.xe2{left:570.716000pt;}
.x49{left:572.212000pt;}
.xf{left:575.650667pt;}
.xe4{left:577.193333pt;}
.x98{left:579.102667pt;}
.x10{left:582.333333pt;}
.x75{left:586.270667pt;}
.x79{left:587.284000pt;}
.x11{left:588.974667pt;}
.xe5{left:590.477333pt;}
.x7c{left:593.350667pt;}
.xbd{left:597.814667pt;}
.x7d{left:599.062667pt;}
.x9f{left:601.170667pt;}
.xa3{left:602.965333pt;}
.xc1{left:607.161333pt;}
.x8e{left:608.868133pt;}
.x8f{left:612.868133pt;}
.x25{left:615.709333pt;}
.x9d{left:617.020000pt;}
.x8{left:619.210667pt;}
.x92{left:622.629333pt;}
.xc5{left:624.085333pt;}
.x9{left:625.852000pt;}
.x26{left:628.993333pt;}
.xb8{left:631.664000pt;}
.xa{left:632.626667pt;}
.xde{left:635.685333pt;}
.xc0{left:638.145333pt;}
.xb{left:639.268000pt;}
.xb6{left:641.552000pt;}
.x7e{left:643.548000pt;}
.x54{left:645.877333pt;}
.xb9{left:647.738667pt;}
.xdf{left:648.969333pt;}
.xeb{left:650.726667pt;}
.x7a{left:653.764000pt;}
.xaf{left:656.324000pt;}
.x7f{left:657.806667pt;}
.x55{left:659.964000pt;}
.xec{left:661.220000pt;}
.xe9{left:662.820000pt;}
.xed{left:670.253333pt;}
.x16{left:678.346667pt;}
.x57{left:679.460000pt;}
.xa4{left:680.622667pt;}
.x9e{left:682.348000pt;}
.x56{left:689.214667pt;}
.xc9{left:690.981333pt;}
.x22{left:692.094667pt;}
.x58{left:693.465333pt;}
.xa5{left:694.877333pt;}
.x5b{left:701.121333pt;}
.x17{left:704.654667pt;}
.x71{left:705.893333pt;}
.xc2{left:707.253333pt;}
.x96{left:710.506667pt;}
.xc3{left:712.965333pt;}
.xd6{left:714.446667pt;}
.x4e{left:718.806667pt;}
.x72{left:720.262667pt;}
.xdd{left:723.045333pt;}
.x97{left:725.377333pt;}
.x1e{left:727.082667pt;}
.xf1{left:730.080000pt;}
.x7b{left:733.928000pt;}
.x61{left:735.868000pt;}
.x80{left:736.964000pt;}
.xa2{left:738.348000pt;}
.x1f{left:740.366667pt;}
.x81{left:742.676000pt;}
.xf2{left:743.624000pt;}
.x2d{left:744.770667pt;}
}




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