
    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_11a7afce3f9d260a0a510250.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.693000;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_6ec2d7370be8bc4a2171b382.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d90a1148da01f9ffb0193ad8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;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_fc1c6c4c4b3d5db8c828c4f3.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986000;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_f9f49cf9a518aa1b50cf47ef.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.494000;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_508a28c1146e9ee73096a4ad.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.927000;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_c31ec48516662382923460d5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.723000;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_bf8ac15aaa2c270bbfeb7259.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_041d4a55453339e5485dcf63.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.897000;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_aff26eab6532c1823542f496.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.943000;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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_abed036a033e787aab57a043.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_506bfa9e109e13207f866bda.woff2')format("woff");}.fff{font-family:fff;line-height:1.009000;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_b8cb1dabbdef310253cf4fdb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.703000;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_78c98459cc24ce9d66a87f07.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.006348;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_0c0a3e3fb47feea1d4ec36c0.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.000488;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_710868078f80bec1e72f4211.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.008301;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_b235931b1eed1685e1cd982e.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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_ccd26dfd5fdb81aa12f6a308.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.988281;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_b05e4a0bade3bd7be74aa787.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.489000;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_61e1957ea2ec880c088dc74e.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.006348;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_c8f9059787d590c47ee3709b.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;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_368d6c545ec6bf6571c65de6.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.008301;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_b235931b1eed1685e1cd982e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.666504;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_07a3dc21f4fae7ae593ab15c.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.988281;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_89762e611914273cf2b82eae.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.682129;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_a56378897ba4b14d6ade457b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.006348;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_dc796f2b9eb9e155a2b86f7a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000488;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_9c59975a56a1fad4cfcfc595.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.008301;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_b235931b1eed1685e1cd982e.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.666504;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_b37d63607549d42085428937.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.988281;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_89762e611914273cf2b82eae.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.682129;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_13fc9e13479223bd7df5f75d.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.006348;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_724911057139028fc0a2054b.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.000488;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_e7b484bbab4f85b0c97b93f2.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.008301;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_b235931b1eed1685e1cd982e.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.666504;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_3cd770cd1cee389c0b9dd94a.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.988281;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_a44fcde0435799ec13aff6f8.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.869000;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;}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v3{vertical-align:-11.190000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls7a{letter-spacing:-0.361800px;}
.ls9c{letter-spacing:-0.216000px;}
.ls93{letter-spacing:-0.198396px;}
.ls49{letter-spacing:-0.183967px;}
.ls81{letter-spacing:-0.174348px;}
.ls94{letter-spacing:-0.162324px;}
.ls91{letter-spacing:-0.156312px;}
.ls78{letter-spacing:-0.145800px;}
.ls2e{letter-spacing:-0.140681px;}
.ls7c{letter-spacing:-0.135000px;}
.ls37{letter-spacing:-0.129859px;}
.ls95{letter-spacing:-0.126252px;}
.ls74{letter-spacing:-0.120240px;}
.ls35{letter-spacing:-0.113627px;}
.ls39{letter-spacing:-0.108216px;}
.ls7b{letter-spacing:-0.108000px;}
.ls32{letter-spacing:-0.102805px;}
.ls2b{letter-spacing:-0.097394px;}
.ls9a{letter-spacing:-0.097200px;}
.ls96{letter-spacing:-0.096192px;}
.ls36{letter-spacing:-0.091984px;}
.ls71{letter-spacing:-0.090972px;}
.ls73{letter-spacing:-0.084168px;}
.ls28{letter-spacing:-0.081875px;}
.ls2d{letter-spacing:-0.081162px;}
.ls92{letter-spacing:-0.078156px;}
.ls33{letter-spacing:-0.075751px;}
.ls6f{letter-spacing:-0.071820px;}
.ls34{letter-spacing:-0.070340px;}
.ls26{letter-spacing:-0.064638px;}
.ls90{letter-spacing:-0.060120px;}
.ls98{letter-spacing:-0.054108px;}
.ls80{letter-spacing:-0.048096px;}
.ls7e{letter-spacing:-0.042084px;}
.ls31{letter-spacing:-0.038880px;}
.ls4b{letter-spacing:-0.037876px;}
.ls77{letter-spacing:-0.037800px;}
.ls82{letter-spacing:-0.036072px;}
.ls29{letter-spacing:-0.032465px;}
.ls72{letter-spacing:-0.030060px;}
.ls45{letter-spacing:-0.029160px;}
.ls2c{letter-spacing:-0.027054px;}
.ls2f{letter-spacing:-0.024300px;}
.ls47{letter-spacing:-0.021643px;}
.ls75{letter-spacing:-0.021600px;}
.ls43{letter-spacing:-0.019440px;}
.ls7d{letter-spacing:-0.018036px;}
.ls4e{letter-spacing:-0.016232px;}
.ls46{letter-spacing:-0.014580px;}
.ls4d{letter-spacing:-0.010822px;}
.ls99{letter-spacing:-0.010800px;}
.ls44{letter-spacing:-0.009720px;}
.ls7f{letter-spacing:-0.006012px;}
.ls2a{letter-spacing:-0.005411px;}
.ls76{letter-spacing:-0.005400px;}
.ls30{letter-spacing:-0.004860px;}
.lsd{letter-spacing:0.000000px;}
.lsa1{letter-spacing:0.000061px;}
.ls51{letter-spacing:0.000124px;}
.lsa7{letter-spacing:0.000154px;}
.lsb3{letter-spacing:0.000208px;}
.lsc6{letter-spacing:0.000447px;}
.lsb6{letter-spacing:0.000632px;}
.lsb4{letter-spacing:0.000644px;}
.ls42{letter-spacing:0.000676px;}
.lsa5{letter-spacing:0.000745px;}
.lsf{letter-spacing:0.000860px;}
.ls6b{letter-spacing:0.000990px;}
.ls50{letter-spacing:0.001029px;}
.ls24{letter-spacing:0.001036px;}
.ls4{letter-spacing:0.001080px;}
.ls9e{letter-spacing:0.001226px;}
.lsba{letter-spacing:0.001484px;}
.ls3a{letter-spacing:0.001518px;}
.lsb8{letter-spacing:0.001596px;}
.lsa4{letter-spacing:0.001773px;}
.lscd{letter-spacing:0.001819px;}
.ls8f{letter-spacing:0.002016px;}
.ls8b{letter-spacing:0.002090px;}
.lsa3{letter-spacing:0.002179px;}
.ls89{letter-spacing:0.002338px;}
.ls6e{letter-spacing:0.002401px;}
.ls6{letter-spacing:0.002573px;}
.ls9f{letter-spacing:0.002719px;}
.ls8a{letter-spacing:0.002748px;}
.ls25{letter-spacing:0.002782px;}
.lsb1{letter-spacing:0.002818px;}
.lsce{letter-spacing:0.002870px;}
.ls8c{letter-spacing:0.002872px;}
.lsa{letter-spacing:0.002940px;}
.lsa0{letter-spacing:0.003161px;}
.ls6d{letter-spacing:0.003226px;}
.ls8e{letter-spacing:0.003337px;}
.lsc{letter-spacing:0.003488px;}
.ls10{letter-spacing:0.003494px;}
.ls8d{letter-spacing:0.003562px;}
.lsac{letter-spacing:0.003859px;}
.ls1c{letter-spacing:0.004860px;}
.ls5c{letter-spacing:0.005400px;}
.ls21{letter-spacing:0.005411px;}
.ls4f{letter-spacing:0.005415px;}
.ls16{letter-spacing:0.009720px;}
.ls87{letter-spacing:0.010800px;}
.ls1f{letter-spacing:0.010822px;}
.ls62{letter-spacing:0.012024px;}
.ls15{letter-spacing:0.014580px;}
.ls86{letter-spacing:0.016200px;}
.ls40{letter-spacing:0.016232px;}
.ls55{letter-spacing:0.018036px;}
.ls19{letter-spacing:0.019440px;}
.ls5a{letter-spacing:0.021600px;}
.ls20{letter-spacing:0.021643px;}
.ls65{letter-spacing:0.024048px;}
.ls14{letter-spacing:0.024300px;}
.ls5b{letter-spacing:0.027000px;}
.ls3e{letter-spacing:0.027054px;}
.ls1e{letter-spacing:0.029160px;}
.ls64{letter-spacing:0.030060px;}
.ls22{letter-spacing:0.032465px;}
.ls1a{letter-spacing:0.034020px;}
.ls5e{letter-spacing:0.037800px;}
.ls13{letter-spacing:0.037876px;}
.ls18{letter-spacing:0.038880px;}
.ls54{letter-spacing:0.042084px;}
.ls60{letter-spacing:0.043200px;}
.ls88{letter-spacing:0.048600px;}
.ls23{letter-spacing:0.048697px;}
.ls1b{letter-spacing:0.053460px;}
.ls58{letter-spacing:0.054000px;}
.ls4c{letter-spacing:0.054108px;}
.ls3c{letter-spacing:0.058320px;}
.ls5f{letter-spacing:0.059400px;}
.ls3f{letter-spacing:0.059519px;}
.ls6c{letter-spacing:0.059776px;}
.ls83{letter-spacing:0.060120px;}
.ls4a{letter-spacing:0.064930px;}
.ls53{letter-spacing:0.066132px;}
.ls1d{letter-spacing:0.068040px;}
.ls85{letter-spacing:0.070200px;}
.ls97{letter-spacing:0.072144px;}
.ls57{letter-spacing:0.075600px;}
.ls63{letter-spacing:0.078156px;}
.ls41{letter-spacing:0.081162px;}
.ls9d{letter-spacing:0.086400px;}
.ls84{letter-spacing:0.090180px;}
.ls61{letter-spacing:0.091800px;}
.ls17{letter-spacing:0.097200px;}
.ls59{letter-spacing:0.108000px;}
.ls3d{letter-spacing:0.111780px;}
.ls12{letter-spacing:0.112039px;}
.ls52{letter-spacing:0.124488px;}
.ls79{letter-spacing:0.135000px;}
.ls56{letter-spacing:0.162324px;}
.ls27{letter-spacing:0.163750px;}
.ls5d{letter-spacing:0.178200px;}
.ls70{letter-spacing:0.181944px;}
.lsaa{letter-spacing:0.524565px;}
.lsab{letter-spacing:0.537859px;}
.lse{letter-spacing:1.275394px;}
.ls9{letter-spacing:1.861130px;}
.ls3{letter-spacing:2.983200px;}
.lsa6{letter-spacing:2.988319px;}
.ls1{letter-spacing:2.989200px;}
.lsa2{letter-spacing:2.994319px;}
.ls9b{letter-spacing:3.780000px;}
.ls38{letter-spacing:10.448255px;}
.lsb{letter-spacing:11.954850px;}
.lsb9{letter-spacing:13.175769px;}
.lsb2{letter-spacing:13.236791px;}
.lsc8{letter-spacing:13.352795px;}
.lscc{letter-spacing:13.383402px;}
.lsbb{letter-spacing:13.395330px;}
.lsc3{letter-spacing:13.412123px;}
.ls68{letter-spacing:13.444800px;}
.lsc1{letter-spacing:13.448196px;}
.lsaf{letter-spacing:13.448400px;}
.ls69{letter-spacing:13.448870px;}
.ls6a{letter-spacing:13.450800px;}
.lsb5{letter-spacing:13.454400px;}
.lsc2{letter-spacing:13.472400px;}
.lsc5{letter-spacing:13.504991px;}
.lscb{letter-spacing:13.511283px;}
.lsc7{letter-spacing:13.541355px;}
.lsbf{letter-spacing:13.626081px;}
.lsbd{letter-spacing:13.862165px;}
.lsa9{letter-spacing:14.764579px;}
.lsa8{letter-spacing:14.767646px;}
.lsc4{letter-spacing:14.838635px;}
.ls3b{letter-spacing:14.925767px;}
.ls11{letter-spacing:14.943767px;}
.lsc0{letter-spacing:15.615106px;}
.ls67{letter-spacing:16.279459px;}
.ls66{letter-spacing:16.283153px;}
.lsca{letter-spacing:16.344518px;}
.lsb0{letter-spacing:17.215106px;}
.lsbc{letter-spacing:17.938635px;}
.lsc9{letter-spacing:18.662165px;}
.ls48{letter-spacing:21.464644px;}
.lsbe{letter-spacing:22.173929px;}
.lsb7{letter-spacing:22.750400px;}
.ls0{letter-spacing:26.900567px;}
.ls2{letter-spacing:57.415200px;}
.ls8{letter-spacing:64.552800px;}
.ls5{letter-spacing:70.236600px;}
.ls7{letter-spacing:72.353510px;}
.lsad{letter-spacing:161.943754px;}
.lsae{letter-spacing:334.257754px;}
.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;}
}
.wsd1{word-spacing:-60.120000px;}
.ws44{word-spacing:-54.108000px;}
.wsd3{word-spacing:-54.000000px;}
.ws42{word-spacing:-48.600000px;}
.ws2{word-spacing:-26.899200px;}
.ws19{word-spacing:-17.394700px;}
.ws7{word-spacing:-15.655334px;}
.wsd0{word-spacing:-15.096132px;}
.ws115{word-spacing:-14.969880px;}
.ws1e0{word-spacing:-14.955955px;}
.ws2a{word-spacing:-14.943900px;}
.ws1e{word-spacing:-13.915795px;}
.wsd2{word-spacing:-13.575600px;}
.wsd4{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.449600px;}
.ws43{word-spacing:-12.218040px;}
.wscf{word-spacing:-12.151944px;}
.ws41{word-spacing:-12.150000px;}
.ws1c{word-spacing:-11.955150px;}
.ws3{word-spacing:-11.357400px;}
.ws40{word-spacing:-10.936750px;}
.wsc7{word-spacing:-5.379804px;}
.ws122{word-spacing:-5.260253px;}
.ws168{word-spacing:-4.841824px;}
.ws18d{word-spacing:-4.722272px;}
.wsf{word-spacing:-4.662497px;}
.wse2{word-spacing:-4.602721px;}
.ws181{word-spacing:-4.124516px;}
.ws191{word-spacing:-4.088678px;}
.ws180{word-spacing:-3.945190px;}
.ws1ad{word-spacing:-3.927283px;}
.ws194{word-spacing:-3.658291px;}
.ws1ba{word-spacing:-3.604493px;}
.ws1e3{word-spacing:-3.550694px;}
.ws1a7{word-spacing:-3.496896px;}
.ws1eb{word-spacing:-3.389299px;}
.ws3f{word-spacing:-3.347434px;}
.ws169{word-spacing:-3.227882px;}
.ws110{word-spacing:-3.174336px;}
.ws1b7{word-spacing:-3.174106px;}
.wse{word-spacing:-3.168107px;}
.ws111{word-spacing:-3.114216px;}
.ws192{word-spacing:-3.066509px;}
.wsdd{word-spacing:-3.012710px;}
.wscb{word-spacing:-2.929004px;}
.ws11b{word-spacing:-2.851315px;}
.ws162{word-spacing:-2.630126px;}
.ws5c{word-spacing:-2.483557px;}
.ws5b{word-spacing:-2.413217px;}
.ws1a0{word-spacing:-2.367130px;}
.wsc8{word-spacing:-2.331248px;}
.ws52{word-spacing:-2.271473px;}
.ws23{word-spacing:-2.211697px;}
.wse1{word-spacing:-2.151922px;}
.ws12a{word-spacing:-2.092176px;}
.ws38{word-spacing:-2.092146px;}
.ws12b{word-spacing:-2.086164px;}
.ws177{word-spacing:-1.972595px;}
.wsc{word-spacing:-1.908367px;}
.ws86{word-spacing:-1.853044px;}
.wsc3{word-spacing:-1.793268px;}
.ws1cd{word-spacing:-1.775347px;}
.ws1db{word-spacing:-1.721549px;}
.wscc{word-spacing:-1.673717px;}
.ws12e{word-spacing:-1.647288px;}
.ws11a{word-spacing:-1.613952px;}
.wsc6{word-spacing:-1.554166px;}
.wsa6{word-spacing:-1.472580px;}
.wsa5{word-spacing:-1.453140px;}
.ws19f{word-spacing:-1.452557px;}
.ws12f{word-spacing:-1.346688px;}
.ws1ce{word-spacing:-1.344960px;}
.wsb{word-spacing:-1.322630px;}
.ws18c{word-spacing:-1.315063px;}
.ws12d{word-spacing:-1.244484px;}
.ws7d{word-spacing:-1.222841px;}
.ws179{word-spacing:-1.195512px;}
.ws37{word-spacing:-1.135736px;}
.ws7e{word-spacing:-1.125446px;}
.ws7f{word-spacing:-1.087571px;}
.wse6{word-spacing:-1.058112px;}
.ws92{word-spacing:-1.022170px;}
.ws112{word-spacing:-1.022040px;}
.ws113{word-spacing:-0.991980px;}
.wsca{word-spacing:-0.956410px;}
.ws114{word-spacing:-0.907812px;}
.ws29{word-spacing:-0.896634px;}
.ws3a{word-spacing:-0.836858px;}
.ws66{word-spacing:-0.811620px;}
.ws67{word-spacing:-0.772740px;}
.ws10{word-spacing:-0.717307px;}
.ws15e{word-spacing:-0.657532px;}
.wsdb{word-spacing:-0.645581px;}
.ws133{word-spacing:-0.601200px;}
.ws2b{word-spacing:-0.597756px;}
.ws47{word-spacing:-0.537984px;}
.ws68{word-spacing:-0.524880px;}
.ws9b{word-spacing:-0.495720px;}
.ws9d{word-spacing:-0.456840px;}
.ws9c{word-spacing:-0.447120px;}
.ws11f{word-spacing:-0.430387px;}
.ws53{word-spacing:-0.418429px;}
.ws197{word-spacing:-0.376589px;}
.ws140{word-spacing:-0.360720px;}
.ws13{word-spacing:-0.358654px;}
.ws119{word-spacing:-0.322790px;}
.ws36{word-spacing:-0.298878px;}
.wseb{word-spacing:-0.288576px;}
.ws1a9{word-spacing:-0.268992px;}
.ws27{word-spacing:-0.239102px;}
.wsa8{word-spacing:-0.218700px;}
.ws100{word-spacing:-0.216000px;}
.wse5{word-spacing:-0.215460px;}
.ws4c{word-spacing:-0.215194px;}
.wsf6{word-spacing:-0.205200px;}
.wsa7{word-spacing:-0.194400px;}
.ws57{word-spacing:-0.193914px;}
.ws18{word-spacing:-0.179327px;}
.ws135{word-spacing:-0.174348px;}
.wsef{word-spacing:-0.172800px;}
.ws4e{word-spacing:-0.161395px;}
.wsf0{word-spacing:-0.140400px;}
.ws32{word-spacing:-0.119551px;}
.ws163{word-spacing:-0.118829px;}
.ws134{word-spacing:-0.114228px;}
.ws1{word-spacing:-0.107597px;}
.ws5e{word-spacing:-0.102805px;}
.ws164{word-spacing:-0.098539px;}
.ws101{word-spacing:-0.070200px;}
.ws17{word-spacing:-0.059776px;}
.ws51{word-spacing:-0.053798px;}
.wse4{word-spacing:-0.019152px;}
.ws56{word-spacing:-0.017237px;}
.ws1c7{word-spacing:-0.008429px;}
.ws1e4{word-spacing:-0.007728px;}
.ws1f1{word-spacing:-0.006355px;}
.ws4{word-spacing:-0.005400px;}
.ws19a{word-spacing:-0.004867px;}
.ws6{word-spacing:-0.004775px;}
.ws1b3{word-spacing:-0.004339px;}
.ws1a8{word-spacing:-0.004214px;}
.ws199{word-spacing:-0.003926px;}
.ws1b9{word-spacing:-0.003466px;}
.ws1cb{word-spacing:-0.003370px;}
.ws1da{word-spacing:-0.003312px;}
.ws1a4{word-spacing:-0.002995px;}
.wse0{word-spacing:-0.002333px;}
.ws17c{word-spacing:-0.001500px;}
.ws1ef{word-spacing:-0.000806px;}
.ws1a5{word-spacing:-0.000710px;}
.ws5{word-spacing:-0.000541px;}
.wsa{word-spacing:-0.000326px;}
.ws0{word-spacing:0.000000px;}
.wsdf{word-spacing:0.003245px;}
.ws9{word-spacing:0.003466px;}
.wsba{word-spacing:0.021643px;}
.ws127{word-spacing:0.030060px;}
.ws120{word-spacing:0.053798px;}
.wsbb{word-spacing:0.059519px;}
.ws11{word-spacing:0.059776px;}
.ws12c{word-spacing:0.078156px;}
.wsb6{word-spacing:0.102805px;}
.ws6e{word-spacing:0.106920px;}
.ws1b1{word-spacing:0.107597px;}
.ws102{word-spacing:0.108216px;}
.ws30{word-spacing:0.119551px;}
.wsa9{word-spacing:0.121500px;}
.ws73{word-spacing:0.126360px;}
.ws74{word-spacing:0.131220px;}
.ws103{word-spacing:0.132264px;}
.wsfe{word-spacing:0.135000px;}
.ws6f{word-spacing:0.150660px;}
.wsff{word-spacing:0.151200px;}
.ws70{word-spacing:0.155520px;}
.ws4b{word-spacing:0.161395px;}
.ws5d{word-spacing:0.162324px;}
.ws126{word-spacing:0.168336px;}
.ws2f{word-spacing:0.179327px;}
.wsaa{word-spacing:0.211021px;}
.ws193{word-spacing:0.215194px;}
.ws12{word-spacing:0.239102px;}
.ws91{word-spacing:0.268992px;}
.ws3b{word-spacing:0.298878px;}
.ws4a{word-spacing:0.322790px;}
.ws39{word-spacing:0.358654px;}
.ws10e{word-spacing:0.372744px;}
.ws1bc{word-spacing:0.376589px;}
.wsb7{word-spacing:0.389578px;}
.ws10f{word-spacing:0.420840px;}
.ws1bd{word-spacing:0.430387px;}
.ws64{word-spacing:0.466560px;}
.wsf8{word-spacing:0.480600px;}
.ws8f{word-spacing:0.484186px;}
.ws65{word-spacing:0.490860px;}
.ws63{word-spacing:0.510300px;}
.wsf7{word-spacing:0.534600px;}
.ws54{word-spacing:0.537980px;}
.wsf9{word-spacing:0.545400px;}
.wsd7{word-spacing:0.591782px;}
.ws55{word-spacing:0.597756px;}
.ws48{word-spacing:0.645581px;}
.ws15d{word-spacing:0.657532px;}
.wsc1{word-spacing:0.717307px;}
.ws98{word-spacing:0.753300px;}
.wsc2{word-spacing:0.777083px;}
.ws11d{word-spacing:0.806976px;}
.ws124{word-spacing:0.811620px;}
.ws9a{word-spacing:0.816480px;}
.ws104{word-spacing:0.817632px;}
.ws99{word-spacing:0.821340px;}
.ws129{word-spacing:0.871740px;}
.ws14b{word-spacing:0.874800px;}
.ws1e8{word-spacing:0.914573px;}
.ws128{word-spacing:0.931860px;}
.ws125{word-spacing:0.967932px;}
.ws14c{word-spacing:0.999000px;}
.ws174{word-spacing:1.016185px;}
.ws1ee{word-spacing:1.022170px;}
.ws121{word-spacing:1.075961px;}
.ws1d8{word-spacing:1.075968px;}
.ws17b{word-spacing:1.135736px;}
.ws17a{word-spacing:1.158246px;}
.ws1f0{word-spacing:1.183565px;}
.ws132{word-spacing:1.202400px;}
.ws131{word-spacing:1.298592px;}
.wsc9{word-spacing:1.315063px;}
.ws130{word-spacing:1.334664px;}
.ws16b{word-spacing:1.374839px;}
.ws77{word-spacing:1.379754px;}
.wsdc{word-spacing:1.398758px;}
.ws6b{word-spacing:1.433700px;}
.wscd{word-spacing:1.434614px;}
.ws94{word-spacing:1.438560px;}
.ws6c{word-spacing:1.448280px;}
.ws76{word-spacing:1.477148px;}
.wsce{word-spacing:1.494390px;}
.ws1e2{word-spacing:1.613952px;}
.ws1cc{word-spacing:1.667750px;}
.ws75{word-spacing:1.688170px;}
.ws95{word-spacing:1.783620px;}
.ws93{word-spacing:1.803060px;}
.ws3e{word-spacing:1.912819px;}
.ws161{word-spacing:1.972595px;}
.ws176{word-spacing:2.032370px;}
.ws9f{word-spacing:2.084940px;}
.ws2c{word-spacing:2.092146px;}
.ws9e{word-spacing:2.094660px;}
.wsa0{word-spacing:2.118960px;}
.ws18f{word-spacing:2.151922px;}
.ws10c{word-spacing:2.182356px;}
.ws117{word-spacing:2.205734px;}
.ws170{word-spacing:2.211697px;}
.ws10a{word-spacing:2.236464px;}
.ws1e5{word-spacing:2.259533px;}
.wse8{word-spacing:2.278548px;}
.ws22{word-spacing:2.331248px;}
.wse9{word-spacing:2.332656px;}
.ws147{word-spacing:2.332800px;}
.ws16c{word-spacing:2.391024px;}
.ws10b{word-spacing:2.422836px;}
.wsc0{word-spacing:2.450800px;}
.ws14{word-spacing:2.510575px;}
.ws116{word-spacing:2.528525px;}
.ws139{word-spacing:2.537064px;}
.ws16e{word-spacing:2.570351px;}
.ws15a{word-spacing:2.613600px;}
.ws173{word-spacing:2.630126px;}
.ws154{word-spacing:2.651400px;}
.wsf2{word-spacing:2.673000px;}
.wsf1{word-spacing:2.678400px;}
.ws1a2{word-spacing:2.689920px;}
.ws84{word-spacing:2.705400px;}
.ws148{word-spacing:2.710800px;}
.ws15c{word-spacing:2.716200px;}
.ws15b{word-spacing:2.721600px;}
.wsa1{word-spacing:2.741040px;}
.ws90{word-spacing:2.743718px;}
.ws2d{word-spacing:2.749678px;}
.wsa2{word-spacing:2.760480px;}
.ws85{word-spacing:2.781151px;}
.wsde{word-spacing:2.851315px;}
.ws1c5{word-spacing:2.905114px;}
.ws26{word-spacing:2.929004px;}
.ws109{word-spacing:2.951892px;}
.ws11e{word-spacing:2.958912px;}
.wsbc{word-spacing:2.965118px;}
.ws13c{word-spacing:2.987964px;}
.ws89{word-spacing:2.988780px;}
.ws13d{word-spacing:2.993976px;}
.wsbd{word-spacing:3.013816px;}
.ws18b{word-spacing:3.048556px;}
.ws156{word-spacing:3.056400px;}
.ws157{word-spacing:3.083400px;}
.wsc4{word-spacing:3.108331px;}
.wsc5{word-spacing:3.168107px;}
.ws190{word-spacing:3.174106px;}
.ws11c{word-spacing:3.281702px;}
.wsbf{word-spacing:3.305999px;}
.wsb5{word-spacing:3.333053px;}
.ws1af{word-spacing:3.335501px;}
.wse3{word-spacing:3.347434px;}
.ws1cf{word-spacing:3.389299px;}
.ws14d{word-spacing:3.396600px;}
.ws14e{word-spacing:3.402000px;}
.ws15{word-spacing:3.407209px;}
.wsbe{word-spacing:3.414215px;}
.ws14f{word-spacing:3.423600px;}
.ws16{word-spacing:3.466985px;}
.ws1d1{word-spacing:3.496896px;}
.ws18a{word-spacing:3.526760px;}
.ws1b8{word-spacing:3.550694px;}
.wsb0{word-spacing:3.581950px;}
.ws1a{word-spacing:3.586536px;}
.wsb1{word-spacing:3.587360px;}
.wsb4{word-spacing:3.592771px;}
.ws46{word-spacing:3.604493px;}
.wsb8{word-spacing:3.614414px;}
.ws50{word-spacing:3.658291px;}
.wsb3{word-spacing:3.684755px;}
.wsb9{word-spacing:3.738863px;}
.wsb2{word-spacing:3.755095px;}
.ws19d{word-spacing:3.765888px;}
.ws1b4{word-spacing:3.873485px;}
.wsf4{word-spacing:3.925800px;}
.ws118{word-spacing:3.927283px;}
.ws20{word-spacing:3.945190px;}
.ws45{word-spacing:3.981082px;}
.ws155{word-spacing:3.996000px;}
.ws14a{word-spacing:4.066200px;}
.ws149{word-spacing:4.071600px;}
.ws19b{word-spacing:4.088678px;}
.wsf5{word-spacing:4.104000px;}
.wsf3{word-spacing:4.136400px;}
.ws1a3{word-spacing:4.142477px;}
.ws1be{word-spacing:4.196275px;}
.wsaf{word-spacing:4.242067px;}
.ws16f{word-spacing:4.244068px;}
.ws58{word-spacing:4.323229px;}
.ws16a{word-spacing:4.363619px;}
.ws88{word-spacing:4.423394px;}
.wsfd{word-spacing:4.460400px;}
.wsfc{word-spacing:4.476600px;}
.ws166{word-spacing:4.542946px;}
.ws1c4{word-spacing:4.572864px;}
.wsae{word-spacing:4.588358px;}
.ws167{word-spacing:4.602721px;}
.ws59{word-spacing:4.620823px;}
.ws35{word-spacing:4.782048px;}
.ws1b{word-spacing:4.782060px;}
.ws34{word-spacing:4.841824px;}
.ws196{word-spacing:4.949453px;}
.ws25{word-spacing:4.961375px;}
.ws24{word-spacing:5.021150px;}
.ws4d{word-spacing:5.110848px;}
.ws10d{word-spacing:5.134248px;}
.ws1c1{word-spacing:5.218445px;}
.wsd6{word-spacing:5.272243px;}
.ws1d7{word-spacing:5.326042px;}
.ws1b5{word-spacing:5.372333px;}
.ws1bb{word-spacing:5.372467px;}
.ws1ec{word-spacing:5.372525px;}
.ws1ae{word-spacing:5.372918px;}
.ws1ed{word-spacing:5.373686px;}
.ws1e7{word-spacing:5.375578px;}
.ws1d3{word-spacing:5.375635px;}
.ws1b0{word-spacing:5.376499px;}
.ws1ca{word-spacing:5.378150px;}
.ws1d2{word-spacing:5.378246px;}
.ws1b2{word-spacing:5.378256px;}
.ws1bf{word-spacing:5.378448px;}
.ws19e{word-spacing:5.379725px;}
.ws2e{word-spacing:5.379804px;}
.ws1a6{word-spacing:5.379840px;}
.ws1d9{word-spacing:5.381232px;}
.ws1c6{word-spacing:5.383555px;}
.ws1d6{word-spacing:5.422829px;}
.ws1e9{word-spacing:5.433638px;}
.ws175{word-spacing:5.439580px;}
.ws13a{word-spacing:5.488956px;}
.ws171{word-spacing:5.499355px;}
.ws198{word-spacing:5.541235px;}
.ws13b{word-spacing:5.543064px;}
.ws158{word-spacing:5.551200px;}
.ws21{word-spacing:5.559131px;}
.ws159{word-spacing:5.572800px;}
.wsd5{word-spacing:5.648832px;}
.ws6d{word-spacing:5.652180px;}
.ws182{word-spacing:5.738458px;}
.ws1c9{word-spacing:5.756429px;}
.ws28{word-spacing:5.798233px;}
.ws1c2{word-spacing:5.810227px;}
.ws178{word-spacing:5.858009px;}
.ws1ea{word-spacing:5.864026px;}
.ws144{word-spacing:5.913000px;}
.wsda{word-spacing:5.917824px;}
.ws145{word-spacing:5.934600px;}
.ws1f{word-spacing:5.977560px;}
.ws105{word-spacing:6.198372px;}
.ws3c{word-spacing:6.216662px;}
.ws142{word-spacing:6.231600px;}
.ws1b6{word-spacing:6.240614px;}
.ws106{word-spacing:6.258492px;}
.ws141{word-spacing:6.274800px;}
.ws143{word-spacing:6.285600px;}
.ws72{word-spacing:6.303420px;}
.ws71{word-spacing:6.318000px;}
.ws33{word-spacing:6.336214px;}
.ws15f{word-spacing:6.395989px;}
.ws1d0{word-spacing:6.455808px;}
.wsd{word-spacing:6.515540px;}
.ws185{word-spacing:6.575316px;}
.ws8c{word-spacing:6.724800px;}
.ws1a1{word-spacing:6.778598px;}
.ws172{word-spacing:6.874194px;}
.ws4f{word-spacing:6.886195px;}
.ws160{word-spacing:6.933970px;}
.ws1c8{word-spacing:6.939994px;}
.ws1d4{word-spacing:6.993792px;}
.ws1aa{word-spacing:7.370381px;}
.ws8d{word-spacing:7.424179px;}
.ws62{word-spacing:7.576740px;}
.ws5f{word-spacing:7.591320px;}
.ws16d{word-spacing:7.591501px;}
.ws60{word-spacing:7.601040px;}
.ws7a{word-spacing:7.602174px;}
.ws61{word-spacing:7.605900px;}
.ws3d{word-spacing:7.651277px;}
.ws150{word-spacing:7.743600px;}
.ws49{word-spacing:7.746970px;}
.ws7c{word-spacing:7.851071px;}
.wsd9{word-spacing:7.962163px;}
.ws7b{word-spacing:7.970108px;}
.ws31{word-spacing:8.069706px;}
.ws183{word-spacing:8.129482px;}
.ws83{word-spacing:8.159486px;}
.ws6a{word-spacing:8.223120px;}
.ws188{word-spacing:8.249033px;}
.ws69{word-spacing:8.266860px;}
.ws1df{word-spacing:8.338752px;}
.ws81{word-spacing:8.457080px;}
.ws187{word-spacing:8.547911px;}
.ws96{word-spacing:8.553600px;}
.ws82{word-spacing:8.603172px;}
.ws97{word-spacing:8.611920px;}
.ws1c0{word-spacing:8.769139px;}
.ws17f{word-spacing:8.846789px;}
.ws1dd{word-spacing:8.930534px;}
.ws1dc{word-spacing:8.984333px;}
.ws146{word-spacing:9.142200px;}
.ws17e{word-spacing:9.265218px;}
.ws1ac{word-spacing:9.307123px;}
.ws17d{word-spacing:9.324994px;}
.ws5a{word-spacing:9.436435px;}
.wsed{word-spacing:9.487800px;}
.wsee{word-spacing:9.536400px;}
.wsec{word-spacing:9.563400px;}
.ws8e{word-spacing:9.737510px;}
.ws18e{word-spacing:9.743423px;}
.ws165{word-spacing:9.862974px;}
.ws186{word-spacing:9.922750px;}
.wsd8{word-spacing:10.006502px;}
.ws184{word-spacing:10.102076px;}
.wsea{word-spacing:10.292544px;}
.ws80{word-spacing:10.415790px;}
.ws8b{word-spacing:10.640057px;}
.ws1de{word-spacing:11.082470px;}
.wsa3{word-spacing:11.804940px;}
.wsa4{word-spacing:11.824380px;}
.ws123{word-spacing:12.300552px;}
.ws1e6{word-spacing:12.588826px;}
.ws137{word-spacing:13.358664px;}
.ws136{word-spacing:13.388724px;}
.ws87{word-spacing:14.405920px;}
.ws19c{word-spacing:14.686963px;}
.ws138{word-spacing:15.859656px;}
.ws108{word-spacing:15.949836px;}
.ws107{word-spacing:16.250436px;}
.wsfb{word-spacing:16.324200px;}
.wsfa{word-spacing:16.335000px;}
.ws8a{word-spacing:16.677392px;}
.ws152{word-spacing:16.729200px;}
.ws1c3{word-spacing:17.054093px;}
.ws151{word-spacing:17.096400px;}
.ws153{word-spacing:17.139600px;}
.wse7{word-spacing:17.326584px;}
.ws79{word-spacing:18.526579px;}
.ws78{word-spacing:18.623974px;}
.ws13e{word-spacing:18.937800px;}
.ws13f{word-spacing:19.208340px;}
.ws1e1{word-spacing:19.959206px;}
.wsac{word-spacing:21.486287px;}
.wsad{word-spacing:21.648611px;}
.ws1d5{word-spacing:27.759974px;}
.ws1ab{word-spacing:27.975168px;}
.wsab{word-spacing:28.303895px;}
.ws189{word-spacing:31.202863px;}
.ws195{word-spacing:309.663590px;}
.ws1d{word-spacing:874.064927px;}
._0{margin-left:-35.544868px;}
._1b{margin-left:-21.605324px;}
._1a{margin-left:-20.425428px;}
._17{margin-left:-10.486130px;}
._3c{margin-left:-7.991077px;}
._4{margin-left:-6.939994px;}
._5{margin-left:-5.810234px;}
._3{margin-left:-4.423394px;}
._20{margin-left:-3.341410px;}
._8{margin-left:-2.245824px;}
._2{margin-left:-1.075961px;}
._9{width:1.091170px;}
._1{width:2.997030px;}
._29{width:4.363619px;}
._16{width:8.424486px;}
._22{width:10.792900px;}
._c{width:11.955150px;}
._1f{width:13.662964px;}
._39{width:14.704798px;}
._13{width:15.768671px;}
._3a{width:16.813788px;}
._6{width:17.861069px;}
._7{width:19.797811px;}
._a{width:21.041011px;}
._11{width:22.242547px;}
._1e{width:24.209287px;}
._26{width:25.942610px;}
._f{width:27.735878px;}
._b{width:28.931390px;}
._21{width:30.784434px;}
._38{width:32.021974px;}
._25{width:33.295009px;}
._19{width:34.550297px;}
._e{width:36.343565px;}
._10{width:37.598852px;}
._27{width:39.033467px;}
._14{width:40.049652px;}
._1c{width:41.639969px;}
._24{width:43.724384px;}
._12{width:45.668558px;}
._1d{width:48.082061px;}
._3b{width:54.298929px;}
._3d{width:61.868160px;}
._18{width:65.101652px;}
._2c{width:109.208458px;}
._35{width:156.981398px;}
._2b{width:159.458304px;}
._2f{width:179.848224px;}
._2e{width:212.719046px;}
._36{width:264.523402px;}
._2a{width:278.191526px;}
._32{width:298.204531px;}
._33{width:321.981924px;}
._34{width:335.164032px;}
._37{width:363.730982px;}
._2d{width:369.272218px;}
._31{width:375.028646px;}
._30{width:381.000269px;}
._15{width:1364.494310px;}
._23{width:1516.226030px;}
._28{width:1886.139863px;}
._d{width:1910.049863px;}
.fc7{color:rgb(8,117,183);}
.fc5{color:rgb(12,11,11);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(53,30,58);}
.fc6{color:transparent;}
.fc2{color:rgb(90,40,100);}
.fc1{color:rgb(14,15,14);}
.fc0{color:rgb(72,62,33);}
.fs6{font-size:41.842800px;}
.fs9{font-size:41.936104px;}
.fsb{font-size:43.092000px;}
.fs5{font-size:45.429600px;}
.fs8{font-size:47.236800px;}
.fsa{font-size:47.820600px;}
.fsf{font-size:47.880000px;}
.fsc{font-size:48.600000px;}
.fs0{font-size:52.914960px;}
.fs7{font-size:53.798400px;}
.fs10{font-size:54.000000px;}
.fsd{font-size:54.108000px;}
.fs1{font-size:56.694600px;}
.fs3{font-size:59.775600px;}
.fs11{font-size:60.120000px;}
.fse{font-size:64.800000px;}
.fs2{font-size:68.033520px;}
.fs12{font-size:72.000000px;}
.fs4{font-size:107.596800px;}
.ye2{bottom:-518.231550px;}
.yfe{bottom:-485.020344px;}
.yfd{bottom:-464.860605px;}
.yfc{bottom:-444.610686px;}
.ya1{bottom:-437.318595px;}
.yfb{bottom:-424.360767px;}
.yb7{bottom:-414.718672px;}
.yfa{bottom:-404.110848px;}
.yb6{bottom:-396.493744px;}
.yf9{bottom:-383.860929px;}
.yb5{bottom:-378.268817px;}
.y6a{bottom:-367.079445px;}
.yf8{bottom:-363.611010px;}
.yb4{bottom:-360.043890px;}
.y81{bottom:-348.772773px;}
.yf7{bottom:-343.451271px;}
.yb3{bottom:-341.818963px;}
.y80{bottom:-330.547846px;}
.yb2{bottom:-323.594036px;}
.yf6{bottom:-323.201352px;}
.y11c{bottom:-316.420050px;}
.y7f{bottom:-312.322918px;}
.yb1{bottom:-305.369109px;}
.yf5{bottom:-302.951433px;}
.y13c{bottom:-295.544100px;}
.y7e{bottom:-294.097991px;}
.yb0{bottom:-287.225344px;}
.y13b{bottom:-276.013650px;}
.y7d{bottom:-275.873064px;}
.yf4{bottom:-273.701550px;}
.yaf{bottom:-269.000417px;}
.y7c{bottom:-257.648137px;}
.y13a{bottom:-256.573650px;}
.yae{bottom:-250.775490px;}
.y7b{bottom:-239.504372px;}
.y139{bottom:-237.043200px;}
.yf3{bottom:-235.904700px;}
.yad{bottom:-224.450595px;}
.y7a{bottom:-221.279445px;}
.y138{bottom:-217.512750px;}
.yf2{bottom:-216.374250px;}
.y137{bottom:-198.072750px;}
.yf1{bottom:-196.934250px;}
.yac{bottom:-190.433025px;}
.y79{bottom:-187.261740px;}
.y136{bottom:-178.542300px;}
.yf0{bottom:-177.403800px;}
.yab{bottom:-172.855620px;}
.y78{bottom:-169.684335px;}
.y135{bottom:-159.011850px;}
.yef{bottom:-157.873350px;}
.yaa{bottom:-155.359620px;}
.y77{bottom:-152.188335px;}
.y134{bottom:-139.571850px;}
.yee{bottom:-138.433350px;}
.ya9{bottom:-137.782215px;}
.y76{bottom:-134.610930px;}
.ya8{bottom:-120.204810px;}
.y133{bottom:-120.041400px;}
.yed{bottom:-118.902900px;}
.y75{bottom:-117.033525px;}
.ya7{bottom:-102.708810px;}
.y132{bottom:-100.510950px;}
.y74{bottom:-99.537525px;}
.yec{bottom:-99.372450px;}
.ya6{bottom:-85.131405px;}
.y73{bottom:-81.960120px;}
.y131{bottom:-81.070950px;}
.yeb{bottom:-79.932450px;}
.ya5{bottom:-67.554000px;}
.y72{bottom:-64.382715px;}
.y130{bottom:-61.540500px;}
.yea{bottom:-60.402000px;}
.ya4{bottom:-50.058000px;}
.y71{bottom:-46.886715px;}
.y12f{bottom:-42.010050px;}
.ye9{bottom:-40.871550px;}
.ya3{bottom:-32.480595px;}
.y70{bottom:-29.309310px;}
.y12e{bottom:-9.250050px;}
.ye8{bottom:-8.111550px;}
.ya2{bottom:-3.077595px;}
.y0{bottom:0.000000px;}
.y6f{bottom:1.632555px;}
.y21{bottom:3.425340px;}
.y4{bottom:9.473101px;}
.y20{bottom:14.151273px;}
.y3{bottom:28.937869px;}
.y2{bottom:32.769195px;}
.y32{bottom:63.780000px;}
.yc1{bottom:105.888000px;}
.y263{bottom:108.957000px;}
.y15a{bottom:110.205000px;}
.y63{bottom:116.607000px;}
.y179{bottom:123.121500px;}
.yc0{bottom:125.121000px;}
.y1ac{bottom:128.023500px;}
.y262{bottom:128.325000px;}
.y159{bottom:130.468500px;}
.y22f{bottom:130.812000px;}
.y93{bottom:136.668000px;}
.y62{bottom:136.870500px;}
.y119{bottom:138.910500px;}
.y1ff{bottom:141.652500px;}
.y178{bottom:143.386500px;}
.ybf{bottom:144.354000px;}
.y261{bottom:147.691500px;}
.y1ab{bottom:148.288500px;}
.y22e{bottom:150.178500px;}
.y1d4{bottom:150.619500px;}
.y92{bottom:156.931500px;}
.y61{bottom:157.134000px;}
.y118{bottom:159.174000px;}
.y158{bottom:159.699000px;}
.y1fe{bottom:161.917500px;}
.ybe{bottom:163.587000px;}
.y177{bottom:163.650000px;}
.y260{bottom:167.059500px;}
.y1a9{bottom:168.552000px;}
.y22d{bottom:169.546500px;}
.y1d3{bottom:170.883000px;}
.y1aa{bottom:173.976000px;}
.y91{bottom:177.196500px;}
.y60{bottom:177.399000px;}
.y117{bottom:179.437500px;}
.y1fd{bottom:182.181000px;}
.ybd{bottom:182.820000px;}
.y176{bottom:183.913500px;}
.y25f{bottom:186.427500px;}
.y1a8{bottom:188.815500px;}
.y22c{bottom:188.914500px;}
.y1d2{bottom:191.148000px;}
.y157{bottom:194.518500px;}
.y90{bottom:197.460000px;}
.y5f{bottom:197.662500px;}
.y116{bottom:199.702500px;}
.ybc{bottom:202.053000px;}
.y1fc{bottom:202.444500px;}
.y175{bottom:204.178500px;}
.y25e{bottom:205.794000px;}
.y31{bottom:206.322000px;}
.y22b{bottom:208.281000px;}
.y1a7{bottom:209.080500px;}
.y1d1{bottom:211.411500px;}
.y156{bottom:214.782000px;}
.y8f{bottom:217.723500px;}
.y115{bottom:219.966000px;}
.ybb{bottom:221.286000px;}
.y174{bottom:224.442000px;}
.y25d{bottom:225.162000px;}
.y30{bottom:226.585500px;}
.y5e{bottom:226.893000px;}
.y22a{bottom:227.649000px;}
.y1a6{bottom:229.344000px;}
.y1fb{bottom:231.675000px;}
.y155{bottom:235.047000px;}
.y8e{bottom:237.988500px;}
.y114{bottom:240.231000px;}
.yba{bottom:240.517500px;}
.y1d0{bottom:240.642000px;}
.y25c{bottom:244.528500px;}
.y173{bottom:244.707000px;}
.y229{bottom:247.015500px;}
.y1a5{bottom:249.609000px;}
.y154{bottom:255.310500px;}
.y8d{bottom:258.252000px;}
.yb9{bottom:259.750500px;}
.y113{bottom:260.494500px;}
.y5d{bottom:261.712500px;}
.y25b{bottom:263.896500px;}
.y2f{bottom:264.783000px;}
.y172{bottom:264.970500px;}
.y228{bottom:266.383500px;}
.y1fa{bottom:266.494500px;}
.y1a4{bottom:269.872500px;}
.y1cf{bottom:275.461500px;}
.y153{bottom:275.575500px;}
.y8c{bottom:278.517000px;}
.yb8{bottom:278.983500px;}
.y112{bottom:280.758000px;}
.y25a{bottom:283.264500px;}
.y2e{bottom:285.046500px;}
.y171{bottom:285.234000px;}
.y227{bottom:285.751500px;}
.y1f9{bottom:286.759500px;}
.y1a3{bottom:290.136000px;}
.y1ce{bottom:295.725000px;}
.y152{bottom:295.839000px;}
.y5c{bottom:296.532000px;}
.y111{bottom:301.023000px;}
.y9f{bottom:301.413000px;}
.y259{bottom:302.631000px;}
.y226{bottom:305.118000px;}
.y2d{bottom:305.310000px;}
.y170{bottom:305.499000px;}
.y1f7{bottom:307.023000px;}
.y1a2{bottom:307.603500px;}
.y1a0{bottom:310.401000px;}
.y1f8{bottom:312.448500px;}
.y8b{bottom:313.516500px;}
.y1a1{bottom:315.825000px;}
.y1cd{bottom:315.990000px;}
.y151{bottom:316.102500px;}
.y5b{bottom:316.797000px;}
.y110{bottom:321.286500px;}
.y258{bottom:321.999000px;}
.y225{bottom:324.486000px;}
.y2c{bottom:325.575000px;}
.y16f{bottom:325.762500px;}
.y1f6{bottom:327.288000px;}
.y19f{bottom:330.664500px;}
.y8a{bottom:332.749500px;}
.y1cc{bottom:336.253500px;}
.y150{bottom:336.367500px;}
.y5a{bottom:337.060500px;}
.y257{bottom:341.367000px;}
.y10f{bottom:341.551500px;}
.y224{bottom:343.852500px;}
.y2b{bottom:345.838500px;}
.y16e{bottom:346.027500px;}
.y1f5{bottom:347.551500px;}
.y19e{bottom:350.929500px;}
.y89{bottom:351.982500px;}
.y1cb{bottom:356.518500px;}
.y14f{bottom:356.631000px;}
.y59{bottom:357.324000px;}
.y256{bottom:360.733500px;}
.y10e{bottom:361.815000px;}
.y223{bottom:363.220500px;}
.y2a{bottom:366.103500px;}
.y16d{bottom:366.291000px;}
.y1f4{bottom:367.815000px;}
.y19c{bottom:371.193000px;}
.y88{bottom:371.215500px;}
.y19d{bottom:376.617000px;}
.y1ca{bottom:376.782000px;}
.y14e{bottom:376.896000px;}
.y58{bottom:377.589000px;}
.y255{bottom:380.101500px;}
.y10d{bottom:382.078500px;}
.y222{bottom:382.588500px;}
.y29{bottom:386.367000px;}
.y16c{bottom:386.554500px;}
.y87{bottom:390.448500px;}
.y19b{bottom:391.456500px;}
.y1c9{bottom:397.045500px;}
.y57{bottom:397.852500px;}
.y254{bottom:399.468000px;}
.y221{bottom:401.955000px;}
.y10c{bottom:402.343500px;}
.y12d{bottom:402.591894px;}
.ydf{bottom:403.561500px;}
.y14d{bottom:406.126500px;}
.y28{bottom:406.630500px;}
.y16b{bottom:406.819500px;}
.y86{bottom:409.681500px;}
.y1c8{bottom:417.310500px;}
.y56{bottom:418.117500px;}
.y253{bottom:418.836000px;}
.y19a{bottom:420.687000px;}
.y220{bottom:421.323000px;}
.y10b{bottom:422.607000px;}
.y12c{bottom:422.751633px;}
.yde{bottom:423.825000px;}
.y27{bottom:426.895500px;}
.y16a{bottom:427.083000px;}
.y85{bottom:428.914500px;}
.y1f3{bottom:431.865000px;}
.y1c7{bottom:437.574000px;}
.y14c{bottom:437.749500px;}
.y252{bottom:438.204000px;}
.y55{bottom:438.381000px;}
.y21f{bottom:440.689500px;}
.y12b{bottom:443.001552px;}
.ydd{bottom:444.090000px;}
.y26{bottom:447.159000px;}
.y169{bottom:447.348000px;}
.y84{bottom:448.147500px;}
.y10a{bottom:451.837500px;}
.y1f2{bottom:452.130000px;}
.y199{bottom:455.506500px;}
.y14b{bottom:456.981000px;}
.y251{bottom:457.570500px;}
.y1c6{bottom:457.839000px;}
.y54{bottom:458.644500px;}
.y21e{bottom:460.057500px;}
.y12a{bottom:463.251471px;}
.ydc{bottom:464.353500px;}
.y83{bottom:467.379000px;}
.y25{bottom:467.424000px;}
.y168{bottom:467.611500px;}
.ye7{bottom:470.598954px;}
.y1f1{bottom:472.393500px;}
.y14a{bottom:476.214000px;}
.y250{bottom:476.938500px;}
.y1c5{bottom:478.102500px;}
.y53{bottom:478.909500px;}
.y21d{bottom:479.425500px;}
.y109{bottom:483.460500px;}
.y129{bottom:483.501390px;}
.ydb{bottom:484.618500px;}
.y82{bottom:486.612000px;}
.y24{bottom:487.687500px;}
.y167{bottom:487.875000px;}
.y198{bottom:490.326000px;}
.ye6{bottom:490.848873px;}
.y1f0{bottom:492.658500px;}
.y149{bottom:495.447000px;}
.y24f{bottom:496.305000px;}
.y1c4{bottom:498.366000px;}
.y52{bottom:499.173000px;}
.y108{bottom:502.693500px;}
.y128{bottom:503.751309px;}
.yda{bottom:504.882000px;}
.y21c{bottom:507.759000px;}
.y23{bottom:507.951000px;}
.y166{bottom:508.140000px;}
.y68{bottom:509.041500px;}
.y197{bottom:510.591000px;}
.ye5{bottom:511.098792px;}
.y1ef{bottom:512.922000px;}
.y148{bottom:514.680000px;}
.y24e{bottom:515.673000px;}
.y1c2{bottom:518.631000px;}
.y51{bottom:519.438000px;}
.y107{bottom:521.926500px;}
.y127{bottom:524.001228px;}
.y1c3{bottom:524.055000px;}
.yd9{bottom:525.145500px;}
.y22{bottom:528.216000px;}
.y165{bottom:528.403500px;}
.y196{bottom:530.854500px;}
.ye4{bottom:531.258531px;}
.y1ee{bottom:533.185500px;}
.y147{bottom:533.913000px;}
.y24d{bottom:535.041000px;}
.y1c1{bottom:538.894500px;}
.y50{bottom:539.701500px;}
.y6e{bottom:541.092936px;}
.y106{bottom:541.159500px;}
.y126{bottom:544.251147px;}
.yd8{bottom:545.410500px;}
.y21b{bottom:547.822500px;}
.y164{bottom:548.667000px;}
.y195{bottom:551.119500px;}
.ye3{bottom:551.508450px;}
.y146{bottom:553.146000px;}
.y1ed{bottom:553.450500px;}
.y24c{bottom:554.407500px;}
.ya0{bottom:559.062405px;}
.y6d{bottom:559.317863px;}
.y4f{bottom:559.965000px;}
.y105{bottom:560.392500px;}
.y125{bottom:564.410886px;}
.yd7{bottom:565.674000px;}
.y1f{bottom:565.871964px;}
.y21a{bottom:566.467500px;}
.y1c0{bottom:568.125000px;}
.y163{bottom:568.932000px;}
.y194{bottom:571.383000px;}
.y145{bottom:572.379000px;}
.y1ec{bottom:573.714000px;}
.y24b{bottom:573.775500px;}
.y1e{bottom:573.817500px;}
.y6c{bottom:577.461628px;}
.y104{bottom:579.625500px;}
.y4e{bottom:580.230000px;}
.y124{bottom:584.660805px;}
.y219{bottom:585.114000px;}
.yd6{bottom:585.939000px;}
.ye1{bottom:588.858450px;}
.y162{bottom:589.195500px;}
.y144{bottom:591.612000px;}
.y193{bottom:591.646500px;}
.y24a{bottom:593.142000px;}
.y1eb{bottom:593.979000px;}
.y6b{bottom:595.686555px;}
.y103{bottom:598.858500px;}
.y4d{bottom:600.493500px;}
.y1bf{bottom:602.944500px;}
.y218{bottom:603.759000px;}
.y1d{bottom:605.644500px;}
.yd5{bottom:606.202500px;}
.y161{bottom:609.460500px;}
.y143{bottom:610.845000px;}
.y192{bottom:611.911500px;}
.y249{bottom:612.510000px;}
.y123{bottom:613.910688px;}
.y1ea{bottom:614.242500px;}
.y102{bottom:618.090000px;}
.y4c{bottom:620.758500px;}
.y217{bottom:622.404000px;}
.y1bd{bottom:623.209500px;}
.y1c{bottom:623.800500px;}
.yd4{bottom:626.466000px;}
.y1be{bottom:628.633500px;}
.y69{bottom:629.301555px;}
.y160{bottom:629.724000px;}
.y142{bottom:630.078000px;}
.y248{bottom:631.878000px;}
.y191{bottom:632.175000px;}
.y1e9{bottom:634.506000px;}
.y101{bottom:637.323000px;}
.y4b{bottom:641.022000px;}
.y216{bottom:641.050500px;}
.y1b{bottom:641.958000px;}
.y1bc{bottom:643.473000px;}
.yd3{bottom:646.731000px;}
.y141{bottom:649.309500px;}
.y15f{bottom:649.987500px;}
.y247{bottom:651.244500px;}
.y122{bottom:652.160535px;}
.y190{bottom:652.438500px;}
.y1e8{bottom:654.771000px;}
.y100{bottom:656.556000px;}
.y215{bottom:659.695500px;}
.y1a{bottom:660.115500px;}
.y4a{bottom:661.285500px;}
.y1bb{bottom:663.736500px;}
.yd2{bottom:666.994500px;}
.y140{bottom:668.542500px;}
.y15e{bottom:670.252500px;}
.y246{bottom:670.612500px;}
.y121{bottom:672.410454px;}
.y18f{bottom:672.703500px;}
.y1e7{bottom:675.034500px;}
.yff{bottom:675.789000px;}
.y19{bottom:678.271500px;}
.y214{bottom:678.340500px;}
.y49{bottom:681.550500px;}
.y1b9{bottom:684.001500px;}
.yd1{bottom:687.258000px;}
.y13f{bottom:687.775500px;}
.y1ba{bottom:689.425500px;}
.y245{bottom:689.979000px;}
.y15d{bottom:690.516000px;}
.y120{bottom:692.660373px;}
.y18e{bottom:692.967000px;}
.y1e6{bottom:695.299500px;}
.y18{bottom:696.429000px;}
.y213{bottom:696.987000px;}
.ye0{bottom:698.218500px;}
.y48{bottom:701.814000px;}
.y1b8{bottom:704.265000px;}
.y13e{bottom:707.008500px;}
.y244{bottom:709.347000px;}
.y15c{bottom:710.781000px;}
.y11f{bottom:712.910292px;}
.y18c{bottom:713.232000px;}
.y1e4{bottom:715.563000px;}
.y212{bottom:715.632000px;}
.yd0{bottom:716.488500px;}
.y18d{bottom:718.656000px;}
.y17{bottom:719.469000px;}
.y1e5{bottom:720.987000px;}
.y47{bottom:722.077500px;}
.y1b7{bottom:724.530000px;}
.y13d{bottom:726.241500px;}
.y243{bottom:728.715000px;}
.y15b{bottom:731.044500px;}
.y16{bottom:732.742500px;}
.y11e{bottom:733.070031px;}
.y18b{bottom:733.495500px;}
.y211{bottom:734.278500px;}
.y1e2{bottom:735.826500px;}
.y1e3{bottom:741.252000px;}
.y46{bottom:742.342500px;}
.y1b6{bottom:744.793500px;}
.y242{bottom:748.081500px;}
.y11a{bottom:748.671000px;}
.ycf{bottom:751.308000px;}
.y210{bottom:752.923500px;}
.y11d{bottom:753.319950px;}
.y18a{bottom:753.759000px;}
.y15{bottom:755.782500px;}
.y1e1{bottom:756.091500px;}
.y45{bottom:762.606000px;}
.y1b4{bottom:765.057000px;}
.y241{bottom:767.449500px;}
.y14{bottom:769.057500px;}
.y1b5{bottom:770.482500px;}
.y20f{bottom:771.568500px;}
.yce{bottom:771.573000px;}
.y189{bottom:774.024000px;}
.y1e0{bottom:776.355000px;}
.y44{bottom:782.871000px;}
.y1b3{bottom:785.322000px;}
.y240{bottom:786.816000px;}
.y20e{bottom:790.215000px;}
.y11b{bottom:790.669950px;}
.ycd{bottom:791.836500px;}
.y13{bottom:792.096000px;}
.y188{bottom:794.287500px;}
.y1df{bottom:796.620000px;}
.y43{bottom:803.134500px;}
.y12{bottom:805.371000px;}
.y23f{bottom:806.184000px;}
.y20d{bottom:808.860000px;}
.ycc{bottom:812.101500px;}
.y187{bottom:814.552500px;}
.y1de{bottom:816.883500px;}
.y42{bottom:823.398000px;}
.y11{bottom:823.528500px;}
.y23e{bottom:825.552000px;}
.y20c{bottom:827.506500px;}
.y10{bottom:828.411000px;}
.y186{bottom:832.018500px;}
.ycb{bottom:832.365000px;}
.y185{bottom:834.816000px;}
.y1dd{bottom:837.147000px;}
.yf{bottom:841.684500px;}
.y41{bottom:843.663000px;}
.y23d{bottom:844.918500px;}
.y20b{bottom:846.151500px;}
.y9e{bottom:849.372000px;}
.yca{bottom:852.628500px;}
.y183{bottom:855.079500px;}
.y1dc{bottom:857.412000px;}
.ye{bottom:859.842000px;}
.y184{bottom:860.505000px;}
.y40{bottom:863.926500px;}
.y23c{bottom:864.286500px;}
.y20a{bottom:864.796500px;}
.y9d{bottom:869.635500px;}
.yc9{bottom:872.893500px;}
.y182{bottom:875.344500px;}
.yd{bottom:882.882000px;}
.y23b{bottom:883.653000px;}
.y3f{bottom:884.191500px;}
.y1db{bottom:886.642500px;}
.y1b2{bottom:887.103000px;}
.y9c{bottom:889.899000px;}
.yc8{bottom:893.157000px;}
.y209{bottom:893.397000px;}
.y1b1{bottom:895.324500px;}
.y181{bottom:895.608000px;}
.y23a{bottom:903.021000px;}
.y3e{bottom:904.455000px;}
.yc{bottom:905.122500px;}
.y1b0{bottom:907.366500px;}
.y9b{bottom:910.164000px;}
.yc7{bottom:913.422000px;}
.y1af{bottom:915.588000px;}
.y17f{bottom:915.873000px;}
.y180{bottom:921.297000px;}
.y1da{bottom:921.462000px;}
.y239{bottom:922.389000px;}
.y3d{bottom:924.718500px;}
.yb{bottom:925.386000px;}
.y208{bottom:928.216500px;}
.y9a{bottom:930.427500px;}
.yc6{bottom:933.685500px;}
.y17e{bottom:936.136500px;}
.y1d9{bottom:941.725500px;}
.y238{bottom:941.755500px;}
.y3c{bottom:944.983500px;}
.ya{bottom:945.651000px;}
.y99{bottom:950.692500px;}
.y207{bottom:952.380000px;}
.yc5{bottom:953.949000px;}
.y17d{bottom:956.400000px;}
.y237{bottom:961.123500px;}
.y1d8{bottom:961.989000px;}
.y3b{bottom:965.247000px;}
.y9{bottom:965.914500px;}
.y1ae{bottom:968.158500px;}
.y266{bottom:968.313000px;}
.y98{bottom:970.956000px;}
.yc4{bottom:974.214000px;}
.y1ad{bottom:976.380000px;}
.y206{bottom:976.545000px;}
.y17c{bottom:976.665000px;}
.y236{bottom:980.490000px;}
.y1d6{bottom:982.254000px;}
.y3a{bottom:985.512000px;}
.y1d7{bottom:987.678000px;}
.y265{bottom:987.681000px;}
.y97{bottom:991.219500px;}
.y205{bottom:991.743000px;}
.yc3{bottom:994.477500px;}
.y17b{bottom:996.928500px;}
.y235{bottom:999.858000px;}
.y1d5{bottom:1002.517500px;}
.y39{bottom:1005.775500px;}
.y204{bottom:1006.941000px;}
.y264{bottom:1007.047500px;}
.y8{bottom:1010.451000px;}
.y96{bottom:1011.484500px;}
.yc2{bottom:1014.742500px;}
.y234{bottom:1019.226000px;}
.y203{bottom:1022.139000px;}
.y38{bottom:1026.039000px;}
.y17a{bottom:1026.159000px;}
.y95{bottom:1031.748000px;}
.y67{bottom:1035.006000px;}
.y233{bottom:1038.592500px;}
.y7{bottom:1040.848500px;}
.y37{bottom:1046.304000px;}
.y66{bottom:1055.269500px;}
.y232{bottom:1057.960500px;}
.y94{bottom:1060.978500px;}
.y202{bottom:1061.502000px;}
.y36{bottom:1066.567500px;}
.y6{bottom:1071.244500px;}
.y65{bottom:1075.534500px;}
.y201{bottom:1076.700000px;}
.y231{bottom:1077.327000px;}
.y35{bottom:1086.832500px;}
.y64{bottom:1095.798000px;}
.y230{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y200{bottom:1100.865000px;}
.y34{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y33{bottom:1168.366500px;}
.hc{height:25.508090px;}
.ha{height:30.461558px;}
.h15{height:31.456318px;}
.h2c{height:31.528142px;}
.h16{height:32.392090px;}
.h2b{height:33.072749px;}
.he{height:33.112997px;}
.hd{height:34.199443px;}
.h21{height:34.951465px;}
.h12{height:35.052500px;}
.h1a{height:35.334668px;}
.h19{height:35.477051px;}
.h3{height:35.876343px;}
.h22{height:35.991211px;}
.h1d{height:37.551283px;}
.h1c{height:37.658880px;}
.h2f{height:37.927872px;}
.h1b{height:38.734848px;}
.hb{height:39.165235px;}
.h1f{height:39.260004px;}
.h26{height:39.260742px;}
.h17{height:39.339264px;}
.h4{height:39.402747px;}
.h25{height:39.418945px;}
.h28{height:39.434227px;}
.h2a{height:41.484266px;}
.h11{height:41.723369px;}
.h13{height:41.842920px;}
.hf{height:43.038432px;}
.h10{height:43.516637px;}
.h27{height:43.622227px;}
.h23{height:43.710293px;}
.h6{height:43.815515px;}
.h5{height:46.126727px;}
.h18{height:47.112891px;}
.h2{height:50.931027px;}
.h24{height:52.347656px;}
.h2e{height:53.224142px;}
.h2d{height:53.230142px;}
.h9{height:54.405312px;}
.h8{height:54.411312px;}
.h7{height:77.469696px;}
.h29{height:382.336500px;}
.h20{height:432.789000px;}
.h14{height:502.320150px;}
.h1e{height:524.314350px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:215.864690px;}
.w4{width:563.336100px;}
.w7{width:596.761500px;}
.w5{width:599.520285px;}
.w6{width:651.943650px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xc5{left:-37.306500px;}
.x5f{left:-19.386000px;}
.xc6{left:-5.447409px;}
.xb9{left:-4.196850px;}
.x0{left:0.000000px;}
.x81{left:4.027185px;}
.x60{left:9.288000px;}
.xba{left:27.663150px;}
.xa{left:29.274117px;}
.x83{left:32.701185px;}
.x3{left:60.027581px;}
.x1{left:114.802500px;}
.xb8{left:120.485850px;}
.x8{left:122.110500px;}
.x4{left:123.307500px;}
.xf9{left:133.687500px;}
.xb6{left:140.043000px;}
.x49{left:144.616500px;}
.x5{left:146.170500px;}
.xb7{left:148.342500px;}
.xc9{left:150.817500px;}
.xfe{left:152.677500px;}
.x4a{left:154.456500px;}
.xb1{left:156.720000px;}
.xca{left:159.787500px;}
.x1a{left:162.702000px;}
.x5e{left:164.791500px;}
.xa8{left:167.937000px;}
.x1b{left:170.173500px;}
.xb2{left:171.921000px;}
.x112{left:175.180500px;}
.xa9{left:177.777000px;}
.xcb{left:179.085000px;}
.x2{left:181.274369px;}
.x10{left:185.230500px;}
.x31{left:187.183500px;}
.x105{left:191.139000px;}
.xb{left:192.433500px;}
.x11{left:195.070500px;}
.xce{left:198.312000px;}
.x19{left:203.992500px;}
.x74{left:206.007000px;}
.x61{left:208.429500px;}
.xbb{left:210.102000px;}
.xa6{left:212.247000px;}
.xee{left:213.915000px;}
.xbe{left:216.976500px;}
.x75{left:219.805500px;}
.xa7{left:226.698000px;}
.xda{left:228.925500px;}
.xfa{left:230.892000px;}
.xcc{left:236.220000px;}
.xbc{left:237.540000px;}
.xec{left:238.804500px;}
.x106{left:240.276000px;}
.x72{left:247.191000px;}
.x10e{left:248.577000px;}
.xcd{left:249.778500px;}
.x11f{left:251.667000px;}
.xc2{left:253.959000px;}
.x12{left:255.223500px;}
.x4e{left:256.240500px;}
.x94{left:257.556000px;}
.x73{left:260.739000px;}
.x8a{left:262.611000px;}
.xc0{left:265.185000px;}
.x7b{left:266.359500px;}
.x13{left:269.749500px;}
.x4f{left:271.183500px;}
.xbf{left:273.558000px;}
.x8b{left:276.796500px;}
.x2a{left:279.457500px;}
.x7c{left:280.765500px;}
.x111{left:281.770500px;}
.x107{left:283.774500px;}
.xc3{left:287.658000px;}
.x77{left:290.683500px;}
.x50{left:293.562000px;}
.x34{left:295.857000px;}
.x9d{left:298.623000px;}
.x21{left:302.562000px;}
.x78{left:308.011500px;}
.x35{left:309.415500px;}
.x9e{left:311.688000px;}
.x84{left:312.889500px;}
.x101{left:314.239500px;}
.x22{left:316.221000px;}
.x100{left:317.749500px;}
.x9f{left:319.203000px;}
.x2b{left:321.390000px;}
.x70{left:323.202000px;}
.x85{left:325.105500px;}
.xa0{left:329.043000px;}
.xad{left:331.410000px;}
.xd4{left:333.585000px;}
.x7d{left:335.685000px;}
.x71{left:336.787500px;}
.x5a{left:339.628500px;}
.x65{left:341.089500px;}
.x36{left:344.941500px;}
.x10b{left:348.751500px;}
.x66{left:350.349000px;}
.x5b{left:353.214000px;}
.x37{left:354.781500px;}
.x23{left:355.821000px;}
.x10c{left:363.696000px;}
.x24{left:365.721000px;}
.xc4{left:369.336000px;}
.x98{left:371.202000px;}
.x79{left:373.279500px;}
.xa4{left:375.391500px;}
.x6b{left:377.116500px;}
.xe7{left:379.093500px;}
.x99{left:381.490500px;}
.x7a{left:383.119500px;}
.xa5{left:385.680000px;}
.x6c{left:386.956500px;}
.xe8{left:388.933500px;}
.xd5{left:393.369000px;}
.x8f{left:397.132500px;}
.x3e{left:399.294000px;}
.xab{left:401.244000px;}
.x90{left:406.392000px;}
.x96{left:408.187500px;}
.xac{left:411.084000px;}
.xf7{left:412.809000px;}
.x3f{left:414.238500px;}
.xd6{left:415.657500px;}
.xb0{left:417.216000px;}
.xdc{left:418.581000px;}
.x45{left:420.205500px;}
.x40{left:421.560000px;}
.x97{left:423.132000px;}
.x6a{left:424.333500px;}
.xdd{left:426.879000px;}
.x57{left:429.999000px;}
.x58{left:433.810500px;}
.x46{left:435.150000px;}
.x41{left:436.504500px;}
.x47{left:438.864000px;}
.xe0{left:440.443500px;}
.xf5{left:447.315000px;}
.x59{left:448.755000px;}
.xf8{left:449.844000px;}
.x48{left:453.807000px;}
.xe1{left:455.388000px;}
.x38{left:457.584000px;}
.xe2{left:459.157500px;}
.x67{left:460.803000px;}
.x15{left:464.112000px;}
.x109{left:466.449000px;}
.x16{left:472.411500px;}
.xe3{left:474.102000px;}
.x5c{left:475.857000px;}
.x68{left:477.666000px;}
.x39{left:479.874000px;}
.x10f{left:480.957000px;}
.x63{left:485.688000px;}
.x5d{left:490.801500px;}
.x1c{left:494.286000px;}
.x110{left:495.900000px;}
.xef{left:497.362500px;}
.xc{left:500.349000px;}
.x1d{left:501.757500px;}
.x64{left:503.664000px;}
.x7e{left:504.898500px;}
.xf0{left:506.592000px;}
.xc1{left:510.289500px;}
.x2f{left:511.789500px;}
.xd{left:513.079500px;}
.xde{left:515.497500px;}
.xf1{left:517.996500px;}
.x8c{left:520.489500px;}
.x4b{left:521.995500px;}
.x30{left:526.734000px;}
.xd7{left:529.204500px;}
.xd3{left:530.479500px;}
.x1e{left:534.774000px;}
.x4c{left:536.940000px;}
.x3a{left:537.987000px;}
.xfc{left:540.310500px;}
.x1f{left:542.245500px;}
.x86{left:544.611000px;}
.xe{left:547.246500px;}
.x20{left:549.867000px;}
.x3b{left:551.550000px;}
.x87{left:555.073500px;}
.xf{left:557.086500px;}
.x95{left:560.548500px;}
.xc8{left:561.586500px;}
.x76{left:563.071500px;}
.x6d{left:564.460500px;}
.xc7{left:567.514500px;}
.x33{left:569.200500px;}
.xb4{left:571.948500px;}
.x28{left:576.357000px;}
.x53{left:578.050500px;}
.x108{left:581.247000px;}
.x11e{left:584.425500px;}
.xb5{left:585.522000px;}
.x54{left:588.339000px;}
.xbd{left:591.079500px;}
.x8d{left:593.086500px;}
.xb3{left:594.307500px;}
.x91{left:595.765500px;}
.x3c{left:597.175500px;}
.x11b{left:600.525000px;}
.x82{left:602.050185px;}
.x115{left:603.529500px;}
.x92{left:605.476500px;}
.x62{left:606.733500px;}
.xdf{left:609.109500px;}
.x3d{left:612.118500px;}
.x42{left:613.404000px;}
.x7f{left:615.030000px;}
.xe5{left:616.369500px;}
.x6e{left:619.378500px;}
.x93{left:621.783000px;}
.x2c{left:623.268000px;}
.x29{left:624.852000px;}
.x32{left:627.408000px;}
.x6f{left:629.218500px;}
.x116{left:630.429000px;}
.x6{left:631.429500px;}
.x80{left:632.935500px;}
.x2d{left:634.551000px;}
.xfb{left:638.392500px;}
.xf2{left:639.880500px;}
.x2e{left:642.022500px;}
.x102{left:643.155000px;}
.x51{left:649.165500px;}
.xdb{left:650.466000px;}
.x103{left:652.474500px;}
.x52{left:656.638500px;}
.xf6{left:658.042500px;}
.x25{left:659.472000px;}
.xd9{left:660.807000px;}
.x104{left:662.376000px;}
.xf3{left:664.267500px;}
.x17{left:666.139500px;}
.xaa{left:669.039000px;}
.x26{left:670.755000px;}
.xa3{left:672.405000px;}
.xf4{left:674.556000px;}
.x11c{left:676.570500px;}
.x27{left:678.228000px;}
.x18{left:679.737000px;}
.xe6{left:682.753500px;}
.x88{left:684.172500px;}
.xa1{left:686.772000px;}
.xd2{left:690.247500px;}
.x89{left:693.028500px;}
.xa2{left:697.060500px;}
.x9b{left:699.376500px;}
.x9{left:701.339982px;}
.x11d{left:703.470000px;}
.xd8{left:707.347500px;}
.x9c{left:709.665000px;}
.x14{left:710.736000px;}
.xae{left:711.807000px;}
.x4d{left:715.966500px;}
.x118{left:717.066000px;}
.xe4{left:719.580000px;}
.x119{left:721.473000px;}
.xaf{left:725.080500px;}
.x10a{left:726.939000px;}
.x8e{left:728.353500px;}
.xcf{left:730.519500px;}
.x43{left:735.217500px;}
.x69{left:737.364000px;}
.xea{left:739.624500px;}
.x44{left:745.057500px;}
.x117{left:746.700000px;}
.x11a{left:748.372500px;}
.xeb{left:749.803500px;}
.xfd{left:751.585500px;}
.xd0{left:753.084000px;}
.x114{left:754.639500px;}
.xff{left:755.697000px;}
.xd1{left:756.895500px;}
.xed{left:760.615500px;}
.x113{left:762.798000px;}
.x55{left:764.437500px;}
.x10d{left:766.327500px;}
.x9a{left:768.270000px;}
.x56{left:771.909000px;}
.xe9{left:774.529500px;}
.x7{left:776.320500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v3{vertical-align:-9.946667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls7a{letter-spacing:-0.321600pt;}
.ls9c{letter-spacing:-0.192000pt;}
.ls93{letter-spacing:-0.176352pt;}
.ls49{letter-spacing:-0.163526pt;}
.ls81{letter-spacing:-0.154976pt;}
.ls94{letter-spacing:-0.144288pt;}
.ls91{letter-spacing:-0.138944pt;}
.ls78{letter-spacing:-0.129600pt;}
.ls2e{letter-spacing:-0.125050pt;}
.ls7c{letter-spacing:-0.120000pt;}
.ls37{letter-spacing:-0.115430pt;}
.ls95{letter-spacing:-0.112224pt;}
.ls74{letter-spacing:-0.106880pt;}
.ls35{letter-spacing:-0.101002pt;}
.ls39{letter-spacing:-0.096192pt;}
.ls7b{letter-spacing:-0.096000pt;}
.ls32{letter-spacing:-0.091382pt;}
.ls2b{letter-spacing:-0.086573pt;}
.ls9a{letter-spacing:-0.086400pt;}
.ls96{letter-spacing:-0.085504pt;}
.ls36{letter-spacing:-0.081763pt;}
.ls71{letter-spacing:-0.080864pt;}
.ls73{letter-spacing:-0.074816pt;}
.ls28{letter-spacing:-0.072778pt;}
.ls2d{letter-spacing:-0.072144pt;}
.ls92{letter-spacing:-0.069472pt;}
.ls33{letter-spacing:-0.067334pt;}
.ls6f{letter-spacing:-0.063840pt;}
.ls34{letter-spacing:-0.062525pt;}
.ls26{letter-spacing:-0.057456pt;}
.ls90{letter-spacing:-0.053440pt;}
.ls98{letter-spacing:-0.048096pt;}
.ls80{letter-spacing:-0.042752pt;}
.ls7e{letter-spacing:-0.037408pt;}
.ls31{letter-spacing:-0.034560pt;}
.ls4b{letter-spacing:-0.033667pt;}
.ls77{letter-spacing:-0.033600pt;}
.ls82{letter-spacing:-0.032064pt;}
.ls29{letter-spacing:-0.028858pt;}
.ls72{letter-spacing:-0.026720pt;}
.ls45{letter-spacing:-0.025920pt;}
.ls2c{letter-spacing:-0.024048pt;}
.ls2f{letter-spacing:-0.021600pt;}
.ls47{letter-spacing:-0.019238pt;}
.ls75{letter-spacing:-0.019200pt;}
.ls43{letter-spacing:-0.017280pt;}
.ls7d{letter-spacing:-0.016032pt;}
.ls4e{letter-spacing:-0.014429pt;}
.ls46{letter-spacing:-0.012960pt;}
.ls4d{letter-spacing:-0.009619pt;}
.ls99{letter-spacing:-0.009600pt;}
.ls44{letter-spacing:-0.008640pt;}
.ls7f{letter-spacing:-0.005344pt;}
.ls2a{letter-spacing:-0.004810pt;}
.ls76{letter-spacing:-0.004800pt;}
.ls30{letter-spacing:-0.004320pt;}
.lsd{letter-spacing:0.000000pt;}
.lsa1{letter-spacing:0.000054pt;}
.ls51{letter-spacing:0.000110pt;}
.lsa7{letter-spacing:0.000136pt;}
.lsb3{letter-spacing:0.000185pt;}
.lsc6{letter-spacing:0.000397pt;}
.lsb6{letter-spacing:0.000562pt;}
.lsb4{letter-spacing:0.000572pt;}
.ls42{letter-spacing:0.000600pt;}
.lsa5{letter-spacing:0.000662pt;}
.lsf{letter-spacing:0.000765pt;}
.ls6b{letter-spacing:0.000880pt;}
.ls50{letter-spacing:0.000915pt;}
.ls24{letter-spacing:0.000921pt;}
.ls4{letter-spacing:0.000960pt;}
.ls9e{letter-spacing:0.001089pt;}
.lsba{letter-spacing:0.001319pt;}
.ls3a{letter-spacing:0.001349pt;}
.lsb8{letter-spacing:0.001418pt;}
.lsa4{letter-spacing:0.001576pt;}
.lscd{letter-spacing:0.001617pt;}
.ls8f{letter-spacing:0.001792pt;}
.ls8b{letter-spacing:0.001858pt;}
.lsa3{letter-spacing:0.001937pt;}
.ls89{letter-spacing:0.002078pt;}
.ls6e{letter-spacing:0.002134pt;}
.ls6{letter-spacing:0.002287pt;}
.ls9f{letter-spacing:0.002417pt;}
.ls8a{letter-spacing:0.002443pt;}
.ls25{letter-spacing:0.002473pt;}
.lsb1{letter-spacing:0.002505pt;}
.lsce{letter-spacing:0.002551pt;}
.ls8c{letter-spacing:0.002553pt;}
.lsa{letter-spacing:0.002613pt;}
.lsa0{letter-spacing:0.002809pt;}
.ls6d{letter-spacing:0.002868pt;}
.ls8e{letter-spacing:0.002966pt;}
.lsc{letter-spacing:0.003100pt;}
.ls10{letter-spacing:0.003106pt;}
.ls8d{letter-spacing:0.003166pt;}
.lsac{letter-spacing:0.003430pt;}
.ls1c{letter-spacing:0.004320pt;}
.ls5c{letter-spacing:0.004800pt;}
.ls21{letter-spacing:0.004810pt;}
.ls4f{letter-spacing:0.004813pt;}
.ls16{letter-spacing:0.008640pt;}
.ls87{letter-spacing:0.009600pt;}
.ls1f{letter-spacing:0.009619pt;}
.ls62{letter-spacing:0.010688pt;}
.ls15{letter-spacing:0.012960pt;}
.ls86{letter-spacing:0.014400pt;}
.ls40{letter-spacing:0.014429pt;}
.ls55{letter-spacing:0.016032pt;}
.ls19{letter-spacing:0.017280pt;}
.ls5a{letter-spacing:0.019200pt;}
.ls20{letter-spacing:0.019238pt;}
.ls65{letter-spacing:0.021376pt;}
.ls14{letter-spacing:0.021600pt;}
.ls5b{letter-spacing:0.024000pt;}
.ls3e{letter-spacing:0.024048pt;}
.ls1e{letter-spacing:0.025920pt;}
.ls64{letter-spacing:0.026720pt;}
.ls22{letter-spacing:0.028858pt;}
.ls1a{letter-spacing:0.030240pt;}
.ls5e{letter-spacing:0.033600pt;}
.ls13{letter-spacing:0.033667pt;}
.ls18{letter-spacing:0.034560pt;}
.ls54{letter-spacing:0.037408pt;}
.ls60{letter-spacing:0.038400pt;}
.ls88{letter-spacing:0.043200pt;}
.ls23{letter-spacing:0.043286pt;}
.ls1b{letter-spacing:0.047520pt;}
.ls58{letter-spacing:0.048000pt;}
.ls4c{letter-spacing:0.048096pt;}
.ls3c{letter-spacing:0.051840pt;}
.ls5f{letter-spacing:0.052800pt;}
.ls3f{letter-spacing:0.052906pt;}
.ls6c{letter-spacing:0.053134pt;}
.ls83{letter-spacing:0.053440pt;}
.ls4a{letter-spacing:0.057715pt;}
.ls53{letter-spacing:0.058784pt;}
.ls1d{letter-spacing:0.060480pt;}
.ls85{letter-spacing:0.062400pt;}
.ls97{letter-spacing:0.064128pt;}
.ls57{letter-spacing:0.067200pt;}
.ls63{letter-spacing:0.069472pt;}
.ls41{letter-spacing:0.072144pt;}
.ls9d{letter-spacing:0.076800pt;}
.ls84{letter-spacing:0.080160pt;}
.ls61{letter-spacing:0.081600pt;}
.ls17{letter-spacing:0.086400pt;}
.ls59{letter-spacing:0.096000pt;}
.ls3d{letter-spacing:0.099360pt;}
.ls12{letter-spacing:0.099590pt;}
.ls52{letter-spacing:0.110656pt;}
.ls79{letter-spacing:0.120000pt;}
.ls56{letter-spacing:0.144288pt;}
.ls27{letter-spacing:0.145555pt;}
.ls5d{letter-spacing:0.158400pt;}
.ls70{letter-spacing:0.161728pt;}
.lsaa{letter-spacing:0.466280pt;}
.lsab{letter-spacing:0.478097pt;}
.lse{letter-spacing:1.133683pt;}
.ls9{letter-spacing:1.654338pt;}
.ls3{letter-spacing:2.651733pt;}
.lsa6{letter-spacing:2.656284pt;}
.ls1{letter-spacing:2.657067pt;}
.lsa2{letter-spacing:2.661617pt;}
.ls9b{letter-spacing:3.360000pt;}
.ls38{letter-spacing:9.287338pt;}
.lsb{letter-spacing:10.626533pt;}
.lsb9{letter-spacing:11.711794pt;}
.lsb2{letter-spacing:11.766036pt;}
.lsc8{letter-spacing:11.869151pt;}
.lscc{letter-spacing:11.896357pt;}
.lsbb{letter-spacing:11.906960pt;}
.lsc3{letter-spacing:11.921888pt;}
.ls68{letter-spacing:11.950933pt;}
.lsc1{letter-spacing:11.953952pt;}
.lsaf{letter-spacing:11.954133pt;}
.ls69{letter-spacing:11.954551pt;}
.ls6a{letter-spacing:11.956267pt;}
.lsb5{letter-spacing:11.959467pt;}
.lsc2{letter-spacing:11.975467pt;}
.lsc5{letter-spacing:12.004437pt;}
.lscb{letter-spacing:12.010029pt;}
.lsc7{letter-spacing:12.036760pt;}
.lsbf{letter-spacing:12.112072pt;}
.lsbd{letter-spacing:12.321924pt;}
.lsa9{letter-spacing:13.124070pt;}
.lsa8{letter-spacing:13.126796pt;}
.lsc4{letter-spacing:13.189898pt;}
.ls3b{letter-spacing:13.267349pt;}
.ls11{letter-spacing:13.283349pt;}
.lsc0{letter-spacing:13.880094pt;}
.ls67{letter-spacing:14.470630pt;}
.ls66{letter-spacing:14.473914pt;}
.lsca{letter-spacing:14.528460pt;}
.lsb0{letter-spacing:15.302316pt;}
.lsbc{letter-spacing:15.945454pt;}
.lsc9{letter-spacing:16.588591pt;}
.ls48{letter-spacing:19.079683pt;}
.lsbe{letter-spacing:19.710159pt;}
.lsb7{letter-spacing:20.222578pt;}
.ls0{letter-spacing:23.911615pt;}
.ls2{letter-spacing:51.035733pt;}
.ls8{letter-spacing:57.380267pt;}
.ls5{letter-spacing:62.432533pt;}
.ls7{letter-spacing:64.314231pt;}
.lsad{letter-spacing:143.950003pt;}
.lsae{letter-spacing:297.118003pt;}
.wsd1{word-spacing:-53.440000pt;}
.ws44{word-spacing:-48.096000pt;}
.wsd3{word-spacing:-48.000000pt;}
.ws42{word-spacing:-43.200000pt;}
.ws2{word-spacing:-23.910400pt;}
.ws19{word-spacing:-15.461955pt;}
.ws7{word-spacing:-13.915853pt;}
.wsd0{word-spacing:-13.418784pt;}
.ws115{word-spacing:-13.306560pt;}
.ws1e0{word-spacing:-13.294182pt;}
.ws2a{word-spacing:-13.283467pt;}
.ws1e{word-spacing:-12.369595pt;}
.wsd2{word-spacing:-12.067200pt;}
.wsd4{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.955200pt;}
.ws43{word-spacing:-10.860480pt;}
.wscf{word-spacing:-10.801728pt;}
.ws41{word-spacing:-10.800000pt;}
.ws1c{word-spacing:-10.626800pt;}
.ws3{word-spacing:-10.095467pt;}
.ws40{word-spacing:-9.721555pt;}
.wsc7{word-spacing:-4.782048pt;}
.ws122{word-spacing:-4.675780pt;}
.ws168{word-spacing:-4.303843pt;}
.ws18d{word-spacing:-4.197575pt;}
.wsf{word-spacing:-4.144442pt;}
.wse2{word-spacing:-4.091308pt;}
.ws181{word-spacing:-3.666237pt;}
.ws191{word-spacing:-3.634381pt;}
.ws180{word-spacing:-3.506835pt;}
.ws1ad{word-spacing:-3.490918pt;}
.ws194{word-spacing:-3.251814pt;}
.ws1ba{word-spacing:-3.203994pt;}
.ws1e3{word-spacing:-3.156173pt;}
.ws1a7{word-spacing:-3.108352pt;}
.ws1eb{word-spacing:-3.012710pt;}
.ws3f{word-spacing:-2.975497pt;}
.ws169{word-spacing:-2.869229pt;}
.ws110{word-spacing:-2.821632pt;}
.ws1b7{word-spacing:-2.821427pt;}
.wse{word-spacing:-2.816095pt;}
.ws111{word-spacing:-2.768192pt;}
.ws192{word-spacing:-2.725786pt;}
.wsdd{word-spacing:-2.677965pt;}
.wscb{word-spacing:-2.603559pt;}
.ws11b{word-spacing:-2.534502pt;}
.ws162{word-spacing:-2.337890pt;}
.ws5c{word-spacing:-2.207606pt;}
.ws5b{word-spacing:-2.145082pt;}
.ws1a0{word-spacing:-2.104115pt;}
.wsc8{word-spacing:-2.072221pt;}
.ws52{word-spacing:-2.019087pt;}
.ws23{word-spacing:-1.965953pt;}
.wse1{word-spacing:-1.912819pt;}
.ws12a{word-spacing:-1.859712pt;}
.ws38{word-spacing:-1.859685pt;}
.ws12b{word-spacing:-1.854368pt;}
.ws177{word-spacing:-1.753418pt;}
.wsc{word-spacing:-1.696326pt;}
.ws86{word-spacing:-1.647150pt;}
.wsc3{word-spacing:-1.594016pt;}
.ws1cd{word-spacing:-1.578086pt;}
.ws1db{word-spacing:-1.530266pt;}
.wscc{word-spacing:-1.487748pt;}
.ws12e{word-spacing:-1.464256pt;}
.ws11a{word-spacing:-1.434624pt;}
.wsc6{word-spacing:-1.381481pt;}
.wsa6{word-spacing:-1.308960pt;}
.wsa5{word-spacing:-1.291680pt;}
.ws19f{word-spacing:-1.291162pt;}
.ws12f{word-spacing:-1.197056pt;}
.ws1ce{word-spacing:-1.195520pt;}
.wsb{word-spacing:-1.175671pt;}
.ws18c{word-spacing:-1.168945pt;}
.ws12d{word-spacing:-1.106208pt;}
.ws7d{word-spacing:-1.086970pt;}
.ws179{word-spacing:-1.062677pt;}
.ws37{word-spacing:-1.009543pt;}
.ws7e{word-spacing:-1.000397pt;}
.ws7f{word-spacing:-0.966730pt;}
.wse6{word-spacing:-0.940544pt;}
.ws92{word-spacing:-0.908595pt;}
.ws112{word-spacing:-0.908480pt;}
.ws113{word-spacing:-0.881760pt;}
.wsca{word-spacing:-0.850142pt;}
.ws114{word-spacing:-0.806944pt;}
.ws29{word-spacing:-0.797008pt;}
.ws3a{word-spacing:-0.743874pt;}
.ws66{word-spacing:-0.721440pt;}
.ws67{word-spacing:-0.686880pt;}
.ws10{word-spacing:-0.637606pt;}
.ws15e{word-spacing:-0.584473pt;}
.wsdb{word-spacing:-0.573850pt;}
.ws133{word-spacing:-0.534400pt;}
.ws2b{word-spacing:-0.531339pt;}
.ws47{word-spacing:-0.478208pt;}
.ws68{word-spacing:-0.466560pt;}
.ws9b{word-spacing:-0.440640pt;}
.ws9d{word-spacing:-0.406080pt;}
.ws9c{word-spacing:-0.397440pt;}
.ws11f{word-spacing:-0.382566pt;}
.ws53{word-spacing:-0.371937pt;}
.ws197{word-spacing:-0.334746pt;}
.ws140{word-spacing:-0.320640pt;}
.ws13{word-spacing:-0.318803pt;}
.ws119{word-spacing:-0.286925pt;}
.ws36{word-spacing:-0.265669pt;}
.wseb{word-spacing:-0.256512pt;}
.ws1a9{word-spacing:-0.239104pt;}
.ws27{word-spacing:-0.212535pt;}
.wsa8{word-spacing:-0.194400pt;}
.ws100{word-spacing:-0.192000pt;}
.wse5{word-spacing:-0.191520pt;}
.ws4c{word-spacing:-0.191283pt;}
.wsf6{word-spacing:-0.182400pt;}
.wsa7{word-spacing:-0.172800pt;}
.ws57{word-spacing:-0.172368pt;}
.ws18{word-spacing:-0.159402pt;}
.ws135{word-spacing:-0.154976pt;}
.wsef{word-spacing:-0.153600pt;}
.ws4e{word-spacing:-0.143462pt;}
.wsf0{word-spacing:-0.124800pt;}
.ws32{word-spacing:-0.106268pt;}
.ws163{word-spacing:-0.105626pt;}
.ws134{word-spacing:-0.101536pt;}
.ws1{word-spacing:-0.095642pt;}
.ws5e{word-spacing:-0.091382pt;}
.ws164{word-spacing:-0.087590pt;}
.ws101{word-spacing:-0.062400pt;}
.ws17{word-spacing:-0.053134pt;}
.ws51{word-spacing:-0.047821pt;}
.wse4{word-spacing:-0.017024pt;}
.ws56{word-spacing:-0.015322pt;}
.ws1c7{word-spacing:-0.007492pt;}
.ws1e4{word-spacing:-0.006869pt;}
.ws1f1{word-spacing:-0.005649pt;}
.ws4{word-spacing:-0.004800pt;}
.ws19a{word-spacing:-0.004326pt;}
.ws6{word-spacing:-0.004244pt;}
.ws1b3{word-spacing:-0.003857pt;}
.ws1a8{word-spacing:-0.003746pt;}
.ws199{word-spacing:-0.003490pt;}
.ws1b9{word-spacing:-0.003081pt;}
.ws1cb{word-spacing:-0.002995pt;}
.ws1da{word-spacing:-0.002944pt;}
.ws1a4{word-spacing:-0.002662pt;}
.wse0{word-spacing:-0.002074pt;}
.ws17c{word-spacing:-0.001333pt;}
.ws1ef{word-spacing:-0.000717pt;}
.ws1a5{word-spacing:-0.000631pt;}
.ws5{word-spacing:-0.000481pt;}
.wsa{word-spacing:-0.000290pt;}
.ws0{word-spacing:0.000000pt;}
.wsdf{word-spacing:0.002884pt;}
.ws9{word-spacing:0.003081pt;}
.wsba{word-spacing:0.019238pt;}
.ws127{word-spacing:0.026720pt;}
.ws120{word-spacing:0.047821pt;}
.wsbb{word-spacing:0.052906pt;}
.ws11{word-spacing:0.053134pt;}
.ws12c{word-spacing:0.069472pt;}
.wsb6{word-spacing:0.091382pt;}
.ws6e{word-spacing:0.095040pt;}
.ws1b1{word-spacing:0.095642pt;}
.ws102{word-spacing:0.096192pt;}
.ws30{word-spacing:0.106268pt;}
.wsa9{word-spacing:0.108000pt;}
.ws73{word-spacing:0.112320pt;}
.ws74{word-spacing:0.116640pt;}
.ws103{word-spacing:0.117568pt;}
.wsfe{word-spacing:0.120000pt;}
.ws6f{word-spacing:0.133920pt;}
.wsff{word-spacing:0.134400pt;}
.ws70{word-spacing:0.138240pt;}
.ws4b{word-spacing:0.143462pt;}
.ws5d{word-spacing:0.144288pt;}
.ws126{word-spacing:0.149632pt;}
.ws2f{word-spacing:0.159402pt;}
.wsaa{word-spacing:0.187574pt;}
.ws193{word-spacing:0.191283pt;}
.ws12{word-spacing:0.212535pt;}
.ws91{word-spacing:0.239104pt;}
.ws3b{word-spacing:0.265669pt;}
.ws4a{word-spacing:0.286925pt;}
.ws39{word-spacing:0.318803pt;}
.ws10e{word-spacing:0.331328pt;}
.ws1bc{word-spacing:0.334746pt;}
.wsb7{word-spacing:0.346291pt;}
.ws10f{word-spacing:0.374080pt;}
.ws1bd{word-spacing:0.382566pt;}
.ws64{word-spacing:0.414720pt;}
.wsf8{word-spacing:0.427200pt;}
.ws8f{word-spacing:0.430387pt;}
.ws65{word-spacing:0.436320pt;}
.ws63{word-spacing:0.453600pt;}
.wsf7{word-spacing:0.475200pt;}
.ws54{word-spacing:0.478205pt;}
.wsf9{word-spacing:0.484800pt;}
.wsd7{word-spacing:0.526029pt;}
.ws55{word-spacing:0.531339pt;}
.ws48{word-spacing:0.573850pt;}
.ws15d{word-spacing:0.584473pt;}
.wsc1{word-spacing:0.637606pt;}
.ws98{word-spacing:0.669600pt;}
.wsc2{word-spacing:0.690740pt;}
.ws11d{word-spacing:0.717312pt;}
.ws124{word-spacing:0.721440pt;}
.ws9a{word-spacing:0.725760pt;}
.ws104{word-spacing:0.726784pt;}
.ws99{word-spacing:0.730080pt;}
.ws129{word-spacing:0.774880pt;}
.ws14b{word-spacing:0.777600pt;}
.ws1e8{word-spacing:0.812954pt;}
.ws128{word-spacing:0.828320pt;}
.ws125{word-spacing:0.860384pt;}
.ws14c{word-spacing:0.888000pt;}
.ws174{word-spacing:0.903276pt;}
.ws1ee{word-spacing:0.908595pt;}
.ws121{word-spacing:0.956410pt;}
.ws1d8{word-spacing:0.956416pt;}
.ws17b{word-spacing:1.009543pt;}
.ws17a{word-spacing:1.029552pt;}
.ws1f0{word-spacing:1.052058pt;}
.ws132{word-spacing:1.068800pt;}
.ws131{word-spacing:1.154304pt;}
.wsc9{word-spacing:1.168945pt;}
.ws130{word-spacing:1.186368pt;}
.ws16b{word-spacing:1.222079pt;}
.ws77{word-spacing:1.226448pt;}
.wsdc{word-spacing:1.243341pt;}
.ws6b{word-spacing:1.274400pt;}
.wscd{word-spacing:1.275213pt;}
.ws94{word-spacing:1.278720pt;}
.ws6c{word-spacing:1.287360pt;}
.ws76{word-spacing:1.313021pt;}
.wsce{word-spacing:1.328347pt;}
.ws1e2{word-spacing:1.434624pt;}
.ws1cc{word-spacing:1.482445pt;}
.ws75{word-spacing:1.500595pt;}
.ws95{word-spacing:1.585440pt;}
.ws93{word-spacing:1.602720pt;}
.ws3e{word-spacing:1.700284pt;}
.ws161{word-spacing:1.753418pt;}
.ws176{word-spacing:1.806551pt;}
.ws9f{word-spacing:1.853280pt;}
.ws2c{word-spacing:1.859685pt;}
.ws9e{word-spacing:1.861920pt;}
.wsa0{word-spacing:1.883520pt;}
.ws18f{word-spacing:1.912819pt;}
.ws10c{word-spacing:1.939872pt;}
.ws117{word-spacing:1.960653pt;}
.ws170{word-spacing:1.965953pt;}
.ws10a{word-spacing:1.987968pt;}
.ws1e5{word-spacing:2.008474pt;}
.wse8{word-spacing:2.025376pt;}
.ws22{word-spacing:2.072221pt;}
.wse9{word-spacing:2.073472pt;}
.ws147{word-spacing:2.073600pt;}
.ws16c{word-spacing:2.125355pt;}
.ws10b{word-spacing:2.153632pt;}
.wsc0{word-spacing:2.178489pt;}
.ws14{word-spacing:2.231622pt;}
.ws116{word-spacing:2.247578pt;}
.ws139{word-spacing:2.255168pt;}
.ws16e{word-spacing:2.284756pt;}
.ws15a{word-spacing:2.323200pt;}
.ws173{word-spacing:2.337890pt;}
.ws154{word-spacing:2.356800pt;}
.wsf2{word-spacing:2.376000pt;}
.wsf1{word-spacing:2.380800pt;}
.ws1a2{word-spacing:2.391040pt;}
.ws84{word-spacing:2.404800pt;}
.ws148{word-spacing:2.409600pt;}
.ws15c{word-spacing:2.414400pt;}
.ws15b{word-spacing:2.419200pt;}
.wsa1{word-spacing:2.436480pt;}
.ws90{word-spacing:2.438861pt;}
.ws2d{word-spacing:2.444158pt;}
.wsa2{word-spacing:2.453760pt;}
.ws85{word-spacing:2.472134pt;}
.wsde{word-spacing:2.534502pt;}
.ws1c5{word-spacing:2.582323pt;}
.ws26{word-spacing:2.603559pt;}
.ws109{word-spacing:2.623904pt;}
.ws11e{word-spacing:2.630144pt;}
.wsbc{word-spacing:2.635661pt;}
.ws13c{word-spacing:2.655968pt;}
.ws89{word-spacing:2.656693pt;}
.ws13d{word-spacing:2.661312pt;}
.wsbd{word-spacing:2.678947pt;}
.ws18b{word-spacing:2.709827pt;}
.ws156{word-spacing:2.716800pt;}
.ws157{word-spacing:2.740800pt;}
.wsc4{word-spacing:2.762961pt;}
.wsc5{word-spacing:2.816095pt;}
.ws190{word-spacing:2.821427pt;}
.ws11c{word-spacing:2.917069pt;}
.wsbf{word-spacing:2.938666pt;}
.wsb5{word-spacing:2.962714pt;}
.ws1af{word-spacing:2.964890pt;}
.wse3{word-spacing:2.975497pt;}
.ws1cf{word-spacing:3.012710pt;}
.ws14d{word-spacing:3.019200pt;}
.ws14e{word-spacing:3.024000pt;}
.ws15{word-spacing:3.028630pt;}
.wsbe{word-spacing:3.034858pt;}
.ws14f{word-spacing:3.043200pt;}
.ws16{word-spacing:3.081764pt;}
.ws1d1{word-spacing:3.108352pt;}
.ws18a{word-spacing:3.134898pt;}
.ws1b8{word-spacing:3.156173pt;}
.wsb0{word-spacing:3.183955pt;}
.ws1a{word-spacing:3.188032pt;}
.wsb1{word-spacing:3.188765pt;}
.wsb4{word-spacing:3.193574pt;}
.ws46{word-spacing:3.203994pt;}
.wsb8{word-spacing:3.212813pt;}
.ws50{word-spacing:3.251814pt;}
.wsb3{word-spacing:3.275338pt;}
.wsb9{word-spacing:3.323434pt;}
.wsb2{word-spacing:3.337862pt;}
.ws19d{word-spacing:3.347456pt;}
.ws1b4{word-spacing:3.443098pt;}
.wsf4{word-spacing:3.489600pt;}
.ws118{word-spacing:3.490918pt;}
.ws20{word-spacing:3.506835pt;}
.ws45{word-spacing:3.538739pt;}
.ws155{word-spacing:3.552000pt;}
.ws14a{word-spacing:3.614400pt;}
.ws149{word-spacing:3.619200pt;}
.ws19b{word-spacing:3.634381pt;}
.wsf5{word-spacing:3.648000pt;}
.wsf3{word-spacing:3.676800pt;}
.ws1a3{word-spacing:3.682202pt;}
.ws1be{word-spacing:3.730022pt;}
.wsaf{word-spacing:3.770726pt;}
.ws16f{word-spacing:3.772505pt;}
.ws58{word-spacing:3.842870pt;}
.ws16a{word-spacing:3.878772pt;}
.ws88{word-spacing:3.931906pt;}
.wsfd{word-spacing:3.964800pt;}
.wsfc{word-spacing:3.979200pt;}
.ws166{word-spacing:4.038174pt;}
.ws1c4{word-spacing:4.064768pt;}
.wsae{word-spacing:4.078541pt;}
.ws167{word-spacing:4.091308pt;}
.ws59{word-spacing:4.107398pt;}
.ws35{word-spacing:4.250709pt;}
.ws1b{word-spacing:4.250720pt;}
.ws34{word-spacing:4.303843pt;}
.ws196{word-spacing:4.399514pt;}
.ws25{word-spacing:4.410111pt;}
.ws24{word-spacing:4.463245pt;}
.ws4d{word-spacing:4.542976pt;}
.ws10d{word-spacing:4.563776pt;}
.ws1c1{word-spacing:4.638618pt;}
.wsd6{word-spacing:4.686438pt;}
.ws1d7{word-spacing:4.734259pt;}
.ws1b5{word-spacing:4.775407pt;}
.ws1bb{word-spacing:4.775526pt;}
.ws1ec{word-spacing:4.775578pt;}
.ws1ae{word-spacing:4.775927pt;}
.ws1ed{word-spacing:4.776610pt;}
.ws1e7{word-spacing:4.778291pt;}
.ws1d3{word-spacing:4.778342pt;}
.ws1b0{word-spacing:4.779110pt;}
.ws1ca{word-spacing:4.780578pt;}
.ws1d2{word-spacing:4.780663pt;}
.ws1b2{word-spacing:4.780672pt;}
.ws1bf{word-spacing:4.780843pt;}
.ws19e{word-spacing:4.781978pt;}
.ws2e{word-spacing:4.782048pt;}
.ws1a6{word-spacing:4.782080pt;}
.ws1d9{word-spacing:4.783317pt;}
.ws1c6{word-spacing:4.785382pt;}
.ws1d6{word-spacing:4.820292pt;}
.ws1e9{word-spacing:4.829901pt;}
.ws175{word-spacing:4.835182pt;}
.ws13a{word-spacing:4.879072pt;}
.ws171{word-spacing:4.888316pt;}
.ws198{word-spacing:4.925542pt;}
.ws13b{word-spacing:4.927168pt;}
.ws158{word-spacing:4.934400pt;}
.ws21{word-spacing:4.941450pt;}
.ws159{word-spacing:4.953600pt;}
.wsd5{word-spacing:5.021184pt;}
.ws6d{word-spacing:5.024160pt;}
.ws182{word-spacing:5.100851pt;}
.ws1c9{word-spacing:5.116826pt;}
.ws28{word-spacing:5.153985pt;}
.ws1c2{word-spacing:5.164646pt;}
.ws178{word-spacing:5.207119pt;}
.ws1ea{word-spacing:5.212467pt;}
.ws144{word-spacing:5.256000pt;}
.wsda{word-spacing:5.260288pt;}
.ws145{word-spacing:5.275200pt;}
.ws1f{word-spacing:5.313387pt;}
.ws105{word-spacing:5.509664pt;}
.ws3c{word-spacing:5.525922pt;}
.ws142{word-spacing:5.539200pt;}
.ws1b6{word-spacing:5.547213pt;}
.ws106{word-spacing:5.563104pt;}
.ws141{word-spacing:5.577600pt;}
.ws143{word-spacing:5.587200pt;}
.ws72{word-spacing:5.603040pt;}
.ws71{word-spacing:5.616000pt;}
.ws33{word-spacing:5.632190pt;}
.ws15f{word-spacing:5.685324pt;}
.ws1d0{word-spacing:5.738496pt;}
.wsd{word-spacing:5.791591pt;}
.ws185{word-spacing:5.844725pt;}
.ws8c{word-spacing:5.977600pt;}
.ws1a1{word-spacing:6.025421pt;}
.ws172{word-spacing:6.110395pt;}
.ws4f{word-spacing:6.121062pt;}
.ws160{word-spacing:6.163529pt;}
.ws1c8{word-spacing:6.168883pt;}
.ws1d4{word-spacing:6.216704pt;}
.ws1aa{word-spacing:6.551450pt;}
.ws8d{word-spacing:6.599270pt;}
.ws62{word-spacing:6.734880pt;}
.ws5f{word-spacing:6.747840pt;}
.ws16d{word-spacing:6.748001pt;}
.ws60{word-spacing:6.756480pt;}
.ws7a{word-spacing:6.757488pt;}
.ws61{word-spacing:6.760800pt;}
.ws3d{word-spacing:6.801135pt;}
.ws150{word-spacing:6.883200pt;}
.ws49{word-spacing:6.886195pt;}
.ws7c{word-spacing:6.978730pt;}
.wsd9{word-spacing:7.077478pt;}
.ws7b{word-spacing:7.084541pt;}
.ws31{word-spacing:7.173072pt;}
.ws183{word-spacing:7.226206pt;}
.ws83{word-spacing:7.252877pt;}
.ws6a{word-spacing:7.309440pt;}
.ws188{word-spacing:7.332474pt;}
.ws69{word-spacing:7.348320pt;}
.ws1df{word-spacing:7.412224pt;}
.ws81{word-spacing:7.517405pt;}
.ws187{word-spacing:7.598143pt;}
.ws96{word-spacing:7.603200pt;}
.ws82{word-spacing:7.647264pt;}
.ws97{word-spacing:7.655040pt;}
.ws1c0{word-spacing:7.794790pt;}
.ws17f{word-spacing:7.863812pt;}
.ws1dd{word-spacing:7.938253pt;}
.ws1dc{word-spacing:7.986074pt;}
.ws146{word-spacing:8.126400pt;}
.ws17e{word-spacing:8.235749pt;}
.ws1ac{word-spacing:8.272998pt;}
.ws17d{word-spacing:8.288883pt;}
.ws5a{word-spacing:8.387942pt;}
.wsed{word-spacing:8.433600pt;}
.wsee{word-spacing:8.476800pt;}
.wsec{word-spacing:8.500800pt;}
.ws8e{word-spacing:8.655565pt;}
.ws18e{word-spacing:8.660820pt;}
.ws165{word-spacing:8.767088pt;}
.ws186{word-spacing:8.820222pt;}
.wsd8{word-spacing:8.894669pt;}
.ws184{word-spacing:8.979623pt;}
.wsea{word-spacing:9.148928pt;}
.ws80{word-spacing:9.258480pt;}
.ws8b{word-spacing:9.457828pt;}
.ws1de{word-spacing:9.851085pt;}
.wsa3{word-spacing:10.493280pt;}
.wsa4{word-spacing:10.510560pt;}
.ws123{word-spacing:10.933824pt;}
.ws1e6{word-spacing:11.190067pt;}
.ws137{word-spacing:11.874368pt;}
.ws136{word-spacing:11.901088pt;}
.ws87{word-spacing:12.805262pt;}
.ws19c{word-spacing:13.055078pt;}
.ws138{word-spacing:14.097472pt;}
.ws108{word-spacing:14.177632pt;}
.ws107{word-spacing:14.444832pt;}
.wsfb{word-spacing:14.510400pt;}
.wsfa{word-spacing:14.520000pt;}
.ws8a{word-spacing:14.824349pt;}
.ws152{word-spacing:14.870400pt;}
.ws1c3{word-spacing:15.159194pt;}
.ws151{word-spacing:15.196800pt;}
.ws153{word-spacing:15.235200pt;}
.wse7{word-spacing:15.401408pt;}
.ws79{word-spacing:16.468070pt;}
.ws78{word-spacing:16.554643pt;}
.ws13e{word-spacing:16.833600pt;}
.ws13f{word-spacing:17.074080pt;}
.ws1e1{word-spacing:17.741517pt;}
.wsac{word-spacing:19.098922pt;}
.wsad{word-spacing:19.243210pt;}
.ws1d5{word-spacing:24.675533pt;}
.ws1ab{word-spacing:24.866816pt;}
.wsab{word-spacing:25.159018pt;}
.ws189{word-spacing:27.735878pt;}
.ws195{word-spacing:275.256525pt;}
.ws1d{word-spacing:776.946602pt;}
._0{margin-left:-31.595439pt;}
._1b{margin-left:-19.204733pt;}
._1a{margin-left:-18.155936pt;}
._17{margin-left:-9.321005pt;}
._3c{margin-left:-7.103179pt;}
._4{margin-left:-6.168883pt;}
._5{margin-left:-5.164653pt;}
._3{margin-left:-3.931906pt;}
._20{margin-left:-2.970142pt;}
._8{margin-left:-1.996288pt;}
._2{margin-left:-0.956410pt;}
._9{width:0.969929pt;}
._1{width:2.664027pt;}
._29{width:3.878772pt;}
._16{width:7.488432pt;}
._22{width:9.593689pt;}
._c{width:10.626800pt;}
._1f{width:12.144857pt;}
._39{width:13.070931pt;}
._13{width:14.016596pt;}
._3a{width:14.945589pt;}
._6{width:15.876506pt;}
._7{width:17.598054pt;}
._a{width:18.703121pt;}
._11{width:19.771153pt;}
._1e{width:21.519366pt;}
._26{width:23.060098pt;}
._f{width:24.654114pt;}
._b{width:25.716791pt;}
._21{width:27.363941pt;}
._38{width:28.463977pt;}
._25{width:29.595564pt;}
._19{width:30.711375pt;}
._e{width:32.305391pt;}
._10{width:33.421202pt;}
._27{width:34.696415pt;}
._14{width:35.599691pt;}
._1c{width:37.013306pt;}
._24{width:38.866119pt;}
._12{width:40.594274pt;}
._1d{width:42.739610pt;}
._3b{width:48.265715pt;}
._3d{width:54.993920pt;}
._18{width:57.868135pt;}
._2c{width:97.074185pt;}
._35{width:139.539021pt;}
._2b{width:141.740715pt;}
._2f{width:159.865088pt;}
._2e{width:189.083597pt;}
._36{width:235.131913pt;}
._2a{width:247.281357pt;}
._32{width:265.070694pt;}
._33{width:286.206155pt;}
._34{width:297.923584pt;}
._37{width:323.316429pt;}
._2d{width:328.241971pt;}
._31{width:333.358797pt;}
._30{width:338.666906pt;}
._15{width:1212.883831pt;}
._23{width:1347.756471pt;}
._28{width:1676.568767pt;}
._d{width:1697.822100pt;}
.fs6{font-size:37.193600pt;}
.fs9{font-size:37.276537pt;}
.fsb{font-size:38.304000pt;}
.fs5{font-size:40.381867pt;}
.fs8{font-size:41.988267pt;}
.fsa{font-size:42.507200pt;}
.fsf{font-size:42.560000pt;}
.fsc{font-size:43.200000pt;}
.fs0{font-size:47.035520pt;}
.fs7{font-size:47.820800pt;}
.fs10{font-size:48.000000pt;}
.fsd{font-size:48.096000pt;}
.fs1{font-size:50.395200pt;}
.fs3{font-size:53.133867pt;}
.fs11{font-size:53.440000pt;}
.fse{font-size:57.600000pt;}
.fs2{font-size:60.474240pt;}
.fs12{font-size:64.000000pt;}
.fs4{font-size:95.641600pt;}
.ye2{bottom:-460.650267pt;}
.yfe{bottom:-431.129195pt;}
.yfd{bottom:-413.209427pt;}
.yfc{bottom:-395.209499pt;}
.ya1{bottom:-388.727640pt;}
.yfb{bottom:-377.209571pt;}
.yb7{bottom:-368.638819pt;}
.yfa{bottom:-359.209643pt;}
.yb6{bottom:-352.438884pt;}
.yf9{bottom:-341.209715pt;}
.yb5{bottom:-336.238949pt;}
.y6a{bottom:-326.292840pt;}
.yf8{bottom:-323.209787pt;}
.yb4{bottom:-320.039014pt;}
.y81{bottom:-310.020242pt;}
.yf7{bottom:-305.290019pt;}
.yb3{bottom:-303.839078pt;}
.y80{bottom:-293.820307pt;}
.yb2{bottom:-287.639143pt;}
.yf6{bottom:-287.290091pt;}
.y11c{bottom:-281.262267pt;}
.y7f{bottom:-277.620372pt;}
.yb1{bottom:-271.439208pt;}
.yf5{bottom:-269.290163pt;}
.y13c{bottom:-262.705867pt;}
.y7e{bottom:-261.420437pt;}
.yb0{bottom:-255.311417pt;}
.y13b{bottom:-245.345467pt;}
.y7d{bottom:-245.220502pt;}
.yf4{bottom:-243.290267pt;}
.yaf{bottom:-239.111482pt;}
.y7c{bottom:-229.020566pt;}
.y13a{bottom:-228.065467pt;}
.yae{bottom:-222.911546pt;}
.y7b{bottom:-212.892775pt;}
.y139{bottom:-210.705067pt;}
.yf3{bottom:-209.693067pt;}
.yad{bottom:-199.511640pt;}
.y7a{bottom:-196.692840pt;}
.y138{bottom:-193.344667pt;}
.yf2{bottom:-192.332667pt;}
.y137{bottom:-176.064667pt;}
.yf1{bottom:-175.052667pt;}
.yac{bottom:-169.273800pt;}
.y79{bottom:-166.454880pt;}
.y136{bottom:-158.704267pt;}
.yf0{bottom:-157.692267pt;}
.yab{bottom:-153.649440pt;}
.y78{bottom:-150.830520pt;}
.y135{bottom:-141.343867pt;}
.yef{bottom:-140.331867pt;}
.yaa{bottom:-138.097440pt;}
.y77{bottom:-135.278520pt;}
.y134{bottom:-124.063867pt;}
.yee{bottom:-123.051867pt;}
.ya9{bottom:-122.473080pt;}
.y76{bottom:-119.654160pt;}
.ya8{bottom:-106.848720pt;}
.y133{bottom:-106.703467pt;}
.yed{bottom:-105.691467pt;}
.y75{bottom:-104.029800pt;}
.ya7{bottom:-91.296720pt;}
.y132{bottom:-89.343067pt;}
.y74{bottom:-88.477800pt;}
.yec{bottom:-88.331067pt;}
.ya6{bottom:-75.672360pt;}
.y73{bottom:-72.853440pt;}
.y131{bottom:-72.063067pt;}
.yeb{bottom:-71.051067pt;}
.ya5{bottom:-60.048000pt;}
.y72{bottom:-57.229080pt;}
.y130{bottom:-54.702667pt;}
.yea{bottom:-53.690667pt;}
.ya4{bottom:-44.496000pt;}
.y71{bottom:-41.677080pt;}
.y12f{bottom:-37.342267pt;}
.ye9{bottom:-36.330267pt;}
.ya3{bottom:-28.871640pt;}
.y70{bottom:-26.052720pt;}
.y12e{bottom:-8.222267pt;}
.ye8{bottom:-7.210267pt;}
.ya2{bottom:-2.735640pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:1.451160pt;}
.y21{bottom:3.044747pt;}
.y4{bottom:8.420534pt;}
.y20{bottom:12.578910pt;}
.y3{bottom:25.722550pt;}
.y2{bottom:29.128174pt;}
.y32{bottom:56.693333pt;}
.yc1{bottom:94.122667pt;}
.y263{bottom:96.850667pt;}
.y15a{bottom:97.960000pt;}
.y63{bottom:103.650667pt;}
.y179{bottom:109.441333pt;}
.yc0{bottom:111.218667pt;}
.y1ac{bottom:113.798667pt;}
.y262{bottom:114.066667pt;}
.y159{bottom:115.972000pt;}
.y22f{bottom:116.277333pt;}
.y93{bottom:121.482667pt;}
.y62{bottom:121.662667pt;}
.y119{bottom:123.476000pt;}
.y1ff{bottom:125.913333pt;}
.y178{bottom:127.454667pt;}
.ybf{bottom:128.314667pt;}
.y261{bottom:131.281333pt;}
.y1ab{bottom:131.812000pt;}
.y22e{bottom:133.492000pt;}
.y1d4{bottom:133.884000pt;}
.y92{bottom:139.494667pt;}
.y61{bottom:139.674667pt;}
.y118{bottom:141.488000pt;}
.y158{bottom:141.954667pt;}
.y1fe{bottom:143.926667pt;}
.ybe{bottom:145.410667pt;}
.y177{bottom:145.466667pt;}
.y260{bottom:148.497333pt;}
.y1a9{bottom:149.824000pt;}
.y22d{bottom:150.708000pt;}
.y1d3{bottom:151.896000pt;}
.y1aa{bottom:154.645333pt;}
.y91{bottom:157.508000pt;}
.y60{bottom:157.688000pt;}
.y117{bottom:159.500000pt;}
.y1fd{bottom:161.938667pt;}
.ybd{bottom:162.506667pt;}
.y176{bottom:163.478667pt;}
.y25f{bottom:165.713333pt;}
.y1a8{bottom:167.836000pt;}
.y22c{bottom:167.924000pt;}
.y1d2{bottom:169.909333pt;}
.y157{bottom:172.905333pt;}
.y90{bottom:175.520000pt;}
.y5f{bottom:175.700000pt;}
.y116{bottom:177.513333pt;}
.ybc{bottom:179.602667pt;}
.y1fc{bottom:179.950667pt;}
.y175{bottom:181.492000pt;}
.y25e{bottom:182.928000pt;}
.y31{bottom:183.397333pt;}
.y22b{bottom:185.138667pt;}
.y1a7{bottom:185.849333pt;}
.y1d1{bottom:187.921333pt;}
.y156{bottom:190.917333pt;}
.y8f{bottom:193.532000pt;}
.y115{bottom:195.525333pt;}
.ybb{bottom:196.698667pt;}
.y174{bottom:199.504000pt;}
.y25d{bottom:200.144000pt;}
.y30{bottom:201.409333pt;}
.y5e{bottom:201.682667pt;}
.y22a{bottom:202.354667pt;}
.y1a6{bottom:203.861333pt;}
.y1fb{bottom:205.933333pt;}
.y155{bottom:208.930667pt;}
.y8e{bottom:211.545333pt;}
.y114{bottom:213.538667pt;}
.yba{bottom:213.793333pt;}
.y1d0{bottom:213.904000pt;}
.y25c{bottom:217.358667pt;}
.y173{bottom:217.517333pt;}
.y229{bottom:219.569333pt;}
.y1a5{bottom:221.874667pt;}
.y154{bottom:226.942667pt;}
.y8d{bottom:229.557333pt;}
.yb9{bottom:230.889333pt;}
.y113{bottom:231.550667pt;}
.y5d{bottom:232.633333pt;}
.y25b{bottom:234.574667pt;}
.y2f{bottom:235.362667pt;}
.y172{bottom:235.529333pt;}
.y228{bottom:236.785333pt;}
.y1fa{bottom:236.884000pt;}
.y1a4{bottom:239.886667pt;}
.y1cf{bottom:244.854667pt;}
.y153{bottom:244.956000pt;}
.y8c{bottom:247.570667pt;}
.yb8{bottom:247.985333pt;}
.y112{bottom:249.562667pt;}
.y25a{bottom:251.790667pt;}
.y2e{bottom:253.374667pt;}
.y171{bottom:253.541333pt;}
.y227{bottom:254.001333pt;}
.y1f9{bottom:254.897333pt;}
.y1a3{bottom:257.898667pt;}
.y1ce{bottom:262.866667pt;}
.y152{bottom:262.968000pt;}
.y5c{bottom:263.584000pt;}
.y111{bottom:267.576000pt;}
.y9f{bottom:267.922667pt;}
.y259{bottom:269.005333pt;}
.y226{bottom:271.216000pt;}
.y2d{bottom:271.386667pt;}
.y170{bottom:271.554667pt;}
.y1f7{bottom:272.909333pt;}
.y1a2{bottom:273.425333pt;}
.y1a0{bottom:275.912000pt;}
.y1f8{bottom:277.732000pt;}
.y8b{bottom:278.681333pt;}
.y1a1{bottom:280.733333pt;}
.y1cd{bottom:280.880000pt;}
.y151{bottom:280.980000pt;}
.y5b{bottom:281.597333pt;}
.y110{bottom:285.588000pt;}
.y258{bottom:286.221333pt;}
.y225{bottom:288.432000pt;}
.y2c{bottom:289.400000pt;}
.y16f{bottom:289.566667pt;}
.y1f6{bottom:290.922667pt;}
.y19f{bottom:293.924000pt;}
.y8a{bottom:295.777333pt;}
.y1cc{bottom:298.892000pt;}
.y150{bottom:298.993333pt;}
.y5a{bottom:299.609333pt;}
.y257{bottom:303.437333pt;}
.y10f{bottom:303.601333pt;}
.y224{bottom:305.646667pt;}
.y2b{bottom:307.412000pt;}
.y16e{bottom:307.580000pt;}
.y1f5{bottom:308.934667pt;}
.y19e{bottom:311.937333pt;}
.y89{bottom:312.873333pt;}
.y1cb{bottom:316.905333pt;}
.y14f{bottom:317.005333pt;}
.y59{bottom:317.621333pt;}
.y256{bottom:320.652000pt;}
.y10e{bottom:321.613333pt;}
.y223{bottom:322.862667pt;}
.y2a{bottom:325.425333pt;}
.y16d{bottom:325.592000pt;}
.y1f4{bottom:326.946667pt;}
.y19c{bottom:329.949333pt;}
.y88{bottom:329.969333pt;}
.y19d{bottom:334.770667pt;}
.y1ca{bottom:334.917333pt;}
.y14e{bottom:335.018667pt;}
.y58{bottom:335.634667pt;}
.y255{bottom:337.868000pt;}
.y10d{bottom:339.625333pt;}
.y222{bottom:340.078667pt;}
.y29{bottom:343.437333pt;}
.y16c{bottom:343.604000pt;}
.y87{bottom:347.065333pt;}
.y19b{bottom:347.961333pt;}
.y1c9{bottom:352.929333pt;}
.y57{bottom:353.646667pt;}
.y254{bottom:355.082667pt;}
.y221{bottom:357.293333pt;}
.y10c{bottom:357.638667pt;}
.y12d{bottom:357.859461pt;}
.ydf{bottom:358.721333pt;}
.y14d{bottom:361.001333pt;}
.y28{bottom:361.449333pt;}
.y16b{bottom:361.617333pt;}
.y86{bottom:364.161333pt;}
.y1c8{bottom:370.942667pt;}
.y56{bottom:371.660000pt;}
.y253{bottom:372.298667pt;}
.y19a{bottom:373.944000pt;}
.y220{bottom:374.509333pt;}
.y10b{bottom:375.650667pt;}
.y12c{bottom:375.779229pt;}
.yde{bottom:376.733333pt;}
.y27{bottom:379.462667pt;}
.y16a{bottom:379.629333pt;}
.y85{bottom:381.257333pt;}
.y1f3{bottom:383.880000pt;}
.y1c7{bottom:388.954667pt;}
.y14c{bottom:389.110667pt;}
.y252{bottom:389.514667pt;}
.y55{bottom:389.672000pt;}
.y21f{bottom:391.724000pt;}
.y12b{bottom:393.779157pt;}
.ydd{bottom:394.746667pt;}
.y26{bottom:397.474667pt;}
.y169{bottom:397.642667pt;}
.y84{bottom:398.353333pt;}
.y10a{bottom:401.633333pt;}
.y1f2{bottom:401.893333pt;}
.y199{bottom:404.894667pt;}
.y14b{bottom:406.205333pt;}
.y251{bottom:406.729333pt;}
.y1c6{bottom:406.968000pt;}
.y54{bottom:407.684000pt;}
.y21e{bottom:408.940000pt;}
.y12a{bottom:411.779085pt;}
.ydc{bottom:412.758667pt;}
.y83{bottom:415.448000pt;}
.y25{bottom:415.488000pt;}
.y168{bottom:415.654667pt;}
.ye7{bottom:418.310181pt;}
.y1f1{bottom:419.905333pt;}
.y14a{bottom:423.301333pt;}
.y250{bottom:423.945333pt;}
.y1c5{bottom:424.980000pt;}
.y53{bottom:425.697333pt;}
.y21d{bottom:426.156000pt;}
.y109{bottom:429.742667pt;}
.y129{bottom:429.779013pt;}
.ydb{bottom:430.772000pt;}
.y82{bottom:432.544000pt;}
.y24{bottom:433.500000pt;}
.y167{bottom:433.666667pt;}
.y198{bottom:435.845333pt;}
.ye6{bottom:436.310109pt;}
.y1f0{bottom:437.918667pt;}
.y149{bottom:440.397333pt;}
.y24f{bottom:441.160000pt;}
.y1c4{bottom:442.992000pt;}
.y52{bottom:443.709333pt;}
.y108{bottom:446.838667pt;}
.y128{bottom:447.778941pt;}
.yda{bottom:448.784000pt;}
.y21c{bottom:451.341333pt;}
.y23{bottom:451.512000pt;}
.y166{bottom:451.680000pt;}
.y68{bottom:452.481333pt;}
.y197{bottom:453.858667pt;}
.ye5{bottom:454.310037pt;}
.y1ef{bottom:455.930667pt;}
.y148{bottom:457.493333pt;}
.y24e{bottom:458.376000pt;}
.y1c2{bottom:461.005333pt;}
.y51{bottom:461.722667pt;}
.y107{bottom:463.934667pt;}
.y127{bottom:465.778869pt;}
.y1c3{bottom:465.826667pt;}
.yd9{bottom:466.796000pt;}
.y22{bottom:469.525333pt;}
.y165{bottom:469.692000pt;}
.y196{bottom:471.870667pt;}
.ye4{bottom:472.229805pt;}
.y1ee{bottom:473.942667pt;}
.y147{bottom:474.589333pt;}
.y24d{bottom:475.592000pt;}
.y1c1{bottom:479.017333pt;}
.y50{bottom:479.734667pt;}
.y6e{bottom:480.971498pt;}
.y106{bottom:481.030667pt;}
.y126{bottom:483.778797pt;}
.yd8{bottom:484.809333pt;}
.y21b{bottom:486.953333pt;}
.y164{bottom:487.704000pt;}
.y195{bottom:489.884000pt;}
.ye3{bottom:490.229733pt;}
.y146{bottom:491.685333pt;}
.y1ed{bottom:491.956000pt;}
.y24c{bottom:492.806667pt;}
.ya0{bottom:496.944360pt;}
.y6d{bottom:497.171434pt;}
.y4f{bottom:497.746667pt;}
.y105{bottom:498.126667pt;}
.y125{bottom:501.698565pt;}
.yd7{bottom:502.821333pt;}
.y1f{bottom:502.997301pt;}
.y21a{bottom:503.526667pt;}
.y1c0{bottom:505.000000pt;}
.y163{bottom:505.717333pt;}
.y194{bottom:507.896000pt;}
.y145{bottom:508.781333pt;}
.y1ec{bottom:509.968000pt;}
.y24b{bottom:510.022667pt;}
.y1e{bottom:510.060000pt;}
.y6c{bottom:513.299225pt;}
.y104{bottom:515.222667pt;}
.y4e{bottom:515.760000pt;}
.y124{bottom:519.698493pt;}
.y219{bottom:520.101333pt;}
.yd6{bottom:520.834667pt;}
.ye1{bottom:523.429733pt;}
.y162{bottom:523.729333pt;}
.y144{bottom:525.877333pt;}
.y193{bottom:525.908000pt;}
.y24a{bottom:527.237333pt;}
.y1eb{bottom:527.981333pt;}
.y6b{bottom:529.499160pt;}
.y103{bottom:532.318667pt;}
.y4d{bottom:533.772000pt;}
.y1bf{bottom:535.950667pt;}
.y218{bottom:536.674667pt;}
.y1d{bottom:538.350667pt;}
.yd5{bottom:538.846667pt;}
.y161{bottom:541.742667pt;}
.y143{bottom:542.973333pt;}
.y192{bottom:543.921333pt;}
.y249{bottom:544.453333pt;}
.y123{bottom:545.698389pt;}
.y1ea{bottom:545.993333pt;}
.y102{bottom:549.413333pt;}
.y4c{bottom:551.785333pt;}
.y217{bottom:553.248000pt;}
.y1bd{bottom:553.964000pt;}
.y1c{bottom:554.489333pt;}
.yd4{bottom:556.858667pt;}
.y1be{bottom:558.785333pt;}
.y69{bottom:559.379160pt;}
.y160{bottom:559.754667pt;}
.y142{bottom:560.069333pt;}
.y248{bottom:561.669333pt;}
.y191{bottom:561.933333pt;}
.y1e9{bottom:564.005333pt;}
.y101{bottom:566.509333pt;}
.y4b{bottom:569.797333pt;}
.y216{bottom:569.822667pt;}
.y1b{bottom:570.629333pt;}
.y1bc{bottom:571.976000pt;}
.yd3{bottom:574.872000pt;}
.y141{bottom:577.164000pt;}
.y15f{bottom:577.766667pt;}
.y247{bottom:578.884000pt;}
.y122{bottom:579.698253pt;}
.y190{bottom:579.945333pt;}
.y1e8{bottom:582.018667pt;}
.y100{bottom:583.605333pt;}
.y215{bottom:586.396000pt;}
.y1a{bottom:586.769333pt;}
.y4a{bottom:587.809333pt;}
.y1bb{bottom:589.988000pt;}
.yd2{bottom:592.884000pt;}
.y140{bottom:594.260000pt;}
.y15e{bottom:595.780000pt;}
.y246{bottom:596.100000pt;}
.y121{bottom:597.698181pt;}
.y18f{bottom:597.958667pt;}
.y1e7{bottom:600.030667pt;}
.yff{bottom:600.701333pt;}
.y19{bottom:602.908000pt;}
.y214{bottom:602.969333pt;}
.y49{bottom:605.822667pt;}
.y1b9{bottom:608.001333pt;}
.yd1{bottom:610.896000pt;}
.y13f{bottom:611.356000pt;}
.y1ba{bottom:612.822667pt;}
.y245{bottom:613.314667pt;}
.y15d{bottom:613.792000pt;}
.y120{bottom:615.698109pt;}
.y18e{bottom:615.970667pt;}
.y1e6{bottom:618.044000pt;}
.y18{bottom:619.048000pt;}
.y213{bottom:619.544000pt;}
.ye0{bottom:620.638667pt;}
.y48{bottom:623.834667pt;}
.y1b8{bottom:626.013333pt;}
.y13e{bottom:628.452000pt;}
.y244{bottom:630.530667pt;}
.y15c{bottom:631.805333pt;}
.y11f{bottom:633.698037pt;}
.y18c{bottom:633.984000pt;}
.y1e4{bottom:636.056000pt;}
.y212{bottom:636.117333pt;}
.yd0{bottom:636.878667pt;}
.y18d{bottom:638.805333pt;}
.y17{bottom:639.528000pt;}
.y1e5{bottom:640.877333pt;}
.y47{bottom:641.846667pt;}
.y1b7{bottom:644.026667pt;}
.y13d{bottom:645.548000pt;}
.y243{bottom:647.746667pt;}
.y15b{bottom:649.817333pt;}
.y16{bottom:651.326667pt;}
.y11e{bottom:651.617805pt;}
.y18b{bottom:651.996000pt;}
.y211{bottom:652.692000pt;}
.y1e2{bottom:654.068000pt;}
.y1e3{bottom:658.890667pt;}
.y46{bottom:659.860000pt;}
.y1b6{bottom:662.038667pt;}
.y242{bottom:664.961333pt;}
.y11a{bottom:665.485333pt;}
.ycf{bottom:667.829333pt;}
.y210{bottom:669.265333pt;}
.y11d{bottom:669.617733pt;}
.y18a{bottom:670.008000pt;}
.y15{bottom:671.806667pt;}
.y1e1{bottom:672.081333pt;}
.y45{bottom:677.872000pt;}
.y1b4{bottom:680.050667pt;}
.y241{bottom:682.177333pt;}
.y14{bottom:683.606667pt;}
.y1b5{bottom:684.873333pt;}
.y20f{bottom:685.838667pt;}
.yce{bottom:685.842667pt;}
.y189{bottom:688.021333pt;}
.y1e0{bottom:690.093333pt;}
.y44{bottom:695.885333pt;}
.y1b3{bottom:698.064000pt;}
.y240{bottom:699.392000pt;}
.y20e{bottom:702.413333pt;}
.y11b{bottom:702.817733pt;}
.ycd{bottom:703.854667pt;}
.y13{bottom:704.085333pt;}
.y188{bottom:706.033333pt;}
.y1df{bottom:708.106667pt;}
.y43{bottom:713.897333pt;}
.y12{bottom:715.885333pt;}
.y23f{bottom:716.608000pt;}
.y20d{bottom:718.986667pt;}
.ycc{bottom:721.868000pt;}
.y187{bottom:724.046667pt;}
.y1de{bottom:726.118667pt;}
.y42{bottom:731.909333pt;}
.y11{bottom:732.025333pt;}
.y23e{bottom:733.824000pt;}
.y20c{bottom:735.561333pt;}
.y10{bottom:736.365333pt;}
.y186{bottom:739.572000pt;}
.ycb{bottom:739.880000pt;}
.y185{bottom:742.058667pt;}
.y1dd{bottom:744.130667pt;}
.yf{bottom:748.164000pt;}
.y41{bottom:749.922667pt;}
.y23d{bottom:751.038667pt;}
.y20b{bottom:752.134667pt;}
.y9e{bottom:754.997333pt;}
.yca{bottom:757.892000pt;}
.y183{bottom:760.070667pt;}
.y1dc{bottom:762.144000pt;}
.ye{bottom:764.304000pt;}
.y184{bottom:764.893333pt;}
.y40{bottom:767.934667pt;}
.y23c{bottom:768.254667pt;}
.y20a{bottom:768.708000pt;}
.y9d{bottom:773.009333pt;}
.yc9{bottom:775.905333pt;}
.y182{bottom:778.084000pt;}
.yd{bottom:784.784000pt;}
.y23b{bottom:785.469333pt;}
.y3f{bottom:785.948000pt;}
.y1db{bottom:788.126667pt;}
.y1b2{bottom:788.536000pt;}
.y9c{bottom:791.021333pt;}
.yc8{bottom:793.917333pt;}
.y209{bottom:794.130667pt;}
.y1b1{bottom:795.844000pt;}
.y181{bottom:796.096000pt;}
.y23a{bottom:802.685333pt;}
.y3e{bottom:803.960000pt;}
.yc{bottom:804.553333pt;}
.y1b0{bottom:806.548000pt;}
.y9b{bottom:809.034667pt;}
.yc7{bottom:811.930667pt;}
.y1af{bottom:813.856000pt;}
.y17f{bottom:814.109333pt;}
.y180{bottom:818.930667pt;}
.y1da{bottom:819.077333pt;}
.y239{bottom:819.901333pt;}
.y3d{bottom:821.972000pt;}
.yb{bottom:822.565333pt;}
.y208{bottom:825.081333pt;}
.y9a{bottom:827.046667pt;}
.yc6{bottom:829.942667pt;}
.y17e{bottom:832.121333pt;}
.y1d9{bottom:837.089333pt;}
.y238{bottom:837.116000pt;}
.y3c{bottom:839.985333pt;}
.ya{bottom:840.578667pt;}
.y99{bottom:845.060000pt;}
.y207{bottom:846.560000pt;}
.yc5{bottom:847.954667pt;}
.y17d{bottom:850.133333pt;}
.y237{bottom:854.332000pt;}
.y1d8{bottom:855.101333pt;}
.y3b{bottom:857.997333pt;}
.y9{bottom:858.590667pt;}
.y1ae{bottom:860.585333pt;}
.y266{bottom:860.722667pt;}
.y98{bottom:863.072000pt;}
.yc4{bottom:865.968000pt;}
.y1ad{bottom:867.893333pt;}
.y206{bottom:868.040000pt;}
.y17c{bottom:868.146667pt;}
.y236{bottom:871.546667pt;}
.y1d6{bottom:873.114667pt;}
.y3a{bottom:876.010667pt;}
.y1d7{bottom:877.936000pt;}
.y265{bottom:877.938667pt;}
.y97{bottom:881.084000pt;}
.y205{bottom:881.549333pt;}
.yc3{bottom:883.980000pt;}
.y17b{bottom:886.158667pt;}
.y235{bottom:888.762667pt;}
.y1d5{bottom:891.126667pt;}
.y39{bottom:894.022667pt;}
.y204{bottom:895.058667pt;}
.y264{bottom:895.153333pt;}
.y8{bottom:898.178667pt;}
.y96{bottom:899.097333pt;}
.yc2{bottom:901.993333pt;}
.y234{bottom:905.978667pt;}
.y203{bottom:908.568000pt;}
.y38{bottom:912.034667pt;}
.y17a{bottom:912.141333pt;}
.y95{bottom:917.109333pt;}
.y67{bottom:920.005333pt;}
.y233{bottom:923.193333pt;}
.y7{bottom:925.198667pt;}
.y37{bottom:930.048000pt;}
.y66{bottom:938.017333pt;}
.y232{bottom:940.409333pt;}
.y94{bottom:943.092000pt;}
.y202{bottom:943.557333pt;}
.y36{bottom:948.060000pt;}
.y6{bottom:952.217333pt;}
.y65{bottom:956.030667pt;}
.y201{bottom:957.066667pt;}
.y231{bottom:957.624000pt;}
.y35{bottom:966.073333pt;}
.y64{bottom:974.042667pt;}
.y230{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y200{bottom:978.546667pt;}
.y34{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y33{bottom:1038.548000pt;}
.hc{height:22.673858pt;}
.ha{height:27.076941pt;}
.h15{height:27.961172pt;}
.h2c{height:28.025015pt;}
.h16{height:28.792969pt;}
.h2b{height:29.397999pt;}
.he{height:29.433775pt;}
.hd{height:30.399505pt;}
.h21{height:31.067969pt;}
.h12{height:31.157778pt;}
.h1a{height:31.408594pt;}
.h19{height:31.535156pt;}
.h3{height:31.890083pt;}
.h22{height:31.992188pt;}
.h1d{height:33.378918pt;}
.h1c{height:33.474560pt;}
.h2f{height:33.713664pt;}
.h1b{height:34.430976pt;}
.hb{height:34.813542pt;}
.h1f{height:34.897781pt;}
.h26{height:34.898438pt;}
.h17{height:34.968234pt;}
.h4{height:35.024664pt;}
.h25{height:35.039062pt;}
.h28{height:35.052646pt;}
.h2a{height:36.874903pt;}
.h11{height:37.087439pt;}
.h13{height:37.193707pt;}
.hf{height:38.256384pt;}
.h10{height:38.681455pt;}
.h27{height:38.775312pt;}
.h23{height:38.853594pt;}
.h6{height:38.947124pt;}
.h5{height:41.001535pt;}
.h18{height:41.878125pt;}
.h2{height:45.272024pt;}
.h24{height:46.531250pt;}
.h2e{height:47.310349pt;}
.h2d{height:47.315682pt;}
.h9{height:48.360277pt;}
.h8{height:48.365611pt;}
.h7{height:68.861952pt;}
.h29{height:339.854667pt;}
.h20{height:384.701333pt;}
.h14{height:446.506800pt;}
.h1e{height:466.057200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:191.879724pt;}
.w4{width:500.743200pt;}
.w7{width:530.454667pt;}
.w5{width:532.906920pt;}
.w6{width:579.505467pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xc5{left:-33.161333pt;}
.x5f{left:-17.232000pt;}
.xc6{left:-4.842141pt;}
.xb9{left:-3.730533pt;}
.x0{left:0.000000pt;}
.x81{left:3.579720pt;}
.x60{left:8.256000pt;}
.xba{left:24.589467pt;}
.xa{left:26.021437pt;}
.x83{left:29.067720pt;}
.x3{left:53.357850pt;}
.x1{left:102.046667pt;}
.xb8{left:107.098533pt;}
.x8{left:108.542667pt;}
.x4{left:109.606667pt;}
.xf9{left:118.833333pt;}
.xb6{left:124.482667pt;}
.x49{left:128.548000pt;}
.x5{left:129.929333pt;}
.xb7{left:131.860000pt;}
.xc9{left:134.060000pt;}
.xfe{left:135.713333pt;}
.x4a{left:137.294667pt;}
.xb1{left:139.306667pt;}
.xca{left:142.033333pt;}
.x1a{left:144.624000pt;}
.x5e{left:146.481333pt;}
.xa8{left:149.277333pt;}
.x1b{left:151.265333pt;}
.xb2{left:152.818667pt;}
.x112{left:155.716000pt;}
.xa9{left:158.024000pt;}
.xcb{left:159.186667pt;}
.x2{left:161.132773pt;}
.x10{left:164.649333pt;}
.x31{left:166.385333pt;}
.x105{left:169.901333pt;}
.xb{left:171.052000pt;}
.x11{left:173.396000pt;}
.xce{left:176.277333pt;}
.x19{left:181.326667pt;}
.x74{left:183.117333pt;}
.x61{left:185.270667pt;}
.xbb{left:186.757333pt;}
.xa6{left:188.664000pt;}
.xee{left:190.146667pt;}
.xbe{left:192.868000pt;}
.x75{left:195.382667pt;}
.xa7{left:201.509333pt;}
.xda{left:203.489333pt;}
.xfa{left:205.237333pt;}
.xcc{left:209.973333pt;}
.xbc{left:211.146667pt;}
.xec{left:212.270667pt;}
.x106{left:213.578667pt;}
.x72{left:219.725333pt;}
.x10e{left:220.957333pt;}
.xcd{left:222.025333pt;}
.x11f{left:223.704000pt;}
.xc2{left:225.741333pt;}
.x12{left:226.865333pt;}
.x4e{left:227.769333pt;}
.x94{left:228.938667pt;}
.x73{left:231.768000pt;}
.x8a{left:233.432000pt;}
.xc0{left:235.720000pt;}
.x7b{left:236.764000pt;}
.x13{left:239.777333pt;}
.x4f{left:241.052000pt;}
.xbf{left:243.162667pt;}
.x8b{left:246.041333pt;}
.x2a{left:248.406667pt;}
.x7c{left:249.569333pt;}
.x111{left:250.462667pt;}
.x107{left:252.244000pt;}
.xc3{left:255.696000pt;}
.x77{left:258.385333pt;}
.x50{left:260.944000pt;}
.x34{left:262.984000pt;}
.x9d{left:265.442667pt;}
.x21{left:268.944000pt;}
.x78{left:273.788000pt;}
.x35{left:275.036000pt;}
.x9e{left:277.056000pt;}
.x84{left:278.124000pt;}
.x101{left:279.324000pt;}
.x22{left:281.085333pt;}
.x100{left:282.444000pt;}
.x9f{left:283.736000pt;}
.x2b{left:285.680000pt;}
.x70{left:287.290667pt;}
.x85{left:288.982667pt;}
.xa0{left:292.482667pt;}
.xad{left:294.586667pt;}
.xd4{left:296.520000pt;}
.x7d{left:298.386667pt;}
.x71{left:299.366667pt;}
.x5a{left:301.892000pt;}
.x65{left:303.190667pt;}
.x36{left:306.614667pt;}
.x10b{left:310.001333pt;}
.x66{left:311.421333pt;}
.x5b{left:313.968000pt;}
.x37{left:315.361333pt;}
.x23{left:316.285333pt;}
.x10c{left:323.285333pt;}
.x24{left:325.085333pt;}
.xc4{left:328.298667pt;}
.x98{left:329.957333pt;}
.x79{left:331.804000pt;}
.xa4{left:333.681333pt;}
.x6b{left:335.214667pt;}
.xe7{left:336.972000pt;}
.x99{left:339.102667pt;}
.x7a{left:340.550667pt;}
.xa5{left:342.826667pt;}
.x6c{left:343.961333pt;}
.xe8{left:345.718667pt;}
.xd5{left:349.661333pt;}
.x8f{left:353.006667pt;}
.x3e{left:354.928000pt;}
.xab{left:356.661333pt;}
.x90{left:361.237333pt;}
.x96{left:362.833333pt;}
.xac{left:365.408000pt;}
.xf7{left:366.941333pt;}
.x3f{left:368.212000pt;}
.xd6{left:369.473333pt;}
.xb0{left:370.858667pt;}
.xdc{left:372.072000pt;}
.x45{left:373.516000pt;}
.x40{left:374.720000pt;}
.x97{left:376.117333pt;}
.x6a{left:377.185333pt;}
.xdd{left:379.448000pt;}
.x57{left:382.221333pt;}
.x58{left:385.609333pt;}
.x46{left:386.800000pt;}
.x41{left:388.004000pt;}
.x47{left:390.101333pt;}
.xe0{left:391.505333pt;}
.xf5{left:397.613333pt;}
.x59{left:398.893333pt;}
.xf8{left:399.861333pt;}
.x48{left:403.384000pt;}
.xe1{left:404.789333pt;}
.x38{left:406.741333pt;}
.xe2{left:408.140000pt;}
.x67{left:409.602667pt;}
.x15{left:412.544000pt;}
.x109{left:414.621333pt;}
.x16{left:419.921333pt;}
.xe3{left:421.424000pt;}
.x5c{left:422.984000pt;}
.x68{left:424.592000pt;}
.x39{left:426.554667pt;}
.x10f{left:427.517333pt;}
.x63{left:431.722667pt;}
.x5d{left:436.268000pt;}
.x1c{left:439.365333pt;}
.x110{left:440.800000pt;}
.xef{left:442.100000pt;}
.xc{left:444.754667pt;}
.x1d{left:446.006667pt;}
.x64{left:447.701333pt;}
.x7e{left:448.798667pt;}
.xf0{left:450.304000pt;}
.xc1{left:453.590667pt;}
.x2f{left:454.924000pt;}
.xd{left:456.070667pt;}
.xde{left:458.220000pt;}
.xf1{left:460.441333pt;}
.x8c{left:462.657333pt;}
.x4b{left:463.996000pt;}
.x30{left:468.208000pt;}
.xd7{left:470.404000pt;}
.xd3{left:471.537333pt;}
.x1e{left:475.354667pt;}
.x4c{left:477.280000pt;}
.x3a{left:478.210667pt;}
.xfc{left:480.276000pt;}
.x1f{left:481.996000pt;}
.x86{left:484.098667pt;}
.xe{left:486.441333pt;}
.x20{left:488.770667pt;}
.x3b{left:490.266667pt;}
.x87{left:493.398667pt;}
.xf{left:495.188000pt;}
.x95{left:498.265333pt;}
.xc8{left:499.188000pt;}
.x76{left:500.508000pt;}
.x6d{left:501.742667pt;}
.xc7{left:504.457333pt;}
.x33{left:505.956000pt;}
.xb4{left:508.398667pt;}
.x28{left:512.317333pt;}
.x53{left:513.822667pt;}
.x108{left:516.664000pt;}
.x11e{left:519.489333pt;}
.xb5{left:520.464000pt;}
.x54{left:522.968000pt;}
.xbd{left:525.404000pt;}
.x8d{left:527.188000pt;}
.xb3{left:528.273333pt;}
.x91{left:529.569333pt;}
.x3c{left:530.822667pt;}
.x11b{left:533.800000pt;}
.x82{left:535.155720pt;}
.x115{left:536.470667pt;}
.x92{left:538.201333pt;}
.x62{left:539.318667pt;}
.xdf{left:541.430667pt;}
.x3d{left:544.105333pt;}
.x42{left:545.248000pt;}
.x7f{left:546.693333pt;}
.xe5{left:547.884000pt;}
.x6e{left:550.558667pt;}
.x93{left:552.696000pt;}
.x2c{left:554.016000pt;}
.x29{left:555.424000pt;}
.x32{left:557.696000pt;}
.x6f{left:559.305333pt;}
.x116{left:560.381333pt;}
.x6{left:561.270667pt;}
.x80{left:562.609333pt;}
.x2d{left:564.045333pt;}
.xfb{left:567.460000pt;}
.xf2{left:568.782667pt;}
.x2e{left:570.686667pt;}
.x102{left:571.693333pt;}
.x51{left:577.036000pt;}
.xdb{left:578.192000pt;}
.x103{left:579.977333pt;}
.x52{left:583.678667pt;}
.xf6{left:584.926667pt;}
.x25{left:586.197333pt;}
.xd9{left:587.384000pt;}
.x104{left:588.778667pt;}
.xf3{left:590.460000pt;}
.x17{left:592.124000pt;}
.xaa{left:594.701333pt;}
.x26{left:596.226667pt;}
.xa3{left:597.693333pt;}
.xf4{left:599.605333pt;}
.x11c{left:601.396000pt;}
.x27{left:602.869333pt;}
.x18{left:604.210667pt;}
.xe6{left:606.892000pt;}
.x88{left:608.153333pt;}
.xa1{left:610.464000pt;}
.xd2{left:613.553333pt;}
.x89{left:616.025333pt;}
.xa2{left:619.609333pt;}
.x9b{left:621.668000pt;}
.x9{left:623.413317pt;}
.x11d{left:625.306667pt;}
.xd8{left:628.753333pt;}
.x9c{left:630.813333pt;}
.x14{left:631.765333pt;}
.xae{left:632.717333pt;}
.x4d{left:636.414667pt;}
.x118{left:637.392000pt;}
.xe4{left:639.626667pt;}
.x119{left:641.309333pt;}
.xaf{left:644.516000pt;}
.x10a{left:646.168000pt;}
.x8e{left:647.425333pt;}
.xcf{left:649.350667pt;}
.x43{left:653.526667pt;}
.x69{left:655.434667pt;}
.xea{left:657.444000pt;}
.x44{left:662.273333pt;}
.x117{left:663.733333pt;}
.x11a{left:665.220000pt;}
.xeb{left:666.492000pt;}
.xfd{left:668.076000pt;}
.xd0{left:669.408000pt;}
.x114{left:670.790667pt;}
.xff{left:671.730667pt;}
.xd1{left:672.796000pt;}
.xed{left:676.102667pt;}
.x113{left:678.042667pt;}
.x55{left:679.500000pt;}
.x10d{left:681.180000pt;}
.x9a{left:682.906667pt;}
.x56{left:686.141333pt;}
.xe9{left:688.470667pt;}
.x7{left:690.062667pt;}
}




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