
    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_dc4bba47a77deea4e3f2dcbb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.184000;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_86555b0d3b0cd41f16dd3329.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_123ac5cc0d62cc7d29a4cf3f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.894000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5ca5bb923d33c662edafa111.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_883237b286e1b8e3beb645fe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d487b913328e08f1794ac3aa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3aec0ddedfc601a1235fd0e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_52521e14869355c48b53979a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_d0d352af3b12a918dffbde68.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a40b73a2db4ce338ddb1f16e.woff2')format("woff");}.ffb{font-family:ffb;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;}
@font-face{font-family:ffc;src:url('chunks/assets/font_6700070001b64cd96cf391b1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.493000;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_7079bc01730568d8224d95d4.woff2')format("woff");}.ffd{font-family:ffd;line-height:3.681000;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_5001515aec37e8c2cc43e603.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;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_2e5742806cd8c9426307a2a5.woff2')format("woff");}.fff{font-family:fff;line-height:0.504000;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_3602bad3d57ca51c93becc91.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.900000;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_da1035ce8732a9fe9066d8b4.woff2')format("woff");}.ff11{font-family:ff11;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;}
.m7{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);}
.m14{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);}
.m1c{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.md{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);}
.m18{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m23{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);}
.m26{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);}
.m20{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);}
.m4{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);}
.m11{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);}
.m15{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.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);}
.m17{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);}
.m12{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);}
.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);}
.m29{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);}
.ma{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);}
.m1e{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m28{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);}
.m9{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);}
.m27{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);}
.m24{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);}
.m19{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);}
.mf{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);}
.m1a{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);}
.m21{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);}
.m13{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);}
.m10{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);}
.mc{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);}
.mb{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);}
.m1d{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);}
.m8{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);}
.m1{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);}
.va{vertical-align:-48.450000px;}
.v11{vertical-align:-35.508000px;}
.v4{vertical-align:-17.358000px;}
.v1c{vertical-align:-14.946000px;}
.v7{vertical-align:-11.760000px;}
.v18{vertical-align:-4.608000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:5.976000px;}
.v3{vertical-align:10.038000px;}
.v9{vertical-align:11.760000px;}
.v2{vertical-align:13.392000px;}
.v19{vertical-align:18.012000px;}
.v17{vertical-align:20.004000px;}
.v1{vertical-align:21.696000px;}
.v15{vertical-align:23.910000px;}
.ve{vertical-align:24.984000px;}
.v5{vertical-align:29.274000px;}
.v1e{vertical-align:32.874000px;}
.vd{vertical-align:35.070000px;}
.v6{vertical-align:38.244000px;}
.v12{vertical-align:40.470000px;}
.v14{vertical-align:41.844000px;}
.v8{vertical-align:48.450000px;}
.v1d{vertical-align:50.808000px;}
.vb{vertical-align:60.210000px;}
.v1b{vertical-align:62.568000px;}
.vc{vertical-align:66.384000px;}
.vf{vertical-align:91.368000px;}
.v10{vertical-align:94.062000px;}
.v1a{vertical-align:102.246000px;}
.v13{vertical-align:138.084000px;}
.ls0{letter-spacing:0.000000px;}
.ls80{letter-spacing:0.000030px;}
.ls6{letter-spacing:0.000600px;}
.lsb0{letter-spacing:0.001036px;}
.lsaf{letter-spacing:0.001155px;}
.lsa3{letter-spacing:0.001555px;}
.ls81{letter-spacing:0.002383px;}
.ls8e{letter-spacing:0.002400px;}
.ls96{letter-spacing:0.002725px;}
.ls49{letter-spacing:0.003351px;}
.lsb2{letter-spacing:0.003859px;}
.lsb6{letter-spacing:0.004800px;}
.ls98{letter-spacing:0.005686px;}
.ls2f{letter-spacing:0.097897px;}
.ls10{letter-spacing:0.103897px;}
.ls7a{letter-spacing:0.542815px;}
.ls2d{letter-spacing:0.548815px;}
.ls45{letter-spacing:0.565142px;}
.ls40{letter-spacing:0.571200px;}
.lsa8{letter-spacing:0.603044px;}
.lsaa{letter-spacing:0.648088px;}
.ls3e{letter-spacing:0.714783px;}
.ls47{letter-spacing:0.720783px;}
.ls16{letter-spacing:0.748766px;}
.ls7c{letter-spacing:0.992725px;}
.ls75{letter-spacing:0.995675px;}
.ls12{letter-spacing:0.997331px;}
.ls7f{letter-spacing:0.998725px;}
.lsc{letter-spacing:0.999634px;}
.ls5e{letter-spacing:1.000766px;}
.ls8b{letter-spacing:1.001675px;}
.ls86{letter-spacing:1.058793px;}
.ls57{letter-spacing:1.134571px;}
.ls79{letter-spacing:1.140571px;}
.ls70{letter-spacing:1.240741px;}
.lsa{letter-spacing:1.275394px;}
.ls2b{letter-spacing:1.290458px;}
.ls56{letter-spacing:1.318115px;}
.ls4d{letter-spacing:1.420741px;}
.ls61{letter-spacing:1.439108px;}
.ls72{letter-spacing:1.446805px;}
.ls2c{letter-spacing:1.452571px;}
.ls52{letter-spacing:1.455507px;}
.ls5b{letter-spacing:1.461483px;}
.ls7b{letter-spacing:1.467483px;}
.ls32{letter-spacing:1.474893px;}
.ls2a{letter-spacing:1.478012px;}
.ls4e{letter-spacing:1.491986px;}
.ls53{letter-spacing:1.492766px;}
.ls87{letter-spacing:1.496383px;}
.ls5f{letter-spacing:1.640100px;}
.ls5c{letter-spacing:1.646100px;}
.ls4{letter-spacing:1.861130px;}
.ls3c{letter-spacing:1.913675px;}
.ls7e{letter-spacing:2.004583px;}
.ls28{letter-spacing:2.005897px;}
.ls76{letter-spacing:2.010583px;}
.ls1f{letter-spacing:2.011897px;}
.ls44{letter-spacing:2.361483px;}
.ls59{letter-spacing:2.367483px;}
.lse{letter-spacing:2.370843px;}
.ls26{letter-spacing:2.374893px;}
.ls1c{letter-spacing:2.376843px;}
.ls69{letter-spacing:2.598583px;}
.ls6b{letter-spacing:2.604583px;}
.ls84{letter-spacing:2.655483px;}
.ls74{letter-spacing:2.661483px;}
.ls1d{letter-spacing:2.901634px;}
.ls21{letter-spacing:2.905331px;}
.ls24{letter-spacing:2.907634px;}
.ls95{letter-spacing:2.985986px;}
.ls1{letter-spacing:2.989200px;}
.ls4a{letter-spacing:2.989258px;}
.ls91{letter-spacing:2.991986px;}
.ls6d{letter-spacing:3.348583px;}
.ls20{letter-spacing:3.552571px;}
.ls1e{letter-spacing:3.558571px;}
.lsa4{letter-spacing:3.658348px;}
.lsa7{letter-spacing:3.664348px;}
.ls9e{letter-spacing:3.729986px;}
.ls9b{letter-spacing:3.735986px;}
.ls22{letter-spacing:4.302571px;}
.ls6e{letter-spacing:4.408741px;}
.ls4c{letter-spacing:4.531258px;}
.ls43{letter-spacing:6.638100px;}
.ls42{letter-spacing:6.644100px;}
.ls97{letter-spacing:7.216741px;}
.lsa0{letter-spacing:8.085044px;}
.ls30{letter-spacing:9.362012px;}
.ls5{letter-spacing:10.461300px;}
.lsf{letter-spacing:10.706100px;}
.ls11{letter-spacing:10.712100px;}
.ls9{letter-spacing:11.954850px;}
.ls64{letter-spacing:13.083483px;}
.ls37{letter-spacing:13.089483px;}
.ls36{letter-spacing:13.113634px;}
.ls38{letter-spacing:13.117897px;}
.ls63{letter-spacing:13.120766px;}
.lsb5{letter-spacing:13.347617px;}
.lsb3{letter-spacing:13.382400px;}
.lsac{letter-spacing:13.448400px;}
.lsad{letter-spacing:13.454400px;}
.lsb4{letter-spacing:13.562645px;}
.ls58{letter-spacing:13.693200px;}
.ls2e{letter-spacing:13.699200px;}
.ls89{letter-spacing:13.989483px;}
.lsae{letter-spacing:14.044518px;}
.lsa5{letter-spacing:14.055044px;}
.lsa9{letter-spacing:14.094088px;}
.lsa1{letter-spacing:14.122348px;}
.ls77{letter-spacing:14.283483px;}
.ls7d{letter-spacing:14.289483px;}
.ls34{letter-spacing:14.810670px;}
.ls3a{letter-spacing:14.824349px;}
.lsb{letter-spacing:14.941342px;}
.ls3{letter-spacing:14.944200px;}
.ls67{letter-spacing:14.970583px;}
.ls73{letter-spacing:15.097535px;}
.ls68{letter-spacing:15.177483px;}
.ls6c{letter-spacing:15.355200px;}
.ls9c{letter-spacing:15.357986px;}
.ls6a{letter-spacing:15.361200px;}
.ls6f{letter-spacing:15.566725px;}
.lsa6{letter-spacing:15.594088px;}
.lsa2{letter-spacing:15.600088px;}
.lsab{letter-spacing:15.601432px;}
.ls9f{letter-spacing:15.622741px;}
.ls94{letter-spacing:15.663483px;}
.ls9d{letter-spacing:15.717483px;}
.lsb1{letter-spacing:15.832753px;}
.ls8c{letter-spacing:16.242571px;}
.ls83{letter-spacing:16.248571px;}
.ls50{letter-spacing:16.463971px;}
.ls99{letter-spacing:16.815986px;}
.ls9a{letter-spacing:17.181483px;}
.ls19{letter-spacing:17.319483px;}
.ls15{letter-spacing:17.325483px;}
.ls2{letter-spacing:17.929200px;}
.ls3b{letter-spacing:17.929258px;}
.ls8f{letter-spacing:17.929474px;}
.ls92{letter-spacing:17.935200px;}
.ls90{letter-spacing:17.937986px;}
.ls54{letter-spacing:18.057507px;}
.lsd{letter-spacing:18.069483px;}
.ls29{letter-spacing:18.075483px;}
.ls51{letter-spacing:18.094766px;}
.ls18{letter-spacing:18.098383px;}
.ls62{letter-spacing:18.146725px;}
.ls14{letter-spacing:18.512383px;}
.ls82{letter-spacing:18.528571px;}
.ls93{letter-spacing:18.681986px;}
.ls4b{letter-spacing:18.695675px;}
.ls85{letter-spacing:19.248571px;}
.ls65{letter-spacing:19.535108px;}
.ls5a{letter-spacing:19.950583px;}
.ls66{letter-spacing:20.163483px;}
.ls1b{letter-spacing:20.904571px;}
.ls25{letter-spacing:20.910571px;}
.ls3d{letter-spacing:21.133258px;}
.ls8a{letter-spacing:21.222571px;}
.ls78{letter-spacing:21.228571px;}
.ls35{letter-spacing:26.139483px;}
.ls17{letter-spacing:27.746100px;}
.ls13{letter-spacing:45.558843px;}
.ls7{letter-spacing:62.761200px;}
.ls46{letter-spacing:63.517200px;}
.ls8{letter-spacing:64.321654px;}
.ls3f{letter-spacing:71.520783px;}
.ls41{letter-spacing:132.752100px;}
.ls55{letter-spacing:199.041483px;}
.ls1a{letter-spacing:493.638583px;}
.ls71{letter-spacing:565.321200px;}
.ls8d{letter-spacing:707.248893px;}
.ls88{letter-spacing:708.544893px;}
.ls48{letter-spacing:719.927607px;}
.ls60{letter-spacing:794.272893px;}
.ls31{letter-spacing:884.336726px;}
.ls39{letter-spacing:900.514200px;}
.ls4f{letter-spacing:917.313634px;}
.ls23{letter-spacing:919.656843px;}
.ls33{letter-spacing:923.146893px;}
.ls27{letter-spacing:924.580893px;}
.ls5d{letter-spacing:939.035675px;}
.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;}
}
.ws83{word-spacing:-47.324343px;}
.ws2{word-spacing:-14.943900px;}
.ws1a{word-spacing:-13.449600px;}
.ws37{word-spacing:-11.955150px;}
.ws1{word-spacing:-11.357400px;}
.ws6{word-spacing:-10.460700px;}
.ws90{word-spacing:-4.961375px;}
.ws86{word-spacing:-4.256695px;}
.ws87{word-spacing:-4.244068px;}
.ws6d{word-spacing:-3.287658px;}
.ws70{word-spacing:-2.988780px;}
.ws6e{word-spacing:-2.929004px;}
.ws94{word-spacing:-2.893082px;}
.ws71{word-spacing:-2.809453px;}
.ws6c{word-spacing:-2.689902px;}
.ws59{word-spacing:-2.630126px;}
.wsdb{word-spacing:-2.528525px;}
.wsb8{word-spacing:-2.510575px;}
.ws66{word-spacing:-2.450800px;}
.ws65{word-spacing:-1.912819px;}
.ws4{word-spacing:-1.908367px;}
.ws1d{word-spacing:-1.613952px;}
.wsf6{word-spacing:-1.560154px;}
.ws75{word-spacing:-1.494390px;}
.wsb7{word-spacing:-1.374839px;}
.ws3{word-spacing:-1.322630px;}
.wsb5{word-spacing:-1.315063px;}
.ws8c{word-spacing:-1.135736px;}
.wsbf{word-spacing:-1.075968px;}
.wsc0{word-spacing:-1.022170px;}
.ws4b{word-spacing:-1.016185px;}
.wsa2{word-spacing:-0.896634px;}
.ws40{word-spacing:-0.836858px;}
.wsf0{word-spacing:-0.806976px;}
.wsb2{word-spacing:-0.717307px;}
.wscc{word-spacing:-0.699379px;}
.wsaf{word-spacing:-0.657532px;}
.ws64{word-spacing:-0.597756px;}
.ws4d{word-spacing:-0.537980px;}
.wsb3{word-spacing:-0.478205px;}
.wsb6{word-spacing:-0.418429px;}
.wsd8{word-spacing:-0.376589px;}
.ws52{word-spacing:-0.358654px;}
.ws38{word-spacing:-0.298878px;}
.ws24{word-spacing:-0.268992px;}
.ws2c{word-spacing:-0.239102px;}
.ws1f{word-spacing:-0.215194px;}
.ws30{word-spacing:-0.179327px;}
.wse2{word-spacing:-0.161395px;}
.ws3c{word-spacing:-0.119551px;}
.wsd7{word-spacing:-0.107597px;}
.wscd{word-spacing:-0.061133px;}
.ws3a{word-spacing:-0.059776px;}
.ws20{word-spacing:-0.053798px;}
.wsc9{word-spacing:-0.029760px;}
.wsf5{word-spacing:-0.009302px;}
.wse3{word-spacing:-0.008285px;}
.wsf9{word-spacing:-0.007824px;}
.wsfc{word-spacing:-0.006806px;}
.wsc6{word-spacing:-0.005549px;}
.ws7{word-spacing:-0.004867px;}
.ws9a{word-spacing:-0.004657px;}
.ws99{word-spacing:-0.004652px;}
.ws8f{word-spacing:-0.004543px;}
.ws36{word-spacing:-0.003974px;}
.wsda{word-spacing:-0.003955px;}
.wsfa{word-spacing:-0.003763px;}
.wsd9{word-spacing:-0.003466px;}
.wsdf{word-spacing:-0.003302px;}
.wsd2{word-spacing:-0.002179px;}
.ws82{word-spacing:-0.000504px;}
.ws0{word-spacing:0.000000px;}
.ws16{word-spacing:0.053798px;}
.ws35{word-spacing:0.059776px;}
.ws15{word-spacing:0.107597px;}
.ws3b{word-spacing:0.119551px;}
.ws96{word-spacing:0.126116px;}
.ws17{word-spacing:0.161395px;}
.ws29{word-spacing:0.179327px;}
.ws8{word-spacing:0.209214px;}
.wsc4{word-spacing:0.215194px;}
.ws28{word-spacing:0.239102px;}
.ws1c{word-spacing:0.268992px;}
.wsa{word-spacing:0.292900px;}
.ws2f{word-spacing:0.298878px;}
.wsce{word-spacing:0.322790px;}
.ws50{word-spacing:0.358654px;}
.ws7e{word-spacing:0.418429px;}
.wsd3{word-spacing:0.430387px;}
.ws31{word-spacing:0.478205px;}
.ws22{word-spacing:0.484186px;}
.ws67{word-spacing:0.537980px;}
.ws76{word-spacing:0.597756px;}
.ws23{word-spacing:0.645581px;}
.wsad{word-spacing:0.657532px;}
.wsa4{word-spacing:0.669878px;}
.wsa5{word-spacing:0.673709px;}
.wsa6{word-spacing:0.681398px;}
.wsdd{word-spacing:0.699379px;}
.wsb9{word-spacing:0.717307px;}
.wsfb{word-spacing:0.753178px;}
.ws58{word-spacing:0.777083px;}
.ws3e{word-spacing:0.836858px;}
.wsee{word-spacing:0.860774px;}
.ws89{word-spacing:0.896634px;}
.ws46{word-spacing:0.956410px;}
.wsde{word-spacing:0.968371px;}
.ws81{word-spacing:1.016185px;}
.ws14{word-spacing:1.022170px;}
.wsdc{word-spacing:1.075968px;}
.ws92{word-spacing:1.117710px;}
.ws27{word-spacing:1.135736px;}
.wsf8{word-spacing:1.179024px;}
.wsed{word-spacing:1.183565px;}
.ws7f{word-spacing:1.195512px;}
.ws7d{word-spacing:1.315063px;}
.wsae{word-spacing:1.434614px;}
.ws88{word-spacing:1.494390px;}
.wsb0{word-spacing:1.554166px;}
.ws18{word-spacing:1.560154px;}
.wsab{word-spacing:1.613941px;}
.ws32{word-spacing:1.673717px;}
.ws2b{word-spacing:1.733492px;}
.ws48{word-spacing:1.793268px;}
.ws5e{word-spacing:1.853044px;}
.wse0{word-spacing:1.882944px;}
.ws39{word-spacing:1.972595px;}
.ws9{word-spacing:2.008454px;}
.ws8a{word-spacing:2.151922px;}
.ws7c{word-spacing:2.211697px;}
.wsba{word-spacing:2.391024px;}
.ws2d{word-spacing:2.450800px;}
.wsec{word-spacing:2.474726px;}
.wseb{word-spacing:2.477280px;}
.ws7b{word-spacing:2.510575px;}
.ws4e{word-spacing:2.570351px;}
.ws61{word-spacing:2.689902px;}
.ws45{word-spacing:2.749678px;}
.ws51{word-spacing:2.809453px;}
.ws5b{word-spacing:2.869229px;}
.ws12{word-spacing:2.869236px;}
.ws62{word-spacing:2.988780px;}
.ws73{word-spacing:3.048556px;}
.ws2e{word-spacing:3.108331px;}
.ws8b{word-spacing:3.168107px;}
.wse5{word-spacing:3.174106px;}
.ws21{word-spacing:3.179604px;}
.ws25{word-spacing:3.219667px;}
.wsc3{word-spacing:3.222557px;}
.wsf2{word-spacing:3.223066px;}
.wsef{word-spacing:3.224208px;}
.wsc2{word-spacing:3.224736px;}
.wsc1{word-spacing:3.224822px;}
.wsc5{word-spacing:3.225629px;}
.wse6{word-spacing:3.225994px;}
.wsd1{word-spacing:3.227021px;}
.wsc7{word-spacing:3.227184px;}
.wse9{word-spacing:3.227290px;}
.wsf3{word-spacing:3.227491px;}
.ws6a{word-spacing:3.227882px;}
.wsc8{word-spacing:3.227904px;}
.wsea{word-spacing:3.227933px;}
.wsf7{word-spacing:3.230438px;}
.wscf{word-spacing:3.281702px;}
.wsf4{word-spacing:3.335501px;}
.ws56{word-spacing:3.407209px;}
.wse8{word-spacing:3.443098px;}
.ws60{word-spacing:3.466985px;}
.wse7{word-spacing:3.496896px;}
.ws68{word-spacing:3.526760px;}
.ws26{word-spacing:3.586536px;}
.ws80{word-spacing:3.706087px;}
.ws95{word-spacing:3.733424px;}
.ws4a{word-spacing:3.765863px;}
.ws3d{word-spacing:3.825638px;}
.ws2a{word-spacing:3.885414px;}
.ws69{word-spacing:4.124516px;}
.ws34{word-spacing:4.244068px;}
.wsa1{word-spacing:4.303843px;}
.wsd0{word-spacing:4.303872px;}
.ws5a{word-spacing:4.542946px;}
.ws5f{word-spacing:4.662497px;}
.wsac{word-spacing:4.722272px;}
.ws49{word-spacing:4.782048px;}
.ws47{word-spacing:4.841824px;}
.ws19{word-spacing:4.895654px;}
.wsd4{word-spacing:4.949453px;}
.ws72{word-spacing:4.961375px;}
.ws4f{word-spacing:5.140702px;}
.ws5c{word-spacing:5.200477px;}
.wsf1{word-spacing:5.218445px;}
.ws43{word-spacing:5.260253px;}
.wsb4{word-spacing:5.379804px;}
.ws13{word-spacing:5.528427px;}
.ws5d{word-spacing:5.618906px;}
.wsb1{word-spacing:5.738458px;}
.ws54{word-spacing:5.917784px;}
.wsbd{word-spacing:5.917824px;}
.ws10{word-spacing:6.067206px;}
.ws11{word-spacing:6.150892px;}
.ws4c{word-spacing:6.336214px;}
.wsbc{word-spacing:6.455808px;}
.ws6f{word-spacing:6.515540px;}
.ws1e{word-spacing:6.778598px;}
.ws42{word-spacing:6.814418px;}
.wsbb{word-spacing:6.832397px;}
.wsd5{word-spacing:7.193546px;}
.wsd6{word-spacing:7.208986px;}
.ws53{word-spacing:7.232848px;}
.ws8e{word-spacing:7.352399px;}
.ws55{word-spacing:7.471950px;}
.ws57{word-spacing:7.531726px;}
.wsbe{word-spacing:7.531776px;}
.ws6b{word-spacing:7.830604px;}
.ws3f{word-spacing:7.950155px;}
.ws41{word-spacing:8.249033px;}
.ws63{word-spacing:8.547911px;}
.wse{word-spacing:8.661460px;}
.ws33{word-spacing:9.026116px;}
.wscb{word-spacing:9.145728px;}
.wsca{word-spacing:9.164580px;}
.wse1{word-spacing:9.253325px;}
.ws84{word-spacing:9.545959px;}
.ws91{word-spacing:11.336161px;}
.ws9b{word-spacing:13.017899px;}
.ws1b{word-spacing:13.234406px;}
.ws85{word-spacing:15.275986px;}
.ws5{word-spacing:15.483541px;}
.wsb{word-spacing:16.142252px;}
.wsc{word-spacing:16.151321px;}
.wsd{word-spacing:17.699504px;}
.ws93{word-spacing:18.000827px;}
.ws44{word-spacing:19.965050px;}
.wsf{word-spacing:27.448877px;}
.wse4{word-spacing:48.418560px;}
.ws9d{word-spacing:77.523494px;}
.wsa0{word-spacing:143.049946px;}
.ws9e{word-spacing:156.499546px;}
.ws9f{word-spacing:164.623104px;}
.wsa9{word-spacing:175.544179px;}
.wsaa{word-spacing:177.328934px;}
.wsa8{word-spacing:190.782134px;}
.wsa7{word-spacing:198.031910px;}
.ws7a{word-spacing:317.840947px;}
.ws78{word-spacing:354.423859px;}
.ws77{word-spacing:415.000858px;}
.ws79{word-spacing:434.368282px;}
.ws9c{word-spacing:658.395600px;}
.ws97{word-spacing:846.233959px;}
.ws98{word-spacing:863.285959px;}
.ws8d{word-spacing:985.479091px;}
.ws74{word-spacing:1011.087130px;}
.wsa3{word-spacing:1378.584000px;}
._74{margin-left:-31.537323px;}
._3{margin-left:-22.904963px;}
._7d{margin-left:-20.751008px;}
._7c{margin-left:-18.966159px;}
._8{margin-left:-16.933340px;}
._f{margin-left:-6.845587px;}
._d{margin-left:-5.308087px;}
._c{margin-left:-4.029940px;}
._a{margin-left:-2.999688px;}
._5{margin-left:-1.322630px;}
._6{width:1.091170px;}
._0{width:2.999688px;}
._4{width:4.990968px;}
._b5{width:9.113871px;}
._b4{width:11.279890px;}
._9{width:12.971268px;}
._e{width:14.824386px;}
._13{width:16.300915px;}
._7{width:18.327949px;}
._11{width:19.636416px;}
._20{width:20.682358px;}
._10{width:21.891009px;}
._6c{width:22.953830px;}
._17{width:24.276461px;}
._73{width:25.524181px;}
._2{width:26.598577px;}
._b7{width:27.961786px;}
._1e{width:28.998733px;}
._12{width:31.207014px;}
._b{width:32.637384px;}
._1b{width:34.430746px;}
._1d{width:35.865360px;}
._14{width:38.297117px;}
._18{width:39.511672px;}
._1c{width:41.484266px;}
._21{width:42.957617px;}
._1f{width:44.473046px;}
._1{width:54.403392px;}
._79{width:62.021989px;}
._7a{width:71.579452px;}
._b6{width:88.767360px;}
._1a{width:93.548814px;}
._19{width:96.537594px;}
._87{width:155.861246px;}
._9c{width:157.316150px;}
._88{width:161.018611px;}
._89{width:169.949146px;}
._81{width:173.069453px;}
._94{width:178.072704px;}
._6a{width:187.003238px;}
._83{width:190.123546px;}
._8e{width:191.522304px;}
._9f{width:203.573146px;}
._84{width:211.696704px;}
._86{width:214.763213px;}
._95{width:221.272819px;}
._8a{width:225.146304px;}
._8c{width:227.029248px;}
._7f{width:231.171725px;}
._8f{width:234.722419px;}
._80{width:245.320704px;}
._25{width:253.595231px;}
._85{width:254.896819px;}
._90{width:259.209830px;}
._31{width:262.651501px;}
._2e{width:269.116550px;}
._67{width:272.811686px;}
._9e{width:300.464064px;}
._2c{width:302.565287px;}
._28{width:304.699270px;}
._68{width:308.264832px;}
._a2{width:314.182656px;}
._32{width:317.156330px;}
._69{width:331.290547px;}
._b3{width:338.822323px;}
._23{width:349.680280px;}
._b2{width:353.078899px;}
._2d{width:361.605478px;}
._29{width:363.555750px;}
._8b{width:364.753152px;}
._66{width:384.819955px;}
._82{width:400.152499px;}
._6b{width:402.465830px;}
._27{width:403.699334px;}
._38{width:411.127373px;}
._2f{width:415.583011px;}
._26{width:419.515913px;}
._62{width:421.456666px;}
._9b{width:425.383949px;}
._2a{width:430.980840px;}
._8d{width:432.162547px;}
._92{width:438.833549px;}
._39{width:441.093082px;}
._b1{width:449.015284px;}
._93{width:459.608870px;}
._24{width:463.882312px;}
._a3{width:480.043123px;}
._65{width:482.033664px;}
._64{width:483.271027px;}
._2b{width:490.021031px;}
._22{width:502.516092px;}
._99{width:516.047767px;}
._98{width:548.123904px;}
._9a{width:568.433894px;}
._61{width:583.142149px;}
._a0{width:589.049122px;}
._63{width:601.250918px;}
._ad{width:604.425024px;}
._30{width:606.264436px;}
._37{width:609.674938px;}
._3b{width:612.225792px;}
._3a{width:615.884083px;}
._91{width:622.716480px;}
._9d{width:630.284099px;}
._96{width:632.333371px;}
._a1{width:643.709443px;}
._36{width:646.602970px;}
._3e{width:665.432410px;}
._97{width:684.208051px;}
._34{width:693.891763px;}
._3f{width:695.451917px;}
._44{width:697.065869px;}
._43{width:707.448960px;}
._35{width:718.101043px;}
._3d{width:723.104294px;}
._3c{width:725.740416px;}
._5c{width:726.923981px;}
._5d{width:737.683661px;}
._51{width:739.781798px;}
._b0{width:744.139469px;}
._4b{width:757.804262px;}
._41{width:762.592320px;}
._5f{width:765.551232px;}
._5e{width:769.456186px;}
._55{width:775.127347px;}
._42{width:789.576787px;}
._6d{width:800.371987px;}
._a7{width:812.732429px;}
._7e{width:817.197696px;}
._4d{width:823.976294px;}
._75{width:831.126717px;}
._40{width:833.498611px;}
._5b{width:835.112563px;}
._70{width:850.821696px;}
._53{width:859.106650px;}
._4e{width:867.804035px;}
._4c{width:869.489741px;}
._5a{width:874.224000px;}
._72{width:875.958739px;}
._60{width:877.236710px;}
._54{width:880.088026px;}
._48{width:883.087714px;}
._56{width:886.759027px;}
._6e{width:891.022291px;}
._59{width:903.759322px;}
._47{width:905.911258px;}
._45{width:910.645517px;}
._57{width:913.604429px;}
._15{width:919.684279px;}
._46{width:920.885659px;}
._58{width:923.449536px;}
._71{width:929.259763px;}
._49{width:933.402240px;}
._52{width:935.554176px;}
._4a{width:937.437120px;}
._6f{width:942.440371px;}
._76{width:949.662547px;}
._4f{width:957.342528px;}
._78{width:1016.682163px;}
._a5{width:1018.188518px;}
._a9{width:1025.558899px;}
._77{width:1029.862771px;}
._50{width:1034.381837px;}
._33{width:1063.701965px;}
._a6{width:1081.347840px;}
._af{width:1101.522240px;}
._ae{width:1104.803942px;}
._ab{width:1208.688653px;}
._a4{width:1234.511885px;}
._a8{width:1239.784128px;}
._ac{width:1254.686285px;}
._aa{width:1321.450099px;}
._7b{width:2582.547600px;}
._16{width:2606.457600px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(53,39,23);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:35.865600px;}
.fsb{font-size:41.842800px;}
.fsa{font-size:41.936104px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.429600px;}
.fs9{font-size:47.236800px;}
.fs11{font-size:47.337600px;}
.fsd{font-size:47.820600px;}
.fse{font-size:53.798400px;}
.fs12{font-size:56.058000px;}
.fs6{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fsf{font-size:62.286600px;}
.fs1{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:83.686200px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:107.596800px;}
.fs5{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y2b{bottom:3.425340px;}
.y2a{bottom:14.151273px;}
.y24{bottom:15.759303px;}
.y6c{bottom:31.890000px;}
.y6{bottom:66.525004px;}
.y18d{bottom:88.993500px;}
.y20a{bottom:90.462000px;}
.y24f{bottom:94.228500px;}
.y5{bottom:97.125005px;}
.y25a{bottom:101.358000px;}
.yd8{bottom:101.764500px;}
.y42{bottom:102.823500px;}
.y6b{bottom:103.941000px;}
.y1a1{bottom:107.076000px;}
.y18c{bottom:107.823000px;}
.y209{bottom:109.291500px;}
.ya3{bottom:109.366500px;}
.y24e{bottom:113.058000px;}
.y1dc{bottom:113.248500px;}
.y1a0{bottom:113.322000px;}
.y2b0{bottom:118.351500px;}
.y259{bottom:120.187500px;}
.y108{bottom:120.444000px;}
.yd7{bottom:120.594000px;}
.y41{bottom:120.711000px;}
.y1a2{bottom:122.199000px;}
.y6a{bottom:122.770500px;}
.y28a{bottom:124.627500px;}
.y1db{bottom:126.088500px;}
.y18b{bottom:126.652500px;}
.y12b{bottom:127.380000px;}
.ya2{bottom:128.196000px;}
.y1da{bottom:131.242500px;}
.y24d{bottom:131.887500px;}
.y208{bottom:132.604500px;}
.y2af{bottom:135.612000px;}
.y2e6{bottom:138.078000px;}
.y40{bottom:138.600000px;}
.y258{bottom:139.017000px;}
.y22{bottom:139.264499px;}
.y107{bottom:139.273500px;}
.yd6{bottom:139.422000px;}
.y69{bottom:141.600000px;}
.y289{bottom:143.457000px;}
.y18a{bottom:145.482000px;}
.y12a{bottom:146.209500px;}
.ya1{bottom:147.025500px;}
.y1d9{bottom:150.072000px;}
.y2ae{bottom:152.872500px;}
.y19f{bottom:153.840000px;}
.y24c{bottom:155.200500px;}
.y2e5{bottom:155.338500px;}
.y234{bottom:155.538000px;}
.y3f{bottom:156.487500px;}
.y257{bottom:157.846500px;}
.y106{bottom:158.103000px;}
.yd5{bottom:158.251500px;}
.y68{bottom:160.429500px;}
.y288{bottom:162.286500px;}
.y189{bottom:164.311500px;}
.y129{bottom:165.039000px;}
.y1d8{bottom:165.519000px;}
.ya0{bottom:165.855000px;}
.y207{bottom:166.228500px;}
.y162{bottom:168.646500px;}
.y2ad{bottom:170.133000px;}
.y1d7{bottom:170.674500px;}
.y2e4{bottom:172.599000px;}
.y233{bottom:174.367500px;}
.y3e{bottom:174.375000px;}
.y256{bottom:176.676000px;}
.y105{bottom:176.932500px;}
.yd4{bottom:177.081000px;}
.y67{bottom:179.259000px;}
.y287{bottom:181.116000px;}
.y19e{bottom:182.083500px;}
.y19d{bottom:182.449500px;}
.y188{bottom:183.141000px;}
.y128{bottom:183.868500px;}
.y9f{bottom:184.684500px;}
.y206{bottom:185.056500px;}
.y161{bottom:185.083500px;}
.y2ac{bottom:187.393500px;}
.y2e3{bottom:189.858000px;}
.y3d{bottom:192.264000px;}
.y232{bottom:193.197000px;}
.y255{bottom:195.505500px;}
.y104{bottom:195.762000px;}
.yd3{bottom:195.910500px;}
.y19{bottom:196.933500px;}
.y24b{bottom:197.523000px;}
.y66{bottom:198.088500px;}
.y286{bottom:199.945500px;}
.y160{bottom:201.522000px;}
.y187{bottom:201.970500px;}
.y1d5{bottom:202.200000px;}
.y127{bottom:202.698000px;}
.y9e{bottom:203.514000px;}
.y205{bottom:203.886000px;}
.y2ab{bottom:204.654000px;}
.y2e2{bottom:207.118500px;}
.y1d4{bottom:207.201000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y3c{bottom:210.151500px;}
.y231{bottom:212.026500px;}
.y254{bottom:214.335000px;}
.y103{bottom:214.591500px;}
.yd2{bottom:214.740000px;}
.y19c{bottom:216.820500px;}
.y65{bottom:216.918000px;}
.y15f{bottom:217.960500px;}
.y285{bottom:218.775000px;}
.y186{bottom:220.800000px;}
.y24a{bottom:221.164500px;}
.y126{bottom:221.527500px;}
.y2aa{bottom:221.914500px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y9d{bottom:222.343500px;}
.y204{bottom:222.715500px;}
.y2e1{bottom:224.379000px;}
.y1d3{bottom:226.543500px;}
.y3b{bottom:228.039000px;}
.y1ce{bottom:229.984500px;}
.y230{bottom:230.856000px;}
.y1cc{bottom:231.313500px;}
.y1d2{bottom:232.521000px;}
.y253{bottom:233.164500px;}
.y102{bottom:233.421000px;}
.yd1{bottom:233.569500px;}
.y15e{bottom:234.399000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y64{bottom:235.747500px;}
.y284{bottom:237.604500px;}
.y1d1{bottom:238.498500px;}
.y2a9{bottom:239.175000px;}
.y1cd{bottom:239.533500px;}
.y185{bottom:239.629500px;}
.y9c{bottom:241.173000px;}
.y203{bottom:241.545000px;}
.y2e0{bottom:241.639500px;}
.y249{bottom:244.804500px;}
.y22f{bottom:249.685500px;}
.y1d0{bottom:249.853500px;}
.y15d{bottom:250.837500px;}
.y19b{bottom:251.125500px;}
.y252{bottom:251.994000px;}
.y101{bottom:252.250500px;}
.yd0{bottom:252.399000px;}
.y63{bottom:254.577000px;}
.y1cf{bottom:254.697000px;}
.y125{bottom:255.093000px;}
.y283{bottom:256.434000px;}
.y184{bottom:258.459000px;}
.y2df{bottom:258.900000px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y9b{bottom:260.002500px;}
.y1d6{bottom:265.834500px;}
.y15c{bottom:267.276000px;}
.y248{bottom:268.446000px;}
.y22e{bottom:268.513500px;}
.y19a{bottom:269.955000px;}
.y251{bottom:270.823500px;}
.y100{bottom:271.080000px;}
.ycf{bottom:271.228500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y62{bottom:273.406500px;}
.y2a8{bottom:273.694500px;}
.y2de{bottom:276.160500px;}
.y183{bottom:277.288500px;}
.y202{bottom:278.008500px;}
.y9a{bottom:278.832000px;}
.y282{bottom:279.747000px;}
.y15b{bottom:283.714500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y22d{bottom:287.343000px;}
.y198{bottom:288.784500px;}
.yff{bottom:289.909500px;}
.y1cb{bottom:289.947000px;}
.yce{bottom:290.058000px;}
.y2a7{bottom:290.955000px;}
.y247{bottom:292.086000px;}
.y61{bottom:292.236000px;}
.y2dd{bottom:293.421000px;}
.y199{bottom:294.208500px;}
.y182{bottom:296.118000px;}
.y99{bottom:297.661500px;}
.y15a{bottom:300.153000px;}
.y250{bottom:304.389000px;}
.y22c{bottom:306.172500px;}
.y3a{bottom:307.299000px;}
.y197{bottom:307.612500px;}
.y2a6{bottom:308.215500px;}
.yfe{bottom:308.739000px;}
.y1c9{bottom:308.776500px;}
.ycd{bottom:308.887500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y2dc{bottom:310.681500px;}
.y60{bottom:311.065500px;}
.y201{bottom:312.529500px;}
.y281{bottom:313.371000px;}
.y1ca{bottom:314.202000px;}
.y181{bottom:314.947500px;}
.y246{bottom:315.727500px;}
.y98{bottom:316.491000px;}
.y159{bottom:316.591500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y22b{bottom:325.002000px;}
.y39{bottom:325.186500px;}
.y2a5{bottom:325.476000px;}
.y196{bottom:326.442000px;}
.yfd{bottom:327.567000px;}
.y1c8{bottom:327.606000px;}
.ycc{bottom:327.717000px;}
.y2db{bottom:327.940500px;}
.y5f{bottom:329.895000px;}
.y200{bottom:331.359000px;}
.y280{bottom:332.200500px;}
.y158{bottom:333.030000px;}
.y180{bottom:333.777000px;}
.y97{bottom:335.320500px;}
.y245{bottom:339.367500px;}
.y2a4{bottom:342.736500px;}
.y38{bottom:343.074000px;}
.y2da{bottom:345.201000px;}
.yfc{bottom:346.396500px;}
.y1c7{bottom:346.435500px;}
.ycb{bottom:346.546500px;}
.y10{bottom:348.133500px;}
.y5e{bottom:348.724500px;}
.y157{bottom:349.468500px;}
.y1ff{bottom:350.188500px;}
.y27f{bottom:351.030000px;}
.y17f{bottom:352.606500px;}
.y96{bottom:354.150000px;}
.y2a3{bottom:359.997000px;}
.y37{bottom:360.963000px;}
.y2d9{bottom:362.461500px;}
.y244{bottom:363.009000px;}
.yfb{bottom:365.226000px;}
.y1c6{bottom:365.265000px;}
.yca{bottom:365.376000px;}
.y156{bottom:365.905500px;}
.y1fe{bottom:369.018000px;}
.y27e{bottom:369.859500px;}
.y22a{bottom:370.464000px;}
.y17e{bottom:371.436000px;}
.y195{bottom:371.904000px;}
.y5d{bottom:372.036000px;}
.y95{bottom:372.979500px;}
.y2a2{bottom:377.257500px;}
.y2d8{bottom:379.722000px;}
.y155{bottom:382.344000px;}
.yfa{bottom:384.055500px;}
.y1c5{bottom:384.094500px;}
.yc9{bottom:384.205500px;}
.y243{bottom:386.649000px;}
.yf{bottom:386.785499px;}
.y1fd{bottom:387.847500px;}
.y194{bottom:388.342500px;}
.y27d{bottom:388.689000px;}
.y17d{bottom:390.265500px;}
.y94{bottom:391.809000px;}
.y229{bottom:394.105500px;}
.y2a1{bottom:394.516500px;}
.y2d7{bottom:396.982500px;}
.y154{bottom:398.782500px;}
.y36{bottom:399.024000px;}
.yf9{bottom:402.885000px;}
.yc8{bottom:403.035000px;}
.y193{bottom:404.781000px;}
.y27c{bottom:407.518500px;}
.ye{bottom:408.044999px;}
.y242{bottom:410.290500px;}
.y228{bottom:410.544000px;}
.y93{bottom:410.638500px;}
.y2a0{bottom:411.777000px;}
.y17c{bottom:413.577000px;}
.y2d6{bottom:414.243000px;}
.y153{bottom:415.221000px;}
.y1fc{bottom:416.091000px;}
.y35{bottom:416.913000px;}
.y192{bottom:421.219500px;}
.yf8{bottom:421.714500px;}
.yc7{bottom:421.864500px;}
.y27b{bottom:426.348000px;}
.y1c4{bottom:427.713000px;}
.y29f{bottom:429.037500px;}
.y92{bottom:429.468000px;}
.y2d5{bottom:431.503500px;}
.y152{bottom:431.659500px;}
.y241{bottom:433.930500px;}
.y227{bottom:434.184000px;}
.y34{bottom:434.800500px;}
.y191{bottom:437.658000px;}
.yf7{bottom:440.544000px;}
.yc6{bottom:440.694000px;}
.y27a{bottom:445.177500px;}
.y29e{bottom:446.298000px;}
.y5c{bottom:447.186000px;}
.y17b{bottom:447.201000px;}
.y151{bottom:448.098000px;}
.y91{bottom:448.297500px;}
.y2d4{bottom:448.764000px;}
.y1fb{bottom:450.612000px;}
.y1c3{bottom:451.353000px;}
.y240{bottom:457.572000px;}
.y226{bottom:457.825500px;}
.yf6{bottom:459.373500px;}
.yc5{bottom:459.523500px;}
.y190{bottom:461.299500px;}
.y29d{bottom:463.558500px;}
.y279{bottom:464.007000px;}
.y150{bottom:464.536500px;}
.y2d3{bottom:466.024500px;}
.y17a{bottom:466.030500px;}
.y90{bottom:467.127000px;}
.y33{bottom:470.622000px;}
.y1c2{bottom:474.994500px;}
.yf5{bottom:478.203000px;}
.yc4{bottom:478.353000px;}
.y29c{bottom:480.819000px;}
.y14f{bottom:480.975000px;}
.y23f{bottom:481.212000px;}
.y225{bottom:481.465500px;}
.y278{bottom:482.836500px;}
.y2d2{bottom:483.283500px;}
.y5b{bottom:484.576500px;}
.y179{bottom:484.860000px;}
.y1fa{bottom:485.133000px;}
.y8f{bottom:485.956500px;}
.y18f{bottom:492.918000px;}
.yf4{bottom:497.032500px;}
.yc3{bottom:497.182500px;}
.y14e{bottom:497.413500px;}
.y29b{bottom:498.079500px;}
.y1c1{bottom:498.634500px;}
.y2d1{bottom:500.544000px;}
.y277{bottom:501.666000px;}
.yd{bottom:502.864502px;}
.y178{bottom:503.689500px;}
.y1f9{bottom:503.962500px;}
.y5a{bottom:504.033000px;}
.y8e{bottom:504.786000px;}
.y23e{bottom:504.853500px;}
.y224{bottom:505.107000px;}
.y32{bottom:506.442000px;}
.y14d{bottom:513.852000px;}
.y29a{bottom:515.340000px;}
.yf3{bottom:515.862000px;}
.yc2{bottom:516.012000px;}
.y2d0{bottom:517.804500px;}
.y276{bottom:520.495500px;}
.yc{bottom:520.864502px;}
.y124{bottom:520.942500px;}
.y223{bottom:521.545500px;}
.y1c0{bottom:522.276000px;}
.y177{bottom:522.519000px;}
.y18e{bottom:522.612000px;}
.y1f8{bottom:522.792000px;}
.y59{bottom:523.491000px;}
.y8d{bottom:523.615500px;}
.y31{bottom:524.329500px;}
.y23d{bottom:528.493500px;}
.y14c{bottom:530.289000px;}
.y299{bottom:532.600500px;}
.yf2{bottom:534.691500px;}
.yc1{bottom:534.841500px;}
.y2cf{bottom:535.065000px;}
.yb{bottom:538.864499px;}
.y275{bottom:539.323500px;}
.y123{bottom:539.772000px;}
.y176{bottom:541.348500px;}
.y1f7{bottom:541.621500px;}
.y30{bottom:542.218500px;}
.y8c{bottom:542.445000px;}
.y58{bottom:542.947500px;}
.y222{bottom:545.185500px;}
.y1bf{bottom:545.916000px;}
.y14b{bottom:546.727500px;}
.y298{bottom:549.859500px;}
.y23c{bottom:552.135000px;}
.y2ce{bottom:552.325500px;}
.yf1{bottom:553.521000px;}
.yc0{bottom:553.671000px;}
.ya{bottom:556.864499px;}
.y274{bottom:558.153000px;}
.y122{bottom:558.601500px;}
.y2f{bottom:560.106000px;}
.y175{bottom:560.178000px;}
.y1f6{bottom:560.449500px;}
.y8b{bottom:561.274500px;}
.y221{bottom:561.624000px;}
.y57{bottom:562.404000px;}
.y14a{bottom:563.166000px;}
.y297{bottom:567.120000px;}
.y2cd{bottom:569.586000px;}
.yf0{bottom:572.350500px;}
.ybf{bottom:572.500500px;}
.y23b{bottom:575.775000px;}
.y273{bottom:576.982500px;}
.y121{bottom:577.431000px;}
.y1be{bottom:577.536000px;}
.y2e{bottom:577.993500px;}
.y174{bottom:579.007500px;}
.y149{bottom:579.604500px;}
.y8a{bottom:580.104000px;}
.y56{bottom:581.862000px;}
.y1f5{bottom:583.773000px;}
.y296{bottom:584.380500px;}
.y220{bottom:585.264000px;}
.y2cc{bottom:586.846500px;}
.yef{bottom:591.180000px;}
.ybe{bottom:591.330000px;}
.y272{bottom:595.812000px;}
.y2d{bottom:595.882500px;}
.y148{bottom:596.043000px;}
.y120{bottom:596.260500px;}
.y1f4{bottom:596.920500px;}
.y173{bottom:597.837000px;}
.y89{bottom:598.932000px;}
.y23a{bottom:599.416500px;}
.y1f2{bottom:600.028500px;}
.y55{bottom:601.318500px;}
.y2cb{bottom:604.107000px;}
.y295{bottom:606.124500px;}
.y21f{bottom:608.905500px;}
.yee{bottom:610.009500px;}
.ybd{bottom:610.159500px;}
.y1bd{bottom:612.796500px;}
.y2c{bottom:613.770000px;}
.y271{bottom:614.641500px;}
.y11f{bottom:615.090000px;}
.y1f3{bottom:616.168500px;}
.y88{bottom:617.761500px;}
.y147{bottom:619.684500px;}
.y54{bottom:620.776500px;}
.y2ca{bottom:621.366000px;}
.yed{bottom:628.839000px;}
.ybc{bottom:628.989000px;}
.y239{bottom:631.035000px;}
.y1bc{bottom:631.626000px;}
.y21e{bottom:632.545500px;}
.y270{bottom:633.471000px;}
.y11e{bottom:633.919500px;}
.y29{bottom:636.141055px;}
.y87{bottom:636.591000px;}
.y2c9{bottom:638.626500px;}
.y1f1{bottom:638.697000px;}
.y294{bottom:639.748500px;}
.y53{bottom:640.233000px;}
.y172{bottom:641.196000px;}
.y9{bottom:645.510000px;}
.yec{bottom:647.668500px;}
.ybb{bottom:647.817000px;}
.y1bb{bottom:650.455500px;}
.y146{bottom:651.303000px;}
.y1f0{bottom:651.844500px;}
.y26f{bottom:652.300500px;}
.y11d{bottom:652.749000px;}
.y1ee{bottom:654.952500px;}
.y86{bottom:655.420500px;}
.y2c8{bottom:655.887000px;}
.y21d{bottom:656.187000px;}
.y52{bottom:659.689500px;}
.y171{bottom:664.836000px;}
.y293{bottom:666.289500px;}
.yeb{bottom:666.498000px;}
.yba{bottom:666.646500px;}
.y8{bottom:666.771000px;}
.y1ba{bottom:669.285000px;}
.y1ef{bottom:671.092500px;}
.y26e{bottom:671.130000px;}
.y11c{bottom:671.578500px;}
.y238{bottom:672.625500px;}
.y2c7{bottom:673.147500px;}
.y85{bottom:674.250000px;}
.y51{bottom:679.147500px;}
.y21c{bottom:679.827000px;}
.y1ed{bottom:679.893000px;}
.yea{bottom:685.327500px;}
.yb9{bottom:685.476000px;}
.y145{bottom:686.913000px;}
.y1b9{bottom:688.114500px;}
.y170{bottom:688.477500px;}
.y26d{bottom:689.959500px;}
.y11b{bottom:690.408000px;}
.y292{bottom:692.829000px;}
.y84{bottom:693.079500px;}
.y237{bottom:696.265500px;}
.y50{bottom:698.604000px;}
.y1ec{bottom:698.722500px;}
.y21b{bottom:703.468500px;}
.ye9{bottom:704.157000px;}
.yb8{bottom:704.305500px;}
.y144{bottom:705.742500px;}
.y1b8{bottom:706.944000px;}
.y2c6{bottom:707.668500px;}
.y26c{bottom:708.789000px;}
.y11a{bottom:709.237500px;}
.y83{bottom:711.909000px;}
.y16f{bottom:712.117500px;}
.y1eb{bottom:717.552000px;}
.y4f{bottom:718.062000px;}
.y291{bottom:719.370000px;}
.y236{bottom:719.907000px;}
.ye8{bottom:722.986500px;}
.yb7{bottom:723.135000px;}
.y143{bottom:724.572000px;}
.y2c5{bottom:724.929000px;}
.y1b7{bottom:725.773500px;}
.y7{bottom:726.298500px;}
.y21a{bottom:727.108500px;}
.y26b{bottom:727.618500px;}
.y119{bottom:728.067000px;}
.y82{bottom:730.738500px;}
.y16e{bottom:735.759000px;}
.y4e{bottom:737.518500px;}
.yb6{bottom:741.964500px;}
.y2c4{bottom:742.189500px;}
.y142{bottom:743.401500px;}
.y235{bottom:743.547000px;}
.y1b6{bottom:744.603000px;}
.y290{bottom:745.911000px;}
.ye7{bottom:746.298000px;}
.y26a{bottom:746.448000px;}
.y118{bottom:746.896500px;}
.y81{bottom:749.568000px;}
.y219{bottom:750.750000px;}
.y1ea{bottom:752.073000px;}
.y4{bottom:752.599495px;}
.y4d{bottom:756.975000px;}
.y16d{bottom:759.399000px;}
.y2c3{bottom:759.450000px;}
.yb5{bottom:760.794000px;}
.y141{bottom:762.231000px;}
.y1b5{bottom:763.432500px;}
.ye6{bottom:765.127500px;}
.y269{bottom:765.277500px;}
.y117{bottom:765.726000px;}
.y218{bottom:767.188500px;}
.y80{bottom:768.397500px;}
.y28f{bottom:772.450500px;}
.y4c{bottom:776.433000px;}
.y2c2{bottom:776.709000px;}
.yb4{bottom:779.623500px;}
.y140{bottom:781.060500px;}
.y1b4{bottom:782.262000px;}
.y16c{bottom:783.040500px;}
.ye5{bottom:783.957000px;}
.y268{bottom:784.107000px;}
.y116{bottom:784.555500px;}
.y1e9{bottom:786.594000px;}
.y7f{bottom:787.227000px;}
.y28e{bottom:790.024500px;}
.y217{bottom:790.828500px;}
.y2c1{bottom:793.969500px;}
.y4b{bottom:795.889500px;}
.yb3{bottom:798.453000px;}
.y1b3{bottom:801.091500px;}
.ye4{bottom:802.786500px;}
.y267{bottom:802.936500px;}
.y115{bottom:803.385000px;}
.y1e8{bottom:805.423500px;}
.y7e{bottom:806.056500px;}
.y16b{bottom:806.680500px;}
.y28d{bottom:807.598500px;}
.y2c0{bottom:811.230000px;}
.y216{bottom:814.470000px;}
.y4a{bottom:815.346000px;}
.yb2{bottom:817.282500px;}
.y1b2{bottom:819.921000px;}
.y266{bottom:821.766000px;}
.y114{bottom:822.214500px;}
.y13f{bottom:824.728500px;}
.y7d{bottom:824.886000px;}
.y28c{bottom:825.172500px;}
.ye3{bottom:826.099500px;}
.y2bf{bottom:828.490500px;}
.y13e{bottom:829.959000px;}
.y16a{bottom:830.322000px;}
.yb1{bottom:836.112000px;}
.y215{bottom:838.110000px;}
.y1b1{bottom:838.750500px;}
.y265{bottom:840.595500px;}
.y113{bottom:841.044000px;}
.y28b{bottom:842.748000px;}
.y7c{bottom:843.715500px;}
.ye2{bottom:844.929000px;}
.y2be{bottom:845.751000px;}
.y1e7{bottom:845.817000px;}
.y13b{bottom:846.019500px;}
.y13d{bottom:853.098000px;}
.y49{bottom:853.932000px;}
.yb0{bottom:854.941500px;}
.y1b0{bottom:857.580000px;}
.y13c{bottom:858.328500px;}
.y264{bottom:859.425000px;}
.y112{bottom:859.873500px;}
.y214{bottom:861.751500px;}
.y169{bottom:861.940500px;}
.y7b{bottom:862.545000px;}
.y2bd{bottom:863.011500px;}
.ye1{bottom:863.758500px;}
.y48{bottom:870.072000px;}
.yaf{bottom:873.771000px;}
.y1af{bottom:876.409500px;}
.y263{bottom:878.254500px;}
.y111{bottom:878.703000px;}
.y3{bottom:879.369000px;}
.y2bc{bottom:880.272000px;}
.y7a{bottom:881.374500px;}
.y13a{bottom:881.469000px;}
.ye0{bottom:882.588000px;}
.y213{bottom:885.391500px;}
.y1e6{bottom:886.000500px;}
.y47{bottom:890.551500px;}
.yae{bottom:892.600500px;}
.y168{bottom:893.049000px;}
.y1ae{bottom:895.239000px;}
.y262{bottom:897.084000px;}
.y110{bottom:897.532500px;}
.y139{bottom:899.377500px;}
.y137{bottom:899.506500px;}
.y79{bottom:900.204000px;}
.ydf{bottom:901.417500px;}
.y46{bottom:902.350500px;}
.y212{bottom:909.033000px;}
.y167{bottom:911.878500px;}
.y1ad{bottom:914.068500px;}
.y2ba{bottom:914.791500px;}
.y2bb{bottom:914.793000px;}
.yad{bottom:915.913500px;}
.y10f{bottom:916.362000px;}
.y1e5{bottom:917.139000px;}
.y138{bottom:917.286000px;}
.y78{bottom:919.033500px;}
.y1e4{bottom:921.642000px;}
.y45{bottom:922.830000px;}
.yde{bottom:927.718500px;}
.y166{bottom:930.708000px;}
.y1e3{bottom:931.893000px;}
.y2b9{bottom:932.052000px;}
.y211{bottom:932.673000px;}
.y44{bottom:934.629000px;}
.y261{bottom:934.743000px;}
.y10e{bottom:935.191500px;}
.y136{bottom:935.317500px;}
.y1ac{bottom:937.380000px;}
.y77{bottom:937.863000px;}
.y2{bottom:945.126001px;}
.ydd{bottom:946.548000px;}
.y2b8{bottom:949.312500px;}
.yac{bottom:949.537500px;}
.y135{bottom:953.104500px;}
.y260{bottom:953.572500px;}
.y10d{bottom:954.021000px;}
.y43{bottom:955.108500px;}
.y210{bottom:956.314500px;}
.y76{bottom:956.692500px;}
.y134{bottom:961.452000px;}
.ydc{bottom:965.377500px;}
.y2b7{bottom:966.573000px;}
.y1{bottom:966.726000px;}
.y1ab{bottom:968.031000px;}
.yab{bottom:968.367000px;}
.y25f{bottom:972.402000px;}
.y10c{bottom:972.849000px;}
.y1e2{bottom:973.840500px;}
.y75{bottom:975.522000px;}
.y1aa{bottom:978.282000px;}
.y20f{bottom:979.954500px;}
.y2b6{bottom:983.833500px;}
.ydb{bottom:984.207000px;}
.yaa{bottom:987.196500px;}
.y133{bottom:988.921500px;}
.y25e{bottom:991.231500px;}
.y10b{bottom:991.678500px;}
.y1e1{bottom:992.670000px;}
.y74{bottom:994.351500px;}
.y28{bottom:995.302500px;}
.y1a9{bottom:1001.094000px;}
.yda{bottom:1003.036500px;}
.y20e{bottom:1003.594500px;}
.ya9{bottom:1006.026000px;}
.y132{bottom:1006.830000px;}
.y130{bottom:1007.199000px;}
.y25d{bottom:1010.061000px;}
.y10a{bottom:1010.508000px;}
.y73{bottom:1013.181000px;}
.y2b5{bottom:1018.354500px;}
.y1a8{bottom:1019.923500px;}
.yd9{bottom:1021.866000px;}
.y1e0{bottom:1022.269500px;}
.y131{bottom:1024.740000px;}
.ya8{bottom:1024.855500px;}
.y20d{bottom:1027.236000px;}
.y25c{bottom:1028.890500px;}
.y109{bottom:1029.337500px;}
.y72{bottom:1032.010500px;}
.y1df{bottom:1035.417000px;}
.y2b4{bottom:1035.615000px;}
.y1dd{bottom:1038.525000px;}
.y1a6{bottom:1038.753000px;}
.y1a7{bottom:1039.119000px;}
.y27{bottom:1041.199500px;}
.y12f{bottom:1042.648500px;}
.y165{bottom:1043.685000px;}
.ya7{bottom:1048.167000px;}
.y71{bottom:1050.840000px;}
.y20c{bottom:1050.876000px;}
.y25b{bottom:1052.202000px;}
.y2b3{bottom:1052.875500px;}
.y12e{bottom:1053.238500px;}
.y1de{bottom:1054.663500px;}
.y1a4{bottom:1057.582500px;}
.y1a5{bottom:1057.798500px;}
.y164{bottom:1062.513000px;}
.ya6{bottom:1066.996500px;}
.y26{bottom:1069.443000px;}
.y70{bottom:1069.669500px;}
.y2b2{bottom:1070.134500px;}
.y20b{bottom:1074.517500px;}
.y1a3{bottom:1076.412000px;}
.y12d{bottom:1078.584000px;}
.y163{bottom:1081.342500px;}
.ya5{bottom:1085.826000px;}
.y2b1{bottom:1087.395000px;}
.y6f{bottom:1088.499000px;}
.y25{bottom:1097.688000px;}
.ya4{bottom:1104.655500px;}
.y12c{bottom:1106.137500px;}
.y6e{bottom:1107.327000px;}
.y23{bottom:1141.174500px;}
.y6d{bottom:1173.397500px;}
.h12{height:25.508090px;}
.h19{height:26.110157px;}
.h2d{height:26.325350px;}
.h2e{height:29.469371px;}
.h22{height:30.252344px;}
.h15{height:30.461558px;}
.h18{height:30.712615px;}
.h17{height:31.109558px;}
.h8{height:32.130000px;}
.h26{height:33.072749px;}
.h14{height:33.112997px;}
.h31{height:33.345326px;}
.h13{height:34.199443px;}
.h1a{height:34.813397px;}
.h20{height:35.100320px;}
.h3c{height:35.503200px;}
.h39{height:36.313088px;}
.h1b{height:38.896243px;}
.h1d{height:39.165235px;}
.h1c{height:39.488026px;}
.h9{height:39.648000px;}
.h16{height:40.499558px;}
.h48{height:42.043500px;}
.h28{height:43.157983px;}
.h1e{height:43.217759px;}
.h1f{height:43.516637px;}
.hd{height:43.875290px;}
.h10{height:44.081759px;}
.h3a{height:46.714950px;}
.h3{height:48.195000px;}
.h37{height:48.832637px;}
.h4b{height:49.117939px;}
.h47{height:49.684445px;}
.hb{height:50.930649px;}
.h25{height:51.383558px;}
.h49{height:52.071235px;}
.h4a{height:52.077235px;}
.h11{height:54.541601px;}
.h21{height:54.575123px;}
.h38{height:55.041326px;}
.h32{height:55.047326px;}
.h34{height:55.671326px;}
.h46{height:56.543983px;}
.hf{height:56.609759px;}
.h7{height:56.640000px;}
.h3e{height:57.651326px;}
.h43{height:57.762749px;}
.h3d{height:58.029326px;}
.h6{height:59.472000px;}
.h23{height:59.735558px;}
.h41{height:61.656749px;}
.h3f{height:61.887290px;}
.h3b{height:65.024177px;}
.h36{height:66.094950px;}
.h2{height:67.968000px;}
.h24{height:68.705558px;}
.h44{height:72.039235px;}
.h45{height:72.045235px;}
.he{height:77.792486px;}
.h30{height:84.520637px;}
.h2f{height:87.184950px;}
.h27{height:90.743983px;}
.h35{height:91.336637px;}
.h2a{height:91.601983px;}
.h29{height:91.607983px;}
.h42{height:93.965983px;}
.h5{height:96.288000px;}
.hc{height:102.503837px;}
.h2b{height:109.541983px;}
.h4{height:119.055004px;}
.h2c{height:134.525983px;}
.h40{height:145.403983px;}
.h33{height:181.241983px;}
.h0{height:1262.833500px;}
.ha{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:75.364879px;}
.w4{width:184.050515px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:29.274117px;}
.x7{left:52.951500px;}
.x5{left:54.000000px;}
.x6{left:58.056593px;}
.xad{left:63.018000px;}
.x49{left:65.845500px;}
.xab{left:69.978000px;}
.x99{left:73.266000px;}
.x4c{left:77.959500px;}
.xa0{left:79.351500px;}
.xa6{left:83.037000px;}
.xc1{left:86.272500px;}
.x4e{left:87.901500px;}
.xa8{left:90.582000px;}
.x9b{left:97.636500px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x53{left:108.997500px;}
.xa9{left:111.315000px;}
.x55{left:113.295000px;}
.x9a{left:115.545000px;}
.x54{left:116.656500px;}
.x97{left:124.636500px;}
.xa2{left:130.944000px;}
.x4f{left:132.574500px;}
.xa3{left:137.104500px;}
.x9d{left:139.108500px;}
.x98{left:140.419500px;}
.x48{left:142.266000px;}
.xaa{left:149.652000px;}
.xb3{left:151.669500px;}
.x4d{left:153.966000px;}
.x4b{left:155.619000px;}
.xb5{left:157.735500px;}
.xb4{left:161.098500px;}
.xa1{left:166.672500px;}
.xa7{left:171.615000px;}
.xb{left:175.459500px;}
.x9c{left:180.027000px;}
.xa4{left:181.870500px;}
.xa5{left:187.122000px;}
.x9e{left:190.827000px;}
.x9f{left:200.443500px;}
.x4{left:203.484001px;}
.xac{left:206.268000px;}
.xc{left:217.197000px;}
.x96{left:227.524500px;}
.x39{left:248.655000px;}
.xf{left:249.832500px;}
.xd{left:250.897500px;}
.xb0{left:256.665000px;}
.xe{left:271.221000px;}
.x56{left:273.103500px;}
.xba{left:277.606500px;}
.xb9{left:280.968000px;}
.x11{left:282.786000px;}
.x38{left:285.490500px;}
.xb1{left:290.574000px;}
.x30{left:295.362000px;}
.x57{left:299.437500px;}
.x31{left:302.833500px;}
.x94{left:304.884000px;}
.xb2{left:306.979500px;}
.x10{left:310.107000px;}
.x3e{left:311.517000px;}
.x7c{left:317.508000px;}
.x95{left:321.525000px;}
.x47{left:324.436500px;}
.x3f{left:326.460000px;}
.x42{left:329.248500px;}
.xb6{left:333.342000px;}
.x7d{left:339.079500px;}
.x52{left:342.358500px;}
.x1e{left:343.447500px;}
.x5c{left:349.530000px;}
.x1f{left:350.920500px;}
.x60{left:352.362000px;}
.x71{left:353.982000px;}
.x5d{left:356.134500px;}
.x6f{left:357.364500px;}
.x5f{left:359.737500px;}
.x51{left:361.974000px;}
.x58{left:364.423500px;}
.x70{left:366.510000px;}
.x5a{left:370.845000px;}
.x28{left:373.063500px;}
.x5e{left:374.244000px;}
.x4a{left:377.428500px;}
.x59{left:379.368000px;}
.x29{left:380.536500px;}
.x5b{left:385.788000px;}
.x6e{left:388.405500px;}
.x12{left:390.663000px;}
.xbd{left:397.134000px;}
.x13{left:398.134500px;}
.x8f{left:407.031000px;}
.x3c{left:411.663000px;}
.x1a{left:413.986500px;}
.x16{left:416.050500px;}
.xb7{left:420.213000px;}
.x1b{left:421.458000px;}
.x17{left:423.522000px;}
.x3d{left:426.607500px;}
.x90{left:437.941500px;}
.x93{left:442.483500px;}
.x80{left:446.181000px;}
.x74{left:448.537500px;}
.xb8{left:452.107500px;}
.x3{left:454.959000px;}
.x20{left:464.779500px;}
.x6d{left:466.740000px;}
.x21{left:472.251000px;}
.x22{left:475.537500px;}
.x84{left:477.271500px;}
.x69{left:481.338000px;}
.x23{left:483.010500px;}
.x75{left:485.938500px;}
.x66{left:486.940500px;}
.x32{left:488.631000px;}
.x89{left:492.394500px;}
.x6a{left:493.723500px;}
.x8c{left:496.657500px;}
.x65{left:498.793500px;}
.x33{left:503.575500px;}
.x76{left:506.307000px;}
.x83{left:510.927000px;}
.x6b{left:512.734500px;}
.x78{left:519.529500px;}
.x7a{left:526.362000px;}
.x6c{left:532.609500px;}
.x7e{left:538.311000px;}
.x72{left:541.738500px;}
.x67{left:547.344000px;}
.x8d{left:549.358500px;}
.x73{left:551.316000px;}
.x7f{left:553.063500px;}
.x8b{left:554.637000px;}
.x8a{left:559.504500px;}
.x91{left:565.438500px;}
.xae{left:566.503500px;}
.x3a{left:568.158000px;}
.x8e{left:570.576000px;}
.x2c{left:574.539000px;}
.x3b{left:583.102500px;}
.x43{left:585.556500px;}
.x2d{left:589.482000px;}
.x81{left:592.533000px;}
.x68{left:595.419000px;}
.x44{left:600.501000px;}
.x79{left:604.170000px;}
.xc0{left:607.942500px;}
.x77{left:610.860000px;}
.x40{left:613.719000px;}
.xaf{left:626.311500px;}
.x41{left:628.663500px;}
.x7b{left:631.543500px;}
.x92{left:638.298000px;}
.xbb{left:653.016000px;}
.x24{left:668.494500px;}
.xbc{left:671.659500px;}
.x25{left:675.966000px;}
.xbf{left:684.805500px;}
.x8{left:686.478000px;}
.xc5{left:690.819000px;}
.x61{left:698.068500px;}
.x62{left:705.697500px;}
.x18{left:710.481000px;}
.x2e{left:712.857000px;}
.x50{left:714.412500px;}
.x19{left:717.954000px;}
.x2f{left:727.800000px;}
.x85{left:736.849500px;}
.x36{left:740.793000px;}
.x34{left:742.387500px;}
.x1c{left:745.878000px;}
.x9{left:749.541000px;}
.x1d{left:753.349500px;}
.x37{left:755.736000px;}
.x35{left:757.330500px;}
.x86{left:763.969500px;}
.x14{left:769.332000px;}
.x15{left:776.803500px;}
.x2a{left:779.022000px;}
.xc2{left:789.537000px;}
.x2b{left:793.966500px;}
.x87{left:806.529000px;}
.xc3{left:810.400500px;}
.x63{left:815.617500px;}
.x45{left:817.759500px;}
.x82{left:821.488500px;}
.xbe{left:824.008500px;}
.x26{left:826.365000px;}
.x64{left:828.015000px;}
.x46{left:832.702500px;}
.x27{left:833.838000px;}
.x88{left:835.480500px;}
.xc4{left:837.300000px;}
@media print{
.va{vertical-align:-43.066667pt;}
.v11{vertical-align:-31.562667pt;}
.v4{vertical-align:-15.429333pt;}
.v1c{vertical-align:-13.285333pt;}
.v7{vertical-align:-10.453333pt;}
.v18{vertical-align:-4.096000pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:5.312000pt;}
.v3{vertical-align:8.922667pt;}
.v9{vertical-align:10.453333pt;}
.v2{vertical-align:11.904000pt;}
.v19{vertical-align:16.010667pt;}
.v17{vertical-align:17.781333pt;}
.v1{vertical-align:19.285333pt;}
.v15{vertical-align:21.253333pt;}
.ve{vertical-align:22.208000pt;}
.v5{vertical-align:26.021333pt;}
.v1e{vertical-align:29.221333pt;}
.vd{vertical-align:31.173333pt;}
.v6{vertical-align:33.994667pt;}
.v12{vertical-align:35.973333pt;}
.v14{vertical-align:37.194667pt;}
.v8{vertical-align:43.066667pt;}
.v1d{vertical-align:45.162667pt;}
.vb{vertical-align:53.520000pt;}
.v1b{vertical-align:55.616000pt;}
.vc{vertical-align:59.008000pt;}
.vf{vertical-align:81.216000pt;}
.v10{vertical-align:83.610667pt;}
.v1a{vertical-align:90.885333pt;}
.v13{vertical-align:122.741333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls80{letter-spacing:0.000027pt;}
.ls6{letter-spacing:0.000533pt;}
.lsb0{letter-spacing:0.000921pt;}
.lsaf{letter-spacing:0.001026pt;}
.lsa3{letter-spacing:0.001382pt;}
.ls81{letter-spacing:0.002118pt;}
.ls8e{letter-spacing:0.002133pt;}
.ls96{letter-spacing:0.002422pt;}
.ls49{letter-spacing:0.002979pt;}
.lsb2{letter-spacing:0.003430pt;}
.lsb6{letter-spacing:0.004267pt;}
.ls98{letter-spacing:0.005054pt;}
.ls2f{letter-spacing:0.087020pt;}
.ls10{letter-spacing:0.092353pt;}
.ls7a{letter-spacing:0.482502pt;}
.ls2d{letter-spacing:0.487835pt;}
.ls45{letter-spacing:0.502349pt;}
.ls40{letter-spacing:0.507733pt;}
.lsa8{letter-spacing:0.536039pt;}
.lsaa{letter-spacing:0.576078pt;}
.ls3e{letter-spacing:0.635362pt;}
.ls47{letter-spacing:0.640696pt;}
.ls16{letter-spacing:0.665570pt;}
.ls7c{letter-spacing:0.882422pt;}
.ls75{letter-spacing:0.885044pt;}
.ls12{letter-spacing:0.886516pt;}
.ls7f{letter-spacing:0.887756pt;}
.lsc{letter-spacing:0.888563pt;}
.ls5e{letter-spacing:0.889570pt;}
.ls8b{letter-spacing:0.890378pt;}
.ls86{letter-spacing:0.941149pt;}
.ls57{letter-spacing:1.008508pt;}
.ls79{letter-spacing:1.013841pt;}
.ls70{letter-spacing:1.102881pt;}
.lsa{letter-spacing:1.133683pt;}
.ls2b{letter-spacing:1.147074pt;}
.ls56{letter-spacing:1.171658pt;}
.ls4d{letter-spacing:1.262881pt;}
.ls61{letter-spacing:1.279207pt;}
.ls72{letter-spacing:1.286049pt;}
.ls2c{letter-spacing:1.291174pt;}
.ls52{letter-spacing:1.293784pt;}
.ls5b{letter-spacing:1.299096pt;}
.ls7b{letter-spacing:1.304429pt;}
.ls32{letter-spacing:1.311016pt;}
.ls2a{letter-spacing:1.313788pt;}
.ls4e{letter-spacing:1.326210pt;}
.ls53{letter-spacing:1.326903pt;}
.ls87{letter-spacing:1.330118pt;}
.ls5f{letter-spacing:1.457867pt;}
.ls5c{letter-spacing:1.463200pt;}
.ls4{letter-spacing:1.654338pt;}
.ls3c{letter-spacing:1.701044pt;}
.ls7e{letter-spacing:1.781852pt;}
.ls28{letter-spacing:1.783020pt;}
.ls76{letter-spacing:1.787185pt;}
.ls1f{letter-spacing:1.788353pt;}
.ls44{letter-spacing:2.099096pt;}
.ls59{letter-spacing:2.104429pt;}
.lse{letter-spacing:2.107416pt;}
.ls26{letter-spacing:2.111016pt;}
.ls1c{letter-spacing:2.112749pt;}
.ls69{letter-spacing:2.309852pt;}
.ls6b{letter-spacing:2.315185pt;}
.ls84{letter-spacing:2.360429pt;}
.ls74{letter-spacing:2.365762pt;}
.ls1d{letter-spacing:2.579230pt;}
.ls21{letter-spacing:2.582516pt;}
.ls24{letter-spacing:2.584563pt;}
.ls95{letter-spacing:2.654210pt;}
.ls1{letter-spacing:2.657067pt;}
.ls4a{letter-spacing:2.657118pt;}
.ls91{letter-spacing:2.659543pt;}
.ls6d{letter-spacing:2.976518pt;}
.ls20{letter-spacing:3.157841pt;}
.ls1e{letter-spacing:3.163174pt;}
.lsa4{letter-spacing:3.251865pt;}
.lsa7{letter-spacing:3.257198pt;}
.ls9e{letter-spacing:3.315543pt;}
.ls9b{letter-spacing:3.320877pt;}
.ls22{letter-spacing:3.824508pt;}
.ls6e{letter-spacing:3.918881pt;}
.ls4c{letter-spacing:4.027785pt;}
.ls43{letter-spacing:5.900533pt;}
.ls42{letter-spacing:5.905867pt;}
.ls97{letter-spacing:6.414881pt;}
.lsa0{letter-spacing:7.186706pt;}
.ls30{letter-spacing:8.321788pt;}
.ls5{letter-spacing:9.298933pt;}
.lsf{letter-spacing:9.516533pt;}
.ls11{letter-spacing:9.521867pt;}
.ls9{letter-spacing:10.626533pt;}
.ls64{letter-spacing:11.629762pt;}
.ls37{letter-spacing:11.635096pt;}
.ls36{letter-spacing:11.656563pt;}
.ls38{letter-spacing:11.660353pt;}
.ls63{letter-spacing:11.662903pt;}
.lsb5{letter-spacing:11.864548pt;}
.lsb3{letter-spacing:11.895467pt;}
.lsac{letter-spacing:11.954133pt;}
.lsad{letter-spacing:11.959467pt;}
.lsb4{letter-spacing:12.055684pt;}
.ls58{letter-spacing:12.171733pt;}
.ls2e{letter-spacing:12.177067pt;}
.ls89{letter-spacing:12.435096pt;}
.lsae{letter-spacing:12.484016pt;}
.lsa5{letter-spacing:12.493372pt;}
.lsa9{letter-spacing:12.528078pt;}
.lsa1{letter-spacing:12.553198pt;}
.ls77{letter-spacing:12.696429pt;}
.ls7d{letter-spacing:12.701762pt;}
.ls34{letter-spacing:13.165040pt;}
.ls3a{letter-spacing:13.177199pt;}
.lsb{letter-spacing:13.281193pt;}
.ls3{letter-spacing:13.283733pt;}
.ls67{letter-spacing:13.307185pt;}
.ls73{letter-spacing:13.420031pt;}
.ls68{letter-spacing:13.491096pt;}
.ls6c{letter-spacing:13.649067pt;}
.ls9c{letter-spacing:13.651543pt;}
.ls6a{letter-spacing:13.654400pt;}
.ls6f{letter-spacing:13.837089pt;}
.lsa6{letter-spacing:13.861411pt;}
.lsa2{letter-spacing:13.866745pt;}
.lsab{letter-spacing:13.867939pt;}
.ls9f{letter-spacing:13.886881pt;}
.ls94{letter-spacing:13.923096pt;}
.ls9d{letter-spacing:13.971096pt;}
.lsb1{letter-spacing:14.073558pt;}
.ls8c{letter-spacing:14.437841pt;}
.ls83{letter-spacing:14.443174pt;}
.ls50{letter-spacing:14.634641pt;}
.ls99{letter-spacing:14.947543pt;}
.ls9a{letter-spacing:15.272429pt;}
.ls19{letter-spacing:15.395096pt;}
.ls15{letter-spacing:15.400429pt;}
.ls2{letter-spacing:15.937067pt;}
.ls3b{letter-spacing:15.937118pt;}
.ls8f{letter-spacing:15.937310pt;}
.ls92{letter-spacing:15.942400pt;}
.ls90{letter-spacing:15.944877pt;}
.ls54{letter-spacing:16.051118pt;}
.lsd{letter-spacing:16.061762pt;}
.ls29{letter-spacing:16.067096pt;}
.ls51{letter-spacing:16.084237pt;}
.ls18{letter-spacing:16.087452pt;}
.ls62{letter-spacing:16.130422pt;}
.ls14{letter-spacing:16.455452pt;}
.ls82{letter-spacing:16.469841pt;}
.ls93{letter-spacing:16.606210pt;}
.ls4b{letter-spacing:16.618378pt;}
.ls85{letter-spacing:17.109841pt;}
.ls65{letter-spacing:17.364541pt;}
.ls5a{letter-spacing:17.733852pt;}
.ls66{letter-spacing:17.923096pt;}
.ls1b{letter-spacing:18.581841pt;}
.ls25{letter-spacing:18.587174pt;}
.ls3d{letter-spacing:18.785118pt;}
.ls8a{letter-spacing:18.864508pt;}
.ls78{letter-spacing:18.869841pt;}
.ls35{letter-spacing:23.235096pt;}
.ls17{letter-spacing:24.663200pt;}
.ls13{letter-spacing:40.496749pt;}
.ls7{letter-spacing:55.787733pt;}
.ls46{letter-spacing:56.459733pt;}
.ls8{letter-spacing:57.174803pt;}
.ls3f{letter-spacing:63.574029pt;}
.ls41{letter-spacing:118.001867pt;}
.ls55{letter-spacing:176.925762pt;}
.ls1a{letter-spacing:438.789852pt;}
.ls71{letter-spacing:502.507733pt;}
.ls8d{letter-spacing:628.665682pt;}
.ls88{letter-spacing:629.817682pt;}
.ls48{letter-spacing:639.935651pt;}
.ls60{letter-spacing:706.020349pt;}
.ls31{letter-spacing:786.077090pt;}
.ls39{letter-spacing:800.457067pt;}
.ls4f{letter-spacing:815.389897pt;}
.ls23{letter-spacing:817.472749pt;}
.ls33{letter-spacing:820.575016pt;}
.ls27{letter-spacing:821.849682pt;}
.ls5d{letter-spacing:834.698378pt;}
.ws83{word-spacing:-42.066082pt;}
.ws2{word-spacing:-13.283467pt;}
.ws1a{word-spacing:-11.955200pt;}
.ws37{word-spacing:-10.626800pt;}
.ws1{word-spacing:-10.095467pt;}
.ws6{word-spacing:-9.298400pt;}
.ws90{word-spacing:-4.410111pt;}
.ws86{word-spacing:-3.783729pt;}
.ws87{word-spacing:-3.772505pt;}
.ws6d{word-spacing:-2.922363pt;}
.ws70{word-spacing:-2.656693pt;}
.ws6e{word-spacing:-2.603559pt;}
.ws94{word-spacing:-2.571629pt;}
.ws71{word-spacing:-2.497292pt;}
.ws6c{word-spacing:-2.391024pt;}
.ws59{word-spacing:-2.337890pt;}
.wsdb{word-spacing:-2.247578pt;}
.wsb8{word-spacing:-2.231622pt;}
.ws66{word-spacing:-2.178489pt;}
.ws65{word-spacing:-1.700284pt;}
.ws4{word-spacing:-1.696326pt;}
.ws1d{word-spacing:-1.434624pt;}
.wsf6{word-spacing:-1.386803pt;}
.ws75{word-spacing:-1.328347pt;}
.wsb7{word-spacing:-1.222079pt;}
.ws3{word-spacing:-1.175671pt;}
.wsb5{word-spacing:-1.168945pt;}
.ws8c{word-spacing:-1.009543pt;}
.wsbf{word-spacing:-0.956416pt;}
.wsc0{word-spacing:-0.908595pt;}
.ws4b{word-spacing:-0.903276pt;}
.wsa2{word-spacing:-0.797008pt;}
.ws40{word-spacing:-0.743874pt;}
.wsf0{word-spacing:-0.717312pt;}
.wsb2{word-spacing:-0.637606pt;}
.wscc{word-spacing:-0.621670pt;}
.wsaf{word-spacing:-0.584473pt;}
.ws64{word-spacing:-0.531339pt;}
.ws4d{word-spacing:-0.478205pt;}
.wsb3{word-spacing:-0.425071pt;}
.wsb6{word-spacing:-0.371937pt;}
.wsd8{word-spacing:-0.334746pt;}
.ws52{word-spacing:-0.318803pt;}
.ws38{word-spacing:-0.265669pt;}
.ws24{word-spacing:-0.239104pt;}
.ws2c{word-spacing:-0.212535pt;}
.ws1f{word-spacing:-0.191283pt;}
.ws30{word-spacing:-0.159402pt;}
.wse2{word-spacing:-0.143462pt;}
.ws3c{word-spacing:-0.106268pt;}
.wsd7{word-spacing:-0.095642pt;}
.wscd{word-spacing:-0.054341pt;}
.ws3a{word-spacing:-0.053134pt;}
.ws20{word-spacing:-0.047821pt;}
.wsc9{word-spacing:-0.026453pt;}
.wsf5{word-spacing:-0.008269pt;}
.wse3{word-spacing:-0.007364pt;}
.wsf9{word-spacing:-0.006955pt;}
.wsfc{word-spacing:-0.006050pt;}
.wsc6{word-spacing:-0.004932pt;}
.ws7{word-spacing:-0.004326pt;}
.ws9a{word-spacing:-0.004140pt;}
.ws99{word-spacing:-0.004135pt;}
.ws8f{word-spacing:-0.004038pt;}
.ws36{word-spacing:-0.003533pt;}
.wsda{word-spacing:-0.003516pt;}
.wsfa{word-spacing:-0.003345pt;}
.wsd9{word-spacing:-0.003081pt;}
.wsdf{word-spacing:-0.002935pt;}
.wsd2{word-spacing:-0.001937pt;}
.ws82{word-spacing:-0.000448pt;}
.ws0{word-spacing:0.000000pt;}
.ws16{word-spacing:0.047821pt;}
.ws35{word-spacing:0.053134pt;}
.ws15{word-spacing:0.095642pt;}
.ws3b{word-spacing:0.106268pt;}
.ws96{word-spacing:0.112103pt;}
.ws17{word-spacing:0.143462pt;}
.ws29{word-spacing:0.159402pt;}
.ws8{word-spacing:0.185968pt;}
.wsc4{word-spacing:0.191283pt;}
.ws28{word-spacing:0.212535pt;}
.ws1c{word-spacing:0.239104pt;}
.wsa{word-spacing:0.260355pt;}
.ws2f{word-spacing:0.265669pt;}
.wsce{word-spacing:0.286925pt;}
.ws50{word-spacing:0.318803pt;}
.ws7e{word-spacing:0.371937pt;}
.wsd3{word-spacing:0.382566pt;}
.ws31{word-spacing:0.425071pt;}
.ws22{word-spacing:0.430387pt;}
.ws67{word-spacing:0.478205pt;}
.ws76{word-spacing:0.531339pt;}
.ws23{word-spacing:0.573850pt;}
.wsad{word-spacing:0.584473pt;}
.wsa4{word-spacing:0.595447pt;}
.wsa5{word-spacing:0.598852pt;}
.wsa6{word-spacing:0.605687pt;}
.wsdd{word-spacing:0.621670pt;}
.wsb9{word-spacing:0.637606pt;}
.wsfb{word-spacing:0.669491pt;}
.ws58{word-spacing:0.690740pt;}
.ws3e{word-spacing:0.743874pt;}
.wsee{word-spacing:0.765133pt;}
.ws89{word-spacing:0.797008pt;}
.ws46{word-spacing:0.850142pt;}
.wsde{word-spacing:0.860774pt;}
.ws81{word-spacing:0.903276pt;}
.ws14{word-spacing:0.908595pt;}
.wsdc{word-spacing:0.956416pt;}
.ws92{word-spacing:0.993520pt;}
.ws27{word-spacing:1.009543pt;}
.wsf8{word-spacing:1.048021pt;}
.wsed{word-spacing:1.052058pt;}
.ws7f{word-spacing:1.062677pt;}
.ws7d{word-spacing:1.168945pt;}
.wsae{word-spacing:1.275213pt;}
.ws88{word-spacing:1.328347pt;}
.wsb0{word-spacing:1.381481pt;}
.ws18{word-spacing:1.386803pt;}
.wsab{word-spacing:1.434614pt;}
.ws32{word-spacing:1.487748pt;}
.ws2b{word-spacing:1.540882pt;}
.ws48{word-spacing:1.594016pt;}
.ws5e{word-spacing:1.647150pt;}
.wse0{word-spacing:1.673728pt;}
.ws39{word-spacing:1.753418pt;}
.ws9{word-spacing:1.785293pt;}
.ws8a{word-spacing:1.912819pt;}
.ws7c{word-spacing:1.965953pt;}
.wsba{word-spacing:2.125355pt;}
.ws2d{word-spacing:2.178489pt;}
.wsec{word-spacing:2.199757pt;}
.wseb{word-spacing:2.202027pt;}
.ws7b{word-spacing:2.231622pt;}
.ws4e{word-spacing:2.284756pt;}
.ws61{word-spacing:2.391024pt;}
.ws45{word-spacing:2.444158pt;}
.ws51{word-spacing:2.497292pt;}
.ws5b{word-spacing:2.550426pt;}
.ws12{word-spacing:2.550432pt;}
.ws62{word-spacing:2.656693pt;}
.ws73{word-spacing:2.709827pt;}
.ws2e{word-spacing:2.762961pt;}
.ws8b{word-spacing:2.816095pt;}
.wse5{word-spacing:2.821427pt;}
.ws21{word-spacing:2.826315pt;}
.ws25{word-spacing:2.861926pt;}
.wsc3{word-spacing:2.864495pt;}
.wsf2{word-spacing:2.864947pt;}
.wsef{word-spacing:2.865963pt;}
.wsc2{word-spacing:2.866432pt;}
.wsc1{word-spacing:2.866509pt;}
.wsc5{word-spacing:2.867226pt;}
.wse6{word-spacing:2.867550pt;}
.wsd1{word-spacing:2.868463pt;}
.wsc7{word-spacing:2.868608pt;}
.wse9{word-spacing:2.868702pt;}
.wsf3{word-spacing:2.868881pt;}
.ws6a{word-spacing:2.869229pt;}
.wsc8{word-spacing:2.869248pt;}
.wsea{word-spacing:2.869274pt;}
.wsf7{word-spacing:2.871501pt;}
.wscf{word-spacing:2.917069pt;}
.wsf4{word-spacing:2.964890pt;}
.ws56{word-spacing:3.028630pt;}
.wse8{word-spacing:3.060531pt;}
.ws60{word-spacing:3.081764pt;}
.wse7{word-spacing:3.108352pt;}
.ws68{word-spacing:3.134898pt;}
.ws26{word-spacing:3.188032pt;}
.ws80{word-spacing:3.294300pt;}
.ws95{word-spacing:3.318599pt;}
.ws4a{word-spacing:3.347434pt;}
.ws3d{word-spacing:3.400567pt;}
.ws2a{word-spacing:3.453701pt;}
.ws69{word-spacing:3.666237pt;}
.ws34{word-spacing:3.772505pt;}
.wsa1{word-spacing:3.825638pt;}
.wsd0{word-spacing:3.825664pt;}
.ws5a{word-spacing:4.038174pt;}
.ws5f{word-spacing:4.144442pt;}
.wsac{word-spacing:4.197575pt;}
.ws49{word-spacing:4.250709pt;}
.ws47{word-spacing:4.303843pt;}
.ws19{word-spacing:4.351693pt;}
.wsd4{word-spacing:4.399514pt;}
.ws72{word-spacing:4.410111pt;}
.ws4f{word-spacing:4.569513pt;}
.ws5c{word-spacing:4.622646pt;}
.wsf1{word-spacing:4.638618pt;}
.ws43{word-spacing:4.675780pt;}
.wsb4{word-spacing:4.782048pt;}
.ws13{word-spacing:4.914157pt;}
.ws5d{word-spacing:4.994583pt;}
.wsb1{word-spacing:5.100851pt;}
.ws54{word-spacing:5.260253pt;}
.wsbd{word-spacing:5.260288pt;}
.ws10{word-spacing:5.393072pt;}
.ws11{word-spacing:5.467459pt;}
.ws4c{word-spacing:5.632190pt;}
.wsbc{word-spacing:5.738496pt;}
.ws6f{word-spacing:5.791591pt;}
.ws1e{word-spacing:6.025421pt;}
.ws42{word-spacing:6.057261pt;}
.wsbb{word-spacing:6.073242pt;}
.wsd5{word-spacing:6.394263pt;}
.wsd6{word-spacing:6.407987pt;}
.ws53{word-spacing:6.429198pt;}
.ws8e{word-spacing:6.535466pt;}
.ws55{word-spacing:6.641733pt;}
.ws57{word-spacing:6.694867pt;}
.wsbe{word-spacing:6.694912pt;}
.ws6b{word-spacing:6.960537pt;}
.ws3f{word-spacing:7.066804pt;}
.ws41{word-spacing:7.332474pt;}
.ws63{word-spacing:7.598143pt;}
.wse{word-spacing:7.699075pt;}
.ws33{word-spacing:8.023214pt;}
.wscb{word-spacing:8.129536pt;}
.wsca{word-spacing:8.146293pt;}
.wse1{word-spacing:8.225178pt;}
.ws84{word-spacing:8.485297pt;}
.ws91{word-spacing:10.076588pt;}
.ws9b{word-spacing:11.571466pt;}
.ws1b{word-spacing:11.763917pt;}
.ws85{word-spacing:13.578654pt;}
.ws5{word-spacing:13.763148pt;}
.wsb{word-spacing:14.348669pt;}
.wsc{word-spacing:14.356730pt;}
.wsd{word-spacing:15.732893pt;}
.ws93{word-spacing:16.000735pt;}
.ws44{word-spacing:17.746711pt;}
.wsf{word-spacing:24.399002pt;}
.wse4{word-spacing:43.038720pt;}
.ws9d{word-spacing:68.909773pt;}
.wsa0{word-spacing:127.155507pt;}
.ws9e{word-spacing:139.110707pt;}
.ws9f{word-spacing:146.331648pt;}
.wsa9{word-spacing:156.039270pt;}
.wsaa{word-spacing:157.625719pt;}
.wsa8{word-spacing:169.584119pt;}
.wsa7{word-spacing:176.028365pt;}
.ws7a{word-spacing:282.525286pt;}
.ws78{word-spacing:315.043430pt;}
.ws77{word-spacing:368.889651pt;}
.ws79{word-spacing:386.105139pt;}
.ws9c{word-spacing:585.240533pt;}
.ws97{word-spacing:752.207964pt;}
.ws98{word-spacing:767.365297pt;}
.ws8d{word-spacing:875.981414pt;}
.ws74{word-spacing:898.744115pt;}
.wsa3{word-spacing:1225.408000pt;}
._74{margin-left:-28.033176pt;}
._3{margin-left:-20.359967pt;}
._7d{margin-left:-18.445340pt;}
._7c{margin-left:-16.858808pt;}
._8{margin-left:-15.051858pt;}
._f{margin-left:-6.084966pt;}
._d{margin-left:-4.718299pt;}
._c{margin-left:-3.582169pt;}
._a{margin-left:-2.666389pt;}
._5{margin-left:-1.175671pt;}
._6{width:0.969929pt;}
._0{width:2.666389pt;}
._4{width:4.436416pt;}
._b5{width:8.101219pt;}
._b4{width:10.026569pt;}
._9{width:11.530016pt;}
._e{width:13.177232pt;}
._13{width:14.489702pt;}
._7{width:16.291510pt;}
._11{width:17.454592pt;}
._20{width:18.384318pt;}
._10{width:19.458675pt;}
._6c{width:20.403405pt;}
._17{width:21.579076pt;}
._73{width:22.688161pt;}
._2{width:23.643180pt;}
._b7{width:24.854921pt;}
._1e{width:25.776652pt;}
._12{width:27.739568pt;}
._b{width:29.011008pt;}
._1b{width:30.605107pt;}
._1d{width:31.880320pt;}
._14{width:34.041882pt;}
._18{width:35.121486pt;}
._1c{width:36.874903pt;}
._21{width:38.184548pt;}
._1f{width:39.531597pt;}
._1{width:48.358571pt;}
._79{width:55.130657pt;}
._7a{width:63.626180pt;}
._b6{width:78.904320pt;}
._1a{width:83.154501pt;}
._19{width:85.811195pt;}
._87{width:138.543330pt;}
._9c{width:139.836578pt;}
._88{width:143.127654pt;}
._89{width:151.065907pt;}
._81{width:153.839514pt;}
._94{width:158.286848pt;}
._6a{width:166.225101pt;}
._83{width:168.998707pt;}
._8e{width:170.242048pt;}
._9f{width:180.953907pt;}
._84{width:188.174848pt;}
._86{width:190.900634pt;}
._95{width:196.686950pt;}
._8a{width:200.130048pt;}
._8c{width:201.803776pt;}
._7f{width:205.485978pt;}
._8f{width:208.642150pt;}
._80{width:218.062848pt;}
._25{width:225.417983pt;}
._85{width:226.574950pt;}
._90{width:230.408738pt;}
._31{width:233.468001pt;}
._2e{width:239.214711pt;}
._67{width:242.499277pt;}
._9e{width:267.079168pt;}
._2c{width:268.946922pt;}
._28{width:270.843795pt;}
._68{width:274.013184pt;}
._a2{width:279.273472pt;}
._32{width:281.916738pt;}
._69{width:294.480486pt;}
._b3{width:301.175398pt;}
._23{width:310.826915pt;}
._b2{width:313.847910pt;}
._2d{width:321.427091pt;}
._29{width:323.160667pt;}
._8b{width:324.225024pt;}
._66{width:342.062182pt;}
._82{width:355.691110pt;}
._6b{width:357.747405pt;}
._27{width:358.843853pt;}
._38{width:365.446554pt;}
._2f{width:369.407121pt;}
._26{width:372.903034pt;}
._62{width:374.628147pt;}
._9b{width:378.119066pt;}
._2a{width:383.094080pt;}
._8d{width:384.144486pt;}
._92{width:390.074266pt;}
._39{width:392.082739pt;}
._b1{width:399.124697pt;}
._93{width:408.541218pt;}
._24{width:412.339833pt;}
._a3{width:426.704998pt;}
._65{width:428.474368pt;}
._64{width:429.574246pt;}
._2b{width:435.574250pt;}
._22{width:446.680971pt;}
._99{width:458.709126pt;}
._98{width:487.221248pt;}
._9a{width:505.274573pt;}
._61{width:518.348577pt;}
._a0{width:523.599219pt;}
._63{width:534.445261pt;}
._ad{width:537.266688pt;}
._30{width:538.901721pt;}
._37{width:541.933278pt;}
._3b{width:544.200704pt;}
._3a{width:547.452518pt;}
._91{width:553.525760pt;}
._9d{width:560.252533pt;}
._96{width:562.074108pt;}
._a1{width:572.186172pt;}
._36{width:574.758195pt;}
._3e{width:591.495475pt;}
._97{width:608.184934pt;}
._34{width:616.792678pt;}
._3f{width:618.179482pt;}
._44{width:619.614106pt;}
._43{width:628.843520pt;}
._35{width:638.312038pt;}
._3d{width:642.759373pt;}
._3c{width:645.102592pt;}
._5c{width:646.154650pt;}
._5d{width:655.718810pt;}
._51{width:657.583821pt;}
._b0{width:661.457306pt;}
._4b{width:673.603789pt;}
._41{width:677.859840pt;}
._5f{width:680.489984pt;}
._5e{width:683.961054pt;}
._55{width:689.002086pt;}
._42{width:701.846033pt;}
._6d{width:711.441766pt;}
._a7{width:722.428826pt;}
._7e{width:726.397952pt;}
._4d{width:732.423373pt;}
._75{width:738.779304pt;}
._40{width:740.887654pt;}
._5b{width:742.322278pt;}
._70{width:756.285952pt;}
._53{width:763.650355pt;}
._4e{width:771.381365pt;}
._4c{width:772.879770pt;}
._5a{width:777.088000pt;}
._72{width:778.629990pt;}
._60{width:779.765965pt;}
._54{width:782.300467pt;}
._48{width:784.966857pt;}
._56{width:788.230246pt;}
._6e{width:792.019814pt;}
._59{width:803.341619pt;}
._47{width:805.254451pt;}
._45{width:809.462682pt;}
._57{width:812.092826pt;}
._15{width:817.497137pt;}
._46{width:818.565030pt;}
._58{width:820.844032pt;}
._71{width:826.008678pt;}
._49{width:829.690880pt;}
._52{width:831.603712pt;}
._4a{width:833.277440pt;}
._6f{width:837.724774pt;}
._76{width:844.144486pt;}
._4f{width:850.971136pt;}
._78{width:903.717478pt;}
._a5{width:905.056461pt;}
._a9{width:911.607910pt;}
._77{width:915.433574pt;}
._50{width:919.450522pt;}
._33{width:945.512858pt;}
._a6{width:961.198080pt;}
._af{width:979.130880pt;}
._ae{width:982.047949pt;}
._ab{width:1074.389914pt;}
._a4{width:1097.343898pt;}
._a8{width:1102.030336pt;}
._ac{width:1115.276698pt;}
._aa{width:1174.622310pt;}
._7b{width:2295.597867pt;}
._16{width:2316.851200pt;}
.fsc{font-size:31.880533pt;}
.fsb{font-size:37.193600pt;}
.fsa{font-size:37.276537pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.381867pt;}
.fs9{font-size:41.988267pt;}
.fs11{font-size:42.077867pt;}
.fsd{font-size:42.507200pt;}
.fse{font-size:47.820800pt;}
.fs12{font-size:49.829333pt;}
.fs6{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fsf{font-size:55.365867pt;}
.fs1{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:74.387733pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:95.641600pt;}
.fs5{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:3.044747pt;}
.y2a{bottom:12.578910pt;}
.y24{bottom:14.008270pt;}
.y6c{bottom:28.346667pt;}
.y6{bottom:59.133337pt;}
.y18d{bottom:79.105333pt;}
.y20a{bottom:80.410667pt;}
.y24f{bottom:83.758667pt;}
.y5{bottom:86.333337pt;}
.y25a{bottom:90.096000pt;}
.yd8{bottom:90.457333pt;}
.y42{bottom:91.398667pt;}
.y6b{bottom:92.392000pt;}
.y1a1{bottom:95.178667pt;}
.y18c{bottom:95.842667pt;}
.y209{bottom:97.148000pt;}
.ya3{bottom:97.214667pt;}
.y24e{bottom:100.496000pt;}
.y1dc{bottom:100.665333pt;}
.y1a0{bottom:100.730667pt;}
.y2b0{bottom:105.201333pt;}
.y259{bottom:106.833333pt;}
.y108{bottom:107.061333pt;}
.yd7{bottom:107.194667pt;}
.y41{bottom:107.298667pt;}
.y1a2{bottom:108.621333pt;}
.y6a{bottom:109.129333pt;}
.y28a{bottom:110.780000pt;}
.y1db{bottom:112.078667pt;}
.y18b{bottom:112.580000pt;}
.y12b{bottom:113.226667pt;}
.ya2{bottom:113.952000pt;}
.y1da{bottom:116.660000pt;}
.y24d{bottom:117.233333pt;}
.y208{bottom:117.870667pt;}
.y2af{bottom:120.544000pt;}
.y2e6{bottom:122.736000pt;}
.y40{bottom:123.200000pt;}
.y258{bottom:123.570667pt;}
.y22{bottom:123.790666pt;}
.y107{bottom:123.798667pt;}
.yd6{bottom:123.930667pt;}
.y69{bottom:125.866667pt;}
.y289{bottom:127.517333pt;}
.y18a{bottom:129.317333pt;}
.y12a{bottom:129.964000pt;}
.ya1{bottom:130.689333pt;}
.y1d9{bottom:133.397333pt;}
.y2ae{bottom:135.886667pt;}
.y19f{bottom:136.746667pt;}
.y24c{bottom:137.956000pt;}
.y2e5{bottom:138.078667pt;}
.y234{bottom:138.256000pt;}
.y3f{bottom:139.100000pt;}
.y257{bottom:140.308000pt;}
.y106{bottom:140.536000pt;}
.yd5{bottom:140.668000pt;}
.y68{bottom:142.604000pt;}
.y288{bottom:144.254667pt;}
.y189{bottom:146.054667pt;}
.y129{bottom:146.701333pt;}
.y1d8{bottom:147.128000pt;}
.ya0{bottom:147.426667pt;}
.y207{bottom:147.758667pt;}
.y162{bottom:149.908000pt;}
.y2ad{bottom:151.229333pt;}
.y1d7{bottom:151.710667pt;}
.y2e4{bottom:153.421333pt;}
.y233{bottom:154.993333pt;}
.y3e{bottom:155.000000pt;}
.y256{bottom:157.045333pt;}
.y105{bottom:157.273333pt;}
.yd4{bottom:157.405333pt;}
.y67{bottom:159.341333pt;}
.y287{bottom:160.992000pt;}
.y19e{bottom:161.852000pt;}
.y19d{bottom:162.177333pt;}
.y188{bottom:162.792000pt;}
.y128{bottom:163.438667pt;}
.y9f{bottom:164.164000pt;}
.y206{bottom:164.494667pt;}
.y161{bottom:164.518667pt;}
.y2ac{bottom:166.572000pt;}
.y2e3{bottom:168.762667pt;}
.y3d{bottom:170.901333pt;}
.y232{bottom:171.730667pt;}
.y255{bottom:173.782667pt;}
.y104{bottom:174.010667pt;}
.yd3{bottom:174.142667pt;}
.y19{bottom:175.052000pt;}
.y24b{bottom:175.576000pt;}
.y66{bottom:176.078667pt;}
.y286{bottom:177.729333pt;}
.y160{bottom:179.130667pt;}
.y187{bottom:179.529333pt;}
.y1d5{bottom:179.733333pt;}
.y127{bottom:180.176000pt;}
.y9e{bottom:180.901333pt;}
.y205{bottom:181.232000pt;}
.y2ab{bottom:181.914667pt;}
.y2e2{bottom:184.105333pt;}
.y1d4{bottom:184.178667pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y3c{bottom:186.801333pt;}
.y231{bottom:188.468000pt;}
.y254{bottom:190.520000pt;}
.y103{bottom:190.748000pt;}
.yd2{bottom:190.880000pt;}
.y19c{bottom:192.729333pt;}
.y65{bottom:192.816000pt;}
.y15f{bottom:193.742667pt;}
.y285{bottom:194.466667pt;}
.y186{bottom:196.266667pt;}
.y24a{bottom:196.590667pt;}
.y126{bottom:196.913333pt;}
.y2aa{bottom:197.257333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y9d{bottom:197.638667pt;}
.y204{bottom:197.969333pt;}
.y2e1{bottom:199.448000pt;}
.y1d3{bottom:201.372000pt;}
.y3b{bottom:202.701333pt;}
.y1ce{bottom:204.430667pt;}
.y230{bottom:205.205333pt;}
.y1cc{bottom:205.612000pt;}
.y1d2{bottom:206.685333pt;}
.y253{bottom:207.257333pt;}
.y102{bottom:207.485333pt;}
.yd1{bottom:207.617333pt;}
.y15e{bottom:208.354667pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y64{bottom:209.553333pt;}
.y284{bottom:211.204000pt;}
.y1d1{bottom:211.998667pt;}
.y2a9{bottom:212.600000pt;}
.y1cd{bottom:212.918667pt;}
.y185{bottom:213.004000pt;}
.y9c{bottom:214.376000pt;}
.y203{bottom:214.706667pt;}
.y2e0{bottom:214.790667pt;}
.y249{bottom:217.604000pt;}
.y22f{bottom:221.942667pt;}
.y1d0{bottom:222.092000pt;}
.y15d{bottom:222.966667pt;}
.y19b{bottom:223.222667pt;}
.y252{bottom:223.994667pt;}
.y101{bottom:224.222667pt;}
.yd0{bottom:224.354667pt;}
.y63{bottom:226.290667pt;}
.y1cf{bottom:226.397333pt;}
.y125{bottom:226.749333pt;}
.y283{bottom:227.941333pt;}
.y184{bottom:229.741333pt;}
.y2df{bottom:230.133333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y9b{bottom:231.113333pt;}
.y1d6{bottom:236.297333pt;}
.y15c{bottom:237.578667pt;}
.y248{bottom:238.618667pt;}
.y22e{bottom:238.678667pt;}
.y19a{bottom:239.960000pt;}
.y251{bottom:240.732000pt;}
.y100{bottom:240.960000pt;}
.ycf{bottom:241.092000pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y62{bottom:243.028000pt;}
.y2a8{bottom:243.284000pt;}
.y2de{bottom:245.476000pt;}
.y183{bottom:246.478667pt;}
.y202{bottom:247.118667pt;}
.y9a{bottom:247.850667pt;}
.y282{bottom:248.664000pt;}
.y15b{bottom:252.190667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y22d{bottom:255.416000pt;}
.y198{bottom:256.697333pt;}
.yff{bottom:257.697333pt;}
.y1cb{bottom:257.730667pt;}
.yce{bottom:257.829333pt;}
.y2a7{bottom:258.626667pt;}
.y247{bottom:259.632000pt;}
.y61{bottom:259.765333pt;}
.y2dd{bottom:260.818667pt;}
.y199{bottom:261.518667pt;}
.y182{bottom:263.216000pt;}
.y99{bottom:264.588000pt;}
.y15a{bottom:266.802667pt;}
.y250{bottom:270.568000pt;}
.y22c{bottom:272.153333pt;}
.y3a{bottom:273.154667pt;}
.y197{bottom:273.433333pt;}
.y2a6{bottom:273.969333pt;}
.yfe{bottom:274.434667pt;}
.y1c9{bottom:274.468000pt;}
.ycd{bottom:274.566667pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y2dc{bottom:276.161333pt;}
.y60{bottom:276.502667pt;}
.y201{bottom:277.804000pt;}
.y281{bottom:278.552000pt;}
.y1ca{bottom:279.290667pt;}
.y181{bottom:279.953333pt;}
.y246{bottom:280.646667pt;}
.y98{bottom:281.325333pt;}
.y159{bottom:281.414667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y22b{bottom:288.890667pt;}
.y39{bottom:289.054667pt;}
.y2a5{bottom:289.312000pt;}
.y196{bottom:290.170667pt;}
.yfd{bottom:291.170667pt;}
.y1c8{bottom:291.205333pt;}
.ycc{bottom:291.304000pt;}
.y2db{bottom:291.502667pt;}
.y5f{bottom:293.240000pt;}
.y200{bottom:294.541333pt;}
.y280{bottom:295.289333pt;}
.y158{bottom:296.026667pt;}
.y180{bottom:296.690667pt;}
.y97{bottom:298.062667pt;}
.y245{bottom:301.660000pt;}
.y2a4{bottom:304.654667pt;}
.y38{bottom:304.954667pt;}
.y2da{bottom:306.845333pt;}
.yfc{bottom:307.908000pt;}
.y1c7{bottom:307.942667pt;}
.ycb{bottom:308.041333pt;}
.y10{bottom:309.452000pt;}
.y5e{bottom:309.977333pt;}
.y157{bottom:310.638667pt;}
.y1ff{bottom:311.278667pt;}
.y27f{bottom:312.026667pt;}
.y17f{bottom:313.428000pt;}
.y96{bottom:314.800000pt;}
.y2a3{bottom:319.997333pt;}
.y37{bottom:320.856000pt;}
.y2d9{bottom:322.188000pt;}
.y244{bottom:322.674667pt;}
.yfb{bottom:324.645333pt;}
.y1c6{bottom:324.680000pt;}
.yca{bottom:324.778667pt;}
.y156{bottom:325.249333pt;}
.y1fe{bottom:328.016000pt;}
.y27e{bottom:328.764000pt;}
.y22a{bottom:329.301333pt;}
.y17e{bottom:330.165333pt;}
.y195{bottom:330.581333pt;}
.y5d{bottom:330.698667pt;}
.y95{bottom:331.537333pt;}
.y2a2{bottom:335.340000pt;}
.y2d8{bottom:337.530667pt;}
.y155{bottom:339.861333pt;}
.yfa{bottom:341.382667pt;}
.y1c5{bottom:341.417333pt;}
.yc9{bottom:341.516000pt;}
.y243{bottom:343.688000pt;}
.yf{bottom:343.809333pt;}
.y1fd{bottom:344.753333pt;}
.y194{bottom:345.193333pt;}
.y27d{bottom:345.501333pt;}
.y17d{bottom:346.902667pt;}
.y94{bottom:348.274667pt;}
.y229{bottom:350.316000pt;}
.y2a1{bottom:350.681333pt;}
.y2d7{bottom:352.873333pt;}
.y154{bottom:354.473333pt;}
.y36{bottom:354.688000pt;}
.yf9{bottom:358.120000pt;}
.yc8{bottom:358.253333pt;}
.y193{bottom:359.805333pt;}
.y27c{bottom:362.238667pt;}
.ye{bottom:362.706666pt;}
.y242{bottom:364.702667pt;}
.y228{bottom:364.928000pt;}
.y93{bottom:365.012000pt;}
.y2a0{bottom:366.024000pt;}
.y17c{bottom:367.624000pt;}
.y2d6{bottom:368.216000pt;}
.y153{bottom:369.085333pt;}
.y1fc{bottom:369.858667pt;}
.y35{bottom:370.589333pt;}
.y192{bottom:374.417333pt;}
.yf8{bottom:374.857333pt;}
.yc7{bottom:374.990667pt;}
.y27b{bottom:378.976000pt;}
.y1c4{bottom:380.189333pt;}
.y29f{bottom:381.366667pt;}
.y92{bottom:381.749333pt;}
.y2d5{bottom:383.558667pt;}
.y152{bottom:383.697333pt;}
.y241{bottom:385.716000pt;}
.y227{bottom:385.941333pt;}
.y34{bottom:386.489333pt;}
.y191{bottom:389.029333pt;}
.yf7{bottom:391.594667pt;}
.yc6{bottom:391.728000pt;}
.y27a{bottom:395.713333pt;}
.y29e{bottom:396.709333pt;}
.y5c{bottom:397.498667pt;}
.y17b{bottom:397.512000pt;}
.y151{bottom:398.309333pt;}
.y91{bottom:398.486667pt;}
.y2d4{bottom:398.901333pt;}
.y1fb{bottom:400.544000pt;}
.y1c3{bottom:401.202667pt;}
.y240{bottom:406.730667pt;}
.y226{bottom:406.956000pt;}
.yf6{bottom:408.332000pt;}
.yc5{bottom:408.465333pt;}
.y190{bottom:410.044000pt;}
.y29d{bottom:412.052000pt;}
.y279{bottom:412.450667pt;}
.y150{bottom:412.921333pt;}
.y2d3{bottom:414.244000pt;}
.y17a{bottom:414.249333pt;}
.y90{bottom:415.224000pt;}
.y33{bottom:418.330667pt;}
.y1c2{bottom:422.217333pt;}
.yf5{bottom:425.069333pt;}
.yc4{bottom:425.202667pt;}
.y29c{bottom:427.394667pt;}
.y14f{bottom:427.533333pt;}
.y23f{bottom:427.744000pt;}
.y225{bottom:427.969333pt;}
.y278{bottom:429.188000pt;}
.y2d2{bottom:429.585333pt;}
.y5b{bottom:430.734667pt;}
.y179{bottom:430.986667pt;}
.y1fa{bottom:431.229333pt;}
.y8f{bottom:431.961333pt;}
.y18f{bottom:438.149333pt;}
.yf4{bottom:441.806667pt;}
.yc3{bottom:441.940000pt;}
.y14e{bottom:442.145333pt;}
.y29b{bottom:442.737333pt;}
.y1c1{bottom:443.230667pt;}
.y2d1{bottom:444.928000pt;}
.y277{bottom:445.925333pt;}
.yd{bottom:446.990669pt;}
.y178{bottom:447.724000pt;}
.y1f9{bottom:447.966667pt;}
.y5a{bottom:448.029333pt;}
.y8e{bottom:448.698667pt;}
.y23e{bottom:448.758667pt;}
.y224{bottom:448.984000pt;}
.y32{bottom:450.170667pt;}
.y14d{bottom:456.757333pt;}
.y29a{bottom:458.080000pt;}
.yf3{bottom:458.544000pt;}
.yc2{bottom:458.677333pt;}
.y2d0{bottom:460.270667pt;}
.y276{bottom:462.662667pt;}
.yc{bottom:462.990669pt;}
.y124{bottom:463.060000pt;}
.y223{bottom:463.596000pt;}
.y1c0{bottom:464.245333pt;}
.y177{bottom:464.461333pt;}
.y18e{bottom:464.544000pt;}
.y1f8{bottom:464.704000pt;}
.y59{bottom:465.325333pt;}
.y8d{bottom:465.436000pt;}
.y31{bottom:466.070667pt;}
.y23d{bottom:469.772000pt;}
.y14c{bottom:471.368000pt;}
.y299{bottom:473.422667pt;}
.yf2{bottom:475.281333pt;}
.yc1{bottom:475.414667pt;}
.y2cf{bottom:475.613333pt;}
.yb{bottom:478.990666pt;}
.y275{bottom:479.398667pt;}
.y123{bottom:479.797333pt;}
.y176{bottom:481.198667pt;}
.y1f7{bottom:481.441333pt;}
.y30{bottom:481.972000pt;}
.y8c{bottom:482.173333pt;}
.y58{bottom:482.620000pt;}
.y222{bottom:484.609333pt;}
.y1bf{bottom:485.258667pt;}
.y14b{bottom:485.980000pt;}
.y298{bottom:488.764000pt;}
.y23c{bottom:490.786667pt;}
.y2ce{bottom:490.956000pt;}
.yf1{bottom:492.018667pt;}
.yc0{bottom:492.152000pt;}
.ya{bottom:494.990666pt;}
.y274{bottom:496.136000pt;}
.y122{bottom:496.534667pt;}
.y2f{bottom:497.872000pt;}
.y175{bottom:497.936000pt;}
.y1f6{bottom:498.177333pt;}
.y8b{bottom:498.910667pt;}
.y221{bottom:499.221333pt;}
.y57{bottom:499.914667pt;}
.y14a{bottom:500.592000pt;}
.y297{bottom:504.106667pt;}
.y2cd{bottom:506.298667pt;}
.yf0{bottom:508.756000pt;}
.ybf{bottom:508.889333pt;}
.y23b{bottom:511.800000pt;}
.y273{bottom:512.873333pt;}
.y121{bottom:513.272000pt;}
.y1be{bottom:513.365333pt;}
.y2e{bottom:513.772000pt;}
.y174{bottom:514.673333pt;}
.y149{bottom:515.204000pt;}
.y8a{bottom:515.648000pt;}
.y56{bottom:517.210667pt;}
.y1f5{bottom:518.909333pt;}
.y296{bottom:519.449333pt;}
.y220{bottom:520.234667pt;}
.y2cc{bottom:521.641333pt;}
.yef{bottom:525.493333pt;}
.ybe{bottom:525.626667pt;}
.y272{bottom:529.610667pt;}
.y2d{bottom:529.673333pt;}
.y148{bottom:529.816000pt;}
.y120{bottom:530.009333pt;}
.y1f4{bottom:530.596000pt;}
.y173{bottom:531.410667pt;}
.y89{bottom:532.384000pt;}
.y23a{bottom:532.814667pt;}
.y1f2{bottom:533.358667pt;}
.y55{bottom:534.505333pt;}
.y2cb{bottom:536.984000pt;}
.y295{bottom:538.777333pt;}
.y21f{bottom:541.249333pt;}
.yee{bottom:542.230667pt;}
.ybd{bottom:542.364000pt;}
.y1bd{bottom:544.708000pt;}
.y2c{bottom:545.573333pt;}
.y271{bottom:546.348000pt;}
.y11f{bottom:546.746667pt;}
.y1f3{bottom:547.705333pt;}
.y88{bottom:549.121333pt;}
.y147{bottom:550.830667pt;}
.y54{bottom:551.801333pt;}
.y2ca{bottom:552.325333pt;}
.yed{bottom:558.968000pt;}
.ybc{bottom:559.101333pt;}
.y239{bottom:560.920000pt;}
.y1bc{bottom:561.445333pt;}
.y21e{bottom:562.262667pt;}
.y270{bottom:563.085333pt;}
.y11e{bottom:563.484000pt;}
.y29{bottom:565.458715pt;}
.y87{bottom:565.858667pt;}
.y2c9{bottom:567.668000pt;}
.y1f1{bottom:567.730667pt;}
.y294{bottom:568.665333pt;}
.y53{bottom:569.096000pt;}
.y172{bottom:569.952000pt;}
.y9{bottom:573.786667pt;}
.yec{bottom:575.705333pt;}
.ybb{bottom:575.837333pt;}
.y1bb{bottom:578.182667pt;}
.y146{bottom:578.936000pt;}
.y1f0{bottom:579.417333pt;}
.y26f{bottom:579.822667pt;}
.y11d{bottom:580.221333pt;}
.y1ee{bottom:582.180000pt;}
.y86{bottom:582.596000pt;}
.y2c8{bottom:583.010667pt;}
.y21d{bottom:583.277333pt;}
.y52{bottom:586.390667pt;}
.y171{bottom:590.965333pt;}
.y293{bottom:592.257333pt;}
.yeb{bottom:592.442667pt;}
.yba{bottom:592.574667pt;}
.y8{bottom:592.685334pt;}
.y1ba{bottom:594.920000pt;}
.y1ef{bottom:596.526667pt;}
.y26e{bottom:596.560000pt;}
.y11c{bottom:596.958667pt;}
.y238{bottom:597.889333pt;}
.y2c7{bottom:598.353333pt;}
.y85{bottom:599.333333pt;}
.y51{bottom:603.686667pt;}
.y21c{bottom:604.290667pt;}
.y1ed{bottom:604.349333pt;}
.yea{bottom:609.180000pt;}
.yb9{bottom:609.312000pt;}
.y145{bottom:610.589333pt;}
.y1b9{bottom:611.657333pt;}
.y170{bottom:611.980000pt;}
.y26d{bottom:613.297333pt;}
.y11b{bottom:613.696000pt;}
.y292{bottom:615.848000pt;}
.y84{bottom:616.070667pt;}
.y237{bottom:618.902667pt;}
.y50{bottom:620.981333pt;}
.y1ec{bottom:621.086667pt;}
.y21b{bottom:625.305333pt;}
.ye9{bottom:625.917333pt;}
.yb8{bottom:626.049333pt;}
.y144{bottom:627.326667pt;}
.y1b8{bottom:628.394667pt;}
.y2c6{bottom:629.038667pt;}
.y26c{bottom:630.034667pt;}
.y11a{bottom:630.433333pt;}
.y83{bottom:632.808000pt;}
.y16f{bottom:632.993333pt;}
.y1eb{bottom:637.824000pt;}
.y4f{bottom:638.277333pt;}
.y291{bottom:639.440000pt;}
.y236{bottom:639.917333pt;}
.ye8{bottom:642.654667pt;}
.yb7{bottom:642.786667pt;}
.y143{bottom:644.064000pt;}
.y2c5{bottom:644.381333pt;}
.y1b7{bottom:645.132000pt;}
.y7{bottom:645.598667pt;}
.y21a{bottom:646.318667pt;}
.y26b{bottom:646.772000pt;}
.y119{bottom:647.170667pt;}
.y82{bottom:649.545333pt;}
.y16e{bottom:654.008000pt;}
.y4e{bottom:655.572000pt;}
.yb6{bottom:659.524000pt;}
.y2c4{bottom:659.724000pt;}
.y142{bottom:660.801333pt;}
.y235{bottom:660.930667pt;}
.y1b6{bottom:661.869333pt;}
.y290{bottom:663.032000pt;}
.ye7{bottom:663.376000pt;}
.y26a{bottom:663.509333pt;}
.y118{bottom:663.908000pt;}
.y81{bottom:666.282667pt;}
.y219{bottom:667.333333pt;}
.y1ea{bottom:668.509333pt;}
.y4{bottom:668.977329pt;}
.y4d{bottom:672.866667pt;}
.y16d{bottom:675.021333pt;}
.y2c3{bottom:675.066667pt;}
.yb5{bottom:676.261333pt;}
.y141{bottom:677.538667pt;}
.y1b5{bottom:678.606667pt;}
.ye6{bottom:680.113333pt;}
.y269{bottom:680.246667pt;}
.y117{bottom:680.645333pt;}
.y218{bottom:681.945333pt;}
.y80{bottom:683.020000pt;}
.y28f{bottom:686.622667pt;}
.y4c{bottom:690.162667pt;}
.y2c2{bottom:690.408000pt;}
.yb4{bottom:692.998667pt;}
.y140{bottom:694.276000pt;}
.y1b4{bottom:695.344000pt;}
.y16c{bottom:696.036000pt;}
.ye5{bottom:696.850667pt;}
.y268{bottom:696.984000pt;}
.y116{bottom:697.382667pt;}
.y1e9{bottom:699.194667pt;}
.y7f{bottom:699.757333pt;}
.y28e{bottom:702.244000pt;}
.y217{bottom:702.958667pt;}
.y2c1{bottom:705.750667pt;}
.y4b{bottom:707.457333pt;}
.yb3{bottom:709.736000pt;}
.y1b3{bottom:712.081333pt;}
.ye4{bottom:713.588000pt;}
.y267{bottom:713.721333pt;}
.y115{bottom:714.120000pt;}
.y1e8{bottom:715.932000pt;}
.y7e{bottom:716.494667pt;}
.y16b{bottom:717.049333pt;}
.y28d{bottom:717.865333pt;}
.y2c0{bottom:721.093333pt;}
.y216{bottom:723.973333pt;}
.y4a{bottom:724.752000pt;}
.yb2{bottom:726.473333pt;}
.y1b2{bottom:728.818667pt;}
.y266{bottom:730.458667pt;}
.y114{bottom:730.857333pt;}
.y13f{bottom:733.092000pt;}
.y7d{bottom:733.232000pt;}
.y28c{bottom:733.486667pt;}
.ye3{bottom:734.310667pt;}
.y2bf{bottom:736.436000pt;}
.y13e{bottom:737.741333pt;}
.y16a{bottom:738.064000pt;}
.yb1{bottom:743.210667pt;}
.y215{bottom:744.986667pt;}
.y1b1{bottom:745.556000pt;}
.y265{bottom:747.196000pt;}
.y113{bottom:747.594667pt;}
.y28b{bottom:749.109333pt;}
.y7c{bottom:749.969333pt;}
.ye2{bottom:751.048000pt;}
.y2be{bottom:751.778667pt;}
.y1e7{bottom:751.837333pt;}
.y13b{bottom:752.017333pt;}
.y13d{bottom:758.309333pt;}
.y49{bottom:759.050667pt;}
.yb0{bottom:759.948000pt;}
.y1b0{bottom:762.293333pt;}
.y13c{bottom:762.958667pt;}
.y264{bottom:763.933333pt;}
.y112{bottom:764.332000pt;}
.y214{bottom:766.001333pt;}
.y169{bottom:766.169333pt;}
.y7b{bottom:766.706667pt;}
.y2bd{bottom:767.121333pt;}
.ye1{bottom:767.785333pt;}
.y48{bottom:773.397333pt;}
.yaf{bottom:776.685333pt;}
.y1af{bottom:779.030667pt;}
.y263{bottom:780.670667pt;}
.y111{bottom:781.069333pt;}
.y3{bottom:781.661334pt;}
.y2bc{bottom:782.464000pt;}
.y7a{bottom:783.444000pt;}
.y13a{bottom:783.528000pt;}
.ye0{bottom:784.522667pt;}
.y213{bottom:787.014667pt;}
.y1e6{bottom:787.556000pt;}
.y47{bottom:791.601333pt;}
.yae{bottom:793.422667pt;}
.y168{bottom:793.821333pt;}
.y1ae{bottom:795.768000pt;}
.y262{bottom:797.408000pt;}
.y110{bottom:797.806667pt;}
.y139{bottom:799.446667pt;}
.y137{bottom:799.561333pt;}
.y79{bottom:800.181333pt;}
.ydf{bottom:801.260000pt;}
.y46{bottom:802.089333pt;}
.y212{bottom:808.029333pt;}
.y167{bottom:810.558667pt;}
.y1ad{bottom:812.505333pt;}
.y2ba{bottom:813.148000pt;}
.y2bb{bottom:813.149333pt;}
.yad{bottom:814.145333pt;}
.y10f{bottom:814.544000pt;}
.y1e5{bottom:815.234667pt;}
.y138{bottom:815.365333pt;}
.y78{bottom:816.918667pt;}
.y1e4{bottom:819.237333pt;}
.y45{bottom:820.293333pt;}
.yde{bottom:824.638667pt;}
.y166{bottom:827.296000pt;}
.y1e3{bottom:828.349333pt;}
.y2b9{bottom:828.490667pt;}
.y211{bottom:829.042667pt;}
.y44{bottom:830.781333pt;}
.y261{bottom:830.882667pt;}
.y10e{bottom:831.281333pt;}
.y136{bottom:831.393333pt;}
.y1ac{bottom:833.226667pt;}
.y77{bottom:833.656000pt;}
.y2{bottom:840.112001pt;}
.ydd{bottom:841.376000pt;}
.y2b8{bottom:843.833333pt;}
.yac{bottom:844.033333pt;}
.y135{bottom:847.204000pt;}
.y260{bottom:847.620000pt;}
.y10d{bottom:848.018667pt;}
.y43{bottom:848.985333pt;}
.y210{bottom:850.057333pt;}
.y76{bottom:850.393333pt;}
.y134{bottom:854.624000pt;}
.ydc{bottom:858.113333pt;}
.y2b7{bottom:859.176000pt;}
.y1{bottom:859.312000pt;}
.y1ab{bottom:860.472000pt;}
.yab{bottom:860.770667pt;}
.y25f{bottom:864.357333pt;}
.y10c{bottom:864.754667pt;}
.y1e2{bottom:865.636000pt;}
.y75{bottom:867.130667pt;}
.y1aa{bottom:869.584000pt;}
.y20f{bottom:871.070667pt;}
.y2b6{bottom:874.518667pt;}
.ydb{bottom:874.850667pt;}
.yaa{bottom:877.508000pt;}
.y133{bottom:879.041333pt;}
.y25e{bottom:881.094667pt;}
.y10b{bottom:881.492000pt;}
.y1e1{bottom:882.373333pt;}
.y74{bottom:883.868000pt;}
.y28{bottom:884.713333pt;}
.y1a9{bottom:889.861333pt;}
.yda{bottom:891.588000pt;}
.y20e{bottom:892.084000pt;}
.ya9{bottom:894.245333pt;}
.y132{bottom:894.960000pt;}
.y130{bottom:895.288000pt;}
.y25d{bottom:897.832000pt;}
.y10a{bottom:898.229333pt;}
.y73{bottom:900.605333pt;}
.y2b5{bottom:905.204000pt;}
.y1a8{bottom:906.598667pt;}
.yd9{bottom:908.325333pt;}
.y1e0{bottom:908.684000pt;}
.y131{bottom:910.880000pt;}
.ya8{bottom:910.982667pt;}
.y20d{bottom:913.098667pt;}
.y25c{bottom:914.569333pt;}
.y109{bottom:914.966667pt;}
.y72{bottom:917.342667pt;}
.y1df{bottom:920.370667pt;}
.y2b4{bottom:920.546667pt;}
.y1dd{bottom:923.133333pt;}
.y1a6{bottom:923.336000pt;}
.y1a7{bottom:923.661333pt;}
.y27{bottom:925.510667pt;}
.y12f{bottom:926.798667pt;}
.y165{bottom:927.720000pt;}
.ya7{bottom:931.704000pt;}
.y71{bottom:934.080000pt;}
.y20c{bottom:934.112000pt;}
.y25b{bottom:935.290667pt;}
.y2b3{bottom:935.889333pt;}
.y12e{bottom:936.212000pt;}
.y1de{bottom:937.478667pt;}
.y1a4{bottom:940.073333pt;}
.y1a5{bottom:940.265333pt;}
.y164{bottom:944.456000pt;}
.ya6{bottom:948.441333pt;}
.y26{bottom:950.616000pt;}
.y70{bottom:950.817333pt;}
.y2b2{bottom:951.230667pt;}
.y20b{bottom:955.126667pt;}
.y1a3{bottom:956.810667pt;}
.y12d{bottom:958.741333pt;}
.y163{bottom:961.193333pt;}
.ya5{bottom:965.178667pt;}
.y2b1{bottom:966.573333pt;}
.y6f{bottom:967.554667pt;}
.y25{bottom:975.722667pt;}
.ya4{bottom:981.916000pt;}
.y12c{bottom:983.233333pt;}
.y6e{bottom:984.290667pt;}
.y23{bottom:1014.377333pt;}
.y6d{bottom:1043.020000pt;}
.h12{height:22.673858pt;}
.h19{height:23.209028pt;}
.h2d{height:23.400311pt;}
.h2e{height:26.194996pt;}
.h22{height:26.890973pt;}
.h15{height:27.076941pt;}
.h18{height:27.300102pt;}
.h17{height:27.652941pt;}
.h8{height:28.560000pt;}
.h26{height:29.397999pt;}
.h14{height:29.433775pt;}
.h31{height:29.640290pt;}
.h13{height:30.399505pt;}
.h1a{height:30.945242pt;}
.h20{height:31.200285pt;}
.h3c{height:31.558400pt;}
.h39{height:32.278300pt;}
.h1b{height:34.574438pt;}
.h1d{height:34.813542pt;}
.h1c{height:35.100467pt;}
.h9{height:35.242667pt;}
.h16{height:35.999607pt;}
.h48{height:37.372000pt;}
.h28{height:38.362652pt;}
.h1e{height:38.415786pt;}
.h1f{height:38.681455pt;}
.hd{height:39.000258pt;}
.h10{height:39.183786pt;}
.h3a{height:41.524400pt;}
.h3{height:42.840000pt;}
.h37{height:43.406788pt;}
.h4b{height:43.660390pt;}
.h47{height:44.163951pt;}
.hb{height:45.271688pt;}
.h25{height:45.674274pt;}
.h49{height:46.285542pt;}
.h4a{height:46.290876pt;}
.h11{height:48.481423pt;}
.h21{height:48.511220pt;}
.h38{height:48.925623pt;}
.h32{height:48.930957pt;}
.h34{height:49.485623pt;}
.h46{height:50.261318pt;}
.hf{height:50.319786pt;}
.h7{height:50.346667pt;}
.h3e{height:51.245623pt;}
.h43{height:51.344666pt;}
.h3d{height:51.581623pt;}
.h6{height:52.864000pt;}
.h23{height:53.098274pt;}
.h41{height:54.805999pt;}
.h3f{height:55.010925pt;}
.h3b{height:57.799269pt;}
.h36{height:58.751067pt;}
.h2{height:60.416000pt;}
.h24{height:61.071607pt;}
.h44{height:64.034876pt;}
.h45{height:64.040209pt;}
.he{height:69.148877pt;}
.h30{height:75.129455pt;}
.h2f{height:77.497733pt;}
.h27{height:80.661318pt;}
.h35{height:81.188122pt;}
.h2a{height:81.423985pt;}
.h29{height:81.429318pt;}
.h42{height:83.525318pt;}
.h5{height:85.589333pt;}
.hc{height:91.114522pt;}
.h2b{height:97.370652pt;}
.h4{height:105.826671pt;}
.h2c{height:119.578652pt;}
.h40{height:129.247985pt;}
.h33{height:161.103985pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:66.991004pt;}
.w4{width:163.600458pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:26.021437pt;}
.x7{left:47.068000pt;}
.x5{left:48.000000pt;}
.x6{left:51.605861pt;}
.xad{left:56.016000pt;}
.x49{left:58.529333pt;}
.xab{left:62.202667pt;}
.x99{left:65.125333pt;}
.x4c{left:69.297333pt;}
.xa0{left:70.534667pt;}
.xa6{left:73.810667pt;}
.xc1{left:76.686667pt;}
.x4e{left:78.134667pt;}
.xa8{left:80.517333pt;}
.x9b{left:86.788000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x53{left:96.886667pt;}
.xa9{left:98.946667pt;}
.x55{left:100.706667pt;}
.x9a{left:102.706667pt;}
.x54{left:103.694667pt;}
.x97{left:110.788000pt;}
.xa2{left:116.394667pt;}
.x4f{left:117.844000pt;}
.xa3{left:121.870667pt;}
.x9d{left:123.652000pt;}
.x98{left:124.817333pt;}
.x48{left:126.458667pt;}
.xaa{left:133.024000pt;}
.xb3{left:134.817333pt;}
.x4d{left:136.858667pt;}
.x4b{left:138.328000pt;}
.xb5{left:140.209333pt;}
.xb4{left:143.198667pt;}
.xa1{left:148.153333pt;}
.xa7{left:152.546667pt;}
.xb{left:155.964000pt;}
.x9c{left:160.024000pt;}
.xa4{left:161.662667pt;}
.xa5{left:166.330667pt;}
.x9e{left:169.624000pt;}
.x9f{left:178.172000pt;}
.x4{left:180.874667pt;}
.xac{left:183.349333pt;}
.xc{left:193.064000pt;}
.x96{left:202.244000pt;}
.x39{left:221.026667pt;}
.xf{left:222.073333pt;}
.xd{left:223.020000pt;}
.xb0{left:228.146667pt;}
.xe{left:241.085333pt;}
.x56{left:242.758667pt;}
.xba{left:246.761333pt;}
.xb9{left:249.749333pt;}
.x11{left:251.365333pt;}
.x38{left:253.769333pt;}
.xb1{left:258.288000pt;}
.x30{left:262.544000pt;}
.x57{left:266.166667pt;}
.x31{left:269.185333pt;}
.x94{left:271.008000pt;}
.xb2{left:272.870667pt;}
.x10{left:275.650667pt;}
.x3e{left:276.904000pt;}
.x7c{left:282.229333pt;}
.x95{left:285.800000pt;}
.x47{left:288.388000pt;}
.x3f{left:290.186667pt;}
.x42{left:292.665333pt;}
.xb6{left:296.304000pt;}
.x7d{left:301.404000pt;}
.x52{left:304.318667pt;}
.x1e{left:305.286667pt;}
.x5c{left:310.693333pt;}
.x1f{left:311.929333pt;}
.x60{left:313.210667pt;}
.x71{left:314.650667pt;}
.x5d{left:316.564000pt;}
.x6f{left:317.657333pt;}
.x5f{left:319.766667pt;}
.x51{left:321.754667pt;}
.x58{left:323.932000pt;}
.x70{left:325.786667pt;}
.x5a{left:329.640000pt;}
.x28{left:331.612000pt;}
.x5e{left:332.661333pt;}
.x4a{left:335.492000pt;}
.x59{left:337.216000pt;}
.x29{left:338.254667pt;}
.x5b{left:342.922667pt;}
.x6e{left:345.249333pt;}
.x12{left:347.256000pt;}
.xbd{left:353.008000pt;}
.x13{left:353.897333pt;}
.x8f{left:361.805333pt;}
.x3c{left:365.922667pt;}
.x1a{left:367.988000pt;}
.x16{left:369.822667pt;}
.xb7{left:373.522667pt;}
.x1b{left:374.629333pt;}
.x17{left:376.464000pt;}
.x3d{left:379.206667pt;}
.x90{left:389.281333pt;}
.x93{left:393.318667pt;}
.x80{left:396.605333pt;}
.x74{left:398.700000pt;}
.xb8{left:401.873333pt;}
.x3{left:404.408000pt;}
.x20{left:413.137333pt;}
.x6d{left:414.880000pt;}
.x21{left:419.778667pt;}
.x22{left:422.700000pt;}
.x84{left:424.241333pt;}
.x69{left:427.856000pt;}
.x23{left:429.342667pt;}
.x75{left:431.945333pt;}
.x66{left:432.836000pt;}
.x32{left:434.338667pt;}
.x89{left:437.684000pt;}
.x6a{left:438.865333pt;}
.x8c{left:441.473333pt;}
.x65{left:443.372000pt;}
.x33{left:447.622667pt;}
.x76{left:450.050667pt;}
.x83{left:454.157333pt;}
.x6b{left:455.764000pt;}
.x78{left:461.804000pt;}
.x7a{left:467.877333pt;}
.x6c{left:473.430667pt;}
.x7e{left:478.498667pt;}
.x72{left:481.545333pt;}
.x67{left:486.528000pt;}
.x8d{left:488.318667pt;}
.x73{left:490.058667pt;}
.x7f{left:491.612000pt;}
.x8b{left:493.010667pt;}
.x8a{left:497.337333pt;}
.x91{left:502.612000pt;}
.xae{left:503.558667pt;}
.x3a{left:505.029333pt;}
.x8e{left:507.178667pt;}
.x2c{left:510.701333pt;}
.x3b{left:518.313333pt;}
.x43{left:520.494667pt;}
.x2d{left:523.984000pt;}
.x81{left:526.696000pt;}
.x68{left:529.261333pt;}
.x44{left:533.778667pt;}
.x79{left:537.040000pt;}
.xc0{left:540.393333pt;}
.x77{left:542.986667pt;}
.x40{left:545.528000pt;}
.xaf{left:556.721333pt;}
.x41{left:558.812000pt;}
.x7b{left:561.372000pt;}
.x92{left:567.376000pt;}
.xbb{left:580.458667pt;}
.x24{left:594.217333pt;}
.xbc{left:597.030667pt;}
.x25{left:600.858667pt;}
.xbf{left:608.716000pt;}
.x8{left:610.202667pt;}
.xc5{left:614.061333pt;}
.x61{left:620.505333pt;}
.x62{left:627.286667pt;}
.x18{left:631.538667pt;}
.x2e{left:633.650667pt;}
.x50{left:635.033333pt;}
.x19{left:638.181333pt;}
.x2f{left:646.933333pt;}
.x85{left:654.977333pt;}
.x36{left:658.482667pt;}
.x34{left:659.900000pt;}
.x1c{left:663.002667pt;}
.x9{left:666.258667pt;}
.x1d{left:669.644000pt;}
.x37{left:671.765333pt;}
.x35{left:673.182667pt;}
.x86{left:679.084000pt;}
.x14{left:683.850667pt;}
.x15{left:690.492000pt;}
.x2a{left:692.464000pt;}
.xc2{left:701.810667pt;}
.x2b{left:705.748000pt;}
.x87{left:716.914667pt;}
.xc3{left:720.356000pt;}
.x63{left:724.993333pt;}
.x45{left:726.897333pt;}
.x82{left:730.212000pt;}
.xbe{left:732.452000pt;}
.x26{left:734.546667pt;}
.x64{left:736.013333pt;}
.x46{left:740.180000pt;}
.x27{left:741.189333pt;}
.x88{left:742.649333pt;}
.xc4{left:744.266667pt;}
}




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