
    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_b1abfaf319e7e44a3b5f82c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.010000;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_f598581aaf7a615f6ba162af.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_ec4881fe0462bef3ad670678.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.688000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_766b18a9c23f3501e64021e1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.226000;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_dbde95785ca7927a552ca7cf.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_7db983e9288c1314ba9519cf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.699000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b5711b08949e4d5e1a898b50.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8f17da48a451cb7c4f4aae88.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_37e018c9111f89f364364fc6.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_4f96ba2b235ad178148d591b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_11ac71e4816df6529b05ff94.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.014160;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_96158b3304369ef0ea343663.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.225586;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_70bff6888a02011adaf734ac.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_57c34eebb66bc1213fbd7f9e.woff2')format("woff");}.fff{font-family:fff;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_1ca3b121e71ffe5d2e67eaf3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.225586;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_5e29104f0910144ffa9546e7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.014160;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_c6ebab744b43a9404b46fb97.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.225586;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_9bdffc5a3906999280a1346d.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_476635f5b6b58ebb7a290d47.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_1ca3b121e71ffe5d2e67eaf3.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.225586;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_ee4ae869557ca473ff978a6f.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.014160;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_c42680743279f1a90c5a73a5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.225586;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_5411b0ed1b7077cca23c116d.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_476635f5b6b58ebb7a290d47.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2000b4601e70f884bc62c714.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.225586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_5e29104f0910144ffa9546e7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_40223056dd78cec32e71e722.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.225586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_57382df1095dc47d19df8b7e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_638f6709613b81da0a33fe5a.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_03b9ea3c2f99e1f7af088467.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.225586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_5e29104f0910144ffa9546e7.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.014160;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_40223056dd78cec32e71e722.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.225586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_57382df1095dc47d19df8b7e.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_638f6709613b81da0a33fe5a.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_03b9ea3c2f99e1f7af088467.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.225586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_0f779a0af3c397cbdc535511.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_e99b0066c76b804511722f8a.woff2')format("woff");}.ff26{font-family:ff26;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;}
.m4{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);}
.m23{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);}
.m19{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);}
.m9{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);}
.m6{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);}
.m18{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);}
.m27{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);}
.m12{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);}
.m10{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);}
.md{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);}
.m16{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);}
.m26{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);}
.ma{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);}
.m1a{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);}
.m1c{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.me{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);}
.m21{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);}
.m15{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);}
.m25{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m20{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);}
.mb{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);}
.m3{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m14{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);}
.m11{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);}
.mc{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m1e{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);}
.m28{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);}
.m1b{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);}
.m2{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);}
.mf{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);}
.m5{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);}
.m24{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m22{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);}
.m1f{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);}
.m1{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);}
.m8{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;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.702000px;}
.ls46{letter-spacing:-0.360000px;}
.ls4a{letter-spacing:-0.291000px;}
.ls49{letter-spacing:-0.270000px;}
.ls47{letter-spacing:-0.180000px;}
.ls39{letter-spacing:-0.176400px;}
.ls4b{letter-spacing:-0.162000px;}
.ls48{letter-spacing:-0.017640px;}
.lsa{letter-spacing:0.000000px;}
.ls55{letter-spacing:0.000091px;}
.ls5b{letter-spacing:0.000208px;}
.ls3b{letter-spacing:0.000306px;}
.ls3c{letter-spacing:0.000419px;}
.ls30{letter-spacing:0.000435px;}
.ls57{letter-spacing:0.000800px;}
.lse{letter-spacing:0.001127px;}
.ls1f{letter-spacing:0.001837px;}
.ls60{letter-spacing:0.002338px;}
.ls38{letter-spacing:0.002470px;}
.ls42{letter-spacing:0.002520px;}
.ls35{letter-spacing:0.002612px;}
.ls24{letter-spacing:0.002719px;}
.ls28{letter-spacing:0.002818px;}
.ls2d{letter-spacing:0.002846px;}
.ls5{letter-spacing:0.002870px;}
.lsf{letter-spacing:0.002940px;}
.ls3e{letter-spacing:0.002953px;}
.ls4e{letter-spacing:0.002958px;}
.ls45{letter-spacing:0.002988px;}
.ls19{letter-spacing:0.003226px;}
.ls27{letter-spacing:0.003337px;}
.ls9{letter-spacing:0.003488px;}
.ls1a{letter-spacing:0.003494px;}
.ls10{letter-spacing:0.004241px;}
.ls5f{letter-spacing:0.004800px;}
.ls2b{letter-spacing:0.013054px;}
.ls37{letter-spacing:0.017640px;}
.ls54{letter-spacing:0.018000px;}
.ls2a{letter-spacing:0.052214px;}
.ls53{letter-spacing:0.054000px;}
.ls2c{letter-spacing:0.088200px;}
.ls43{letter-spacing:0.108000px;}
.ls52{letter-spacing:0.126000px;}
.ls3d{letter-spacing:0.129600px;}
.ls3a{letter-spacing:0.162000px;}
.ls29{letter-spacing:0.176400px;}
.ls40{letter-spacing:0.180000px;}
.ls41{letter-spacing:0.300000px;}
.ls58{letter-spacing:0.524565px;}
.ls56{letter-spacing:0.530447px;}
.lsb{letter-spacing:1.275394px;}
.ls7{letter-spacing:1.861130px;}
.ls0{letter-spacing:2.989200px;}
.ls2{letter-spacing:2.998354px;}
.ls8{letter-spacing:11.954850px;}
.ls5c{letter-spacing:13.152441px;}
.ls5a{letter-spacing:13.266376px;}
.ls4d{letter-spacing:13.318287px;}
.ls4c{letter-spacing:13.319868px;}
.ls59{letter-spacing:13.448400px;}
.ls3f{letter-spacing:13.448870px;}
.ls5e{letter-spacing:13.454400px;}
.ls44{letter-spacing:13.585341px;}
.ls5d{letter-spacing:13.720785px;}
.ls16{letter-spacing:14.255022px;}
.ls1e{letter-spacing:14.285634px;}
.ls26{letter-spacing:14.291756px;}
.ls25{letter-spacing:14.293338px;}
.ls4f{letter-spacing:14.676286px;}
.ls51{letter-spacing:14.678763px;}
.ls50{letter-spacing:14.680247px;}
.ls21{letter-spacing:14.736238px;}
.ls20{letter-spacing:14.834653px;}
.ls1d{letter-spacing:14.873219px;}
.lsc{letter-spacing:14.938766px;}
.lsd{letter-spacing:14.946124px;}
.ls14{letter-spacing:15.008107px;}
.ls12{letter-spacing:15.044817px;}
.ls1c{letter-spacing:15.228491px;}
.ls23{letter-spacing:15.592477px;}
.ls22{letter-spacing:15.600061px;}
.ls15{letter-spacing:15.839481px;}
.ls1b{letter-spacing:15.933653px;}
.ls18{letter-spacing:16.039535px;}
.ls13{letter-spacing:16.573212px;}
.ls11{letter-spacing:16.635400px;}
.ls17{letter-spacing:17.559289px;}
.ls61{letter-spacing:18.726871px;}
.ls36{letter-spacing:19.187968px;}
.ls32{letter-spacing:20.757182px;}
.ls31{letter-spacing:20.759056px;}
.ls33{letter-spacing:24.376531px;}
.ls34{letter-spacing:24.380712px;}
.ls2f{letter-spacing:30.898359px;}
.ls2e{letter-spacing:30.900061px;}
.ls1{letter-spacing:57.415200px;}
.ls6{letter-spacing:64.552800px;}
.ls3{letter-spacing:70.236600px;}
.ls4{letter-spacing:72.353510px;}
.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;}
.ws98{word-spacing:-60.120000px;}
.ws99{word-spacing:-60.102360px;}
.ws74{word-spacing:-58.917600px;}
.ws71{word-spacing:-52.920000px;}
.ws86{word-spacing:-48.600000px;}
.ws13{word-spacing:-17.394700px;}
.ws78{word-spacing:-15.655334px;}
.ws9a{word-spacing:-15.032520px;}
.ws2e{word-spacing:-14.943900px;}
.ws72{word-spacing:-14.731870px;}
.ws73{word-spacing:-14.729400px;}
.ws3{word-spacing:-14.355754px;}
.ws27{word-spacing:-13.915795px;}
.wsae{word-spacing:-13.554000px;}
.wsaf{word-spacing:-13.518000px;}
.wsad{word-spacing:-13.500000px;}
.ws8f{word-spacing:-13.449600px;}
.ws70{word-spacing:-13.230000px;}
.ws97{word-spacing:-13.140000px;}
.ws95{word-spacing:-11.970000px;}
.ws25{word-spacing:-11.955150px;}
.ws6f{word-spacing:-11.730600px;}
.ws2{word-spacing:-11.357400px;}
.ws85{word-spacing:-10.773000px;}
.ws96{word-spacing:-8.280000px;}
.ws36{word-spacing:-3.706087px;}
.ws3a{word-spacing:-3.646312px;}
.wscc{word-spacing:-3.604493px;}
.ws55{word-spacing:-3.586536px;}
.ws7e{word-spacing:-3.407209px;}
.wscd{word-spacing:-3.389299px;}
.ws54{word-spacing:-3.347434px;}
.ws82{word-spacing:-3.287658px;}
.wsd7{word-spacing:-3.174106px;}
.ws4a{word-spacing:-3.168107px;}
.ws5c{word-spacing:-2.749678px;}
.ws39{word-spacing:-2.510575px;}
.wsf0{word-spacing:-2.420928px;}
.wsb7{word-spacing:-2.391024px;}
.ws9d{word-spacing:-2.313331px;}
.ws60{word-spacing:-2.271473px;}
.ws88{word-spacing:-2.259533px;}
.wsa6{word-spacing:-2.151922px;}
.wsa8{word-spacing:-2.032370px;}
.ws9{word-spacing:-1.908367px;}
.wsa3{word-spacing:-1.882944px;}
.ws4b{word-spacing:-1.853044px;}
.ws5b{word-spacing:-1.793268px;}
.wsc4{word-spacing:-1.733492px;}
.wsc9{word-spacing:-1.613952px;}
.wsaa{word-spacing:-1.613941px;}
.wsb6{word-spacing:-1.554166px;}
.ws7c{word-spacing:-1.506355px;}
.ws5a{word-spacing:-1.434614px;}
.ws61{word-spacing:-1.374839px;}
.ws8{word-spacing:-1.322630px;}
.ws9c{word-spacing:-1.291162px;}
.ws62{word-spacing:-1.195512px;}
.ws7a{word-spacing:-1.183565px;}
.ws45{word-spacing:-1.135736px;}
.ws67{word-spacing:-1.129766px;}
.wsb8{word-spacing:-1.016185px;}
.ws2a{word-spacing:-0.896634px;}
.ws68{word-spacing:-0.860774px;}
.ws11{word-spacing:-0.836858px;}
.ws58{word-spacing:-0.717307px;}
.ws7b{word-spacing:-0.699379px;}
.ws52{word-spacing:-0.657532px;}
.ws5d{word-spacing:-0.537980px;}
.ws42{word-spacing:-0.478205px;}
.wsd8{word-spacing:-0.430387px;}
.ws5e{word-spacing:-0.418429px;}
.ws9f{word-spacing:-0.376589px;}
.ws4e{word-spacing:-0.358654px;}
.ws75{word-spacing:-0.322790px;}
.ws17{word-spacing:-0.298878px;}
.wsc7{word-spacing:-0.268992px;}
.wsab{word-spacing:-0.252496px;}
.ws49{word-spacing:-0.239102px;}
.wsc8{word-spacing:-0.215194px;}
.wsb{word-spacing:-0.179327px;}
.ws90{word-spacing:-0.161395px;}
.ws34{word-spacing:-0.119551px;}
.ws69{word-spacing:-0.107597px;}
.ws10{word-spacing:-0.059776px;}
.ws76{word-spacing:-0.053798px;}
.ws7{word-spacing:-0.014755px;}
.wse9{word-spacing:-0.006806px;}
.ws91{word-spacing:-0.006662px;}
.wsd4{word-spacing:-0.006010px;}
.wse8{word-spacing:-0.005933px;}
.wse1{word-spacing:-0.004339px;}
.wsf2{word-spacing:-0.003466px;}
.wse4{word-spacing:-0.002304px;}
.ws6{word-spacing:-0.001082px;}
.wsea{word-spacing:-0.000806px;}
.ws1{word-spacing:0.000000px;}
.ws24{word-spacing:0.001867px;}
.ws7d{word-spacing:0.053798px;}
.ws37{word-spacing:0.059776px;}
.ws87{word-spacing:0.107597px;}
.ws3e{word-spacing:0.119551px;}
.ws89{word-spacing:0.161395px;}
.ws2b{word-spacing:0.179327px;}
.ws9b{word-spacing:0.215194px;}
.ws29{word-spacing:0.239102px;}
.wsa1{word-spacing:0.268992px;}
.ws43{word-spacing:0.298878px;}
.wsce{word-spacing:0.322790px;}
.ws1f{word-spacing:0.358654px;}
.wsa0{word-spacing:0.376589px;}
.wsb9{word-spacing:0.418429px;}
.wsde{word-spacing:0.430387px;}
.wsa9{word-spacing:0.537980px;}
.ws5{word-spacing:0.582708px;}
.ws63{word-spacing:0.657532px;}
.wsba{word-spacing:0.717307px;}
.wsb1{word-spacing:0.753178px;}
.wsd3{word-spacing:0.806976px;}
.wse2{word-spacing:0.860774px;}
.ws20{word-spacing:0.896634px;}
.ws8b{word-spacing:0.914573px;}
.ws22{word-spacing:0.956410px;}
.wscf{word-spacing:0.968371px;}
.ws5f{word-spacing:1.016185px;}
.wsb0{word-spacing:1.022170px;}
.ws59{word-spacing:1.075961px;}
.wsca{word-spacing:1.129766px;}
.wsa7{word-spacing:1.135736px;}
.wsee{word-spacing:1.183565px;}
.wsc5{word-spacing:1.237363px;}
.ws3d{word-spacing:1.315063px;}
.wsb3{word-spacing:1.344960px;}
.ws41{word-spacing:1.374839px;}
.wsa2{word-spacing:1.398758px;}
.ws16{word-spacing:1.434614px;}
.ws57{word-spacing:1.494390px;}
.ws8d{word-spacing:1.506355px;}
.ws1e{word-spacing:1.554166px;}
.wsb2{word-spacing:1.560154px;}
.wsb4{word-spacing:1.613952px;}
.ws4c{word-spacing:1.793268px;}
.ws4f{word-spacing:1.912819px;}
.wse{word-spacing:1.972595px;}
.ws1d{word-spacing:2.032370px;}
.wsbb{word-spacing:2.271473px;}
.ws1a{word-spacing:2.510575px;}
.ws79{word-spacing:2.528525px;}
.ws4d{word-spacing:2.570351px;}
.wsda{word-spacing:2.582323px;}
.ws44{word-spacing:2.630126px;}
.wsbf{word-spacing:2.689902px;}
.ws8a{word-spacing:2.743718px;}
.wsa5{word-spacing:2.929004px;}
.ws46{word-spacing:2.988780px;}
.ws84{word-spacing:3.048556px;}
.ws94{word-spacing:3.108331px;}
.wsd0{word-spacing:3.120307px;}
.ws56{word-spacing:3.227882px;}
.wsf3{word-spacing:3.281702px;}
.wsbe{word-spacing:3.287658px;}
.ws23{word-spacing:3.347434px;}
.wsc{word-spacing:3.407209px;}
.wsac{word-spacing:3.526760px;}
.wsd1{word-spacing:3.550694px;}
.wsf{word-spacing:3.646312px;}
.wsbc{word-spacing:3.765863px;}
.wsc1{word-spacing:3.825638px;}
.ws66{word-spacing:3.885414px;}
.ws3b{word-spacing:4.004965px;}
.ws50{word-spacing:4.064741px;}
.wseb{word-spacing:4.142477px;}
.ws48{word-spacing:4.184292px;}
.ws9e{word-spacing:4.196275px;}
.ws83{word-spacing:4.303843px;}
.wsc2{word-spacing:4.423394px;}
.wsc3{word-spacing:4.483170px;}
.ws33{word-spacing:4.542946px;}
.ws93{word-spacing:4.662497px;}
.ws19{word-spacing:4.782048px;}
.ws28{word-spacing:4.841824px;}
.wsbd{word-spacing:4.961375px;}
.ws77{word-spacing:5.057050px;}
.ws65{word-spacing:5.260253px;}
.wsed{word-spacing:5.272243px;}
.ws64{word-spacing:5.320028px;}
.wsb5{word-spacing:5.326042px;}
.wscb{word-spacing:5.370576px;}
.wse7{word-spacing:5.374781px;}
.wsdc{word-spacing:5.375798px;}
.wse6{word-spacing:5.378938px;}
.wsd6{word-spacing:5.379840px;}
.wsf1{word-spacing:5.379926px;}
.wsd9{word-spacing:5.381347px;}
.wsc6{word-spacing:5.702630px;}
.ws81{word-spacing:5.798233px;}
.wsdb{word-spacing:5.864026px;}
.wsa4{word-spacing:5.917784px;}
.ws1b{word-spacing:5.971475px;}
.ws1c{word-spacing:5.977560px;}
.ws35{word-spacing:6.097111px;}
.ws38{word-spacing:6.156887px;}
.ws14{word-spacing:6.276438px;}
.ws12{word-spacing:6.336214px;}
.ws8c{word-spacing:6.509606px;}
.ws18{word-spacing:6.635092px;}
.ws7f{word-spacing:6.993745px;}
.wsdf{word-spacing:6.993792px;}
.ws53{word-spacing:7.711052px;}
.wsdd{word-spacing:7.746970px;}
.ws40{word-spacing:7.950155px;}
.wsc0{word-spacing:8.009930px;}
.wsa{word-spacing:8.129482px;}
.wsd2{word-spacing:8.177357px;}
.ws15{word-spacing:8.547911px;}
.ws51{word-spacing:8.966340px;}
.wsd{word-spacing:9.145667px;}
.wse3{word-spacing:9.199526px;}
.ws21{word-spacing:9.384769px;}
.ws8e{word-spacing:9.414720px;}
.ws47{word-spacing:9.444545px;}
.ws3c{word-spacing:10.460730px;}
.wsef{word-spacing:10.490688px;}
.ws32{word-spacing:11.536691px;}
.wse5{word-spacing:11.620454px;}
.ws2d{word-spacing:12.971305px;}
.ws30{word-spacing:12.986904px;}
.ws31{word-spacing:12.991110px;}
.ws2f{word-spacing:12.991175px;}
.wsd5{word-spacing:15.762931px;}
.ws80{word-spacing:15.960085px;}
.ws2c{word-spacing:16.737168px;}
.ws3f{word-spacing:17.872904px;}
.wsec{word-spacing:18.291456px;}
.wse0{word-spacing:20.174400px;}
.ws4{word-spacing:40.042186px;}
.ws6e{word-spacing:83.226125px;}
.ws6c{word-spacing:96.675725px;}
.ws6a{word-spacing:182.215181px;}
.ws92{word-spacing:232.301491px;}
.ws6d{word-spacing:365.498909px;}
.ws6b{word-spacing:378.950909px;}
.ws26{word-spacing:1059.226290px;}
._47{margin-left:-7.866279px;}
._2{margin-left:-6.685657px;}
._4{margin-left:-4.949453px;}
._3{margin-left:-2.958912px;}
._0{margin-left:-1.279388px;}
._7{width:1.091170px;}
._1{width:3.002021px;}
._1d{width:4.626822px;}
._31{width:6.138720px;}
._45{width:7.631256px;}
._17{width:8.655887px;}
._16{width:9.683647px;}
._30{width:11.488655px;}
._19{width:12.660505px;}
._11{width:14.250693px;}
._f{width:15.924410px;}
._5{width:17.861069px;}
._6{width:19.797811px;}
._12{width:21.166243px;}
._b{width:22.439950px;}
._c{width:24.747098px;}
._10{width:26.564467px;}
._e{width:28.931390px;}
._15{width:30.724451px;}
._9{width:32.063822px;}
._1b{width:34.206534px;}
._14{width:35.925136px;}
._1a{width:37.479301px;}
._1c{width:38.543687px;}
._18{width:39.631223px;}
._d{width:41.125613px;}
._8{width:44.915576px;}
._a{width:46.923846px;}
._2e{width:118.948262px;}
._21{width:120.831206px;}
._22{width:126.049651px;}
._2b{width:131.698483px;}
._2a{width:140.198630px;}
._20{width:143.211341px;}
._23{width:155.262182px;}
._2d{width:169.572557px;}
._33{width:173.230848px;}
._29{width:183.022157px;}
._3f{width:196.227632px;}
._34{width:197.709120px;}
._35{width:199.161677px;}
._36{width:201.475008px;}
._1f{width:208.791590px;}
._42{width:213.414653px;}
._27{width:217.184141px;}
._1e{width:219.174682px;}
._41{width:224.339328px;}
._40{width:226.867853px;}
._2c{width:231.191242px;}
._3a{width:237.788928px;}
._26{width:238.864896px;}
._3b{width:245.731258px;}
._24{width:253.595309px;}
._3e{width:255.757594px;}
._39{width:263.773555px;}
._3c{width:269.207194px;}
._3d{width:277.223155px;}
._25{width:282.011213px;}
._37{width:288.897408px;}
._43{width:292.609498px;}
._38{width:314.021261px;}
._28{width:361.167110px;}
._32{width:1872.919584px;}
._2f{width:2039.401325px;}
._48{width:2056.901760px;}
._46{width:2074.259188px;}
._44{width:2081.021760px;}
._13{width:2098.169188px;}
.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);}
.fs12{font-size:33.120000px;}
.fs4{font-size:41.842800px;}
.fs7{font-size:41.936104px;}
.fsd{font-size:43.092000px;}
.fs3{font-size:45.429600px;}
.fs9{font-size:46.922400px;}
.fs6{font-size:47.236800px;}
.fs8{font-size:47.820600px;}
.fs10{font-size:47.880000px;}
.fse{font-size:48.600000px;}
.fsa{font-size:52.920000px;}
.fs5{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fsc{font-size:58.917600px;}
.fs1{font-size:59.775600px;}
.fs13{font-size:60.120000px;}
.fsf{font-size:64.800000px;}
.fsb{font-size:70.560000px;}
.fs14{font-size:72.000000px;}
.fs2{font-size:107.596800px;}
.fs0{font-size:151.185600px;}
.yda{bottom:-841.732290px;}
.y100{bottom:-769.761090px;}
.yff{bottom:-749.916090px;}
.yfe{bottom:-730.071090px;}
.yfd{bottom:-710.226090px;}
.yfc{bottom:-690.351690px;}
.yfb{bottom:-670.594890px;}
.yfa{bottom:-650.749890px;}
.y1a4{bottom:-647.445000px;}
.yf9{bottom:-630.904890px;}
.y1ab{bottom:-613.245000px;}
.yf8{bottom:-611.059890px;}
.y1aa{bottom:-593.895000px;}
.yf7{bottom:-591.214890px;}
.y1a9{bottom:-574.365000px;}
.yf6{bottom:-571.369890px;}
.y1a8{bottom:-554.835000px;}
.yf5{bottom:-551.613090px;}
.y1a7{bottom:-535.395000px;}
.yf4{bottom:-531.768090px;}
.y1a6{bottom:-515.775000px;}
.yf3{bottom:-511.923090px;}
.yf2{bottom:-492.078090px;}
.y1a5{bottom:-486.045000px;}
.yf1{bottom:-463.413090px;}
.yf0{bottom:-425.928090px;}
.yef{bottom:-406.083090px;}
.yee{bottom:-386.326290px;}
.yed{bottom:-366.481290px;}
.yec{bottom:-346.636290px;}
.yeb{bottom:-326.791290px;}
.yea{bottom:-306.946290px;}
.ye9{bottom:-287.071890px;}
.ye8{bottom:-267.226890px;}
.ye7{bottom:-247.470090px;}
.ye6{bottom:-227.625090px;}
.ye5{bottom:-207.780090px;}
.ye4{bottom:-170.736090px;}
.y1af{bottom:-151.825500px;}
.ye3{bottom:-151.684890px;}
.y128{bottom:-140.216400px;}
.ye2{bottom:-132.545490px;}
.y1b6{bottom:-117.625500px;}
.y167{bottom:-115.915500px;}
.ye1{bottom:-113.406090px;}
.y12f{bottom:-109.517400px;}
.y1b5{bottom:-98.275500px;}
.y182{bottom:-96.475500px;}
.ye0{bottom:-94.354890px;}
.y12e{bottom:-92.021400px;}
.y1b4{bottom:-78.745500px;}
.y181{bottom:-76.945500px;}
.ydf{bottom:-75.127290px;}
.y12d{bottom:-74.444400px;}
.y1b3{bottom:-59.215500px;}
.y180{bottom:-57.505500px;}
.y12c{bottom:-56.867400px;}
.yde{bottom:-56.076090px;}
.y1b2{bottom:-39.775500px;}
.y12b{bottom:-39.371400px;}
.y17f{bottom:-37.885500px;}
.ydd{bottom:-37.024890px;}
.y12a{bottom:-21.713400px;}
.y1b1{bottom:-20.155500px;}
.y17e{bottom:-18.355500px;}
.ydc{bottom:-17.797290px;}
.y0{bottom:0.000000px;}
.y15{bottom:3.425340px;}
.y17d{bottom:7.294500px;}
.ydb{bottom:8.133510px;}
.y1b0{bottom:9.574500px;}
.y129{bottom:10.875600px;}
.y2{bottom:13.800505px;}
.y14{bottom:14.151273px;}
.y30{bottom:63.780000px;}
.y1cf{bottom:110.371500px;}
.y125{bottom:115.387500px;}
.y1db{bottom:118.294500px;}
.y2f{bottom:118.545000px;}
.y20d{bottom:119.716500px;}
.y139{bottom:120.163500px;}
.y92{bottom:124.647000px;}
.y62{bottom:125.572500px;}
.y1ce{bottom:130.635000px;}
.yb4{bottom:131.161500px;}
.y1da{bottom:133.492500px;}
.y124{bottom:135.651000px;}
.y138{bottom:136.710000px;}
.y2e{bottom:138.810000px;}
.y20c{bottom:139.084500px;}
.y137{bottom:139.396500px;}
.y199{bottom:141.327000px;}
.y91{bottom:144.910500px;}
.y61{bottom:145.837500px;}
.y1cd{bottom:150.900000px;}
.yb3{bottom:151.426500px;}
.y123{bottom:155.916000px;}
.y164{bottom:156.730500px;}
.y1d9{bottom:157.657500px;}
.y20b{bottom:158.451000px;}
.y136{bottom:158.629500px;}
.y2d{bottom:159.073500px;}
.y198{bottom:161.590500px;}
.y90{bottom:165.174000px;}
.y60{bottom:166.101000px;}
.y1cc{bottom:171.163500px;}
.yb2{bottom:171.690000px;}
.y1d8{bottom:172.855500px;}
.y122{bottom:176.179500px;}
.y163{bottom:176.995500px;}
.y20a{bottom:177.819000px;}
.y135{bottom:177.862500px;}
.y2c{bottom:179.338500px;}
.y197{bottom:181.855500px;}
.y8f{bottom:185.439000px;}
.y5f{bottom:186.364500px;}
.y1d7{bottom:188.053500px;}
.y1cb{bottom:191.428500px;}
.yb1{bottom:191.953500px;}
.y121{bottom:196.444500px;}
.y134{bottom:197.095500px;}
.y209{bottom:197.185500px;}
.y162{bottom:197.259000px;}
.y2b{bottom:199.602000px;}
.y196{bottom:202.119000px;}
.y8e{bottom:205.702500px;}
.y5e{bottom:206.629500px;}
.y1ca{bottom:211.692000px;}
.yb0{bottom:212.218500px;}
.y133{bottom:216.328500px;}
.y208{bottom:216.553500px;}
.y120{bottom:216.708000px;}
.y161{bottom:217.522500px;}
.y2a{bottom:219.865500px;}
.y1d6{bottom:221.184000px;}
.y195{bottom:222.382500px;}
.y8d{bottom:225.967500px;}
.y5c{bottom:226.893000px;}
.y1c9{bottom:231.955500px;}
.y5d{bottom:232.318500px;}
.yaf{bottom:232.482000px;}
.y132{bottom:235.561500px;}
.y207{bottom:235.921500px;}
.y11f{bottom:236.971500px;}
.y160{bottom:237.787500px;}
.y29{bottom:240.130500px;}
.y1d5{bottom:241.449000px;}
.yd9{bottom:243.039510px;}
.y8c{bottom:246.231000px;}
.y1c8{bottom:252.220500px;}
.yae{bottom:252.747000px;}
.y131{bottom:254.794500px;}
.y206{bottom:255.288000px;}
.y5b{bottom:256.123500px;}
.y11e{bottom:257.236500px;}
.y194{bottom:257.383500px;}
.y15f{bottom:258.051000px;}
.y28{bottom:260.394000px;}
.y1d4{bottom:261.712500px;}
.y8b{bottom:266.494500px;}
.y1ac{bottom:266.833500px;}
.y1c7{bottom:272.484000px;}
.yad{bottom:273.010500px;}
.y130{bottom:274.027500px;}
.y205{bottom:274.656000px;}
.y193{bottom:276.616500px;}
.y11d{bottom:277.500000px;}
.y15e{bottom:278.316000px;}
.y1d3{bottom:281.977500px;}
.yd7{bottom:283.194000px;}
.y8a{bottom:286.759500px;}
.y237{bottom:289.203000px;}
.y1a2{bottom:289.263000px;}
.y27{bottom:289.624500px;}
.y5a{bottom:290.943000px;}
.y1c6{bottom:292.749000px;}
.yac{bottom:293.274000px;}
.y204{bottom:294.022500px;}
.y192{bottom:295.849500px;}
.y126{bottom:296.457000px;}
.y11c{bottom:297.765000px;}
.y15d{bottom:298.579500px;}
.yd6{bottom:299.989500px;}
.y1d2{bottom:302.241000px;}
.y89{bottom:307.023000px;}
.y236{bottom:308.571000px;}
.y1c5{bottom:313.012500px;}
.y203{bottom:313.390500px;}
.yab{bottom:313.539000px;}
.y191{bottom:315.082500px;}
.yd5{bottom:316.785000px;}
.y11b{bottom:318.028500px;}
.y15c{bottom:318.843000px;}
.y1d1{bottom:322.504500px;}
.y59{bottom:325.762500px;}
.y88{bottom:327.288000px;}
.y235{bottom:327.937500px;}
.y202{bottom:332.758500px;}
.y1c4{bottom:333.276000px;}
.yd4{bottom:333.580500px;}
.yaa{bottom:333.802500px;}
.y190{bottom:334.315500px;}
.y11a{bottom:338.292000px;}
.y15b{bottom:339.108000px;}
.y58{bottom:346.027500px;}
.y87{bottom:347.551500px;}
.yd3{bottom:350.376000px;}
.y1d0{bottom:351.735000px;}
.y201{bottom:352.125000px;}
.y1c3{bottom:353.541000px;}
.y18f{bottom:353.548500px;}
.ya9{bottom:354.067500px;}
.y119{bottom:358.557000px;}
.y15a{bottom:359.371500px;}
.y234{bottom:360.733500px;}
.y26{bottom:366.040500px;}
.y57{bottom:366.291000px;}
.yd2{bottom:367.171500px;}
.y200{bottom:371.493000px;}
.y18e{bottom:372.780000px;}
.y1c2{bottom:373.804500px;}
.ya8{bottom:374.331000px;}
.y86{bottom:376.782000px;}
.y118{bottom:378.820500px;}
.y159{bottom:379.636500px;}
.y233{bottom:380.101500px;}
.y56{bottom:386.554500px;}
.y1ff{bottom:390.859500px;}
.yd1{bottom:391.170000px;}
.y18d{bottom:392.013000px;}
.y1c1{bottom:394.069500px;}
.ya7{bottom:394.594500px;}
.y117{bottom:399.085500px;}
.y232{bottom:399.468000px;}
.y158{bottom:399.900000px;}
.y25{bottom:404.238000px;}
.y55{bottom:406.819500px;}
.y1fe{bottom:410.227500px;}
.y18c{bottom:411.246000px;}
.y85{bottom:411.601500px;}
.y1c0{bottom:414.333000px;}
.ya6{bottom:414.859500px;}
.y231{bottom:418.836000px;}
.y157{bottom:420.163500px;}
.yd0{bottom:422.788500px;}
.y24{bottom:424.501500px;}
.y54{bottom:427.083000px;}
.y116{bottom:428.316000px;}
.y1fd{bottom:429.595500px;}
.y18b{bottom:430.479000px;}
.y84{bottom:431.865000px;}
.ya5{bottom:435.123000px;}
.y230{bottom:438.204000px;}
.y156{bottom:440.428500px;}
.ycf{bottom:442.021500px;}
.y1bf{bottom:443.563500px;}
.y23{bottom:444.765000px;}
.y53{bottom:447.348000px;}
.y1fc{bottom:448.962000px;}
.y18a{bottom:449.712000px;}
.y82{bottom:452.130000px;}
.ya4{bottom:455.388000px;}
.y83{bottom:457.554000px;}
.y22f{bottom:457.570500px;}
.y1a3{bottom:459.465000px;}
.y155{bottom:460.692000px;}
.yce{bottom:461.254500px;}
.y115{bottom:463.135500px;}
.y22{bottom:465.030000px;}
.y52{bottom:467.611500px;}
.y1fb{bottom:468.330000px;}
.y189{bottom:468.945000px;}
.y80{bottom:472.393500px;}
.y1be{bottom:475.186500px;}
.ya3{bottom:475.651500px;}
.y22e{bottom:476.938500px;}
.y81{bottom:477.819000px;}
.y114{bottom:483.399000px;}
.y21{bottom:485.293500px;}
.y1fa{bottom:487.696500px;}
.y51{bottom:487.875000px;}
.y188{bottom:488.178000px;}
.y154{bottom:489.922500px;}
.y7f{bottom:492.658500px;}
.y1bd{bottom:494.419500px;}
.ya2{bottom:495.915000px;}
.y22d{bottom:496.305000px;}
.ycd{bottom:498.366000px;}
.y113{bottom:503.662500px;}
.y20{bottom:505.558500px;}
.y1f9{bottom:507.064500px;}
.y187{bottom:507.411000px;}
.y50{bottom:508.140000px;}
.y7d{bottom:512.922000px;}
.y1bc{bottom:513.652500px;}
.y22c{bottom:515.673000px;}
.ya1{bottom:516.180000px;}
.y7e{bottom:518.346000px;}
.ycc{bottom:518.631000px;}
.y112{bottom:523.927500px;}
.y17c{bottom:524.044500px;}
.y1f{bottom:525.822000px;}
.y1f8{bottom:526.432500px;}
.y186{bottom:526.644000px;}
.y4f{bottom:528.403500px;}
.y1bb{bottom:532.885500px;}
.y7c{bottom:533.185500px;}
.y153{bottom:533.799000px;}
.y22b{bottom:535.041000px;}
.ya0{bottom:536.443500px;}
.ycb{bottom:538.894500px;}
.y111{bottom:544.191000px;}
.y17b{bottom:544.204500px;}
.y1f7{bottom:545.799000px;}
.y185{bottom:545.875500px;}
.y1e{bottom:546.085500px;}
.y4e{bottom:548.667000px;}
.y1ba{bottom:552.118500px;}
.y7b{bottom:553.450500px;}
.y22a{bottom:554.407500px;}
.y9f{bottom:556.708500px;}
.y152{bottom:557.797500px;}
.yca{bottom:559.159500px;}
.y17a{bottom:564.454500px;}
.y110{bottom:564.456000px;}
.y184{bottom:565.108500px;}
.y1f6{bottom:565.167000px;}
.y1d{bottom:566.350500px;}
.y4d{bottom:568.932000px;}
.y1b9{bottom:571.350000px;}
.y7a{bottom:573.714000px;}
.y229{bottom:573.775500px;}
.y9e{bottom:576.972000px;}
.yc9{bottom:579.423000px;}
.y151{bottom:581.794500px;}
.y183{bottom:584.341500px;}
.y1f5{bottom:584.533500px;}
.y179{bottom:584.704500px;}
.y10f{bottom:584.719500px;}
.y1c{bottom:586.614000px;}
.y4c{bottom:589.195500px;}
.y1b8{bottom:590.583000px;}
.y228{bottom:593.142000px;}
.y9d{bottom:597.235500px;}
.yc8{bottom:599.686500px;}
.y79{bottom:602.944500px;}
.y1f4{bottom:603.901500px;}
.y178{bottom:604.954500px;}
.y10e{bottom:604.983000px;}
.y150{bottom:605.793000px;}
.y165{bottom:606.771000px;}
.y1b{bottom:606.879000px;}
.y4b{bottom:609.460500px;}
.y1b7{bottom:609.816000px;}
.y227{bottom:612.510000px;}
.y9c{bottom:617.500500px;}
.yc7{bottom:619.951500px;}
.y1f3{bottom:623.269500px;}
.y177{bottom:625.204500px;}
.y10d{bottom:625.248000px;}
.y1a{bottom:627.142500px;}
.y4a{bottom:629.724000px;}
.y14f{bottom:629.791500px;}
.y226{bottom:631.878000px;}
.y1ad{bottom:632.245500px;}
.y78{bottom:637.764000px;}
.yc6{bottom:640.215000px;}
.y1f2{bottom:642.636000px;}
.y176{bottom:645.454500px;}
.y10c{bottom:645.511500px;}
.y19{bottom:647.406000px;}
.y49{bottom:649.987500px;}
.y225{bottom:651.244500px;}
.y14e{bottom:653.788500px;}
.y77{bottom:658.029000px;}
.yc5{bottom:660.480000px;}
.y1f1{bottom:662.004000px;}
.y175{bottom:665.704500px;}
.y10b{bottom:665.776500px;}
.y18{bottom:667.671000px;}
.y48{bottom:670.252500px;}
.y224{bottom:670.612500px;}
.y14d{bottom:677.787000px;}
.y76{bottom:678.292500px;}
.yc4{bottom:680.743500px;}
.y1f0{bottom:681.372000px;}
.y174{bottom:685.864500px;}
.y10a{bottom:686.040000px;}
.y17{bottom:687.934500px;}
.y223{bottom:689.979000px;}
.y47{bottom:690.516000px;}
.y75{bottom:698.556000px;}
.y1ef{bottom:700.738500px;}
.yc3{bottom:701.007000px;}
.y14c{bottom:701.784000px;}
.y9b{bottom:703.981500px;}
.y173{bottom:706.114500px;}
.y16{bottom:708.199500px;}
.y222{bottom:709.347000px;}
.y46{bottom:710.781000px;}
.y74{bottom:718.821000px;}
.y1ee{bottom:720.106500px;}
.y109{bottom:721.041000px;}
.yc2{bottom:721.272000px;}
.y14b{bottom:725.782500px;}
.y172{bottom:726.364500px;}
.y221{bottom:728.715000px;}
.y45{bottom:731.044500px;}
.y73{bottom:739.084500px;}
.y1ed{bottom:739.473000px;}
.y108{bottom:740.272500px;}
.yc1{bottom:741.535500px;}
.y13{bottom:743.630964px;}
.y12{bottom:744.397500px;}
.y171{bottom:746.614500px;}
.y9a{bottom:748.051500px;}
.y220{bottom:748.081500px;}
.y14a{bottom:749.781000px;}
.y44{bottom:751.308000px;}
.y1ec{bottom:758.841000px;}
.y72{bottom:759.349500px;}
.y107{bottom:759.505500px;}
.yc0{bottom:761.800500px;}
.y170{bottom:766.864500px;}
.y21f{bottom:767.449500px;}
.y1a1{bottom:768.315000px;}
.y43{bottom:771.573000px;}
.y149{bottom:773.778000px;}
.y1eb{bottom:778.209000px;}
.y106{bottom:778.738500px;}
.y71{bottom:779.613000px;}
.ybf{bottom:782.064000px;}
.y99{bottom:782.871000px;}
.y11{bottom:783.403500px;}
.y21e{bottom:786.816000px;}
.y16f{bottom:787.114500px;}
.y1a0{bottom:788.578500px;}
.y42{bottom:791.836500px;}
.y148{bottom:797.776500px;}
.y105{bottom:797.971500px;}
.y70{bottom:799.876500px;}
.y10{bottom:801.561000px;}
.ybe{bottom:802.327500px;}
.y98{bottom:803.134500px;}
.y21d{bottom:806.184000px;}
.y1ea{bottom:806.542500px;}
.y16e{bottom:807.364500px;}
.y19f{bottom:808.843500px;}
.y41{bottom:812.101500px;}
.y104{bottom:817.204500px;}
.y6f{bottom:820.141500px;}
.y147{bottom:821.775000px;}
.ybd{bottom:822.592500px;}
.y97{bottom:823.398000px;}
.yf{bottom:824.599500px;}
.y21c{bottom:825.552000px;}
.y16d{bottom:827.524500px;}
.y19e{bottom:829.107000px;}
.y40{bottom:832.365000px;}
.y103{bottom:836.437500px;}
.y6e{bottom:840.405000px;}
.ye{bottom:842.757000px;}
.ybc{bottom:842.856000px;}
.y96{bottom:843.663000px;}
.y21b{bottom:844.918500px;}
.y146{bottom:845.772000px;}
.y1e9{bottom:845.994000px;}
.y16c{bottom:847.774500px;}
.y19d{bottom:849.372000px;}
.y3f{bottom:852.628500px;}
.y102{bottom:855.670500px;}
.y127{bottom:856.002600px;}
.y6d{bottom:860.668500px;}
.yd{bottom:860.913000px;}
.y1e8{bottom:861.192000px;}
.ybb{bottom:863.121000px;}
.y95{bottom:863.926500px;}
.y21a{bottom:864.286500px;}
.y19c{bottom:869.635500px;}
.y145{bottom:869.770500px;}
.y3e{bottom:872.893500px;}
.y101{bottom:874.903500px;}
.y1e7{bottom:876.390000px;}
.y16b{bottom:877.054500px;}
.yc{bottom:879.070500px;}
.y219{bottom:883.653000px;}
.y94{bottom:884.191500px;}
.y6c{bottom:889.899000px;}
.y1e6{bottom:891.588000px;}
.yba{bottom:892.350000px;}
.y3d{bottom:893.157000px;}
.y144{bottom:893.767500px;}
.yb{bottom:897.228000px;}
.yd8{bottom:897.333000px;}
.y218{bottom:903.021000px;}
.y93{bottom:904.455000px;}
.y19b{bottom:910.164000px;}
.y3c{bottom:913.422000px;}
.y16a{bottom:914.854500px;}
.ya{bottom:915.384000px;}
.y1e5{bottom:915.753000px;}
.y143{bottom:917.766000px;}
.y217{bottom:922.389000px;}
.y6b{bottom:924.718500px;}
.yb9{bottom:927.169500px;}
.y9{bottom:933.541500px;}
.y3b{bottom:933.685500px;}
.y169{bottom:934.294500px;}
.y19a{bottom:939.394500px;}
.y1e4{bottom:939.918000px;}
.y216{bottom:941.755500px;}
.y142{bottom:941.764500px;}
.y6a{bottom:944.983500px;}
.y168{bottom:953.824500px;}
.y3a{bottom:953.949000px;}
.y1ae{bottom:955.084500px;}
.y1e3{bottom:955.116000px;}
.y8{bottom:955.783500px;}
.y215{bottom:961.123500px;}
.yb8{bottom:961.989000px;}
.y69{bottom:965.247000px;}
.y141{bottom:965.761500px;}
.y1e2{bottom:970.314000px;}
.y39{bottom:974.214000px;}
.y7{bottom:976.047000px;}
.y214{bottom:980.490000px;}
.yb7{bottom:982.254000px;}
.y68{bottom:985.512000px;}
.y140{bottom:989.760000px;}
.y166{bottom:990.994500px;}
.y38{bottom:994.477500px;}
.y6{bottom:996.310500px;}
.y213{bottom:999.858000px;}
.y1e1{bottom:1000.710000px;}
.yb6{bottom:1002.517500px;}
.y67{bottom:1005.775500px;}
.y37{bottom:1014.742500px;}
.y1e0{bottom:1015.908000px;}
.y212{bottom:1019.226000px;}
.y13f{bottom:1021.380000px;}
.y66{bottom:1026.039000px;}
.y1df{bottom:1031.106000px;}
.yb5{bottom:1031.748000px;}
.y36{bottom:1035.006000px;}
.y211{bottom:1038.592500px;}
.y13e{bottom:1040.611500px;}
.y5{bottom:1040.848500px;}
.y65{bottom:1046.304000px;}
.y35{bottom:1055.269500px;}
.y210{bottom:1057.960500px;}
.y13d{bottom:1059.844500px;}
.y64{bottom:1066.567500px;}
.y1de{bottom:1070.467500px;}
.y4{bottom:1071.244500px;}
.y34{bottom:1075.534500px;}
.y20f{bottom:1077.327000px;}
.y13c{bottom:1079.077500px;}
.y1dd{bottom:1085.667000px;}
.y63{bottom:1086.832500px;}
.y33{bottom:1095.798000px;}
.y20e{bottom:1096.695000px;}
.y13b{bottom:1098.310500px;}
.y3{bottom:1100.145000px;}
.y1dc{bottom:1100.865000px;}
.y32{bottom:1116.063000px;}
.y13a{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y31{bottom:1168.366500px;}
.ha{height:25.508090px;}
.h12{height:31.528142px;}
.hc{height:33.112997px;}
.hb{height:34.199443px;}
.h29{height:37.336090px;}
.h21{height:37.551283px;}
.h2e{height:37.927872px;}
.h2d{height:38.412058px;}
.h14{height:38.734848px;}
.h8{height:39.457760px;}
.h2b{height:39.488026px;}
.h1d{height:40.251463px;}
.h11{height:41.484266px;}
.h10{height:41.723369px;}
.h13{height:42.840113px;}
.hd{height:43.038432px;}
.h1b{height:43.181307px;}
.h16{height:43.829371px;}
.h4{height:43.875290px;}
.h26{height:44.062559px;}
.h23{height:44.723848px;}
.hf{height:45.094826px;}
.h20{height:45.396387px;}
.h19{height:49.431621px;}
.h1e{height:49.953142px;}
.h25{height:50.440430px;}
.h9{height:50.731891px;}
.h2{height:51.025140px;}
.h17{height:54.393421px;}
.h7{height:54.405312px;}
.h6{height:54.411312px;}
.h1a{height:55.033871px;}
.h24{height:55.503491px;}
.h27{height:56.157012px;}
.he{height:56.368391px;}
.h1f{height:60.528516px;}
.h18{height:65.908828px;}
.h28{height:67.253906px;}
.h5{height:77.469696px;}
.h3{height:102.503837px;}
.h15{height:233.675610px;}
.h2a{height:435.141000px;}
.h2c{height:498.762000px;}
.h22{height:524.236500px;}
.h1c{height:834.557850px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:75.364879px;}
.w2{width:166.304160px;}
.w5{width:608.016645px;}
.w7{width:648.782700px;}
.w4{width:662.851959px;}
.w8{width:673.132350px;}
.w6{width:675.592950px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x8f{left:-1.884300px;}
.x0{left:0.000000px;}
.x73{left:2.067849px;}
.x91{left:4.399350px;}
.x7d{left:5.708745px;}
.x86{left:7.627950px;}
.x7{left:29.274117px;}
.x75{left:33.320049px;}
.x7f{left:34.409745px;}
.x93{left:36.289350px;}
.x87{left:39.517950px;}
.x2{left:57.652455px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x5{left:122.110500px;}
.x4{left:123.307500px;}
.x3e{left:135.846000px;}
.x5b{left:137.266500px;}
.x38{left:143.331000px;}
.x9{left:146.692500px;}
.x72{left:148.894500px;}
.x65{left:156.129000px;}
.x39{left:158.275500px;}
.x82{left:172.428000px;}
.x6a{left:174.498000px;}
.x98{left:180.328500px;}
.x6b{left:183.727500px;}
.x99{left:187.801500px;}
.x1a{left:191.100000px;}
.x8{left:193.249500px;}
.x1b{left:198.571500px;}
.x76{left:204.345000px;}
.x94{left:205.498500px;}
.x54{left:208.243500px;}
.x42{left:214.260000px;}
.x55{left:217.473000px;}
.x1c{left:219.409500px;}
.x43{left:223.491000px;}
.x1d{left:226.881000px;}
.x50{left:233.178000px;}
.x84{left:235.101000px;}
.x83{left:238.462500px;}
.x61{left:240.282000px;}
.x51{left:242.407500px;}
.x97{left:247.537500px;}
.x62{left:249.513000px;}
.xa1{left:251.667000px;}
.xa3{left:254.101500px;}
.x9b{left:256.465500px;}
.x89{left:262.372500px;}
.xa2{left:267.238500px;}
.x8a{left:272.836500px;}
.x9a{left:280.545000px;}
.x78{left:304.917000px;}
.x79{left:312.388500px;}
.x66{left:362.190000px;}
.x3a{left:363.372000px;}
.x77{left:364.948500px;}
.x44{left:366.786000px;}
.xe{left:367.833000px;}
.x67{left:371.419500px;}
.x3b{left:373.369500px;}
.xf{left:375.304500px;}
.x23{left:379.639500px;}
.x45{left:381.730500px;}
.x5a{left:383.311500px;}
.x46{left:385.425000px;}
.x14{left:387.511500px;}
.x6c{left:388.858500px;}
.x9c{left:391.191000px;}
.x3c{left:393.099000px;}
.x15{left:394.984500px;}
.x2c{left:396.409500px;}
.x9d{left:397.633500px;}
.x3d{left:399.786000px;}
.xa{left:401.346000px;}
.x90{left:402.444000px;}
.xb{left:408.817500px;}
.x2d{left:411.354000px;}
.x2e{left:415.060500px;}
.xc{left:416.439000px;}
.x24{left:419.389500px;}
.xd{left:423.912000px;}
.x2f{left:430.003500px;}
.x49{left:452.076000px;}
.x5d{left:456.496500px;}
.x56{left:460.632000px;}
.x4a{left:462.492000px;}
.x5e{left:465.727500px;}
.x57{left:469.861500px;}
.x68{left:475.744500px;}
.x8b{left:478.222500px;}
.x69{left:484.975500px;}
.x8c{left:487.879500px;}
.x6d{left:489.574500px;}
.x8d{left:496.188000px;}
.x30{left:498.327000px;}
.x4b{left:510.240000px;}
.x31{left:513.270000px;}
.x32{left:520.593000px;}
.x47{left:521.793000px;}
.x48{left:528.480000px;}
.x58{left:530.562000px;}
.x85{left:531.879000px;}
.x4c{left:532.998000px;}
.x33{left:535.537500px;}
.x59{left:539.793000px;}
.x34{left:549.552000px;}
.x80{left:551.530500px;}
.x25{left:553.516500px;}
.x3f{left:556.398000px;}
.x81{left:559.837500px;}
.x26{left:563.355000px;}
.x35{left:564.496500px;}
.x1e{left:566.743500px;}
.x36{left:572.118000px;}
.x1f{left:574.215000px;}
.x4d{left:581.835000px;}
.x37{left:587.062500px;}
.x5c{left:596.311500px;}
.x6e{left:599.698500px;}
.x7e{left:603.164745px;}
.x63{left:612.417000px;}
.x6f{left:614.643000px;}
.x10{left:620.640000px;}
.x64{left:621.648000px;}
.x11{left:628.111500px;}
.x5f{left:632.496000px;}
.x18{left:635.805000px;}
.x52{left:638.280000px;}
.x60{left:641.725500px;}
.x19{left:643.276500px;}
.x53{left:647.511000px;}
.x74{left:661.451049px;}
.x20{left:665.803500px;}
.x92{left:668.239350px;}
.x88{left:671.467950px;}
.x21{left:680.748000px;}
.x12{left:688.002000px;}
.x40{left:689.983500px;}
.xa0{left:692.031000px;}
.x13{left:695.473500px;}
.x8e{left:697.666500px;}
.x41{left:699.214500px;}
.x6{left:701.339982px;}
.x22{left:703.134000px;}
.x95{left:706.507500px;}
.x96{left:721.452000px;}
.x27{left:723.166500px;}
.x9f{left:729.618000px;}
.x28{left:730.638000px;}
.x29{left:734.427000px;}
.x7a{left:735.811500px;}
.x70{left:737.992500px;}
.x4e{left:741.967500px;}
.x71{left:745.464000px;}
.x2a{left:749.371500px;}
.x4f{left:751.197000px;}
.x2b{left:756.948000px;}
.x7b{left:758.205000px;}
.x9e{left:762.790500px;}
.x16{left:764.367000px;}
.x17{left:771.838500px;}
.x7c{left:773.149500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.290667pt;}
.ls46{letter-spacing:-0.320000pt;}
.ls4a{letter-spacing:-0.258667pt;}
.ls49{letter-spacing:-0.240000pt;}
.ls47{letter-spacing:-0.160000pt;}
.ls39{letter-spacing:-0.156800pt;}
.ls4b{letter-spacing:-0.144000pt;}
.ls48{letter-spacing:-0.015680pt;}
.lsa{letter-spacing:0.000000pt;}
.ls55{letter-spacing:0.000081pt;}
.ls5b{letter-spacing:0.000185pt;}
.ls3b{letter-spacing:0.000272pt;}
.ls3c{letter-spacing:0.000372pt;}
.ls30{letter-spacing:0.000387pt;}
.ls57{letter-spacing:0.000711pt;}
.lse{letter-spacing:0.001002pt;}
.ls1f{letter-spacing:0.001633pt;}
.ls60{letter-spacing:0.002078pt;}
.ls38{letter-spacing:0.002195pt;}
.ls42{letter-spacing:0.002240pt;}
.ls35{letter-spacing:0.002322pt;}
.ls24{letter-spacing:0.002417pt;}
.ls28{letter-spacing:0.002505pt;}
.ls2d{letter-spacing:0.002530pt;}
.ls5{letter-spacing:0.002551pt;}
.lsf{letter-spacing:0.002613pt;}
.ls3e{letter-spacing:0.002625pt;}
.ls4e{letter-spacing:0.002630pt;}
.ls45{letter-spacing:0.002656pt;}
.ls19{letter-spacing:0.002868pt;}
.ls27{letter-spacing:0.002966pt;}
.ls9{letter-spacing:0.003100pt;}
.ls1a{letter-spacing:0.003106pt;}
.ls10{letter-spacing:0.003770pt;}
.ls5f{letter-spacing:0.004267pt;}
.ls2b{letter-spacing:0.011603pt;}
.ls37{letter-spacing:0.015680pt;}
.ls54{letter-spacing:0.016000pt;}
.ls2a{letter-spacing:0.046413pt;}
.ls53{letter-spacing:0.048000pt;}
.ls2c{letter-spacing:0.078400pt;}
.ls43{letter-spacing:0.096000pt;}
.ls52{letter-spacing:0.112000pt;}
.ls3d{letter-spacing:0.115200pt;}
.ls3a{letter-spacing:0.144000pt;}
.ls29{letter-spacing:0.156800pt;}
.ls40{letter-spacing:0.160000pt;}
.ls41{letter-spacing:0.266667pt;}
.ls58{letter-spacing:0.466280pt;}
.ls56{letter-spacing:0.471509pt;}
.lsb{letter-spacing:1.133683pt;}
.ls7{letter-spacing:1.654338pt;}
.ls0{letter-spacing:2.657067pt;}
.ls2{letter-spacing:2.665203pt;}
.ls8{letter-spacing:10.626533pt;}
.ls5c{letter-spacing:11.691059pt;}
.ls5a{letter-spacing:11.792335pt;}
.ls4d{letter-spacing:11.838477pt;}
.ls4c{letter-spacing:11.839883pt;}
.ls59{letter-spacing:11.954133pt;}
.ls3f{letter-spacing:11.954551pt;}
.ls5e{letter-spacing:11.959467pt;}
.ls44{letter-spacing:12.075859pt;}
.ls5d{letter-spacing:12.196254pt;}
.ls16{letter-spacing:12.671130pt;}
.ls1e{letter-spacing:12.698341pt;}
.ls26{letter-spacing:12.703783pt;}
.ls25{letter-spacing:12.705189pt;}
.ls4f{letter-spacing:13.045587pt;}
.ls51{letter-spacing:13.047789pt;}
.ls50{letter-spacing:13.049109pt;}
.ls21{letter-spacing:13.098878pt;}
.ls20{letter-spacing:13.186358pt;}
.ls1d{letter-spacing:13.220639pt;}
.lsc{letter-spacing:13.278903pt;}
.lsd{letter-spacing:13.285443pt;}
.ls14{letter-spacing:13.340540pt;}
.ls12{letter-spacing:13.373171pt;}
.ls1c{letter-spacing:13.536436pt;}
.ls23{letter-spacing:13.859979pt;}
.ls22{letter-spacing:13.866720pt;}
.ls15{letter-spacing:14.079539pt;}
.ls1b{letter-spacing:14.163247pt;}
.ls18{letter-spacing:14.257365pt;}
.ls13{letter-spacing:14.731744pt;}
.ls11{letter-spacing:14.787022pt;}
.ls17{letter-spacing:15.608257pt;}
.ls61{letter-spacing:16.646107pt;}
.ls36{letter-spacing:17.055971pt;}
.ls32{letter-spacing:18.450829pt;}
.ls31{letter-spacing:18.452494pt;}
.ls33{letter-spacing:21.668028pt;}
.ls34{letter-spacing:21.671744pt;}
.ls2f{letter-spacing:27.465208pt;}
.ls2e{letter-spacing:27.466720pt;}
.ls1{letter-spacing:51.035733pt;}
.ls6{letter-spacing:57.380267pt;}
.ls3{letter-spacing:62.432533pt;}
.ls4{letter-spacing:64.314231pt;}
.ws0{word-spacing:-104.553242pt;}
.ws98{word-spacing:-53.440000pt;}
.ws99{word-spacing:-53.424320pt;}
.ws74{word-spacing:-52.371200pt;}
.ws71{word-spacing:-47.040000pt;}
.ws86{word-spacing:-43.200000pt;}
.ws13{word-spacing:-15.461955pt;}
.ws78{word-spacing:-13.915853pt;}
.ws9a{word-spacing:-13.362240pt;}
.ws2e{word-spacing:-13.283467pt;}
.ws72{word-spacing:-13.094995pt;}
.ws73{word-spacing:-13.092800pt;}
.ws3{word-spacing:-12.760670pt;}
.ws27{word-spacing:-12.369595pt;}
.wsae{word-spacing:-12.048000pt;}
.wsaf{word-spacing:-12.016000pt;}
.wsad{word-spacing:-12.000000pt;}
.ws8f{word-spacing:-11.955200pt;}
.ws70{word-spacing:-11.760000pt;}
.ws97{word-spacing:-11.680000pt;}
.ws95{word-spacing:-10.640000pt;}
.ws25{word-spacing:-10.626800pt;}
.ws6f{word-spacing:-10.427200pt;}
.ws2{word-spacing:-10.095467pt;}
.ws85{word-spacing:-9.576000pt;}
.ws96{word-spacing:-7.360000pt;}
.ws36{word-spacing:-3.294300pt;}
.ws3a{word-spacing:-3.241166pt;}
.wscc{word-spacing:-3.203994pt;}
.ws55{word-spacing:-3.188032pt;}
.ws7e{word-spacing:-3.028630pt;}
.wscd{word-spacing:-3.012710pt;}
.ws54{word-spacing:-2.975497pt;}
.ws82{word-spacing:-2.922363pt;}
.wsd7{word-spacing:-2.821427pt;}
.ws4a{word-spacing:-2.816095pt;}
.ws5c{word-spacing:-2.444158pt;}
.ws39{word-spacing:-2.231622pt;}
.wsf0{word-spacing:-2.151936pt;}
.wsb7{word-spacing:-2.125355pt;}
.ws9d{word-spacing:-2.056294pt;}
.ws60{word-spacing:-2.019087pt;}
.ws88{word-spacing:-2.008474pt;}
.wsa6{word-spacing:-1.912819pt;}
.wsa8{word-spacing:-1.806551pt;}
.ws9{word-spacing:-1.696326pt;}
.wsa3{word-spacing:-1.673728pt;}
.ws4b{word-spacing:-1.647150pt;}
.ws5b{word-spacing:-1.594016pt;}
.wsc4{word-spacing:-1.540882pt;}
.wsc9{word-spacing:-1.434624pt;}
.wsaa{word-spacing:-1.434614pt;}
.wsb6{word-spacing:-1.381481pt;}
.ws7c{word-spacing:-1.338982pt;}
.ws5a{word-spacing:-1.275213pt;}
.ws61{word-spacing:-1.222079pt;}
.ws8{word-spacing:-1.175671pt;}
.ws9c{word-spacing:-1.147699pt;}
.ws62{word-spacing:-1.062677pt;}
.ws7a{word-spacing:-1.052058pt;}
.ws45{word-spacing:-1.009543pt;}
.ws67{word-spacing:-1.004237pt;}
.wsb8{word-spacing:-0.903276pt;}
.ws2a{word-spacing:-0.797008pt;}
.ws68{word-spacing:-0.765133pt;}
.ws11{word-spacing:-0.743874pt;}
.ws58{word-spacing:-0.637606pt;}
.ws7b{word-spacing:-0.621670pt;}
.ws52{word-spacing:-0.584473pt;}
.ws5d{word-spacing:-0.478205pt;}
.ws42{word-spacing:-0.425071pt;}
.wsd8{word-spacing:-0.382566pt;}
.ws5e{word-spacing:-0.371937pt;}
.ws9f{word-spacing:-0.334746pt;}
.ws4e{word-spacing:-0.318803pt;}
.ws75{word-spacing:-0.286925pt;}
.ws17{word-spacing:-0.265669pt;}
.wsc7{word-spacing:-0.239104pt;}
.wsab{word-spacing:-0.224441pt;}
.ws49{word-spacing:-0.212535pt;}
.wsc8{word-spacing:-0.191283pt;}
.wsb{word-spacing:-0.159402pt;}
.ws90{word-spacing:-0.143462pt;}
.ws34{word-spacing:-0.106268pt;}
.ws69{word-spacing:-0.095642pt;}
.ws10{word-spacing:-0.053134pt;}
.ws76{word-spacing:-0.047821pt;}
.ws7{word-spacing:-0.013116pt;}
.wse9{word-spacing:-0.006050pt;}
.ws91{word-spacing:-0.005922pt;}
.wsd4{word-spacing:-0.005342pt;}
.wse8{word-spacing:-0.005274pt;}
.wse1{word-spacing:-0.003857pt;}
.wsf2{word-spacing:-0.003081pt;}
.wse4{word-spacing:-0.002048pt;}
.ws6{word-spacing:-0.000962pt;}
.wsea{word-spacing:-0.000717pt;}
.ws1{word-spacing:0.000000pt;}
.ws24{word-spacing:0.001660pt;}
.ws7d{word-spacing:0.047821pt;}
.ws37{word-spacing:0.053134pt;}
.ws87{word-spacing:0.095642pt;}
.ws3e{word-spacing:0.106268pt;}
.ws89{word-spacing:0.143462pt;}
.ws2b{word-spacing:0.159402pt;}
.ws9b{word-spacing:0.191283pt;}
.ws29{word-spacing:0.212535pt;}
.wsa1{word-spacing:0.239104pt;}
.ws43{word-spacing:0.265669pt;}
.wsce{word-spacing:0.286925pt;}
.ws1f{word-spacing:0.318803pt;}
.wsa0{word-spacing:0.334746pt;}
.wsb9{word-spacing:0.371937pt;}
.wsde{word-spacing:0.382566pt;}
.wsa9{word-spacing:0.478205pt;}
.ws5{word-spacing:0.517963pt;}
.ws63{word-spacing:0.584473pt;}
.wsba{word-spacing:0.637606pt;}
.wsb1{word-spacing:0.669491pt;}
.wsd3{word-spacing:0.717312pt;}
.wse2{word-spacing:0.765133pt;}
.ws20{word-spacing:0.797008pt;}
.ws8b{word-spacing:0.812954pt;}
.ws22{word-spacing:0.850142pt;}
.wscf{word-spacing:0.860774pt;}
.ws5f{word-spacing:0.903276pt;}
.wsb0{word-spacing:0.908595pt;}
.ws59{word-spacing:0.956410pt;}
.wsca{word-spacing:1.004237pt;}
.wsa7{word-spacing:1.009543pt;}
.wsee{word-spacing:1.052058pt;}
.wsc5{word-spacing:1.099878pt;}
.ws3d{word-spacing:1.168945pt;}
.wsb3{word-spacing:1.195520pt;}
.ws41{word-spacing:1.222079pt;}
.wsa2{word-spacing:1.243341pt;}
.ws16{word-spacing:1.275213pt;}
.ws57{word-spacing:1.328347pt;}
.ws8d{word-spacing:1.338982pt;}
.ws1e{word-spacing:1.381481pt;}
.wsb2{word-spacing:1.386803pt;}
.wsb4{word-spacing:1.434624pt;}
.ws4c{word-spacing:1.594016pt;}
.ws4f{word-spacing:1.700284pt;}
.wse{word-spacing:1.753418pt;}
.ws1d{word-spacing:1.806551pt;}
.wsbb{word-spacing:2.019087pt;}
.ws1a{word-spacing:2.231622pt;}
.ws79{word-spacing:2.247578pt;}
.ws4d{word-spacing:2.284756pt;}
.wsda{word-spacing:2.295398pt;}
.ws44{word-spacing:2.337890pt;}
.wsbf{word-spacing:2.391024pt;}
.ws8a{word-spacing:2.438861pt;}
.wsa5{word-spacing:2.603559pt;}
.ws46{word-spacing:2.656693pt;}
.ws84{word-spacing:2.709827pt;}
.ws94{word-spacing:2.762961pt;}
.wsd0{word-spacing:2.773606pt;}
.ws56{word-spacing:2.869229pt;}
.wsf3{word-spacing:2.917069pt;}
.wsbe{word-spacing:2.922363pt;}
.ws23{word-spacing:2.975497pt;}
.wsc{word-spacing:3.028630pt;}
.wsac{word-spacing:3.134898pt;}
.wsd1{word-spacing:3.156173pt;}
.wsf{word-spacing:3.241166pt;}
.wsbc{word-spacing:3.347434pt;}
.wsc1{word-spacing:3.400567pt;}
.ws66{word-spacing:3.453701pt;}
.ws3b{word-spacing:3.559969pt;}
.ws50{word-spacing:3.613103pt;}
.wseb{word-spacing:3.682202pt;}
.ws48{word-spacing:3.719371pt;}
.ws9e{word-spacing:3.730022pt;}
.ws83{word-spacing:3.825638pt;}
.wsc2{word-spacing:3.931906pt;}
.wsc3{word-spacing:3.985040pt;}
.ws33{word-spacing:4.038174pt;}
.ws93{word-spacing:4.144442pt;}
.ws19{word-spacing:4.250709pt;}
.ws28{word-spacing:4.303843pt;}
.wsbd{word-spacing:4.410111pt;}
.ws77{word-spacing:4.495155pt;}
.ws65{word-spacing:4.675780pt;}
.wsed{word-spacing:4.686438pt;}
.ws64{word-spacing:4.728914pt;}
.wsb5{word-spacing:4.734259pt;}
.wscb{word-spacing:4.773845pt;}
.wse7{word-spacing:4.777583pt;}
.wsdc{word-spacing:4.778487pt;}
.wse6{word-spacing:4.781278pt;}
.wsd6{word-spacing:4.782080pt;}
.wsf1{word-spacing:4.782157pt;}
.wsd9{word-spacing:4.783420pt;}
.wsc6{word-spacing:5.069005pt;}
.ws81{word-spacing:5.153985pt;}
.wsdb{word-spacing:5.212467pt;}
.wsa4{word-spacing:5.260253pt;}
.ws1b{word-spacing:5.307978pt;}
.ws1c{word-spacing:5.313387pt;}
.ws35{word-spacing:5.419654pt;}
.ws38{word-spacing:5.472788pt;}
.ws14{word-spacing:5.579056pt;}
.ws12{word-spacing:5.632190pt;}
.ws8c{word-spacing:5.786317pt;}
.ws18{word-spacing:5.897859pt;}
.ws7f{word-spacing:6.216662pt;}
.wsdf{word-spacing:6.216704pt;}
.ws53{word-spacing:6.854269pt;}
.wsdd{word-spacing:6.886195pt;}
.ws40{word-spacing:7.066804pt;}
.wsc0{word-spacing:7.119938pt;}
.wsa{word-spacing:7.226206pt;}
.wsd2{word-spacing:7.268762pt;}
.ws15{word-spacing:7.598143pt;}
.ws51{word-spacing:7.970080pt;}
.wsd{word-spacing:8.129482pt;}
.wse3{word-spacing:8.177357pt;}
.ws21{word-spacing:8.342017pt;}
.ws8e{word-spacing:8.368640pt;}
.ws47{word-spacing:8.395151pt;}
.ws3c{word-spacing:9.298427pt;}
.wsef{word-spacing:9.325056pt;}
.ws32{word-spacing:10.254836pt;}
.wse5{word-spacing:10.329293pt;}
.ws2d{word-spacing:11.530049pt;}
.ws30{word-spacing:11.543914pt;}
.ws31{word-spacing:11.547653pt;}
.ws2f{word-spacing:11.547711pt;}
.wsd5{word-spacing:14.011494pt;}
.ws80{word-spacing:14.186742pt;}
.ws2c{word-spacing:14.877483pt;}
.ws3f{word-spacing:15.887026pt;}
.wsec{word-spacing:16.259072pt;}
.wse0{word-spacing:17.932800pt;}
.ws4{word-spacing:35.593054pt;}
.ws6e{word-spacing:73.978778pt;}
.ws6c{word-spacing:85.933978pt;}
.ws6a{word-spacing:161.969050pt;}
.ws92{word-spacing:206.490214pt;}
.ws6d{word-spacing:324.887919pt;}
.ws6b{word-spacing:336.845252pt;}
.ws26{word-spacing:941.534480pt;}
._47{margin-left:-6.992248pt;}
._2{margin-left:-5.942806pt;}
._4{margin-left:-4.399514pt;}
._3{margin-left:-2.630144pt;}
._0{margin-left:-1.137234pt;}
._7{width:0.969929pt;}
._1{width:2.668463pt;}
._1d{width:4.112730pt;}
._31{width:5.456640pt;}
._45{width:6.783339pt;}
._17{width:7.694122pt;}
._16{width:8.607686pt;}
._30{width:10.212138pt;}
._19{width:11.253782pt;}
._11{width:12.667283pt;}
._f{width:14.155031pt;}
._5{width:15.876506pt;}
._6{width:17.598054pt;}
._12{width:18.814438pt;}
._b{width:19.946623pt;}
._c{width:21.997421pt;}
._10{width:23.612859pt;}
._e{width:25.716791pt;}
._15{width:27.310623pt;}
._9{width:28.501175pt;}
._1b{width:30.405808pt;}
._14{width:31.933454pt;}
._1a{width:33.314934pt;}
._1c{width:34.261055pt;}
._18{width:35.227754pt;}
._d{width:36.556100pt;}
._8{width:39.924956pt;}
._a{width:41.710085pt;}
._2e{width:105.731789pt;}
._21{width:107.405517pt;}
._22{width:112.044134pt;}
._2b{width:117.065318pt;}
._2a{width:124.621005pt;}
._20{width:127.298970pt;}
._23{width:138.010829pt;}
._2d{width:150.731162pt;}
._33{width:153.982976pt;}
._29{width:162.686362pt;}
._3f{width:174.424562pt;}
._34{width:175.741440pt;}
._35{width:177.032602pt;}
._36{width:179.088896pt;}
._1f{width:185.592525pt;}
._42{width:189.701914pt;}
._27{width:193.052570pt;}
._1e{width:194.821939pt;}
._41{width:199.412736pt;}
._40{width:201.660314pt;}
._2c{width:205.503326pt;}
._3a{width:211.367936pt;}
._26{width:212.324352pt;}
._3b{width:218.427785pt;}
._24{width:225.418052pt;}
._3e{width:227.340083pt;}
._39{width:234.465382pt;}
._3c{width:239.295283pt;}
._3d{width:246.420582pt;}
._25{width:250.676634pt;}
._37{width:256.797696pt;}
._43{width:260.097331pt;}
._38{width:279.130010pt;}
._28{width:321.037431pt;}
._32{width:1664.817408pt;}
._2f{width:1812.801178pt;}
._48{width:1828.357120pt;}
._46{width:1843.785945pt;}
._44{width:1849.797120pt;}
._13{width:1865.039278pt;}
.fs12{font-size:29.440000pt;}
.fs4{font-size:37.193600pt;}
.fs7{font-size:37.276537pt;}
.fsd{font-size:38.304000pt;}
.fs3{font-size:40.381867pt;}
.fs9{font-size:41.708800pt;}
.fs6{font-size:41.988267pt;}
.fs8{font-size:42.507200pt;}
.fs10{font-size:42.560000pt;}
.fse{font-size:43.200000pt;}
.fsa{font-size:47.040000pt;}
.fs5{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fsc{font-size:52.371200pt;}
.fs1{font-size:53.133867pt;}
.fs13{font-size:53.440000pt;}
.fsf{font-size:57.600000pt;}
.fsb{font-size:62.720000pt;}
.fs14{font-size:64.000000pt;}
.fs2{font-size:95.641600pt;}
.fs0{font-size:134.387200pt;}
.yda{bottom:-748.206480pt;}
.y100{bottom:-684.232080pt;}
.yff{bottom:-666.592080pt;}
.yfe{bottom:-648.952080pt;}
.yfd{bottom:-631.312080pt;}
.yfc{bottom:-613.645947pt;}
.yfb{bottom:-596.084347pt;}
.yfa{bottom:-578.444347pt;}
.y1a4{bottom:-575.506667pt;}
.yf9{bottom:-560.804347pt;}
.y1ab{bottom:-545.106667pt;}
.yf8{bottom:-543.164347pt;}
.y1aa{bottom:-527.906667pt;}
.yf7{bottom:-525.524347pt;}
.y1a9{bottom:-510.546667pt;}
.yf6{bottom:-507.884347pt;}
.y1a8{bottom:-493.186667pt;}
.yf5{bottom:-490.322747pt;}
.y1a7{bottom:-475.906667pt;}
.yf4{bottom:-472.682747pt;}
.y1a6{bottom:-458.466667pt;}
.yf3{bottom:-455.042747pt;}
.yf2{bottom:-437.402747pt;}
.y1a5{bottom:-432.040000pt;}
.yf1{bottom:-411.922747pt;}
.yf0{bottom:-378.602747pt;}
.yef{bottom:-360.962747pt;}
.yee{bottom:-343.401147pt;}
.yed{bottom:-325.761147pt;}
.yec{bottom:-308.121147pt;}
.yeb{bottom:-290.481147pt;}
.yea{bottom:-272.841147pt;}
.ye9{bottom:-255.175013pt;}
.ye8{bottom:-237.535013pt;}
.ye7{bottom:-219.973413pt;}
.ye6{bottom:-202.333413pt;}
.ye5{bottom:-184.693413pt;}
.ye4{bottom:-151.765413pt;}
.y1af{bottom:-134.956000pt;}
.ye3{bottom:-134.831013pt;}
.y128{bottom:-124.636800pt;}
.ye2{bottom:-117.818213pt;}
.y1b6{bottom:-104.556000pt;}
.y167{bottom:-103.036000pt;}
.ye1{bottom:-100.805413pt;}
.y12f{bottom:-97.348800pt;}
.y1b5{bottom:-87.356000pt;}
.y182{bottom:-85.756000pt;}
.ye0{bottom:-83.871013pt;}
.y12e{bottom:-81.796800pt;}
.y1b4{bottom:-69.996000pt;}
.y181{bottom:-68.396000pt;}
.ydf{bottom:-66.779813pt;}
.y12d{bottom:-66.172800pt;}
.y1b3{bottom:-52.636000pt;}
.y180{bottom:-51.116000pt;}
.y12c{bottom:-50.548800pt;}
.yde{bottom:-49.845413pt;}
.y1b2{bottom:-35.356000pt;}
.y12b{bottom:-34.996800pt;}
.y17f{bottom:-33.676000pt;}
.ydd{bottom:-32.911013pt;}
.y12a{bottom:-19.300800pt;}
.y1b1{bottom:-17.916000pt;}
.y17e{bottom:-16.316000pt;}
.ydc{bottom:-15.819813pt;}
.y0{bottom:0.000000pt;}
.y15{bottom:3.044747pt;}
.y17d{bottom:6.484000pt;}
.ydb{bottom:7.229787pt;}
.y1b0{bottom:8.510667pt;}
.y129{bottom:9.667200pt;}
.y2{bottom:12.267116pt;}
.y14{bottom:12.578910pt;}
.y30{bottom:56.693333pt;}
.y1cf{bottom:98.108000pt;}
.y125{bottom:102.566667pt;}
.y1db{bottom:105.150667pt;}
.y2f{bottom:105.373333pt;}
.y20d{bottom:106.414667pt;}
.y139{bottom:106.812000pt;}
.y92{bottom:110.797333pt;}
.y62{bottom:111.620000pt;}
.y1ce{bottom:116.120000pt;}
.yb4{bottom:116.588000pt;}
.y1da{bottom:118.660000pt;}
.y124{bottom:120.578667pt;}
.y138{bottom:121.520000pt;}
.y2e{bottom:123.386667pt;}
.y20c{bottom:123.630667pt;}
.y137{bottom:123.908000pt;}
.y199{bottom:125.624000pt;}
.y91{bottom:128.809333pt;}
.y61{bottom:129.633333pt;}
.y1cd{bottom:134.133333pt;}
.yb3{bottom:134.601333pt;}
.y123{bottom:138.592000pt;}
.y164{bottom:139.316000pt;}
.y1d9{bottom:140.140000pt;}
.y20b{bottom:140.845333pt;}
.y136{bottom:141.004000pt;}
.y2d{bottom:141.398667pt;}
.y198{bottom:143.636000pt;}
.y90{bottom:146.821333pt;}
.y60{bottom:147.645333pt;}
.y1cc{bottom:152.145333pt;}
.yb2{bottom:152.613333pt;}
.y1d8{bottom:153.649333pt;}
.y122{bottom:156.604000pt;}
.y163{bottom:157.329333pt;}
.y20a{bottom:158.061333pt;}
.y135{bottom:158.100000pt;}
.y2c{bottom:159.412000pt;}
.y197{bottom:161.649333pt;}
.y8f{bottom:164.834667pt;}
.y5f{bottom:165.657333pt;}
.y1d7{bottom:167.158667pt;}
.y1cb{bottom:170.158667pt;}
.yb1{bottom:170.625333pt;}
.y121{bottom:174.617333pt;}
.y134{bottom:175.196000pt;}
.y209{bottom:175.276000pt;}
.y162{bottom:175.341333pt;}
.y2b{bottom:177.424000pt;}
.y196{bottom:179.661333pt;}
.y8e{bottom:182.846667pt;}
.y5e{bottom:183.670667pt;}
.y1ca{bottom:188.170667pt;}
.yb0{bottom:188.638667pt;}
.y133{bottom:192.292000pt;}
.y208{bottom:192.492000pt;}
.y120{bottom:192.629333pt;}
.y161{bottom:193.353333pt;}
.y2a{bottom:195.436000pt;}
.y1d6{bottom:196.608000pt;}
.y195{bottom:197.673333pt;}
.y8d{bottom:200.860000pt;}
.y5c{bottom:201.682667pt;}
.y1c9{bottom:206.182667pt;}
.y5d{bottom:206.505333pt;}
.yaf{bottom:206.650667pt;}
.y132{bottom:209.388000pt;}
.y207{bottom:209.708000pt;}
.y11f{bottom:210.641333pt;}
.y160{bottom:211.366667pt;}
.y29{bottom:213.449333pt;}
.y1d5{bottom:214.621333pt;}
.yd9{bottom:216.035120pt;}
.y8c{bottom:218.872000pt;}
.y1c8{bottom:224.196000pt;}
.yae{bottom:224.664000pt;}
.y131{bottom:226.484000pt;}
.y206{bottom:226.922667pt;}
.y5b{bottom:227.665333pt;}
.y11e{bottom:228.654667pt;}
.y194{bottom:228.785333pt;}
.y15f{bottom:229.378667pt;}
.y28{bottom:231.461333pt;}
.y1d4{bottom:232.633333pt;}
.y8b{bottom:236.884000pt;}
.y1ac{bottom:237.185333pt;}
.y1c7{bottom:242.208000pt;}
.yad{bottom:242.676000pt;}
.y130{bottom:243.580000pt;}
.y205{bottom:244.138667pt;}
.y193{bottom:245.881333pt;}
.y11d{bottom:246.666667pt;}
.y15e{bottom:247.392000pt;}
.y1d3{bottom:250.646667pt;}
.yd7{bottom:251.728000pt;}
.y8a{bottom:254.897333pt;}
.y237{bottom:257.069333pt;}
.y1a2{bottom:257.122667pt;}
.y27{bottom:257.444000pt;}
.y5a{bottom:258.616000pt;}
.y1c6{bottom:260.221333pt;}
.yac{bottom:260.688000pt;}
.y204{bottom:261.353333pt;}
.y192{bottom:262.977333pt;}
.y126{bottom:263.517333pt;}
.y11c{bottom:264.680000pt;}
.y15d{bottom:265.404000pt;}
.yd6{bottom:266.657333pt;}
.y1d2{bottom:268.658667pt;}
.y89{bottom:272.909333pt;}
.y236{bottom:274.285333pt;}
.y1c5{bottom:278.233333pt;}
.y203{bottom:278.569333pt;}
.yab{bottom:278.701333pt;}
.y191{bottom:280.073333pt;}
.yd5{bottom:281.586667pt;}
.y11b{bottom:282.692000pt;}
.y15c{bottom:283.416000pt;}
.y1d1{bottom:286.670667pt;}
.y59{bottom:289.566667pt;}
.y88{bottom:290.922667pt;}
.y235{bottom:291.500000pt;}
.y202{bottom:295.785333pt;}
.y1c4{bottom:296.245333pt;}
.yd4{bottom:296.516000pt;}
.yaa{bottom:296.713333pt;}
.y190{bottom:297.169333pt;}
.y11a{bottom:300.704000pt;}
.y15b{bottom:301.429333pt;}
.y58{bottom:307.580000pt;}
.y87{bottom:308.934667pt;}
.yd3{bottom:311.445333pt;}
.y1d0{bottom:312.653333pt;}
.y201{bottom:313.000000pt;}
.y1c3{bottom:314.258667pt;}
.y18f{bottom:314.265333pt;}
.ya9{bottom:314.726667pt;}
.y119{bottom:318.717333pt;}
.y15a{bottom:319.441333pt;}
.y234{bottom:320.652000pt;}
.y26{bottom:325.369333pt;}
.y57{bottom:325.592000pt;}
.yd2{bottom:326.374667pt;}
.y200{bottom:330.216000pt;}
.y18e{bottom:331.360000pt;}
.y1c2{bottom:332.270667pt;}
.ya8{bottom:332.738667pt;}
.y86{bottom:334.917333pt;}
.y118{bottom:336.729333pt;}
.y159{bottom:337.454667pt;}
.y233{bottom:337.868000pt;}
.y56{bottom:343.604000pt;}
.y1ff{bottom:347.430667pt;}
.yd1{bottom:347.706667pt;}
.y18d{bottom:348.456000pt;}
.y1c1{bottom:350.284000pt;}
.ya7{bottom:350.750667pt;}
.y117{bottom:354.742667pt;}
.y232{bottom:355.082667pt;}
.y158{bottom:355.466667pt;}
.y25{bottom:359.322667pt;}
.y55{bottom:361.617333pt;}
.y1fe{bottom:364.646667pt;}
.y18c{bottom:365.552000pt;}
.y85{bottom:365.868000pt;}
.y1c0{bottom:368.296000pt;}
.ya6{bottom:368.764000pt;}
.y231{bottom:372.298667pt;}
.y157{bottom:373.478667pt;}
.yd0{bottom:375.812000pt;}
.y24{bottom:377.334667pt;}
.y54{bottom:379.629333pt;}
.y116{bottom:380.725333pt;}
.y1fd{bottom:381.862667pt;}
.y18b{bottom:382.648000pt;}
.y84{bottom:383.880000pt;}
.ya5{bottom:386.776000pt;}
.y230{bottom:389.514667pt;}
.y156{bottom:391.492000pt;}
.ycf{bottom:392.908000pt;}
.y1bf{bottom:394.278667pt;}
.y23{bottom:395.346667pt;}
.y53{bottom:397.642667pt;}
.y1fc{bottom:399.077333pt;}
.y18a{bottom:399.744000pt;}
.y82{bottom:401.893333pt;}
.ya4{bottom:404.789333pt;}
.y83{bottom:406.714667pt;}
.y22f{bottom:406.729333pt;}
.y1a3{bottom:408.413333pt;}
.y155{bottom:409.504000pt;}
.yce{bottom:410.004000pt;}
.y115{bottom:411.676000pt;}
.y22{bottom:413.360000pt;}
.y52{bottom:415.654667pt;}
.y1fb{bottom:416.293333pt;}
.y189{bottom:416.840000pt;}
.y80{bottom:419.905333pt;}
.y1be{bottom:422.388000pt;}
.ya3{bottom:422.801333pt;}
.y22e{bottom:423.945333pt;}
.y81{bottom:424.728000pt;}
.y114{bottom:429.688000pt;}
.y21{bottom:431.372000pt;}
.y1fa{bottom:433.508000pt;}
.y51{bottom:433.666667pt;}
.y188{bottom:433.936000pt;}
.y154{bottom:435.486667pt;}
.y7f{bottom:437.918667pt;}
.y1bd{bottom:439.484000pt;}
.ya2{bottom:440.813333pt;}
.y22d{bottom:441.160000pt;}
.ycd{bottom:442.992000pt;}
.y113{bottom:447.700000pt;}
.y20{bottom:449.385333pt;}
.y1f9{bottom:450.724000pt;}
.y187{bottom:451.032000pt;}
.y50{bottom:451.680000pt;}
.y7d{bottom:455.930667pt;}
.y1bc{bottom:456.580000pt;}
.y22c{bottom:458.376000pt;}
.ya1{bottom:458.826667pt;}
.y7e{bottom:460.752000pt;}
.ycc{bottom:461.005333pt;}
.y112{bottom:465.713333pt;}
.y17c{bottom:465.817333pt;}
.y1f{bottom:467.397333pt;}
.y1f8{bottom:467.940000pt;}
.y186{bottom:468.128000pt;}
.y4f{bottom:469.692000pt;}
.y1bb{bottom:473.676000pt;}
.y7c{bottom:473.942667pt;}
.y153{bottom:474.488000pt;}
.y22b{bottom:475.592000pt;}
.ya0{bottom:476.838667pt;}
.ycb{bottom:479.017333pt;}
.y111{bottom:483.725333pt;}
.y17b{bottom:483.737333pt;}
.y1f7{bottom:485.154667pt;}
.y185{bottom:485.222667pt;}
.y1e{bottom:485.409333pt;}
.y4e{bottom:487.704000pt;}
.y1ba{bottom:490.772000pt;}
.y7b{bottom:491.956000pt;}
.y22a{bottom:492.806667pt;}
.y9f{bottom:494.852000pt;}
.y152{bottom:495.820000pt;}
.yca{bottom:497.030667pt;}
.y17a{bottom:501.737333pt;}
.y110{bottom:501.738667pt;}
.y184{bottom:502.318667pt;}
.y1f6{bottom:502.370667pt;}
.y1d{bottom:503.422667pt;}
.y4d{bottom:505.717333pt;}
.y1b9{bottom:507.866667pt;}
.y7a{bottom:509.968000pt;}
.y229{bottom:510.022667pt;}
.y9e{bottom:512.864000pt;}
.yc9{bottom:515.042667pt;}
.y151{bottom:517.150667pt;}
.y183{bottom:519.414667pt;}
.y1f5{bottom:519.585333pt;}
.y179{bottom:519.737333pt;}
.y10f{bottom:519.750667pt;}
.y1c{bottom:521.434667pt;}
.y4c{bottom:523.729333pt;}
.y1b8{bottom:524.962667pt;}
.y228{bottom:527.237333pt;}
.y9d{bottom:530.876000pt;}
.yc8{bottom:533.054667pt;}
.y79{bottom:535.950667pt;}
.y1f4{bottom:536.801333pt;}
.y178{bottom:537.737333pt;}
.y10e{bottom:537.762667pt;}
.y150{bottom:538.482667pt;}
.y165{bottom:539.352000pt;}
.y1b{bottom:539.448000pt;}
.y4b{bottom:541.742667pt;}
.y1b7{bottom:542.058667pt;}
.y227{bottom:544.453333pt;}
.y9c{bottom:548.889333pt;}
.yc7{bottom:551.068000pt;}
.y1f3{bottom:554.017333pt;}
.y177{bottom:555.737333pt;}
.y10d{bottom:555.776000pt;}
.y1a{bottom:557.460000pt;}
.y4a{bottom:559.754667pt;}
.y14f{bottom:559.814667pt;}
.y226{bottom:561.669333pt;}
.y1ad{bottom:561.996000pt;}
.y78{bottom:566.901333pt;}
.yc6{bottom:569.080000pt;}
.y1f2{bottom:571.232000pt;}
.y176{bottom:573.737333pt;}
.y10c{bottom:573.788000pt;}
.y19{bottom:575.472000pt;}
.y49{bottom:577.766667pt;}
.y225{bottom:578.884000pt;}
.y14e{bottom:581.145333pt;}
.y77{bottom:584.914667pt;}
.yc5{bottom:587.093333pt;}
.y1f1{bottom:588.448000pt;}
.y175{bottom:591.737333pt;}
.y10b{bottom:591.801333pt;}
.y18{bottom:593.485333pt;}
.y48{bottom:595.780000pt;}
.y224{bottom:596.100000pt;}
.y14d{bottom:602.477333pt;}
.y76{bottom:602.926667pt;}
.yc4{bottom:605.105333pt;}
.y1f0{bottom:605.664000pt;}
.y174{bottom:609.657333pt;}
.y10a{bottom:609.813333pt;}
.y17{bottom:611.497333pt;}
.y223{bottom:613.314667pt;}
.y47{bottom:613.792000pt;}
.y75{bottom:620.938667pt;}
.y1ef{bottom:622.878667pt;}
.yc3{bottom:623.117333pt;}
.y14c{bottom:623.808000pt;}
.y9b{bottom:625.761333pt;}
.y173{bottom:627.657333pt;}
.y16{bottom:629.510667pt;}
.y222{bottom:630.530667pt;}
.y46{bottom:631.805333pt;}
.y74{bottom:638.952000pt;}
.y1ee{bottom:640.094667pt;}
.y109{bottom:640.925333pt;}
.yc2{bottom:641.130667pt;}
.y14b{bottom:645.140000pt;}
.y172{bottom:645.657333pt;}
.y221{bottom:647.746667pt;}
.y45{bottom:649.817333pt;}
.y73{bottom:656.964000pt;}
.y1ed{bottom:657.309333pt;}
.y108{bottom:658.020000pt;}
.yc1{bottom:659.142667pt;}
.y13{bottom:661.005301pt;}
.y12{bottom:661.686667pt;}
.y171{bottom:663.657333pt;}
.y9a{bottom:664.934667pt;}
.y220{bottom:664.961333pt;}
.y14a{bottom:666.472000pt;}
.y44{bottom:667.829333pt;}
.y1ec{bottom:674.525333pt;}
.y72{bottom:674.977333pt;}
.y107{bottom:675.116000pt;}
.yc0{bottom:677.156000pt;}
.y170{bottom:681.657333pt;}
.y21f{bottom:682.177333pt;}
.y1a1{bottom:682.946667pt;}
.y43{bottom:685.842667pt;}
.y149{bottom:687.802667pt;}
.y1eb{bottom:691.741333pt;}
.y106{bottom:692.212000pt;}
.y71{bottom:692.989333pt;}
.ybf{bottom:695.168000pt;}
.y99{bottom:695.885333pt;}
.y11{bottom:696.358667pt;}
.y21e{bottom:699.392000pt;}
.y16f{bottom:699.657333pt;}
.y1a0{bottom:700.958667pt;}
.y42{bottom:703.854667pt;}
.y148{bottom:709.134667pt;}
.y105{bottom:709.308000pt;}
.y70{bottom:711.001333pt;}
.y10{bottom:712.498667pt;}
.ybe{bottom:713.180000pt;}
.y98{bottom:713.897333pt;}
.y21d{bottom:716.608000pt;}
.y1ea{bottom:716.926667pt;}
.y16e{bottom:717.657333pt;}
.y19f{bottom:718.972000pt;}
.y41{bottom:721.868000pt;}
.y104{bottom:726.404000pt;}
.y6f{bottom:729.014667pt;}
.y147{bottom:730.466667pt;}
.ybd{bottom:731.193333pt;}
.y97{bottom:731.909333pt;}
.yf{bottom:732.977333pt;}
.y21c{bottom:733.824000pt;}
.y16d{bottom:735.577333pt;}
.y19e{bottom:736.984000pt;}
.y40{bottom:739.880000pt;}
.y103{bottom:743.500000pt;}
.y6e{bottom:747.026667pt;}
.ye{bottom:749.117333pt;}
.ybc{bottom:749.205333pt;}
.y96{bottom:749.922667pt;}
.y21b{bottom:751.038667pt;}
.y146{bottom:751.797333pt;}
.y1e9{bottom:751.994667pt;}
.y16c{bottom:753.577333pt;}
.y19d{bottom:754.997333pt;}
.y3f{bottom:757.892000pt;}
.y102{bottom:760.596000pt;}
.y127{bottom:760.891200pt;}
.y6d{bottom:765.038667pt;}
.yd{bottom:765.256000pt;}
.y1e8{bottom:765.504000pt;}
.ybb{bottom:767.218667pt;}
.y95{bottom:767.934667pt;}
.y21a{bottom:768.254667pt;}
.y19c{bottom:773.009333pt;}
.y145{bottom:773.129333pt;}
.y3e{bottom:775.905333pt;}
.y101{bottom:777.692000pt;}
.y1e7{bottom:779.013333pt;}
.y16b{bottom:779.604000pt;}
.yc{bottom:781.396000pt;}
.y219{bottom:785.469333pt;}
.y94{bottom:785.948000pt;}
.y6c{bottom:791.021333pt;}
.y1e6{bottom:792.522667pt;}
.yba{bottom:793.200000pt;}
.y3d{bottom:793.917333pt;}
.y144{bottom:794.460000pt;}
.yb{bottom:797.536000pt;}
.yd8{bottom:797.629333pt;}
.y218{bottom:802.685333pt;}
.y93{bottom:803.960000pt;}
.y19b{bottom:809.034667pt;}
.y3c{bottom:811.930667pt;}
.y16a{bottom:813.204000pt;}
.ya{bottom:813.674667pt;}
.y1e5{bottom:814.002667pt;}
.y143{bottom:815.792000pt;}
.y217{bottom:819.901333pt;}
.y6b{bottom:821.972000pt;}
.yb9{bottom:824.150667pt;}
.y9{bottom:829.814667pt;}
.y3b{bottom:829.942667pt;}
.y169{bottom:830.484000pt;}
.y19a{bottom:835.017333pt;}
.y1e4{bottom:835.482667pt;}
.y216{bottom:837.116000pt;}
.y142{bottom:837.124000pt;}
.y6a{bottom:839.985333pt;}
.y168{bottom:847.844000pt;}
.y3a{bottom:847.954667pt;}
.y1ae{bottom:848.964000pt;}
.y1e3{bottom:848.992000pt;}
.y8{bottom:849.585333pt;}
.y215{bottom:854.332000pt;}
.yb8{bottom:855.101333pt;}
.y69{bottom:857.997333pt;}
.y141{bottom:858.454667pt;}
.y1e2{bottom:862.501333pt;}
.y39{bottom:865.968000pt;}
.y7{bottom:867.597333pt;}
.y214{bottom:871.546667pt;}
.yb7{bottom:873.114667pt;}
.y68{bottom:876.010667pt;}
.y140{bottom:879.786667pt;}
.y166{bottom:880.884000pt;}
.y38{bottom:883.980000pt;}
.y6{bottom:885.609333pt;}
.y213{bottom:888.762667pt;}
.y1e1{bottom:889.520000pt;}
.yb6{bottom:891.126667pt;}
.y67{bottom:894.022667pt;}
.y37{bottom:901.993333pt;}
.y1e0{bottom:903.029333pt;}
.y212{bottom:905.978667pt;}
.y13f{bottom:907.893333pt;}
.y66{bottom:912.034667pt;}
.y1df{bottom:916.538667pt;}
.yb5{bottom:917.109333pt;}
.y36{bottom:920.005333pt;}
.y211{bottom:923.193333pt;}
.y13e{bottom:924.988000pt;}
.y5{bottom:925.198667pt;}
.y65{bottom:930.048000pt;}
.y35{bottom:938.017333pt;}
.y210{bottom:940.409333pt;}
.y13d{bottom:942.084000pt;}
.y64{bottom:948.060000pt;}
.y1de{bottom:951.526667pt;}
.y4{bottom:952.217333pt;}
.y34{bottom:956.030667pt;}
.y20f{bottom:957.624000pt;}
.y13c{bottom:959.180000pt;}
.y1dd{bottom:965.037333pt;}
.y63{bottom:966.073333pt;}
.y33{bottom:974.042667pt;}
.y20e{bottom:974.840000pt;}
.y13b{bottom:976.276000pt;}
.y3{bottom:977.906667pt;}
.y1dc{bottom:978.546667pt;}
.y32{bottom:992.056000pt;}
.y13a{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y31{bottom:1038.548000pt;}
.ha{height:22.673858pt;}
.h12{height:28.025015pt;}
.hc{height:29.433775pt;}
.hb{height:30.399505pt;}
.h29{height:33.187635pt;}
.h21{height:33.378918pt;}
.h2e{height:33.713664pt;}
.h2d{height:34.144051pt;}
.h14{height:34.430976pt;}
.h8{height:35.073565pt;}
.h2b{height:35.100467pt;}
.h1d{height:35.779078pt;}
.h11{height:36.874903pt;}
.h10{height:37.087439pt;}
.h13{height:38.080100pt;}
.hd{height:38.256384pt;}
.h1b{height:38.383384pt;}
.h16{height:38.959441pt;}
.h4{height:39.000258pt;}
.h26{height:39.166719pt;}
.h23{height:39.754531pt;}
.hf{height:40.084290pt;}
.h20{height:40.352344pt;}
.h19{height:43.939219pt;}
.h1e{height:44.402793pt;}
.h25{height:44.835938pt;}
.h9{height:45.095014pt;}
.h2{height:45.355680pt;}
.h17{height:48.349707pt;}
.h7{height:48.360277pt;}
.h6{height:48.365611pt;}
.h1a{height:48.918997pt;}
.h24{height:49.336436pt;}
.h27{height:49.917344pt;}
.he{height:50.105236pt;}
.h1f{height:53.803125pt;}
.h18{height:58.585625pt;}
.h28{height:59.781250pt;}
.h5{height:68.861952pt;}
.h3{height:91.114522pt;}
.h15{height:207.711653pt;}
.h2a{height:386.792000pt;}
.h2c{height:443.344000pt;}
.h22{height:465.988000pt;}
.h1c{height:741.829200pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:66.991004pt;}
.w2{width:147.825920pt;}
.w5{width:540.459240pt;}
.w7{width:576.695733pt;}
.w4{width:589.201741pt;}
.w8{width:598.339867pt;}
.w6{width:600.527067pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x8f{left:-1.674933pt;}
.x0{left:0.000000pt;}
.x73{left:1.838088pt;}
.x91{left:3.910533pt;}
.x7d{left:5.074440pt;}
.x86{left:6.780400pt;}
.x7{left:26.021437pt;}
.x75{left:29.617821pt;}
.x7f{left:30.586440pt;}
.x93{left:32.257200pt;}
.x87{left:35.127067pt;}
.x2{left:51.246627pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x5{left:108.542667pt;}
.x4{left:109.606667pt;}
.x3e{left:120.752000pt;}
.x5b{left:122.014667pt;}
.x38{left:127.405333pt;}
.x9{left:130.393333pt;}
.x72{left:132.350667pt;}
.x65{left:138.781333pt;}
.x39{left:140.689333pt;}
.x82{left:153.269333pt;}
.x6a{left:155.109333pt;}
.x98{left:160.292000pt;}
.x6b{left:163.313333pt;}
.x99{left:166.934667pt;}
.x1a{left:169.866667pt;}
.x8{left:171.777333pt;}
.x1b{left:176.508000pt;}
.x76{left:181.640000pt;}
.x94{left:182.665333pt;}
.x54{left:185.105333pt;}
.x42{left:190.453333pt;}
.x55{left:193.309333pt;}
.x1c{left:195.030667pt;}
.x43{left:198.658667pt;}
.x1d{left:201.672000pt;}
.x50{left:207.269333pt;}
.x84{left:208.978667pt;}
.x83{left:211.966667pt;}
.x61{left:213.584000pt;}
.x51{left:215.473333pt;}
.x97{left:220.033333pt;}
.x62{left:221.789333pt;}
.xa1{left:223.704000pt;}
.xa3{left:225.868000pt;}
.x9b{left:227.969333pt;}
.x89{left:233.220000pt;}
.xa2{left:237.545333pt;}
.x8a{left:242.521333pt;}
.x9a{left:249.373333pt;}
.x78{left:271.037333pt;}
.x79{left:277.678667pt;}
.x66{left:321.946667pt;}
.x3a{left:322.997333pt;}
.x77{left:324.398667pt;}
.x44{left:326.032000pt;}
.xe{left:326.962667pt;}
.x67{left:330.150667pt;}
.x3b{left:331.884000pt;}
.xf{left:333.604000pt;}
.x23{left:337.457333pt;}
.x45{left:339.316000pt;}
.x5a{left:340.721333pt;}
.x46{left:342.600000pt;}
.x14{left:344.454667pt;}
.x6c{left:345.652000pt;}
.x9c{left:347.725333pt;}
.x3c{left:349.421333pt;}
.x15{left:351.097333pt;}
.x2c{left:352.364000pt;}
.x9d{left:353.452000pt;}
.x3d{left:355.365333pt;}
.xa{left:356.752000pt;}
.x90{left:357.728000pt;}
.xb{left:363.393333pt;}
.x2d{left:365.648000pt;}
.x2e{left:368.942667pt;}
.xc{left:370.168000pt;}
.x24{left:372.790667pt;}
.xd{left:376.810667pt;}
.x2f{left:382.225333pt;}
.x49{left:401.845333pt;}
.x5d{left:405.774667pt;}
.x56{left:409.450667pt;}
.x4a{left:411.104000pt;}
.x5e{left:413.980000pt;}
.x57{left:417.654667pt;}
.x68{left:422.884000pt;}
.x8b{left:425.086667pt;}
.x69{left:431.089333pt;}
.x8c{left:433.670667pt;}
.x6d{left:435.177333pt;}
.x8d{left:441.056000pt;}
.x30{left:442.957333pt;}
.x4b{left:453.546667pt;}
.x31{left:456.240000pt;}
.x32{left:462.749333pt;}
.x47{left:463.816000pt;}
.x48{left:469.760000pt;}
.x58{left:471.610667pt;}
.x85{left:472.781333pt;}
.x4c{left:473.776000pt;}
.x33{left:476.033333pt;}
.x59{left:479.816000pt;}
.x34{left:488.490667pt;}
.x80{left:490.249333pt;}
.x25{left:492.014667pt;}
.x3f{left:494.576000pt;}
.x81{left:497.633333pt;}
.x26{left:500.760000pt;}
.x35{left:501.774667pt;}
.x1e{left:503.772000pt;}
.x36{left:508.549333pt;}
.x1f{left:510.413333pt;}
.x4d{left:517.186667pt;}
.x37{left:521.833333pt;}
.x5c{left:530.054667pt;}
.x6e{left:533.065333pt;}
.x7e{left:536.146440pt;}
.x63{left:544.370667pt;}
.x6f{left:546.349333pt;}
.x10{left:551.680000pt;}
.x64{left:552.576000pt;}
.x11{left:558.321333pt;}
.x5f{left:562.218667pt;}
.x18{left:565.160000pt;}
.x52{left:567.360000pt;}
.x60{left:570.422667pt;}
.x19{left:571.801333pt;}
.x53{left:575.565333pt;}
.x74{left:587.956488pt;}
.x20{left:591.825333pt;}
.x92{left:593.990533pt;}
.x88{left:596.860400pt;}
.x21{left:605.109333pt;}
.x12{left:611.557333pt;}
.x40{left:613.318667pt;}
.xa0{left:615.138667pt;}
.x13{left:618.198667pt;}
.x8e{left:620.148000pt;}
.x41{left:621.524000pt;}
.x6{left:623.413317pt;}
.x22{left:625.008000pt;}
.x95{left:628.006667pt;}
.x96{left:641.290667pt;}
.x27{left:642.814667pt;}
.x9f{left:648.549333pt;}
.x28{left:649.456000pt;}
.x29{left:652.824000pt;}
.x7a{left:654.054667pt;}
.x70{left:655.993333pt;}
.x4e{left:659.526667pt;}
.x71{left:662.634667pt;}
.x2a{left:666.108000pt;}
.x4f{left:667.730667pt;}
.x2b{left:672.842667pt;}
.x7b{left:673.960000pt;}
.x9e{left:678.036000pt;}
.x16{left:679.437333pt;}
.x17{left:686.078667pt;}
.x7c{left:687.244000pt;}
}




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