
    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_76d83ce1d52f64983e139331.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.894000;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_fc7fba731317d864b0eca2b0.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d094a666cc0a5b2e3b0c9b60.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.989000;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_e4534781dfb0e456e303bc4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.743000;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_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c12fb985193fc189bbbf1a69.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_f0afa0232716dda34934fea4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734000;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_b26aa2afd2ea00041f41d14c.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_e2c39791f753bd32c90b2dfd.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b1900944089d864cb88da948.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_ff26454e75d1b4303bf867bb.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.011230;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_6c8592a82065b5a0071e7446.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_c2c314ed3a85543c837f9a72.woff2')format("woff");}.fff{font-family:fff;line-height:1.062988;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_2a249e55de10a3002822c825.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.734375;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_ad089317a9d9e99574b32d6f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.688000;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_6da10508a17a2f2cd582e4cf.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_dde14192778f8dfcff8f57ce.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.011230;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_edd901f2d1080c7ac8c30605.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_f6e2188160a865a5bebc8641.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_3b06b27fe26c8c28b48dc2bb.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.709961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_bd01d55c34ad5326a386410b.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_7946e6b8cf96a974def242f3.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.011230;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_9469978111d12fb4a8de16ed.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_86b0f973f23e4ce92948a195.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_6e1b8c448309eaef52a5ec10.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.011230;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_8698a3822fa1d06f0cd94e2e.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_6847ace3a1ac1dbdb33a2edf.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_e456e2cd0ab3eec791999835.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.011230;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_a451b5fd205498e41095c0bf.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_2f4a37ede2640c72e374265e.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_16a92be843ee4813f7567e3b.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.011230;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_0d3cad4a962648132d2ae9fe.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_333259d3fdc2f968d71b0c15.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_2f4a37ede2640c72e374265e.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_3987d77c605e63d0f1081fbf.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.011230;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_0d3cad4a962648132d2ae9fe.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_333259d3fdc2f968d71b0c15.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_0aa1f86781fca15ed3a3d57f.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.488000;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;}
.m1{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);}
.m1c{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);}
.md{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);}
.m18{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);}
.m2a{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);}
.m1f{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);}
.m17{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);}
.m13{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);}
.m2c{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);}
.m1d{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);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m11{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);}
.m23{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);}
.mc{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);}
.ma{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);}
.mf{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);}
.m3{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);}
.mb{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);}
.m16{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);}
.m24{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);}
.m28{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m29{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,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);}
.m12{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);}
.m6{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);}
.m2b{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);}
.m20{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);}
.m1b{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);}
.m22{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);}
.m7{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);}
.m2d{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);}
.m1e{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);}
.m2{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);}
.m19{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);}
.m14{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);}
.m5{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);}
.m1a{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);}
.m9{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);}
.m15{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);}
.m25{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);}
.m10{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);}
.m21{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);}
.m4{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);}
.me{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:-17.358000px;}
.v3{vertical-align:-10.512000px;}
.v5{vertical-align:-8.639244px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.ls38{letter-spacing:-0.408816px;}
.ls35{letter-spacing:-0.282564px;}
.ls36{letter-spacing:-0.228456px;}
.ls5c{letter-spacing:-0.222444px;}
.ls4b{letter-spacing:-0.216432px;}
.ls5f{letter-spacing:-0.204408px;}
.ls7d{letter-spacing:-0.189000px;}
.ls34{letter-spacing:-0.180360px;}
.ls8a{letter-spacing:-0.172800px;}
.ls87{letter-spacing:-0.167400px;}
.ls76{letter-spacing:-0.165931px;}
.ls81{letter-spacing:-0.144288px;}
.ls4c{letter-spacing:-0.138276px;}
.ls7f{letter-spacing:-0.129600px;}
.ls4e{letter-spacing:-0.120240px;}
.ls77{letter-spacing:-0.115430px;}
.ls4d{letter-spacing:-0.114228px;}
.ls60{letter-spacing:-0.108216px;}
.ls70{letter-spacing:-0.103421px;}
.ls5d{letter-spacing:-0.102204px;}
.ls89{letter-spacing:-0.097200px;}
.ls2a{letter-spacing:-0.086184px;}
.ls7c{letter-spacing:-0.072144px;}
.ls88{letter-spacing:-0.070200px;}
.ls5b{letter-spacing:-0.066132px;}
.ls37{letter-spacing:-0.060120px;}
.ls53{letter-spacing:-0.059400px;}
.ls4f{letter-spacing:-0.054108px;}
.ls74{letter-spacing:-0.050501px;}
.ls2f{letter-spacing:-0.048096px;}
.ls75{letter-spacing:-0.043286px;}
.ls32{letter-spacing:-0.043200px;}
.ls3a{letter-spacing:-0.042084px;}
.ls78{letter-spacing:-0.038880px;}
.ls55{letter-spacing:-0.036072px;}
.ls33{letter-spacing:-0.032400px;}
.ls2d{letter-spacing:-0.030060px;}
.ls73{letter-spacing:-0.028858px;}
.ls5e{letter-spacing:-0.024048px;}
.ls72{letter-spacing:-0.021643px;}
.ls80{letter-spacing:-0.021600px;}
.ls2e{letter-spacing:-0.018036px;}
.ls71{letter-spacing:-0.014429px;}
.ls30{letter-spacing:-0.012024px;}
.ls52{letter-spacing:-0.010800px;}
.ls31{letter-spacing:-0.006012px;}
.ls9{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000541px;}
.ls91{letter-spacing:0.000699px;}
.ls92{letter-spacing:0.000800px;}
.lsa2{letter-spacing:0.001036px;}
.lsc{letter-spacing:0.001133px;}
.ls99{letter-spacing:0.001319px;}
.ls9b{letter-spacing:0.001584px;}
.ls6{letter-spacing:0.001952px;}
.lsa1{letter-spacing:0.002544px;}
.ls8f{letter-spacing:0.003455px;}
.ls9e{letter-spacing:0.004633px;}
.ls93{letter-spacing:0.004800px;}
.ls79{letter-spacing:0.005400px;}
.ls1c{letter-spacing:0.006012px;}
.ls6d{letter-spacing:0.006480px;}
.ls51{letter-spacing:0.006624px;}
.ls2b{letter-spacing:0.007200px;}
.ls25{letter-spacing:0.010800px;}
.ls18{letter-spacing:0.012024px;}
.ls6f{letter-spacing:0.014429px;}
.ls20{letter-spacing:0.016200px;}
.ls47{letter-spacing:0.018036px;}
.ls68{letter-spacing:0.019440px;}
.ls23{letter-spacing:0.021600px;}
.ls1b{letter-spacing:0.024048px;}
.ls40{letter-spacing:0.027000px;}
.ls15{letter-spacing:0.028728px;}
.ls64{letter-spacing:0.028858px;}
.ls57{letter-spacing:0.030060px;}
.ls58{letter-spacing:0.032400px;}
.ls61{letter-spacing:0.034474px;}
.ls27{letter-spacing:0.036072px;}
.ls3e{letter-spacing:0.037800px;}
.ls19{letter-spacing:0.042084px;}
.ls43{letter-spacing:0.043200px;}
.ls67{letter-spacing:0.045360px;}
.ls7b{letter-spacing:0.046800px;}
.ls29{letter-spacing:0.048096px;}
.ls44{letter-spacing:0.048600px;}
.ls69{letter-spacing:0.051840px;}
.ls7a{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.054108px;}
.ls6e{letter-spacing:0.058320px;}
.ls46{letter-spacing:0.059400px;}
.ls28{letter-spacing:0.060120px;}
.ls41{letter-spacing:0.064800px;}
.ls66{letter-spacing:0.064930px;}
.ls26{letter-spacing:0.066132px;}
.ls82{letter-spacing:0.070200px;}
.ls3b{letter-spacing:0.072144px;}
.ls1e{letter-spacing:0.078156px;}
.ls1d{letter-spacing:0.084168px;}
.ls85{letter-spacing:0.086400px;}
.ls1f{letter-spacing:0.090180px;}
.ls3c{letter-spacing:0.096192px;}
.ls84{letter-spacing:0.097200px;}
.ls3d{letter-spacing:0.102204px;}
.ls86{letter-spacing:0.102600px;}
.ls65{letter-spacing:0.108216px;}
.ls21{letter-spacing:0.113400px;}
.ls24{letter-spacing:0.124200px;}
.ls45{letter-spacing:0.145800px;}
.ls6a{letter-spacing:0.149040px;}
.ls2c{letter-spacing:0.150300px;}
.ls8b{letter-spacing:0.151200px;}
.ls42{letter-spacing:0.156600px;}
.ls54{letter-spacing:0.174348px;}
.ls6c{letter-spacing:0.174960px;}
.ls17{letter-spacing:0.177156px;}
.ls56{letter-spacing:0.181944px;}
.ls3f{letter-spacing:0.183600px;}
.ls16{letter-spacing:0.191520px;}
.ls63{letter-spacing:0.218333px;}
.ls6b{letter-spacing:0.220320px;}
.ls62{letter-spacing:0.229824px;}
.ls7e{letter-spacing:0.383400px;}
.ls59{letter-spacing:0.437032px;}
.ls49{letter-spacing:0.464969px;}
.ls5a{letter-spacing:0.647475px;}
.lsd{letter-spacing:0.670282px;}
.ls48{letter-spacing:0.733854px;}
.lsa{letter-spacing:1.275394px;}
.ls3{letter-spacing:1.861130px;}
.ls50{letter-spacing:2.705400px;}
.ls0{letter-spacing:2.989200px;}
.lsf{letter-spacing:3.531945px;}
.ls22{letter-spacing:5.054400px;}
.ls39{letter-spacing:5.855688px;}
.ls4{letter-spacing:10.461300px;}
.ls8{letter-spacing:11.954850px;}
.lsa5{letter-spacing:12.240196px;}
.ls95{letter-spacing:12.338155px;}
.ls8e{letter-spacing:13.128571px;}
.ls14{letter-spacing:13.238731px;}
.ls98{letter-spacing:13.247430px;}
.lsa0{letter-spacing:13.266935px;}
.ls9d{letter-spacing:13.299404px;}
.ls97{letter-spacing:13.338460px;}
.ls11{letter-spacing:13.444800px;}
.lsb{letter-spacing:13.448400px;}
.ls12{letter-spacing:13.450800px;}
.ls8d{letter-spacing:13.454400px;}
.ls94{letter-spacing:13.574890px;}
.ls90{letter-spacing:13.608034px;}
.ls9a{letter-spacing:13.620451px;}
.lse{letter-spacing:14.120400px;}
.lsa3{letter-spacing:14.456282px;}
.ls13{letter-spacing:14.946704px;}
.ls4a{letter-spacing:15.242778px;}
.lsa4{letter-spacing:16.403461px;}
.ls96{letter-spacing:16.574281px;}
.ls9c{letter-spacing:16.676400px;}
.ls8c{letter-spacing:18.785694px;}
.ls9f{letter-spacing:19.926871px;}
.ls1{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.ls7{letter-spacing:64.321654px;}
.ls83{letter-spacing:71.782200px;}
.ls2{letter-spacing:72.361200px;}
.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;}
}
.ws12b{word-spacing:-60.120000px;}
.ws1a4{word-spacing:-16.200000px;}
.ws12a{word-spacing:-15.204348px;}
.ws12c{word-spacing:-15.096132px;}
.ws12d{word-spacing:-15.048036px;}
.wse4{word-spacing:-15.030000px;}
.ws3c{word-spacing:-14.943900px;}
.ws1a2{word-spacing:-14.593824px;}
.ws1a1{word-spacing:-14.398474px;}
.ws1a3{word-spacing:-14.364000px;}
.ws210{word-spacing:-13.645800px;}
.wse2{word-spacing:-13.516200px;}
.ws20e{word-spacing:-13.510800px;}
.wse3{word-spacing:-13.500000px;}
.ws20f{word-spacing:-13.456800px;}
.ws27{word-spacing:-13.449600px;}
.wse0{word-spacing:-12.161520px;}
.wsdf{word-spacing:-11.998728px;}
.wse1{word-spacing:-11.970000px;}
.ws39{word-spacing:-11.955150px;}
.ws5{word-spacing:-11.357400px;}
.wsc{word-spacing:-10.460700px;}
.ws1c7{word-spacing:-9.046800px;}
.ws4c{word-spacing:-4.190883px;}
.ws4d{word-spacing:-4.184292px;}
.ws188{word-spacing:-3.547080px;}
.ws1f4{word-spacing:-3.511008px;}
.ws117{word-spacing:-3.504996px;}
.ws187{word-spacing:-3.498984px;}
.ws118{word-spacing:-3.474936px;}
.ws1f5{word-spacing:-3.444876px;}
.wsea{word-spacing:-3.287658px;}
.ws202{word-spacing:-3.227882px;}
.ws198{word-spacing:-3.204396px;}
.ws1df{word-spacing:-3.186360px;}
.ws1eb{word-spacing:-3.180348px;}
.ws199{word-spacing:-3.120228px;}
.ws1ea{word-spacing:-3.114216px;}
.ws1ec{word-spacing:-3.084156px;}
.ws1e6{word-spacing:-2.861712px;}
.wsc4{word-spacing:-2.809453px;}
.ws1e5{word-spacing:-2.783556px;}
.ws1be{word-spacing:-2.766960px;}
.ws21f{word-spacing:-2.732400px;}
.ws21e{word-spacing:-2.710800px;}
.ws20a{word-spacing:-2.636122px;}
.ws164{word-spacing:-2.570351px;}
.ws15d{word-spacing:-2.488968px;}
.ws56{word-spacing:-2.450800px;}
.ws157{word-spacing:-2.446884px;}
.ws1bf{word-spacing:-2.436480px;}
.ws1ce{word-spacing:-2.428848px;}
.ws1cf{word-spacing:-2.416824px;}
.ws231{word-spacing:-2.376000px;}
.ws1d8{word-spacing:-2.349000px;}
.ws1bd{word-spacing:-2.332800px;}
.wsa3{word-spacing:-2.331248px;}
.ws134{word-spacing:-2.271473px;}
.ws200{word-spacing:-2.211697px;}
.ws1d9{word-spacing:-2.203200px;}
.ws15b{word-spacing:-2.044080px;}
.wsc3{word-spacing:-2.032370px;}
.ws15c{word-spacing:-2.026044px;}
.ws2d{word-spacing:-1.972595px;}
.wsd0{word-spacing:-1.912819px;}
.ws7{word-spacing:-1.908367px;}
.ws20b{word-spacing:-1.882944px;}
.ws11f{word-spacing:-1.767528px;}
.ws15e{word-spacing:-1.761516px;}
.ws1f0{word-spacing:-1.749492px;}
.wsa2{word-spacing:-1.737462px;}
.wsa0{word-spacing:-1.736331px;}
.wsa1{word-spacing:-1.733492px;}
.wsda{word-spacing:-1.721808px;}
.ws1f1{word-spacing:-1.689372px;}
.ws15f{word-spacing:-1.677348px;}
.wsdb{word-spacing:-1.673717px;}
.ws182{word-spacing:-1.647000px;}
.ws181{word-spacing:-1.630800px;}
.ws26b{word-spacing:-1.560154px;}
.ws9d{word-spacing:-1.554166px;}
.ws9f{word-spacing:-1.553789px;}
.wsc6{word-spacing:-1.537868px;}
.wsc5{word-spacing:-1.534537px;}
.wsbf{word-spacing:-1.494390px;}
.ws18{word-spacing:-1.482439px;}
.ws22{word-spacing:-1.452557px;}
.ws52{word-spacing:-1.434614px;}
.ws53{word-spacing:-1.374839px;}
.ws172{word-spacing:-1.370736px;}
.wse6{word-spacing:-1.344960px;}
.ws115{word-spacing:-1.340676px;}
.ws114{word-spacing:-1.328652px;}
.ws6{word-spacing:-1.322630px;}
.ws1ff{word-spacing:-1.315063px;}
.ws9e{word-spacing:-1.195512px;}
.ws26c{word-spacing:-1.183565px;}
.ws54{word-spacing:-1.135736px;}
.wse7{word-spacing:-1.129766px;}
.ws4f{word-spacing:-1.075961px;}
.ws57{word-spacing:-1.016185px;}
.ws109{word-spacing:-0.985968px;}
.ws129{word-spacing:-0.973944px;}
.ws108{word-spacing:-0.967932px;}
.ws180{word-spacing:-0.961200px;}
.ws37{word-spacing:-0.956410px;}
.ws173{word-spacing:-0.955908px;}
.ws151{word-spacing:-0.939600px;}
.ws17d{word-spacing:-0.923400px;}
.ws17f{word-spacing:-0.918000px;}
.ws150{word-spacing:-0.907200px;}
.ws1fe{word-spacing:-0.896634px;}
.ws17e{word-spacing:-0.896400px;}
.ws1f{word-spacing:-0.860774px;}
.ws58{word-spacing:-0.836858px;}
.wsc1{word-spacing:-0.777083px;}
.ws18b{word-spacing:-0.685368px;}
.ws144{word-spacing:-0.679356px;}
.ws128{word-spacing:-0.673344px;}
.ws185{word-spacing:-0.667332px;}
.ws11a{word-spacing:-0.661320px;}
.ws1b{word-spacing:-0.660446px;}
.ws1cb{word-spacing:-0.657532px;}
.ws1c{word-spacing:-0.645581px;}
.ws16f{word-spacing:-0.625248px;}
.ws143{word-spacing:-0.595188px;}
.ws184{word-spacing:-0.589176px;}
.ws152{word-spacing:-0.583200px;}
.ws155{word-spacing:-0.534600px;}
.ws153{word-spacing:-0.523800px;}
.ws2f{word-spacing:-0.478205px;}
.ws154{word-spacing:-0.475200px;}
.ws11b{word-spacing:-0.444888px;}
.ws42{word-spacing:-0.418429px;}
.wsce{word-spacing:-0.358654px;}
.ws100{word-spacing:-0.348696px;}
.ws11c{word-spacing:-0.342684px;}
.ws1a7{word-spacing:-0.333245px;}
.ws113{word-spacing:-0.330660px;}
.ws23e{word-spacing:-0.322790px;}
.wsf3{word-spacing:-0.319825px;}
.ws136{word-spacing:-0.318636px;}
.ws1ef{word-spacing:-0.312624px;}
.ws3a{word-spacing:-0.298878px;}
.ws1f9{word-spacing:-0.294588px;}
.ws1e9{word-spacing:-0.282564px;}
.wsf8{word-spacing:-0.277704px;}
.wsfa{word-spacing:-0.276552px;}
.ws147{word-spacing:-0.270540px;}
.ws247{word-spacing:-0.268992px;}
.ws1e1{word-spacing:-0.264528px;}
.ws24f{word-spacing:-0.260475px;}
.ws123{word-spacing:-0.246492px;}
.ws1d4{word-spacing:-0.240480px;}
.ws4b{word-spacing:-0.239102px;}
.ws1ee{word-spacing:-0.234468px;}
.ws1dd{word-spacing:-0.226800px;}
.ws24d{word-spacing:-0.223870px;}
.ws1e0{word-spacing:-0.216432px;}
.ws1d{word-spacing:-0.215194px;}
.ws148{word-spacing:-0.210420px;}
.wsaf{word-spacing:-0.205460px;}
.ws25b{word-spacing:-0.192335px;}
.ws30{word-spacing:-0.179327px;}
.ws1d6{word-spacing:-0.178200px;}
.wseb{word-spacing:-0.173519px;}
.wsec{word-spacing:-0.168636px;}
.ws219{word-spacing:-0.162000px;}
.ws24{word-spacing:-0.161395px;}
.ws94{word-spacing:-0.150193px;}
.ws95{word-spacing:-0.122164px;}
.ws96{word-spacing:-0.119551px;}
.wsd8{word-spacing:-0.112794px;}
.wsd6{word-spacing:-0.112644px;}
.ws1e{word-spacing:-0.107597px;}
.wsd7{word-spacing:-0.106969px;}
.wsd9{word-spacing:-0.106912px;}
.ws21a{word-spacing:-0.102600px;}
.ws24b{word-spacing:-0.090196px;}
.wsed{word-spacing:-0.083828px;}
.ws21b{word-spacing:-0.075600px;}
.wse5{word-spacing:-0.060120px;}
.ws32{word-spacing:-0.059776px;}
.ws26{word-spacing:-0.053798px;}
.ws19{word-spacing:-0.047821px;}
.ws6c{word-spacing:-0.022032px;}
.wsca{word-spacing:-0.016808px;}
.ws24e{word-spacing:-0.013443px;}
.ws258{word-spacing:-0.011722px;}
.ws0{word-spacing:-0.011338px;}
.wscb{word-spacing:-0.009722px;}
.ws244{word-spacing:-0.009082px;}
.wscc{word-spacing:-0.008842px;}
.wsf2{word-spacing:-0.006058px;}
.ws4{word-spacing:-0.005802px;}
.ws237{word-spacing:-0.004666px;}
.ws235{word-spacing:-0.004310px;}
.ws3{word-spacing:-0.004284px;}
.wsb{word-spacing:-0.004280px;}
.ws253{word-spacing:-0.004272px;}
.ws240{word-spacing:-0.003082px;}
.ws259{word-spacing:-0.002957px;}
.ws243{word-spacing:-0.002899px;}
.ws23c{word-spacing:-0.002755px;}
.ws23b{word-spacing:-0.002429px;}
.ws38{word-spacing:-0.002366px;}
.ws262{word-spacing:-0.002026px;}
.ws9{word-spacing:-0.000166px;}
.ws250{word-spacing:-0.000058px;}
.ws2{word-spacing:0.000000px;}
.ws131{word-spacing:0.001671px;}
.ws236{word-spacing:0.001709px;}
.ws266{word-spacing:0.001978px;}
.ws130{word-spacing:0.024768px;}
.ws22b{word-spacing:0.032400px;}
.ws1fd{word-spacing:0.048096px;}
.ws12e{word-spacing:0.053798px;}
.wsfb{word-spacing:0.054108px;}
.ws31{word-spacing:0.059776px;}
.wsfe{word-spacing:0.072144px;}
.ws232{word-spacing:0.081000px;}
.wsff{word-spacing:0.090180px;}
.ws1e3{word-spacing:0.096192px;}
.ws195{word-spacing:0.102204px;}
.ws20{word-spacing:0.104980px;}
.ws21{word-spacing:0.107597px;}
.ws35{word-spacing:0.119551px;}
.ws17a{word-spacing:0.120240px;}
.ws162{word-spacing:0.120967px;}
.ws156{word-spacing:0.124200px;}
.ws230{word-spacing:0.135000px;}
.ws22c{word-spacing:0.140400px;}
.ws183{word-spacing:0.145800px;}
.ws1d5{word-spacing:0.151200px;}
.ws28{word-spacing:0.161395px;}
.ws1c3{word-spacing:0.162000px;}
.ws167{word-spacing:0.162324px;}
.ws1b5{word-spacing:0.165931px;}
.ws233{word-spacing:0.167400px;}
.ws36{word-spacing:0.179327px;}
.ws132{word-spacing:0.195701px;}
.ws1e4{word-spacing:0.198396px;}
.ws1ed{word-spacing:0.204408px;}
.wse{word-spacing:0.209214px;}
.ws133{word-spacing:0.210792px;}
.wsd5{word-spacing:0.215194px;}
.ws25f{word-spacing:0.221147px;}
.ws22f{word-spacing:0.226800px;}
.ws2b{word-spacing:0.239102px;}
.ws228{word-spacing:0.243000px;}
.ws9b{word-spacing:0.257794px;}
.ws25e{word-spacing:0.268992px;}
.ws10{word-spacing:0.292900px;}
.ws9a{word-spacing:0.298878px;}
.ws1a6{word-spacing:0.322790px;}
.ws93{word-spacing:0.329002px;}
.ws92{word-spacing:0.333925px;}
.ws43{word-spacing:0.358654px;}
.ws1d7{word-spacing:0.372600px;}
.ws116{word-spacing:0.372744px;}
.ws2e{word-spacing:0.418429px;}
.ws10b{word-spacing:0.444888px;}
.ws10a{word-spacing:0.456912px;}
.ws10e{word-spacing:0.474948px;}
.ws214{word-spacing:0.475200px;}
.wsba{word-spacing:0.478205px;}
.ws1de{word-spacing:0.480960px;}
.ws218{word-spacing:0.491400px;}
.ws1c4{word-spacing:0.533866px;}
.ws216{word-spacing:0.534600px;}
.wsc2{word-spacing:0.537980px;}
.ws238{word-spacing:0.537984px;}
.ws215{word-spacing:0.556200px;}
.ws1a5{word-spacing:0.591782px;}
.wsb3{word-spacing:0.597756px;}
.ws1bb{word-spacing:0.602640px;}
.ws1ba{word-spacing:0.635040px;}
.ws242{word-spacing:0.645581px;}
.ws78{word-spacing:0.646617px;}
.ws1bc{word-spacing:0.648000px;}
.wsde{word-spacing:0.657532px;}
.wsd4{word-spacing:0.699379px;}
.ws217{word-spacing:0.712800px;}
.ws2c{word-spacing:0.717307px;}
.ws268{word-spacing:0.752197px;}
.ws267{word-spacing:0.753178px;}
.ws45{word-spacing:0.777083px;}
.ws79{word-spacing:0.795591px;}
.ws7a{word-spacing:0.798724px;}
.ws204{word-spacing:0.836858px;}
.ws14f{word-spacing:0.842400px;}
.ws21c{word-spacing:0.864000px;}
.ws21d{word-spacing:0.874800px;}
.ws14e{word-spacing:0.880200px;}
.ws14d{word-spacing:0.891000px;}
.ws14c{word-spacing:0.896400px;}
.ws3b{word-spacing:0.896634px;}
.ws241{word-spacing:0.914573px;}
.wsd3{word-spacing:0.968371px;}
.wscf{word-spacing:1.016185px;}
.ws26a{word-spacing:1.022170px;}
.ws1c2{word-spacing:1.030320px;}
.ws11d{word-spacing:1.046088px;}
.ws1c1{word-spacing:1.069200px;}
.ws1c0{word-spacing:1.121040px;}
.ws47{word-spacing:1.135736px;}
.ws1fa{word-spacing:1.136268px;}
.ws142{word-spacing:1.184364px;}
.ws51{word-spacing:1.255288px;}
.wsc8{word-spacing:1.279887px;}
.ws68{word-spacing:1.285555px;}
.ws1aa{word-spacing:1.385165px;}
.ws9c{word-spacing:1.434614px;}
.ws161{word-spacing:1.472940px;}
.wsfd{word-spacing:1.484964px;}
.ws3d{word-spacing:1.487152px;}
.wsb4{word-spacing:1.494390px;}
.ws11e{word-spacing:1.496988px;}
.ws1dc{word-spacing:1.603800px;}
.ws17b{word-spacing:1.609200px;}
.ws1cd{word-spacing:1.613941px;}
.ws251{word-spacing:1.613952px;}
.ws17c{word-spacing:1.625400px;}
.ws1da{word-spacing:1.636200px;}
.ws1db{word-spacing:1.647000px;}
.ws12f{word-spacing:1.673717px;}
.wsc7{word-spacing:1.686153px;}
.wsc9{word-spacing:1.733492px;}
.ws264{word-spacing:1.775347px;}
.ws50{word-spacing:1.793268px;}
.ws1fb{word-spacing:1.797588px;}
.ws105{word-spacing:1.815624px;}
.ws257{word-spacing:1.829146px;}
.ws5a{word-spacing:1.853044px;}
.ws25d{word-spacing:1.882944px;}
.ws160{word-spacing:1.887768px;}
.ws229{word-spacing:1.900800px;}
.ws99{word-spacing:1.912819px;}
.ws104{word-spacing:1.923840px;}
.ws1fc{word-spacing:1.929852px;}
.ws22a{word-spacing:1.944000px;}
.ws41{word-spacing:1.972595px;}
.wsf{word-spacing:2.008454px;}
.ws34{word-spacing:2.032370px;}
.ws59{word-spacing:2.151922px;}
.ws10d{word-spacing:2.164320px;}
.wsd2{word-spacing:2.211697px;}
.ws10c{word-spacing:2.260512px;}
.ws4a{word-spacing:2.271473px;}
.ws13c{word-spacing:2.272536px;}
.ws265{word-spacing:2.313331px;}
.ws4e{word-spacing:2.331248px;}
.ws13d{word-spacing:2.368728px;}
.ws2a{word-spacing:2.391024px;}
.ws1cc{word-spacing:2.450800px;}
.wsa{word-spacing:2.512321px;}
.ws227{word-spacing:2.608200px;}
.ws196{word-spacing:2.609208px;}
.ws19a{word-spacing:2.627244px;}
.ws5b{word-spacing:2.630126px;}
.ws197{word-spacing:2.633256px;}
.ws1af{word-spacing:2.640470px;}
.ws22d{word-spacing:2.646000px;}
.ws22e{word-spacing:2.651400px;}
.ws1f3{word-spacing:2.657304px;}
.ws14b{word-spacing:2.667600px;}
.ws226{word-spacing:2.678400px;}
.ws110{word-spacing:2.683800px;}
.ws10f{word-spacing:2.689200px;}
.ws7b{word-spacing:2.689902px;}
.ws112{word-spacing:2.694600px;}
.ws1b0{word-spacing:2.719829px;}
.wsac{word-spacing:2.742105px;}
.ws1c9{word-spacing:2.743718px;}
.ws111{word-spacing:2.748600px;}
.ws7f{word-spacing:2.749678px;}
.wsad{word-spacing:2.757871px;}
.wsaa{word-spacing:2.760809px;}
.wsab{word-spacing:2.768968px;}
.ws263{word-spacing:2.797517px;}
.ws7e{word-spacing:2.809453px;}
.ws1b4{word-spacing:2.820830px;}
.ws19b{word-spacing:2.831652px;}
.ws205{word-spacing:2.869229px;}
.ws1a{word-spacing:2.869236px;}
.ws1b3{word-spacing:2.871331px;}
.ws23f{word-spacing:2.905114px;}
.wsa5{word-spacing:2.929004px;}
.ws1f6{word-spacing:2.939868px;}
.ws19e{word-spacing:2.945880px;}
.ws213{word-spacing:2.958912px;}
.ws201{word-spacing:2.988780px;}
.ws19f{word-spacing:2.993976px;}
.ws1c8{word-spacing:3.012710px;}
.wsb2{word-spacing:3.048556px;}
.wsb5{word-spacing:3.108331px;}
.ws20d{word-spacing:3.120307px;}
.ws24c{word-spacing:3.165051px;}
.ws46{word-spacing:3.168107px;}
.ws212{word-spacing:3.174106px;}
.ws1b8{word-spacing:3.194640px;}
.ws1b6{word-spacing:3.201120px;}
.wsae{word-spacing:3.216725px;}
.ws26d{word-spacing:3.217853px;}
.ws25c{word-spacing:3.217968px;}
.ws25a{word-spacing:3.221213px;}
.ws246{word-spacing:3.221347px;}
.ws23a{word-spacing:3.222346px;}
.ws256{word-spacing:3.222451px;}
.ws23d{word-spacing:3.223949px;}
.ws252{word-spacing:3.226762px;}
.ws1b7{word-spacing:3.227040px;}
.ws48{word-spacing:3.227882px;}
.ws211{word-spacing:3.227904px;}
.ws1b9{word-spacing:3.246480px;}
.ws137{word-spacing:3.276540px;}
.ws19d{word-spacing:3.282552px;}
.wsbe{word-spacing:3.287658px;}
.ws16b{word-spacing:3.342672px;}
.ws206{word-spacing:3.347434px;}
.ws101{word-spacing:3.366720px;}
.ws224{word-spacing:3.369600px;}
.ws254{word-spacing:3.389299px;}
.ws222{word-spacing:3.391200px;}
.ws223{word-spacing:3.396600px;}
.ws44{word-spacing:3.407209px;}
.ws225{word-spacing:3.407400px;}
.ws221{word-spacing:3.423600px;}
.ws16c{word-spacing:3.438864px;}
.ws220{word-spacing:3.439800px;}
.ws20c{word-spacing:3.443098px;}
.ws19c{word-spacing:3.450888px;}
.ws245{word-spacing:3.496896px;}
.ws23{word-spacing:3.550694px;}
.ws29{word-spacing:3.586536px;}
.ws1ad{word-spacing:3.599986px;}
.ws1ae{word-spacing:3.621629px;}
.ws1f2{word-spacing:3.643272px;}
.ws97{word-spacing:3.646312px;}
.ws176{word-spacing:3.649284px;}
.ws98{word-spacing:3.706087px;}
.ws178{word-spacing:3.709404px;}
.ws234{word-spacing:3.712090px;}
.ws177{word-spacing:3.751488px;}
.wsc0{word-spacing:3.765863px;}
.wsdd{word-spacing:3.825638px;}
.ws135{word-spacing:3.913812px;}
.wsb6{word-spacing:3.945190px;}
.wsb7{word-spacing:4.004965px;}
.ws15a{word-spacing:4.046076px;}
.ws159{word-spacing:4.064112px;}
.wsf1{word-spacing:4.124516px;}
.ws1d0{word-spacing:4.130244px;}
.wsa6{word-spacing:4.184292px;}
.wsa7{word-spacing:4.204961px;}
.wsbb{word-spacing:4.222608px;}
.ws7c{word-spacing:4.244068px;}
.ws25{word-spacing:4.250074px;}
.ws7d{word-spacing:4.269313px;}
.ws174{word-spacing:4.376736px;}
.ws138{word-spacing:4.394772px;}
.wsa8{word-spacing:4.423394px;}
.ws18f{word-spacing:4.424832px;}
.wsa9{word-spacing:4.428490px;}
.ws107{word-spacing:4.430844px;}
.ws191{word-spacing:4.442868px;}
.ws18e{word-spacing:4.454892px;}
.ws139{word-spacing:4.460904px;}
.ws106{word-spacing:4.466916px;}
.ws175{word-spacing:4.521024px;}
.ws3f{word-spacing:4.542946px;}
.ws192{word-spacing:4.557096px;}
.wse9{word-spacing:4.602721px;}
.wsbc{word-spacing:4.662497px;}
.wsbd{word-spacing:4.675498px;}
.wsdc{word-spacing:4.722272px;}
.ws186{word-spacing:4.743468px;}
.wsf0{word-spacing:4.757902px;}
.ws40{word-spacing:4.782048px;}
.ws18c{word-spacing:4.809600px;}
.ws18d{word-spacing:4.881744px;}
.ws1a9{word-spacing:4.884149px;}
.ws13a{word-spacing:5.038056px;}
.wsfc{word-spacing:5.086152px;}
.ws260{word-spacing:5.110848px;}
.ws124{word-spacing:5.146272px;}
.ws190{word-spacing:5.152284px;}
.ws125{word-spacing:5.158296px;}
.ws1ac{word-spacing:5.194368px;}
.wsb1{word-spacing:5.200477px;}
.wsb0{word-spacing:5.260253px;}
.ws13b{word-spacing:5.278536px;}
.ws203{word-spacing:5.320028px;}
.ws1ab{word-spacing:5.324227px;}
.ws239{word-spacing:5.379840px;}
.ws55{word-spacing:5.439580px;}
.ws1d1{word-spacing:5.476932px;}
.ws49{word-spacing:5.559131px;}
.ws1d2{word-spacing:5.567112px;}
.wse8{word-spacing:5.618906px;}
.ws13f{word-spacing:5.759496px;}
.ws13e{word-spacing:5.783544px;}
.ws1a0{word-spacing:5.807592px;}
.ws24a{word-spacing:5.810227px;}
.ws140{word-spacing:5.849676px;}
.wsf4{word-spacing:5.858009px;}
.ws249{word-spacing:5.864026px;}
.wsf7{word-spacing:5.869666px;}
.wsf6{word-spacing:5.879539px;}
.wsf5{word-spacing:5.881380px;}
.ws141{word-spacing:5.885748px;}
.ws269{word-spacing:5.917824px;}
.ws65{word-spacing:5.975906px;}
.ws33{word-spacing:5.977560px;}
.ws60{word-spacing:5.981906px;}
.ws3e{word-spacing:6.037336px;}
.ws16{word-spacing:6.067206px;}
.ws75{word-spacing:6.125408px;}
.ws1c6{word-spacing:6.132240px;}
.ws207{word-spacing:6.133018px;}
.ws74{word-spacing:6.147736px;}
.ws17{word-spacing:6.150892px;}
.ws5c{word-spacing:6.156887px;}
.ws179{word-spacing:6.168312px;}
.ws76{word-spacing:6.216662px;}
.ws77{word-spacing:6.276438px;}
.ws1ca{word-spacing:6.294413px;}
.ws194{word-spacing:6.324624px;}
.ws193{word-spacing:6.420816px;}
.ws261{word-spacing:6.455808px;}
.ws127{word-spacing:6.523020px;}
.ws1e2{word-spacing:6.529032px;}
.ws1c5{word-spacing:6.536246px;}
.wscd{word-spacing:6.574200px;}
.ws14a{word-spacing:6.583140px;}
.ws149{word-spacing:6.595164px;}
.ws126{word-spacing:6.619212px;}
.ws119{word-spacing:6.931836px;}
.ws1d3{word-spacing:6.943860px;}
.ws189{word-spacing:6.955884px;}
.ws18a{word-spacing:7.076124px;}
.ws208{word-spacing:7.208986px;}
.ws103{word-spacing:7.220412px;}
.ws1f7{word-spacing:7.298568px;}
.ws102{word-spacing:7.316604px;}
.ws248{word-spacing:7.370381px;}
.ws1f8{word-spacing:7.442856px;}
.ws163{word-spacing:7.770828px;}
.wsa4{word-spacing:7.830604px;}
.ws166{word-spacing:8.032032px;}
.ws1b1{word-spacing:8.354275px;}
.wsb8{word-spacing:8.368584px;}
.ws1b2{word-spacing:8.368704px;}
.ws171{word-spacing:8.386740px;}
.ws170{word-spacing:8.404776px;}
.wsb9{word-spacing:8.428360px;}
.wsef{word-spacing:8.457902px;}
.wsee{word-spacing:8.488135px;}
.ws14{word-spacing:8.661460px;}
.ws209{word-spacing:8.715341px;}
.ws1e7{word-spacing:9.102168px;}
.ws1e8{word-spacing:9.222408px;}
.ws16d{word-spacing:9.829620px;}
.ws16e{word-spacing:9.871704px;}
.ws120{word-spacing:10.460880px;}
.ws122{word-spacing:10.587132px;}
.ws121{word-spacing:10.599156px;}
.ws145{word-spacing:10.893744px;}
.ws146{word-spacing:11.019996px;}
.ws16a{word-spacing:11.230416px;}
.ws165{word-spacing:11.615688px;}
.wsf9{word-spacing:11.620476px;}
.ws168{word-spacing:11.639232px;}
.ws169{word-spacing:11.843640px;}
.ws255{word-spacing:13.933786px;}
.ws1a8{word-spacing:13.938826px;}
.wsd{word-spacing:15.481836px;}
.ws8{word-spacing:15.483541px;}
.ws158{word-spacing:15.901740px;}
.ws11{word-spacing:16.142252px;}
.ws12{word-spacing:16.151321px;}
.ws13{word-spacing:17.699504px;}
.ws1{word-spacing:26.781715px;}
.ws15{word-spacing:27.448877px;}
.ws67{word-spacing:352.851917px;}
.wsd1{word-spacing:401.094276px;}
.ws8d{word-spacing:445.773542px;}
.ws64{word-spacing:458.837117px;}
.ws5f{word-spacing:525.597974px;}
.ws61{word-spacing:577.848614px;}
.ws66{word-spacing:612.993917px;}
.ws85{word-spacing:697.065869px;}
.ws8e{word-spacing:713.797171px;}
.ws88{word-spacing:751.725043px;}
.ws8f{word-spacing:761.839142px;}
.ws69{word-spacing:779.377421px;}
.ws6d{word-spacing:799.783690px;}
.ws87{word-spacing:854.318592px;}
.ws80{word-spacing:863.464320px;}
.ws63{word-spacing:879.431088px;}
.ws8c{word-spacing:903.544128px;}
.ws83{word-spacing:916.025357px;}
.ws82{word-spacing:924.202714px;}
.ws5e{word-spacing:940.594022px;}
.ws62{word-spacing:952.919117px;}
.ws6e{word-spacing:974.755814px;}
.ws8b{word-spacing:999.197683px;}
.ws8a{word-spacing:1000.704038px;}
.ws6a{word-spacing:1006.282829px;}
.ws89{word-spacing:1037.448346px;}
.ws70{word-spacing:1052.760998px;}
.ws6f{word-spacing:1057.957334px;}
.ws6b{word-spacing:1059.463555px;}
.ws72{word-spacing:1092.787440px;}
.ws5d{word-spacing:1101.292800px;}
.ws86{word-spacing:1115.079437px;}
.ws81{word-spacing:1116.639590px;}
.ws71{word-spacing:1122.245510px;}
.ws73{word-spacing:1132.709088px;}
.ws84{word-spacing:1134.608256px;}
.ws91{word-spacing:1146.820493px;}
.ws90{word-spacing:1182.596429px;}
._23{margin-left:-7.711052px;}
._0{margin-left:-6.630808px;}
._2{margin-left:-4.831687px;}
._5{margin-left:-3.096367px;}
._1{margin-left:-1.797602px;}
._4{width:1.091170px;}
._3{width:3.000491px;}
._26{width:5.145073px;}
._8{width:11.094379px;}
._6{width:12.971268px;}
._e{width:14.171152px;}
._14{width:15.545990px;}
._9{width:16.569907px;}
._c{width:18.534770px;}
._15{width:19.584972px;}
._d{width:20.801909px;}
._2c{width:22.006090px;}
._13{width:23.137492px;}
._17{width:24.140724px;}
._10{width:25.285079px;}
._16{width:27.192096px;}
._a{width:28.526756px;}
._b{width:29.750515px;}
._24{width:31.104737px;}
._7{width:32.637384px;}
._2d{width:35.088277px;}
._f{width:37.180423px;}
._22{width:43.038482px;}
._25{width:44.233944px;}
._2f{width:61.868160px;}
._2e{width:88.767360px;}
._1e{width:306.895576px;}
._11{width:389.250590px;}
._1c{width:399.740506px;}
._28{width:405.461304px;}
._1d{width:567.380748px;}
._1f{width:662.013542px;}
._20{width:755.598528px;}
._1b{width:768.832934px;}
._19{width:829.356134px;}
._1a{width:910.484122px;}
._18{width:999.735667px;}
._21{width:1291.591987px;}
._2a{width:2348.561880px;}
._27{width:2372.329512px;}
._29{width:2389.093061px;}
._12{width:2413.003061px;}
._2b{width:2818.274256px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(34,34,61);}
.fs12{font-size:33.120000px;}
.fs7{font-size:35.865600px;}
.fs10{font-size:36.000000px;}
.fs6{font-size:41.842800px;}
.fs5{font-size:41.936104px;}
.fsa{font-size:43.600200px;}
.fs3{font-size:45.429600px;}
.fs4{font-size:47.236800px;}
.fsb{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fse{font-size:47.880000px;}
.fs9{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fsd{font-size:56.058000px;}
.fs13{font-size:57.456000px;}
.fs1{font-size:59.775600px;}
.fsf{font-size:60.120000px;}
.fsc{font-size:62.286600px;}
.fs15{font-size:64.800000px;}
.fs14{font-size:72.144000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:109.609560px;}
.y2cb{bottom:-747.148050px;}
.y24f{bottom:-679.075050px;}
.y2e0{bottom:-677.488950px;}
.y2df{bottom:-660.118500px;}
.y2de{bottom:-642.838500px;}
.y2dd{bottom:-625.558500px;}
.y2dc{bottom:-608.278500px;}
.y273{bottom:-596.987454px;}
.y2db{bottom:-590.998500px;}
.y272{bottom:-577.728012px;}
.y2da{bottom:-573.628050px;}
.y271{bottom:-558.558750px;}
.y2d9{bottom:-556.348050px;}
.y270{bottom:-539.299308px;}
.y2d8{bottom:-539.068050px;}
.y26f{bottom:-520.130046px;}
.y2d7{bottom:-516.928050px;}
.y26e{bottom:-500.870604px;}
.y1e8{bottom:-498.439050px;}
.y26d{bottom:-481.611162px;}
.y2d6{bottom:-480.118950px;}
.y171{bottom:-463.730550px;}
.y2d5{bottom:-462.748500px;}
.y26c{bottom:-462.441900px;}
.y2d4{bottom:-445.378050px;}
.y26b{bottom:-443.182458px;}
.y214{bottom:-441.908484px;}
.y2d3{bottom:-428.098050px;}
.y26a{bottom:-424.013196px;}
.y213{bottom:-422.649042px;}
.y2d2{bottom:-410.818050px;}
.y269{bottom:-404.753754px;}
.y212{bottom:-403.389600px;}
.y194{bottom:-399.551847px;}
.y2d1{bottom:-388.408050px;}
.y268{bottom:-385.494312px;}
.y211{bottom:-384.220338px;}
.y193{bottom:-380.382585px;}
.y267{bottom:-366.325050px;}
.y266{bottom:-366.319047px;}
.y210{bottom:-364.960896px;}
.y192{bottom:-361.123143px;}
.y2e7{bottom:-353.113050px;}
.y20f{bottom:-345.791634px;}
.y265{bottom:-342.559623px;}
.y191{bottom:-341.863701px;}
.y20e{bottom:-326.532192px;}
.y1af{bottom:-326.276550px;}
.y190{bottom:-322.694439px;}
.y20d{bottom:-307.272750px;}
.y264{bottom:-305.300253px;}
.y18f{bottom:-303.434997px;}
.y22f{bottom:-301.206060px;}
.y20c{bottom:-288.103488px;}
.y263{bottom:-286.130991px;}
.y18e{bottom:-284.265735px;}
.y2fc{bottom:-283.453950px;}
.y20b{bottom:-268.844046px;}
.y262{bottom:-266.871549px;}
.y2fb{bottom:-266.083500px;}
.y18d{bottom:-265.006293px;}
.y1ca{bottom:-261.293997px;}
.y20a{bottom:-249.674784px;}
.y2fa{bottom:-248.803500px;}
.y261{bottom:-247.702287px;}
.y18c{bottom:-245.746851px;}
.y1c9{bottom:-242.034555px;}
.y2f9{bottom:-231.523500px;}
.y209{bottom:-230.415342px;}
.y260{bottom:-228.442845px;}
.y18b{bottom:-226.577589px;}
.y1c8{bottom:-222.865293px;}
.y2f8{bottom:-214.243500px;}
.y208{bottom:-211.155900px;}
.y25f{bottom:-209.183403px;}
.y240{bottom:-208.324505px;}
.y18a{bottom:-207.318147px;}
.y1c7{bottom:-203.605851px;}
.y2f7{bottom:-196.963500px;}
.y207{bottom:-191.986638px;}
.y25e{bottom:-190.014141px;}
.y189{bottom:-188.058705px;}
.y23f{bottom:-185.213174px;}
.y1c6{bottom:-184.346409px;}
.y2f6{bottom:-179.593050px;}
.y206{bottom:-172.727196px;}
.y25d{bottom:-170.754699px;}
.y188{bottom:-168.889443px;}
.y1c5{bottom:-165.177147px;}
.y2f5{bottom:-162.313050px;}
.y23e{bottom:-162.210060px;}
.y205{bottom:-153.467754px;}
.y25c{bottom:-151.583934px;}
.y187{bottom:-149.630001px;}
.y2f4{bottom:-145.033050px;}
.y1c4{bottom:-141.506400px;}
.y204{bottom:-134.298492px;}
.y25b{bottom:-132.324492px;}
.y186{bottom:-130.460739px;}
.y2f3{bottom:-122.893050px;}
.y23d{bottom:-118.039140px;}
.y203{bottom:-115.039050px;}
.y25a{bottom:-113.065050px;}
.y185{bottom:-111.201297px;}
.y1c3{bottom:-104.607450px;}
.y23c{bottom:-97.194600px;}
.y184{bottom:-87.530550px;}
.y1c2{bottom:-87.237000px;}
.y2f2{bottom:-86.083950px;}
.y202{bottom:-78.229500px;}
.y23b{bottom:-76.350060px;}
.y259{bottom:-76.344600px;}
.y1c1{bottom:-69.957000px;}
.y2f1{bottom:-68.713500px;}
.y201{bottom:-60.859050px;}
.y2d0{bottom:-60.627600px;}
.y258{bottom:-58.885050px;}
.y23a{bottom:-55.614060px;}
.y1c0{bottom:-52.677000px;}
.y2f0{bottom:-51.343050px;}
.y183{bottom:-50.721000px;}
.y200{bottom:-43.579050px;}
.y2cf{bottom:-43.168050px;}
.y257{bottom:-41.605050px;}
.y1bf{bottom:-35.306550px;}
.y239{bottom:-34.878060px;}
.y2ef{bottom:-34.063050px;}
.y182{bottom:-30.920550px;}
.y1ff{bottom:-26.299050px;}
.y2ce{bottom:-25.888050px;}
.y256{bottom:-24.325050px;}
.y2ee{bottom:-16.783050px;}
.y1be{bottom:-12.890529px;}
.y238{bottom:-7.872163px;}
.y181{bottom:-6.704727px;}
.y1fe{bottom:-3.799518px;}
.y2cd{bottom:-3.477177px;}
.y255{bottom:-1.911927px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.425340px;}
.y2ed{bottom:5.626950px;}
.y9{bottom:14.151273px;}
.y2{bottom:16.704213px;}
.y53{bottom:31.890000px;}
.y28f{bottom:89.028000px;}
.y1e4{bottom:92.374500px;}
.y16d{bottom:92.973000px;}
.y24b{bottom:102.484500px;}
.y24{bottom:102.823500px;}
.y130{bottom:104.005500px;}
.yfa{bottom:104.142000px;}
.y2b7{bottom:106.695000px;}
.y28e{bottom:107.857500px;}
.y90{bottom:109.366500px;}
.y323{bottom:109.413000px;}
.y52{bottom:110.397000px;}
.y1e3{bottom:111.204000px;}
.y16c{bottom:111.802500px;}
.yc3{bottom:114.259500px;}
.y1aa{bottom:117.372000px;}
.y23{bottom:120.711000px;}
.y24a{bottom:121.314000px;}
.y1ab{bottom:122.796000px;}
.y12f{bottom:122.835000px;}
.yf8{bottom:122.971500px;}
.y2b6{bottom:125.524500px;}
.y322{bottom:126.673500px;}
.y28d{bottom:126.687000px;}
.y8f{bottom:128.196000px;}
.yf9{bottom:128.397000px;}
.y51{bottom:129.226500px;}
.y1e2{bottom:130.033500px;}
.y16b{bottom:130.632000px;}
.yc2{bottom:133.089000px;}
.y1a8{bottom:136.201500px;}
.y357{bottom:138.078000px;}
.y22{bottom:138.600000px;}
.y249{bottom:140.143500px;}
.y1a9{bottom:141.625500px;}
.y12e{bottom:141.664500px;}
.yf7{bottom:141.801000px;}
.y321{bottom:143.934000px;}
.y2b5{bottom:144.354000px;}
.y28c{bottom:145.516500px;}
.y8e{bottom:147.025500px;}
.y50{bottom:148.056000px;}
.y1e1{bottom:148.863000px;}
.y16a{bottom:149.461500px;}
.yc1{bottom:151.918500px;}
.y1a6{bottom:155.031000px;}
.y356{bottom:155.338500px;}
.y248{bottom:156.237000px;}
.y21{bottom:156.487500px;}
.y247{bottom:158.973000px;}
.y1a7{bottom:160.455000px;}
.y12d{bottom:160.494000px;}
.yf5{bottom:160.630500px;}
.y320{bottom:161.194500px;}
.y2b4{bottom:163.183500px;}
.y28b{bottom:164.346000px;}
.y8d{bottom:165.855000px;}
.yf6{bottom:166.056000px;}
.y4f{bottom:166.885500px;}
.y1e0{bottom:167.692500px;}
.y169{bottom:168.291000px;}
.yc0{bottom:170.748000px;}
.y355{bottom:172.599000px;}
.y1a5{bottom:173.859000px;}
.y20{bottom:174.375000px;}
.y31f{bottom:178.455000px;}
.y12c{bottom:179.323500px;}
.yf4{bottom:179.460000px;}
.y2b3{bottom:182.013000px;}
.y246{bottom:182.286000px;}
.y28a{bottom:183.174000px;}
.y8c{bottom:184.684500px;}
.y4e{bottom:185.715000px;}
.y1df{bottom:186.522000px;}
.y168{bottom:187.120500px;}
.ybf{bottom:189.577500px;}
.y354{bottom:189.858000px;}
.y1f{bottom:192.264000px;}
.y1a3{bottom:192.688500px;}
.y31e{bottom:195.714000px;}
.y1a4{bottom:198.114000px;}
.y12b{bottom:198.153000px;}
.y2b2{bottom:200.842500px;}
.y289{bottom:202.003500px;}
.yf3{bottom:202.773000px;}
.y8b{bottom:203.514000px;}
.y4d{bottom:204.544500px;}
.y1de{bottom:205.351500px;}
.y167{bottom:205.950000px;}
.y353{bottom:207.118500px;}
.ybe{bottom:208.407000px;}
.y1e{bottom:210.151500px;}
.y22b{bottom:210.469500px;}
.y1a2{bottom:211.518000px;}
.y31d{bottom:212.974500px;}
.y12a{bottom:216.982500px;}
.y245{bottom:217.197000px;}
.y2b1{bottom:219.672000px;}
.y288{bottom:220.833000px;}
.y8a{bottom:222.343500px;}
.y4c{bottom:223.374000px;}
.y1dd{bottom:224.181000px;}
.y352{bottom:224.379000px;}
.y166{bottom:224.779500px;}
.ybd{bottom:227.236500px;}
.y1d{bottom:228.039000px;}
.y22a{bottom:229.299000px;}
.y31c{bottom:230.235000px;}
.y1a1{bottom:230.347500px;}
.y129{bottom:235.812000px;}
.yf2{bottom:236.397000px;}
.y244{bottom:236.430000px;}
.y2b0{bottom:238.501500px;}
.y287{bottom:239.662500px;}
.y89{bottom:241.173000px;}
.y351{bottom:241.639500px;}
.y4b{bottom:242.203500px;}
.y1dc{bottom:243.010500px;}
.y165{bottom:243.609000px;}
.ybc{bottom:246.066000px;}
.y31b{bottom:247.495500px;}
.y229{bottom:248.128500px;}
.y1a0{bottom:249.177000px;}
.y2e3{bottom:253.665000px;}
.y156{bottom:254.641500px;}
.yf1{bottom:255.226500px;}
.y243{bottom:255.661500px;}
.y2af{bottom:257.331000px;}
.y286{bottom:258.492000px;}
.y350{bottom:258.900000px;}
.y128{bottom:259.125000px;}
.y88{bottom:260.002500px;}
.y4a{bottom:261.033000px;}
.y1db{bottom:261.840000px;}
.y164{bottom:262.438500px;}
.y31a{bottom:264.756000px;}
.ybb{bottom:264.895500px;}
.y228{bottom:266.958000px;}
.y19f{bottom:268.006500px;}
.y2e2{bottom:272.898000px;}
.y155{bottom:273.471000px;}
.yf0{bottom:274.056000px;}
.y242{bottom:274.894500px;}
.y2ae{bottom:276.160500px;}
.y285{bottom:277.321500px;}
.y87{bottom:278.832000px;}
.y127{bottom:279.298500px;}
.y49{bottom:279.862500px;}
.y1da{bottom:280.669500px;}
.y163{bottom:281.268000px;}
.y319{bottom:282.016500px;}
.yba{bottom:283.725000px;}
.y227{bottom:285.787500px;}
.y19e{bottom:286.836000px;}
.y2e1{bottom:292.131000px;}
.y154{bottom:292.300500px;}
.yef{bottom:292.885500px;}
.y34f{bottom:293.421000px;}
.y241{bottom:294.127500px;}
.y86{bottom:294.925500px;}
.y2ad{bottom:294.990000px;}
.y284{bottom:296.151000px;}
.y85{bottom:297.661500px;}
.y48{bottom:298.690500px;}
.y318{bottom:299.277000px;}
.y1d9{bottom:299.499000px;}
.y162{bottom:300.097500px;}
.yb9{bottom:302.554500px;}
.y226{bottom:304.617000px;}
.y19d{bottom:305.665500px;}
.y1c{bottom:307.299000px;}
.y34e{bottom:310.681500px;}
.y153{bottom:311.130000px;}
.yee{bottom:311.715000px;}
.y126{bottom:312.922500px;}
.y84{bottom:313.761000px;}
.y2ac{bottom:313.819500px;}
.y2c8{bottom:314.560500px;}
.y283{bottom:314.980500px;}
.y83{bottom:316.491000px;}
.y317{bottom:316.537500px;}
.y22c{bottom:316.557000px;}
.y47{bottom:317.520000px;}
.y1d8{bottom:318.328500px;}
.y161{bottom:318.927000px;}
.yb8{bottom:321.384000px;}
.y225{bottom:323.446500px;}
.y19c{bottom:324.495000px;}
.y254{bottom:324.877848px;}
.y1b{bottom:325.186500px;}
.y34d{bottom:327.940500px;}
.y152{bottom:329.958000px;}
.yed{bottom:330.544500px;}
.y125{bottom:331.752000px;}
.y82{bottom:332.590500px;}
.y2ab{bottom:332.649000px;}
.y2ec{bottom:333.407400px;}
.y2cc{bottom:333.662256px;}
.y316{bottom:333.796500px;}
.y282{bottom:333.810000px;}
.y81{bottom:335.320500px;}
.y46{bottom:336.349500px;}
.y1d7{bottom:337.158000px;}
.y160{bottom:337.756500px;}
.y224{bottom:342.276000px;}
.y1a{bottom:343.074000px;}
.y19b{bottom:343.324500px;}
.y180{bottom:344.024832px;}
.y253{bottom:344.137290px;}
.yb7{bottom:344.695500px;}
.y34c{bottom:345.201000px;}
.yec{bottom:349.374000px;}
.y124{bottom:350.581500px;}
.y2eb{bottom:350.866950px;}
.y315{bottom:351.057000px;}
.y2aa{bottom:351.478500px;}
.y1fd{bottom:351.790743px;}
.y281{bottom:352.639500px;}
.y80{bottom:354.150000px;}
.y45{bottom:355.179000px;}
.y1d6{bottom:355.987500px;}
.y19{bottom:360.963000px;}
.y15f{bottom:361.069500px;}
.y223{bottom:361.105500px;}
.y19a{bottom:362.154000px;}
.y34b{bottom:362.461500px;}
.y17f{bottom:363.194094px;}
.y252{bottom:363.396732px;}
.y151{bottom:364.479000px;}
.y2ea{bottom:368.146950px;}
.yeb{bottom:368.203500px;}
.y314{bottom:368.317500px;}
.y123{bottom:369.411000px;}
.y2a9{bottom:370.308000px;}
.y1fc{bottom:370.961508px;}
.y280{bottom:371.469000px;}
.y7f{bottom:372.979500px;}
.y44{bottom:374.008500px;}
.y1d5{bottom:374.817000px;}
.y34a{bottom:379.722000px;}
.y222{bottom:379.935000px;}
.y199{bottom:380.983500px;}
.y17e{bottom:382.453536px;}
.y251{bottom:382.565994px;}
.y313{bottom:385.578000px;}
.y2ca{bottom:386.942085px;}
.yea{bottom:387.033000px;}
.y122{bottom:388.240500px;}
.y2a8{bottom:389.137500px;}
.y1f9{bottom:390.220185px;}
.y1fb{bottom:390.220950px;}
.y27f{bottom:390.298500px;}
.y2e9{bottom:390.557823px;}
.y15e{bottom:391.497000px;}
.yb6{bottom:391.503000px;}
.y7e{bottom:391.809000px;}
.y43{bottom:392.838000px;}
.y1d4{bottom:393.646500px;}
.y1fa{bottom:394.000950px;}
.y2c9{bottom:396.571950px;}
.y349{bottom:396.982500px;}
.y221{bottom:398.764500px;}
.y150{bottom:399.000000px;}
.y18{bottom:399.024000px;}
.y198{bottom:399.813000px;}
.y17d{bottom:401.712978px;}
.y250{bottom:401.825436px;}
.y312{bottom:402.838500px;}
.ye9{bottom:405.862500px;}
.y121{bottom:407.070000px;}
.y7d{bottom:407.908500px;}
.yb5{bottom:407.941500px;}
.y2a7{bottom:407.967000px;}
.y27e{bottom:409.128000px;}
.y1f8{bottom:409.390950px;}
.y1f6{bottom:409.391508px;}
.y7c{bottom:410.638500px;}
.y15d{bottom:410.730000px;}
.y42{bottom:411.667500px;}
.y1d3{bottom:412.476000px;}
.y1f7{bottom:413.171100px;}
.y348{bottom:414.243000px;}
.y17{bottom:416.913000px;}
.y220{bottom:417.594000px;}
.y14f{bottom:417.829500px;}
.y197{bottom:418.642500px;}
.y311{bottom:420.099000px;}
.y17c{bottom:420.883743px;}
.yb4{bottom:424.380000px;}
.ye8{bottom:424.692000px;}
.y120{bottom:425.899500px;}
.y2a6{bottom:426.796500px;}
.y27d{bottom:427.957500px;}
.y1f5{bottom:428.650950px;}
.y1f3{bottom:428.652246px;}
.y7b{bottom:429.468000px;}
.y15c{bottom:429.961500px;}
.y41{bottom:430.497000px;}
.y1d2{bottom:431.305500px;}
.y347{bottom:431.503500px;}
.y1f4{bottom:432.430950px;}
.y16{bottom:434.800500px;}
.y21f{bottom:436.423500px;}
.y14e{bottom:436.659000px;}
.y310{bottom:437.359500px;}
.y17b{bottom:440.143185px;}
.yb3{bottom:440.818500px;}
.y196{bottom:441.955500px;}
.ye7{bottom:443.521500px;}
.y11f{bottom:444.729000px;}
.y2a5{bottom:445.626000px;}
.y15b{bottom:446.572500px;}
.y27c{bottom:446.787000px;}
.y1f2{bottom:447.911688px;}
.y7a{bottom:448.297500px;}
.y346{bottom:448.764000px;}
.y15a{bottom:449.194500px;}
.y1d1{bottom:450.135000px;}
.y40{bottom:453.810000px;}
.y30f{bottom:454.620000px;}
.y24e{bottom:455.015085px;}
.y21e{bottom:455.253000px;}
.y14d{bottom:455.488500px;}
.yb2{bottom:457.257000px;}
.y17a{bottom:459.402627px;}
.ye6{bottom:462.351000px;}
.y11e{bottom:463.558500px;}
.y79{bottom:464.397000px;}
.y2a4{bottom:464.454000px;}
.y24d{bottom:464.644950px;}
.y27b{bottom:465.616500px;}
.y345{bottom:466.024500px;}
.y1f1{bottom:467.080950px;}
.y1ef{bottom:467.085144px;}
.y78{bottom:467.127000px;}
.y159{bottom:468.427500px;}
.y15{bottom:470.622000px;}
.y1f0{bottom:470.860950px;}
.y30e{bottom:471.880500px;}
.yb1{bottom:473.695500px;}
.y21d{bottom:474.082500px;}
.y14c{bottom:474.318000px;}
.y195{bottom:476.866500px;}
.y179{bottom:478.573392px;}
.ye5{bottom:481.180500px;}
.y11c{bottom:482.388000px;}
.y77{bottom:483.226500px;}
.y2a3{bottom:483.283500px;}
.y1d0{bottom:483.700500px;}
.y27a{bottom:484.446000px;}
.y158{bottom:485.038500px;}
.y76{bottom:485.956500px;}
.y1ee{bottom:486.344586px;}
.y157{bottom:487.660500px;}
.y11d{bottom:487.812000px;}
.y14{bottom:488.509500px;}
.y30d{bottom:489.139500px;}
.y21c{bottom:492.910500px;}
.y14b{bottom:493.147500px;}
.yb0{bottom:497.335500px;}
.y178{bottom:497.832834px;}
.y11b{bottom:498.487500px;}
.y16e{bottom:499.294500px;}
.ye4{bottom:500.010000px;}
.y344{bottom:500.544000px;}
.y11a{bottom:501.217500px;}
.y2a2{bottom:502.113000px;}
.y1cf{bottom:502.933500px;}
.y279{bottom:503.275500px;}
.y1bd{bottom:504.699084px;}
.y75{bottom:504.786000px;}
.y1ed{bottom:505.513848px;}
.y30c{bottom:506.400000px;}
.y21b{bottom:511.740000px;}
.y14a{bottom:511.977000px;}
.y177{bottom:517.002096px;}
.y343{bottom:517.804500px;}
.ye3{bottom:518.838000px;}
.y2a1{bottom:520.942500px;}
.yaf{bottom:521.559000px;}
.y1ce{bottom:522.166500px;}
.y74{bottom:523.615500px;}
.y30b{bottom:523.660500px;}
.y1bc{bottom:523.958526px;}
.y13{bottom:524.329500px;}
.y119{bottom:524.529000px;}
.y1ec{bottom:524.773290px;}
.y278{bottom:526.588500px;}
.y3f{bottom:528.960000px;}
.y21a{bottom:530.569500px;}
.y149{bottom:530.806500px;}
.y342{bottom:535.065000px;}
.y176{bottom:536.261538px;}
.ye2{bottom:537.667500px;}
.yae{bottom:537.997500px;}
.y2a0{bottom:539.772000px;}
.y30a{bottom:540.921000px;}
.y1cd{bottom:541.398000px;}
.y12{bottom:542.218500px;}
.y73{bottom:542.445000px;}
.y1bb{bottom:543.129291px;}
.y1eb{bottom:544.032732px;}
.y219{bottom:549.399000px;}
.y148{bottom:549.636000px;}
.y341{bottom:552.325500px;}
.yad{bottom:555.019500px;}
.y175{bottom:555.520980px;}
.ye1{bottom:556.497000px;}
.y277{bottom:557.016000px;}
.y1cc{bottom:558.009000px;}
.y118{bottom:558.153000px;}
.y309{bottom:558.181500px;}
.y29f{bottom:558.601500px;}
.y11{bottom:560.106000px;}
.y1cb{bottom:560.631000px;}
.y72{bottom:561.274500px;}
.y1ba{bottom:562.388733px;}
.y1ea{bottom:563.201994px;}
.y3e{bottom:566.350500px;}
.y147{bottom:568.465500px;}
.y340{bottom:569.586000px;}
.yac{bottom:571.458000px;}
.y174{bottom:574.690242px;}
.ye0{bottom:575.326500px;}
.y308{bottom:575.442000px;}
.y276{bottom:576.247500px;}
.y117{bottom:576.982500px;}
.y29e{bottom:577.431000px;}
.y10{bottom:577.993500px;}
.y71{bottom:580.104000px;}
.y1b9{bottom:581.559498px;}
.y1e9{bottom:582.461436px;}
.y218{bottom:582.966000px;}
.y1ac{bottom:583.060500px;}
.y3d{bottom:583.179000px;}
.y3c{bottom:585.807000px;}
.y33f{bottom:586.846500px;}
.y146{bottom:587.295000px;}
.yab{bottom:588.480000px;}
.y307{bottom:592.702500px;}
.ydf{bottom:594.156000px;}
.y275{bottom:595.480500px;}
.y116{bottom:595.812000px;}
.yf{bottom:595.882500px;}
.y29d{bottom:596.260500px;}
.y70{bottom:598.932000px;}
.y1b8{bottom:600.818940px;}
.y217{bottom:602.197500px;}
.y33e{bottom:604.107000px;}
.yaa{bottom:604.918500px;}
.y3b{bottom:605.263500px;}
.y145{bottom:606.124500px;}
.y173{bottom:607.359450px;}
.y172{bottom:607.359855px;}
.y306{bottom:609.963000px;}
.yde{bottom:612.985500px;}
.ye{bottom:613.770000px;}
.y114{bottom:614.641500px;}
.y274{bottom:614.713500px;}
.y29c{bottom:615.090000px;}
.y6f{bottom:617.761500px;}
.y115{bottom:620.067000px;}
.y1b7{bottom:620.078382px;}
.ya9{bottom:621.357000px;}
.y33d{bottom:621.366000px;}
.y216{bottom:621.430500px;}
.y3a{bottom:624.721500px;}
.y144{bottom:624.954000px;}
.y305{bottom:627.222000px;}
.yd{bottom:631.657500px;}
.ydd{bottom:631.815000px;}
.y113{bottom:633.471000px;}
.y29b{bottom:633.919500px;}
.y1e7{bottom:635.651085px;}
.y6e{bottom:636.591000px;}
.y24c{bottom:637.143000px;}
.ya8{bottom:637.795500px;}
.y33c{bottom:638.626500px;}
.y1b6{bottom:639.247644px;}
.y215{bottom:640.663500px;}
.y39{bottom:644.178000px;}
.y304{bottom:644.482500px;}
.y1e6{bottom:645.280950px;}
.y2c7{bottom:647.370000px;}
.y143{bottom:648.265500px;}
.yc{bottom:649.546500px;}
.ydc{bottom:650.644500px;}
.y112{bottom:652.300500px;}
.y29a{bottom:652.749000px;}
.ya7{bottom:654.232500px;}
.y6d{bottom:655.420500px;}
.y33b{bottom:655.887000px;}
.y1b5{bottom:658.507086px;}
.y303{bottom:661.743000px;}
.y1e5{bottom:663.093000px;}
.y38{bottom:663.634500px;}
.y142{bottom:664.365000px;}
.y141{bottom:667.095000px;}
.yb{bottom:667.434000px;}
.ydb{bottom:669.474000px;}
.y170{bottom:670.359585px;}
.y110{bottom:671.130000px;}
.y299{bottom:671.578500px;}
.y33a{bottom:673.147500px;}
.y6c{bottom:674.250000px;}
.y111{bottom:676.555500px;}
.y1b4{bottom:677.676348px;}
.ya6{bottom:677.874000px;}
.y16f{bottom:679.989450px;}
.y37{bottom:683.092500px;}
.y302{bottom:683.487000px;}
.y2c6{bottom:684.132000px;}
.y140{bottom:685.924500px;}
.yda{bottom:688.303500px;}
.y8{bottom:689.805055px;}
.y10f{bottom:689.959500px;}
.y298{bottom:690.408000px;}
.y6b{bottom:693.079500px;}
.y1b3{bottom:696.935790px;}
.y36{bottom:699.921000px;}
.y13f{bottom:702.024000px;}
.y35{bottom:702.549000px;}
.y13e{bottom:704.754000px;}
.yd9{bottom:707.133000px;}
.y339{bottom:707.668500px;}
.y10e{bottom:708.789000px;}
.y297{bottom:709.237500px;}
.ya5{bottom:709.494000px;}
.y2c5{bottom:710.673000px;}
.y6a{bottom:711.909000px;}
.y301{bottom:713.914500px;}
.y1b2{bottom:716.195232px;}
.y34{bottom:722.007000px;}
.y13d{bottom:723.583500px;}
.y338{bottom:724.929000px;}
.yd8{bottom:725.962500px;}
.y10d{bottom:727.618500px;}
.y2e8{bottom:727.697256px;}
.y296{bottom:728.067000px;}
.y2c4{bottom:728.247000px;}
.y69{bottom:730.738500px;}
.y300{bottom:733.147500px;}
.y1b1{bottom:735.364494px;}
.y33{bottom:738.835500px;}
.y32{bottom:738.841500px;}
.y13c{bottom:739.683000px;}
.y31{bottom:741.463500px;}
.y337{bottom:742.189500px;}
.y13b{bottom:742.413000px;}
.ya4{bottom:745.102500px;}
.y10c{bottom:746.448000px;}
.y295{bottom:746.896500px;}
.y68{bottom:749.568000px;}
.y2ff{bottom:752.380500px;}
.y1b0{bottom:754.623936px;}
.y2c3{bottom:754.786500px;}
.y30{bottom:758.298000px;}
.y336{bottom:759.450000px;}
.y2f{bottom:760.920000px;}
.y13a{bottom:761.242500px;}
.ya3{bottom:763.932000px;}
.y10b{bottom:765.277500px;}
.y294{bottom:765.726000px;}
.y67{bottom:768.397500px;}
.yd7{bottom:771.424500px;}
.y2fe{bottom:771.613500px;}
.y335{bottom:776.709000px;}
.y139{bottom:777.342000px;}
.y138{bottom:780.072000px;}
.y2e{bottom:780.378000px;}
.y2e6{bottom:780.977085px;}
.y2c2{bottom:781.327500px;}
.ya2{bottom:782.761500px;}
.y10a{bottom:784.107000px;}
.y293{bottom:784.555500px;}
.y66{bottom:787.227000px;}
.yd6{bottom:787.863000px;}
.y2e5{bottom:790.606950px;}
.y2fd{bottom:790.845000px;}
.y334{bottom:793.969500px;}
.ya1{bottom:801.591000px;}
.y109{bottom:802.936500px;}
.y137{bottom:803.385000px;}
.yd5{bottom:804.301500px;}
.y65{bottom:806.056500px;}
.y1ae{bottom:807.813585px;}
.y2c1{bottom:807.868500px;}
.y333{bottom:811.230000px;}
.y2e4{bottom:813.274500px;}
.y1ad{bottom:817.443450px;}
.y2d{bottom:818.962500px;}
.ya0{bottom:820.420500px;}
.yd4{bottom:820.740000px;}
.y108{bottom:821.766000px;}
.y136{bottom:822.214500px;}
.y64{bottom:824.886000px;}
.y2c0{bottom:825.442500px;}
.y332{bottom:828.490500px;}
.y237{bottom:834.419858px;}
.y2c{bottom:835.102500px;}
.yd3{bottom:837.178500px;}
.y135{bottom:838.314000px;}
.y107{bottom:840.595500px;}
.y134{bottom:841.044000px;}
.y2bf{bottom:843.016500px;}
.y63{bottom:843.715500px;}
.y9f{bottom:843.733500px;}
.y331{bottom:845.751000px;}
.yd2{bottom:853.617000px;}
.y2b{bottom:855.582000px;}
.y236{bottom:857.422973px;}
.y106{bottom:859.425000px;}
.y133{bottom:859.873500px;}
.y2be{bottom:860.590500px;}
.y62{bottom:862.545000px;}
.y330{bottom:863.011500px;}
.y9e{bottom:863.908500px;}
.y2a{bottom:867.381000px;}
.yd1{bottom:870.055500px;}
.y105{bottom:875.524500px;}
.y104{bottom:878.254500px;}
.y132{bottom:878.703000px;}
.y32f{bottom:880.272000px;}
.y235{bottom:880.534303px;}
.y61{bottom:881.374500px;}
.y29{bottom:883.521000px;}
.yd0{bottom:886.492500px;}
.y2bd{bottom:887.131500px;}
.y28{bottom:887.860500px;}
.y103{bottom:897.084000px;}
.y9d{bottom:897.532500px;}
.y27{bottom:899.661000px;}
.y60{bottom:900.204000px;}
.ycf{bottom:902.931000px;}
.y234{bottom:903.537418px;}
.y2bc{bottom:904.705500px;}
.y9c{bottom:913.632000px;}
.y32e{bottom:914.793000px;}
.y26{bottom:915.801000px;}
.y102{bottom:915.913500px;}
.y9b{bottom:916.362000px;}
.y5f{bottom:919.033500px;}
.yce{bottom:919.369500px;}
.y2bb{bottom:922.279500px;}
.y233{bottom:926.648748px;}
.y32d{bottom:932.052000px;}
.y101{bottom:934.743000px;}
.y9a{bottom:935.191500px;}
.ycd{bottom:935.808000px;}
.y25{bottom:936.279000px;}
.y5e{bottom:937.863000px;}
.y2ba{bottom:939.853500px;}
.y32c{bottom:949.312500px;}
.y232{bottom:949.760078px;}
.ycc{bottom:952.246500px;}
.y99{bottom:954.021000px;}
.y5d{bottom:956.692500px;}
.y2b9{bottom:957.427500px;}
.y100{bottom:958.054500px;}
.y32b{bottom:966.573000px;}
.ycb{bottom:968.685000px;}
.y231{bottom:972.763193px;}
.y98{bottom:972.849000px;}
.y2b8{bottom:975.001500px;}
.y5c{bottom:975.522000px;}
.y7{bottom:976.473000px;}
.y32a{bottom:983.833500px;}
.yca{bottom:985.123500px;}
.y97{bottom:991.678500px;}
.y5b{bottom:994.351500px;}
.y6{bottom:995.302500px;}
.y230{bottom:995.874523px;}
.y329{bottom:1001.094000px;}
.yc9{bottom:1001.562000px;}
.y292{bottom:1007.773500px;}
.y96{bottom:1010.508000px;}
.y5a{bottom:1013.181000px;}
.yff{bottom:1015.933500px;}
.yc8{bottom:1018.000500px;}
.y328{bottom:1018.354500px;}
.y131{bottom:1026.603000px;}
.y95{bottom:1029.337500px;}
.y59{bottom:1032.010500px;}
.yc7{bottom:1034.439000px;}
.y327{bottom:1035.615000px;}
.y5{bottom:1041.199500px;}
.y94{bottom:1048.167000px;}
.y58{bottom:1050.840000px;}
.yc6{bottom:1050.876000px;}
.y326{bottom:1052.875500px;}
.yfe{bottom:1053.592500px;}
.y22e{bottom:1059.702102px;}
.y291{bottom:1064.262000px;}
.y93{bottom:1066.996500px;}
.y4{bottom:1069.443000px;}
.y57{bottom:1069.669500px;}
.y325{bottom:1070.134500px;}
.y22d{bottom:1071.257940px;}
.yfd{bottom:1072.422000px;}
.yc5{bottom:1074.517500px;}
.y290{bottom:1083.096000px;}
.y92{bottom:1085.826000px;}
.y324{bottom:1087.395000px;}
.y56{bottom:1088.499000px;}
.y3{bottom:1097.688000px;}
.yfb{bottom:1101.921000px;}
.yfc{bottom:1101.925500px;}
.y91{bottom:1104.655500px;}
.yc4{bottom:1106.137500px;}
.y55{bottom:1107.327000px;}
.y1{bottom:1141.174500px;}
.y54{bottom:1173.397500px;}
.h24{height:24.176953px;}
.h2e{height:25.177651px;}
.h8{height:25.508090px;}
.h2b{height:25.910156px;}
.hd{height:26.110157px;}
.h1f{height:26.279297px;}
.hb{height:30.461558px;}
.hc{height:30.670772px;}
.h18{height:31.526842px;}
.h15{height:33.072749px;}
.ha{height:33.112997px;}
.h16{height:33.299897px;}
.h9{height:34.199443px;}
.he{height:34.813397px;}
.h1d{height:34.951465px;}
.h14{height:35.052500px;}
.h1b{height:37.334628px;}
.hf{height:38.896243px;}
.h11{height:39.165235px;}
.h21{height:39.418945px;}
.h10{height:39.434227px;}
.h19{height:41.482876px;}
.h1a{height:41.842920px;}
.h27{height:41.941758px;}
.h12{height:43.217759px;}
.h22{height:43.269961px;}
.h13{height:43.516637px;}
.h4{height:43.815515px;}
.h1e{height:43.886426px;}
.h20{height:46.432617px;}
.h29{height:47.302734px;}
.h17{height:48.567733px;}
.h2{height:50.930649px;}
.h28{height:52.663711px;}
.h7{height:54.541601px;}
.h3{height:74.315282px;}
.h6{height:77.792486px;}
.h5{height:78.115277px;}
.h2a{height:293.236500px;}
.h2d{height:306.325500px;}
.h2c{height:312.217500px;}
.h1c{height:318.108000px;}
.h25{height:323.775000px;}
.h23{height:479.125500px;}
.h26{height:803.046600px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:240.774407px;}
.w8{width:551.781000px;}
.w6{width:575.928000px;}
.w9{width:580.581000px;}
.wa{width:594.327000px;}
.w5{width:596.944500px;}
.w4{width:699.707400px;}
.w7{width:783.252900px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.xca{left:-198.642000px;}
.xe4{left:-197.344500px;}
.xef{left:-195.381000px;}
.xf4{left:-194.071500px;}
.xf2{left:-163.521953px;}
.xf7{left:-162.212453px;}
.xb8{left:-97.854000px;}
.xd7{left:-78.466500px;}
.xb9{left:-65.994000px;}
.xa1{left:-44.181600px;}
.xd9{left:-40.234500px;}
.xa9{left:-12.321600px;}
.xcb{left:-3.073090px;}
.xe5{left:-1.775590px;}
.x0{left:0.000000px;}
.xf5{left:1.497410px;}
.x4{left:29.274117px;}
.x3{left:52.951500px;}
.x1{left:54.000000px;}
.x2{left:58.056593px;}
.xaa{left:85.890000px;}
.xde{left:89.961000px;}
.x54{left:95.736000px;}
.x53{left:97.552500px;}
.xdf{left:98.931000px;}
.xe0{left:102.321000px;}
.x55{left:109.615500px;}
.x56{left:113.046000px;}
.x4f{left:114.216000px;}
.x51{left:117.349500px;}
.x57{left:120.436500px;}
.x4c{left:122.944500px;}
.x4d{left:124.686000px;}
.x4e{left:126.763500px;}
.x52{left:128.518500px;}
.xbc{left:129.575894px;}
.x50{left:131.532000px;}
.x5e{left:132.579000px;}
.x5d{left:133.687500px;}
.xc4{left:136.860000px;}
.xab{left:142.666500px;}
.x5c{left:143.991000px;}
.xb7{left:147.985500px;}
.x5b{left:150.190500px;}
.xa7{left:151.390219px;}
.xd8{left:156.216192px;}
.x5a{left:159.108000px;}
.x5f{left:160.768500px;}
.xd0{left:162.168000px;}
.xd1{left:166.578000px;}
.xa6{left:183.250114px;}
.xda{left:194.449500px;}
.xd2{left:216.348000px;}
.xc0{left:219.823500px;}
.xe6{left:229.165500px;}
.xc1{left:230.287500px;}
.xc2{left:233.670000px;}
.xc3{left:242.640000px;}
.x7{left:249.832500px;}
.x5{left:250.897500px;}
.xe7{left:252.655500px;}
.xd4{left:254.896500px;}
.xb1{left:265.392000px;}
.x6{left:271.017000px;}
.x73{left:274.645500px;}
.x4b{left:275.904000px;}
.xb2{left:277.128000px;}
.x3d{left:280.044000px;}
.x74{left:281.071500px;}
.x16{left:282.786000px;}
.x11{left:283.903500px;}
.x8f{left:285.490500px;}
.x61{left:291.340500px;}
.x99{left:292.740000px;}
.xa2{left:294.846979px;}
.xe1{left:296.680500px;}
.x9f{left:299.514000px;}
.x75{left:302.259000px;}
.xac{left:304.041000px;}
.x62{left:306.283500px;}
.xd3{left:308.161500px;}
.x8{left:309.330000px;}
.x48{left:311.274000px;}
.x87{left:312.712500px;}
.xb5{left:314.133000px;}
.x12{left:315.351000px;}
.xf8{left:318.574500px;}
.xaf{left:319.606500px;}
.x15{left:321.183000px;}
.x82{left:324.652500px;}
.x49{left:326.218500px;}
.xd5{left:334.888500px;}
.xce{left:336.408000px;}
.xcf{left:340.818000px;}
.x21{left:341.850000px;}
.xd6{left:343.860000px;}
.xc5{left:344.994000px;}
.x88{left:346.846500px;}
.x22{left:349.321500px;}
.x23{left:352.983000px;}
.xb6{left:357.471000px;}
.xe8{left:360.418500px;}
.x42{left:364.033500px;}
.x24{left:367.926000px;}
.xcc{left:369.438000px;}
.xad{left:371.001000px;}
.x3b{left:372.381000px;}
.xcd{left:373.848000px;}
.x43{left:378.978000px;}
.xf9{left:381.150000px;}
.x76{left:382.990500px;}
.x44{left:386.382000px;}
.x46{left:388.357500px;}
.x77{left:389.416500px;}
.x33{left:391.728000px;}
.x9d{left:396.120000px;}
.xe9{left:399.024000px;}
.x90{left:400.033500px;}
.x45{left:401.326500px;}
.x47{left:403.302000px;}
.xa0{left:405.855000px;}
.x3c{left:408.196500px;}
.xea{left:409.312500px;}
.x9e{left:411.064500px;}
.x91{left:412.186500px;}
.xe2{left:414.238500px;}
.x6c{left:420.550500px;}
.x78{left:423.285000px;}
.x34{left:426.219000px;}
.x60{left:429.768000px;}
.x35{left:430.876500px;}
.xee{left:432.772500px;}
.xd{left:434.314500px;}
.xc6{left:442.084500px;}
.x36{left:445.372500px;}
.x6d{left:450.963000px;}
.xc7{left:453.288000px;}
.x103{left:457.104000px;}
.x3e{left:460.263000px;}
.xe{left:463.693500px;}
.x104{left:465.960000px;}
.xa3{left:468.818400px;}
.xbd{left:470.586000px;}
.xe3{left:478.567500px;}
.x38{left:482.688000px;}
.xc8{left:485.475000px;}
.xb3{left:487.723500px;}
.x17{left:489.027000px;}
.x25{left:491.134500px;}
.x3f{left:492.601500px;}
.x18{left:496.500000px;}
.xb4{left:497.898000px;}
.x26{left:506.077500px;}
.xb0{left:510.795000px;}
.x27{left:513.699000px;}
.x97{left:515.049000px;}
.x8d{left:520.833000px;}
.x63{left:524.637000px;}
.x6a{left:526.023000px;}
.x28{left:528.643500px;}
.x6b{left:532.830000px;}
.x98{left:534.835500px;}
.x4a{left:537.009000px;}
.x64{left:539.580000px;}
.x8e{left:542.370000px;}
.x72{left:549.048000px;}
.xbe{left:551.488500px;}
.x79{left:554.194500px;}
.x19{left:556.602000px;}
.x8b{left:557.935500px;}
.x7d{left:559.386000px;}
.x81{left:560.538000px;}
.x7a{left:562.986000px;}
.x1a{left:564.073500px;}
.x8c{left:568.224000px;}
.x1b{left:571.492500px;}
.x7b{left:573.406500px;}
.x9a{left:575.296500px;}
.xed{left:577.359000px;}
.x1c{left:578.965500px;}
.x7e{left:581.562000px;}
.xf0{left:582.935818px;}
.xf6{left:584.245318px;}
.xf1{left:585.638850px;}
.xae{left:587.355000px;}
.x39{left:591.483000px;}
.x30{left:595.780500px;}
.xa4{left:599.678400px;}
.x3a{left:605.977500px;}
.xba{left:611.256000px;}
.xa5{left:613.178400px;}
.x65{left:616.362000px;}
.xbb{left:623.676000px;}
.x69{left:625.087500px;}
.x66{left:631.305000px;}
.x6f{left:634.311000px;}
.x70{left:641.116500px;}
.x9{left:643.059000px;}
.xec{left:647.040000px;}
.x2c{left:652.596000px;}
.x101{left:654.315000px;}
.x107{left:658.651500px;}
.xff{left:662.034000px;}
.x2d{left:667.092000px;}
.x1d{left:668.173500px;}
.xa{left:672.436500px;}
.x2e{left:674.325000px;}
.x1e{left:675.646500px;}
.x102{left:681.214500px;}
.x1f{left:683.268000px;}
.xfd{left:684.955500px;}
.x2f{left:688.821000px;}
.x20{left:698.211000px;}
.x89{left:700.834500px;}
.xa8{left:702.188088px;}
.x9b{left:704.773500px;}
.x85{left:708.025500px;}
.xdb{left:710.799000px;}
.xfe{left:711.855000px;}
.x9c{left:714.183000px;}
.x8a{left:715.779000px;}
.x86{left:718.314000px;}
.xdc{left:721.263000px;}
.x93{left:722.445000px;}
.x58{left:724.893000px;}
.x92{left:728.101500px;}
.xfb{left:729.643500px;}
.xf3{left:732.274500px;}
.xdd{left:734.403000px;}
.x94{left:737.388000px;}
.x59{left:739.837500px;}
.x100{left:745.134000px;}
.x31{left:749.680500px;}
.x40{left:752.230500px;}
.x106{left:755.011500px;}
.xfc{left:756.543000px;}
.xbf{left:758.671500px;}
.xc9{left:762.217500px;}
.x41{left:766.726500px;}
.xeb{left:768.916500px;}
.x2a{left:772.180500px;}
.xf{left:773.407500px;}
.x71{left:779.239500px;}
.x32{left:780.634500px;}
.x13{left:783.676500px;}
.x2b{left:786.676500px;}
.x95{left:789.808500px;}
.x105{left:793.380000px;}
.x29{left:795.847500px;}
.x83{left:802.068000px;}
.x10{left:804.846000px;}
.x37{left:806.104500px;}
.xb{left:807.921000px;}
.x96{left:809.850000px;}
.x84{left:812.356500px;}
.x14{left:815.103000px;}
.x7c{left:816.126000px;}
.x67{left:817.698000px;}
.x7f{left:819.384000px;}
.xfa{left:823.578000px;}
.x80{left:824.829000px;}
.x68{left:832.642500px;}
.x6e{left:835.332000px;}
.xc{left:837.300000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-9.344000pt;}
.v5{vertical-align:-7.679328pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.ls38{letter-spacing:-0.363392pt;}
.ls35{letter-spacing:-0.251168pt;}
.ls36{letter-spacing:-0.203072pt;}
.ls5c{letter-spacing:-0.197728pt;}
.ls4b{letter-spacing:-0.192384pt;}
.ls5f{letter-spacing:-0.181696pt;}
.ls7d{letter-spacing:-0.168000pt;}
.ls34{letter-spacing:-0.160320pt;}
.ls8a{letter-spacing:-0.153600pt;}
.ls87{letter-spacing:-0.148800pt;}
.ls76{letter-spacing:-0.147494pt;}
.ls81{letter-spacing:-0.128256pt;}
.ls4c{letter-spacing:-0.122912pt;}
.ls7f{letter-spacing:-0.115200pt;}
.ls4e{letter-spacing:-0.106880pt;}
.ls77{letter-spacing:-0.102605pt;}
.ls4d{letter-spacing:-0.101536pt;}
.ls60{letter-spacing:-0.096192pt;}
.ls70{letter-spacing:-0.091930pt;}
.ls5d{letter-spacing:-0.090848pt;}
.ls89{letter-spacing:-0.086400pt;}
.ls2a{letter-spacing:-0.076608pt;}
.ls7c{letter-spacing:-0.064128pt;}
.ls88{letter-spacing:-0.062400pt;}
.ls5b{letter-spacing:-0.058784pt;}
.ls37{letter-spacing:-0.053440pt;}
.ls53{letter-spacing:-0.052800pt;}
.ls4f{letter-spacing:-0.048096pt;}
.ls74{letter-spacing:-0.044890pt;}
.ls2f{letter-spacing:-0.042752pt;}
.ls75{letter-spacing:-0.038477pt;}
.ls32{letter-spacing:-0.038400pt;}
.ls3a{letter-spacing:-0.037408pt;}
.ls78{letter-spacing:-0.034560pt;}
.ls55{letter-spacing:-0.032064pt;}
.ls33{letter-spacing:-0.028800pt;}
.ls2d{letter-spacing:-0.026720pt;}
.ls73{letter-spacing:-0.025651pt;}
.ls5e{letter-spacing:-0.021376pt;}
.ls72{letter-spacing:-0.019238pt;}
.ls80{letter-spacing:-0.019200pt;}
.ls2e{letter-spacing:-0.016032pt;}
.ls71{letter-spacing:-0.012826pt;}
.ls30{letter-spacing:-0.010688pt;}
.ls52{letter-spacing:-0.009600pt;}
.ls31{letter-spacing:-0.005344pt;}
.ls9{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000481pt;}
.ls91{letter-spacing:0.000621pt;}
.ls92{letter-spacing:0.000711pt;}
.lsa2{letter-spacing:0.000921pt;}
.lsc{letter-spacing:0.001007pt;}
.ls99{letter-spacing:0.001173pt;}
.ls9b{letter-spacing:0.001408pt;}
.ls6{letter-spacing:0.001735pt;}
.lsa1{letter-spacing:0.002262pt;}
.ls8f{letter-spacing:0.003071pt;}
.ls9e{letter-spacing:0.004118pt;}
.ls93{letter-spacing:0.004267pt;}
.ls79{letter-spacing:0.004800pt;}
.ls1c{letter-spacing:0.005344pt;}
.ls6d{letter-spacing:0.005760pt;}
.ls51{letter-spacing:0.005888pt;}
.ls2b{letter-spacing:0.006400pt;}
.ls25{letter-spacing:0.009600pt;}
.ls18{letter-spacing:0.010688pt;}
.ls6f{letter-spacing:0.012826pt;}
.ls20{letter-spacing:0.014400pt;}
.ls47{letter-spacing:0.016032pt;}
.ls68{letter-spacing:0.017280pt;}
.ls23{letter-spacing:0.019200pt;}
.ls1b{letter-spacing:0.021376pt;}
.ls40{letter-spacing:0.024000pt;}
.ls15{letter-spacing:0.025536pt;}
.ls64{letter-spacing:0.025651pt;}
.ls57{letter-spacing:0.026720pt;}
.ls58{letter-spacing:0.028800pt;}
.ls61{letter-spacing:0.030643pt;}
.ls27{letter-spacing:0.032064pt;}
.ls3e{letter-spacing:0.033600pt;}
.ls19{letter-spacing:0.037408pt;}
.ls43{letter-spacing:0.038400pt;}
.ls67{letter-spacing:0.040320pt;}
.ls7b{letter-spacing:0.041600pt;}
.ls29{letter-spacing:0.042752pt;}
.ls44{letter-spacing:0.043200pt;}
.ls69{letter-spacing:0.046080pt;}
.ls7a{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.048096pt;}
.ls6e{letter-spacing:0.051840pt;}
.ls46{letter-spacing:0.052800pt;}
.ls28{letter-spacing:0.053440pt;}
.ls41{letter-spacing:0.057600pt;}
.ls66{letter-spacing:0.057715pt;}
.ls26{letter-spacing:0.058784pt;}
.ls82{letter-spacing:0.062400pt;}
.ls3b{letter-spacing:0.064128pt;}
.ls1e{letter-spacing:0.069472pt;}
.ls1d{letter-spacing:0.074816pt;}
.ls85{letter-spacing:0.076800pt;}
.ls1f{letter-spacing:0.080160pt;}
.ls3c{letter-spacing:0.085504pt;}
.ls84{letter-spacing:0.086400pt;}
.ls3d{letter-spacing:0.090848pt;}
.ls86{letter-spacing:0.091200pt;}
.ls65{letter-spacing:0.096192pt;}
.ls21{letter-spacing:0.100800pt;}
.ls24{letter-spacing:0.110400pt;}
.ls45{letter-spacing:0.129600pt;}
.ls6a{letter-spacing:0.132480pt;}
.ls2c{letter-spacing:0.133600pt;}
.ls8b{letter-spacing:0.134400pt;}
.ls42{letter-spacing:0.139200pt;}
.ls54{letter-spacing:0.154976pt;}
.ls6c{letter-spacing:0.155520pt;}
.ls17{letter-spacing:0.157472pt;}
.ls56{letter-spacing:0.161728pt;}
.ls3f{letter-spacing:0.163200pt;}
.ls16{letter-spacing:0.170240pt;}
.ls63{letter-spacing:0.194074pt;}
.ls6b{letter-spacing:0.195840pt;}
.ls62{letter-spacing:0.204288pt;}
.ls7e{letter-spacing:0.340800pt;}
.ls59{letter-spacing:0.388473pt;}
.ls49{letter-spacing:0.413306pt;}
.ls5a{letter-spacing:0.575533pt;}
.lsd{letter-spacing:0.595806pt;}
.ls48{letter-spacing:0.652314pt;}
.lsa{letter-spacing:1.133683pt;}
.ls3{letter-spacing:1.654338pt;}
.ls50{letter-spacing:2.404800pt;}
.ls0{letter-spacing:2.657067pt;}
.lsf{letter-spacing:3.139507pt;}
.ls22{letter-spacing:4.492800pt;}
.ls39{letter-spacing:5.205056pt;}
.ls4{letter-spacing:9.298933pt;}
.ls8{letter-spacing:10.626533pt;}
.lsa5{letter-spacing:10.880174pt;}
.ls95{letter-spacing:10.967249pt;}
.ls8e{letter-spacing:11.669841pt;}
.ls14{letter-spacing:11.767761pt;}
.ls98{letter-spacing:11.775493pt;}
.lsa0{letter-spacing:11.792831pt;}
.ls9d{letter-spacing:11.821692pt;}
.ls97{letter-spacing:11.856409pt;}
.ls11{letter-spacing:11.950933pt;}
.lsb{letter-spacing:11.954133pt;}
.ls12{letter-spacing:11.956267pt;}
.ls8d{letter-spacing:11.959467pt;}
.ls94{letter-spacing:12.066569pt;}
.ls90{letter-spacing:12.096030pt;}
.ls9a{letter-spacing:12.107067pt;}
.lse{letter-spacing:12.551467pt;}
.lsa3{letter-spacing:12.850029pt;}
.ls13{letter-spacing:13.285959pt;}
.ls4a{letter-spacing:13.549136pt;}
.lsa4{letter-spacing:14.580854pt;}
.ls96{letter-spacing:14.732694pt;}
.ls9c{letter-spacing:14.823467pt;}
.ls8c{letter-spacing:16.698395pt;}
.ls9f{letter-spacing:17.712774pt;}
.ls1{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.ls7{letter-spacing:57.174803pt;}
.ls83{letter-spacing:63.806400pt;}
.ls2{letter-spacing:64.321067pt;}
.ws12b{word-spacing:-53.440000pt;}
.ws1a4{word-spacing:-14.400000pt;}
.ws12a{word-spacing:-13.514976pt;}
.ws12c{word-spacing:-13.418784pt;}
.ws12d{word-spacing:-13.376032pt;}
.wse4{word-spacing:-13.360000pt;}
.ws3c{word-spacing:-13.283467pt;}
.ws1a2{word-spacing:-12.972288pt;}
.ws1a1{word-spacing:-12.798643pt;}
.ws1a3{word-spacing:-12.768000pt;}
.ws210{word-spacing:-12.129600pt;}
.wse2{word-spacing:-12.014400pt;}
.ws20e{word-spacing:-12.009600pt;}
.wse3{word-spacing:-12.000000pt;}
.ws20f{word-spacing:-11.961600pt;}
.ws27{word-spacing:-11.955200pt;}
.wse0{word-spacing:-10.810240pt;}
.wsdf{word-spacing:-10.665536pt;}
.wse1{word-spacing:-10.640000pt;}
.ws39{word-spacing:-10.626800pt;}
.ws5{word-spacing:-10.095467pt;}
.wsc{word-spacing:-9.298400pt;}
.ws1c7{word-spacing:-8.041600pt;}
.ws4c{word-spacing:-3.725229pt;}
.ws4d{word-spacing:-3.719371pt;}
.ws188{word-spacing:-3.152960pt;}
.ws1f4{word-spacing:-3.120896pt;}
.ws117{word-spacing:-3.115552pt;}
.ws187{word-spacing:-3.110208pt;}
.ws118{word-spacing:-3.088832pt;}
.ws1f5{word-spacing:-3.062112pt;}
.wsea{word-spacing:-2.922363pt;}
.ws202{word-spacing:-2.869229pt;}
.ws198{word-spacing:-2.848352pt;}
.ws1df{word-spacing:-2.832320pt;}
.ws1eb{word-spacing:-2.826976pt;}
.ws199{word-spacing:-2.773536pt;}
.ws1ea{word-spacing:-2.768192pt;}
.ws1ec{word-spacing:-2.741472pt;}
.ws1e6{word-spacing:-2.543744pt;}
.wsc4{word-spacing:-2.497292pt;}
.ws1e5{word-spacing:-2.474272pt;}
.ws1be{word-spacing:-2.459520pt;}
.ws21f{word-spacing:-2.428800pt;}
.ws21e{word-spacing:-2.409600pt;}
.ws20a{word-spacing:-2.343219pt;}
.ws164{word-spacing:-2.284756pt;}
.ws15d{word-spacing:-2.212416pt;}
.ws56{word-spacing:-2.178489pt;}
.ws157{word-spacing:-2.175008pt;}
.ws1bf{word-spacing:-2.165760pt;}
.ws1ce{word-spacing:-2.158976pt;}
.ws1cf{word-spacing:-2.148288pt;}
.ws231{word-spacing:-2.112000pt;}
.ws1d8{word-spacing:-2.088000pt;}
.ws1bd{word-spacing:-2.073600pt;}
.wsa3{word-spacing:-2.072221pt;}
.ws134{word-spacing:-2.019087pt;}
.ws200{word-spacing:-1.965953pt;}
.ws1d9{word-spacing:-1.958400pt;}
.ws15b{word-spacing:-1.816960pt;}
.wsc3{word-spacing:-1.806551pt;}
.ws15c{word-spacing:-1.800928pt;}
.ws2d{word-spacing:-1.753418pt;}
.wsd0{word-spacing:-1.700284pt;}
.ws7{word-spacing:-1.696326pt;}
.ws20b{word-spacing:-1.673728pt;}
.ws11f{word-spacing:-1.571136pt;}
.ws15e{word-spacing:-1.565792pt;}
.ws1f0{word-spacing:-1.555104pt;}
.wsa2{word-spacing:-1.544411pt;}
.wsa0{word-spacing:-1.543405pt;}
.wsa1{word-spacing:-1.540882pt;}
.wsda{word-spacing:-1.530496pt;}
.ws1f1{word-spacing:-1.501664pt;}
.ws15f{word-spacing:-1.490976pt;}
.wsdb{word-spacing:-1.487748pt;}
.ws182{word-spacing:-1.464000pt;}
.ws181{word-spacing:-1.449600pt;}
.ws26b{word-spacing:-1.386803pt;}
.ws9d{word-spacing:-1.381481pt;}
.ws9f{word-spacing:-1.381146pt;}
.wsc6{word-spacing:-1.366994pt;}
.wsc5{word-spacing:-1.364033pt;}
.wsbf{word-spacing:-1.328347pt;}
.ws18{word-spacing:-1.317723pt;}
.ws22{word-spacing:-1.291162pt;}
.ws52{word-spacing:-1.275213pt;}
.ws53{word-spacing:-1.222079pt;}
.ws172{word-spacing:-1.218432pt;}
.wse6{word-spacing:-1.195520pt;}
.ws115{word-spacing:-1.191712pt;}
.ws114{word-spacing:-1.181024pt;}
.ws6{word-spacing:-1.175671pt;}
.ws1ff{word-spacing:-1.168945pt;}
.ws9e{word-spacing:-1.062677pt;}
.ws26c{word-spacing:-1.052058pt;}
.ws54{word-spacing:-1.009543pt;}
.wse7{word-spacing:-1.004237pt;}
.ws4f{word-spacing:-0.956410pt;}
.ws57{word-spacing:-0.903276pt;}
.ws109{word-spacing:-0.876416pt;}
.ws129{word-spacing:-0.865728pt;}
.ws108{word-spacing:-0.860384pt;}
.ws180{word-spacing:-0.854400pt;}
.ws37{word-spacing:-0.850142pt;}
.ws173{word-spacing:-0.849696pt;}
.ws151{word-spacing:-0.835200pt;}
.ws17d{word-spacing:-0.820800pt;}
.ws17f{word-spacing:-0.816000pt;}
.ws150{word-spacing:-0.806400pt;}
.ws1fe{word-spacing:-0.797008pt;}
.ws17e{word-spacing:-0.796800pt;}
.ws1f{word-spacing:-0.765133pt;}
.ws58{word-spacing:-0.743874pt;}
.wsc1{word-spacing:-0.690740pt;}
.ws18b{word-spacing:-0.609216pt;}
.ws144{word-spacing:-0.603872pt;}
.ws128{word-spacing:-0.598528pt;}
.ws185{word-spacing:-0.593184pt;}
.ws11a{word-spacing:-0.587840pt;}
.ws1b{word-spacing:-0.587063pt;}
.ws1cb{word-spacing:-0.584473pt;}
.ws1c{word-spacing:-0.573850pt;}
.ws16f{word-spacing:-0.555776pt;}
.ws143{word-spacing:-0.529056pt;}
.ws184{word-spacing:-0.523712pt;}
.ws152{word-spacing:-0.518400pt;}
.ws155{word-spacing:-0.475200pt;}
.ws153{word-spacing:-0.465600pt;}
.ws2f{word-spacing:-0.425071pt;}
.ws154{word-spacing:-0.422400pt;}
.ws11b{word-spacing:-0.395456pt;}
.ws42{word-spacing:-0.371937pt;}
.wsce{word-spacing:-0.318803pt;}
.ws100{word-spacing:-0.309952pt;}
.ws11c{word-spacing:-0.304608pt;}
.ws1a7{word-spacing:-0.296218pt;}
.ws113{word-spacing:-0.293920pt;}
.ws23e{word-spacing:-0.286925pt;}
.wsf3{word-spacing:-0.284288pt;}
.ws136{word-spacing:-0.283232pt;}
.ws1ef{word-spacing:-0.277888pt;}
.ws3a{word-spacing:-0.265669pt;}
.ws1f9{word-spacing:-0.261856pt;}
.ws1e9{word-spacing:-0.251168pt;}
.wsf8{word-spacing:-0.246848pt;}
.wsfa{word-spacing:-0.245824pt;}
.ws147{word-spacing:-0.240480pt;}
.ws247{word-spacing:-0.239104pt;}
.ws1e1{word-spacing:-0.235136pt;}
.ws24f{word-spacing:-0.231533pt;}
.ws123{word-spacing:-0.219104pt;}
.ws1d4{word-spacing:-0.213760pt;}
.ws4b{word-spacing:-0.212535pt;}
.ws1ee{word-spacing:-0.208416pt;}
.ws1dd{word-spacing:-0.201600pt;}
.ws24d{word-spacing:-0.198996pt;}
.ws1e0{word-spacing:-0.192384pt;}
.ws1d{word-spacing:-0.191283pt;}
.ws148{word-spacing:-0.187040pt;}
.wsaf{word-spacing:-0.182631pt;}
.ws25b{word-spacing:-0.170964pt;}
.ws30{word-spacing:-0.159402pt;}
.ws1d6{word-spacing:-0.158400pt;}
.wseb{word-spacing:-0.154239pt;}
.wsec{word-spacing:-0.149898pt;}
.ws219{word-spacing:-0.144000pt;}
.ws24{word-spacing:-0.143462pt;}
.ws94{word-spacing:-0.133505pt;}
.ws95{word-spacing:-0.108590pt;}
.ws96{word-spacing:-0.106268pt;}
.wsd8{word-spacing:-0.100262pt;}
.wsd6{word-spacing:-0.100128pt;}
.ws1e{word-spacing:-0.095642pt;}
.wsd7{word-spacing:-0.095084pt;}
.wsd9{word-spacing:-0.095033pt;}
.ws21a{word-spacing:-0.091200pt;}
.ws24b{word-spacing:-0.080175pt;}
.wsed{word-spacing:-0.074514pt;}
.ws21b{word-spacing:-0.067200pt;}
.wse5{word-spacing:-0.053440pt;}
.ws32{word-spacing:-0.053134pt;}
.ws26{word-spacing:-0.047821pt;}
.ws19{word-spacing:-0.042507pt;}
.ws6c{word-spacing:-0.019584pt;}
.wsca{word-spacing:-0.014940pt;}
.ws24e{word-spacing:-0.011950pt;}
.ws258{word-spacing:-0.010419pt;}
.ws0{word-spacing:-0.010078pt;}
.wscb{word-spacing:-0.008642pt;}
.ws244{word-spacing:-0.008073pt;}
.wscc{word-spacing:-0.007859pt;}
.wsf2{word-spacing:-0.005385pt;}
.ws4{word-spacing:-0.005157pt;}
.ws237{word-spacing:-0.004147pt;}
.ws235{word-spacing:-0.003831pt;}
.ws3{word-spacing:-0.003808pt;}
.wsb{word-spacing:-0.003805pt;}
.ws253{word-spacing:-0.003797pt;}
.ws240{word-spacing:-0.002739pt;}
.ws259{word-spacing:-0.002628pt;}
.ws243{word-spacing:-0.002577pt;}
.ws23c{word-spacing:-0.002449pt;}
.ws23b{word-spacing:-0.002159pt;}
.ws38{word-spacing:-0.002103pt;}
.ws262{word-spacing:-0.001801pt;}
.ws9{word-spacing:-0.000147pt;}
.ws250{word-spacing:-0.000051pt;}
.ws2{word-spacing:0.000000pt;}
.ws131{word-spacing:0.001485pt;}
.ws236{word-spacing:0.001519pt;}
.ws266{word-spacing:0.001758pt;}
.ws130{word-spacing:0.022016pt;}
.ws22b{word-spacing:0.028800pt;}
.ws1fd{word-spacing:0.042752pt;}
.ws12e{word-spacing:0.047821pt;}
.wsfb{word-spacing:0.048096pt;}
.ws31{word-spacing:0.053134pt;}
.wsfe{word-spacing:0.064128pt;}
.ws232{word-spacing:0.072000pt;}
.wsff{word-spacing:0.080160pt;}
.ws1e3{word-spacing:0.085504pt;}
.ws195{word-spacing:0.090848pt;}
.ws20{word-spacing:0.093315pt;}
.ws21{word-spacing:0.095642pt;}
.ws35{word-spacing:0.106268pt;}
.ws17a{word-spacing:0.106880pt;}
.ws162{word-spacing:0.107526pt;}
.ws156{word-spacing:0.110400pt;}
.ws230{word-spacing:0.120000pt;}
.ws22c{word-spacing:0.124800pt;}
.ws183{word-spacing:0.129600pt;}
.ws1d5{word-spacing:0.134400pt;}
.ws28{word-spacing:0.143462pt;}
.ws1c3{word-spacing:0.144000pt;}
.ws167{word-spacing:0.144288pt;}
.ws1b5{word-spacing:0.147494pt;}
.ws233{word-spacing:0.148800pt;}
.ws36{word-spacing:0.159402pt;}
.ws132{word-spacing:0.173956pt;}
.ws1e4{word-spacing:0.176352pt;}
.ws1ed{word-spacing:0.181696pt;}
.wse{word-spacing:0.185968pt;}
.ws133{word-spacing:0.187370pt;}
.wsd5{word-spacing:0.191283pt;}
.ws25f{word-spacing:0.196575pt;}
.ws22f{word-spacing:0.201600pt;}
.ws2b{word-spacing:0.212535pt;}
.ws228{word-spacing:0.216000pt;}
.ws9b{word-spacing:0.229150pt;}
.ws25e{word-spacing:0.239104pt;}
.ws10{word-spacing:0.260355pt;}
.ws9a{word-spacing:0.265669pt;}
.ws1a6{word-spacing:0.286925pt;}
.ws93{word-spacing:0.292446pt;}
.ws92{word-spacing:0.296822pt;}
.ws43{word-spacing:0.318803pt;}
.ws1d7{word-spacing:0.331200pt;}
.ws116{word-spacing:0.331328pt;}
.ws2e{word-spacing:0.371937pt;}
.ws10b{word-spacing:0.395456pt;}
.ws10a{word-spacing:0.406144pt;}
.ws10e{word-spacing:0.422176pt;}
.ws214{word-spacing:0.422400pt;}
.wsba{word-spacing:0.425071pt;}
.ws1de{word-spacing:0.427520pt;}
.ws218{word-spacing:0.436800pt;}
.ws1c4{word-spacing:0.474547pt;}
.ws216{word-spacing:0.475200pt;}
.wsc2{word-spacing:0.478205pt;}
.ws238{word-spacing:0.478208pt;}
.ws215{word-spacing:0.494400pt;}
.ws1a5{word-spacing:0.526029pt;}
.wsb3{word-spacing:0.531339pt;}
.ws1bb{word-spacing:0.535680pt;}
.ws1ba{word-spacing:0.564480pt;}
.ws242{word-spacing:0.573850pt;}
.ws78{word-spacing:0.574770pt;}
.ws1bc{word-spacing:0.576000pt;}
.wsde{word-spacing:0.584473pt;}
.wsd4{word-spacing:0.621670pt;}
.ws217{word-spacing:0.633600pt;}
.ws2c{word-spacing:0.637606pt;}
.ws268{word-spacing:0.668620pt;}
.ws267{word-spacing:0.669491pt;}
.ws45{word-spacing:0.690740pt;}
.ws79{word-spacing:0.707192pt;}
.ws7a{word-spacing:0.709977pt;}
.ws204{word-spacing:0.743874pt;}
.ws14f{word-spacing:0.748800pt;}
.ws21c{word-spacing:0.768000pt;}
.ws21d{word-spacing:0.777600pt;}
.ws14e{word-spacing:0.782400pt;}
.ws14d{word-spacing:0.792000pt;}
.ws14c{word-spacing:0.796800pt;}
.ws3b{word-spacing:0.797008pt;}
.ws241{word-spacing:0.812954pt;}
.wsd3{word-spacing:0.860774pt;}
.wscf{word-spacing:0.903276pt;}
.ws26a{word-spacing:0.908595pt;}
.ws1c2{word-spacing:0.915840pt;}
.ws11d{word-spacing:0.929856pt;}
.ws1c1{word-spacing:0.950400pt;}
.ws1c0{word-spacing:0.996480pt;}
.ws47{word-spacing:1.009543pt;}
.ws1fa{word-spacing:1.010016pt;}
.ws142{word-spacing:1.052768pt;}
.ws51{word-spacing:1.115811pt;}
.wsc8{word-spacing:1.137678pt;}
.ws68{word-spacing:1.142716pt;}
.ws1aa{word-spacing:1.231258pt;}
.ws9c{word-spacing:1.275213pt;}
.ws161{word-spacing:1.309280pt;}
.wsfd{word-spacing:1.319968pt;}
.ws3d{word-spacing:1.321913pt;}
.wsb4{word-spacing:1.328347pt;}
.ws11e{word-spacing:1.330656pt;}
.ws1dc{word-spacing:1.425600pt;}
.ws17b{word-spacing:1.430400pt;}
.ws1cd{word-spacing:1.434614pt;}
.ws251{word-spacing:1.434624pt;}
.ws17c{word-spacing:1.444800pt;}
.ws1da{word-spacing:1.454400pt;}
.ws1db{word-spacing:1.464000pt;}
.ws12f{word-spacing:1.487748pt;}
.wsc7{word-spacing:1.498803pt;}
.wsc9{word-spacing:1.540882pt;}
.ws264{word-spacing:1.578086pt;}
.ws50{word-spacing:1.594016pt;}
.ws1fb{word-spacing:1.597856pt;}
.ws105{word-spacing:1.613888pt;}
.ws257{word-spacing:1.625907pt;}
.ws5a{word-spacing:1.647150pt;}
.ws25d{word-spacing:1.673728pt;}
.ws160{word-spacing:1.678016pt;}
.ws229{word-spacing:1.689600pt;}
.ws99{word-spacing:1.700284pt;}
.ws104{word-spacing:1.710080pt;}
.ws1fc{word-spacing:1.715424pt;}
.ws22a{word-spacing:1.728000pt;}
.ws41{word-spacing:1.753418pt;}
.wsf{word-spacing:1.785293pt;}
.ws34{word-spacing:1.806551pt;}
.ws59{word-spacing:1.912819pt;}
.ws10d{word-spacing:1.923840pt;}
.wsd2{word-spacing:1.965953pt;}
.ws10c{word-spacing:2.009344pt;}
.ws4a{word-spacing:2.019087pt;}
.ws13c{word-spacing:2.020032pt;}
.ws265{word-spacing:2.056294pt;}
.ws4e{word-spacing:2.072221pt;}
.ws13d{word-spacing:2.105536pt;}
.ws2a{word-spacing:2.125355pt;}
.ws1cc{word-spacing:2.178489pt;}
.wsa{word-spacing:2.233174pt;}
.ws227{word-spacing:2.318400pt;}
.ws196{word-spacing:2.319296pt;}
.ws19a{word-spacing:2.335328pt;}
.ws5b{word-spacing:2.337890pt;}
.ws197{word-spacing:2.340672pt;}
.ws1af{word-spacing:2.347085pt;}
.ws22d{word-spacing:2.352000pt;}
.ws22e{word-spacing:2.356800pt;}
.ws1f3{word-spacing:2.362048pt;}
.ws14b{word-spacing:2.371200pt;}
.ws226{word-spacing:2.380800pt;}
.ws110{word-spacing:2.385600pt;}
.ws10f{word-spacing:2.390400pt;}
.ws7b{word-spacing:2.391024pt;}
.ws112{word-spacing:2.395200pt;}
.ws1b0{word-spacing:2.417626pt;}
.wsac{word-spacing:2.437427pt;}
.ws1c9{word-spacing:2.438861pt;}
.ws111{word-spacing:2.443200pt;}
.ws7f{word-spacing:2.444158pt;}
.wsad{word-spacing:2.451441pt;}
.wsaa{word-spacing:2.454053pt;}
.wsab{word-spacing:2.461305pt;}
.ws263{word-spacing:2.486682pt;}
.ws7e{word-spacing:2.497292pt;}
.ws1b4{word-spacing:2.507405pt;}
.ws19b{word-spacing:2.517024pt;}
.ws205{word-spacing:2.550426pt;}
.ws1a{word-spacing:2.550432pt;}
.ws1b3{word-spacing:2.552294pt;}
.ws23f{word-spacing:2.582323pt;}
.wsa5{word-spacing:2.603559pt;}
.ws1f6{word-spacing:2.613216pt;}
.ws19e{word-spacing:2.618560pt;}
.ws213{word-spacing:2.630144pt;}
.ws201{word-spacing:2.656693pt;}
.ws19f{word-spacing:2.661312pt;}
.ws1c8{word-spacing:2.677965pt;}
.wsb2{word-spacing:2.709827pt;}
.wsb5{word-spacing:2.762961pt;}
.ws20d{word-spacing:2.773606pt;}
.ws24c{word-spacing:2.813378pt;}
.ws46{word-spacing:2.816095pt;}
.ws212{word-spacing:2.821427pt;}
.ws1b8{word-spacing:2.839680pt;}
.ws1b6{word-spacing:2.845440pt;}
.wsae{word-spacing:2.859311pt;}
.ws26d{word-spacing:2.860314pt;}
.ws25c{word-spacing:2.860416pt;}
.ws25a{word-spacing:2.863300pt;}
.ws246{word-spacing:2.863420pt;}
.ws23a{word-spacing:2.864307pt;}
.ws256{word-spacing:2.864401pt;}
.ws23d{word-spacing:2.865732pt;}
.ws252{word-spacing:2.868233pt;}
.ws1b7{word-spacing:2.868480pt;}
.ws48{word-spacing:2.869229pt;}
.ws211{word-spacing:2.869248pt;}
.ws1b9{word-spacing:2.885760pt;}
.ws137{word-spacing:2.912480pt;}
.ws19d{word-spacing:2.917824pt;}
.wsbe{word-spacing:2.922363pt;}
.ws16b{word-spacing:2.971264pt;}
.ws206{word-spacing:2.975497pt;}
.ws101{word-spacing:2.992640pt;}
.ws224{word-spacing:2.995200pt;}
.ws254{word-spacing:3.012710pt;}
.ws222{word-spacing:3.014400pt;}
.ws223{word-spacing:3.019200pt;}
.ws44{word-spacing:3.028630pt;}
.ws225{word-spacing:3.028800pt;}
.ws221{word-spacing:3.043200pt;}
.ws16c{word-spacing:3.056768pt;}
.ws220{word-spacing:3.057600pt;}
.ws20c{word-spacing:3.060531pt;}
.ws19c{word-spacing:3.067456pt;}
.ws245{word-spacing:3.108352pt;}
.ws23{word-spacing:3.156173pt;}
.ws29{word-spacing:3.188032pt;}
.ws1ad{word-spacing:3.199987pt;}
.ws1ae{word-spacing:3.219226pt;}
.ws1f2{word-spacing:3.238464pt;}
.ws97{word-spacing:3.241166pt;}
.ws176{word-spacing:3.243808pt;}
.ws98{word-spacing:3.294300pt;}
.ws178{word-spacing:3.297248pt;}
.ws234{word-spacing:3.299635pt;}
.ws177{word-spacing:3.334656pt;}
.wsc0{word-spacing:3.347434pt;}
.wsdd{word-spacing:3.400567pt;}
.ws135{word-spacing:3.478944pt;}
.wsb6{word-spacing:3.506835pt;}
.wsb7{word-spacing:3.559969pt;}
.ws15a{word-spacing:3.596512pt;}
.ws159{word-spacing:3.612544pt;}
.wsf1{word-spacing:3.666237pt;}
.ws1d0{word-spacing:3.671328pt;}
.wsa6{word-spacing:3.719371pt;}
.wsa7{word-spacing:3.737743pt;}
.wsbb{word-spacing:3.753429pt;}
.ws7c{word-spacing:3.772505pt;}
.ws25{word-spacing:3.777843pt;}
.ws7d{word-spacing:3.794945pt;}
.ws174{word-spacing:3.890432pt;}
.ws138{word-spacing:3.906464pt;}
.wsa8{word-spacing:3.931906pt;}
.ws18f{word-spacing:3.933184pt;}
.wsa9{word-spacing:3.936435pt;}
.ws107{word-spacing:3.938528pt;}
.ws191{word-spacing:3.949216pt;}
.ws18e{word-spacing:3.959904pt;}
.ws139{word-spacing:3.965248pt;}
.ws106{word-spacing:3.970592pt;}
.ws175{word-spacing:4.018688pt;}
.ws3f{word-spacing:4.038174pt;}
.ws192{word-spacing:4.050752pt;}
.wse9{word-spacing:4.091308pt;}
.wsbc{word-spacing:4.144442pt;}
.wsbd{word-spacing:4.155998pt;}
.wsdc{word-spacing:4.197575pt;}
.ws186{word-spacing:4.216416pt;}
.wsf0{word-spacing:4.229246pt;}
.ws40{word-spacing:4.250709pt;}
.ws18c{word-spacing:4.275200pt;}
.ws18d{word-spacing:4.339328pt;}
.ws1a9{word-spacing:4.341466pt;}
.ws13a{word-spacing:4.478272pt;}
.wsfc{word-spacing:4.521024pt;}
.ws260{word-spacing:4.542976pt;}
.ws124{word-spacing:4.574464pt;}
.ws190{word-spacing:4.579808pt;}
.ws125{word-spacing:4.585152pt;}
.ws1ac{word-spacing:4.617216pt;}
.wsb1{word-spacing:4.622646pt;}
.wsb0{word-spacing:4.675780pt;}
.ws13b{word-spacing:4.692032pt;}
.ws203{word-spacing:4.728914pt;}
.ws1ab{word-spacing:4.732646pt;}
.ws239{word-spacing:4.782080pt;}
.ws55{word-spacing:4.835182pt;}
.ws1d1{word-spacing:4.868384pt;}
.ws49{word-spacing:4.941450pt;}
.ws1d2{word-spacing:4.948544pt;}
.wse8{word-spacing:4.994583pt;}
.ws13f{word-spacing:5.119552pt;}
.ws13e{word-spacing:5.140928pt;}
.ws1a0{word-spacing:5.162304pt;}
.ws24a{word-spacing:5.164646pt;}
.ws140{word-spacing:5.199712pt;}
.wsf4{word-spacing:5.207119pt;}
.ws249{word-spacing:5.212467pt;}
.wsf7{word-spacing:5.217481pt;}
.wsf6{word-spacing:5.226257pt;}
.wsf5{word-spacing:5.227893pt;}
.ws141{word-spacing:5.231776pt;}
.ws269{word-spacing:5.260288pt;}
.ws65{word-spacing:5.311917pt;}
.ws33{word-spacing:5.313387pt;}
.ws60{word-spacing:5.317250pt;}
.ws3e{word-spacing:5.366521pt;}
.ws16{word-spacing:5.393072pt;}
.ws75{word-spacing:5.444807pt;}
.ws1c6{word-spacing:5.450880pt;}
.ws207{word-spacing:5.451571pt;}
.ws74{word-spacing:5.464654pt;}
.ws17{word-spacing:5.467459pt;}
.ws5c{word-spacing:5.472788pt;}
.ws179{word-spacing:5.482944pt;}
.ws76{word-spacing:5.525922pt;}
.ws77{word-spacing:5.579056pt;}
.ws1ca{word-spacing:5.595034pt;}
.ws194{word-spacing:5.621888pt;}
.ws193{word-spacing:5.707392pt;}
.ws261{word-spacing:5.738496pt;}
.ws127{word-spacing:5.798240pt;}
.ws1e2{word-spacing:5.803584pt;}
.ws1c5{word-spacing:5.809997pt;}
.wscd{word-spacing:5.843733pt;}
.ws14a{word-spacing:5.851680pt;}
.ws149{word-spacing:5.862368pt;}
.ws126{word-spacing:5.883744pt;}
.ws119{word-spacing:6.161632pt;}
.ws1d3{word-spacing:6.172320pt;}
.ws189{word-spacing:6.183008pt;}
.ws18a{word-spacing:6.289888pt;}
.ws208{word-spacing:6.407987pt;}
.ws103{word-spacing:6.418144pt;}
.ws1f7{word-spacing:6.487616pt;}
.ws102{word-spacing:6.503648pt;}
.ws248{word-spacing:6.551450pt;}
.ws1f8{word-spacing:6.615872pt;}
.ws163{word-spacing:6.907403pt;}
.wsa4{word-spacing:6.960537pt;}
.ws166{word-spacing:7.139584pt;}
.ws1b1{word-spacing:7.426022pt;}
.wsb8{word-spacing:7.438741pt;}
.ws1b2{word-spacing:7.438848pt;}
.ws171{word-spacing:7.454880pt;}
.ws170{word-spacing:7.470912pt;}
.wsb9{word-spacing:7.491875pt;}
.wsef{word-spacing:7.518135pt;}
.wsee{word-spacing:7.545009pt;}
.ws14{word-spacing:7.699075pt;}
.ws209{word-spacing:7.746970pt;}
.ws1e7{word-spacing:8.090816pt;}
.ws1e8{word-spacing:8.197696pt;}
.ws16d{word-spacing:8.737440pt;}
.ws16e{word-spacing:8.774848pt;}
.ws120{word-spacing:9.298560pt;}
.ws122{word-spacing:9.410784pt;}
.ws121{word-spacing:9.421472pt;}
.ws145{word-spacing:9.683328pt;}
.ws146{word-spacing:9.795552pt;}
.ws16a{word-spacing:9.982592pt;}
.ws165{word-spacing:10.325056pt;}
.wsf9{word-spacing:10.329312pt;}
.ws168{word-spacing:10.345984pt;}
.ws169{word-spacing:10.527680pt;}
.ws255{word-spacing:12.385587pt;}
.ws1a8{word-spacing:12.390067pt;}
.wsd{word-spacing:13.761632pt;}
.ws8{word-spacing:13.763148pt;}
.ws158{word-spacing:14.134880pt;}
.ws11{word-spacing:14.348669pt;}
.ws12{word-spacing:14.356730pt;}
.ws13{word-spacing:15.732893pt;}
.ws1{word-spacing:23.805969pt;}
.ws15{word-spacing:24.399002pt;}
.ws67{word-spacing:313.646148pt;}
.wsd1{word-spacing:356.528245pt;}
.ws8d{word-spacing:396.243149pt;}
.ws64{word-spacing:407.855215pt;}
.ws5f{word-spacing:467.198199pt;}
.ws61{word-spacing:513.643213pt;}
.ws66{word-spacing:544.883482pt;}
.ws85{word-spacing:619.614106pt;}
.ws8e{word-spacing:634.486374pt;}
.ws88{word-spacing:668.200038pt;}
.ws8f{word-spacing:677.190349pt;}
.ws69{word-spacing:692.779930pt;}
.ws6d{word-spacing:710.918835pt;}
.ws87{word-spacing:759.394304pt;}
.ws80{word-spacing:767.523840pt;}
.ws63{word-spacing:781.716523pt;}
.ws8c{word-spacing:803.150336pt;}
.ws83{word-spacing:814.244762pt;}
.ws82{word-spacing:821.513523pt;}
.ws5e{word-spacing:836.083575pt;}
.ws62{word-spacing:847.039215pt;}
.ws6e{word-spacing:866.449613pt;}
.ws8b{word-spacing:888.175718pt;}
.ws8a{word-spacing:889.514701pt;}
.ws6a{word-spacing:894.473626pt;}
.ws89{word-spacing:922.176307pt;}
.ws70{word-spacing:935.787554pt;}
.ws6f{word-spacing:940.406519pt;}
.ws6b{word-spacing:941.745382pt;}
.ws72{word-spacing:971.366613pt;}
.ws5d{word-spacing:978.926933pt;}
.ws86{word-spacing:991.181722pt;}
.ws81{word-spacing:992.568525pt;}
.ws71{word-spacing:997.551565pt;}
.ws73{word-spacing:1006.852523pt;}
.ws84{word-spacing:1008.540672pt;}
.ws91{word-spacing:1019.395994pt;}
.ws90{word-spacing:1051.196826pt;}
._23{margin-left:-6.854269pt;}
._0{margin-left:-5.894051pt;}
._2{margin-left:-4.294833pt;}
._5{margin-left:-2.752326pt;}
._1{margin-left:-1.597869pt;}
._4{width:0.969929pt;}
._3{width:2.667103pt;}
._26{width:4.573398pt;}
._8{width:9.861670pt;}
._6{width:11.530016pt;}
._e{width:12.596579pt;}
._14{width:13.818658pt;}
._9{width:14.728806pt;}
._c{width:16.475351pt;}
._15{width:17.408864pt;}
._d{width:18.490586pt;}
._2c{width:19.560969pt;}
._13{width:20.566659pt;}
._17{width:21.458421pt;}
._10{width:22.475626pt;}
._16{width:24.170752pt;}
._a{width:25.357117pt;}
._b{width:26.444902pt;}
._24{width:27.648655pt;}
._7{width:29.011008pt;}
._2d{width:31.189580pt;}
._f{width:33.049265pt;}
._22{width:38.256429pt;}
._25{width:39.319061pt;}
._2f{width:54.993920pt;}
._2e{width:78.904320pt;}
._1e{width:272.796067pt;}
._11{width:346.000524pt;}
._1c{width:355.324894pt;}
._28{width:360.410048pt;}
._1d{width:504.338443pt;}
._1f{width:588.456482pt;}
._20{width:671.643136pt;}
._1b{width:683.407053pt;}
._19{width:737.205453pt;}
._1a{width:809.319219pt;}
._18{width:888.653926pt;}
._21{width:1148.081766pt;}
._2a{width:2087.610560pt;}
._27{width:2108.737344pt;}
._29{width:2123.638276pt;}
._12{width:2144.891610pt;}
._2b{width:2505.132672pt;}
.fs12{font-size:29.440000pt;}
.fs7{font-size:31.880533pt;}
.fs10{font-size:32.000000pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:37.276537pt;}
.fsa{font-size:38.755733pt;}
.fs3{font-size:40.381867pt;}
.fs4{font-size:41.988267pt;}
.fsb{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fse{font-size:42.560000pt;}
.fs9{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fsd{font-size:49.829333pt;}
.fs13{font-size:51.072000pt;}
.fs1{font-size:53.133867pt;}
.fsf{font-size:53.440000pt;}
.fsc{font-size:55.365867pt;}
.fs15{font-size:57.600000pt;}
.fs14{font-size:64.128000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:97.430720pt;}
.y2cb{bottom:-664.131600pt;}
.y24f{bottom:-603.622267pt;}
.y2e0{bottom:-602.212400pt;}
.y2df{bottom:-586.772000pt;}
.y2de{bottom:-571.412000pt;}
.y2dd{bottom:-556.052000pt;}
.y2dc{bottom:-540.692000pt;}
.y273{bottom:-530.655515pt;}
.y2db{bottom:-525.332000pt;}
.y272{bottom:-513.536011pt;}
.y2da{bottom:-509.891600pt;}
.y271{bottom:-496.496667pt;}
.y2d9{bottom:-494.531600pt;}
.y270{bottom:-479.377163pt;}
.y2d8{bottom:-479.171600pt;}
.y26f{bottom:-462.337819pt;}
.y2d7{bottom:-459.491600pt;}
.y26e{bottom:-445.218315pt;}
.y1e8{bottom:-443.056933pt;}
.y26d{bottom:-428.098811pt;}
.y2d6{bottom:-426.772400pt;}
.y171{bottom:-412.204933pt;}
.y2d5{bottom:-411.332000pt;}
.y26c{bottom:-411.059467pt;}
.y2d4{bottom:-395.891600pt;}
.y26b{bottom:-393.939963pt;}
.y214{bottom:-392.807541pt;}
.y2d3{bottom:-380.531600pt;}
.y26a{bottom:-376.900619pt;}
.y213{bottom:-375.688037pt;}
.y2d2{bottom:-365.171600pt;}
.y269{bottom:-359.781115pt;}
.y212{bottom:-358.568533pt;}
.y194{bottom:-355.157197pt;}
.y2d1{bottom:-345.251600pt;}
.y268{bottom:-342.661611pt;}
.y211{bottom:-341.529189pt;}
.y193{bottom:-338.117853pt;}
.y267{bottom:-325.622267pt;}
.y266{bottom:-325.616931pt;}
.y210{bottom:-324.409685pt;}
.y192{bottom:-320.998349pt;}
.y2e7{bottom:-313.878267pt;}
.y20f{bottom:-307.370341pt;}
.y265{bottom:-304.497443pt;}
.y191{bottom:-303.878845pt;}
.y20e{bottom:-290.250837pt;}
.y1af{bottom:-290.023600pt;}
.y190{bottom:-286.839501pt;}
.y20d{bottom:-273.131333pt;}
.y264{bottom:-271.378003pt;}
.y18f{bottom:-269.719997pt;}
.y22f{bottom:-267.738720pt;}
.y20c{bottom:-256.091989pt;}
.y263{bottom:-254.338659pt;}
.y18e{bottom:-252.680653pt;}
.y2fc{bottom:-251.959067pt;}
.y20b{bottom:-238.972485pt;}
.y262{bottom:-237.219155pt;}
.y2fb{bottom:-236.518667pt;}
.y18d{bottom:-235.561149pt;}
.y1ca{bottom:-232.261331pt;}
.y20a{bottom:-221.933141pt;}
.y2fa{bottom:-221.158667pt;}
.y261{bottom:-220.179811pt;}
.y18c{bottom:-218.441645pt;}
.y1c9{bottom:-215.141827pt;}
.y2f9{bottom:-205.798667pt;}
.y209{bottom:-204.813637pt;}
.y260{bottom:-203.060307pt;}
.y18b{bottom:-201.402301pt;}
.y1c8{bottom:-198.102483pt;}
.y2f8{bottom:-190.438667pt;}
.y208{bottom:-187.694133pt;}
.y25f{bottom:-185.940803pt;}
.y240{bottom:-185.177338pt;}
.y18a{bottom:-184.282797pt;}
.y1c7{bottom:-180.982979pt;}
.y2f7{bottom:-175.078667pt;}
.y207{bottom:-170.654789pt;}
.y25e{bottom:-168.901459pt;}
.y189{bottom:-167.163293pt;}
.y23f{bottom:-164.633933pt;}
.y1c6{bottom:-163.863475pt;}
.y2f6{bottom:-159.638267pt;}
.y206{bottom:-153.535285pt;}
.y25d{bottom:-151.781955pt;}
.y188{bottom:-150.123949pt;}
.y1c5{bottom:-146.824131pt;}
.y2f5{bottom:-144.278267pt;}
.y23e{bottom:-144.186720pt;}
.y205{bottom:-136.415781pt;}
.y25c{bottom:-134.741275pt;}
.y187{bottom:-133.004445pt;}
.y2f4{bottom:-128.918267pt;}
.y1c4{bottom:-125.783467pt;}
.y204{bottom:-119.376437pt;}
.y25b{bottom:-117.621771pt;}
.y186{bottom:-115.965101pt;}
.y2f3{bottom:-109.238267pt;}
.y23d{bottom:-104.923680pt;}
.y203{bottom:-102.256933pt;}
.y25a{bottom:-100.502267pt;}
.y185{bottom:-98.845597pt;}
.y1c3{bottom:-92.984400pt;}
.y23c{bottom:-86.395200pt;}
.y184{bottom:-77.804933pt;}
.y1c2{bottom:-77.544000pt;}
.y2f2{bottom:-76.519067pt;}
.y202{bottom:-69.537333pt;}
.y23b{bottom:-67.866720pt;}
.y259{bottom:-67.861867pt;}
.y1c1{bottom:-62.184000pt;}
.y2f1{bottom:-61.078667pt;}
.y201{bottom:-54.096933pt;}
.y2d0{bottom:-53.891200pt;}
.y258{bottom:-52.342267pt;}
.y23a{bottom:-49.434720pt;}
.y1c0{bottom:-46.824000pt;}
.y2f0{bottom:-45.638267pt;}
.y183{bottom:-45.085333pt;}
.y200{bottom:-38.736933pt;}
.y2cf{bottom:-38.371600pt;}
.y257{bottom:-36.982267pt;}
.y1bf{bottom:-31.383600pt;}
.y239{bottom:-31.002720pt;}
.y2ef{bottom:-30.278267pt;}
.y182{bottom:-27.484933pt;}
.y1ff{bottom:-23.376933pt;}
.y2ce{bottom:-23.011600pt;}
.y256{bottom:-21.622267pt;}
.y2ee{bottom:-14.918267pt;}
.y1be{bottom:-11.458248pt;}
.y238{bottom:-6.997478pt;}
.y181{bottom:-5.959757pt;}
.y1fe{bottom:-3.377349pt;}
.y2cd{bottom:-3.090824pt;}
.y255{bottom:-1.699491pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.044747pt;}
.y2ed{bottom:5.001733pt;}
.y9{bottom:12.578910pt;}
.y2{bottom:14.848190pt;}
.y53{bottom:28.346667pt;}
.y28f{bottom:79.136000pt;}
.y1e4{bottom:82.110667pt;}
.y16d{bottom:82.642667pt;}
.y24b{bottom:91.097333pt;}
.y24{bottom:91.398667pt;}
.y130{bottom:92.449333pt;}
.yfa{bottom:92.570667pt;}
.y2b7{bottom:94.840000pt;}
.y28e{bottom:95.873333pt;}
.y90{bottom:97.214667pt;}
.y323{bottom:97.256000pt;}
.y52{bottom:98.130667pt;}
.y1e3{bottom:98.848000pt;}
.y16c{bottom:99.380000pt;}
.yc3{bottom:101.564000pt;}
.y1aa{bottom:104.330667pt;}
.y23{bottom:107.298667pt;}
.y24a{bottom:107.834667pt;}
.y1ab{bottom:109.152000pt;}
.y12f{bottom:109.186667pt;}
.yf8{bottom:109.308000pt;}
.y2b6{bottom:111.577333pt;}
.y322{bottom:112.598667pt;}
.y28d{bottom:112.610667pt;}
.y8f{bottom:113.952000pt;}
.yf9{bottom:114.130667pt;}
.y51{bottom:114.868000pt;}
.y1e2{bottom:115.585333pt;}
.y16b{bottom:116.117333pt;}
.yc2{bottom:118.301333pt;}
.y1a8{bottom:121.068000pt;}
.y357{bottom:122.736000pt;}
.y22{bottom:123.200000pt;}
.y249{bottom:124.572000pt;}
.y1a9{bottom:125.889333pt;}
.y12e{bottom:125.924000pt;}
.yf7{bottom:126.045333pt;}
.y321{bottom:127.941333pt;}
.y2b5{bottom:128.314667pt;}
.y28c{bottom:129.348000pt;}
.y8e{bottom:130.689333pt;}
.y50{bottom:131.605333pt;}
.y1e1{bottom:132.322667pt;}
.y16a{bottom:132.854667pt;}
.yc1{bottom:135.038667pt;}
.y1a6{bottom:137.805333pt;}
.y356{bottom:138.078667pt;}
.y248{bottom:138.877333pt;}
.y21{bottom:139.100000pt;}
.y247{bottom:141.309333pt;}
.y1a7{bottom:142.626667pt;}
.y12d{bottom:142.661333pt;}
.yf5{bottom:142.782667pt;}
.y320{bottom:143.284000pt;}
.y2b4{bottom:145.052000pt;}
.y28b{bottom:146.085333pt;}
.y8d{bottom:147.426667pt;}
.yf6{bottom:147.605333pt;}
.y4f{bottom:148.342667pt;}
.y1e0{bottom:149.060000pt;}
.y169{bottom:149.592000pt;}
.yc0{bottom:151.776000pt;}
.y355{bottom:153.421333pt;}
.y1a5{bottom:154.541333pt;}
.y20{bottom:155.000000pt;}
.y31f{bottom:158.626667pt;}
.y12c{bottom:159.398667pt;}
.yf4{bottom:159.520000pt;}
.y2b3{bottom:161.789333pt;}
.y246{bottom:162.032000pt;}
.y28a{bottom:162.821333pt;}
.y8c{bottom:164.164000pt;}
.y4e{bottom:165.080000pt;}
.y1df{bottom:165.797333pt;}
.y168{bottom:166.329333pt;}
.ybf{bottom:168.513333pt;}
.y354{bottom:168.762667pt;}
.y1f{bottom:170.901333pt;}
.y1a3{bottom:171.278667pt;}
.y31e{bottom:173.968000pt;}
.y1a4{bottom:176.101333pt;}
.y12b{bottom:176.136000pt;}
.y2b2{bottom:178.526667pt;}
.y289{bottom:179.558667pt;}
.yf3{bottom:180.242667pt;}
.y8b{bottom:180.901333pt;}
.y4d{bottom:181.817333pt;}
.y1de{bottom:182.534667pt;}
.y167{bottom:183.066667pt;}
.y353{bottom:184.105333pt;}
.ybe{bottom:185.250667pt;}
.y1e{bottom:186.801333pt;}
.y22b{bottom:187.084000pt;}
.y1a2{bottom:188.016000pt;}
.y31d{bottom:189.310667pt;}
.y12a{bottom:192.873333pt;}
.y245{bottom:193.064000pt;}
.y2b1{bottom:195.264000pt;}
.y288{bottom:196.296000pt;}
.y8a{bottom:197.638667pt;}
.y4c{bottom:198.554667pt;}
.y1dd{bottom:199.272000pt;}
.y352{bottom:199.448000pt;}
.y166{bottom:199.804000pt;}
.ybd{bottom:201.988000pt;}
.y1d{bottom:202.701333pt;}
.y22a{bottom:203.821333pt;}
.y31c{bottom:204.653333pt;}
.y1a1{bottom:204.753333pt;}
.y129{bottom:209.610667pt;}
.yf2{bottom:210.130667pt;}
.y244{bottom:210.160000pt;}
.y2b0{bottom:212.001333pt;}
.y287{bottom:213.033333pt;}
.y89{bottom:214.376000pt;}
.y351{bottom:214.790667pt;}
.y4b{bottom:215.292000pt;}
.y1dc{bottom:216.009333pt;}
.y165{bottom:216.541333pt;}
.ybc{bottom:218.725333pt;}
.y31b{bottom:219.996000pt;}
.y229{bottom:220.558667pt;}
.y1a0{bottom:221.490667pt;}
.y2e3{bottom:225.480000pt;}
.y156{bottom:226.348000pt;}
.yf1{bottom:226.868000pt;}
.y243{bottom:227.254667pt;}
.y2af{bottom:228.738667pt;}
.y286{bottom:229.770667pt;}
.y350{bottom:230.133333pt;}
.y128{bottom:230.333333pt;}
.y88{bottom:231.113333pt;}
.y4a{bottom:232.029333pt;}
.y1db{bottom:232.746667pt;}
.y164{bottom:233.278667pt;}
.y31a{bottom:235.338667pt;}
.ybb{bottom:235.462667pt;}
.y228{bottom:237.296000pt;}
.y19f{bottom:238.228000pt;}
.y2e2{bottom:242.576000pt;}
.y155{bottom:243.085333pt;}
.yf0{bottom:243.605333pt;}
.y242{bottom:244.350667pt;}
.y2ae{bottom:245.476000pt;}
.y285{bottom:246.508000pt;}
.y87{bottom:247.850667pt;}
.y127{bottom:248.265333pt;}
.y49{bottom:248.766667pt;}
.y1da{bottom:249.484000pt;}
.y163{bottom:250.016000pt;}
.y319{bottom:250.681333pt;}
.yba{bottom:252.200000pt;}
.y227{bottom:254.033333pt;}
.y19e{bottom:254.965333pt;}
.y2e1{bottom:259.672000pt;}
.y154{bottom:259.822667pt;}
.yef{bottom:260.342667pt;}
.y34f{bottom:260.818667pt;}
.y241{bottom:261.446667pt;}
.y86{bottom:262.156000pt;}
.y2ad{bottom:262.213333pt;}
.y284{bottom:263.245333pt;}
.y85{bottom:264.588000pt;}
.y48{bottom:265.502667pt;}
.y318{bottom:266.024000pt;}
.y1d9{bottom:266.221333pt;}
.y162{bottom:266.753333pt;}
.yb9{bottom:268.937333pt;}
.y226{bottom:270.770667pt;}
.y19d{bottom:271.702667pt;}
.y1c{bottom:273.154667pt;}
.y34e{bottom:276.161333pt;}
.y153{bottom:276.560000pt;}
.yee{bottom:277.080000pt;}
.y126{bottom:278.153333pt;}
.y84{bottom:278.898667pt;}
.y2ac{bottom:278.950667pt;}
.y2c8{bottom:279.609333pt;}
.y283{bottom:279.982667pt;}
.y83{bottom:281.325333pt;}
.y317{bottom:281.366667pt;}
.y22c{bottom:281.384000pt;}
.y47{bottom:282.240000pt;}
.y1d8{bottom:282.958667pt;}
.y161{bottom:283.490667pt;}
.yb8{bottom:285.674667pt;}
.y225{bottom:287.508000pt;}
.y19c{bottom:288.440000pt;}
.y254{bottom:288.780309pt;}
.y1b{bottom:289.054667pt;}
.y34d{bottom:291.502667pt;}
.y152{bottom:293.296000pt;}
.yed{bottom:293.817333pt;}
.y125{bottom:294.890667pt;}
.y82{bottom:295.636000pt;}
.y2ab{bottom:295.688000pt;}
.y2ec{bottom:296.362133pt;}
.y2cc{bottom:296.588672pt;}
.y316{bottom:296.708000pt;}
.y282{bottom:296.720000pt;}
.y81{bottom:298.062667pt;}
.y46{bottom:298.977333pt;}
.y1d7{bottom:299.696000pt;}
.y160{bottom:300.228000pt;}
.y224{bottom:304.245333pt;}
.y1a{bottom:304.954667pt;}
.y19b{bottom:305.177333pt;}
.y180{bottom:305.799851pt;}
.y253{bottom:305.899813pt;}
.yb7{bottom:306.396000pt;}
.y34c{bottom:306.845333pt;}
.yec{bottom:310.554667pt;}
.y124{bottom:311.628000pt;}
.y2eb{bottom:311.881733pt;}
.y315{bottom:312.050667pt;}
.y2aa{bottom:312.425333pt;}
.y1fd{bottom:312.702883pt;}
.y281{bottom:313.457333pt;}
.y80{bottom:314.800000pt;}
.y45{bottom:315.714667pt;}
.y1d6{bottom:316.433333pt;}
.y19{bottom:320.856000pt;}
.y15f{bottom:320.950667pt;}
.y223{bottom:320.982667pt;}
.y19a{bottom:321.914667pt;}
.y34b{bottom:322.188000pt;}
.y17f{bottom:322.839195pt;}
.y252{bottom:323.019317pt;}
.y151{bottom:323.981333pt;}
.y2ea{bottom:327.241733pt;}
.yeb{bottom:327.292000pt;}
.y314{bottom:327.393333pt;}
.y123{bottom:328.365333pt;}
.y2a9{bottom:329.162667pt;}
.y1fc{bottom:329.743563pt;}
.y280{bottom:330.194667pt;}
.y7f{bottom:331.537333pt;}
.y44{bottom:332.452000pt;}
.y1d5{bottom:333.170667pt;}
.y34a{bottom:337.530667pt;}
.y222{bottom:337.720000pt;}
.y199{bottom:338.652000pt;}
.y17e{bottom:339.958699pt;}
.y251{bottom:340.058661pt;}
.y313{bottom:342.736000pt;}
.y2ca{bottom:343.948520pt;}
.yea{bottom:344.029333pt;}
.y122{bottom:345.102667pt;}
.y2a8{bottom:345.900000pt;}
.y1f9{bottom:346.862387pt;}
.y1fb{bottom:346.863067pt;}
.y27f{bottom:346.932000pt;}
.y2e9{bottom:347.162509pt;}
.y15e{bottom:347.997333pt;}
.yb6{bottom:348.002667pt;}
.y7e{bottom:348.274667pt;}
.y43{bottom:349.189333pt;}
.y1d4{bottom:349.908000pt;}
.y1fa{bottom:350.223067pt;}
.y2c9{bottom:352.508400pt;}
.y349{bottom:352.873333pt;}
.y221{bottom:354.457333pt;}
.y150{bottom:354.666667pt;}
.y18{bottom:354.688000pt;}
.y198{bottom:355.389333pt;}
.y17d{bottom:357.078203pt;}
.y250{bottom:357.178165pt;}
.y312{bottom:358.078667pt;}
.ye9{bottom:360.766667pt;}
.y121{bottom:361.840000pt;}
.y7d{bottom:362.585333pt;}
.yb5{bottom:362.614667pt;}
.y2a7{bottom:362.637333pt;}
.y27e{bottom:363.669333pt;}
.y1f8{bottom:363.903067pt;}
.y1f6{bottom:363.903563pt;}
.y7c{bottom:365.012000pt;}
.y15d{bottom:365.093333pt;}
.y42{bottom:365.926667pt;}
.y1d3{bottom:366.645333pt;}
.y1f7{bottom:367.263200pt;}
.y348{bottom:368.216000pt;}
.y17{bottom:370.589333pt;}
.y220{bottom:371.194667pt;}
.y14f{bottom:371.404000pt;}
.y197{bottom:372.126667pt;}
.y311{bottom:373.421333pt;}
.y17c{bottom:374.118883pt;}
.yb4{bottom:377.226667pt;}
.ye8{bottom:377.504000pt;}
.y120{bottom:378.577333pt;}
.y2a6{bottom:379.374667pt;}
.y27d{bottom:380.406667pt;}
.y1f5{bottom:381.023067pt;}
.y1f3{bottom:381.024219pt;}
.y7b{bottom:381.749333pt;}
.y15c{bottom:382.188000pt;}
.y41{bottom:382.664000pt;}
.y1d2{bottom:383.382667pt;}
.y347{bottom:383.558667pt;}
.y1f4{bottom:384.383067pt;}
.y16{bottom:386.489333pt;}
.y21f{bottom:387.932000pt;}
.y14e{bottom:388.141333pt;}
.y310{bottom:388.764000pt;}
.y17b{bottom:391.238387pt;}
.yb3{bottom:391.838667pt;}
.y196{bottom:392.849333pt;}
.ye7{bottom:394.241333pt;}
.y11f{bottom:395.314667pt;}
.y2a5{bottom:396.112000pt;}
.y15b{bottom:396.953333pt;}
.y27c{bottom:397.144000pt;}
.y1f2{bottom:398.143723pt;}
.y7a{bottom:398.486667pt;}
.y346{bottom:398.901333pt;}
.y15a{bottom:399.284000pt;}
.y1d1{bottom:400.120000pt;}
.y40{bottom:403.386667pt;}
.y30f{bottom:404.106667pt;}
.y24e{bottom:404.457853pt;}
.y21e{bottom:404.669333pt;}
.y14d{bottom:404.878667pt;}
.yb2{bottom:406.450667pt;}
.y17a{bottom:408.357891pt;}
.ye6{bottom:410.978667pt;}
.y11e{bottom:412.052000pt;}
.y79{bottom:412.797333pt;}
.y2a4{bottom:412.848000pt;}
.y24d{bottom:413.017733pt;}
.y27b{bottom:413.881333pt;}
.y345{bottom:414.244000pt;}
.y1f1{bottom:415.183067pt;}
.y1ef{bottom:415.186795pt;}
.y78{bottom:415.224000pt;}
.y159{bottom:416.380000pt;}
.y15{bottom:418.330667pt;}
.y1f0{bottom:418.543067pt;}
.y30e{bottom:419.449333pt;}
.yb1{bottom:421.062667pt;}
.y21d{bottom:421.406667pt;}
.y14c{bottom:421.616000pt;}
.y195{bottom:423.881333pt;}
.y179{bottom:425.398571pt;}
.ye5{bottom:427.716000pt;}
.y11c{bottom:428.789333pt;}
.y77{bottom:429.534667pt;}
.y2a3{bottom:429.585333pt;}
.y1d0{bottom:429.956000pt;}
.y27a{bottom:430.618667pt;}
.y158{bottom:431.145333pt;}
.y76{bottom:431.961333pt;}
.y1ee{bottom:432.306299pt;}
.y157{bottom:433.476000pt;}
.y11d{bottom:433.610667pt;}
.y14{bottom:434.230667pt;}
.y30d{bottom:434.790667pt;}
.y21c{bottom:438.142667pt;}
.y14b{bottom:438.353333pt;}
.yb0{bottom:442.076000pt;}
.y178{bottom:442.518075pt;}
.y11b{bottom:443.100000pt;}
.y16e{bottom:443.817333pt;}
.ye4{bottom:444.453333pt;}
.y344{bottom:444.928000pt;}
.y11a{bottom:445.526667pt;}
.y2a2{bottom:446.322667pt;}
.y1cf{bottom:447.052000pt;}
.y279{bottom:447.356000pt;}
.y1bd{bottom:448.621408pt;}
.y75{bottom:448.698667pt;}
.y1ed{bottom:449.345643pt;}
.y30c{bottom:450.133333pt;}
.y21b{bottom:454.880000pt;}
.y14a{bottom:455.090667pt;}
.y177{bottom:459.557419pt;}
.y343{bottom:460.270667pt;}
.ye3{bottom:461.189333pt;}
.y2a1{bottom:463.060000pt;}
.yaf{bottom:463.608000pt;}
.y1ce{bottom:464.148000pt;}
.y74{bottom:465.436000pt;}
.y30b{bottom:465.476000pt;}
.y1bc{bottom:465.740912pt;}
.y13{bottom:466.070667pt;}
.y119{bottom:466.248000pt;}
.y1ec{bottom:466.465147pt;}
.y278{bottom:468.078667pt;}
.y3f{bottom:470.186667pt;}
.y21a{bottom:471.617333pt;}
.y149{bottom:471.828000pt;}
.y342{bottom:475.613333pt;}
.y176{bottom:476.676923pt;}
.ye2{bottom:477.926667pt;}
.yae{bottom:478.220000pt;}
.y2a0{bottom:479.797333pt;}
.y30a{bottom:480.818667pt;}
.y1cd{bottom:481.242667pt;}
.y12{bottom:481.972000pt;}
.y73{bottom:482.173333pt;}
.y1bb{bottom:482.781592pt;}
.y1eb{bottom:483.584651pt;}
.y219{bottom:488.354667pt;}
.y148{bottom:488.565333pt;}
.y341{bottom:490.956000pt;}
.yad{bottom:493.350667pt;}
.y175{bottom:493.796427pt;}
.ye1{bottom:494.664000pt;}
.y277{bottom:495.125333pt;}
.y1cc{bottom:496.008000pt;}
.y118{bottom:496.136000pt;}
.y309{bottom:496.161333pt;}
.y29f{bottom:496.534667pt;}
.y11{bottom:497.872000pt;}
.y1cb{bottom:498.338667pt;}
.y72{bottom:498.910667pt;}
.y1ba{bottom:499.901096pt;}
.y1ea{bottom:500.623995pt;}
.y3e{bottom:503.422667pt;}
.y147{bottom:505.302667pt;}
.y340{bottom:506.298667pt;}
.yac{bottom:507.962667pt;}
.y174{bottom:510.835771pt;}
.ye0{bottom:511.401333pt;}
.y308{bottom:511.504000pt;}
.y276{bottom:512.220000pt;}
.y117{bottom:512.873333pt;}
.y29e{bottom:513.272000pt;}
.y10{bottom:513.772000pt;}
.y71{bottom:515.648000pt;}
.y1b9{bottom:516.941776pt;}
.y1e9{bottom:517.743499pt;}
.y218{bottom:518.192000pt;}
.y1ac{bottom:518.276000pt;}
.y3d{bottom:518.381333pt;}
.y3c{bottom:520.717333pt;}
.y33f{bottom:521.641333pt;}
.y146{bottom:522.040000pt;}
.yab{bottom:523.093333pt;}
.y307{bottom:526.846667pt;}
.ydf{bottom:528.138667pt;}
.y275{bottom:529.316000pt;}
.y116{bottom:529.610667pt;}
.yf{bottom:529.673333pt;}
.y29d{bottom:530.009333pt;}
.y70{bottom:532.384000pt;}
.y1b8{bottom:534.061280pt;}
.y217{bottom:535.286667pt;}
.y33e{bottom:536.984000pt;}
.yaa{bottom:537.705333pt;}
.y3b{bottom:538.012000pt;}
.y145{bottom:538.777333pt;}
.y173{bottom:539.875067pt;}
.y172{bottom:539.875427pt;}
.y306{bottom:542.189333pt;}
.yde{bottom:544.876000pt;}
.ye{bottom:545.573333pt;}
.y114{bottom:546.348000pt;}
.y274{bottom:546.412000pt;}
.y29c{bottom:546.746667pt;}
.y6f{bottom:549.121333pt;}
.y115{bottom:551.170667pt;}
.y1b7{bottom:551.180784pt;}
.ya9{bottom:552.317333pt;}
.y33d{bottom:552.325333pt;}
.y216{bottom:552.382667pt;}
.y3a{bottom:555.308000pt;}
.y144{bottom:555.514667pt;}
.y305{bottom:557.530667pt;}
.yd{bottom:561.473333pt;}
.ydd{bottom:561.613333pt;}
.y113{bottom:563.085333pt;}
.y29b{bottom:563.484000pt;}
.y1e7{bottom:565.023187pt;}
.y6e{bottom:565.858667pt;}
.y24c{bottom:566.349333pt;}
.ya8{bottom:566.929333pt;}
.y33c{bottom:567.668000pt;}
.y1b6{bottom:568.220128pt;}
.y215{bottom:569.478667pt;}
.y39{bottom:572.602667pt;}
.y304{bottom:572.873333pt;}
.y1e6{bottom:573.583067pt;}
.y2c7{bottom:575.440000pt;}
.y143{bottom:576.236000pt;}
.yc{bottom:577.374667pt;}
.ydc{bottom:578.350667pt;}
.y112{bottom:579.822667pt;}
.y29a{bottom:580.221333pt;}
.ya7{bottom:581.540000pt;}
.y6d{bottom:582.596000pt;}
.y33b{bottom:583.010667pt;}
.y1b5{bottom:585.339632pt;}
.y303{bottom:588.216000pt;}
.y1e5{bottom:589.416000pt;}
.y38{bottom:589.897333pt;}
.y142{bottom:590.546667pt;}
.y141{bottom:592.973333pt;}
.yb{bottom:593.274667pt;}
.ydb{bottom:595.088000pt;}
.y170{bottom:595.875187pt;}
.y110{bottom:596.560000pt;}
.y299{bottom:596.958667pt;}
.y33a{bottom:598.353333pt;}
.y6c{bottom:599.333333pt;}
.y111{bottom:601.382667pt;}
.y1b4{bottom:602.378976pt;}
.ya6{bottom:602.554667pt;}
.y16f{bottom:604.435067pt;}
.y37{bottom:607.193333pt;}
.y302{bottom:607.544000pt;}
.y2c6{bottom:608.117333pt;}
.y140{bottom:609.710667pt;}
.yda{bottom:611.825333pt;}
.y8{bottom:613.160048pt;}
.y10f{bottom:613.297333pt;}
.y298{bottom:613.696000pt;}
.y6b{bottom:616.070667pt;}
.y1b3{bottom:619.498480pt;}
.y36{bottom:622.152000pt;}
.y13f{bottom:624.021333pt;}
.y35{bottom:624.488000pt;}
.y13e{bottom:626.448000pt;}
.yd9{bottom:628.562667pt;}
.y339{bottom:629.038667pt;}
.y10e{bottom:630.034667pt;}
.y297{bottom:630.433333pt;}
.ya5{bottom:630.661333pt;}
.y2c5{bottom:631.709333pt;}
.y6a{bottom:632.808000pt;}
.y301{bottom:634.590667pt;}
.y1b2{bottom:636.617984pt;}
.y34{bottom:641.784000pt;}
.y13d{bottom:643.185333pt;}
.y338{bottom:644.381333pt;}
.yd8{bottom:645.300000pt;}
.y10d{bottom:646.772000pt;}
.y2e8{bottom:646.842005pt;}
.y296{bottom:647.170667pt;}
.y2c4{bottom:647.330667pt;}
.y69{bottom:649.545333pt;}
.y300{bottom:651.686667pt;}
.y1b1{bottom:653.657328pt;}
.y33{bottom:656.742667pt;}
.y32{bottom:656.748000pt;}
.y13c{bottom:657.496000pt;}
.y31{bottom:659.078667pt;}
.y337{bottom:659.724000pt;}
.y13b{bottom:659.922667pt;}
.ya4{bottom:662.313333pt;}
.y10c{bottom:663.509333pt;}
.y295{bottom:663.908000pt;}
.y68{bottom:666.282667pt;}
.y2ff{bottom:668.782667pt;}
.y1b0{bottom:670.776832pt;}
.y2c3{bottom:670.921333pt;}
.y30{bottom:674.042667pt;}
.y336{bottom:675.066667pt;}
.y2f{bottom:676.373333pt;}
.y13a{bottom:676.660000pt;}
.ya3{bottom:679.050667pt;}
.y10b{bottom:680.246667pt;}
.y294{bottom:680.645333pt;}
.y67{bottom:683.020000pt;}
.yd7{bottom:685.710667pt;}
.y2fe{bottom:685.878667pt;}
.y335{bottom:690.408000pt;}
.y139{bottom:690.970667pt;}
.y138{bottom:693.397333pt;}
.y2e{bottom:693.669333pt;}
.y2e6{bottom:694.201853pt;}
.y2c2{bottom:694.513333pt;}
.ya2{bottom:695.788000pt;}
.y10a{bottom:696.984000pt;}
.y293{bottom:697.382667pt;}
.y66{bottom:699.757333pt;}
.yd6{bottom:700.322667pt;}
.y2e5{bottom:702.761733pt;}
.y2fd{bottom:702.973333pt;}
.y334{bottom:705.750667pt;}
.ya1{bottom:712.525333pt;}
.y109{bottom:713.721333pt;}
.y137{bottom:714.120000pt;}
.yd5{bottom:714.934667pt;}
.y65{bottom:716.494667pt;}
.y1ae{bottom:718.056520pt;}
.y2c1{bottom:718.105333pt;}
.y333{bottom:721.093333pt;}
.y2e4{bottom:722.910667pt;}
.y1ad{bottom:726.616400pt;}
.y2d{bottom:727.966667pt;}
.ya0{bottom:729.262667pt;}
.yd4{bottom:729.546667pt;}
.y108{bottom:730.458667pt;}
.y136{bottom:730.857333pt;}
.y64{bottom:733.232000pt;}
.y2c0{bottom:733.726667pt;}
.y332{bottom:736.436000pt;}
.y237{bottom:741.706541pt;}
.y2c{bottom:742.313333pt;}
.yd3{bottom:744.158667pt;}
.y135{bottom:745.168000pt;}
.y107{bottom:747.196000pt;}
.y134{bottom:747.594667pt;}
.y2bf{bottom:749.348000pt;}
.y63{bottom:749.969333pt;}
.y9f{bottom:749.985333pt;}
.y331{bottom:751.778667pt;}
.yd2{bottom:758.770667pt;}
.y2b{bottom:760.517333pt;}
.y236{bottom:762.153754pt;}
.y106{bottom:763.933333pt;}
.y133{bottom:764.332000pt;}
.y2be{bottom:764.969333pt;}
.y62{bottom:766.706667pt;}
.y330{bottom:767.121333pt;}
.y9e{bottom:767.918667pt;}
.y2a{bottom:771.005333pt;}
.yd1{bottom:773.382667pt;}
.y105{bottom:778.244000pt;}
.y104{bottom:780.670667pt;}
.y132{bottom:781.069333pt;}
.y32f{bottom:782.464000pt;}
.y235{bottom:782.697158pt;}
.y61{bottom:783.444000pt;}
.y29{bottom:785.352000pt;}
.yd0{bottom:787.993333pt;}
.y2bd{bottom:788.561333pt;}
.y28{bottom:789.209333pt;}
.y103{bottom:797.408000pt;}
.y9d{bottom:797.806667pt;}
.y27{bottom:799.698667pt;}
.y60{bottom:800.181333pt;}
.ycf{bottom:802.605333pt;}
.y234{bottom:803.144371pt;}
.y2bc{bottom:804.182667pt;}
.y9c{bottom:812.117333pt;}
.y32e{bottom:813.149333pt;}
.y26{bottom:814.045333pt;}
.y102{bottom:814.145333pt;}
.y9b{bottom:814.544000pt;}
.y5f{bottom:816.918667pt;}
.yce{bottom:817.217333pt;}
.y2bb{bottom:819.804000pt;}
.y233{bottom:823.687776pt;}
.y32d{bottom:828.490667pt;}
.y101{bottom:830.882667pt;}
.y9a{bottom:831.281333pt;}
.ycd{bottom:831.829333pt;}
.y25{bottom:832.248000pt;}
.y5e{bottom:833.656000pt;}
.y2ba{bottom:835.425333pt;}
.y32c{bottom:843.833333pt;}
.y232{bottom:844.231181pt;}
.ycc{bottom:846.441333pt;}
.y99{bottom:848.018667pt;}
.y5d{bottom:850.393333pt;}
.y2b9{bottom:851.046667pt;}
.y100{bottom:851.604000pt;}
.y32b{bottom:859.176000pt;}
.ycb{bottom:861.053333pt;}
.y231{bottom:864.678394pt;}
.y98{bottom:864.754667pt;}
.y2b8{bottom:866.668000pt;}
.y5c{bottom:867.130667pt;}
.y7{bottom:867.976000pt;}
.y32a{bottom:874.518667pt;}
.yca{bottom:875.665333pt;}
.y97{bottom:881.492000pt;}
.y5b{bottom:883.868000pt;}
.y6{bottom:884.713333pt;}
.y230{bottom:885.221798pt;}
.y329{bottom:889.861333pt;}
.yc9{bottom:890.277333pt;}
.y292{bottom:895.798667pt;}
.y96{bottom:898.229333pt;}
.y5a{bottom:900.605333pt;}
.yff{bottom:903.052000pt;}
.yc8{bottom:904.889333pt;}
.y328{bottom:905.204000pt;}
.y131{bottom:912.536000pt;}
.y95{bottom:914.966667pt;}
.y59{bottom:917.342667pt;}
.yc7{bottom:919.501333pt;}
.y327{bottom:920.546667pt;}
.y5{bottom:925.510667pt;}
.y94{bottom:931.704000pt;}
.y58{bottom:934.080000pt;}
.yc6{bottom:934.112000pt;}
.y326{bottom:935.889333pt;}
.yfe{bottom:936.526667pt;}
.y22e{bottom:941.957424pt;}
.y291{bottom:946.010667pt;}
.y93{bottom:948.441333pt;}
.y4{bottom:950.616000pt;}
.y57{bottom:950.817333pt;}
.y325{bottom:951.230667pt;}
.y22d{bottom:952.229280pt;}
.yfd{bottom:953.264000pt;}
.yc5{bottom:955.126667pt;}
.y290{bottom:962.752000pt;}
.y92{bottom:965.178667pt;}
.y324{bottom:966.573333pt;}
.y56{bottom:967.554667pt;}
.y3{bottom:975.722667pt;}
.yfb{bottom:979.485333pt;}
.yfc{bottom:979.489333pt;}
.y91{bottom:981.916000pt;}
.yc4{bottom:983.233333pt;}
.y55{bottom:984.290667pt;}
.y1{bottom:1014.377333pt;}
.y54{bottom:1043.020000pt;}
.h24{height:21.490625pt;}
.h2e{height:22.380134pt;}
.h8{height:22.673858pt;}
.h2b{height:23.031250pt;}
.hd{height:23.209028pt;}
.h1f{height:23.359375pt;}
.hb{height:27.076941pt;}
.hc{height:27.262909pt;}
.h18{height:28.023859pt;}
.h15{height:29.397999pt;}
.ha{height:29.433775pt;}
.h16{height:29.599908pt;}
.h9{height:30.399505pt;}
.he{height:30.945242pt;}
.h1d{height:31.067969pt;}
.h14{height:31.157778pt;}
.h1b{height:33.186336pt;}
.hf{height:34.574438pt;}
.h11{height:34.813542pt;}
.h21{height:35.039062pt;}
.h10{height:35.052646pt;}
.h19{height:36.873667pt;}
.h1a{height:37.193707pt;}
.h27{height:37.281562pt;}
.h12{height:38.415786pt;}
.h22{height:38.462187pt;}
.h13{height:38.681455pt;}
.h4{height:38.947124pt;}
.h1e{height:39.010156pt;}
.h20{height:41.273438pt;}
.h29{height:42.046875pt;}
.h17{height:43.171318pt;}
.h2{height:45.271688pt;}
.h28{height:46.812187pt;}
.h7{height:48.481423pt;}
.h3{height:66.058028pt;}
.h6{height:69.148877pt;}
.h5{height:69.435802pt;}
.h2a{height:260.654667pt;}
.h2d{height:272.289333pt;}
.h2c{height:277.526667pt;}
.h1c{height:282.762667pt;}
.h25{height:287.800000pt;}
.h23{height:425.889333pt;}
.h26{height:713.819200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:214.021695pt;}
.w8{width:490.472000pt;}
.w6{width:511.936000pt;}
.w9{width:516.072000pt;}
.wa{width:528.290667pt;}
.w5{width:530.617333pt;}
.w4{width:621.962133pt;}
.w7{width:696.224800pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.xca{left:-176.570667pt;}
.xe4{left:-175.417333pt;}
.xef{left:-173.672000pt;}
.xf4{left:-172.508000pt;}
.xf2{left:-145.352847pt;}
.xf7{left:-144.188847pt;}
.xb8{left:-86.981333pt;}
.xd7{left:-69.748000pt;}
.xb9{left:-58.661333pt;}
.xa1{left:-39.272533pt;}
.xd9{left:-35.764000pt;}
.xa9{left:-10.952533pt;}
.xcb{left:-2.731635pt;}
.xe5{left:-1.578302pt;}
.x0{left:0.000000pt;}
.xf5{left:1.331031pt;}
.x4{left:26.021437pt;}
.x3{left:47.068000pt;}
.x1{left:48.000000pt;}
.x2{left:51.605861pt;}
.xaa{left:76.346667pt;}
.xde{left:79.965333pt;}
.x54{left:85.098667pt;}
.x53{left:86.713333pt;}
.xdf{left:87.938667pt;}
.xe0{left:90.952000pt;}
.x55{left:97.436000pt;}
.x56{left:100.485333pt;}
.x4f{left:101.525333pt;}
.x51{left:104.310667pt;}
.x57{left:107.054667pt;}
.x4c{left:109.284000pt;}
.x4d{left:110.832000pt;}
.x4e{left:112.678667pt;}
.x52{left:114.238667pt;}
.xbc{left:115.178573pt;}
.x50{left:116.917333pt;}
.x5e{left:117.848000pt;}
.x5d{left:118.833333pt;}
.xc4{left:121.653333pt;}
.xab{left:126.814667pt;}
.x5c{left:127.992000pt;}
.xb7{left:131.542667pt;}
.x5b{left:133.502667pt;}
.xa7{left:134.569084pt;}
.xd8{left:138.858838pt;}
.x5a{left:141.429333pt;}
.x5f{left:142.905333pt;}
.xd0{left:144.149333pt;}
.xd1{left:148.069333pt;}
.xa6{left:162.888990pt;}
.xda{left:172.844000pt;}
.xd2{left:192.309333pt;}
.xc0{left:195.398667pt;}
.xe6{left:203.702667pt;}
.xc1{left:204.700000pt;}
.xc2{left:207.706667pt;}
.xc3{left:215.680000pt;}
.x7{left:222.073333pt;}
.x5{left:223.020000pt;}
.xe7{left:224.582667pt;}
.xd4{left:226.574667pt;}
.xb1{left:235.904000pt;}
.x6{left:240.904000pt;}
.x73{left:244.129333pt;}
.x4b{left:245.248000pt;}
.xb2{left:246.336000pt;}
.x3d{left:248.928000pt;}
.x74{left:249.841333pt;}
.x16{left:251.365333pt;}
.x11{left:252.358667pt;}
.x8f{left:253.769333pt;}
.x61{left:258.969333pt;}
.x99{left:260.213333pt;}
.xa2{left:262.086204pt;}
.xe1{left:263.716000pt;}
.x9f{left:266.234667pt;}
.x75{left:268.674667pt;}
.xac{left:270.258667pt;}
.x62{left:272.252000pt;}
.xd3{left:273.921333pt;}
.x8{left:274.960000pt;}
.x48{left:276.688000pt;}
.x87{left:277.966667pt;}
.xb5{left:279.229333pt;}
.x12{left:280.312000pt;}
.xf8{left:283.177333pt;}
.xaf{left:284.094667pt;}
.x15{left:285.496000pt;}
.x82{left:288.580000pt;}
.x49{left:289.972000pt;}
.xd5{left:297.678667pt;}
.xce{left:299.029333pt;}
.xcf{left:302.949333pt;}
.x21{left:303.866667pt;}
.xd6{left:305.653333pt;}
.xc5{left:306.661333pt;}
.x88{left:308.308000pt;}
.x22{left:310.508000pt;}
.x23{left:313.762667pt;}
.xb6{left:317.752000pt;}
.xe8{left:320.372000pt;}
.x42{left:323.585333pt;}
.x24{left:327.045333pt;}
.xcc{left:328.389333pt;}
.xad{left:329.778667pt;}
.x3b{left:331.005333pt;}
.xcd{left:332.309333pt;}
.x43{left:336.869333pt;}
.xf9{left:338.800000pt;}
.x76{left:340.436000pt;}
.x44{left:343.450667pt;}
.x46{left:345.206667pt;}
.x77{left:346.148000pt;}
.x33{left:348.202667pt;}
.x9d{left:352.106667pt;}
.xe9{left:354.688000pt;}
.x90{left:355.585333pt;}
.x45{left:356.734667pt;}
.x47{left:358.490667pt;}
.xa0{left:360.760000pt;}
.x3c{left:362.841333pt;}
.xea{left:363.833333pt;}
.x9e{left:365.390667pt;}
.x91{left:366.388000pt;}
.xe2{left:368.212000pt;}
.x6c{left:373.822667pt;}
.x78{left:376.253333pt;}
.x34{left:378.861333pt;}
.x60{left:382.016000pt;}
.x35{left:383.001333pt;}
.xee{left:384.686667pt;}
.xd{left:386.057333pt;}
.xc6{left:392.964000pt;}
.x36{left:395.886667pt;}
.x6d{left:400.856000pt;}
.xc7{left:402.922667pt;}
.x103{left:406.314667pt;}
.x3e{left:409.122667pt;}
.xe{left:412.172000pt;}
.x104{left:414.186667pt;}
.xa3{left:416.727467pt;}
.xbd{left:418.298667pt;}
.xe3{left:425.393333pt;}
.x38{left:429.056000pt;}
.xc8{left:431.533333pt;}
.xb3{left:433.532000pt;}
.x17{left:434.690667pt;}
.x25{left:436.564000pt;}
.x3f{left:437.868000pt;}
.x18{left:441.333333pt;}
.xb4{left:442.576000pt;}
.x26{left:449.846667pt;}
.xb0{left:454.040000pt;}
.x27{left:456.621333pt;}
.x97{left:457.821333pt;}
.x8d{left:462.962667pt;}
.x63{left:466.344000pt;}
.x6a{left:467.576000pt;}
.x28{left:469.905333pt;}
.x6b{left:473.626667pt;}
.x98{left:475.409333pt;}
.x4a{left:477.341333pt;}
.x64{left:479.626667pt;}
.x8e{left:482.106667pt;}
.x72{left:488.042667pt;}
.xbe{left:490.212000pt;}
.x79{left:492.617333pt;}
.x19{left:494.757333pt;}
.x8b{left:495.942667pt;}
.x7d{left:497.232000pt;}
.x81{left:498.256000pt;}
.x7a{left:500.432000pt;}
.x1a{left:501.398667pt;}
.x8c{left:505.088000pt;}
.x1b{left:507.993333pt;}
.x7b{left:509.694667pt;}
.x9a{left:511.374667pt;}
.xed{left:513.208000pt;}
.x1c{left:514.636000pt;}
.x7e{left:516.944000pt;}
.xf0{left:518.165171pt;}
.xf6{left:519.329171pt;}
.xf1{left:520.567867pt;}
.xae{left:522.093333pt;}
.x39{left:525.762667pt;}
.x30{left:529.582667pt;}
.xa4{left:533.047467pt;}
.x3a{left:538.646667pt;}
.xba{left:543.338667pt;}
.xa5{left:545.047467pt;}
.x65{left:547.877333pt;}
.xbb{left:554.378667pt;}
.x69{left:555.633333pt;}
.x66{left:561.160000pt;}
.x6f{left:563.832000pt;}
.x70{left:569.881333pt;}
.x9{left:571.608000pt;}
.xec{left:575.146667pt;}
.x2c{left:580.085333pt;}
.x101{left:581.613333pt;}
.x107{left:585.468000pt;}
.xff{left:588.474667pt;}
.x2d{left:592.970667pt;}
.x1d{left:593.932000pt;}
.xa{left:597.721333pt;}
.x2e{left:599.400000pt;}
.x1e{left:600.574667pt;}
.x102{left:605.524000pt;}
.x1f{left:607.349333pt;}
.xfd{left:608.849333pt;}
.x2f{left:612.285333pt;}
.x20{left:620.632000pt;}
.x89{left:622.964000pt;}
.xa8{left:624.167189pt;}
.x9b{left:626.465333pt;}
.x85{left:629.356000pt;}
.xdb{left:631.821333pt;}
.xfe{left:632.760000pt;}
.x9c{left:634.829333pt;}
.x8a{left:636.248000pt;}
.x86{left:638.501333pt;}
.xdc{left:641.122667pt;}
.x93{left:642.173333pt;}
.x58{left:644.349333pt;}
.x92{left:647.201333pt;}
.xfb{left:648.572000pt;}
.xf3{left:650.910667pt;}
.xdd{left:652.802667pt;}
.x94{left:655.456000pt;}
.x59{left:657.633333pt;}
.x100{left:662.341333pt;}
.x31{left:666.382667pt;}
.x40{left:668.649333pt;}
.x106{left:671.121333pt;}
.xfc{left:672.482667pt;}
.xbf{left:674.374667pt;}
.xc9{left:677.526667pt;}
.x41{left:681.534667pt;}
.xeb{left:683.481333pt;}
.x2a{left:686.382667pt;}
.xf{left:687.473333pt;}
.x71{left:692.657333pt;}
.x32{left:693.897333pt;}
.x13{left:696.601333pt;}
.x2b{left:699.268000pt;}
.x95{left:702.052000pt;}
.x105{left:705.226667pt;}
.x29{left:707.420000pt;}
.x83{left:712.949333pt;}
.x10{left:715.418667pt;}
.x37{left:716.537333pt;}
.xb{left:718.152000pt;}
.x96{left:719.866667pt;}
.x84{left:722.094667pt;}
.x14{left:724.536000pt;}
.x7c{left:725.445333pt;}
.x67{left:726.842667pt;}
.x7f{left:728.341333pt;}
.xfa{left:732.069333pt;}
.x80{left:733.181333pt;}
.x68{left:740.126667pt;}
.x6e{left:742.517333pt;}
.xc{left:744.266667pt;}
}




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