
    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_e430dc5212dd4c6ce4b6c3b0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_c09bbc126a0dcaed2904c6b5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_dff0226f25cdd51efb5ff445.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_1d68115d9a20912cb997eb2d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_1a8efd164e8c79f0b5216aec.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.709961;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_5395c36826b4e1521ac1c4ee.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.765625;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_797b041a015d2f1e4a1ba4ed.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.214844;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_819673d2e6601620baea433c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.904297;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_9a02512772dbd2a8e1bbae8b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_c4bea20556ff8f6340b54527.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.311035;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284668;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_3f9a7cc4c2b6ee7408a9758a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.861816;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_1811ab80f217457b248e178a.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.982910;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_9f0599de73b79955f82486b6.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.024902;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_7ad9a3248ab1b368ddb270aa.woff2')format("woff");}.fff{font-family:fff;line-height:0.857544;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_f8df29e4b1b8c00c09557788.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.752966;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;}
.m1a{transform:matrix(0.000000,-0.249414,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249414,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249414,0.250000,0.000000,0,0);}
.m1e{transform:matrix(0.000000,-0.249431,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249431,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249431,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.249828,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249828,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249828,0.250000,0.000000,0,0);}
.m11{transform:matrix(0.000000,-0.250037,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250037,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250037,0.250000,0.000000,0,0);}
.m12{transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250041,0.250000,0.000000,0,0);}
.m2a{transform:matrix(0.000000,-0.250049,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250049,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250049,0.250000,0.000000,0,0);}
.m27{transform:matrix(0.000000,-0.250054,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250054,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250054,0.250000,0.000000,0,0);}
.m2d{transform:matrix(0.000000,-0.250058,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250058,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250058,0.250000,0.000000,0,0);}
.m33{transform:matrix(0.000000,-0.250082,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250082,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250082,0.250000,0.000000,0,0);}
.m32{transform:matrix(0.000000,-0.250084,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250084,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250084,0.250000,0.000000,0,0);}
.m30{transform:matrix(0.000000,-0.250090,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250090,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250090,0.250000,0.000000,0,0);}
.m9{transform:matrix(0.000000,-0.250328,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250328,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250328,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.271596,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.271596,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.271596,0.250000,0.000000,0,0);}
.m20{transform:matrix(0.000000,-0.294798,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.294798,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.294798,0.250000,0.000000,0,0);}
.m36{transform:matrix(0.201641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.201641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.201641,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212010,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.230120,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230120,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230120,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.230121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230121,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.232098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232098,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.232381,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232381,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232381,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.ma{transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249672,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249884,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249885,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249914,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249916,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249939,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249941,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249947,0.000000,0.000000,0.250000,0,0);}
.m2b{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249955,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249960,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249961,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249963,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249976,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249976,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);}
.m23{transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250091,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250093,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250095,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250109,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250110,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250168,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250172,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250173,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250567,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250570,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250571,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250587,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250589,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250591,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250834,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250835,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250836,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-68.556000px;}
.va{vertical-align:-36.376200px;}
.v20{vertical-align:-35.280000px;}
.v8{vertical-align:-29.520000px;}
.v6{vertical-align:-26.688600px;}
.v7{vertical-align:-22.991880px;}
.v4{vertical-align:-20.153040px;}
.v1f{vertical-align:-17.290800px;}
.v9{vertical-align:-15.315840px;}
.v22{vertical-align:-12.796800px;}
.v3{vertical-align:-11.520000px;}
.v1d{vertical-align:-9.744428px;}
.ve{vertical-align:-7.544074px;}
.v1b{vertical-align:-4.625236px;}
.v12{vertical-align:-1.706398px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:1.148731px;}
.v11{vertical-align:3.772037px;}
.vc{vertical-align:7.544074px;}
.v21{vertical-align:12.796800px;}
.v14{vertical-align:14.190043px;}
.v10{vertical-align:16.794545px;}
.v1c{vertical-align:18.366227px;}
.v5{vertical-align:19.548000px;}
.v17{vertical-align:21.419780px;}
.vf{vertical-align:23.485420px;}
.v18{vertical-align:26.763499px;}
.v23{vertical-align:28.800000px;}
.v19{vertical-align:30.490631px;}
.v15{vertical-align:34.801530px;}
.v25{vertical-align:35.868240px;}
.vd{vertical-align:37.001885px;}
.v13{vertical-align:38.079610px;}
.v16{vertical-align:39.786007px;}
.v27{vertical-align:42.174960px;}
.v1a{vertical-align:69.378534px;}
.v24{vertical-align:71.348400px;}
.v1e{vertical-align:90.720000px;}
.v26{vertical-align:96.775560px;}
.v1{vertical-align:130.151520px;}
.ls5a{letter-spacing:-13.176000px;}
.ls9b{letter-spacing:-12.528000px;}
.ls19{letter-spacing:-10.195603px;}
.ls5b{letter-spacing:-8.784000px;}
.lsa2{letter-spacing:-8.056080px;}
.lscd{letter-spacing:-7.992000px;}
.ls38{letter-spacing:-6.920619px;}
.ls82{letter-spacing:-6.411182px;}
.ls39{letter-spacing:-5.381678px;}
.ls59{letter-spacing:-5.360746px;}
.ls18{letter-spacing:-5.036573px;}
.ls37{letter-spacing:-4.889052px;}
.ls104{letter-spacing:-4.730665px;}
.ls17{letter-spacing:-4.636094px;}
.ls81{letter-spacing:-4.617822px;}
.lsc9{letter-spacing:-4.278998px;}
.ls9d{letter-spacing:-3.906803px;}
.lsef{letter-spacing:-3.789629px;}
.ls21{letter-spacing:-3.528000px;}
.ls4f{letter-spacing:-2.999465px;}
.ls3f{letter-spacing:-2.872800px;}
.lsce{letter-spacing:-2.376000px;}
.ls87{letter-spacing:-2.304000px;}
.lsd1{letter-spacing:-2.248375px;}
.lscf{letter-spacing:-2.241787px;}
.lsd2{letter-spacing:-2.235565px;}
.lsd0{letter-spacing:-2.228940px;}
.ls2a{letter-spacing:-2.202480px;}
.ls106{letter-spacing:-1.872000px;}
.ls119{letter-spacing:-1.620000px;}
.lsfe{letter-spacing:-1.436400px;}
.lsc7{letter-spacing:-1.211588px;}
.lse7{letter-spacing:-1.202400px;}
.lsca{letter-spacing:-1.107043px;}
.ls2c{letter-spacing:-1.095120px;}
.lsa8{letter-spacing:-1.010880px;}
.lse5{letter-spacing:-0.961920px;}
.lsc0{letter-spacing:-0.958395px;}
.lsb8{letter-spacing:-0.935430px;}
.ls3b{letter-spacing:-0.864000px;}
.lsc3{letter-spacing:-0.793958px;}
.ls4d{letter-spacing:-0.765821px;}
.lsaa{letter-spacing:-0.758160px;}
.lse6{letter-spacing:-0.721440px;}
.lsbf{letter-spacing:-0.690041px;}
.lsc4{letter-spacing:-0.653982px;}
.lsc5{letter-spacing:-0.643658px;}
.lsc1{letter-spacing:-0.613373px;}
.lsd6{letter-spacing:-0.601200px;}
.lsb9{letter-spacing:-0.598675px;}
.lsbd{letter-spacing:-0.575034px;}
.lsb6{letter-spacing:-0.561258px;}
.ls9e{letter-spacing:-0.550254px;}
.ls5c{letter-spacing:-0.504000px;}
.lsbb{letter-spacing:-0.501904px;}
.lsb4{letter-spacing:-0.489911px;}
.lse4{letter-spacing:-0.480960px;}
.lsbc{letter-spacing:-0.455238px;}
.lsb5{letter-spacing:-0.444330px;}
.ls20{letter-spacing:-0.432000px;}
.ls9c{letter-spacing:-0.409491px;}
.lsbe{letter-spacing:-0.402524px;}
.lsb7{letter-spacing:-0.392881px;}
.lsc2{letter-spacing:-0.385505px;}
.lsa1{letter-spacing:-0.385178px;}
.ls3a{letter-spacing:-0.384480px;}
.ls2b{letter-spacing:-0.336960px;}
.ls1c{letter-spacing:-0.325379px;}
.ls3c{letter-spacing:-0.324000px;}
.ls52{letter-spacing:-0.298670px;}
.ls4c{letter-spacing:-0.288000px;}
.ls54{letter-spacing:-0.287183px;}
.lsba{letter-spacing:-0.268351px;}
.lsb3{letter-spacing:-0.261920px;}
.ls42{letter-spacing:-0.240480px;}
.lsc6{letter-spacing:-0.234058px;}
.ls84{letter-spacing:-0.224493px;}
.ls1a{letter-spacing:-0.216919px;}
.ls1f{letter-spacing:-0.216000px;}
.ls88{letter-spacing:-0.192960px;}
.ls29{letter-spacing:-0.191520px;}
.ls53{letter-spacing:-0.191455px;}
.ls85{letter-spacing:-0.162283px;}
.ls55{letter-spacing:-0.148697px;}
.ls3{letter-spacing:-0.144000px;}
.lsab{letter-spacing:-0.132480px;}
.ls4e{letter-spacing:-0.127637px;}
.ls40{letter-spacing:-0.120240px;}
.ls4{letter-spacing:-0.084240px;}
.ls51{letter-spacing:-0.074668px;}
.ls1e{letter-spacing:-0.072000px;}
.ls50{letter-spacing:-0.068924px;}
.lsd4{letter-spacing:-0.066227px;}
.lsd3{letter-spacing:-0.066205px;}
.lsa0{letter-spacing:-0.055025px;}
.ls2{letter-spacing:0.000000px;}
.ls8b{letter-spacing:0.037440px;}
.lsf0{letter-spacing:0.063360px;}
.ls46{letter-spacing:0.063818px;}
.ls22{letter-spacing:0.072000px;}
.ls83{letter-spacing:0.081154px;}
.lsee{letter-spacing:0.102422px;}
.ls105{letter-spacing:0.102429px;}
.ls34{letter-spacing:0.103440px;}
.ls49{letter-spacing:0.106577px;}
.lsaf{letter-spacing:0.117029px;}
.ls25{letter-spacing:0.118560px;}
.ls16{letter-spacing:0.120240px;}
.ls44{letter-spacing:0.127637px;}
.ls103{letter-spacing:0.127856px;}
.lsea{letter-spacing:0.128880px;}
.lsa{letter-spacing:0.144000px;}
.ls57{letter-spacing:0.148697px;}
.ls41{letter-spacing:0.159840px;}
.ls86{letter-spacing:0.162308px;}
.ls92{letter-spacing:0.163796px;}
.ls9f{letter-spacing:0.165076px;}
.ls58{letter-spacing:0.169757px;}
.ls48{letter-spacing:0.191019px;}
.ls43{letter-spacing:0.191455px;}
.lsed{letter-spacing:0.191520px;}
.ls47{letter-spacing:0.191617px;}
.ls26{letter-spacing:0.193440px;}
.ls56{letter-spacing:0.199114px;}
.lsb2{letter-spacing:0.204480px;}
.ls15{letter-spacing:0.216000px;}
.lsb0{letter-spacing:0.234058px;}
.ls5{letter-spacing:0.240480px;}
.ls108{letter-spacing:0.249600px;}
.ls45{letter-spacing:0.255274px;}
.ls96{letter-spacing:0.275127px;}
.ls0{letter-spacing:0.288000px;}
.ls33{letter-spacing:0.291600px;}
.ls4a{letter-spacing:0.297394px;}
.ls99{letter-spacing:0.298621px;}
.lse0{letter-spacing:0.300600px;}
.lsb1{letter-spacing:0.306720px;}
.ls94{letter-spacing:0.313084px;}
.ls32{letter-spacing:0.324000px;}
.ls1d{letter-spacing:0.325379px;}
.ls1{letter-spacing:0.335520px;}
.lsa9{letter-spacing:0.336960px;}
.ls98{letter-spacing:0.341600px;}
.ls95{letter-spacing:0.353047px;}
.ls2d{letter-spacing:0.360720px;}
.ls31{letter-spacing:0.367200px;}
.ls97{letter-spacing:0.368110px;}
.ls9a{letter-spacing:0.368710px;}
.ls93{letter-spacing:0.409491px;}
.ls35{letter-spacing:0.448560px;}
.lse9{letter-spacing:0.468000px;}
.lsff{letter-spacing:0.478800px;}
.ls1b{letter-spacing:0.542298px;}
.lseb{letter-spacing:0.714960px;}
.lse8{letter-spacing:0.721440px;}
.lsfb{letter-spacing:0.727776px;}
.lsf6{letter-spacing:0.766080px;}
.ls14{letter-spacing:0.864000px;}
.ls114{letter-spacing:0.972000px;}
.ls30{letter-spacing:0.993600px;}
.ls102{letter-spacing:1.008000px;}
.ls113{letter-spacing:1.080000px;}
.ls107{letter-spacing:1.082160px;}
.lsad{letter-spacing:1.085099px;}
.lsc8{letter-spacing:1.095504px;}
.lsae{letter-spacing:1.111738px;}
.lsfd{letter-spacing:1.436400px;}
.ls23{letter-spacing:1.551312px;}
.lsc{letter-spacing:1.576800px;}
.ls9{letter-spacing:1.584000px;}
.ls101{letter-spacing:1.728000px;}
.lsb{letter-spacing:2.304000px;}
.ls3d{letter-spacing:2.376000px;}
.ls3e{letter-spacing:2.585520px;}
.lsf7{letter-spacing:2.882376px;}
.lsf8{letter-spacing:3.638880px;}
.lsfc{letter-spacing:3.667608px;}
.lsf5{letter-spacing:4.366656px;}
.lse{letter-spacing:12.384000px;}
.lsd{letter-spacing:13.104000px;}
.lsf9{letter-spacing:13.693680px;}
.lsfa{letter-spacing:14.459760px;}
.lsdb{letter-spacing:14.789520px;}
.ls8f{letter-spacing:16.113600px;}
.ls90{letter-spacing:16.128000px;}
.lsa6{letter-spacing:16.174080px;}
.ls8e{letter-spacing:16.848000px;}
.ls70{letter-spacing:17.153786px;}
.lsd9{letter-spacing:17.675280px;}
.lsf{letter-spacing:18.144000px;}
.lsda{letter-spacing:18.384696px;}
.lsd8{letter-spacing:18.396720px;}
.lsf1{letter-spacing:18.768960px;}
.ls10{letter-spacing:18.864000px;}
.lsf2{letter-spacing:19.439280px;}
.ls11{letter-spacing:19.584000px;}
.ls112{letter-spacing:19.731600px;}
.ls111{letter-spacing:19.753200px;}
.ls77{letter-spacing:22.479713px;}
.ls4b{letter-spacing:23.303681px;}
.ls13{letter-spacing:26.784000px;}
.ls10f{letter-spacing:27.054000px;}
.ls12{letter-spacing:27.504000px;}
.ls110{letter-spacing:27.775440px;}
.ls5f{letter-spacing:28.380086px;}
.ls109{letter-spacing:29.146176px;}
.ls10a{letter-spacing:29.939760px;}
.lsf4{letter-spacing:33.899040px;}
.lsf3{letter-spacing:33.908616px;}
.ls2f{letter-spacing:34.848000px;}
.ls2e{letter-spacing:35.568000px;}
.ls60{letter-spacing:35.924160px;}
.ls115{letter-spacing:37.087200px;}
.lse1{letter-spacing:37.154160px;}
.lsdf{letter-spacing:37.875600px;}
.lse3{letter-spacing:38.597040px;}
.lse2{letter-spacing:39.318480px;}
.ls117{letter-spacing:40.500000px;}
.ls116{letter-spacing:40.608000px;}
.ls69{letter-spacing:41.716931px;}
.ls118{letter-spacing:42.087600px;}
.ls6d{letter-spacing:50.159108px;}
.ls36{letter-spacing:67.491360px;}
.ls8d{letter-spacing:67.968000px;}
.lsa3{letter-spacing:71.604000px;}
.lsde{letter-spacing:73.827360px;}
.lsa5{letter-spacing:75.226320px;}
.lsdd{letter-spacing:75.270240px;}
.ls62{letter-spacing:75.710167px;}
.lsdc{letter-spacing:75.991680px;}
.ls66{letter-spacing:78.584100px;}
.ls10b{letter-spacing:81.005688px;}
.ls10c{letter-spacing:81.041760px;}
.ls6a{letter-spacing:83.254241px;}
.ls73{letter-spacing:86.307794px;}
.ls27{letter-spacing:102.604320px;}
.ls6c{letter-spacing:105.033263px;}
.ls68{letter-spacing:106.829471px;}
.ls74{letter-spacing:108.131722px;}
.ls64{letter-spacing:109.703404px;}
.ls100{letter-spacing:114.048000px;}
.ls10d{letter-spacing:120.600720px;}
.lsd7{letter-spacing:121.960080px;}
.ls8c{letter-spacing:136.368000px;}
.ls8a{letter-spacing:137.073600px;}
.lsa4{letter-spacing:142.197120px;}
.ls89{letter-spacing:145.008000px;}
.ls5e{letter-spacing:152.408249px;}
.lsa7{letter-spacing:159.466320px;}
.ls75{letter-spacing:170.370329px;}
.ls6e{letter-spacing:178.498170px;}
.ls76{letter-spacing:199.154562px;}
.ls61{letter-spacing:207.282403px;}
.ls7{letter-spacing:221.879020px;}
.lsac{letter-spacing:228.187098px;}
.ls10e{letter-spacing:235.910880px;}
.ls65{letter-spacing:261.303359px;}
.ls8{letter-spacing:271.875679px;}
.ls5d{letter-spacing:285.911408px;}
.ls67{letter-spacing:321.790663px;}
.ls63{letter-spacing:323.766492px;}
.ls6b{letter-spacing:325.562700px;}
.ls80{letter-spacing:330.840000px;}
.lscc{letter-spacing:338.904000px;}
.ls78{letter-spacing:352.440000px;}
.ls6{letter-spacing:395.331464px;}
.ls28{letter-spacing:398.595600px;}
.ls6f{letter-spacing:404.236610px;}
.ls7d{letter-spacing:442.440000px;}
.lscb{letter-spacing:473.796000px;}
.ls79{letter-spacing:480.600000px;}
.ls7a{letter-spacing:502.200000px;}
.ls7f{letter-spacing:507.240000px;}
.ls7b{letter-spacing:511.488000px;}
.ls7e{letter-spacing:514.440000px;}
.ls7c{letter-spacing:547.488000px;}
.ls71{letter-spacing:554.040358px;}
.ls72{letter-spacing:555.612040px;}
.ls91{letter-spacing:627.408000px;}
.lsec{letter-spacing:725.998920px;}
.lsd5{letter-spacing:1956.861840px;}
.ls24{letter-spacing:2953.287600px;}
.sc_{text-shadow:none;}
.sc3{text-shadow:-0.015em 0 rgb(0,176,240),0 0.015em rgb(0,176,240),0.015em 0 rgb(0,176,240),0 -0.015em  rgb(0,176,240);}
.sc2{text-shadow:-0.015em 0 rgb(153,0,153),0 0.015em rgb(153,0,153),0.015em 0 rgb(153,0,153),0 -0.015em  rgb(153,0,153);}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc3{-webkit-text-stroke:0.015em rgb(0,176,240);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(153,0,153);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsf{word-spacing:-415.812670px;}
.ws95{word-spacing:-144.000000px;}
.ws4b{word-spacing:-95.760000px;}
.ws17{word-spacing:-72.000000px;}
.wsdb{word-spacing:-69.190200px;}
.ws9c{word-spacing:-55.025400px;}
.ws3d{word-spacing:-53.058240px;}
.ws2{word-spacing:-46.972800px;}
.ws1{word-spacing:-46.637280px;}
.ws6a{word-spacing:-41.189014px;}
.ws3e{word-spacing:-40.320000px;}
.ws40{word-spacing:-40.176000px;}
.ws106{word-spacing:-40.032000px;}
.ws9f{word-spacing:-39.919680px;}
.ws0{word-spacing:-39.888000px;}
.ws5c{word-spacing:-39.744000px;}
.ws93{word-spacing:-39.600000px;}
.ws3f{word-spacing:-39.168000px;}
.ws68{word-spacing:-35.355394px;}
.ws105{word-spacing:-34.148160px;}
.ws104{word-spacing:-33.727320px;}
.wse{word-spacing:-33.667200px;}
.ws4e{word-spacing:-33.546960px;}
.ws123{word-spacing:-33.426720px;}
.ws4d{word-spacing:-33.306480px;}
.wsaa{word-spacing:-33.186240px;}
.ws100{word-spacing:-32.945760px;}
.wsfd{word-spacing:-32.825520px;}
.ws102{word-spacing:-32.705280px;}
.ws101{word-spacing:-32.464800px;}
.ws43{word-spacing:-32.400000px;}
.ws103{word-spacing:-32.224320px;}
.wsa0{word-spacing:-31.863600px;}
.ws44{word-spacing:-30.348000px;}
.ws45{word-spacing:-30.240000px;}
.ws11{word-spacing:-30.151769px;}
.ws46{word-spacing:-30.024000px;}
.ws12{word-spacing:-29.934850px;}
.ws13{word-spacing:-29.826390px;}
.ws42{word-spacing:-29.808000px;}
.ws69{word-spacing:-29.734927px;}
.ws41{word-spacing:-29.700000px;}
.ws48{word-spacing:-29.206800px;}
.ws121{word-spacing:-28.404000px;}
.wse3{word-spacing:-27.648000px;}
.ws94{word-spacing:-27.504000px;}
.ws117{word-spacing:-27.387360px;}
.ws11d{word-spacing:-27.233285px;}
.ws118{word-spacing:-27.100080px;}
.ws4a{word-spacing:-26.621280px;}
.ws47{word-spacing:-26.429760px;}
.ws67{word-spacing:-26.420818px;}
.ws6b{word-spacing:-26.325090px;}
.ws11e{word-spacing:-25.709679px;}
.ws116{word-spacing:-25.184880px;}
.ws2c{word-spacing:-24.418800px;}
.ws6c{word-spacing:-23.765952px;}
.wsa8{word-spacing:-23.755680px;}
.ws49{word-spacing:-23.748480px;}
.ws6e{word-spacing:-23.596195px;}
.wsc{word-spacing:-23.334480px;}
.ws2d{word-spacing:-23.081760px;}
.wsa9{word-spacing:-22.660560px;}
.ws8c{word-spacing:-22.560868px;}
.wsa7{word-spacing:-22.407840px;}
.ws2e{word-spacing:-22.323600px;}
.wse2{word-spacing:-22.032000px;}
.ws10e{word-spacing:-21.815971px;}
.ws1d{word-spacing:-21.600000px;}
.ws70{word-spacing:-21.251527px;}
.ws1f{word-spacing:-20.880000px;}
.ws63{word-spacing:-20.682925px;}
.ws64{word-spacing:-20.458922px;}
.ws1a{word-spacing:-20.304000px;}
.ws19{word-spacing:-20.160000px;}
.ws20{word-spacing:-20.088000px;}
.ws8d{word-spacing:-20.016000px;}
.ws10{word-spacing:-19.966414px;}
.ws18{word-spacing:-19.944000px;}
.ws90{word-spacing:-19.872000px;}
.ws1b{word-spacing:-19.800000px;}
.ws1c{word-spacing:-19.584000px;}
.ws73{word-spacing:-19.512000px;}
.ws62{word-spacing:-19.091893px;}
.ws96{word-spacing:-18.508993px;}
.ws88{word-spacing:-18.422003px;}
.ws97{word-spacing:-18.099502px;}
.ws60{word-spacing:-17.996789px;}
.ws5d{word-spacing:-17.869152px;}
.ws4c{word-spacing:-17.814240px;}
.ws8f{word-spacing:-17.712000px;}
.ws5f{word-spacing:-17.613878px;}
.ws5e{word-spacing:-16.975694px;}
.ws71{word-spacing:-16.848000px;}
.ws1e{word-spacing:-16.488000px;}
.ws6d{word-spacing:-15.789955px;}
.wsdc{word-spacing:-15.636985px;}
.ws2f{word-spacing:-15.612480px;}
.wsef{word-spacing:-14.967257px;}
.wsee{word-spacing:-14.901030px;}
.wsda{word-spacing:-14.529942px;}
.wsc7{word-spacing:-13.458312px;}
.ws8e{word-spacing:-13.410720px;}
.wsc6{word-spacing:-13.341283px;}
.ws91{word-spacing:-13.217760px;}
.wsbc{word-spacing:-12.995768px;}
.wsc9{word-spacing:-12.990197px;}
.ws9e{word-spacing:-12.710867px;}
.wsb2{word-spacing:-12.684431px;}
.wsbd{word-spacing:-12.593245px;}
.wsc8{word-spacing:-12.580596px;}
.ws99{word-spacing:-12.435740px;}
.wsbb{word-spacing:-12.420734px;}
.ws9d{word-spacing:-12.380715px;}
.wsb3{word-spacing:-12.291550px;}
.wsb1{word-spacing:-12.123173px;}
.ws87{word-spacing:-11.929667px;}
.ws61{word-spacing:-11.886835px;}
.ws9a{word-spacing:-11.885486px;}
.wsca{word-spacing:-11.234729px;}
.ws72{word-spacing:-11.232000px;}
.wsed{word-spacing:-9.974872px;}
.ws89{word-spacing:-9.922591px;}
.wsba{word-spacing:-9.809934px;}
.wsc2{word-spacing:-9.775629px;}
.wsc5{word-spacing:-9.761011px;}
.wsb0{word-spacing:-9.575541px;}
.wsb7{word-spacing:-9.541386px;}
.ws8a{word-spacing:-9.006718px;}
.ws98{word-spacing:-8.528937px;}
.wsbf{word-spacing:-8.395540px;}
.wsb4{word-spacing:-8.194367px;}
.ws9b{word-spacing:-8.097761px;}
.wsc1{word-spacing:-8.050518px;}
.wsea{word-spacing:-7.998316px;}
.wse5{word-spacing:-7.974880px;}
.wsec{word-spacing:-7.952746px;}
.wse8{word-spacing:-7.929180px;}
.wsb6{word-spacing:-7.857612px;}
.wsc0{word-spacing:-7.705496px;}
.wsb5{word-spacing:-7.520857px;}
.ws10b{word-spacing:-6.973920px;}
.ws9{word-spacing:-6.768000px;}
.ws124{word-spacing:-6.492960px;}
.wsde{word-spacing:-4.820218px;}
.wsdf{word-spacing:-4.464000px;}
.wsd7{word-spacing:-3.793096px;}
.wsd1{word-spacing:-2.640380px;}
.wscc{word-spacing:-2.577114px;}
.wsa5{word-spacing:-2.525040px;}
.wsad{word-spacing:-2.450880px;}
.ws113{word-spacing:-2.442960px;}
.ws57{word-spacing:-2.404800px;}
.wse1{word-spacing:-2.164320px;}
.ws75{word-spacing:-2.042189px;}
.ws5a{word-spacing:-1.803600px;}
.ws11b{word-spacing:-1.728000px;}
.wsd{word-spacing:-1.684800px;}
.wsa6{word-spacing:-1.683360px;}
.wse0{word-spacing:-1.584000px;}
.ws4{word-spacing:-1.537920px;}
.wsab{word-spacing:-1.442880px;}
.wsb{word-spacing:-1.440000px;}
.ws111{word-spacing:-1.432080px;}
.ws34{word-spacing:-1.224000px;}
.wsa2{word-spacing:-1.210559px;}
.ws22{word-spacing:-1.202400px;}
.wsf6{word-spacing:-1.202376px;}
.wsf2{word-spacing:-1.198848px;}
.wsf8{word-spacing:-1.195522px;}
.wsf4{word-spacing:-1.191994px;}
.wsd4{word-spacing:-1.111738px;}
.ws110{word-spacing:-1.095120px;}
.wscf{word-spacing:-1.085099px;}
.ws23{word-spacing:-1.082160px;}
.ws112{word-spacing:-1.010880px;}
.wsac{word-spacing:-0.993600px;}
.ws59{word-spacing:-0.961920px;}
.wsd5{word-spacing:-0.881723px;}
.ws92{word-spacing:-0.864000px;}
.wsd0{word-spacing:-0.860596px;}
.wsa{word-spacing:-0.838800px;}
.ws3{word-spacing:-0.768960px;}
.ws78{word-spacing:-0.765821px;}
.ws10c{word-spacing:-0.758160px;}
.ws5b{word-spacing:-0.721440px;}
.wsd2{word-spacing:-0.632537px;}
.wscd{word-spacing:-0.617384px;}
.ws74{word-spacing:-0.574366px;}
.ws28{word-spacing:-0.542298px;}
.ws36{word-spacing:-0.504000px;}
.ws10a{word-spacing:-0.480960px;}
.ws21{word-spacing:-0.432000px;}
.ws114{word-spacing:-0.380160px;}
.ws3a{word-spacing:-0.360720px;}
.ws35{word-spacing:-0.360000px;}
.ws82{word-spacing:-0.297394px;}
.ws7{word-spacing:-0.288000px;}
.wsa4{word-spacing:-0.275127px;}
.ws76{word-spacing:-0.255274px;}
.ws58{word-spacing:-0.240480px;}
.ws55{word-spacing:-0.216000px;}
.ws83{word-spacing:-0.199114px;}
.ws7c{word-spacing:-0.191455px;}
.wsa1{word-spacing:-0.165076px;}
.ws56{word-spacing:-0.159840px;}
.ws84{word-spacing:-0.148697px;}
.ws2a{word-spacing:-0.144000px;}
.ws79{word-spacing:-0.127637px;}
.wsfe{word-spacing:-0.120240px;}
.wsdd{word-spacing:-0.046127px;}
.ws5{word-spacing:0.000000px;}
.ws7b{word-spacing:0.063818px;}
.wsfb{word-spacing:0.066205px;}
.wsfc{word-spacing:0.066227px;}
.ws2b{word-spacing:0.072000px;}
.ws39{word-spacing:0.084240px;}
.wsf9{word-spacing:0.132409px;}
.ws53{word-spacing:0.144000px;}
.ws119{word-spacing:0.191520px;}
.ws33{word-spacing:0.216000px;}
.wsd8{word-spacing:0.240480px;}
.ws77{word-spacing:0.255274px;}
.ws81{word-spacing:0.287183px;}
.ws11a{word-spacing:0.288000px;}
.ws54{word-spacing:0.324000px;}
.ws38{word-spacing:0.336960px;}
.wsa3{word-spacing:0.385178px;}
.wsd6{word-spacing:0.385505px;}
.wsfa{word-spacing:0.397228px;}
.ws6{word-spacing:0.432000px;}
.wsff{word-spacing:0.480960px;}
.ws7a{word-spacing:0.510547px;}
.ws37{word-spacing:0.576000px;}
.ws108{word-spacing:0.648000px;}
.ws85{word-spacing:0.679027px;}
.ws80{word-spacing:0.702002px;}
.ws32{word-spacing:0.766080px;}
.ws29{word-spacing:0.936000px;}
.ws31{word-spacing:0.957600px;}
.ws8{word-spacing:1.152000px;}
.ws109{word-spacing:1.202400px;}
.ws107{word-spacing:1.296000px;}
.ws30{word-spacing:1.342080px;}
.wsce{word-spacing:1.739900px;}
.wsd3{word-spacing:1.782605px;}
.ws7e{word-spacing:1.786915px;}
.ws24{word-spacing:1.904110px;}
.ws52{word-spacing:2.210332px;}
.ws10f{word-spacing:2.681280px;}
.wsbe{word-spacing:2.758296px;}
.ws11f{word-spacing:2.872800px;}
.ws7d{word-spacing:2.999465px;}
.ws120{word-spacing:3.600000px;}
.ws115{word-spacing:3.638880px;}
.ws7f{word-spacing:3.701467px;}
.ws50{word-spacing:3.792120px;}
.ws4f{word-spacing:4.889052px;}
.ws25{word-spacing:7.434294px;}
.ws27{word-spacing:20.081318px;}
.ws26{word-spacing:64.935814px;}
.wse9{word-spacing:66.087470px;}
.wse7{word-spacing:70.851060px;}
.wse6{word-spacing:75.966660px;}
.wscb{word-spacing:90.194161px;}
.wsf0{word-spacing:92.996352px;}
.ws122{word-spacing:110.620800px;}
.wse4{word-spacing:121.203479px;}
.wsf3{word-spacing:124.393046px;}
.wsf7{word-spacing:124.761218px;}
.wsf1{word-spacing:125.108352px;}
.wsf5{word-spacing:125.476524px;}
.wsaf{word-spacing:168.392981px;}
.wsb9{word-spacing:172.528268px;}
.wsae{word-spacing:177.222991px;}
.wsb8{word-spacing:181.575816px;}
.ws8b{word-spacing:182.898880px;}
.ws16{word-spacing:184.554855px;}
.ws51{word-spacing:195.443669px;}
.wseb{word-spacing:198.562115px;}
.ws15{word-spacing:205.932243px;}
.wsc4{word-spacing:219.919661px;}
.wsd9{word-spacing:221.910184px;}
.ws10d{word-spacing:231.577046px;}
.wsc3{word-spacing:232.915108px;}
.ws3c{word-spacing:241.426044px;}
.ws3b{word-spacing:250.738524px;}
.ws14{word-spacing:256.506954px;}
.ws11c{word-spacing:289.081964px;}
.ws65{word-spacing:325.186657px;}
.ws66{word-spacing:353.072107px;}
.ws6f{word-spacing:386.385312px;}
.ws86{word-spacing:390.243810px;}
._1e{margin-left:-959.376000px;}
._a{margin-left:-394.373710px;}
._33{margin-left:-17.694720px;}
._18{margin-left:-14.256000px;}
._3a{margin-left:-11.952000px;}
._6{margin-left:-10.199808px;}
._3b{margin-left:-9.150264px;}
._5{margin-left:-7.785720px;}
._2{margin-left:-5.739336px;}
._40{margin-left:-4.601736px;}
._7{margin-left:-3.495960px;}
._9{margin-left:-2.325672px;}
._0{margin-left:-1.172664px;}
._1{width:1.166400px;}
._8{width:2.541312px;}
._3{width:3.542400px;}
._11{width:5.148288px;}
._1d{width:6.164857px;}
._4{width:7.473600px;}
._1f{width:8.640000px;}
._f{width:12.247272px;}
._e{width:13.391136px;}
._32{width:15.370560px;}
._21{width:16.652736px;}
._31{width:17.775360px;}
._10{width:18.777600px;}
._3f{width:20.001600px;}
._d{width:21.045679px;}
._2d{width:22.478400px;}
._12{width:27.687960px;}
._39{width:34.856640px;}
._36{width:36.881928px;}
._35{width:38.116080px;}
._37{width:39.438720px;}
._38{width:40.485720px;}
._17{width:44.225928px;}
._16{width:46.340928px;}
._2a{width:55.660800px;}
._34{width:75.510720px;}
._2c{width:76.713427px;}
._2e{width:94.638600px;}
._b{width:100.337332px;}
._14{width:101.390640px;}
._c{width:108.016499px;}
._3c{width:110.380320px;}
._3d{width:119.999520px;}
._20{width:137.376000px;}
._19{width:143.055360px;}
._2f{width:174.541920px;}
._2b{width:175.545600px;}
._22{width:195.034027px;}
._24{width:199.822759px;}
._3e{width:235.490688px;}
._26{width:237.626682px;}
._29{width:243.648000px;}
._25{width:259.131067px;}
._13{width:260.883024px;}
._15{width:291.480624px;}
._23{width:308.063784px;}
._28{width:330.422688px;}
._27{width:361.800000px;}
._1a{width:619.854480px;}
._1b{width:851.859600px;}
._1c{width:853.734960px;}
._30{width:922.494896px;}
.fc1a{color:rgb(0,176,240);}
.fc17{color:rgb(153,0,153);}
.fc15{color:rgb(192,0,0);}
.fc14{color:rgb(51,153,255);}
.fc12{color:rgb(69,151,160);}
.fc18{color:rgb(204,102,0);}
.fc11{color:rgb(0,0,153);}
.fc10{color:rgb(255,0,0);}
.fce{color:rgb(22,78,18);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(255,255,255);}
.fca{color:rgb(102,255,51);}
.fcc{color:rgb(13,13,13);}
.fc4{color:rgb(0,102,0);}
.fc19{color:rgb(64,64,64);}
.fc13{color:rgb(102,153,255);}
.fcb{color:rgb(51,153,51);}
.fc1{color:rgb(0,0,255);}
.fc2{color:transparent;}
.fc16{color:rgb(0,0,204);}
.fcd{color:rgb(255,102,255);}
.fc7{color:rgb(255,51,0);}
.fc5{color:rgb(51,51,153);}
.fcf{color:rgb(0,112,192);}
.fc6{color:rgb(255,51,153);}
.fc8{color:rgb(51,204,51);}
.fc9{color:rgb(0,153,0);}
.fs44{font-size:33.340800px;}
.fs4a{font-size:33.434400px;}
.fs41{font-size:33.532200px;}
.fs47{font-size:33.630000px;}
.fsa{font-size:34.444800px;}
.fs3f{font-size:34.594800px;}
.fs2c{font-size:35.830800px;}
.fs43{font-size:36.540000px;}
.fs49{font-size:36.648600px;}
.fs40{font-size:36.750600px;}
.fs46{font-size:36.858600px;}
.fs31{font-size:37.417200px;}
.fs35{font-size:38.335800px;}
.fs28{font-size:40.570800px;}
.fs45{font-size:42.571200px;}
.fs4b{font-size:42.697200px;}
.fs1b{font-size:42.758400px;}
.fs42{font-size:42.816000px;}
.fs48{font-size:42.942000px;}
.fs4d{font-size:44.136600px;}
.fs2f{font-size:44.433000px;}
.fs32{font-size:44.537400px;}
.fs27{font-size:44.898600px;}
.fs26{font-size:44.905200px;}
.fs33{font-size:45.523800px;}
.fs36{font-size:45.627600px;}
.fs3d{font-size:46.126800px;}
.fs38{font-size:46.703400px;}
.fs29{font-size:48.240000px;}
.fs3e{font-size:54.775200px;}
.fs2b{font-size:55.025400px;}
.fs37{font-size:55.072200px;}
.fs30{font-size:56.125800px;}
.fsf{font-size:56.160000px;}
.fs23{font-size:56.798400px;}
.fs34{font-size:57.503400px;}
.fs3a{font-size:58.514400px;}
.fs50{font-size:63.360000px;}
.fs1a{font-size:63.818400px;}
.fs17{font-size:64.080000px;}
.fs39{font-size:65.398200px;}
.fs4c{font-size:66.204600px;}
.fs4e{font-size:66.226800px;}
.fs2e{font-size:66.240000px;}
.fs3b{font-size:67.920600px;}
.fs1c{font-size:68.923800px;}
.fs3c{font-size:69.190200px;}
.fs13{font-size:71.557200px;}
.fsd{font-size:72.000000px;}
.fsc{font-size:72.306600px;}
.fs6{font-size:73.673400px;}
.fs1d{font-size:74.667600px;}
.fs24{font-size:75.702000px;}
.fs10{font-size:77.604000px;}
.fs18{font-size:79.920000px;}
.fs25{font-size:81.154200px;}
.fs2a{font-size:81.898200px;}
.fs7{font-size:82.787400px;}
.fs3{font-size:84.240000px;}
.fs22{font-size:84.878400px;}
.fs8{font-size:89.938800px;}
.fs12{font-size:94.737600px;}
.fs11{font-size:94.803000px;}
.fs19{font-size:95.727600px;}
.fse{font-size:95.760000px;}
.fs14{font-size:95.975400px;}
.fs15{font-size:96.101400px;}
.fs21{font-size:99.556800px;}
.fs2d{font-size:100.653000px;}
.fs4f{font-size:102.422400px;}
.fs52{font-size:102.429000px;}
.fs9{font-size:106.204200px;}
.fs1f{font-size:106.576800px;}
.fs16{font-size:108.000000px;}
.fsb{font-size:108.459600px;}
.fs5{font-size:120.240000px;}
.fs1e{font-size:127.636800px;}
.fs51{font-size:127.855800px;}
.fs1{font-size:144.000000px;}
.fs20{font-size:148.696800px;}
.fs53{font-size:151.789328px;}
.fs2{font-size:167.760000px;}
.fs0{font-size:192.240000px;}
.fs4{font-size:216.000000px;}
.y143{bottom:-33.413100px;}
.y52{bottom:-21.267450px;}
.y0{bottom:0.000000px;}
.y56{bottom:4.602150px;}
.y15b{bottom:6.567000px;}
.y17d{bottom:6.590400px;}
.y19a{bottom:7.127400px;}
.y62{bottom:8.385000px;}
.y1f0{bottom:8.437500px;}
.y15c{bottom:9.739950px;}
.y14a{bottom:9.745950px;}
.y11f{bottom:9.884100px;}
.y16c{bottom:9.885900px;}
.y17e{bottom:9.886950px;}
.y198{bottom:10.887450px;}
.y159{bottom:10.897350px;}
.y17b{bottom:11.067750px;}
.y237{bottom:11.267100px;}
.y25f{bottom:11.268000px;}
.y46{bottom:12.243300px;}
.y25c{bottom:14.064900px;}
.y1fb{bottom:14.346150px;}
.y148{bottom:15.450000px;}
.y1b3{bottom:15.653250px;}
.y1c3{bottom:15.831000px;}
.y144{bottom:16.252500px;}
.yb1{bottom:16.658280px;}
.y71{bottom:19.810200px;}
.yba{bottom:20.478900px;}
.y2a{bottom:22.447200px;}
.y14f{bottom:23.061150px;}
.y171{bottom:23.530200px;}
.y1d0{bottom:23.767200px;}
.y1e6{bottom:23.837850px;}
.y1c4{bottom:23.904000px;}
.y1db{bottom:23.974650px;}
.y202{bottom:24.502650px;}
.y19b{bottom:24.715350px;}
.y11{bottom:26.250000px;}
.y192{bottom:28.790700px;}
.y6b{bottom:29.553120px;}
.y16a{bottom:31.175850px;}
.y14d{bottom:31.185450px;}
.y16f{bottom:31.833000px;}
.y18b{bottom:31.834050px;}
.y147{bottom:32.461740px;}
.y54{bottom:32.649000px;}
.y1ae{bottom:33.145110px;}
.y1c5{bottom:33.183526px;}
.y268{bottom:34.422870px;}
.yc9{bottom:35.250000px;}
.y47{bottom:35.427495px;}
.yb0{bottom:35.803800px;}
.y1b1{bottom:41.006700px;}
.y218{bottom:41.550540px;}
.y150{bottom:43.420650px;}
.y1d1{bottom:43.809390px;}
.y1e7{bottom:43.939607px;}
.y10d{bottom:44.119650px;}
.y172{bottom:44.364600px;}
.y1dc{bottom:45.002481px;}
.y1a{bottom:49.034550px;}
.y169{bottom:49.899600px;}
.y142{bottom:50.812500px;}
.y18a{bottom:50.994900px;}
.y146{bottom:52.267500px;}
.y44{bottom:53.385000px;}
.yaf{bottom:54.949320px;}
.yca{bottom:59.464050px;}
.y45{bottom:59.956500px;}
.y30{bottom:63.135000px;}
.y70{bottom:63.375000px;}
.y1c6{bottom:63.603836px;}
.y151{bottom:63.779850px;}
.y173{bottom:65.199000px;}
.y281{bottom:65.437500px;}
.y6a{bottom:65.565000px;}
.y29{bottom:66.156816px;}
.y191{bottom:66.592500px;}
.yb7{bottom:66.983280px;}
.y168{bottom:68.623350px;}
.y12{bottom:68.646600px;}
.y1ad{bottom:69.156990px;}
.y193{bottom:69.166350px;}
.y189{bottom:70.155450px;}
.y267{bottom:70.434750px;}
.y264{bottom:71.430000px;}
.y1a1{bottom:72.711600px;}
.y19f{bottom:72.885750px;}
.y19d{bottom:73.059750px;}
.y1a3{bottom:73.395450px;}
.yae{bottom:74.094840px;}
.y1a5{bottom:74.257350px;}
.y21{bottom:75.587850px;}
.y1d2{bottom:76.266045px;}
.y1e8{bottom:76.492726px;}
.y13b{bottom:77.377500px;}
.y217{bottom:77.562420px;}
.y1b5{bottom:79.595400px;}
.y1dd{bottom:80.248518px;}
.y263{bottom:80.250000px;}
.y1a4{bottom:80.359500px;}
.y11e{bottom:82.071000px;}
.y271{bottom:82.416240px;}
.y1b4{bottom:82.478250px;}
.y1bc{bottom:83.257350px;}
.y48{bottom:83.309163px;}
.ycf{bottom:83.501280px;}
.y152{bottom:84.139050px;}
.y174{bottom:86.033550px;}
.yb6{bottom:86.128830px;}
.y167{bottom:87.347100px;}
.y20{bottom:88.743300px;}
.y188{bottom:89.316150px;}
.y201{bottom:89.749440px;}
.y13{bottom:90.656528px;}
.yad{bottom:93.240360px;}
.y1c7{bottom:94.106834px;}
.y14c{bottom:95.043300px;}
.y15e{bottom:95.565150px;}
.y105{bottom:96.108600px;}
.y1b2{bottom:97.312500px;}
.y22d{bottom:97.528560px;}
.y16e{bottom:97.590750px;}
.y1b0{bottom:98.031000px;}
.y1a2{bottom:98.431500px;}
.y102{bottom:100.810617px;}
.y108{bottom:101.328829px;}
.y1fe{bottom:101.366400px;}
.y69{bottom:101.541240px;}
.y12e{bottom:102.118369px;}
.y109{bottom:102.631080px;}
.y153{bottom:104.498400px;}
.y1d6{bottom:105.006750px;}
.y1ac{bottom:105.168870px;}
.yb5{bottom:105.274350px;}
.y1ec{bottom:105.318300px;}
.y1cb{bottom:105.611850px;}
.y25a{bottom:105.765750px;}
.y1e1{bottom:105.922500px;}
.y166{bottom:106.070850px;}
.y175{bottom:106.867950px;}
.y280{bottom:107.329980px;}
.y187{bottom:108.476850px;}
.y1d3{bottom:108.640485px;}
.y10c{bottom:108.861677px;}
.y1e9{bottom:108.963386px;}
.y194{bottom:109.541700px;}
.y28{bottom:109.893150px;}
.y26{bottom:109.902807px;}
.y100{bottom:110.992871px;}
.yac{bottom:112.385880px;}
.y216{bottom:113.574300px;}
.y10b{bottom:115.249441px;}
.y1de{bottom:115.494554px;}
.y1a0{bottom:116.500500px;}
.y27{bottom:118.027650px;}
.y270{bottom:118.428120px;}
.y12d{bottom:118.434019px;}
.y206{bottom:121.790400px;}
.y262{bottom:122.178120px;}
.y117{bottom:123.106950px;}
.yb4{bottom:124.419960px;}
.y1c8{bottom:124.527143px;}
.y1b6{bottom:124.625850px;}
.y165{bottom:124.794600px;}
.y154{bottom:124.857900px;}
.y186{bottom:127.637550px;}
.y176{bottom:127.702500px;}
.y106{bottom:129.226185px;}
.y252{bottom:129.465000px;}
.y49{bottom:131.190831px;}
.yab{bottom:131.531400px;}
.yc2{bottom:132.120450px;}
.y238{bottom:132.591000px;}
.y19e{bottom:133.711500px;}
.y12c{bottom:134.748674px;}
.y123{bottom:134.749050px;}
.y10a{bottom:135.187350px;}
.y101{bottom:136.959303px;}
.y22c{bottom:137.117580px;}
.y68{bottom:137.553120px;}
.y107{bottom:139.442118px;}
.y1d4{bottom:141.097140px;}
.y1ab{bottom:141.180750px;}
.ya{bottom:141.465000px;}
.y1ea{bottom:141.516505px;}
.y27f{bottom:143.341860px;}
.y2f{bottom:143.490000px;}
.y164{bottom:143.518350px;}
.yb3{bottom:143.565480px;}
.y155{bottom:145.217100px;}
.y25b{bottom:145.915500px;}
.y185{bottom:146.798250px;}
.y177{bottom:148.536900px;}
.y215{bottom:149.586180px;}
.y1ff{bottom:149.748600px;}
.y195{bottom:149.917350px;}
.y1df{bottom:150.740590px;}
.y24e{bottom:150.825000px;}
.y19c{bottom:150.922500px;}
.y103{bottom:151.555650px;}
.y25{bottom:153.747600px;}
.y26f{bottom:154.368720px;}
.y1c9{bottom:155.030141px;}
.y104{bottom:155.630797px;}
.yce{bottom:156.540060px;}
.y116{bottom:156.588450px;}
.y205{bottom:157.802280px;}
.y1b7{bottom:158.038722px;}
.y261{bottom:158.190000px;}
.y200{bottom:158.726100px;}
.y236{bottom:162.072000px;}
.y163{bottom:162.242100px;}
.yb2{bottom:162.711000px;}
.y141{bottom:164.903400px;}
.y2e{bottom:165.090000px;}
.y156{bottom:165.576300px;}
.y184{bottom:165.959100px;}
.y1d9{bottom:166.557300px;}
.y251{bottom:166.725000px;}
.yc3{bottom:167.130809px;}
.y1ce{bottom:167.516550px;}
.y1e4{bottom:168.009600px;}
.y1ef{bottom:168.385500px;}
.y53{bottom:168.459300px;}
.ya1{bottom:169.370400px;}
.y178{bottom:169.371300px;}
.y1fd{bottom:169.515542px;}
.yc1{bottom:169.787250px;}
.yf1{bottom:172.097622px;}
.yee{bottom:172.232338px;}
.y14{bottom:173.189155px;}
.y1d5{bottom:173.553795px;}
.y67{bottom:173.565000px;}
.y1eb{bottom:174.069624px;}
.y1da{bottom:174.738000px;}
.yff{bottom:175.633907px;}
.y136{bottom:176.662923px;}
.y22b{bottom:176.717580px;}
.yd8{bottom:176.945838px;}
.y1aa{bottom:177.180750px;}
.y162{bottom:178.042200px;}
.y160{bottom:178.056600px;}
.y1d8{bottom:178.264350px;}
.y4a{bottom:179.072499px;}
.y1cd{bottom:179.290950px;}
.y27e{bottom:179.353740px;}
.y24{bottom:179.597100px;}
.y1e3{bottom:179.818650px;}
.y1ee{bottom:180.127200px;}
.y181{bottom:182.716500px;}
.y183{bottom:182.722800px;}
.yf9{bottom:182.942228px;}
.yfa{bottom:184.974188px;}
.y1ca{bottom:185.450450px;}
.y214{bottom:185.598060px;}
.y157{bottom:185.935800px;}
.y1e0{bottom:185.986626px;}
.y23{bottom:186.285450px;}
.y2d{bottom:186.690000px;}
.yf3{bottom:187.174543px;}
.ya0{bottom:188.515920px;}
.y1a9{bottom:189.868020px;}
.y1d7{bottom:189.971400px;}
.y115{bottom:190.069800px;}
.y140{bottom:190.112220px;}
.y179{bottom:190.205700px;}
.y196{bottom:190.292850px;}
.y26e{bottom:190.380600px;}
.y9{bottom:190.425000px;}
.y51{bottom:190.883850px;}
.y1cc{bottom:191.065200px;}
.y1e2{bottom:191.627700px;}
.y1ed{bottom:191.869050px;}
.y19{bottom:192.792900px;}
.y135{bottom:193.294969px;}
.y24d{bottom:194.025000px;}
.y1b8{bottom:197.298847px;}
.yb9{bottom:198.646200px;}
.y99{bottom:198.978600px;}
.yef{bottom:202.509669px;}
.y158{bottom:206.295150px;}
.y239{bottom:207.487500px;}
.y89{bottom:207.517650px;}
.y9f{bottom:207.661440px;}
.y2c{bottom:208.290000px;}
.y199{bottom:209.436000px;}
.y66{bottom:209.565000px;}
.y134{bottom:209.610619px;}
.y250{bottom:209.925000px;}
.y17a{bottom:211.040250px;}
.yf8{bottom:212.197966px;}
.yd0{bottom:213.105750px;}
.yf0{bottom:213.533895px;}
.y13f{bottom:215.321040px;}
.y27d{bottom:215.365620px;}
.y22a{bottom:216.339540px;}
.y138{bottom:221.126850px;}
.y213{bottom:221.609940px;}
.y114{bottom:223.552650px;}
.y133{bottom:225.927563px;}
.y26d{bottom:226.392480px;}
.y88{bottom:226.663230px;}
.y9e{bottom:226.806960px;}
.y4b{bottom:226.954167px;}
.ycd{bottom:229.578840px;}
.y2b{bottom:229.890000px;}
.y197{bottom:230.668350px;}
.yeb{bottom:230.938008px;}
.yec{bottom:232.696800px;}
.y8{bottom:233.625000px;}
.y90{bottom:234.400050px;}
.y1b9{bottom:235.805812px;}
.y24c{bottom:237.225000px;}
.y11d{bottom:238.312500px;}
.y1c2{bottom:238.582500px;}
.yfe{bottom:239.152312px;}
.yed{bottom:240.129000px;}
.y9a{bottom:240.496050px;}
.y13e{bottom:240.529860px;}
.yfc{bottom:241.543514px;}
.ybc{bottom:242.126550px;}
.y8d{bottom:243.321300px;}
.ye4{bottom:245.302778px;}
.yd7{bottom:245.325231px;}
.y65{bottom:245.553120px;}
.y87{bottom:245.808810px;}
.y9d{bottom:245.952480px;}
.y8a{bottom:246.146550px;}
.y22{bottom:249.000000px;}
.y1f{bottom:250.617000px;}
.y27c{bottom:251.377500px;}
.y24f{bottom:253.125000px;}
.yfb{bottom:253.903670px;}
.y15{bottom:255.721781px;}
.y229{bottom:255.928560px;}
.yf7{bottom:256.463267px;}
.y113{bottom:257.032650px;}
.y212{bottom:257.621820px;}
.y55{bottom:261.724350px;}
.y26c{bottom:262.404360px;}
.yc4{bottom:262.695000px;}
.y41{bottom:264.264060px;}
.ye6{bottom:264.365036px;}
.y86{bottom:264.954330px;}
.y9c{bottom:265.098000px;}
.y132{bottom:265.440123px;}
.y13d{bottom:265.738680px;}
.yd{bottom:268.635000px;}
.y1c1{bottom:270.982500px;}
.yf6{bottom:271.562640px;}
.y4c{bottom:274.583622px;}
.y1f6{bottom:275.960700px;}
.y7{bottom:276.825000px;}
.yd3{bottom:277.286507px;}
.y24b{bottom:280.425000px;}
.y11c{bottom:281.512500px;}
.y64{bottom:281.565000px;}
.y131{bottom:282.072169px;}
.y85{bottom:284.099850px;}
.ybb{bottom:284.732100px;}
.y9b{bottom:285.041250px;}
.ye5{bottom:286.974804px;}
.y112{bottom:290.514150px;}
.y13c{bottom:290.947500px;}
.y211{bottom:293.633700px;}
.y94{bottom:293.844300px;}
.y228{bottom:295.517580px;}
.y8e{bottom:295.996314px;}
.ye9{bottom:296.600637px;}
.y130{bottom:298.387819px;}
.y26b{bottom:298.416240px;}
.yea{bottom:299.216365px;}
.y96{bottom:299.547531px;}
.y91{bottom:299.548050px;}
.ycc{bottom:302.617620px;}
.y8b{bottom:303.646230px;}
.y40{bottom:308.076660px;}
.ye0{bottom:309.214104px;}
.ye3{bottom:309.640704px;}
.y137{bottom:309.902606px;}
.yd6{bottom:311.975774px;}
.yf4{bottom:313.863338px;}
.y1c0{bottom:314.182500px;}
.y12f{bottom:314.708233px;}
.y6{bottom:320.025000px;}
.yf2{bottom:320.980813px;}
.y4d{bottom:322.465290px;}
.y24a{bottom:323.625000px;}
.ya7{bottom:323.986200px;}
.y111{bottom:323.995500px;}
.y1f7{bottom:324.343050px;}
.y220{bottom:324.502500px;}
.y11b{bottom:324.712500px;}
.yfd{bottom:325.897932px;}
.y7e{bottom:326.156850px;}
.yd4{bottom:328.321267px;}
.y27b{bottom:329.154120px;}
.y210{bottom:329.645580px;}
.y1f8{bottom:333.320400px;}
.y1cf{bottom:334.234500px;}
.y26a{bottom:334.428120px;}
.yf5{bottom:334.935104px;}
.y227{bottom:335.106600px;}
.y16{bottom:338.014969px;}
.y241{bottom:338.944830px;}
.y1fc{bottom:338.973367px;}
.ye1{bottom:342.320463px;}
.ya6{bottom:343.131780px;}
.y12b{bottom:344.619723px;}
.y7d{bottom:345.302370px;}
.y1bf{bottom:346.588500px;}
.ye7{bottom:347.231250px;}
.yc6{bottom:347.340000px;}
.yb8{bottom:347.979300px;}
.yc8{bottom:348.277500px;}
.ye8{bottom:352.889305px;}
.ybf{bottom:353.569540px;}
.y1a7{bottom:356.190000px;}
.y110{bottom:357.478200px;}
.y23a{bottom:358.325700px;}
.y21f{bottom:360.490620px;}
.y12a{bottom:361.251769px;}
.y95{bottom:361.493010px;}
.ya5{bottom:362.277330px;}
.y5{bottom:363.225000px;}
.y7c{bottom:364.447890px;}
.y20f{bottom:365.657460px;}
.y249{bottom:366.825000px;}
.y240{bottom:367.744650px;}
.y11a{bottom:367.912500px;}
.y98{bottom:369.100400px;}
.y4e{bottom:370.346958px;}
.y269{bottom:370.445220px;}
.y226{bottom:370.926600px;}
.yd9{bottom:371.239412px;}
.y3f{bottom:372.090000px;}
.ydd{bottom:372.182421px;}
.yd2{bottom:374.742017px;}
.y25d{bottom:374.914650px;}
.yd1{bottom:375.022675px;}
.ycb{bottom:375.656400px;}
.ybe{bottom:375.913819px;}
.y129{bottom:377.567419px;}
.y61{bottom:380.831160px;}
.ya4{bottom:381.422760px;}
.yde{bottom:383.296458px;}
.y7b{bottom:383.593410px;}
.yd5{bottom:384.980403px;}
.y27a{bottom:386.730000px;}
.y8f{bottom:389.232985px;}
.y1be{bottom:390.382500px;}
.y97{bottom:391.444680px;}
.y122{bottom:391.483200px;}
.ydf{bottom:391.682504px;}
.y254{bottom:392.815500px;}
.yda{bottom:393.568522px;}
.y3e{bottom:393.690000px;}
.y128{bottom:393.888845px;}
.y223{bottom:395.714640px;}
.y260{bottom:395.940000px;}
.y21e{bottom:396.502500px;}
.y23f{bottom:396.544470px;}
.y93{bottom:397.866612px;}
.ybd{bottom:399.448200px;}
.ya3{bottom:400.568280px;}
.y20e{bottom:401.669340px;}
.y10f{bottom:402.298200px;}
.y7a{bottom:402.738930px;}
.y4{bottom:406.425000px;}
.y248{bottom:410.025000px;}
.ye2{bottom:410.733535px;}
.ydc{bottom:410.744761px;}
.y119{bottom:411.112500px;}
.y1a8{bottom:412.251900px;}
.y5d{bottom:412.282350px;}
.y3d{bottom:415.290000px;}
.y1f1{bottom:416.646150px;}
.y4f{bottom:418.228626px;}
.ya2{bottom:419.713800px;}
.y92{bottom:420.210892px;}
.y17{bottom:420.547595px;}
.y22e{bottom:421.474050px;}
.y79{bottom:421.884450px;}
.y279{bottom:422.145000px;}
.y127{bottom:423.799473px;}
.y8c{bottom:424.142264px;}
.y60{bottom:424.653270px;}
.y10e{bottom:424.978200px;}
.y23e{bottom:425.344290px;}
.yaa{bottom:427.115046px;}
.y225{bottom:428.249400px;}
.y222{bottom:431.726520px;}
.y21d{bottom:432.490620px;}
.y253{bottom:436.015350px;}
.y3c{bottom:436.890000px;}
.y20d{bottom:437.681220px;}
.y126{bottom:440.431519px;}
.y78{bottom:441.827700px;}
.y5b{bottom:443.220150px;}
.y1e{bottom:445.626150px;}
.y170{bottom:447.267000px;}
.y16b{bottom:447.867000px;}
.y3{bottom:449.625000px;}
.y182{bottom:449.664000px;}
.y14e{bottom:449.670000px;}
.y149{bottom:450.255000px;}
.y161{bottom:452.593500px;}
.y247{bottom:453.225000px;}
.y23d{bottom:454.144110px;}
.y118{bottom:454.312500px;}
.y278{bottom:454.545000px;}
.y234{bottom:455.833530px;}
.y125{bottom:456.747169px;}
.y84{bottom:458.336130px;}
.y3b{bottom:458.490000px;}
.y1f2{bottom:465.028500px;}
.y50{bottom:466.110294px;}
.y221{bottom:467.738400px;}
.y121{bottom:467.909400px;}
.y5f{bottom:468.487410px;}
.y21c{bottom:468.502500px;}
.y180{bottom:468.831000px;}
.y1d{bottom:470.263500px;}
.y233{bottom:470.498610px;}
.y120{bottom:471.108450px;}
.y15f{bottom:471.303000px;}
.y124{bottom:473.058966px;}
.y20c{bottom:473.693100px;}
.y190{bottom:473.970000px;}
.y1f3{bottom:474.005850px;}
.ydb{bottom:474.644861px;}
.y83{bottom:477.481680px;}
.y3a{bottom:480.090000px;}
.y258{bottom:481.650780px;}
.yc7{bottom:482.340000px;}
.y23c{bottom:482.943930px;}
.y77{bottom:484.695750px;}
.y1bb{bottom:486.727350px;}
.y277{bottom:486.945000px;}
.y5c{bottom:489.345000px;}
.ya9{bottom:490.261800px;}
.y1e5{bottom:491.044500px;}
.y1c{bottom:494.901000px;}
.y232{bottom:495.707430px;}
.y1f5{bottom:496.087510px;}
.y25e{bottom:496.312500px;}
.y246{bottom:496.425000px;}
.y82{bottom:496.627230px;}
.y39{bottom:501.690000px;}
.y33{bottom:503.002350px;}
.y18{bottom:503.080221px;}
.y76{bottom:503.841270px;}
.y21b{bottom:504.490620px;}
.yc5{bottom:504.652350px;}
.y18f{bottom:506.370000px;}
.y257{bottom:506.859600px;}
.y1ba{bottom:508.327350px;}
.y20b{bottom:509.704980px;}
.y204{bottom:511.428120px;}
.y23b{bottom:511.743750px;}
.y5e{bottom:512.321550px;}
.y81{bottom:515.772660px;}
.y276{bottom:519.345000px;}
.y1b{bottom:519.538350px;}
.y231{bottom:520.916250px;}
.y75{bottom:522.986790px;}
.y38{bottom:523.290000px;}
.y32{bottom:524.602350px;}
.y2{bottom:533.529120px;}
.y80{bottom:534.918180px;}
.y256{bottom:537.067500px;}
.y18e{bottom:538.770000px;}
.y245{bottom:539.625000px;}
.y21a{bottom:540.502500px;}
.y74{bottom:542.132310px;}
.y37{bottom:544.890000px;}
.ya8{bottom:545.304300px;}
.y20a{bottom:545.716860px;}
.y31{bottom:546.202350px;}
.y203{bottom:547.440000px;}
.y235{bottom:549.581100px;}
.y15d{bottom:549.645000px;}
.y17f{bottom:549.696000px;}
.y14b{bottom:550.813500px;}
.y275{bottom:551.745000px;}
.y7f{bottom:554.063700px;}
.y16d{bottom:555.087000px;}
.y5a{bottom:556.995000px;}
.y15a{bottom:558.414000px;}
.y17c{bottom:558.679500px;}
.yc0{bottom:559.316100px;}
.y73{bottom:561.277830px;}
.y18d{bottom:571.170000px;}
.y259{bottom:575.081100px;}
.y72{bottom:580.423350px;}
.y209{bottom:581.728740px;}
.y10{bottom:582.940470px;}
.y274{bottom:584.145000px;}
.y59{bottom:589.395000px;}
.y1{bottom:591.105000px;}
.y18c{bottom:603.570000px;}
.y36{bottom:610.312680px;}
.y22f{bottom:611.010000px;}
.y6e{bottom:614.202240px;}
.y273{bottom:616.545000px;}
.y230{bottom:617.224200px;}
.y208{bottom:617.740620px;}
.y13a{bottom:618.895470px;}
.yf{bottom:618.952350px;}
.y1f9{bottom:621.138300px;}
.y58{bottom:623.775000px;}
.y1fa{bottom:630.115650px;}
.y266{bottom:637.244070px;}
.y35{bottom:639.112500px;}
.y255{bottom:642.724200px;}
.y145{bottom:647.752980px;}
.y272{bottom:648.945000px;}
.y244{bottom:652.162500px;}
.y207{bottom:653.752500px;}
.y139{bottom:654.907350px;}
.y1f4{bottom:656.439150px;}
.ye{bottom:660.352500px;}
.y6d{bottom:668.190000px;}
.y57{bottom:669.855000px;}
.y34{bottom:672.052500px;}
.y265{bottom:673.255950px;}
.y1a6{bottom:681.690000px;}
.y243{bottom:695.362500px;}
.y43{bottom:717.115620px;}
.yb{bottom:727.875000px;}
.y6f{bottom:730.125000px;}
.y1bd{bottom:732.315000px;}
.y224{bottom:732.562500px;}
.y219{bottom:733.687500px;}
.y1af{bottom:733.815000px;}
.yc{bottom:734.437500px;}
.y6c{bottom:736.065000px;}
.y242{bottom:738.562500px;}
.y63{bottom:738.750000px;}
.y42{bottom:753.127500px;}
.h53{height:21.633000px;}
.h65{height:22.162500px;}
.h87{height:25.118392px;}
.h3d{height:29.457412px;}
.h58{height:31.680383px;}
.h54{height:32.261656px;}
.h5b{height:32.337458px;}
.h6a{height:32.458143px;}
.h3c{height:32.599716px;}
.h35{height:32.604508px;}
.h66{height:33.053658px;}
.h6d{height:33.129024px;}
.h7c{height:33.910135px;}
.h1e{height:33.987000px;}
.h8f{height:34.773412px;}
.h97{height:34.871034px;}
.h8b{height:34.973037px;}
.h93{height:35.075039px;}
.hd{height:35.924850px;}
.h9b{height:37.369563px;}
.h5a{height:38.001000px;}
.h8e{height:38.110078px;}
.h96{height:38.223345px;}
.h8a{height:38.329727px;}
.h92{height:38.442368px;}
.h6c{height:38.935500px;}
.h57{height:39.756000px;}
.h86{height:39.770861px;}
.h4a{height:39.952524px;}
.h4d{height:39.954027px;}
.h4e{height:39.958300px;}
.h4c{height:39.965462px;}
.h36{height:40.148582px;}
.h69{height:40.731000px;}
.h78{height:40.732500px;}
.h56{height:40.751496px;}
.h68{height:41.751736px;}
.h7d{height:42.165000px;}
.h90{height:44.400431px;}
.h98{height:44.531845px;}
.h8c{height:44.655750px;}
.h94{height:44.787164px;}
.h7a{height:46.628513px;}
.h3e{height:46.794551px;}
.h7b{height:47.326500px;}
.h7e{height:47.483947px;}
.h5c{height:47.520575px;}
.h43{height:47.692655px;}
.h6f{height:48.686961px;}
.h3a{height:49.399053px;}
.h80{height:49.542954px;}
.h12{height:50.205071px;}
.h45{height:50.970735px;}
.h38{height:52.677132px;}
.h4b{height:52.749324px;}
.h9a{height:56.054090px;}
.h9c{height:56.072886px;}
.h39{height:56.089928px;}
.h64{height:58.464000px;}
.h85{height:58.581937px;}
.h34{height:58.923972px;}
.h41{height:59.368007px;}
.h49{height:59.464172px;}
.h77{height:59.899500px;}
.h42{height:60.221206px;}
.ha1{height:66.082500px;}
.h27{height:66.560597px;}
.h28{height:66.560957px;}
.h29{height:66.561077px;}
.h2c{height:66.561197px;}
.h3f{height:68.259237px;}
.h52{height:69.086250px;}
.h37{height:69.606393px;}
.h3b{height:70.684118px;}
.h83{height:70.839063px;}
.h2a{height:71.885370px;}
.h40{height:72.390515px;}
.h1d{height:74.631923px;}
.h14{height:75.093750px;}
.h10{height:75.413524px;}
.h8{height:76.839054px;}
.h63{height:77.173500px;}
.h2b{height:77.875973px;}
.h33{height:78.954820px;}
.h76{height:79.068000px;}
.h19{height:80.938547px;}
.h46{height:84.641295px;}
.h9{height:86.344671px;}
.h7f{height:86.910000px;}
.h81{height:86.911500px;}
.h4{height:87.859687px;}
.h30{height:88.525519px;}
.h16{height:88.586647px;}
.h17{height:88.625407px;}
.h4f{height:93.056836px;}
.hb{height:93.803358px;}
.h62{height:95.881500px;}
.h75{height:98.235000px;}
.h1b{height:98.808356px;}
.h1a{height:98.876566px;}
.h26{height:99.840895px;}
.h15{height:99.874688px;}
.h24{height:99.899048px;}
.h23{height:99.922807px;}
.h1f{height:100.099343px;}
.h20{height:100.230757px;}
.hc{height:100.702500px;}
.h31{height:100.989627px;}
.h44{height:101.983042px;}
.ha0{height:103.222575px;}
.ha5{height:103.229227px;}
.h51{height:104.977934px;}
.ha6{height:105.392785px;}
.h55{height:109.912500px;}
.ha{height:110.767662px;}
.h2e{height:111.156272px;}
.h6e{height:112.609500px;}
.h67{height:112.611000px;}
.h21{height:112.640625px;}
.h9f{height:112.867500px;}
.ha4{height:112.875000px;}
.hf{height:113.119973px;}
.h61{height:114.591000px;}
.h74{height:117.402000px;}
.h6{height:125.406562px;}
.ha8{height:125.691683px;}
.ha3{height:128.854673px;}
.h22{height:132.188625px;}
.h2d{height:133.121194px;}
.h60{height:133.299000px;}
.h73{height:136.572000px;}
.ha2{height:140.895000px;}
.h13{height:146.413500px;}
.h2{height:150.187500px;}
.h5f{height:152.592000px;}
.h2f{height:155.086116px;}
.h72{height:155.739000px;}
.h47{height:165.813750px;}
.h5e{height:171.300000px;}
.h71{height:174.907500px;}
.h3{height:174.968437px;}
.ha7{height:185.467500px;}
.h5d{height:187.086000px;}
.h70{height:191.679000px;}
.h9d{height:196.754963px;}
.h1{height:200.500313px;}
.h8d{height:211.080000px;}
.h95{height:211.705500px;}
.h89{height:212.293500px;}
.h91{height:212.919000px;}
.h1c{height:220.111500px;}
.h59{height:220.410000px;}
.he{height:221.250000px;}
.h6b{height:225.222000px;}
.h5{height:225.281250px;}
.h88{height:242.240625px;}
.h11{height:243.271493px;}
.h79{height:286.546500px;}
.h50{height:294.562500px;}
.h9e{height:297.275872px;}
.h82{height:432.436500px;}
.h84{height:433.875000px;}
.h32{height:488.812500px;}
.h48{height:492.672000px;}
.h18{height:540.606000px;}
.h7{height:574.312500px;}
.h25{height:606.750000px;}
.h99{height:694.312500px;}
.h0{height:810.000000px;}
.w1d{width:-145.374000px;}
.wd{width:-93.474000px;}
.w6{width:-34.011000px;}
.w1e{width:-12.093000px;}
.w2{width:-11.790000px;}
.we{width:-6.157500px;}
.w1c{width:-6.090000px;}
.wc{width:0.289500px;}
.w1a{width:22.269000px;}
.w2a{width:22.813500px;}
.w17{width:22.855500px;}
.w27{width:23.415000px;}
.w13{width:25.198500px;}
.w23{width:25.816500px;}
.w16{width:26.371500px;}
.w26{width:27.016500px;}
.w14{width:29.887500px;}
.w15{width:30.474000px;}
.w31{width:30.649500px;}
.w24{width:31.218000px;}
.w25{width:31.819500px;}
.w2f{width:34.297500px;}
.w19{width:36.334500px;}
.w29{width:37.822500px;}
.w18{width:38.677500px;}
.w28{width:40.224000px;}
.w1b{width:42.780000px;}
.w2b{width:44.427000px;}
.w30{width:65.676000px;}
.w11{width:66.805500px;}
.w21{width:68.440500px;}
.w32{width:70.054500px;}
.w20{width:73.758000px;}
.w10{width:75.010500px;}
.w2e{width:86.109000px;}
.w2d{width:102.162000px;}
.w3b{width:102.187500px;}
.w4{width:139.125000px;}
.w22{width:165.099000px;}
.w12{width:168.189000px;}
.w39{width:233.329500px;}
.w3a{width:253.050000px;}
.w7{width:282.420000px;}
.w36{width:301.488000px;}
.w38{width:302.334000px;}
.w35{width:303.217500px;}
.w37{width:304.096500px;}
.wf{width:374.757000px;}
.w1f{width:377.541000px;}
.w3{width:417.373500px;}
.w2c{width:511.548000px;}
.w9{width:544.689000px;}
.wb{width:561.375000px;}
.wa{width:579.297000px;}
.w33{width:630.151500px;}
.w34{width:652.500000px;}
.w1{width:658.875000px;}
.w5{width:808.875000px;}
.w8{width:1036.686000px;}
.w0{width:1170.000000px;}
.xae{left:-264.080550px;}
.xa2{left:-217.120200px;}
.x3f{left:-198.879300px;}
.xaf{left:-45.265350px;}
.xad{left:-44.208750px;}
.xa3{left:-38.211750px;}
.xa1{left:-37.180200px;}
.x0{left:0.000000px;}
.xac{left:5.452200px;}
.xa8{left:6.481650px;}
.xaa{left:8.795100px;}
.x4a{left:10.851684px;}
.x23{left:12.358050px;}
.x6d{left:14.437500px;}
.x94{left:16.426048px;}
.x95{left:17.768940px;}
.x18{left:20.036550px;}
.xc3{left:22.570650px;}
.xa4{left:23.878200px;}
.x10{left:25.312500px;}
.xc2{left:27.535950px;}
.xb0{left:29.689050px;}
.xb7{left:31.087800px;}
.x22{left:32.601700px;}
.xa5{left:34.952700px;}
.xbe{left:37.732290px;}
.x45{left:43.050000px;}
.xca{left:44.573460px;}
.x3d{left:45.636450px;}
.x71{left:46.695642px;}
.xb5{left:49.464150px;}
.x31{left:52.245000px;}
.x1f{left:54.647002px;}
.x30{left:56.385000px;}
.x70{left:58.750917px;}
.xdd{left:59.925000px;}
.x2e{left:61.245000px;}
.xc0{left:63.682350px;}
.x40{left:65.550000px;}
.x17{left:69.576750px;}
.x20{left:74.155200px;}
.x6f{left:75.262377px;}
.x2d{left:77.445000px;}
.x46{left:83.550000px;}
.xc1{left:86.165400px;}
.xb4{left:92.268750px;}
.x13{left:93.796350px;}
.x98{left:103.886250px;}
.x3a{left:104.887350px;}
.x9f{left:106.050000px;}
.x12{left:110.750299px;}
.x9c{left:113.010750px;}
.x2c{left:114.345000px;}
.xf{left:116.205750px;}
.x6a{left:117.326250px;}
.x6{left:119.145000px;}
.x77{left:121.002825px;}
.xbc{left:125.475450px;}
.x11{left:127.483650px;}
.x39{left:129.636365px;}
.x33{left:133.785000px;}
.xc4{left:137.326950px;}
.x2f{left:139.365000px;}
.xc9{left:140.583300px;}
.xf2{left:143.662500px;}
.x32{left:145.305000px;}
.x38{left:148.759500px;}
.x72{left:151.264482px;}
.xd9{left:159.030000px;}
.x1a{left:161.202900px;}
.x9{left:164.325000px;}
.x24{left:165.720000px;}
.xdf{left:167.467500px;}
.x1{left:173.148750px;}
.x21{left:174.754050px;}
.x89{left:178.987500px;}
.x1c{left:183.065550px;}
.xb8{left:184.823820px;}
.x80{left:189.981499px;}
.x84{left:191.059065px;}
.x83{left:193.831554px;}
.x7e{left:198.399986px;}
.x49{left:200.175000px;}
.x35{left:202.237500px;}
.x7f{left:203.787818px;}
.xd{left:205.481250px;}
.x2b{left:211.978680px;}
.xcd{left:213.112500px;}
.xf3{left:216.675000px;}
.xe{left:219.161250px;}
.xc5{left:221.500320px;}
.xe9{left:226.860150px;}
.x96{left:229.184523px;}
.x97{left:231.592200px;}
.x93{left:232.686000px;}
.x92{left:233.992650px;}
.x73{left:236.953460px;}
.x59{left:239.831400px;}
.x88{left:242.329650px;}
.xf6{left:244.931250px;}
.x1b{left:245.943000px;}
.x9a{left:250.987500px;}
.x68{left:253.475550px;}
.x87{left:254.646091px;}
.x57{left:256.141650px;}
.xdc{left:258.661950px;}
.x47{left:262.286250px;}
.x4f{left:263.692050px;}
.x7b{left:265.998795px;}
.x7c{left:267.222282px;}
.x4{left:269.985000px;}
.x78{left:274.365218px;}
.x79{left:276.250960px;}
.x7a{left:278.054069px;}
.x48{left:279.901410px;}
.x85{left:287.557381px;}
.x76{left:289.742989px;}
.x86{left:291.486009px;}
.x2a{left:293.145000px;}
.x82{left:300.364707px;}
.x74{left:301.798263px;}
.x81{left:313.407750px;}
.x14{left:314.415750px;}
.x50{left:317.034900px;}
.x53{left:318.497531px;}
.xd6{left:321.145590px;}
.x1e{left:322.879950px;}
.xbf{left:324.352800px;}
.xa{left:332.175000px;}
.x7d{left:335.857050px;}
.x52{left:337.713639px;}
.xcb{left:340.612500px;}
.x51{left:344.081550px;}
.x37{left:354.375000px;}
.xf0{left:362.853750px;}
.x75{left:368.315539px;}
.x28{left:369.566250px;}
.x99{left:372.772950px;}
.xe7{left:379.084410px;}
.xcc{left:381.112500px;}
.x1d{left:383.950500px;}
.xe6{left:386.644950px;}
.xa0{left:397.875000px;}
.xa6{left:401.094000px;}
.x5a{left:409.017150px;}
.x3{left:418.305000px;}
.x2{left:419.744610px;}
.xb{left:425.175000px;}
.x3b{left:434.175450px;}
.x8{left:436.665000px;}
.xf1{left:438.164100px;}
.xd5{left:442.490400px;}
.xde{left:457.188750px;}
.x6e{left:463.492050px;}
.xf4{left:467.411250px;}
.xe5{left:476.223150px;}
.x5{left:480.945000px;}
.xa9{left:482.551500px;}
.x9d{left:485.925000px;}
.x56{left:499.461738px;}
.x55{left:502.832985px;}
.xf5{left:519.445110px;}
.x9b{left:550.687500px;}
.x90{left:557.726700px;}
.xd7{left:560.049150px;}
.x25{left:561.862500px;}
.xb9{left:572.491650px;}
.x5b{left:578.157790px;}
.xba{left:584.720550px;}
.x8d{left:590.490450px;}
.x54{left:594.777750px;}
.x8a{left:597.686700px;}
.xbb{left:598.707127px;}
.x8b{left:600.026700px;}
.x8f{left:601.650300px;}
.x8c{left:602.924700px;}
.x8e{left:608.490300px;}
.x7{left:610.545000px;}
.x27{left:612.566250px;}
.x91{left:621.300000px;}
.x41{left:627.750000px;}
.xe8{left:631.896300px;}
.x42{left:639.187500px;}
.x43{left:640.312350px;}
.x69{left:646.800000px;}
.xe3{left:651.345450px;}
.x63{left:652.666050px;}
.x66{left:654.089465px;}
.x60{left:657.274950px;}
.x3e{left:659.169000px;}
.x64{left:669.035327px;}
.xc{left:672.300000px;}
.x65{left:673.305573px;}
.xe0{left:676.338750px;}
.x19{left:684.187500px;}
.x29{left:686.906250px;}
.xd3{left:690.079620px;}
.xe1{left:694.158750px;}
.x16{left:695.977500px;}
.xa7{left:705.826500px;}
.xd1{left:709.006410px;}
.xd4{left:722.303940px;}
.xab{left:723.405000px;}
.xd0{left:739.938150px;}
.xbd{left:743.088000px;}
.xcf{left:746.238000px;}
.xd8{left:747.717300px;}
.x62{left:748.984200px;}
.x67{left:751.452150px;}
.xce{left:754.475250px;}
.x26{left:755.550000px;}
.x5f{left:759.448950px;}
.x61{left:764.207400px;}
.x5e{left:765.973800px;}
.xe4{left:776.445300px;}
.x15{left:778.993350px;}
.x44{left:781.237500px;}
.xda{left:796.249350px;}
.x36{left:800.175000px;}
.xed{left:803.876250px;}
.xd2{left:807.246840px;}
.xeb{left:809.636250px;}
.xec{left:812.882730px;}
.xea{left:843.862650px;}
.xb2{left:854.095500px;}
.xc7{left:864.127500px;}
.x4c{left:877.637120px;}
.x4e{left:879.137995px;}
.x5d{left:880.547419px;}
.xee{left:891.716250px;}
.x58{left:896.106150px;}
.x4d{left:901.068750px;}
.xe2{left:903.498750px;}
.x4b{left:905.330700px;}
.x5c{left:908.241000px;}
.xef{left:914.576250px;}
.xc8{left:917.604240px;}
.xb6{left:920.929500px;}
.x34{left:950.558340px;}
.x9e{left:953.748780px;}
.x6b{left:965.756250px;}
.x6c{left:967.263750px;}
.xdb{left:997.612500px;}
.xc6{left:1003.050000px;}
.xb1{left:1090.036500px;}
.xb3{left:1108.047000px;}
.x3c{left:1197.261000px;}
@media print{
.v2{vertical-align:-60.938667pt;}
.va{vertical-align:-32.334400pt;}
.v20{vertical-align:-31.360000pt;}
.v8{vertical-align:-26.240000pt;}
.v6{vertical-align:-23.723200pt;}
.v7{vertical-align:-20.437227pt;}
.v4{vertical-align:-17.913813pt;}
.v1f{vertical-align:-15.369600pt;}
.v9{vertical-align:-13.614080pt;}
.v22{vertical-align:-11.374933pt;}
.v3{vertical-align:-10.240000pt;}
.v1d{vertical-align:-8.661714pt;}
.ve{vertical-align:-6.705843pt;}
.v1b{vertical-align:-4.111321pt;}
.v12{vertical-align:-1.516798pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.021094pt;}
.v11{vertical-align:3.352922pt;}
.vc{vertical-align:6.705843pt;}
.v21{vertical-align:11.374933pt;}
.v14{vertical-align:12.613372pt;}
.v10{vertical-align:14.928484pt;}
.v1c{vertical-align:16.325535pt;}
.v5{vertical-align:17.376000pt;}
.v17{vertical-align:19.039805pt;}
.vf{vertical-align:20.875929pt;}
.v18{vertical-align:23.789777pt;}
.v23{vertical-align:25.600000pt;}
.v19{vertical-align:27.102783pt;}
.v15{vertical-align:30.934693pt;}
.v25{vertical-align:31.882880pt;}
.vd{vertical-align:32.890564pt;}
.v13{vertical-align:33.848542pt;}
.v16{vertical-align:35.365340pt;}
.v27{vertical-align:37.488853pt;}
.v1a{vertical-align:61.669808pt;}
.v24{vertical-align:63.420800pt;}
.v1e{vertical-align:80.640000pt;}
.v26{vertical-align:86.022720pt;}
.v1{vertical-align:115.690240pt;}
.ls5a{letter-spacing:-11.712000pt;}
.ls9b{letter-spacing:-11.136000pt;}
.ls19{letter-spacing:-9.062758pt;}
.ls5b{letter-spacing:-7.808000pt;}
.lsa2{letter-spacing:-7.160960pt;}
.lscd{letter-spacing:-7.104000pt;}
.ls38{letter-spacing:-6.151661pt;}
.ls82{letter-spacing:-5.698828pt;}
.ls39{letter-spacing:-4.783714pt;}
.ls59{letter-spacing:-4.765107pt;}
.ls18{letter-spacing:-4.476954pt;}
.ls37{letter-spacing:-4.345824pt;}
.ls104{letter-spacing:-4.205035pt;}
.ls17{letter-spacing:-4.120973pt;}
.ls81{letter-spacing:-4.104731pt;}
.lsc9{letter-spacing:-3.803554pt;}
.ls9d{letter-spacing:-3.472714pt;}
.lsef{letter-spacing:-3.368559pt;}
.ls21{letter-spacing:-3.136000pt;}
.ls4f{letter-spacing:-2.666191pt;}
.ls3f{letter-spacing:-2.553600pt;}
.lsce{letter-spacing:-2.112000pt;}
.ls87{letter-spacing:-2.048000pt;}
.lsd1{letter-spacing:-1.998555pt;}
.lscf{letter-spacing:-1.992699pt;}
.lsd2{letter-spacing:-1.987169pt;}
.lsd0{letter-spacing:-1.981280pt;}
.ls2a{letter-spacing:-1.957760pt;}
.ls106{letter-spacing:-1.664000pt;}
.ls119{letter-spacing:-1.440000pt;}
.lsfe{letter-spacing:-1.276800pt;}
.lsc7{letter-spacing:-1.076967pt;}
.lse7{letter-spacing:-1.068800pt;}
.lsca{letter-spacing:-0.984038pt;}
.ls2c{letter-spacing:-0.973440pt;}
.lsa8{letter-spacing:-0.898560pt;}
.lse5{letter-spacing:-0.855040pt;}
.lsc0{letter-spacing:-0.851907pt;}
.lsb8{letter-spacing:-0.831493pt;}
.ls3b{letter-spacing:-0.768000pt;}
.lsc3{letter-spacing:-0.705740pt;}
.ls4d{letter-spacing:-0.680730pt;}
.lsaa{letter-spacing:-0.673920pt;}
.lse6{letter-spacing:-0.641280pt;}
.lsbf{letter-spacing:-0.613370pt;}
.lsc4{letter-spacing:-0.581317pt;}
.lsc5{letter-spacing:-0.572141pt;}
.lsc1{letter-spacing:-0.545220pt;}
.lsd6{letter-spacing:-0.534400pt;}
.lsb9{letter-spacing:-0.532156pt;}
.lsbd{letter-spacing:-0.511141pt;}
.lsb6{letter-spacing:-0.498896pt;}
.ls9e{letter-spacing:-0.489115pt;}
.ls5c{letter-spacing:-0.448000pt;}
.lsbb{letter-spacing:-0.446137pt;}
.lsb4{letter-spacing:-0.435477pt;}
.lse4{letter-spacing:-0.427520pt;}
.lsbc{letter-spacing:-0.404656pt;}
.lsb5{letter-spacing:-0.394960pt;}
.ls20{letter-spacing:-0.384000pt;}
.ls9c{letter-spacing:-0.363992pt;}
.lsbe{letter-spacing:-0.357799pt;}
.lsb7{letter-spacing:-0.349227pt;}
.lsc2{letter-spacing:-0.342671pt;}
.lsa1{letter-spacing:-0.342380pt;}
.ls3a{letter-spacing:-0.341760pt;}
.ls2b{letter-spacing:-0.299520pt;}
.ls1c{letter-spacing:-0.289226pt;}
.ls3c{letter-spacing:-0.288000pt;}
.ls52{letter-spacing:-0.265485pt;}
.ls4c{letter-spacing:-0.256000pt;}
.ls54{letter-spacing:-0.255274pt;}
.lsba{letter-spacing:-0.238534pt;}
.lsb3{letter-spacing:-0.232818pt;}
.ls42{letter-spacing:-0.213760pt;}
.lsc6{letter-spacing:-0.208051pt;}
.ls84{letter-spacing:-0.199549pt;}
.ls1a{letter-spacing:-0.192817pt;}
.ls1f{letter-spacing:-0.192000pt;}
.ls88{letter-spacing:-0.171520pt;}
.ls29{letter-spacing:-0.170240pt;}
.ls53{letter-spacing:-0.170182pt;}
.ls85{letter-spacing:-0.144252pt;}
.ls55{letter-spacing:-0.132175pt;}
.ls3{letter-spacing:-0.128000pt;}
.lsab{letter-spacing:-0.117760pt;}
.ls4e{letter-spacing:-0.113455pt;}
.ls40{letter-spacing:-0.106880pt;}
.ls4{letter-spacing:-0.074880pt;}
.ls51{letter-spacing:-0.066371pt;}
.ls1e{letter-spacing:-0.064000pt;}
.ls50{letter-spacing:-0.061266pt;}
.lsd4{letter-spacing:-0.058868pt;}
.lsd3{letter-spacing:-0.058849pt;}
.lsa0{letter-spacing:-0.048911pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8b{letter-spacing:0.033280pt;}
.lsf0{letter-spacing:0.056320pt;}
.ls46{letter-spacing:0.056727pt;}
.ls22{letter-spacing:0.064000pt;}
.ls83{letter-spacing:0.072137pt;}
.lsee{letter-spacing:0.091042pt;}
.ls105{letter-spacing:0.091048pt;}
.ls34{letter-spacing:0.091947pt;}
.ls49{letter-spacing:0.094735pt;}
.lsaf{letter-spacing:0.104026pt;}
.ls25{letter-spacing:0.105387pt;}
.ls16{letter-spacing:0.106880pt;}
.ls44{letter-spacing:0.113455pt;}
.ls103{letter-spacing:0.113650pt;}
.lsea{letter-spacing:0.114560pt;}
.lsa{letter-spacing:0.128000pt;}
.ls57{letter-spacing:0.132175pt;}
.ls41{letter-spacing:0.142080pt;}
.ls86{letter-spacing:0.144274pt;}
.ls92{letter-spacing:0.145597pt;}
.ls9f{letter-spacing:0.146734pt;}
.ls58{letter-spacing:0.150895pt;}
.ls48{letter-spacing:0.169794pt;}
.ls43{letter-spacing:0.170182pt;}
.lsed{letter-spacing:0.170240pt;}
.ls47{letter-spacing:0.170326pt;}
.ls26{letter-spacing:0.171947pt;}
.ls56{letter-spacing:0.176990pt;}
.lsb2{letter-spacing:0.181760pt;}
.ls15{letter-spacing:0.192000pt;}
.lsb0{letter-spacing:0.208051pt;}
.ls5{letter-spacing:0.213760pt;}
.ls108{letter-spacing:0.221867pt;}
.ls45{letter-spacing:0.226910pt;}
.ls96{letter-spacing:0.244557pt;}
.ls0{letter-spacing:0.256000pt;}
.ls33{letter-spacing:0.259200pt;}
.ls4a{letter-spacing:0.264350pt;}
.ls99{letter-spacing:0.265441pt;}
.lse0{letter-spacing:0.267200pt;}
.lsb1{letter-spacing:0.272640pt;}
.ls94{letter-spacing:0.278297pt;}
.ls32{letter-spacing:0.288000pt;}
.ls1d{letter-spacing:0.289226pt;}
.ls1{letter-spacing:0.298240pt;}
.lsa9{letter-spacing:0.299520pt;}
.ls98{letter-spacing:0.303644pt;}
.ls95{letter-spacing:0.313819pt;}
.ls2d{letter-spacing:0.320640pt;}
.ls31{letter-spacing:0.326400pt;}
.ls97{letter-spacing:0.327209pt;}
.ls9a{letter-spacing:0.327742pt;}
.ls93{letter-spacing:0.363992pt;}
.ls35{letter-spacing:0.398720pt;}
.lse9{letter-spacing:0.416000pt;}
.lsff{letter-spacing:0.425600pt;}
.ls1b{letter-spacing:0.482043pt;}
.lseb{letter-spacing:0.635520pt;}
.lse8{letter-spacing:0.641280pt;}
.lsfb{letter-spacing:0.646912pt;}
.lsf6{letter-spacing:0.680960pt;}
.ls14{letter-spacing:0.768000pt;}
.ls114{letter-spacing:0.864000pt;}
.ls30{letter-spacing:0.883200pt;}
.ls102{letter-spacing:0.896000pt;}
.ls113{letter-spacing:0.960000pt;}
.ls107{letter-spacing:0.961920pt;}
.lsad{letter-spacing:0.964532pt;}
.lsc8{letter-spacing:0.973781pt;}
.lsae{letter-spacing:0.988212pt;}
.lsfd{letter-spacing:1.276800pt;}
.ls23{letter-spacing:1.378944pt;}
.lsc{letter-spacing:1.401600pt;}
.ls9{letter-spacing:1.408000pt;}
.ls101{letter-spacing:1.536000pt;}
.lsb{letter-spacing:2.048000pt;}
.ls3d{letter-spacing:2.112000pt;}
.ls3e{letter-spacing:2.298240pt;}
.lsf7{letter-spacing:2.562112pt;}
.lsf8{letter-spacing:3.234560pt;}
.lsfc{letter-spacing:3.260096pt;}
.lsf5{letter-spacing:3.881472pt;}
.lse{letter-spacing:11.008000pt;}
.lsd{letter-spacing:11.648000pt;}
.lsf9{letter-spacing:12.172160pt;}
.lsfa{letter-spacing:12.853120pt;}
.lsdb{letter-spacing:13.146240pt;}
.ls8f{letter-spacing:14.323200pt;}
.ls90{letter-spacing:14.336000pt;}
.lsa6{letter-spacing:14.376960pt;}
.ls8e{letter-spacing:14.976000pt;}
.ls70{letter-spacing:15.247810pt;}
.lsd9{letter-spacing:15.711360pt;}
.lsf{letter-spacing:16.128000pt;}
.lsda{letter-spacing:16.341952pt;}
.lsd8{letter-spacing:16.352640pt;}
.lsf1{letter-spacing:16.683520pt;}
.ls10{letter-spacing:16.768000pt;}
.lsf2{letter-spacing:17.279360pt;}
.ls11{letter-spacing:17.408000pt;}
.ls112{letter-spacing:17.539200pt;}
.ls111{letter-spacing:17.558400pt;}
.ls77{letter-spacing:19.981967pt;}
.ls4b{letter-spacing:20.714384pt;}
.ls13{letter-spacing:23.808000pt;}
.ls10f{letter-spacing:24.048000pt;}
.ls12{letter-spacing:24.448000pt;}
.ls110{letter-spacing:24.689280pt;}
.ls5f{letter-spacing:25.226743pt;}
.ls109{letter-spacing:25.907712pt;}
.ls10a{letter-spacing:26.613120pt;}
.lsf4{letter-spacing:30.132480pt;}
.lsf3{letter-spacing:30.140992pt;}
.ls2f{letter-spacing:30.976000pt;}
.ls2e{letter-spacing:31.616000pt;}
.ls60{letter-spacing:31.932587pt;}
.ls115{letter-spacing:32.966400pt;}
.lse1{letter-spacing:33.025920pt;}
.lsdf{letter-spacing:33.667200pt;}
.lse3{letter-spacing:34.308480pt;}
.lse2{letter-spacing:34.949760pt;}
.ls117{letter-spacing:36.000000pt;}
.ls116{letter-spacing:36.096000pt;}
.ls69{letter-spacing:37.081716pt;}
.ls118{letter-spacing:37.411200pt;}
.ls6d{letter-spacing:44.585874pt;}
.ls36{letter-spacing:59.992320pt;}
.ls8d{letter-spacing:60.416000pt;}
.lsa3{letter-spacing:63.648000pt;}
.lsde{letter-spacing:65.624320pt;}
.lsa5{letter-spacing:66.867840pt;}
.lsdd{letter-spacing:66.906880pt;}
.ls62{letter-spacing:67.297926pt;}
.lsdc{letter-spacing:67.548160pt;}
.ls66{letter-spacing:69.852533pt;}
.ls10b{letter-spacing:72.005056pt;}
.ls10c{letter-spacing:72.037120pt;}
.ls6a{letter-spacing:74.003770pt;}
.ls73{letter-spacing:76.718039pt;}
.ls27{letter-spacing:91.203840pt;}
.ls6c{letter-spacing:93.362900pt;}
.ls68{letter-spacing:94.959530pt;}
.ls74{letter-spacing:96.117086pt;}
.ls64{letter-spacing:97.514137pt;}
.ls100{letter-spacing:101.376000pt;}
.ls10d{letter-spacing:107.200640pt;}
.lsd7{letter-spacing:108.408960pt;}
.ls8c{letter-spacing:121.216000pt;}
.ls8a{letter-spacing:121.843200pt;}
.lsa4{letter-spacing:126.397440pt;}
.ls89{letter-spacing:128.896000pt;}
.ls5e{letter-spacing:135.473999pt;}
.lsa7{letter-spacing:141.747840pt;}
.ls75{letter-spacing:151.440292pt;}
.ls6e{letter-spacing:158.665040pt;}
.ls76{letter-spacing:177.026277pt;}
.ls61{letter-spacing:184.251025pt;}
.ls7{letter-spacing:197.225795pt;}
.lsac{letter-spacing:202.832976pt;}
.ls10e{letter-spacing:209.698560pt;}
.ls65{letter-spacing:232.269652pt;}
.ls8{letter-spacing:241.667271pt;}
.ls5d{letter-spacing:254.143474pt;}
.ls67{letter-spacing:286.036145pt;}
.ls63{letter-spacing:287.792437pt;}
.ls6b{letter-spacing:289.389067pt;}
.ls80{letter-spacing:294.080000pt;}
.lscc{letter-spacing:301.248000pt;}
.ls78{letter-spacing:313.280000pt;}
.ls6{letter-spacing:351.405746pt;}
.ls28{letter-spacing:354.307200pt;}
.ls6f{letter-spacing:359.321431pt;}
.ls7d{letter-spacing:393.280000pt;}
.lscb{letter-spacing:421.152000pt;}
.ls79{letter-spacing:427.200000pt;}
.ls7a{letter-spacing:446.400000pt;}
.ls7f{letter-spacing:450.880000pt;}
.ls7b{letter-spacing:454.656000pt;}
.ls7e{letter-spacing:457.280000pt;}
.ls7c{letter-spacing:486.656000pt;}
.ls71{letter-spacing:492.480318pt;}
.ls72{letter-spacing:493.877369pt;}
.ls91{letter-spacing:557.696000pt;}
.lsec{letter-spacing:645.332373pt;}
.lsd5{letter-spacing:1739.432747pt;}
.ls24{letter-spacing:2625.144533pt;}
.wsf{word-spacing:-369.611262pt;}
.ws95{word-spacing:-128.000000pt;}
.ws4b{word-spacing:-85.120000pt;}
.ws17{word-spacing:-64.000000pt;}
.wsdb{word-spacing:-61.502400pt;}
.ws9c{word-spacing:-48.911467pt;}
.ws3d{word-spacing:-47.162880pt;}
.ws2{word-spacing:-41.753600pt;}
.ws1{word-spacing:-41.455360pt;}
.ws6a{word-spacing:-36.612457pt;}
.ws3e{word-spacing:-35.840000pt;}
.ws40{word-spacing:-35.712000pt;}
.ws106{word-spacing:-35.584000pt;}
.ws9f{word-spacing:-35.484160pt;}
.ws0{word-spacing:-35.456000pt;}
.ws5c{word-spacing:-35.328000pt;}
.ws93{word-spacing:-35.200000pt;}
.ws3f{word-spacing:-34.816000pt;}
.ws68{word-spacing:-31.427017pt;}
.ws105{word-spacing:-30.353920pt;}
.ws104{word-spacing:-29.979840pt;}
.wse{word-spacing:-29.926400pt;}
.ws4e{word-spacing:-29.819520pt;}
.ws123{word-spacing:-29.712640pt;}
.ws4d{word-spacing:-29.605760pt;}
.wsaa{word-spacing:-29.498880pt;}
.ws100{word-spacing:-29.285120pt;}
.wsfd{word-spacing:-29.178240pt;}
.ws102{word-spacing:-29.071360pt;}
.ws101{word-spacing:-28.857600pt;}
.ws43{word-spacing:-28.800000pt;}
.ws103{word-spacing:-28.643840pt;}
.wsa0{word-spacing:-28.323200pt;}
.ws44{word-spacing:-26.976000pt;}
.ws45{word-spacing:-26.880000pt;}
.ws11{word-spacing:-26.801572pt;}
.ws46{word-spacing:-26.688000pt;}
.ws12{word-spacing:-26.608755pt;}
.ws13{word-spacing:-26.512347pt;}
.ws42{word-spacing:-26.496000pt;}
.ws69{word-spacing:-26.431046pt;}
.ws41{word-spacing:-26.400000pt;}
.ws48{word-spacing:-25.961600pt;}
.ws121{word-spacing:-25.248000pt;}
.wse3{word-spacing:-24.576000pt;}
.ws94{word-spacing:-24.448000pt;}
.ws117{word-spacing:-24.344320pt;}
.ws11d{word-spacing:-24.207365pt;}
.ws118{word-spacing:-24.088960pt;}
.ws4a{word-spacing:-23.663360pt;}
.ws47{word-spacing:-23.493120pt;}
.ws67{word-spacing:-23.485171pt;}
.ws6b{word-spacing:-23.400080pt;}
.ws11e{word-spacing:-22.853048pt;}
.ws116{word-spacing:-22.386560pt;}
.ws2c{word-spacing:-21.705600pt;}
.ws6c{word-spacing:-21.125291pt;}
.wsa8{word-spacing:-21.116160pt;}
.ws49{word-spacing:-21.109760pt;}
.ws6e{word-spacing:-20.974396pt;}
.wsc{word-spacing:-20.741760pt;}
.ws2d{word-spacing:-20.517120pt;}
.wsa9{word-spacing:-20.142720pt;}
.ws8c{word-spacing:-20.054105pt;}
.wsa7{word-spacing:-19.918080pt;}
.ws2e{word-spacing:-19.843200pt;}
.wse2{word-spacing:-19.584000pt;}
.ws10e{word-spacing:-19.391974pt;}
.ws1d{word-spacing:-19.200000pt;}
.ws70{word-spacing:-18.890246pt;}
.ws1f{word-spacing:-18.560000pt;}
.ws63{word-spacing:-18.384822pt;}
.ws64{word-spacing:-18.185709pt;}
.ws1a{word-spacing:-18.048000pt;}
.ws19{word-spacing:-17.920000pt;}
.ws20{word-spacing:-17.856000pt;}
.ws8d{word-spacing:-17.792000pt;}
.ws10{word-spacing:-17.747923pt;}
.ws18{word-spacing:-17.728000pt;}
.ws90{word-spacing:-17.664000pt;}
.ws1b{word-spacing:-17.600000pt;}
.ws1c{word-spacing:-17.408000pt;}
.ws73{word-spacing:-17.344000pt;}
.ws62{word-spacing:-16.970571pt;}
.ws96{word-spacing:-16.452438pt;}
.ws88{word-spacing:-16.375114pt;}
.ws97{word-spacing:-16.088446pt;}
.ws60{word-spacing:-15.997146pt;}
.ws5d{word-spacing:-15.883691pt;}
.ws4c{word-spacing:-15.834880pt;}
.ws8f{word-spacing:-15.744000pt;}
.ws5f{word-spacing:-15.656781pt;}
.ws5e{word-spacing:-15.089506pt;}
.ws71{word-spacing:-14.976000pt;}
.ws1e{word-spacing:-14.656000pt;}
.ws6d{word-spacing:-14.035516pt;}
.wsdc{word-spacing:-13.899542pt;}
.ws2f{word-spacing:-13.877760pt;}
.wsef{word-spacing:-13.304228pt;}
.wsee{word-spacing:-13.245360pt;}
.wsda{word-spacing:-12.915504pt;}
.wsc7{word-spacing:-11.962944pt;}
.ws8e{word-spacing:-11.920640pt;}
.wsc6{word-spacing:-11.858918pt;}
.ws91{word-spacing:-11.749120pt;}
.wsbc{word-spacing:-11.551794pt;}
.wsc9{word-spacing:-11.546842pt;}
.ws9e{word-spacing:-11.298549pt;}
.wsb2{word-spacing:-11.275050pt;}
.wsbd{word-spacing:-11.193995pt;}
.wsc8{word-spacing:-11.182752pt;}
.ws99{word-spacing:-11.053991pt;}
.wsbb{word-spacing:-11.040653pt;}
.ws9d{word-spacing:-11.005080pt;}
.wsb3{word-spacing:-10.925822pt;}
.wsb1{word-spacing:-10.776154pt;}
.ws87{word-spacing:-10.604149pt;}
.ws61{word-spacing:-10.566076pt;}
.ws9a{word-spacing:-10.564877pt;}
.wsca{word-spacing:-9.986426pt;}
.ws72{word-spacing:-9.984000pt;}
.wsed{word-spacing:-8.866553pt;}
.ws89{word-spacing:-8.820081pt;}
.wsba{word-spacing:-8.719941pt;}
.wsc2{word-spacing:-8.689448pt;}
.wsc5{word-spacing:-8.676454pt;}
.wsb0{word-spacing:-8.511592pt;}
.wsb7{word-spacing:-8.481232pt;}
.ws8a{word-spacing:-8.005971pt;}
.ws98{word-spacing:-7.581277pt;}
.wsbf{word-spacing:-7.462702pt;}
.wsb4{word-spacing:-7.283882pt;}
.ws9b{word-spacing:-7.198010pt;}
.wsc1{word-spacing:-7.156016pt;}
.wsea{word-spacing:-7.109614pt;}
.wse5{word-spacing:-7.088782pt;}
.wsec{word-spacing:-7.069108pt;}
.wse8{word-spacing:-7.048160pt;}
.wsb6{word-spacing:-6.984544pt;}
.wsc0{word-spacing:-6.849330pt;}
.wsb5{word-spacing:-6.685206pt;}
.ws10b{word-spacing:-6.199040pt;}
.ws9{word-spacing:-6.016000pt;}
.ws124{word-spacing:-5.771520pt;}
.wsde{word-spacing:-4.284638pt;}
.wsdf{word-spacing:-3.968000pt;}
.wsd7{word-spacing:-3.371641pt;}
.wsd1{word-spacing:-2.347005pt;}
.wscc{word-spacing:-2.290768pt;}
.wsa5{word-spacing:-2.244480pt;}
.wsad{word-spacing:-2.178560pt;}
.ws113{word-spacing:-2.171520pt;}
.ws57{word-spacing:-2.137600pt;}
.wse1{word-spacing:-1.923840pt;}
.ws75{word-spacing:-1.815279pt;}
.ws5a{word-spacing:-1.603200pt;}
.ws11b{word-spacing:-1.536000pt;}
.wsd{word-spacing:-1.497600pt;}
.wsa6{word-spacing:-1.496320pt;}
.wse0{word-spacing:-1.408000pt;}
.ws4{word-spacing:-1.367040pt;}
.wsab{word-spacing:-1.282560pt;}
.wsb{word-spacing:-1.280000pt;}
.ws111{word-spacing:-1.272960pt;}
.ws34{word-spacing:-1.088000pt;}
.wsa2{word-spacing:-1.076052pt;}
.ws22{word-spacing:-1.068800pt;}
.wsf6{word-spacing:-1.068779pt;}
.wsf2{word-spacing:-1.065643pt;}
.wsf8{word-spacing:-1.062686pt;}
.wsf4{word-spacing:-1.059550pt;}
.wsd4{word-spacing:-0.988212pt;}
.ws110{word-spacing:-0.973440pt;}
.wscf{word-spacing:-0.964532pt;}
.ws23{word-spacing:-0.961920pt;}
.ws112{word-spacing:-0.898560pt;}
.wsac{word-spacing:-0.883200pt;}
.ws59{word-spacing:-0.855040pt;}
.wsd5{word-spacing:-0.783754pt;}
.ws92{word-spacing:-0.768000pt;}
.wsd0{word-spacing:-0.764974pt;}
.wsa{word-spacing:-0.745600pt;}
.ws3{word-spacing:-0.683520pt;}
.ws78{word-spacing:-0.680730pt;}
.ws10c{word-spacing:-0.673920pt;}
.ws5b{word-spacing:-0.641280pt;}
.wsd2{word-spacing:-0.562255pt;}
.wscd{word-spacing:-0.548786pt;}
.ws74{word-spacing:-0.510547pt;}
.ws28{word-spacing:-0.482043pt;}
.ws36{word-spacing:-0.448000pt;}
.ws10a{word-spacing:-0.427520pt;}
.ws21{word-spacing:-0.384000pt;}
.ws114{word-spacing:-0.337920pt;}
.ws3a{word-spacing:-0.320640pt;}
.ws35{word-spacing:-0.320000pt;}
.ws82{word-spacing:-0.264350pt;}
.ws7{word-spacing:-0.256000pt;}
.wsa4{word-spacing:-0.244557pt;}
.ws76{word-spacing:-0.226910pt;}
.ws58{word-spacing:-0.213760pt;}
.ws55{word-spacing:-0.192000pt;}
.ws83{word-spacing:-0.176990pt;}
.ws7c{word-spacing:-0.170182pt;}
.wsa1{word-spacing:-0.146734pt;}
.ws56{word-spacing:-0.142080pt;}
.ws84{word-spacing:-0.132175pt;}
.ws2a{word-spacing:-0.128000pt;}
.ws79{word-spacing:-0.113455pt;}
.wsfe{word-spacing:-0.106880pt;}
.wsdd{word-spacing:-0.041002pt;}
.ws5{word-spacing:0.000000pt;}
.ws7b{word-spacing:0.056727pt;}
.wsfb{word-spacing:0.058849pt;}
.wsfc{word-spacing:0.058868pt;}
.ws2b{word-spacing:0.064000pt;}
.ws39{word-spacing:0.074880pt;}
.wsf9{word-spacing:0.117697pt;}
.ws53{word-spacing:0.128000pt;}
.ws119{word-spacing:0.170240pt;}
.ws33{word-spacing:0.192000pt;}
.wsd8{word-spacing:0.213760pt;}
.ws77{word-spacing:0.226910pt;}
.ws81{word-spacing:0.255274pt;}
.ws11a{word-spacing:0.256000pt;}
.ws54{word-spacing:0.288000pt;}
.ws38{word-spacing:0.299520pt;}
.wsa3{word-spacing:0.342380pt;}
.wsd6{word-spacing:0.342671pt;}
.wsfa{word-spacing:0.353091pt;}
.ws6{word-spacing:0.384000pt;}
.wsff{word-spacing:0.427520pt;}
.ws7a{word-spacing:0.453820pt;}
.ws37{word-spacing:0.512000pt;}
.ws108{word-spacing:0.576000pt;}
.ws85{word-spacing:0.603580pt;}
.ws80{word-spacing:0.624002pt;}
.ws32{word-spacing:0.680960pt;}
.ws29{word-spacing:0.832000pt;}
.ws31{word-spacing:0.851200pt;}
.ws8{word-spacing:1.024000pt;}
.ws109{word-spacing:1.068800pt;}
.ws107{word-spacing:1.152000pt;}
.ws30{word-spacing:1.192960pt;}
.wsce{word-spacing:1.546578pt;}
.wsd3{word-spacing:1.584538pt;}
.ws7e{word-spacing:1.588369pt;}
.ws24{word-spacing:1.692542pt;}
.ws52{word-spacing:1.964740pt;}
.ws10f{word-spacing:2.383360pt;}
.wsbe{word-spacing:2.451819pt;}
.ws11f{word-spacing:2.553600pt;}
.ws7d{word-spacing:2.666191pt;}
.ws120{word-spacing:3.200000pt;}
.ws115{word-spacing:3.234560pt;}
.ws7f{word-spacing:3.290193pt;}
.ws50{word-spacing:3.370773pt;}
.ws4f{word-spacing:4.345824pt;}
.ws25{word-spacing:6.608261pt;}
.ws27{word-spacing:17.850061pt;}
.ws26{word-spacing:57.720723pt;}
.wse9{word-spacing:58.744418pt;}
.wse7{word-spacing:62.978720pt;}
.wse6{word-spacing:67.525920pt;}
.wscb{word-spacing:80.172587pt;}
.wsf0{word-spacing:82.663424pt;}
.ws122{word-spacing:98.329600pt;}
.wse4{word-spacing:107.736426pt;}
.wsf3{word-spacing:110.571597pt;}
.wsf7{word-spacing:110.898861pt;}
.wsf1{word-spacing:111.207424pt;}
.wsf5{word-spacing:111.534688pt;}
.wsaf{word-spacing:149.682649pt;}
.wsb9{word-spacing:153.358460pt;}
.wsae{word-spacing:157.531547pt;}
.wsb8{word-spacing:161.400725pt;}
.ws8b{word-spacing:162.576782pt;}
.ws16{word-spacing:164.048760pt;}
.ws51{word-spacing:173.727706pt;}
.wseb{word-spacing:176.499658pt;}
.ws15{word-spacing:183.050882pt;}
.wsc4{word-spacing:195.484143pt;}
.wsd9{word-spacing:197.253497pt;}
.ws10d{word-spacing:205.846263pt;}
.wsc3{word-spacing:207.035652pt;}
.ws3c{word-spacing:214.600928pt;}
.ws3b{word-spacing:222.878688pt;}
.ws14{word-spacing:228.006181pt;}
.ws11c{word-spacing:256.961746pt;}
.ws65{word-spacing:289.054806pt;}
.ws66{word-spacing:313.841873pt;}
.ws6f{word-spacing:343.453611pt;}
.ws86{word-spacing:346.883387pt;}
._1e{margin-left:-852.778667pt;}
._a{margin-left:-350.554409pt;}
._33{margin-left:-15.728640pt;}
._18{margin-left:-12.672000pt;}
._3a{margin-left:-10.624000pt;}
._6{margin-left:-9.066496pt;}
._3b{margin-left:-8.133568pt;}
._5{margin-left:-6.920640pt;}
._2{margin-left:-5.101632pt;}
._40{margin-left:-4.090432pt;}
._7{margin-left:-3.107520pt;}
._9{margin-left:-2.067264pt;}
._0{margin-left:-1.042368pt;}
._1{width:1.036800pt;}
._8{width:2.258944pt;}
._3{width:3.148800pt;}
._11{width:4.576256pt;}
._1d{width:5.479873pt;}
._4{width:6.643200pt;}
._1f{width:7.680000pt;}
._f{width:10.886464pt;}
._e{width:11.903232pt;}
._32{width:13.662720pt;}
._21{width:14.802432pt;}
._31{width:15.800320pt;}
._10{width:16.691200pt;}
._3f{width:17.779200pt;}
._d{width:18.707270pt;}
._2d{width:19.980800pt;}
._12{width:24.611520pt;}
._39{width:30.983680pt;}
._36{width:32.783936pt;}
._35{width:33.880960pt;}
._37{width:35.056640pt;}
._38{width:35.987307pt;}
._17{width:39.311936pt;}
._16{width:41.191936pt;}
._2a{width:49.476267pt;}
._34{width:67.120640pt;}
._2c{width:68.189713pt;}
._2e{width:84.123200pt;}
._b{width:89.188740pt;}
._14{width:90.125013pt;}
._c{width:96.014666pt;}
._3c{width:98.115840pt;}
._3d{width:106.666240pt;}
._20{width:122.112000pt;}
._19{width:127.160320pt;}
._2f{width:155.148373pt;}
._2b{width:156.040533pt;}
._22{width:173.363580pt;}
._24{width:177.620230pt;}
._3e{width:209.325056pt;}
._26{width:211.223718pt;}
._29{width:216.576000pt;}
._25{width:230.338726pt;}
._13{width:231.896021pt;}
._15{width:259.093888pt;}
._23{width:273.834475pt;}
._28{width:293.709056pt;}
._27{width:321.600000pt;}
._1a{width:550.981760pt;}
._1b{width:757.208533pt;}
._1c{width:758.875520pt;}
._30{width:819.995463pt;}
.fs44{font-size:29.636267pt;}
.fs4a{font-size:29.719467pt;}
.fs41{font-size:29.806400pt;}
.fs47{font-size:29.893333pt;}
.fsa{font-size:30.617600pt;}
.fs3f{font-size:30.750933pt;}
.fs2c{font-size:31.849600pt;}
.fs43{font-size:32.480000pt;}
.fs49{font-size:32.576533pt;}
.fs40{font-size:32.667200pt;}
.fs46{font-size:32.763200pt;}
.fs31{font-size:33.259733pt;}
.fs35{font-size:34.076267pt;}
.fs28{font-size:36.062933pt;}
.fs45{font-size:37.841067pt;}
.fs4b{font-size:37.953067pt;}
.fs1b{font-size:38.007467pt;}
.fs42{font-size:38.058667pt;}
.fs48{font-size:38.170667pt;}
.fs4d{font-size:39.232533pt;}
.fs2f{font-size:39.496000pt;}
.fs32{font-size:39.588800pt;}
.fs27{font-size:39.909867pt;}
.fs26{font-size:39.915733pt;}
.fs33{font-size:40.465600pt;}
.fs36{font-size:40.557867pt;}
.fs3d{font-size:41.001600pt;}
.fs38{font-size:41.514133pt;}
.fs29{font-size:42.880000pt;}
.fs3e{font-size:48.689067pt;}
.fs2b{font-size:48.911467pt;}
.fs37{font-size:48.953067pt;}
.fs30{font-size:49.889600pt;}
.fsf{font-size:49.920000pt;}
.fs23{font-size:50.487467pt;}
.fs34{font-size:51.114133pt;}
.fs3a{font-size:52.012800pt;}
.fs50{font-size:56.320000pt;}
.fs1a{font-size:56.727467pt;}
.fs17{font-size:56.960000pt;}
.fs39{font-size:58.131733pt;}
.fs4c{font-size:58.848533pt;}
.fs4e{font-size:58.868267pt;}
.fs2e{font-size:58.880000pt;}
.fs3b{font-size:60.373867pt;}
.fs1c{font-size:61.265600pt;}
.fs3c{font-size:61.502400pt;}
.fs13{font-size:63.606400pt;}
.fsd{font-size:64.000000pt;}
.fsc{font-size:64.272533pt;}
.fs6{font-size:65.487467pt;}
.fs1d{font-size:66.371200pt;}
.fs24{font-size:67.290667pt;}
.fs10{font-size:68.981333pt;}
.fs18{font-size:71.040000pt;}
.fs25{font-size:72.137067pt;}
.fs2a{font-size:72.798400pt;}
.fs7{font-size:73.588800pt;}
.fs3{font-size:74.880000pt;}
.fs22{font-size:75.447467pt;}
.fs8{font-size:79.945600pt;}
.fs12{font-size:84.211200pt;}
.fs11{font-size:84.269333pt;}
.fs19{font-size:85.091200pt;}
.fse{font-size:85.120000pt;}
.fs14{font-size:85.311467pt;}
.fs15{font-size:85.423467pt;}
.fs21{font-size:88.494933pt;}
.fs2d{font-size:89.469333pt;}
.fs4f{font-size:91.042133pt;}
.fs52{font-size:91.048000pt;}
.fs9{font-size:94.403733pt;}
.fs1f{font-size:94.734933pt;}
.fs16{font-size:96.000000pt;}
.fsb{font-size:96.408533pt;}
.fs5{font-size:106.880000pt;}
.fs1e{font-size:113.454933pt;}
.fs51{font-size:113.649600pt;}
.fs1{font-size:128.000000pt;}
.fs20{font-size:132.174933pt;}
.fs53{font-size:134.923847pt;}
.fs2{font-size:149.120000pt;}
.fs0{font-size:170.880000pt;}
.fs4{font-size:192.000000pt;}
.y143{bottom:-29.700533pt;}
.y52{bottom:-18.904400pt;}
.y0{bottom:0.000000pt;}
.y56{bottom:4.090800pt;}
.y15b{bottom:5.837333pt;}
.y17d{bottom:5.858133pt;}
.y19a{bottom:6.335467pt;}
.y62{bottom:7.453333pt;}
.y1f0{bottom:7.500000pt;}
.y15c{bottom:8.657733pt;}
.y14a{bottom:8.663067pt;}
.y11f{bottom:8.785867pt;}
.y16c{bottom:8.787467pt;}
.y17e{bottom:8.788400pt;}
.y198{bottom:9.677733pt;}
.y159{bottom:9.686533pt;}
.y17b{bottom:9.838000pt;}
.y237{bottom:10.015200pt;}
.y25f{bottom:10.016000pt;}
.y46{bottom:10.882933pt;}
.y25c{bottom:12.502133pt;}
.y1fb{bottom:12.752133pt;}
.y148{bottom:13.733333pt;}
.y1b3{bottom:13.914000pt;}
.y1c3{bottom:14.072000pt;}
.y144{bottom:14.446667pt;}
.yb1{bottom:14.807360pt;}
.y71{bottom:17.609067pt;}
.yba{bottom:18.203467pt;}
.y2a{bottom:19.953067pt;}
.y14f{bottom:20.498800pt;}
.y171{bottom:20.915733pt;}
.y1d0{bottom:21.126400pt;}
.y1e6{bottom:21.189200pt;}
.y1c4{bottom:21.248000pt;}
.y1db{bottom:21.310800pt;}
.y202{bottom:21.780133pt;}
.y19b{bottom:21.969200pt;}
.y11{bottom:23.333333pt;}
.y192{bottom:25.591733pt;}
.y6b{bottom:26.269440pt;}
.y16a{bottom:27.711867pt;}
.y14d{bottom:27.720400pt;}
.y16f{bottom:28.296000pt;}
.y18b{bottom:28.296933pt;}
.y147{bottom:28.854880pt;}
.y54{bottom:29.021333pt;}
.y1ae{bottom:29.462320pt;}
.y1c5{bottom:29.496468pt;}
.y268{bottom:30.598107pt;}
.yc9{bottom:31.333333pt;}
.y47{bottom:31.491107pt;}
.yb0{bottom:31.825600pt;}
.y1b1{bottom:36.450400pt;}
.y218{bottom:36.933813pt;}
.y150{bottom:38.596133pt;}
.y1d1{bottom:38.941680pt;}
.y1e7{bottom:39.057429pt;}
.y10d{bottom:39.217467pt;}
.y172{bottom:39.435200pt;}
.y1dc{bottom:40.002206pt;}
.y1a{bottom:43.586267pt;}
.y169{bottom:44.355200pt;}
.y142{bottom:45.166667pt;}
.y18a{bottom:45.328800pt;}
.y146{bottom:46.460000pt;}
.y44{bottom:47.453333pt;}
.yaf{bottom:48.843840pt;}
.yca{bottom:52.856933pt;}
.y45{bottom:53.294667pt;}
.y30{bottom:56.120000pt;}
.y70{bottom:56.333333pt;}
.y1c6{bottom:56.536743pt;}
.y151{bottom:56.693200pt;}
.y173{bottom:57.954667pt;}
.y281{bottom:58.166667pt;}
.y6a{bottom:58.280000pt;}
.y29{bottom:58.806059pt;}
.y191{bottom:59.193333pt;}
.yb7{bottom:59.540693pt;}
.y168{bottom:60.998533pt;}
.y12{bottom:61.019200pt;}
.y1ad{bottom:61.472880pt;}
.y193{bottom:61.481200pt;}
.y189{bottom:62.360400pt;}
.y267{bottom:62.608667pt;}
.y264{bottom:63.493333pt;}
.y1a1{bottom:64.632533pt;}
.y19f{bottom:64.787333pt;}
.y19d{bottom:64.942000pt;}
.y1a3{bottom:65.240400pt;}
.yae{bottom:65.862080pt;}
.y1a5{bottom:66.006533pt;}
.y21{bottom:67.189200pt;}
.y1d2{bottom:67.792040pt;}
.y1e8{bottom:67.993534pt;}
.y13b{bottom:68.780000pt;}
.y217{bottom:68.944373pt;}
.y1b5{bottom:70.751467pt;}
.y1dd{bottom:71.332016pt;}
.y263{bottom:71.333333pt;}
.y1a4{bottom:71.430667pt;}
.y11e{bottom:72.952000pt;}
.y271{bottom:73.258880pt;}
.y1b4{bottom:73.314000pt;}
.y1bc{bottom:74.006533pt;}
.y48{bottom:74.052589pt;}
.ycf{bottom:74.223360pt;}
.y152{bottom:74.790267pt;}
.y174{bottom:76.474267pt;}
.yb6{bottom:76.558960pt;}
.y167{bottom:77.641867pt;}
.y20{bottom:78.882933pt;}
.y188{bottom:79.392133pt;}
.y201{bottom:79.777280pt;}
.y13{bottom:80.583581pt;}
.yad{bottom:82.880320pt;}
.y1c7{bottom:83.650519pt;}
.y14c{bottom:84.482933pt;}
.y15e{bottom:84.946800pt;}
.y105{bottom:85.429867pt;}
.y1b2{bottom:86.500000pt;}
.y22d{bottom:86.692053pt;}
.y16e{bottom:86.747333pt;}
.y1b0{bottom:87.138667pt;}
.y1a2{bottom:87.494667pt;}
.y102{bottom:89.609437pt;}
.y108{bottom:90.070071pt;}
.y1fe{bottom:90.103467pt;}
.y69{bottom:90.258880pt;}
.y12e{bottom:90.771883pt;}
.y109{bottom:91.227627pt;}
.y153{bottom:92.887467pt;}
.y1d6{bottom:93.339333pt;}
.y1ac{bottom:93.483440pt;}
.yb5{bottom:93.577200pt;}
.y1ec{bottom:93.616267pt;}
.y1cb{bottom:93.877200pt;}
.y25a{bottom:94.014000pt;}
.y1e1{bottom:94.153333pt;}
.y166{bottom:94.285200pt;}
.y175{bottom:94.993733pt;}
.y280{bottom:95.404427pt;}
.y187{bottom:96.423867pt;}
.y1d3{bottom:96.569320pt;}
.y10c{bottom:96.765935pt;}
.y1e9{bottom:96.856343pt;}
.y194{bottom:97.370400pt;}
.y28{bottom:97.682800pt;}
.y26{bottom:97.691384pt;}
.y100{bottom:98.660330pt;}
.yac{bottom:99.898560pt;}
.y216{bottom:100.954933pt;}
.y10b{bottom:102.443948pt;}
.y1de{bottom:102.661826pt;}
.y1a0{bottom:103.556000pt;}
.y27{bottom:104.913467pt;}
.y270{bottom:105.269440pt;}
.y12d{bottom:105.274683pt;}
.y206{bottom:108.258133pt;}
.y262{bottom:108.602773pt;}
.y117{bottom:109.428400pt;}
.yb4{bottom:110.595520pt;}
.y1c8{bottom:110.690794pt;}
.y1b6{bottom:110.778533pt;}
.y165{bottom:110.928533pt;}
.y154{bottom:110.984800pt;}
.y186{bottom:113.455600pt;}
.y176{bottom:113.513333pt;}
.y106{bottom:114.867720pt;}
.y252{bottom:115.080000pt;}
.y49{bottom:116.614072pt;}
.yab{bottom:116.916800pt;}
.yc2{bottom:117.440400pt;}
.y238{bottom:117.858667pt;}
.y19e{bottom:118.854667pt;}
.y12c{bottom:119.776599pt;}
.y123{bottom:119.776933pt;}
.y10a{bottom:120.166534pt;}
.y101{bottom:121.741603pt;}
.y22c{bottom:121.882293pt;}
.y68{bottom:122.269440pt;}
.y107{bottom:123.948549pt;}
.y1d4{bottom:125.419680pt;}
.y1ab{bottom:125.494000pt;}
.ya{bottom:125.746667pt;}
.y1ea{bottom:125.792449pt;}
.y27f{bottom:127.414987pt;}
.y2f{bottom:127.546667pt;}
.y164{bottom:127.571867pt;}
.yb3{bottom:127.613760pt;}
.y155{bottom:129.081867pt;}
.y25b{bottom:129.702667pt;}
.y185{bottom:130.487333pt;}
.y177{bottom:132.032800pt;}
.y215{bottom:132.965493pt;}
.y1ff{bottom:133.109867pt;}
.y195{bottom:133.259867pt;}
.y1df{bottom:133.991636pt;}
.y24e{bottom:134.066667pt;}
.y19c{bottom:134.153333pt;}
.y103{bottom:134.716133pt;}
.y25{bottom:136.664533pt;}
.y26f{bottom:137.216640pt;}
.y1c9{bottom:137.804570pt;}
.y104{bottom:138.338486pt;}
.yce{bottom:139.146720pt;}
.y116{bottom:139.189733pt;}
.y205{bottom:140.268693pt;}
.y1b7{bottom:140.478864pt;}
.y261{bottom:140.613333pt;}
.y200{bottom:141.089867pt;}
.y236{bottom:144.064000pt;}
.y163{bottom:144.215200pt;}
.yb2{bottom:144.632000pt;}
.y141{bottom:146.580800pt;}
.y2e{bottom:146.746667pt;}
.y156{bottom:147.178933pt;}
.y184{bottom:147.519200pt;}
.y1d9{bottom:148.050933pt;}
.y251{bottom:148.200000pt;}
.yc3{bottom:148.560719pt;}
.y1ce{bottom:148.903600pt;}
.y1e4{bottom:149.341867pt;}
.y1ef{bottom:149.676000pt;}
.y53{bottom:149.741600pt;}
.ya1{bottom:150.551467pt;}
.y178{bottom:150.552267pt;}
.y1fd{bottom:150.680482pt;}
.yc1{bottom:150.922000pt;}
.yf1{bottom:152.975664pt;}
.yee{bottom:153.095411pt;}
.y14{bottom:153.945915pt;}
.y1d5{bottom:154.270040pt;}
.y67{bottom:154.280000pt;}
.y1eb{bottom:154.728554pt;}
.y1da{bottom:155.322667pt;}
.yff{bottom:156.119028pt;}
.y136{bottom:157.033709pt;}
.y22b{bottom:157.082293pt;}
.yd8{bottom:157.285189pt;}
.y1aa{bottom:157.494000pt;}
.y162{bottom:158.259733pt;}
.y160{bottom:158.272533pt;}
.y1d8{bottom:158.457200pt;}
.y4a{bottom:159.175555pt;}
.y1cd{bottom:159.369733pt;}
.y27e{bottom:159.425547pt;}
.y24{bottom:159.641867pt;}
.y1e3{bottom:159.838800pt;}
.y1ee{bottom:160.113067pt;}
.y181{bottom:162.414667pt;}
.y183{bottom:162.420267pt;}
.yf9{bottom:162.615314pt;}
.yfa{bottom:164.421501pt;}
.y1ca{bottom:164.844844pt;}
.y214{bottom:164.976053pt;}
.y157{bottom:165.276267pt;}
.y1e0{bottom:165.321446pt;}
.y23{bottom:165.587067pt;}
.y2d{bottom:165.946667pt;}
.yf3{bottom:166.377371pt;}
.ya0{bottom:167.569707pt;}
.y1a9{bottom:168.771573pt;}
.y1d7{bottom:168.863467pt;}
.y115{bottom:168.950933pt;}
.y140{bottom:168.988640pt;}
.y179{bottom:169.071733pt;}
.y196{bottom:169.149200pt;}
.y26e{bottom:169.227200pt;}
.y9{bottom:169.266667pt;}
.y51{bottom:169.674533pt;}
.y1cc{bottom:169.835733pt;}
.y1e2{bottom:170.335733pt;}
.y1ed{bottom:170.550267pt;}
.y19{bottom:171.371467pt;}
.y135{bottom:171.817750pt;}
.y24d{bottom:172.466667pt;}
.y1b8{bottom:175.376753pt;}
.yb9{bottom:176.574400pt;}
.y99{bottom:176.869867pt;}
.yef{bottom:180.008594pt;}
.y158{bottom:183.373467pt;}
.y239{bottom:184.433333pt;}
.y89{bottom:184.460133pt;}
.y9f{bottom:184.587947pt;}
.y2c{bottom:185.146667pt;}
.y199{bottom:186.165333pt;}
.y66{bottom:186.280000pt;}
.y134{bottom:186.320550pt;}
.y250{bottom:186.600000pt;}
.y17a{bottom:187.591333pt;}
.yf8{bottom:188.620414pt;}
.yd0{bottom:189.427333pt;}
.yf0{bottom:189.807907pt;}
.y13f{bottom:191.396480pt;}
.y27d{bottom:191.436107pt;}
.y22a{bottom:192.301813pt;}
.y138{bottom:196.557200pt;}
.y213{bottom:196.986613pt;}
.y114{bottom:198.713467pt;}
.y133{bottom:200.824500pt;}
.y26d{bottom:201.237760pt;}
.y88{bottom:201.478427pt;}
.y9e{bottom:201.606187pt;}
.y4b{bottom:201.737037pt;}
.ycd{bottom:204.070080pt;}
.y2b{bottom:204.346667pt;}
.y197{bottom:205.038533pt;}
.yeb{bottom:205.278230pt;}
.yec{bottom:206.841600pt;}
.y8{bottom:207.666667pt;}
.y90{bottom:208.355600pt;}
.y1b9{bottom:209.605166pt;}
.y24c{bottom:210.866667pt;}
.y11d{bottom:211.833333pt;}
.y1c2{bottom:212.073333pt;}
.yfe{bottom:212.579833pt;}
.yed{bottom:213.448000pt;}
.y9a{bottom:213.774267pt;}
.y13e{bottom:213.804320pt;}
.yfc{bottom:214.705346pt;}
.ybc{bottom:215.223600pt;}
.y8d{bottom:216.285600pt;}
.ye4{bottom:218.046914pt;}
.yd7{bottom:218.066872pt;}
.y65{bottom:218.269440pt;}
.y87{bottom:218.496720pt;}
.y9d{bottom:218.624427pt;}
.y8a{bottom:218.796933pt;}
.y22{bottom:221.333333pt;}
.y1f{bottom:222.770667pt;}
.y27c{bottom:223.446667pt;}
.y24f{bottom:225.000000pt;}
.yfb{bottom:225.692151pt;}
.y15{bottom:227.308250pt;}
.y229{bottom:227.492053pt;}
.yf7{bottom:227.967348pt;}
.y113{bottom:228.473467pt;}
.y212{bottom:228.997173pt;}
.y55{bottom:232.643867pt;}
.y26c{bottom:233.248320pt;}
.yc4{bottom:233.506667pt;}
.y41{bottom:234.901387pt;}
.ye6{bottom:234.991143pt;}
.y86{bottom:235.514960pt;}
.y9c{bottom:235.642667pt;}
.y132{bottom:235.946776pt;}
.y13d{bottom:236.212160pt;}
.yd{bottom:238.786667pt;}
.y1c1{bottom:240.873333pt;}
.yf6{bottom:241.389013pt;}
.y4c{bottom:244.074331pt;}
.y1f6{bottom:245.298400pt;}
.y7{bottom:246.066667pt;}
.yd3{bottom:246.476895pt;}
.y24b{bottom:249.266667pt;}
.y11c{bottom:250.233333pt;}
.y64{bottom:250.280000pt;}
.y131{bottom:250.730817pt;}
.y85{bottom:252.533200pt;}
.ybb{bottom:253.095200pt;}
.y9b{bottom:253.370000pt;}
.ye5{bottom:255.088715pt;}
.y112{bottom:258.234800pt;}
.y13c{bottom:258.620000pt;}
.y211{bottom:261.007733pt;}
.y94{bottom:261.194933pt;}
.y228{bottom:262.682293pt;}
.y8e{bottom:263.107835pt;}
.ye9{bottom:263.645011pt;}
.y130{bottom:265.233617pt;}
.y26b{bottom:265.258880pt;}
.yea{bottom:265.970102pt;}
.y96{bottom:266.264472pt;}
.y91{bottom:266.264933pt;}
.ycc{bottom:268.993440pt;}
.y8b{bottom:269.907760pt;}
.y40{bottom:273.845920pt;}
.ye0{bottom:274.856982pt;}
.ye3{bottom:275.236181pt;}
.y137{bottom:275.468983pt;}
.yd6{bottom:277.311799pt;}
.yf4{bottom:278.989634pt;}
.y1c0{bottom:279.273333pt;}
.y12f{bottom:279.740651pt;}
.y6{bottom:284.466667pt;}
.yf2{bottom:285.316278pt;}
.y4d{bottom:286.635813pt;}
.y24a{bottom:287.666667pt;}
.ya7{bottom:287.987733pt;}
.y111{bottom:287.996000pt;}
.y1f7{bottom:288.304933pt;}
.y220{bottom:288.446667pt;}
.y11b{bottom:288.633333pt;}
.yfd{bottom:289.687051pt;}
.y7e{bottom:289.917200pt;}
.yd4{bottom:291.841126pt;}
.y27b{bottom:292.581440pt;}
.y210{bottom:293.018293pt;}
.y1f8{bottom:296.284800pt;}
.y1cf{bottom:297.097333pt;}
.y26a{bottom:297.269440pt;}
.yf5{bottom:297.720092pt;}
.y227{bottom:297.872533pt;}
.y16{bottom:300.457750pt;}
.y241{bottom:301.284293pt;}
.y1fc{bottom:301.309659pt;}
.ye1{bottom:304.284856pt;}
.ya6{bottom:305.006027pt;}
.y12b{bottom:306.328643pt;}
.y7d{bottom:306.935440pt;}
.y1bf{bottom:308.078667pt;}
.ye7{bottom:308.650000pt;}
.yc6{bottom:308.746667pt;}
.yb8{bottom:309.314933pt;}
.yc8{bottom:309.580000pt;}
.ye8{bottom:313.679382pt;}
.ybf{bottom:314.284035pt;}
.y1a7{bottom:316.613333pt;}
.y110{bottom:317.758400pt;}
.y23a{bottom:318.511733pt;}
.y21f{bottom:320.436107pt;}
.y12a{bottom:321.112683pt;}
.y95{bottom:321.327120pt;}
.ya5{bottom:322.024293pt;}
.y5{bottom:322.866667pt;}
.y7c{bottom:323.953680pt;}
.y20f{bottom:325.028853pt;}
.y249{bottom:326.066667pt;}
.y240{bottom:326.884133pt;}
.y11a{bottom:327.033333pt;}
.y98{bottom:328.089245pt;}
.y4e{bottom:329.197296pt;}
.y269{bottom:329.284640pt;}
.y226{bottom:329.712533pt;}
.yd9{bottom:329.990588pt;}
.y3f{bottom:330.746667pt;}
.ydd{bottom:330.828819pt;}
.yd2{bottom:333.104015pt;}
.y25d{bottom:333.257467pt;}
.yd1{bottom:333.353489pt;}
.ycb{bottom:333.916800pt;}
.ybe{bottom:334.145617pt;}
.y129{bottom:335.615483pt;}
.y61{bottom:338.516587pt;}
.ya4{bottom:339.042453pt;}
.yde{bottom:340.707963pt;}
.y7b{bottom:340.971920pt;}
.yd5{bottom:342.204803pt;}
.y27a{bottom:343.760000pt;}
.y8f{bottom:345.984875pt;}
.y1be{bottom:347.006667pt;}
.y97{bottom:347.950826pt;}
.y122{bottom:347.985067pt;}
.ydf{bottom:348.162226pt;}
.y254{bottom:349.169333pt;}
.yda{bottom:349.838687pt;}
.y3e{bottom:349.946667pt;}
.y128{bottom:350.123418pt;}
.y223{bottom:351.746347pt;}
.y260{bottom:351.946667pt;}
.y21e{bottom:352.446667pt;}
.y23f{bottom:352.483973pt;}
.y93{bottom:353.659211pt;}
.ybd{bottom:355.065067pt;}
.ya3{bottom:356.060693pt;}
.y20e{bottom:357.039413pt;}
.y10f{bottom:357.598400pt;}
.y7a{bottom:357.990160pt;}
.y4{bottom:361.266667pt;}
.y248{bottom:364.466667pt;}
.ye2{bottom:365.096476pt;}
.ydc{bottom:365.106455pt;}
.y119{bottom:365.433333pt;}
.y1a8{bottom:366.446133pt;}
.y5d{bottom:366.473200pt;}
.y3d{bottom:369.146667pt;}
.y1f1{bottom:370.352133pt;}
.y4f{bottom:371.758779pt;}
.ya2{bottom:373.078933pt;}
.y92{bottom:373.520793pt;}
.y17{bottom:373.820085pt;}
.y22e{bottom:374.643600pt;}
.y79{bottom:375.008400pt;}
.y279{bottom:375.240000pt;}
.y127{bottom:376.710643pt;}
.y8c{bottom:377.015345pt;}
.y60{bottom:377.469573pt;}
.y10e{bottom:377.758400pt;}
.y23e{bottom:378.083813pt;}
.yaa{bottom:379.657819pt;}
.y225{bottom:380.666133pt;}
.y222{bottom:383.756907pt;}
.y21d{bottom:384.436107pt;}
.y253{bottom:387.569200pt;}
.y3c{bottom:388.346667pt;}
.y20d{bottom:389.049973pt;}
.y126{bottom:391.494683pt;}
.y78{bottom:392.735733pt;}
.y5b{bottom:393.973467pt;}
.y1e{bottom:396.112133pt;}
.y170{bottom:397.570667pt;}
.y16b{bottom:398.104000pt;}
.y3{bottom:399.666667pt;}
.y182{bottom:399.701333pt;}
.y14e{bottom:399.706667pt;}
.y149{bottom:400.226667pt;}
.y161{bottom:402.305333pt;}
.y247{bottom:402.866667pt;}
.y23d{bottom:403.683653pt;}
.y118{bottom:403.833333pt;}
.y278{bottom:404.040000pt;}
.y234{bottom:405.185360pt;}
.y125{bottom:405.997483pt;}
.y84{bottom:407.409893pt;}
.y3b{bottom:407.546667pt;}
.y1f2{bottom:413.358667pt;}
.y50{bottom:414.320261pt;}
.y221{bottom:415.767467pt;}
.y121{bottom:415.919467pt;}
.y5f{bottom:416.433253pt;}
.y21c{bottom:416.446667pt;}
.y180{bottom:416.738667pt;}
.y1d{bottom:418.012000pt;}
.y233{bottom:418.220987pt;}
.y120{bottom:418.763067pt;}
.y15f{bottom:418.936000pt;}
.y124{bottom:420.496858pt;}
.y20c{bottom:421.060533pt;}
.y190{bottom:421.306667pt;}
.y1f3{bottom:421.338533pt;}
.ydb{bottom:421.906543pt;}
.y83{bottom:424.428160pt;}
.y3a{bottom:426.746667pt;}
.y258{bottom:428.134027pt;}
.yc7{bottom:428.746667pt;}
.y23c{bottom:429.283493pt;}
.y77{bottom:430.840667pt;}
.y1bb{bottom:432.646533pt;}
.y277{bottom:432.840000pt;}
.y5c{bottom:434.973333pt;}
.ya9{bottom:435.788267pt;}
.y1e5{bottom:436.484000pt;}
.y1c{bottom:439.912000pt;}
.y232{bottom:440.628827pt;}
.y1f5{bottom:440.966676pt;}
.y25e{bottom:441.166667pt;}
.y246{bottom:441.266667pt;}
.y82{bottom:441.446427pt;}
.y39{bottom:445.946667pt;}
.y33{bottom:447.113200pt;}
.y18{bottom:447.182419pt;}
.y76{bottom:447.858907pt;}
.y21b{bottom:448.436107pt;}
.yc5{bottom:448.579867pt;}
.y18f{bottom:450.106667pt;}
.y257{bottom:450.541867pt;}
.y1ba{bottom:451.846533pt;}
.y20b{bottom:453.071093pt;}
.y204{bottom:454.602773pt;}
.y23b{bottom:454.883333pt;}
.y5e{bottom:455.396933pt;}
.y81{bottom:458.464587pt;}
.y276{bottom:461.640000pt;}
.y1b{bottom:461.811867pt;}
.y231{bottom:463.036667pt;}
.y75{bottom:464.877147pt;}
.y38{bottom:465.146667pt;}
.y32{bottom:466.313200pt;}
.y2{bottom:474.248107pt;}
.y80{bottom:475.482827pt;}
.y256{bottom:477.393333pt;}
.y18e{bottom:478.906667pt;}
.y245{bottom:479.666667pt;}
.y21a{bottom:480.446667pt;}
.y74{bottom:481.895387pt;}
.y37{bottom:484.346667pt;}
.ya8{bottom:484.714933pt;}
.y20a{bottom:485.081653pt;}
.y31{bottom:485.513200pt;}
.y203{bottom:486.613333pt;}
.y235{bottom:488.516533pt;}
.y15d{bottom:488.573333pt;}
.y17f{bottom:488.618667pt;}
.y14b{bottom:489.612000pt;}
.y275{bottom:490.440000pt;}
.y7f{bottom:492.501067pt;}
.y16d{bottom:493.410667pt;}
.y5a{bottom:495.106667pt;}
.y15a{bottom:496.368000pt;}
.y17c{bottom:496.604000pt;}
.yc0{bottom:497.169867pt;}
.y73{bottom:498.913627pt;}
.y18d{bottom:507.706667pt;}
.y259{bottom:511.183200pt;}
.y72{bottom:515.931867pt;}
.y209{bottom:517.092213pt;}
.y10{bottom:518.169307pt;}
.y274{bottom:519.240000pt;}
.y59{bottom:523.906667pt;}
.y1{bottom:525.426667pt;}
.y18c{bottom:536.506667pt;}
.y36{bottom:542.500160pt;}
.y22f{bottom:543.120000pt;}
.y6e{bottom:545.957547pt;}
.y273{bottom:548.040000pt;}
.y230{bottom:548.643733pt;}
.y208{bottom:549.102773pt;}
.y13a{bottom:550.129307pt;}
.yf{bottom:550.179867pt;}
.y1f9{bottom:552.122933pt;}
.y58{bottom:554.466667pt;}
.y1fa{bottom:560.102800pt;}
.y266{bottom:566.439173pt;}
.y35{bottom:568.100000pt;}
.y255{bottom:571.310400pt;}
.y145{bottom:575.780427pt;}
.y272{bottom:576.840000pt;}
.y244{bottom:579.700000pt;}
.y207{bottom:581.113333pt;}
.y139{bottom:582.139867pt;}
.y1f4{bottom:583.501467pt;}
.ye{bottom:586.980000pt;}
.y6d{bottom:593.946667pt;}
.y57{bottom:595.426667pt;}
.y34{bottom:597.380000pt;}
.y265{bottom:598.449733pt;}
.y1a6{bottom:605.946667pt;}
.y243{bottom:618.100000pt;}
.y43{bottom:637.436107pt;}
.yb{bottom:647.000000pt;}
.y6f{bottom:649.000000pt;}
.y1bd{bottom:650.946667pt;}
.y224{bottom:651.166667pt;}
.y219{bottom:652.166667pt;}
.y1af{bottom:652.280000pt;}
.yc{bottom:652.833333pt;}
.y6c{bottom:654.280000pt;}
.y242{bottom:656.500000pt;}
.y63{bottom:656.666667pt;}
.y42{bottom:669.446667pt;}
.h53{height:19.229333pt;}
.h65{height:19.700000pt;}
.h87{height:22.327460pt;}
.h3d{height:26.184366pt;}
.h58{height:28.160341pt;}
.h54{height:28.677027pt;}
.h5b{height:28.744407pt;}
.h6a{height:28.851683pt;}
.h3c{height:28.977525pt;}
.h35{height:28.981785pt;}
.h66{height:29.381029pt;}
.h6d{height:29.448021pt;}
.h7c{height:30.142342pt;}
.h1e{height:30.210667pt;}
.h8f{height:30.909700pt;}
.h97{height:30.996475pt;}
.h8b{height:31.087144pt;}
.h93{height:31.177812pt;}
.hd{height:31.933200pt;}
.h9b{height:33.217389pt;}
.h5a{height:33.778667pt;}
.h8e{height:33.875625pt;}
.h96{height:33.976306pt;}
.h8a{height:34.070869pt;}
.h92{height:34.170994pt;}
.h6c{height:34.609333pt;}
.h57{height:35.338667pt;}
.h86{height:35.351876pt;}
.h4a{height:35.513355pt;}
.h4d{height:35.514690pt;}
.h4e{height:35.518489pt;}
.h4c{height:35.524855pt;}
.h36{height:35.687628pt;}
.h69{height:36.205333pt;}
.h78{height:36.206667pt;}
.h56{height:36.223552pt;}
.h68{height:37.112654pt;}
.h7d{height:37.480000pt;}
.h90{height:39.467050pt;}
.h98{height:39.583863pt;}
.h8c{height:39.694000pt;}
.h94{height:39.810812pt;}
.h7a{height:41.447567pt;}
.h3e{height:41.595157pt;}
.h7b{height:42.068000pt;}
.h7e{height:42.207953pt;}
.h5c{height:42.240511pt;}
.h43{height:42.393471pt;}
.h6f{height:43.277298pt;}
.h3a{height:43.910269pt;}
.h80{height:44.038181pt;}
.h12{height:44.626730pt;}
.h45{height:45.307320pt;}
.h38{height:46.824118pt;}
.h4b{height:46.888288pt;}
.h9a{height:49.825858pt;}
.h9c{height:49.842566pt;}
.h39{height:49.857713pt;}
.h64{height:51.968000pt;}
.h85{height:52.072833pt;}
.h34{height:52.376864pt;}
.h41{height:52.771562pt;}
.h49{height:52.857041pt;}
.h77{height:53.244000pt;}
.h42{height:53.529961pt;}
.ha1{height:58.740000pt;}
.h27{height:59.164975pt;}
.h28{height:59.165295pt;}
.h29{height:59.165402pt;}
.h2c{height:59.165508pt;}
.h3f{height:60.674877pt;}
.h52{height:61.410000pt;}
.h37{height:61.872349pt;}
.h3b{height:62.830327pt;}
.h83{height:62.968056pt;}
.h2a{height:63.898106pt;}
.h40{height:64.347125pt;}
.h1d{height:66.339487pt;}
.h14{height:66.750000pt;}
.h10{height:67.034244pt;}
.h8{height:68.301381pt;}
.h63{height:68.598667pt;}
.h2b{height:69.223087pt;}
.h33{height:70.182063pt;}
.h76{height:70.282667pt;}
.h19{height:71.945375pt;}
.h46{height:75.236706pt;}
.h9{height:76.750819pt;}
.h7f{height:77.253333pt;}
.h81{height:77.254667pt;}
.h4{height:78.097500pt;}
.h30{height:78.689350pt;}
.h16{height:78.743687pt;}
.h17{height:78.778140pt;}
.h4f{height:82.717187pt;}
.hb{height:83.380762pt;}
.h62{height:85.228000pt;}
.h75{height:87.320000pt;}
.h1b{height:87.829650pt;}
.h1a{height:87.890281pt;}
.h26{height:88.747462pt;}
.h15{height:88.777500pt;}
.h24{height:88.799153pt;}
.h23{height:88.820273pt;}
.h1f{height:88.977194pt;}
.h20{height:89.094006pt;}
.hc{height:89.513333pt;}
.h31{height:89.768557pt;}
.h44{height:90.651593pt;}
.ha0{height:91.753400pt;}
.ha5{height:91.759312pt;}
.h51{height:93.313719pt;}
.ha6{height:93.682476pt;}
.h55{height:97.700000pt;}
.ha{height:98.460144pt;}
.h2e{height:98.805575pt;}
.h6e{height:100.097333pt;}
.h67{height:100.098667pt;}
.h21{height:100.125000pt;}
.h9f{height:100.326667pt;}
.ha4{height:100.333333pt;}
.hf{height:100.551087pt;}
.h61{height:101.858667pt;}
.h74{height:104.357333pt;}
.h6{height:111.472500pt;}
.ha8{height:111.725940pt;}
.ha3{height:114.537487pt;}
.h22{height:117.501000pt;}
.h2d{height:118.329950pt;}
.h60{height:118.488000pt;}
.h73{height:121.397333pt;}
.ha2{height:125.240000pt;}
.h13{height:130.145333pt;}
.h2{height:133.500000pt;}
.h5f{height:135.637333pt;}
.h2f{height:137.854325pt;}
.h72{height:138.434667pt;}
.h47{height:147.390000pt;}
.h5e{height:152.266667pt;}
.h71{height:155.473333pt;}
.h3{height:155.527500pt;}
.ha7{height:164.860000pt;}
.h5d{height:166.298667pt;}
.h70{height:170.381333pt;}
.h9d{height:174.893300pt;}
.h1{height:178.222500pt;}
.h8d{height:187.626667pt;}
.h95{height:188.182667pt;}
.h89{height:188.705333pt;}
.h91{height:189.261333pt;}
.h1c{height:195.654667pt;}
.h59{height:195.920000pt;}
.he{height:196.666667pt;}
.h6b{height:200.197333pt;}
.h5{height:200.250000pt;}
.h88{height:215.325000pt;}
.h11{height:216.241327pt;}
.h79{height:254.708000pt;}
.h50{height:261.833333pt;}
.h9e{height:264.245220pt;}
.h82{height:384.388000pt;}
.h84{height:385.666667pt;}
.h32{height:434.500000pt;}
.h48{height:437.930667pt;}
.h18{height:480.538667pt;}
.h7{height:510.500000pt;}
.h25{height:539.333333pt;}
.h99{height:617.166667pt;}
.h0{height:720.000000pt;}
.w1d{width:-129.221333pt;}
.wd{width:-83.088000pt;}
.w6{width:-30.232000pt;}
.w1e{width:-10.749333pt;}
.w2{width:-10.480000pt;}
.we{width:-5.473333pt;}
.w1c{width:-5.413333pt;}
.wc{width:0.257333pt;}
.w1a{width:19.794667pt;}
.w2a{width:20.278667pt;}
.w17{width:20.316000pt;}
.w27{width:20.813333pt;}
.w13{width:22.398667pt;}
.w23{width:22.948000pt;}
.w16{width:23.441333pt;}
.w26{width:24.014667pt;}
.w14{width:26.566667pt;}
.w15{width:27.088000pt;}
.w31{width:27.244000pt;}
.w24{width:27.749333pt;}
.w25{width:28.284000pt;}
.w2f{width:30.486667pt;}
.w19{width:32.297333pt;}
.w29{width:33.620000pt;}
.w18{width:34.380000pt;}
.w28{width:35.754667pt;}
.w1b{width:38.026667pt;}
.w2b{width:39.490667pt;}
.w30{width:58.378667pt;}
.w11{width:59.382667pt;}
.w21{width:60.836000pt;}
.w32{width:62.270667pt;}
.w20{width:65.562667pt;}
.w10{width:66.676000pt;}
.w2e{width:76.541333pt;}
.w2d{width:90.810667pt;}
.w3b{width:90.833333pt;}
.w4{width:123.666667pt;}
.w22{width:146.754667pt;}
.w12{width:149.501333pt;}
.w39{width:207.404000pt;}
.w3a{width:224.933333pt;}
.w7{width:251.040000pt;}
.w36{width:267.989333pt;}
.w38{width:268.741333pt;}
.w35{width:269.526667pt;}
.w37{width:270.308000pt;}
.wf{width:333.117333pt;}
.w1f{width:335.592000pt;}
.w3{width:370.998667pt;}
.w2c{width:454.709333pt;}
.w9{width:484.168000pt;}
.wb{width:499.000000pt;}
.wa{width:514.930667pt;}
.w33{width:560.134667pt;}
.w34{width:580.000000pt;}
.w1{width:585.666667pt;}
.w5{width:719.000000pt;}
.w8{width:921.498667pt;}
.w0{width:1040.000000pt;}
.xae{left:-234.738267pt;}
.xa2{left:-192.995733pt;}
.x3f{left:-176.781600pt;}
.xaf{left:-40.235867pt;}
.xad{left:-39.296667pt;}
.xa3{left:-33.966000pt;}
.xa1{left:-33.049067pt;}
.x0{left:0.000000pt;}
.xac{left:4.846400pt;}
.xa8{left:5.761467pt;}
.xaa{left:7.817867pt;}
.x4a{left:9.645941pt;}
.x23{left:10.984933pt;}
.x6d{left:12.833333pt;}
.x94{left:14.600932pt;}
.x95{left:15.794613pt;}
.x18{left:17.810267pt;}
.xc3{left:20.062800pt;}
.xa4{left:21.225067pt;}
.x10{left:22.500000pt;}
.xc2{left:24.476400pt;}
.xb0{left:26.390267pt;}
.xb7{left:27.633600pt;}
.x22{left:28.979289pt;}
.xa5{left:31.069067pt;}
.xbe{left:33.539813pt;}
.x45{left:38.266667pt;}
.xca{left:39.620853pt;}
.x3d{left:40.565733pt;}
.x71{left:41.507238pt;}
.xb5{left:43.968133pt;}
.x31{left:46.440000pt;}
.x1f{left:48.575113pt;}
.x30{left:50.120000pt;}
.x70{left:52.223037pt;}
.xdd{left:53.266667pt;}
.x2e{left:54.440000pt;}
.xc0{left:56.606533pt;}
.x40{left:58.266667pt;}
.x17{left:61.846000pt;}
.x20{left:65.915733pt;}
.x6f{left:66.899890pt;}
.x2d{left:68.840000pt;}
.x46{left:74.266667pt;}
.xc1{left:76.591467pt;}
.xb4{left:82.016667pt;}
.x13{left:83.374533pt;}
.x98{left:92.343333pt;}
.x3a{left:93.233200pt;}
.x9f{left:94.266667pt;}
.x12{left:98.444710pt;}
.x9c{left:100.454000pt;}
.x2c{left:101.640000pt;}
.xf{left:103.294000pt;}
.x6a{left:104.290000pt;}
.x6{left:105.906667pt;}
.x77{left:107.558067pt;}
.xbc{left:111.533733pt;}
.x11{left:113.318800pt;}
.x39{left:115.232325pt;}
.x33{left:118.920000pt;}
.xc4{left:122.068400pt;}
.x2f{left:123.880000pt;}
.xc9{left:124.962933pt;}
.xf2{left:127.700000pt;}
.x32{left:129.160000pt;}
.x38{left:132.230667pt;}
.x72{left:134.457317pt;}
.xd9{left:141.360000pt;}
.x1a{left:143.291467pt;}
.x9{left:146.066667pt;}
.x24{left:147.306667pt;}
.xdf{left:148.860000pt;}
.x1{left:153.910000pt;}
.x21{left:155.336933pt;}
.x89{left:159.100000pt;}
.x1c{left:162.724933pt;}
.xb8{left:164.287840pt;}
.x80{left:168.872443pt;}
.x84{left:169.830280pt;}
.x83{left:172.294714pt;}
.x7e{left:176.355543pt;}
.x49{left:177.933333pt;}
.x35{left:179.766667pt;}
.x7f{left:181.144727pt;}
.xd{left:182.650000pt;}
.x2b{left:188.425493pt;}
.xcd{left:189.433333pt;}
.xf3{left:192.600000pt;}
.xe{left:194.810000pt;}
.xc5{left:196.889173pt;}
.xe9{left:201.653467pt;}
.x96{left:203.719576pt;}
.x97{left:205.859733pt;}
.x93{left:206.832000pt;}
.x92{left:207.993467pt;}
.x73{left:210.625298pt;}
.x59{left:213.183467pt;}
.x88{left:215.404133pt;}
.xf6{left:217.716667pt;}
.x1b{left:218.616000pt;}
.x9a{left:223.100000pt;}
.x68{left:225.311600pt;}
.x87{left:226.352081pt;}
.x57{left:227.681467pt;}
.xdc{left:229.921733pt;}
.x47{left:233.143333pt;}
.x4f{left:234.392933pt;}
.x7b{left:236.443373pt;}
.x7c{left:237.530917pt;}
.x4{left:239.986667pt;}
.x78{left:243.880194pt;}
.x79{left:245.556409pt;}
.x7a{left:247.159172pt;}
.x48{left:248.801253pt;}
.x85{left:255.606561pt;}
.x76{left:257.549323pt;}
.x86{left:259.098674pt;}
.x2a{left:260.573333pt;}
.x82{left:266.990850pt;}
.x74{left:268.265123pt;}
.x81{left:278.584667pt;}
.x14{left:279.480667pt;}
.x50{left:281.808800pt;}
.x53{left:283.108917pt;}
.xd6{left:285.462747pt;}
.x1e{left:287.004400pt;}
.xbf{left:288.313600pt;}
.xa{left:295.266667pt;}
.x7d{left:298.539600pt;}
.x52{left:300.189901pt;}
.xcb{left:302.766667pt;}
.x51{left:305.850267pt;}
.x37{left:315.000000pt;}
.xf0{left:322.536667pt;}
.x75{left:327.391590pt;}
.x28{left:328.503333pt;}
.x99{left:331.353733pt;}
.xe7{left:336.963920pt;}
.xcc{left:338.766667pt;}
.x1d{left:341.289333pt;}
.xe6{left:343.684400pt;}
.xa0{left:353.666667pt;}
.xa6{left:356.528000pt;}
.x5a{left:363.570800pt;}
.x3{left:371.826667pt;}
.x2{left:373.106320pt;}
.xb{left:377.933333pt;}
.x3b{left:385.933733pt;}
.x8{left:388.146667pt;}
.xf1{left:389.479200pt;}
.xd5{left:393.324800pt;}
.xde{left:406.390000pt;}
.x6e{left:411.992933pt;}
.xf4{left:415.476667pt;}
.xe5{left:423.309467pt;}
.x5{left:427.506667pt;}
.xa9{left:428.934667pt;}
.x9d{left:431.933333pt;}
.x56{left:443.965989pt;}
.x55{left:446.962653pt;}
.xf5{left:461.728987pt;}
.x9b{left:489.500000pt;}
.x90{left:495.757067pt;}
.xd7{left:497.821467pt;}
.x25{left:499.433333pt;}
.xb9{left:508.881467pt;}
.x5b{left:513.918036pt;}
.xba{left:519.751600pt;}
.x8d{left:524.880400pt;}
.x54{left:528.691333pt;}
.x8a{left:531.277067pt;}
.xbb{left:532.184113pt;}
.x8b{left:533.357067pt;}
.x8f{left:534.800267pt;}
.x8c{left:535.933067pt;}
.x8e{left:540.880267pt;}
.x7{left:542.706667pt;}
.x27{left:544.503333pt;}
.x91{left:552.266667pt;}
.x41{left:558.000000pt;}
.xe8{left:561.685600pt;}
.x42{left:568.166667pt;}
.x43{left:569.166533pt;}
.x69{left:574.933333pt;}
.xe3{left:578.973733pt;}
.x63{left:580.147600pt;}
.x66{left:581.412858pt;}
.x60{left:584.244400pt;}
.x3e{left:585.928000pt;}
.x64{left:594.698069pt;}
.xc{left:597.600000pt;}
.x65{left:598.493843pt;}
.xe0{left:601.190000pt;}
.x19{left:608.166667pt;}
.x29{left:610.583333pt;}
.xd3{left:613.404107pt;}
.xe1{left:617.030000pt;}
.x16{left:618.646667pt;}
.xa7{left:627.401333pt;}
.xd1{left:630.227920pt;}
.xd4{left:642.047947pt;}
.xab{left:643.026667pt;}
.xd0{left:657.722800pt;}
.xbd{left:660.522667pt;}
.xcf{left:663.322667pt;}
.xd8{left:664.637600pt;}
.x62{left:665.763733pt;}
.x67{left:667.957467pt;}
.xce{left:670.644667pt;}
.x26{left:671.600000pt;}
.x5f{left:675.065733pt;}
.x61{left:679.295467pt;}
.x5e{left:680.865600pt;}
.xe4{left:690.173600pt;}
.x15{left:692.438533pt;}
.x44{left:694.433333pt;}
.xda{left:707.777200pt;}
.x36{left:711.266667pt;}
.xed{left:714.556667pt;}
.xd2{left:717.552747pt;}
.xeb{left:719.676667pt;}
.xec{left:722.562427pt;}
.xea{left:750.100133pt;}
.xb2{left:759.196000pt;}
.xc7{left:768.113333pt;}
.x4c{left:780.121884pt;}
.x4e{left:781.455996pt;}
.x5d{left:782.708817pt;}
.xee{left:792.636667pt;}
.x58{left:796.538800pt;}
.x4d{left:800.950000pt;}
.xe2{left:803.110000pt;}
.x4b{left:804.738400pt;}
.x5c{left:807.325333pt;}
.xef{left:812.956667pt;}
.xc8{left:815.648213pt;}
.xb6{left:818.604000pt;}
.x34{left:844.940747pt;}
.x9e{left:847.776693pt;}
.x6b{left:858.450000pt;}
.x6c{left:859.790000pt;}
.xdb{left:886.766667pt;}
.xc6{left:891.600000pt;}
.xb1{left:968.921333pt;}
.xb3{left:984.930667pt;}
.x3c{left:1064.232000pt;}
}




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