
    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_273f31632408876ad56afce1.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7f7069b415e4e63110522e6d.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_25f4508681e5ead0ade26fde.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.999000;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_fe3a669bf86eddddbd1cc871.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_1d25679591d8509302cb27a5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.696000;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_f08daa06ecac0bb97d0c20bb.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bcccb0fa4036b0bb17747eed.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_7eb66f6a4cc094f2227df990.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.922000;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_cce6136347cfb5e27b849866.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.635000;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_777b5dfb28d6c8c977a0e133.woff2')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_c13d22c850ec8b7d729b2d4f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8148ac906a0ec7cc78ceb791.woff2')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_431bdd5f6b1fc872a952cb8f.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_05c6a550e9c5fb54e1630dbd.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.569000;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_0bd495efcc18d781a8d603f9.woff2')format("woff");}.fff{font-family:fff;line-height:2.399000;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_86139d2e725df1778d346008.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_69c01c1bf85920a74f5f5bea.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.704200;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_ac2332334afd4a2636a0d072.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.912109;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_a4a5c151b86214d7c44da2b0.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.681641;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_3360b8b6dcb5735dff9f9d7a.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.929688;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_cf5eed4094cb9aa953b0c264.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_cdf2069e63ecde9675b924b6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.052000;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_95ba46e24d800f2594d99575.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_11119cc3c89f95744cfa8c17.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.929688;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_6a1700ada72ebeaddb64ce5f.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.681641;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_d80d64c54fbd609f7c64661f.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_005a94c9d34206412eb1d4ac.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.929199;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_6a1700ada72ebeaddb64ce5f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.681641;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_36e0a46a3fa40b21c4c49327.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_e71e6e5bf827231e9d8a756a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.239258;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_f92f90efd9e536434ace1660.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_ebb8f37721fb428ffcc4ec3f.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_8d6cd44fc45ce041d1cb10cb.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_f4507aa18e067538c9e7942f.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_4b99a8c9a5acc6b27ebaa82a.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.912109;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_3f695adabed6f9c54fb376eb.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.929688;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_c385de1eeb8ad90159ff5f44.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.882324;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_a4a924ffc8588bb8365753f1.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.912109;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_c385de1eeb8ad90159ff5f44.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.882324;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:ff28;src:url('chunks/assets/font_7d74f4be71ea3e3c73d3e675.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.707000;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:ff29;src:url('chunks/assets/font_f73653d1f7e83e23d1d658c3.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.969000;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:ff2a;src:url('chunks/assets/font_5a534b09290152307f4f2647.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.807000;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:ff2b;src:url('chunks/assets/font_50d04ca13df7939d8a831fac.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.628000;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:ff2c;src:url('chunks/assets/font_aa3f303c9833c286f1f243a4.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_b4cc4af4f2c2263987dbe140.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.441000;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:ff2e;src:url('chunks/assets/font_7d74f4be71ea3e3c73d3e675.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.707000;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:ff2f;src:url('chunks/assets/font_f73653d1f7e83e23d1d658c3.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.969000;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:ff30;src:url('chunks/assets/font_5a534b09290152307f4f2647.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.807000;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:ff31;src:url('chunks/assets/font_50d04ca13df7939d8a831fac.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.628000;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:ff32;src:url('chunks/assets/font_7d74f4be71ea3e3c73d3e675.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.707000;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:ff33;src:url('chunks/assets/font_f73653d1f7e83e23d1d658c3.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.969000;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:ff34;src:url('chunks/assets/font_5a534b09290152307f4f2647.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.807000;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:ff35;src:url('chunks/assets/font_50d04ca13df7939d8a831fac.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.628000;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;}
.md{transform:matrix(0.000000,-0.222013,0.238189,0.075933,0,0);-ms-transform:matrix(0.000000,-0.222013,0.238189,0.075933,0,0);-webkit-transform:matrix(0.000000,-0.222013,0.238189,0.075933,0,0);}
.mf{transform:matrix(0.000000,-0.230648,0.237228,0.078886,0,0);-ms-transform:matrix(0.000000,-0.230648,0.237228,0.078886,0,0);-webkit-transform:matrix(0.000000,-0.230648,0.237228,0.078886,0,0);}
.mc{transform:matrix(0.000000,-0.233023,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.233023,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.233023,0.250000,0.000000,0,0);}
.m7{transform:matrix(0.000000,-0.243066,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.243066,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.243066,0.250000,0.000000,0,0);}
.ma{transform:matrix(0.000000,-0.246727,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.246727,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.246727,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.000000,-0.249262,0.235015,0.085253,0,0);-ms-transform:matrix(0.000000,-0.249262,0.235015,0.085253,0,0);-webkit-transform:matrix(0.000000,-0.249262,0.235015,0.085253,0,0);}
.m10{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);}
.m4{transform:matrix(0.000000,-0.265155,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.265155,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.265155,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.265157,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.265157,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.265157,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.224327,0.000000,-0.076724,0.237936,0,0);-ms-transform:matrix(0.224327,0.000000,-0.076724,0.237936,0,0);-webkit-transform:matrix(0.224327,0.000000,-0.076724,0.237936,0,0);}
.m1{transform:matrix(0.235701,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235701,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235701,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.242553,0.000000,-0.082958,0.235835,0,0);-ms-transform:matrix(0.242553,0.000000,-0.082958,0.235835,0,0);-webkit-transform:matrix(0.242553,0.000000,-0.082958,0.235835,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);}
.me{transform:matrix(0.251790,0.000000,-0.086117,0.234699,0,0);-ms-transform:matrix(0.251790,0.000000,-0.086117,0.234699,0,0);-webkit-transform:matrix(0.251790,0.000000,-0.086117,0.234699,0,0);}
.m9{transform:matrix(0.253317,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253317,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253317,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.257121,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257121,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257121,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268204,0.000000,0.000000,0.250000,0,0);}
.v17{vertical-align:-84.282000px;}
.vf{vertical-align:-66.348000px;}
.v2{vertical-align:-22.854000px;}
.v1d{vertical-align:-17.934000px;}
.v4{vertical-align:-8.970000px;}
.v3{vertical-align:-5.976000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:5.808000px;}
.v24{vertical-align:7.919555px;}
.vc{vertical-align:11.646000px;}
.v5{vertical-align:12.786000px;}
.v11{vertical-align:14.778000px;}
.v1a{vertical-align:17.268000px;}
.v26{vertical-align:18.969216px;}
.vb{vertical-align:20.616000px;}
.v1{vertical-align:21.696000px;}
.v23{vertical-align:22.854000px;}
.v18{vertical-align:24.684000px;}
.v1b{vertical-align:32.034000px;}
.v13{vertical-align:37.788000px;}
.v19{vertical-align:40.440000px;}
.vd{vertical-align:42.306000px;}
.v12{vertical-align:43.770000px;}
.v1c{vertical-align:44.832000px;}
.v1f{vertical-align:46.224000px;}
.v9{vertical-align:48.420000px;}
.v7{vertical-align:50.670000px;}
.v25{vertical-align:56.784000px;}
.v1e{vertical-align:62.136000px;}
.v6{vertical-align:65.448000px;}
.va{vertical-align:66.456000px;}
.v20{vertical-align:67.914000px;}
.ve{vertical-align:81.126000px;}
.v15{vertical-align:86.532000px;}
.v14{vertical-align:98.916000px;}
.v8{vertical-align:102.216000px;}
.v22{vertical-align:107.586000px;}
.v16{vertical-align:116.850000px;}
.v21{vertical-align:122.364000px;}
.lse{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000300px;}
.ls3c{letter-spacing:0.000312px;}
.ls14{letter-spacing:0.000538px;}
.ls1b{letter-spacing:0.000544px;}
.ls71{letter-spacing:0.000557px;}
.ls15{letter-spacing:0.000564px;}
.ls5{letter-spacing:0.000780px;}
.ls78{letter-spacing:0.001002px;}
.ls60{letter-spacing:0.001084px;}
.ls3e{letter-spacing:0.001120px;}
.ls6d{letter-spacing:0.001185px;}
.ls94{letter-spacing:0.001301px;}
.ls5c{letter-spacing:0.001689px;}
.ls31{letter-spacing:0.002012px;}
.ls7e{letter-spacing:0.002056px;}
.ls81{letter-spacing:0.002108px;}
.ls9a{letter-spacing:0.002338px;}
.ls98{letter-spacing:0.002400px;}
.ls7c{letter-spacing:0.002481px;}
.ls87{letter-spacing:0.002854px;}
.ls52{letter-spacing:0.002877px;}
.ls34{letter-spacing:0.002891px;}
.ls50{letter-spacing:0.003031px;}
.ls22{letter-spacing:0.003269px;}
.ls6f{letter-spacing:0.003604px;}
.ls24{letter-spacing:0.004172px;}
.ls13{letter-spacing:0.004200px;}
.ls53{letter-spacing:0.005251px;}
.ls36{letter-spacing:0.005374px;}
.ls9{letter-spacing:0.040994px;}
.lsa{letter-spacing:0.221549px;}
.ls37{letter-spacing:1.499737px;}
.ls58{letter-spacing:1.661781px;}
.ls2f{letter-spacing:2.137689px;}
.ls5d{letter-spacing:2.143689px;}
.ls45{letter-spacing:2.146172px;}
.lsb3{letter-spacing:2.805967px;}
.ls0{letter-spacing:2.984525px;}
.ls3d{letter-spacing:2.985352px;}
.ls73{letter-spacing:2.985427px;}
.ls35{letter-spacing:2.985472px;}
.ls44{letter-spacing:2.986982px;}
.ls7d{letter-spacing:2.987870px;}
.ls3{letter-spacing:2.988532px;}
.ls57{letter-spacing:2.988775px;}
.ls7b{letter-spacing:2.989140px;}
.ls25{letter-spacing:2.989202px;}
.ls61{letter-spacing:2.989409px;}
.ls6{letter-spacing:2.990352px;}
.ls1{letter-spacing:2.990525px;}
.ls2e{letter-spacing:2.991352px;}
.ls4a{letter-spacing:2.992982px;}
.lsb4{letter-spacing:2.993543px;}
.ls59{letter-spacing:2.994775px;}
.ls4{letter-spacing:3.075809px;}
.ls6c{letter-spacing:3.150921px;}
.lsb{letter-spacing:3.156921px;}
.ls5e{letter-spacing:3.320172px;}
.ls5b{letter-spacing:3.326172px;}
.ls16{letter-spacing:3.449602px;}
.ls49{letter-spacing:3.800854px;}
.ls4f{letter-spacing:3.806854px;}
.ls93{letter-spacing:5.202985px;}
.ls2b{letter-spacing:6.437732px;}
.ls5a{letter-spacing:7.167269px;}
.lsb2{letter-spacing:7.848538px;}
.lsb1{letter-spacing:7.852200px;}
.ls96{letter-spacing:8.298312px;}
.lsf{letter-spacing:8.304065px;}
.lsa5{letter-spacing:8.304312px;}
.ls92{letter-spacing:8.942630px;}
.ls7f{letter-spacing:8.963870px;}
.ls8a{letter-spacing:9.956338px;}
.ls63{letter-spacing:9.966300px;}
.ls4c{letter-spacing:10.162982px;}
.ls4b{letter-spacing:11.931269px;}
.ls72{letter-spacing:12.282557px;}
.ls75{letter-spacing:12.283002px;}
.ls76{letter-spacing:12.288557px;}
.ls26{letter-spacing:12.950525px;}
.ls30{letter-spacing:12.951352px;}
.ls2a{letter-spacing:13.162438px;}
.ls47{letter-spacing:13.278538px;}
.ls46{letter-spacing:13.281269px;}
.ls21{letter-spacing:13.282893px;}
.ls2d{letter-spacing:13.284538px;}
.ls66{letter-spacing:13.287269px;}
.ls99{letter-spacing:13.296538px;}
.lsa1{letter-spacing:14.525549px;}
.ls91{letter-spacing:15.229571px;}
.ls65{letter-spacing:16.268525px;}
.ls4d{letter-spacing:16.270982px;}
.ls32{letter-spacing:16.275352px;}
.ls7{letter-spacing:16.501002px;}
.ls8{letter-spacing:16.501559px;}
.ls97{letter-spacing:16.599269px;}
.ls43{letter-spacing:16.602538px;}
.ls62{letter-spacing:16.617617px;}
.ls3f{letter-spacing:16.779352px;}
.ls29{letter-spacing:17.132525px;}
.ls5f{letter-spacing:17.133269px;}
.lsb6{letter-spacing:17.266994px;}
.ls10{letter-spacing:18.347549px;}
.ls42{letter-spacing:18.748172px;}
.lsa2{letter-spacing:18.995549px;}
.ls1a{letter-spacing:19.596538px;}
.ls55{letter-spacing:19.761352px;}
.lsb5{letter-spacing:19.803967px;}
.lsb7{letter-spacing:20.037967px;}
.ls54{letter-spacing:20.121472px;}
.ls3a{letter-spacing:20.233295px;}
.ls23{letter-spacing:20.355269px;}
.ls1f{letter-spacing:20.357023px;}
.ls20{letter-spacing:20.358538px;}
.ls33{letter-spacing:20.454538px;}
.lsd{letter-spacing:20.863024px;}
.lsad{letter-spacing:21.401549px;}
.ls70{letter-spacing:21.414532px;}
.ls68{letter-spacing:21.594300px;}
.ls89{letter-spacing:21.713306px;}
.ls69{letter-spacing:21.826641px;}
.ls83{letter-spacing:22.169306px;}
.ls51{letter-spacing:22.911352px;}
.ls2c{letter-spacing:23.445472px;}
.ls84{letter-spacing:23.999306px;}
.ls40{letter-spacing:24.129352px;}
.lsa3{letter-spacing:24.515549px;}
.ls56{letter-spacing:24.732775px;}
.ls9c{letter-spacing:24.905139px;}
.ls41{letter-spacing:25.204172px;}
.ls8b{letter-spacing:25.784525px;}
.ls11{letter-spacing:25.806921px;}
.ls9f{letter-spacing:25.883139px;}
.ls88{letter-spacing:25.975140px;}
.ls9e{letter-spacing:26.094538px;}
.ls82{letter-spacing:26.251140px;}
.ls8f{letter-spacing:26.304775px;}
.lsa7{letter-spacing:26.538538px;}
.lsa6{letter-spacing:26.541269px;}
.ls64{letter-spacing:26.560677px;}
.ls48{letter-spacing:26.566677px;}
.ls77{letter-spacing:26.898532px;}
.ls9b{letter-spacing:26.993549px;}
.lsa9{letter-spacing:27.317549px;}
.ls86{letter-spacing:27.350525px;}
.lsae{letter-spacing:27.438775px;}
.lsa4{letter-spacing:27.444921px;}
.ls85{letter-spacing:27.516921px;}
.ls2{letter-spacing:27.818525px;}
.lsb0{letter-spacing:28.811549px;}
.ls6b{letter-spacing:28.834583px;}
.lsa8{letter-spacing:28.874525px;}
.ls19{letter-spacing:29.027732px;}
.ls3b{letter-spacing:29.103411px;}
.lsaf{letter-spacing:29.142775px;}
.ls12{letter-spacing:29.388538px;}
.lsaa{letter-spacing:30.252921px;}
.ls9d{letter-spacing:30.585008px;}
.lsac{letter-spacing:31.578538px;}
.ls27{letter-spacing:32.005202px;}
.ls18{letter-spacing:32.400538px;}
.lsa0{letter-spacing:32.453139px;}
.ls6a{letter-spacing:32.627139px;}
.ls1e{letter-spacing:34.290538px;}
.ls1c{letter-spacing:34.423295px;}
.ls39{letter-spacing:34.960438px;}
.ls28{letter-spacing:36.775295px;}
.ls17{letter-spacing:37.248544px;}
.ls8c{letter-spacing:38.135139px;}
.lsab{letter-spacing:39.881139px;}
.ls1d{letter-spacing:43.721732px;}
.ls38{letter-spacing:47.769472px;}
.ls4e{letter-spacing:104.714338px;}
.ls67{letter-spacing:120.384775px;}
.ls8d{letter-spacing:144.233938px;}
.ls8e{letter-spacing:158.062323px;}
.ls95{letter-spacing:187.479808px;}
.ls90{letter-spacing:208.010577px;}
.ls79{letter-spacing:334.974532px;}
.ls74{letter-spacing:338.550532px;}
.ls80{letter-spacing:339.020338px;}
.ls6e{letter-spacing:352.374532px;}
.ls7a{letter-spacing:597.154298px;}
.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;}
}
.ws103{word-spacing:-169.384839px;}
.wsff{word-spacing:-156.173833px;}
.ws92{word-spacing:-59.775600px;}
.ws1cb{word-spacing:-55.293996px;}
.ws134{word-spacing:-47.654765px;}
.wsa3{word-spacing:-47.324343px;}
.ws4d{word-spacing:-38.937826px;}
.ws19{word-spacing:-36.071827px;}
.wsc5{word-spacing:-33.223278px;}
.wse4{word-spacing:-31.898477px;}
.ws8{word-spacing:-31.633157px;}
.ws95{word-spacing:-28.955301px;}
.ws123{word-spacing:-23.344802px;}
.ws22{word-spacing:-17.683534px;}
.wsc3{word-spacing:-17.505666px;}
.ws101{word-spacing:-16.922328px;}
.ws4{word-spacing:-16.605662px;}
.wse1{word-spacing:-16.047320px;}
.wsf0{word-spacing:-16.025196px;}
.wsd9{word-spacing:-15.359443px;}
.ws146{word-spacing:-14.111320px;}
.wsc2{word-spacing:-12.351482px;}
.ws100{word-spacing:-11.939895px;}
.wse0{word-spacing:-11.322516px;}
.wsee{word-spacing:-10.279996px;}
.wsba{word-spacing:-6.682912px;}
.wsb5{word-spacing:-6.639235px;}
.wsa1{word-spacing:-6.623136px;}
.ws89{word-spacing:-6.129306px;}
.ws113{word-spacing:-3.329369px;}
.wsc4{word-spacing:-3.275703px;}
.ws76{word-spacing:-3.156152px;}
.wsd8{word-spacing:-3.075439px;}
.wsdd{word-spacing:-3.069439px;}
.ws14b{word-spacing:-2.985811px;}
.ws15e{word-spacing:-2.878214px;}
.wsac{word-spacing:-2.797498px;}
.wsab{word-spacing:-2.796916px;}
.ws13f{word-spacing:-2.737722px;}
.ws1d5{word-spacing:-2.716819px;}
.ws15b{word-spacing:-2.609222px;}
.ws106{word-spacing:-2.498620px;}
.wsce{word-spacing:-2.438844px;}
.ws2c{word-spacing:-2.379069px;}
.ws120{word-spacing:-2.319293px;}
.ws72{word-spacing:-2.259518px;}
.ws1b6{word-spacing:-2.232634px;}
.ws55{word-spacing:-2.213835px;}
.ws56{word-spacing:-2.199742px;}
.wsfc{word-spacing:-2.080191px;}
.ws8b{word-spacing:-2.020415px;}
.ws187{word-spacing:-1.963642px;}
.wscb{word-spacing:-1.900864px;}
.ws175{word-spacing:-1.748448px;}
.ws8c{word-spacing:-1.721537px;}
.wsfb{word-spacing:-1.661762px;}
.ws105{word-spacing:-1.601986px;}
.wsa9{word-spacing:-1.593157px;}
.ws1e0{word-spacing:-1.587053px;}
.ws104{word-spacing:-1.542210px;}
.ws34{word-spacing:-1.482435px;}
.ws15f{word-spacing:-1.479456px;}
.ws153{word-spacing:-1.425658px;}
.wsa6{word-spacing:-1.422659px;}
.ws71{word-spacing:-1.362884px;}
.ws17a{word-spacing:-1.318061px;}
.ws15a{word-spacing:-1.264262px;}
.ws11a{word-spacing:-1.183557px;}
.ws171{word-spacing:-1.156666px;}
.ws13d{word-spacing:-1.123781px;}
.ws1b5{word-spacing:-1.049069px;}
.ws13b{word-spacing:-1.004230px;}
.ws1d6{word-spacing:-0.995270px;}
.ws1ab{word-spacing:-0.833875px;}
.ws2b{word-spacing:-0.824903px;}
.ws181{word-spacing:-0.807327px;}
.ws1a7{word-spacing:-0.780077px;}
.ws25{word-spacing:-0.765128px;}
.ws91{word-spacing:-0.705352px;}
.wsd3{word-spacing:-0.645576px;}
.ws115{word-spacing:-0.585801px;}
.ws1c8{word-spacing:-0.564883px;}
.ws108{word-spacing:-0.526025px;}
.ws35{word-spacing:-0.346698px;}
.ws6c{word-spacing:-0.286923px;}
.ws4c{word-spacing:-0.239684px;}
.ws4e{word-spacing:-0.227147px;}
.ws1{word-spacing:-0.071731px;}
.ws1eb{word-spacing:-0.057972px;}
.ws10a{word-spacing:-0.054198px;}
.wsd1{word-spacing:-0.047820px;}
.ws109{word-spacing:-0.047423px;}
.ws7{word-spacing:-0.041843px;}
.ws10b{word-spacing:-0.038478px;}
.wsdc{word-spacing:-0.035866px;}
.ws18d{word-spacing:-0.026899px;}
.wsb4{word-spacing:-0.021471px;}
.wsaa{word-spacing:-0.015471px;}
.ws51{word-spacing:0.000000px;}
.ws8a{word-spacing:0.011955px;}
.ws197{word-spacing:0.026899px;}
.wsd4{word-spacing:0.104476px;}
.ws49{word-spacing:0.131506px;}
.ws68{word-spacing:0.191282px;}
.ws149{word-spacing:0.295891px;}
.ws13c{word-spacing:0.310833px;}
.ws199{word-spacing:0.349690px;}
.ws15c{word-spacing:0.414248px;}
.ws74{word-spacing:0.430384px;}
.ws36{word-spacing:0.490160px;}
.ws6a{word-spacing:0.549936px;}
.ws8d{word-spacing:0.609711px;}
.ws86{word-spacing:0.669487px;}
.ws15{word-spacing:0.726278px;}
.ws12b{word-spacing:0.789038px;}
.ws1b7{word-spacing:0.790836px;}
.ws14a{word-spacing:0.833875px;}
.ws107{word-spacing:0.848814px;}
.ws18c{word-spacing:0.887674px;}
.wsc7{word-spacing:0.908589px;}
.wsd2{word-spacing:0.968365px;}
.ws39{word-spacing:1.028140px;}
.ws137{word-spacing:1.052007px;}
.ws148{word-spacing:1.102867px;}
.ws57{word-spacing:1.147692px;}
.ws1aa{word-spacing:1.167425px;}
.ws26{word-spacing:1.207467px;}
.ws182{word-spacing:1.221224px;}
.ws129{word-spacing:1.327018px;}
.ws168{word-spacing:1.425658px;}
.ws67{word-spacing:1.446570px;}
.ws160{word-spacing:1.490216px;}
.ws6f{word-spacing:1.506345px;}
.ws152{word-spacing:1.544014px;}
.ws114{word-spacing:1.566121px;}
.ws191{word-spacing:1.622870px;}
.ws194{word-spacing:1.640851px;}
.ws126{word-spacing:1.685672px;}
.ws1d4{word-spacing:1.694650px;}
.ws125{word-spacing:1.709338px;}
.ws7b{word-spacing:1.745448px;}
.ws1d9{word-spacing:1.802246px;}
.wsf8{word-spacing:1.805223px;}
.ws178{word-spacing:1.856045px;}
.ws140{word-spacing:1.864999px;}
.ws1d0{word-spacing:1.869786px;}
.ws1cf{word-spacing:1.888266px;}
.ws192{word-spacing:1.917928px;}
.wseb{word-spacing:1.924774px;}
.ws1d2{word-spacing:1.968394px;}
.ws6d{word-spacing:1.984550px;}
.ws1be{word-spacing:2.017440px;}
.ws1ec{word-spacing:2.028200px;}
.ws172{word-spacing:2.043898px;}
.ws131{word-spacing:2.044326px;}
.ws13{word-spacing:2.071238px;}
.ws1d7{word-spacing:2.081998px;}
.ws65{word-spacing:2.104101px;}
.ws12c{word-spacing:2.163877px;}
.ws12d{word-spacing:2.163892px;}
.ws1dc{word-spacing:2.189595px;}
.wsb8{word-spacing:2.283428px;}
.wsb7{word-spacing:2.310421px;}
.ws29{word-spacing:2.343204px;}
.ws40{word-spacing:2.402979px;}
.wsf3{word-spacing:2.522530px;}
.ws52{word-spacing:2.582306px;}
.ws150{word-spacing:2.609222px;}
.ws190{word-spacing:2.663021px;}
.ws4f{word-spacing:2.701857px;}
.ws17e{word-spacing:2.716819px;}
.ws136{word-spacing:2.761633px;}
.ws10e{word-spacing:2.816633px;}
.wse2{word-spacing:2.821408px;}
.ws46{word-spacing:2.881184px;}
.wsbd{word-spacing:2.940960px;}
.ws167{word-spacing:2.985811px;}
.ws21{word-spacing:3.039610px;}
.ws7f{word-spacing:3.060511px;}
.ws1e4{word-spacing:3.064986px;}
.ws18e{word-spacing:3.069692px;}
.ws147{word-spacing:3.093408px;}
.ws118{word-spacing:3.120286px;}
.ws166{word-spacing:3.147206px;}
.ws164{word-spacing:3.165060px;}
.ws2d{word-spacing:3.239838px;}
.ws1c{word-spacing:3.254803px;}
.ws3d{word-spacing:3.299613px;}
.ws1d1{word-spacing:3.308602px;}
.ws102{word-spacing:3.312979px;}
.wsb3{word-spacing:3.323042px;}
.wsb2{word-spacing:3.332477px;}
.ws97{word-spacing:3.359389px;}
.ws6e{word-spacing:3.419164px;}
.ws5d{word-spacing:3.478940px;}
.ws80{word-spacing:3.513036px;}
.ws180{word-spacing:3.523795px;}
.wsa7{word-spacing:3.538716px;}
.ws1e1{word-spacing:3.588353px;}
.ws1e8{word-spacing:3.631392px;}
.ws1a8{word-spacing:3.685190px;}
.wsfd{word-spacing:3.718042px;}
.ws195{word-spacing:3.738989px;}
.ws121{word-spacing:3.777818px;}
.ws1ce{word-spacing:3.792787px;}
.ws13e{word-spacing:3.837594px;}
.ws127{word-spacing:3.897369px;}
.ws1c0{word-spacing:3.900384px;}
.ws1cc{word-spacing:3.948382px;}
.ws3c{word-spacing:3.957145px;}
.ws17{word-spacing:4.007981px;}
.ws5a{word-spacing:4.016920px;}
.ws1b8{word-spacing:4.061779px;}
.ws81{word-spacing:4.076696px;}
.ws20{word-spacing:4.115578px;}
.ws116{word-spacing:4.136472px;}
.ws77{word-spacing:4.196247px;}
.ws75{word-spacing:4.256023px;}
.ws1b9{word-spacing:4.276973px;}
.ws193{word-spacing:4.341531px;}
.ws32{word-spacing:4.375574px;}
.ws1d3{word-spacing:4.395329px;}
.wsb1{word-spacing:4.435350px;}
.ws38{word-spacing:4.495125px;}
.wsad{word-spacing:4.550477px;}
.wsae{word-spacing:4.554901px;}
.ws1f{word-spacing:4.599763px;}
.ws177{word-spacing:4.610523px;}
.ws48{word-spacing:4.614676px;}
.ws1e{word-spacing:4.653562px;}
.ws19e{word-spacing:4.707360px;}
.ws98{word-spacing:4.734228px;}
.ws7e{word-spacing:4.794003px;}
.ws18a{word-spacing:4.814957px;}
.ws24{word-spacing:4.853779px;}
.ws188{word-spacing:4.868755px;}
.ws7d{word-spacing:4.973330px;}
.ws155{word-spacing:4.976352px;}
.wsc6{word-spacing:4.992421px;}
.ws119{word-spacing:5.033106px;}
.ws1ca{word-spacing:5.083949px;}
.wsb0{word-spacing:5.092881px;}
.ws42{word-spacing:5.152657px;}
.ws151{word-spacing:5.245344px;}
.ws17f{word-spacing:5.309902px;}
.ws6b{word-spacing:5.391759px;}
.ws1df{word-spacing:5.406739px;}
.ws3f{word-spacing:5.451535px;}
.ws1c9{word-spacing:5.460538px;}
.ws11b{word-spacing:5.511310px;}
.ws1c2{word-spacing:5.568134px;}
.wse6{word-spacing:5.571086px;}
.ws16b{word-spacing:5.632692px;}
.ws186{word-spacing:5.686491px;}
.ws117{word-spacing:5.690637px;}
.ws165{word-spacing:5.740289px;}
.ws5f{word-spacing:5.750413px;}
.ws1ba{word-spacing:5.783328px;}
.ws44{word-spacing:5.869964px;}
.ws11d{word-spacing:5.929740px;}
.ws18b{word-spacing:5.944723px;}
.ws9f{word-spacing:5.989515px;}
.ws1b2{word-spacing:5.998522px;}
.ws73{word-spacing:6.049291px;}
.ws62{word-spacing:6.109066px;}
.ws198{word-spacing:6.159917px;}
.ws41{word-spacing:6.168842px;}
.wsf6{word-spacing:6.193481px;}
.ws1a9{word-spacing:6.224475px;}
.ws7a{word-spacing:6.228618px;}
.ws1da{word-spacing:6.267514px;}
.ws1cd{word-spacing:6.332072px;}
.wscc{word-spacing:6.340643px;}
.wsaf{word-spacing:6.348169px;}
.wse9{word-spacing:6.358035px;}
.wsea{word-spacing:6.384684px;}
.ws9e{word-spacing:6.407944px;}
.ws1bf{word-spacing:6.439668px;}
.ws58{word-spacing:6.467720px;}
.ws139{word-spacing:6.502733px;}
.ws11c{word-spacing:6.527496px;}
.wsfe{word-spacing:6.587271px;}
.wsc0{word-spacing:6.647047px;}
.wse5{word-spacing:6.660421px;}
.ws63{word-spacing:6.706822px;}
.ws176{word-spacing:6.751699px;}
.wsc8{word-spacing:6.763202px;}
.wsc9{word-spacing:6.766598px;}
.ws5b{word-spacing:6.826374px;}
.ws45{word-spacing:6.886149px;}
.ws93{word-spacing:6.945925px;}
.ws135{word-spacing:7.005700px;}
.ws185{word-spacing:7.031451px;}
.ws4b{word-spacing:7.065476px;}
.ws3a{word-spacing:7.125252px;}
.ws162{word-spacing:7.182086px;}
.ws43{word-spacing:7.185027px;}
.ws1a4{word-spacing:7.235885px;}
.ws189{word-spacing:7.246644px;}
.ws1b{word-spacing:7.289683px;}
.ws2a{word-spacing:7.304578px;}
.ws1a{word-spacing:7.343482px;}
.wse7{word-spacing:7.364354px;}
.ws2f{word-spacing:7.424130px;}
.ws3b{word-spacing:7.483905px;}
.ws16{word-spacing:7.558675px;}
.ws12e{word-spacing:7.663232px;}
.ws12f{word-spacing:7.683892px;}
.wscd{word-spacing:7.723008px;}
.ws17b{word-spacing:7.827667px;}
.ws128{word-spacing:7.842559px;}
.ws112{word-spacing:7.902334px;}
.ws111{word-spacing:7.935807px;}
.ws82{word-spacing:7.962110px;}
.ws1b4{word-spacing:7.989062px;}
.ws2{word-spacing:8.081661px;}
.ws5{word-spacing:8.201212px;}
.ws14{word-spacing:8.204256px;}
.ws1c7{word-spacing:8.258054px;}
.ws6{word-spacing:8.260988px;}
.ws16d{word-spacing:8.311853px;}
.ws37{word-spacing:8.320764px;}
.ws69{word-spacing:8.380539px;}
.ws9d{word-spacing:8.440315px;}
.ws12{word-spacing:8.484008px;}
.ws8e{word-spacing:8.500090px;}
.ws33{word-spacing:8.559866px;}
.wsd7{word-spacing:8.580845px;}
.ws1de{word-spacing:8.634643px;}
.wsf7{word-spacing:8.679417px;}
.ws18{word-spacing:8.742240px;}
.ws28{word-spacing:8.798968px;}
.ws15d{word-spacing:8.903635px;}
.ws1c3{word-spacing:8.957434px;}
.ws17c{word-spacing:9.014116px;}
.ws124{word-spacing:9.015807px;}
.ws9a{word-spacing:9.038071px;}
.ws59{word-spacing:9.097846px;}
.ws4a{word-spacing:9.217398px;}
.ws130{word-spacing:9.274822px;}
.ws3{word-spacing:9.277173px;}
.wsbf{word-spacing:9.376015px;}
.ws1d{word-spacing:9.387821px;}
.wsa2{word-spacing:9.396724px;}
.ws163{word-spacing:9.441619px;}
.ws1a5{word-spacing:9.452379px;}
.wsfa{word-spacing:9.456500px;}
.ws13a{word-spacing:9.516276px;}
.ws18f{word-spacing:9.559976px;}
.ws31{word-spacing:9.576051px;}
.ws79{word-spacing:9.635827px;}
.wsca{word-spacing:9.755378px;}
.ws14e{word-spacing:9.764410px;}
.ws1dd{word-spacing:9.775169px;}
.ws30{word-spacing:9.815154px;}
.ws14c{word-spacing:9.925805px;}
.ws70{word-spacing:9.934705px;}
.wsf5{word-spacing:9.958619px;}
.wsf4{word-spacing:9.964924px;}
.ws17d{word-spacing:9.990363px;}
.ws64{word-spacing:9.994480px;}
.ws184{word-spacing:10.033402px;}
.ws138{word-spacing:10.054256px;}
.ws7c{word-spacing:10.114032px;}
.wsd{word-spacing:10.151758px;}
.ws122{word-spacing:10.173807px;}
.ws10{word-spacing:10.205556px;}
.wsb9{word-spacing:10.233583px;}
.ws9c{word-spacing:10.293358px;}
.ws1c4{word-spacing:10.302394px;}
.ws2e{word-spacing:10.353134px;}
.ws11{word-spacing:10.366952px;}
.ws1c6{word-spacing:10.420750px;}
.ws132{word-spacing:10.472685px;}
.ws133{word-spacing:10.485892px;}
.ws94{word-spacing:10.532461px;}
.ws19c{word-spacing:10.571386px;}
.ws1a6{word-spacing:10.625184px;}
.ws83{word-spacing:10.771563px;}
.ws1bb{word-spacing:10.786579px;}
.ws154{word-spacing:10.894176px;}
.ws5c{word-spacing:10.950890px;}
.ws66{word-spacing:11.010666px;}
.wscf{word-spacing:11.070441px;}
.wsb{word-spacing:11.227726px;}
.ws85{word-spacing:11.249768px;}
.ws99{word-spacing:11.309544px;}
.ws8f{word-spacing:11.488870px;}
.ws1e2{word-spacing:11.593555px;}
.wsbe{word-spacing:11.608422px;}
.ws27{word-spacing:11.668197px;}
.ws16e{word-spacing:11.701152px;}
.ws14d{word-spacing:11.765710px;}
.ws90{word-spacing:11.787748px;}
.ws50{word-spacing:11.847524px;}
.ws11e{word-spacing:11.967075px;}
.wsc{word-spacing:12.088500px;}
.ws183{word-spacing:12.185338px;}
.ws1c5{word-spacing:12.303694px;}
.ws96{word-spacing:12.325729px;}
.ws47{word-spacing:12.385504px;}
.ws156{word-spacing:12.400531px;}
.ws78{word-spacing:12.445280px;}
.wsa8{word-spacing:12.505056px;}
.ws19d{word-spacing:12.572686px;}
.ws1bc{word-spacing:12.734081px;}
.wsa0{word-spacing:12.744158px;}
.ws3e{word-spacing:12.803934px;}
.wsa4{word-spacing:12.908547px;}
.ws169{word-spacing:12.992314px;}
.ws9b{word-spacing:13.043036px;}
.ws5e{word-spacing:13.102812px;}
.wsf9{word-spacing:13.222363px;}
.wse{word-spacing:13.272065px;}
.ws173{word-spacing:13.476499px;}
.ws16f{word-spacing:13.594856px;}
.ws143{word-spacing:13.853088px;}
.wsa{word-spacing:13.917646px;}
.ws61{word-spacing:13.939670px;}
.wsf{word-spacing:14.025243px;}
.ws12a{word-spacing:14.059221px;}
.ws9{word-spacing:14.079041px;}
.ws1ea{word-spacing:14.175878px;}
.ws157{word-spacing:14.186638px;}
.ws1e9{word-spacing:14.229677px;}
.ws1e6{word-spacing:14.283475px;}
.ws16c{word-spacing:14.552467px;}
.ws1e5{word-spacing:14.767661px;}
.ws60{word-spacing:14.776528px;}
.ws16a{word-spacing:14.778420px;}
.ws1bd{word-spacing:14.821459px;}
.ws158{word-spacing:14.929056px;}
.ws1b3{word-spacing:14.982854px;}
.ws1db{word-spacing:14.993614px;}
.ws23{word-spacing:15.194958px;}
.ws159{word-spacing:15.198048px;}
.ws174{word-spacing:15.208808px;}
.ws170{word-spacing:15.305645px;}
.ws54{word-spacing:15.314509px;}
.ws84{word-spacing:15.493836px;}
.ws1e7{word-spacing:15.961985px;}
.ws1b1{word-spacing:16.112621px;}
.ws19f{word-spacing:16.274016px;}
.ws144{word-spacing:16.435411px;}
.ws53{word-spacing:16.510021px;}
.ws1a2{word-spacing:16.553768px;}
.ws1a3{word-spacing:16.865798px;}
.ws1d8{word-spacing:17.457581px;}
.ws1c1{word-spacing:17.511379px;}
.ws1e3{word-spacing:17.565178px;}
.ws1ad{word-spacing:17.618976px;}
.ws1b0{word-spacing:17.629736px;}
.ws1a1{word-spacing:17.891453px;}
.ws145{word-spacing:17.898728px;}
.ws196{word-spacing:17.941766px;}
.ws179{word-spacing:18.049363px;}
.ws161{word-spacing:18.210758px;}
.wsa5{word-spacing:18.363064px;}
.ws1ac{word-spacing:18.641146px;}
.ws1af{word-spacing:19.395082px;}
.ws19b{word-spacing:19.501920px;}
.ws1a0{word-spacing:20.093702px;}
.ws88{word-spacing:20.096557px;}
.ws11f{word-spacing:20.275884px;}
.wsd0{word-spacing:20.280089px;}
.ws1ae{word-spacing:20.362694px;}
.ws14f{word-spacing:20.524090px;}
.ws87{word-spacing:20.634537px;}
.ws141{word-spacing:21.949600px;}
.ws19a{word-spacing:22.299437px;}
.wsbc{word-spacing:22.427805px;}
.wsed{word-spacing:22.976583px;}
.wse8{word-spacing:23.267958px;}
.wsf1{word-spacing:23.281405px;}
.wsdb{word-spacing:26.549510px;}
.ws10d{word-spacing:26.611100px;}
.ws0{word-spacing:26.827469px;}
.wsf2{word-spacing:32.469877px;}
.wsec{word-spacing:34.273282px;}
.ws142{word-spacing:35.100232px;}
.wsef{word-spacing:35.185837px;}
.ws110{word-spacing:35.328187px;}
.wsdf{word-spacing:58.877083px;}
.wsd6{word-spacing:63.831802px;}
.wse3{word-spacing:67.029294px;}
.wsbb{word-spacing:120.376344px;}
.wsd5{word-spacing:135.598867px;}
.wsb6{word-spacing:145.087543px;}
.wsc1{word-spacing:147.723723px;}
.wsde{word-spacing:149.425056px;}
.wsda{word-spacing:163.251245px;}
.ws10f{word-spacing:163.986667px;}
.ws10c{word-spacing:244.668054px;}
._3d{margin-left:-157.609422px;}
._3c{margin-left:-144.233938px;}
._21{margin-left:-34.339800px;}
._26{margin-left:-33.271800px;}
._4d{margin-left:-28.776144px;}
._4{margin-left:-27.664133px;}
._4a{margin-left:-25.697702px;}
._b{margin-left:-22.601339px;}
._5{margin-left:-4.961375px;}
._6{margin-left:-3.425165px;}
._0{margin-left:-2.223667px;}
._3{margin-left:-1.125690px;}
._10{width:1.123766px;}
._1{width:2.223667px;}
._d{width:3.347434px;}
._19{width:4.418280px;}
._25{width:5.526995px;}
._16{width:8.322901px;}
._4b{width:12.573243px;}
._49{width:13.837590px;}
._17{width:15.407196px;}
._11{width:16.689362px;}
._12{width:18.661957px;}
._3a{width:19.688098px;}
._3b{width:21.102424px;}
._9{width:22.774656px;}
._c{width:24.209280px;}
._2{width:25.873861px;}
._8{width:27.419251px;}
._a{width:29.098924px;}
._7{width:30.916147px;}
._3e{width:32.099497px;}
._4c{width:33.151736px;}
._14{width:34.191643px;}
._13{width:35.269528px;}
._1b{width:36.821770px;}
._f{width:38.980808px;}
._46{width:40.408306px;}
._e{width:42.488482px;}
._47{width:44.366934px;}
._1f{width:45.481480px;}
._1a{width:46.744519px;}
._18{width:49.434421px;}
._1d{width:51.169838px;}
._3f{width:52.289756px;}
._1c{width:53.319835px;}
._20{width:54.598737px;}
._1e{width:55.770635px;}
._35{width:63.295229px;}
._15{width:66.111814px;}
._36{width:70.986496px;}
._22{width:75.079880px;}
._2f{width:77.792486px;}
._28{width:87.368602px;}
._29{width:104.990813px;}
._30{width:109.425946px;}
._39{width:117.937541px;}
._48{width:121.824597px;}
._31{width:123.305933px;}
._2d{width:128.900966px;}
._38{width:135.108524px;}
._27{width:136.419553px;}
._2e{width:145.578470px;}
._33{width:150.904512px;}
._37{width:152.731375px;}
._2a{width:164.730701px;}
._42{width:167.495969px;}
._24{width:171.932627px;}
._43{width:175.198043px;}
._2b{width:178.610688px;}
._23{width:184.284109px;}
._32{width:186.962630px;}
._45{width:188.678734px;}
._2c{width:192.329280px;}
._41{width:194.459354px;}
._34{width:202.751531px;}
._44{width:219.101885px;}
._40{width:249.538870px;}
.fc7{color:rgb(255,0,0);}
.fc8{color:rgb(0,128,0);}
.fc6{color:rgb(0,128,0);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(128,0,128);}
.fc9{color:transparent;}
.fc3{color:rgb(128,128,0);}
.fc2{color:rgb(0,128,128);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,0);}
.fs16{font-size:18.772373px;}
.fs15{font-size:27.112078px;}
.fs5{font-size:29.887800px;}
.fsd{font-size:30.010390px;}
.fsf{font-size:31.898477px;}
.fs1d{font-size:32.035996px;}
.fs7{font-size:33.097595px;}
.fs3{font-size:35.865600px;}
.fs1e{font-size:36.406740px;}
.fs25{font-size:37.968722px;}
.fs2a{font-size:38.478292px;}
.fs27{font-size:38.479601px;}
.fs9{font-size:39.577071px;}
.fs23{font-size:40.577767px;}
.fs14{font-size:41.119985px;}
.fs2{font-size:41.842800px;}
.fsb{font-size:41.976545px;}
.fs21{font-size:43.534043px;}
.fse{font-size:45.290064px;}
.fs28{font-size:47.423040px;}
.fs1c{font-size:47.759582px;}
.fs2b{font-size:47.820600px;}
.fs6{font-size:49.405927px;}
.fs4{font-size:53.798400px;}
.fs29{font-size:54.197760px;}
.fs10{font-size:59.678777px;}
.fs1{font-size:59.775600px;}
.fs12{font-size:61.508863px;}
.fs1b{font-size:61.905912px;}
.fs26{font-size:62.891886px;}
.fs8{font-size:63.484040px;}
.fs18{font-size:64.100785px;}
.fs11{font-size:64.189281px;}
.fs19{font-size:64.617120px;}
.fs22{font-size:65.176473px;}
.fs1f{font-size:65.645547px;}
.fsa{font-size:66.506175px;}
.fs24{font-size:67.689311px;}
.fs13{font-size:68.683932px;}
.fs20{font-size:68.900584px;}
.fs1a{font-size:69.587668px;}
.fs17{font-size:69.595138px;}
.fsc{font-size:70.022664px;}
.fs0{font-size:71.731200px;}
.y0{bottom:0.000000px;}
.y190{bottom:0.042496px;}
.y179{bottom:0.944513px;}
.yf2{bottom:2.262677px;}
.y13a{bottom:3.582665px;}
.y194{bottom:4.006928px;}
.y1ae{bottom:4.664658px;}
.y151{bottom:4.747756px;}
.y1a1{bottom:5.184128px;}
.y1a7{bottom:5.244469px;}
.y129{bottom:7.448160px;}
.y178{bottom:7.506311px;}
.yf1{bottom:9.050670px;}
.y193{bottom:10.229433px;}
.y181{bottom:25.220018px;}
.y1ad{bottom:25.835658px;}
.y145{bottom:25.985550px;}
.y1a0{bottom:26.355128px;}
.y1a6{bottom:26.415469px;}
.y12e{bottom:26.634220px;}
.y11f{bottom:26.822785px;}
.y169{bottom:28.185920px;}
.ye8{bottom:29.157531px;}
.y182{bottom:34.270928px;}
.y120{bottom:35.873695px;}
.y16a{bottom:37.730346px;}
.ye9{bottom:43.813421px;}
.y19f{bottom:52.163130px;}
.y146{bottom:52.193893px;}
.y1ac{bottom:61.232163px;}
.y12f{bottom:61.282260px;}
.y183{bottom:70.380320px;}
.y1a5{bottom:70.757200px;}
.y19e{bottom:72.487290px;}
.y16b{bottom:75.709241px;}
.y147{bottom:79.193004px;}
.y1ab{bottom:81.556323px;}
.y121{bottom:87.586491px;}
.yea{bottom:91.740774px;}
.y19d{bottom:92.811450px;}
.y1af{bottom:99.295509px;}
.y1a8{bottom:100.008835px;}
.y1a2{bottom:101.248924px;}
.y36{bottom:102.664500px;}
.y150{bottom:103.029040px;}
.yae{bottom:105.652500px;}
.y84{bottom:105.654000px;}
.y148{bottom:106.192115px;}
.y275{bottom:106.399500px;}
.y184{bottom:106.442571px;}
.y130{bottom:112.429379px;}
.y16c{bottom:113.688146px;}
.yef{bottom:118.068044px;}
.y18e{bottom:118.086206px;}
.y175{bottom:118.861666px;}
.y35{bottom:120.597000px;}
.y237{bottom:121.344000px;}
.y192{bottom:121.576184px;}
.y139{bottom:121.810166px;}
.y274{bottom:122.091000px;}
.y14e{bottom:122.459362px;}
.y128{bottom:122.985939px;}
.yad{bottom:123.585000px;}
.y83{bottom:123.586500px;}
.yf0{bottom:128.920072px;}
.y174{bottom:129.248121px;}
.y18d{bottom:129.588409px;}
.y176{bottom:130.789915px;}
.y149{bottom:133.191227px;}
.y152{bottom:133.530128px;}
.yee{bottom:133.703500px;}
.y14f{bottom:134.320897px;}
.y236{bottom:137.035500px;}
.y273{bottom:137.782500px;}
.y34{bottom:138.529500px;}
.y122{bottom:139.299296px;}
.yeb{bottom:139.668126px;}
.y18c{bottom:141.090620px;}
.y177{bottom:141.277127px;}
.y82{bottom:141.519000px;}
.y185{bottom:142.551964px;}
.y13b{bottom:149.010175px;}
.y16d{bottom:151.667042px;}
.y18b{bottom:152.592831px;}
.y235{bottom:152.727000px;}
.y272{bottom:153.474000px;}
.y127{bottom:153.771336px;}
.y4c{bottom:156.462000px;}
.y33{bottom:156.463500px;}
.y81{bottom:159.451500px;}
.y14a{bottom:160.303305px;}
.y1e1{bottom:163.242000px;}
.y126{bottom:163.576497px;}
.y18a{bottom:164.095038px;}
.y138{bottom:165.744947px;}
.y234{bottom:168.418500px;}
.y271{bottom:169.164000px;}
.y134{bottom:170.223265px;}
.y137{bottom:172.438856px;}
.y125{bottom:173.381659px;}
.y32{bottom:174.396000px;}
.y189{bottom:175.597249px;}
.y80{bottom:177.384000px;}
.ye6{bottom:177.385500px;}
.y186{bottom:178.614219px;}
.y173{bottom:178.659899px;}
.y1e0{bottom:178.932000px;}
.y136{bottom:180.876951px;}
.y124{bottom:183.186820px;}
.y233{bottom:184.108500px;}
.y14d{bottom:184.139341px;}
.y270{bottom:184.855500px;}
.y143{bottom:186.952500px;}
.y188{bottom:187.099456px;}
.y14b{bottom:187.302416px;}
.yec{bottom:187.544059px;}
.y172{bottom:188.502600px;}
.y16e{bottom:189.645942px;}
.y123{bottom:191.012093px;}
.y31{bottom:192.328500px;}
.yf6{bottom:194.383477px;}
.y153{bottom:195.097139px;}
.y7f{bottom:195.316500px;}
.ye5{bottom:195.318000px;}
.y1b7{bottom:196.593000px;}
.y171{bottom:198.345297px;}
.y4b{bottom:198.492000px;}
.y187{bottom:198.601665px;}
.y116{bottom:199.399500px;}
.y232{bottom:199.800000px;}
.y26f{bottom:200.547000px;}
.y135{bottom:203.032844px;}
.yf5{bottom:203.588409px;}
.y133{bottom:203.787087px;}
.y132{bottom:204.164208px;}
.y142{bottom:204.585000px;}
.y170{bottom:208.187996px;}
.y30{bottom:210.261000px;}
.yf4{bottom:212.793345px;}
.yac{bottom:213.249000px;}
.y7e{bottom:213.250500px;}
.y14c{bottom:214.301528px;}
.y1b6{bottom:214.525500px;}
.y131{bottom:214.723614px;}
.y231{bottom:215.491500px;}
.y26e{bottom:216.238500px;}
.y4a{bottom:216.424500px;}
.yf3{bottom:221.998274px;}
.ye4{bottom:226.773000px;}
.y16f{bottom:227.624841px;}
.y2f{bottom:228.193500px;}
.ye3{bottom:230.139000px;}
.y1df{bottom:231.093000px;}
.y7d{bottom:231.183000px;}
.y26d{bottom:231.930000px;}
.y1b5{bottom:232.458000px;}
.y49{bottom:234.358500px;}
.yed{bottom:235.471415px;}
.y115{bottom:237.105000px;}
.y141{bottom:238.987500px;}
.ye1{bottom:240.390000px;}
.y2e{bottom:246.126000px;}
.y230{bottom:246.874500px;}
.y26c{bottom:247.620000px;}
.ye2{bottom:248.251500px;}
.y1de{bottom:249.027000px;}
.y7c{bottom:249.115500px;}
.y48{bottom:252.291000px;}
.y140{bottom:256.920000px;}
.y22f{bottom:262.564500px;}
.y26b{bottom:263.311500px;}
.y2d{bottom:264.060000px;}
.y1dd{bottom:266.959500px;}
.y7b{bottom:267.048000px;}
.y47{bottom:270.223500px;}
.y22e{bottom:278.256000px;}
.y26a{bottom:279.003000px;}
.y2c{bottom:281.992500px;}
.y1dc{bottom:284.892000px;}
.yab{bottom:284.980500px;}
.y19b{bottom:284.982000px;}
.y7a{bottom:285.976500px;}
.ye0{bottom:287.184000px;}
.y46{bottom:288.156000px;}
.y1b4{bottom:288.208500px;}
.y114{bottom:290.815500px;}
.y167{bottom:293.478000px;}
.y22d{bottom:293.947500px;}
.y269{bottom:294.694500px;}
.y2b{bottom:299.925000px;}
.y1db{bottom:302.824500px;}
.yaa{bottom:302.913000px;}
.y202{bottom:302.914500px;}
.y79{bottom:303.910500px;}
.ydf{bottom:305.116500px;}
.y45{bottom:306.088500px;}
.y1b3{bottom:306.142500px;}
.y113{bottom:308.748000px;}
.y13f{bottom:309.472500px;}
.y22c{bottom:309.639000px;}
.y268{bottom:310.384500px;}
.y166{bottom:311.410500px;}
.y2a{bottom:317.857500px;}
.y1da{bottom:320.757000px;}
.y201{bottom:320.847000px;}
.y78{bottom:321.843000px;}
.yde{bottom:323.049000px;}
.y44{bottom:324.022500px;}
.y1b2{bottom:324.075000px;}
.y22b{bottom:325.329000px;}
.y19a{bottom:326.044500px;}
.y267{bottom:326.076000px;}
.y112{bottom:326.680500px;}
.y13e{bottom:327.406500px;}
.y165{bottom:329.343000px;}
.y29{bottom:335.790000px;}
.y1d9{bottom:338.691000px;}
.y200{bottom:338.779500px;}
.y77{bottom:339.775500px;}
.y22a{bottom:341.020500px;}
.y266{bottom:341.767500px;}
.y43{bottom:341.955000px;}
.y1b1{bottom:342.007500px;}
.ydd{bottom:342.846000px;}
.ya9{bottom:343.920000px;}
.y111{bottom:344.613000px;}
.y13d{bottom:345.339000px;}
.y164{bottom:347.275500px;}
.y28{bottom:353.722500px;}
.y1d8{bottom:356.623500px;}
.y1ff{bottom:356.712000px;}
.y265{bottom:357.459000px;}
.y76{bottom:357.708000px;}
.y42{bottom:359.887500px;}
.ydc{bottom:360.778500px;}
.y110{bottom:362.547000px;}
.y13c{bottom:363.271500px;}
.y163{bottom:365.208000px;}
.y27{bottom:371.656500px;}
.y229{bottom:372.403500px;}
.y264{bottom:373.150500px;}
.y1b0{bottom:373.764000px;}
.y1d7{bottom:374.556000px;}
.y1fe{bottom:374.644500px;}
.y75{bottom:375.640500px;}
.y41{bottom:377.820000px;}
.y10f{bottom:380.479500px;}
.y199{bottom:382.986000px;}
.y162{bottom:383.140500px;}
.y228{bottom:388.095000px;}
.y263{bottom:388.840500px;}
.y26{bottom:389.589000px;}
.y1aa{bottom:389.679000px;}
.y12d{bottom:390.768000px;}
.y1d6{bottom:392.488500px;}
.y1fd{bottom:392.577000px;}
.y74{bottom:393.574500px;}
.ydb{bottom:394.189500px;}
.yd9{bottom:394.518000px;}
.y40{bottom:395.752500px;}
.yda{bottom:397.882500px;}
.y10e{bottom:398.412000px;}
.y198{bottom:400.918500px;}
.y161{bottom:401.074500px;}
.ya8{bottom:403.251000px;}
.y227{bottom:403.785000px;}
.y262{bottom:404.532000px;}
.y25{bottom:407.521500px;}
.yd8{bottom:408.133500px;}
.y1d5{bottom:410.421000px;}
.y1fc{bottom:410.511000px;}
.y73{bottom:411.507000px;}
.y3f{bottom:413.685000px;}
.y10d{bottom:416.344500px;}
.y197{bottom:418.851000px;}
.y160{bottom:419.007000px;}
.y226{bottom:419.476500px;}
.y261{bottom:420.223500px;}
.ya7{bottom:421.185000px;}
.y24{bottom:425.454000px;}
.y1d4{bottom:428.353500px;}
.y1fb{bottom:428.443500px;}
.y72{bottom:429.439500px;}
.y3e{bottom:431.619000px;}
.y10c{bottom:434.277000px;}
.y225{bottom:435.168000px;}
.y260{bottom:435.915000px;}
.y196{bottom:436.783500px;}
.y15f{bottom:436.939500px;}
.ya6{bottom:439.117500px;}
.y23{bottom:443.386500px;}
.y1d3{bottom:446.287500px;}
.y1fa{bottom:446.376000px;}
.y71{bottom:447.372000px;}
.y3d{bottom:449.551500px;}
.y224{bottom:450.859500px;}
.y25f{bottom:451.605000px;}
.y10b{bottom:452.209500px;}
.yd7{bottom:454.312500px;}
.y195{bottom:454.716000px;}
.y15e{bottom:454.872000px;}
.ya5{bottom:457.050000px;}
.y22{bottom:461.319000px;}
.y1d2{bottom:464.220000px;}
.y1f9{bottom:464.308500px;}
.y70{bottom:465.304500px;}
.y223{bottom:466.549500px;}
.y25e{bottom:467.296500px;}
.y10a{bottom:470.898000px;}
.yd6{bottom:472.245000px;}
.y15d{bottom:472.804500px;}
.y3c{bottom:473.649000px;}
.ya4{bottom:474.982500px;}
.y21{bottom:479.253000px;}
.y1d1{bottom:482.152500px;}
.y180{bottom:482.214000px;}
.y1f8{bottom:482.241000px;}
.y25d{bottom:482.988000px;}
.y6f{bottom:484.234500px;}
.y109{bottom:488.830500px;}
.yd5{bottom:490.177500px;}
.y3b{bottom:491.581500px;}
.ya3{bottom:492.915000px;}
.y20{bottom:497.185500px;}
.y222{bottom:497.932500px;}
.y25c{bottom:498.679500px;}
.y1d0{bottom:500.085000px;}
.y1f7{bottom:500.173500px;}
.y6e{bottom:502.167000px;}
.yd4{bottom:503.914500px;}
.y108{bottom:506.763000px;}
.yd3{bottom:506.902500px;}
.y3a{bottom:509.514000px;}
.ya2{bottom:510.847500px;}
.yd0{bottom:512.056500px;}
.y221{bottom:513.624000px;}
.y25b{bottom:514.371000px;}
.y1f{bottom:515.118000px;}
.yd2{bottom:516.688500px;}
.y1cf{bottom:518.017500px;}
.y1f6{bottom:518.107500px;}
.yd1{bottom:519.678000px;}
.y6d{bottom:520.099500px;}
.y107{bottom:524.695500px;}
.y39{bottom:527.446500px;}
.ya1{bottom:528.781500px;}
.y220{bottom:529.315500px;}
.y25a{bottom:530.061000px;}
.ycf{bottom:533.403000px;}
.y1ce{bottom:535.950000px;}
.y1f5{bottom:536.040000px;}
.y6c{bottom:538.032000px;}
.y106{bottom:542.628000px;}
.y15c{bottom:542.998500px;}
.y21f{bottom:545.005500px;}
.y38{bottom:545.379000px;}
.y259{bottom:545.752500px;}
.ya0{bottom:546.714000px;}
.yce{bottom:551.335500px;}
.y1cd{bottom:553.884000px;}
.y1f4{bottom:553.972500px;}
.y6b{bottom:555.964500px;}
.y105{bottom:560.562000px;}
.y21e{bottom:560.697000px;}
.y15b{bottom:560.931000px;}
.y258{bottom:561.444000px;}
.y37{bottom:563.311500px;}
.y1e{bottom:563.313000px;}
.y9f{bottom:564.646500px;}
.y1cc{bottom:571.816500px;}
.y1f3{bottom:571.905000px;}
.y6a{bottom:573.897000px;}
.y21d{bottom:576.388500px;}
.y257{bottom:577.135500px;}
.y15a{bottom:578.863500px;}
.y18f{bottom:582.484893px;}
.y9e{bottom:582.579000px;}
.ycc{bottom:583.956000px;}
.ycd{bottom:587.322000px;}
.y1cb{bottom:589.749000px;}
.y1f2{bottom:589.837500px;}
.y104{bottom:590.920500px;}
.y101{bottom:591.250500px;}
.y69{bottom:591.831000px;}
.y21c{bottom:592.080000px;}
.y256{bottom:592.825500px;}
.y280{bottom:592.827000px;}
.y191{bottom:593.796375px;}
.y103{bottom:594.615000px;}
.y159{bottom:596.796000px;}
.ycb{bottom:597.571500px;}
.y9d{bottom:600.511500px;}
.y100{bottom:604.866000px;}
.y282{bottom:606.276000px;}
.y21b{bottom:607.770000px;}
.y1ca{bottom:608.145000px;}
.y255{bottom:608.517000px;}
.y27f{bottom:608.518500px;}
.y68{bottom:609.763500px;}
.y1d{bottom:610.759500px;}
.y158{bottom:614.728500px;}
.y102{bottom:614.976000px;}
.y9c{bottom:618.445500px;}
.y281{bottom:621.967500px;}
.y21a{bottom:623.461500px;}
.y254{bottom:624.208500px;}
.y1a9{bottom:624.625500px;}
.y1c9{bottom:626.077500px;}
.y1c{bottom:626.451000px;}
.y67{bottom:627.696000px;}
.y1f1{bottom:629.544000px;}
.y157{bottom:632.661000px;}
.y9b{bottom:636.378000px;}
.y219{bottom:639.153000px;}
.y253{bottom:639.900000px;}
.y1a4{bottom:640.540500px;}
.y1b{bottom:642.141000px;}
.yca{bottom:643.725000px;}
.y1c8{bottom:644.010000px;}
.y66{bottom:645.628500px;}
.yff{bottom:647.037000px;}
.y156{bottom:650.595000px;}
.y12c{bottom:650.604000px;}
.y9a{bottom:654.310500px;}
.y218{bottom:654.844500px;}
.y252{bottom:655.591500px;}
.y1a{bottom:657.832500px;}
.yc9{bottom:661.659000px;}
.y1c7{bottom:661.942500px;}
.y65{bottom:663.561000px;}
.yfe{bottom:664.969500px;}
.y155{bottom:668.527500px;}
.y12b{bottom:668.538000px;}
.y217{bottom:670.536000px;}
.y251{bottom:671.281500px;}
.y27e{bottom:671.283000px;}
.y99{bottom:672.243000px;}
.y19{bottom:673.524000px;}
.yc8{bottom:679.591500px;}
.y1c6{bottom:679.875000px;}
.y64{bottom:681.493500px;}
.y1f0{bottom:681.976500px;}
.y216{bottom:686.226000px;}
.y154{bottom:686.460000px;}
.y12a{bottom:686.470500px;}
.y250{bottom:686.973000px;}
.y18{bottom:689.215500px;}
.y98{bottom:690.175500px;}
.yc7{bottom:697.524000px;}
.y1c5{bottom:697.807500px;}
.y63{bottom:699.427500px;}
.y1ef{bottom:699.909000px;}
.y215{bottom:701.917500px;}
.y24f{bottom:702.664500px;}
.y17{bottom:704.907000px;}
.y97{bottom:709.923000px;}
.y144{bottom:713.956500px;}
.y11e{bottom:713.967000px;}
.y1ee{bottom:714.148500px;}
.y1c4{bottom:715.741500px;}
.yc6{bottom:717.321000px;}
.y62{bottom:717.360000px;}
.y214{bottom:717.609000px;}
.y1ed{bottom:717.843000px;}
.y24e{bottom:718.356000px;}
.yfd{bottom:719.679000px;}
.y16{bottom:720.597000px;}
.y96{bottom:727.855500px;}
.y213{bottom:733.300500px;}
.y24d{bottom:734.046000px;}
.y27d{bottom:734.047500px;}
.y1c3{bottom:734.136000px;}
.yc5{bottom:735.253500px;}
.y61{bottom:735.292500px;}
.y1ec{bottom:735.775500px;}
.y15{bottom:736.288500px;}
.yfc{bottom:737.611500px;}
.y95{bottom:745.788000px;}
.y17f{bottom:746.115000px;}
.y212{bottom:748.990500px;}
.y24c{bottom:749.737500px;}
.y27c{bottom:749.739000px;}
.y14{bottom:751.980000px;}
.y1c2{bottom:752.068500px;}
.yc4{bottom:753.187500px;}
.y60{bottom:753.225000px;}
.y1eb{bottom:753.708000px;}
.yfb{bottom:755.545500px;}
.y94{bottom:763.720500px;}
.y17e{bottom:764.047500px;}
.y211{bottom:764.682000px;}
.y24b{bottom:765.429000px;}
.y13{bottom:767.671500px;}
.y1c1{bottom:770.001000px;}
.yc3{bottom:771.120000px;}
.y5f{bottom:771.157500px;}
.y1ea{bottom:771.640500px;}
.yfa{bottom:773.478000px;}
.y210{bottom:780.373500px;}
.y24a{bottom:781.120500px;}
.y93{bottom:781.653000px;}
.y17d{bottom:781.980000px;}
.y12{bottom:783.361500px;}
.y1c0{bottom:787.935000px;}
.yc2{bottom:789.052500px;}
.y5e{bottom:789.091500px;}
.y1e9{bottom:789.573000px;}
.yf9{bottom:791.410500px;}
.y20f{bottom:796.065000px;}
.y249{bottom:796.812000px;}
.y11{bottom:799.053000px;}
.y92{bottom:799.587000px;}
.y17c{bottom:799.912500px;}
.y1bf{bottom:805.867500px;}
.yc1{bottom:806.985000px;}
.y5d{bottom:807.024000px;}
.y1e8{bottom:807.505500px;}
.yf8{bottom:809.343000px;}
.y20e{bottom:811.756500px;}
.y248{bottom:812.502000px;}
.y27b{bottom:812.503500px;}
.y91{bottom:817.519500px;}
.y17b{bottom:817.845000px;}
.yc0{bottom:824.917500px;}
.y5c{bottom:824.956500px;}
.y1e7{bottom:825.439500px;}
.yf7{bottom:827.275500px;}
.y20d{bottom:827.446500px;}
.y247{bottom:828.193500px;}
.y10{bottom:835.402500px;}
.y90{bottom:835.452000px;}
.y17a{bottom:835.779000px;}
.ybf{bottom:842.850000px;}
.y5b{bottom:842.889000px;}
.y20c{bottom:843.138000px;}
.y1e6{bottom:843.372000px;}
.y246{bottom:843.885000px;}
.yf{bottom:845.379000px;}
.y1be{bottom:845.523000px;}
.y8f{bottom:853.384500px;}
.ye7{bottom:854.773500px;}
.y20b{bottom:858.829500px;}
.y245{bottom:859.576500px;}
.ybe{bottom:860.784000px;}
.y5a{bottom:860.821500px;}
.y1e5{bottom:861.304500px;}
.y168{bottom:863.275500px;}
.ye{bottom:866.784000px;}
.y20a{bottom:874.521000px;}
.y244{bottom:875.266500px;}
.y27a{bottom:875.268000px;}
.y1a3{bottom:876.336000px;}
.yd{bottom:876.762000px;}
.ybd{bottom:878.716500px;}
.y59{bottom:878.754000px;}
.y1e4{bottom:879.237000px;}
.y209{bottom:890.211000px;}
.y243{bottom:890.958000px;}
.y279{bottom:890.959500px;}
.y19c{bottom:892.251000px;}
.y8e{bottom:894.391500px;}
.ybc{bottom:896.649000px;}
.y58{bottom:896.688000px;}
.y1e3{bottom:897.169500px;}
.y1bd{bottom:897.684000px;}
.yc{bottom:898.167000px;}
.y208{bottom:905.902500px;}
.y242{bottom:906.649500px;}
.yb{bottom:908.145000px;}
.y8d{bottom:910.083000px;}
.ybb{bottom:914.581500px;}
.y57{bottom:914.620500px;}
.y1e2{bottom:915.102000px;}
.y1bc{bottom:915.616500px;}
.y207{bottom:921.594000px;}
.y241{bottom:922.341000px;}
.ya{bottom:929.548500px;}
.yba{bottom:932.514000px;}
.y56{bottom:932.553000px;}
.y1bb{bottom:933.549000px;}
.y206{bottom:937.285500px;}
.y240{bottom:938.032500px;}
.y9{bottom:939.526500px;}
.yb9{bottom:950.442000px;}
.y55{bottom:950.485500px;}
.y1ba{bottom:951.481500px;}
.yb5{bottom:953.430000px;}
.y23f{bottom:953.722500px;}
.y278{bottom:953.724000px;}
.yb6{bottom:954.100500px;}
.yb8{bottom:954.889500px;}
.y8{bottom:955.218000px;}
.yb7{bottom:963.216000px;}
.yb4{bottom:964.467000px;}
.y54{bottom:968.418000px;}
.y8c{bottom:969.414000px;}
.y7{bottom:976.623000px;}
.y23e{bottom:985.105500px;}
.yb3{bottom:985.483500px;}
.y11d{bottom:986.082000px;}
.y53{bottom:986.350500px;}
.y6{bottom:986.599500px;}
.y8b{bottom:987.346500px;}
.y1b9{bottom:987.348000px;}
.y23d{bottom:1000.797000px;}
.yb2{bottom:1003.416000px;}
.y52{bottom:1004.284500px;}
.y8a{bottom:1005.279000px;}
.y1b8{bottom:1005.280500px;}
.y5{bottom:1008.004500px;}
.y23c{bottom:1016.487000px;}
.y277{bottom:1016.488500px;}
.y4{bottom:1017.982500px;}
.y11c{bottom:1018.287000px;}
.y205{bottom:1020.223500px;}
.yb1{bottom:1021.348500px;}
.y51{bottom:1022.217000px;}
.y89{bottom:1023.213000px;}
.y23b{bottom:1032.178500px;}
.y276{bottom:1032.180000px;}
.y11b{bottom:1033.978500px;}
.y3{bottom:1037.409000px;}
.y204{bottom:1038.157500px;}
.yb0{bottom:1039.281000px;}
.y50{bottom:1040.149500px;}
.y88{bottom:1041.145500px;}
.y23a{bottom:1047.870000px;}
.y11a{bottom:1050.177000px;}
.y203{bottom:1056.090000px;}
.yaf{bottom:1057.213500px;}
.y4f{bottom:1058.082000px;}
.y87{bottom:1059.078000px;}
.y239{bottom:1063.561500px;}
.y119{bottom:1065.868500px;}
.y2{bottom:1074.022500px;}
.y4e{bottom:1076.014500px;}
.y86{bottom:1077.010500px;}
.y238{bottom:1079.253000px;}
.y118{bottom:1082.017500px;}
.y85{bottom:1094.943000px;}
.y1{bottom:1094.944500px;}
.y117{bottom:1098.306000px;}
.y4d{bottom:1133.799000px;}
.h48{height:8.244561px;}
.h44{height:9.892418px;}
.h4a{height:10.744844px;}
.h24{height:11.519029px;}
.h37{height:19.295041px;}
.hd{height:20.718223px;}
.h27{height:21.936306px;}
.h20{height:23.110137px;}
.h31{height:23.222963px;}
.h2d{height:23.316416px;}
.h13{height:23.390125px;}
.h3e{height:23.416937px;}
.h4{height:24.209280px;}
.h3f{height:25.420722px;}
.h47{height:26.511363px;}
.h22{height:27.634380px;}
.h45{height:28.333109px;}
.h25{height:29.309794px;}
.h42{height:30.397306px;}
.ha{height:31.382100px;}
.h2c{height:31.623433px;}
.h10{height:31.863275px;}
.h52{height:32.816744px;}
.h3d{height:33.347755px;}
.h1f{height:34.497303px;}
.h50{height:35.865450px;}
.h55{height:37.504850px;}
.h7{height:37.658880px;}
.h4d{height:37.891009px;}
.h17{height:37.941275px;}
.h36{height:38.088190px;}
.h5{height:38.519654px;}
.h2e{height:39.776138px;}
.h6{height:40.348800px;}
.h30{height:40.995897px;}
.h49{height:41.917688px;}
.h21{height:42.312360px;}
.h4f{height:43.304010px;}
.h43{height:43.440374px;}
.h40{height:43.753013px;}
.h23{height:44.326625px;}
.h2f{height:44.819664px;}
.h8{height:44.831700px;}
.h57{height:45.080125px;}
.h58{height:45.086125px;}
.h53{height:45.596194px;}
.h41{height:45.922508px;}
.h2a{height:47.063280px;}
.h16{height:47.223024px;}
.h46{height:47.263533px;}
.h29{height:48.650100px;}
.h1b{height:48.656100px;}
.h26{height:48.892778px;}
.h4e{height:49.713372px;}
.h1{height:50.211840px;}
.h3{height:53.072100px;}
.h2{height:53.078100px;}
.h56{height:53.499024px;}
.h3b{height:57.341560px;}
.h9{height:57.617700px;}
.h32{height:59.175024px;}
.h59{height:59.609700px;}
.h33{height:63.438223px;}
.h3a{height:64.456936px;}
.h39{height:66.416217px;}
.h4b{height:69.709683px;}
.h35{height:70.596259px;}
.h38{height:71.532835px;}
.he{height:73.688100px;}
.h18{height:77.399700px;}
.hb{height:82.052100px;}
.hf{height:83.517024px;}
.h14{height:85.271700px;}
.h15{height:89.072125px;}
.h19{height:89.978125px;}
.h1a{height:93.518100px;}
.h28{height:97.964100px;}
.h12{height:97.970100px;}
.h1c{height:99.296100px;}
.hc{height:104.607024px;}
.h11{height:119.241024px;}
.h1d{height:130.976125px;}
.h54{height:214.250520px;}
.h51{height:215.097360px;}
.h4c{height:217.637880px;}
.h34{height:233.281359px;}
.h2b{height:233.862536px;}
.h3c{height:246.614291px;}
.h1e{height:255.115460px;}
.h0{height:1188.000000px;}
.w2{width:7.369418px;}
.w5{width:8.106223px;}
.w6{width:17.017777px;}
.w7{width:304.862400px;}
.w3{width:339.624249px;}
.w1{width:340.156744px;}
.w4{width:374.166104px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x62{left:13.477263px;}
.x4f{left:15.706475px;}
.x58{left:17.285533px;}
.x63{left:19.880329px;}
.x54{left:20.948435px;}
.x33{left:23.661703px;}
.x48{left:24.871780px;}
.x55{left:26.786185px;}
.x49{left:28.701936px;}
.x34{left:30.059637px;}
.x5e{left:31.731173px;}
.x47{left:33.259339px;}
.x31{left:35.877421px;}
.x5b{left:39.464497px;}
.x43{left:41.889314px;}
.x60{left:44.071048px;}
.x44{left:45.719471px;}
.x42{left:50.276870px;}
.x4e{left:55.561518px;}
.x30{left:56.676625px;}
.x5a{left:62.343235px;}
.x66{left:66.730992px;}
.x4d{left:74.906234px;}
.x69{left:76.474836px;}
.x13{left:81.000000px;}
.x1a{left:82.794000px;}
.x6f{left:87.912000px;}
.x41{left:94.734000px;}
.x12{left:95.944500px;}
.x6d{left:103.539000px;}
.x1b{left:108.808500px;}
.x56{left:116.756216px;}
.x1{left:127.020000px;}
.x5c{left:129.219557px;}
.x4c{left:137.788686px;}
.x2b{left:139.924500px;}
.x50{left:142.685471px;}
.x1d{left:144.627000px;}
.x26{left:146.101500px;}
.x45{left:148.261014px;}
.x6a{left:149.691929px;}
.x67{left:151.796070px;}
.x1c{left:153.732000px;}
.x35{left:156.309200px;}
.xe{left:158.218500px;}
.x64{left:159.799963px;}
.x10{left:163.191000px;}
.x51{left:169.205677px;}
.x37{left:173.860041px;}
.xf{left:177.015000px;}
.x9{left:178.323000px;}
.x52{left:179.435575px;}
.x38{left:181.956693px;}
.x46{left:185.011127px;}
.x3{left:190.233000px;}
.x4{left:193.626000px;}
.x4b{left:197.859130px;}
.x11{left:199.653000px;}
.xc{left:203.248500px;}
.xb{left:204.616500px;}
.xd{left:208.470000px;}
.x1e{left:213.799500px;}
.x27{left:221.475000px;}
.x7{left:231.948000px;}
.x2c{left:234.351000px;}
.x24{left:236.917500px;}
.x22{left:238.011000px;}
.x23{left:243.352500px;}
.x25{left:244.446000px;}
.x4a{left:251.772221px;}
.x8{left:255.520500px;}
.x21{left:263.392500px;}
.x5f{left:265.629839px;}
.x2d{left:267.007500px;}
.x53{left:270.781500px;}
.x61{left:282.801348px;}
.x1f{left:284.086500px;}
.xa{left:286.498500px;}
.x2e{left:288.801000px;}
.x20{left:291.615000px;}
.x59{left:294.750360px;}
.x28{left:301.156500px;}
.x6{left:305.533500px;}
.x5{left:308.815500px;}
.x29{left:310.459500px;}
.x32{left:326.483716px;}
.x2a{left:335.263500px;}
.x57{left:340.307704px;}
.x5d{left:359.126027px;}
.x2{left:408.502500px;}
.x14{left:475.521000px;}
.x2f{left:489.255000px;}
.x15{left:490.464000px;}
.x70{left:503.001000px;}
.x17{left:515.842500px;}
.x65{left:518.235000px;}
.x39{left:523.963500px;}
.x68{left:536.082000px;}
.x6e{left:547.899000px;}
.x19{left:548.947500px;}
.x3f{left:550.506000px;}
.x40{left:576.681000px;}
.x18{left:589.909500px;}
.x6c{left:604.318500px;}
.x3a{left:626.023500px;}
.x6b{left:636.091500px;}
.x3c{left:654.523500px;}
.x36{left:655.745623px;}
.x3b{left:691.411500px;}
.x3d{left:761.677500px;}
.x3e{left:770.712000px;}
.x16{left:835.669500px;}
@media print{
.v17{vertical-align:-74.917333pt;}
.vf{vertical-align:-58.976000pt;}
.v2{vertical-align:-20.314667pt;}
.v1d{vertical-align:-15.941333pt;}
.v4{vertical-align:-7.973333pt;}
.v3{vertical-align:-5.312000pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:5.162667pt;}
.v24{vertical-align:7.039604pt;}
.vc{vertical-align:10.352000pt;}
.v5{vertical-align:11.365333pt;}
.v11{vertical-align:13.136000pt;}
.v1a{vertical-align:15.349333pt;}
.v26{vertical-align:16.861525pt;}
.vb{vertical-align:18.325333pt;}
.v1{vertical-align:19.285333pt;}
.v23{vertical-align:20.314667pt;}
.v18{vertical-align:21.941333pt;}
.v1b{vertical-align:28.474667pt;}
.v13{vertical-align:33.589333pt;}
.v19{vertical-align:35.946667pt;}
.vd{vertical-align:37.605333pt;}
.v12{vertical-align:38.906667pt;}
.v1c{vertical-align:39.850667pt;}
.v1f{vertical-align:41.088000pt;}
.v9{vertical-align:43.040000pt;}
.v7{vertical-align:45.040000pt;}
.v25{vertical-align:50.474667pt;}
.v1e{vertical-align:55.232000pt;}
.v6{vertical-align:58.176000pt;}
.va{vertical-align:59.072000pt;}
.v20{vertical-align:60.368000pt;}
.ve{vertical-align:72.112000pt;}
.v15{vertical-align:76.917333pt;}
.v14{vertical-align:87.925333pt;}
.v8{vertical-align:90.858667pt;}
.v22{vertical-align:95.632000pt;}
.v16{vertical-align:103.866667pt;}
.v21{vertical-align:108.768000pt;}
.lse{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000267pt;}
.ls3c{letter-spacing:0.000277pt;}
.ls14{letter-spacing:0.000479pt;}
.ls1b{letter-spacing:0.000483pt;}
.ls71{letter-spacing:0.000495pt;}
.ls15{letter-spacing:0.000501pt;}
.ls5{letter-spacing:0.000693pt;}
.ls78{letter-spacing:0.000891pt;}
.ls60{letter-spacing:0.000964pt;}
.ls3e{letter-spacing:0.000996pt;}
.ls6d{letter-spacing:0.001053pt;}
.ls94{letter-spacing:0.001156pt;}
.ls5c{letter-spacing:0.001501pt;}
.ls31{letter-spacing:0.001788pt;}
.ls7e{letter-spacing:0.001828pt;}
.ls81{letter-spacing:0.001873pt;}
.ls9a{letter-spacing:0.002079pt;}
.ls98{letter-spacing:0.002133pt;}
.ls7c{letter-spacing:0.002205pt;}
.ls87{letter-spacing:0.002537pt;}
.ls52{letter-spacing:0.002557pt;}
.ls34{letter-spacing:0.002570pt;}
.ls50{letter-spacing:0.002694pt;}
.ls22{letter-spacing:0.002906pt;}
.ls6f{letter-spacing:0.003203pt;}
.ls24{letter-spacing:0.003709pt;}
.ls13{letter-spacing:0.003733pt;}
.ls53{letter-spacing:0.004667pt;}
.ls36{letter-spacing:0.004777pt;}
.ls9{letter-spacing:0.036439pt;}
.lsa{letter-spacing:0.196932pt;}
.ls37{letter-spacing:1.333099pt;}
.ls58{letter-spacing:1.477138pt;}
.ls2f{letter-spacing:1.900168pt;}
.ls5d{letter-spacing:1.905501pt;}
.ls45{letter-spacing:1.907709pt;}
.lsb3{letter-spacing:2.494193pt;}
.ls0{letter-spacing:2.652911pt;}
.ls3d{letter-spacing:2.653647pt;}
.ls73{letter-spacing:2.653713pt;}
.ls35{letter-spacing:2.653753pt;}
.ls44{letter-spacing:2.655095pt;}
.ls7d{letter-spacing:2.655884pt;}
.ls3{letter-spacing:2.656473pt;}
.ls57{letter-spacing:2.656689pt;}
.ls7b{letter-spacing:2.657014pt;}
.ls25{letter-spacing:2.657069pt;}
.ls61{letter-spacing:2.657253pt;}
.ls6{letter-spacing:2.658091pt;}
.ls1{letter-spacing:2.658245pt;}
.ls2e{letter-spacing:2.658980pt;}
.ls4a{letter-spacing:2.660428pt;}
.lsb4{letter-spacing:2.660927pt;}
.ls59{letter-spacing:2.662022pt;}
.ls4{letter-spacing:2.734053pt;}
.ls6c{letter-spacing:2.800818pt;}
.lsb{letter-spacing:2.806152pt;}
.ls5e{letter-spacing:2.951264pt;}
.ls5b{letter-spacing:2.956597pt;}
.ls16{letter-spacing:3.066313pt;}
.ls49{letter-spacing:3.378537pt;}
.ls4f{letter-spacing:3.383870pt;}
.ls93{letter-spacing:4.624876pt;}
.ls2b{letter-spacing:5.722428pt;}
.ls5a{letter-spacing:6.370906pt;}
.lsb2{letter-spacing:6.976479pt;}
.lsb1{letter-spacing:6.979733pt;}
.ls96{letter-spacing:7.376277pt;}
.lsf{letter-spacing:7.381391pt;}
.lsa5{letter-spacing:7.381610pt;}
.ls92{letter-spacing:7.949005pt;}
.ls7f{letter-spacing:7.967884pt;}
.ls8a{letter-spacing:8.850079pt;}
.ls63{letter-spacing:8.858933pt;}
.ls4c{letter-spacing:9.033761pt;}
.ls4b{letter-spacing:10.605573pt;}
.ls72{letter-spacing:10.917828pt;}
.ls75{letter-spacing:10.918224pt;}
.ls76{letter-spacing:10.923162pt;}
.ls26{letter-spacing:11.511578pt;}
.ls30{letter-spacing:11.512313pt;}
.ls2a{letter-spacing:11.699945pt;}
.ls47{letter-spacing:11.803145pt;}
.ls46{letter-spacing:11.805573pt;}
.ls21{letter-spacing:11.807016pt;}
.ls2d{letter-spacing:11.808479pt;}
.ls66{letter-spacing:11.810906pt;}
.ls99{letter-spacing:11.819145pt;}
.lsa1{letter-spacing:12.911599pt;}
.ls91{letter-spacing:13.537396pt;}
.ls65{letter-spacing:14.460911pt;}
.ls4d{letter-spacing:14.463095pt;}
.ls32{letter-spacing:14.466980pt;}
.ls7{letter-spacing:14.667558pt;}
.ls8{letter-spacing:14.668052pt;}
.ls97{letter-spacing:14.754906pt;}
.ls43{letter-spacing:14.757812pt;}
.ls62{letter-spacing:14.771215pt;}
.ls3f{letter-spacing:14.914980pt;}
.ls29{letter-spacing:15.228911pt;}
.ls5f{letter-spacing:15.229573pt;}
.lsb6{letter-spacing:15.348439pt;}
.ls10{letter-spacing:16.308932pt;}
.ls42{letter-spacing:16.665042pt;}
.lsa2{letter-spacing:16.884932pt;}
.ls1a{letter-spacing:17.419145pt;}
.ls55{letter-spacing:17.565647pt;}
.lsb5{letter-spacing:17.603526pt;}
.lsb7{letter-spacing:17.811526pt;}
.ls54{letter-spacing:17.885753pt;}
.ls3a{letter-spacing:17.985151pt;}
.ls23{letter-spacing:18.093573pt;}
.ls1f{letter-spacing:18.095132pt;}
.ls20{letter-spacing:18.096479pt;}
.ls33{letter-spacing:18.181812pt;}
.lsd{letter-spacing:18.544910pt;}
.lsad{letter-spacing:19.023599pt;}
.ls70{letter-spacing:19.035139pt;}
.ls68{letter-spacing:19.194933pt;}
.ls89{letter-spacing:19.300716pt;}
.ls69{letter-spacing:19.401458pt;}
.ls83{letter-spacing:19.706050pt;}
.ls51{letter-spacing:20.365647pt;}
.ls2c{letter-spacing:20.840420pt;}
.ls84{letter-spacing:21.332716pt;}
.ls40{letter-spacing:21.448313pt;}
.lsa3{letter-spacing:21.791599pt;}
.ls56{letter-spacing:21.984689pt;}
.ls9c{letter-spacing:22.137902pt;}
.ls41{letter-spacing:22.403709pt;}
.ls8b{letter-spacing:22.919578pt;}
.ls11{letter-spacing:22.939485pt;}
.ls9f{letter-spacing:23.007235pt;}
.ls88{letter-spacing:23.089014pt;}
.ls9e{letter-spacing:23.195145pt;}
.ls82{letter-spacing:23.334347pt;}
.ls8f{letter-spacing:23.382022pt;}
.lsa7{letter-spacing:23.589812pt;}
.lsa6{letter-spacing:23.592239pt;}
.ls64{letter-spacing:23.609490pt;}
.ls48{letter-spacing:23.614824pt;}
.ls77{letter-spacing:23.909806pt;}
.ls9b{letter-spacing:23.994265pt;}
.lsa9{letter-spacing:24.282265pt;}
.ls86{letter-spacing:24.311578pt;}
.lsae{letter-spacing:24.390022pt;}
.lsa4{letter-spacing:24.395485pt;}
.ls85{letter-spacing:24.459485pt;}
.ls2{letter-spacing:24.727578pt;}
.lsb0{letter-spacing:25.610265pt;}
.ls6b{letter-spacing:25.630740pt;}
.lsa8{letter-spacing:25.666245pt;}
.ls19{letter-spacing:25.802428pt;}
.ls3b{letter-spacing:25.869698pt;}
.lsaf{letter-spacing:25.904689pt;}
.ls12{letter-spacing:26.123145pt;}
.lsaa{letter-spacing:26.891485pt;}
.ls9d{letter-spacing:27.186673pt;}
.lsac{letter-spacing:28.069812pt;}
.ls27{letter-spacing:28.449069pt;}
.ls18{letter-spacing:28.800479pt;}
.lsa0{letter-spacing:28.847235pt;}
.ls6a{letter-spacing:29.001902pt;}
.ls1e{letter-spacing:30.480479pt;}
.ls1c{letter-spacing:30.598484pt;}
.ls39{letter-spacing:31.075945pt;}
.ls28{letter-spacing:32.689151pt;}
.ls17{letter-spacing:33.109817pt;}
.ls8c{letter-spacing:33.897902pt;}
.lsab{letter-spacing:35.449902pt;}
.ls1d{letter-spacing:38.863761pt;}
.ls38{letter-spacing:42.461753pt;}
.ls4e{letter-spacing:93.079412pt;}
.ls67{letter-spacing:107.008689pt;}
.ls8d{letter-spacing:128.207945pt;}
.ls8e{letter-spacing:140.499842pt;}
.ls95{letter-spacing:166.648718pt;}
.ls90{letter-spacing:184.898291pt;}
.ls79{letter-spacing:297.755139pt;}
.ls74{letter-spacing:300.933806pt;}
.ls80{letter-spacing:301.351412pt;}
.ls6e{letter-spacing:313.221806pt;}
.ls7a{letter-spacing:530.803820pt;}
.ws103{word-spacing:-150.564301pt;}
.wsff{word-spacing:-138.821185pt;}
.ws92{word-spacing:-53.133867pt;}
.ws1cb{word-spacing:-49.150218pt;}
.ws134{word-spacing:-42.359791pt;}
.wsa3{word-spacing:-42.066082pt;}
.ws4d{word-spacing:-34.611401pt;}
.ws19{word-spacing:-32.063846pt;}
.wsc5{word-spacing:-29.531803pt;}
.wse4{word-spacing:-28.354202pt;}
.ws8{word-spacing:-28.118362pt;}
.ws95{word-spacing:-25.738045pt;}
.ws123{word-spacing:-20.750935pt;}
.ws22{word-spacing:-15.718697pt;}
.wsc3{word-spacing:-15.560592pt;}
.ws101{word-spacing:-15.042069pt;}
.ws4{word-spacing:-14.760588pt;}
.wse1{word-spacing:-14.264285pt;}
.wsf0{word-spacing:-14.244619pt;}
.wsd9{word-spacing:-13.652838pt;}
.ws146{word-spacing:-12.543396pt;}
.wsc2{word-spacing:-10.979095pt;}
.ws100{word-spacing:-10.613240pt;}
.wse0{word-spacing:-10.064459pt;}
.wsee{word-spacing:-9.137775pt;}
.wsba{word-spacing:-5.940366pt;}
.wsb5{word-spacing:-5.901542pt;}
.wsa1{word-spacing:-5.887232pt;}
.ws89{word-spacing:-5.448272pt;}
.ws113{word-spacing:-2.959439pt;}
.wsc4{word-spacing:-2.911736pt;}
.ws76{word-spacing:-2.805468pt;}
.wsd8{word-spacing:-2.733723pt;}
.wsdd{word-spacing:-2.728390pt;}
.ws14b{word-spacing:-2.654054pt;}
.ws15e{word-spacing:-2.558413pt;}
.wsac{word-spacing:-2.486665pt;}
.wsab{word-spacing:-2.486148pt;}
.ws13f{word-spacing:-2.433531pt;}
.ws1d5{word-spacing:-2.414950pt;}
.ws15b{word-spacing:-2.319309pt;}
.ws106{word-spacing:-2.220996pt;}
.wsce{word-spacing:-2.167862pt;}
.ws2c{word-spacing:-2.114728pt;}
.ws120{word-spacing:-2.061594pt;}
.ws72{word-spacing:-2.008460pt;}
.ws1b6{word-spacing:-1.984563pt;}
.ws55{word-spacing:-1.967853pt;}
.ws56{word-spacing:-1.955326pt;}
.wsfc{word-spacing:-1.849059pt;}
.ws8b{word-spacing:-1.795925pt;}
.ws187{word-spacing:-1.745459pt;}
.wscb{word-spacing:-1.689657pt;}
.ws175{word-spacing:-1.554176pt;}
.ws8c{word-spacing:-1.530255pt;}
.wsfb{word-spacing:-1.477121pt;}
.ws105{word-spacing:-1.423988pt;}
.wsa9{word-spacing:-1.416139pt;}
.ws1e0{word-spacing:-1.410714pt;}
.ws104{word-spacing:-1.370854pt;}
.ws34{word-spacing:-1.317720pt;}
.ws15f{word-spacing:-1.315072pt;}
.ws153{word-spacing:-1.267251pt;}
.wsa6{word-spacing:-1.264586pt;}
.ws71{word-spacing:-1.211452pt;}
.ws17a{word-spacing:-1.171610pt;}
.ws15a{word-spacing:-1.123789pt;}
.ws11a{word-spacing:-1.052051pt;}
.ws171{word-spacing:-1.028147pt;}
.ws13d{word-spacing:-0.998917pt;}
.ws1b5{word-spacing:-0.932506pt;}
.ws13b{word-spacing:-0.892649pt;}
.ws1d6{word-spacing:-0.884685pt;}
.ws1ab{word-spacing:-0.741222pt;}
.ws2b{word-spacing:-0.733247pt;}
.ws181{word-spacing:-0.717624pt;}
.ws1a7{word-spacing:-0.693402pt;}
.ws25{word-spacing:-0.680113pt;}
.ws91{word-spacing:-0.626980pt;}
.wsd3{word-spacing:-0.573846pt;}
.ws115{word-spacing:-0.520712pt;}
.ws1c8{word-spacing:-0.502118pt;}
.ws108{word-spacing:-0.467578pt;}
.ws35{word-spacing:-0.308176pt;}
.ws6c{word-spacing:-0.255043pt;}
.ws4c{word-spacing:-0.213052pt;}
.ws4e{word-spacing:-0.201909pt;}
.ws1{word-spacing:-0.063761pt;}
.ws1eb{word-spacing:-0.051531pt;}
.ws10a{word-spacing:-0.048176pt;}
.wsd1{word-spacing:-0.042507pt;}
.ws109{word-spacing:-0.042154pt;}
.ws7{word-spacing:-0.037194pt;}
.ws10b{word-spacing:-0.034203pt;}
.wsdc{word-spacing:-0.031881pt;}
.ws18d{word-spacing:-0.023910pt;}
.wsb4{word-spacing:-0.019085pt;}
.wsaa{word-spacing:-0.013752pt;}
.ws51{word-spacing:0.000000pt;}
.ws8a{word-spacing:0.010627pt;}
.ws197{word-spacing:0.023910pt;}
.wsd4{word-spacing:0.092867pt;}
.ws49{word-spacing:0.116895pt;}
.ws68{word-spacing:0.170028pt;}
.ws149{word-spacing:0.263014pt;}
.ws13c{word-spacing:0.276296pt;}
.ws199{word-spacing:0.310835pt;}
.ws15c{word-spacing:0.368220pt;}
.ws74{word-spacing:0.382564pt;}
.ws36{word-spacing:0.435698pt;}
.ws6a{word-spacing:0.488832pt;}
.ws8d{word-spacing:0.541965pt;}
.ws86{word-spacing:0.595099pt;}
.ws15{word-spacing:0.645581pt;}
.ws12b{word-spacing:0.701367pt;}
.ws1b7{word-spacing:0.702966pt;}
.ws14a{word-spacing:0.741222pt;}
.ws107{word-spacing:0.754501pt;}
.ws18c{word-spacing:0.789043pt;}
.wsc7{word-spacing:0.807635pt;}
.wsd2{word-spacing:0.860769pt;}
.ws39{word-spacing:0.913903pt;}
.ws137{word-spacing:0.935118pt;}
.ws148{word-spacing:0.980326pt;}
.ws57{word-spacing:1.020170pt;}
.ws1aa{word-spacing:1.037711pt;}
.ws26{word-spacing:1.073304pt;}
.ws182{word-spacing:1.085532pt;}
.ws129{word-spacing:1.179572pt;}
.ws168{word-spacing:1.267251pt;}
.ws67{word-spacing:1.285840pt;}
.ws160{word-spacing:1.324636pt;}
.ws6f{word-spacing:1.338973pt;}
.ws152{word-spacing:1.372457pt;}
.ws114{word-spacing:1.392107pt;}
.ws191{word-spacing:1.442551pt;}
.ws194{word-spacing:1.458534pt;}
.ws126{word-spacing:1.498375pt;}
.ws1d4{word-spacing:1.506355pt;}
.ws125{word-spacing:1.519412pt;}
.ws7b{word-spacing:1.551509pt;}
.ws1d9{word-spacing:1.601997pt;}
.wsf8{word-spacing:1.604643pt;}
.ws178{word-spacing:1.649818pt;}
.ws140{word-spacing:1.657777pt;}
.ws1d0{word-spacing:1.662032pt;}
.ws1cf{word-spacing:1.678459pt;}
.ws192{word-spacing:1.704825pt;}
.wseb{word-spacing:1.710911pt;}
.ws1d2{word-spacing:1.749683pt;}
.ws6d{word-spacing:1.764044pt;}
.ws1be{word-spacing:1.793280pt;}
.ws1ec{word-spacing:1.802844pt;}
.ws172{word-spacing:1.816798pt;}
.ws131{word-spacing:1.817178pt;}
.ws13{word-spacing:1.841101pt;}
.ws1d7{word-spacing:1.850665pt;}
.ws65{word-spacing:1.870312pt;}
.ws12c{word-spacing:1.923446pt;}
.ws12d{word-spacing:1.923459pt;}
.ws1dc{word-spacing:1.946307pt;}
.wsb8{word-spacing:2.029714pt;}
.wsb7{word-spacing:2.053707pt;}
.ws29{word-spacing:2.082848pt;}
.ws40{word-spacing:2.135981pt;}
.wsf3{word-spacing:2.242249pt;}
.ws52{word-spacing:2.295383pt;}
.ws150{word-spacing:2.319309pt;}
.ws190{word-spacing:2.367130pt;}
.ws4f{word-spacing:2.401651pt;}
.ws17e{word-spacing:2.414950pt;}
.ws136{word-spacing:2.454785pt;}
.ws10e{word-spacing:2.503674pt;}
.wse2{word-spacing:2.507919pt;}
.ws46{word-spacing:2.561052pt;}
.wsbd{word-spacing:2.614186pt;}
.ws167{word-spacing:2.654054pt;}
.ws21{word-spacing:2.701875pt;}
.ws7f{word-spacing:2.720454pt;}
.ws1e4{word-spacing:2.724432pt;}
.ws18e{word-spacing:2.728615pt;}
.ws147{word-spacing:2.749696pt;}
.ws118{word-spacing:2.773588pt;}
.ws166{word-spacing:2.797517pt;}
.ws164{word-spacing:2.813387pt;}
.ws2d{word-spacing:2.879856pt;}
.ws1c{word-spacing:2.893158pt;}
.ws3d{word-spacing:2.932989pt;}
.ws1d1{word-spacing:2.940979pt;}
.ws102{word-spacing:2.944870pt;}
.wsb3{word-spacing:2.953815pt;}
.wsb2{word-spacing:2.962202pt;}
.ws97{word-spacing:2.986123pt;}
.ws6e{word-spacing:3.039257pt;}
.ws5d{word-spacing:3.092391pt;}
.ws80{word-spacing:3.122698pt;}
.ws180{word-spacing:3.132262pt;}
.wsa7{word-spacing:3.145525pt;}
.ws1e1{word-spacing:3.189647pt;}
.ws1e8{word-spacing:3.227904pt;}
.ws1a8{word-spacing:3.275725pt;}
.wsfd{word-spacing:3.304927pt;}
.ws195{word-spacing:3.323546pt;}
.ws121{word-spacing:3.358060pt;}
.ws1ce{word-spacing:3.371366pt;}
.ws13e{word-spacing:3.411194pt;}
.ws127{word-spacing:3.464328pt;}
.ws1c0{word-spacing:3.467008pt;}
.ws1cc{word-spacing:3.509673pt;}
.ws3c{word-spacing:3.517462pt;}
.ws17{word-spacing:3.562650pt;}
.ws5a{word-spacing:3.570596pt;}
.ws1b8{word-spacing:3.610470pt;}
.ws81{word-spacing:3.623730pt;}
.ws20{word-spacing:3.658291pt;}
.ws116{word-spacing:3.676864pt;}
.ws77{word-spacing:3.729997pt;}
.ws75{word-spacing:3.783131pt;}
.ws1b9{word-spacing:3.801754pt;}
.ws193{word-spacing:3.859139pt;}
.ws32{word-spacing:3.889399pt;}
.ws1d3{word-spacing:3.906959pt;}
.wsb1{word-spacing:3.942533pt;}
.ws38{word-spacing:3.995667pt;}
.wsad{word-spacing:4.044868pt;}
.wsae{word-spacing:4.048801pt;}
.ws1f{word-spacing:4.088678pt;}
.ws177{word-spacing:4.098243pt;}
.ws48{word-spacing:4.101935pt;}
.ws1e{word-spacing:4.136499pt;}
.ws19e{word-spacing:4.184320pt;}
.ws98{word-spacing:4.208202pt;}
.ws7e{word-spacing:4.261336pt;}
.ws18a{word-spacing:4.279962pt;}
.ws24{word-spacing:4.314470pt;}
.ws188{word-spacing:4.327782pt;}
.ws7d{word-spacing:4.420738pt;}
.ws155{word-spacing:4.423424pt;}
.wsc6{word-spacing:4.437707pt;}
.ws119{word-spacing:4.473872pt;}
.ws1ca{word-spacing:4.519066pt;}
.wsb0{word-spacing:4.527005pt;}
.ws42{word-spacing:4.580139pt;}
.ws151{word-spacing:4.662528pt;}
.ws17f{word-spacing:4.719913pt;}
.ws6b{word-spacing:4.792675pt;}
.ws1df{word-spacing:4.805990pt;}
.ws3f{word-spacing:4.845809pt;}
.ws1c9{word-spacing:4.853811pt;}
.ws11b{word-spacing:4.898943pt;}
.ws1c2{word-spacing:4.949453pt;}
.wse6{word-spacing:4.952076pt;}
.ws16b{word-spacing:5.006838pt;}
.ws186{word-spacing:5.054659pt;}
.ws117{word-spacing:5.058344pt;}
.ws165{word-spacing:5.102479pt;}
.ws5f{word-spacing:5.111478pt;}
.ws1ba{word-spacing:5.140736pt;}
.ws44{word-spacing:5.217746pt;}
.ws11d{word-spacing:5.270880pt;}
.ws18b{word-spacing:5.284198pt;}
.ws9f{word-spacing:5.324013pt;}
.ws1b2{word-spacing:5.332019pt;}
.ws73{word-spacing:5.377147pt;}
.ws62{word-spacing:5.430281pt;}
.ws198{word-spacing:5.475482pt;}
.ws41{word-spacing:5.483415pt;}
.wsf6{word-spacing:5.505316pt;}
.ws1a9{word-spacing:5.532867pt;}
.ws7a{word-spacing:5.536549pt;}
.ws1da{word-spacing:5.571123pt;}
.ws1cd{word-spacing:5.628508pt;}
.wscc{word-spacing:5.636127pt;}
.wsaf{word-spacing:5.642817pt;}
.wse9{word-spacing:5.651586pt;}
.wsea{word-spacing:5.675275pt;}
.ws9e{word-spacing:5.695951pt;}
.ws1bf{word-spacing:5.724150pt;}
.ws58{word-spacing:5.749084pt;}
.ws139{word-spacing:5.780207pt;}
.ws11c{word-spacing:5.802218pt;}
.wsfe{word-spacing:5.855352pt;}
.wsc0{word-spacing:5.908486pt;}
.wse5{word-spacing:5.920374pt;}
.ws63{word-spacing:5.961620pt;}
.ws176{word-spacing:6.001510pt;}
.wsc8{word-spacing:6.011735pt;}
.wsc9{word-spacing:6.014754pt;}
.ws5b{word-spacing:6.067888pt;}
.ws45{word-spacing:6.121021pt;}
.ws93{word-spacing:6.174155pt;}
.ws135{word-spacing:6.227289pt;}
.ws185{word-spacing:6.250179pt;}
.ws4b{word-spacing:6.280423pt;}
.ws3a{word-spacing:6.333557pt;}
.ws162{word-spacing:6.384077pt;}
.ws43{word-spacing:6.386691pt;}
.ws1a4{word-spacing:6.431898pt;}
.ws189{word-spacing:6.441462pt;}
.ws1b{word-spacing:6.479718pt;}
.ws2a{word-spacing:6.492959pt;}
.ws1a{word-spacing:6.527539pt;}
.wse7{word-spacing:6.546092pt;}
.ws2f{word-spacing:6.599226pt;}
.ws3b{word-spacing:6.652360pt;}
.ws16{word-spacing:6.718822pt;}
.ws12e{word-spacing:6.811762pt;}
.ws12f{word-spacing:6.830126pt;}
.wscd{word-spacing:6.864896pt;}
.ws17b{word-spacing:6.957926pt;}
.ws128{word-spacing:6.971163pt;}
.ws112{word-spacing:7.024297pt;}
.ws111{word-spacing:7.054051pt;}
.ws82{word-spacing:7.077431pt;}
.ws1b4{word-spacing:7.101389pt;}
.ws2{word-spacing:7.183699pt;}
.ws5{word-spacing:7.289967pt;}
.ws14{word-spacing:7.292672pt;}
.ws1c7{word-spacing:7.340493pt;}
.ws6{word-spacing:7.343100pt;}
.ws16d{word-spacing:7.388314pt;}
.ws37{word-spacing:7.396234pt;}
.ws69{word-spacing:7.449368pt;}
.ws9d{word-spacing:7.502502pt;}
.ws12{word-spacing:7.541340pt;}
.ws8e{word-spacing:7.555636pt;}
.ws33{word-spacing:7.608770pt;}
.wsd7{word-spacing:7.627418pt;}
.ws1de{word-spacing:7.675238pt;}
.wsf7{word-spacing:7.715037pt;}
.ws18{word-spacing:7.770880pt;}
.ws28{word-spacing:7.821305pt;}
.ws15d{word-spacing:7.914342pt;}
.ws1c3{word-spacing:7.962163pt;}
.ws17c{word-spacing:8.012547pt;}
.ws124{word-spacing:8.014051pt;}
.ws9a{word-spacing:8.033841pt;}
.ws59{word-spacing:8.086975pt;}
.ws4a{word-spacing:8.193242pt;}
.ws130{word-spacing:8.244287pt;}
.ws3{word-spacing:8.246376pt;}
.wsbf{word-spacing:8.334236pt;}
.ws1d{word-spacing:8.344730pt;}
.wsa2{word-spacing:8.352644pt;}
.ws163{word-spacing:8.392550pt;}
.ws1a5{word-spacing:8.402115pt;}
.wsfa{word-spacing:8.405778pt;}
.ws13a{word-spacing:8.458912pt;}
.ws18f{word-spacing:8.497756pt;}
.ws31{word-spacing:8.512045pt;}
.ws79{word-spacing:8.565179pt;}
.wsca{word-spacing:8.671447pt;}
.ws14e{word-spacing:8.679475pt;}
.ws1dd{word-spacing:8.689039pt;}
.ws30{word-spacing:8.724581pt;}
.ws14c{word-spacing:8.822938pt;}
.ws70{word-spacing:8.830849pt;}
.wsf5{word-spacing:8.852106pt;}
.wsf4{word-spacing:8.857710pt;}
.ws17d{word-spacing:8.880323pt;}
.ws64{word-spacing:8.883983pt;}
.ws184{word-spacing:8.918579pt;}
.ws138{word-spacing:8.937116pt;}
.ws7c{word-spacing:8.990250pt;}
.wsd{word-spacing:9.023785pt;}
.ws122{word-spacing:9.043384pt;}
.ws10{word-spacing:9.071606pt;}
.wsb9{word-spacing:9.096518pt;}
.ws9c{word-spacing:9.149652pt;}
.ws1c4{word-spacing:9.157683pt;}
.ws2e{word-spacing:9.202786pt;}
.ws11{word-spacing:9.215068pt;}
.ws1c6{word-spacing:9.262889pt;}
.ws132{word-spacing:9.309053pt;}
.ws133{word-spacing:9.320793pt;}
.ws94{word-spacing:9.362187pt;}
.ws19c{word-spacing:9.396787pt;}
.ws1a6{word-spacing:9.444608pt;}
.ws83{word-spacing:9.574723pt;}
.ws1bb{word-spacing:9.588070pt;}
.ws154{word-spacing:9.683712pt;}
.ws5c{word-spacing:9.734124pt;}
.ws66{word-spacing:9.787258pt;}
.wscf{word-spacing:9.840392pt;}
.wsb{word-spacing:9.980201pt;}
.ws85{word-spacing:9.999794pt;}
.ws99{word-spacing:10.052928pt;}
.ws8f{word-spacing:10.212329pt;}
.ws1e2{word-spacing:10.305382pt;}
.wsbe{word-spacing:10.318597pt;}
.ws27{word-spacing:10.371731pt;}
.ws16e{word-spacing:10.401024pt;}
.ws14d{word-spacing:10.458409pt;}
.ws90{word-spacing:10.477999pt;}
.ws50{word-spacing:10.531132pt;}
.ws11e{word-spacing:10.637400pt;}
.wsc{word-spacing:10.745334pt;}
.ws183{word-spacing:10.831411pt;}
.ws1c5{word-spacing:10.936617pt;}
.ws96{word-spacing:10.956203pt;}
.ws47{word-spacing:11.009337pt;}
.ws156{word-spacing:11.022694pt;}
.ws78{word-spacing:11.062471pt;}
.wsa8{word-spacing:11.115605pt;}
.ws19d{word-spacing:11.175721pt;}
.ws1bc{word-spacing:11.319183pt;}
.wsa0{word-spacing:11.328140pt;}
.ws3e{word-spacing:11.381274pt;}
.wsa4{word-spacing:11.474264pt;}
.ws169{word-spacing:11.548723pt;}
.ws9b{word-spacing:11.593810pt;}
.ws5e{word-spacing:11.646944pt;}
.wsf9{word-spacing:11.753211pt;}
.wse{word-spacing:11.797391pt;}
.ws173{word-spacing:11.979110pt;}
.ws16f{word-spacing:12.084316pt;}
.ws143{word-spacing:12.313856pt;}
.wsa{word-spacing:12.371241pt;}
.ws61{word-spacing:12.390818pt;}
.wsf{word-spacing:12.466883pt;}
.ws12a{word-spacing:12.497085pt;}
.ws9{word-spacing:12.514703pt;}
.ws1ea{word-spacing:12.600781pt;}
.ws157{word-spacing:12.610345pt;}
.ws1e9{word-spacing:12.648602pt;}
.ws1e6{word-spacing:12.696422pt;}
.ws16c{word-spacing:12.935526pt;}
.ws1e5{word-spacing:13.126810pt;}
.ws60{word-spacing:13.134692pt;}
.ws16a{word-spacing:13.136374pt;}
.ws1bd{word-spacing:13.174630pt;}
.ws158{word-spacing:13.270272pt;}
.ws1b3{word-spacing:13.318093pt;}
.ws1db{word-spacing:13.327657pt;}
.ws23{word-spacing:13.506629pt;}
.ws159{word-spacing:13.509376pt;}
.ws174{word-spacing:13.518940pt;}
.ws170{word-spacing:13.605018pt;}
.ws54{word-spacing:13.612897pt;}
.ws84{word-spacing:13.772298pt;}
.ws1e7{word-spacing:14.188431pt;}
.ws1b1{word-spacing:14.322330pt;}
.ws19f{word-spacing:14.465792pt;}
.ws144{word-spacing:14.609254pt;}
.ws53{word-spacing:14.675574pt;}
.ws1a2{word-spacing:14.714460pt;}
.ws1a3{word-spacing:14.991821pt;}
.ws1d8{word-spacing:15.517850pt;}
.ws1c1{word-spacing:15.565670pt;}
.ws1e3{word-spacing:15.613491pt;}
.ws1ad{word-spacing:15.661312pt;}
.ws1b0{word-spacing:15.670876pt;}
.ws1a1{word-spacing:15.903514pt;}
.ws145{word-spacing:15.909980pt;}
.ws196{word-spacing:15.948237pt;}
.ws179{word-spacing:16.043878pt;}
.ws161{word-spacing:16.187341pt;}
.wsa5{word-spacing:16.322724pt;}
.ws1ac{word-spacing:16.569907pt;}
.ws1af{word-spacing:17.240073pt;}
.ws19b{word-spacing:17.335040pt;}
.ws1a0{word-spacing:17.861069pt;}
.ws88{word-spacing:17.863606pt;}
.ws11f{word-spacing:18.023008pt;}
.wsd0{word-spacing:18.026746pt;}
.ws1ae{word-spacing:18.100173pt;}
.ws14f{word-spacing:18.243635pt;}
.ws87{word-spacing:18.341811pt;}
.ws141{word-spacing:19.510756pt;}
.ws19a{word-spacing:19.821722pt;}
.wsbc{word-spacing:19.935827pt;}
.wsed{word-spacing:20.423629pt;}
.wse8{word-spacing:20.682630pt;}
.wsf1{word-spacing:20.694582pt;}
.wsdb{word-spacing:23.599565pt;}
.ws10d{word-spacing:23.654311pt;}
.ws0{word-spacing:23.846639pt;}
.wsf2{word-spacing:28.862113pt;}
.wsec{word-spacing:30.465140pt;}
.ws142{word-spacing:31.200207pt;}
.wsef{word-spacing:31.276299pt;}
.ws110{word-spacing:31.402833pt;}
.wsdf{word-spacing:52.335185pt;}
.wsd6{word-spacing:56.739379pt;}
.wse3{word-spacing:59.581595pt;}
.wsbb{word-spacing:107.001194pt;}
.wsd5{word-spacing:120.532326pt;}
.wsb6{word-spacing:128.966705pt;}
.wsc1{word-spacing:131.309976pt;}
.wsde{word-spacing:132.822272pt;}
.wsda{word-spacing:145.112218pt;}
.ws10f{word-spacing:145.765926pt;}
.ws10c{word-spacing:217.482715pt;}
._3d{margin-left:-140.097264pt;}
._3c{margin-left:-128.207945pt;}
._21{margin-left:-30.524267pt;}
._26{margin-left:-29.574933pt;}
._4d{margin-left:-25.578795pt;}
._4{margin-left:-24.590340pt;}
._4a{margin-left:-22.842402pt;}
._b{margin-left:-20.090079pt;}
._5{margin-left:-4.410111pt;}
._6{margin-left:-3.044591pt;}
._0{margin-left:-1.976593pt;}
._3{margin-left:-1.000614pt;}
._10{width:0.998903pt;}
._1{width:1.976593pt;}
._d{width:2.975497pt;}
._19{width:3.927360pt;}
._25{width:4.912884pt;}
._16{width:7.398134pt;}
._4b{width:11.176216pt;}
._49{width:12.300080pt;}
._17{width:13.695285pt;}
._11{width:14.834989pt;}
._12{width:16.588406pt;}
._3a{width:17.500532pt;}
._3b{width:18.757711pt;}
._9{width:20.244139pt;}
._c{width:21.519360pt;}
._2{width:22.998988pt;}
._8{width:24.372668pt;}
._a{width:25.865710pt;}
._7{width:27.481020pt;}
._3e{width:28.532886pt;}
._4c{width:29.468210pt;}
._14{width:30.392572pt;}
._13{width:31.350692pt;}
._1b{width:32.730462pt;}
._f{width:34.649607pt;}
._46{width:35.918494pt;}
._e{width:37.767539pt;}
._47{width:39.437274pt;}
._1f{width:40.427982pt;}
._1a{width:41.550684pt;}
._18{width:43.941708pt;}
._1d{width:45.484300pt;}
._3f{width:46.479783pt;}
._1c{width:47.395409pt;}
._20{width:48.532210pt;}
._1e{width:49.573898pt;}
._35{width:56.262426pt;}
._15{width:58.766057pt;}
._36{width:63.099108pt;}
._22{width:66.737671pt;}
._2f{width:69.148877pt;}
._28{width:77.660979pt;}
._29{width:93.325167pt;}
._30{width:97.267507pt;}
._39{width:104.833370pt;}
._48{width:108.288530pt;}
._31{width:109.605274pt;}
._2d{width:114.578637pt;}
._38{width:120.096465pt;}
._27{width:121.261825pt;}
._2e{width:129.403085pt;}
._33{width:134.137344pt;}
._37{width:135.761222pt;}
._2a{width:146.427290pt;}
._42{width:148.885306pt;}
._24{width:152.829002pt;}
._43{width:155.731594pt;}
._2b{width:158.765056pt;}
._23{width:163.808097pt;}
._32{width:166.189004pt;}
._45{width:167.714430pt;}
._2c{width:170.959360pt;}
._41{width:172.852759pt;}
._34{width:180.223583pt;}
._44{width:194.757231pt;}
._40{width:221.812328pt;}
.fs16{font-size:16.686554pt;}
.fs15{font-size:24.099625pt;}
.fs5{font-size:26.566933pt;}
.fsd{font-size:26.675903pt;}
.fsf{font-size:28.354202pt;}
.fs1d{font-size:28.476441pt;}
.fs7{font-size:29.420084pt;}
.fs3{font-size:31.880533pt;}
.fs1e{font-size:32.361547pt;}
.fs25{font-size:33.749975pt;}
.fs2a{font-size:34.202927pt;}
.fs27{font-size:34.204090pt;}
.fs9{font-size:35.179618pt;}
.fs23{font-size:36.069127pt;}
.fs14{font-size:36.551098pt;}
.fs2{font-size:37.193600pt;}
.fsb{font-size:37.312484pt;}
.fs21{font-size:38.696927pt;}
.fse{font-size:40.257835pt;}
.fs28{font-size:42.153813pt;}
.fs1c{font-size:42.452962pt;}
.fs2b{font-size:42.507200pt;}
.fs6{font-size:43.916380pt;}
.fs4{font-size:47.820800pt;}
.fs29{font-size:48.175787pt;}
.fs10{font-size:53.047802pt;}
.fs1{font-size:53.133867pt;}
.fs12{font-size:54.674545pt;}
.fs1b{font-size:55.027477pt;}
.fs26{font-size:55.903899pt;}
.fs8{font-size:56.430257pt;}
.fs18{font-size:56.978476pt;}
.fs11{font-size:57.057138pt;}
.fs19{font-size:57.437440pt;}
.fs22{font-size:57.934643pt;}
.fs1f{font-size:58.351597pt;}
.fsa{font-size:59.116600pt;}
.fs24{font-size:60.168276pt;}
.fs13{font-size:61.052384pt;}
.fs20{font-size:61.244964pt;}
.fs1a{font-size:61.855705pt;}
.fs17{font-size:61.862345pt;}
.fsc{font-size:62.242368pt;}
.fs0{font-size:63.761067pt;}
.y0{bottom:0.000000pt;}
.y190{bottom:0.037774pt;}
.y179{bottom:0.839567pt;}
.yf2{bottom:2.011269pt;}
.y13a{bottom:3.184591pt;}
.y194{bottom:3.561714pt;}
.y1ae{bottom:4.146363pt;}
.y151{bottom:4.220227pt;}
.y1a1{bottom:4.608114pt;}
.y1a7{bottom:4.661750pt;}
.y129{bottom:6.620587pt;}
.y178{bottom:6.672276pt;}
.yf1{bottom:8.045040pt;}
.y193{bottom:9.092829pt;}
.y181{bottom:22.417794pt;}
.y1ad{bottom:22.965029pt;}
.y145{bottom:23.098267pt;}
.y1a0{bottom:23.426781pt;}
.y1a6{bottom:23.480417pt;}
.y12e{bottom:23.674862pt;}
.y11f{bottom:23.842476pt;}
.y169{bottom:25.054151pt;}
.ye8{bottom:25.917806pt;}
.y182{bottom:30.463047pt;}
.y120{bottom:31.887729pt;}
.y16a{bottom:33.538085pt;}
.ye9{bottom:38.945263pt;}
.y19f{bottom:46.367227pt;}
.y146{bottom:46.394571pt;}
.y1ac{bottom:54.428589pt;}
.y12f{bottom:54.473120pt;}
.y183{bottom:62.560284pt;}
.y1a5{bottom:62.895289pt;}
.y19e{bottom:64.433147pt;}
.y16b{bottom:67.297103pt;}
.y147{bottom:70.393781pt;}
.y1ab{bottom:72.494509pt;}
.y121{bottom:77.854659pt;}
.yea{bottom:81.547354pt;}
.y19d{bottom:82.499067pt;}
.y1af{bottom:88.262674pt;}
.y1a8{bottom:88.896742pt;}
.y1a2{bottom:89.999043pt;}
.y36{bottom:91.257333pt;}
.y150{bottom:91.581369pt;}
.yae{bottom:93.913333pt;}
.y84{bottom:93.914667pt;}
.y148{bottom:94.392991pt;}
.y275{bottom:94.577333pt;}
.y184{bottom:94.615619pt;}
.y130{bottom:99.937225pt;}
.y16c{bottom:101.056130pt;}
.yef{bottom:104.949372pt;}
.y18e{bottom:104.965517pt;}
.y175{bottom:105.654814pt;}
.y35{bottom:107.197333pt;}
.y237{bottom:107.861333pt;}
.y192{bottom:108.067719pt;}
.y139{bottom:108.275703pt;}
.y274{bottom:108.525333pt;}
.y14e{bottom:108.852767pt;}
.y128{bottom:109.320835pt;}
.yad{bottom:109.853333pt;}
.y83{bottom:109.854667pt;}
.yf0{bottom:114.595619pt;}
.y174{bottom:114.887218pt;}
.y18d{bottom:115.189697pt;}
.y176{bottom:116.257702pt;}
.y149{bottom:118.392202pt;}
.y152{bottom:118.693447pt;}
.yee{bottom:118.847556pt;}
.y14f{bottom:119.396353pt;}
.y236{bottom:121.809333pt;}
.y273{bottom:122.473333pt;}
.y34{bottom:123.137333pt;}
.y122{bottom:123.821597pt;}
.yeb{bottom:124.149446pt;}
.y18c{bottom:125.413884pt;}
.y177{bottom:125.579668pt;}
.y82{bottom:125.794667pt;}
.y185{bottom:126.712857pt;}
.y13b{bottom:132.453489pt;}
.y16d{bottom:134.815148pt;}
.y18b{bottom:135.638072pt;}
.y235{bottom:135.757333pt;}
.y272{bottom:136.421333pt;}
.y127{bottom:136.685632pt;}
.y4c{bottom:139.077333pt;}
.y33{bottom:139.078667pt;}
.y81{bottom:141.734667pt;}
.y14a{bottom:142.491827pt;}
.y1e1{bottom:145.104000pt;}
.y126{bottom:145.401331pt;}
.y18a{bottom:145.862256pt;}
.y138{bottom:147.328842pt;}
.y234{bottom:149.705333pt;}
.y271{bottom:150.368000pt;}
.y134{bottom:151.309569pt;}
.y137{bottom:153.278983pt;}
.y125{bottom:154.117030pt;}
.y32{bottom:155.018667pt;}
.y189{bottom:156.086444pt;}
.y80{bottom:157.674667pt;}
.ye6{bottom:157.676000pt;}
.y186{bottom:158.768195pt;}
.y173{bottom:158.808799pt;}
.y1e0{bottom:159.050667pt;}
.y136{bottom:160.779512pt;}
.y124{bottom:162.832729pt;}
.y233{bottom:163.652000pt;}
.y14d{bottom:163.679414pt;}
.y270{bottom:164.316000pt;}
.y143{bottom:166.180000pt;}
.y188{bottom:166.310628pt;}
.y14b{bottom:166.491037pt;}
.yec{bottom:166.705830pt;}
.y172{bottom:167.557867pt;}
.y16e{bottom:168.574170pt;}
.y123{bottom:169.788527pt;}
.y31{bottom:170.958667pt;}
.yf6{bottom:172.785313pt;}
.y153{bottom:173.419679pt;}
.y7f{bottom:173.614667pt;}
.ye5{bottom:173.616000pt;}
.y1b7{bottom:174.749333pt;}
.y171{bottom:176.306930pt;}
.y4b{bottom:176.437333pt;}
.y187{bottom:176.534814pt;}
.y116{bottom:177.244000pt;}
.y232{bottom:177.600000pt;}
.y26f{bottom:178.264000pt;}
.y135{bottom:180.473640pt;}
.yf5{bottom:180.967474pt;}
.y133{bottom:181.144077pt;}
.y132{bottom:181.479296pt;}
.y142{bottom:181.853333pt;}
.y170{bottom:185.055996pt;}
.y30{bottom:186.898667pt;}
.yf4{bottom:189.149640pt;}
.yac{bottom:189.554667pt;}
.y7e{bottom:189.556000pt;}
.y14c{bottom:190.490247pt;}
.y1b6{bottom:190.689333pt;}
.y131{bottom:190.865435pt;}
.y231{bottom:191.548000pt;}
.y26e{bottom:192.212000pt;}
.y4a{bottom:192.377333pt;}
.yf3{bottom:197.331799pt;}
.ye4{bottom:201.576000pt;}
.y16f{bottom:202.333192pt;}
.y2f{bottom:202.838667pt;}
.ye3{bottom:204.568000pt;}
.y1df{bottom:205.416000pt;}
.y7d{bottom:205.496000pt;}
.y26d{bottom:206.160000pt;}
.y1b5{bottom:206.629333pt;}
.y49{bottom:208.318667pt;}
.yed{bottom:209.307925pt;}
.y115{bottom:210.760000pt;}
.y141{bottom:212.433333pt;}
.ye1{bottom:213.680000pt;}
.y2e{bottom:218.778667pt;}
.y230{bottom:219.444000pt;}
.y26c{bottom:220.106667pt;}
.ye2{bottom:220.668000pt;}
.y1de{bottom:221.357333pt;}
.y7c{bottom:221.436000pt;}
.y48{bottom:224.258667pt;}
.y140{bottom:228.373333pt;}
.y22f{bottom:233.390667pt;}
.y26b{bottom:234.054667pt;}
.y2d{bottom:234.720000pt;}
.y1dd{bottom:237.297333pt;}
.y7b{bottom:237.376000pt;}
.y47{bottom:240.198667pt;}
.y22e{bottom:247.338667pt;}
.y26a{bottom:248.002667pt;}
.y2c{bottom:250.660000pt;}
.y1dc{bottom:253.237333pt;}
.yab{bottom:253.316000pt;}
.y19b{bottom:253.317333pt;}
.y7a{bottom:254.201333pt;}
.ye0{bottom:255.274667pt;}
.y46{bottom:256.138667pt;}
.y1b4{bottom:256.185333pt;}
.y114{bottom:258.502667pt;}
.y167{bottom:260.869333pt;}
.y22d{bottom:261.286667pt;}
.y269{bottom:261.950667pt;}
.y2b{bottom:266.600000pt;}
.y1db{bottom:269.177333pt;}
.yaa{bottom:269.256000pt;}
.y202{bottom:269.257333pt;}
.y79{bottom:270.142667pt;}
.ydf{bottom:271.214667pt;}
.y45{bottom:272.078667pt;}
.y1b3{bottom:272.126667pt;}
.y113{bottom:274.442667pt;}
.y13f{bottom:275.086667pt;}
.y22c{bottom:275.234667pt;}
.y268{bottom:275.897333pt;}
.y166{bottom:276.809333pt;}
.y2a{bottom:282.540000pt;}
.y1da{bottom:285.117333pt;}
.y201{bottom:285.197333pt;}
.y78{bottom:286.082667pt;}
.yde{bottom:287.154667pt;}
.y44{bottom:288.020000pt;}
.y1b2{bottom:288.066667pt;}
.y22b{bottom:289.181333pt;}
.y19a{bottom:289.817333pt;}
.y267{bottom:289.845333pt;}
.y112{bottom:290.382667pt;}
.y13e{bottom:291.028000pt;}
.y165{bottom:292.749333pt;}
.y29{bottom:298.480000pt;}
.y1d9{bottom:301.058667pt;}
.y200{bottom:301.137333pt;}
.y77{bottom:302.022667pt;}
.y22a{bottom:303.129333pt;}
.y266{bottom:303.793333pt;}
.y43{bottom:303.960000pt;}
.y1b1{bottom:304.006667pt;}
.ydd{bottom:304.752000pt;}
.ya9{bottom:305.706667pt;}
.y111{bottom:306.322667pt;}
.y13d{bottom:306.968000pt;}
.y164{bottom:308.689333pt;}
.y28{bottom:314.420000pt;}
.y1d8{bottom:316.998667pt;}
.y1ff{bottom:317.077333pt;}
.y265{bottom:317.741333pt;}
.y76{bottom:317.962667pt;}
.y42{bottom:319.900000pt;}
.ydc{bottom:320.692000pt;}
.y110{bottom:322.264000pt;}
.y13c{bottom:322.908000pt;}
.y163{bottom:324.629333pt;}
.y27{bottom:330.361333pt;}
.y229{bottom:331.025333pt;}
.y264{bottom:331.689333pt;}
.y1b0{bottom:332.234667pt;}
.y1d7{bottom:332.938667pt;}
.y1fe{bottom:333.017333pt;}
.y75{bottom:333.902667pt;}
.y41{bottom:335.840000pt;}
.y10f{bottom:338.204000pt;}
.y199{bottom:340.432000pt;}
.y162{bottom:340.569333pt;}
.y228{bottom:344.973333pt;}
.y263{bottom:345.636000pt;}
.y26{bottom:346.301333pt;}
.y1aa{bottom:346.381333pt;}
.y12d{bottom:347.349333pt;}
.y1d6{bottom:348.878667pt;}
.y1fd{bottom:348.957333pt;}
.y74{bottom:349.844000pt;}
.ydb{bottom:350.390667pt;}
.yd9{bottom:350.682667pt;}
.y40{bottom:351.780000pt;}
.yda{bottom:353.673333pt;}
.y10e{bottom:354.144000pt;}
.y198{bottom:356.372000pt;}
.y161{bottom:356.510667pt;}
.ya8{bottom:358.445333pt;}
.y227{bottom:358.920000pt;}
.y262{bottom:359.584000pt;}
.y25{bottom:362.241333pt;}
.yd8{bottom:362.785333pt;}
.y1d5{bottom:364.818667pt;}
.y1fc{bottom:364.898667pt;}
.y73{bottom:365.784000pt;}
.y3f{bottom:367.720000pt;}
.y10d{bottom:370.084000pt;}
.y197{bottom:372.312000pt;}
.y160{bottom:372.450667pt;}
.y226{bottom:372.868000pt;}
.y261{bottom:373.532000pt;}
.ya7{bottom:374.386667pt;}
.y24{bottom:378.181333pt;}
.y1d4{bottom:380.758667pt;}
.y1fb{bottom:380.838667pt;}
.y72{bottom:381.724000pt;}
.y3e{bottom:383.661333pt;}
.y10c{bottom:386.024000pt;}
.y225{bottom:386.816000pt;}
.y260{bottom:387.480000pt;}
.y196{bottom:388.252000pt;}
.y15f{bottom:388.390667pt;}
.ya6{bottom:390.326667pt;}
.y23{bottom:394.121333pt;}
.y1d3{bottom:396.700000pt;}
.y1fa{bottom:396.778667pt;}
.y71{bottom:397.664000pt;}
.y3d{bottom:399.601333pt;}
.y224{bottom:400.764000pt;}
.y25f{bottom:401.426667pt;}
.y10b{bottom:401.964000pt;}
.yd7{bottom:403.833333pt;}
.y195{bottom:404.192000pt;}
.y15e{bottom:404.330667pt;}
.ya5{bottom:406.266667pt;}
.y22{bottom:410.061333pt;}
.y1d2{bottom:412.640000pt;}
.y1f9{bottom:412.718667pt;}
.y70{bottom:413.604000pt;}
.y223{bottom:414.710667pt;}
.y25e{bottom:415.374667pt;}
.y10a{bottom:418.576000pt;}
.yd6{bottom:419.773333pt;}
.y15d{bottom:420.270667pt;}
.y3c{bottom:421.021333pt;}
.ya4{bottom:422.206667pt;}
.y21{bottom:426.002667pt;}
.y1d1{bottom:428.580000pt;}
.y180{bottom:428.634667pt;}
.y1f8{bottom:428.658667pt;}
.y25d{bottom:429.322667pt;}
.y6f{bottom:430.430667pt;}
.y109{bottom:434.516000pt;}
.yd5{bottom:435.713333pt;}
.y3b{bottom:436.961333pt;}
.ya3{bottom:438.146667pt;}
.y20{bottom:441.942667pt;}
.y222{bottom:442.606667pt;}
.y25c{bottom:443.270667pt;}
.y1d0{bottom:444.520000pt;}
.y1f7{bottom:444.598667pt;}
.y6e{bottom:446.370667pt;}
.yd4{bottom:447.924000pt;}
.y108{bottom:450.456000pt;}
.yd3{bottom:450.580000pt;}
.y3a{bottom:452.901333pt;}
.ya2{bottom:454.086667pt;}
.yd0{bottom:455.161333pt;}
.y221{bottom:456.554667pt;}
.y25b{bottom:457.218667pt;}
.y1f{bottom:457.882667pt;}
.yd2{bottom:459.278667pt;}
.y1cf{bottom:460.460000pt;}
.y1f6{bottom:460.540000pt;}
.yd1{bottom:461.936000pt;}
.y6d{bottom:462.310667pt;}
.y107{bottom:466.396000pt;}
.y39{bottom:468.841333pt;}
.ya1{bottom:470.028000pt;}
.y220{bottom:470.502667pt;}
.y25a{bottom:471.165333pt;}
.ycf{bottom:474.136000pt;}
.y1ce{bottom:476.400000pt;}
.y1f5{bottom:476.480000pt;}
.y6c{bottom:478.250667pt;}
.y106{bottom:482.336000pt;}
.y15c{bottom:482.665333pt;}
.y21f{bottom:484.449333pt;}
.y38{bottom:484.781333pt;}
.y259{bottom:485.113333pt;}
.ya0{bottom:485.968000pt;}
.yce{bottom:490.076000pt;}
.y1cd{bottom:492.341333pt;}
.y1f4{bottom:492.420000pt;}
.y6b{bottom:494.190667pt;}
.y105{bottom:498.277333pt;}
.y21e{bottom:498.397333pt;}
.y15b{bottom:498.605333pt;}
.y258{bottom:499.061333pt;}
.y37{bottom:500.721333pt;}
.y1e{bottom:500.722667pt;}
.y9f{bottom:501.908000pt;}
.y1cc{bottom:508.281333pt;}
.y1f3{bottom:508.360000pt;}
.y6a{bottom:510.130667pt;}
.y21d{bottom:512.345333pt;}
.y257{bottom:513.009333pt;}
.y15a{bottom:514.545333pt;}
.y18f{bottom:517.764349pt;}
.y9e{bottom:517.848000pt;}
.ycc{bottom:519.072000pt;}
.ycd{bottom:522.064000pt;}
.y1cb{bottom:524.221333pt;}
.y1f2{bottom:524.300000pt;}
.y104{bottom:525.262667pt;}
.y101{bottom:525.556000pt;}
.y69{bottom:526.072000pt;}
.y21c{bottom:526.293333pt;}
.y256{bottom:526.956000pt;}
.y280{bottom:526.957333pt;}
.y191{bottom:527.819000pt;}
.y103{bottom:528.546667pt;}
.y159{bottom:530.485333pt;}
.ycb{bottom:531.174667pt;}
.y9d{bottom:533.788000pt;}
.y100{bottom:537.658667pt;}
.y282{bottom:538.912000pt;}
.y21b{bottom:540.240000pt;}
.y1ca{bottom:540.573333pt;}
.y255{bottom:540.904000pt;}
.y27f{bottom:540.905333pt;}
.y68{bottom:542.012000pt;}
.y1d{bottom:542.897333pt;}
.y158{bottom:546.425333pt;}
.y102{bottom:546.645333pt;}
.y9c{bottom:549.729333pt;}
.y281{bottom:552.860000pt;}
.y21a{bottom:554.188000pt;}
.y254{bottom:554.852000pt;}
.y1a9{bottom:555.222667pt;}
.y1c9{bottom:556.513333pt;}
.y1c{bottom:556.845333pt;}
.y67{bottom:557.952000pt;}
.y1f1{bottom:559.594667pt;}
.y157{bottom:562.365333pt;}
.y9b{bottom:565.669333pt;}
.y219{bottom:568.136000pt;}
.y253{bottom:568.800000pt;}
.y1a4{bottom:569.369333pt;}
.y1b{bottom:570.792000pt;}
.yca{bottom:572.200000pt;}
.y1c8{bottom:572.453333pt;}
.y66{bottom:573.892000pt;}
.yff{bottom:575.144000pt;}
.y156{bottom:578.306667pt;}
.y12c{bottom:578.314667pt;}
.y9a{bottom:581.609333pt;}
.y218{bottom:582.084000pt;}
.y252{bottom:582.748000pt;}
.y1a{bottom:584.740000pt;}
.yc9{bottom:588.141333pt;}
.y1c7{bottom:588.393333pt;}
.y65{bottom:589.832000pt;}
.yfe{bottom:591.084000pt;}
.y155{bottom:594.246667pt;}
.y12b{bottom:594.256000pt;}
.y217{bottom:596.032000pt;}
.y251{bottom:596.694667pt;}
.y27e{bottom:596.696000pt;}
.y99{bottom:597.549333pt;}
.y19{bottom:598.688000pt;}
.yc8{bottom:604.081333pt;}
.y1c6{bottom:604.333333pt;}
.y64{bottom:605.772000pt;}
.y1f0{bottom:606.201333pt;}
.y216{bottom:609.978667pt;}
.y154{bottom:610.186667pt;}
.y12a{bottom:610.196000pt;}
.y250{bottom:610.642667pt;}
.y18{bottom:612.636000pt;}
.y98{bottom:613.489333pt;}
.yc7{bottom:620.021333pt;}
.y1c5{bottom:620.273333pt;}
.y63{bottom:621.713333pt;}
.y1ef{bottom:622.141333pt;}
.y215{bottom:623.926667pt;}
.y24f{bottom:624.590667pt;}
.y17{bottom:626.584000pt;}
.y97{bottom:631.042667pt;}
.y144{bottom:634.628000pt;}
.y11e{bottom:634.637333pt;}
.y1ee{bottom:634.798667pt;}
.y1c4{bottom:636.214667pt;}
.yc6{bottom:637.618667pt;}
.y62{bottom:637.653333pt;}
.y214{bottom:637.874667pt;}
.y1ed{bottom:638.082667pt;}
.y24e{bottom:638.538667pt;}
.yfd{bottom:639.714667pt;}
.y16{bottom:640.530667pt;}
.y96{bottom:646.982667pt;}
.y213{bottom:651.822667pt;}
.y24d{bottom:652.485333pt;}
.y27d{bottom:652.486667pt;}
.y1c3{bottom:652.565333pt;}
.yc5{bottom:653.558667pt;}
.y61{bottom:653.593333pt;}
.y1ec{bottom:654.022667pt;}
.y15{bottom:654.478667pt;}
.yfc{bottom:655.654667pt;}
.y95{bottom:662.922667pt;}
.y17f{bottom:663.213333pt;}
.y212{bottom:665.769333pt;}
.y24c{bottom:666.433333pt;}
.y27c{bottom:666.434667pt;}
.y14{bottom:668.426667pt;}
.y1c2{bottom:668.505333pt;}
.yc4{bottom:669.500000pt;}
.y60{bottom:669.533333pt;}
.y1eb{bottom:669.962667pt;}
.yfb{bottom:671.596000pt;}
.y94{bottom:678.862667pt;}
.y17e{bottom:679.153333pt;}
.y211{bottom:679.717333pt;}
.y24b{bottom:680.381333pt;}
.y13{bottom:682.374667pt;}
.y1c1{bottom:684.445333pt;}
.yc3{bottom:685.440000pt;}
.y5f{bottom:685.473333pt;}
.y1ea{bottom:685.902667pt;}
.yfa{bottom:687.536000pt;}
.y210{bottom:693.665333pt;}
.y24a{bottom:694.329333pt;}
.y93{bottom:694.802667pt;}
.y17d{bottom:695.093333pt;}
.y12{bottom:696.321333pt;}
.y1c0{bottom:700.386667pt;}
.yc2{bottom:701.380000pt;}
.y5e{bottom:701.414667pt;}
.y1e9{bottom:701.842667pt;}
.yf9{bottom:703.476000pt;}
.y20f{bottom:707.613333pt;}
.y249{bottom:708.277333pt;}
.y11{bottom:710.269333pt;}
.y92{bottom:710.744000pt;}
.y17c{bottom:711.033333pt;}
.y1bf{bottom:716.326667pt;}
.yc1{bottom:717.320000pt;}
.y5d{bottom:717.354667pt;}
.y1e8{bottom:717.782667pt;}
.yf8{bottom:719.416000pt;}
.y20e{bottom:721.561333pt;}
.y248{bottom:722.224000pt;}
.y27b{bottom:722.225333pt;}
.y91{bottom:726.684000pt;}
.y17b{bottom:726.973333pt;}
.yc0{bottom:733.260000pt;}
.y5c{bottom:733.294667pt;}
.y1e7{bottom:733.724000pt;}
.yf7{bottom:735.356000pt;}
.y20d{bottom:735.508000pt;}
.y247{bottom:736.172000pt;}
.y10{bottom:742.580000pt;}
.y90{bottom:742.624000pt;}
.y17a{bottom:742.914667pt;}
.ybf{bottom:749.200000pt;}
.y5b{bottom:749.234667pt;}
.y20c{bottom:749.456000pt;}
.y1e6{bottom:749.664000pt;}
.y246{bottom:750.120000pt;}
.yf{bottom:751.448000pt;}
.y1be{bottom:751.576000pt;}
.y8f{bottom:758.564000pt;}
.ye7{bottom:759.798667pt;}
.y20b{bottom:763.404000pt;}
.y245{bottom:764.068000pt;}
.ybe{bottom:765.141333pt;}
.y5a{bottom:765.174667pt;}
.y1e5{bottom:765.604000pt;}
.y168{bottom:767.356000pt;}
.ye{bottom:770.474667pt;}
.y20a{bottom:777.352000pt;}
.y244{bottom:778.014667pt;}
.y27a{bottom:778.016000pt;}
.y1a3{bottom:778.965333pt;}
.yd{bottom:779.344000pt;}
.ybd{bottom:781.081333pt;}
.y59{bottom:781.114667pt;}
.y1e4{bottom:781.544000pt;}
.y209{bottom:791.298667pt;}
.y243{bottom:791.962667pt;}
.y279{bottom:791.964000pt;}
.y19c{bottom:793.112000pt;}
.y8e{bottom:795.014667pt;}
.ybc{bottom:797.021333pt;}
.y58{bottom:797.056000pt;}
.y1e3{bottom:797.484000pt;}
.y1bd{bottom:797.941333pt;}
.yc{bottom:798.370667pt;}
.y208{bottom:805.246667pt;}
.y242{bottom:805.910667pt;}
.yb{bottom:807.240000pt;}
.y8d{bottom:808.962667pt;}
.ybb{bottom:812.961333pt;}
.y57{bottom:812.996000pt;}
.y1e2{bottom:813.424000pt;}
.y1bc{bottom:813.881333pt;}
.y207{bottom:819.194667pt;}
.y241{bottom:819.858667pt;}
.ya{bottom:826.265333pt;}
.yba{bottom:828.901333pt;}
.y56{bottom:828.936000pt;}
.y1bb{bottom:829.821333pt;}
.y206{bottom:833.142667pt;}
.y240{bottom:833.806667pt;}
.y9{bottom:835.134667pt;}
.yb9{bottom:844.837333pt;}
.y55{bottom:844.876000pt;}
.y1ba{bottom:845.761333pt;}
.yb5{bottom:847.493333pt;}
.y23f{bottom:847.753333pt;}
.y278{bottom:847.754667pt;}
.yb6{bottom:848.089333pt;}
.yb8{bottom:848.790667pt;}
.y8{bottom:849.082667pt;}
.yb7{bottom:856.192000pt;}
.yb4{bottom:857.304000pt;}
.y54{bottom:860.816000pt;}
.y8c{bottom:861.701333pt;}
.y7{bottom:868.109333pt;}
.y23e{bottom:875.649333pt;}
.yb3{bottom:875.985333pt;}
.y11d{bottom:876.517333pt;}
.y53{bottom:876.756000pt;}
.y6{bottom:876.977333pt;}
.y8b{bottom:877.641333pt;}
.y1b9{bottom:877.642667pt;}
.y23d{bottom:889.597333pt;}
.yb2{bottom:891.925333pt;}
.y52{bottom:892.697333pt;}
.y8a{bottom:893.581333pt;}
.y1b8{bottom:893.582667pt;}
.y5{bottom:896.004000pt;}
.y23c{bottom:903.544000pt;}
.y277{bottom:903.545333pt;}
.y4{bottom:904.873333pt;}
.y11c{bottom:905.144000pt;}
.y205{bottom:906.865333pt;}
.yb1{bottom:907.865333pt;}
.y51{bottom:908.637333pt;}
.y89{bottom:909.522667pt;}
.y23b{bottom:917.492000pt;}
.y276{bottom:917.493333pt;}
.y11b{bottom:919.092000pt;}
.y3{bottom:922.141333pt;}
.y204{bottom:922.806667pt;}
.yb0{bottom:923.805333pt;}
.y50{bottom:924.577333pt;}
.y88{bottom:925.462667pt;}
.y23a{bottom:931.440000pt;}
.y11a{bottom:933.490667pt;}
.y203{bottom:938.746667pt;}
.yaf{bottom:939.745333pt;}
.y4f{bottom:940.517333pt;}
.y87{bottom:941.402667pt;}
.y239{bottom:945.388000pt;}
.y119{bottom:947.438667pt;}
.y2{bottom:954.686667pt;}
.y4e{bottom:956.457333pt;}
.y86{bottom:957.342667pt;}
.y238{bottom:959.336000pt;}
.y118{bottom:961.793333pt;}
.y85{bottom:973.282667pt;}
.y1{bottom:973.284000pt;}
.y117{bottom:976.272000pt;}
.y4d{bottom:1007.821333pt;}
.h48{height:7.328499pt;}
.h44{height:8.793260pt;}
.h4a{height:9.550972pt;}
.h24{height:10.239137pt;}
.h37{height:17.151148pt;}
.hd{height:18.416198pt;}
.h27{height:19.498939pt;}
.h20{height:20.542344pt;}
.h31{height:20.642634pt;}
.h2d{height:20.725703pt;}
.h13{height:20.791222pt;}
.h3e{height:20.815055pt;}
.h4{height:21.519360pt;}
.h3f{height:22.596197pt;}
.h47{height:23.565656pt;}
.h22{height:24.563894pt;}
.h45{height:25.184986pt;}
.h25{height:26.053151pt;}
.h42{height:27.019827pt;}
.ha{height:27.895200pt;}
.h2c{height:28.109718pt;}
.h10{height:28.322911pt;}
.h52{height:29.170439pt;}
.h3d{height:29.642449pt;}
.h1f{height:30.664269pt;}
.h50{height:31.880400pt;}
.h55{height:33.337644pt;}
.h7{height:33.474560pt;}
.h4d{height:33.680897pt;}
.h17{height:33.725578pt;}
.h36{height:33.856169pt;}
.h5{height:34.239693pt;}
.h2e{height:35.356567pt;}
.h6{height:35.865600pt;}
.h30{height:36.440797pt;}
.h49{height:37.260167pt;}
.h21{height:37.610987pt;}
.h4f{height:38.492454pt;}
.h43{height:38.613666pt;}
.h40{height:38.891567pt;}
.h23{height:39.401445pt;}
.h2f{height:39.839701pt;}
.h8{height:39.850400pt;}
.h57{height:40.071222pt;}
.h58{height:40.076556pt;}
.h53{height:40.529951pt;}
.h41{height:40.820007pt;}
.h2a{height:41.834027pt;}
.h16{height:41.976021pt;}
.h46{height:42.012029pt;}
.h29{height:43.244533pt;}
.h1b{height:43.249867pt;}
.h26{height:43.460247pt;}
.h4e{height:44.189664pt;}
.h1{height:44.632747pt;}
.h3{height:47.175200pt;}
.h2{height:47.180533pt;}
.h56{height:47.554688pt;}
.h3b{height:50.970276pt;}
.h9{height:51.215733pt;}
.h32{height:52.600021pt;}
.h59{height:52.986400pt;}
.h33{height:56.389532pt;}
.h3a{height:57.295055pt;}
.h39{height:59.036637pt;}
.h4b{height:61.964163pt;}
.h35{height:62.752230pt;}
.h38{height:63.584742pt;}
.he{height:65.500533pt;}
.h18{height:68.799733pt;}
.hb{height:72.935200pt;}
.hf{height:74.237355pt;}
.h14{height:75.797067pt;}
.h15{height:79.175222pt;}
.h19{height:79.980556pt;}
.h1a{height:83.127200pt;}
.h28{height:87.079200pt;}
.h12{height:87.084533pt;}
.h1c{height:88.263200pt;}
.hc{height:92.984021pt;}
.h11{height:105.992021pt;}
.h1d{height:116.423222pt;}
.h54{height:190.444907pt;}
.h51{height:191.197653pt;}
.h4c{height:193.455893pt;}
.h34{height:207.361208pt;}
.h2b{height:207.877810pt;}
.h3c{height:219.212703pt;}
.h1e{height:226.769298pt;}
.h0{height:1056.000000pt;}
.w2{width:6.550594pt;}
.w5{width:7.205532pt;}
.w6{width:15.126913pt;}
.w7{width:270.988800pt;}
.w3{width:301.888221pt;}
.w1{width:302.361550pt;}
.w4{width:332.592093pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x62{left:11.979789pt;}
.x4f{left:13.961311pt;}
.x58{left:15.364918pt;}
.x63{left:17.671404pt;}
.x54{left:18.620831pt;}
.x33{left:21.032625pt;}
.x48{left:22.108249pt;}
.x55{left:23.809942pt;}
.x49{left:25.512832pt;}
.x34{left:26.719677pt;}
.x5e{left:28.205488pt;}
.x47{left:29.563857pt;}
.x31{left:31.891041pt;}
.x5b{left:35.079553pt;}
.x43{left:37.234945pt;}
.x60{left:39.174265pt;}
.x44{left:40.639529pt;}
.x42{left:44.690551pt;}
.x4e{left:49.388016pt;}
.x30{left:50.379222pt;}
.x5a{left:55.416209pt;}
.x66{left:59.316437pt;}
.x4d{left:66.583319pt;}
.x69{left:67.977632pt;}
.x13{left:72.000000pt;}
.x1a{left:73.594667pt;}
.x6f{left:78.144000pt;}
.x41{left:84.208000pt;}
.x12{left:85.284000pt;}
.x6d{left:92.034667pt;}
.x1b{left:96.718667pt;}
.x56{left:103.783303pt;}
.x1{left:112.906667pt;}
.x5c{left:114.861828pt;}
.x4c{left:122.478832pt;}
.x2b{left:124.377333pt;}
.x50{left:126.831529pt;}
.x1d{left:128.557333pt;}
.x26{left:129.868000pt;}
.x45{left:131.787568pt;}
.x6a{left:133.059493pt;}
.x67{left:134.929840pt;}
.x1c{left:136.650667pt;}
.x35{left:138.941511pt;}
.xe{left:140.638667pt;}
.x64{left:142.044412pt;}
.x10{left:145.058667pt;}
.x51{left:150.405046pt;}
.x37{left:154.542259pt;}
.xf{left:157.346667pt;}
.x9{left:158.509333pt;}
.x52{left:159.498289pt;}
.x38{left:161.739283pt;}
.x46{left:164.454335pt;}
.x3{left:169.096000pt;}
.x4{left:172.112000pt;}
.x4b{left:175.874782pt;}
.x11{left:177.469333pt;}
.xc{left:180.665333pt;}
.xb{left:181.881333pt;}
.xd{left:185.306667pt;}
.x1e{left:190.044000pt;}
.x27{left:196.866667pt;}
.x7{left:206.176000pt;}
.x2c{left:208.312000pt;}
.x24{left:210.593333pt;}
.x22{left:211.565333pt;}
.x23{left:216.313333pt;}
.x25{left:217.285333pt;}
.x4a{left:223.797529pt;}
.x8{left:227.129333pt;}
.x21{left:234.126667pt;}
.x5f{left:236.115413pt;}
.x2d{left:237.340000pt;}
.x53{left:240.694667pt;}
.x61{left:251.378976pt;}
.x1f{left:252.521333pt;}
.xa{left:254.665333pt;}
.x2e{left:256.712000pt;}
.x20{left:259.213333pt;}
.x59{left:262.000320pt;}
.x28{left:267.694667pt;}
.x6{left:271.585333pt;}
.x5{left:274.502667pt;}
.x29{left:275.964000pt;}
.x32{left:290.207748pt;}
.x2a{left:298.012000pt;}
.x57{left:302.495736pt;}
.x5d{left:319.223135pt;}
.x2{left:363.113333pt;}
.x14{left:422.685333pt;}
.x2f{left:434.893333pt;}
.x15{left:435.968000pt;}
.x70{left:447.112000pt;}
.x17{left:458.526667pt;}
.x65{left:460.653333pt;}
.x39{left:465.745333pt;}
.x68{left:476.517333pt;}
.x6e{left:487.021333pt;}
.x19{left:487.953333pt;}
.x3f{left:489.338667pt;}
.x40{left:512.605333pt;}
.x18{left:524.364000pt;}
.x6c{left:537.172000pt;}
.x3a{left:556.465333pt;}
.x6b{left:565.414667pt;}
.x3c{left:581.798667pt;}
.x36{left:582.884998pt;}
.x3b{left:614.588000pt;}
.x3d{left:677.046667pt;}
.x3e{left:685.077333pt;}
.x16{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; }
  