
    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_638f306e2c0a5be4ecf6efa4.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691000;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_44af104e6c3a985091b5bcc7.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_bdf19f550e9df77a6cfd1c9f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.986000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1c92127ca09ecdef3a4da076.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.723000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7e9fd312cf0d7160a5cbbc98.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_25d7636fd12670256c77ac4c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_51f5fc27555c52257bea6c08.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.552000;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_2dd63b07899f5f769cf80def.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_777f690c63084720c4005e26.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e326fbdf861d9e0463641f47.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1ff4dd8577d6e742018019ff.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_b8c23850ec10e1e768f9ecfc.woff2')format("woff");}.fff{font-family:fff;line-height:0.665000;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_ef734309825b724c29fdac55.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_b2c7ea073ff4fbc7524cf51e.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_dd1f269c017a934959720e72.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.982422;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_0da2f8747f633f652298f2b3.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e6e3701fc55cc666f4bf5926.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_88f825c2a49769fc5ea728d9.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_2f0187167594695ca6cf07e7.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_6d9899da614c8337540ef9ea.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.982422;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_8d6ee091e5e88b6f4243fead.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.008301;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_e6e3701fc55cc666f4bf5926.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_775567581b2f703f925d861b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.869000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{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);}
.m4{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);}
.m21{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);}
.m12{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);}
.m10{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);}
.m1c{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);}
.m2a{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);}
.m26{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);}
.m17{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);}
.m1f{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);}
.m1{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);}
.m7{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);}
.mf{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);}
.me{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);}
.m5{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);}
.m8{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);}
.m20{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);}
.m27{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);}
.m6{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);}
.md{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);}
.m18{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);}
.m28{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);}
.m1a{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m25{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);}
.ma{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);}
.m9{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);}
.m1e{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);}
.m16{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);}
.m1b{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);}
.m11{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);}
.m29{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);}
.m1d{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);}
.m23{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);}
.m24{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);}
.mb{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);}
.m2b{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);}
.m15{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);}
.m22{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);}
.m13{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);}
.m14{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);}
.m3{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);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.530000px;}
.v7{vertical-align:-1.620000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:14.362461px;}
.v4{vertical-align:18.162900px;}
.v1{vertical-align:21.696000px;}
.v5{vertical-align:27.721440px;}
.v3{vertical-align:30.572820px;}
.v6{vertical-align:45.884340px;}
.ls63{letter-spacing:-1.190160px;}
.ls32{letter-spacing:-0.324648px;}
.ls83{letter-spacing:-0.268436px;}
.ls69{letter-spacing:-0.199899px;}
.ls7d{letter-spacing:-0.194188px;}
.ls84{letter-spacing:-0.159919px;}
.ls82{letter-spacing:-0.148496px;}
.ls79{letter-spacing:-0.142785px;}
.ls2e{letter-spacing:-0.138276px;}
.ls65{letter-spacing:-0.137074px;}
.ls76{letter-spacing:-0.125651px;}
.ls6a{letter-spacing:-0.119939px;}
.ls33{letter-spacing:-0.114228px;}
.ls87{letter-spacing:-0.108517px;}
.ls8c{letter-spacing:-0.102805px;}
.ls77{letter-spacing:-0.097094px;}
.ls86{letter-spacing:-0.091382px;}
.ls74{letter-spacing:-0.086423px;}
.ls24{letter-spacing:-0.086184px;}
.ls85{letter-spacing:-0.085671px;}
.ls26{letter-spacing:-0.084168px;}
.ls61{letter-spacing:-0.081875px;}
.ls78{letter-spacing:-0.079960px;}
.ls80{letter-spacing:-0.074248px;}
.ls34{letter-spacing:-0.072144px;}
.ls2d{letter-spacing:-0.066132px;}
.ls89{letter-spacing:-0.062825px;}
.ls28{letter-spacing:-0.060120px;}
.ls88{letter-spacing:-0.057114px;}
.ls27{letter-spacing:-0.054108px;}
.ls8b{letter-spacing:-0.051403px;}
.ls2b{letter-spacing:-0.048096px;}
.ls7f{letter-spacing:-0.045691px;}
.ls8a{letter-spacing:-0.039980px;}
.ls2a{letter-spacing:-0.036072px;}
.ls7e{letter-spacing:-0.034268px;}
.ls7a{letter-spacing:-0.028557px;}
.ls66{letter-spacing:-0.022846px;}
.ls30{letter-spacing:-0.018036px;}
.ls67{letter-spacing:-0.017134px;}
.ls7b{letter-spacing:-0.015390px;}
.ls75{letter-spacing:-0.013646px;}
.ls29{letter-spacing:-0.012024px;}
.ls81{letter-spacing:-0.011423px;}
.ls2f{letter-spacing:-0.006012px;}
.ls68{letter-spacing:-0.005711px;}
.ls25{letter-spacing:-0.004788px;}
.ls62{letter-spacing:-0.004549px;}
.lse{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000240px;}
.ls39{letter-spacing:0.000838px;}
.lsb{letter-spacing:0.001518px;}
.lsa{letter-spacing:0.001541px;}
.ls10{letter-spacing:0.001890px;}
.ls5f{letter-spacing:0.002224px;}
.ls5e{letter-spacing:0.002338px;}
.ls73{letter-spacing:0.002394px;}
.ls3a{letter-spacing:0.002573px;}
.ls3e{letter-spacing:0.002688px;}
.ls8{letter-spacing:0.002958px;}
.ls35{letter-spacing:0.003161px;}
.ls40{letter-spacing:0.003167px;}
.ls8d{letter-spacing:0.003343px;}
.ls3f{letter-spacing:0.003394px;}
.lsd{letter-spacing:0.003488px;}
.ls9{letter-spacing:0.003494px;}
.ls36{letter-spacing:0.003562px;}
.ls11{letter-spacing:0.003598px;}
.ls21{letter-spacing:0.004435px;}
.ls3c{letter-spacing:0.004464px;}
.ls4b{letter-spacing:0.005130px;}
.ls38{letter-spacing:0.005369px;}
.ls72{letter-spacing:0.005415px;}
.ls5c{letter-spacing:0.005711px;}
.ls19{letter-spacing:0.006012px;}
.ls4a{letter-spacing:0.010260px;}
.ls5a{letter-spacing:0.011423px;}
.ls1e{letter-spacing:0.012024px;}
.ls46{letter-spacing:0.015390px;}
.ls17{letter-spacing:0.016200px;}
.ls6d{letter-spacing:0.017134px;}
.ls15{letter-spacing:0.018036px;}
.ls48{letter-spacing:0.020520px;}
.ls57{letter-spacing:0.022846px;}
.ls4f{letter-spacing:0.025650px;}
.ls71{letter-spacing:0.028557px;}
.ls1d{letter-spacing:0.030060px;}
.ls4d{letter-spacing:0.030780px;}
.ls56{letter-spacing:0.034268px;}
.ls51{letter-spacing:0.035910px;}
.ls16{letter-spacing:0.037800px;}
.ls70{letter-spacing:0.039980px;}
.ls6f{letter-spacing:0.041040px;}
.ls53{letter-spacing:0.045691px;}
.ls50{letter-spacing:0.046170px;}
.ls1b{letter-spacing:0.048096px;}
.ls49{letter-spacing:0.051300px;}
.ls54{letter-spacing:0.051403px;}
.ls18{letter-spacing:0.054000px;}
.ls1a{letter-spacing:0.054108px;}
.ls4c{letter-spacing:0.056430px;}
.ls55{letter-spacing:0.057114px;}
.ls1c{letter-spacing:0.060120px;}
.ls5d{letter-spacing:0.062825px;}
.ls1f{letter-spacing:0.066132px;}
.ls4e{letter-spacing:0.066690px;}
.ls6b{letter-spacing:0.068229px;}
.ls58{letter-spacing:0.068537px;}
.ls52{letter-spacing:0.071820px;}
.ls5b{letter-spacing:0.074248px;}
.ls59{letter-spacing:0.079960px;}
.ls44{letter-spacing:0.081875px;}
.ls20{letter-spacing:0.084168px;}
.ls12{letter-spacing:0.086184px;}
.ls6e{letter-spacing:0.102600px;}
.ls2c{letter-spacing:0.108216px;}
.ls47{letter-spacing:0.117990px;}
.ls6c{letter-spacing:0.163750px;}
.ls45{letter-spacing:0.172847px;}
.ls14{letter-spacing:0.181944px;}
.ls13{letter-spacing:0.191520px;}
.ls31{letter-spacing:1.178352px;}
.lsf{letter-spacing:1.275394px;}
.ls7{letter-spacing:1.861130px;}
.ls64{letter-spacing:2.570130px;}
.ls3b{letter-spacing:2.776402px;}
.ls3d{letter-spacing:2.781982px;}
.ls3{letter-spacing:2.983200px;}
.ls22{letter-spacing:2.988319px;}
.ls1{letter-spacing:2.989200px;}
.ls23{letter-spacing:2.994319px;}
.ls4{letter-spacing:2.998354px;}
.ls7c{letter-spacing:4.617000px;}
.lsc{letter-spacing:11.954850px;}
.ls8f{letter-spacing:13.197981px;}
.ls8e{letter-spacing:13.448400px;}
.ls93{letter-spacing:13.454400px;}
.ls92{letter-spacing:13.502207px;}
.ls90{letter-spacing:16.544518px;}
.ls91{letter-spacing:17.509224px;}
.ls60{letter-spacing:17.936196px;}
.ls37{letter-spacing:25.904241px;}
.ls2{letter-spacing:57.415200px;}
.ls5{letter-spacing:70.236600px;}
.ls6{letter-spacing:72.353510px;}
.ls41{letter-spacing:166.692600px;}
.ls42{letter-spacing:166.698600px;}
.ls43{letter-spacing:176.988600px;}
.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;}
}
.ws0{word-spacing:-117.622397px;}
.ws3b{word-spacing:-46.065614px;}
.ws8e{word-spacing:-42.428599px;}
.ws1{word-spacing:-26.899200px;}
.ws18{word-spacing:-17.394700px;}
.ws8{word-spacing:-15.655334px;}
.ws14{word-spacing:-14.943900px;}
.ws24{word-spacing:-13.915795px;}
.ws8d{word-spacing:-13.449600px;}
.ws94{word-spacing:-12.825000px;}
.ws81{word-spacing:-12.508128px;}
.ws3d{word-spacing:-12.161520px;}
.ws21{word-spacing:-11.955150px;}
.ws93{word-spacing:-11.553444px;}
.wsdb{word-spacing:-11.544347px;}
.ws3{word-spacing:-11.357400px;}
.wsdc{word-spacing:-8.550000px;}
.ws46{word-spacing:-4.841824px;}
.ws48{word-spacing:-4.662497px;}
.ws47{word-spacing:-4.602721px;}
.ws16{word-spacing:-3.825638px;}
.ws155{word-spacing:-3.819686px;}
.wsbe{word-spacing:-3.386860px;}
.ws35{word-spacing:-3.048556px;}
.wsbf{word-spacing:-2.849989px;}
.ws49{word-spacing:-2.689902px;}
.ws12{word-spacing:-2.630126px;}
.wsee{word-spacing:-2.616300px;}
.wsed{word-spacing:-2.570130px;}
.wsef{word-spacing:-2.549610px;}
.ws61{word-spacing:-2.434860px;}
.ws12b{word-spacing:-2.313331px;}
.wsa2{word-spacing:-2.211697px;}
.wsa1{word-spacing:-2.151922px;}
.ws63{word-spacing:-2.116224px;}
.ws5f{word-spacing:-2.092176px;}
.ws62{word-spacing:-2.062116px;}
.wsd6{word-spacing:-2.038970px;}
.wsfd{word-spacing:-1.981856px;}
.ws118{word-spacing:-1.970433px;}
.wsa{word-spacing:-1.908367px;}
.ws117{word-spacing:-1.879051px;}
.wsd7{word-spacing:-1.701997px;}
.wsc5{word-spacing:-1.690574px;}
.ws60{word-spacing:-1.689372px;}
.wsbd{word-spacing:-1.679152px;}
.ws7d{word-spacing:-1.673717px;}
.wsc4{word-spacing:-1.656306px;}
.wscd{word-spacing:-1.644883px;}
.wsdf{word-spacing:-1.613941px;}
.ws12e{word-spacing:-1.560154px;}
.ws4c{word-spacing:-1.364724px;}
.ws9{word-spacing:-1.322630px;}
.wsa0{word-spacing:-1.315063px;}
.ws4d{word-spacing:-1.262520px;}
.wsc6{word-spacing:-1.262219px;}
.wsb{word-spacing:-1.255288px;}
.wsa8{word-spacing:-1.241460px;}
.ws88{word-spacing:-1.237363px;}
.wsb6{word-spacing:-1.236330px;}
.wsb5{word-spacing:-1.226070px;}
.wsa7{word-spacing:-1.210680px;}
.wsa6{word-spacing:-1.205550px;}
.wse3{word-spacing:-1.195512px;}
.ws116{word-spacing:-1.176548px;}
.wsc7{word-spacing:-1.165126px;}
.ws10{word-spacing:-1.135736px;}
.wsf{word-spacing:-1.075961px;}
.ws89{word-spacing:-1.022170px;}
.wse6{word-spacing:-1.016185px;}
.ws8a{word-spacing:-0.968371px;}
.ws7c{word-spacing:-0.896634px;}
.wsf4{word-spacing:-0.892620px;}
.wsf2{word-spacing:-0.882360px;}
.wsf3{word-spacing:-0.866970px;}
.ws9f{word-spacing:-0.717307px;}
.ws128{word-spacing:-0.645581px;}
.ws71{word-spacing:-0.637272px;}
.ws77{word-spacing:-0.597756px;}
.ws149{word-spacing:-0.591782px;}
.ws11a{word-spacing:-0.582563px;}
.ws11c{word-spacing:-0.559717px;}
.ws72{word-spacing:-0.553104px;}
.ws11d{word-spacing:-0.548294px;}
.ws119{word-spacing:-0.542583px;}
.ws26{word-spacing:-0.537980px;}
.ws11b{word-spacing:-0.536872px;}
.ws150{word-spacing:-0.484186px;}
.ws10c{word-spacing:-0.451201px;}
.ws10d{word-spacing:-0.439778px;}
.ws123{word-spacing:-0.418429px;}
.ws9c{word-spacing:-0.376589px;}
.ws125{word-spacing:-0.358654px;}
.wsc9{word-spacing:-0.331261px;}
.ws143{word-spacing:-0.322790px;}
.wsda{word-spacing:-0.308416px;}
.ws111{word-spacing:-0.302704px;}
.ws2b{word-spacing:-0.298878px;}
.wsbc{word-spacing:-0.296993px;}
.ws138{word-spacing:-0.268992px;}
.wsa5{word-spacing:-0.254722px;}
.wse8{word-spacing:-0.250173px;}
.ws1f{word-spacing:-0.239102px;}
.ws56{word-spacing:-0.228456px;}
.ws103{word-spacing:-0.222745px;}
.ws57{word-spacing:-0.216432px;}
.ws127{word-spacing:-0.215194px;}
.ws25{word-spacing:-0.179327px;}
.ws96{word-spacing:-0.161395px;}
.ws1e{word-spacing:-0.119551px;}
.ws8b{word-spacing:-0.107597px;}
.ws4a{word-spacing:-0.081396px;}
.wsa4{word-spacing:-0.077326px;}
.wse7{word-spacing:-0.072778px;}
.ws27{word-spacing:-0.059776px;}
.ws3e{word-spacing:-0.053798px;}
.ws22{word-spacing:-0.047821px;}
.ws7{word-spacing:-0.010934px;}
.ws4{word-spacing:-0.005933px;}
.ws2{word-spacing:0.000000px;}
.ws45{word-spacing:0.004500px;}
.ws65{word-spacing:0.012024px;}
.wsc8{word-spacing:0.022846px;}
.ws102{word-spacing:0.039980px;}
.ws5b{word-spacing:0.048096px;}
.ws95{word-spacing:0.053798px;}
.ws13{word-spacing:0.059776px;}
.wsc2{word-spacing:0.068537px;}
.wsca{word-spacing:0.097094px;}
.ws6{word-spacing:0.107597px;}
.wsad{word-spacing:0.107730px;}
.ws55{word-spacing:0.108216px;}
.wsc3{word-spacing:0.114228px;}
.ws11{word-spacing:0.119551px;}
.ws10a{word-spacing:0.119939px;}
.wsb9{word-spacing:0.123120px;}
.wsf7{word-spacing:0.128250px;}
.wsf0{word-spacing:0.133380px;}
.ws122{word-spacing:0.137074px;}
.wsac{word-spacing:0.143640px;}
.ws4e{word-spacing:0.150300px;}
.ws4f{word-spacing:0.156312px;}
.wsf1{word-spacing:0.159030px;}
.ws9b{word-spacing:0.161395px;}
.ws2c{word-spacing:0.179327px;}
.ws53{word-spacing:0.183600px;}
.ws129{word-spacing:0.215194px;}
.ws5c{word-spacing:0.234468px;}
.wse{word-spacing:0.239102px;}
.wsdd{word-spacing:0.268992px;}
.ws34{word-spacing:0.298878px;}
.ws126{word-spacing:0.322790px;}
.ws33{word-spacing:0.358654px;}
.ws101{word-spacing:0.371241px;}
.ws2a{word-spacing:0.478205px;}
.ws9a{word-spacing:0.484186px;}
.ws52{word-spacing:0.491400px;}
.ws50{word-spacing:0.507600px;}
.ws51{word-spacing:0.529200px;}
.ws90{word-spacing:0.537980px;}
.ws5{word-spacing:0.562186px;}
.ws8f{word-spacing:0.597756px;}
.ws99{word-spacing:0.645581px;}
.ws7b{word-spacing:0.717307px;}
.ws12c{word-spacing:0.753178px;}
.wsab{word-spacing:0.805410px;}
.wse4{word-spacing:0.836858px;}
.ws113{word-spacing:0.850999px;}
.wsaa{word-spacing:0.856710px;}
.ws131{word-spacing:0.860774px;}
.ws112{word-spacing:0.862421px;}
.ws2e{word-spacing:0.896634px;}
.wse2{word-spacing:0.956410px;}
.ws142{word-spacing:0.968371px;}
.ws124{word-spacing:1.016185px;}
.wsd1{word-spacing:1.068032px;}
.wsff{word-spacing:1.085166px;}
.ws64{word-spacing:1.112220px;}
.ws28{word-spacing:1.135736px;}
.ws70{word-spacing:1.160316px;}
.ws6c{word-spacing:1.190376px;}
.ws31{word-spacing:1.195512px;}
.ws86{word-spacing:1.255288px;}
.ws6d{word-spacing:1.262520px;}
.ws148{word-spacing:1.291162px;}
.ws121{word-spacing:1.427850px;}
.ws29{word-spacing:1.434614px;}
.wsfe{word-spacing:1.444984px;}
.ws74{word-spacing:1.494390px;}
.ws154{word-spacing:1.506355px;}
.ws120{word-spacing:1.553501px;}
.ws3c{word-spacing:1.554166px;}
.ws151{word-spacing:1.613952px;}
.ws137{word-spacing:1.667750px;}
.ws91{word-spacing:1.673717px;}
.wsbb{word-spacing:1.747688px;}
.wsb8{word-spacing:1.816020px;}
.wsb4{word-spacing:1.831410px;}
.wsb3{word-spacing:1.872450px;}
.wsb7{word-spacing:1.887840px;}
.wsc{word-spacing:1.912819px;}
.ws32{word-spacing:1.972595px;}
.wsde{word-spacing:1.990541px;}
.ws76{word-spacing:2.092146px;}
.ws147{word-spacing:2.205734px;}
.ws2d{word-spacing:2.211697px;}
.ws73{word-spacing:2.271473px;}
.ws36{word-spacing:2.391024px;}
.ws97{word-spacing:2.420928px;}
.ws1d{word-spacing:2.450800px;}
.wsa9{word-spacing:2.554740px;}
.ws145{word-spacing:2.689920px;}
.wscc{word-spacing:2.815720px;}
.wscb{word-spacing:2.844277px;}
.ws68{word-spacing:2.891772px;}
.ws6a{word-spacing:2.921832px;}
.ws92{word-spacing:2.929004px;}
.ws19{word-spacing:2.988780px;}
.ws6b{word-spacing:3.012012px;}
.ws141{word-spacing:3.120307px;}
.wsd0{word-spacing:3.135559px;}
.ws14d{word-spacing:3.174106px;}
.ws11f{word-spacing:3.204095px;}
.ws11e{word-spacing:3.226941px;}
.ws1c{word-spacing:3.227882px;}
.ws69{word-spacing:3.306600px;}
.ws3f{word-spacing:3.347434px;}
.ws38{word-spacing:3.407209px;}
.ws37{word-spacing:3.466985px;}
.ws87{word-spacing:3.526760px;}
.ws13f{word-spacing:3.658291px;}
.wsd{word-spacing:3.706087px;}
.ws15{word-spacing:3.825638px;}
.ws14f{word-spacing:4.088678px;}
.ws13b{word-spacing:4.142477px;}
.wsf6{word-spacing:4.232250px;}
.ws75{word-spacing:4.363619px;}
.ws135{word-spacing:4.519066px;}
.ws109{word-spacing:4.551986px;}
.ws108{word-spacing:4.574831px;}
.wsaf{word-spacing:4.575960px;}
.wsae{word-spacing:4.596480px;}
.wsf5{word-spacing:4.606740px;}
.wsb0{word-spacing:4.617000px;}
.ws9d{word-spacing:4.662497px;}
.wse0{word-spacing:4.722272px;}
.ws14a{word-spacing:4.734259px;}
.ws100{word-spacing:4.848979px;}
.ws7a{word-spacing:4.901599px;}
.ws42{word-spacing:5.021150px;}
.ws58{word-spacing:5.032044px;}
.wse5{word-spacing:5.080926px;}
.ws79{word-spacing:5.200477px;}
.ws133{word-spacing:5.379686px;}
.ws13a{word-spacing:5.379840px;}
.ws17{word-spacing:5.439580px;}
.ws59{word-spacing:5.561100px;}
.wse9{word-spacing:5.654286px;}
.wscf{word-spacing:5.682843px;}
.wsce{word-spacing:5.762803px;}
.ws6e{word-spacing:5.807592px;}
.wse1{word-spacing:5.858009px;}
.ws1a{word-spacing:5.971475px;}
.ws1b{word-spacing:5.977560px;}
.ws98{word-spacing:6.079219px;}
.ws14c{word-spacing:6.133018px;}
.ws106{word-spacing:6.202580px;}
.wsa3{word-spacing:6.336214px;}
.ws3a{word-spacing:6.515540px;}
.ws13d{word-spacing:6.563405px;}
.ws67{word-spacing:6.571116px;}
.ws105{word-spacing:6.619513px;}
.ws104{word-spacing:6.630935px;}
.ws43{word-spacing:6.754643px;}
.wsd3{word-spacing:6.859391px;}
.ws66{word-spacing:6.901776px;}
.wsd2{word-spacing:6.933640px;}
.ws134{word-spacing:6.939994px;}
.ws44{word-spacing:7.113296px;}
.wsfa{word-spacing:7.253478px;}
.wsfb{word-spacing:7.459088px;}
.ws30{word-spacing:7.531726px;}
.ws5e{word-spacing:7.599168px;}
.ws5d{word-spacing:7.665300px;}
.ws153{word-spacing:7.908365px;}
.wsba{word-spacing:7.916000px;}
.ws114{word-spacing:7.938846px;}
.ws115{word-spacing:7.995960px;}
.ws41{word-spacing:8.189257px;}
.wsb2{word-spacing:8.320860px;}
.ws54{word-spacing:8.374716px;}
.wsb1{word-spacing:8.382420px;}
.wsd4{word-spacing:8.961187px;}
.wsd5{word-spacing:8.984032px;}
.ws4b{word-spacing:9.097200px;}
.wsc1{word-spacing:9.292448px;}
.wsc0{word-spacing:9.440944px;}
.wsf9{word-spacing:9.617998px;}
.wsf8{word-spacing:9.783628px;}
.ws10b{word-spacing:10.646050px;}
.ws78{word-spacing:10.938935px;}
.ws20{word-spacing:11.909197px;}
.wsd9{word-spacing:12.005363px;}
.wsd8{word-spacing:12.405161px;}
.ws130{word-spacing:12.642624px;}
.ws144{word-spacing:13.073011px;}
.ws139{word-spacing:13.126810px;}
.ws6f{word-spacing:13.172292px;}
.ws12d{word-spacing:13.388342px;}
.ws132{word-spacing:13.388918px;}
.ws13c{word-spacing:13.391645px;}
.ws136{word-spacing:13.394342px;}
.ws12a{word-spacing:13.395802px;}
.ws152{word-spacing:13.449600px;}
.wseb{word-spacing:13.501750px;}
.ws146{word-spacing:13.557197px;}
.wsec{word-spacing:13.564575px;}
.ws39{word-spacing:14.884124px;}
.wsfc{word-spacing:15.106653px;}
.ws107{word-spacing:15.889115px;}
.ws2f{word-spacing:16.079636px;}
.ws40{word-spacing:16.139412px;}
.ws14e{word-spacing:16.569907px;}
.ws9e{word-spacing:16.677392px;}
.ws5a{word-spacing:17.326584px;}
.ws13e{word-spacing:18.769613px;}
.ws14b{word-spacing:18.771437px;}
.ws12f{word-spacing:18.775642px;}
.wsea{word-spacing:19.218861px;}
.ws110{word-spacing:20.298316px;}
.ws10f{word-spacing:20.309738px;}
.ws10e{word-spacing:20.349718px;}
.ws140{word-spacing:26.468813px;}
.ws82{word-spacing:129.934434px;}
.ws80{word-spacing:139.140416px;}
.ws7e{word-spacing:170.310671px;}
.ws8c{word-spacing:171.186509px;}
.ws7f{word-spacing:172.095146px;}
.ws83{word-spacing:178.015678px;}
.ws84{word-spacing:182.368506px;}
.ws85{word-spacing:270.025467px;}
.ws23{word-spacing:1059.226290px;}
._2{margin-left:-6.658900px;}
._3{margin-left:-4.949453px;}
._3a{margin-left:-3.915675px;}
._4{margin-left:-2.905114px;}
._0{margin-left:-1.279388px;}
._7{width:1.091170px;}
._1{width:3.001488px;}
._17{width:4.387929px;}
._38{width:10.114099px;}
._14{width:11.916462px;}
._d{width:13.652937px;}
._19{width:15.482331px;}
._37{width:16.784765px;}
._5{width:17.861069px;}
._6{width:19.797811px;}
._9{width:21.220338px;}
._11{width:23.025784px;}
._f{width:24.866650px;}
._12{width:26.026486px;}
._8{width:27.317449px;}
._10{width:28.596837px;}
._c{width:30.210778px;}
._a{width:32.990684px;}
._15{width:35.207828px;}
._b{width:37.120648px;}
._18{width:43.074107px;}
._3c{width:61.868160px;}
._16{width:69.817901px;}
._36{width:71.491618px;}
._31{width:118.517875px;}
._34{width:124.554000px;}
._1b{width:132.786287px;}
._27{width:140.587593px;}
._1c{width:161.905209px;}
._28{width:167.911800px;}
._22{width:171.961744px;}
._26{width:174.057822px;}
._25{width:182.287245px;}
._21{width:183.369156px;}
._2b{width:200.278492px;}
._23{width:201.585203px;}
._33{width:263.730922px;}
._2d{width:287.785893px;}
._20{width:333.752987px;}
._2f{width:352.690208px;}
._1d{width:373.542735px;}
._32{width:388.678118px;}
._30{width:446.903309px;}
._1f{width:569.069791px;}
._1e{width:596.487608px;}
._24{width:859.962044px;}
._2a{width:861.663202px;}
._2e{width:864.114743px;}
._2c{width:876.522268px;}
._29{width:895.634687px;}
._35{width:1602.595086px;}
._13{width:1668.268970px;}
._39{width:2074.205389px;}
._3b{width:2075.215951px;}
._e{width:2098.115389px;}
._1a{width:3577.805389px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(12,11,11);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(144,38,54);}
.fs13{font-size:34.200000px;}
.fse{font-size:38.913804px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fs3{font-size:45.429600px;}
.fsf{font-size:45.486000px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:47.880000px;}
.fsd{font-size:50.032512px;}
.fs10{font-size:51.300000px;}
.fs5{font-size:53.798400px;}
.fsa{font-size:54.000000px;}
.fs12{font-size:57.114000px;}
.fs1{font-size:59.775600px;}
.fsb{font-size:60.120000px;}
.fs11{font-size:68.400000px;}
.fsc{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.yf8{bottom:-736.590622px;}
.y143{bottom:-734.029898px;}
.y16a{bottom:-702.648918px;}
.y11c{bottom:-700.678881px;}
.y169{bottom:-683.411495px;}
.y11b{bottom:-681.441458px;}
.y168{bottom:-664.259743px;}
.y11a{bottom:-662.204035px;}
.y167{bottom:-645.022320px;}
.y119{bottom:-642.966612px;}
.y166{bottom:-625.784897px;}
.y118{bottom:-623.729189px;}
.y165{bottom:-606.547474px;}
.y117{bottom:-604.491766px;}
.y164{bottom:-587.310051px;}
.y116{bottom:-585.254343px;}
.y163{bottom:-568.072628px;}
.y115{bottom:-566.102591px;}
.y6a{bottom:-553.874550px;}
.y162{bottom:-548.835205px;}
.y114{bottom:-546.865168px;}
.y161{bottom:-529.683453px;}
.y84{bottom:-529.302132px;}
.y113{bottom:-527.627745px;}
.y160{bottom:-510.446030px;}
.y83{bottom:-509.052213px;}
.y112{bottom:-508.390322px;}
.y15f{bottom:-491.208606px;}
.y82{bottom:-488.802294px;}
.y111{bottom:-480.602933px;}
.y15e{bottom:-471.971183px;}
.y81{bottom:-468.642555px;}
.y15d{bottom:-452.733760px;}
.y80{bottom:-448.392636px;}
.y110{bottom:-444.265578px;}
.y15c{bottom:-433.496337px;}
.y7f{bottom:-428.142717px;}
.y10f{bottom:-425.113826px;}
.y15b{bottom:-414.344585px;}
.y7e{bottom:-407.892798px;}
.y10e{bottom:-405.876403px;}
.y15a{bottom:-395.107162px;}
.y7d{bottom:-387.642879px;}
.y10d{bottom:-386.638980px;}
.y159{bottom:-375.869739px;}
.y10c{bottom:-367.401480px;}
.y10b{bottom:-367.400990px;}
.y7c{bottom:-367.392960px;}
.y10a{bottom:-348.163567px;}
.y158{bottom:-347.996679px;}
.y7b{bottom:-347.143041px;}
.y109{bottom:-328.926144px;}
.y7a{bottom:-326.983302px;}
.y157{bottom:-311.744996px;}
.y108{bottom:-309.688721px;}
.y79{bottom:-306.733383px;}
.y156{bottom:-292.507573px;}
.y107{bottom:-290.536969px;}
.y78{bottom:-286.483464px;}
.y155{bottom:-273.270150px;}
.y106{bottom:-271.299546px;}
.y77{bottom:-266.233545px;}
.y154{bottom:-254.118013px;}
.y105{bottom:-252.062122px;}
.y76{bottom:-245.983626px;}
.y153{bottom:-234.880590px;}
.y75{bottom:-225.733707px;}
.y104{bottom:-216.153833px;}
.y152{bottom:-215.643167px;}
.y74{bottom:-205.483788px;}
.y103{bottom:-197.685832px;}
.y151{bottom:-196.405744px;}
.y73{bottom:-185.324049px;}
.y102{bottom:-179.131905px;}
.y150{bottom:-177.168321px;}
.y101{bottom:-160.577977px;}
.y14f{bottom:-157.930898px;}
.y72{bottom:-156.074166px;}
.y100{bottom:-142.109978px;}
.yff{bottom:-123.556050px;}
.y14e{bottom:-122.107253px;}
.y71{bottom:-117.824319px;}
.yfe{bottom:-105.002122px;}
.y14d{bottom:-103.553325px;}
.y70{bottom:-97.574400px;}
.yfd{bottom:-86.534122px;}
.y14c{bottom:-84.999398px;}
.yfc{bottom:-67.980195px;}
.y14b{bottom:-66.445470px;}
.y6f{bottom:-59.865000px;}
.yfb{bottom:-49.341622px;}
.y14a{bottom:-47.977470px;}
.y6e{bottom:-40.334550px;}
.yfa{bottom:-30.873623px;}
.y149{bottom:-29.338898px;}
.y6d{bottom:-7.484550px;}
.y148{bottom:-5.313398px;}
.y0{bottom:0.000000px;}
.yf9{bottom:1.188877px;}
.y17{bottom:3.425340px;}
.y2{bottom:13.800505px;}
.y16{bottom:14.151273px;}
.y31{bottom:63.780000px;}
.y30{bottom:108.612000px;}
.y1b3{bottom:116.935500px;}
.y9a{bottom:117.228000px;}
.y66{bottom:122.314500px;}
.y140{bottom:127.284000px;}
.y67{bottom:127.740000px;}
.y2f{bottom:128.875500px;}
.y191{bottom:135.172500px;}
.y1b2{bottom:136.303500px;}
.y99{bottom:137.491500px;}
.y65{bottom:142.579500px;}
.y13f{bottom:147.549000px;}
.y2e{bottom:149.139000px;}
.y190{bottom:155.436000px;}
.y1b1{bottom:155.671500px;}
.y98{bottom:157.756500px;}
.y64{bottom:162.843000px;}
.y13e{bottom:167.812500px;}
.y2d{bottom:169.404000px;}
.y1b0{bottom:175.038000px;}
.y18f{bottom:175.701000px;}
.y97{bottom:178.020000px;}
.y63{bottom:183.108000px;}
.y13c{bottom:188.076000px;}
.y2c{bottom:189.667500px;}
.y13d{bottom:193.501500px;}
.y1af{bottom:194.406000px;}
.y18e{bottom:195.964500px;}
.y96{bottom:198.285000px;}
.y62{bottom:203.371500px;}
.y13b{bottom:208.341000px;}
.y2b{bottom:209.932500px;}
.y1ae{bottom:213.772500px;}
.y18d{bottom:216.228000px;}
.y95{bottom:218.548500px;}
.y61{bottom:223.635000px;}
.y147{bottom:224.254504px;}
.y1e2{bottom:225.162000px;}
.y13a{bottom:228.604500px;}
.y1ad{bottom:233.140500px;}
.y18c{bottom:236.493000px;}
.y94{bottom:238.812000px;}
.y2a{bottom:239.163000px;}
.y146{bottom:243.406256px;}
.y1e1{bottom:244.528500px;}
.y139{bottom:248.869500px;}
.y1ac{bottom:252.508500px;}
.y60{bottom:252.865500px;}
.y18b{bottom:256.756500px;}
.y92{bottom:259.077000px;}
.y145{bottom:262.643679px;}
.y1e0{bottom:263.896500px;}
.y93{bottom:264.501000px;}
.yf5{bottom:264.921000px;}
.y138{bottom:269.133000px;}
.y1ab{bottom:271.875000px;}
.y18a{bottom:277.021500px;}
.y91{bottom:279.340500px;}
.y144{bottom:281.881103px;}
.y1df{bottom:283.264500px;}
.yf4{bottom:285.186000px;}
.y5f{bottom:287.685000px;}
.y137{bottom:289.396500px;}
.y1aa{bottom:291.243000px;}
.y189{bottom:297.285000px;}
.y90{bottom:299.605500px;}
.y1de{bottom:302.631000px;}
.yf3{bottom:305.449500px;}
.y5e{bottom:307.950000px;}
.y136{bottom:309.661500px;}
.y1a9{bottom:310.609500px;}
.yf7{bottom:314.888377px;}
.y29{bottom:315.577500px;}
.y142{bottom:317.449102px;}
.y188{bottom:317.548500px;}
.y8f{bottom:319.869000px;}
.y1dd{bottom:321.999000px;}
.yf2{bottom:325.714500px;}
.y5d{bottom:328.213500px;}
.y135{bottom:329.925000px;}
.y1a8{bottom:329.977500px;}
.y187{bottom:337.813500px;}
.y8e{bottom:340.132500px;}
.y1db{bottom:341.367000px;}
.yf1{bottom:345.978000px;}
.y1dc{bottom:346.248000px;}
.y1a7{bottom:349.345500px;}
.y134{bottom:350.190000px;}
.y28{bottom:353.775000px;}
.y5c{bottom:357.444000px;}
.y186{bottom:358.077000px;}
.y8d{bottom:360.397500px;}
.y1da{bottom:360.733500px;}
.yf0{bottom:366.241500px;}
.y1a6{bottom:368.712000px;}
.y133{bottom:370.453500px;}
.y27{bottom:374.038500px;}
.y185{bottom:378.342000px;}
.y1d9{bottom:380.101500px;}
.y8c{bottom:380.661000px;}
.yef{bottom:386.506500px;}
.y1a5{bottom:388.080000px;}
.y132{bottom:390.717000px;}
.y5b{bottom:392.263500px;}
.y26{bottom:394.303500px;}
.y184{bottom:398.605500px;}
.y1d8{bottom:399.468000px;}
.y8b{bottom:400.926000px;}
.yee{bottom:406.770000px;}
.y1a4{bottom:407.446500px;}
.y131{bottom:410.982000px;}
.y25{bottom:414.567000px;}
.y1d7{bottom:418.836000px;}
.y183{bottom:418.869000px;}
.y8a{bottom:421.189500px;}
.y1a3{bottom:426.814500px;}
.yed{bottom:427.035000px;}
.y5a{bottom:427.083000px;}
.y130{bottom:431.245500px;}
.y24{bottom:434.832000px;}
.y1d6{bottom:438.204000px;}
.y182{bottom:439.134000px;}
.y1a2{bottom:446.182500px;}
.yec{bottom:447.298500px;}
.y58{bottom:447.348000px;}
.ybe{bottom:447.466500px;}
.y89{bottom:450.420000px;}
.y12f{bottom:451.509000px;}
.y59{bottom:452.772000px;}
.y23{bottom:455.095500px;}
.y1d5{bottom:457.570500px;}
.y181{bottom:459.397500px;}
.yeb{bottom:467.562000px;}
.y57{bottom:467.611500px;}
.ybd{bottom:467.731500px;}
.y12e{bottom:471.774000px;}
.y1a1{bottom:474.516000px;}
.y22{bottom:475.359000px;}
.y1d4{bottom:476.938500px;}
.y180{bottom:479.662500px;}
.y88{bottom:485.239500px;}
.yea{bottom:487.827000px;}
.y56{bottom:487.875000px;}
.ybc{bottom:487.995000px;}
.y12d{bottom:492.037500px;}
.y6c{bottom:495.615531px;}
.y21{bottom:495.624000px;}
.y1d3{bottom:496.305000px;}
.y17f{bottom:499.926000px;}
.y87{bottom:505.503000px;}
.ycf{bottom:505.842000px;}
.ye9{bottom:508.090500px;}
.y55{bottom:508.140000px;}
.yba{bottom:508.258500px;}
.y12c{bottom:512.302500px;}
.ybb{bottom:513.684000px;}
.y1a0{bottom:513.967500px;}
.y1d2{bottom:515.673000px;}
.y6b{bottom:515.865450px;}
.y20{bottom:515.887500px;}
.y17e{bottom:520.189500px;}
.yce{bottom:527.265750px;}
.ye8{bottom:528.355500px;}
.y54{bottom:528.403500px;}
.yb9{bottom:528.523500px;}
.y19f{bottom:529.165500px;}
.y12b{bottom:532.566000px;}
.y1d1{bottom:535.041000px;}
.y1f{bottom:536.152500px;}
.y17d{bottom:540.454500px;}
.y86{bottom:540.504000px;}
.ycd{bottom:542.885565px;}
.y19e{bottom:544.363500px;}
.ye7{bottom:548.619000px;}
.y53{bottom:548.667000px;}
.yb7{bottom:548.787000px;}
.yca{bottom:550.274880px;}
.y12a{bottom:552.829500px;}
.y69{bottom:553.215450px;}
.yb8{bottom:554.212500px;}
.y1d0{bottom:554.407500px;}
.y1e{bottom:556.416000px;}
.ycc{bottom:558.505380px;}
.y85{bottom:559.737000px;}
.y17c{bottom:560.718000px;}
.y19d{bottom:568.528500px;}
.ye6{bottom:568.882500px;}
.y52{bottom:568.932000px;}
.yb5{bottom:569.052000px;}
.y129{bottom:573.094500px;}
.y1cf{bottom:573.775500px;}
.ycb{bottom:574.125195px;}
.yb6{bottom:574.476000px;}
.y1d{bottom:576.679500px;}
.y17b{bottom:580.983000px;}
.y68{bottom:582.166500px;}
.y19c{bottom:583.726500px;}
.y51{bottom:589.195500px;}
.yb4{bottom:589.315500px;}
.y1ce{bottom:593.142000px;}
.yc9{bottom:596.110395px;}
.y1c{bottom:596.944500px;}
.ye5{bottom:598.113000px;}
.y19b{bottom:598.924500px;}
.y17a{bottom:601.246500px;}
.y128{bottom:602.325000px;}
.y50{bottom:609.460500px;}
.yb2{bottom:609.579000px;}
.yc8{bottom:611.398200px;}
.y1cd{bottom:612.510000px;}
.yb3{bottom:615.004500px;}
.y1b{bottom:617.208000px;}
.yc5{bottom:619.042800px;}
.y179{bottom:621.510000px;}
.y19a{bottom:623.089500px;}
.yc7{bottom:626.686005px;}
.y4f{bottom:629.724000px;}
.yb1{bottom:629.844000px;}
.y1cc{bottom:631.878000px;}
.y127{bottom:633.948000px;}
.y1a{bottom:637.473000px;}
.y199{bottom:638.287500px;}
.y178{bottom:641.775000px;}
.yc6{bottom:641.973810px;}
.ye4{bottom:642.037500px;}
.y4e{bottom:649.987500px;}
.yb0{bottom:650.107500px;}
.yc4{bottom:650.663265px;}
.y1cb{bottom:651.244500px;}
.y126{bottom:653.181000px;}
.y19{bottom:657.736500px;}
.ye3{bottom:659.283000px;}
.y177{bottom:662.038500px;}
.y198{bottom:662.451000px;}
.y4d{bottom:670.252500px;}
.yae{bottom:670.372500px;}
.y1ca{bottom:670.612500px;}
.y125{bottom:672.414000px;}
.yaf{bottom:675.796500px;}
.ye2{bottom:676.528500px;}
.y197{bottom:677.649000px;}
.y18{bottom:678.000000px;}
.yc3{bottom:679.912230px;}
.y176{bottom:682.303500px;}
.y1c9{bottom:689.979000px;}
.y4c{bottom:690.516000px;}
.yad{bottom:690.636000px;}
.y124{bottom:691.647000px;}
.y196{bottom:692.848500px;}
.ye1{bottom:693.775500px;}
.yc2{bottom:701.897430px;}
.y175{bottom:702.567000px;}
.y195{bottom:708.046500px;}
.y15{bottom:709.196964px;}
.y1c8{bottom:709.347000px;}
.yc1{bottom:709.542030px;}
.y14{bottom:709.963500px;}
.y4b{bottom:710.781000px;}
.y123{bottom:710.878500px;}
.yac{bottom:710.899500px;}
.ye0{bottom:718.176000px;}
.y174{bottom:722.830500px;}
.y194{bottom:723.244500px;}
.y1c7{bottom:728.715000px;}
.y122{bottom:730.111500px;}
.y4a{bottom:731.044500px;}
.yab{bottom:731.164500px;}
.y193{bottom:738.442500px;}
.ydf{bottom:742.174500px;}
.y173{bottom:743.095500px;}
.yc0{bottom:747.622500px;}
.y1c6{bottom:748.081500px;}
.y13{bottom:748.968000px;}
.y121{bottom:749.344500px;}
.y49{bottom:751.308000px;}
.yaa{bottom:751.428000px;}
.y172{bottom:763.359000px;}
.y1c5{bottom:767.449500px;}
.y120{bottom:768.577500px;}
.y48{bottom:771.573000px;}
.ya9{bottom:771.693000px;}
.y12{bottom:772.008000px;}
.yde{bottom:773.794500px;}
.y11{bottom:785.283000px;}
.y1c4{bottom:786.816000px;}
.y11f{bottom:787.810500px;}
.y47{bottom:791.836500px;}
.ya7{bottom:791.956500px;}
.y171{bottom:792.589500px;}
.ydd{bottom:793.027500px;}
.ya8{bottom:797.380500px;}
.ybf{bottom:798.445500px;}
.y1c3{bottom:806.184000px;}
.y11e{bottom:807.043500px;}
.y10{bottom:808.321500px;}
.y46{bottom:812.101500px;}
.ya6{bottom:812.220000px;}
.ydc{bottom:812.260500px;}
.y170{bottom:824.212500px;}
.y1c2{bottom:825.552000px;}
.y11d{bottom:826.276500px;}
.yf{bottom:826.479000px;}
.y45{bottom:832.365000px;}
.ya5{bottom:832.485000px;}
.y192{bottom:837.789000px;}
.ye{bottom:839.754000px;}
.y16f{bottom:843.445500px;}
.y1c1{bottom:844.918500px;}
.yf6{bottom:848.706000px;}
.ydb{bottom:849.372000px;}
.y44{bottom:852.628500px;}
.ya3{bottom:852.748500px;}
.yd{bottom:857.910000px;}
.ya4{bottom:858.174000px;}
.y16e{bottom:862.678500px;}
.yc{bottom:862.792500px;}
.y1c0{bottom:864.286500px;}
.yda{bottom:869.635500px;}
.y43{bottom:872.893500px;}
.ya2{bottom:873.013500px;}
.yb{bottom:876.067500px;}
.y16d{bottom:881.911500px;}
.y1bf{bottom:883.653000px;}
.yd9{bottom:889.899000px;}
.y41{bottom:893.157000px;}
.ya1{bottom:893.277000px;}
.y42{bottom:898.582500px;}
.ya{bottom:899.107500px;}
.y16c{bottom:901.144500px;}
.y1be{bottom:903.021000px;}
.yd8{bottom:910.164000px;}
.y3f{bottom:913.422000px;}
.ya0{bottom:913.540500px;}
.y9{bottom:917.112000px;}
.y40{bottom:918.846000px;}
.y16b{bottom:920.377500px;}
.y1bd{bottom:922.389000px;}
.y1e5{bottom:928.267500px;}
.yd7{bottom:930.427500px;}
.y3d{bottom:933.685500px;}
.y9e{bottom:933.805500px;}
.y8{bottom:937.375500px;}
.y3e{bottom:939.109500px;}
.y9f{bottom:939.229500px;}
.y1bc{bottom:941.755500px;}
.y141{bottom:942.807000px;}
.y1e4{bottom:947.634000px;}
.yd6{bottom:950.692500px;}
.y3c{bottom:953.949000px;}
.y9d{bottom:954.069000px;}
.y1bb{bottom:961.123500px;}
.y1e3{bottom:967.002000px;}
.yd5{bottom:970.956000px;}
.y3b{bottom:974.214000px;}
.y7{bottom:980.055000px;}
.y1ba{bottom:980.490000px;}
.y9c{bottom:983.299500px;}
.yd4{bottom:991.219500px;}
.y39{bottom:994.477500px;}
.y1b9{bottom:999.858000px;}
.y3a{bottom:999.903000px;}
.y9b{bottom:1000.186500px;}
.y6{bottom:1010.451000px;}
.yd3{bottom:1011.484500px;}
.y38{bottom:1014.742500px;}
.y1b8{bottom:1019.226000px;}
.yd2{bottom:1031.748000px;}
.y37{bottom:1035.006000px;}
.y1b7{bottom:1038.592500px;}
.y5{bottom:1040.848500px;}
.yd1{bottom:1052.013000px;}
.y36{bottom:1055.269500px;}
.y1b6{bottom:1057.960500px;}
.y4{bottom:1071.244500px;}
.y35{bottom:1075.534500px;}
.y1b5{bottom:1077.327000px;}
.yd0{bottom:1081.243500px;}
.y34{bottom:1095.798000px;}
.y1b4{bottom:1096.695000px;}
.y3{bottom:1100.145000px;}
.y33{bottom:1116.063000px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.h33{height:22.888012px;}
.hf{height:24.849991px;}
.h9{height:25.508090px;}
.h1d{height:27.855430px;}
.h7{height:30.461558px;}
.h11{height:32.697253px;}
.h29{height:33.070632px;}
.h10{height:33.072749px;}
.hb{height:33.112997px;}
.h2a{height:34.191650px;}
.ha{height:34.199443px;}
.h25{height:34.813397px;}
.h13{height:34.951465px;}
.he{height:35.052500px;}
.h14{height:35.991211px;}
.h21{height:36.023409px;}
.h24{height:36.423669px;}
.h2c{height:37.297705px;}
.h34{height:37.927872px;}
.h1b{height:38.734848px;}
.h8{height:39.165235px;}
.h18{height:39.260742px;}
.h17{height:39.418945px;}
.h32{height:39.434227px;}
.h22{height:39.448751px;}
.h31{height:40.827586px;}
.h2f{height:41.106463px;}
.h2d{height:41.524778px;}
.hc{height:43.038432px;}
.hd{height:43.516637px;}
.h19{height:43.622227px;}
.h15{height:43.710293px;}
.h4{height:43.815515px;}
.h1a{height:43.886426px;}
.h2e{height:45.588867px;}
.h1c{height:46.551991px;}
.h26{height:48.371558px;}
.h27{height:48.377558px;}
.h2b{height:49.730273px;}
.h2{height:51.025140px;}
.h16{height:52.347656px;}
.h6{height:54.405312px;}
.h20{height:66.596229px;}
.h23{height:67.170191px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h30{height:188.201175px;}
.h28{height:282.302475px;}
.h12{height:469.720500px;}
.h1e{height:892.914000px;}
.h1f{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:166.304160px;}
.w4{width:444.958500px;}
.w8{width:577.406580px;}
.w7{width:604.932735px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w5{width:1262.835000px;}
.w6{width:1263.000000px;}
.x3e{left:-109.461000px;}
.x40{left:-77.601000px;}
.x74{left:-16.369545px;}
.x0{left:0.000000px;}
.x76{left:13.897455px;}
.x7{left:29.274117px;}
.x2{left:57.652455px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x3{left:123.306000px;}
.x49{left:134.392500px;}
.x5e{left:138.108495px;}
.x4a{left:143.632500px;}
.x4{left:146.170500px;}
.x64{left:151.091760px;}
.x73{left:157.755570px;}
.x45{left:162.343500px;}
.x17{left:164.365500px;}
.xf{left:166.770000px;}
.x6b{left:168.921000px;}
.x11{left:170.494500px;}
.x10{left:174.243000px;}
.x12{left:177.966000px;}
.x8{left:188.761500px;}
.x1a{left:193.030500px;}
.x67{left:197.619000px;}
.x1b{left:200.503500px;}
.x6c{left:203.338500px;}
.x41{left:204.469500px;}
.x1c{left:207.855000px;}
.x6f{left:208.893000px;}
.x1d{left:215.328000px;}
.x70{left:219.355500px;}
.x3d{left:223.978500px;}
.x55{left:229.855500px;}
.x77{left:231.192000px;}
.x6a{left:234.709500px;}
.x82{left:238.137000px;}
.x60{left:239.357595px;}
.x78{left:241.656000px;}
.x83{left:243.910500px;}
.x94{left:251.667000px;}
.x96{left:253.657500px;}
.x69{left:254.917500px;}
.x81{left:256.491000px;}
.x20{left:263.637000px;}
.x95{left:267.238500px;}
.x21{left:278.580000px;}
.x42{left:280.794000px;}
.x22{left:286.201500px;}
.x23{left:301.146000px;}
.x2f{left:315.261000px;}
.x65{left:323.435640px;}
.x9{left:325.006500px;}
.x8f{left:326.524500px;}
.x30{left:329.286000px;}
.x90{left:331.090500px;}
.xa{left:332.478000px;}
.x15{left:345.994500px;}
.x7b{left:349.321500px;}
.x31{left:351.486000px;}
.x16{left:353.466000px;}
.x7c{left:364.266000px;}
.x32{left:365.511000px;}
.x5d{left:367.552500px;}
.x66{left:371.430000px;}
.x52{left:380.185500px;}
.x47{left:383.211000px;}
.x33{left:387.712500px;}
.x53{left:390.340500px;}
.x72{left:393.726000px;}
.x48{left:398.155500px;}
.x34{left:401.736000px;}
.x4b{left:404.452500px;}
.x68{left:407.119500px;}
.x87{left:409.623000px;}
.x4c{left:419.397000px;}
.x35{left:423.937500px;}
.x6e{left:428.331060px;}
.x36{left:437.961000px;}
.x3f{left:439.989000px;}
.x89{left:448.914000px;}
.x8a{left:451.711500px;}
.x37{left:460.162500px;}
.x4e{left:466.692000px;}
.x38{left:474.186000px;}
.x71{left:478.546500px;}
.x4f{left:480.411000px;}
.x5b{left:488.025000px;}
.x50{left:495.190500px;}
.x5c{left:497.256000px;}
.x51{left:505.338000px;}
.x24{left:512.133000px;}
.x25{left:527.077500px;}
.x46{left:534.120000px;}
.x84{left:538.254000px;}
.x56{left:542.053500px;}
.x93{left:544.116000px;}
.x58{left:545.454000px;}
.x57{left:553.540500px;}
.x54{left:555.970500px;}
.x26{left:561.687000px;}
.xb{left:562.698000px;}
.xc{left:570.169500px;}
.x91{left:571.999500px;}
.x27{left:576.631500px;}
.xd{left:577.732500px;}
.xe{left:585.204000px;}
.x79{left:592.644000px;}
.x92{left:598.899000px;}
.x7a{left:607.587000px;}
.x75{left:614.192812px;}
.x6d{left:630.196418px;}
.x7f{left:632.263500px;}
.x4d{left:634.752000px;}
.x80{left:639.735000px;}
.x13{left:647.950500px;}
.x14{left:656.577000px;}
.x39{left:659.134500px;}
.x59{left:666.223500px;}
.x3a{left:669.132000px;}
.x2b{left:671.209500px;}
.x8b{left:673.104000px;}
.x5a{left:676.221000px;}
.x2c{left:680.791500px;}
.x3b{left:687.640500px;}
.x2a{left:689.992500px;}
.x3c{left:694.327500px;}
.x8c{left:700.003500px;}
.x6{left:701.339982px;}
.x18{left:704.484000px;}
.x19{left:713.548500px;}
.x85{left:716.641500px;}
.x86{left:719.439000px;}
.x1e{left:721.810500px;}
.x2d{left:728.020500px;}
.x88{left:729.112500px;}
.x1f{left:730.438500px;}
.x7d{left:737.077500px;}
.x2e{left:742.963500px;}
.x7e{left:745.918500px;}
.x8d{left:749.563500px;}
.x43{left:756.148500px;}
.x28{left:758.091000px;}
.x44{left:771.091500px;}
.x29{left:773.034000px;}
.x8e{left:776.463000px;}
.x61{left:885.027765px;}
.x62{left:899.973795px;}
.x5f{left:1049.178810px;}
.x63{left:1066.546560px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v7{vertical-align:-1.440000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:12.766632pt;}
.v4{vertical-align:16.144800pt;}
.v1{vertical-align:19.285333pt;}
.v5{vertical-align:24.641280pt;}
.v3{vertical-align:27.175840pt;}
.v6{vertical-align:40.786080pt;}
.ls63{letter-spacing:-1.057920pt;}
.ls32{letter-spacing:-0.288576pt;}
.ls83{letter-spacing:-0.238610pt;}
.ls69{letter-spacing:-0.177688pt;}
.ls7d{letter-spacing:-0.172611pt;}
.ls84{letter-spacing:-0.142150pt;}
.ls82{letter-spacing:-0.131997pt;}
.ls79{letter-spacing:-0.126920pt;}
.ls2e{letter-spacing:-0.122912pt;}
.ls65{letter-spacing:-0.121843pt;}
.ls76{letter-spacing:-0.111690pt;}
.ls6a{letter-spacing:-0.106613pt;}
.ls33{letter-spacing:-0.101536pt;}
.ls87{letter-spacing:-0.096459pt;}
.ls8c{letter-spacing:-0.091382pt;}
.ls77{letter-spacing:-0.086306pt;}
.ls86{letter-spacing:-0.081229pt;}
.ls74{letter-spacing:-0.076821pt;}
.ls24{letter-spacing:-0.076608pt;}
.ls85{letter-spacing:-0.076152pt;}
.ls26{letter-spacing:-0.074816pt;}
.ls61{letter-spacing:-0.072778pt;}
.ls78{letter-spacing:-0.071075pt;}
.ls80{letter-spacing:-0.065998pt;}
.ls34{letter-spacing:-0.064128pt;}
.ls2d{letter-spacing:-0.058784pt;}
.ls89{letter-spacing:-0.055845pt;}
.ls28{letter-spacing:-0.053440pt;}
.ls88{letter-spacing:-0.050768pt;}
.ls27{letter-spacing:-0.048096pt;}
.ls8b{letter-spacing:-0.045691pt;}
.ls2b{letter-spacing:-0.042752pt;}
.ls7f{letter-spacing:-0.040614pt;}
.ls8a{letter-spacing:-0.035538pt;}
.ls2a{letter-spacing:-0.032064pt;}
.ls7e{letter-spacing:-0.030461pt;}
.ls7a{letter-spacing:-0.025384pt;}
.ls66{letter-spacing:-0.020307pt;}
.ls30{letter-spacing:-0.016032pt;}
.ls67{letter-spacing:-0.015230pt;}
.ls7b{letter-spacing:-0.013680pt;}
.ls75{letter-spacing:-0.012130pt;}
.ls29{letter-spacing:-0.010688pt;}
.ls81{letter-spacing:-0.010154pt;}
.ls2f{letter-spacing:-0.005344pt;}
.ls68{letter-spacing:-0.005077pt;}
.ls25{letter-spacing:-0.004256pt;}
.ls62{letter-spacing:-0.004043pt;}
.lse{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000213pt;}
.ls39{letter-spacing:0.000745pt;}
.lsb{letter-spacing:0.001349pt;}
.lsa{letter-spacing:0.001370pt;}
.ls10{letter-spacing:0.001680pt;}
.ls5f{letter-spacing:0.001977pt;}
.ls5e{letter-spacing:0.002078pt;}
.ls73{letter-spacing:0.002128pt;}
.ls3a{letter-spacing:0.002287pt;}
.ls3e{letter-spacing:0.002389pt;}
.ls8{letter-spacing:0.002630pt;}
.ls35{letter-spacing:0.002809pt;}
.ls40{letter-spacing:0.002815pt;}
.ls8d{letter-spacing:0.002972pt;}
.ls3f{letter-spacing:0.003017pt;}
.lsd{letter-spacing:0.003100pt;}
.ls9{letter-spacing:0.003106pt;}
.ls36{letter-spacing:0.003166pt;}
.ls11{letter-spacing:0.003198pt;}
.ls21{letter-spacing:0.003942pt;}
.ls3c{letter-spacing:0.003968pt;}
.ls4b{letter-spacing:0.004560pt;}
.ls38{letter-spacing:0.004772pt;}
.ls72{letter-spacing:0.004813pt;}
.ls5c{letter-spacing:0.005077pt;}
.ls19{letter-spacing:0.005344pt;}
.ls4a{letter-spacing:0.009120pt;}
.ls5a{letter-spacing:0.010154pt;}
.ls1e{letter-spacing:0.010688pt;}
.ls46{letter-spacing:0.013680pt;}
.ls17{letter-spacing:0.014400pt;}
.ls6d{letter-spacing:0.015230pt;}
.ls15{letter-spacing:0.016032pt;}
.ls48{letter-spacing:0.018240pt;}
.ls57{letter-spacing:0.020307pt;}
.ls4f{letter-spacing:0.022800pt;}
.ls71{letter-spacing:0.025384pt;}
.ls1d{letter-spacing:0.026720pt;}
.ls4d{letter-spacing:0.027360pt;}
.ls56{letter-spacing:0.030461pt;}
.ls51{letter-spacing:0.031920pt;}
.ls16{letter-spacing:0.033600pt;}
.ls70{letter-spacing:0.035538pt;}
.ls6f{letter-spacing:0.036480pt;}
.ls53{letter-spacing:0.040614pt;}
.ls50{letter-spacing:0.041040pt;}
.ls1b{letter-spacing:0.042752pt;}
.ls49{letter-spacing:0.045600pt;}
.ls54{letter-spacing:0.045691pt;}
.ls18{letter-spacing:0.048000pt;}
.ls1a{letter-spacing:0.048096pt;}
.ls4c{letter-spacing:0.050160pt;}
.ls55{letter-spacing:0.050768pt;}
.ls1c{letter-spacing:0.053440pt;}
.ls5d{letter-spacing:0.055845pt;}
.ls1f{letter-spacing:0.058784pt;}
.ls4e{letter-spacing:0.059280pt;}
.ls6b{letter-spacing:0.060648pt;}
.ls58{letter-spacing:0.060922pt;}
.ls52{letter-spacing:0.063840pt;}
.ls5b{letter-spacing:0.065998pt;}
.ls59{letter-spacing:0.071075pt;}
.ls44{letter-spacing:0.072778pt;}
.ls20{letter-spacing:0.074816pt;}
.ls12{letter-spacing:0.076608pt;}
.ls6e{letter-spacing:0.091200pt;}
.ls2c{letter-spacing:0.096192pt;}
.ls47{letter-spacing:0.104880pt;}
.ls6c{letter-spacing:0.145555pt;}
.ls45{letter-spacing:0.153642pt;}
.ls14{letter-spacing:0.161728pt;}
.ls13{letter-spacing:0.170240pt;}
.ls31{letter-spacing:1.047424pt;}
.lsf{letter-spacing:1.133683pt;}
.ls7{letter-spacing:1.654338pt;}
.ls64{letter-spacing:2.284560pt;}
.ls3b{letter-spacing:2.467912pt;}
.ls3d{letter-spacing:2.472872pt;}
.ls3{letter-spacing:2.651733pt;}
.ls22{letter-spacing:2.656284pt;}
.ls1{letter-spacing:2.657067pt;}
.ls23{letter-spacing:2.661617pt;}
.ls4{letter-spacing:2.665203pt;}
.ls7c{letter-spacing:4.104000pt;}
.lsc{letter-spacing:10.626533pt;}
.ls8f{letter-spacing:11.731539pt;}
.ls8e{letter-spacing:11.954133pt;}
.ls93{letter-spacing:11.959467pt;}
.ls92{letter-spacing:12.001962pt;}
.ls90{letter-spacing:14.706238pt;}
.ls91{letter-spacing:15.563754pt;}
.ls60{letter-spacing:15.943285pt;}
.ls37{letter-spacing:23.025992pt;}
.ls2{letter-spacing:51.035733pt;}
.ls5{letter-spacing:62.432533pt;}
.ls6{letter-spacing:64.314231pt;}
.ls41{letter-spacing:148.171200pt;}
.ls42{letter-spacing:148.176533pt;}
.ls43{letter-spacing:157.323200pt;}
.ws0{word-spacing:-104.553242pt;}
.ws3b{word-spacing:-40.947213pt;}
.ws8e{word-spacing:-37.714310pt;}
.ws1{word-spacing:-23.910400pt;}
.ws18{word-spacing:-15.461955pt;}
.ws8{word-spacing:-13.915853pt;}
.ws14{word-spacing:-13.283467pt;}
.ws24{word-spacing:-12.369595pt;}
.ws8d{word-spacing:-11.955200pt;}
.ws94{word-spacing:-11.400000pt;}
.ws81{word-spacing:-11.118336pt;}
.ws3d{word-spacing:-10.810240pt;}
.ws21{word-spacing:-10.626800pt;}
.ws93{word-spacing:-10.269728pt;}
.wsdb{word-spacing:-10.261642pt;}
.ws3{word-spacing:-10.095467pt;}
.wsdc{word-spacing:-7.600000pt;}
.ws46{word-spacing:-4.303843pt;}
.ws48{word-spacing:-4.144442pt;}
.ws47{word-spacing:-4.091308pt;}
.ws16{word-spacing:-3.400567pt;}
.ws155{word-spacing:-3.395277pt;}
.wsbe{word-spacing:-3.010542pt;}
.ws35{word-spacing:-2.709827pt;}
.wsbf{word-spacing:-2.533323pt;}
.ws49{word-spacing:-2.391024pt;}
.ws12{word-spacing:-2.337890pt;}
.wsee{word-spacing:-2.325600pt;}
.wsed{word-spacing:-2.284560pt;}
.wsef{word-spacing:-2.266320pt;}
.ws61{word-spacing:-2.164320pt;}
.ws12b{word-spacing:-2.056294pt;}
.wsa2{word-spacing:-1.965953pt;}
.wsa1{word-spacing:-1.912819pt;}
.ws63{word-spacing:-1.881088pt;}
.ws5f{word-spacing:-1.859712pt;}
.ws62{word-spacing:-1.832992pt;}
.wsd6{word-spacing:-1.812418pt;}
.wsfd{word-spacing:-1.761650pt;}
.ws118{word-spacing:-1.751496pt;}
.wsa{word-spacing:-1.696326pt;}
.ws117{word-spacing:-1.670267pt;}
.wsd7{word-spacing:-1.512886pt;}
.wsc5{word-spacing:-1.502733pt;}
.ws60{word-spacing:-1.501664pt;}
.wsbd{word-spacing:-1.492579pt;}
.ws7d{word-spacing:-1.487748pt;}
.wsc4{word-spacing:-1.472272pt;}
.wscd{word-spacing:-1.462118pt;}
.wsdf{word-spacing:-1.434614pt;}
.ws12e{word-spacing:-1.386803pt;}
.ws4c{word-spacing:-1.213088pt;}
.ws9{word-spacing:-1.175671pt;}
.wsa0{word-spacing:-1.168945pt;}
.ws4d{word-spacing:-1.122240pt;}
.wsc6{word-spacing:-1.121973pt;}
.wsb{word-spacing:-1.115811pt;}
.wsa8{word-spacing:-1.103520pt;}
.ws88{word-spacing:-1.099878pt;}
.wsb6{word-spacing:-1.098960pt;}
.wsb5{word-spacing:-1.089840pt;}
.wsa7{word-spacing:-1.076160pt;}
.wsa6{word-spacing:-1.071600pt;}
.wse3{word-spacing:-1.062677pt;}
.ws116{word-spacing:-1.045821pt;}
.wsc7{word-spacing:-1.035667pt;}
.ws10{word-spacing:-1.009543pt;}
.wsf{word-spacing:-0.956410pt;}
.ws89{word-spacing:-0.908595pt;}
.wse6{word-spacing:-0.903276pt;}
.ws8a{word-spacing:-0.860774pt;}
.ws7c{word-spacing:-0.797008pt;}
.wsf4{word-spacing:-0.793440pt;}
.wsf2{word-spacing:-0.784320pt;}
.wsf3{word-spacing:-0.770640pt;}
.ws9f{word-spacing:-0.637606pt;}
.ws128{word-spacing:-0.573850pt;}
.ws71{word-spacing:-0.566464pt;}
.ws77{word-spacing:-0.531339pt;}
.ws149{word-spacing:-0.526029pt;}
.ws11a{word-spacing:-0.517834pt;}
.ws11c{word-spacing:-0.497526pt;}
.ws72{word-spacing:-0.491648pt;}
.ws11d{word-spacing:-0.487373pt;}
.ws119{word-spacing:-0.482296pt;}
.ws26{word-spacing:-0.478205pt;}
.ws11b{word-spacing:-0.477219pt;}
.ws150{word-spacing:-0.430387pt;}
.ws10c{word-spacing:-0.401067pt;}
.ws10d{word-spacing:-0.390914pt;}
.ws123{word-spacing:-0.371937pt;}
.ws9c{word-spacing:-0.334746pt;}
.ws125{word-spacing:-0.318803pt;}
.wsc9{word-spacing:-0.294454pt;}
.ws143{word-spacing:-0.286925pt;}
.wsda{word-spacing:-0.274147pt;}
.ws111{word-spacing:-0.269070pt;}
.ws2b{word-spacing:-0.265669pt;}
.wsbc{word-spacing:-0.263994pt;}
.ws138{word-spacing:-0.239104pt;}
.wsa5{word-spacing:-0.226419pt;}
.wse8{word-spacing:-0.222376pt;}
.ws1f{word-spacing:-0.212535pt;}
.ws56{word-spacing:-0.203072pt;}
.ws103{word-spacing:-0.197995pt;}
.ws57{word-spacing:-0.192384pt;}
.ws127{word-spacing:-0.191283pt;}
.ws25{word-spacing:-0.159402pt;}
.ws96{word-spacing:-0.143462pt;}
.ws1e{word-spacing:-0.106268pt;}
.ws8b{word-spacing:-0.095642pt;}
.ws4a{word-spacing:-0.072352pt;}
.wsa4{word-spacing:-0.068734pt;}
.wse7{word-spacing:-0.064691pt;}
.ws27{word-spacing:-0.053134pt;}
.ws3e{word-spacing:-0.047821pt;}
.ws22{word-spacing:-0.042507pt;}
.ws7{word-spacing:-0.009719pt;}
.ws4{word-spacing:-0.005274pt;}
.ws2{word-spacing:0.000000pt;}
.ws45{word-spacing:0.004000pt;}
.ws65{word-spacing:0.010688pt;}
.wsc8{word-spacing:0.020307pt;}
.ws102{word-spacing:0.035538pt;}
.ws5b{word-spacing:0.042752pt;}
.ws95{word-spacing:0.047821pt;}
.ws13{word-spacing:0.053134pt;}
.wsc2{word-spacing:0.060922pt;}
.wsca{word-spacing:0.086306pt;}
.ws6{word-spacing:0.095642pt;}
.wsad{word-spacing:0.095760pt;}
.ws55{word-spacing:0.096192pt;}
.wsc3{word-spacing:0.101536pt;}
.ws11{word-spacing:0.106268pt;}
.ws10a{word-spacing:0.106613pt;}
.wsb9{word-spacing:0.109440pt;}
.wsf7{word-spacing:0.114000pt;}
.wsf0{word-spacing:0.118560pt;}
.ws122{word-spacing:0.121843pt;}
.wsac{word-spacing:0.127680pt;}
.ws4e{word-spacing:0.133600pt;}
.ws4f{word-spacing:0.138944pt;}
.wsf1{word-spacing:0.141360pt;}
.ws9b{word-spacing:0.143462pt;}
.ws2c{word-spacing:0.159402pt;}
.ws53{word-spacing:0.163200pt;}
.ws129{word-spacing:0.191283pt;}
.ws5c{word-spacing:0.208416pt;}
.wse{word-spacing:0.212535pt;}
.wsdd{word-spacing:0.239104pt;}
.ws34{word-spacing:0.265669pt;}
.ws126{word-spacing:0.286925pt;}
.ws33{word-spacing:0.318803pt;}
.ws101{word-spacing:0.329992pt;}
.ws2a{word-spacing:0.425071pt;}
.ws9a{word-spacing:0.430387pt;}
.ws52{word-spacing:0.436800pt;}
.ws50{word-spacing:0.451200pt;}
.ws51{word-spacing:0.470400pt;}
.ws90{word-spacing:0.478205pt;}
.ws5{word-spacing:0.499721pt;}
.ws8f{word-spacing:0.531339pt;}
.ws99{word-spacing:0.573850pt;}
.ws7b{word-spacing:0.637606pt;}
.ws12c{word-spacing:0.669491pt;}
.wsab{word-spacing:0.715920pt;}
.wse4{word-spacing:0.743874pt;}
.ws113{word-spacing:0.756443pt;}
.wsaa{word-spacing:0.761520pt;}
.ws131{word-spacing:0.765133pt;}
.ws112{word-spacing:0.766597pt;}
.ws2e{word-spacing:0.797008pt;}
.wse2{word-spacing:0.850142pt;}
.ws142{word-spacing:0.860774pt;}
.ws124{word-spacing:0.903276pt;}
.wsd1{word-spacing:0.949362pt;}
.wsff{word-spacing:0.964592pt;}
.ws64{word-spacing:0.988640pt;}
.ws28{word-spacing:1.009543pt;}
.ws70{word-spacing:1.031392pt;}
.ws6c{word-spacing:1.058112pt;}
.ws31{word-spacing:1.062677pt;}
.ws86{word-spacing:1.115811pt;}
.ws6d{word-spacing:1.122240pt;}
.ws148{word-spacing:1.147699pt;}
.ws121{word-spacing:1.269200pt;}
.ws29{word-spacing:1.275213pt;}
.wsfe{word-spacing:1.284430pt;}
.ws74{word-spacing:1.328347pt;}
.ws154{word-spacing:1.338982pt;}
.ws120{word-spacing:1.380890pt;}
.ws3c{word-spacing:1.381481pt;}
.ws151{word-spacing:1.434624pt;}
.ws137{word-spacing:1.482445pt;}
.ws91{word-spacing:1.487748pt;}
.wsbb{word-spacing:1.553501pt;}
.wsb8{word-spacing:1.614240pt;}
.wsb4{word-spacing:1.627920pt;}
.wsb3{word-spacing:1.664400pt;}
.wsb7{word-spacing:1.678080pt;}
.wsc{word-spacing:1.700284pt;}
.ws32{word-spacing:1.753418pt;}
.wsde{word-spacing:1.769370pt;}
.ws76{word-spacing:1.859685pt;}
.ws147{word-spacing:1.960653pt;}
.ws2d{word-spacing:1.965953pt;}
.ws73{word-spacing:2.019087pt;}
.ws36{word-spacing:2.125355pt;}
.ws97{word-spacing:2.151936pt;}
.ws1d{word-spacing:2.178489pt;}
.wsa9{word-spacing:2.270880pt;}
.ws145{word-spacing:2.391040pt;}
.wscc{word-spacing:2.502862pt;}
.wscb{word-spacing:2.528246pt;}
.ws68{word-spacing:2.570464pt;}
.ws6a{word-spacing:2.597184pt;}
.ws92{word-spacing:2.603559pt;}
.ws19{word-spacing:2.656693pt;}
.ws6b{word-spacing:2.677344pt;}
.ws141{word-spacing:2.773606pt;}
.wsd0{word-spacing:2.787163pt;}
.ws14d{word-spacing:2.821427pt;}
.ws11f{word-spacing:2.848085pt;}
.ws11e{word-spacing:2.868392pt;}
.ws1c{word-spacing:2.869229pt;}
.ws69{word-spacing:2.939200pt;}
.ws3f{word-spacing:2.975497pt;}
.ws38{word-spacing:3.028630pt;}
.ws37{word-spacing:3.081764pt;}
.ws87{word-spacing:3.134898pt;}
.ws13f{word-spacing:3.251814pt;}
.wsd{word-spacing:3.294300pt;}
.ws15{word-spacing:3.400567pt;}
.ws14f{word-spacing:3.634381pt;}
.ws13b{word-spacing:3.682202pt;}
.wsf6{word-spacing:3.762000pt;}
.ws75{word-spacing:3.878772pt;}
.ws135{word-spacing:4.016947pt;}
.ws109{word-spacing:4.046210pt;}
.ws108{word-spacing:4.066517pt;}
.wsaf{word-spacing:4.067520pt;}
.wsae{word-spacing:4.085760pt;}
.wsf5{word-spacing:4.094880pt;}
.wsb0{word-spacing:4.104000pt;}
.ws9d{word-spacing:4.144442pt;}
.wse0{word-spacing:4.197575pt;}
.ws14a{word-spacing:4.208230pt;}
.ws100{word-spacing:4.310203pt;}
.ws7a{word-spacing:4.356977pt;}
.ws42{word-spacing:4.463245pt;}
.ws58{word-spacing:4.472928pt;}
.wse5{word-spacing:4.516379pt;}
.ws79{word-spacing:4.622646pt;}
.ws133{word-spacing:4.781943pt;}
.ws13a{word-spacing:4.782080pt;}
.ws17{word-spacing:4.835182pt;}
.ws59{word-spacing:4.943200pt;}
.wse9{word-spacing:5.026032pt;}
.wscf{word-spacing:5.051416pt;}
.wsce{word-spacing:5.122491pt;}
.ws6e{word-spacing:5.162304pt;}
.wse1{word-spacing:5.207119pt;}
.ws1a{word-spacing:5.307978pt;}
.ws1b{word-spacing:5.313387pt;}
.ws98{word-spacing:5.403750pt;}
.ws14c{word-spacing:5.451571pt;}
.ws106{word-spacing:5.513405pt;}
.wsa3{word-spacing:5.632190pt;}
.ws3a{word-spacing:5.791591pt;}
.ws13d{word-spacing:5.834138pt;}
.ws67{word-spacing:5.840992pt;}
.ws105{word-spacing:5.884011pt;}
.ws104{word-spacing:5.894165pt;}
.ws43{word-spacing:6.004127pt;}
.wsd3{word-spacing:6.097237pt;}
.ws66{word-spacing:6.134912pt;}
.wsd2{word-spacing:6.163235pt;}
.ws134{word-spacing:6.168883pt;}
.ws44{word-spacing:6.322930pt;}
.wsfa{word-spacing:6.447536pt;}
.wsfb{word-spacing:6.630301pt;}
.ws30{word-spacing:6.694867pt;}
.ws5e{word-spacing:6.754816pt;}
.ws5d{word-spacing:6.813600pt;}
.ws153{word-spacing:7.029658pt;}
.wsba{word-spacing:7.036445pt;}
.ws114{word-spacing:7.056752pt;}
.ws115{word-spacing:7.107520pt;}
.ws41{word-spacing:7.279340pt;}
.wsb2{word-spacing:7.396320pt;}
.ws54{word-spacing:7.444192pt;}
.wsb1{word-spacing:7.451040pt;}
.wsd4{word-spacing:7.965499pt;}
.wsd5{word-spacing:7.985806pt;}
.ws4b{word-spacing:8.086400pt;}
.wsc1{word-spacing:8.259954pt;}
.wsc0{word-spacing:8.391950pt;}
.wsf9{word-spacing:8.549331pt;}
.wsf8{word-spacing:8.696558pt;}
.ws10b{word-spacing:9.463155pt;}
.ws78{word-spacing:9.723498pt;}
.ws20{word-spacing:10.585953pt;}
.wsd9{word-spacing:10.671434pt;}
.wsd8{word-spacing:11.026810pt;}
.ws130{word-spacing:11.237888pt;}
.ws144{word-spacing:11.620454pt;}
.ws139{word-spacing:11.668275pt;}
.ws6f{word-spacing:11.708704pt;}
.ws12d{word-spacing:11.900749pt;}
.ws132{word-spacing:11.901261pt;}
.ws13c{word-spacing:11.903684pt;}
.ws136{word-spacing:11.906082pt;}
.ws12a{word-spacing:11.907379pt;}
.ws152{word-spacing:11.955200pt;}
.wseb{word-spacing:12.001555pt;}
.ws146{word-spacing:12.050842pt;}
.wsec{word-spacing:12.057400pt;}
.ws39{word-spacing:13.230333pt;}
.wsfc{word-spacing:13.428136pt;}
.ws107{word-spacing:14.123658pt;}
.ws2f{word-spacing:14.293010pt;}
.ws40{word-spacing:14.346144pt;}
.ws14e{word-spacing:14.728806pt;}
.ws9e{word-spacing:14.824349pt;}
.ws5a{word-spacing:15.401408pt;}
.ws13e{word-spacing:16.684100pt;}
.ws14b{word-spacing:16.685722pt;}
.ws12f{word-spacing:16.689459pt;}
.wsea{word-spacing:17.083432pt;}
.ws110{word-spacing:18.042947pt;}
.ws10f{word-spacing:18.053101pt;}
.ws10e{word-spacing:18.088638pt;}
.ws140{word-spacing:23.527834pt;}
.ws82{word-spacing:115.497274pt;}
.ws80{word-spacing:123.680370pt;}
.ws7e{word-spacing:151.387263pt;}
.ws8c{word-spacing:152.165786pt;}
.ws7f{word-spacing:152.973463pt;}
.ws83{word-spacing:158.236158pt;}
.ws84{word-spacing:162.105339pt;}
.ws85{word-spacing:240.022638pt;}
.ws23{word-spacing:941.534480pt;}
._2{margin-left:-5.919022pt;}
._3{margin-left:-4.399514pt;}
._3a{margin-left:-3.480600pt;}
._4{margin-left:-2.582323pt;}
._0{margin-left:-1.137234pt;}
._7{width:0.969929pt;}
._1{width:2.667989pt;}
._17{width:3.900381pt;}
._38{width:8.990310pt;}
._14{width:10.592411pt;}
._d{width:12.135944pt;}
._19{width:13.762072pt;}
._37{width:14.919791pt;}
._5{width:15.876506pt;}
._6{width:17.598054pt;}
._9{width:18.862523pt;}
._11{width:20.467364pt;}
._f{width:22.103689pt;}
._12{width:23.134655pt;}
._8{width:24.282177pt;}
._10{width:25.419411pt;}
._c{width:26.854025pt;}
._a{width:29.325053pt;}
._15{width:31.295847pt;}
._b{width:32.996131pt;}
._18{width:38.288095pt;}
._3c{width:54.993920pt;}
._16{width:62.060356pt;}
._36{width:63.548105pt;}
._31{width:105.349222pt;}
._34{width:110.714667pt;}
._1b{width:118.032255pt;}
._27{width:124.966749pt;}
._1c{width:143.915741pt;}
._28{width:149.254934pt;}
._22{width:152.854883pt;}
._26{width:154.718064pt;}
._25{width:162.033107pt;}
._21{width:162.994806pt;}
._2b{width:178.025326pt;}
._23{width:179.186847pt;}
._33{width:234.427486pt;}
._2d{width:255.809683pt;}
._20{width:296.669321pt;}
._2f{width:313.502407pt;}
._1d{width:332.037986pt;}
._32{width:345.491661pt;}
._30{width:397.247386pt;}
._1f{width:505.839815pt;}
._1e{width:530.211207pt;}
._24{width:764.410706pt;}
._2a{width:765.922846pt;}
._2e{width:768.101993pt;}
._2c{width:779.130905pt;}
._29{width:796.119722pt;}
._35{width:1424.528965pt;}
._13{width:1482.905751pt;}
._39{width:1843.738124pt;}
._3b{width:1844.636401pt;}
._e{width:1864.991457pt;}
._1a{width:3180.271457pt;}
.fs13{font-size:30.400000pt;}
.fse{font-size:34.590048pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fs3{font-size:40.381867pt;}
.fsf{font-size:40.432000pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:42.560000pt;}
.fsd{font-size:44.473344pt;}
.fs10{font-size:45.600000pt;}
.fs5{font-size:47.820800pt;}
.fsa{font-size:48.000000pt;}
.fs12{font-size:50.768000pt;}
.fs1{font-size:53.133867pt;}
.fsb{font-size:53.440000pt;}
.fs11{font-size:60.800000pt;}
.fsc{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.yf8{bottom:-654.747220pt;}
.y143{bottom:-652.471020pt;}
.y16a{bottom:-624.576816pt;}
.y11c{bottom:-622.825672pt;}
.y169{bottom:-607.476884pt;}
.y11b{bottom:-605.725741pt;}
.y168{bottom:-590.453105pt;}
.y11a{bottom:-588.625809pt;}
.y167{bottom:-573.353173pt;}
.y119{bottom:-571.525877pt;}
.y166{bottom:-556.253242pt;}
.y118{bottom:-554.425946pt;}
.y165{bottom:-539.153310pt;}
.y117{bottom:-537.326014pt;}
.y164{bottom:-522.053378pt;}
.y116{bottom:-520.226083pt;}
.y163{bottom:-504.953447pt;}
.y115{bottom:-503.202303pt;}
.y6a{bottom:-492.332933pt;}
.y162{bottom:-487.853515pt;}
.y114{bottom:-486.102371pt;}
.y161{bottom:-470.829736pt;}
.y84{bottom:-470.490784pt;}
.y113{bottom:-469.002440pt;}
.y160{bottom:-453.729804pt;}
.y83{bottom:-452.490856pt;}
.y112{bottom:-451.902508pt;}
.y15f{bottom:-436.629872pt;}
.y82{bottom:-434.490928pt;}
.y111{bottom:-427.202607pt;}
.y15e{bottom:-419.529941pt;}
.y81{bottom:-416.571160pt;}
.y15d{bottom:-402.430009pt;}
.y80{bottom:-398.571232pt;}
.y110{bottom:-394.902736pt;}
.y15c{bottom:-385.330078pt;}
.y7f{bottom:-380.571304pt;}
.y10f{bottom:-377.878957pt;}
.y15b{bottom:-368.306298pt;}
.y7e{bottom:-362.571376pt;}
.y10e{bottom:-360.779025pt;}
.y15a{bottom:-351.206366pt;}
.y7d{bottom:-344.571448pt;}
.y10d{bottom:-343.679093pt;}
.y159{bottom:-334.106435pt;}
.y10c{bottom:-326.579093pt;}
.y10b{bottom:-326.578658pt;}
.y7c{bottom:-326.571520pt;}
.y10a{bottom:-309.478726pt;}
.y158{bottom:-309.330382pt;}
.y7b{bottom:-308.571592pt;}
.y109{bottom:-292.378794pt;}
.y7a{bottom:-290.651824pt;}
.y157{bottom:-277.106663pt;}
.y108{bottom:-275.278863pt;}
.y79{bottom:-272.651896pt;}
.y156{bottom:-260.006731pt;}
.y107{bottom:-258.255083pt;}
.y78{bottom:-254.651968pt;}
.y155{bottom:-242.906800pt;}
.y106{bottom:-241.155152pt;}
.y77{bottom:-236.652040pt;}
.y154{bottom:-225.882678pt;}
.y105{bottom:-224.055220pt;}
.y76{bottom:-218.652112pt;}
.y153{bottom:-208.782746pt;}
.y75{bottom:-200.652184pt;}
.y104{bottom:-192.136740pt;}
.y152{bottom:-191.682815pt;}
.y74{bottom:-182.652256pt;}
.y103{bottom:-175.720740pt;}
.y151{bottom:-174.582883pt;}
.y73{bottom:-164.732488pt;}
.y102{bottom:-159.228360pt;}
.y150{bottom:-157.482952pt;}
.y101{bottom:-142.735980pt;}
.y14f{bottom:-140.383020pt;}
.y72{bottom:-138.732592pt;}
.y100{bottom:-126.319980pt;}
.yff{bottom:-109.827600pt;}
.y14e{bottom:-108.539780pt;}
.y71{bottom:-104.732728pt;}
.yfe{bottom:-93.335220pt;}
.y14d{bottom:-92.047400pt;}
.y70{bottom:-86.732800pt;}
.yfd{bottom:-76.919220pt;}
.y14c{bottom:-75.555020pt;}
.yfc{bottom:-60.426840pt;}
.y14b{bottom:-59.062640pt;}
.y6f{bottom:-53.213333pt;}
.yfb{bottom:-43.859220pt;}
.y14a{bottom:-42.646640pt;}
.y6e{bottom:-35.852933pt;}
.yfa{bottom:-27.443220pt;}
.y149{bottom:-26.079020pt;}
.y6d{bottom:-6.652933pt;}
.y148{bottom:-4.723020pt;}
.y0{bottom:0.000000pt;}
.yf9{bottom:1.056780pt;}
.y17{bottom:3.044747pt;}
.y2{bottom:12.267116pt;}
.y16{bottom:12.578910pt;}
.y31{bottom:56.693333pt;}
.y30{bottom:96.544000pt;}
.y1b3{bottom:103.942667pt;}
.y9a{bottom:104.202667pt;}
.y66{bottom:108.724000pt;}
.y140{bottom:113.141333pt;}
.y67{bottom:113.546667pt;}
.y2f{bottom:114.556000pt;}
.y191{bottom:120.153333pt;}
.y1b2{bottom:121.158667pt;}
.y99{bottom:122.214667pt;}
.y65{bottom:126.737333pt;}
.y13f{bottom:131.154667pt;}
.y2e{bottom:132.568000pt;}
.y190{bottom:138.165333pt;}
.y1b1{bottom:138.374667pt;}
.y98{bottom:140.228000pt;}
.y64{bottom:144.749333pt;}
.y13e{bottom:149.166667pt;}
.y2d{bottom:150.581333pt;}
.y1b0{bottom:155.589333pt;}
.y18f{bottom:156.178667pt;}
.y97{bottom:158.240000pt;}
.y63{bottom:162.762667pt;}
.y13c{bottom:167.178667pt;}
.y2c{bottom:168.593333pt;}
.y13d{bottom:172.001333pt;}
.y1af{bottom:172.805333pt;}
.y18e{bottom:174.190667pt;}
.y96{bottom:176.253333pt;}
.y62{bottom:180.774667pt;}
.y13b{bottom:185.192000pt;}
.y2b{bottom:186.606667pt;}
.y1ae{bottom:190.020000pt;}
.y18d{bottom:192.202667pt;}
.y95{bottom:194.265333pt;}
.y61{bottom:198.786667pt;}
.y147{bottom:199.337337pt;}
.y1e2{bottom:200.144000pt;}
.y13a{bottom:203.204000pt;}
.y1ad{bottom:207.236000pt;}
.y18c{bottom:210.216000pt;}
.y94{bottom:212.277333pt;}
.y2a{bottom:212.589333pt;}
.y146{bottom:216.361117pt;}
.y1e1{bottom:217.358667pt;}
.y139{bottom:221.217333pt;}
.y1ac{bottom:224.452000pt;}
.y60{bottom:224.769333pt;}
.y18b{bottom:228.228000pt;}
.y92{bottom:230.290667pt;}
.y145{bottom:233.461048pt;}
.y1e0{bottom:234.574667pt;}
.y93{bottom:235.112000pt;}
.yf5{bottom:235.485333pt;}
.y138{bottom:239.229333pt;}
.y1ab{bottom:241.666667pt;}
.y18a{bottom:246.241333pt;}
.y91{bottom:248.302667pt;}
.y144{bottom:250.560980pt;}
.y1df{bottom:251.790667pt;}
.yf4{bottom:253.498667pt;}
.y5f{bottom:255.720000pt;}
.y137{bottom:257.241333pt;}
.y1aa{bottom:258.882667pt;}
.y189{bottom:264.253333pt;}
.y90{bottom:266.316000pt;}
.y1de{bottom:269.005333pt;}
.yf3{bottom:271.510667pt;}
.y5e{bottom:273.733333pt;}
.y136{bottom:275.254667pt;}
.y1a9{bottom:276.097333pt;}
.yf7{bottom:279.900780pt;}
.y29{bottom:280.513333pt;}
.y142{bottom:282.176980pt;}
.y188{bottom:282.265333pt;}
.y8f{bottom:284.328000pt;}
.y1dd{bottom:286.221333pt;}
.yf2{bottom:289.524000pt;}
.y5d{bottom:291.745333pt;}
.y135{bottom:293.266667pt;}
.y1a8{bottom:293.313333pt;}
.y187{bottom:300.278667pt;}
.y8e{bottom:302.340000pt;}
.y1db{bottom:303.437333pt;}
.yf1{bottom:307.536000pt;}
.y1dc{bottom:307.776000pt;}
.y1a7{bottom:310.529333pt;}
.y134{bottom:311.280000pt;}
.y28{bottom:314.466667pt;}
.y5c{bottom:317.728000pt;}
.y186{bottom:318.290667pt;}
.y8d{bottom:320.353333pt;}
.y1da{bottom:320.652000pt;}
.yf0{bottom:325.548000pt;}
.y1a6{bottom:327.744000pt;}
.y133{bottom:329.292000pt;}
.y27{bottom:332.478667pt;}
.y185{bottom:336.304000pt;}
.y1d9{bottom:337.868000pt;}
.y8c{bottom:338.365333pt;}
.yef{bottom:343.561333pt;}
.y1a5{bottom:344.960000pt;}
.y132{bottom:347.304000pt;}
.y5b{bottom:348.678667pt;}
.y26{bottom:350.492000pt;}
.y184{bottom:354.316000pt;}
.y1d8{bottom:355.082667pt;}
.y8b{bottom:356.378667pt;}
.yee{bottom:361.573333pt;}
.y1a4{bottom:362.174667pt;}
.y131{bottom:365.317333pt;}
.y25{bottom:368.504000pt;}
.y1d7{bottom:372.298667pt;}
.y183{bottom:372.328000pt;}
.y8a{bottom:374.390667pt;}
.y1a3{bottom:379.390667pt;}
.yed{bottom:379.586667pt;}
.y5a{bottom:379.629333pt;}
.y130{bottom:383.329333pt;}
.y24{bottom:386.517333pt;}
.y1d6{bottom:389.514667pt;}
.y182{bottom:390.341333pt;}
.y1a2{bottom:396.606667pt;}
.yec{bottom:397.598667pt;}
.y58{bottom:397.642667pt;}
.ybe{bottom:397.748000pt;}
.y89{bottom:400.373333pt;}
.y12f{bottom:401.341333pt;}
.y59{bottom:402.464000pt;}
.y23{bottom:404.529333pt;}
.y1d5{bottom:406.729333pt;}
.y181{bottom:408.353333pt;}
.yeb{bottom:415.610667pt;}
.y57{bottom:415.654667pt;}
.ybd{bottom:415.761333pt;}
.y12e{bottom:419.354667pt;}
.y1a1{bottom:421.792000pt;}
.y22{bottom:422.541333pt;}
.y1d4{bottom:423.945333pt;}
.y180{bottom:426.366667pt;}
.y88{bottom:431.324000pt;}
.yea{bottom:433.624000pt;}
.y56{bottom:433.666667pt;}
.ybc{bottom:433.773333pt;}
.y12d{bottom:437.366667pt;}
.y6c{bottom:440.547139pt;}
.y21{bottom:440.554667pt;}
.y1d3{bottom:441.160000pt;}
.y17f{bottom:444.378667pt;}
.y87{bottom:449.336000pt;}
.ycf{bottom:449.637333pt;}
.ye9{bottom:451.636000pt;}
.y55{bottom:451.680000pt;}
.yba{bottom:451.785333pt;}
.y12c{bottom:455.380000pt;}
.ybb{bottom:456.608000pt;}
.y1a0{bottom:456.860000pt;}
.y1d2{bottom:458.376000pt;}
.y6b{bottom:458.547067pt;}
.y20{bottom:458.566667pt;}
.y17e{bottom:462.390667pt;}
.yce{bottom:468.680667pt;}
.ye8{bottom:469.649333pt;}
.y54{bottom:469.692000pt;}
.yb9{bottom:469.798667pt;}
.y19f{bottom:470.369333pt;}
.y12b{bottom:473.392000pt;}
.y1d1{bottom:475.592000pt;}
.y1f{bottom:476.580000pt;}
.y17d{bottom:480.404000pt;}
.y86{bottom:480.448000pt;}
.ycd{bottom:482.564947pt;}
.y19e{bottom:483.878667pt;}
.ye7{bottom:487.661333pt;}
.y53{bottom:487.704000pt;}
.yb7{bottom:487.810667pt;}
.yca{bottom:489.133227pt;}
.y12a{bottom:491.404000pt;}
.y69{bottom:491.747067pt;}
.yb8{bottom:492.633333pt;}
.y1d0{bottom:492.806667pt;}
.y1e{bottom:494.592000pt;}
.ycc{bottom:496.449227pt;}
.y85{bottom:497.544000pt;}
.y17c{bottom:498.416000pt;}
.y19d{bottom:505.358667pt;}
.ye6{bottom:505.673333pt;}
.y52{bottom:505.717333pt;}
.yb5{bottom:505.824000pt;}
.y129{bottom:509.417333pt;}
.y1cf{bottom:510.022667pt;}
.ycb{bottom:510.333507pt;}
.yb6{bottom:510.645333pt;}
.y1d{bottom:512.604000pt;}
.y17b{bottom:516.429333pt;}
.y68{bottom:517.481333pt;}
.y19c{bottom:518.868000pt;}
.y51{bottom:523.729333pt;}
.yb4{bottom:523.836000pt;}
.y1ce{bottom:527.237333pt;}
.yc9{bottom:529.875907pt;}
.y1c{bottom:530.617333pt;}
.ye5{bottom:531.656000pt;}
.y19b{bottom:532.377333pt;}
.y17a{bottom:534.441333pt;}
.y128{bottom:535.400000pt;}
.y50{bottom:541.742667pt;}
.yb2{bottom:541.848000pt;}
.yc8{bottom:543.465067pt;}
.y1cd{bottom:544.453333pt;}
.yb3{bottom:546.670667pt;}
.y1b{bottom:548.629333pt;}
.yc5{bottom:550.260267pt;}
.y179{bottom:552.453333pt;}
.y19a{bottom:553.857333pt;}
.yc7{bottom:557.054227pt;}
.y4f{bottom:559.754667pt;}
.yb1{bottom:559.861333pt;}
.y1cc{bottom:561.669333pt;}
.y127{bottom:563.509333pt;}
.y1a{bottom:566.642667pt;}
.y199{bottom:567.366667pt;}
.y178{bottom:570.466667pt;}
.yc6{bottom:570.643387pt;}
.ye4{bottom:570.700000pt;}
.y4e{bottom:577.766667pt;}
.yb0{bottom:577.873333pt;}
.yc4{bottom:578.367347pt;}
.y1cb{bottom:578.884000pt;}
.y126{bottom:580.605333pt;}
.y19{bottom:584.654667pt;}
.ye3{bottom:586.029333pt;}
.y177{bottom:588.478667pt;}
.y198{bottom:588.845333pt;}
.y4d{bottom:595.780000pt;}
.yae{bottom:595.886667pt;}
.y1ca{bottom:596.100000pt;}
.y125{bottom:597.701333pt;}
.yaf{bottom:600.708000pt;}
.ye2{bottom:601.358667pt;}
.y197{bottom:602.354667pt;}
.y18{bottom:602.666667pt;}
.yc3{bottom:604.366427pt;}
.y176{bottom:606.492000pt;}
.y1c9{bottom:613.314667pt;}
.y4c{bottom:613.792000pt;}
.yad{bottom:613.898667pt;}
.y124{bottom:614.797333pt;}
.y196{bottom:615.865333pt;}
.ye1{bottom:616.689333pt;}
.yc2{bottom:623.908827pt;}
.y175{bottom:624.504000pt;}
.y195{bottom:629.374667pt;}
.y15{bottom:630.397301pt;}
.y1c8{bottom:630.530667pt;}
.yc1{bottom:630.704027pt;}
.y14{bottom:631.078667pt;}
.y4b{bottom:631.805333pt;}
.y123{bottom:631.892000pt;}
.yac{bottom:631.910667pt;}
.ye0{bottom:638.378667pt;}
.y174{bottom:642.516000pt;}
.y194{bottom:642.884000pt;}
.y1c7{bottom:647.746667pt;}
.y122{bottom:648.988000pt;}
.y4a{bottom:649.817333pt;}
.yab{bottom:649.924000pt;}
.y193{bottom:656.393333pt;}
.ydf{bottom:659.710667pt;}
.y173{bottom:660.529333pt;}
.yc0{bottom:664.553333pt;}
.y1c6{bottom:664.961333pt;}
.y13{bottom:665.749333pt;}
.y121{bottom:666.084000pt;}
.y49{bottom:667.829333pt;}
.yaa{bottom:667.936000pt;}
.y172{bottom:678.541333pt;}
.y1c5{bottom:682.177333pt;}
.y120{bottom:683.180000pt;}
.y48{bottom:685.842667pt;}
.ya9{bottom:685.949333pt;}
.y12{bottom:686.229333pt;}
.yde{bottom:687.817333pt;}
.y11{bottom:698.029333pt;}
.y1c4{bottom:699.392000pt;}
.y11f{bottom:700.276000pt;}
.y47{bottom:703.854667pt;}
.ya7{bottom:703.961333pt;}
.y171{bottom:704.524000pt;}
.ydd{bottom:704.913333pt;}
.ya8{bottom:708.782667pt;}
.ybf{bottom:709.729333pt;}
.y1c3{bottom:716.608000pt;}
.y11e{bottom:717.372000pt;}
.y10{bottom:718.508000pt;}
.y46{bottom:721.868000pt;}
.ya6{bottom:721.973333pt;}
.ydc{bottom:722.009333pt;}
.y170{bottom:732.633333pt;}
.y1c2{bottom:733.824000pt;}
.y11d{bottom:734.468000pt;}
.yf{bottom:734.648000pt;}
.y45{bottom:739.880000pt;}
.ya5{bottom:739.986667pt;}
.y192{bottom:744.701333pt;}
.ye{bottom:746.448000pt;}
.y16f{bottom:749.729333pt;}
.y1c1{bottom:751.038667pt;}
.yf6{bottom:754.405333pt;}
.ydb{bottom:754.997333pt;}
.y44{bottom:757.892000pt;}
.ya3{bottom:757.998667pt;}
.yd{bottom:762.586667pt;}
.ya4{bottom:762.821333pt;}
.y16e{bottom:766.825333pt;}
.yc{bottom:766.926667pt;}
.y1c0{bottom:768.254667pt;}
.yda{bottom:773.009333pt;}
.y43{bottom:775.905333pt;}
.ya2{bottom:776.012000pt;}
.yb{bottom:778.726667pt;}
.y16d{bottom:783.921333pt;}
.y1bf{bottom:785.469333pt;}
.yd9{bottom:791.021333pt;}
.y41{bottom:793.917333pt;}
.ya1{bottom:794.024000pt;}
.y42{bottom:798.740000pt;}
.ya{bottom:799.206667pt;}
.y16c{bottom:801.017333pt;}
.y1be{bottom:802.685333pt;}
.yd8{bottom:809.034667pt;}
.y3f{bottom:811.930667pt;}
.ya0{bottom:812.036000pt;}
.y9{bottom:815.210667pt;}
.y40{bottom:816.752000pt;}
.y16b{bottom:818.113333pt;}
.y1bd{bottom:819.901333pt;}
.y1e5{bottom:825.126667pt;}
.yd7{bottom:827.046667pt;}
.y3d{bottom:829.942667pt;}
.y9e{bottom:830.049333pt;}
.y8{bottom:833.222667pt;}
.y3e{bottom:834.764000pt;}
.y9f{bottom:834.870667pt;}
.y1bc{bottom:837.116000pt;}
.y141{bottom:838.050667pt;}
.y1e4{bottom:842.341333pt;}
.yd6{bottom:845.060000pt;}
.y3c{bottom:847.954667pt;}
.y9d{bottom:848.061333pt;}
.y1bb{bottom:854.332000pt;}
.y1e3{bottom:859.557333pt;}
.yd5{bottom:863.072000pt;}
.y3b{bottom:865.968000pt;}
.y7{bottom:871.160000pt;}
.y1ba{bottom:871.546667pt;}
.y9c{bottom:874.044000pt;}
.yd4{bottom:881.084000pt;}
.y39{bottom:883.980000pt;}
.y1b9{bottom:888.762667pt;}
.y3a{bottom:888.802667pt;}
.y9b{bottom:889.054667pt;}
.y6{bottom:898.178667pt;}
.yd3{bottom:899.097333pt;}
.y38{bottom:901.993333pt;}
.y1b8{bottom:905.978667pt;}
.yd2{bottom:917.109333pt;}
.y37{bottom:920.005333pt;}
.y1b7{bottom:923.193333pt;}
.y5{bottom:925.198667pt;}
.yd1{bottom:935.122667pt;}
.y36{bottom:938.017333pt;}
.y1b6{bottom:940.409333pt;}
.y4{bottom:952.217333pt;}
.y35{bottom:956.030667pt;}
.y1b5{bottom:957.624000pt;}
.yd0{bottom:961.105333pt;}
.y34{bottom:974.042667pt;}
.y1b4{bottom:974.840000pt;}
.y3{bottom:977.906667pt;}
.y33{bottom:992.056000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.h33{height:20.344899pt;}
.hf{height:22.088881pt;}
.h9{height:22.673858pt;}
.h1d{height:24.760382pt;}
.h7{height:27.076941pt;}
.h11{height:29.064225pt;}
.h29{height:29.396117pt;}
.h10{height:29.397999pt;}
.hb{height:29.433775pt;}
.h2a{height:30.392578pt;}
.ha{height:30.399505pt;}
.h25{height:30.945242pt;}
.h13{height:31.067969pt;}
.he{height:31.157778pt;}
.h14{height:31.992188pt;}
.h21{height:32.020808pt;}
.h24{height:32.376594pt;}
.h2c{height:33.153516pt;}
.h34{height:33.713664pt;}
.h1b{height:34.430976pt;}
.h8{height:34.813542pt;}
.h18{height:34.898438pt;}
.h17{height:35.039062pt;}
.h32{height:35.052646pt;}
.h22{height:35.065556pt;}
.h31{height:36.291187pt;}
.h2f{height:36.539078pt;}
.h2d{height:36.910914pt;}
.hc{height:38.256384pt;}
.hd{height:38.681455pt;}
.h19{height:38.775312pt;}
.h15{height:38.853594pt;}
.h4{height:38.947124pt;}
.h1a{height:39.010156pt;}
.h2e{height:40.523438pt;}
.h1c{height:41.379548pt;}
.h26{height:42.996941pt;}
.h27{height:43.002274pt;}
.h2b{height:44.204687pt;}
.h2{height:45.355680pt;}
.h16{height:46.531250pt;}
.h6{height:48.360277pt;}
.h20{height:59.196648pt;}
.h23{height:59.706836pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h30{height:167.289933pt;}
.h28{height:250.935533pt;}
.h12{height:417.529333pt;}
.h1e{height:793.701333pt;}
.h1f{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:147.825920pt;}
.w4{width:395.518667pt;}
.w8{width:513.250293pt;}
.w7{width:537.717987pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w5{width:1122.520000pt;}
.w6{width:1122.666667pt;}
.x3e{left:-97.298667pt;}
.x40{left:-68.978667pt;}
.x74{left:-14.550707pt;}
.x0{left:0.000000pt;}
.x76{left:12.353293pt;}
.x7{left:26.021437pt;}
.x2{left:51.246627pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x3{left:109.605333pt;}
.x49{left:119.460000pt;}
.x5e{left:122.763107pt;}
.x4a{left:127.673333pt;}
.x4{left:129.929333pt;}
.x64{left:134.303787pt;}
.x73{left:140.227173pt;}
.x45{left:144.305333pt;}
.x17{left:146.102667pt;}
.xf{left:148.240000pt;}
.x6b{left:150.152000pt;}
.x11{left:151.550667pt;}
.x10{left:154.882667pt;}
.x12{left:158.192000pt;}
.x8{left:167.788000pt;}
.x1a{left:171.582667pt;}
.x67{left:175.661333pt;}
.x1b{left:178.225333pt;}
.x6c{left:180.745333pt;}
.x41{left:181.750667pt;}
.x1c{left:184.760000pt;}
.x6f{left:185.682667pt;}
.x1d{left:191.402667pt;}
.x70{left:194.982667pt;}
.x3d{left:199.092000pt;}
.x55{left:204.316000pt;}
.x77{left:205.504000pt;}
.x6a{left:208.630667pt;}
.x82{left:211.677333pt;}
.x60{left:212.762307pt;}
.x78{left:214.805333pt;}
.x83{left:216.809333pt;}
.x94{left:223.704000pt;}
.x96{left:225.473333pt;}
.x69{left:226.593333pt;}
.x81{left:227.992000pt;}
.x20{left:234.344000pt;}
.x95{left:237.545333pt;}
.x21{left:247.626667pt;}
.x42{left:249.594667pt;}
.x22{left:254.401333pt;}
.x23{left:267.685333pt;}
.x2f{left:280.232000pt;}
.x65{left:287.498347pt;}
.x9{left:288.894667pt;}
.x8f{left:290.244000pt;}
.x30{left:292.698667pt;}
.x90{left:294.302667pt;}
.xa{left:295.536000pt;}
.x15{left:307.550667pt;}
.x7b{left:310.508000pt;}
.x31{left:312.432000pt;}
.x16{left:314.192000pt;}
.x7c{left:323.792000pt;}
.x32{left:324.898667pt;}
.x5d{left:326.713333pt;}
.x66{left:330.160000pt;}
.x52{left:337.942667pt;}
.x47{left:340.632000pt;}
.x33{left:344.633333pt;}
.x53{left:346.969333pt;}
.x72{left:349.978667pt;}
.x48{left:353.916000pt;}
.x34{left:357.098667pt;}
.x4b{left:359.513333pt;}
.x68{left:361.884000pt;}
.x87{left:364.109333pt;}
.x4c{left:372.797333pt;}
.x35{left:376.833333pt;}
.x6e{left:380.738720pt;}
.x36{left:389.298667pt;}
.x3f{left:391.101333pt;}
.x89{left:399.034667pt;}
.x8a{left:401.521333pt;}
.x37{left:409.033333pt;}
.x4e{left:414.837333pt;}
.x38{left:421.498667pt;}
.x71{left:425.374667pt;}
.x4f{left:427.032000pt;}
.x5b{left:433.800000pt;}
.x50{left:440.169333pt;}
.x5c{left:442.005333pt;}
.x51{left:449.189333pt;}
.x24{left:455.229333pt;}
.x25{left:468.513333pt;}
.x46{left:474.773333pt;}
.x84{left:478.448000pt;}
.x56{left:481.825333pt;}
.x93{left:483.658667pt;}
.x58{left:484.848000pt;}
.x57{left:492.036000pt;}
.x54{left:494.196000pt;}
.x26{left:499.277333pt;}
.xb{left:500.176000pt;}
.xc{left:506.817333pt;}
.x91{left:508.444000pt;}
.x27{left:512.561333pt;}
.xd{left:513.540000pt;}
.xe{left:520.181333pt;}
.x79{left:526.794667pt;}
.x92{left:532.354667pt;}
.x7a{left:540.077333pt;}
.x75{left:545.949167pt;}
.x6d{left:560.174593pt;}
.x7f{left:562.012000pt;}
.x4d{left:564.224000pt;}
.x80{left:568.653333pt;}
.x13{left:575.956000pt;}
.x14{left:583.624000pt;}
.x39{left:585.897333pt;}
.x59{left:592.198667pt;}
.x3a{left:594.784000pt;}
.x2b{left:596.630667pt;}
.x8b{left:598.314667pt;}
.x5a{left:601.085333pt;}
.x2c{left:605.148000pt;}
.x3b{left:611.236000pt;}
.x2a{left:613.326667pt;}
.x3c{left:617.180000pt;}
.x8c{left:622.225333pt;}
.x6{left:623.413317pt;}
.x18{left:626.208000pt;}
.x19{left:634.265333pt;}
.x85{left:637.014667pt;}
.x86{left:639.501333pt;}
.x1e{left:641.609333pt;}
.x2d{left:647.129333pt;}
.x88{left:648.100000pt;}
.x1f{left:649.278667pt;}
.x7d{left:655.180000pt;}
.x2e{left:660.412000pt;}
.x7e{left:663.038667pt;}
.x8d{left:666.278667pt;}
.x43{left:672.132000pt;}
.x28{left:673.858667pt;}
.x44{left:685.414667pt;}
.x29{left:687.141333pt;}
.x8e{left:690.189333pt;}
.x61{left:786.691347pt;}
.x62{left:799.976707pt;}
.x5f{left:932.603387pt;}
.x63{left:948.041387pt;}
}




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