
    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_9779616e6ab7ca3a02c8999f.woff')format("woff");}.ff1{font-family:ff1;line-height:1.040039;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_3a47194aee29f53b93004e6d.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_cc3ddc62cd2c42d25ec6f46c.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_c6195f86fbbf11604cdd151c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_d7f1407d3514906c3da159c6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_538b65353d197e11678686dd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.142090;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_0370a571f9737e764edb1328.woff')format("woff");}.ff9{font-family:ff9;line-height:0.708008;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_9ba6d64557f20329d7ab9cad.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_da6350b54fb728037558aea0.woff')format("woff");}.ffb{font-family:ffb;line-height:0.916016;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_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;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;}
.m9{transform:matrix(0.132981,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.132981,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.132981,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.133378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133378,0.000000,0.000000,0.250000,0,0);}
.m3f{transform:matrix(0.134860,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134860,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134860,0.000000,0.000000,0.250000,0,0);}
.m41{transform:matrix(0.134876,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.134876,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.134876,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.156923,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156923,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156923,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.156930,0.000000,0.000000,0.250000,0,0);}
.m33{transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.157580,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.158003,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.158003,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.158003,0.000000,0.000000,0.250000,0,0);}
.m4b{transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.172810,0.000000,0.000000,0.250000,0,0);}
.m4e{transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175400,0.000000,0.000000,0.250000,0,0);}
.m48{transform:matrix(0.179893,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.179893,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.179893,0.000000,0.000000,0.250000,0,0);}
.m3c{transform:matrix(0.181487,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181487,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181487,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181590,0.000000,0.000000,0.250000,0,0);}
.m2e{transform:matrix(0.181814,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181814,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181814,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.181821,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181821,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181821,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.181952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.181952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.181952,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.182147,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182147,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182147,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.182271,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182271,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182271,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.182279,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182279,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182279,0.000000,0.000000,0.250000,0,0);}
.m2c{transform:matrix(0.182844,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182844,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182844,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183025,0.000000,0.000000,0.250000,0,0);}
.m32{transform:matrix(0.183034,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183034,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183034,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183525,0.000000,0.000000,0.250000,0,0);}
.m51{transform:matrix(0.183892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.183892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.183892,0.000000,0.000000,0.250000,0,0);}
.m55{transform:matrix(0.184377,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184377,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184377,0.000000,0.000000,0.250000,0,0);}
.m57{transform:matrix(0.184417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.184417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.184417,0.000000,0.000000,0.250000,0,0);}
.m30{transform:matrix(0.185191,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.185191,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.185191,0.000000,0.000000,0.250000,0,0);}
.m38{transform:matrix(0.186218,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.186218,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.186218,0.000000,0.000000,0.250000,0,0);}
.m3a{transform:matrix(0.187656,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187656,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187656,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.187759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.187759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.187759,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.237009,0.000000,-0.078995,0.237191,0,0);-ms-transform:matrix(0.237009,0.000000,-0.078995,0.237191,0,0);-webkit-transform:matrix(0.237009,0.000000,-0.078995,0.237191,0,0);}
.m2a{transform:matrix(0.237434,0.000000,-0.079137,0.237144,0,0);-ms-transform:matrix(0.237434,0.000000,-0.079137,0.237144,0,0);-webkit-transform:matrix(0.237434,0.000000,-0.079137,0.237144,0,0);}
.m27{transform:matrix(0.237663,0.000000,-0.079213,0.237119,0,0);-ms-transform:matrix(0.237663,0.000000,-0.079213,0.237119,0,0);-webkit-transform:matrix(0.237663,0.000000,-0.079213,0.237119,0,0);}
.m59{transform:matrix(0.242623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242623,0.000000,0.000000,0.250000,0,0);}
.m54{transform:matrix(0.246128,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246128,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246128,0.000000,0.000000,0.250000,0,0);}
.m47{transform:matrix(0.246133,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246133,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246133,0.000000,0.000000,0.250000,0,0);}
.m49{transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247473,0.000000,0.000000,0.250000,0,0);}
.m4c{transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248344,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248371,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249112,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249115,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249615,0.000000,0.000000,0.250000,0,0);}
.m3d{transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249666,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249807,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249807,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);}
.m2b{transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250042,0.000000,0.000000,0.250000,0,0);}
.m53{transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250115,0.000000,0.000000,0.250000,0,0);}
.m2f{transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250116,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250125,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250306,0.000000,0.000000,0.250000,0,0);}
.m46{transform:matrix(0.250344,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250344,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250344,0.000000,0.000000,0.250000,0,0);}
.m43{transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250461,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250483,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250574,0.000000,0.000000,0.250000,0,0);}
.m3e{transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250653,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250744,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250755,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.250843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250843,0.000000,0.000000,0.250000,0,0);}
.m2d{transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251532,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251782,0.000000,0.000000,0.250000,0,0);}
.m34{transform:matrix(0.251794,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251794,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251794,0.000000,0.000000,0.250000,0,0);}
.m40{transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251882,0.000000,0.000000,0.250000,0,0);}
.m42{transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251911,0.000000,0.000000,0.250000,0,0);}
.m4f{transform:matrix(0.252066,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252066,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252066,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252383,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252470,0.000000,0.000000,0.250000,0,0);}
.m36{transform:matrix(0.252616,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252616,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252616,0.000000,0.000000,0.250000,0,0);}
.m35{transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252682,0.000000,0.000000,0.250000,0,0);}
.m52{transform:matrix(0.252974,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252974,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252974,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253407,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.253460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253460,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.253626,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253626,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253626,0.000000,0.000000,0.250000,0,0);}
.m56{transform:matrix(0.253641,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253641,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253641,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.253782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253782,0.000000,0.000000,0.250000,0,0);}
.m37{transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254625,0.000000,0.000000,0.250000,0,0);}
.m31{transform:matrix(0.254761,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254761,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254761,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.254952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254952,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255017,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255017,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255017,0.000000,0.000000,0.250000,0,0);}
.m50{transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255497,0.000000,0.000000,0.250000,0,0);}
.m58{transform:matrix(0.255649,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255649,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255649,0.000000,0.000000,0.250000,0,0);}
.m39{transform:matrix(0.256174,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256174,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256174,0.000000,0.000000,0.250000,0,0);}
.m5a{transform:matrix(0.256273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256273,0.000000,0.000000,0.250000,0,0);}
.m4a{transform:matrix(0.256756,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.256756,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.256756,0.000000,0.000000,0.250000,0,0);}
.m4d{transform:matrix(0.257523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257523,0.000000,0.000000,0.250000,0,0);}
.m3b{transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258152,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258294,0.000000,0.000000,0.250000,0,0);}
.m44{transform:matrix(0.259542,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.259542,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.259542,0.000000,0.000000,0.250000,0,0);}
.m45{transform:matrix(0.261019,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261019,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261019,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.262386,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262386,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262386,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.263123,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.263123,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.263123,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.vf{vertical-align:-101.477738px;}
.v1d{vertical-align:-78.482521px;}
.v1c{vertical-align:-65.954708px;}
.v9{vertical-align:-52.701580px;}
.vb{vertical-align:-46.991006px;}
.v13{vertical-align:-45.696037px;}
.v12{vertical-align:-40.310515px;}
.va{vertical-align:-37.948976px;}
.v11{vertical-align:-30.091555px;}
.v10{vertical-align:-28.665961px;}
.v3{vertical-align:-26.654223px;}
.v2{vertical-align:-20.880000px;}
.v15{vertical-align:-18.998834px;}
.ve{vertical-align:-17.855814px;}
.v8{vertical-align:-15.405432px;}
.v7{vertical-align:-13.050907px;}
.v14{vertical-align:-7.405971px;}
.v6{vertical-align:-5.801462px;}
.v1a{vertical-align:-2.880000px;}
.vc{vertical-align:-1.303900px;}
.v0{vertical-align:0.000000px;}
.v19{vertical-align:15.696206px;}
.v5{vertical-align:20.880000px;}
.v1b{vertical-align:21.932711px;}
.v1{vertical-align:23.760000px;}
.v4{vertical-align:26.519470px;}
.v16{vertical-align:38.238119px;}
.vd{vertical-align:39.564261px;}
.v18{vertical-align:45.910135px;}
.v17{vertical-align:52.633365px;}
.ls17{letter-spacing:-1.017397px;}
.ls1b{letter-spacing:-0.978000px;}
.ls14{letter-spacing:-0.971927px;}
.ls13{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.684000px;}
.ls70{letter-spacing:-0.572768px;}
.ls93{letter-spacing:-0.540000px;}
.ls67{letter-spacing:-0.427038px;}
.ls79{letter-spacing:-0.426811px;}
.ls4f{letter-spacing:-0.360000px;}
.ls82{letter-spacing:-0.325863px;}
.ls1c{letter-spacing:-0.259800px;}
.ls44{letter-spacing:-0.216353px;}
.lsc{letter-spacing:-0.206400px;}
.ls19{letter-spacing:-0.106800px;}
.lsbc{letter-spacing:-0.008640px;}
.ls9{letter-spacing:0.000000px;}
.ls8d{letter-spacing:0.053280px;}
.lsaa{letter-spacing:0.054798px;}
.ls71{letter-spacing:0.067490px;}
.ls49{letter-spacing:0.072533px;}
.lsab{letter-spacing:0.101674px;}
.ls2{letter-spacing:0.106560px;}
.ls12{letter-spacing:0.106800px;}
.ls90{letter-spacing:0.107765px;}
.ls1d{letter-spacing:0.109440px;}
.ls1a{letter-spacing:0.135600px;}
.ls9f{letter-spacing:0.144651px;}
.lsb1{letter-spacing:0.145272px;}
.ls4b{letter-spacing:0.145275px;}
.ls8c{letter-spacing:0.180000px;}
.ls68{letter-spacing:0.213220px;}
.lsa0{letter-spacing:0.251954px;}
.lsb3{letter-spacing:0.253035px;}
.ls7e{letter-spacing:0.253040px;}
.ls95{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.lsa5{letter-spacing:0.283026px;}
.lsa2{letter-spacing:0.305549px;}
.lsb5{letter-spacing:0.305555px;}
.ls92{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.lsa3{letter-spacing:0.508652px;}
.lsb6{letter-spacing:0.508663px;}
.lsa{letter-spacing:0.756000px;}
.ls26{letter-spacing:0.943376px;}
.ls23{letter-spacing:0.978541px;}
.ls8{letter-spacing:2.340000px;}
.ls5e{letter-spacing:2.733426px;}
.ls64{letter-spacing:4.701300px;}
.ls2a{letter-spacing:6.412944px;}
.ls6{letter-spacing:6.822007px;}
.ls8e{letter-spacing:8.465402px;}
.ls35{letter-spacing:13.274356px;}
.ls98{letter-spacing:15.036924px;}
.lsbb{letter-spacing:16.650720px;}
.ls88{letter-spacing:18.043195px;}
.ls3{letter-spacing:26.586720px;}
.ls7{letter-spacing:30.492629px;}
.ls45{letter-spacing:31.093424px;}
.ls43{letter-spacing:31.211650px;}
.ls30{letter-spacing:35.249182px;}
.lsb8{letter-spacing:41.806131px;}
.ls9e{letter-spacing:46.026720px;}
.lsba{letter-spacing:46.170720px;}
.lsb2{letter-spacing:49.892498px;}
.ls5f{letter-spacing:52.508806px;}
.ls4d{letter-spacing:52.632308px;}
.ls32{letter-spacing:55.951131px;}
.ls38{letter-spacing:56.016869px;}
.ls20{letter-spacing:65.229370px;}
.ls24{letter-spacing:65.629072px;}
.ls10{letter-spacing:68.735150px;}
.ls9b{letter-spacing:77.609422px;}
.ls9a{letter-spacing:79.486259px;}
.ls40{letter-spacing:82.580330px;}
.ls9d{letter-spacing:86.145967px;}
.ls4e{letter-spacing:87.549194px;}
.ls15{letter-spacing:88.496518px;}
.lsf{letter-spacing:96.264131px;}
.ls8a{letter-spacing:96.982768px;}
.ls11{letter-spacing:97.253545px;}
.ls96{letter-spacing:97.728347px;}
.ls33{letter-spacing:97.857989px;}
.ls9c{letter-spacing:98.290603px;}
.ls28{letter-spacing:99.153412px;}
.ls6e{letter-spacing:99.383357px;}
.ls65{letter-spacing:100.159789px;}
.ls89{letter-spacing:100.398973px;}
.ls97{letter-spacing:100.417381px;}
.ls46{letter-spacing:100.551167px;}
.ls58{letter-spacing:102.891396px;}
.ls18{letter-spacing:111.288492px;}
.ls3f{letter-spacing:112.349735px;}
.ls54{letter-spacing:112.904903px;}
.ls22{letter-spacing:121.081197px;}
.lsa9{letter-spacing:122.797157px;}
.ls2d{letter-spacing:125.802965px;}
.ls2b{letter-spacing:126.657041px;}
.ls51{letter-spacing:131.504500px;}
.ls57{letter-spacing:132.075788px;}
.ls3a{letter-spacing:140.470801px;}
.lsb9{letter-spacing:141.051698px;}
.lsad{letter-spacing:143.585411px;}
.lsa7{letter-spacing:146.271312px;}
.ls36{letter-spacing:151.216235px;}
.lsae{letter-spacing:151.434337px;}
.ls2c{letter-spacing:151.729837px;}
.ls2f{letter-spacing:152.234082px;}
.ls16{letter-spacing:152.463433px;}
.ls8b{letter-spacing:161.645965px;}
.ls31{letter-spacing:166.963525px;}
.ls34{letter-spacing:169.633691px;}
.ls81{letter-spacing:169.798332px;}
.ls7b{letter-spacing:170.724233px;}
.lsb0{letter-spacing:175.037387px;}
.lsa4{letter-spacing:175.109683px;}
.lsb7{letter-spacing:175.113475px;}
.ls80{letter-spacing:176.575996px;}
.ls74{letter-spacing:177.205781px;}
.ls7a{letter-spacing:177.708406px;}
.lsa6{letter-spacing:181.208806px;}
.ls50{letter-spacing:185.461159px;}
.ls25{letter-spacing:186.135775px;}
.ls76{letter-spacing:186.522971px;}
.ls7d{letter-spacing:187.020637px;}
.ls84{letter-spacing:187.341120px;}
.ls6c{letter-spacing:187.717482px;}
.ls62{letter-spacing:189.844124px;}
.ls5{letter-spacing:204.908137px;}
.ls4c{letter-spacing:208.088142px;}
.lse{letter-spacing:209.631857px;}
.ls4{letter-spacing:218.027131px;}
.ls6f{letter-spacing:228.151697px;}
.ls66{letter-spacing:229.644836px;}
.ls99{letter-spacing:232.004541px;}
.ls77{letter-spacing:233.049194px;}
.ls7f{letter-spacing:233.808908px;}
.ls6d{letter-spacing:234.482607px;}
.lsd{letter-spacing:237.142753px;}
.lsac{letter-spacing:238.520846px;}
.ls8f{letter-spacing:240.332526px;}
.ls48{letter-spacing:247.563114px;}
.ls21{letter-spacing:252.498552px;}
.ls47{letter-spacing:252.617118px;}
.ls4a{letter-spacing:254.400232px;}
.ls53{letter-spacing:261.761104px;}
.ls59{letter-spacing:262.361122px;}
.ls52{letter-spacing:262.652459px;}
.ls5c{letter-spacing:262.778895px;}
.ls5b{letter-spacing:263.674122px;}
.ls63{letter-spacing:263.858243px;}
.ls6a{letter-spacing:264.524572px;}
.ls78{letter-spacing:267.965414px;}
.ls83{letter-spacing:272.268299px;}
.ls91{letter-spacing:279.713331px;}
.lsa1{letter-spacing:281.535892px;}
.ls42{letter-spacing:284.357358px;}
.ls3e{letter-spacing:287.334298px;}
.lsa8{letter-spacing:290.873678px;}
.ls2e{letter-spacing:292.828665px;}
.ls3c{letter-spacing:292.930946px;}
.ls3b{letter-spacing:304.541014px;}
.ls72{letter-spacing:307.108907px;}
.ls69{letter-spacing:309.020125px;}
.ls60{letter-spacing:312.304935px;}
.ls27{letter-spacing:320.608375px;}
.ls1f{letter-spacing:323.278950px;}
.ls5d{letter-spacing:326.220631px;}
.ls61{letter-spacing:330.942873px;}
.lsb4{letter-spacing:331.862511px;}
.ls73{letter-spacing:334.343769px;}
.ls1e{letter-spacing:336.177914px;}
.ls56{letter-spacing:339.828078px;}
.ls55{letter-spacing:341.916941px;}
.ls41{letter-spacing:353.541455px;}
.ls3d{letter-spacing:358.959487px;}
.ls29{letter-spacing:396.938258px;}
.ls37{letter-spacing:399.557464px;}
.ls87{letter-spacing:492.158523px;}
.ls85{letter-spacing:510.243089px;}
.ls86{letter-spacing:515.703688px;}
.ls39{letter-spacing:519.893535px;}
.lsaf{letter-spacing:563.122644px;}
.ls75{letter-spacing:574.082227px;}
.ls6b{letter-spacing:577.606036px;}
.ls5a{letter-spacing:631.373593px;}
.ls7c{letter-spacing:665.585734px;}
.ls94{letter-spacing:674.912685px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws15{word-spacing:-33.506828px;}
.wse{word-spacing:-22.154788px;}
.ws38{word-spacing:-20.976916px;}
.ws36{word-spacing:-19.279619px;}
.ws74{word-spacing:-18.278458px;}
.ws1{word-spacing:-16.560000px;}
.wsad{word-spacing:-15.300000px;}
.ws7c{word-spacing:-15.292221px;}
.ws86{word-spacing:-15.246600px;}
.ws99{word-spacing:-15.239278px;}
.ws77{word-spacing:-15.110694px;}
.wsb{word-spacing:-15.046800px;}
.ws7e{word-spacing:-15.036675px;}
.ws4d{word-spacing:-15.012023px;}
.ws0{word-spacing:-14.940000px;}
.ws2e{word-spacing:-14.893457px;}
.ws79{word-spacing:-14.888891px;}
.ws7{word-spacing:-14.842660px;}
.ws5{word-spacing:-14.733600px;}
.ws1a{word-spacing:-14.680200px;}
.ws39{word-spacing:-14.580000px;}
.ws19{word-spacing:-13.962000px;}
.ws91{word-spacing:-10.714928px;}
.ws28{word-spacing:-10.694841px;}
.ws93{word-spacing:-10.680257px;}
.wsa5{word-spacing:-10.603181px;}
.wsab{word-spacing:-10.539493px;}
.ws6f{word-spacing:-10.531764px;}
.wsf{word-spacing:-10.518071px;}
.ws3b{word-spacing:-10.513675px;}
.ws45{word-spacing:-10.496236px;}
.ws62{word-spacing:-10.461416px;}
.ws25{word-spacing:-10.458711px;}
.ws2f{word-spacing:-10.446373px;}
.ws2{word-spacing:-10.440000px;}
.ws89{word-spacing:-10.436260px;}
.ws17{word-spacing:-10.435904px;}
.ws4{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.wsaf{word-spacing:-9.711360px;}
.wsc{word-spacing:-8.807734px;}
.ws6{word-spacing:-8.766251px;}
.ws9{word-spacing:-8.592912px;}
.ws41{word-spacing:-7.500807px;}
.wsac{word-spacing:-3.849389px;}
.ws37{word-spacing:-2.163808px;}
.ws34{word-spacing:-1.612371px;}
.ws95{word-spacing:-0.038880px;}
.ws1b{word-spacing:0.000000px;}
.ws13{word-spacing:2.685429px;}
.ws1c{word-spacing:4.255403px;}
.ws10{word-spacing:4.748356px;}
.ws8{word-spacing:5.699582px;}
.wsae{word-spacing:6.623449px;}
.wsa1{word-spacing:7.423466px;}
.ws9d{word-spacing:7.630165px;}
.wsa7{word-spacing:8.320560px;}
.ws9e{word-spacing:8.875038px;}
.wsa2{word-spacing:9.265150px;}
.ws81{word-spacing:9.654825px;}
.ws2c{word-spacing:9.834729px;}
.ws98{word-spacing:10.043897px;}
.ws58{word-spacing:10.208176px;}
.ws67{word-spacing:10.375891px;}
.ws61{word-spacing:10.382791px;}
.wsa0{word-spacing:10.440746px;}
.ws9c{word-spacing:10.672572px;}
.ws3c{word-spacing:10.866461px;}
.ws42{word-spacing:11.008048px;}
.ws7f{word-spacing:11.307580px;}
.ws92{word-spacing:11.352040px;}
.ws9a{word-spacing:12.081909px;}
.ws70{word-spacing:12.245963px;}
.wsa6{word-spacing:12.329005px;}
.wsa3{word-spacing:12.488280px;}
.wsa9{word-spacing:12.734399px;}
.ws7b{word-spacing:12.764688px;}
.ws26{word-spacing:12.931838px;}
.ws78{word-spacing:13.055640px;}
.ws65{word-spacing:13.118943px;}
.ws5d{word-spacing:13.143533px;}
.ws54{word-spacing:13.150532px;}
.ws46{word-spacing:13.181562px;}
.ws84{word-spacing:13.231481px;}
.ws4a{word-spacing:13.270629px;}
.ws18{word-spacing:13.880229px;}
.ws97{word-spacing:14.013341px;}
.ws82{word-spacing:14.143221px;}
.ws68{word-spacing:14.213001px;}
.ws5a{word-spacing:14.334008px;}
.ws31{word-spacing:16.756468px;}
.ws6c{word-spacing:22.256710px;}
.ws60{word-spacing:22.386018px;}
.ws94{word-spacing:24.046794px;}
.wsa8{word-spacing:26.160816px;}
.ws85{word-spacing:27.846253px;}
.wsa{word-spacing:28.076231px;}
.ws69{word-spacing:28.984781px;}
.ws21{word-spacing:30.167065px;}
.ws72{word-spacing:30.464096px;}
.ws3d{word-spacing:34.220347px;}
.ws43{word-spacing:34.347517px;}
.ws4b{word-spacing:34.947990px;}
.ws47{word-spacing:34.991056px;}
.ws8e{word-spacing:35.803871px;}
.wsd{word-spacing:42.905829px;}
.ws2a{word-spacing:44.303518px;}
.ws8a{word-spacing:45.693127px;}
.ws8f{word-spacing:45.812275px;}
.ws9f{word-spacing:53.641966px;}
.ws11{word-spacing:58.543026px;}
.ws7d{word-spacing:59.052303px;}
.ws56{word-spacing:59.744377px;}
.ws80{word-spacing:60.033001px;}
.ws4c{word-spacing:60.033448px;}
.ws6e{word-spacing:61.433887px;}
.wsa4{word-spacing:61.899270px;}
.ws22{word-spacing:63.833730px;}
.ws63{word-spacing:63.921673px;}
.ws50{word-spacing:64.074611px;}
.ws75{word-spacing:64.137323px;}
.ws6d{word-spacing:64.237547px;}
.ws59{word-spacing:64.442891px;}
.ws48{word-spacing:64.683435px;}
.ws44{word-spacing:64.751801px;}
.ws1f{word-spacing:65.271147px;}
.ws3e{word-spacing:65.926712px;}
.ws7a{word-spacing:66.523564px;}
.ws96{word-spacing:66.688978px;}
.ws4f{word-spacing:69.235451px;}
.ws2b{word-spacing:70.445087px;}
.ws3a{word-spacing:73.747512px;}
.ws3f{word-spacing:74.123030px;}
.ws55{word-spacing:79.503675px;}
.ws8b{word-spacing:80.066986px;}
.ws90{word-spacing:80.233966px;}
.ws52{word-spacing:82.686774px;}
.ws14{word-spacing:87.515963px;}
.ws35{word-spacing:93.696642px;}
.ws88{word-spacing:95.178690px;}
.ws8d{word-spacing:95.345670px;}
.ws27{word-spacing:99.503307px;}
.ws29{word-spacing:102.286189px;}
.ws32{word-spacing:110.139486px;}
.ws9b{word-spacing:112.376151px;}
.ws1d{word-spacing:156.098775px;}
.ws73{word-spacing:157.991024px;}
.ws12{word-spacing:175.809396px;}
.ws33{word-spacing:177.360757px;}
.ws2d{word-spacing:196.678585px;}
.ws23{word-spacing:201.486548px;}
.ws83{word-spacing:211.857584px;}
.ws30{word-spacing:223.970230px;}
.ws40{word-spacing:224.751588px;}
.ws5f{word-spacing:230.341923px;}
.ws6b{word-spacing:234.537600px;}
.ws5c{word-spacing:238.918849px;}
.ws6a{word-spacing:243.079982px;}
.wsaa{word-spacing:261.904777px;}
.ws20{word-spacing:263.114982px;}
.ws24{word-spacing:266.295581px;}
.ws66{word-spacing:276.869319px;}
.ws5e{word-spacing:278.474863px;}
.ws57{word-spacing:280.424595px;}
.ws4e{word-spacing:282.346134px;}
.ws53{word-spacing:289.003545px;}
.ws49{word-spacing:290.772696px;}
.ws1e{word-spacing:319.617166px;}
.ws64{word-spacing:329.729308px;}
.ws51{word-spacing:330.797108px;}
.ws5b{word-spacing:331.581473px;}
.ws87{word-spacing:333.647659px;}
.ws8c{word-spacing:334.745914px;}
.ws76{word-spacing:389.147053px;}
.ws16{word-spacing:406.209612px;}
.ws71{word-spacing:480.488166px;}
._3a{margin-left:-728.494581px;}
._42{margin-left:-633.936092px;}
._2c{margin-left:-608.046978px;}
._27{margin-left:-486.313090px;}
._25{margin-left:-428.733515px;}
._8d{margin-left:-385.545217px;}
._40{margin-left:-316.149393px;}
._53{margin-left:-295.158760px;}
._a5{margin-left:-294.158134px;}
._3c{margin-left:-287.229974px;}
._57{margin-left:-270.273074px;}
._88{margin-left:-250.821246px;}
._1f{margin-left:-244.607698px;}
._21{margin-left:-218.332363px;}
._84{margin-left:-207.691721px;}
._20{margin-left:-205.836941px;}
._22{margin-left:-183.244553px;}
._86{margin-left:-163.420207px;}
._9c{margin-left:-161.910908px;}
._87{margin-left:-160.661634px;}
._a0{margin-left:-143.268133px;}
._23{margin-left:-134.586969px;}
._9d{margin-left:-115.731908px;}
._89{margin-left:-88.249806px;}
._52{margin-left:-10.121541px;}
._5d{margin-left:-8.577137px;}
._d{margin-left:-6.094080px;}
._6a{margin-left:-4.796400px;}
._e{margin-left:-3.775680px;}
._c{margin-left:-2.172000px;}
._b{margin-left:-1.074240px;}
._4{width:1.254960px;}
._12{width:2.629440px;}
._11{width:3.932160px;}
._14{width:5.318640px;}
._13{width:6.513840px;}
._18{width:8.364960px;}
._3{width:9.540000px;}
._17{width:10.582560px;}
._1{width:12.420000px;}
._19{width:13.692960px;}
._1d{width:16.851600px;}
._93{width:17.873760px;}
._82{width:18.900000px;}
._15{width:20.856240px;}
._16{width:22.051440px;}
._1b{width:23.327040px;}
._1c{width:24.539280px;}
._83{width:25.876080px;}
._1a{width:27.330960px;}
._7b{width:28.594023px;}
._4b{width:30.234158px;}
._4c{width:31.639029px;}
._9b{width:32.769120px;}
._8a{width:34.362000px;}
._8e{width:35.477760px;}
._55{width:37.359976px;}
._68{width:38.662989px;}
._a4{width:40.397760px;}
._8f{width:41.533200px;}
._10{width:42.544080px;}
._f{width:44.769360px;}
._8c{width:45.776835px;}
._8b{width:47.194705px;}
._3f{width:49.447822px;}
._62{width:51.020007px;}
._5b{width:52.520914px;}
._a6{width:55.038960px;}
._95{width:57.070800px;}
._94{width:59.040000px;}
._56{width:62.726381px;}
._38{width:64.572357px;}
._54{width:66.324452px;}
._32{width:67.618998px;}
._4a{width:68.909931px;}
._37{width:70.700291px;}
._59{width:71.913696px;}
._99{width:73.093179px;}
._31{width:75.020201px;}
._39{width:76.534721px;}
._33{width:79.940682px;}
._5c{width:81.932309px;}
._66{width:84.039915px;}
._6c{width:85.224344px;}
._7d{width:86.928242px;}
._8{width:88.200000px;}
._85{width:89.394865px;}
._9f{width:91.517877px;}
._2d{width:92.647294px;}
._9e{width:93.821835px;}
._6{width:97.380000px;}
._2a{width:99.055704px;}
._7a{width:101.104603px;}
._0{width:102.600000px;}
._98{width:107.076026px;}
._9{width:108.180000px;}
._90{width:109.494878px;}
._24{width:111.408888px;}
._50{width:113.991754px;}
._4d{width:118.259284px;}
._65{width:122.880249px;}
._97{width:124.901158px;}
._48{width:126.180000px;}
._63{width:127.905092px;}
._5e{width:129.945120px;}
._6d{width:141.017010px;}
._92{width:142.180119px;}
._36{width:147.060000px;}
._5f{width:148.273250px;}
._3b{width:150.322982px;}
._60{width:151.323959px;}
._72{width:153.540000px;}
._4e{width:156.618923px;}
._29{width:162.346379px;}
._64{width:163.728135px;}
._2{width:165.060000px;}
._58{width:167.027991px;}
._4f{width:177.300000px;}
._61{width:181.182673px;}
._78{width:182.745635px;}
._5{width:183.960000px;}
._6f{width:189.540000px;}
._3e{width:191.069893px;}
._3d{width:195.950102px;}
._45{width:199.933944px;}
._2f{width:201.060000px;}
._a2{width:211.673312px;}
._41{width:220.777088px;}
._43{width:225.540000px;}
._91{width:228.469361px;}
._a{width:229.860000px;}
._74{width:231.662278px;}
._76{width:232.861230px;}
._9a{width:234.607121px;}
._a1{width:235.717369px;}
._69{width:243.420193px;}
._49{width:245.225959px;}
._a3{width:253.954382px;}
._6b{width:261.183725px;}
._2e{width:271.899668px;}
._46{width:278.096431px;}
._7c{width:284.975028px;}
._81{width:287.689650px;}
._67{width:288.900000px;}
._73{width:290.892812px;}
._77{width:294.660000px;}
._7{width:296.820000px;}
._80{width:301.926337px;}
._5a{width:311.940000px;}
._6e{width:325.820953px;}
._47{width:328.027825px;}
._30{width:335.545320px;}
._28{width:368.954316px;}
._70{width:371.809805px;}
._51{width:390.420000px;}
._71{width:395.056405px;}
._26{width:413.921437px;}
._7f{width:415.216578px;}
._75{width:417.780000px;}
._1e{width:468.180000px;}
._7e{width:474.274697px;}
._35{width:491.725356px;}
._79{width:561.205703px;}
._34{width:575.933549px;}
._2b{width:673.554374px;}
._96{width:686.588383px;}
._44{width:782.934240px;}
.fc6{color:rgb(0,112,192);}
.fc5{color:rgb(24,23,23);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(177,84,7);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,10);}
.fs0{font-size:2.880000px;}
.fs30{font-size:30.003226px;}
.fs2b{font-size:30.018443px;}
.fsc{font-size:34.238258px;}
.fsa{font-size:34.371649px;}
.fs8{font-size:35.065002px;}
.fs10{font-size:35.230935px;}
.fs7{font-size:38.880000px;}
.fs47{font-size:41.473311px;}
.fs46{font-size:41.602488px;}
.fs51{font-size:41.666008px;}
.fs15{font-size:41.743615px;}
.fs24{font-size:41.745039px;}
.fs5{font-size:41.760000px;}
.fs26{font-size:41.785491px;}
.fs1d{font-size:41.834842px;}
.fs60{font-size:41.844802px;}
.fs19{font-size:41.845662px;}
.fs32{font-size:41.984942px;}
.fs29{font-size:42.054699px;}
.fs12{font-size:42.072284px;}
.fs2e{font-size:42.091772px;}
.fs3a{font-size:42.100238px;}
.fs35{font-size:42.122656px;}
.fs40{font-size:42.127055px;}
.fs4e{font-size:42.143939px;}
.fs66{font-size:42.157971px;}
.fs57{font-size:42.183240px;}
.fs44{font-size:42.267382px;}
.fs52{font-size:42.297327px;}
.fs61{font-size:42.298243px;}
.fs5e{font-size:42.412723px;}
.fs68{font-size:42.654010px;}
.fs58{font-size:42.668236px;}
.fs13{font-size:42.721026px;}
.fs1f{font-size:42.779363px;}
.fs49{font-size:42.859710px;}
.fs5b{font-size:47.893331px;}
.fs4f{font-size:48.240000px;}
.fs56{font-size:48.292183px;}
.fs59{font-size:48.763948px;}
.fs3{font-size:54.000000px;}
.fs69{font-size:54.739245px;}
.fsd{font-size:59.240051px;}
.fsb{font-size:59.370641px;}
.fs50{font-size:59.461044px;}
.fse{font-size:59.510323px;}
.fs45{font-size:59.555563px;}
.fs16{font-size:59.571797px;}
.fs25{font-size:59.573829px;}
.fs27{font-size:59.631557px;}
.fs5f{font-size:59.716200px;}
.fs1a{font-size:59.717427px;}
.fs1{font-size:59.760000px;}
.fs1e{font-size:59.869619px;}
.fs33{font-size:59.916192px;}
.fs22{font-size:59.967859px;}
.fs3b{font-size:60.016134px;}
.fs2a{font-size:60.035697px;}
.fs36{font-size:60.048093px;}
.fs11{font-size:60.105776px;}
.fs4d{font-size:60.143095px;}
.fs4b{font-size:60.146700px;}
.fs2f{font-size:60.153270px;}
.fs64{font-size:60.284902px;}
.fs53{font-size:60.323499px;}
.fs62{font-size:60.324805px;}
.fs3f{font-size:60.324942px;}
.fs43{font-size:60.442776px;}
.fs9{font-size:60.722563px;}
.fs5d{font-size:60.734013px;}
.fs54{font-size:60.957113px;}
.fsf{font-size:61.032473px;}
.fs20{font-size:61.033239px;}
.fs48{font-size:61.168884px;}
.fs67{font-size:61.903873px;}
.fs3c{font-size:63.269664px;}
.fs37{font-size:63.290741px;}
.fs38{font-size:63.310157px;}
.fs4{font-size:66.240000px;}
.fs5a{font-size:67.512926px;}
.fs55{font-size:68.075170px;}
.fs2{font-size:72.000000px;}
.fs3d{font-size:80.957419px;}
.fs1b{font-size:81.073442px;}
.fs17{font-size:81.073998px;}
.fs31{font-size:81.200478px;}
.fs21{font-size:81.405866px;}
.fs39{font-size:81.434265px;}
.fs34{font-size:81.477629px;}
.fs28{font-size:81.499513px;}
.fs2c{font-size:81.561126px;}
.fs4a{font-size:81.648641px;}
.fs4c{font-size:81.651896px;}
.fs63{font-size:81.786843px;}
.fs3e{font-size:81.820914px;}
.fs65{font-size:82.069006px;}
.fs41{font-size:82.083949px;}
.fs5c{font-size:82.375751px;}
.fs18{font-size:93.862934px;}
.fs1c{font-size:94.054651px;}
.fs2d{font-size:94.524009px;}
.fs42{font-size:95.065107px;}
.fs6{font-size:95.760000px;}
.fs14{font-size:109.723766px;}
.fs23{font-size:109.727510px;}
.y0{bottom:0.000000px;}
.y48{bottom:3.261667px;}
.y1f9{bottom:3.288353px;}
.y5a{bottom:3.323024px;}
.y197{bottom:3.380227px;}
.y29c{bottom:3.938494px;}
.y285{bottom:4.304628px;}
.y146{bottom:4.364745px;}
.y41{bottom:4.375313px;}
.y233{bottom:4.492784px;}
.yaa{bottom:4.525875px;}
.yb2{bottom:4.532392px;}
.y177{bottom:4.580603px;}
.y26f{bottom:4.604935px;}
.y180{bottom:4.605029px;}
.y243{bottom:4.968002px;}
.y21b{bottom:5.005665px;}
.y279{bottom:5.005774px;}
.y282{bottom:5.014864px;}
.y242{bottom:5.076031px;}
.y1ad{bottom:5.077770px;}
.y257{bottom:5.112203px;}
.y230{bottom:5.118304px;}
.yfe{bottom:5.161281px;}
.y5e{bottom:5.178186px;}
.y4b{bottom:5.245784px;}
.y20f{bottom:5.271165px;}
.y2{bottom:5.400000px;}
.y121{bottom:5.456973px;}
.y216{bottom:5.477240px;}
.y274{bottom:5.477359px;}
.yd3{bottom:5.573194px;}
.y18c{bottom:5.648351px;}
.y1d8{bottom:5.696804px;}
.y22{bottom:5.760000px;}
.y145{bottom:5.856093px;}
.y110{bottom:6.039110px;}
.y20{bottom:6.120000px;}
.y1c3{bottom:6.167394px;}
.y1be{bottom:6.186603px;}
.y1ac{bottom:6.579582px;}
.y8c{bottom:6.618995px;}
.y256{bottom:6.624199px;}
.yfd{bottom:6.651386px;}
.y18b{bottom:6.662177px;}
.y1ba{bottom:6.767965px;}
.y239{bottom:6.984050px;}
.y22a{bottom:7.042213px;}
.y70{bottom:7.056000px;}
.ya1{bottom:7.132897px;}
.yaf{bottom:7.143169px;}
.y1d2{bottom:7.194086px;}
.y15f{bottom:7.198026px;}
.ye7{bottom:7.232985px;}
.y1c5{bottom:7.234462px;}
.y10{bottom:7.236000px;}
.y59{bottom:7.269134px;}
.y29d{bottom:7.486635px;}
.y224{bottom:7.534976px;}
.y4e{bottom:7.620668px;}
.y27c{bottom:7.645023px;}
.y95{bottom:7.657313px;}
.y1c7{bottom:7.680149px;}
.y22f{bottom:7.768205px;}
.y24e{bottom:8.136194px;}
.y67{bottom:8.464036px;}
.y1e0{bottom:8.464325px;}
.y19{bottom:8.820000px;}
.y1ab{bottom:8.832372px;}
.y27d{bottom:8.872430px;}
.y96{bottom:8.881071px;}
.y1b8{bottom:8.892034px;}
.y255{bottom:8.892266px;}
.y1c8{bottom:8.907556px;}
.y81{bottom:8.956126px;}
.yfc{bottom:9.013889px;}
.y60{bottom:9.070841px;}
.y4c{bottom:9.073796px;}
.y65{bottom:9.368303px;}
.y98{bottom:9.368623px;}
.y218{bottom:9.394724px;}
.y276{bottom:9.394927px;}
.y1b7{bottom:9.467940px;}
.ya5{bottom:9.558736px;}
.y47{bottom:9.891534px;}
.y12d{bottom:9.966257px;}
.y232{bottom:9.975962px;}
.y90{bottom:10.116003px;}
.y106{bottom:10.150060px;}
.y87{bottom:10.152062px;}
.y22b{bottom:10.200248px;}
.y8d{bottom:10.569064px;}
.y1b9{bottom:10.692017px;}
.yd2{bottom:11.001543px;}
.ya4{bottom:11.007016px;}
.y7c{bottom:11.022866px;}
.y163{bottom:11.087972px;}
.y1d3{bottom:11.101438px;}
.y3d{bottom:11.134027px;}
.ydd{bottom:11.340136px;}
.y1a5{bottom:11.979116px;}
.y24f{bottom:12.060348px;}
.y68{bottom:12.298191px;}
.y9a{bottom:12.298610px;}
.y3e{bottom:12.379027px;}
.y241{bottom:12.492049px;}
.y269{bottom:12.545463px;}
.y17b{bottom:12.545720px;}
.y240{bottom:12.600078px;}
.y91{bottom:12.744018px;}
.y1c2{bottom:12.830949px;}
.y1bf{bottom:12.870914px;}
.y209{bottom:13.213928px;}
.y29e{bottom:13.624947px;}
.y131{bottom:13.858274px;}
.ya9{bottom:13.903576px;}
.yb1{bottom:13.923597px;}
.y26e{bottom:13.959629px;}
.y17f{bottom:13.959916px;}
.y144{bottom:14.003706px;}
.y44{bottom:14.284223px;}
.y8{bottom:14.580000px;}
.y20e{bottom:14.585889px;}
.y85{bottom:14.868391px;}
.y18a{bottom:14.989637px;}
.y1d7{bottom:15.118223px;}
.y176{bottom:15.123421px;}
.yd{bottom:15.300000px;}
.y84{bottom:15.444742px;}
.y143{bottom:15.494307px;}
.y1aa{bottom:16.019226px;}
.y254{bottom:16.127854px;}
.y9f{bottom:16.257477px;}
.y78{bottom:16.280888px;}
.y40{bottom:16.326928px;}
.y88{bottom:16.631435px;}
.y120{bottom:16.953355px;}
.y80{bottom:18.346884px;}
.y21a{bottom:18.752818px;}
.y278{bottom:18.753224px;}
.yfb{bottom:18.790810px;}
.y7a{bottom:18.891664px;}
.y66{bottom:18.989624px;}
.y99{bottom:18.990272px;}
.y22e{bottom:19.021529px;}
.yb5{bottom:19.392176px;}
.y23f{bottom:19.619596px;}
.y23e{bottom:19.727477px;}
.y22d{bottom:19.782986px;}
.y189{bottom:20.276513px;}
.y5d{bottom:20.891888px;}
.y11f{bottom:20.991575px;}
.y26d{bottom:20.994442px;}
.y76{bottom:20.994873px;}
.y7f{bottom:21.283636px;}
.y188{bottom:21.290190px;}
.y1d6{bottom:21.472824px;}
.y75{bottom:21.538165px;}
.y20d{bottom:21.589457px;}
.y156{bottom:21.703169px;}
.y1a9{bottom:22.385521px;}
.ya8{bottom:22.412369px;}
.y253{bottom:22.537320px;}
.y1a1{bottom:22.599835px;}
.y196{bottom:22.607460px;}
.ya7{bottom:22.737875px;}
.y24b{bottom:22.753087px;}
.y79{bottom:22.770618px;}
.y23d{bottom:22.860464px;}
.y15c{bottom:22.903014px;}
.y1d5{bottom:22.932928px;}
.ye3{bottom:22.934218px;}
.y1a8{bottom:23.135619px;}
.yfa{bottom:23.262467px;}
.y252{bottom:23.292505px;}
.y1a4{bottom:23.850488px;}
.y24d{bottom:24.012221px;}
.y105{bottom:24.811755px;}
.y10c{bottom:25.102973px;}
.yd1{bottom:25.188193px;}
.ybf{bottom:25.223847px;}
.yb6{bottom:25.391026px;}
.yf9{bottom:25.588565px;}
.y26b{bottom:25.744053px;}
.y17d{bottom:25.744582px;}
.y1f{bottom:25.920000px;}
.y3f{bottom:25.967423px;}
.ydc{bottom:26.060051px;}
.y92{bottom:26.136801px;}
.y89{bottom:26.172269px;}
.y20c{bottom:26.320256px;}
.y19a{bottom:26.497220px;}
.ye6{bottom:26.823978px;}
.y129{bottom:27.134822px;}
.y237{bottom:27.827432px;}
.y228{bottom:28.059177px;}
.y142{bottom:28.226307px;}
.yf8{bottom:28.459259px;}
.yb7{bottom:28.462284px;}
.ya0{bottom:28.821424px;}
.y238{bottom:28.944667px;}
.y10f{bottom:28.958995px;}
.y229{bottom:29.185716px;}
.yc5{bottom:29.313678px;}
.y175{bottom:29.373821px;}
.y141{bottom:29.753788px;}
.y23c{bottom:30.060425px;}
.y23b{bottom:30.168306px;}
.y22c{bottom:30.310766px;}
.y5f{bottom:30.461901px;}
.y23a{bottom:30.527417px;}
.y11e{bottom:30.595788px;}
.y217{bottom:30.869038px;}
.y275{bottom:30.869706px;}
.y11d{bottom:31.178224px;}
.y1a3{bottom:31.395510px;}
.y7e{bottom:31.436492px;}
.ya3{bottom:32.225119px;}
.y7b{bottom:32.271524px;}
.y219{bottom:32.319351px;}
.y277{bottom:32.320051px;}
.y162{bottom:32.464467px;}
.ya2{bottom:32.694800px;}
.y3c{bottom:32.796959px;}
.y86{bottom:32.868291px;}
.y184{bottom:32.876132px;}
.y1d0{bottom:33.158153px;}
.y187{bottom:33.672805px;}
.y185{bottom:34.071141px;}
.y1d1{bottom:34.363414px;}
.y26c{bottom:34.409749px;}
.y17e{bottom:34.410455px;}
.y186{bottom:34.686482px;}
.y7d{bottom:34.700707px;}
.yd0{bottom:34.850475px;}
.y20b{bottom:34.948925px;}
.y1d4{bottom:34.984033px;}
.y26a{bottom:35.243275px;}
.y17c{bottom:35.243999px;}
.y1a2{bottom:35.294260px;}
.y24c{bottom:35.533595px;}
.y20a{bottom:35.778890px;}
.ya6{bottom:35.808661px;}
.yb0{bottom:35.860225px;}
.y1a7{bottom:35.901972px;}
.y251{bottom:36.145427px;}
.y130{bottom:36.664037px;}
.y190{bottom:37.072832px;}
.y1a6{bottom:37.403637px;}
.yf7{bottom:37.510001px;}
.y250{bottom:37.657275px;}
.y193{bottom:38.309737px;}
.y11c{bottom:38.454188px;}
.y11{bottom:38.700000px;}
.y7{bottom:38.880000px;}
.y9e{bottom:38.922522px;}
.y77{bottom:38.978571px;}
.yf6{bottom:39.836099px;}
.ybe{bottom:39.953480px;}
.yff{bottom:40.089746px;}
.y109{bottom:42.201190px;}
.y140{bottom:42.484295px;}
.y10b{bottom:42.564092px;}
.yf5{bottom:42.706793px;}
.y13f{bottom:43.247289px;}
.y174{bottom:43.624220px;}
.yc{bottom:44.100000px;}
.y11b{bottom:44.820657px;}
.ybd{bottom:45.236241px;}
.y11a{bottom:45.365757px;}
.y1e{bottom:45.720000px;}
.yc0{bottom:46.467796px;}
.ydb{bottom:46.814391px;}
.yeb{bottom:47.069531px;}
.y15b{bottom:47.696829px;}
.y199{bottom:47.867775px;}
.yf4{bottom:48.740621px;}
.y104{bottom:48.932054px;}
.ycf{bottom:49.072036px;}
.ye5{bottom:49.649276px;}
.ydf{bottom:49.976034px;}
.y10e{bottom:51.732225px;}
.yc4{bottom:52.582487px;}
.y173{bottom:52.603658px;}
.ye2{bottom:52.666190px;}
.yf{bottom:53.100000px;}
.y6f{bottom:53.280000px;}
.yce{bottom:53.705594px;}
.yf3{bottom:54.083633px;}
.y128{bottom:54.123316px;}
.y15e{bottom:55.221231px;}
.yf2{bottom:55.574185px;}
.yf1{bottom:56.191892px;}
.yc6{bottom:56.491077px;}
.y13e{bottom:56.742283px;}
.y164{bottom:57.656737px;}
.y172{bottom:57.838803px;}
.y119{bottom:57.917990px;}
.y118{bottom:58.245050px;}
.y117{bottom:58.827485px;}
.y15a{bottom:59.111773px;}
.y116{bottom:59.554783px;}
.yea{bottom:60.844087px;}
.yca{bottom:60.943393px;}
.y171{bottom:62.020353px;}
.ye9{bottom:62.043691px;}
.ycd{bottom:62.571600px;}
.y6{bottom:63.210000px;}
.yc1{bottom:63.837324px;}
.y1d{bottom:65.700000px;}
.y13d{bottom:65.726502px;}
.yc3{bottom:66.551498px;}
.y195{bottom:66.840614px;}
.y10d{bottom:67.193649px;}
.ye1{bottom:67.386702px;}
.ycc{bottom:67.964295px;}
.yf0{bottom:68.331167px;}
.y12c{bottom:68.345469px;}
.yef{bottom:69.821719px;}
.y170{bottom:70.599843px;}
.y161{bottom:70.926666px;}
.y13c{bottom:70.964435px;}
.ye8{bottom:71.021323px;}
.y16f{bottom:72.089203px;}
.y132{bottom:72.236590px;}
.y115{bottom:72.287720px;}
.yb{bottom:73.110000px;}
.y114{bottom:73.779651px;}
.yc9{bottom:74.695507px;}
.y13b{bottom:75.146718px;}
.yc8{bottom:75.925576px;}
.y159{bottom:80.488119px;}
.yc2{bottom:81.281131px;}
.ycb{bottom:82.185856px;}
.y6d{bottom:83.196000px;}
.y13a{bottom:83.730777px;}
.y127{bottom:84.059267px;}
.y16e{bottom:84.086162px;}
.y5{bottom:84.450000px;}
.yc7{bottom:84.864376px;}
.y19d{bottom:84.942099px;}
.y139{bottom:85.222423px;}
.y1c{bottom:85.500000px;}
.y16d{bottom:85.577014px;}
.y157{bottom:87.212624px;}
.y194{bottom:87.559145px;}
.y208{bottom:90.756000px;}
.y1b5{bottom:91.296000px;}
.y198{bottom:91.447414px;}
.yee{bottom:92.320260px;}
.ya{bottom:92.370000px;}
.y12f{bottom:93.588483px;}
.y19c{bottom:94.355408px;}
.y113{bottom:96.188486px;}
.y138{bottom:97.225770px;}
.y137{bottom:98.717417px;}
.y125{bottom:100.353897px;}
.y2a0{bottom:102.096000px;}
.yed{bottom:102.351275px;}
.y19b{bottom:102.933173px;}
.y6c{bottom:103.176000px;}
.y192{bottom:103.259931px;}
.yd9{bottom:104.896704px;}
.y1b{bottom:105.300000px;}
.yd8{bottom:105.441300px;}
.y112{bottom:105.574659px;}
.y10a{bottom:106.157095px;}
.yde{bottom:106.676713px;}
.y4{bottom:106.950000px;}
.y16c{bottom:108.080080px;}
.y102{bottom:108.812404px;}
.y16b{bottom:109.097859px;}
.y15d{bottom:109.570932px;}
.y108{bottom:110.013117px;}
.y9{bottom:110.190000px;}
.y207{bottom:110.556000px;}
.y1b4{bottom:111.096000px;}
.ye0{bottom:112.819460px;}
.yda{bottom:113.437167px;}
.y160{bottom:113.459983px;}
.yec{bottom:115.872184px;}
.ye4{bottom:116.709221px;}
.y103{bottom:116.743981px;}
.y16a{bottom:117.495283px;}
.y111{bottom:118.707835px;}
.y29b{bottom:118.890000px;}
.y191{bottom:119.544105px;}
.y107{bottom:119.545646px;}
.y39{bottom:120.636000px;}
.y136{bottom:121.195137px;}
.y169{bottom:122.803553px;}
.y6b{bottom:122.976000px;}
.y168{bottom:123.821332px;}
.y151{bottom:125.269914px;}
.y167{bottom:125.274876px;}
.y12b{bottom:125.305749px;}
.y29f{bottom:126.396000px;}
.y3{bottom:126.750000px;}
.y14c{bottom:126.760067px;}
.y206{bottom:126.936000px;}
.y248{bottom:128.556000px;}
.y14d{bottom:130.652682px;}
.y135{bottom:130.834845px;}
.y1b3{bottom:130.896000px;}
.y150{bottom:134.690130px;}
.y155{bottom:135.491467px;}
.y166{bottom:136.291364px;}
.y158{bottom:136.689820px;}
.y165{bottom:137.309143px;}
.y12a{bottom:138.582745px;}
.y14f{bottom:141.019548px;}
.y124{bottom:141.237547px;}
.y38{bottom:142.056000px;}
.y126{bottom:142.473866px;}
.y6a{bottom:142.776000px;}
.y134{bottom:145.092832px;}
.y247{bottom:148.356000px;}
.y29a{bottom:150.330000px;}
.y1b2{bottom:150.690000px;}
.y12e{bottom:152.046383px;}
.y14a{bottom:152.688432px;}
.y14b{bottom:153.897875px;}
.y14e{bottom:154.510063px;}
.y133{bottom:158.586333px;}
.y37{bottom:158.610000px;}
.y69{bottom:162.570000px;}
.y246{bottom:168.150000px;}
.y299{bottom:170.130000px;}
.y1b1{bottom:170.670000px;}
.y64{bottom:179.190000px;}
.y245{bottom:187.950000px;}
.y298{bottom:189.930000px;}
.y1b0{bottom:190.470000px;}
.y63{bottom:191.190000px;}
.y236{bottom:204.540000px;}
.y297{bottom:209.730000px;}
.y1af{bottom:210.270000px;}
.y62{bottom:213.540000px;}
.y244{bottom:219.540000px;}
.y61{bottom:221.070000px;}
.y235{bottom:223.950000px;}
.y296{bottom:229.710000px;}
.y1ae{bottom:230.070000px;}
.y101{bottom:234.465000px;}
.y5c{bottom:238.590000px;}
.y1a0{bottom:246.690000px;}
.y295{bottom:249.510000px;}
.y1fc{bottom:251.130000px;}
.y234{bottom:252.030000px;}
.y2cc{bottom:254.190000px;}
.y5b{bottom:259.590000px;}
.y1fb{bottom:267.765000px;}
.y294{bottom:269.310000px;}
.y19f{bottom:270.570000px;}
.y2cb{bottom:274.170000px;}
.y1fa{bottom:275.250000px;}
.y58{bottom:287.715000px;}
.y293{bottom:289.110000px;}
.y1f8{bottom:292.965000px;}
.y2ca{bottom:293.970000px;}
.y57{bottom:295.230000px;}
.y100{bottom:298.830000px;}
.y1f7{bottom:300.450000px;}
.y19e{bottom:308.010000px;}
.y292{bottom:308.910000px;}
.y2c9{bottom:313.770000px;}
.y56{bottom:315.930000px;}
.y1f6{bottom:321.150000px;}
.y18f{bottom:324.615000px;}
.y291{bottom:328.935000px;}
.y2c8{bottom:333.615000px;}
.y55{bottom:335.955000px;}
.y36{bottom:339.915000px;}
.y1f5{bottom:340.995000px;}
.y290{bottom:348.735000px;}
.y2c7{bottom:353.415000px;}
.y54{bottom:355.755000px;}
.y35{bottom:359.895000px;}
.y1f4{bottom:360.795000px;}
.y28f{bottom:368.535000px;}
.y205{bottom:369.795000px;}
.y2c6{bottom:373.395000px;}
.yd7{bottom:373.590000px;}
.y53{bottom:375.555000px;}
.y34{bottom:379.695000px;}
.y1f3{bottom:380.775000px;}
.y18e{bottom:387.615000px;}
.y28e{bottom:388.335000px;}
.y204{bottom:391.215000px;}
.y2c5{bottom:393.195000px;}
.y52{bottom:395.355000px;}
.y33{bottom:399.495000px;}
.y1f2{bottom:400.575000px;}
.y203{bottom:407.775000px;}
.y28d{bottom:408.135000px;}
.y2c4{bottom:412.995000px;}
.y51{bottom:415.155000px;}
.y32{bottom:419.295000px;}
.y1f1{bottom:420.375000px;}
.y28c{bottom:428.115000px;}
.y2c3{bottom:432.795000px;}
.y50{bottom:435.135000px;}
.yd6{bottom:436.575000px;}
.y31{bottom:439.095000px;}
.y1f0{bottom:440.175000px;}
.y28b{bottom:447.915000px;}
.y2c2{bottom:452.595000px;}
.y4f{bottom:454.935000px;}
.y30{bottom:459.075000px;}
.y1ef{bottom:459.975000px;}
.y18d{bottom:463.935000px;}
.y28a{bottom:467.715000px;}
.y4a{bottom:471.540000px;}
.y2c1{bottom:472.575000px;}
.y4d{bottom:472.965000px;}
.y2f{bottom:478.875000px;}
.y1ee{bottom:479.955000px;}
.y49{bottom:480.495000px;}
.y183{bottom:480.540000px;}
.y289{bottom:487.515000px;}
.y2c0{bottom:492.375000px;}
.y2e{bottom:498.675000px;}
.y46{bottom:499.740000px;}
.y1ed{bottom:499.755000px;}
.y45{bottom:502.815000px;}
.y182{bottom:502.995000px;}
.y227{bottom:504.465000px;}
.y288{bottom:507.315000px;}
.y2bf{bottom:512.175000px;}
.yd5{bottom:513.075000px;}
.y2d{bottom:518.475000px;}
.y231{bottom:519.390000px;}
.y1ec{bottom:519.555000px;}
.y43{bottom:521.940000px;}
.y226{bottom:523.875000px;}
.y287{bottom:527.295000px;}
.y42{bottom:529.455000px;}
.y2be{bottom:531.975000px;}
.yd4{bottom:532.875000px;}
.y1eb{bottom:536.115000px;}
.y2c{bottom:538.275000px;}
.y181{bottom:538.995000px;}
.y286{bottom:547.095000px;}
.y3b{bottom:548.565000px;}
.ybc{bottom:549.465000px;}
.y2bd{bottom:551.775000px;}
.y225{bottom:552.315000px;}
.y17a{bottom:555.540000px;}
.y2b{bottom:558.255000px;}
.y1ea{bottom:561.675000px;}
.y284{bottom:563.640000px;}
.y3a{bottom:565.095000px;}
.y283{bottom:568.155000px;}
.y2bc{bottom:571.755000px;}
.y2a{bottom:578.055000px;}
.y179{bottom:581.115000px;}
.y281{bottom:584.715000px;}
.y1e8{bottom:591.240000px;}
.y2bb{bottom:591.555000px;}
.y280{bottom:593.715000px;}
.ybb{bottom:595.905000px;}
.y29{bottom:597.885000px;}
.y1e9{bottom:603.285000px;}
.y2ba{bottom:611.385000px;}
.y178{bottom:613.905000px;}
.y27f{bottom:615.885000px;}
.y28{bottom:617.685000px;}
.y1e7{bottom:628.845000px;}
.y154{bottom:630.240000px;}
.y2b9{bottom:631.185000px;}
.y27b{bottom:632.415000px;}
.y27{bottom:637.485000px;}
.y27e{bottom:641.445000px;}
.y1e6{bottom:648.645000px;}
.y202{bottom:650.625000px;}
.y2b8{bottom:650.985000px;}
.yba{bottom:655.845000px;}
.y26{bottom:657.285000px;}
.y27a{bottom:663.765000px;}
.y1e5{bottom:668.445000px;}
.y2b7{bottom:670.965000px;}
.y201{bottom:672.045000px;}
.yb9{bottom:675.645000px;}
.y25{bottom:677.265000px;}
.y273{bottom:680.115000px;}
.y1e4{bottom:688.245000px;}
.y200{bottom:688.605000px;}
.y2b6{bottom:690.765000px;}
.yb8{bottom:695.445000px;}
.y24{bottom:697.065000px;}
.y272{bottom:701.205000px;}
.y153{bottom:703.725000px;}
.y1e3{bottom:708.225000px;}
.y2b5{bottom:710.565000px;}
.yb4{bottom:711.990000px;}
.y23{bottom:716.865000px;}
.y1e2{bottom:728.025000px;}
.y2b4{bottom:730.365000px;}
.yb3{bottom:731.445000px;}
.y21{bottom:731.625000px;}
.y271{bottom:735.945000px;}
.y1df{bottom:744.390000px;}
.y2b3{bottom:750.165000px;}
.y1a{bottom:752.325000px;}
.y270{bottom:755.925000px;}
.y1e1{bottom:756.465000px;}
.yae{bottom:761.115000px;}
.y2b2{bottom:770.145000px;}
.y268{bottom:772.440000px;}
.y1de{bottom:782.205000px;}
.yad{bottom:783.645000px;}
.y2b1{bottom:789.945000px;}
.y152{bottom:790.845000px;}
.y223{bottom:797.865000px;}
.y267{bottom:798.045000px;}
.y1dd{bottom:802.005000px;}
.y222{bottom:805.425000px;}
.y149{bottom:807.390000px;}
.y2b0{bottom:809.745000px;}
.yac{bottom:819.465000px;}
.y1dc{bottom:821.805000px;}
.y220{bottom:821.940000px;}
.y2af{bottom:829.545000px;}
.y266{bottom:830.805000px;}
.yab{bottom:839.265000px;}
.y1db{bottom:841.605000px;}
.y221{bottom:844.485000px;}
.y2ae{bottom:849.345000px;}
.y265{bottom:850.605000px;}
.y9d{bottom:855.840000px;}
.y1da{bottom:858.165000px;}
.y2ad{bottom:869.370000px;}
.y264{bottom:870.450000px;}
.y18{bottom:872.430000px;}
.y9c{bottom:878.370000px;}
.y21f{bottom:880.710000px;}
.y1d9{bottom:883.770000px;}
.y2ac{bottom:889.170000px;}
.y263{bottom:890.250000px;}
.y148{bottom:891.510000px;}
.y21e{bottom:900.690000px;}
.y17{bottom:901.950000px;}
.y2ab{bottom:908.970000px;}
.y262{bottom:910.230000px;}
.y1cf{bottom:913.215000px;}
.y9b{bottom:914.190000px;}
.y1ff{bottom:920.130000px;}
.y21d{bottom:920.490000px;}
.y16{bottom:926.970000px;}
.y2aa{bottom:928.770000px;}
.y261{bottom:930.030000px;}
.y97{bottom:930.690000px;}
.y94{bottom:933.765000px;}
.y1ce{bottom:935.790000px;}
.y21c{bottom:940.290000px;}
.y1fe{bottom:941.550000px;}
.y15{bottom:942.090000px;}
.y93{bottom:942.810000px;}
.y2a9{bottom:948.570000px;}
.y260{bottom:949.830000px;}
.y215{bottom:956.790000px;}
.y1fd{bottom:958.110000px;}
.y14{bottom:963.330000px;}
.y8f{bottom:965.040000px;}
.y2a8{bottom:968.550000px;}
.y25f{bottom:969.630000px;}
.y1cd{bottom:972.150000px;}
.y214{bottom:977.910000px;}
.y8e{bottom:981.690000px;}
.y13{bottom:986.910000px;}
.y2a7{bottom:988.350000px;}
.y147{bottom:988.710000px;}
.y25e{bottom:989.430000px;}
.y1cc{bottom:991.950000px;}
.y123{bottom:1005.390000px;}
.y2a6{bottom:1008.150000px;}
.y25d{bottom:1009.410000px;}
.y1cb{bottom:1011.750000px;}
.y213{bottom:1012.650000px;}
.y8b{bottom:1012.740000px;}
.y12{bottom:1018.590000px;}
.y8a{bottom:1023.270000px;}
.y2a5{bottom:1027.950000px;}
.y1ca{bottom:1028.265000px;}
.y25c{bottom:1029.210000px;}
.y212{bottom:1032.450000px;}
.y1c9{bottom:1037.310000px;}
.y83{bottom:1041.015000px;}
.ye{bottom:1045.410000px;}
.y2a4{bottom:1047.750000px;}
.y25b{bottom:1049.010000px;}
.y211{bottom:1052.250000px;}
.y1c6{bottom:1056.315000px;}
.y82{bottom:1057.650000px;}
.y1c4{bottom:1057.740000px;}
.y1c1{bottom:1059.390000px;}
.y1c0{bottom:1065.390000px;}
.y1{bottom:1067.730000px;}
.y25a{bottom:1068.810000px;}
.y210{bottom:1072.050000px;}
.y1bd{bottom:1085.640000px;}
.y2a3{bottom:1087.530000px;}
.y74{bottom:1088.565000px;}
.y259{bottom:1088.610000px;}
.y122{bottom:1089.510000px;}
.y1bc{bottom:1091.670000px;}
.y2a2{bottom:1107.330000px;}
.y258{bottom:1108.590000px;}
.y73{bottom:1111.110000px;}
.y1b6{bottom:1112.340000px;}
.y1bb{bottom:1122.810000px;}
.y24a{bottom:1125.090000px;}
.y2a1{bottom:1127.130000px;}
.y72{bottom:1146.960000px;}
.y249{bottom:1149.120000px;}
.y71{bottom:1166.940000px;}
.y6e{bottom:1193.400000px;}
.h3{height:2.373750px;}
.hda{height:18.224877px;}
.h1c{height:19.499268px;}
.h13{height:19.800000px;}
.hb8{height:21.225204px;}
.h35{height:22.356000px;}
.h22{height:22.499259px;}
.ha{height:22.536000px;}
.h11{height:22.860000px;}
.h1a{height:23.924896px;}
.h96{height:23.999415px;}
.h1b{height:23.999736px;}
.h16{height:24.483864px;}
.h66{height:24.729222px;}
.h5c{height:24.741763px;}
.h4a{height:25.349267px;}
.h9d{height:25.424865px;}
.hdc{height:25.724019px;}
.h46{height:25.799618px;}
.hf{height:27.147656px;}
.h1d{height:28.219814px;}
.h1f{height:28.329758px;}
.h91{height:28.799726px;}
.h17{height:28.901232px;}
.h99{height:28.958416px;}
.h24{height:29.037998px;}
.h30{height:29.147153px;}
.h4f{height:29.148148px;}
.h52{height:29.176392px;}
.h42{height:29.210852px;}
.h39{height:29.218407px;}
.h6e{height:29.315658px;}
.h5a{height:29.364365px;}
.h64{height:29.390251px;}
.h80{height:29.396162px;}
.h77{height:29.411816px;}
.hdd{height:29.782829px;}
.hc0{height:29.792763px;}
.h2e{height:31.649373px;}
.h4d{height:31.650453px;}
.h26{height:32.633342px;}
.hc4{height:33.441144px;}
.hbc{height:33.719640px;}
.h31{height:34.405870px;}
.ha8{height:34.407044px;}
.h53{height:34.440385px;}
.h49{height:34.481061px;}
.h3b{height:34.489979px;}
.h70{height:34.604776px;}
.h5d{height:34.662272px;}
.h2a{height:34.676766px;}
.h67{height:34.692828px;}
.h82{height:34.699805px;}
.h79{height:34.718283px;}
.h8d{height:34.721909px;}
.ha4{height:34.735825px;}
.hd9{height:34.747390px;}
.hbd{height:34.768217px;}
.hb5{height:34.862250px;}
.hd2{height:34.863005px;}
.hca{height:34.957362px;}
.had{height:35.211471px;}
.h47{height:35.259553px;}
.hac{height:35.325777px;}
.h8{height:37.705078px;}
.h98{height:38.535117px;}
.haa{height:38.667158px;}
.h72{height:38.889373px;}
.h5f{height:38.953987px;}
.h57{height:38.970275px;}
.h69{height:38.988326px;}
.h8f{height:39.021008px;}
.hc5{height:39.474581px;}
.hdf{height:39.509110px;}
.h2d{height:39.571185px;}
.hbe{height:39.803323px;}
.h3e{height:41.463955px;}
.hb1{height:41.518210px;}
.ha7{height:41.596961px;}
.h74{height:41.601965px;}
.h87{height:41.637269px;}
.hce{height:41.696370px;}
.h3a{height:41.697227px;}
.h6{height:41.726953px;}
.h6b{height:41.766577px;}
.h43{height:41.803494px;}
.h6f{height:41.836013px;}
.h81{height:41.905797px;}
.h5b{height:41.919456px;}
.h78{height:41.928112px;}
.h29{height:41.968389px;}
.ha3{height:41.994446px;}
.hd8{height:41.996963px;}
.h65{height:42.001551px;}
.h8c{height:42.121420px;}
.h4{height:42.164648px;}
.hc9{height:42.407050px;}
.h23{height:42.615448px;}
.h14{height:43.506914px;}
.h15{height:43.574981px;}
.hc6{height:44.362133px;}
.hbf{height:44.731578px;}
.h3f{height:44.999751px;}
.hde{height:45.117112px;}
.hc2{height:45.168559px;}
.hba{height:45.374506px;}
.h34{height:46.251562px;}
.h28{height:46.425115px;}
.hb{height:46.736719px;}
.haf{height:48.027656px;}
.hae{height:48.312422px;}
.hb2{height:49.008908px;}
.h20{height:49.049524px;}
.h97{height:49.086811px;}
.ha9{height:49.101867px;}
.h54{height:49.149447px;}
.hcf{height:49.219212px;}
.h3c{height:49.220223px;}
.h10{height:49.255313px;}
.h44{height:49.345662px;}
.h71{height:49.384049px;}
.ha0{height:49.426634px;}
.h83{height:49.466423px;}
.h5e{height:49.482547px;}
.h7a{height:49.492764px;}
.h2b{height:49.540308px;}
.ha5{height:49.571066px;}
.h9f{height:49.574038px;}
.h68{height:49.579453px;}
.hd6{height:49.687947px;}
.hb6{height:49.719759px;}
.hd3{height:49.720836px;}
.h8e{height:49.720949px;}
.h94{height:49.818069px;}
.hb4{height:49.874990px;}
.hd1{height:49.876070px;}
.h18{height:50.048675px;}
.hcb{height:50.058112px;}
.h7{height:50.273438px;}
.h25{height:50.304109px;}
.h48{height:50.304740px;}
.h9c{height:50.416541px;}
.h5{height:50.800781px;}
.hdb{height:51.022333px;}
.hb0{height:52.350025px;}
.h51{height:52.500146px;}
.hcd{height:52.574666px;}
.h36{height:52.575746px;}
.ha1{height:52.950508px;}
.hc{height:53.224453px;}
.h9b{height:54.993216px;}
.hb3{height:55.076954px;}
.h33{height:55.179540px;}
.hab{height:55.181423px;}
.h55{height:55.234894px;}
.hd0{height:55.313297px;}
.h3d{height:55.314433px;}
.h8a{height:55.425082px;}
.h45{height:55.455404px;}
.h73{height:55.498543px;}
.h4c{height:55.546401px;}
.h85{height:55.591117px;}
.h60{height:55.609237px;}
.h7c{height:55.620719px;}
.h2c{height:55.674149px;}
.ha6{height:55.708716px;}
.h6a{height:55.718141px;}
.hc7{height:55.800926px;}
.hb7{height:55.875819px;}
.hd4{height:55.877029px;}
.h90{height:55.877156px;}
.h19{height:56.245460px;}
.hcc{height:56.256065px;}
.hb9{height:56.462716px;}
.h27{height:56.532520px;}
.h1e{height:58.233325px;}
.h21{height:58.491634px;}
.h84{height:58.604762px;}
.h7b{height:58.624285px;}
.h7d{height:58.642269px;}
.hd{height:59.439023px;}
.hc1{height:61.454998px;}
.hc3{height:62.535167px;}
.hbb{height:63.055955px;}
.h9a{height:65.069687px;}
.h32{height:65.431572px;}
.h50{height:65.433804px;}
.h9{height:65.884219px;}
.he{height:67.565039px;}
.h95{height:71.682507px;}
.h86{height:74.988391px;}
.h40{height:75.095859px;}
.h37{height:75.096374px;}
.h6d{height:75.213528px;}
.h4b{height:75.403774px;}
.h7f{height:75.430079px;}
.h76{height:75.470246px;}
.h59{height:75.490516px;}
.h62{height:75.547586px;}
.h9e{height:75.628649px;}
.ha2{height:75.631664px;}
.hd5{height:75.756661px;}
.hd7{height:76.018020px;}
.h92{height:76.031861px;}
.h38{height:86.942376px;}
.h41{height:87.119958px;}
.h63{height:87.554710px;}
.h88{height:87.817572px;}
.h93{height:88.055912px;}
.h56{height:89.104569px;}
.h58{height:100.425940px;}
.h2f{height:101.633781px;}
.h4e{height:101.637249px;}
.h89{height:108.351507px;}
.h12{height:119.376000px;}
.h8b{height:121.698355px;}
.hc8{height:122.523605px;}
.h61{height:133.573801px;}
.h6c{height:136.425823px;}
.h2{height:140.796000px;}
.h7e{height:154.502446px;}
.h75{height:175.503602px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3c{width:10.125013px;}
.w28{width:19.424781px;}
.w30{width:24.299144px;}
.we{width:30.074323px;}
.wd{width:31.500439px;}
.w16{width:32.924350px;}
.w6{width:35.460000px;}
.w3a{width:37.425696px;}
.w29{width:43.198585px;}
.w35{width:48.225471px;}
.w19{width:49.649045px;}
.w33{width:59.924036px;}
.wf{width:61.574225px;}
.w31{width:66.074116px;}
.w27{width:67.274089px;}
.wc{width:67.498725px;}
.w3b{width:71.850326px;}
.w26{width:72.000446px;}
.w13{width:76.499265px;}
.w37{width:81.223679px;}
.w25{width:84.451621px;}
.w32{width:86.923518px;}
.wb{width:88.572554px;}
.w34{width:88.722669px;}
.w2f{width:97.346486px;}
.w2c{width:97.421003px;}
.w21{width:98.999741px;}
.w18{width:100.424746px;}
.w3d{width:106.578462px;}
.w36{width:109.274151px;}
.w2a{width:112.124551px;}
.w39{width:112.653746px;}
.w2b{width:123.302252px;}
.w17{width:127.428744px;}
.w38{width:142.721752px;}
.w4{width:158.940000px;}
.w22{width:160.580166px;}
.w1b{width:163.431013px;}
.w1a{width:166.508152px;}
.w2{width:172.830000px;}
.w8{width:192.090000px;}
.w2e{width:202.650930px;}
.w12{width:209.853620px;}
.w1f{width:212.996353px;}
.w10{width:222.002075px;}
.w23{width:229.493559px;}
.w20{width:230.995107px;}
.w15{width:233.996996px;}
.w2d{width:247.345214px;}
.w11{width:249.012486px;}
.w1e{width:253.426016px;}
.w1c{width:256.504885px;}
.w14{width:259.585099px;}
.w1d{width:289.432762px;}
.w24{width:298.423735px;}
.w3{width:464.865000px;}
.w9{width:585.645000px;}
.w7{width:748.950000px;}
.wa{width:777.750000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xab{left:1.131922px;}
.x29{left:2.292799px;}
.x1a{left:3.723695px;}
.x53{left:5.349885px;}
.xa2{left:6.745346px;}
.x9{left:8.100000px;}
.x38{left:9.719882px;}
.x18{left:11.026349px;}
.x60{left:12.596778px;}
.x23{left:13.763465px;}
.x2d{left:15.871257px;}
.x20{left:18.180650px;}
.x39{left:20.411900px;}
.x7b{left:21.622121px;}
.x1b{left:22.812369px;}
.x26{left:25.607195px;}
.x89{left:26.806507px;}
.x2f{left:30.464262px;}
.x55{left:32.317346px;}
.x41{left:33.361623px;}
.x19{left:35.357024px;}
.x48{left:36.699562px;}
.x4{left:38.340000px;}
.x9a{left:39.888948px;}
.x6b{left:40.977034px;}
.xbd{left:42.114534px;}
.x37{left:43.558762px;}
.x17{left:45.732882px;}
.x1{left:48.240000px;}
.x36{left:49.679235px;}
.x52{left:52.771079px;}
.xb{left:53.999987px;}
.x9e{left:55.779061px;}
.xd{left:57.780000px;}
.x54{left:59.358329px;}
.x66{left:60.975269px;}
.xa{left:62.100000px;}
.x50{left:63.107559px;}
.x11{left:65.879987px;}
.x64{left:67.145510px;}
.x43{left:71.275136px;}
.x15{left:72.845811px;}
.x82{left:74.130967px;}
.xf{left:75.599987px;}
.xb9{left:77.197353px;}
.x16{left:78.992218px;}
.x6{left:80.865000px;}
.x9c{left:81.927439px;}
.x45{left:84.165000px;}
.x77{left:85.752313px;}
.x83{left:88.512249px;}
.xc{left:90.180000px;}
.x8c{left:91.377384px;}
.x6a{left:92.415000px;}
.x4b{left:94.065000px;}
.x79{left:95.643256px;}
.x59{left:96.954030px;}
.x49{left:98.120118px;}
.x75{left:99.191331px;}
.x8a{left:100.873102px;}
.x3f{left:102.738253px;}
.x6c{left:104.926111px;}
.x33{left:106.752860px;}
.x5f{left:108.990000px;}
.x9b{left:110.268565px;}
.x2a{left:111.293342px;}
.x8b{left:112.889037px;}
.x47{left:114.029876px;}
.xa1{left:115.665000px;}
.x32{left:116.789402px;}
.x84{left:117.968588px;}
.x28{left:120.101243px;}
.x88{left:123.845404px;}
.x72{left:125.048721px;}
.x3e{left:126.529075px;}
.x92{left:127.986040px;}
.x5a{left:129.783075px;}
.x6f{left:131.220493px;}
.x2e{left:132.583899px;}
.x51{left:134.330992px;}
.x85{left:135.518855px;}
.x3b{left:137.015987px;}
.x8f{left:138.342126px;}
.x7{left:140.085000px;}
.x5d{left:141.745375px;}
.x65{left:143.565832px;}
.x7a{left:147.822629px;}
.x81{left:149.136239px;}
.x93{left:150.851310px;}
.x80{left:152.272400px;}
.x4f{left:153.990000px;}
.x5c{left:155.415000px;}
.x73{left:156.898297px;}
.x2{left:160.050000px;}
.xb8{left:162.840000px;}
.x7d{left:164.164356px;}
.x58{left:166.136176px;}
.xad{left:167.969987px;}
.x71{left:169.199938px;}
.x46{left:173.415000px;}
.x68{left:174.499328px;}
.x86{left:178.949163px;}
.xaa{left:181.084284px;}
.x91{left:182.677111px;}
.x67{left:189.281574px;}
.x94{left:190.880099px;}
.x9f{left:193.369605px;}
.x4c{left:194.429987px;}
.x7c{left:195.661440px;}
.xa9{left:197.849987px;}
.x76{left:200.103695px;}
.x57{left:203.554099px;}
.x42{left:205.551414px;}
.x90{left:207.614793px;}
.x63{left:209.180751px;}
.x61{left:213.265319px;}
.x3d{left:215.275888px;}
.x62{left:216.377371px;}
.x3{left:221.070000px;}
.x74{left:231.187037px;}
.x3c{left:233.205592px;}
.x70{left:234.793723px;}
.x6d{left:238.849373px;}
.x6e{left:241.947231px;}
.x5{left:248.265000px;}
.xe{left:249.870000px;}
.xac{left:256.709987px;}
.xa3{left:262.515000px;}
.xa8{left:266.249987px;}
.xa4{left:281.909987px;}
.xb5{left:289.514987px;}
.xb6{left:291.674987px;}
.x4a{left:300.854987px;}
.xba{left:305.534987px;}
.xa7{left:308.414987px;}
.xae{left:315.074987px;}
.x5e{left:318.854987px;}
.x56{left:320.474987px;}
.xbb{left:332.190000px;}
.x5b{left:348.194987px;}
.xa5{left:352.740000px;}
.x44{left:354.134987px;}
.x4d{left:355.440000px;}
.xb3{left:359.565000px;}
.x7e{left:363.854987px;}
.x69{left:365.474987px;}
.x40{left:366.914987px;}
.x78{left:381.854987px;}
.xa6{left:395.894987px;}
.xb7{left:399.494987px;}
.x4e{left:405.074987px;}
.xb4{left:419.474987px;}
.x10{left:425.234987px;}
.x12{left:473.504987px;}
.x13{left:495.104987px;}
.xb1{left:503.744987px;}
.xb0{left:506.084987px;}
.x9d{left:507.315000px;}
.xc2{left:510.944987px;}
.xc5{left:521.744987px;}
.x1f{left:526.065000px;}
.x8e{left:529.815000px;}
.x2c{left:532.140000px;}
.x22{left:541.140000px;}
.x35{left:543.165000px;}
.x1d{left:545.865000px;}
.x7f{left:550.140000px;}
.x31{left:551.640000px;}
.x21{left:557.564987px;}
.x24{left:571.244987px;}
.x98{left:576.240000px;}
.xc4{left:581.864987px;}
.xc3{left:586.890000px;}
.xc1{left:590.865000px;}
.x25{left:597.315000px;}
.x96{left:607.065000px;}
.x14{left:612.240000px;}
.x1e{left:613.364987px;}
.x3a{left:619.664987px;}
.xc6{left:628.304987px;}
.xbc{left:651.690000px;}
.xb2{left:656.204987px;}
.x27{left:658.904987px;}
.xbf{left:674.940000px;}
.x8{left:685.950000px;}
.x1c{left:700.889987px;}
.x97{left:706.109987px;}
.x99{left:736.889987px;}
.x34{left:761.549987px;}
.x87{left:763.169987px;}
.x2b{left:767.669987px;}
.x8d{left:772.169987px;}
.x30{left:781.169987px;}
.x95{left:783.329987px;}
.xc0{left:787.649987px;}
.xa0{left:805.829987px;}
.xbe{left:812.309987px;}
.xaf{left:838.049987px;}
@media print{
.vf{vertical-align:-90.202434pt;}
.v1d{vertical-align:-69.762241pt;}
.v1c{vertical-align:-58.626407pt;}
.v9{vertical-align:-46.845849pt;}
.vb{vertical-align:-41.769783pt;}
.v13{vertical-align:-40.618700pt;}
.v12{vertical-align:-35.831568pt;}
.va{vertical-align:-33.732423pt;}
.v11{vertical-align:-26.748049pt;}
.v10{vertical-align:-25.480854pt;}
.v3{vertical-align:-23.692642pt;}
.v2{vertical-align:-18.560000pt;}
.v15{vertical-align:-16.887853pt;}
.ve{vertical-align:-15.871834pt;}
.v8{vertical-align:-13.693717pt;}
.v7{vertical-align:-11.600806pt;}
.v14{vertical-align:-6.583086pt;}
.v6{vertical-align:-5.156855pt;}
.v1a{vertical-align:-2.560000pt;}
.vc{vertical-align:-1.159022pt;}
.v0{vertical-align:0.000000pt;}
.v19{vertical-align:13.952183pt;}
.v5{vertical-align:18.560000pt;}
.v1b{vertical-align:19.495743pt;}
.v1{vertical-align:21.120000pt;}
.v4{vertical-align:23.572862pt;}
.v16{vertical-align:33.989439pt;}
.vd{vertical-align:35.168232pt;}
.v18{vertical-align:40.809009pt;}
.v17{vertical-align:46.785214pt;}
.ls17{letter-spacing:-0.904353pt;}
.ls1b{letter-spacing:-0.869333pt;}
.ls14{letter-spacing:-0.863935pt;}
.ls13{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.608000pt;}
.ls70{letter-spacing:-0.509127pt;}
.ls93{letter-spacing:-0.480000pt;}
.ls67{letter-spacing:-0.379589pt;}
.ls79{letter-spacing:-0.379387pt;}
.ls4f{letter-spacing:-0.320000pt;}
.ls82{letter-spacing:-0.289656pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls44{letter-spacing:-0.192314pt;}
.lsc{letter-spacing:-0.183467pt;}
.ls19{letter-spacing:-0.094933pt;}
.lsbc{letter-spacing:-0.007680pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8d{letter-spacing:0.047360pt;}
.lsaa{letter-spacing:0.048709pt;}
.ls71{letter-spacing:0.059991pt;}
.ls49{letter-spacing:0.064474pt;}
.lsab{letter-spacing:0.090377pt;}
.ls2{letter-spacing:0.094720pt;}
.ls12{letter-spacing:0.094933pt;}
.ls90{letter-spacing:0.095791pt;}
.ls1d{letter-spacing:0.097280pt;}
.ls1a{letter-spacing:0.120533pt;}
.ls9f{letter-spacing:0.128579pt;}
.lsb1{letter-spacing:0.129130pt;}
.ls4b{letter-spacing:0.129133pt;}
.ls8c{letter-spacing:0.160000pt;}
.ls68{letter-spacing:0.189529pt;}
.lsa0{letter-spacing:0.223959pt;}
.lsb3{letter-spacing:0.224920pt;}
.ls7e{letter-spacing:0.224924pt;}
.ls95{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.lsa5{letter-spacing:0.251579pt;}
.lsa2{letter-spacing:0.271599pt;}
.lsb5{letter-spacing:0.271605pt;}
.ls92{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa3{letter-spacing:0.452135pt;}
.lsb6{letter-spacing:0.452145pt;}
.lsa{letter-spacing:0.672000pt;}
.ls26{letter-spacing:0.838557pt;}
.ls23{letter-spacing:0.869815pt;}
.ls8{letter-spacing:2.080000pt;}
.ls5e{letter-spacing:2.429712pt;}
.ls64{letter-spacing:4.178934pt;}
.ls2a{letter-spacing:5.700395pt;}
.ls6{letter-spacing:6.064007pt;}
.ls8e{letter-spacing:7.524802pt;}
.ls35{letter-spacing:11.799428pt;}
.ls98{letter-spacing:13.366155pt;}
.lsbb{letter-spacing:14.800640pt;}
.ls88{letter-spacing:16.038395pt;}
.ls3{letter-spacing:23.632640pt;}
.ls7{letter-spacing:27.104559pt;}
.ls45{letter-spacing:27.638599pt;}
.ls43{letter-spacing:27.743689pt;}
.ls30{letter-spacing:31.332606pt;}
.lsb8{letter-spacing:37.161006pt;}
.ls9e{letter-spacing:40.912640pt;}
.lsba{letter-spacing:41.040640pt;}
.lsb2{letter-spacing:44.348887pt;}
.ls5f{letter-spacing:46.674494pt;}
.ls4d{letter-spacing:46.784274pt;}
.ls32{letter-spacing:49.734338pt;}
.ls38{letter-spacing:49.792772pt;}
.ls20{letter-spacing:57.981662pt;}
.ls24{letter-spacing:58.336953pt;}
.ls10{letter-spacing:61.097911pt;}
.ls9b{letter-spacing:68.986153pt;}
.ls9a{letter-spacing:70.654452pt;}
.ls40{letter-spacing:73.404738pt;}
.ls9d{letter-spacing:76.574193pt;}
.ls4e{letter-spacing:77.821506pt;}
.ls15{letter-spacing:78.663571pt;}
.lsf{letter-spacing:85.568116pt;}
.ls8a{letter-spacing:86.206905pt;}
.ls11{letter-spacing:86.447595pt;}
.ls96{letter-spacing:86.869642pt;}
.ls33{letter-spacing:86.984879pt;}
.ls9c{letter-spacing:87.369425pt;}
.ls28{letter-spacing:88.136366pt;}
.ls6e{letter-spacing:88.340762pt;}
.ls65{letter-spacing:89.030924pt;}
.ls89{letter-spacing:89.243531pt;}
.ls97{letter-spacing:89.259895pt;}
.ls46{letter-spacing:89.378815pt;}
.ls58{letter-spacing:91.459018pt;}
.ls18{letter-spacing:98.923104pt;}
.ls3f{letter-spacing:99.866431pt;}
.ls54{letter-spacing:100.359914pt;}
.ls22{letter-spacing:107.627730pt;}
.lsa9{letter-spacing:109.153028pt;}
.ls2d{letter-spacing:111.824858pt;}
.ls2b{letter-spacing:112.584036pt;}
.ls51{letter-spacing:116.892889pt;}
.ls57{letter-spacing:117.400700pt;}
.ls3a{letter-spacing:124.862934pt;}
.lsb9{letter-spacing:125.379287pt;}
.lsad{letter-spacing:127.631477pt;}
.lsa7{letter-spacing:130.018944pt;}
.ls36{letter-spacing:134.414431pt;}
.lsae{letter-spacing:134.608299pt;}
.ls2c{letter-spacing:134.870966pt;}
.ls2f{letter-spacing:135.319184pt;}
.ls16{letter-spacing:135.523051pt;}
.ls8b{letter-spacing:143.685302pt;}
.ls31{letter-spacing:148.412022pt;}
.ls34{letter-spacing:150.785503pt;}
.ls81{letter-spacing:150.931851pt;}
.ls7b{letter-spacing:151.754874pt;}
.lsb0{letter-spacing:155.588789pt;}
.lsa4{letter-spacing:155.653052pt;}
.lsb7{letter-spacing:155.656422pt;}
.ls80{letter-spacing:156.956441pt;}
.ls74{letter-spacing:157.516250pt;}
.ls7a{letter-spacing:157.963028pt;}
.lsa6{letter-spacing:161.074494pt;}
.ls50{letter-spacing:164.854364pt;}
.ls25{letter-spacing:165.454022pt;}
.ls76{letter-spacing:165.798196pt;}
.ls7d{letter-spacing:166.240566pt;}
.ls84{letter-spacing:166.525440pt;}
.ls6c{letter-spacing:166.859984pt;}
.ls62{letter-spacing:168.750333pt;}
.ls5{letter-spacing:182.140566pt;}
.ls4c{letter-spacing:184.967237pt;}
.lse{letter-spacing:186.339428pt;}
.ls4{letter-spacing:193.801894pt;}
.ls6f{letter-spacing:202.801508pt;}
.ls66{letter-spacing:204.128743pt;}
.ls99{letter-spacing:206.226258pt;}
.ls77{letter-spacing:207.154839pt;}
.ls7f{letter-spacing:207.830140pt;}
.ls6d{letter-spacing:208.428984pt;}
.lsd{letter-spacing:210.793558pt;}
.lsac{letter-spacing:212.018529pt;}
.ls8f{letter-spacing:213.628912pt;}
.ls48{letter-spacing:220.056101pt;}
.ls21{letter-spacing:224.443158pt;}
.ls47{letter-spacing:224.548550pt;}
.ls4a{letter-spacing:226.133539pt;}
.ls53{letter-spacing:232.676537pt;}
.ls59{letter-spacing:233.209887pt;}
.ls52{letter-spacing:233.468852pt;}
.ls5c{letter-spacing:233.581240pt;}
.ls5b{letter-spacing:234.376997pt;}
.ls63{letter-spacing:234.540661pt;}
.ls6a{letter-spacing:235.132953pt;}
.ls78{letter-spacing:238.191479pt;}
.ls83{letter-spacing:242.016265pt;}
.ls91{letter-spacing:248.634072pt;}
.lsa1{letter-spacing:250.254127pt;}
.ls42{letter-spacing:252.762096pt;}
.ls3e{letter-spacing:255.408265pt;}
.lsa8{letter-spacing:258.554380pt;}
.ls2e{letter-spacing:260.292147pt;}
.ls3c{letter-spacing:260.383063pt;}
.ls3b{letter-spacing:270.703124pt;}
.ls72{letter-spacing:272.985695pt;}
.ls69{letter-spacing:274.684556pt;}
.ls60{letter-spacing:277.604386pt;}
.ls27{letter-spacing:284.985222pt;}
.ls1f{letter-spacing:287.359066pt;}
.ls5d{letter-spacing:289.973895pt;}
.ls61{letter-spacing:294.171442pt;}
.lsb4{letter-spacing:294.988899pt;}
.ls73{letter-spacing:297.194461pt;}
.ls1e{letter-spacing:298.824812pt;}
.ls56{letter-spacing:302.069403pt;}
.ls55{letter-spacing:303.926169pt;}
.ls41{letter-spacing:314.259071pt;}
.ls3d{letter-spacing:319.075099pt;}
.ls29{letter-spacing:352.834007pt;}
.ls37{letter-spacing:355.162190pt;}
.ls87{letter-spacing:437.474243pt;}
.ls85{letter-spacing:453.549412pt;}
.ls86{letter-spacing:458.403278pt;}
.ls39{letter-spacing:462.127587pt;}
.lsaf{letter-spacing:500.553462pt;}
.ls75{letter-spacing:510.295313pt;}
.ls6b{letter-spacing:513.427587pt;}
.ls5a{letter-spacing:561.220971pt;}
.ls7c{letter-spacing:591.631764pt;}
.ls94{letter-spacing:599.922387pt;}
.ws15{word-spacing:-29.783847pt;}
.wse{word-spacing:-19.693145pt;}
.ws38{word-spacing:-18.646147pt;}
.ws36{word-spacing:-17.137439pt;}
.ws74{word-spacing:-16.247518pt;}
.ws1{word-spacing:-14.720000pt;}
.wsad{word-spacing:-13.600000pt;}
.ws7c{word-spacing:-13.593085pt;}
.ws86{word-spacing:-13.552533pt;}
.ws99{word-spacing:-13.546025pt;}
.ws77{word-spacing:-13.431728pt;}
.wsb{word-spacing:-13.374933pt;}
.ws7e{word-spacing:-13.365933pt;}
.ws4d{word-spacing:-13.344021pt;}
.ws0{word-spacing:-13.280000pt;}
.ws2e{word-spacing:-13.238629pt;}
.ws79{word-spacing:-13.234569pt;}
.ws7{word-spacing:-13.193476pt;}
.ws5{word-spacing:-13.096533pt;}
.ws1a{word-spacing:-13.049067pt;}
.ws39{word-spacing:-12.960000pt;}
.ws19{word-spacing:-12.410667pt;}
.ws91{word-spacing:-9.524380pt;}
.ws28{word-spacing:-9.506525pt;}
.ws93{word-spacing:-9.493561pt;}
.wsa5{word-spacing:-9.425050pt;}
.wsab{word-spacing:-9.368438pt;}
.ws6f{word-spacing:-9.361568pt;}
.wsf{word-spacing:-9.349396pt;}
.ws3b{word-spacing:-9.345489pt;}
.ws45{word-spacing:-9.329987pt;}
.ws62{word-spacing:-9.299036pt;}
.ws25{word-spacing:-9.296632pt;}
.ws2f{word-spacing:-9.285665pt;}
.ws2{word-spacing:-9.280000pt;}
.ws89{word-spacing:-9.276675pt;}
.ws17{word-spacing:-9.276359pt;}
.ws4{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.wsaf{word-spacing:-8.632320pt;}
.wsc{word-spacing:-7.829097pt;}
.ws6{word-spacing:-7.792223pt;}
.ws9{word-spacing:-7.638144pt;}
.ws41{word-spacing:-6.667384pt;}
.wsac{word-spacing:-3.421679pt;}
.ws37{word-spacing:-1.923385pt;}
.ws34{word-spacing:-1.433218pt;}
.ws95{word-spacing:-0.034560pt;}
.ws1b{word-spacing:0.000000pt;}
.ws13{word-spacing:2.387048pt;}
.ws1c{word-spacing:3.782580pt;}
.ws10{word-spacing:4.220761pt;}
.ws8{word-spacing:5.066295pt;}
.wsae{word-spacing:5.887510pt;}
.wsa1{word-spacing:6.598637pt;}
.ws9d{word-spacing:6.782369pt;}
.wsa7{word-spacing:7.396053pt;}
.ws9e{word-spacing:7.888923pt;}
.wsa2{word-spacing:8.235689pt;}
.ws81{word-spacing:8.582067pt;}
.ws2c{word-spacing:8.741981pt;}
.ws98{word-spacing:8.927908pt;}
.ws58{word-spacing:9.073934pt;}
.ws67{word-spacing:9.223014pt;}
.ws61{word-spacing:9.229148pt;}
.wsa0{word-spacing:9.280663pt;}
.ws9c{word-spacing:9.486731pt;}
.ws3c{word-spacing:9.659077pt;}
.ws42{word-spacing:9.784932pt;}
.ws7f{word-spacing:10.051182pt;}
.ws92{word-spacing:10.090702pt;}
.ws9a{word-spacing:10.739475pt;}
.ws70{word-spacing:10.885301pt;}
.wsa6{word-spacing:10.959115pt;}
.wsa3{word-spacing:11.100693pt;}
.wsa9{word-spacing:11.319466pt;}
.ws7b{word-spacing:11.346389pt;}
.ws26{word-spacing:11.494967pt;}
.ws78{word-spacing:11.605013pt;}
.ws65{word-spacing:11.661282pt;}
.ws5d{word-spacing:11.683141pt;}
.ws54{word-spacing:11.689362pt;}
.ws46{word-spacing:11.716944pt;}
.ws84{word-spacing:11.761316pt;}
.ws4a{word-spacing:11.796114pt;}
.ws18{word-spacing:12.337981pt;}
.ws97{word-spacing:12.456303pt;}
.ws82{word-spacing:12.571752pt;}
.ws68{word-spacing:12.633779pt;}
.ws5a{word-spacing:12.741341pt;}
.ws31{word-spacing:14.894638pt;}
.ws6c{word-spacing:19.783742pt;}
.ws60{word-spacing:19.898683pt;}
.ws94{word-spacing:21.374928pt;}
.wsa8{word-spacing:23.254059pt;}
.ws85{word-spacing:24.752225pt;}
.wsa{word-spacing:24.956650pt;}
.ws69{word-spacing:25.764249pt;}
.ws21{word-spacing:26.815169pt;}
.ws72{word-spacing:27.079196pt;}
.ws3d{word-spacing:30.418086pt;}
.ws43{word-spacing:30.531126pt;}
.ws4b{word-spacing:31.064880pt;}
.ws47{word-spacing:31.103161pt;}
.ws8e{word-spacing:31.825664pt;}
.wsd{word-spacing:38.138514pt;}
.ws2a{word-spacing:39.380905pt;}
.ws8a{word-spacing:40.616113pt;}
.ws8f{word-spacing:40.722022pt;}
.ws9f{word-spacing:47.681747pt;}
.ws11{word-spacing:52.038245pt;}
.ws7d{word-spacing:52.490936pt;}
.ws56{word-spacing:53.106113pt;}
.ws80{word-spacing:53.362667pt;}
.ws4c{word-spacing:53.363065pt;}
.ws6e{word-spacing:54.607900pt;}
.wsa4{word-spacing:55.021574pt;}
.ws22{word-spacing:56.741093pt;}
.ws63{word-spacing:56.819265pt;}
.ws50{word-spacing:56.955210pt;}
.ws75{word-spacing:57.010954pt;}
.ws6d{word-spacing:57.100042pt;}
.ws59{word-spacing:57.282570pt;}
.ws48{word-spacing:57.496387pt;}
.ws44{word-spacing:57.557156pt;}
.ws1f{word-spacing:58.018798pt;}
.ws3e{word-spacing:58.601522pt;}
.ws7a{word-spacing:59.132056pt;}
.ws96{word-spacing:59.279091pt;}
.ws4f{word-spacing:61.542623pt;}
.ws2b{word-spacing:62.617855pt;}
.ws3a{word-spacing:65.553344pt;}
.ws3f{word-spacing:65.887138pt;}
.ws55{word-spacing:70.669934pt;}
.ws8b{word-spacing:71.170654pt;}
.ws90{word-spacing:71.319081pt;}
.ws52{word-spacing:73.499355pt;}
.ws14{word-spacing:77.791967pt;}
.ws35{word-spacing:83.285904pt;}
.ws88{word-spacing:84.603280pt;}
.ws8d{word-spacing:84.751707pt;}
.ws27{word-spacing:88.447384pt;}
.ws29{word-spacing:90.921057pt;}
.ws32{word-spacing:97.901765pt;}
.ws9b{word-spacing:99.889912pt;}
.ws1d{word-spacing:138.754467pt;}
.ws73{word-spacing:140.436466pt;}
.ws12{word-spacing:156.275018pt;}
.ws33{word-spacing:157.654006pt;}
.ws2d{word-spacing:174.825409pt;}
.ws23{word-spacing:179.099154pt;}
.ws83{word-spacing:188.317852pt;}
.ws30{word-spacing:199.084649pt;}
.ws40{word-spacing:199.779190pt;}
.ws5f{word-spacing:204.748376pt;}
.ws6b{word-spacing:208.477867pt;}
.ws5c{word-spacing:212.372310pt;}
.ws6a{word-spacing:216.071095pt;}
.wsaa{word-spacing:232.804246pt;}
.ws20{word-spacing:233.879984pt;}
.ws24{word-spacing:236.707183pt;}
.ws66{word-spacing:246.106062pt;}
.ws5e{word-spacing:247.533212pt;}
.ws57{word-spacing:249.266306pt;}
.ws4e{word-spacing:250.974341pt;}
.ws53{word-spacing:256.892040pt;}
.ws49{word-spacing:258.464619pt;}
.ws1e{word-spacing:284.104148pt;}
.ws64{word-spacing:293.092718pt;}
.ws51{word-spacing:294.041874pt;}
.ws5b{word-spacing:294.739087pt;}
.ws87{word-spacing:296.575697pt;}
.ws8c{word-spacing:297.551924pt;}
.ws76{word-spacing:345.908492pt;}
.ws16{word-spacing:361.075211pt;}
.ws71{word-spacing:427.100592pt;}
._3a{margin-left:-647.550739pt;}
._42{margin-left:-563.498748pt;}
._2c{margin-left:-540.486203pt;}
._27{margin-left:-432.278302pt;}
._25{margin-left:-381.096458pt;}
._8d{margin-left:-342.706859pt;}
._40{margin-left:-281.021683pt;}
._53{margin-left:-262.363342pt;}
._a5{margin-left:-261.473897pt;}
._3c{margin-left:-255.315532pt;}
._57{margin-left:-240.242733pt;}
._88{margin-left:-222.952218pt;}
._1f{margin-left:-217.429065pt;}
._21{margin-left:-194.073211pt;}
._84{margin-left:-184.614863pt;}
._20{margin-left:-182.966170pt;}
._22{margin-left:-162.884047pt;}
._86{margin-left:-145.262406pt;}
._9c{margin-left:-143.920808pt;}
._87{margin-left:-142.810341pt;}
._a0{margin-left:-127.349452pt;}
._23{margin-left:-119.632861pt;}
._9d{margin-left:-102.872807pt;}
._89{margin-left:-78.444272pt;}
._52{margin-left:-8.996925pt;}
._5d{margin-left:-7.624122pt;}
._d{margin-left:-5.416960pt;}
._6a{margin-left:-4.263467pt;}
._e{margin-left:-3.356160pt;}
._c{margin-left:-1.930667pt;}
._b{margin-left:-0.954880pt;}
._4{width:1.115520pt;}
._12{width:2.337280pt;}
._11{width:3.495253pt;}
._14{width:4.727680pt;}
._13{width:5.790080pt;}
._18{width:7.435520pt;}
._3{width:8.480000pt;}
._17{width:9.406720pt;}
._1{width:11.040000pt;}
._19{width:12.171520pt;}
._1d{width:14.979200pt;}
._93{width:15.887787pt;}
._82{width:16.800000pt;}
._15{width:18.538880pt;}
._16{width:19.601280pt;}
._1b{width:20.735147pt;}
._1c{width:21.812693pt;}
._83{width:23.000960pt;}
._1a{width:24.294187pt;}
._7b{width:25.416909pt;}
._4b{width:26.874807pt;}
._4c{width:28.123581pt;}
._9b{width:29.128107pt;}
._8a{width:30.544000pt;}
._8e{width:31.535787pt;}
._55{width:33.208868pt;}
._68{width:34.367101pt;}
._a4{width:35.909120pt;}
._8f{width:36.918400pt;}
._10{width:37.816960pt;}
._f{width:39.794987pt;}
._8c{width:40.690520pt;}
._8b{width:41.950849pt;}
._3f{width:43.953620pt;}
._62{width:45.351117pt;}
._5b{width:46.685256pt;}
._a6{width:48.923520pt;}
._95{width:50.729600pt;}
._94{width:52.480000pt;}
._56{width:55.756783pt;}
._38{width:57.397650pt;}
._54{width:58.955069pt;}
._32{width:60.105776pt;}
._4a{width:61.253272pt;}
._37{width:62.844703pt;}
._59{width:63.923285pt;}
._99{width:64.971715pt;}
._31{width:66.684623pt;}
._39{width:68.030863pt;}
._33{width:71.058384pt;}
._5c{width:72.828719pt;}
._66{width:74.702147pt;}
._6c{width:75.754972pt;}
._7d{width:77.269548pt;}
._8{width:78.400000pt;}
._85{width:79.462102pt;}
._9f{width:81.349224pt;}
._2d{width:82.353151pt;}
._9e{width:83.397187pt;}
._6{width:86.560000pt;}
._2a{width:88.049515pt;}
._7a{width:89.870759pt;}
._0{width:91.200000pt;}
._98{width:95.178690pt;}
._9{width:96.160000pt;}
._90{width:97.328781pt;}
._24{width:99.030123pt;}
._50{width:101.326004pt;}
._4d{width:105.119364pt;}
._65{width:109.226888pt;}
._97{width:111.023251pt;}
._48{width:112.160000pt;}
._63{width:113.693415pt;}
._5e{width:115.506774pt;}
._6d{width:125.348453pt;}
._92{width:126.382328pt;}
._36{width:130.720000pt;}
._5f{width:131.798445pt;}
._3b{width:133.620428pt;}
._60{width:134.510186pt;}
._72{width:136.480000pt;}
._4e{width:139.216821pt;}
._29{width:144.307892pt;}
._64{width:145.536120pt;}
._2{width:146.720000pt;}
._58{width:148.469326pt;}
._4f{width:157.600000pt;}
._61{width:161.051264pt;}
._78{width:162.440564pt;}
._5{width:163.520000pt;}
._6f{width:168.480000pt;}
._3e{width:169.839905pt;}
._3d{width:174.177869pt;}
._45{width:177.719062pt;}
._2f{width:178.720000pt;}
._a2{width:188.154055pt;}
._41{width:196.246301pt;}
._43{width:200.480000pt;}
._91{width:203.083876pt;}
._a{width:204.320000pt;}
._74{width:205.922025pt;}
._76{width:206.987760pt;}
._9a{width:208.539663pt;}
._a1{width:209.526550pt;}
._69{width:216.373505pt;}
._49{width:217.978630pt;}
._a3{width:225.737228pt;}
._6b{width:232.163311pt;}
._2e{width:241.688594pt;}
._46{width:247.196828pt;}
._7c{width:253.311136pt;}
._81{width:255.724133pt;}
._67{width:256.800000pt;}
._73{width:258.571389pt;}
._77{width:261.920000pt;}
._7{width:263.840000pt;}
._80{width:268.378966pt;}
._5a{width:277.280000pt;}
._6e{width:289.618625pt;}
._47{width:291.580289pt;}
._30{width:298.262507pt;}
._28{width:327.959392pt;}
._70{width:330.497604pt;}
._51{width:347.040000pt;}
._71{width:351.161248pt;}
._26{width:367.930166pt;}
._7f{width:369.081403pt;}
._75{width:371.360000pt;}
._1e{width:416.160000pt;}
._7e{width:421.577508pt;}
._35{width:437.089205pt;}
._79{width:498.849513pt;}
._34{width:511.940932pt;}
._2b{width:598.714999pt;}
._96{width:610.300785pt;}
._44{width:695.941547pt;}
.fs0{font-size:2.560000pt;}
.fs30{font-size:26.669535pt;}
.fs2b{font-size:26.683060pt;}
.fsc{font-size:30.434007pt;}
.fsa{font-size:30.552577pt;}
.fs8{font-size:31.168891pt;}
.fs10{font-size:31.316387pt;}
.fs7{font-size:34.560000pt;}
.fs47{font-size:36.865166pt;}
.fs46{font-size:36.979990pt;}
.fs51{font-size:37.036451pt;}
.fs15{font-size:37.105435pt;}
.fs24{font-size:37.106702pt;}
.fs5{font-size:37.120000pt;}
.fs26{font-size:37.142658pt;}
.fs1d{font-size:37.186526pt;}
.fs60{font-size:37.195380pt;}
.fs19{font-size:37.196144pt;}
.fs32{font-size:37.319949pt;}
.fs29{font-size:37.381955pt;}
.fs12{font-size:37.397586pt;}
.fs2e{font-size:37.414908pt;}
.fs3a{font-size:37.422434pt;}
.fs35{font-size:37.442361pt;}
.fs40{font-size:37.446271pt;}
.fs4e{font-size:37.461280pt;}
.fs66{font-size:37.473752pt;}
.fs57{font-size:37.496213pt;}
.fs44{font-size:37.571006pt;}
.fs52{font-size:37.597624pt;}
.fs61{font-size:37.598438pt;}
.fs5e{font-size:37.700199pt;}
.fs68{font-size:37.914676pt;}
.fs58{font-size:37.927321pt;}
.fs13{font-size:37.974245pt;}
.fs1f{font-size:38.026100pt;}
.fs49{font-size:38.097520pt;}
.fs5b{font-size:42.571849pt;}
.fs4f{font-size:42.880000pt;}
.fs56{font-size:42.926385pt;}
.fs59{font-size:43.345731pt;}
.fs3{font-size:48.000000pt;}
.fs69{font-size:48.657107pt;}
.fsd{font-size:52.657823pt;}
.fsb{font-size:52.773903pt;}
.fs50{font-size:52.854262pt;}
.fse{font-size:52.898065pt;}
.fs45{font-size:52.938278pt;}
.fs16{font-size:52.952708pt;}
.fs25{font-size:52.954515pt;}
.fs27{font-size:53.005828pt;}
.fs5f{font-size:53.081067pt;}
.fs1a{font-size:53.082157pt;}
.fs1{font-size:53.120000pt;}
.fs1e{font-size:53.217439pt;}
.fs33{font-size:53.258837pt;}
.fs22{font-size:53.304764pt;}
.fs3b{font-size:53.347675pt;}
.fs2a{font-size:53.365064pt;}
.fs36{font-size:53.376083pt;}
.fs11{font-size:53.427357pt;}
.fs4d{font-size:53.460529pt;}
.fs4b{font-size:53.463733pt;}
.fs2f{font-size:53.469573pt;}
.fs64{font-size:53.586580pt;}
.fs53{font-size:53.620888pt;}
.fs62{font-size:53.622049pt;}
.fs3f{font-size:53.622171pt;}
.fs43{font-size:53.726912pt;}
.fs9{font-size:53.975612pt;}
.fs5d{font-size:53.985789pt;}
.fs54{font-size:54.184100pt;}
.fsf{font-size:54.251087pt;}
.fs20{font-size:54.251768pt;}
.fs48{font-size:54.372341pt;}
.fs67{font-size:55.025665pt;}
.fs3c{font-size:56.239702pt;}
.fs37{font-size:56.258436pt;}
.fs38{font-size:56.275695pt;}
.fs4{font-size:58.880000pt;}
.fs5a{font-size:60.011490pt;}
.fs55{font-size:60.511262pt;}
.fs2{font-size:64.000000pt;}
.fs3d{font-size:71.962150pt;}
.fs1b{font-size:72.065282pt;}
.fs17{font-size:72.065776pt;}
.fs31{font-size:72.178202pt;}
.fs21{font-size:72.360770pt;}
.fs39{font-size:72.386014pt;}
.fs34{font-size:72.424559pt;}
.fs28{font-size:72.444011pt;}
.fs2c{font-size:72.498779pt;}
.fs4a{font-size:72.576570pt;}
.fs4c{font-size:72.579463pt;}
.fs63{font-size:72.699416pt;}
.fs3e{font-size:72.729701pt;}
.fs65{font-size:72.950227pt;}
.fs41{font-size:72.963510pt;}
.fs5c{font-size:73.222890pt;}
.fs18{font-size:83.433719pt;}
.fs1c{font-size:83.604134pt;}
.fs2d{font-size:84.021342pt;}
.fs42{font-size:84.502317pt;}
.fs6{font-size:85.120000pt;}
.fs14{font-size:97.532236pt;}
.fs23{font-size:97.535564pt;}
.y0{bottom:0.000000pt;}
.y48{bottom:2.899259pt;}
.y1f9{bottom:2.922981pt;}
.y5a{bottom:2.953799pt;}
.y197{bottom:3.004646pt;}
.y29c{bottom:3.500884pt;}
.y285{bottom:3.826336pt;}
.y146{bottom:3.879773pt;}
.y41{bottom:3.889167pt;}
.y233{bottom:3.993586pt;}
.yaa{bottom:4.023000pt;}
.yb2{bottom:4.028793pt;}
.y177{bottom:4.071647pt;}
.y26f{bottom:4.093275pt;}
.y180{bottom:4.093359pt;}
.y243{bottom:4.416002pt;}
.y21b{bottom:4.449480pt;}
.y279{bottom:4.449576pt;}
.y282{bottom:4.457657pt;}
.y242{bottom:4.512028pt;}
.y1ad{bottom:4.513573pt;}
.y257{bottom:4.544180pt;}
.y230{bottom:4.549603pt;}
.yfe{bottom:4.587805pt;}
.y5e{bottom:4.602832pt;}
.y4b{bottom:4.662919pt;}
.y20f{bottom:4.685480pt;}
.y2{bottom:4.800000pt;}
.y121{bottom:4.850643pt;}
.y216{bottom:4.868658pt;}
.y274{bottom:4.868763pt;}
.yd3{bottom:4.953950pt;}
.y18c{bottom:5.020756pt;}
.y1d8{bottom:5.063826pt;}
.y22{bottom:5.120000pt;}
.y145{bottom:5.205416pt;}
.y110{bottom:5.368098pt;}
.y20{bottom:5.440000pt;}
.y1c3{bottom:5.482128pt;}
.y1be{bottom:5.499203pt;}
.y1ac{bottom:5.848517pt;}
.y8c{bottom:5.883551pt;}
.y256{bottom:5.888177pt;}
.yfd{bottom:5.912343pt;}
.y18b{bottom:5.921935pt;}
.y1ba{bottom:6.015969pt;}
.y239{bottom:6.208044pt;}
.y22a{bottom:6.259745pt;}
.y70{bottom:6.272000pt;}
.ya1{bottom:6.340353pt;}
.yaf{bottom:6.349483pt;}
.y1d2{bottom:6.394743pt;}
.y15f{bottom:6.398245pt;}
.ye7{bottom:6.429320pt;}
.y1c5{bottom:6.430633pt;}
.y10{bottom:6.432000pt;}
.y59{bottom:6.461452pt;}
.y29d{bottom:6.654787pt;}
.y224{bottom:6.697757pt;}
.y4e{bottom:6.773927pt;}
.y27c{bottom:6.795576pt;}
.y95{bottom:6.806500pt;}
.y1c7{bottom:6.826799pt;}
.y22f{bottom:6.905071pt;}
.y24e{bottom:7.232173pt;}
.y67{bottom:7.523587pt;}
.y1e0{bottom:7.523844pt;}
.y19{bottom:7.840000pt;}
.y1ab{bottom:7.850998pt;}
.y27d{bottom:7.886604pt;}
.y96{bottom:7.894285pt;}
.y1b8{bottom:7.904030pt;}
.y255{bottom:7.904236pt;}
.y1c8{bottom:7.917828pt;}
.y81{bottom:7.961000pt;}
.yfc{bottom:8.012346pt;}
.y60{bottom:8.062970pt;}
.y4c{bottom:8.065597pt;}
.y65{bottom:8.327381pt;}
.y98{bottom:8.327665pt;}
.y218{bottom:8.350866pt;}
.y276{bottom:8.351046pt;}
.y1b7{bottom:8.415946pt;}
.ya5{bottom:8.496655pt;}
.y47{bottom:8.792475pt;}
.y12d{bottom:8.858895pt;}
.y232{bottom:8.867522pt;}
.y90{bottom:8.992003pt;}
.y106{bottom:9.022275pt;}
.y87{bottom:9.024055pt;}
.y22b{bottom:9.066888pt;}
.y8d{bottom:9.394723pt;}
.y1b9{bottom:9.504015pt;}
.yd2{bottom:9.779149pt;}
.ya4{bottom:9.784015pt;}
.y7c{bottom:9.798104pt;}
.y163{bottom:9.855975pt;}
.y1d3{bottom:9.867945pt;}
.y3d{bottom:9.896913pt;}
.ydd{bottom:10.080121pt;}
.y1a5{bottom:10.648103pt;}
.y24f{bottom:10.720309pt;}
.y68{bottom:10.931725pt;}
.y9a{bottom:10.932098pt;}
.y3e{bottom:11.003579pt;}
.y241{bottom:11.104044pt;}
.y269{bottom:11.151522pt;}
.y17b{bottom:11.151751pt;}
.y240{bottom:11.200069pt;}
.y91{bottom:11.328016pt;}
.y1c2{bottom:11.405288pt;}
.y1bf{bottom:11.440812pt;}
.y209{bottom:11.745714pt;}
.y29e{bottom:12.111064pt;}
.y131{bottom:12.318466pt;}
.ya9{bottom:12.358734pt;}
.yb1{bottom:12.376531pt;}
.y26e{bottom:12.408559pt;}
.y17f{bottom:12.408814pt;}
.y144{bottom:12.447739pt;}
.y44{bottom:12.697088pt;}
.y8{bottom:12.960000pt;}
.y20e{bottom:12.965235pt;}
.y85{bottom:13.216347pt;}
.y18a{bottom:13.324122pt;}
.y1d7{bottom:13.438421pt;}
.y176{bottom:13.443041pt;}
.yd{bottom:13.600000pt;}
.y84{bottom:13.728660pt;}
.y143{bottom:13.772718pt;}
.y1aa{bottom:14.239312pt;}
.y254{bottom:14.335870pt;}
.y9f{bottom:14.451091pt;}
.y78{bottom:14.471900pt;}
.y40{bottom:14.512825pt;}
.y88{bottom:14.783498pt;}
.y120{bottom:15.069649pt;}
.y80{bottom:16.308342pt;}
.y21a{bottom:16.669171pt;}
.y278{bottom:16.669532pt;}
.yfb{bottom:16.702942pt;}
.y7a{bottom:16.792591pt;}
.y66{bottom:16.879666pt;}
.y99{bottom:16.880242pt;}
.y22e{bottom:16.908026pt;}
.yb5{bottom:17.237490pt;}
.y23f{bottom:17.439641pt;}
.y23e{bottom:17.535535pt;}
.y22d{bottom:17.584877pt;}
.y189{bottom:18.023567pt;}
.y5d{bottom:18.570567pt;}
.y11f{bottom:18.659178pt;}
.y26d{bottom:18.661726pt;}
.y76{bottom:18.662109pt;}
.y7f{bottom:18.918788pt;}
.y188{bottom:18.924613pt;}
.y1d6{bottom:19.086954pt;}
.y75{bottom:19.145035pt;}
.y20d{bottom:19.190629pt;}
.y156{bottom:19.291706pt;}
.y1a9{bottom:19.898241pt;}
.ya8{bottom:19.922106pt;}
.y253{bottom:20.033173pt;}
.y1a1{bottom:20.088742pt;}
.y196{bottom:20.095520pt;}
.ya7{bottom:20.211445pt;}
.y24b{bottom:20.224966pt;}
.y79{bottom:20.240549pt;}
.y23d{bottom:20.320413pt;}
.y15c{bottom:20.358235pt;}
.y1d5{bottom:20.384825pt;}
.ye3{bottom:20.385971pt;}
.y1a8{bottom:20.564995pt;}
.yfa{bottom:20.677749pt;}
.y252{bottom:20.704449pt;}
.y1a4{bottom:21.200434pt;}
.y24d{bottom:21.344197pt;}
.y105{bottom:22.054893pt;}
.y10c{bottom:22.313754pt;}
.yd1{bottom:22.389504pt;}
.ybf{bottom:22.421197pt;}
.yb6{bottom:22.569800pt;}
.yf9{bottom:22.745391pt;}
.y26b{bottom:22.883602pt;}
.y17d{bottom:22.884072pt;}
.y1f{bottom:23.040000pt;}
.y3f{bottom:23.082154pt;}
.ydc{bottom:23.164490pt;}
.y92{bottom:23.232712pt;}
.y89{bottom:23.264239pt;}
.y20c{bottom:23.395784pt;}
.y19a{bottom:23.553084pt;}
.ye6{bottom:23.843536pt;}
.y129{bottom:24.119842pt;}
.y237{bottom:24.735495pt;}
.y228{bottom:24.941491pt;}
.y142{bottom:25.090050pt;}
.yf8{bottom:25.297119pt;}
.yb7{bottom:25.299808pt;}
.ya0{bottom:25.619043pt;}
.y238{bottom:25.728593pt;}
.y10f{bottom:25.741329pt;}
.y229{bottom:25.942859pt;}
.yc5{bottom:26.056603pt;}
.y175{bottom:26.110063pt;}
.y141{bottom:26.447812pt;}
.y23c{bottom:26.720377pt;}
.y23b{bottom:26.816272pt;}
.y22c{bottom:26.942903pt;}
.y5f{bottom:27.077245pt;}
.y23a{bottom:27.135482pt;}
.y11e{bottom:27.196256pt;}
.y217{bottom:27.439145pt;}
.y275{bottom:27.439739pt;}
.y11d{bottom:27.713977pt;}
.y1a3{bottom:27.907120pt;}
.y7e{bottom:27.943548pt;}
.ya3{bottom:28.644551pt;}
.y7b{bottom:28.685799pt;}
.y219{bottom:28.728312pt;}
.y277{bottom:28.728934pt;}
.y162{bottom:28.857304pt;}
.ya2{bottom:29.062044pt;}
.y3c{bottom:29.152853pt;}
.y86{bottom:29.216258pt;}
.y184{bottom:29.223228pt;}
.y1d0{bottom:29.473914pt;}
.y187{bottom:29.931382pt;}
.y185{bottom:30.285459pt;}
.y1d1{bottom:30.545257pt;}
.y26c{bottom:30.586443pt;}
.y17e{bottom:30.587071pt;}
.y186{bottom:30.832428pt;}
.y7d{bottom:30.845073pt;}
.yd0{bottom:30.978200pt;}
.y20b{bottom:31.065712pt;}
.y1d4{bottom:31.096918pt;}
.y26a{bottom:31.327355pt;}
.y17c{bottom:31.327999pt;}
.y1a2{bottom:31.372676pt;}
.y24c{bottom:31.585417pt;}
.y20a{bottom:31.803458pt;}
.ya6{bottom:31.829921pt;}
.yb0{bottom:31.875756pt;}
.y1a7{bottom:31.912864pt;}
.y251{bottom:32.129269pt;}
.y130{bottom:32.590255pt;}
.y190{bottom:32.953629pt;}
.y1a6{bottom:33.247677pt;}
.yf7{bottom:33.342223pt;}
.y250{bottom:33.473133pt;}
.y193{bottom:34.053100pt;}
.y11c{bottom:34.181500pt;}
.y11{bottom:34.400000pt;}
.y7{bottom:34.560000pt;}
.y9e{bottom:34.597797pt;}
.y77{bottom:34.647618pt;}
.yf6{bottom:35.409866pt;}
.ybe{bottom:35.514204pt;}
.yff{bottom:35.635330pt;}
.y109{bottom:37.512169pt;}
.y140{bottom:37.763817pt;}
.y10b{bottom:37.834749pt;}
.yf5{bottom:37.961593pt;}
.y13f{bottom:38.442035pt;}
.y174{bottom:38.777085pt;}
.yc{bottom:39.200000pt;}
.y11b{bottom:39.840584pt;}
.ybd{bottom:40.209992pt;}
.y11a{bottom:40.325117pt;}
.y1e{bottom:40.640000pt;}
.yc0{bottom:41.304707pt;}
.ydb{bottom:41.612792pt;}
.yeb{bottom:41.839583pt;}
.y15b{bottom:42.397181pt;}
.y199{bottom:42.549133pt;}
.yf4{bottom:43.324996pt;}
.y104{bottom:43.495159pt;}
.ycf{bottom:43.619588pt;}
.ye5{bottom:44.132690pt;}
.ydf{bottom:44.423141pt;}
.y10e{bottom:45.984200pt;}
.yc4{bottom:46.739989pt;}
.y173{bottom:46.758807pt;}
.ye2{bottom:46.814391pt;}
.yf{bottom:47.200000pt;}
.y6f{bottom:47.360000pt;}
.yce{bottom:47.738306pt;}
.yf3{bottom:48.074340pt;}
.y128{bottom:48.109614pt;}
.y15e{bottom:49.085538pt;}
.yf2{bottom:49.399276pt;}
.yf1{bottom:49.948348pt;}
.yc6{bottom:50.214291pt;}
.y13e{bottom:50.437584pt;}
.y164{bottom:51.250433pt;}
.y172{bottom:51.412270pt;}
.y119{bottom:51.482657pt;}
.y118{bottom:51.773377pt;}
.y117{bottom:52.291098pt;}
.y15a{bottom:52.543799pt;}
.y116{bottom:52.937585pt;}
.yea{bottom:54.083633pt;}
.yca{bottom:54.171905pt;}
.y171{bottom:55.129203pt;}
.ye9{bottom:55.149947pt;}
.ycd{bottom:55.619200pt;}
.y6{bottom:56.186667pt;}
.yc1{bottom:56.744288pt;}
.y1d{bottom:58.400000pt;}
.y13d{bottom:58.423557pt;}
.yc3{bottom:59.156887pt;}
.y195{bottom:59.413879pt;}
.y10d{bottom:59.727688pt;}
.ye1{bottom:59.899291pt;}
.ycc{bottom:60.412707pt;}
.yf0{bottom:60.738815pt;}
.y12c{bottom:60.751528pt;}
.yef{bottom:62.063750pt;}
.y170{bottom:62.755416pt;}
.y161{bottom:63.045926pt;}
.y13c{bottom:63.079498pt;}
.ye8{bottom:63.130065pt;}
.y16f{bottom:64.079291pt;}
.y132{bottom:64.210302pt;}
.y115{bottom:64.255751pt;}
.yb{bottom:64.986667pt;}
.y114{bottom:65.581912pt;}
.yc9{bottom:66.396006pt;}
.y13b{bottom:66.797083pt;}
.yc8{bottom:67.489401pt;}
.y159{bottom:71.544995pt;}
.yc2{bottom:72.249894pt;}
.ycb{bottom:73.054094pt;}
.y6d{bottom:73.952000pt;}
.y13a{bottom:74.427357pt;}
.y127{bottom:74.719349pt;}
.y16e{bottom:74.743255pt;}
.y5{bottom:75.066667pt;}
.yc7{bottom:75.435001pt;}
.y19d{bottom:75.504088pt;}
.y139{bottom:75.753265pt;}
.y1c{bottom:76.000000pt;}
.y16d{bottom:76.068457pt;}
.y157{bottom:77.522332pt;}
.y194{bottom:77.830351pt;}
.y208{bottom:80.672000pt;}
.y1b5{bottom:81.152000pt;}
.y198{bottom:81.286590pt;}
.yee{bottom:82.062453pt;}
.ya{bottom:82.106667pt;}
.y12f{bottom:83.189763pt;}
.y19c{bottom:83.871474pt;}
.y113{bottom:85.500877pt;}
.y138{bottom:86.422907pt;}
.y137{bottom:87.748815pt;}
.y125{bottom:89.203464pt;}
.y2a0{bottom:90.752000pt;}
.yed{bottom:90.978912pt;}
.y19b{bottom:91.496154pt;}
.y6c{bottom:91.712000pt;}
.y192{bottom:91.786605pt;}
.yd9{bottom:93.241514pt;}
.y1b{bottom:93.600000pt;}
.yd8{bottom:93.725600pt;}
.y112{bottom:93.844142pt;}
.y10a{bottom:94.361862pt;}
.yde{bottom:94.823745pt;}
.y4{bottom:95.066667pt;}
.y16c{bottom:96.071182pt;}
.y102{bottom:96.722137pt;}
.y16b{bottom:96.975875pt;}
.y15d{bottom:97.396384pt;}
.y108{bottom:97.789437pt;}
.y9{bottom:97.946667pt;}
.y207{bottom:98.272000pt;}
.y1b4{bottom:98.752000pt;}
.ye0{bottom:100.283965pt;}
.yda{bottom:100.833037pt;}
.y160{bottom:100.853318pt;}
.yec{bottom:102.997497pt;}
.ye4{bottom:103.741529pt;}
.y103{bottom:103.772428pt;}
.y16a{bottom:104.440251pt;}
.y111{bottom:105.518075pt;}
.y29b{bottom:105.680000pt;}
.y191{bottom:106.261427pt;}
.y107{bottom:106.262796pt;}
.y39{bottom:107.232000pt;}
.y136{bottom:107.729010pt;}
.y169{bottom:109.158714pt;}
.y6b{bottom:109.312000pt;}
.y168{bottom:110.063406pt;}
.y151{bottom:111.351035pt;}
.y167{bottom:111.355445pt;}
.y12b{bottom:111.382888pt;}
.y29f{bottom:112.352000pt;}
.y3{bottom:112.666667pt;}
.y14c{bottom:112.675615pt;}
.y206{bottom:112.832000pt;}
.y248{bottom:114.272000pt;}
.y14d{bottom:116.135717pt;}
.y135{bottom:116.297640pt;}
.y1b3{bottom:116.352000pt;}
.y150{bottom:119.724560pt;}
.y155{bottom:120.436860pt;}
.y166{bottom:121.147879pt;}
.y158{bottom:121.502062pt;}
.y165{bottom:122.052572pt;}
.y12a{bottom:123.184662pt;}
.y14f{bottom:125.350710pt;}
.y124{bottom:125.544486pt;}
.y38{bottom:126.272000pt;}
.y126{bottom:126.643436pt;}
.y6a{bottom:126.912000pt;}
.y134{bottom:128.971407pt;}
.y247{bottom:131.872000pt;}
.y29a{bottom:133.626667pt;}
.y1b2{bottom:133.946667pt;}
.y12e{bottom:135.152340pt;}
.y14a{bottom:135.723051pt;}
.y14b{bottom:136.798111pt;}
.y14e{bottom:137.342278pt;}
.y133{bottom:140.965629pt;}
.y37{bottom:140.986667pt;}
.y69{bottom:144.506667pt;}
.y246{bottom:149.466667pt;}
.y299{bottom:151.226667pt;}
.y1b1{bottom:151.706667pt;}
.y64{bottom:159.280000pt;}
.y245{bottom:167.066667pt;}
.y298{bottom:168.826667pt;}
.y1b0{bottom:169.306667pt;}
.y63{bottom:169.946667pt;}
.y236{bottom:181.813333pt;}
.y297{bottom:186.426667pt;}
.y1af{bottom:186.906667pt;}
.y62{bottom:189.813333pt;}
.y244{bottom:195.146667pt;}
.y61{bottom:196.506667pt;}
.y235{bottom:199.066667pt;}
.y296{bottom:204.186667pt;}
.y1ae{bottom:204.506667pt;}
.y101{bottom:208.413333pt;}
.y5c{bottom:212.080000pt;}
.y1a0{bottom:219.280000pt;}
.y295{bottom:221.786667pt;}
.y1fc{bottom:223.226667pt;}
.y234{bottom:224.026667pt;}
.y2cc{bottom:225.946667pt;}
.y5b{bottom:230.746667pt;}
.y1fb{bottom:238.013333pt;}
.y294{bottom:239.386667pt;}
.y19f{bottom:240.506667pt;}
.y2cb{bottom:243.706667pt;}
.y1fa{bottom:244.666667pt;}
.y58{bottom:255.746667pt;}
.y293{bottom:256.986667pt;}
.y1f8{bottom:260.413333pt;}
.y2ca{bottom:261.306667pt;}
.y57{bottom:262.426667pt;}
.y100{bottom:265.626667pt;}
.y1f7{bottom:267.066667pt;}
.y19e{bottom:273.786667pt;}
.y292{bottom:274.586667pt;}
.y2c9{bottom:278.906667pt;}
.y56{bottom:280.826667pt;}
.y1f6{bottom:285.466667pt;}
.y18f{bottom:288.546667pt;}
.y291{bottom:292.386667pt;}
.y2c8{bottom:296.546667pt;}
.y55{bottom:298.626667pt;}
.y36{bottom:302.146667pt;}
.y1f5{bottom:303.106667pt;}
.y290{bottom:309.986667pt;}
.y2c7{bottom:314.146667pt;}
.y54{bottom:316.226667pt;}
.y35{bottom:319.906667pt;}
.y1f4{bottom:320.706667pt;}
.y28f{bottom:327.586667pt;}
.y205{bottom:328.706667pt;}
.y2c6{bottom:331.906667pt;}
.yd7{bottom:332.080000pt;}
.y53{bottom:333.826667pt;}
.y34{bottom:337.506667pt;}
.y1f3{bottom:338.466667pt;}
.y18e{bottom:344.546667pt;}
.y28e{bottom:345.186667pt;}
.y204{bottom:347.746667pt;}
.y2c5{bottom:349.506667pt;}
.y52{bottom:351.426667pt;}
.y33{bottom:355.106667pt;}
.y1f2{bottom:356.066667pt;}
.y203{bottom:362.466667pt;}
.y28d{bottom:362.786667pt;}
.y2c4{bottom:367.106667pt;}
.y51{bottom:369.026667pt;}
.y32{bottom:372.706667pt;}
.y1f1{bottom:373.666667pt;}
.y28c{bottom:380.546667pt;}
.y2c3{bottom:384.706667pt;}
.y50{bottom:386.786667pt;}
.yd6{bottom:388.066667pt;}
.y31{bottom:390.306667pt;}
.y1f0{bottom:391.266667pt;}
.y28b{bottom:398.146667pt;}
.y2c2{bottom:402.306667pt;}
.y4f{bottom:404.386667pt;}
.y30{bottom:408.066667pt;}
.y1ef{bottom:408.866667pt;}
.y18d{bottom:412.386667pt;}
.y28a{bottom:415.746667pt;}
.y4a{bottom:419.146667pt;}
.y2c1{bottom:420.066667pt;}
.y4d{bottom:420.413333pt;}
.y2f{bottom:425.666667pt;}
.y1ee{bottom:426.626667pt;}
.y49{bottom:427.106667pt;}
.y183{bottom:427.146667pt;}
.y289{bottom:433.346667pt;}
.y2c0{bottom:437.666667pt;}
.y2e{bottom:443.266667pt;}
.y46{bottom:444.213333pt;}
.y1ed{bottom:444.226667pt;}
.y45{bottom:446.946667pt;}
.y182{bottom:447.106667pt;}
.y227{bottom:448.413333pt;}
.y288{bottom:450.946667pt;}
.y2bf{bottom:455.266667pt;}
.yd5{bottom:456.066667pt;}
.y2d{bottom:460.866667pt;}
.y231{bottom:461.680000pt;}
.y1ec{bottom:461.826667pt;}
.y43{bottom:463.946667pt;}
.y226{bottom:465.666667pt;}
.y287{bottom:468.706667pt;}
.y42{bottom:470.626667pt;}
.y2be{bottom:472.866667pt;}
.yd4{bottom:473.666667pt;}
.y1eb{bottom:476.546667pt;}
.y2c{bottom:478.466667pt;}
.y181{bottom:479.106667pt;}
.y286{bottom:486.306667pt;}
.y3b{bottom:487.613333pt;}
.ybc{bottom:488.413333pt;}
.y2bd{bottom:490.466667pt;}
.y225{bottom:490.946667pt;}
.y17a{bottom:493.813333pt;}
.y2b{bottom:496.226667pt;}
.y1ea{bottom:499.266667pt;}
.y284{bottom:501.013333pt;}
.y3a{bottom:502.306667pt;}
.y283{bottom:505.026667pt;}
.y2bc{bottom:508.226667pt;}
.y2a{bottom:513.826667pt;}
.y179{bottom:516.546667pt;}
.y281{bottom:519.746667pt;}
.y1e8{bottom:525.546667pt;}
.y2bb{bottom:525.826667pt;}
.y280{bottom:527.746667pt;}
.ybb{bottom:529.693333pt;}
.y29{bottom:531.453333pt;}
.y1e9{bottom:536.253333pt;}
.y2ba{bottom:543.453333pt;}
.y178{bottom:545.693333pt;}
.y27f{bottom:547.453333pt;}
.y28{bottom:549.053333pt;}
.y1e7{bottom:558.973333pt;}
.y154{bottom:560.213333pt;}
.y2b9{bottom:561.053333pt;}
.y27b{bottom:562.146667pt;}
.y27{bottom:566.653333pt;}
.y27e{bottom:570.173333pt;}
.y1e6{bottom:576.573333pt;}
.y202{bottom:578.333333pt;}
.y2b8{bottom:578.653333pt;}
.yba{bottom:582.973333pt;}
.y26{bottom:584.253333pt;}
.y27a{bottom:590.013333pt;}
.y1e5{bottom:594.173333pt;}
.y2b7{bottom:596.413333pt;}
.y201{bottom:597.373333pt;}
.yb9{bottom:600.573333pt;}
.y25{bottom:602.013333pt;}
.y273{bottom:604.546667pt;}
.y1e4{bottom:611.773333pt;}
.y200{bottom:612.093333pt;}
.y2b6{bottom:614.013333pt;}
.yb8{bottom:618.173333pt;}
.y24{bottom:619.613333pt;}
.y272{bottom:623.293333pt;}
.y153{bottom:625.533333pt;}
.y1e3{bottom:629.533333pt;}
.y2b5{bottom:631.613333pt;}
.yb4{bottom:632.880000pt;}
.y23{bottom:637.213333pt;}
.y1e2{bottom:647.133333pt;}
.y2b4{bottom:649.213333pt;}
.yb3{bottom:650.173333pt;}
.y21{bottom:650.333333pt;}
.y271{bottom:654.173333pt;}
.y1df{bottom:661.680000pt;}
.y2b3{bottom:666.813333pt;}
.y1a{bottom:668.733333pt;}
.y270{bottom:671.933333pt;}
.y1e1{bottom:672.413333pt;}
.yae{bottom:676.546667pt;}
.y2b2{bottom:684.573333pt;}
.y268{bottom:686.613333pt;}
.y1de{bottom:695.293333pt;}
.yad{bottom:696.573333pt;}
.y2b1{bottom:702.173333pt;}
.y152{bottom:702.973333pt;}
.y223{bottom:709.213333pt;}
.y267{bottom:709.373333pt;}
.y1dd{bottom:712.893333pt;}
.y222{bottom:715.933333pt;}
.y149{bottom:717.680000pt;}
.y2b0{bottom:719.773333pt;}
.yac{bottom:728.413333pt;}
.y1dc{bottom:730.493333pt;}
.y220{bottom:730.613333pt;}
.y2af{bottom:737.373333pt;}
.y266{bottom:738.493333pt;}
.yab{bottom:746.013333pt;}
.y1db{bottom:748.093333pt;}
.y221{bottom:750.653333pt;}
.y2ae{bottom:754.973333pt;}
.y265{bottom:756.093333pt;}
.y9d{bottom:760.746667pt;}
.y1da{bottom:762.813333pt;}
.y2ad{bottom:772.773333pt;}
.y264{bottom:773.733333pt;}
.y18{bottom:775.493333pt;}
.y9c{bottom:780.773333pt;}
.y21f{bottom:782.853333pt;}
.y1d9{bottom:785.573333pt;}
.y2ac{bottom:790.373333pt;}
.y263{bottom:791.333333pt;}
.y148{bottom:792.453333pt;}
.y21e{bottom:800.613333pt;}
.y17{bottom:801.733333pt;}
.y2ab{bottom:807.973333pt;}
.y262{bottom:809.093333pt;}
.y1cf{bottom:811.746667pt;}
.y9b{bottom:812.613333pt;}
.y1ff{bottom:817.893333pt;}
.y21d{bottom:818.213333pt;}
.y16{bottom:823.973333pt;}
.y2aa{bottom:825.573333pt;}
.y261{bottom:826.693333pt;}
.y97{bottom:827.280000pt;}
.y94{bottom:830.013333pt;}
.y1ce{bottom:831.813333pt;}
.y21c{bottom:835.813333pt;}
.y1fe{bottom:836.933333pt;}
.y15{bottom:837.413333pt;}
.y93{bottom:838.053333pt;}
.y2a9{bottom:843.173333pt;}
.y260{bottom:844.293333pt;}
.y215{bottom:850.480000pt;}
.y1fd{bottom:851.653333pt;}
.y14{bottom:856.293333pt;}
.y8f{bottom:857.813333pt;}
.y2a8{bottom:860.933333pt;}
.y25f{bottom:861.893333pt;}
.y1cd{bottom:864.133333pt;}
.y214{bottom:869.253333pt;}
.y8e{bottom:872.613333pt;}
.y13{bottom:877.253333pt;}
.y2a7{bottom:878.533333pt;}
.y147{bottom:878.853333pt;}
.y25e{bottom:879.493333pt;}
.y1cc{bottom:881.733333pt;}
.y123{bottom:893.680000pt;}
.y2a6{bottom:896.133333pt;}
.y25d{bottom:897.253333pt;}
.y1cb{bottom:899.333333pt;}
.y213{bottom:900.133333pt;}
.y8b{bottom:900.213333pt;}
.y12{bottom:905.413333pt;}
.y8a{bottom:909.573333pt;}
.y2a5{bottom:913.733333pt;}
.y1ca{bottom:914.013333pt;}
.y25c{bottom:914.853333pt;}
.y212{bottom:917.733333pt;}
.y1c9{bottom:922.053333pt;}
.y83{bottom:925.346667pt;}
.ye{bottom:929.253333pt;}
.y2a4{bottom:931.333333pt;}
.y25b{bottom:932.453333pt;}
.y211{bottom:935.333333pt;}
.y1c6{bottom:938.946667pt;}
.y82{bottom:940.133333pt;}
.y1c4{bottom:940.213333pt;}
.y1c1{bottom:941.680000pt;}
.y1c0{bottom:947.013333pt;}
.y1{bottom:949.093333pt;}
.y25a{bottom:950.053333pt;}
.y210{bottom:952.933333pt;}
.y1bd{bottom:965.013333pt;}
.y2a3{bottom:966.693333pt;}
.y74{bottom:967.613333pt;}
.y259{bottom:967.653333pt;}
.y122{bottom:968.453333pt;}
.y1bc{bottom:970.373333pt;}
.y2a2{bottom:984.293333pt;}
.y258{bottom:985.413333pt;}
.y73{bottom:987.653333pt;}
.y1b6{bottom:988.746667pt;}
.y1bb{bottom:998.053333pt;}
.y24a{bottom:1000.080000pt;}
.y2a1{bottom:1001.893333pt;}
.y72{bottom:1019.520000pt;}
.y249{bottom:1021.440000pt;}
.y71{bottom:1037.280000pt;}
.y6e{bottom:1060.800000pt;}
.h3{height:2.110000pt;}
.hda{height:16.199890pt;}
.h1c{height:17.332683pt;}
.h13{height:17.600000pt;}
.hb8{height:18.866848pt;}
.h35{height:19.872000pt;}
.h22{height:19.999342pt;}
.ha{height:20.032000pt;}
.h11{height:20.320000pt;}
.h1a{height:21.266574pt;}
.h96{height:21.332813pt;}
.h1b{height:21.333098pt;}
.h16{height:21.763434pt;}
.h66{height:21.981530pt;}
.h5c{height:21.992678pt;}
.h4a{height:22.532681pt;}
.h9d{height:22.599880pt;}
.hdc{height:22.865795pt;}
.h46{height:22.932994pt;}
.hf{height:24.131250pt;}
.h1d{height:25.084279pt;}
.h1f{height:25.182007pt;}
.h91{height:25.599757pt;}
.h17{height:25.689984pt;}
.h99{height:25.740814pt;}
.h24{height:25.811553pt;}
.h30{height:25.908580pt;}
.h4f{height:25.909465pt;}
.h52{height:25.934571pt;}
.h42{height:25.965201pt;}
.h39{height:25.971917pt;}
.h6e{height:26.058363pt;}
.h5a{height:26.101658pt;}
.h64{height:26.124667pt;}
.h80{height:26.129922pt;}
.h77{height:26.143836pt;}
.hdd{height:26.473626pt;}
.hc0{height:26.482456pt;}
.h2e{height:28.132776pt;}
.h4d{height:28.133736pt;}
.h26{height:29.007415pt;}
.hc4{height:29.725461pt;}
.hbc{height:29.973013pt;}
.h31{height:30.582996pt;}
.ha8{height:30.584039pt;}
.h53{height:30.613676pt;}
.h49{height:30.649832pt;}
.h3b{height:30.657759pt;}
.h70{height:30.759801pt;}
.h5d{height:30.810908pt;}
.h2a{height:30.823792pt;}
.h67{height:30.838069pt;}
.h82{height:30.844271pt;}
.h79{height:30.860696pt;}
.h8d{height:30.863919pt;}
.ha4{height:30.876289pt;}
.hd9{height:30.886569pt;}
.hbd{height:30.905082pt;}
.hb5{height:30.988667pt;}
.hd2{height:30.989338pt;}
.hca{height:31.073211pt;}
.had{height:31.299085pt;}
.h47{height:31.341825pt;}
.hac{height:31.400691pt;}
.h8{height:33.515625pt;}
.h98{height:34.253438pt;}
.haa{height:34.370807pt;}
.h72{height:34.568331pt;}
.h5f{height:34.625766pt;}
.h57{height:34.640244pt;}
.h69{height:34.656290pt;}
.h8f{height:34.685340pt;}
.hc5{height:35.088517pt;}
.hdf{height:35.119209pt;}
.h2d{height:35.174387pt;}
.hbe{height:35.380731pt;}
.h3e{height:36.856849pt;}
.hb1{height:36.905075pt;}
.ha7{height:36.975076pt;}
.h74{height:36.979524pt;}
.h87{height:37.010906pt;}
.hce{height:37.063440pt;}
.h3a{height:37.064201pt;}
.h6{height:37.090625pt;}
.h6b{height:37.125846pt;}
.h43{height:37.158661pt;}
.h6f{height:37.187567pt;}
.h81{height:37.249597pt;}
.h5b{height:37.261739pt;}
.h78{height:37.269433pt;}
.h29{height:37.305234pt;}
.ha3{height:37.328396pt;}
.hd8{height:37.330634pt;}
.h65{height:37.334712pt;}
.h8c{height:37.441262pt;}
.h4{height:37.479688pt;}
.hc9{height:37.695155pt;}
.h23{height:37.880398pt;}
.h14{height:38.672812pt;}
.h15{height:38.733316pt;}
.hc6{height:39.433007pt;}
.hbf{height:39.761403pt;}
.h3f{height:39.999778pt;}
.hde{height:40.104100pt;}
.hc2{height:40.149830pt;}
.hba{height:40.332894pt;}
.h34{height:41.112500pt;}
.h28{height:41.266769pt;}
.hb{height:41.543750pt;}
.haf{height:42.691250pt;}
.hae{height:42.944375pt;}
.hb2{height:43.563474pt;}
.h20{height:43.599577pt;}
.h97{height:43.632721pt;}
.ha9{height:43.646104pt;}
.h54{height:43.688398pt;}
.hcf{height:43.750410pt;}
.h3c{height:43.751309pt;}
.h10{height:43.782500pt;}
.h44{height:43.862811pt;}
.h71{height:43.896932pt;}
.ha0{height:43.934786pt;}
.h83{height:43.970154pt;}
.h5e{height:43.984486pt;}
.h7a{height:43.993568pt;}
.h2b{height:44.035829pt;}
.ha5{height:44.063170pt;}
.h9f{height:44.065811pt;}
.h68{height:44.070625pt;}
.hd6{height:44.167064pt;}
.hb6{height:44.195341pt;}
.hd3{height:44.196298pt;}
.h8e{height:44.196399pt;}
.h94{height:44.282728pt;}
.hb4{height:44.333325pt;}
.hd1{height:44.334285pt;}
.h18{height:44.487711pt;}
.hcb{height:44.496100pt;}
.h7{height:44.687500pt;}
.h25{height:44.714763pt;}
.h48{height:44.715324pt;}
.h9c{height:44.814703pt;}
.h5{height:45.156250pt;}
.hdb{height:45.353185pt;}
.hb0{height:46.533356pt;}
.h51{height:46.666796pt;}
.hcd{height:46.733037pt;}
.h36{height:46.733997pt;}
.ha1{height:47.067118pt;}
.hc{height:47.310625pt;}
.h9b{height:48.882858pt;}
.hb3{height:48.957292pt;}
.h33{height:49.048480pt;}
.hab{height:49.050154pt;}
.h55{height:49.097684pt;}
.hd0{height:49.167375pt;}
.h3d{height:49.168385pt;}
.h8a{height:49.266740pt;}
.h45{height:49.293692pt;}
.h73{height:49.332038pt;}
.h4c{height:49.374578pt;}
.h85{height:49.414326pt;}
.h60{height:49.430432pt;}
.h7c{height:49.440639pt;}
.h2c{height:49.488133pt;}
.ha6{height:49.518859pt;}
.h6a{height:49.527237pt;}
.hc7{height:49.600823pt;}
.hb7{height:49.667395pt;}
.hd4{height:49.668470pt;}
.h90{height:49.668583pt;}
.h19{height:49.995964pt;}
.hcc{height:50.005392pt;}
.hb9{height:50.189081pt;}
.h27{height:50.251129pt;}
.h1e{height:51.762956pt;}
.h21{height:51.992563pt;}
.h84{height:52.093122pt;}
.h7b{height:52.110476pt;}
.h7d{height:52.126462pt;}
.hd{height:52.834688pt;}
.hc1{height:54.626665pt;}
.hc3{height:55.586815pt;}
.hbb{height:56.049738pt;}
.h9a{height:57.839722pt;}
.h32{height:58.161397pt;}
.h50{height:58.163382pt;}
.h9{height:58.563750pt;}
.he{height:60.057813pt;}
.h95{height:63.717784pt;}
.h86{height:66.656347pt;}
.h40{height:66.751875pt;}
.h37{height:66.752332pt;}
.h6d{height:66.856470pt;}
.h4b{height:67.025577pt;}
.h7f{height:67.048959pt;}
.h76{height:67.084663pt;}
.h59{height:67.102681pt;}
.h62{height:67.153410pt;}
.h9e{height:67.225465pt;}
.ha2{height:67.228146pt;}
.hd5{height:67.339254pt;}
.hd7{height:67.571573pt;}
.h92{height:67.583877pt;}
.h38{height:77.282112pt;}
.h41{height:77.439962pt;}
.h63{height:77.826409pt;}
.h88{height:78.060064pt;}
.h93{height:78.271922pt;}
.h56{height:79.204061pt;}
.h58{height:89.267502pt;}
.h2f{height:90.341139pt;}
.h4e{height:90.344221pt;}
.h89{height:96.312450pt;}
.h12{height:106.112000pt;}
.h8b{height:108.176315pt;}
.hc8{height:108.909871pt;}
.h61{height:118.732267pt;}
.h6c{height:121.267398pt;}
.h2{height:125.152000pt;}
.h7e{height:137.335508pt;}
.h75{height:156.003202pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3c{width:9.000011pt;}
.w28{width:17.266472pt;}
.w30{width:21.599239pt;}
.we{width:26.732731pt;}
.wd{width:28.000390pt;}
.w16{width:29.266089pt;}
.w6{width:31.520000pt;}
.w3a{width:33.267285pt;}
.w29{width:38.398743pt;}
.w35{width:42.867085pt;}
.w19{width:44.132485pt;}
.w33{width:53.265810pt;}
.wf{width:54.732644pt;}
.w31{width:58.732548pt;}
.w27{width:59.799190pt;}
.wc{width:59.998866pt;}
.w3b{width:63.866957pt;}
.w26{width:64.000397pt;}
.w13{width:67.999347pt;}
.w37{width:72.198826pt;}
.w25{width:75.068107pt;}
.w32{width:77.265349pt;}
.wb{width:78.731159pt;}
.w34{width:78.864595pt;}
.w2f{width:86.530209pt;}
.w2c{width:86.596447pt;}
.w21{width:87.999770pt;}
.w18{width:89.266441pt;}
.w3d{width:94.736411pt;}
.w36{width:97.132579pt;}
.w2a{width:99.666267pt;}
.w39{width:100.136663pt;}
.w2b{width:109.602002pt;}
.w17{width:113.269995pt;}
.w38{width:126.863780pt;}
.w4{width:141.280000pt;}
.w22{width:142.737925pt;}
.w1b{width:145.272012pt;}
.w1a{width:148.007246pt;}
.w2{width:153.626667pt;}
.w8{width:170.746667pt;}
.w2e{width:180.134160pt;}
.w12{width:186.536551pt;}
.w1f{width:189.330091pt;}
.w10{width:197.335178pt;}
.w23{width:203.994275pt;}
.w20{width:205.328984pt;}
.w15{width:207.997330pt;}
.w2d{width:219.862413pt;}
.w11{width:221.344432pt;}
.w1e{width:225.267570pt;}
.w1c{width:228.004342pt;}
.w14{width:230.742311pt;}
.w1d{width:257.273566pt;}
.w24{width:265.265542pt;}
.w3{width:413.213333pt;}
.w9{width:520.573333pt;}
.w7{width:665.733333pt;}
.wa{width:691.333333pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xab{left:1.006152pt;}
.x29{left:2.038043pt;}
.x1a{left:3.309951pt;}
.x53{left:4.755454pt;}
.xa2{left:5.995863pt;}
.x9{left:7.200000pt;}
.x38{left:8.639895pt;}
.x18{left:9.801199pt;}
.x60{left:11.197136pt;}
.x23{left:12.234191pt;}
.x2d{left:14.107784pt;}
.x20{left:16.160577pt;}
.x39{left:18.143911pt;}
.x7b{left:19.219663pt;}
.x1b{left:20.277662pt;}
.x26{left:22.761951pt;}
.x89{left:23.828006pt;}
.x2f{left:27.079344pt;}
.x55{left:28.726530pt;}
.x41{left:29.654776pt;}
.x19{left:31.428466pt;}
.x48{left:32.621833pt;}
.x4{left:34.080000pt;}
.x9a{left:35.456843pt;}
.x6b{left:36.424031pt;}
.xbd{left:37.435141pt;}
.x37{left:38.718900pt;}
.x17{left:40.651451pt;}
.x1{left:42.880000pt;}
.x36{left:44.159320pt;}
.x52{left:46.907626pt;}
.xb{left:47.999988pt;}
.x9e{left:49.581387pt;}
.xd{left:51.360000pt;}
.x54{left:52.762959pt;}
.x66{left:54.200239pt;}
.xa{left:55.200000pt;}
.x50{left:56.095608pt;}
.x11{left:58.559988pt;}
.x64{left:59.684898pt;}
.x43{left:63.355676pt;}
.x15{left:64.751832pt;}
.x82{left:65.894192pt;}
.xf{left:67.199988pt;}
.xb9{left:68.619869pt;}
.x16{left:70.215305pt;}
.x6{left:71.880000pt;}
.x9c{left:72.824390pt;}
.x45{left:74.813333pt;}
.x77{left:76.224278pt;}
.x83{left:78.677554pt;}
.xc{left:80.160000pt;}
.x8c{left:81.224342pt;}
.x6a{left:82.146667pt;}
.x4b{left:83.613333pt;}
.x79{left:85.016228pt;}
.x59{left:86.181360pt;}
.x49{left:87.217883pt;}
.x75{left:88.170072pt;}
.x8a{left:89.664979pt;}
.x3f{left:91.322891pt;}
.x6c{left:93.267654pt;}
.x33{left:94.891431pt;}
.x5f{left:96.880000pt;}
.x9b{left:98.016502pt;}
.x2a{left:98.927415pt;}
.x8b{left:100.345811pt;}
.x47{left:101.359890pt;}
.xa1{left:102.813333pt;}
.x32{left:103.812802pt;}
.x84{left:104.860967pt;}
.x28{left:106.756661pt;}
.x88{left:110.084804pt;}
.x72{left:111.154419pt;}
.x3e{left:112.470289pt;}
.x92{left:113.765369pt;}
.x5a{left:115.362733pt;}
.x6f{left:116.640438pt;}
.x2e{left:117.852355pt;}
.x51{left:119.405327pt;}
.x85{left:120.461204pt;}
.x3b{left:121.791988pt;}
.x8f{left:122.970779pt;}
.x7{left:124.520000pt;}
.x5d{left:125.995889pt;}
.x65{left:127.614073pt;}
.x7a{left:131.397892pt;}
.x81{left:132.565545pt;}
.x93{left:134.090053pt;}
.x80{left:135.353244pt;}
.x4f{left:136.880000pt;}
.x5c{left:138.146667pt;}
.x73{left:139.465153pt;}
.x2{left:142.266667pt;}
.xb8{left:144.746667pt;}
.x7d{left:145.923872pt;}
.x58{left:147.676601pt;}
.xad{left:149.306655pt;}
.x71{left:150.399945pt;}
.x46{left:154.146667pt;}
.x68{left:155.110513pt;}
.x86{left:159.065923pt;}
.xaa{left:160.963808pt;}
.x91{left:162.379654pt;}
.x67{left:168.250288pt;}
.x94{left:169.671199pt;}
.x9f{left:171.884093pt;}
.x4c{left:172.826655pt;}
.x7c{left:173.921280pt;}
.xa9{left:175.866655pt;}
.x76{left:177.869951pt;}
.x57{left:180.936977pt;}
.x42{left:182.712368pt;}
.x90{left:184.546482pt;}
.x63{left:185.938445pt;}
.x61{left:189.569172pt;}
.x3d{left:191.356345pt;}
.x62{left:192.335441pt;}
.x3{left:196.506667pt;}
.x74{left:205.499589pt;}
.x3c{left:207.293860pt;}
.x70{left:208.705531pt;}
.x6d{left:212.310554pt;}
.x6e{left:215.064206pt;}
.x5{left:220.680000pt;}
.xe{left:222.106667pt;}
.xac{left:228.186655pt;}
.xa3{left:233.346667pt;}
.xa8{left:236.666655pt;}
.xa4{left:250.586655pt;}
.xb5{left:257.346655pt;}
.xb6{left:259.266655pt;}
.x4a{left:267.426655pt;}
.xba{left:271.586655pt;}
.xa7{left:274.146655pt;}
.xae{left:280.066655pt;}
.x5e{left:283.426655pt;}
.x56{left:284.866655pt;}
.xbb{left:295.280000pt;}
.x5b{left:309.506655pt;}
.xa5{left:313.546667pt;}
.x44{left:314.786655pt;}
.x4d{left:315.946667pt;}
.xb3{left:319.613333pt;}
.x7e{left:323.426655pt;}
.x69{left:324.866655pt;}
.x40{left:326.146655pt;}
.x78{left:339.426655pt;}
.xa6{left:351.906655pt;}
.xb7{left:355.106655pt;}
.x4e{left:360.066655pt;}
.xb4{left:372.866655pt;}
.x10{left:377.986655pt;}
.x12{left:420.893322pt;}
.x13{left:440.093322pt;}
.xb1{left:447.773322pt;}
.xb0{left:449.853322pt;}
.x9d{left:450.946667pt;}
.xc2{left:454.173322pt;}
.xc5{left:463.773322pt;}
.x1f{left:467.613333pt;}
.x8e{left:470.946667pt;}
.x2c{left:473.013333pt;}
.x22{left:481.013333pt;}
.x35{left:482.813333pt;}
.x1d{left:485.213333pt;}
.x7f{left:489.013333pt;}
.x31{left:490.346667pt;}
.x21{left:495.613322pt;}
.x24{left:507.773322pt;}
.x98{left:512.213333pt;}
.xc4{left:517.213322pt;}
.xc3{left:521.680000pt;}
.xc1{left:525.213333pt;}
.x25{left:530.946667pt;}
.x96{left:539.613333pt;}
.x14{left:544.213333pt;}
.x1e{left:545.213322pt;}
.x3a{left:550.813322pt;}
.xc6{left:558.493322pt;}
.xbc{left:579.280000pt;}
.xb2{left:583.293322pt;}
.x27{left:585.693322pt;}
.xbf{left:599.946667pt;}
.x8{left:609.733333pt;}
.x1c{left:623.013322pt;}
.x97{left:627.653322pt;}
.x99{left:655.013322pt;}
.x34{left:676.933322pt;}
.x87{left:678.373322pt;}
.x2b{left:682.373322pt;}
.x8d{left:686.373322pt;}
.x30{left:694.373322pt;}
.x95{left:696.293322pt;}
.xc0{left:700.133322pt;}
.xa0{left:716.293322pt;}
.xbe{left:722.053322pt;}
.xaf{left:744.933322pt;}
}




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