
    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_7b5c3b84fd8817bbdcddcc90.woff')format("woff");}.ff1{font-family:ff1;line-height:1.402354;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_b7709ab668ff3032d54e3f04.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a365d722f13abe0c12c1582a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_e2f48e3f5394bc576c9f4327.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_5619791b852837c8b21c53c6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.901000;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_db319316829827433ef17e5d.woff')format("woff");}.ff6{font-family:ff6;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_5ca900e7ecac120a8c081a05.woff')format("woff");}.ff7{font-family:ff7;line-height:0.918000;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_7602cc9f362e25f5b021e34a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.921000;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_9fa33cbeeca32c49c8c2e494.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_92f8a26056d725064c7234dc.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d5807dac7d012b8c0efa8fae.woff')format("woff");}.ffb{font-family:ffb;line-height:0.815000;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_4a39c9c690535da75d526364.woff')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e5af4ed120aba17931383e61.woff')format("woff");}.ffd{font-family:ffd;line-height:0.908000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_69f66ec789bb84c4fa8443a3.woff')format("woff");}.ffe{font-family:ffe;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3e3564d74ef9ca3f31c7050d.woff')format("woff");}.fff{font-family:fff;line-height:0.821000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_68cc98fd8c1d00800340ad90.woff')format("woff");}.ff10{font-family:ff10;line-height:0.431000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_9f1e7c1fbc92da514b2ad48e.woff')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_adc2867a767009a69a9ad906.woff')format("woff");}.ff12{font-family:ff12;line-height:1.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_1b88189f3d15fb5fe16535e1.woff')format("woff");}.ff13{font-family:ff13;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_38e7fe27778840b78e194ba6.woff')format("woff");}.ff14{font-family:ff14;line-height:0.442000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_91f3aa2cf888ba31771be295.woff')format("woff");}.ff15{font-family:ff15;line-height:2.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b92527baf3bd5c9b3bd537d0.woff')format("woff");}.ff16{font-family:ff16;line-height:0.705000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_5e70a198b6c318540ec6a372.woff')format("woff");}.ff17{font-family:ff17;line-height:0.521000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_623aa0f11b020597f4601a94.woff')format("woff");}.ff18{font-family:ff18;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_88ed3b7d7b49f47fc844401f.woff')format("woff");}.ff19{font-family:ff19;line-height:0.905000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_e6a7deadb5c37b430be7e5e7.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.686000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_c4822f64cb16dac353dc1395.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.998000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_e21b2bdf574087902299fdd5.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.909000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_ca77d73c296c23c7c02d864f.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_ba1004998c185c7fe74ffc7d.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_ec87d454221cf20557a244c1.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.888000;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:ff20;src:url('chunks/assets/font_548025343a3f39a43acb14c1.woff')format("woff");}.ff20{font-family:ff20;line-height:0.906000;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:ff21;src:url('chunks/assets/font_8192be0f860bb09dc4805b6f.woff')format("woff");}.ff21{font-family:ff21;line-height:0.699000;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:ff22;src:url('chunks/assets/font_3077a7a0f35017dd77e11c04.woff')format("woff");}.ff22{font-family:ff22;line-height:0.902000;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:ff23;src:url('chunks/assets/font_8192be0f860bb09dc4805b6f.woff')format("woff");}.ff23{font-family:ff23;line-height:0.699000;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:ff24;src:url('chunks/assets/font_34007d752863023b0e8e7f74.woff')format("woff");}.ff24{font-family:ff24;line-height:0.905000;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:ff25;src:url('chunks/assets/font_710d53fc68879c09013c9981.woff')format("woff");}.ff25{font-family:ff25;line-height:0.694000;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:ff26;src:url('chunks/assets/font_06fab5301769d4090402d6ca.woff')format("woff");}.ff26{font-family:ff26;line-height:0.901000;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:ff27;src:url('chunks/assets/font_8192be0f860bb09dc4805b6f.woff')format("woff");}.ff27{font-family:ff27;line-height:0.699000;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v12{vertical-align:-108.192000px;}
.v27{vertical-align:-66.348000px;}
.v32{vertical-align:-64.737737px;}
.v29{vertical-align:-62.766000px;}
.v2a{vertical-align:-44.832000px;}
.v33{vertical-align:-39.079629px;}
.v1e{vertical-align:-38.053118px;}
.v35{vertical-align:-33.067288px;}
.v1f{vertical-align:-31.267632px;}
.v2f{vertical-align:-28.798947px;}
.v3{vertical-align:-22.854000px;}
.v5{vertical-align:-21.690000px;}
.v36{vertical-align:-19.566984px;}
.v4{vertical-align:-16.878000px;}
.v1d{vertical-align:-14.902589px;}
.v34{vertical-align:-12.741443px;}
.v1c{vertical-align:-10.777589px;}
.v6{vertical-align:-8.970000px;}
.v20{vertical-align:-5.976000px;}
.v2e{vertical-align:-1.470000px;}
.v0{vertical-align:0.000000px;}
.v28{vertical-align:2.988000px;}
.v19{vertical-align:4.038000px;}
.v18{vertical-align:5.814000px;}
.v1a{vertical-align:8.964000px;}
.v1b{vertical-align:11.958000px;}
.ve{vertical-align:13.686000px;}
.v7{vertical-align:15.774000px;}
.vc{vertical-align:16.926000px;}
.v11{vertical-align:18.030000px;}
.v1{vertical-align:21.696000px;}
.v2{vertical-align:22.854000px;}
.v9{vertical-align:24.678000px;}
.v30{vertical-align:26.736000px;}
.v10{vertical-align:28.722000px;}
.v24{vertical-align:32.034000px;}
.v14{vertical-align:33.378000px;}
.v31{vertical-align:35.925919px;}
.v16{vertical-align:37.254000px;}
.vd{vertical-align:38.616000px;}
.v8{vertical-align:39.732000px;}
.v23{vertical-align:41.004000px;}
.va{vertical-align:42.720000px;}
.v13{vertical-align:48.156000px;}
.v37{vertical-align:51.723979px;}
.v25{vertical-align:55.782000px;}
.vb{vertical-align:56.784000px;}
.v15{vertical-align:60.984000px;}
.v17{vertical-align:62.130000px;}
.vf{vertical-align:66.348000px;}
.v2d{vertical-align:68.742000px;}
.v26{vertical-align:81.126000px;}
.v21{vertical-align:88.554000px;}
.v2b{vertical-align:92.604000px;}
.v22{vertical-align:107.352000px;}
.v2c{vertical-align:113.478000px;}
.ls3{letter-spacing:0.000000px;}
.lsa9{letter-spacing:0.000062px;}
.lse2{letter-spacing:0.000291px;}
.ls10a{letter-spacing:0.000293px;}
.lsf9{letter-spacing:0.000532px;}
.ls16{letter-spacing:0.000538px;}
.ls87{letter-spacing:0.000544px;}
.lsd6{letter-spacing:0.000557px;}
.ls6c{letter-spacing:0.000564px;}
.ls97{letter-spacing:0.000767px;}
.ls5{letter-spacing:0.000780px;}
.ls73{letter-spacing:0.000993px;}
.lsdc{letter-spacing:0.001002px;}
.ls93{letter-spacing:0.001084px;}
.ls8c{letter-spacing:0.001243px;}
.lsc3{letter-spacing:0.001409px;}
.ls2c{letter-spacing:0.001698px;}
.ls76{letter-spacing:0.002174px;}
.ls39{letter-spacing:0.002338px;}
.lsf8{letter-spacing:0.002352px;}
.ls106{letter-spacing:0.002387px;}
.lsa5{letter-spacing:0.002400px;}
.ls85{letter-spacing:0.002481px;}
.lsea{letter-spacing:0.002525px;}
.ls13{letter-spacing:0.002638px;}
.lsec{letter-spacing:0.002800px;}
.ls7{letter-spacing:0.003269px;}
.ls51{letter-spacing:0.003506px;}
.ls122{letter-spacing:0.003507px;}
.ls4d{letter-spacing:0.003723px;}
.ls118{letter-spacing:0.003959px;}
.ls28{letter-spacing:0.003962px;}
.ls33{letter-spacing:0.004200px;}
.ls55{letter-spacing:0.004618px;}
.lse{letter-spacing:0.004893px;}
.ls94{letter-spacing:0.005276px;}
.ls1b{letter-spacing:0.005306px;}
.ls26{letter-spacing:0.006062px;}
.lscb{letter-spacing:0.008519px;}
.ls130{letter-spacing:0.008754px;}
.lscf{letter-spacing:0.009622px;}
.lse4{letter-spacing:0.009888px;}
.ls2{letter-spacing:0.067680px;}
.ls115{letter-spacing:0.078690px;}
.ls116{letter-spacing:0.093037px;}
.ls117{letter-spacing:0.093859px;}
.lscc{letter-spacing:0.136404px;}
.ls10f{letter-spacing:0.159782px;}
.lse3{letter-spacing:0.167890px;}
.ls10b{letter-spacing:0.169228px;}
.ls1{letter-spacing:0.174000px;}
.ls10c{letter-spacing:0.188472px;}
.ls0{letter-spacing:0.216000px;}
.ls111{letter-spacing:0.229953px;}
.lsca{letter-spacing:0.259202px;}
.ls112{letter-spacing:0.311255px;}
.lsc9{letter-spacing:0.388386px;}
.ls18{letter-spacing:0.458387px;}
.ls20{letter-spacing:0.464387px;}
.ls50{letter-spacing:0.579506px;}
.lsb{letter-spacing:1.655249px;}
.ls77{letter-spacing:1.661102px;}
.ls19{letter-spacing:1.661249px;}
.ls3e{letter-spacing:1.665333px;}
.ls7d{letter-spacing:2.137689px;}
.lsb0{letter-spacing:2.142767px;}
.ls7a{letter-spacing:2.143689px;}
.lsab{letter-spacing:2.148767px;}
.ls1c{letter-spacing:2.149908px;}
.ls6b{letter-spacing:2.414908px;}
.ls62{letter-spacing:2.420908px;}
.ls8f{letter-spacing:2.582338px;}
.ls58{letter-spacing:2.746618px;}
.lsf{letter-spacing:2.750175px;}
.ls5b{letter-spacing:2.786444px;}
.ls90{letter-spacing:2.983480px;}
.ls40{letter-spacing:2.984525px;}
.ls49{letter-spacing:2.985319px;}
.lsd7{letter-spacing:2.986491px;}
.ls3b{letter-spacing:2.986982px;}
.ls79{letter-spacing:2.987197px;}
.ls48{letter-spacing:2.987864px;}
.ls5d{letter-spacing:2.988532px;}
.ls7e{letter-spacing:2.989409px;}
.ls8a{letter-spacing:2.989480px;}
.ls3a{letter-spacing:2.990525px;}
.ls47{letter-spacing:2.991319px;}
.ls6a{letter-spacing:2.993197px;}
.ls4a{letter-spacing:2.993864px;}
.ls5f{letter-spacing:3.159269px;}
.lsf5{letter-spacing:3.331559px;}
.lsf4{letter-spacing:3.336780px;}
.ls31{letter-spacing:3.422408px;}
.ls9d{letter-spacing:3.447652px;}
.ls6e{letter-spacing:3.800854px;}
.ls14{letter-spacing:3.945350px;}
.ls17{letter-spacing:3.951350px;}
.lsd5{letter-spacing:4.272468px;}
.ls61{letter-spacing:4.276379px;}
.ls72{letter-spacing:4.281175px;}
.ls78{letter-spacing:4.486454px;}
.ls9c{letter-spacing:4.491010px;}
.ls7c{letter-spacing:4.492454px;}
.ls25{letter-spacing:4.688646px;}
.ls29{letter-spacing:4.913967px;}
.ls35{letter-spacing:4.919967px;}
.lsda{letter-spacing:5.119966px;}
.lsd4{letter-spacing:5.125966px;}
.ls102{letter-spacing:5.346538px;}
.ls21{letter-spacing:5.746430px;}
.ls9b{letter-spacing:5.752430px;}
.ls56{letter-spacing:5.774444px;}
.ls5a{letter-spacing:5.780444px;}
.ls5c{letter-spacing:5.977480px;}
.ls2d{letter-spacing:6.240990px;}
.ls8e{letter-spacing:6.939350px;}
.ls89{letter-spacing:7.050249px;}
.lsa{letter-spacing:8.303139px;}
.ls101{letter-spacing:8.336525px;}
.lsee{letter-spacing:8.442538px;}
.ls134{letter-spacing:8.964538px;}
.ls82{letter-spacing:9.366538px;}
.ls83{letter-spacing:9.372538px;}
.ls59{letter-spacing:9.956446px;}
.ls7f{letter-spacing:9.963962px;}
.ls100{letter-spacing:10.704538px;}
.lsff{letter-spacing:10.713269px;}
.ls43{letter-spacing:11.042098px;}
.lsd{letter-spacing:11.072338px;}
.lsa2{letter-spacing:11.138400px;}
.ls12e{letter-spacing:11.316538px;}
.lsed{letter-spacing:11.426525px;}
.ls37{letter-spacing:11.619962px;}
.ls133{letter-spacing:11.960525px;}
.lse0{letter-spacing:12.762538px;}
.lsdf{letter-spacing:12.765269px;}
.lsa0{letter-spacing:12.954615px;}
.lsb6{letter-spacing:13.038538px;}
.lsa6{letter-spacing:13.270183px;}
.ls57{letter-spacing:13.278538px;}
.ls2a{letter-spacing:13.281269px;}
.lsc{letter-spacing:13.281507px;}
.ls2b{letter-spacing:13.284538px;}
.ls12b{letter-spacing:13.686538px;}
.lsf6{letter-spacing:13.950780px;}
.ls12d{letter-spacing:14.306525px;}
.ls137{letter-spacing:14.424538px;}
.lsf3{letter-spacing:14.610532px;}
.lsf7{letter-spacing:15.357959px;}
.lsf1{letter-spacing:15.702538px;}
.lsfb{letter-spacing:15.735959px;}
.lsd2{letter-spacing:15.854525px;}
.lsfd{letter-spacing:15.860525px;}
.lsa7{letter-spacing:16.206990px;}
.ls88{letter-spacing:16.263269px;}
.lseb{letter-spacing:16.268525px;}
.ls104{letter-spacing:16.599507px;}
.ls9{letter-spacing:16.602538px;}
.ls27{letter-spacing:16.605269px;}
.ls105{letter-spacing:16.605507px;}
.ls12a{letter-spacing:16.682525px;}
.lsfa{letter-spacing:16.902532px;}
.ls8{letter-spacing:17.181506px;}
.ls136{letter-spacing:17.414525px;}
.ls119{letter-spacing:17.468446px;}
.ls129{letter-spacing:17.676538px;}
.ls128{letter-spacing:17.679269px;}
.lsa3{letter-spacing:17.972646px;}
.lsfe{letter-spacing:18.197864px;}
.ls8d{letter-spacing:18.212098px;}
.ls3c{letter-spacing:18.263249px;}
.ls13b{letter-spacing:18.427448px;}
.lsf0{letter-spacing:18.692525px;}
.ls11e{letter-spacing:18.776525px;}
.ls103{letter-spacing:18.941864px;}
.ls74{letter-spacing:19.030430px;}
.lsa4{letter-spacing:19.036430px;}
.ls54{letter-spacing:19.058444px;}
.ls4c{letter-spacing:19.395269px;}
.ls13a{letter-spacing:19.455269px;}
.ls84{letter-spacing:19.467269px;}
.ls86{letter-spacing:19.586525px;}
.lsbf{letter-spacing:19.592525px;}
.lse1{letter-spacing:19.665269px;}
.lsb7{letter-spacing:19.810893px;}
.ls6{letter-spacing:19.925468px;}
.ls3d{letter-spacing:20.452982px;}
.lsef{letter-spacing:20.489864px;}
.ls135{letter-spacing:20.753864px;}
.ls45{letter-spacing:20.798098px;}
.lsb8{letter-spacing:20.834444px;}
.ls65{letter-spacing:20.853507px;}
.ls68{letter-spacing:20.930854px;}
.ls108{letter-spacing:21.101864px;}
.lse9{letter-spacing:21.288538px;}
.ls10d{letter-spacing:21.346491px;}
.lsb2{letter-spacing:21.678538px;}
.ls66{letter-spacing:21.704408px;}
.ls12f{letter-spacing:21.929864px;}
.ls64{letter-spacing:22.130854px;}
.ls120{letter-spacing:22.133864px;}
.lsbb{letter-spacing:22.376444px;}
.ls99{letter-spacing:22.382444px;}
.ls2f{letter-spacing:22.455507px;}
.ls12{letter-spacing:22.524538px;}
.lsd1{letter-spacing:22.715864px;}
.ls95{letter-spacing:22.730444px;}
.ls67{letter-spacing:22.898444px;}
.ls92{letter-spacing:23.228444px;}
.ls7b{letter-spacing:23.449409px;}
.ls12c{letter-spacing:23.525864px;}
.lsb3{letter-spacing:23.652249px;}
.ls81{letter-spacing:23.658249px;}
.ls69{letter-spacing:23.732854px;}
.ls109{letter-spacing:24.002525px;}
.ls123{letter-spacing:24.129507px;}
.lse8{letter-spacing:24.278525px;}
.ls32{letter-spacing:24.401549px;}
.ls124{letter-spacing:24.440800px;}
.ls5e{letter-spacing:24.470444px;}
.ls30{letter-spacing:24.615199px;}
.ls138{letter-spacing:24.650525px;}
.ls121{letter-spacing:24.977864px;}
.ls96{letter-spacing:24.998444px;}
.ls98{letter-spacing:25.004444px;}
.ls24{letter-spacing:25.082408px;}
.ls22{letter-spacing:25.232525px;}
.ls34{letter-spacing:25.382338px;}
.lsc0{letter-spacing:25.544446px;}
.ls42{letter-spacing:25.700646px;}
.ls36{letter-spacing:26.165549px;}
.ls6f{letter-spacing:26.289269px;}
.lsde{letter-spacing:26.423864px;}
.ls53{letter-spacing:26.436538px;}
.lsc5{letter-spacing:26.454538px;}
.lsc8{letter-spacing:26.456685px;}
.lsc6{letter-spacing:26.457507px;}
.lsc7{letter-spacing:26.460538px;}
.lsf2{letter-spacing:26.543864px;}
.ls125{letter-spacing:26.763199px;}
.ls23{letter-spacing:26.950200px;}
.lsa1{letter-spacing:26.976249px;}
.ls127{letter-spacing:27.455864px;}
.lsc1{letter-spacing:27.492312px;}
.lsd3{letter-spacing:28.527269px;}
.ls10e{letter-spacing:28.566946px;}
.ls139{letter-spacing:28.617507px;}
.lsbe{letter-spacing:28.661864px;}
.lsb1{letter-spacing:28.734249px;}
.ls70{letter-spacing:29.002430px;}
.lsd8{letter-spacing:29.046780px;}
.lsd9{letter-spacing:29.053559px;}
.lsad{letter-spacing:29.298538px;}
.lsd0{letter-spacing:29.333864px;}
.lsc4{letter-spacing:29.450525px;}
.ls71{letter-spacing:29.773690px;}
.ls11{letter-spacing:30.002450px;}
.lsbd{letter-spacing:30.128098px;}
.ls3f{letter-spacing:30.514982px;}
.lsaf{letter-spacing:30.530525px;}
.lsaa{letter-spacing:30.602444px;}
.lsae{letter-spacing:30.608444px;}
.lsc2{letter-spacing:30.818172px;}
.ls126{letter-spacing:31.061864px;}
.ls1f{letter-spacing:31.616368px;}
.ls8b{letter-spacing:31.620538px;}
.ls1d{letter-spacing:32.122430px;}
.lsa8{letter-spacing:32.576444px;}
.ls11f{letter-spacing:32.654525px;}
.ls1e{letter-spacing:32.887690px;}
.lsba{letter-spacing:33.176444px;}
.lsb9{letter-spacing:33.182444px;}
.ls131{letter-spacing:33.702532px;}
.ls4f{letter-spacing:33.819269px;}
.ls52{letter-spacing:33.908450px;}
.ls44{letter-spacing:34.944538px;}
.ls60{letter-spacing:35.888450px;}
.ls4{letter-spacing:36.217409px;}
.lsac{letter-spacing:36.348249px;}
.lse7{letter-spacing:36.500525px;}
.lsbc{letter-spacing:36.554444px;}
.ls11a{letter-spacing:36.594780px;}
.ls11b{letter-spacing:36.595559px;}
.lse5{letter-spacing:37.572532px;}
.lse6{letter-spacing:39.018532px;}
.ls132{letter-spacing:39.186532px;}
.ls4e{letter-spacing:42.746525px;}
.ls38{letter-spacing:48.398525px;}
.ls107{letter-spacing:48.548098px;}
.ls11c{letter-spacing:54.894780px;}
.ls9f{letter-spacing:59.930444px;}
.lsb5{letter-spacing:61.861140px;}
.lsb4{letter-spacing:61.975140px;}
.ls15{letter-spacing:62.761140px;}
.ls80{letter-spacing:76.148338px;}
.ls9e{letter-spacing:80.179140px;}
.lsdd{letter-spacing:88.548532px;}
.ls6d{letter-spacing:92.726338px;}
.ls10{letter-spacing:95.954338px;}
.ls75{letter-spacing:97.003908px;}
.lsdb{letter-spacing:131.406468px;}
.ls41{letter-spacing:190.790338px;}
.lsce{letter-spacing:195.563486px;}
.ls91{letter-spacing:202.874338px;}
.lscd{letter-spacing:213.043337px;}
.ls63{letter-spacing:216.200338px;}
.ls11d{letter-spacing:224.952532px;}
.ls114{letter-spacing:226.210568px;}
.ls1a{letter-spacing:228.290338px;}
.ls2e{letter-spacing:230.600338px;}
.ls113{letter-spacing:232.277922px;}
.lsfc{letter-spacing:247.611959px;}
.ls4b{letter-spacing:313.124338px;}
.ls9a{letter-spacing:347.630338px;}
.ls46{letter-spacing:469.646338px;}
.ls110{letter-spacing:549.751988px;}
.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;}
}
.ws88{word-spacing:-59.775600px;}
.ws161{word-spacing:-55.293996px;}
.wsfc{word-spacing:-47.654765px;}
.ws89{word-spacing:-44.152519px;}
.ws112{word-spacing:-43.157983px;}
.wsdb{word-spacing:-42.580685px;}
.ws78{word-spacing:-38.937826px;}
.ws7a{word-spacing:-31.633157px;}
.ws122{word-spacing:-29.875845px;}
.ws18c{word-spacing:-29.388273px;}
.ws7b{word-spacing:-29.015076px;}
.ws68{word-spacing:-28.955301px;}
.ws9b{word-spacing:-25.189366px;}
.ws10a{word-spacing:-24.716830px;}
.ws109{word-spacing:-24.710830px;}
.ws9e{word-spacing:-24.696454px;}
.ws93{word-spacing:-24.690454px;}
.ws90{word-spacing:-24.157563px;}
.wscb{word-spacing:-20.024826px;}
.ws1{word-spacing:-19.038240px;}
.ws1a8{word-spacing:-17.568170px;}
.ws178{word-spacing:-17.429266px;}
.ws10e{word-spacing:-16.999869px;}
.ws92{word-spacing:-16.874664px;}
.ws67{word-spacing:-16.605662px;}
.ws1ac{word-spacing:-16.313301px;}
.ws0{word-spacing:-16.272000px;}
.ws17a{word-spacing:-16.184318px;}
.ws148{word-spacing:-15.748918px;}
.ws1c{word-spacing:-15.359443px;}
.ws1aa{word-spacing:-15.058431px;}
.ws177{word-spacing:-14.939370px;}
.wsa6{word-spacing:-14.174576px;}
.ws113{word-spacing:-14.011869px;}
.ws1b4{word-spacing:-13.803229px;}
.ws3f{word-spacing:-13.531962px;}
.ws146{word-spacing:-12.850079px;}
.ws1a9{word-spacing:-12.414243px;}
.ws17c{word-spacing:-12.316088px;}
.ws1b6{word-spacing:-12.210549px;}
.wsbf{word-spacing:-12.046407px;}
.ws135{word-spacing:-12.038806px;}
.ws12d{word-spacing:-12.021688px;}
.ws1ab{word-spacing:-11.517907px;}
.ws179{word-spacing:-11.426840px;}
.wsb9{word-spacing:-11.185223px;}
.ws147{word-spacing:-11.119428px;}
.ws1b2{word-spacing:-10.617869px;}
.wsf3{word-spacing:-9.980022px;}
.wse0{word-spacing:-9.763869px;}
.ws1b3{word-spacing:-9.745687px;}
.wsf5{word-spacing:-9.351634px;}
.wse2{word-spacing:-9.313920px;}
.ws12b{word-spacing:-9.247452px;}
.wse4{word-spacing:-9.214128px;}
.ws11e{word-spacing:-8.787190px;}
.ws1b5{word-spacing:-8.645979px;}
.ws12c{word-spacing:-8.487840px;}
.wsbc{word-spacing:-5.248407px;}
.ws8a{word-spacing:-5.176407px;}
.ws79{word-spacing:-3.335478px;}
.ws1ec{word-spacing:-3.275703px;}
.ws174{word-spacing:-3.215927px;}
.ws175{word-spacing:-2.917049px;}
.ws153{word-spacing:-2.677947px;}
.ws133{word-spacing:-2.594261px;}
.ws163{word-spacing:-2.498620px;}
.ws8c{word-spacing:-2.438844px;}
.ws1e7{word-spacing:-2.379069px;}
.ws1e0{word-spacing:-2.319293px;}
.wsef{word-spacing:-2.259518px;}
.wsee{word-spacing:-2.237021px;}
.ws98{word-spacing:-2.080191px;}
.ws99{word-spacing:-1.960640px;}
.ws164{word-spacing:-1.845993px;}
.wsae{word-spacing:-1.841088px;}
.ws125{word-spacing:-1.721537px;}
.wsac{word-spacing:-1.688022px;}
.ws21d{word-spacing:-1.640851px;}
.ws55{word-spacing:-1.542210px;}
.ws8e{word-spacing:-1.482435px;}
.ws18b{word-spacing:-1.479456px;}
.ws18a{word-spacing:-1.425658px;}
.ws199{word-spacing:-1.422659px;}
.ws189{word-spacing:-1.406642px;}
.ws2e{word-spacing:-1.362884px;}
.wsfb{word-spacing:-1.303108px;}
.ws1d6{word-spacing:-1.243332px;}
.ws1fa{word-spacing:-1.210464px;}
.ws1c1{word-spacing:-1.183557px;}
.ws10f{word-spacing:-1.169978px;}
.ws156{word-spacing:-1.064006px;}
.ws15a{word-spacing:-1.004230px;}
.ws50{word-spacing:-0.944454px;}
.ws46{word-spacing:-0.884679px;}
.ws8b{word-spacing:-0.824903px;}
.ws19b{word-spacing:-0.705352px;}
.ws1f6{word-spacing:-0.672480px;}
.ws19c{word-spacing:-0.651993px;}
.ws51{word-spacing:-0.645576px;}
.ws1eb{word-spacing:-0.526025px;}
.wsa2{word-spacing:-0.448422px;}
.wsd2{word-spacing:-0.406474px;}
.ws218{word-spacing:-0.349690px;}
.ws38{word-spacing:-0.346698px;}
.ws213{word-spacing:-0.295891px;}
.ws1f{word-spacing:-0.244116px;}
.ws1b{word-spacing:-0.242093px;}
.wsad{word-spacing:-0.227147px;}
.wsab{word-spacing:-0.216798px;}
.ws1a{word-spacing:-0.188294px;}
.ws1b9{word-spacing:-0.080698px;}
.wsa5{word-spacing:-0.059776px;}
.wseb{word-spacing:-0.053798px;}
.ws40{word-spacing:-0.047821px;}
.ws75{word-spacing:-0.041664px;}
.ws12{word-spacing:-0.035866px;}
.wsc1{word-spacing:-0.021471px;}
.ws91{word-spacing:-0.015471px;}
.ws2{word-spacing:0.000000px;}
.wsb4{word-spacing:0.011955px;}
.ws1c6{word-spacing:0.071731px;}
.ws1f5{word-spacing:0.188294px;}
.ws1fe{word-spacing:0.242093px;}
.wsf6{word-spacing:0.251058px;}
.wsf4{word-spacing:0.270421px;}
.ws1fd{word-spacing:0.295891px;}
.ws134{word-spacing:0.310833px;}
.ws114{word-spacing:0.370609px;}
.ws1e{word-spacing:0.422561px;}
.ws181{word-spacing:0.430384px;}
.wsfa{word-spacing:0.489862px;}
.wsd4{word-spacing:0.490160px;}
.wse9{word-spacing:0.511085px;}
.ws1df{word-spacing:0.549936px;}
.ws13{word-spacing:0.564883px;}
.ws186{word-spacing:0.669487px;}
.ws185{word-spacing:0.705115px;}
.ws1d9{word-spacing:0.729262px;}
.wsea{word-spacing:0.780077px;}
.ws8f{word-spacing:0.789038px;}
.wsba{word-spacing:0.848814px;}
.wsb8{word-spacing:0.854484px;}
.ws138{word-spacing:0.908589px;}
.ws1d5{word-spacing:0.941472px;}
.ws20e{word-spacing:1.049069px;}
.ws66{word-spacing:1.087916px;}
.ws6d{word-spacing:1.096600px;}
.ws6c{word-spacing:1.147692px;}
.ws170{word-spacing:1.207467px;}
.ws1f1{word-spacing:1.264262px;}
.ws1da{word-spacing:1.267243px;}
.ws1f4{word-spacing:1.318061px;}
.ws10d{word-spacing:1.327018px;}
.ws7c{word-spacing:1.386421px;}
.ws7d{word-spacing:1.386794px;}
.ws20d{word-spacing:1.425658px;}
.ws13f{word-spacing:1.446570px;}
.ws20c{word-spacing:1.479456px;}
.ws1a4{word-spacing:1.503115px;}
.ws142{word-spacing:1.506345px;}
.ws22f{word-spacing:1.533254px;}
.wsff{word-spacing:1.566121px;}
.ws58{word-spacing:1.625896px;}
.wsf7{word-spacing:1.685672px;}
.wsc5{word-spacing:1.745448px;}
.wsc{word-spacing:1.748448px;}
.ws223{word-spacing:1.802246px;}
.ws3a{word-spacing:1.805223px;}
.ws14c{word-spacing:1.856045px;}
.ws157{word-spacing:1.864999px;}
.ws82{word-spacing:1.924774px;}
.ws83{word-spacing:1.984550px;}
.wsec{word-spacing:2.044326px;}
.wsed{word-spacing:2.104101px;}
.ws19a{word-spacing:2.163877px;}
.ws64{word-spacing:2.223652px;}
.ws13a{word-spacing:2.283428px;}
.ws1d0{word-spacing:2.343204px;}
.ws131{word-spacing:2.402979px;}
.wsa8{word-spacing:2.462755px;}
.ws145{word-spacing:2.522530px;}
.ws212{word-spacing:2.555424px;}
.ws214{word-spacing:2.566184px;}
.ws154{word-spacing:2.582306px;}
.ws116{word-spacing:2.619892px;}
.ws115{word-spacing:2.642082px;}
.wsb3{word-spacing:2.701857px;}
.ws12e{word-spacing:2.716819px;}
.wsbb{word-spacing:2.733089px;}
.wsc3{word-spacing:2.761633px;}
.ws231{word-spacing:2.770618px;}
.wsc2{word-spacing:2.813951px;}
.ws111{word-spacing:2.821408px;}
.ws110{word-spacing:2.837356px;}
.wsb6{word-spacing:2.881184px;}
.ws237{word-spacing:2.932013px;}
.ws65{word-spacing:2.940960px;}
.ws1ad{word-spacing:2.985811px;}
.ws1ae{word-spacing:2.992861px;}
.wsce{word-spacing:3.000735px;}
.wsa{word-spacing:3.039610px;}
.ws171{word-spacing:3.060057px;}
.ws100{word-spacing:3.060511px;}
.ws227{word-spacing:3.063475px;}
.ws219{word-spacing:3.071272px;}
.ws160{word-spacing:3.086976px;}
.wsf{word-spacing:3.093408px;}
.ws150{word-spacing:3.120286px;}
.wse{word-spacing:3.147206px;}
.ws126{word-spacing:3.179260px;}
.ws77{word-spacing:3.180062px;}
.ws8d{word-spacing:3.239838px;}
.ws18d{word-spacing:3.254803px;}
.ws30{word-spacing:3.296303px;}
.ws32{word-spacing:3.299613px;}
.wse8{word-spacing:3.308602px;}
.ws120{word-spacing:3.309892px;}
.wsbe{word-spacing:3.314782px;}
.ws195{word-spacing:3.315353px;}
.ws1dc{word-spacing:3.316738px;}
.ws2a{word-spacing:3.359389px;}
.ws22{word-spacing:3.362400px;}
.ws188{word-spacing:3.416198px;}
.ws48{word-spacing:3.419164px;}
.ws54{word-spacing:3.478940px;}
.ws206{word-spacing:3.523795px;}
.ws6e{word-spacing:3.538716px;}
.ws3e{word-spacing:3.598491px;}
.ws182{word-spacing:3.658267px;}
.ws18{word-spacing:3.685190px;}
.ws5c{word-spacing:3.718042px;}
.ws1d2{word-spacing:3.720436px;}
.ws1d3{word-spacing:3.738989px;}
.wsb7{word-spacing:3.777818px;}
.ws167{word-spacing:3.837594px;}
.ws1db{word-spacing:3.838738px;}
.ws1ba{word-spacing:3.846586px;}
.ws166{word-spacing:3.879326px;}
.ws187{word-spacing:3.885563px;}
.ws130{word-spacing:3.897369px;}
.wsd5{word-spacing:3.957145px;}
.ws47{word-spacing:4.016920px;}
.ws63{word-spacing:4.136472px;}
.ws226{word-spacing:4.169376px;}
.ws29{word-spacing:4.196247px;}
.wsf8{word-spacing:4.245892px;}
.wsf9{word-spacing:4.256023px;}
.ws16b{word-spacing:4.315798px;}
.ws11{word-spacing:4.330771px;}
.ws152{word-spacing:4.375574px;}
.ws19{word-spacing:4.384570px;}
.wsbd{word-spacing:4.435350px;}
.ws3{word-spacing:4.483200px;}
.ws158{word-spacing:4.495125px;}
.ws14d{word-spacing:4.545965px;}
.ws28{word-spacing:4.554901px;}
.ws16e{word-spacing:4.614676px;}
.ws12f{word-spacing:4.653562px;}
.ws173{word-spacing:4.674452px;}
.ws5b{word-spacing:4.734228px;}
.ws200{word-spacing:4.761158px;}
.ws56{word-spacing:4.794003px;}
.ws1f7{word-spacing:4.814957px;}
.wsd1{word-spacing:4.853779px;}
.ws108{word-spacing:4.856007px;}
.ws1c7{word-spacing:4.913554px;}
.ws1d8{word-spacing:4.973330px;}
.ws17d{word-spacing:4.976352px;}
.ws22a{word-spacing:5.030150px;}
.wsa3{word-spacing:5.033106px;}
.wsc0{word-spacing:5.092881px;}
.ws84{word-spacing:5.212432px;}
.ws70{word-spacing:5.262575px;}
.ws71{word-spacing:5.272208px;}
.ws73{word-spacing:5.330308px;}
.ws72{word-spacing:5.331326px;}
.ws74{word-spacing:5.331984px;}
.ws1c0{word-spacing:5.391759px;}
.ws180{word-spacing:5.406739px;}
.ws159{word-spacing:5.451535px;}
.ws95{word-spacing:5.506485px;}
.ws94{word-spacing:5.511310px;}
.ws1fb{word-spacing:5.514336px;}
.ws232{word-spacing:5.568134px;}
.ws96{word-spacing:5.571086px;}
.wsa1{word-spacing:5.630862px;}
.ws228{word-spacing:5.632692px;}
.ws9f{word-spacing:5.637115px;}
.wsa0{word-spacing:5.637892px;}
.ws87{word-spacing:5.690637px;}
.ws20b{word-spacing:5.729530px;}
.ws5e{word-spacing:5.750413px;}
.wsc4{word-spacing:5.810188px;}
.ws15{word-spacing:5.837126px;}
.ws16{word-spacing:5.850866px;}
.ws2f{word-spacing:5.869964px;}
.ws17{word-spacing:5.890925px;}
.wsa4{word-spacing:5.917578px;}
.ws59{word-spacing:5.929740px;}
.ws14f{word-spacing:5.989515px;}
.ws1f2{word-spacing:5.998522px;}
.ws132{word-spacing:6.049291px;}
.ws36{word-spacing:6.109066px;}
.ws25{word-spacing:6.159917px;}
.ws155{word-spacing:6.168842px;}
.ws1ed{word-spacing:6.228618px;}
.ws202{word-spacing:6.321312px;}
.ws106{word-spacing:6.348169px;}
.ws7f{word-spacing:6.407944px;}
.ws13d{word-spacing:6.467720px;}
.wsa7{word-spacing:6.484321px;}
.ws10b{word-spacing:6.527496px;}
.ws52{word-spacing:6.587271px;}
.ws21e{word-spacing:6.590304px;}
.ws60{word-spacing:6.595245px;}
.ws1a5{word-spacing:6.625161px;}
.ws5f{word-spacing:6.626462px;}
.wse5{word-spacing:6.644102px;}
.ws61{word-spacing:6.647047px;}
.ws45{word-spacing:6.706822px;}
.ws6f{word-spacing:6.766598px;}
.ws20a{word-spacing:6.805498px;}
.ws69{word-spacing:6.826374px;}
.ws35{word-spacing:6.886149px;}
.ws215{word-spacing:6.913094px;}
.ws184{word-spacing:6.945925px;}
.ws1e3{word-spacing:7.005700px;}
.ws49{word-spacing:7.125252px;}
.ws204{word-spacing:7.128288px;}
.ws22c{word-spacing:7.182086px;}
.ws2d{word-spacing:7.185027px;}
.ws41{word-spacing:7.244803px;}
.ws16c{word-spacing:7.364354px;}
.ws6{word-spacing:7.408040px;}
.ws5d{word-spacing:7.424130px;}
.ws176{word-spacing:7.483905px;}
.ws4d{word-spacing:7.543681px;}
.wsaa{word-spacing:7.585578px;}
.wsdd{word-spacing:7.603456px;}
.ws17e{word-spacing:7.612474px;}
.ws9a{word-spacing:7.663232px;}
.ws42{word-spacing:7.723008px;}
.wsd7{word-spacing:7.782783px;}
.ws121{word-spacing:7.820810px;}
.ws1c2{word-spacing:7.831012px;}
.ws107{word-spacing:7.842559px;}
.wsd{word-spacing:7.935264px;}
.ws1c9{word-spacing:7.962110px;}
.wsa9{word-spacing:8.021886px;}
.ws1de{word-spacing:8.081661px;}
.wse7{word-spacing:8.096659px;}
.ws2b{word-spacing:8.260988px;}
.ws3c{word-spacing:8.320764px;}
.ws8{word-spacing:8.376411px;}
.ws5a{word-spacing:8.380539px;}
.wscf{word-spacing:8.475847px;}
.wsd0{word-spacing:8.500090px;}
.wsd3{word-spacing:8.559866px;}
.ws14b{word-spacing:8.634643px;}
.ws143{word-spacing:8.679417px;}
.wsde{word-spacing:8.702958px;}
.wsdf{word-spacing:8.739193px;}
.ws172{word-spacing:8.798968px;}
.ws21f{word-spacing:8.849837px;}
.ws144{word-spacing:8.918520px;}
.ws21{word-spacing:8.957434px;}
.ws1cd{word-spacing:8.978295px;}
.ws4b{word-spacing:9.038071px;}
.ws140{word-spacing:9.063115px;}
.ws17f{word-spacing:9.065030px;}
.ws141{word-spacing:9.097846px;}
.ws1d{word-spacing:9.145728px;}
.ws43{word-spacing:9.157622px;}
.wse6{word-spacing:9.172627px;}
.ws2c{word-spacing:9.217398px;}
.ws1d4{word-spacing:9.226426px;}
.wsb2{word-spacing:9.277173px;}
.wsaf{word-spacing:9.336949px;}
.wsd6{word-spacing:9.396724px;}
.ws80{word-spacing:9.456500px;}
.ws24{word-spacing:9.495418px;}
.wsd8{word-spacing:9.516276px;}
.ws224{word-spacing:9.549216px;}
.ws6a{word-spacing:9.576051px;}
.ws3b{word-spacing:9.635827px;}
.ws104{word-spacing:9.695602px;}
.ws97{word-spacing:9.755378px;}
.ws123{word-spacing:9.815154px;}
.ws1b8{word-spacing:9.818208px;}
.ws1d7{word-spacing:9.874929px;}
.ws1ce{word-spacing:9.906057px;}
.ws1cf{word-spacing:9.934705px;}
.ws1a1{word-spacing:9.994480px;}
.ws1f0{word-spacing:10.033402px;}
.ws1e8{word-spacing:10.054256px;}
.wsc7{word-spacing:10.114032px;}
.ws4e{word-spacing:10.173807px;}
.ws39{word-spacing:10.233583px;}
.ws16d{word-spacing:10.293358px;}
.ws236{word-spacing:10.302394px;}
.ws4a{word-spacing:10.353134px;}
.ws1e4{word-spacing:10.527115px;}
.ws1e5{word-spacing:10.532461px;}
.ws1f3{word-spacing:10.571386px;}
.ws1ea{word-spacing:10.580367px;}
.ws102{word-spacing:10.592236px;}
.ws197{word-spacing:10.711788px;}
.wsb1{word-spacing:10.771563px;}
.wsb0{word-spacing:10.781967px;}
.ws193{word-spacing:10.815892px;}
.ws194{word-spacing:10.831339px;}
.ws124{word-spacing:10.891114px;}
.ws7e{word-spacing:10.950890px;}
.ws1c8{word-spacing:11.010666px;}
.ws81{word-spacing:11.070441px;}
.wsc8{word-spacing:11.130217px;}
.ws1cc{word-spacing:11.184650px;}
.ws1b7{word-spacing:11.216966px;}
.ws16f{word-spacing:11.249768px;}
.ws207{word-spacing:11.270765px;}
.ws151{word-spacing:11.309544px;}
.ws4c{word-spacing:11.369319px;}
.ws1c5{word-spacing:11.429095px;}
.ws1c4{word-spacing:11.466051px;}
.ws1c3{word-spacing:11.488870px;}
.ws211{word-spacing:11.539757px;}
.ws1e9{word-spacing:11.548646px;}
.ws13b{word-spacing:11.668197px;}
.ws1a6{word-spacing:11.727973px;}
.ws1ff{word-spacing:11.754950px;}
.wsf1{word-spacing:11.787748px;}
.wsf0{word-spacing:11.797699px;}
.ws205{word-spacing:11.808749px;}
.ws137{word-spacing:11.847524px;}
.ws44{word-spacing:11.907300px;}
.ws169{word-spacing:11.967075px;}
.ws20f{word-spacing:11.980904px;}
.ws19e{word-spacing:12.026851px;}
.ws19d{word-spacing:12.050007px;}
.ws14e{word-spacing:12.086626px;}
.ws136{word-spacing:12.265953px;}
.ws9{word-spacing:12.303694px;}
.ws13e{word-spacing:12.385504px;}
.ws216{word-spacing:12.400531px;}
.ws53{word-spacing:12.505056px;}
.ws4f{word-spacing:12.564831px;}
.ws10c{word-spacing:12.624022px;}
.ws105{word-spacing:12.684382px;}
.ws11a{word-spacing:12.709407px;}
.ws1d1{word-spacing:12.723322px;}
.ws11b{word-spacing:12.744158px;}
.ws168{word-spacing:12.803934px;}
.ws103{word-spacing:12.863709px;}
.ws230{word-spacing:12.884717px;}
.ws34{word-spacing:12.923485px;}
.ws1bf{word-spacing:13.043036px;}
.ws15d{word-spacing:13.046112px;}
.ws1f8{word-spacing:13.099910px;}
.ws1cb{word-spacing:13.102812px;}
.ws229{word-spacing:13.207507px;}
.wsda{word-spacing:13.282138px;}
.ws192{word-spacing:13.401690px;}
.ws210{word-spacing:13.433460px;}
.ws1ca{word-spacing:13.461465px;}
.ws57{word-spacing:13.521241px;}
.ws1f9{word-spacing:13.530298px;}
.ws208{word-spacing:13.584096px;}
.ws6b{word-spacing:13.640792px;}
.ws62{word-spacing:13.760343px;}
.ws86{word-spacing:13.820119px;}
.ws4{word-spacing:13.939670px;}
.ws5{word-spacing:13.999446px;}
.ws16a{word-spacing:14.118997px;}
.ws217{word-spacing:14.186638px;}
.ws33{word-spacing:14.238548px;}
.wsc6{word-spacing:14.298324px;}
.ws13c{word-spacing:14.417875px;}
.ws1fc{word-spacing:14.444870px;}
.ws11f{word-spacing:14.477650px;}
.ws118{word-spacing:14.743711px;}
.ws119{word-spacing:14.776528px;}
.ws85{word-spacing:15.015631px;}
.wsdc{word-spacing:15.288022px;}
.ws101{word-spacing:15.314509px;}
.ws203{word-spacing:15.413242px;}
.ws1a3{word-spacing:15.852489px;}
.ws1e2{word-spacing:16.151367px;}
.ws11c{word-spacing:16.211143px;}
.ws1e1{word-spacing:16.390470px;}
.ws127{word-spacing:16.510021px;}
.ws201{word-spacing:16.812000px;}
.ws26{word-spacing:16.880672px;}
.ws21c{word-spacing:16.919597px;}
.wsca{word-spacing:17.193909px;}
.wscc{word-spacing:17.227328px;}
.ws1a0{word-spacing:17.287104px;}
.ws19f{word-spacing:17.288724px;}
.ws117{word-spacing:17.346879px;}
.ws3d{word-spacing:17.645757px;}
.wsd9{word-spacing:17.705533px;}
.ws234{word-spacing:17.726573px;}
.wsc9{word-spacing:17.765308px;}
.ws21b{word-spacing:18.210758px;}
.ws225{word-spacing:18.264557px;}
.ws198{word-spacing:18.482616px;}
.ws7{word-spacing:18.721718px;}
.ws1dd{word-spacing:19.080372px;}
.wscd{word-spacing:20.096557px;}
.ws165{word-spacing:20.370465px;}
.ws22e{word-spacing:20.685485px;}
.ws1a2{word-spacing:20.873640px;}
.ws76{word-spacing:21.142771px;}
.ws139{word-spacing:21.154635px;}
.ws183{word-spacing:21.172518px;}
.wsb5{word-spacing:21.196570px;}
.ws209{word-spacing:21.331066px;}
.ws11d{word-spacing:21.531171px;}
.ws1e6{word-spacing:21.650722px;}
.ws1ef{word-spacing:22.547356px;}
.ws22b{word-spacing:22.676026px;}
.ws233{word-spacing:22.998816px;}
.ws9d{word-spacing:23.085337px;}
.ws1ee{word-spacing:23.264664px;}
.ws22d{word-spacing:23.375405px;}
.ws235{word-spacing:23.590598px;}
.ws31{word-spacing:23.639654px;}
.ws14{word-spacing:23.838737px;}
.ws10{word-spacing:23.842940px;}
.ws20{word-spacing:23.846283px;}
.ws23{word-spacing:23.848491px;}
.ws37{word-spacing:23.850464px;}
.wsb{word-spacing:23.859191px;}
.ws21a{word-spacing:25.365946px;}
.ws196{word-spacing:26.293689px;}
.wsfe{word-spacing:27.375978px;}
.ws15e{word-spacing:27.598579px;}
.ws15c{word-spacing:28.217261px;}
.ws220{word-spacing:30.745786px;}
.ws221{word-spacing:31.552762px;}
.ws191{word-spacing:32.051677px;}
.ws9c{word-spacing:36.918231px;}
.ws1bc{word-spacing:39.514925px;}
.ws222{word-spacing:40.537094px;}
.wsf2{word-spacing:41.809654px;}
.wsfd{word-spacing:41.815654px;}
.ws1bb{word-spacing:47.369491px;}
.ws15b{word-spacing:54.524678px;}
.ws27{word-spacing:63.589709px;}
.ws162{word-spacing:63.604076px;}
.ws190{word-spacing:63.605593px;}
.ws15f{word-spacing:68.189472px;}
.ws1af{word-spacing:73.552311px;}
.ws128{word-spacing:107.127233px;}
.wse1{word-spacing:141.362407px;}
.ws14a{word-spacing:165.535855px;}
.ws149{word-spacing:167.613766px;}
.ws1b0{word-spacing:194.384661px;}
.ws1be{word-spacing:201.340512px;}
.ws129{word-spacing:212.495357px;}
.ws1b1{word-spacing:214.332906px;}
.ws1bd{word-spacing:218.179411px;}
.wse3{word-spacing:226.920626px;}
.ws12a{word-spacing:229.339992px;}
.ws18f{word-spacing:229.853664px;}
.ws17b{word-spacing:236.539833px;}
.ws1a7{word-spacing:238.424962px;}
.ws18e{word-spacing:239.429779px;}
._1f{margin-left:-33.029865px;}
._8{margin-left:-29.887800px;}
._46{margin-left:-28.840872px;}
._a{margin-left:-27.544781px;}
._23{margin-left:-25.610168px;}
._43{margin-left:-23.665118px;}
._7{margin-left:-22.517686px;}
._45{margin-left:-21.105811px;}
._29{margin-left:-12.431385px;}
._6{margin-left:-6.222682px;}
._4{margin-left:-4.961375px;}
._9{margin-left:-3.425165px;}
._2{margin-left:-2.223667px;}
._0{margin-left:-1.152000px;}
._1{width:1.308000px;}
._3{width:3.139334px;}
._20{width:5.115150px;}
._27{width:6.365598px;}
._25{width:12.900674px;}
._2f{width:15.086778px;}
._11{width:16.176480px;}
._1a{width:17.375128px;}
._1e{width:18.405116px;}
._2b{width:20.139347px;}
._2e{width:21.169677px;}
._22{width:22.370201px;}
._b{width:23.814758px;}
._f{width:25.249382px;}
._10{width:26.917133px;}
._d{width:28.190362px;}
._2d{width:29.397625px;}
._19{width:30.673544px;}
._13{width:31.920170px;}
._5{width:33.206404px;}
._12{width:34.324474px;}
._24{width:35.399347px;}
._17{width:36.702218px;}
._14{width:38.275417px;}
._e{width:40.079808px;}
._2c{width:41.370970px;}
._18{width:42.997690px;}
._c{width:45.047194px;}
._1c{width:46.165796px;}
._15{width:47.402051px;}
._21{width:48.949824px;}
._41{width:50.732608px;}
._42{width:51.837415px;}
._2a{width:52.933432px;}
._47{width:54.121190px;}
._26{width:55.232654px;}
._1b{width:56.746078px;}
._28{width:60.074478px;}
._1d{width:64.110854px;}
._40{width:65.585803px;}
._16{width:69.459247px;}
._35{width:74.020166px;}
._34{width:78.874886px;}
._32{width:84.678682px;}
._44{width:86.375742px;}
._36{width:91.349683px;}
._31{width:94.935658px;}
._30{width:99.647050px;}
._37{width:100.650374px;}
._33{width:147.210355px;}
._3f{width:207.070042px;}
._3e{width:212.073293px;}
._3d{width:227.405837px;}
._3c{width:233.449922px;}
._39{width:250.216358px;}
._3a{width:262.643789px;}
._38{width:266.241094px;}
._3b{width:268.362931px;}
.fc5{color:rgb(255,165,0);}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(148,0,211);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs14{font-size:26.157080px;}
.fsf{font-size:26.345088px;}
.fsb{font-size:29.887800px;}
.fs2f{font-size:30.033400px;}
.fs15{font-size:33.951361px;}
.fs34{font-size:34.583916px;}
.fs9{font-size:35.865600px;}
.fs10{font-size:36.856512px;}
.fs13{font-size:36.989810px;}
.fse{font-size:37.255680px;}
.fs30{font-size:38.982747px;}
.fs7{font-size:41.842800px;}
.fs1f{font-size:42.328216px;}
.fs2e{font-size:42.471475px;}
.fs28{font-size:42.665556px;}
.fs12{font-size:44.387772px;}
.fs1b{font-size:44.477713px;}
.fsd{font-size:44.706816px;}
.fs21{font-size:45.707360px;}
.fs29{font-size:46.071629px;}
.fsa{font-size:47.820600px;}
.fs16{font-size:48.086753px;}
.fs1d{font-size:48.458209px;}
.fs33{font-size:48.842196px;}
.fs23{font-size:49.264352px;}
.fs27{font-size:49.656970px;}
.fs24{font-size:49.797901px;}
.fs2b{font-size:50.194771px;}
.fs2d{font-size:50.965770px;}
.fs19{font-size:51.400315px;}
.fs11{font-size:51.785734px;}
.fsc{font-size:52.157952px;}
.fs32{font-size:53.089344px;}
.fs8{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs31{font-size:55.212918px;}
.fs1c{font-size:58.149851px;}
.fs2c{font-size:59.460065px;}
.fs1e{font-size:59.757482px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:59.775600px;}
.fs25{font-size:60.233725px;}
.fs17{font-size:60.572761px;}
.fs1a{font-size:62.995672px;}
.fs22{font-size:64.737272px;}
.fs2a{font-size:65.253203px;}
.fs20{font-size:69.717062px;}
.fs26{font-size:70.272680px;}
.fs5{font-size:71.731200px;}
.fs2{font-size:72.000000px;}
.fs18{font-size:72.687313px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:87.120000px;}
.y0{bottom:0.000000px;}
.y187{bottom:1.085068px;}
.y1cb{bottom:4.514027px;}
.y225{bottom:7.873552px;}
.y273{bottom:7.936301px;}
.yfe{bottom:13.873134px;}
.y299{bottom:16.546179px;}
.y283{bottom:19.466198px;}
.y18e{bottom:20.273546px;}
.y115{bottom:20.559264px;}
.y193{bottom:20.967235px;}
.y195{bottom:21.132316px;}
.y190{bottom:21.363496px;}
.y1ca{bottom:21.561019px;}
.y224{bottom:24.546957px;}
.y272{bottom:24.742586px;}
.y111{bottom:27.611232px;}
.y1cc{bottom:31.036329px;}
.y197{bottom:31.701082px;}
.y188{bottom:37.050988px;}
.y128{bottom:42.380580px;}
.y293{bottom:42.901088px;}
.y28a{bottom:42.901193px;}
.y28e{bottom:43.773481px;}
.y18f{bottom:46.133464px;}
.yff{bottom:46.139148px;}
.y284{bottom:47.565629px;}
.y18b{bottom:47.982824px;}
.y11d{bottom:54.787986px;}
.y28f{bottom:54.922227px;}
.y191{bottom:55.546050px;}
.y289{bottom:56.552792px;}
.y292{bottom:59.283101px;}
.y18d{bottom:61.787949px;}
.y274{bottom:66.601513px;}
.y18c{bottom:66.874310px;}
.y28d{bottom:67.587896px;}
.y2ec{bottom:68.520427px;}
.y1d6{bottom:72.182540px;}
.y189{bottom:73.083222px;}
.y22f{bottom:74.033549px;}
.y285{bottom:75.740745px;}
.y27c{bottom:78.298248px;}
.y100{bottom:78.604944px;}
.y192{bottom:78.994941px;}
.y28b{bottom:80.556759px;}
.y1cf{bottom:80.662586px;}
.y1d5{bottom:84.816005px;}
.y291{bottom:84.917670px;}
.y22e{bottom:87.016282px;}
.y2f3{bottom:87.149960px;}
.y1cd{bottom:88.753659px;}
.y226{bottom:90.484641px;}
.y294{bottom:90.719524px;}
.y27b{bottom:91.385182px;}
.y1d4{bottom:97.493301px;}
.y126{bottom:98.163912px;}
.y28c{bottom:98.569215px;}
.y228{bottom:99.021860px;}
.y276{bottom:99.811025px;}
.y22d{bottom:99.999742px;}
.y2f2{bottom:100.133420px;}
.y1ed{bottom:101.668500px;}
.y196{bottom:103.698981px;}
.y286{bottom:103.802308px;}
.y27a{bottom:104.471383px;}
.y62{bottom:105.654000px;}
.y114{bottom:106.313724px;}
.y18a{bottom:109.115195px;}
.y296{bottom:109.414610px;}
.y1d3{bottom:110.127473px;}
.y101{bottom:110.970750px;}
.y22c{bottom:112.982476px;}
.y2f1{bottom:113.160471px;}
.y47{bottom:114.132000px;}
.y38e{bottom:114.348000px;}
.y36b{bottom:116.253000px;}
.y279{bottom:117.558316px;}
.yfb{bottom:119.850000px;}
.yf8{bottom:120.514500px;}
.y61{bottom:122.839500px;}
.y194{bottom:123.019558px;}
.y290{bottom:123.786654px;}
.y2ba{bottom:124.254000px;}
.yc5{bottom:124.507500px;}
.y295{bottom:125.568939px;}
.y22b{bottom:125.965936px;}
.y107{bottom:128.135040px;}
.y38d{bottom:130.039500px;}
.y297{bottom:130.081533px;}
.y287{bottom:131.901739px;}
.y36a{bottom:131.944500px;}
.y11e{bottom:133.091640px;}
.yf9{bottom:134.005500px;}
.yfa{bottom:134.449500px;}
.y21a{bottom:136.039500px;}
.y110{bottom:137.016660px;}
.yf7{bottom:137.700000px;}
.y93{bottom:140.025000px;}
.y2b9{bottom:141.439500px;}
.yc4{bottom:141.693000px;}
.y1c0{bottom:141.768000px;}
.y186{bottom:142.967240px;}
.y102{bottom:143.237028px;}
.y60{bottom:144.466500px;}
.y125{bottom:145.132680px;}
.y298{bottom:145.591206px;}
.y38c{bottom:145.729500px;}
.y1ce{bottom:146.427368px;}
.y113{bottom:146.529900px;}
.y369{bottom:147.636000px;}
.y306{bottom:148.704000px;}
.y11c{bottom:151.619820px;}
.y1d2{bottom:152.484503px;}
.y92{bottom:157.210500px;}
.y184{bottom:157.690500px;}
.y2b8{bottom:158.625000px;}
.y2e5{bottom:158.731500px;}
.y1d1{bottom:158.758323px;}
.y288{bottom:160.039197px;}
.y1bf{bottom:160.248000px;}
.y305{bottom:160.465500px;}
.y38b{bottom:161.421000px;}
.y5f{bottom:161.652000px;}
.y368{bottom:163.327500px;}
.y2ef{bottom:164.870576px;}
.yf6{bottom:166.735500px;}
.y123{bottom:168.517800px;}
.y1ec{bottom:170.410500px;}
.y282{bottom:171.415380px;}
.y91{bottom:174.396000px;}
.yc3{bottom:174.588000px;}
.y183{bottom:174.876000px;}
.y227{bottom:175.407485px;}
.y103{bottom:175.669296px;}
.y2b7{bottom:175.810500px;}
.y2e4{bottom:175.917000px;}
.y38a{bottom:177.112500px;}
.y1be{bottom:177.433500px;}
.y304{bottom:177.651000px;}
.y46{bottom:178.081500px;}
.y5e{bottom:178.837500px;}
.y367{bottom:179.017500px;}
.y2ee{bottom:181.055010px;}
.y275{bottom:183.662964px;}
.yf5{bottom:183.921000px;}
.y122{bottom:184.916886px;}
.y1d0{bottom:185.540136px;}
.y10b{bottom:188.841840px;}
.y10c{bottom:191.336640px;}
.y90{bottom:191.581500px;}
.y182{bottom:192.061500px;}
.y389{bottom:192.804000px;}
.y2ed{bottom:192.837549px;}
.y2b6{bottom:192.996000px;}
.y2e3{bottom:193.102500px;}
.y248{bottom:193.368000px;}
.y1bd{bottom:194.619000px;}
.y366{bottom:194.709000px;}
.y303{bottom:194.836500px;}
.y45{bottom:195.267000px;}
.y5d{bottom:196.023000px;}
.y121{bottom:200.251590px;}
.yf4{bottom:201.106500px;}
.y11b{bottom:201.648665px;}
.y278{bottom:201.947982px;}
.y2ac{bottom:202.396804px;}
.y29b{bottom:205.278797px;}
.y181{bottom:205.357500px;}
.yc2{bottom:207.481500px;}
.y229{bottom:207.821092px;}
.y22a{bottom:207.821121px;}
.y104{bottom:207.968574px;}
.y388{bottom:208.494000px;}
.y8f{bottom:208.767000px;}
.y180{bottom:209.247000px;}
.y2b5{bottom:210.181500px;}
.y2e2{bottom:210.288000px;}
.y365{bottom:210.400500px;}
.y247{bottom:210.553500px;}
.y1bc{bottom:211.804500px;}
.y302{bottom:212.022000px;}
.y108{bottom:212.259300px;}
.y44{bottom:212.452500px;}
.y10d{bottom:213.024834px;}
.y5c{bottom:213.208500px;}
.y119{bottom:216.883260px;}
.yf3{bottom:218.292000px;}
.y120{bottom:218.347206px;}
.y10a{bottom:221.573867px;}
.y387{bottom:224.185500px;}
.yc1{bottom:224.667000px;}
.y1c2{bottom:225.734631px;}
.y8e{bottom:225.952500px;}
.y364{bottom:226.092000px;}
.y17f{bottom:226.432500px;}
.y2e1{bottom:227.473500px;}
.y1bb{bottom:228.990000px;}
.y2a7{bottom:229.055239px;}
.y301{bottom:229.207500px;}
.y43{bottom:229.639500px;}
.y11a{bottom:229.823220px;}
.y2a3{bottom:229.851579px;}
.y2ad{bottom:230.079105px;}
.y10e{bottom:230.255454px;}
.y277{bottom:230.361808px;}
.y5b{bottom:230.394000px;}
.y246{bottom:231.753000px;}
.y29c{bottom:233.378228px;}
.y11f{bottom:233.814900px;}
.y2f0{bottom:233.965092px;}
.yf2{bottom:235.477500px;}
.y223{bottom:235.921656px;}
.y109{bottom:238.771500px;}
.y17e{bottom:239.502000px;}
.y386{bottom:239.877000px;}
.y105{bottom:240.401106px;}
.y363{bottom:241.782000px;}
.yc0{bottom:241.852500px;}
.y2a1{bottom:242.365496px;}
.y8d{bottom:243.138000px;}
.y2a4{bottom:243.351441px;}
.y17d{bottom:243.618000px;}
.y2e0{bottom:244.659000px;}
.y1ba{bottom:246.175500px;}
.y300{bottom:246.393000px;}
.y42{bottom:247.198500px;}
.y5a{bottom:247.579500px;}
.y127{bottom:247.785780px;}
.y245{bottom:248.938500px;}
.y10f{bottom:252.475806px;}
.yf1{bottom:252.663000px;}
.y1c6{bottom:253.727618px;}
.y385{bottom:255.568500px;}
.y362{bottom:257.473500px;}
.y124{bottom:258.030960px;}
.ybf{bottom:259.038000px;}
.y8c{bottom:260.323500px;}
.y17c{bottom:260.803500px;}
.y29d{bottom:261.553554px;}
.y2df{bottom:261.844500px;}
.y333{bottom:261.930000px;}
.y1b9{bottom:263.362500px;}
.y2ff{bottom:263.580000px;}
.y2b4{bottom:264.195000px;}
.y41{bottom:264.384000px;}
.y59{bottom:264.765000px;}
.y244{bottom:266.124000px;}
.y2aa{bottom:267.810355px;}
.y2a5{bottom:268.417090px;}
.y117{bottom:268.841562px;}
.y1c3{bottom:269.000889px;}
.yf0{bottom:269.848500px;}
.y384{bottom:271.260000px;}
.y129{bottom:272.102160px;}
.y106{bottom:272.700384px;}
.y361{bottom:273.165000px;}
.y112{bottom:273.265740px;}
.y17b{bottom:273.873000px;}
.ybe{bottom:276.223500px;}
.y2a2{bottom:276.911490px;}
.y146{bottom:277.509000px;}
.y17a{bottom:277.989000px;}
.y2de{bottom:279.030000px;}
.y332{bottom:279.115500px;}
.y2b3{bottom:279.886500px;}
.y1b8{bottom:280.548000px;}
.y2fe{bottom:280.765500px;}
.y2a9{bottom:280.779428px;}
.y40{bottom:281.569500px;}
.y58{bottom:281.950500px;}
.y116{bottom:283.178544px;}
.y243{bottom:283.311000px;}
.y118{bottom:283.344798px;}
.y383{bottom:286.950000px;}
.yef{bottom:287.034000px;}
.y360{bottom:288.856500px;}
.y8b{bottom:289.209000px;}
.y2e6{bottom:289.542569px;}
.y29e{bottom:289.614907px;}
.ybd{bottom:293.409000px;}
.y145{bottom:294.694500px;}
.y179{bottom:295.174500px;}
.y219{bottom:295.518000px;}
.y2b2{bottom:295.578000px;}
.y331{bottom:296.301000px;}
.y1b7{bottom:297.733500px;}
.y2fd{bottom:297.951000px;}
.y3f{bottom:298.755000px;}
.y57{bottom:299.136000px;}
.y2ae{bottom:299.626145px;}
.y242{bottom:300.496500px;}
.y382{bottom:302.641500px;}
.y21c{bottom:303.593272px;}
.yee{bottom:304.219500px;}
.y35f{bottom:304.548000px;}
.y2dd{bottom:304.693500px;}
.yfd{bottom:306.962700px;}
.y2b1{bottom:311.269500px;}
.y1eb{bottom:311.880000px;}
.y270{bottom:311.881500px;}
.y2a6{bottom:311.950510px;}
.ybc{bottom:312.180000px;}
.y1c4{bottom:312.267147px;}
.y178{bottom:312.360000px;}
.y218{bottom:312.703500px;}
.y330{bottom:313.486500px;}
.y1b6{bottom:314.919000px;}
.y2fc{bottom:315.136500px;}
.y3e{bottom:315.940500px;}
.y56{bottom:316.321500px;}
.y2a8{bottom:317.524838px;}
.y241{bottom:317.682000px;}
.y29f{bottom:317.714338px;}
.y381{bottom:318.333000px;}
.y8a{bottom:319.927500px;}
.y21f{bottom:320.044365px;}
.y35e{bottom:320.238000px;}
.yed{bottom:321.405000px;}
.y1c8{bottom:321.698838px;}
.y2dc{bottom:321.879000px;}
.y142{bottom:324.739500px;}
.y2b0{bottom:326.961000px;}
.y1c7{bottom:327.972375px;}
.y1ea{bottom:329.065500px;}
.y26f{bottom:329.067000px;}
.ybb{bottom:329.365500px;}
.y217{bottom:329.889000px;}
.y177{bottom:330.025500px;}
.y32f{bottom:330.672000px;}
.y1b5{bottom:332.104500px;}
.y2fb{bottom:332.322000px;}
.y3d{bottom:333.126000px;}
.y55{bottom:333.507000px;}
.y380{bottom:334.024500px;}
.y2ab{bottom:334.058377px;}
.y240{bottom:334.867500px;}
.y35d{bottom:335.929500px;}
.y89{bottom:337.113000px;}
.y144{bottom:337.863000px;}
.yec{bottom:338.590500px;}
.y143{bottom:338.677500px;}
.y141{bottom:342.372000px;}
.y2af{bottom:342.651000px;}
.y175{bottom:343.095000px;}
.y176{bottom:343.516500px;}
.y2db{bottom:344.488500px;}
.y2a0{bottom:345.851796px;}
.y1e9{bottom:346.251000px;}
.yba{bottom:346.552500px;}
.y216{bottom:347.074500px;}
.y174{bottom:347.211000px;}
.y32e{bottom:347.857500px;}
.y2fa{bottom:349.507500px;}
.y37f{bottom:349.714500px;}
.y3c{bottom:350.311500px;}
.y1b4{bottom:350.583000px;}
.y54{bottom:350.694000px;}
.y35c{bottom:351.621000px;}
.y23f{bottom:352.053000px;}
.y88{bottom:354.300000px;}
.y1c5{bottom:355.533405px;}
.yeb{bottom:355.776000px;}
.y2da{bottom:356.250000px;}
.y29a{bottom:357.228084px;}
.y1c9{bottom:359.124102px;}
.y1e8{bottom:363.436500px;}
.yb9{bottom:363.738000px;}
.y215{bottom:364.260000px;}
.y173{bottom:364.396500px;}
.y32d{bottom:365.043000px;}
.y37e{bottom:365.406000px;}
.y2f9{bottom:366.693000px;}
.y35b{bottom:367.312500px;}
.y3b{bottom:367.497000px;}
.y1b3{bottom:367.770000px;}
.y53{bottom:367.879500px;}
.y26e{bottom:368.242500px;}
.y23e{bottom:369.238500px;}
.y87{bottom:371.485500px;}
.y281{bottom:373.287000px;}
.y2d9{bottom:373.435500px;}
.y140{bottom:377.107500px;}
.y21d{bottom:377.267344px;}
.y1e7{bottom:380.622000px;}
.y37d{bottom:381.097500px;}
.y214{bottom:381.445500px;}
.y172{bottom:381.582000px;}
.y32c{bottom:382.228500px;}
.y35a{bottom:383.002500px;}
.y2f8{bottom:383.878500px;}
.y1b2{bottom:384.955500px;}
.y3a{bottom:385.057500px;}
.y52{bottom:385.065000px;}
.y23d{bottom:390.438000px;}
.yea{bottom:394.221000px;}
.y13f{bottom:394.293000px;}
.y171{bottom:395.778000px;}
.y37c{bottom:396.789000px;}
.y1e6{bottom:397.807500px;}
.y213{bottom:398.631000px;}
.y359{bottom:398.694000px;}
.y221{bottom:398.698444px;}
.y32b{bottom:399.414000px;}
.y2f7{bottom:401.064000px;}
.y1b1{bottom:402.141000px;}
.y39{bottom:402.243000px;}
.yb8{bottom:402.565500px;}
.y170{bottom:402.712500px;}
.y51{bottom:406.692000px;}
.y23c{bottom:407.623500px;}
.y16f{bottom:409.269000px;}
.y86{bottom:409.930500px;}
.y2ea{bottom:411.503648px;}
.y37b{bottom:412.480500px;}
.y16e{bottom:412.963500px;}
.y13e{bottom:413.064000px;}
.y2e7{bottom:413.815156px;}
.y358{bottom:414.385500px;}
.y1e5{bottom:414.993000px;}
.y212{bottom:415.818000px;}
.y32a{bottom:416.599500px;}
.y2f6{bottom:418.249500px;}
.y1b0{bottom:419.326500px;}
.y38{bottom:419.428500px;}
.y2d8{bottom:420.360000px;}
.y26d{bottom:421.822500px;}
.y50{bottom:423.877500px;}
.y23b{bottom:424.809000px;}
.y2e9{bottom:426.576478px;}
.y37a{bottom:428.170500px;}
.y220{bottom:428.888640px;}
.y357{bottom:430.077000px;}
.y13d{bottom:430.249500px;}
.y211{bottom:433.003500px;}
.y329{bottom:433.785000px;}
.y2f5{bottom:435.435000px;}
.y1e4{bottom:436.347000px;}
.y1af{bottom:436.512000px;}
.y37{bottom:436.614000px;}
.y26c{bottom:439.008000px;}
.y4f{bottom:441.063000px;}
.y23a{bottom:441.994500px;}
.ye9{bottom:442.752000px;}
.y2e8{bottom:442.760622px;}
.y379{bottom:443.862000px;}
.y356{bottom:445.768500px;}
.y13c{bottom:447.435000px;}
.y210{bottom:450.189000px;}
.y21e{bottom:450.941706px;}
.y328{bottom:450.970500px;}
.y1e3{bottom:453.532500px;}
.y1ae{bottom:453.697500px;}
.y36{bottom:453.799500px;}
.yb7{bottom:454.300500px;}
.y239{bottom:455.194500px;}
.y26b{bottom:456.193500px;}
.y222{bottom:456.232907px;}
.y2eb{bottom:456.632996px;}
.y16d{bottom:457.612500px;}
.y4e{bottom:458.248500px;}
.y85{bottom:459.078000px;}
.y238{bottom:459.180000px;}
.y378{bottom:459.553500px;}
.ye8{bottom:459.937500px;}
.y355{bottom:461.458500px;}
.y13b{bottom:464.620500px;}
.y20f{bottom:467.374500px;}
.y327{bottom:468.156000px;}
.y16c{bottom:470.565000px;}
.y1e2{bottom:470.718000px;}
.y1ad{bottom:470.883000px;}
.y35{bottom:470.985000px;}
.y16b{bottom:471.103500px;}
.yb6{bottom:471.486000px;}
.y26a{bottom:473.379000px;}
.y377{bottom:475.245000px;}
.y4d{bottom:475.434000px;}
.ye7{bottom:477.123000px;}
.y2f4{bottom:477.135000px;}
.y354{bottom:477.150000px;}
.y13a{bottom:477.916500px;}
.y84{bottom:481.687500px;}
.y139{bottom:481.806000px;}
.y20e{bottom:484.560000px;}
.y326{bottom:485.341500px;}
.y16a{bottom:486.006000px;}
.y1e1{bottom:487.903500px;}
.y1ac{bottom:488.068500px;}
.y169{bottom:488.094000px;}
.y34{bottom:488.170500px;}
.yb5{bottom:488.671500px;}
.y269{bottom:490.564500px;}
.y376{bottom:490.935000px;}
.y168{bottom:491.983500px;}
.y4c{bottom:492.619500px;}
.y353{bottom:492.841500px;}
.y83{bottom:493.449000px;}
.ye6{bottom:494.308500px;}
.y20d{bottom:501.745500px;}
.y325{bottom:502.527000px;}
.y1e0{bottom:505.089000px;}
.y1ab{bottom:505.254000px;}
.y33{bottom:505.356000px;}
.yb4{bottom:505.857000px;}
.y375{bottom:506.626500px;}
.y268{bottom:507.750000px;}
.y352{bottom:508.533000px;}
.y167{bottom:509.169000px;}
.y4b{bottom:509.805000px;}
.y82{bottom:510.634500px;}
.ye5{bottom:511.494000px;}
.y136{bottom:511.851000px;}
.y2d7{bottom:515.046000px;}
.y237{bottom:518.391000px;}
.y20c{bottom:518.931000px;}
.y324{bottom:519.712500px;}
.y1df{bottom:522.276000px;}
.y374{bottom:522.318000px;}
.y1aa{bottom:522.439500px;}
.y32{bottom:522.541500px;}
.y166{bottom:522.660000px;}
.yb3{bottom:523.042500px;}
.y351{bottom:524.223000px;}
.y15{bottom:524.235000px;}
.y267{bottom:524.935500px;}
.y138{bottom:524.974500px;}
.y137{bottom:525.789000px;}
.y165{bottom:526.354500px;}
.y4a{bottom:526.990500px;}
.y81{bottom:527.820000px;}
.ye4{bottom:528.679500px;}
.y135{bottom:529.483500px;}
.y2d6{bottom:532.231500px;}
.y236{bottom:534.082500px;}
.y20b{bottom:536.116500px;}
.y323{bottom:536.898000px;}
.y373{bottom:538.009500px;}
.y1de{bottom:539.461500px;}
.y1a9{bottom:539.625000px;}
.y164{bottom:539.650500px;}
.y350{bottom:539.914500px;}
.yb2{bottom:540.228000px;}
.y266{bottom:542.121000px;}
.y163{bottom:543.540000px;}
.y49{bottom:544.176000px;}
.y80{bottom:545.005500px;}
.ye3{bottom:545.865000px;}
.y2d5{bottom:549.417000px;}
.y235{bottom:549.774000px;}
.yb0{bottom:552.100500px;}
.y20a{bottom:553.302000px;}
.yb1{bottom:553.524000px;}
.y372{bottom:553.701000px;}
.y34f{bottom:555.606000px;}
.y322{bottom:555.690000px;}
.y1dd{bottom:556.647000px;}
.y1a8{bottom:556.810500px;}
.yaf{bottom:557.413500px;}
.y265{bottom:559.306500px;}
.y162{bottom:560.725500px;}
.y31{bottom:561.361500px;}
.y234{bottom:562.047000px;}
.y7f{bottom:562.192500px;}
.ye2{bottom:563.050500px;}
.y134{bottom:564.219000px;}
.y233{bottom:565.464000px;}
.y2d4{bottom:566.602500px;}
.y48{bottom:566.784000px;}
.y371{bottom:569.391000px;}
.y34e{bottom:571.297500px;}
.y209{bottom:571.311000px;}
.y264{bottom:572.508000px;}
.y321{bottom:572.875500px;}
.y1dc{bottom:573.832500px;}
.y1a7{bottom:573.996000px;}
.yae{bottom:574.599000px;}
.y14{bottom:574.815000px;}
.y263{bottom:576.492000px;}
.y232{bottom:577.738500px;}
.y7e{bottom:579.378000px;}
.ye1{bottom:580.236000px;}
.y231{bottom:581.155500px;}
.y133{bottom:581.404500px;}
.y2d3{bottom:583.788000px;}
.y370{bottom:585.082500px;}
.y34d{bottom:586.989000px;}
.y208{bottom:588.496500px;}
.y320{bottom:590.061000px;}
.y1a6{bottom:591.181500px;}
.yad{bottom:592.167000px;}
.y262{bottom:593.677500px;}
.y161{bottom:594.294000px;}
.y7d{bottom:596.563500px;}
.y230{bottom:596.847000px;}
.ye0{bottom:597.421500px;}
.y132{bottom:598.590000px;}
.y36f{bottom:600.774000px;}
.y2d2{bottom:600.973500px;}
.y34c{bottom:602.679000px;}
.y207{bottom:605.682000px;}
.y31f{bottom:607.246500px;}
.y30{bottom:607.771500px;}
.yac{bottom:609.352500px;}
.y261{bottom:610.864500px;}
.y7c{bottom:613.749000px;}
.ydf{bottom:614.608500px;}
.y131{bottom:617.361000px;}
.y2d1{bottom:618.159000px;}
.y34b{bottom:618.370500px;}
.yab{bottom:622.030500px;}
.y206{bottom:622.867500px;}
.y31e{bottom:624.432000px;}
.y13{bottom:625.245000px;}
.yaa{bottom:626.538000px;}
.y160{bottom:627.382500px;}
.y21b{bottom:627.481500px;}
.y260{bottom:628.050000px;}
.y1a5{bottom:630.921000px;}
.y2f{bottom:630.934500px;}
.yde{bottom:631.794000px;}
.y1db{bottom:632.604000px;}
.y34a{bottom:634.062000px;}
.y205{bottom:640.053000px;}
.ya9{bottom:643.723500px;}
.y15f{bottom:644.568000px;}
.y2e{bottom:646.624500px;}
.y31d{bottom:647.040000px;}
.y7b{bottom:648.120000px;}
.y1da{bottom:648.295500px;}
.ydd{bottom:648.979500px;}
.y2d0{bottom:649.246500px;}
.y36e{bottom:649.752000px;}
.y349{bottom:649.753500px;}
.y25f{bottom:650.658000px;}
.y204{bottom:657.238500px;}
.y31c{bottom:658.803000px;}
.ya8{bottom:660.909000px;}
.y2cf{bottom:661.008000px;}
.y15e{bottom:661.753500px;}
.y2d{bottom:662.316000px;}
.y25e{bottom:662.421000px;}
.y1d9{bottom:663.987000px;}
.y7a{bottom:665.305500px;}
.y348{bottom:665.443500px;}
.ydc{bottom:666.165000px;}
.y130{bottom:668.305500px;}
.y203{bottom:674.424000px;}
.y12{bottom:675.825000px;}
.y31b{bottom:675.988500px;}
.ya7{bottom:678.094500px;}
.y2ce{bottom:678.193500px;}
.y15d{bottom:678.939000px;}
.y25d{bottom:679.606500px;}
.y1d8{bottom:679.677000px;}
.y347{bottom:681.135000px;}
.y79{bottom:682.491000px;}
.ydb{bottom:683.350500px;}
.y2c{bottom:683.424000px;}
.y12f{bottom:683.995500px;}
.y1a4{bottom:687.495000px;}
.y202{bottom:691.609500px;}
.y31a{bottom:693.174000px;}
.ya6{bottom:695.280000px;}
.y1d7{bottom:695.368500px;}
.y2cd{bottom:695.380500px;}
.y15c{bottom:696.124500px;}
.y25c{bottom:696.792000px;}
.y346{bottom:696.826500px;}
.y78{bottom:699.676500px;}
.y12e{bottom:699.687000px;}
.yda{bottom:700.536000px;}
.y1a3{bottom:704.680500px;}
.y2b{bottom:704.829000px;}
.y11{bottom:705.345000px;}
.y201{bottom:708.795000px;}
.y25b{bottom:709.992000px;}
.y319{bottom:710.359500px;}
.y345{bottom:712.518000px;}
.y2cc{bottom:712.566000px;}
.y25a{bottom:713.977500px;}
.y2a{bottom:714.807000px;}
.y12d{bottom:715.378500px;}
.y77{bottom:716.862000px;}
.yd9{bottom:717.721500px;}
.y1a2{bottom:721.866000px;}
.y15a{bottom:722.842500px;}
.y200{bottom:725.980500px;}
.y1c1{bottom:726.004500px;}
.y318{bottom:727.545000px;}
.y36d{bottom:728.208000px;}
.y344{bottom:728.209500px;}
.ya5{bottom:728.814000px;}
.y15b{bottom:729.399000px;}
.ya4{bottom:729.628500px;}
.y2cb{bottom:729.751500px;}
.y12c{bottom:731.070000px;}
.y10{bottom:731.085000px;}
.y259{bottom:731.163000px;}
.y159{bottom:733.093500px;}
.ya3{bottom:733.323000px;}
.y76{bottom:734.047500px;}
.yd8{bottom:734.907000px;}
.y29{bottom:735.915000px;}
.y1a1{bottom:739.051500px;}
.y343{bottom:743.899500px;}
.y317{bottom:744.730500px;}
.y2ca{bottom:746.937000px;}
.y258{bottom:748.348500px;}
.y1ff{bottom:748.588500px;}
.y75{bottom:751.233000px;}
.y28{bottom:751.606500px;}
.yd7{bottom:752.092500px;}
.y12b{bottom:752.473500px;}
.y1a0{bottom:756.237000px;}
.yf{bottom:758.445000px;}
.y342{bottom:759.591000px;}
.y1fe{bottom:760.351500px;}
.y316{bottom:761.916000px;}
.y12a{bottom:762.451500px;}
.y2c9{bottom:764.122500px;}
.y158{bottom:765.081000px;}
.y257{bottom:766.263000px;}
.y27{bottom:767.298000px;}
.y74{bottom:768.418500px;}
.y280{bottom:768.549000px;}
.yd6{bottom:769.278000px;}
.ya2{bottom:770.616000px;}
.y19f{bottom:773.422500px;}
.y341{bottom:775.282500px;}
.y2c8{bottom:781.308000px;}
.y26{bottom:782.988000px;}
.y256{bottom:783.450000px;}
.y27f{bottom:784.240500px;}
.y315{bottom:784.524000px;}
.y73{bottom:785.604000px;}
.ye{bottom:785.805000px;}
.yd5{bottom:786.463500px;}
.ya1{bottom:789.471000px;}
.y19e{bottom:790.608000px;}
.y36c{bottom:790.972500px;}
.y340{bottom:790.974000px;}
.yfc{bottom:793.087500px;}
.y157{bottom:795.660000px;}
.y314{bottom:796.287000px;}
.y255{bottom:796.650000px;}
.y2c7{bottom:798.493500px;}
.y25{bottom:798.679500px;}
.y1fd{bottom:799.620000px;}
.y27e{bottom:799.932000px;}
.y254{bottom:800.635500px;}
.y72{bottom:802.789500px;}
.yd4{bottom:805.185000px;}
.ya0{bottom:806.656500px;}
.y33f{bottom:806.664000px;}
.y19d{bottom:807.793500px;}
.yd{bottom:811.185000px;}
.y156{bottom:812.845500px;}
.y313{bottom:813.472500px;}
.y24{bottom:814.371000px;}
.y27d{bottom:815.623500px;}
.y2c6{bottom:815.679000px;}
.y253{bottom:817.821000px;}
.y9e{bottom:819.610500px;}
.y9f{bottom:819.726000px;}
.y71{bottom:819.975000px;}
.y33e{bottom:822.355500px;}
.yd3{bottom:822.370500px;}
.y9d{bottom:823.842000px;}
.y19c{bottom:824.979000px;}
.y312{bottom:826.674000px;}
.y155{bottom:830.031000px;}
.yc{bottom:830.265000px;}
.y311{bottom:830.658000px;}
.y2c5{bottom:832.864500px;}
.y252{bottom:835.006500px;}
.y23{bottom:835.479000px;}
.y9c{bottom:837.138000px;}
.y70{bottom:837.160500px;}
.y33d{bottom:838.047000px;}
.yd2{bottom:839.556000px;}
.y9b{bottom:841.027500px;}
.y19b{bottom:842.164500px;}
.y271{bottom:846.258000px;}
.y154{bottom:847.216500px;}
.y310{bottom:847.843500px;}
.y2c4{bottom:850.050000px;}
.y22{bottom:851.170500px;}
.y251{bottom:852.192000px;}
.yb{bottom:852.225000px;}
.y1fc{bottom:853.696500px;}
.y6f{bottom:854.346000px;}
.yd1{bottom:856.741500px;}
.y9a{bottom:858.213000px;}
.y153{bottom:864.402000px;}
.y30f{bottom:865.029000px;}
.y21{bottom:866.862000px;}
.y2c3{bottom:867.235500px;}
.y250{bottom:869.377500px;}
.y1fb{bottom:870.882000px;}
.y6e{bottom:871.531500px;}
.yd0{bottom:873.927000px;}
.ya{bottom:874.230000px;}
.y99{bottom:875.398500px;}
.y30e{bottom:878.230500px;}
.y152{bottom:881.587500px;}
.y30d{bottom:882.214500px;}
.y2c2{bottom:884.421000px;}
.y20{bottom:887.970000px;}
.y1fa{bottom:888.067500px;}
.y6d{bottom:888.717000px;}
.ycf{bottom:891.112500px;}
.y98{bottom:892.584000px;}
.y19a{bottom:895.188000px;}
.y151{bottom:898.773000px;}
.y30c{bottom:901.891500px;}
.y2c1{bottom:903.393000px;}
.y1f{bottom:903.661500px;}
.y6c{bottom:905.902500px;}
.yce{bottom:908.298000px;}
.y24f{bottom:908.553000px;}
.y9{bottom:909.510000px;}
.y199{bottom:910.879500px;}
.y150{bottom:911.842500px;}
.y30b{bottom:915.091500px;}
.y14f{bottom:915.958500px;}
.y33c{bottom:919.014000px;}
.y30a{bottom:919.077000px;}
.y1e{bottom:919.353000px;}
.y2c0{bottom:920.578500px;}
.y97{bottom:921.660000px;}
.y6b{bottom:923.088000px;}
.ycd{bottom:925.483500px;}
.y198{bottom:926.571000px;}
.y8{bottom:926.790000px;}
.y14e{bottom:931.824000px;}
.y1d{bottom:935.043000px;}
.y96{bottom:935.151000px;}
.y14d{bottom:935.941500px;}
.y33b{bottom:936.199500px;}
.y309{bottom:938.752500px;}
.y95{bottom:938.845500px;}
.y6a{bottom:940.273500px;}
.ycc{bottom:942.669000px;}
.y7{bottom:944.070000px;}
.y1f9{bottom:944.503500px;}
.y1f8{bottom:947.920500px;}
.y14c{bottom:953.127000px;}
.y33a{bottom:953.385000px;}
.y185{bottom:957.205500px;}
.y69{bottom:957.459000px;}
.y6{bottom:957.750000px;}
.ycb{bottom:959.854500px;}
.y1c{bottom:960.448500px;}
.y1f7{bottom:960.817500px;}
.y1f6{bottom:964.234500px;}
.y24e{bottom:968.220000px;}
.y339{bottom:970.570500px;}
.y68{bottom:974.644500px;}
.y1b{bottom:976.140000px;}
.y1f5{bottom:980.548500px;}
.y24d{bottom:983.910000px;}
.y1f4{bottom:984.751500px;}
.yca{bottom:985.153500px;}
.y14b{bottom:985.242000px;}
.y338{bottom:987.756000px;}
.y94{bottom:987.940500px;}
.y1f3{bottom:988.170000px;}
.y14a{bottom:988.936500px;}
.y1a{bottom:991.830000px;}
.y2bf{bottom:992.323500px;}
.y2be{bottom:995.740500px;}
.y24c{bottom:1000.200000px;}
.y337{bottom:1004.941500px;}
.y19{bottom:1007.521500px;}
.y2bd{bottom:1008.637500px;}
.y67{bottom:1009.015500px;}
.y308{bottom:1009.017000px;}
.yc9{bottom:1010.452500px;}
.y2bc{bottom:1012.054500px;}
.y149{bottom:1012.099500px;}
.y1f2{bottom:1012.528500px;}
.y148{bottom:1018.656000px;}
.y336{bottom:1022.127000px;}
.y147{bottom:1022.350500px;}
.y24b{bottom:1022.839500px;}
.y66{bottom:1026.202500px;}
.yc8{bottom:1027.638000px;}
.y2bb{bottom:1028.967000px;}
.y1f1{bottom:1038.529500px;}
.y24a{bottom:1038.531000px;}
.y335{bottom:1039.312500px;}
.y18{bottom:1043.388000px;}
.y391{bottom:1047.870000px;}
.yc7{bottom:1049.905500px;}
.y1f0{bottom:1054.221000px;}
.y334{bottom:1056.498000px;}
.y17{bottom:1059.078000px;}
.yc6{bottom:1060.156500px;}
.y65{bottom:1060.573500px;}
.y5{bottom:1063.230000px;}
.y390{bottom:1063.561500px;}
.y249{bottom:1066.495500px;}
.y1ef{bottom:1069.912500px;}
.y307{bottom:1073.773500px;}
.y64{bottom:1077.759000px;}
.y4{bottom:1079.250000px;}
.y38f{bottom:1079.253000px;}
.y1ee{bottom:1085.604000px;}
.y16{bottom:1094.944500px;}
.y3{bottom:1096.530000px;}
.y2{bottom:1113.810000px;}
.y1{bottom:1131.090000px;}
.y63{bottom:1133.799000px;}
.h45{height:8.240100px;}
.h12{height:16.787702px;}
.h55{height:23.358537px;}
.hf{height:24.245146px;}
.h3a{height:25.357280px;}
.h39{height:25.631908px;}
.h80{height:26.820130px;}
.h13{height:29.415488px;}
.h52{height:30.538787px;}
.h38{height:30.758289px;}
.h86{height:31.218127px;}
.h1a{height:31.382100px;}
.h6c{height:31.446663px;}
.h76{height:31.512994px;}
.h7f{height:33.603431px;}
.h10{height:33.665702px;}
.h89{height:34.011967px;}
.h6e{height:34.260956px;}
.h77{height:34.333224px;}
.h7a{height:35.064450px;}
.h51{height:35.628585px;}
.h37{height:35.884671px;}
.h60{height:36.295199px;}
.h82{height:36.525469px;}
.hb{height:38.519654px;}
.h53{height:40.189931px;}
.h54{height:40.190953px;}
.hd{height:40.348800px;}
.h87{height:40.814360px;}
.h79{height:40.908525px;}
.h6d{height:41.113147px;}
.h72{height:41.199868px;}
.h5d{height:43.554238px;}
.hc{height:44.831700px;}
.h59{height:45.368998px;}
.h7c{height:46.145233px;}
.h7b{height:46.146075px;}
.h29{height:46.725331px;}
.h56{height:46.955683px;}
.he{height:47.099146px;}
.h64{height:47.753146px;}
.h67{height:47.759146px;}
.h85{height:47.825905px;}
.h6b{height:47.965339px;}
.h73{height:48.207058px;}
.h63{height:49.753200px;}
.h9{height:50.211840px;}
.h14{height:51.105488px;}
.h11{height:51.111488px;}
.h2a{height:51.147331px;}
.ha{height:51.153331px;}
.h1d{height:53.072100px;}
.h16{height:53.078100px;}
.h8b{height:53.944800px;}
.h66{height:54.016800px;}
.h30{height:54.093488px;}
.h2f{height:54.099488px;}
.h7e{height:54.120794px;}
.h2b{height:54.135331px;}
.h32{height:54.141331px;}
.h5e{height:54.442798px;}
.h70{height:54.981488px;}
.h61{height:54.987488px;}
.h7d{height:55.336692px;}
.h3{height:55.503491px;}
.h18{height:56.060100px;}
.h48{height:56.066100px;}
.h35{height:57.833700px;}
.h57{height:58.118100px;}
.h20{height:58.517700px;}
.h3b{height:59.175024px;}
.h31{height:59.181024px;}
.h5{height:59.439023px;}
.h1c{height:59.609700px;}
.h2c{height:59.939700px;}
.h21{height:59.945700px;}
.h24{height:60.110100px;}
.h17{height:60.389700px;}
.h15{height:60.605700px;}
.h6f{height:60.767146px;}
.h8a{height:60.767700px;}
.h68{height:60.773700px;}
.h1f{height:61.295700px;}
.h2{height:61.423863px;}
.h47{height:61.763700px;}
.h26{height:62.835331px;}
.h25{height:62.861700px;}
.h83{height:64.657951px;}
.h84{height:64.834929px;}
.h88{height:64.836091px;}
.h6a{height:65.047732px;}
.h75{height:65.215915px;}
.h74{height:65.395475px;}
.h4e{height:65.883488px;}
.h28{height:66.669488px;}
.h62{height:67.047488px;}
.h46{height:67.850100px;}
.h4f{height:68.630100px;}
.h41{height:68.913331px;}
.h4d{height:69.536100px;}
.h1e{height:69.998100px;}
.h1b{height:70.838100px;}
.h4c{height:70.844100px;}
.h5b{height:71.214766px;}
.h4{height:71.613281px;}
.h3d{height:72.171331px;}
.h34{height:72.183024px;}
.h33{height:72.963331px;}
.h19{height:73.953024px;}
.h27{height:74.330100px;}
.h3e{height:74.387700px;}
.h44{height:74.717700px;}
.h3c{height:74.882100px;}
.h42{height:76.073700px;}
.h5a{height:82.110941px;}
.h22{height:83.517024px;}
.h7{height:83.787539px;}
.h65{height:86.296800px;}
.h6{height:86.652070px;}
.h23{height:86.775024px;}
.h2d{height:91.545488px;}
.h5c{height:96.308715px;}
.h5f{height:96.309818px;}
.h43{height:97.064100px;}
.h81{height:97.870054px;}
.h2e{height:100.943700px;}
.h40{height:109.743024px;}
.h49{height:109.773024px;}
.h4a{height:115.869024px;}
.h4b{height:124.808100px;}
.h3f{height:133.385700px;}
.h50{height:152.682570px;}
.h71{height:263.628000px;}
.h36{height:316.800000px;}
.h78{height:368.149320px;}
.h58{height:383.881995px;}
.h69{height:482.402640px;}
.h8{height:1188.000000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:367.614060px;}
.w8{width:367.614600px;}
.w5{width:367.617690px;}
.w4{width:367.620000px;}
.w6{width:367.621800px;}
.w9{width:367.622640px;}
.w1{width:893.250000px;}
.w2{width:893.339987px;}
.w0{width:893.340000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.x3d{left:9.592704px;}
.x93{left:10.659898px;}
.x88{left:13.123749px;}
.x3a{left:15.746676px;}
.x90{left:17.106619px;}
.x3b{left:21.468052px;}
.x87{left:23.305642px;}
.x3c{left:24.794348px;}
.x7c{left:26.042823px;}
.x74{left:27.212500px;}
.x77{left:28.509212px;}
.x91{left:30.378955px;}
.x92{left:31.402663px;}
.x79{left:33.614560px;}
.x8e{left:41.670726px;}
.x78{left:44.950319px;}
.x73{left:50.330859px;}
.x39{left:52.935630px;}
.x40{left:65.642676px;}
.x3f{left:66.673860px;}
.xf{left:81.000000px;}
.x10{left:82.992000px;}
.x2e{left:85.848000px;}
.x30{left:86.898000px;}
.x3e{left:88.261800px;}
.x5e{left:92.527500px;}
.xe{left:95.944500px;}
.x8f{left:101.008336px;}
.x89{left:103.115744px;}
.x15{left:104.988000px;}
.x6a{left:106.783500px;}
.x42{left:107.787900px;}
.x94{left:108.875290px;}
.x68{left:118.080000px;}
.x1{left:120.095987px;}
.x9b{left:123.475500px;}
.x71{left:124.698000px;}
.x55{left:126.606000px;}
.x7{left:128.899500px;}
.x72{left:134.496000px;}
.x56{left:138.228000px;}
.x41{left:141.284880px;}
.x14{left:145.368000px;}
.x97{left:149.090023px;}
.x69{left:150.295500px;}
.x98{left:153.135870px;}
.x9{left:154.747500px;}
.x5{left:156.544500px;}
.x57{left:159.075000px;}
.x3{left:160.229987px;}
.xc{left:163.192500px;}
.x6b{left:164.314500px;}
.x31{left:168.330000px;}
.x66{left:171.351000px;}
.x9a{left:172.471500px;}
.x2d{left:178.377000px;}
.x76{left:182.173241px;}
.x95{left:184.641368px;}
.xd{left:186.484500px;}
.x5f{left:188.934000px;}
.x7e{left:190.757720px;}
.x65{left:194.475000px;}
.x7a{left:204.343284px;}
.x60{left:209.779500px;}
.x2a{left:217.507500px;}
.x43{left:219.255300px;}
.x5b{left:221.245500px;}
.x61{left:224.394000px;}
.x67{left:226.810500px;}
.x16{left:230.230500px;}
.x45{left:232.527900px;}
.x58{left:233.863500px;}
.x32{left:235.051500px;}
.x2f{left:250.687500px;}
.x44{left:256.078680px;}
.x75{left:259.488287px;}
.xa{left:261.343500px;}
.x62{left:263.983500px;}
.x4{left:266.114987px;}
.x7f{left:269.242671px;}
.x2b{left:271.362000px;}
.x70{left:272.443500px;}
.x47{left:274.107900px;}
.x33{left:284.673000px;}
.x63{left:287.211000px;}
.x2c{left:293.517000px;}
.x6c{left:297.235500px;}
.x5c{left:301.161000px;}
.x59{left:304.143000px;}
.x46{left:307.604880px;}
.x99{left:311.510735px;}
.x64{left:317.431500px;}
.x7d{left:320.209899px;}
.x7b{left:322.589845px;}
.x6{left:325.264500px;}
.x5d{left:329.850000px;}
.x5a{left:332.832000px;}
.x6f{left:335.854500px;}
.x96{left:342.506324px;}
.x34{left:347.155500px;}
.x35{left:369.148500px;}
.x80{left:370.456500px;}
.x36{left:377.047500px;}
.xb{left:391.800000px;}
.x37{left:393.070500px;}
.x8a{left:401.907000px;}
.x6d{left:415.683000px;}
.x6e{left:422.055000px;}
.x38{left:429.526500px;}
.x8{left:434.770500px;}
.x11{left:475.521000px;}
.x82{left:478.509000px;}
.x81{left:485.202000px;}
.x1e{left:486.867000px;}
.x12{left:490.464000px;}
.x83{left:499.243500px;}
.x9f{left:503.001000px;}
.x4e{left:517.797000px;}
.x24{left:526.825500px;}
.x2{left:528.404987px;}
.x4f{left:540.780000px;}
.x28{left:542.313000px;}
.x49{left:548.665500px;}
.x18{left:551.688000px;}
.x21{left:554.410500px;}
.x8b{left:556.068000px;}
.x48{left:561.540000px;}
.x19{left:563.311500px;}
.x1f{left:569.602500px;}
.x4a{left:571.647000px;}
.x25{left:582.474000px;}
.xa0{left:583.798500px;}
.x50{left:585.883500px;}
.x26{left:593.532000px;}
.x51{left:599.451000px;}
.x85{left:600.565500px;}
.x4b{left:613.057500px;}
.x23{left:617.457000px;}
.x27{left:623.458500px;}
.x4c{left:632.809500px;}
.x1a{left:640.285500px;}
.x20{left:642.778500px;}
.x22{left:648.790500px;}
.x1b{left:657.454500px;}
.x52{left:665.017500px;}
.x1c{left:668.800500px;}
.x8d{left:679.143000px;}
.x9d{left:682.549500px;}
.x53{left:690.048000px;}
.x17{left:707.386500px;}
.x9c{left:708.649500px;}
.x29{left:709.696500px;}
.x1d{left:714.060000px;}
.x4d{left:726.817500px;}
.x54{left:748.345500px;}
.x8c{left:760.825500px;}
.x9e{left:764.976000px;}
.x84{left:807.900000px;}
.x86{left:827.409000px;}
.x13{left:835.669500px;}
@media print{
.v12{vertical-align:-96.170667pt;}
.v27{vertical-align:-58.976000pt;}
.v32{vertical-align:-57.544655pt;}
.v29{vertical-align:-55.792000pt;}
.v2a{vertical-align:-39.850667pt;}
.v33{vertical-align:-34.737448pt;}
.v1e{vertical-align:-33.824994pt;}
.v35{vertical-align:-29.393145pt;}
.v1f{vertical-align:-27.793451pt;}
.v2f{vertical-align:-25.599064pt;}
.v3{vertical-align:-20.314667pt;}
.v5{vertical-align:-19.280000pt;}
.v36{vertical-align:-17.392874pt;}
.v4{vertical-align:-15.002667pt;}
.v1d{vertical-align:-13.246746pt;}
.v34{vertical-align:-11.325727pt;}
.v1c{vertical-align:-9.580079pt;}
.v6{vertical-align:-7.973333pt;}
.v20{vertical-align:-5.312000pt;}
.v2e{vertical-align:-1.306667pt;}
.v0{vertical-align:0.000000pt;}
.v28{vertical-align:2.656000pt;}
.v19{vertical-align:3.589333pt;}
.v18{vertical-align:5.168000pt;}
.v1a{vertical-align:7.968000pt;}
.v1b{vertical-align:10.629333pt;}
.ve{vertical-align:12.165333pt;}
.v7{vertical-align:14.021333pt;}
.vc{vertical-align:15.045333pt;}
.v11{vertical-align:16.026667pt;}
.v1{vertical-align:19.285333pt;}
.v2{vertical-align:20.314667pt;}
.v9{vertical-align:21.936000pt;}
.v30{vertical-align:23.765333pt;}
.v10{vertical-align:25.530667pt;}
.v24{vertical-align:28.474667pt;}
.v14{vertical-align:29.669333pt;}
.v31{vertical-align:31.934151pt;}
.v16{vertical-align:33.114667pt;}
.vd{vertical-align:34.325333pt;}
.v8{vertical-align:35.317333pt;}
.v23{vertical-align:36.448000pt;}
.va{vertical-align:37.973333pt;}
.v13{vertical-align:42.805333pt;}
.v37{vertical-align:45.976870pt;}
.v25{vertical-align:49.584000pt;}
.vb{vertical-align:50.474667pt;}
.v15{vertical-align:54.208000pt;}
.v17{vertical-align:55.226667pt;}
.vf{vertical-align:58.976000pt;}
.v2d{vertical-align:61.104000pt;}
.v26{vertical-align:72.112000pt;}
.v21{vertical-align:78.714667pt;}
.v2b{vertical-align:82.314667pt;}
.v22{vertical-align:95.424000pt;}
.v2c{vertical-align:100.869333pt;}
.ls3{letter-spacing:0.000000pt;}
.lsa9{letter-spacing:0.000055pt;}
.lse2{letter-spacing:0.000258pt;}
.ls10a{letter-spacing:0.000260pt;}
.lsf9{letter-spacing:0.000473pt;}
.ls16{letter-spacing:0.000479pt;}
.ls87{letter-spacing:0.000483pt;}
.lsd6{letter-spacing:0.000495pt;}
.ls6c{letter-spacing:0.000501pt;}
.ls97{letter-spacing:0.000681pt;}
.ls5{letter-spacing:0.000693pt;}
.ls73{letter-spacing:0.000882pt;}
.lsdc{letter-spacing:0.000891pt;}
.ls93{letter-spacing:0.000964pt;}
.ls8c{letter-spacing:0.001105pt;}
.lsc3{letter-spacing:0.001253pt;}
.ls2c{letter-spacing:0.001509pt;}
.ls76{letter-spacing:0.001933pt;}
.ls39{letter-spacing:0.002079pt;}
.lsf8{letter-spacing:0.002091pt;}
.ls106{letter-spacing:0.002122pt;}
.lsa5{letter-spacing:0.002133pt;}
.ls85{letter-spacing:0.002205pt;}
.lsea{letter-spacing:0.002245pt;}
.ls13{letter-spacing:0.002345pt;}
.lsec{letter-spacing:0.002489pt;}
.ls7{letter-spacing:0.002906pt;}
.ls51{letter-spacing:0.003116pt;}
.ls122{letter-spacing:0.003118pt;}
.ls4d{letter-spacing:0.003310pt;}
.ls118{letter-spacing:0.003519pt;}
.ls28{letter-spacing:0.003521pt;}
.ls33{letter-spacing:0.003733pt;}
.ls55{letter-spacing:0.004105pt;}
.lse{letter-spacing:0.004349pt;}
.ls94{letter-spacing:0.004690pt;}
.ls1b{letter-spacing:0.004716pt;}
.ls26{letter-spacing:0.005388pt;}
.lscb{letter-spacing:0.007572pt;}
.ls130{letter-spacing:0.007781pt;}
.lscf{letter-spacing:0.008552pt;}
.lse4{letter-spacing:0.008789pt;}
.ls2{letter-spacing:0.060160pt;}
.ls115{letter-spacing:0.069947pt;}
.ls116{letter-spacing:0.082700pt;}
.ls117{letter-spacing:0.083430pt;}
.lscc{letter-spacing:0.121248pt;}
.ls10f{letter-spacing:0.142029pt;}
.lse3{letter-spacing:0.149236pt;}
.ls10b{letter-spacing:0.150425pt;}
.ls1{letter-spacing:0.154667pt;}
.ls10c{letter-spacing:0.167530pt;}
.ls0{letter-spacing:0.192000pt;}
.ls111{letter-spacing:0.204402pt;}
.lsca{letter-spacing:0.230401pt;}
.ls112{letter-spacing:0.276671pt;}
.lsc9{letter-spacing:0.345232pt;}
.ls18{letter-spacing:0.407455pt;}
.ls20{letter-spacing:0.412788pt;}
.ls50{letter-spacing:0.515116pt;}
.lsb{letter-spacing:1.471333pt;}
.ls77{letter-spacing:1.476535pt;}
.ls19{letter-spacing:1.476666pt;}
.ls3e{letter-spacing:1.480296pt;}
.ls7d{letter-spacing:1.900168pt;}
.lsb0{letter-spacing:1.904681pt;}
.ls7a{letter-spacing:1.905501pt;}
.lsab{letter-spacing:1.910015pt;}
.ls1c{letter-spacing:1.911029pt;}
.ls6b{letter-spacing:2.146585pt;}
.ls62{letter-spacing:2.151919pt;}
.ls8f{letter-spacing:2.295412pt;}
.ls58{letter-spacing:2.441438pt;}
.lsf{letter-spacing:2.444600pt;}
.ls5b{letter-spacing:2.476839pt;}
.ls90{letter-spacing:2.651982pt;}
.ls40{letter-spacing:2.652911pt;}
.ls49{letter-spacing:2.653617pt;}
.lsd7{letter-spacing:2.654659pt;}
.ls3b{letter-spacing:2.655095pt;}
.ls79{letter-spacing:2.655286pt;}
.ls48{letter-spacing:2.655879pt;}
.ls5d{letter-spacing:2.656473pt;}
.ls7e{letter-spacing:2.657253pt;}
.ls8a{letter-spacing:2.657316pt;}
.ls3a{letter-spacing:2.658245pt;}
.ls47{letter-spacing:2.658950pt;}
.ls6a{letter-spacing:2.660619pt;}
.ls4a{letter-spacing:2.661213pt;}
.ls5f{letter-spacing:2.808239pt;}
.lsf5{letter-spacing:2.961386pt;}
.lsf4{letter-spacing:2.966026pt;}
.ls31{letter-spacing:3.042140pt;}
.ls9d{letter-spacing:3.064580pt;}
.ls6e{letter-spacing:3.378537pt;}
.ls14{letter-spacing:3.506978pt;}
.ls17{letter-spacing:3.512311pt;}
.lsd5{letter-spacing:3.797750pt;}
.ls61{letter-spacing:3.801225pt;}
.ls72{letter-spacing:3.805489pt;}
.ls78{letter-spacing:3.987959pt;}
.ls9c{letter-spacing:3.992009pt;}
.ls7c{letter-spacing:3.993292pt;}
.ls25{letter-spacing:4.167686pt;}
.ls29{letter-spacing:4.367970pt;}
.ls35{letter-spacing:4.373304pt;}
.lsda{letter-spacing:4.551081pt;}
.lsd4{letter-spacing:4.556414pt;}
.ls102{letter-spacing:4.752479pt;}
.ls21{letter-spacing:5.107938pt;}
.ls9b{letter-spacing:5.113271pt;}
.ls56{letter-spacing:5.132839pt;}
.ls5a{letter-spacing:5.138173pt;}
.ls5c{letter-spacing:5.313316pt;}
.ls2d{letter-spacing:5.547547pt;}
.ls8e{letter-spacing:6.168311pt;}
.ls89{letter-spacing:6.266888pt;}
.lsa{letter-spacing:7.380568pt;}
.ls101{letter-spacing:7.410245pt;}
.lsee{letter-spacing:7.504479pt;}
.ls134{letter-spacing:7.968479pt;}
.ls82{letter-spacing:8.325812pt;}
.ls83{letter-spacing:8.331145pt;}
.ls59{letter-spacing:8.850174pt;}
.ls7f{letter-spacing:8.856855pt;}
.ls100{letter-spacing:9.515145pt;}
.lsff{letter-spacing:9.522906pt;}
.ls43{letter-spacing:9.815199pt;}
.lsd{letter-spacing:9.842079pt;}
.lsa2{letter-spacing:9.900800pt;}
.ls12e{letter-spacing:10.059145pt;}
.lsed{letter-spacing:10.156911pt;}
.ls37{letter-spacing:10.328855pt;}
.ls133{letter-spacing:10.631578pt;}
.lse0{letter-spacing:11.344479pt;}
.lsdf{letter-spacing:11.346906pt;}
.lsa0{letter-spacing:11.515213pt;}
.lsb6{letter-spacing:11.589812pt;}
.lsa6{letter-spacing:11.795718pt;}
.ls57{letter-spacing:11.803145pt;}
.ls2a{letter-spacing:11.805573pt;}
.lsc{letter-spacing:11.805784pt;}
.ls2b{letter-spacing:11.808479pt;}
.ls12b{letter-spacing:12.165812pt;}
.lsf6{letter-spacing:12.400693pt;}
.ls12d{letter-spacing:12.716911pt;}
.ls137{letter-spacing:12.821812pt;}
.lsf3{letter-spacing:12.987139pt;}
.lsf7{letter-spacing:13.651519pt;}
.lsf1{letter-spacing:13.957812pt;}
.lsfb{letter-spacing:13.987519pt;}
.lsd2{letter-spacing:14.092911pt;}
.lsfd{letter-spacing:14.098245pt;}
.lsa7{letter-spacing:14.406214pt;}
.ls88{letter-spacing:14.456239pt;}
.lseb{letter-spacing:14.460911pt;}
.ls104{letter-spacing:14.755118pt;}
.ls9{letter-spacing:14.757812pt;}
.ls27{letter-spacing:14.760239pt;}
.ls105{letter-spacing:14.760451pt;}
.ls12a{letter-spacing:14.828911pt;}
.lsfa{letter-spacing:15.024473pt;}
.ls8{letter-spacing:15.272450pt;}
.ls136{letter-spacing:15.479578pt;}
.ls119{letter-spacing:15.527507pt;}
.ls129{letter-spacing:15.712479pt;}
.ls128{letter-spacing:15.714906pt;}
.lsa3{letter-spacing:15.975686pt;}
.lsfe{letter-spacing:16.175879pt;}
.ls8d{letter-spacing:16.188532pt;}
.ls3c{letter-spacing:16.233999pt;}
.ls13b{letter-spacing:16.379953pt;}
.lsf0{letter-spacing:16.615578pt;}
.ls11e{letter-spacing:16.690245pt;}
.ls103{letter-spacing:16.837213pt;}
.ls74{letter-spacing:16.915938pt;}
.lsa4{letter-spacing:16.921271pt;}
.ls54{letter-spacing:16.940839pt;}
.ls4c{letter-spacing:17.240239pt;}
.ls13a{letter-spacing:17.293573pt;}
.ls84{letter-spacing:17.304239pt;}
.ls86{letter-spacing:17.410245pt;}
.lsbf{letter-spacing:17.415578pt;}
.lse1{letter-spacing:17.480239pt;}
.lsb7{letter-spacing:17.609682pt;}
.ls6{letter-spacing:17.711527pt;}
.ls3d{letter-spacing:18.180428pt;}
.lsef{letter-spacing:18.213213pt;}
.ls135{letter-spacing:18.447879pt;}
.ls45{letter-spacing:18.487199pt;}
.lsb8{letter-spacing:18.519506pt;}
.ls65{letter-spacing:18.536451pt;}
.ls68{letter-spacing:18.605203pt;}
.ls108{letter-spacing:18.757213pt;}
.lse9{letter-spacing:18.923145pt;}
.ls10d{letter-spacing:18.974659pt;}
.lsb2{letter-spacing:19.269812pt;}
.ls66{letter-spacing:19.292807pt;}
.ls12f{letter-spacing:19.493213pt;}
.ls64{letter-spacing:19.671870pt;}
.ls120{letter-spacing:19.674546pt;}
.lsbb{letter-spacing:19.890173pt;}
.ls99{letter-spacing:19.895506pt;}
.ls2f{letter-spacing:19.960451pt;}
.ls12{letter-spacing:20.021812pt;}
.lsd1{letter-spacing:20.191879pt;}
.ls95{letter-spacing:20.204839pt;}
.ls67{letter-spacing:20.354173pt;}
.ls92{letter-spacing:20.647506pt;}
.ls7b{letter-spacing:20.843919pt;}
.ls12c{letter-spacing:20.911879pt;}
.lsb3{letter-spacing:21.024222pt;}
.ls81{letter-spacing:21.029555pt;}
.ls69{letter-spacing:21.095870pt;}
.ls109{letter-spacing:21.335578pt;}
.ls123{letter-spacing:21.448451pt;}
.lse8{letter-spacing:21.580911pt;}
.ls32{letter-spacing:21.690265pt;}
.ls124{letter-spacing:21.725156pt;}
.ls5e{letter-spacing:21.751506pt;}
.ls30{letter-spacing:21.880177pt;}
.ls138{letter-spacing:21.911578pt;}
.ls121{letter-spacing:22.202546pt;}
.ls96{letter-spacing:22.220839pt;}
.ls98{letter-spacing:22.226173pt;}
.ls24{letter-spacing:22.295474pt;}
.ls22{letter-spacing:22.428911pt;}
.ls34{letter-spacing:22.562079pt;}
.lsc0{letter-spacing:22.706174pt;}
.ls42{letter-spacing:22.845019pt;}
.ls36{letter-spacing:23.258265pt;}
.ls6f{letter-spacing:23.368239pt;}
.lsde{letter-spacing:23.487879pt;}
.ls53{letter-spacing:23.499145pt;}
.lsc5{letter-spacing:23.515145pt;}
.lsc8{letter-spacing:23.517053pt;}
.lsc6{letter-spacing:23.517784pt;}
.lsc7{letter-spacing:23.520479pt;}
.lsf2{letter-spacing:23.594546pt;}
.ls125{letter-spacing:23.789510pt;}
.ls23{letter-spacing:23.955733pt;}
.lsa1{letter-spacing:23.978888pt;}
.ls127{letter-spacing:24.405213pt;}
.lsc1{letter-spacing:24.437611pt;}
.lsd3{letter-spacing:25.357573pt;}
.ls10e{letter-spacing:25.392841pt;}
.ls139{letter-spacing:25.437784pt;}
.lsbe{letter-spacing:25.477213pt;}
.lsb1{letter-spacing:25.541555pt;}
.ls70{letter-spacing:25.779938pt;}
.lsd8{letter-spacing:25.819360pt;}
.lsd9{letter-spacing:25.825386pt;}
.lsad{letter-spacing:26.043145pt;}
.lsd0{letter-spacing:26.074546pt;}
.lsc4{letter-spacing:26.178245pt;}
.ls71{letter-spacing:26.465503pt;}
.ls11{letter-spacing:26.668845pt;}
.lsbd{letter-spacing:26.780532pt;}
.ls3f{letter-spacing:27.124428pt;}
.lsaf{letter-spacing:27.138245pt;}
.lsaa{letter-spacing:27.202173pt;}
.lsae{letter-spacing:27.207506pt;}
.lsc2{letter-spacing:27.393931pt;}
.ls126{letter-spacing:27.610546pt;}
.ls1f{letter-spacing:28.103439pt;}
.ls8b{letter-spacing:28.107145pt;}
.ls1d{letter-spacing:28.553271pt;}
.lsa8{letter-spacing:28.956839pt;}
.ls11f{letter-spacing:29.026245pt;}
.ls1e{letter-spacing:29.233503pt;}
.lsba{letter-spacing:29.490173pt;}
.lsb9{letter-spacing:29.495506pt;}
.ls131{letter-spacing:29.957806pt;}
.ls4f{letter-spacing:30.061573pt;}
.ls52{letter-spacing:30.140845pt;}
.ls44{letter-spacing:31.061812pt;}
.ls60{letter-spacing:31.900845pt;}
.ls4{letter-spacing:32.193253pt;}
.lsac{letter-spacing:32.309555pt;}
.lse7{letter-spacing:32.444911pt;}
.lsbc{letter-spacing:32.492839pt;}
.ls11a{letter-spacing:32.528693pt;}
.ls11b{letter-spacing:32.529386pt;}
.lse5{letter-spacing:33.397806pt;}
.lse6{letter-spacing:34.683139pt;}
.ls132{letter-spacing:34.832473pt;}
.ls4e{letter-spacing:37.996911pt;}
.ls38{letter-spacing:43.020911pt;}
.ls107{letter-spacing:43.153865pt;}
.ls11c{letter-spacing:48.795360pt;}
.ls9f{letter-spacing:53.271506pt;}
.lsb5{letter-spacing:54.987680pt;}
.lsb4{letter-spacing:55.089014pt;}
.ls15{letter-spacing:55.787680pt;}
.ls80{letter-spacing:67.687412pt;}
.ls9e{letter-spacing:71.270347pt;}
.lsdd{letter-spacing:78.709806pt;}
.ls6d{letter-spacing:82.423412pt;}
.ls10{letter-spacing:85.292745pt;}
.ls75{letter-spacing:86.225696pt;}
.lsdb{letter-spacing:116.805750pt;}
.ls41{letter-spacing:169.591412pt;}
.lsce{letter-spacing:173.834210pt;}
.ls91{letter-spacing:180.332745pt;}
.lscd{letter-spacing:189.371855pt;}
.ls63{letter-spacing:192.178079pt;}
.ls11d{letter-spacing:199.957806pt;}
.ls114{letter-spacing:201.076061pt;}
.ls1a{letter-spacing:202.924745pt;}
.ls2e{letter-spacing:204.978079pt;}
.ls113{letter-spacing:206.469264pt;}
.lsfc{letter-spacing:220.099519pt;}
.ls4b{letter-spacing:278.332745pt;}
.ls9a{letter-spacing:309.004745pt;}
.ls46{letter-spacing:417.463412pt;}
.ls110{letter-spacing:488.668434pt;}
.ws88{word-spacing:-53.133867pt;}
.ws161{word-spacing:-49.150218pt;}
.wsfc{word-spacing:-42.359791pt;}
.ws89{word-spacing:-39.246684pt;}
.ws112{word-spacing:-38.362652pt;}
.wsdb{word-spacing:-37.849497pt;}
.ws78{word-spacing:-34.611401pt;}
.ws7a{word-spacing:-28.118362pt;}
.ws122{word-spacing:-26.556307pt;}
.ws18c{word-spacing:-26.122909pt;}
.ws7b{word-spacing:-25.791179pt;}
.ws68{word-spacing:-25.738045pt;}
.ws9b{word-spacing:-22.390547pt;}
.ws10a{word-spacing:-21.970515pt;}
.ws109{word-spacing:-21.965182pt;}
.ws9e{word-spacing:-21.952404pt;}
.ws93{word-spacing:-21.947070pt;}
.ws90{word-spacing:-21.473389pt;}
.wscb{word-spacing:-17.799845pt;}
.ws1{word-spacing:-16.922880pt;}
.ws1a8{word-spacing:-15.616151pt;}
.ws178{word-spacing:-15.492680pt;}
.ws10e{word-spacing:-15.110995pt;}
.ws92{word-spacing:-14.999701pt;}
.ws67{word-spacing:-14.760588pt;}
.ws1ac{word-spacing:-14.500712pt;}
.ws0{word-spacing:-14.464000pt;}
.ws17a{word-spacing:-14.386060pt;}
.ws148{word-spacing:-13.999038pt;}
.ws1c{word-spacing:-13.652838pt;}
.ws1aa{word-spacing:-13.385272pt;}
.ws177{word-spacing:-13.279440pt;}
.wsa6{word-spacing:-12.599623pt;}
.ws113{word-spacing:-12.454995pt;}
.ws1b4{word-spacing:-12.269537pt;}
.ws3f{word-spacing:-12.028410pt;}
.ws146{word-spacing:-11.422292pt;}
.ws1a9{word-spacing:-11.034882pt;}
.ws17c{word-spacing:-10.947634pt;}
.ws1b6{word-spacing:-10.853821pt;}
.wsbf{word-spacing:-10.707917pt;}
.ws135{word-spacing:-10.701161pt;}
.ws12d{word-spacing:-10.685945pt;}
.ws1ab{word-spacing:-10.238140pt;}
.ws179{word-spacing:-10.157191pt;}
.wsb9{word-spacing:-9.942420pt;}
.ws147{word-spacing:-9.883936pt;}
.ws1b2{word-spacing:-9.438106pt;}
.wsf3{word-spacing:-8.871130pt;}
.wse0{word-spacing:-8.678995pt;}
.ws1b3{word-spacing:-8.662833pt;}
.wsf5{word-spacing:-8.312563pt;}
.wse2{word-spacing:-8.279040pt;}
.ws12b{word-spacing:-8.219958pt;}
.wse4{word-spacing:-8.190336pt;}
.ws11e{word-spacing:-7.810835pt;}
.ws1b5{word-spacing:-7.685315pt;}
.ws12c{word-spacing:-7.544747pt;}
.wsbc{word-spacing:-4.665250pt;}
.ws8a{word-spacing:-4.601250pt;}
.ws79{word-spacing:-2.964870pt;}
.ws1ec{word-spacing:-2.911736pt;}
.ws174{word-spacing:-2.858602pt;}
.ws175{word-spacing:-2.592933pt;}
.ws153{word-spacing:-2.380397pt;}
.ws133{word-spacing:-2.306010pt;}
.ws163{word-spacing:-2.220996pt;}
.ws8c{word-spacing:-2.167862pt;}
.ws1e7{word-spacing:-2.114728pt;}
.ws1e0{word-spacing:-2.061594pt;}
.wsef{word-spacing:-2.008460pt;}
.wsee{word-spacing:-1.988463pt;}
.ws98{word-spacing:-1.849059pt;}
.ws99{word-spacing:-1.742791pt;}
.ws164{word-spacing:-1.640882pt;}
.wsae{word-spacing:-1.636523pt;}
.ws125{word-spacing:-1.530255pt;}
.wsac{word-spacing:-1.500464pt;}
.ws21d{word-spacing:-1.458534pt;}
.ws55{word-spacing:-1.370854pt;}
.ws8e{word-spacing:-1.317720pt;}
.ws18b{word-spacing:-1.315072pt;}
.ws18a{word-spacing:-1.267251pt;}
.ws199{word-spacing:-1.264586pt;}
.ws189{word-spacing:-1.250348pt;}
.ws2e{word-spacing:-1.211452pt;}
.wsfb{word-spacing:-1.158318pt;}
.ws1d6{word-spacing:-1.105184pt;}
.ws1fa{word-spacing:-1.075968pt;}
.ws1c1{word-spacing:-1.052051pt;}
.ws10f{word-spacing:-1.039981pt;}
.ws156{word-spacing:-0.945783pt;}
.ws15a{word-spacing:-0.892649pt;}
.ws50{word-spacing:-0.839515pt;}
.ws46{word-spacing:-0.786381pt;}
.ws8b{word-spacing:-0.733247pt;}
.ws19b{word-spacing:-0.626980pt;}
.ws1f6{word-spacing:-0.597760pt;}
.ws19c{word-spacing:-0.579549pt;}
.ws51{word-spacing:-0.573846pt;}
.ws1eb{word-spacing:-0.467578pt;}
.wsa2{word-spacing:-0.398597pt;}
.wsd2{word-spacing:-0.361310pt;}
.ws218{word-spacing:-0.310835pt;}
.ws38{word-spacing:-0.308176pt;}
.ws213{word-spacing:-0.263014pt;}
.ws1f{word-spacing:-0.216992pt;}
.ws1b{word-spacing:-0.215194pt;}
.wsad{word-spacing:-0.201909pt;}
.wsab{word-spacing:-0.192710pt;}
.ws1a{word-spacing:-0.167373pt;}
.ws1b9{word-spacing:-0.071731pt;}
.wsa5{word-spacing:-0.053134pt;}
.wseb{word-spacing:-0.047821pt;}
.ws40{word-spacing:-0.042507pt;}
.ws75{word-spacing:-0.037034pt;}
.ws12{word-spacing:-0.031881pt;}
.wsc1{word-spacing:-0.019085pt;}
.ws91{word-spacing:-0.013752pt;}
.ws2{word-spacing:0.000000pt;}
.wsb4{word-spacing:0.010627pt;}
.ws1c6{word-spacing:0.063761pt;}
.ws1f5{word-spacing:0.167373pt;}
.ws1fe{word-spacing:0.215194pt;}
.wsf6{word-spacing:0.223162pt;}
.wsf4{word-spacing:0.240374pt;}
.ws1fd{word-spacing:0.263014pt;}
.ws134{word-spacing:0.276296pt;}
.ws114{word-spacing:0.329430pt;}
.ws1e{word-spacing:0.375610pt;}
.ws181{word-spacing:0.382564pt;}
.wsfa{word-spacing:0.435433pt;}
.wsd4{word-spacing:0.435698pt;}
.wse9{word-spacing:0.454298pt;}
.ws1df{word-spacing:0.488832pt;}
.ws13{word-spacing:0.502118pt;}
.ws186{word-spacing:0.595099pt;}
.ws185{word-spacing:0.626769pt;}
.ws1d9{word-spacing:0.648233pt;}
.wsea{word-spacing:0.693402pt;}
.ws8f{word-spacing:0.701367pt;}
.wsba{word-spacing:0.754501pt;}
.wsb8{word-spacing:0.759541pt;}
.ws138{word-spacing:0.807635pt;}
.ws1d5{word-spacing:0.836864pt;}
.ws20e{word-spacing:0.932506pt;}
.ws66{word-spacing:0.967036pt;}
.ws6d{word-spacing:0.974756pt;}
.ws6c{word-spacing:1.020170pt;}
.ws170{word-spacing:1.073304pt;}
.ws1f1{word-spacing:1.123789pt;}
.ws1da{word-spacing:1.126438pt;}
.ws1f4{word-spacing:1.171610pt;}
.ws10d{word-spacing:1.179572pt;}
.ws7c{word-spacing:1.232374pt;}
.ws7d{word-spacing:1.232706pt;}
.ws20d{word-spacing:1.267251pt;}
.ws13f{word-spacing:1.285840pt;}
.ws20c{word-spacing:1.315072pt;}
.ws1a4{word-spacing:1.336102pt;}
.ws142{word-spacing:1.338973pt;}
.ws22f{word-spacing:1.362893pt;}
.wsff{word-spacing:1.392107pt;}
.ws58{word-spacing:1.445241pt;}
.wsf7{word-spacing:1.498375pt;}
.wsc5{word-spacing:1.551509pt;}
.wsc{word-spacing:1.554176pt;}
.ws223{word-spacing:1.601997pt;}
.ws3a{word-spacing:1.604643pt;}
.ws14c{word-spacing:1.649818pt;}
.ws157{word-spacing:1.657777pt;}
.ws82{word-spacing:1.710911pt;}
.ws83{word-spacing:1.764044pt;}
.wsec{word-spacing:1.817178pt;}
.wsed{word-spacing:1.870312pt;}
.ws19a{word-spacing:1.923446pt;}
.ws64{word-spacing:1.976580pt;}
.ws13a{word-spacing:2.029714pt;}
.ws1d0{word-spacing:2.082848pt;}
.ws131{word-spacing:2.135981pt;}
.wsa8{word-spacing:2.189115pt;}
.ws145{word-spacing:2.242249pt;}
.ws212{word-spacing:2.271488pt;}
.ws214{word-spacing:2.281052pt;}
.ws154{word-spacing:2.295383pt;}
.ws116{word-spacing:2.328793pt;}
.ws115{word-spacing:2.348517pt;}
.wsb3{word-spacing:2.401651pt;}
.ws12e{word-spacing:2.414950pt;}
.wsbb{word-spacing:2.429413pt;}
.wsc3{word-spacing:2.454785pt;}
.ws231{word-spacing:2.462771pt;}
.wsc2{word-spacing:2.501290pt;}
.ws111{word-spacing:2.507919pt;}
.ws110{word-spacing:2.522094pt;}
.wsb6{word-spacing:2.561052pt;}
.ws237{word-spacing:2.606234pt;}
.ws65{word-spacing:2.614186pt;}
.ws1ad{word-spacing:2.654054pt;}
.ws1ae{word-spacing:2.660321pt;}
.wsce{word-spacing:2.667320pt;}
.wsa{word-spacing:2.701875pt;}
.ws171{word-spacing:2.720050pt;}
.ws100{word-spacing:2.720454pt;}
.ws227{word-spacing:2.723089pt;}
.ws219{word-spacing:2.730020pt;}
.ws160{word-spacing:2.743979pt;}
.wsf{word-spacing:2.749696pt;}
.ws150{word-spacing:2.773588pt;}
.wse{word-spacing:2.797517pt;}
.ws126{word-spacing:2.826009pt;}
.ws77{word-spacing:2.826722pt;}
.ws8d{word-spacing:2.879856pt;}
.ws18d{word-spacing:2.893158pt;}
.ws30{word-spacing:2.930047pt;}
.ws32{word-spacing:2.932989pt;}
.wse8{word-spacing:2.940979pt;}
.ws120{word-spacing:2.942126pt;}
.wsbe{word-spacing:2.946473pt;}
.ws195{word-spacing:2.946981pt;}
.ws1dc{word-spacing:2.948212pt;}
.ws2a{word-spacing:2.986123pt;}
.ws22{word-spacing:2.988800pt;}
.ws188{word-spacing:3.036621pt;}
.ws48{word-spacing:3.039257pt;}
.ws54{word-spacing:3.092391pt;}
.ws206{word-spacing:3.132262pt;}
.ws6e{word-spacing:3.145525pt;}
.ws3e{word-spacing:3.198659pt;}
.ws182{word-spacing:3.251793pt;}
.ws18{word-spacing:3.275725pt;}
.ws5c{word-spacing:3.304927pt;}
.ws1d2{word-spacing:3.307054pt;}
.ws1d3{word-spacing:3.323546pt;}
.wsb7{word-spacing:3.358060pt;}
.ws167{word-spacing:3.411194pt;}
.ws1db{word-spacing:3.412212pt;}
.ws1ba{word-spacing:3.419187pt;}
.ws166{word-spacing:3.448290pt;}
.ws187{word-spacing:3.453834pt;}
.ws130{word-spacing:3.464328pt;}
.wsd5{word-spacing:3.517462pt;}
.ws47{word-spacing:3.570596pt;}
.ws63{word-spacing:3.676864pt;}
.ws226{word-spacing:3.706112pt;}
.ws29{word-spacing:3.729997pt;}
.wsf8{word-spacing:3.774126pt;}
.wsf9{word-spacing:3.783131pt;}
.ws16b{word-spacing:3.836265pt;}
.ws11{word-spacing:3.849574pt;}
.ws152{word-spacing:3.889399pt;}
.ws19{word-spacing:3.897395pt;}
.wsbd{word-spacing:3.942533pt;}
.ws3{word-spacing:3.985067pt;}
.ws158{word-spacing:3.995667pt;}
.ws14d{word-spacing:4.040858pt;}
.ws28{word-spacing:4.048801pt;}
.ws16e{word-spacing:4.101935pt;}
.ws12f{word-spacing:4.136499pt;}
.ws173{word-spacing:4.155068pt;}
.ws5b{word-spacing:4.208202pt;}
.ws200{word-spacing:4.232141pt;}
.ws56{word-spacing:4.261336pt;}
.ws1f7{word-spacing:4.279962pt;}
.wsd1{word-spacing:4.314470pt;}
.ws108{word-spacing:4.316451pt;}
.ws1c7{word-spacing:4.367604pt;}
.ws1d8{word-spacing:4.420738pt;}
.ws17d{word-spacing:4.423424pt;}
.ws22a{word-spacing:4.471245pt;}
.wsa3{word-spacing:4.473872pt;}
.wsc0{word-spacing:4.527005pt;}
.ws84{word-spacing:4.633273pt;}
.ws70{word-spacing:4.677845pt;}
.ws71{word-spacing:4.686407pt;}
.ws73{word-spacing:4.738052pt;}
.ws72{word-spacing:4.738956pt;}
.ws74{word-spacing:4.739541pt;}
.ws1c0{word-spacing:4.792675pt;}
.ws180{word-spacing:4.805990pt;}
.ws159{word-spacing:4.845809pt;}
.ws95{word-spacing:4.894654pt;}
.ws94{word-spacing:4.898943pt;}
.ws1fb{word-spacing:4.901632pt;}
.ws232{word-spacing:4.949453pt;}
.ws96{word-spacing:4.952076pt;}
.wsa1{word-spacing:5.005210pt;}
.ws228{word-spacing:5.006838pt;}
.ws9f{word-spacing:5.010769pt;}
.wsa0{word-spacing:5.011459pt;}
.ws87{word-spacing:5.058344pt;}
.ws20b{word-spacing:5.092915pt;}
.ws5e{word-spacing:5.111478pt;}
.wsc4{word-spacing:5.164612pt;}
.ws15{word-spacing:5.188557pt;}
.ws16{word-spacing:5.200770pt;}
.ws2f{word-spacing:5.217746pt;}
.ws17{word-spacing:5.236378pt;}
.wsa4{word-spacing:5.260070pt;}
.ws59{word-spacing:5.270880pt;}
.ws14f{word-spacing:5.324013pt;}
.ws1f2{word-spacing:5.332019pt;}
.ws132{word-spacing:5.377147pt;}
.ws36{word-spacing:5.430281pt;}
.ws25{word-spacing:5.475482pt;}
.ws155{word-spacing:5.483415pt;}
.ws1ed{word-spacing:5.536549pt;}
.ws202{word-spacing:5.618944pt;}
.ws106{word-spacing:5.642817pt;}
.ws7f{word-spacing:5.695951pt;}
.ws13d{word-spacing:5.749084pt;}
.wsa7{word-spacing:5.763841pt;}
.ws10b{word-spacing:5.802218pt;}
.ws52{word-spacing:5.855352pt;}
.ws21e{word-spacing:5.858048pt;}
.ws60{word-spacing:5.862440pt;}
.ws1a5{word-spacing:5.889032pt;}
.ws5f{word-spacing:5.890188pt;}
.wse5{word-spacing:5.905869pt;}
.ws61{word-spacing:5.908486pt;}
.ws45{word-spacing:5.961620pt;}
.ws6f{word-spacing:6.014754pt;}
.ws20a{word-spacing:6.049331pt;}
.ws69{word-spacing:6.067888pt;}
.ws35{word-spacing:6.121021pt;}
.ws215{word-spacing:6.144973pt;}
.ws184{word-spacing:6.174155pt;}
.ws1e3{word-spacing:6.227289pt;}
.ws49{word-spacing:6.333557pt;}
.ws204{word-spacing:6.336256pt;}
.ws22c{word-spacing:6.384077pt;}
.ws2d{word-spacing:6.386691pt;}
.ws41{word-spacing:6.439825pt;}
.ws16c{word-spacing:6.546092pt;}
.ws6{word-spacing:6.584924pt;}
.ws5d{word-spacing:6.599226pt;}
.ws176{word-spacing:6.652360pt;}
.ws4d{word-spacing:6.705494pt;}
.wsaa{word-spacing:6.742736pt;}
.wsdd{word-spacing:6.758628pt;}
.ws17e{word-spacing:6.766643pt;}
.ws9a{word-spacing:6.811762pt;}
.ws42{word-spacing:6.864896pt;}
.wsd7{word-spacing:6.918029pt;}
.ws121{word-spacing:6.951831pt;}
.ws1c2{word-spacing:6.960900pt;}
.ws107{word-spacing:6.971163pt;}
.wsd{word-spacing:7.053568pt;}
.ws1c9{word-spacing:7.077431pt;}
.wsa9{word-spacing:7.130565pt;}
.ws1de{word-spacing:7.183699pt;}
.wse7{word-spacing:7.197030pt;}
.ws2b{word-spacing:7.343100pt;}
.ws3c{word-spacing:7.396234pt;}
.ws8{word-spacing:7.445699pt;}
.ws5a{word-spacing:7.449368pt;}
.wscf{word-spacing:7.534086pt;}
.wsd0{word-spacing:7.555636pt;}
.wsd3{word-spacing:7.608770pt;}
.ws14b{word-spacing:7.675238pt;}
.ws143{word-spacing:7.715037pt;}
.wsde{word-spacing:7.735963pt;}
.wsdf{word-spacing:7.768171pt;}
.ws172{word-spacing:7.821305pt;}
.ws21f{word-spacing:7.866522pt;}
.ws144{word-spacing:7.927573pt;}
.ws21{word-spacing:7.962163pt;}
.ws1cd{word-spacing:7.980707pt;}
.ws4b{word-spacing:8.033841pt;}
.ws140{word-spacing:8.056102pt;}
.ws17f{word-spacing:8.057805pt;}
.ws141{word-spacing:8.086975pt;}
.ws1d{word-spacing:8.129536pt;}
.ws43{word-spacing:8.140108pt;}
.wse6{word-spacing:8.153446pt;}
.ws2c{word-spacing:8.193242pt;}
.ws1d4{word-spacing:8.201267pt;}
.wsb2{word-spacing:8.246376pt;}
.wsaf{word-spacing:8.299510pt;}
.wsd6{word-spacing:8.352644pt;}
.ws80{word-spacing:8.405778pt;}
.ws24{word-spacing:8.440371pt;}
.wsd8{word-spacing:8.458912pt;}
.ws224{word-spacing:8.488192pt;}
.ws6a{word-spacing:8.512045pt;}
.ws3b{word-spacing:8.565179pt;}
.ws104{word-spacing:8.618313pt;}
.ws97{word-spacing:8.671447pt;}
.ws123{word-spacing:8.724581pt;}
.ws1b8{word-spacing:8.727296pt;}
.ws1d7{word-spacing:8.777715pt;}
.ws1ce{word-spacing:8.805384pt;}
.ws1cf{word-spacing:8.830849pt;}
.ws1a1{word-spacing:8.883983pt;}
.ws1f0{word-spacing:8.918579pt;}
.ws1e8{word-spacing:8.937116pt;}
.wsc7{word-spacing:8.990250pt;}
.ws4e{word-spacing:9.043384pt;}
.ws39{word-spacing:9.096518pt;}
.ws16d{word-spacing:9.149652pt;}
.ws236{word-spacing:9.157683pt;}
.ws4a{word-spacing:9.202786pt;}
.ws1e4{word-spacing:9.357436pt;}
.ws1e5{word-spacing:9.362187pt;}
.ws1f3{word-spacing:9.396787pt;}
.ws1ea{word-spacing:9.404770pt;}
.ws102{word-spacing:9.415321pt;}
.ws197{word-spacing:9.521589pt;}
.wsb1{word-spacing:9.574723pt;}
.wsb0{word-spacing:9.583970pt;}
.ws193{word-spacing:9.614126pt;}
.ws194{word-spacing:9.627857pt;}
.ws124{word-spacing:9.680991pt;}
.ws7e{word-spacing:9.734124pt;}
.ws1c8{word-spacing:9.787258pt;}
.ws81{word-spacing:9.840392pt;}
.wsc8{word-spacing:9.893526pt;}
.ws1cc{word-spacing:9.941911pt;}
.ws1b7{word-spacing:9.970637pt;}
.ws16f{word-spacing:9.999794pt;}
.ws207{word-spacing:10.018458pt;}
.ws151{word-spacing:10.052928pt;}
.ws4c{word-spacing:10.106061pt;}
.ws1c5{word-spacing:10.159195pt;}
.ws1c4{word-spacing:10.192046pt;}
.ws1c3{word-spacing:10.212329pt;}
.ws211{word-spacing:10.257562pt;}
.ws1e9{word-spacing:10.265463pt;}
.ws13b{word-spacing:10.371731pt;}
.ws1a6{word-spacing:10.424865pt;}
.ws1ff{word-spacing:10.448845pt;}
.wsf1{word-spacing:10.477999pt;}
.wsf0{word-spacing:10.486844pt;}
.ws205{word-spacing:10.496666pt;}
.ws137{word-spacing:10.531132pt;}
.ws44{word-spacing:10.584266pt;}
.ws169{word-spacing:10.637400pt;}
.ws20f{word-spacing:10.649692pt;}
.ws19e{word-spacing:10.690534pt;}
.ws19d{word-spacing:10.711118pt;}
.ws14e{word-spacing:10.743668pt;}
.ws136{word-spacing:10.903069pt;}
.ws9{word-spacing:10.936617pt;}
.ws13e{word-spacing:11.009337pt;}
.ws216{word-spacing:11.022694pt;}
.ws53{word-spacing:11.115605pt;}
.ws4f{word-spacing:11.168739pt;}
.ws10c{word-spacing:11.221353pt;}
.ws105{word-spacing:11.275007pt;}
.ws11a{word-spacing:11.297251pt;}
.ws1d1{word-spacing:11.309619pt;}
.ws11b{word-spacing:11.328140pt;}
.ws168{word-spacing:11.381274pt;}
.ws103{word-spacing:11.434408pt;}
.ws230{word-spacing:11.453082pt;}
.ws34{word-spacing:11.487542pt;}
.ws1bf{word-spacing:11.593810pt;}
.ws15d{word-spacing:11.596544pt;}
.ws1f8{word-spacing:11.644365pt;}
.ws1cb{word-spacing:11.646944pt;}
.ws229{word-spacing:11.740006pt;}
.wsda{word-spacing:11.806345pt;}
.ws192{word-spacing:11.912613pt;}
.ws210{word-spacing:11.940854pt;}
.ws1ca{word-spacing:11.965747pt;}
.ws57{word-spacing:12.018881pt;}
.ws1f9{word-spacing:12.026931pt;}
.ws208{word-spacing:12.074752pt;}
.ws6b{word-spacing:12.125148pt;}
.ws62{word-spacing:12.231416pt;}
.ws86{word-spacing:12.284550pt;}
.ws4{word-spacing:12.390818pt;}
.ws5{word-spacing:12.443952pt;}
.ws16a{word-spacing:12.550219pt;}
.ws217{word-spacing:12.610345pt;}
.ws33{word-spacing:12.656487pt;}
.wsc6{word-spacing:12.709621pt;}
.ws13c{word-spacing:12.815889pt;}
.ws1fc{word-spacing:12.839885pt;}
.ws11f{word-spacing:12.869023pt;}
.ws118{word-spacing:13.105521pt;}
.ws119{word-spacing:13.134692pt;}
.ws85{word-spacing:13.347227pt;}
.wsdc{word-spacing:13.589353pt;}
.ws101{word-spacing:13.612897pt;}
.ws203{word-spacing:13.700659pt;}
.ws1a3{word-spacing:14.091101pt;}
.ws1e2{word-spacing:14.356771pt;}
.ws11c{word-spacing:14.409905pt;}
.ws1e1{word-spacing:14.569306pt;}
.ws127{word-spacing:14.675574pt;}
.ws201{word-spacing:14.944000pt;}
.ws26{word-spacing:15.005042pt;}
.ws21c{word-spacing:15.039642pt;}
.wsca{word-spacing:15.283475pt;}
.wscc{word-spacing:15.313180pt;}
.ws1a0{word-spacing:15.366314pt;}
.ws19f{word-spacing:15.367755pt;}
.ws117{word-spacing:15.419448pt;}
.ws3d{word-spacing:15.685117pt;}
.wsd9{word-spacing:15.738251pt;}
.ws234{word-spacing:15.756954pt;}
.wsc9{word-spacing:15.791385pt;}
.ws21b{word-spacing:16.187341pt;}
.ws225{word-spacing:16.235162pt;}
.ws198{word-spacing:16.428992pt;}
.ws7{word-spacing:16.641527pt;}
.ws1dd{word-spacing:16.960330pt;}
.wscd{word-spacing:17.863606pt;}
.ws165{word-spacing:18.107080pt;}
.ws22e{word-spacing:18.387098pt;}
.ws1a2{word-spacing:18.554346pt;}
.ws76{word-spacing:18.793574pt;}
.ws139{word-spacing:18.804120pt;}
.ws183{word-spacing:18.820016pt;}
.wsb5{word-spacing:18.841395pt;}
.ws209{word-spacing:18.960947pt;}
.ws11d{word-spacing:19.138819pt;}
.ws1e6{word-spacing:19.245087pt;}
.ws1ef{word-spacing:20.042095pt;}
.ws22b{word-spacing:20.156467pt;}
.ws233{word-spacing:20.443392pt;}
.ws9d{word-spacing:20.520299pt;}
.ws1ee{word-spacing:20.679701pt;}
.ws22d{word-spacing:20.778138pt;}
.ws235{word-spacing:20.969421pt;}
.ws31{word-spacing:21.013025pt;}
.ws14{word-spacing:21.189989pt;}
.ws10{word-spacing:21.193725pt;}
.ws20{word-spacing:21.196696pt;}
.ws23{word-spacing:21.198659pt;}
.ws37{word-spacing:21.200413pt;}
.wsb{word-spacing:21.208170pt;}
.ws21a{word-spacing:22.547507pt;}
.ws196{word-spacing:23.372168pt;}
.wsfe{word-spacing:24.334203pt;}
.ws15e{word-spacing:24.532070pt;}
.ws15c{word-spacing:25.082010pt;}
.ws220{word-spacing:27.329587pt;}
.ws221{word-spacing:28.046899pt;}
.ws191{word-spacing:28.490379pt;}
.ws9c{word-spacing:32.816205pt;}
.ws1bc{word-spacing:35.124378pt;}
.ws222{word-spacing:36.032973pt;}
.wsf2{word-spacing:37.164137pt;}
.wsfd{word-spacing:37.169470pt;}
.ws1bb{word-spacing:42.106214pt;}
.ws15b{word-spacing:48.466381pt;}
.ws27{word-spacing:56.524186pt;}
.ws162{word-spacing:56.536957pt;}
.ws190{word-spacing:56.538305pt;}
.ws15f{word-spacing:60.612864pt;}
.ws1af{word-spacing:65.379832pt;}
.ws128{word-spacing:95.224207pt;}
.wse1{word-spacing:125.655473pt;}
.ws14a{word-spacing:147.142982pt;}
.ws149{word-spacing:148.990014pt;}
.ws1b0{word-spacing:172.786365pt;}
.ws1be{word-spacing:178.969344pt;}
.ws129{word-spacing:188.884762pt;}
.ws1b1{word-spacing:190.518139pt;}
.ws1bd{word-spacing:193.937254pt;}
.wse3{word-spacing:201.707223pt;}
.ws12a{word-spacing:203.857771pt;}
.ws18f{word-spacing:204.314368pt;}
.ws17b{word-spacing:210.257629pt;}
.ws1a7{word-spacing:211.933300pt;}
.ws18e{word-spacing:212.826470pt;}
._1f{margin-left:-29.359880pt;}
._8{margin-left:-26.566933pt;}
._46{margin-left:-25.636331pt;}
._a{margin-left:-24.484250pt;}
._23{margin-left:-22.764594pt;}
._43{margin-left:-21.035661pt;}
._7{margin-left:-20.015721pt;}
._45{margin-left:-18.760721pt;}
._29{margin-left:-11.050120pt;}
._6{margin-left:-5.531273pt;}
._4{margin-left:-4.410111pt;}
._9{margin-left:-3.044591pt;}
._2{margin-left:-1.976593pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.162667pt;}
._3{width:2.790519pt;}
._20{width:4.546800pt;}
._27{width:5.658309pt;}
._25{width:11.467265pt;}
._2f{width:13.410469pt;}
._11{width:14.379093pt;}
._1a{width:15.444558pt;}
._1e{width:16.360103pt;}
._2b{width:17.901642pt;}
._2e{width:18.817491pt;}
._22{width:19.884623pt;}
._b{width:21.168674pt;}
._f{width:22.443895pt;}
._10{width:23.926340pt;}
._d{width:25.058099pt;}
._2d{width:26.131222pt;}
._19{width:27.265373pt;}
._13{width:28.373485pt;}
._5{width:29.516804pt;}
._12{width:30.510643pt;}
._24{width:31.466086pt;}
._17{width:32.624194pt;}
._14{width:34.022593pt;}
._e{width:35.626496pt;}
._2c{width:36.774195pt;}
._18{width:38.220169pt;}
._c{width:40.041950pt;}
._1c{width:41.036263pt;}
._15{width:42.135156pt;}
._21{width:43.510955pt;}
._41{width:45.095651pt;}
._42{width:46.077702pt;}
._2a{width:47.051940pt;}
._47{width:48.107725pt;}
._26{width:49.095693pt;}
._1b{width:50.440958pt;}
._28{width:53.399536pt;}
._1d{width:56.987426pt;}
._40{width:58.298492pt;}
._16{width:61.741553pt;}
._35{width:65.795703pt;}
._34{width:70.111010pt;}
._32{width:75.269939pt;}
._44{width:76.778437pt;}
._36{width:81.199718pt;}
._31{width:84.387251pt;}
._30{width:88.575155pt;}
._37{width:89.466999pt;}
._33{width:130.853649pt;}
._3f{width:184.062259pt;}
._3e{width:188.509594pt;}
._3d{width:202.138522pt;}
._3c{width:207.511042pt;}
._39{width:222.414541pt;}
._3a{width:233.461146pt;}
._38{width:236.658750pt;}
._3b{width:238.544828pt;}
.fs14{font-size:23.250738pt;}
.fsf{font-size:23.417856pt;}
.fsb{font-size:26.566933pt;}
.fs2f{font-size:26.696356pt;}
.fs15{font-size:30.178988pt;}
.fs34{font-size:30.741258pt;}
.fs9{font-size:31.880533pt;}
.fs10{font-size:32.761344pt;}
.fs13{font-size:32.879831pt;}
.fse{font-size:33.116160pt;}
.fs30{font-size:34.651331pt;}
.fs7{font-size:37.193600pt;}
.fs1f{font-size:37.625081pt;}
.fs2e{font-size:37.752422pt;}
.fs28{font-size:37.924938pt;}
.fs12{font-size:39.455797pt;}
.fs1b{font-size:39.535745pt;}
.fsd{font-size:39.739392pt;}
.fs21{font-size:40.628764pt;}
.fs29{font-size:40.952559pt;}
.fsa{font-size:42.507200pt;}
.fs16{font-size:42.743780pt;}
.fs1d{font-size:43.073964pt;}
.fs33{font-size:43.415286pt;}
.fs23{font-size:43.790536pt;}
.fs27{font-size:44.139529pt;}
.fs24{font-size:44.264801pt;}
.fs2b{font-size:44.617574pt;}
.fs2d{font-size:45.302907pt;}
.fs19{font-size:45.689168pt;}
.fs11{font-size:46.031763pt;}
.fsc{font-size:46.362624pt;}
.fs32{font-size:47.190528pt;}
.fs8{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs31{font-size:49.078149pt;}
.fs1c{font-size:51.688756pt;}
.fs2c{font-size:52.853391pt;}
.fs1e{font-size:53.117762pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:53.133867pt;}
.fs25{font-size:53.541089pt;}
.fs17{font-size:53.842454pt;}
.fs1a{font-size:55.996153pt;}
.fs22{font-size:57.544242pt;}
.fs2a{font-size:58.002847pt;}
.fs20{font-size:61.970722pt;}
.fs26{font-size:62.464604pt;}
.fs5{font-size:63.761067pt;}
.fs2{font-size:64.000000pt;}
.fs18{font-size:64.610945pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:77.440000pt;}
.y0{bottom:0.000000pt;}
.y187{bottom:0.964505pt;}
.y1cb{bottom:4.012468pt;}
.y225{bottom:6.998713pt;}
.y273{bottom:7.054490pt;}
.yfe{bottom:12.331675pt;}
.y299{bottom:14.707715pt;}
.y283{bottom:17.303287pt;}
.y18e{bottom:18.020929pt;}
.y115{bottom:18.274901pt;}
.y193{bottom:18.637543pt;}
.y195{bottom:18.784281pt;}
.y190{bottom:18.989774pt;}
.y1ca{bottom:19.165350pt;}
.y224{bottom:21.819517pt;}
.y272{bottom:21.993410pt;}
.y111{bottom:24.543317pt;}
.y1cc{bottom:27.587848pt;}
.y197{bottom:28.178740pt;}
.y188{bottom:32.934211pt;}
.y128{bottom:37.671627pt;}
.y293{bottom:38.134301pt;}
.y28a{bottom:38.134394pt;}
.y28e{bottom:38.909761pt;}
.y18f{bottom:41.007524pt;}
.yff{bottom:41.012576pt;}
.y284{bottom:42.280560pt;}
.y18b{bottom:42.651399pt;}
.y11d{bottom:48.700432pt;}
.y28f{bottom:48.819758pt;}
.y191{bottom:49.374267pt;}
.y289{bottom:50.269148pt;}
.y292{bottom:52.696090pt;}
.y18d{bottom:54.922622pt;}
.y274{bottom:59.201345pt;}
.y18c{bottom:59.443831pt;}
.y28d{bottom:60.078130pt;}
.y2ec{bottom:60.907047pt;}
.y1d6{bottom:64.162258pt;}
.y189{bottom:64.962864pt;}
.y22f{bottom:65.807599pt;}
.y285{bottom:67.325106pt;}
.y27c{bottom:69.598443pt;}
.y100{bottom:69.871061pt;}
.y192{bottom:70.217725pt;}
.y28b{bottom:71.606008pt;}
.y1cf{bottom:71.700076pt;}
.y1d5{bottom:75.392004pt;}
.y291{bottom:75.482373pt;}
.y22e{bottom:77.347806pt;}
.y2f3{bottom:77.466631pt;}
.y1cd{bottom:78.892141pt;}
.y226{bottom:80.430792pt;}
.y294{bottom:80.639577pt;}
.y27b{bottom:81.231273pt;}
.y1d4{bottom:86.660712pt;}
.y126{bottom:87.256811pt;}
.y28c{bottom:87.617080pt;}
.y228{bottom:88.019431pt;}
.y276{bottom:88.720911pt;}
.y22d{bottom:88.888660pt;}
.y2f2{bottom:89.007485pt;}
.y1ed{bottom:90.372000pt;}
.y196{bottom:92.176872pt;}
.y286{bottom:92.268718pt;}
.y27a{bottom:92.863451pt;}
.y62{bottom:93.914667pt;}
.y114{bottom:94.501088pt;}
.y18a{bottom:96.991284pt;}
.y296{bottom:97.257431pt;}
.y1d3{bottom:97.891087pt;}
.y101{bottom:98.640667pt;}
.y22c{bottom:100.428868pt;}
.y2f1{bottom:100.587085pt;}
.y47{bottom:101.450667pt;}
.y38e{bottom:101.642667pt;}
.y36b{bottom:103.336000pt;}
.y279{bottom:104.496281pt;}
.yfb{bottom:106.533333pt;}
.yf8{bottom:107.124000pt;}
.y61{bottom:109.190667pt;}
.y194{bottom:109.350718pt;}
.y290{bottom:110.032581pt;}
.y2ba{bottom:110.448000pt;}
.yc5{bottom:110.673333pt;}
.y295{bottom:111.616835pt;}
.y22b{bottom:111.969721pt;}
.y107{bottom:113.897813pt;}
.y38d{bottom:115.590667pt;}
.y297{bottom:115.628029pt;}
.y287{bottom:117.245990pt;}
.y36a{bottom:117.284000pt;}
.y11e{bottom:118.303680pt;}
.yf9{bottom:119.116000pt;}
.yfa{bottom:119.510667pt;}
.y21a{bottom:120.924000pt;}
.y110{bottom:121.792587pt;}
.yf7{bottom:122.400000pt;}
.y93{bottom:124.466667pt;}
.y2b9{bottom:125.724000pt;}
.yc4{bottom:125.949333pt;}
.y1c0{bottom:126.016000pt;}
.y186{bottom:127.081992pt;}
.y102{bottom:127.321803pt;}
.y60{bottom:128.414667pt;}
.y125{bottom:129.006827pt;}
.y298{bottom:129.414405pt;}
.y38c{bottom:129.537333pt;}
.y1ce{bottom:130.157661pt;}
.y113{bottom:130.248800pt;}
.y369{bottom:131.232000pt;}
.y306{bottom:132.181333pt;}
.y11c{bottom:134.773173pt;}
.y1d2{bottom:135.541781pt;}
.y92{bottom:139.742667pt;}
.y184{bottom:140.169333pt;}
.y2b8{bottom:141.000000pt;}
.y2e5{bottom:141.094667pt;}
.y1d1{bottom:141.118509pt;}
.y288{bottom:142.257064pt;}
.y1bf{bottom:142.442667pt;}
.y305{bottom:142.636000pt;}
.y38b{bottom:143.485333pt;}
.y5f{bottom:143.690667pt;}
.y368{bottom:145.180000pt;}
.y2ef{bottom:146.551623pt;}
.yf6{bottom:148.209333pt;}
.y123{bottom:149.793600pt;}
.y1ec{bottom:151.476000pt;}
.y282{bottom:152.369226pt;}
.y91{bottom:155.018667pt;}
.yc3{bottom:155.189333pt;}
.y183{bottom:155.445333pt;}
.y227{bottom:155.917764pt;}
.y103{bottom:156.150485pt;}
.y2b7{bottom:156.276000pt;}
.y2e4{bottom:156.370667pt;}
.y38a{bottom:157.433333pt;}
.y1be{bottom:157.718667pt;}
.y304{bottom:157.912000pt;}
.y46{bottom:158.294667pt;}
.y5e{bottom:158.966667pt;}
.y367{bottom:159.126667pt;}
.y2ee{bottom:160.937787pt;}
.y275{bottom:163.255968pt;}
.yf5{bottom:163.485333pt;}
.y122{bottom:164.370565pt;}
.y1d0{bottom:164.924566pt;}
.y10b{bottom:167.859413pt;}
.y10c{bottom:170.077013pt;}
.y90{bottom:170.294667pt;}
.y182{bottom:170.721333pt;}
.y389{bottom:171.381333pt;}
.y2ed{bottom:171.411155pt;}
.y2b6{bottom:171.552000pt;}
.y2e3{bottom:171.646667pt;}
.y248{bottom:171.882667pt;}
.y1bd{bottom:172.994667pt;}
.y366{bottom:173.074667pt;}
.y303{bottom:173.188000pt;}
.y45{bottom:173.570667pt;}
.y5d{bottom:174.242667pt;}
.y121{bottom:178.001413pt;}
.yf4{bottom:178.761333pt;}
.y11b{bottom:179.243258pt;}
.y278{bottom:179.509317pt;}
.y2ac{bottom:179.908270pt;}
.y29b{bottom:182.470042pt;}
.y181{bottom:182.540000pt;}
.yc2{bottom:184.428000pt;}
.y229{bottom:184.729859pt;}
.y22a{bottom:184.729885pt;}
.y104{bottom:184.860955pt;}
.y388{bottom:185.328000pt;}
.y8f{bottom:185.570667pt;}
.y180{bottom:185.997333pt;}
.y2b5{bottom:186.828000pt;}
.y2e2{bottom:186.922667pt;}
.y365{bottom:187.022667pt;}
.y247{bottom:187.158667pt;}
.y1bc{bottom:188.270667pt;}
.y302{bottom:188.464000pt;}
.y108{bottom:188.674933pt;}
.y44{bottom:188.846667pt;}
.y10d{bottom:189.355408pt;}
.y5c{bottom:189.518667pt;}
.y119{bottom:192.785120pt;}
.yf3{bottom:194.037333pt;}
.y120{bottom:194.086405pt;}
.y10a{bottom:196.954548pt;}
.y387{bottom:199.276000pt;}
.yc1{bottom:199.704000pt;}
.y1c2{bottom:200.653006pt;}
.y8e{bottom:200.846667pt;}
.y364{bottom:200.970667pt;}
.y17f{bottom:201.273333pt;}
.y2e1{bottom:202.198667pt;}
.y1bb{bottom:203.546667pt;}
.y2a7{bottom:203.604657pt;}
.y301{bottom:203.740000pt;}
.y43{bottom:204.124000pt;}
.y11a{bottom:204.287307pt;}
.y2a3{bottom:204.312515pt;}
.y2ad{bottom:204.514760pt;}
.y10e{bottom:204.671515pt;}
.y277{bottom:204.766051pt;}
.y5b{bottom:204.794667pt;}
.y246{bottom:206.002667pt;}
.y29c{bottom:207.447314pt;}
.y11f{bottom:207.835467pt;}
.y2f0{bottom:207.968970pt;}
.yf2{bottom:209.313333pt;}
.y223{bottom:209.708138pt;}
.y109{bottom:212.241333pt;}
.y17e{bottom:212.890667pt;}
.y386{bottom:213.224000pt;}
.y105{bottom:213.689872pt;}
.y363{bottom:214.917333pt;}
.yc0{bottom:214.980000pt;}
.y2a1{bottom:215.435996pt;}
.y8d{bottom:216.122667pt;}
.y2a4{bottom:216.312392pt;}
.y17d{bottom:216.549333pt;}
.y2e0{bottom:217.474667pt;}
.y1ba{bottom:218.822667pt;}
.y300{bottom:219.016000pt;}
.y42{bottom:219.732000pt;}
.y5a{bottom:220.070667pt;}
.y127{bottom:220.254027pt;}
.y245{bottom:221.278667pt;}
.y10f{bottom:224.422939pt;}
.yf1{bottom:224.589333pt;}
.y1c6{bottom:225.535660pt;}
.y385{bottom:227.172000pt;}
.y362{bottom:228.865333pt;}
.y124{bottom:229.360853pt;}
.ybf{bottom:230.256000pt;}
.y8c{bottom:231.398667pt;}
.y17c{bottom:231.825333pt;}
.y29d{bottom:232.492048pt;}
.y2df{bottom:232.750667pt;}
.y333{bottom:232.826667pt;}
.y1b9{bottom:234.100000pt;}
.y2ff{bottom:234.293333pt;}
.y2b4{bottom:234.840000pt;}
.y41{bottom:235.008000pt;}
.y59{bottom:235.346667pt;}
.y244{bottom:236.554667pt;}
.y2aa{bottom:238.053648pt;}
.y2a5{bottom:238.592969pt;}
.y117{bottom:238.970277pt;}
.y1c3{bottom:239.111902pt;}
.yf0{bottom:239.865333pt;}
.y384{bottom:241.120000pt;}
.y129{bottom:241.868587pt;}
.y106{bottom:242.400341pt;}
.y361{bottom:242.813333pt;}
.y112{bottom:242.902880pt;}
.y17b{bottom:243.442667pt;}
.ybe{bottom:245.532000pt;}
.y2a2{bottom:246.143547pt;}
.y146{bottom:246.674667pt;}
.y17a{bottom:247.101333pt;}
.y2de{bottom:248.026667pt;}
.y332{bottom:248.102667pt;}
.y2b3{bottom:248.788000pt;}
.y1b8{bottom:249.376000pt;}
.y2fe{bottom:249.569333pt;}
.y2a9{bottom:249.581714pt;}
.y40{bottom:250.284000pt;}
.y58{bottom:250.622667pt;}
.y116{bottom:251.714261pt;}
.y243{bottom:251.832000pt;}
.y118{bottom:251.862043pt;}
.y383{bottom:255.066667pt;}
.yef{bottom:255.141333pt;}
.y360{bottom:256.761333pt;}
.y8b{bottom:257.074667pt;}
.y2e6{bottom:257.371172pt;}
.y29e{bottom:257.435472pt;}
.ybd{bottom:260.808000pt;}
.y145{bottom:261.950667pt;}
.y179{bottom:262.377333pt;}
.y219{bottom:262.682667pt;}
.y2b2{bottom:262.736000pt;}
.y331{bottom:263.378667pt;}
.y1b7{bottom:264.652000pt;}
.y2fd{bottom:264.845333pt;}
.y3f{bottom:265.560000pt;}
.y57{bottom:265.898667pt;}
.y2ae{bottom:266.334351pt;}
.y242{bottom:267.108000pt;}
.y382{bottom:269.014667pt;}
.y21c{bottom:269.860686pt;}
.yee{bottom:270.417333pt;}
.y35f{bottom:270.709333pt;}
.y2dd{bottom:270.838667pt;}
.yfd{bottom:272.855733pt;}
.y2b1{bottom:276.684000pt;}
.y1eb{bottom:277.226667pt;}
.y270{bottom:277.228000pt;}
.y2a6{bottom:277.289342pt;}
.ybc{bottom:277.493333pt;}
.y1c4{bottom:277.570798pt;}
.y178{bottom:277.653333pt;}
.y218{bottom:277.958667pt;}
.y330{bottom:278.654667pt;}
.y1b6{bottom:279.928000pt;}
.y2fc{bottom:280.121333pt;}
.y3e{bottom:280.836000pt;}
.y56{bottom:281.174667pt;}
.y2a8{bottom:282.244301pt;}
.y241{bottom:282.384000pt;}
.y29f{bottom:282.412745pt;}
.y381{bottom:282.962667pt;}
.y8a{bottom:284.380000pt;}
.y21f{bottom:284.483880pt;}
.y35e{bottom:284.656000pt;}
.yed{bottom:285.693333pt;}
.y1c8{bottom:285.954523pt;}
.y2dc{bottom:286.114667pt;}
.y142{bottom:288.657333pt;}
.y2b0{bottom:290.632000pt;}
.y1c7{bottom:291.531000pt;}
.y1ea{bottom:292.502667pt;}
.y26f{bottom:292.504000pt;}
.ybb{bottom:292.769333pt;}
.y217{bottom:293.234667pt;}
.y177{bottom:293.356000pt;}
.y32f{bottom:293.930667pt;}
.y1b5{bottom:295.204000pt;}
.y2fb{bottom:295.397333pt;}
.y3d{bottom:296.112000pt;}
.y55{bottom:296.450667pt;}
.y380{bottom:296.910667pt;}
.y2ab{bottom:296.940780pt;}
.y240{bottom:297.660000pt;}
.y35d{bottom:298.604000pt;}
.y89{bottom:299.656000pt;}
.y144{bottom:300.322667pt;}
.yec{bottom:300.969333pt;}
.y143{bottom:301.046667pt;}
.y141{bottom:304.330667pt;}
.y2af{bottom:304.578667pt;}
.y175{bottom:304.973333pt;}
.y176{bottom:305.348000pt;}
.y2db{bottom:306.212000pt;}
.y2a0{bottom:307.423818pt;}
.y1e9{bottom:307.778667pt;}
.yba{bottom:308.046667pt;}
.y216{bottom:308.510667pt;}
.y174{bottom:308.632000pt;}
.y32e{bottom:309.206667pt;}
.y2fa{bottom:310.673333pt;}
.y37f{bottom:310.857333pt;}
.y3c{bottom:311.388000pt;}
.y1b4{bottom:311.629333pt;}
.y54{bottom:311.728000pt;}
.y35c{bottom:312.552000pt;}
.y23f{bottom:312.936000pt;}
.y88{bottom:314.933333pt;}
.y1c5{bottom:316.029694pt;}
.yeb{bottom:316.245333pt;}
.y2da{bottom:316.666667pt;}
.y29a{bottom:317.536074pt;}
.y1c9{bottom:319.221424pt;}
.y1e8{bottom:323.054667pt;}
.yb9{bottom:323.322667pt;}
.y215{bottom:323.786667pt;}
.y173{bottom:323.908000pt;}
.y32d{bottom:324.482667pt;}
.y37e{bottom:324.805333pt;}
.y2f9{bottom:325.949333pt;}
.y35b{bottom:326.500000pt;}
.y3b{bottom:326.664000pt;}
.y1b3{bottom:326.906667pt;}
.y53{bottom:327.004000pt;}
.y26e{bottom:327.326667pt;}
.y23e{bottom:328.212000pt;}
.y87{bottom:330.209333pt;}
.y281{bottom:331.810667pt;}
.y2d9{bottom:331.942667pt;}
.y140{bottom:335.206667pt;}
.y21d{bottom:335.348750pt;}
.y1e7{bottom:338.330667pt;}
.y37d{bottom:338.753333pt;}
.y214{bottom:339.062667pt;}
.y172{bottom:339.184000pt;}
.y32c{bottom:339.758667pt;}
.y35a{bottom:340.446667pt;}
.y2f8{bottom:341.225333pt;}
.y1b2{bottom:342.182667pt;}
.y3a{bottom:342.273333pt;}
.y52{bottom:342.280000pt;}
.y23d{bottom:347.056000pt;}
.yea{bottom:350.418667pt;}
.y13f{bottom:350.482667pt;}
.y171{bottom:351.802667pt;}
.y37c{bottom:352.701333pt;}
.y1e6{bottom:353.606667pt;}
.y213{bottom:354.338667pt;}
.y359{bottom:354.394667pt;}
.y221{bottom:354.398617pt;}
.y32b{bottom:355.034667pt;}
.y2f7{bottom:356.501333pt;}
.y1b1{bottom:357.458667pt;}
.y39{bottom:357.549333pt;}
.yb8{bottom:357.836000pt;}
.y170{bottom:357.966667pt;}
.y51{bottom:361.504000pt;}
.y23c{bottom:362.332000pt;}
.y16f{bottom:363.794667pt;}
.y86{bottom:364.382667pt;}
.y2ea{bottom:365.781020pt;}
.y37b{bottom:366.649333pt;}
.y16e{bottom:367.078667pt;}
.y13e{bottom:367.168000pt;}
.y2e7{bottom:367.835694pt;}
.y358{bottom:368.342667pt;}
.y1e5{bottom:368.882667pt;}
.y212{bottom:369.616000pt;}
.y32a{bottom:370.310667pt;}
.y2f6{bottom:371.777333pt;}
.y1b0{bottom:372.734667pt;}
.y38{bottom:372.825333pt;}
.y2d8{bottom:373.653333pt;}
.y26d{bottom:374.953333pt;}
.y50{bottom:376.780000pt;}
.y23b{bottom:377.608000pt;}
.y2e9{bottom:379.179092pt;}
.y37a{bottom:380.596000pt;}
.y220{bottom:381.234347pt;}
.y357{bottom:382.290667pt;}
.y13d{bottom:382.444000pt;}
.y211{bottom:384.892000pt;}
.y329{bottom:385.586667pt;}
.y2f5{bottom:387.053333pt;}
.y1e4{bottom:387.864000pt;}
.y1af{bottom:388.010667pt;}
.y37{bottom:388.101333pt;}
.y26c{bottom:390.229333pt;}
.y4f{bottom:392.056000pt;}
.y23a{bottom:392.884000pt;}
.ye9{bottom:393.557333pt;}
.y2e8{bottom:393.564997pt;}
.y379{bottom:394.544000pt;}
.y356{bottom:396.238667pt;}
.y13c{bottom:397.720000pt;}
.y210{bottom:400.168000pt;}
.y21e{bottom:400.837072pt;}
.y328{bottom:400.862667pt;}
.y1e3{bottom:403.140000pt;}
.y1ae{bottom:403.286667pt;}
.y36{bottom:403.377333pt;}
.yb7{bottom:403.822667pt;}
.y239{bottom:404.617333pt;}
.y26b{bottom:405.505333pt;}
.y222{bottom:405.540362pt;}
.y2eb{bottom:405.895997pt;}
.y16d{bottom:406.766667pt;}
.y4e{bottom:407.332000pt;}
.y85{bottom:408.069333pt;}
.y238{bottom:408.160000pt;}
.y378{bottom:408.492000pt;}
.ye8{bottom:408.833333pt;}
.y355{bottom:410.185333pt;}
.y13b{bottom:412.996000pt;}
.y20f{bottom:415.444000pt;}
.y327{bottom:416.138667pt;}
.y16c{bottom:418.280000pt;}
.y1e2{bottom:418.416000pt;}
.y1ad{bottom:418.562667pt;}
.y35{bottom:418.653333pt;}
.y16b{bottom:418.758667pt;}
.yb6{bottom:419.098667pt;}
.y26a{bottom:420.781333pt;}
.y377{bottom:422.440000pt;}
.y4d{bottom:422.608000pt;}
.ye7{bottom:424.109333pt;}
.y2f4{bottom:424.120000pt;}
.y354{bottom:424.133333pt;}
.y13a{bottom:424.814667pt;}
.y84{bottom:428.166667pt;}
.y139{bottom:428.272000pt;}
.y20e{bottom:430.720000pt;}
.y326{bottom:431.414667pt;}
.y16a{bottom:432.005333pt;}
.y1e1{bottom:433.692000pt;}
.y1ac{bottom:433.838667pt;}
.y169{bottom:433.861333pt;}
.y34{bottom:433.929333pt;}
.yb5{bottom:434.374667pt;}
.y269{bottom:436.057333pt;}
.y376{bottom:436.386667pt;}
.y168{bottom:437.318667pt;}
.y4c{bottom:437.884000pt;}
.y353{bottom:438.081333pt;}
.y83{bottom:438.621333pt;}
.ye6{bottom:439.385333pt;}
.y20d{bottom:445.996000pt;}
.y325{bottom:446.690667pt;}
.y1e0{bottom:448.968000pt;}
.y1ab{bottom:449.114667pt;}
.y33{bottom:449.205333pt;}
.yb4{bottom:449.650667pt;}
.y375{bottom:450.334667pt;}
.y268{bottom:451.333333pt;}
.y352{bottom:452.029333pt;}
.y167{bottom:452.594667pt;}
.y4b{bottom:453.160000pt;}
.y82{bottom:453.897333pt;}
.ye5{bottom:454.661333pt;}
.y136{bottom:454.978667pt;}
.y2d7{bottom:457.818667pt;}
.y237{bottom:460.792000pt;}
.y20c{bottom:461.272000pt;}
.y324{bottom:461.966667pt;}
.y1df{bottom:464.245333pt;}
.y374{bottom:464.282667pt;}
.y1aa{bottom:464.390667pt;}
.y32{bottom:464.481333pt;}
.y166{bottom:464.586667pt;}
.yb3{bottom:464.926667pt;}
.y351{bottom:465.976000pt;}
.y15{bottom:465.986667pt;}
.y267{bottom:466.609333pt;}
.y138{bottom:466.644000pt;}
.y137{bottom:467.368000pt;}
.y165{bottom:467.870667pt;}
.y4a{bottom:468.436000pt;}
.y81{bottom:469.173333pt;}
.ye4{bottom:469.937333pt;}
.y135{bottom:470.652000pt;}
.y2d6{bottom:473.094667pt;}
.y236{bottom:474.740000pt;}
.y20b{bottom:476.548000pt;}
.y323{bottom:477.242667pt;}
.y373{bottom:478.230667pt;}
.y1de{bottom:479.521333pt;}
.y1a9{bottom:479.666667pt;}
.y164{bottom:479.689333pt;}
.y350{bottom:479.924000pt;}
.yb2{bottom:480.202667pt;}
.y266{bottom:481.885333pt;}
.y163{bottom:483.146667pt;}
.y49{bottom:483.712000pt;}
.y80{bottom:484.449333pt;}
.ye3{bottom:485.213333pt;}
.y2d5{bottom:488.370667pt;}
.y235{bottom:488.688000pt;}
.yb0{bottom:490.756000pt;}
.y20a{bottom:491.824000pt;}
.yb1{bottom:492.021333pt;}
.y372{bottom:492.178667pt;}
.y34f{bottom:493.872000pt;}
.y322{bottom:493.946667pt;}
.y1dd{bottom:494.797333pt;}
.y1a8{bottom:494.942667pt;}
.yaf{bottom:495.478667pt;}
.y265{bottom:497.161333pt;}
.y162{bottom:498.422667pt;}
.y31{bottom:498.988000pt;}
.y234{bottom:499.597333pt;}
.y7f{bottom:499.726667pt;}
.ye2{bottom:500.489333pt;}
.y134{bottom:501.528000pt;}
.y233{bottom:502.634667pt;}
.y2d4{bottom:503.646667pt;}
.y48{bottom:503.808000pt;}
.y371{bottom:506.125333pt;}
.y34e{bottom:507.820000pt;}
.y209{bottom:507.832000pt;}
.y264{bottom:508.896000pt;}
.y321{bottom:509.222667pt;}
.y1dc{bottom:510.073333pt;}
.y1a7{bottom:510.218667pt;}
.yae{bottom:510.754667pt;}
.y14{bottom:510.946667pt;}
.y263{bottom:512.437333pt;}
.y232{bottom:513.545333pt;}
.y7e{bottom:515.002667pt;}
.ye1{bottom:515.765333pt;}
.y231{bottom:516.582667pt;}
.y133{bottom:516.804000pt;}
.y2d3{bottom:518.922667pt;}
.y370{bottom:520.073333pt;}
.y34d{bottom:521.768000pt;}
.y208{bottom:523.108000pt;}
.y320{bottom:524.498667pt;}
.y1a6{bottom:525.494667pt;}
.yad{bottom:526.370667pt;}
.y262{bottom:527.713333pt;}
.y161{bottom:528.261333pt;}
.y7d{bottom:530.278667pt;}
.y230{bottom:530.530667pt;}
.ye0{bottom:531.041333pt;}
.y132{bottom:532.080000pt;}
.y36f{bottom:534.021333pt;}
.y2d2{bottom:534.198667pt;}
.y34c{bottom:535.714667pt;}
.y207{bottom:538.384000pt;}
.y31f{bottom:539.774667pt;}
.y30{bottom:540.241333pt;}
.yac{bottom:541.646667pt;}
.y261{bottom:542.990667pt;}
.y7c{bottom:545.554667pt;}
.ydf{bottom:546.318667pt;}
.y131{bottom:548.765333pt;}
.y2d1{bottom:549.474667pt;}
.y34b{bottom:549.662667pt;}
.yab{bottom:552.916000pt;}
.y206{bottom:553.660000pt;}
.y31e{bottom:555.050667pt;}
.y13{bottom:555.773333pt;}
.yaa{bottom:556.922667pt;}
.y160{bottom:557.673333pt;}
.y21b{bottom:557.761333pt;}
.y260{bottom:558.266667pt;}
.y1a5{bottom:560.818667pt;}
.y2f{bottom:560.830667pt;}
.yde{bottom:561.594667pt;}
.y1db{bottom:562.314667pt;}
.y34a{bottom:563.610667pt;}
.y205{bottom:568.936000pt;}
.ya9{bottom:572.198667pt;}
.y15f{bottom:572.949333pt;}
.y2e{bottom:574.777333pt;}
.y31d{bottom:575.146667pt;}
.y7b{bottom:576.106667pt;}
.y1da{bottom:576.262667pt;}
.ydd{bottom:576.870667pt;}
.y2d0{bottom:577.108000pt;}
.y36e{bottom:577.557333pt;}
.y349{bottom:577.558667pt;}
.y25f{bottom:578.362667pt;}
.y204{bottom:584.212000pt;}
.y31c{bottom:585.602667pt;}
.ya8{bottom:587.474667pt;}
.y2cf{bottom:587.562667pt;}
.y15e{bottom:588.225333pt;}
.y2d{bottom:588.725333pt;}
.y25e{bottom:588.818667pt;}
.y1d9{bottom:590.210667pt;}
.y7a{bottom:591.382667pt;}
.y348{bottom:591.505333pt;}
.ydc{bottom:592.146667pt;}
.y130{bottom:594.049333pt;}
.y203{bottom:599.488000pt;}
.y12{bottom:600.733333pt;}
.y31b{bottom:600.878667pt;}
.ya7{bottom:602.750667pt;}
.y2ce{bottom:602.838667pt;}
.y15d{bottom:603.501333pt;}
.y25d{bottom:604.094667pt;}
.y1d8{bottom:604.157333pt;}
.y347{bottom:605.453333pt;}
.y79{bottom:606.658667pt;}
.ydb{bottom:607.422667pt;}
.y2c{bottom:607.488000pt;}
.y12f{bottom:607.996000pt;}
.y1a4{bottom:611.106667pt;}
.y202{bottom:614.764000pt;}
.y31a{bottom:616.154667pt;}
.ya6{bottom:618.026667pt;}
.y1d7{bottom:618.105333pt;}
.y2cd{bottom:618.116000pt;}
.y15c{bottom:618.777333pt;}
.y25c{bottom:619.370667pt;}
.y346{bottom:619.401333pt;}
.y78{bottom:621.934667pt;}
.y12e{bottom:621.944000pt;}
.yda{bottom:622.698667pt;}
.y1a3{bottom:626.382667pt;}
.y2b{bottom:626.514667pt;}
.y11{bottom:626.973333pt;}
.y201{bottom:630.040000pt;}
.y25b{bottom:631.104000pt;}
.y319{bottom:631.430667pt;}
.y345{bottom:633.349333pt;}
.y2cc{bottom:633.392000pt;}
.y25a{bottom:634.646667pt;}
.y2a{bottom:635.384000pt;}
.y12d{bottom:635.892000pt;}
.y77{bottom:637.210667pt;}
.yd9{bottom:637.974667pt;}
.y1a2{bottom:641.658667pt;}
.y15a{bottom:642.526667pt;}
.y200{bottom:645.316000pt;}
.y1c1{bottom:645.337333pt;}
.y318{bottom:646.706667pt;}
.y36d{bottom:647.296000pt;}
.y344{bottom:647.297333pt;}
.ya5{bottom:647.834667pt;}
.y15b{bottom:648.354667pt;}
.ya4{bottom:648.558667pt;}
.y2cb{bottom:648.668000pt;}
.y12c{bottom:649.840000pt;}
.y10{bottom:649.853333pt;}
.y259{bottom:649.922667pt;}
.y159{bottom:651.638667pt;}
.ya3{bottom:651.842667pt;}
.y76{bottom:652.486667pt;}
.yd8{bottom:653.250667pt;}
.y29{bottom:654.146667pt;}
.y1a1{bottom:656.934667pt;}
.y343{bottom:661.244000pt;}
.y317{bottom:661.982667pt;}
.y2ca{bottom:663.944000pt;}
.y258{bottom:665.198667pt;}
.y1ff{bottom:665.412000pt;}
.y75{bottom:667.762667pt;}
.y28{bottom:668.094667pt;}
.yd7{bottom:668.526667pt;}
.y12b{bottom:668.865333pt;}
.y1a0{bottom:672.210667pt;}
.yf{bottom:674.173333pt;}
.y342{bottom:675.192000pt;}
.y1fe{bottom:675.868000pt;}
.y316{bottom:677.258667pt;}
.y12a{bottom:677.734667pt;}
.y2c9{bottom:679.220000pt;}
.y158{bottom:680.072000pt;}
.y257{bottom:681.122667pt;}
.y27{bottom:682.042667pt;}
.y74{bottom:683.038667pt;}
.y280{bottom:683.154667pt;}
.yd6{bottom:683.802667pt;}
.ya2{bottom:684.992000pt;}
.y19f{bottom:687.486667pt;}
.y341{bottom:689.140000pt;}
.y2c8{bottom:694.496000pt;}
.y26{bottom:695.989333pt;}
.y256{bottom:696.400000pt;}
.y27f{bottom:697.102667pt;}
.y315{bottom:697.354667pt;}
.y73{bottom:698.314667pt;}
.ye{bottom:698.493333pt;}
.yd5{bottom:699.078667pt;}
.ya1{bottom:701.752000pt;}
.y19e{bottom:702.762667pt;}
.y36c{bottom:703.086667pt;}
.y340{bottom:703.088000pt;}
.yfc{bottom:704.966667pt;}
.y157{bottom:707.253333pt;}
.y314{bottom:707.810667pt;}
.y255{bottom:708.133333pt;}
.y2c7{bottom:709.772000pt;}
.y25{bottom:709.937333pt;}
.y1fd{bottom:710.773333pt;}
.y27e{bottom:711.050667pt;}
.y254{bottom:711.676000pt;}
.y72{bottom:713.590667pt;}
.yd4{bottom:715.720000pt;}
.ya0{bottom:717.028000pt;}
.y33f{bottom:717.034667pt;}
.y19d{bottom:718.038667pt;}
.yd{bottom:721.053333pt;}
.y156{bottom:722.529333pt;}
.y313{bottom:723.086667pt;}
.y24{bottom:723.885333pt;}
.y27d{bottom:724.998667pt;}
.y2c6{bottom:725.048000pt;}
.y253{bottom:726.952000pt;}
.y9e{bottom:728.542667pt;}
.y9f{bottom:728.645333pt;}
.y71{bottom:728.866667pt;}
.y33e{bottom:730.982667pt;}
.yd3{bottom:730.996000pt;}
.y9d{bottom:732.304000pt;}
.y19c{bottom:733.314667pt;}
.y312{bottom:734.821333pt;}
.y155{bottom:737.805333pt;}
.yc{bottom:738.013333pt;}
.y311{bottom:738.362667pt;}
.y2c5{bottom:740.324000pt;}
.y252{bottom:742.228000pt;}
.y23{bottom:742.648000pt;}
.y9c{bottom:744.122667pt;}
.y70{bottom:744.142667pt;}
.y33d{bottom:744.930667pt;}
.yd2{bottom:746.272000pt;}
.y9b{bottom:747.580000pt;}
.y19b{bottom:748.590667pt;}
.y271{bottom:752.229333pt;}
.y154{bottom:753.081333pt;}
.y310{bottom:753.638667pt;}
.y2c4{bottom:755.600000pt;}
.y22{bottom:756.596000pt;}
.y251{bottom:757.504000pt;}
.yb{bottom:757.533333pt;}
.y1fc{bottom:758.841333pt;}
.y6f{bottom:759.418667pt;}
.yd1{bottom:761.548000pt;}
.y9a{bottom:762.856000pt;}
.y153{bottom:768.357333pt;}
.y30f{bottom:768.914667pt;}
.y21{bottom:770.544000pt;}
.y2c3{bottom:770.876000pt;}
.y250{bottom:772.780000pt;}
.y1fb{bottom:774.117333pt;}
.y6e{bottom:774.694667pt;}
.yd0{bottom:776.824000pt;}
.ya{bottom:777.093333pt;}
.y99{bottom:778.132000pt;}
.y30e{bottom:780.649333pt;}
.y152{bottom:783.633333pt;}
.y30d{bottom:784.190667pt;}
.y2c2{bottom:786.152000pt;}
.y20{bottom:789.306667pt;}
.y1fa{bottom:789.393333pt;}
.y6d{bottom:789.970667pt;}
.ycf{bottom:792.100000pt;}
.y98{bottom:793.408000pt;}
.y19a{bottom:795.722667pt;}
.y151{bottom:798.909333pt;}
.y30c{bottom:801.681333pt;}
.y2c1{bottom:803.016000pt;}
.y1f{bottom:803.254667pt;}
.y6c{bottom:805.246667pt;}
.yce{bottom:807.376000pt;}
.y24f{bottom:807.602667pt;}
.y9{bottom:808.453333pt;}
.y199{bottom:809.670667pt;}
.y150{bottom:810.526667pt;}
.y30b{bottom:813.414667pt;}
.y14f{bottom:814.185333pt;}
.y33c{bottom:816.901333pt;}
.y30a{bottom:816.957333pt;}
.y1e{bottom:817.202667pt;}
.y2c0{bottom:818.292000pt;}
.y97{bottom:819.253333pt;}
.y6b{bottom:820.522667pt;}
.ycd{bottom:822.652000pt;}
.y198{bottom:823.618667pt;}
.y8{bottom:823.813333pt;}
.y14e{bottom:828.288000pt;}
.y1d{bottom:831.149333pt;}
.y96{bottom:831.245333pt;}
.y14d{bottom:831.948000pt;}
.y33b{bottom:832.177333pt;}
.y309{bottom:834.446667pt;}
.y95{bottom:834.529333pt;}
.y6a{bottom:835.798667pt;}
.ycc{bottom:837.928000pt;}
.y7{bottom:839.173333pt;}
.y1f9{bottom:839.558667pt;}
.y1f8{bottom:842.596000pt;}
.y14c{bottom:847.224000pt;}
.y33a{bottom:847.453333pt;}
.y185{bottom:850.849333pt;}
.y69{bottom:851.074667pt;}
.y6{bottom:851.333333pt;}
.ycb{bottom:853.204000pt;}
.y1c{bottom:853.732000pt;}
.y1f7{bottom:854.060000pt;}
.y1f6{bottom:857.097333pt;}
.y24e{bottom:860.640000pt;}
.y339{bottom:862.729333pt;}
.y68{bottom:866.350667pt;}
.y1b{bottom:867.680000pt;}
.y1f5{bottom:871.598667pt;}
.y24d{bottom:874.586667pt;}
.y1f4{bottom:875.334667pt;}
.yca{bottom:875.692000pt;}
.y14b{bottom:875.770667pt;}
.y338{bottom:878.005333pt;}
.y94{bottom:878.169333pt;}
.y1f3{bottom:878.373333pt;}
.y14a{bottom:879.054667pt;}
.y1a{bottom:881.626667pt;}
.y2bf{bottom:882.065333pt;}
.y2be{bottom:885.102667pt;}
.y24c{bottom:889.066667pt;}
.y337{bottom:893.281333pt;}
.y19{bottom:895.574667pt;}
.y2bd{bottom:896.566667pt;}
.y67{bottom:896.902667pt;}
.y308{bottom:896.904000pt;}
.yc9{bottom:898.180000pt;}
.y2bc{bottom:899.604000pt;}
.y149{bottom:899.644000pt;}
.y1f2{bottom:900.025333pt;}
.y148{bottom:905.472000pt;}
.y336{bottom:908.557333pt;}
.y147{bottom:908.756000pt;}
.y24b{bottom:909.190667pt;}
.y66{bottom:912.180000pt;}
.yc8{bottom:913.456000pt;}
.y2bb{bottom:914.637333pt;}
.y1f1{bottom:923.137333pt;}
.y24a{bottom:923.138667pt;}
.y335{bottom:923.833333pt;}
.y18{bottom:927.456000pt;}
.y391{bottom:931.440000pt;}
.yc7{bottom:933.249333pt;}
.y1f0{bottom:937.085333pt;}
.y334{bottom:939.109333pt;}
.y17{bottom:941.402667pt;}
.yc6{bottom:942.361333pt;}
.y65{bottom:942.732000pt;}
.y5{bottom:945.093333pt;}
.y390{bottom:945.388000pt;}
.y249{bottom:947.996000pt;}
.y1ef{bottom:951.033333pt;}
.y307{bottom:954.465333pt;}
.y64{bottom:958.008000pt;}
.y4{bottom:959.333333pt;}
.y38f{bottom:959.336000pt;}
.y1ee{bottom:964.981333pt;}
.y16{bottom:973.284000pt;}
.y3{bottom:974.693333pt;}
.y2{bottom:990.053333pt;}
.y1{bottom:1005.413333pt;}
.y63{bottom:1007.821333pt;}
.h45{height:7.324533pt;}
.h12{height:14.922402pt;}
.h55{height:20.763144pt;}
.hf{height:21.551241pt;}
.h3a{height:22.539805pt;}
.h39{height:22.783918pt;}
.h80{height:23.840115pt;}
.h13{height:26.147101pt;}
.h52{height:27.145589pt;}
.h38{height:27.340702pt;}
.h86{height:27.749446pt;}
.h1a{height:27.895200pt;}
.h6c{height:27.952590pt;}
.h76{height:28.011551pt;}
.h7f{height:29.869717pt;}
.h10{height:29.925069pt;}
.h89{height:30.232859pt;}
.h6e{height:30.454183pt;}
.h77{height:30.518421pt;}
.h7a{height:31.168400pt;}
.h51{height:31.669853pt;}
.h37{height:31.897485pt;}
.h60{height:32.262399pt;}
.h82{height:32.467083pt;}
.hb{height:34.239693pt;}
.h53{height:35.724383pt;}
.h54{height:35.725292pt;}
.hd{height:35.865600pt;}
.h87{height:36.279431pt;}
.h79{height:36.363133pt;}
.h6d{height:36.545020pt;}
.h72{height:36.622105pt;}
.h5d{height:38.714878pt;}
.hc{height:39.850400pt;}
.h59{height:40.327998pt;}
.h7c{height:41.017984pt;}
.h7b{height:41.018734pt;}
.h29{height:41.533628pt;}
.h56{height:41.738385pt;}
.he{height:41.865907pt;}
.h64{height:42.447241pt;}
.h67{height:42.452574pt;}
.h85{height:42.511915pt;}
.h6b{height:42.635857pt;}
.h73{height:42.850718pt;}
.h63{height:44.225067pt;}
.h9{height:44.632747pt;}
.h14{height:45.427101pt;}
.h11{height:45.432434pt;}
.h2a{height:45.464294pt;}
.ha{height:45.469628pt;}
.h1d{height:47.175200pt;}
.h16{height:47.180533pt;}
.h8b{height:47.950933pt;}
.h66{height:48.014933pt;}
.h30{height:48.083101pt;}
.h2f{height:48.088434pt;}
.h7e{height:48.107373pt;}
.h2b{height:48.120294pt;}
.h32{height:48.125628pt;}
.h5e{height:48.393598pt;}
.h70{height:48.872434pt;}
.h61{height:48.877767pt;}
.h7d{height:49.188170pt;}
.h3{height:49.336436pt;}
.h18{height:49.831200pt;}
.h48{height:49.836533pt;}
.h35{height:51.407733pt;}
.h57{height:51.660533pt;}
.h20{height:52.015733pt;}
.h3b{height:52.600021pt;}
.h31{height:52.605355pt;}
.h5{height:52.834688pt;}
.h1c{height:52.986400pt;}
.h2c{height:53.279733pt;}
.h21{height:53.285067pt;}
.h24{height:53.431200pt;}
.h17{height:53.679733pt;}
.h15{height:53.871733pt;}
.h6f{height:54.015241pt;}
.h8a{height:54.015733pt;}
.h68{height:54.021067pt;}
.h1f{height:54.485067pt;}
.h2{height:54.598989pt;}
.h47{height:54.901067pt;}
.h26{height:55.853628pt;}
.h25{height:55.877067pt;}
.h83{height:57.473734pt;}
.h84{height:57.631048pt;}
.h88{height:57.632081pt;}
.h6a{height:57.820206pt;}
.h75{height:57.969702pt;}
.h74{height:58.129311pt;}
.h4e{height:58.563101pt;}
.h28{height:59.261767pt;}
.h62{height:59.597767pt;}
.h46{height:60.311200pt;}
.h4f{height:61.004533pt;}
.h41{height:61.256294pt;}
.h4d{height:61.809867pt;}
.h1e{height:62.220533pt;}
.h1b{height:62.967200pt;}
.h4c{height:62.972533pt;}
.h5b{height:63.302015pt;}
.h4{height:63.656250pt;}
.h3d{height:64.152294pt;}
.h34{height:64.162688pt;}
.h33{height:64.856294pt;}
.h19{height:65.736021pt;}
.h27{height:66.071200pt;}
.h3e{height:66.122400pt;}
.h44{height:66.415733pt;}
.h3c{height:66.561867pt;}
.h42{height:67.621067pt;}
.h5a{height:72.987503pt;}
.h22{height:74.237355pt;}
.h7{height:74.477812pt;}
.h65{height:76.708267pt;}
.h6{height:77.024062pt;}
.h23{height:77.133355pt;}
.h2d{height:81.373767pt;}
.h5c{height:85.607747pt;}
.h5f{height:85.608727pt;}
.h43{height:86.279200pt;}
.h81{height:86.995604pt;}
.h2e{height:89.727733pt;}
.h40{height:97.549355pt;}
.h49{height:97.576021pt;}
.h4a{height:102.994688pt;}
.h4b{height:110.940533pt;}
.h3f{height:118.565067pt;}
.h50{height:135.717840pt;}
.h71{height:234.336000pt;}
.h36{height:281.600000pt;}
.h78{height:327.243840pt;}
.h58{height:341.228440pt;}
.h69{height:428.802347pt;}
.h8{height:1056.000000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:326.768053pt;}
.w8{width:326.768533pt;}
.w5{width:326.771280pt;}
.w4{width:326.773333pt;}
.w6{width:326.774933pt;}
.w9{width:326.775680pt;}
.w1{width:794.000000pt;}
.w2{width:794.079988pt;}
.w0{width:794.080000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:8.526848pt;}
.x93{left:9.475465pt;}
.x88{left:11.665555pt;}
.x3a{left:13.997045pt;}
.x90{left:15.205884pt;}
.x3b{left:19.082713pt;}
.x87{left:20.716126pt;}
.x3c{left:22.039420pt;}
.x7c{left:23.149176pt;}
.x74{left:24.188889pt;}
.x77{left:25.341522pt;}
.x91{left:27.003516pt;}
.x92{left:27.913478pt;}
.x79{left:29.879609pt;}
.x8e{left:37.040645pt;}
.x78{left:39.955839pt;}
.x73{left:44.738541pt;}
.x39{left:47.053893pt;}
.x40{left:58.349045pt;}
.x3f{left:59.265653pt;}
.xf{left:72.000000pt;}
.x10{left:73.770667pt;}
.x2e{left:76.309333pt;}
.x30{left:77.242667pt;}
.x3e{left:78.454933pt;}
.x5e{left:82.246667pt;}
.xe{left:85.284000pt;}
.x8f{left:89.785187pt;}
.x89{left:91.658439pt;}
.x15{left:93.322667pt;}
.x6a{left:94.918667pt;}
.x42{left:95.811467pt;}
.x94{left:96.778035pt;}
.x68{left:104.960000pt;}
.x1{left:106.751988pt;}
.x9b{left:109.756000pt;}
.x71{left:110.842667pt;}
.x55{left:112.538667pt;}
.x7{left:114.577333pt;}
.x72{left:119.552000pt;}
.x56{left:122.869333pt;}
.x41{left:125.586560pt;}
.x14{left:129.216000pt;}
.x97{left:132.524465pt;}
.x69{left:133.596000pt;}
.x98{left:136.120773pt;}
.x9{left:137.553333pt;}
.x5{left:139.150667pt;}
.x57{left:141.400000pt;}
.x3{left:142.426655pt;}
.xc{left:145.060000pt;}
.x6b{left:146.057333pt;}
.x31{left:149.626667pt;}
.x66{left:152.312000pt;}
.x9a{left:153.308000pt;}
.x2d{left:158.557333pt;}
.x76{left:161.931770pt;}
.x95{left:164.125660pt;}
.xd{left:165.764000pt;}
.x5f{left:167.941333pt;}
.x7e{left:169.562418pt;}
.x65{left:172.866667pt;}
.x7a{left:181.638475pt;}
.x60{left:186.470667pt;}
.x2a{left:193.340000pt;}
.x43{left:194.893600pt;}
.x5b{left:196.662667pt;}
.x61{left:199.461333pt;}
.x67{left:201.609333pt;}
.x16{left:204.649333pt;}
.x45{left:206.691467pt;}
.x58{left:207.878667pt;}
.x32{left:208.934667pt;}
.x2f{left:222.833333pt;}
.x44{left:227.625493pt;}
.x75{left:230.656255pt;}
.xa{left:232.305333pt;}
.x62{left:234.652000pt;}
.x4{left:236.546655pt;}
.x7f{left:239.326819pt;}
.x2b{left:241.210667pt;}
.x70{left:242.172000pt;}
.x47{left:243.651467pt;}
.x33{left:253.042667pt;}
.x63{left:255.298667pt;}
.x2c{left:260.904000pt;}
.x6c{left:264.209333pt;}
.x5c{left:267.698667pt;}
.x59{left:270.349333pt;}
.x46{left:273.426560pt;}
.x99{left:276.898431pt;}
.x64{left:282.161333pt;}
.x7d{left:284.631022pt;}
.x7b{left:286.746529pt;}
.x6{left:289.124000pt;}
.x5d{left:293.200000pt;}
.x5a{left:295.850667pt;}
.x6f{left:298.537333pt;}
.x96{left:304.450066pt;}
.x34{left:308.582667pt;}
.x35{left:328.132000pt;}
.x80{left:329.294667pt;}
.x36{left:335.153333pt;}
.xb{left:348.266667pt;}
.x37{left:349.396000pt;}
.x8a{left:357.250667pt;}
.x6d{left:369.496000pt;}
.x6e{left:375.160000pt;}
.x38{left:381.801333pt;}
.x8{left:386.462667pt;}
.x11{left:422.685333pt;}
.x82{left:425.341333pt;}
.x81{left:431.290667pt;}
.x1e{left:432.770667pt;}
.x12{left:435.968000pt;}
.x83{left:443.772000pt;}
.x9f{left:447.112000pt;}
.x4e{left:460.264000pt;}
.x24{left:468.289333pt;}
.x2{left:469.693321pt;}
.x4f{left:480.693333pt;}
.x28{left:482.056000pt;}
.x49{left:487.702667pt;}
.x18{left:490.389333pt;}
.x21{left:492.809333pt;}
.x8b{left:494.282667pt;}
.x48{left:499.146667pt;}
.x19{left:500.721333pt;}
.x1f{left:506.313333pt;}
.x4a{left:508.130667pt;}
.x25{left:517.754667pt;}
.xa0{left:518.932000pt;}
.x50{left:520.785333pt;}
.x26{left:527.584000pt;}
.x51{left:532.845333pt;}
.x85{left:533.836000pt;}
.x4b{left:544.940000pt;}
.x23{left:548.850667pt;}
.x27{left:554.185333pt;}
.x4c{left:562.497333pt;}
.x1a{left:569.142667pt;}
.x20{left:571.358667pt;}
.x22{left:576.702667pt;}
.x1b{left:584.404000pt;}
.x52{left:591.126667pt;}
.x1c{left:594.489333pt;}
.x8d{left:603.682667pt;}
.x9d{left:606.710667pt;}
.x53{left:613.376000pt;}
.x17{left:628.788000pt;}
.x9c{left:629.910667pt;}
.x29{left:630.841333pt;}
.x1d{left:634.720000pt;}
.x4d{left:646.060000pt;}
.x54{left:665.196000pt;}
.x8c{left:676.289333pt;}
.x9e{left:679.978667pt;}
.x84{left:718.133333pt;}
.x86{left:735.474667pt;}
.x13{left:742.817333pt;}
}




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