
    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_346b47873b954881473c6967.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.958496;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_a4e10e22fe21adaba2f5b84d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_3da50a7ebb91f5a89e3cd202.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.190918;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_1b99bc99be513e601ec3ac71.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.190918;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_a3cf4c648d24225ee703fd20.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.722656;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_846de39732a31413726dcdd3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.349000;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_ebd85fb4b95c73ca8f6929c3.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.384000;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_f84a29593f73487fd50e8e02.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.385000;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_8a16e0b99d52d3e09583b47f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_aeb8841ddecd031223660f9e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_11b2e12b8957f0487af037be.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.817000;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_266eb37c3b2bf50952863418.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.258000;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_ae53422513cabe62879f7da0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.952000;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_6c32b4bdf21e483ad3c4401a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.817000;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_9825c5b38905e3ba2d029654.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_072647225131e97da438e332.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.853000;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_210220eef0b2c99bf78d9053.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_bc27d1c7cbc38f1683b1f73d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.817000;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_e63c4553939ba1e89238188f.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.460000;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_9825c5b38905e3ba2d029654.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_5ee2b98134849b9483a1cd8d.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.824219;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_f68109f5cd3e991965a40b43.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.640000;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_7c949bae7ed3c9efc62c4c81.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_06f41f41b385509ca64e62bb.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.258000;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_094aaffd3e051b482e6d1c4b.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.712000;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_c42b5892f21cfbddbe15f93e.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.969000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_bb1ade3648fe7d830e04313b.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.712000;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_5fa14e8ea614fd8408492b5d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.712000;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_5437cf9aa9b934e8f78e4d4b.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.727000;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_9c26b9e502aa62cb374f8716.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.875000;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_e9341a2132151fbd7b48d088.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.724000;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_03e21ee3ac7a9afe63d17619.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.199000;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_8bb64c0753891740981865a5.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.587000;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_7d9416c6000925d2c16390e4.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.910156;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;}
.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);}
.m1{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);}
.va{vertical-align:-25.116000px;}
.v14{vertical-align:-22.300781px;}
.v5{vertical-align:-18.899963px;}
.v6{vertical-align:-17.849991px;}
.ve{vertical-align:-15.714661px;}
.v3{vertical-align:-10.883194px;}
.v16{vertical-align:-9.555183px;}
.vb{vertical-align:-8.399780px;}
.vd{vertical-align:-3.599121px;}
.v1{vertical-align:-1.488000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:4.103943px;}
.v11{vertical-align:7.453125px;}
.v8{vertical-align:14.663294px;}
.vf{vertical-align:15.714661px;}
.v7{vertical-align:17.825991px;}
.v4{vertical-align:18.833927px;}
.v12{vertical-align:19.870789px;}
.v2{vertical-align:21.000000px;}
.v15{vertical-align:22.290980px;}
.v13{vertical-align:29.694600px;}
.vc{vertical-align:36.581854px;}
.v9{vertical-align:44.982000px;}
.ls40{letter-spacing:-4.284000px;}
.ls96{letter-spacing:-2.925000px;}
.ls94{letter-spacing:-2.565000px;}
.ls34{letter-spacing:-1.674000px;}
.ls2d{letter-spacing:-1.404000px;}
.ls26{letter-spacing:-1.134000px;}
.ls97{letter-spacing:-1.080000px;}
.ls33{letter-spacing:-1.008000px;}
.ls48{letter-spacing:-0.918000px;}
.ls41{letter-spacing:-0.882000px;}
.ls85{letter-spacing:-0.810000px;}
.ls81{letter-spacing:-0.765000px;}
.ls3b{letter-spacing:-0.756000px;}
.ls32{letter-spacing:-0.672000px;}
.ls64{letter-spacing:-0.648000px;}
.ls88{letter-spacing:-0.495000px;}
.ls1d{letter-spacing:-0.486000px;}
.ls2f{letter-spacing:-0.420000px;}
.ls9a{letter-spacing:-0.405000px;}
.ls1b{letter-spacing:-0.378000px;}
.ls98{letter-spacing:-0.360000px;}
.ls30{letter-spacing:-0.336000px;}
.ls27{letter-spacing:-0.324000px;}
.ls29{letter-spacing:-0.270000px;}
.ls93{letter-spacing:-0.225000px;}
.ls45{letter-spacing:-0.216000px;}
.ls28{letter-spacing:-0.210600px;}
.ls2e{letter-spacing:-0.210000px;}
.ls87{letter-spacing:-0.180000px;}
.ls3a{letter-spacing:-0.175500px;}
.ls3e{letter-spacing:-0.168000px;}
.ls19{letter-spacing:-0.162000px;}
.ls46{letter-spacing:-0.140400px;}
.ls95{letter-spacing:-0.135000px;}
.ls15{letter-spacing:-0.108000px;}
.ls1a{letter-spacing:-0.105300px;}
.ls80{letter-spacing:-0.090000px;}
.ls1c{letter-spacing:-0.070200px;}
.ls37{letter-spacing:-0.054000px;}
.ls92{letter-spacing:-0.045000px;}
.ls65{letter-spacing:-0.041068px;}
.ls14{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000011px;}
.ls3c{letter-spacing:0.000083px;}
.ls2b{letter-spacing:0.000108px;}
.ls2c{letter-spacing:0.000146px;}
.lsc{letter-spacing:0.009514px;}
.ls4{letter-spacing:0.013132px;}
.ls3{letter-spacing:0.013223px;}
.ls2{letter-spacing:0.013772px;}
.lse{letter-spacing:0.017550px;}
.ls13{letter-spacing:0.018028px;}
.ls36{letter-spacing:0.021690px;}
.ls1{letter-spacing:0.026966px;}
.ls18{letter-spacing:0.035100px;}
.ls62{letter-spacing:0.041068px;}
.ls99{letter-spacing:0.045000px;}
.ls90{letter-spacing:0.046121px;}
.ls12{letter-spacing:0.054000px;}
.ls4d{letter-spacing:0.054466px;}
.lsf{letter-spacing:0.070200px;}
.ls4a{letter-spacing:0.080979px;}
.ls7b{letter-spacing:0.090000px;}
.ls4c{letter-spacing:0.097200px;}
.ls49{letter-spacing:0.105300px;}
.ls10{letter-spacing:0.108000px;}
.ls4f{letter-spacing:0.110693px;}
.ls58{letter-spacing:0.123205px;}
.ls8f{letter-spacing:0.133096px;}
.ls38{letter-spacing:0.133750px;}
.ls89{letter-spacing:0.135000px;}
.ls67{letter-spacing:0.139906px;}
.ls69{letter-spacing:0.140173px;}
.ls44{letter-spacing:0.140346px;}
.lsa{letter-spacing:0.140400px;}
.ls52{letter-spacing:0.150794px;}
.ls54{letter-spacing:0.150977px;}
.ls6{letter-spacing:0.156902px;}
.ls91{letter-spacing:0.157500px;}
.ls11{letter-spacing:0.157950px;}
.ls35{letter-spacing:0.159019px;}
.ls25{letter-spacing:0.162000px;}
.lsb{letter-spacing:0.171041px;}
.lsd{letter-spacing:0.175500px;}
.ls78{letter-spacing:0.180000px;}
.ls76{letter-spacing:0.202500px;}
.ls5{letter-spacing:0.216000px;}
.ls7a{letter-spacing:0.225000px;}
.ls4b{letter-spacing:0.226800px;}
.ls1f{letter-spacing:0.228150px;}
.ls66{letter-spacing:0.228620px;}
.ls55{letter-spacing:0.230429px;}
.ls43{letter-spacing:0.243000px;}
.ls24{letter-spacing:0.245700px;}
.ls68{letter-spacing:0.245927px;}
.ls3f{letter-spacing:0.252000px;}
.ls56{letter-spacing:0.259192px;}
.ls75{letter-spacing:0.264000px;}
.ls16{letter-spacing:0.270000px;}
.ls1e{letter-spacing:0.280800px;}
.ls63{letter-spacing:0.282000px;}
.ls8{letter-spacing:0.284263px;}
.ls86{letter-spacing:0.315000px;}
.ls22{letter-spacing:0.315900px;}
.ls51{letter-spacing:0.323538px;}
.ls39{letter-spacing:0.324000px;}
.ls53{letter-spacing:0.329417px;}
.ls84{letter-spacing:0.360000px;}
.ls50{letter-spacing:0.372600px;}
.ls7{letter-spacing:0.378000px;}
.ls74{letter-spacing:0.421200px;}
.ls9{letter-spacing:0.432000px;}
.ls7e{letter-spacing:0.450000px;}
.ls31{letter-spacing:0.462000px;}
.ls21{letter-spacing:0.486000px;}
.ls8a{letter-spacing:0.495000px;}
.ls23{letter-spacing:0.540000px;}
.ls4e{letter-spacing:0.558011px;}
.ls9b{letter-spacing:0.585000px;}
.ls20{letter-spacing:0.594000px;}
.ls42{letter-spacing:0.648000px;}
.ls83{letter-spacing:0.675000px;}
.ls17{letter-spacing:0.702000px;}
.ls7c{letter-spacing:0.720000px;}
.ls7f{letter-spacing:0.756000px;}
.ls47{letter-spacing:0.810000px;}
.ls57{letter-spacing:0.944569px;}
.ls8e{letter-spacing:0.949500px;}
.ls8b{letter-spacing:0.953963px;}
.ls82{letter-spacing:1.035000px;}
.ls79{letter-spacing:1.048563px;}
.ls8c{letter-spacing:1.278061px;}
.ls8d{letter-spacing:1.305000px;}
.ls77{letter-spacing:1.350000px;}
.ls5e{letter-spacing:1.601660px;}
.ls5f{letter-spacing:2.299819px;}
.ls7d{letter-spacing:2.884470px;}
.ls0{letter-spacing:3.000000px;}
.ls6a{letter-spacing:3.039047px;}
.ls6e{letter-spacing:3.738262px;}
.ls6d{letter-spacing:3.768951px;}
.ls72{letter-spacing:9.024212px;}
.ls71{letter-spacing:10.139309px;}
.ls5d{letter-spacing:11.986483px;}
.ls5c{letter-spacing:11.996258px;}
.ls6c{letter-spacing:12.050295px;}
.ls73{letter-spacing:12.752779px;}
.ls6b{letter-spacing:15.022341px;}
.ls6f{letter-spacing:15.053730px;}
.ls5b{letter-spacing:15.895681px;}
.ls60{letter-spacing:18.300040px;}
.ls59{letter-spacing:20.324005px;}
.ls70{letter-spacing:29.233768px;}
.ls61{letter-spacing:161.842407px;}
.ls5a{letter-spacing:170.860900px;}
.ls3d{letter-spacing:363.317247px;}
.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;}
}
.ws1{word-spacing:-15.000000px;}
.wsaa{word-spacing:-13.860000px;}
.ws1f{word-spacing:-13.596000px;}
.ws3f{word-spacing:-12.960000px;}
.ws23{word-spacing:-12.744000px;}
.ws79{word-spacing:-12.636000px;}
.ws17{word-spacing:-12.528000px;}
.ws5e{word-spacing:-12.474000px;}
.ws7a{word-spacing:-12.366000px;}
.ws19{word-spacing:-12.258000px;}
.ws94{word-spacing:-12.150000px;}
.ws91{word-spacing:-12.096000px;}
.ws60{word-spacing:-11.988000px;}
.ws5c{word-spacing:-11.880000px;}
.wsdf{word-spacing:-11.718000px;}
.ws70{word-spacing:-11.340000px;}
.ws20{word-spacing:-11.124000px;}
.ws40{word-spacing:-10.854000px;}
.ws47{word-spacing:-10.584000px;}
.wscc{word-spacing:-10.530000px;}
.wsd1{word-spacing:-10.440000px;}
.wsab{word-spacing:-10.417500px;}
.wsba{word-spacing:-10.395000px;}
.wscd{word-spacing:-10.215000px;}
.wsc9{word-spacing:-10.170000px;}
.wsca{word-spacing:-10.080000px;}
.ws4e{word-spacing:-9.990000px;}
.ws0{word-spacing:-9.600000px;}
.ws43{word-spacing:-9.576000px;}
.wsac{word-spacing:-9.495000px;}
.ws6c{word-spacing:-9.366000px;}
.wscb{word-spacing:-9.225000px;}
.ws44{word-spacing:-9.114000px;}
.ws66{word-spacing:-8.946000px;}
.ws6b{word-spacing:-8.904000px;}
.ws45{word-spacing:-8.862000px;}
.ws42{word-spacing:-8.778000px;}
.ws46{word-spacing:-8.526000px;}
.ws95{word-spacing:-8.388900px;}
.ws1c{word-spacing:-8.283600px;}
.ws1d{word-spacing:-8.248500px;}
.ws69{word-spacing:-8.232000px;}
.ws1e{word-spacing:-8.213400px;}
.ws96{word-spacing:-8.178300px;}
.ws3{word-spacing:-8.143200px;}
.ws72{word-spacing:-8.108100px;}
.ws71{word-spacing:-8.073000px;}
.ws7{word-spacing:-8.037900px;}
.ws2{word-spacing:-8.034000px;}
.ws4{word-spacing:-8.002800px;}
.ws5{word-spacing:-7.967700px;}
.ws8{word-spacing:-7.897500px;}
.ws6{word-spacing:-7.862400px;}
.ws6f{word-spacing:-7.827300px;}
.ws5f{word-spacing:-7.792200px;}
.ws21{word-spacing:-7.757100px;}
.ws9{word-spacing:-6.630000px;}
.wsd6{word-spacing:-6.075000px;}
.wsd7{word-spacing:-6.030000px;}
.ws41{word-spacing:-5.924100px;}
.wsd8{word-spacing:-5.895000px;}
.wsdc{word-spacing:-5.760000px;}
.wsc1{word-spacing:-5.625000px;}
.wsa1{word-spacing:-5.508000px;}
.ws6e{word-spacing:-4.284000px;}
.ws4c{word-spacing:-2.106000px;}
.ws93{word-spacing:-2.052000px;}
.wsa6{word-spacing:-1.674000px;}
.wsa5{word-spacing:-1.566000px;}
.ws32{word-spacing:-1.512000px;}
.ws3d{word-spacing:-1.350000px;}
.wsae{word-spacing:-1.296000px;}
.wse{word-spacing:-1.242000px;}
.wsd{word-spacing:-1.188000px;}
.ws13{word-spacing:-1.134000px;}
.ws37{word-spacing:-1.080000px;}
.wsb3{word-spacing:-1.035000px;}
.ws58{word-spacing:-1.026000px;}
.wsce{word-spacing:-0.990000px;}
.ws16{word-spacing:-0.972000px;}
.ws48{word-spacing:-0.918000px;}
.ws31{word-spacing:-0.864000px;}
.ws1b{word-spacing:-0.810000px;}
.ws36{word-spacing:-0.756000px;}
.wsc5{word-spacing:-0.675000px;}
.ws25{word-spacing:-0.648000px;}
.ws26{word-spacing:-0.594000px;}
.wsc0{word-spacing:-0.585000px;}
.ws34{word-spacing:-0.540000px;}
.ws4b{word-spacing:-0.486000px;}
.ws9f{word-spacing:-0.432000px;}
.wscf{word-spacing:-0.405000px;}
.ws3c{word-spacing:-0.378000px;}
.wsda{word-spacing:-0.360000px;}
.ws22{word-spacing:-0.324000px;}
.wsbf{word-spacing:-0.315000px;}
.ws84{word-spacing:-0.282000px;}
.ws24{word-spacing:-0.280800px;}
.ws28{word-spacing:-0.270000px;}
.wse0{word-spacing:-0.264000px;}
.ws6d{word-spacing:-0.252000px;}
.wsc7{word-spacing:-0.225000px;}
.wsb{word-spacing:-0.216000px;}
.wsb4{word-spacing:-0.180000px;}
.ws18{word-spacing:-0.175500px;}
.ws76{word-spacing:-0.162000px;}
.wsc8{word-spacing:-0.135000px;}
.ws5d{word-spacing:-0.108000px;}
.ws83{word-spacing:-0.082136px;}
.ws14{word-spacing:-0.070200px;}
.ws80{word-spacing:-0.054037px;}
.ws5b{word-spacing:-0.054000px;}
.ws7d{word-spacing:-0.041068px;}
.ws12{word-spacing:-0.035100px;}
.wsa{word-spacing:0.000000px;}
.wsbc{word-spacing:0.045000px;}
.ws29{word-spacing:0.054000px;}
.ws1a{word-spacing:0.070200px;}
.wsbd{word-spacing:0.090000px;}
.wsa0{word-spacing:0.108000px;}
.ws73{word-spacing:0.140400px;}
.ws11{word-spacing:0.162000px;}
.ws4f{word-spacing:0.210000px;}
.ws2b{word-spacing:0.210600px;}
.ws3b{word-spacing:0.216000px;}
.wsd0{word-spacing:0.225000px;}
.ws64{word-spacing:0.270000px;}
.wsc6{word-spacing:0.315000px;}
.ws3e{word-spacing:0.324000px;}
.ws51{word-spacing:0.336000px;}
.wsd9{word-spacing:0.360000px;}
.ws6a{word-spacing:0.378000px;}
.wsdb{word-spacing:0.405000px;}
.ws50{word-spacing:0.420000px;}
.ws5a{word-spacing:0.432000px;}
.wsb5{word-spacing:0.450000px;}
.ws4d{word-spacing:0.486000px;}
.wsc2{word-spacing:0.495000px;}
.ws74{word-spacing:0.540000px;}
.wsd2{word-spacing:0.585000px;}
.ws27{word-spacing:0.594000px;}
.wsd4{word-spacing:0.630000px;}
.wsf{word-spacing:0.648000px;}
.ws2a{word-spacing:0.702000px;}
.wsb1{word-spacing:0.756000px;}
.ws2c{word-spacing:0.810000px;}
.wsa2{word-spacing:0.864000px;}
.wsb2{word-spacing:0.918000px;}
.wsbe{word-spacing:0.990000px;}
.ws65{word-spacing:1.026000px;}
.wsbb{word-spacing:1.035000px;}
.ws85{word-spacing:1.080000px;}
.ws78{word-spacing:1.134000px;}
.ws15{word-spacing:1.188000px;}
.wsc{word-spacing:1.242000px;}
.ws30{word-spacing:1.296000px;}
.ws90{word-spacing:1.350000px;}
.ws75{word-spacing:1.404000px;}
.wsdd{word-spacing:1.440000px;}
.ws56{word-spacing:1.458000px;}
.wsde{word-spacing:1.485000px;}
.ws86{word-spacing:1.512000px;}
.ws10{word-spacing:1.566000px;}
.ws3a{word-spacing:1.674000px;}
.ws53{word-spacing:1.728000px;}
.ws38{word-spacing:1.836000px;}
.ws55{word-spacing:1.890000px;}
.wsad{word-spacing:1.944000px;}
.ws33{word-spacing:1.998000px;}
.wsc3{word-spacing:2.025000px;}
.ws77{word-spacing:2.052000px;}
.wsc4{word-spacing:2.070000px;}
.wsb0{word-spacing:2.160000px;}
.ws92{word-spacing:2.322000px;}
.ws2f{word-spacing:2.376000px;}
.ws63{word-spacing:2.538000px;}
.wsd3{word-spacing:2.565000px;}
.ws8a{word-spacing:2.646000px;}
.ws8f{word-spacing:2.862000px;}
.wsa4{word-spacing:2.916000px;}
.wsd5{word-spacing:2.925000px;}
.ws39{word-spacing:3.024000px;}
.ws2e{word-spacing:3.132000px;}
.ws54{word-spacing:3.348000px;}
.ws89{word-spacing:3.456000px;}
.ws8d{word-spacing:3.510000px;}
.wsb6{word-spacing:3.690000px;}
.wsa9{word-spacing:3.726000px;}
.wsb7{word-spacing:3.735000px;}
.ws49{word-spacing:3.834000px;}
.ws8e{word-spacing:3.996000px;}
.ws59{word-spacing:4.050000px;}
.ws87{word-spacing:4.212000px;}
.ws61{word-spacing:4.482000px;}
.ws57{word-spacing:4.536000px;}
.wsa8{word-spacing:4.752000px;}
.ws8b{word-spacing:4.860000px;}
.ws88{word-spacing:4.914000px;}
.wsa3{word-spacing:5.076000px;}
.wsa7{word-spacing:5.184000px;}
.wsb9{word-spacing:5.310000px;}
.ws62{word-spacing:5.346000px;}
.ws35{word-spacing:5.400000px;}
.ws8c{word-spacing:5.454000px;}
.wsaf{word-spacing:5.508000px;}
.wse4{word-spacing:5.670000px;}
.wsb8{word-spacing:6.030000px;}
.ws4a{word-spacing:6.102000px;}
.wse5{word-spacing:6.264000px;}
.wse3{word-spacing:6.480000px;}
.ws2d{word-spacing:6.750000px;}
.ws7e{word-spacing:6.817317px;}
.ws7f{word-spacing:6.940526px;}
.ws9e{word-spacing:9.321417px;}
.ws9d{word-spacing:9.996882px;}
.ws82{word-spacing:10.240049px;}
.ws7b{word-spacing:11.320793px;}
.ws7c{word-spacing:11.536942px;}
.wse1{word-spacing:11.826000px;}
.wse2{word-spacing:12.366000px;}
.ws81{word-spacing:12.412344px;}
.ws9a{word-spacing:12.887872px;}
.ws52{word-spacing:15.282000px;}
.ws98{word-spacing:17.384533px;}
.ws9c{word-spacing:17.438366px;}
.ws99{word-spacing:20.335998px;}
.ws9b{word-spacing:20.353863px;}
.ws97{word-spacing:20.353954px;}
.ws68{word-spacing:47.040000px;}
.ws67{word-spacing:177.618000px;}
._34{margin-left:-2138.262000px;}
._1b{margin-left:-1873.283933px;}
._2c{margin-left:-20.952007px;}
._44{margin-left:-17.641200px;}
._43{margin-left:-15.672056px;}
._2e{margin-left:-14.619607px;}
._6{margin-left:-13.526414px;}
._7{margin-left:-12.451831px;}
._4{margin-left:-11.394000px;}
._16{margin-left:-10.195262px;}
._2f{margin-left:-9.177134px;}
._41{margin-left:-7.470600px;}
._42{margin-left:-5.757626px;}
._3{margin-left:-4.740000px;}
._2{margin-left:-3.270000px;}
._0{margin-left:-1.876800px;}
._5{width:1.018200px;}
._a{width:2.487000px;}
._d{width:3.630127px;}
._c{width:4.630800px;}
._11{width:5.926200px;}
._12{width:7.497000px;}
._b{width:8.782025px;}
._15{width:9.854065px;}
._9{width:11.812800px;}
._8{width:13.662000px;}
._14{width:14.946000px;}
._f{width:16.034400px;}
._10{width:17.187000px;}
._45{width:18.241800px;}
._e{width:19.543201px;}
._40{width:35.207350px;}
._13{width:46.776059px;}
._2d{width:48.353313px;}
._18{width:54.466738px;}
._30{width:56.182791px;}
._19{width:58.485591px;}
._33{width:74.802000px;}
._32{width:83.695800px;}
._3c{width:94.962000px;}
._1a{width:98.028000px;}
._17{width:99.497986px;}
._3a{width:115.122000px;}
._28{width:130.410000px;}
._23{width:153.803991px;}
._1e{width:173.963991px;}
._1d{width:191.645986px;}
._29{width:194.123991px;}
._1c{width:206.640000px;}
._1f{width:211.302000px;}
._27{width:214.535991px;}
._26{width:223.608014px;}
._20{width:225.078000px;}
._24{width:226.548000px;}
._22{width:231.965986px;}
._25{width:233.940000px;}
._35{width:238.013992px;}
._2b{width:243.516000px;}
._21{width:246.708000px;}
._2a{width:254.814000px;}
._38{width:277.409992px;}
._3e{width:311.873882px;}
._31{width:314.579967px;}
._1{width:337.204800px;}
._3f{width:342.588000px;}
._37{width:371.742000px;}
._36{width:430.499981px;}
._3b{width:440.033981px;}
._39{width:450.659981px;}
._3d{width:470.819981px;}
.fc4{color:rgb(245,130,31);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(205,221,228);}
.fsb{font-size:27.300000px;}
.fs11{font-size:29.250000px;}
.fsf{font-size:32.422800px;}
.fs7{font-size:33.150000px;}
.fs5{font-size:35.100000px;}
.fs3{font-size:39.000000px;}
.fse{font-size:41.068199px;}
.fsa{font-size:42.000000px;}
.fs10{font-size:45.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fsd{font-size:54.037199px;}
.fsc{font-size:56.399998px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:156.000000px;}
.y217{bottom:-0.046646px;}
.y0{bottom:0.000000px;}
.y224{bottom:0.089859px;}
.y1e2{bottom:1.812927px;}
.y1d8{bottom:2.477692px;}
.y1d5{bottom:2.518662px;}
.y1cb{bottom:2.559036px;}
.y1c8{bottom:2.626373px;}
.ybc{bottom:3.199200px;}
.y37{bottom:3.199350px;}
.ye9{bottom:3.199950px;}
.y2{bottom:3.200100px;}
.y21c{bottom:3.405029px;}
.y215{bottom:3.585022px;}
.y1c6{bottom:6.555038px;}
.y219{bottom:12.155608px;}
.y21f{bottom:15.615005px;}
.y22a{bottom:15.628372px;}
.y223{bottom:15.823196px;}
.y226{bottom:15.831161px;}
.y1db{bottom:16.409729px;}
.y1d3{bottom:16.544998px;}
.y1ce{bottom:17.759857px;}
.y36{bottom:27.430500px;}
.y1{bottom:27.430650px;}
.ybd{bottom:27.555599px;}
.y3{bottom:27.555750px;}
.y1e0{bottom:28.168213px;}
.y229{bottom:32.989792px;}
.y1de{bottom:34.337585px;}
.y1d1{bottom:35.687668px;}
.y35{bottom:68.037452px;}
.y2bb{bottom:69.761988px;}
.y121{bottom:72.630152px;}
.y79{bottom:74.056052px;}
.y191{bottom:79.983148px;}
.y108{bottom:79.986148px;}
.ydf{bottom:81.653248px;}
.y2ba{bottom:82.508238px;}
.y1c3{bottom:82.531346px;}
.y34{bottom:83.037452px;}
.y212{bottom:84.936004px;}
.y120{bottom:87.628652px;}
.y26a{bottom:88.353898px;}
.y78{bottom:89.054552px;}
.y190{bottom:94.981648px;}
.y107{bottom:94.984648px;}
.y2b9{bottom:95.254488px;}
.yde{bottom:96.651748px;}
.y1c2{bottom:97.537346px;}
.y33{bottom:98.043452px;}
.y211{bottom:99.934504px;}
.y269{bottom:101.100148px;}
.y11f{bottom:102.627152px;}
.y77{bottom:104.053052px;}
.y88{bottom:105.928504px;}
.y2b8{bottom:108.000738px;}
.y18f{bottom:109.981648px;}
.y106{bottom:109.983148px;}
.ydd{bottom:111.650248px;}
.y1c1{bottom:112.535846px;}
.y32{bottom:113.037452px;}
.y268{bottom:113.846398px;}
.y210{bottom:114.933004px;}
.y11e{bottom:117.625652px;}
.y76{bottom:119.051552px;}
.y2b7{bottom:120.746988px;}
.y87{bottom:120.927004px;}
.y105{bottom:124.981648px;}
.y18e{bottom:124.987648px;}
.y267{bottom:126.592648px;}
.ydc{bottom:126.648748px;}
.y1c0{bottom:127.534346px;}
.y31{bottom:128.037452px;}
.y20f{bottom:129.931504px;}
.y11d{bottom:132.624152px;}
.y2b6{bottom:133.493238px;}
.y75{bottom:134.050052px;}
.y86{bottom:135.925504px;}
.y266{bottom:139.338898px;}
.y104{bottom:139.983148px;}
.y18d{bottom:139.986148px;}
.ydb{bottom:141.647248px;}
.y1bf{bottom:142.532846px;}
.y30{bottom:143.037452px;}
.y20e{bottom:145.830002px;}
.y2b5{bottom:146.239488px;}
.y11c{bottom:147.622652px;}
.y74{bottom:149.048552px;}
.y85{bottom:150.924004px;}
.y265{bottom:152.085148px;}
.y103{bottom:154.981648px;}
.y18c{bottom:154.984648px;}
.yda{bottom:156.645748px;}
.y1be{bottom:157.531346px;}
.y2b4{bottom:158.985738px;}
.y20d{bottom:159.931504px;}
.y2f{bottom:162.493950px;}
.y11b{bottom:162.621152px;}
.y73{bottom:164.047052px;}
.y264{bottom:164.831398px;}
.y84{bottom:165.922504px;}
.y102{bottom:169.981648px;}
.y18b{bottom:169.983148px;}
.yd9{bottom:171.644248px;}
.y2b3{bottom:171.731988px;}
.y1bd{bottom:172.534346px;}
.y20c{bottom:174.934493px;}
.y263{bottom:177.577648px;}
.y11a{bottom:177.625652px;}
.y72{bottom:179.045552px;}
.y83{bottom:180.921004px;}
.y2b2{bottom:184.478238px;}
.y18a{bottom:184.981648px;}
.y101{bottom:184.986148px;}
.yd8{bottom:186.642748px;}
.y1bc{bottom:187.532846px;}
.y20b{bottom:189.932993px;}
.y262{bottom:190.323898px;}
.y119{bottom:192.624152px;}
.y71{bottom:194.044052px;}
.y82{bottom:195.919504px;}
.y2b1{bottom:197.224488px;}
.y189{bottom:199.980148px;}
.y100{bottom:199.984648px;}
.yd7{bottom:201.641248px;}
.y1bb{bottom:202.531346px;}
.y261{bottom:203.070148px;}
.y20a{bottom:204.931493px;}
.y2d{bottom:205.570805px;}
.y118{bottom:207.622652px;}
.y2b0{bottom:209.970738px;}
.y81{bottom:210.918004px;}
.y188{bottom:214.980148px;}
.yff{bottom:214.983148px;}
.y260{bottom:215.816398px;}
.yd6{bottom:216.641248px;}
.y1ba{bottom:217.531346px;}
.y2c{bottom:220.570805px;}
.y209{bottom:220.830002px;}
.y117{bottom:222.621152px;}
.y2af{bottom:222.716988px;}
.y80{bottom:225.916504px;}
.y70{bottom:227.075552px;}
.y25f{bottom:228.562648px;}
.yfe{bottom:229.981648px;}
.yd5{bottom:231.642748px;}
.y1b9{bottom:232.531346px;}
.y2ae{bottom:235.463238px;}
.y2b{bottom:235.575305px;}
.y116{bottom:237.619652px;}
.y7f{bottom:240.915004px;}
.y25e{bottom:241.308898px;}
.y6f{bottom:242.074052px;}
.yfd{bottom:244.989148px;}
.yd4{bottom:246.641248px;}
.y1b8{bottom:247.540346px;}
.y187{bottom:247.989148px;}
.y2ad{bottom:248.209488px;}
.y2a{bottom:250.573805px;}
.y115{bottom:252.619652px;}
.y208{bottom:252.940493px;}
.y25d{bottom:254.055148px;}
.y7e{bottom:255.913504px;}
.y6e{bottom:257.072552px;}
.yfc{bottom:259.987648px;}
.y2ac{bottom:260.955738px;}
.yd3{bottom:261.656271px;}
.y1b7{bottom:262.538846px;}
.y186{bottom:262.987648px;}
.y29{bottom:265.572305px;}
.y25c{bottom:266.801398px;}
.y207{bottom:267.938993px;}
.y7d{bottom:270.912004px;}
.y6d{bottom:272.071052px;}
.y2ab{bottom:273.701988px;}
.yfb{bottom:274.986148px;}
.yd2{bottom:276.654771px;}
.y1b6{bottom:277.537346px;}
.y185{bottom:277.986148px;}
.y25b{bottom:279.547648px;}
.y28{bottom:280.570805px;}
.y206{bottom:282.937493px;}
.y114{bottom:285.621152px;}
.y7c{bottom:285.910504px;}
.y2aa{bottom:286.448238px;}
.y6c{bottom:287.069552px;}
.yfa{bottom:289.984648px;}
.yd1{bottom:291.653271px;}
.y25a{bottom:292.293898px;}
.y1b5{bottom:292.535846px;}
.y184{bottom:292.984648px;}
.y27{bottom:295.570805px;}
.y205{bottom:297.935993px;}
.y2a9{bottom:299.194488px;}
.y113{bottom:300.619652px;}
.y7b{bottom:300.909004px;}
.y6b{bottom:302.068052px;}
.yf9{bottom:304.983148px;}
.y259{bottom:305.040148px;}
.yd0{bottom:306.651771px;}
.y1b4{bottom:307.534346px;}
.y183{bottom:307.983148px;}
.y26{bottom:310.575305px;}
.y2a8{bottom:311.940738px;}
.y204{bottom:312.934493px;}
.y6a{bottom:317.066552px;}
.y258{bottom:317.786398px;}
.yf8{bottom:319.981648px;}
.ycf{bottom:321.650271px;}
.y1b3{bottom:322.532846px;}
.y182{bottom:322.981648px;}
.y2a7{bottom:324.686988px;}
.y25{bottom:325.573805px;}
.y203{bottom:327.932993px;}
.y257{bottom:330.532648px;}
.y69{bottom:332.065052px;}
.yf7{bottom:334.981648px;}
.yce{bottom:336.648771px;}
.y2a6{bottom:337.433238px;}
.y1b2{bottom:337.531346px;}
.y181{bottom:337.981648px;}
.y24{bottom:340.572305px;}
.y202{bottom:342.931493px;}
.y256{bottom:343.278898px;}
.y68{bottom:347.063552px;}
.yf6{bottom:349.983148px;}
.y2a5{bottom:350.179488px;}
.ybb{bottom:351.054155px;}
.ycd{bottom:351.647271px;}
.y1b1{bottom:352.529846px;}
.y180{bottom:352.981648px;}
.y23{bottom:355.570805px;}
.y255{bottom:356.025148px;}
.y201{bottom:357.932993px;}
.y67{bottom:362.062052px;}
.y12c{bottom:362.118450px;}
.y2a4{bottom:362.925738px;}
.yf5{bottom:364.981648px;}
.yba{bottom:366.052655px;}
.ycc{bottom:366.645771px;}
.y17f{bottom:367.981648px;}
.y254{bottom:368.771398px;}
.y22{bottom:370.572305px;}
.y200{bottom:372.931493px;}
.y2a3{bottom:375.671988px;}
.y66{bottom:377.060552px;}
.y12b{bottom:377.119928px;}
.yf4{bottom:379.980148px;}
.yb9{bottom:381.051155px;}
.y253{bottom:381.517648px;}
.ycb{bottom:381.644271px;}
.y17e{bottom:382.990648px;}
.y1b0{bottom:385.531346px;}
.y21{bottom:385.570805px;}
.y1ff{bottom:387.931493px;}
.y2a2{bottom:388.418238px;}
.y65{bottom:392.059052px;}
.y12a{bottom:392.118428px;}
.y252{bottom:394.263898px;}
.yca{bottom:396.642771px;}
.y17d{bottom:397.989148px;}
.y1af{bottom:400.544846px;}
.y20{bottom:400.572305px;}
.y2a1{bottom:401.164488px;}
.y1fe{bottom:402.935993px;}
.y251{bottom:407.010148px;}
.y64{bottom:407.057552px;}
.y129{bottom:407.119928px;}
.yc9{bottom:411.641271px;}
.y17c{bottom:412.987648px;}
.yf3{bottom:412.993648px;}
.y2a0{bottom:413.910738px;}
.y1ae{bottom:415.543346px;}
.y1f{bottom:415.570805px;}
.y1fd{bottom:417.934493px;}
.y250{bottom:419.756398px;}
.y63{bottom:422.056052px;}
.y128{bottom:422.118428px;}
.yc8{bottom:426.644271px;}
.y29f{bottom:426.656988px;}
.y17b{bottom:427.986148px;}
.yf2{bottom:427.992148px;}
.y1ad{bottom:430.541846px;}
.y1e{bottom:430.572305px;}
.y24f{bottom:432.502648px;}
.y1fc{bottom:432.932993px;}
.y62{bottom:437.054552px;}
.y127{bottom:437.119928px;}
.y29e{bottom:439.403238px;}
.yc7{bottom:441.642771px;}
.y17a{bottom:442.984648px;}
.yf1{bottom:442.990648px;}
.y24e{bottom:445.248898px;}
.y1ac{bottom:445.540346px;}
.y1d{bottom:445.570805px;}
.y1fb{bottom:447.931493px;}
.y61{bottom:452.053052px;}
.y126{bottom:452.118428px;}
.y29d{bottom:452.149488px;}
.yc6{bottom:456.641271px;}
.y179{bottom:457.983148px;}
.yf0{bottom:457.989148px;}
.y24d{bottom:457.995148px;}
.y1ab{bottom:460.538846px;}
.y1c{bottom:460.575305px;}
.y1fa{bottom:462.929993px;}
.y29c{bottom:464.895738px;}
.y2da{bottom:464.912244px;}
.y60{bottom:467.051552px;}
.y125{bottom:467.121428px;}
.y24c{bottom:470.741398px;}
.yc5{bottom:471.642771px;}
.y178{bottom:472.981648px;}
.yef{bottom:472.987648px;}
.y1aa{bottom:475.537346px;}
.y1b{bottom:475.573805px;}
.y29b{bottom:477.641988px;}
.y5f{bottom:482.050052px;}
.y124{bottom:482.119928px;}
.y24b{bottom:483.487648px;}
.yc4{bottom:486.641271px;}
.yee{bottom:487.986148px;}
.y177{bottom:487.993648px;}
.y29a{bottom:490.388238px;}
.y1a9{bottom:490.535846px;}
.y1a{bottom:490.572305px;}
.y2d9{bottom:494.909243px;}
.y1f9{bottom:495.937493px;}
.y24a{bottom:496.233898px;}
.y5e{bottom:497.048552px;}
.y123{bottom:497.118428px;}
.yc3{bottom:501.645771px;}
.yed{bottom:502.984648px;}
.y176{bottom:502.992148px;}
.y299{bottom:503.134488px;}
.y1a8{bottom:505.534346px;}
.y19{bottom:505.570805px;}
.y249{bottom:508.980148px;}
.y2d8{bottom:509.907743px;}
.y1f8{bottom:510.935993px;}
.y5d{bottom:512.047052px;}
.y122{bottom:512.116928px;}
.y298{bottom:515.880738px;}
.yc2{bottom:516.644271px;}
.yec{bottom:517.983148px;}
.y175{bottom:517.990648px;}
.y1a7{bottom:520.532846px;}
.y18{bottom:520.570805px;}
.y248{bottom:521.730148px;}
.y2d7{bottom:524.906243px;}
.y1f7{bottom:525.934493px;}
.y5c{bottom:527.045552px;}
.y297{bottom:528.626988px;}
.yc1{bottom:531.642771px;}
.yeb{bottom:532.981648px;}
.y174{bottom:532.989148px;}
.y1a6{bottom:535.531346px;}
.y17{bottom:535.570805px;}
.y2d6{bottom:539.904743px;}
.y1f6{bottom:540.932993px;}
.y296{bottom:541.373238px;}
.y5b{bottom:542.044052px;}
.y14e{bottom:543.962275px;}
.yc0{bottom:546.641271px;}
.yea{bottom:547.980148px;}
.y173{bottom:547.987648px;}
.y1a5{bottom:550.534346px;}
.y16{bottom:550.585815px;}
.y295{bottom:554.119488px;}
.y2d5{bottom:554.903243px;}
.y1f5{bottom:555.931493px;}
.y14c{bottom:561.497275px;}
.ybf{bottom:561.639771px;}
.y172{bottom:562.986148px;}
.y1a4{bottom:565.532846px;}
.y15{bottom:565.584315px;}
.y294{bottom:566.880738px;}
.y2d4{bottom:569.901743px;}
.y1f4{bottom:570.937648px;}
.y247{bottom:571.230148px;}
.y5a{bottom:575.054552px;}
.y171{bottom:577.984648px;}
.y14d{bottom:579.032275px;}
.y293{bottom:579.626988px;}
.y1a3{bottom:580.531346px;}
.y2d3{bottom:584.900243px;}
.y1f3{bottom:585.936148px;}
.y112{bottom:588.573155px;}
.y59{bottom:590.053052px;}
.y292{bottom:592.373238px;}
.y170{bottom:592.983148px;}
.y1a2{bottom:595.529846px;}
.y14b{bottom:596.567275px;}
.y2d2{bottom:599.898743px;}
.y111{bottom:603.573155px;}
.y58{bottom:605.051552px;}
.y291{bottom:605.119488px;}
.y16f{bottom:607.981648px;}
.y21e{bottom:608.429993px;}
.y145{bottom:608.484775px;}
.y14{bottom:610.728315px;}
.y225{bottom:611.476500px;}
.ye8{bottom:612.943641px;}
.y222{bottom:613.304993px;}
.y149{bottom:614.102275px;}
.y246{bottom:616.233148px;}
.y290{bottom:618.004534px;}
.y110{bottom:618.573155px;}
.y144{bottom:619.730275px;}
.y57{bottom:620.050052px;}
.y2d1{bottom:622.388380px;}
.y16e{bottom:623.005694px;}
.y21d{bottom:623.322922px;}
.y227{bottom:624.058365px;}
.y13{bottom:627.225315px;}
.ye7{bottom:627.942141px;}
.y220{bottom:629.620789px;}
.y28f{bottom:630.750784px;}
.y245{bottom:631.231648px;}
.y14a{bottom:631.637275px;}
.y221{bottom:633.528527px;}
.y10f{bottom:633.574655px;}
.y56{bottom:635.048552px;}
.y1da{bottom:636.029984px;}
.y2d0{bottom:637.386880px;}
.y16d{bottom:638.004194px;}
.y228{bottom:641.419785px;}
.y1e1{bottom:642.284866px;}
.ye6{bottom:642.940641px;}
.y28e{bottom:643.497034px;}
.y12{bottom:643.722315px;}
.y244{bottom:646.234648px;}
.y10e{bottom:648.573155px;}
.y148{bottom:649.172275px;}
.y55{bottom:650.047052px;}
.y1dc{bottom:650.414841px;}
.y1d9{bottom:651.597748px;}
.y16c{bottom:653.002694px;}
.y28d{bottom:656.243284px;}
.ye5{bottom:657.939141px;}
.y2cf{bottom:659.891380px;}
.y11{bottom:660.240269px;}
.y1df{bottom:660.310043px;}
.y243{bottom:661.233148px;}
.y10d{bottom:663.577655px;}
.y54{bottom:665.045552px;}
.y146{bottom:666.707275px;}
.y16b{bottom:668.001194px;}
.y28c{bottom:668.989534px;}
.y21b{bottom:670.529984px;}
.ye4{bottom:672.937641px;}
.y21a{bottom:673.572922px;}
.y1dd{bottom:674.338287px;}
.y242{bottom:676.231648px;}
.y10{bottom:676.737269px;}
.y10c{bottom:678.576155px;}
.y53{bottom:680.047052px;}
.y92{bottom:681.619928px;}
.y28b{bottom:681.735784px;}
.y2ce{bottom:682.395880px;}
.y16a{bottom:682.999694px;}
.y147{bottom:684.242275px;}
.ye3{bottom:687.936141px;}
.y241{bottom:691.239194px;}
.yf{bottom:693.234269px;}
.y10b{bottom:693.574655px;}
.y28a{bottom:694.482034px;}
.y52{bottom:695.045552px;}
.y91{bottom:696.618428px;}
.y169{bottom:697.998194px;}
.y1cd{bottom:699.480011px;}
.y143{bottom:701.777275px;}
.y1d6{bottom:701.998672px;}
.ye2{bottom:702.934641px;}
.y2cd{bottom:704.900380px;}
.y1d7{bottom:705.886368px;}
.y240{bottom:706.237694px;}
.y289{bottom:707.228284px;}
.y10a{bottom:708.573155px;}
.y214{bottom:708.929993px;}
.ye{bottom:709.731269px;}
.y51{bottom:710.047052px;}
.y90{bottom:711.622974px;}
.y1d4{bottom:712.055832px;}
.y218{bottom:712.515015px;}
.y168{bottom:712.996694px;}
.y1cf{bottom:713.311203px;}
.y213{bottom:713.549993px;}
.y1cc{bottom:715.722748px;}
.ye1{bottom:717.933141px;}
.y216{bottom:718.090210px;}
.y141{bottom:719.312275px;}
.y2cc{bottom:719.898880px;}
.y288{bottom:719.974534px;}
.y23f{bottom:721.236194px;}
.y109{bottom:723.571655px;}
.y50{bottom:725.045552px;}
.y1d2{bottom:725.110062px;}
.yd{bottom:726.228269px;}
.y8f{bottom:726.621474px;}
.y167{bottom:727.995194px;}
.y287{bottom:732.720784px;}
.ye0{bottom:732.931641px;}
.y2cb{bottom:734.898880px;}
.y23e{bottom:736.234694px;}
.y142{bottom:736.847275px;}
.y1d0{bottom:739.138443px;}
.y4f{bottom:740.044052px;}
.y8e{bottom:741.619974px;}
.yc{bottom:742.725269px;}
.y1f2{bottom:742.981648px;}
.y166{bottom:742.993694px;}
.y286{bottom:745.467034px;}
.y23d{bottom:751.233194px;}
.y140{bottom:754.382275px;}
.y4e{bottom:755.044052px;}
.y8d{bottom:756.618474px;}
.y1f1{bottom:757.986194px;}
.y165{bottom:757.992194px;}
.y285{bottom:758.213284px;}
.yb{bottom:759.222269px;}
.y1c5{bottom:764.279984px;}
.y2ca{bottom:764.898880px;}
.y23c{bottom:766.231694px;}
.y1ca{bottom:766.839020px;}
.y1c7{bottom:766.906357px;}
.y1c4{bottom:767.479345px;}
.y1c9{bottom:770.835022px;}
.y284{bottom:770.959534px;}
.y8c{bottom:771.618474px;}
.y13b{bottom:771.917275px;}
.y1f0{bottom:772.984694px;}
.y164{bottom:772.990694px;}
.ya{bottom:775.719269px;}
.y2c9{bottom:779.898926px;}
.y23b{bottom:781.236194px;}
.y283{bottom:783.705784px;}
.y8b{bottom:786.619974px;}
.y1ef{bottom:787.983194px;}
.y163{bottom:787.989194px;}
.y4d{bottom:788.045506px;}
.y13f{bottom:789.452275px;}
.y1a1{bottom:795.486194px;}
.y23a{bottom:796.234694px;}
.y282{bottom:796.452034px;}
.y8a{bottom:801.618474px;}
.y1ee{bottom:802.981694px;}
.y162{bottom:802.987694px;}
.y4c{bottom:803.057506px;}
.y9{bottom:805.719269px;}
.y13e{bottom:806.987275px;}
.y281{bottom:809.198284px;}
.y1a0{bottom:810.484694px;}
.y239{bottom:811.233194px;}
.y2c8{bottom:811.368784px;}
.y89{bottom:816.616974px;}
.y161{bottom:817.986194px;}
.y4b{bottom:818.056006px;}
.y280{bottom:821.944534px;}
.y8{bottom:823.719269px;}
.y13c{bottom:824.522275px;}
.y19f{bottom:825.483194px;}
.y238{bottom:826.231694px;}
.y2c7{bottom:826.367284px;}
.y160{bottom:832.984694px;}
.y4a{bottom:833.054506px;}
.y27f{bottom:834.690784px;}
.y19e{bottom:840.481694px;}
.y237{bottom:841.236194px;}
.y2c6{bottom:841.365784px;}
.y13d{bottom:842.057275px;}
.y27e{bottom:847.437034px;}
.y15f{bottom:847.983194px;}
.y49{bottom:848.053006px;}
.yb8{bottom:848.330289px;}
.y19d{bottom:855.486194px;}
.y236{bottom:856.234694px;}
.y2c5{bottom:856.365784px;}
.y7{bottom:856.707269px;}
.y13a{bottom:859.581775px;}
.y27d{bottom:860.183284px;}
.yb5{bottom:860.237289px;}
.y15e{bottom:862.981694px;}
.y48{bottom:863.051506px;}
.yb7{bottom:865.865289px;}
.y19c{bottom:870.484694px;}
.y235{bottom:871.233194px;}
.yb4{bottom:871.482789px;}
.y27c{bottom:872.929534px;}
.y138{bottom:877.116775px;}
.y1ed{bottom:877.984694px;}
.y15d{bottom:877.996694px;}
.y47{bottom:878.050006px;}
.yb6{bottom:883.400289px;}
.y19b{bottom:885.483194px;}
.y27b{bottom:885.675784px;}
.y234{bottom:886.231694px;}
.y2c4{bottom:886.370284px;}
.y1ec{bottom:892.983194px;}
.y15c{bottom:892.995194px;}
.y46{bottom:893.048506px;}
.y139{bottom:894.651775px;}
.y27a{bottom:898.422034px;}
.y19a{bottom:900.481694px;}
.yb3{bottom:900.924789px;}
.y233{bottom:901.230194px;}
.y2c3{bottom:901.368784px;}
.y6{bottom:901.713269px;}
.y1eb{bottom:907.981694px;}
.y15b{bottom:907.993694px;}
.y45{bottom:908.047006px;}
.y279{bottom:911.168284px;}
.y137{bottom:912.186775px;}
.y199{bottom:915.484694px;}
.y2c2{bottom:916.367284px;}
.yb1{bottom:918.459789px;}
.y15a{bottom:922.992194px;}
.y1ea{bottom:922.996694px;}
.y44{bottom:923.045506px;}
.y278{bottom:923.914534px;}
.y132{bottom:929.721775px;}
.y198{bottom:930.483194px;}
.y2c1{bottom:931.365784px;}
.y232{bottom:934.234694px;}
.yb2{bottom:935.994789px;}
.y277{bottom:936.660784px;}
.y159{bottom:937.990694px;}
.y1e9{bottom:937.995194px;}
.y43{bottom:938.047006px;}
.y197{bottom:945.481694px;}
.y2c0{bottom:946.365784px;}
.y5{bottom:946.719269px;}
.y136{bottom:947.256775px;}
.y231{bottom:949.233194px;}
.y276{bottom:949.407034px;}
.y158{bottom:952.989194px;}
.y1e8{bottom:952.993694px;}
.y42{bottom:953.045506px;}
.yb0{bottom:953.529789px;}
.y2e{bottom:954.366760px;}
.y275{bottom:962.153284px;}
.y230{bottom:964.231694px;}
.y135{bottom:964.791775px;}
.y157{bottom:967.987694px;}
.y1e7{bottom:967.992194px;}
.y41{bottom:968.047006px;}
.yae{bottom:971.064789px;}
.y274{bottom:974.899534px;}
.y2bf{bottom:976.368784px;}
.y22f{bottom:979.230194px;}
.y196{bottom:979.231694px;}
.y133{bottom:982.326775px;}
.y156{bottom:982.986194px;}
.y1e6{bottom:982.990694px;}
.y40{bottom:983.045506px;}
.y273{bottom:987.645784px;}
.yaf{bottom:988.599789px;}
.y2be{bottom:991.367284px;}
.y195{bottom:995.129974px;}
.y155{bottom:997.984694px;}
.y1e5{bottom:997.989194px;}
.y3f{bottom:998.047006px;}
.y134{bottom:999.861775px;}
.y272{bottom:1000.392034px;}
.y93{bottom:1006.131775px;}
.yad{bottom:1006.140775px;}
.y9f{bottom:1006.143579px;}
.ya2{bottom:1006.154078px;}
.ya4{bottom:1006.164578px;}
.ya7{bottom:1006.175077px;}
.yaa{bottom:1006.185576px;}
.y2bd{bottom:1006.365784px;}
.y194{bottom:1009.231694px;}
.y22e{bottom:1012.981694px;}
.y154{bottom:1012.983194px;}
.y1e4{bottom:1012.987694px;}
.y3e{bottom:1013.045506px;}
.y271{bottom:1013.138284px;}
.yac{bottom:1017.386275px;}
.y9e{bottom:1017.389079px;}
.y12f{bottom:1017.398079px;}
.ya1{bottom:1017.399578px;}
.ya6{bottom:1017.420577px;}
.ya9{bottom:1017.431076px;}
.y2bc{bottom:1021.365784px;}
.ya3{bottom:1023.689078px;}
.y193{bottom:1025.129974px;}
.y270{bottom:1025.884534px;}
.y153{bottom:1027.981694px;}
.y22d{bottom:1027.983194px;}
.y1e3{bottom:1027.986194px;}
.y3d{bottom:1028.047006px;}
.y130{bottom:1028.631775px;}
.y9d{bottom:1028.634579px;}
.y12e{bottom:1028.643579px;}
.ya0{bottom:1028.645078px;}
.ya5{bottom:1028.666077px;}
.ya8{bottom:1028.676576px;}
.yab{bottom:1028.687074px;}
.y26f{bottom:1038.630784px;}
.y12d{bottom:1039.889079px;}
.y192{bottom:1040.129974px;}
.y22c{bottom:1042.981694px;}
.y152{bottom:1042.984694px;}
.y3c{bottom:1043.045506px;}
.y131{bottom:1046.166775px;}
.y26e{bottom:1051.377034px;}
.y98{bottom:1052.457578px;}
.y95{bottom:1052.457773px;}
.y9c{bottom:1052.462078px;}
.y151{bottom:1057.983194px;}
.y3b{bottom:1058.045506px;}
.y22b{bottom:1058.879974px;}
.y97{bottom:1063.703078px;}
.y94{bottom:1063.703273px;}
.y9b{bottom:1063.707578px;}
.y26d{bottom:1064.123284px;}
.y150{bottom:1072.981694px;}
.y3a{bottom:1073.045506px;}
.y96{bottom:1074.948578px;}
.y9a{bottom:1074.953078px;}
.y26c{bottom:1076.869534px;}
.y99{bottom:1086.198578px;}
.y14f{bottom:1087.980194px;}
.y39{bottom:1088.044006px;}
.y26b{bottom:1089.615784px;}
.y7a{bottom:1140.640320px;}
.ybe{bottom:1140.746521px;}
.y38{bottom:1140.746704px;}
.y4{bottom:1141.922516px;}
.h3f{height:0.000000px;}
.h51{height:2.161488px;}
.h4d{height:15.900000px;}
.h37{height:16.200000px;}
.h4b{height:19.051500px;}
.h3b{height:19.615503px;}
.hf{height:23.842749px;}
.h54{height:23.942760px;}
.h4c{height:24.370777px;}
.h39{height:28.747739px;}
.h3a{height:29.240558px;}
.h2{height:34.523438px;}
.h3e{height:35.330164px;}
.h56{height:35.411133px;}
.h45{height:36.529147px;}
.h11{height:36.681152px;}
.h3d{height:37.826039px;}
.h38{height:38.474486px;}
.h8{height:38.838867px;}
.h4f{height:39.599999px;}
.h42{height:40.951500px;}
.h1e{height:41.538000px;}
.h12{height:41.644740px;}
.h10{height:41.668740px;}
.h3c{height:42.301500px;}
.h1c{height:43.008000px;}
.h57{height:44.505000px;}
.h59{height:45.090000px;}
.h5a{height:45.524817px;}
.h3{height:45.679688px;}
.h58{height:46.080000px;}
.h43{height:46.573973px;}
.h17{height:47.469727px;}
.h50{height:48.324856px;}
.h7{height:49.050293px;}
.h46{height:49.111346px;}
.h6{height:49.183594px;}
.h13{height:49.373525px;}
.h52{height:49.578204px;}
.h49{height:49.805963px;}
.h4a{height:49.806009px;}
.h30{height:49.806879px;}
.h5b{height:50.439000px;}
.h4e{height:51.541339px;}
.h53{height:52.191186px;}
.h41{height:52.243807px;}
.h40{height:53.379201px;}
.h9{height:53.406000px;}
.h2c{height:53.511680px;}
.h2b{height:53.547680px;}
.ha{height:53.547827px;}
.h33{height:53.553863px;}
.h2d{height:53.559863px;}
.h16{height:53.560046px;}
.h2e{height:53.571863px;}
.h34{height:53.571955px;}
.h55{height:53.577680px;}
.h22{height:53.577863px;}
.h2f{height:53.583907px;}
.h1b{height:53.589131px;}
.h47{height:53.589680px;}
.hc{height:53.589863px;}
.h25{height:53.589909px;}
.h20{height:53.595131px;}
.h26{height:53.595314px;}
.h2a{height:53.595680px;}
.h32{height:53.595863px;}
.h36{height:53.595909px;}
.h1f{height:53.601131px;}
.h27{height:53.601314px;}
.h28{height:53.601406px;}
.h19{height:53.601680px;}
.hd{height:53.601863px;}
.h24{height:53.601907px;}
.h48{height:53.601955px;}
.h15{height:53.602046px;}
.h1a{height:53.607680px;}
.hb{height:53.607863px;}
.h23{height:53.607907px;}
.h35{height:53.607955px;}
.h14{height:53.608046px;}
.h29{height:53.613680px;}
.h21{height:53.613863px;}
.h44{height:54.027098px;}
.h31{height:54.108000px;}
.h18{height:55.296000px;}
.h4{height:57.099609px;}
.he{height:77.677734px;}
.h1d{height:87.990000px;}
.h5{height:112.201172px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w6{width:117.240005px;}
.w5{width:152.955002px;}
.w2{width:283.379997px;}
.w4{width:323.610008px;}
.w3{width:344.834999px;}
.w7{width:403.515015px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:1.923569px;}
.x8{left:7.228350px;}
.x44{left:49.863327px;}
.x3{left:61.653603px;}
.xa{left:66.365999px;}
.x46{left:85.112137px;}
.x47{left:88.770630px;}
.x20{left:94.394119px;}
.x22{left:101.751755px;}
.x49{left:105.632126px;}
.x24{left:124.863464px;}
.x4a{left:134.067401px;}
.x50{left:139.118088px;}
.x7{left:141.395702px;}
.x32{left:147.428101px;}
.xb{left:154.166999px;}
.x13{left:161.482200px;}
.x35{left:169.041595px;}
.x3c{left:176.160622px;}
.x26{left:179.052612px;}
.x27{left:186.410248px;}
.x52{left:196.803589px;}
.x29{left:208.023148px;}
.x40{left:227.676476px;}
.x5{left:233.858253px;}
.xc{left:243.076195px;}
.x6{left:251.853390px;}
.x1c{left:253.629890px;}
.x14{left:256.612200px;}
.x36{left:263.230957px;}
.x54{left:270.297775px;}
.x2b{left:271.973099px;}
.x2d{left:279.330643px;}
.x57{left:291.330460px;}
.x5a{left:302.498703px;}
.x3e{left:318.544487px;}
.x38{left:326.235580px;}
.xd{left:331.475691px;}
.x4d{left:346.218590px;}
.x15{left:350.585106px;}
.x2e{left:360.142502px;}
.x39{left:370.754997px;}
.x3a{left:388.249786px;}
.x1e{left:390.869980px;}
.xf{left:400.581562px;}
.x18{left:426.744303px;}
.x4f{left:452.382614px;}
.x42{left:456.080978px;}
.x43{left:467.955734px;}
.x2f{left:469.932312px;}
.x4b{left:473.938522px;}
.x51{left:476.115921px;}
.x1f{left:482.928589px;}
.x10{left:488.256562px;}
.x21{left:490.286270px;}
.x23{left:501.437119px;}
.x19{left:506.554801px;}
.x4e{left:507.862182px;}
.x45{left:511.479584px;}
.x33{left:521.826462px;}
.x30{left:524.306017px;}
.x34{left:526.848587px;}
.x3b{left:532.657157px;}
.x31{left:538.566605px;}
.x53{left:542.387100px;}
.x3d{left:546.915619px;}
.x48{left:554.949738px;}
.x3f{left:561.981583px;}
.x25{left:567.587082px;}
.x16{left:573.619629px;}
.x11{left:574.934062px;}
.x28{left:585.352798px;}
.x4{left:586.814117px;}
.x55{left:609.090912px;}
.x56{left:614.125809px;}
.x58{left:627.815094px;}
.x37{left:630.150467px;}
.x1a{left:642.435299px;}
.x41{left:648.273605px;}
.x2a{left:660.507431px;}
.x12{left:662.231062px;}
.x2c{left:667.865112px;}
.x17{left:704.827515px;}
.xe{left:748.730118px;}
.x1b{left:773.632798px;}
.x9{left:797.390808px;}
.x2{left:798.901611px;}
.x1d{left:815.442763px;}
.x59{left:818.848755px;}
.x1{left:825.001190px;}
@media print{
.va{vertical-align:-22.325333pt;}
.v14{vertical-align:-19.822917pt;}
.v5{vertical-align:-16.799967pt;}
.v6{vertical-align:-15.866659pt;}
.ve{vertical-align:-13.968587pt;}
.v3{vertical-align:-9.673951pt;}
.v16{vertical-align:-8.493496pt;}
.vb{vertical-align:-7.466471pt;}
.vd{vertical-align:-3.199219pt;}
.v1{vertical-align:-1.322667pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:3.647949pt;}
.v11{vertical-align:6.625000pt;}
.v8{vertical-align:13.034039pt;}
.vf{vertical-align:13.968587pt;}
.v7{vertical-align:15.845326pt;}
.v4{vertical-align:16.741268pt;}
.v12{vertical-align:17.662923pt;}
.v2{vertical-align:18.666667pt;}
.v15{vertical-align:19.814205pt;}
.v13{vertical-align:26.395200pt;}
.vc{vertical-align:32.517203pt;}
.v9{vertical-align:39.984000pt;}
.ls40{letter-spacing:-3.808000pt;}
.ls96{letter-spacing:-2.600000pt;}
.ls94{letter-spacing:-2.280000pt;}
.ls34{letter-spacing:-1.488000pt;}
.ls2d{letter-spacing:-1.248000pt;}
.ls26{letter-spacing:-1.008000pt;}
.ls97{letter-spacing:-0.960000pt;}
.ls33{letter-spacing:-0.896000pt;}
.ls48{letter-spacing:-0.816000pt;}
.ls41{letter-spacing:-0.784000pt;}
.ls85{letter-spacing:-0.720000pt;}
.ls81{letter-spacing:-0.680000pt;}
.ls3b{letter-spacing:-0.672000pt;}
.ls32{letter-spacing:-0.597333pt;}
.ls64{letter-spacing:-0.576000pt;}
.ls88{letter-spacing:-0.440000pt;}
.ls1d{letter-spacing:-0.432000pt;}
.ls2f{letter-spacing:-0.373333pt;}
.ls9a{letter-spacing:-0.360000pt;}
.ls1b{letter-spacing:-0.336000pt;}
.ls98{letter-spacing:-0.320000pt;}
.ls30{letter-spacing:-0.298667pt;}
.ls27{letter-spacing:-0.288000pt;}
.ls29{letter-spacing:-0.240000pt;}
.ls93{letter-spacing:-0.200000pt;}
.ls45{letter-spacing:-0.192000pt;}
.ls28{letter-spacing:-0.187200pt;}
.ls2e{letter-spacing:-0.186667pt;}
.ls87{letter-spacing:-0.160000pt;}
.ls3a{letter-spacing:-0.156000pt;}
.ls3e{letter-spacing:-0.149333pt;}
.ls19{letter-spacing:-0.144000pt;}
.ls46{letter-spacing:-0.124800pt;}
.ls95{letter-spacing:-0.120000pt;}
.ls15{letter-spacing:-0.096000pt;}
.ls1a{letter-spacing:-0.093600pt;}
.ls80{letter-spacing:-0.080000pt;}
.ls1c{letter-spacing:-0.062400pt;}
.ls37{letter-spacing:-0.048000pt;}
.ls92{letter-spacing:-0.040000pt;}
.ls65{letter-spacing:-0.036505pt;}
.ls14{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000009pt;}
.ls3c{letter-spacing:0.000074pt;}
.ls2b{letter-spacing:0.000096pt;}
.ls2c{letter-spacing:0.000130pt;}
.lsc{letter-spacing:0.008457pt;}
.ls4{letter-spacing:0.011673pt;}
.ls3{letter-spacing:0.011754pt;}
.ls2{letter-spacing:0.012242pt;}
.lse{letter-spacing:0.015600pt;}
.ls13{letter-spacing:0.016025pt;}
.ls36{letter-spacing:0.019280pt;}
.ls1{letter-spacing:0.023970pt;}
.ls18{letter-spacing:0.031200pt;}
.ls62{letter-spacing:0.036505pt;}
.ls99{letter-spacing:0.040000pt;}
.ls90{letter-spacing:0.040996pt;}
.ls12{letter-spacing:0.048000pt;}
.ls4d{letter-spacing:0.048414pt;}
.lsf{letter-spacing:0.062400pt;}
.ls4a{letter-spacing:0.071981pt;}
.ls7b{letter-spacing:0.080000pt;}
.ls4c{letter-spacing:0.086400pt;}
.ls49{letter-spacing:0.093600pt;}
.ls10{letter-spacing:0.096000pt;}
.ls4f{letter-spacing:0.098394pt;}
.ls58{letter-spacing:0.109515pt;}
.ls8f{letter-spacing:0.118307pt;}
.ls38{letter-spacing:0.118889pt;}
.ls89{letter-spacing:0.120000pt;}
.ls67{letter-spacing:0.124361pt;}
.ls69{letter-spacing:0.124599pt;}
.ls44{letter-spacing:0.124752pt;}
.lsa{letter-spacing:0.124800pt;}
.ls52{letter-spacing:0.134039pt;}
.ls54{letter-spacing:0.134202pt;}
.ls6{letter-spacing:0.139468pt;}
.ls91{letter-spacing:0.140000pt;}
.ls11{letter-spacing:0.140400pt;}
.ls35{letter-spacing:0.141350pt;}
.ls25{letter-spacing:0.144000pt;}
.lsb{letter-spacing:0.152037pt;}
.lsd{letter-spacing:0.156000pt;}
.ls78{letter-spacing:0.160000pt;}
.ls76{letter-spacing:0.180000pt;}
.ls5{letter-spacing:0.192000pt;}
.ls7a{letter-spacing:0.200000pt;}
.ls4b{letter-spacing:0.201600pt;}
.ls1f{letter-spacing:0.202800pt;}
.ls66{letter-spacing:0.203217pt;}
.ls55{letter-spacing:0.204826pt;}
.ls43{letter-spacing:0.216000pt;}
.ls24{letter-spacing:0.218400pt;}
.ls68{letter-spacing:0.218602pt;}
.ls3f{letter-spacing:0.224000pt;}
.ls56{letter-spacing:0.230393pt;}
.ls75{letter-spacing:0.234667pt;}
.ls16{letter-spacing:0.240000pt;}
.ls1e{letter-spacing:0.249600pt;}
.ls63{letter-spacing:0.250667pt;}
.ls8{letter-spacing:0.252678pt;}
.ls86{letter-spacing:0.280000pt;}
.ls22{letter-spacing:0.280800pt;}
.ls51{letter-spacing:0.287589pt;}
.ls39{letter-spacing:0.288000pt;}
.ls53{letter-spacing:0.292815pt;}
.ls84{letter-spacing:0.320000pt;}
.ls50{letter-spacing:0.331200pt;}
.ls7{letter-spacing:0.336000pt;}
.ls74{letter-spacing:0.374400pt;}
.ls9{letter-spacing:0.384000pt;}
.ls7e{letter-spacing:0.400000pt;}
.ls31{letter-spacing:0.410667pt;}
.ls21{letter-spacing:0.432000pt;}
.ls8a{letter-spacing:0.440000pt;}
.ls23{letter-spacing:0.480000pt;}
.ls4e{letter-spacing:0.496010pt;}
.ls9b{letter-spacing:0.520000pt;}
.ls20{letter-spacing:0.528000pt;}
.ls42{letter-spacing:0.576000pt;}
.ls83{letter-spacing:0.600000pt;}
.ls17{letter-spacing:0.624000pt;}
.ls7c{letter-spacing:0.640000pt;}
.ls7f{letter-spacing:0.672000pt;}
.ls47{letter-spacing:0.720000pt;}
.ls57{letter-spacing:0.839617pt;}
.ls8e{letter-spacing:0.844000pt;}
.ls8b{letter-spacing:0.847967pt;}
.ls82{letter-spacing:0.920000pt;}
.ls79{letter-spacing:0.932056pt;}
.ls8c{letter-spacing:1.136055pt;}
.ls8d{letter-spacing:1.160000pt;}
.ls77{letter-spacing:1.200000pt;}
.ls5e{letter-spacing:1.423698pt;}
.ls5f{letter-spacing:2.044284pt;}
.ls7d{letter-spacing:2.563973pt;}
.ls0{letter-spacing:2.666667pt;}
.ls6a{letter-spacing:2.701375pt;}
.ls6e{letter-spacing:3.322900pt;}
.ls6d{letter-spacing:3.350179pt;}
.ls72{letter-spacing:8.021522pt;}
.ls71{letter-spacing:9.012719pt;}
.ls5d{letter-spacing:10.654652pt;}
.ls5c{letter-spacing:10.663341pt;}
.ls6c{letter-spacing:10.711374pt;}
.ls73{letter-spacing:11.335804pt;}
.ls6b{letter-spacing:13.353192pt;}
.ls6f{letter-spacing:13.381093pt;}
.ls5b{letter-spacing:14.129495pt;}
.ls60{letter-spacing:16.266702pt;}
.ls59{letter-spacing:18.065782pt;}
.ls70{letter-spacing:25.985572pt;}
.ls61{letter-spacing:143.859917pt;}
.ls5a{letter-spacing:151.876356pt;}
.ls3d{letter-spacing:322.948664pt;}
.ws1{word-spacing:-13.333333pt;}
.wsaa{word-spacing:-12.320000pt;}
.ws1f{word-spacing:-12.085333pt;}
.ws3f{word-spacing:-11.520000pt;}
.ws23{word-spacing:-11.328000pt;}
.ws79{word-spacing:-11.232000pt;}
.ws17{word-spacing:-11.136000pt;}
.ws5e{word-spacing:-11.088000pt;}
.ws7a{word-spacing:-10.992000pt;}
.ws19{word-spacing:-10.896000pt;}
.ws94{word-spacing:-10.800000pt;}
.ws91{word-spacing:-10.752000pt;}
.ws60{word-spacing:-10.656000pt;}
.ws5c{word-spacing:-10.560000pt;}
.wsdf{word-spacing:-10.416000pt;}
.ws70{word-spacing:-10.080000pt;}
.ws20{word-spacing:-9.888000pt;}
.ws40{word-spacing:-9.648000pt;}
.ws47{word-spacing:-9.408000pt;}
.wscc{word-spacing:-9.360000pt;}
.wsd1{word-spacing:-9.280000pt;}
.wsab{word-spacing:-9.260000pt;}
.wsba{word-spacing:-9.240000pt;}
.wscd{word-spacing:-9.080000pt;}
.wsc9{word-spacing:-9.040000pt;}
.wsca{word-spacing:-8.960000pt;}
.ws4e{word-spacing:-8.880000pt;}
.ws0{word-spacing:-8.533333pt;}
.ws43{word-spacing:-8.512000pt;}
.wsac{word-spacing:-8.440000pt;}
.ws6c{word-spacing:-8.325333pt;}
.wscb{word-spacing:-8.200000pt;}
.ws44{word-spacing:-8.101333pt;}
.ws66{word-spacing:-7.952000pt;}
.ws6b{word-spacing:-7.914667pt;}
.ws45{word-spacing:-7.877333pt;}
.ws42{word-spacing:-7.802667pt;}
.ws46{word-spacing:-7.578667pt;}
.ws95{word-spacing:-7.456800pt;}
.ws1c{word-spacing:-7.363200pt;}
.ws1d{word-spacing:-7.332000pt;}
.ws69{word-spacing:-7.317333pt;}
.ws1e{word-spacing:-7.300800pt;}
.ws96{word-spacing:-7.269600pt;}
.ws3{word-spacing:-7.238400pt;}
.ws72{word-spacing:-7.207200pt;}
.ws71{word-spacing:-7.176000pt;}
.ws7{word-spacing:-7.144800pt;}
.ws2{word-spacing:-7.141333pt;}
.ws4{word-spacing:-7.113600pt;}
.ws5{word-spacing:-7.082400pt;}
.ws8{word-spacing:-7.020000pt;}
.ws6{word-spacing:-6.988800pt;}
.ws6f{word-spacing:-6.957600pt;}
.ws5f{word-spacing:-6.926400pt;}
.ws21{word-spacing:-6.895200pt;}
.ws9{word-spacing:-5.893333pt;}
.wsd6{word-spacing:-5.400000pt;}
.wsd7{word-spacing:-5.360000pt;}
.ws41{word-spacing:-5.265867pt;}
.wsd8{word-spacing:-5.240000pt;}
.wsdc{word-spacing:-5.120000pt;}
.wsc1{word-spacing:-5.000000pt;}
.wsa1{word-spacing:-4.896000pt;}
.ws6e{word-spacing:-3.808000pt;}
.ws4c{word-spacing:-1.872000pt;}
.ws93{word-spacing:-1.824000pt;}
.wsa6{word-spacing:-1.488000pt;}
.wsa5{word-spacing:-1.392000pt;}
.ws32{word-spacing:-1.344000pt;}
.ws3d{word-spacing:-1.200000pt;}
.wsae{word-spacing:-1.152000pt;}
.wse{word-spacing:-1.104000pt;}
.wsd{word-spacing:-1.056000pt;}
.ws13{word-spacing:-1.008000pt;}
.ws37{word-spacing:-0.960000pt;}
.wsb3{word-spacing:-0.920000pt;}
.ws58{word-spacing:-0.912000pt;}
.wsce{word-spacing:-0.880000pt;}
.ws16{word-spacing:-0.864000pt;}
.ws48{word-spacing:-0.816000pt;}
.ws31{word-spacing:-0.768000pt;}
.ws1b{word-spacing:-0.720000pt;}
.ws36{word-spacing:-0.672000pt;}
.wsc5{word-spacing:-0.600000pt;}
.ws25{word-spacing:-0.576000pt;}
.ws26{word-spacing:-0.528000pt;}
.wsc0{word-spacing:-0.520000pt;}
.ws34{word-spacing:-0.480000pt;}
.ws4b{word-spacing:-0.432000pt;}
.ws9f{word-spacing:-0.384000pt;}
.wscf{word-spacing:-0.360000pt;}
.ws3c{word-spacing:-0.336000pt;}
.wsda{word-spacing:-0.320000pt;}
.ws22{word-spacing:-0.288000pt;}
.wsbf{word-spacing:-0.280000pt;}
.ws84{word-spacing:-0.250667pt;}
.ws24{word-spacing:-0.249600pt;}
.ws28{word-spacing:-0.240000pt;}
.wse0{word-spacing:-0.234667pt;}
.ws6d{word-spacing:-0.224000pt;}
.wsc7{word-spacing:-0.200000pt;}
.wsb{word-spacing:-0.192000pt;}
.wsb4{word-spacing:-0.160000pt;}
.ws18{word-spacing:-0.156000pt;}
.ws76{word-spacing:-0.144000pt;}
.wsc8{word-spacing:-0.120000pt;}
.ws5d{word-spacing:-0.096000pt;}
.ws83{word-spacing:-0.073010pt;}
.ws14{word-spacing:-0.062400pt;}
.ws80{word-spacing:-0.048033pt;}
.ws5b{word-spacing:-0.048000pt;}
.ws7d{word-spacing:-0.036505pt;}
.ws12{word-spacing:-0.031200pt;}
.wsa{word-spacing:0.000000pt;}
.wsbc{word-spacing:0.040000pt;}
.ws29{word-spacing:0.048000pt;}
.ws1a{word-spacing:0.062400pt;}
.wsbd{word-spacing:0.080000pt;}
.wsa0{word-spacing:0.096000pt;}
.ws73{word-spacing:0.124800pt;}
.ws11{word-spacing:0.144000pt;}
.ws4f{word-spacing:0.186667pt;}
.ws2b{word-spacing:0.187200pt;}
.ws3b{word-spacing:0.192000pt;}
.wsd0{word-spacing:0.200000pt;}
.ws64{word-spacing:0.240000pt;}
.wsc6{word-spacing:0.280000pt;}
.ws3e{word-spacing:0.288000pt;}
.ws51{word-spacing:0.298667pt;}
.wsd9{word-spacing:0.320000pt;}
.ws6a{word-spacing:0.336000pt;}
.wsdb{word-spacing:0.360000pt;}
.ws50{word-spacing:0.373333pt;}
.ws5a{word-spacing:0.384000pt;}
.wsb5{word-spacing:0.400000pt;}
.ws4d{word-spacing:0.432000pt;}
.wsc2{word-spacing:0.440000pt;}
.ws74{word-spacing:0.480000pt;}
.wsd2{word-spacing:0.520000pt;}
.ws27{word-spacing:0.528000pt;}
.wsd4{word-spacing:0.560000pt;}
.wsf{word-spacing:0.576000pt;}
.ws2a{word-spacing:0.624000pt;}
.wsb1{word-spacing:0.672000pt;}
.ws2c{word-spacing:0.720000pt;}
.wsa2{word-spacing:0.768000pt;}
.wsb2{word-spacing:0.816000pt;}
.wsbe{word-spacing:0.880000pt;}
.ws65{word-spacing:0.912000pt;}
.wsbb{word-spacing:0.920000pt;}
.ws85{word-spacing:0.960000pt;}
.ws78{word-spacing:1.008000pt;}
.ws15{word-spacing:1.056000pt;}
.wsc{word-spacing:1.104000pt;}
.ws30{word-spacing:1.152000pt;}
.ws90{word-spacing:1.200000pt;}
.ws75{word-spacing:1.248000pt;}
.wsdd{word-spacing:1.280000pt;}
.ws56{word-spacing:1.296000pt;}
.wsde{word-spacing:1.320000pt;}
.ws86{word-spacing:1.344000pt;}
.ws10{word-spacing:1.392000pt;}
.ws3a{word-spacing:1.488000pt;}
.ws53{word-spacing:1.536000pt;}
.ws38{word-spacing:1.632000pt;}
.ws55{word-spacing:1.680000pt;}
.wsad{word-spacing:1.728000pt;}
.ws33{word-spacing:1.776000pt;}
.wsc3{word-spacing:1.800000pt;}
.ws77{word-spacing:1.824000pt;}
.wsc4{word-spacing:1.840000pt;}
.wsb0{word-spacing:1.920000pt;}
.ws92{word-spacing:2.064000pt;}
.ws2f{word-spacing:2.112000pt;}
.ws63{word-spacing:2.256000pt;}
.wsd3{word-spacing:2.280000pt;}
.ws8a{word-spacing:2.352000pt;}
.ws8f{word-spacing:2.544000pt;}
.wsa4{word-spacing:2.592000pt;}
.wsd5{word-spacing:2.600000pt;}
.ws39{word-spacing:2.688000pt;}
.ws2e{word-spacing:2.784000pt;}
.ws54{word-spacing:2.976000pt;}
.ws89{word-spacing:3.072000pt;}
.ws8d{word-spacing:3.120000pt;}
.wsb6{word-spacing:3.280000pt;}
.wsa9{word-spacing:3.312000pt;}
.wsb7{word-spacing:3.320000pt;}
.ws49{word-spacing:3.408000pt;}
.ws8e{word-spacing:3.552000pt;}
.ws59{word-spacing:3.600000pt;}
.ws87{word-spacing:3.744000pt;}
.ws61{word-spacing:3.984000pt;}
.ws57{word-spacing:4.032000pt;}
.wsa8{word-spacing:4.224000pt;}
.ws8b{word-spacing:4.320000pt;}
.ws88{word-spacing:4.368000pt;}
.wsa3{word-spacing:4.512000pt;}
.wsa7{word-spacing:4.608000pt;}
.wsb9{word-spacing:4.720000pt;}
.ws62{word-spacing:4.752000pt;}
.ws35{word-spacing:4.800000pt;}
.ws8c{word-spacing:4.848000pt;}
.wsaf{word-spacing:4.896000pt;}
.wse4{word-spacing:5.040000pt;}
.wsb8{word-spacing:5.360000pt;}
.ws4a{word-spacing:5.424000pt;}
.wse5{word-spacing:5.568000pt;}
.wse3{word-spacing:5.760000pt;}
.ws2d{word-spacing:6.000000pt;}
.ws7e{word-spacing:6.059837pt;}
.ws7f{word-spacing:6.169356pt;}
.ws9e{word-spacing:8.285704pt;}
.ws9d{word-spacing:8.886117pt;}
.ws82{word-spacing:9.102266pt;}
.ws7b{word-spacing:10.062927pt;}
.ws7c{word-spacing:10.255060pt;}
.wse1{word-spacing:10.512000pt;}
.wse2{word-spacing:10.992000pt;}
.ws81{word-spacing:11.033195pt;}
.ws9a{word-spacing:11.455886pt;}
.ws52{word-spacing:13.584000pt;}
.ws98{word-spacing:15.452918pt;}
.ws9c{word-spacing:15.500770pt;}
.ws99{word-spacing:18.076442pt;}
.ws9b{word-spacing:18.092323pt;}
.ws97{word-spacing:18.092404pt;}
.ws68{word-spacing:41.813333pt;}
.ws67{word-spacing:157.882667pt;}
._34{margin-left:-1900.677333pt;}
._1b{margin-left:-1665.141274pt;}
._2c{margin-left:-18.624006pt;}
._44{margin-left:-15.681067pt;}
._43{margin-left:-13.930717pt;}
._2e{margin-left:-12.995206pt;}
._6{margin-left:-12.023479pt;}
._7{margin-left:-11.068294pt;}
._4{margin-left:-10.128000pt;}
._16{margin-left:-9.062455pt;}
._2f{margin-left:-8.157453pt;}
._41{margin-left:-6.640533pt;}
._42{margin-left:-5.117890pt;}
._3{margin-left:-4.213333pt;}
._2{margin-left:-2.906667pt;}
._0{margin-left:-1.668267pt;}
._5{width:0.905067pt;}
._a{width:2.210667pt;}
._d{width:3.226779pt;}
._c{width:4.116267pt;}
._11{width:5.267733pt;}
._12{width:6.664000pt;}
._b{width:7.806245pt;}
._15{width:8.759169pt;}
._9{width:10.500267pt;}
._8{width:12.144000pt;}
._14{width:13.285333pt;}
._f{width:14.252800pt;}
._10{width:15.277333pt;}
._45{width:16.214933pt;}
._e{width:17.371734pt;}
._40{width:31.295422pt;}
._13{width:41.578719pt;}
._2d{width:42.980723pt;}
._18{width:48.414878pt;}
._30{width:49.940258pt;}
._19{width:51.987192pt;}
._33{width:66.490667pt;}
._32{width:74.396267pt;}
._3c{width:84.410667pt;}
._1a{width:87.136000pt;}
._17{width:88.442654pt;}
._3a{width:102.330667pt;}
._28{width:115.920000pt;}
._23{width:136.714658pt;}
._1e{width:154.634658pt;}
._1d{width:170.351988pt;}
._29{width:172.554658pt;}
._1c{width:183.680000pt;}
._1f{width:187.824000pt;}
._27{width:190.698658pt;}
._26{width:198.762679pt;}
._20{width:200.069333pt;}
._24{width:201.376000pt;}
._22{width:206.191988pt;}
._25{width:207.946667pt;}
._35{width:211.567993pt;}
._2b{width:216.458667pt;}
._21{width:219.296000pt;}
._2a{width:226.501333pt;}
._38{width:246.586660pt;}
._3e{width:277.221229pt;}
._31{width:279.626638pt;}
._1{width:299.737600pt;}
._3f{width:304.522667pt;}
._37{width:330.437333pt;}
._36{width:382.666650pt;}
._3b{width:391.141316pt;}
._39{width:400.586650pt;}
._3d{width:418.506650pt;}
.fsb{font-size:24.266667pt;}
.fs11{font-size:26.000000pt;}
.fsf{font-size:28.820267pt;}
.fs7{font-size:29.466667pt;}
.fs5{font-size:31.200000pt;}
.fs3{font-size:34.666667pt;}
.fse{font-size:36.505066pt;}
.fsa{font-size:37.333333pt;}
.fs10{font-size:40.000000pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fsd{font-size:48.033066pt;}
.fsc{font-size:50.133331pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:138.666667pt;}
.y217{bottom:-0.041463pt;}
.y0{bottom:0.000000pt;}
.y224{bottom:0.079875pt;}
.y1e2{bottom:1.611491pt;}
.y1d8{bottom:2.202393pt;}
.y1d5{bottom:2.238810pt;}
.y1cb{bottom:2.274699pt;}
.y1c8{bottom:2.334554pt;}
.ybc{bottom:2.843733pt;}
.y37{bottom:2.843867pt;}
.ye9{bottom:2.844400pt;}
.y2{bottom:2.844533pt;}
.y21c{bottom:3.026693pt;}
.y215{bottom:3.186686pt;}
.y1c6{bottom:5.826701pt;}
.y219{bottom:10.804985pt;}
.y21f{bottom:13.880005pt;}
.y22a{bottom:13.891887pt;}
.y223{bottom:14.065063pt;}
.y226{bottom:14.072144pt;}
.y1db{bottom:14.586426pt;}
.y1d3{bottom:14.706665pt;}
.y1ce{bottom:15.786540pt;}
.y36{bottom:24.382667pt;}
.y1{bottom:24.382800pt;}
.ybd{bottom:24.493866pt;}
.y3{bottom:24.494000pt;}
.y1e0{bottom:25.038411pt;}
.y229{bottom:29.324259pt;}
.y1de{bottom:30.522298pt;}
.y1d1{bottom:31.722371pt;}
.y35{bottom:60.477735pt;}
.y2bb{bottom:62.010656pt;}
.y121{bottom:64.560135pt;}
.y79{bottom:65.827602pt;}
.y191{bottom:71.096132pt;}
.y108{bottom:71.098799pt;}
.ydf{bottom:72.580665pt;}
.y2ba{bottom:73.340656pt;}
.y1c3{bottom:73.361197pt;}
.y34{bottom:73.811069pt;}
.y212{bottom:75.498670pt;}
.y120{bottom:77.892135pt;}
.y26a{bottom:78.536799pt;}
.y78{bottom:79.159602pt;}
.y190{bottom:84.428132pt;}
.y107{bottom:84.430799pt;}
.y2b9{bottom:84.670656pt;}
.yde{bottom:85.912665pt;}
.y1c2{bottom:86.699863pt;}
.y33{bottom:87.149735pt;}
.y211{bottom:88.830670pt;}
.y269{bottom:89.866799pt;}
.y11f{bottom:91.224135pt;}
.y77{bottom:92.491602pt;}
.y88{bottom:94.158670pt;}
.y2b8{bottom:96.000656pt;}
.y18f{bottom:97.761465pt;}
.y106{bottom:97.762799pt;}
.ydd{bottom:99.244665pt;}
.y1c1{bottom:100.031863pt;}
.y32{bottom:100.477735pt;}
.y268{bottom:101.196799pt;}
.y210{bottom:102.162670pt;}
.y11e{bottom:104.556135pt;}
.y76{bottom:105.823602pt;}
.y2b7{bottom:107.330656pt;}
.y87{bottom:107.490670pt;}
.y105{bottom:111.094799pt;}
.y18e{bottom:111.100132pt;}
.y267{bottom:112.526799pt;}
.ydc{bottom:112.576665pt;}
.y1c0{bottom:113.363863pt;}
.y31{bottom:113.811069pt;}
.y20f{bottom:115.494670pt;}
.y11d{bottom:117.888135pt;}
.y2b6{bottom:118.660656pt;}
.y75{bottom:119.155602pt;}
.y86{bottom:120.822670pt;}
.y266{bottom:123.856799pt;}
.y104{bottom:124.429465pt;}
.y18d{bottom:124.432132pt;}
.ydb{bottom:125.908665pt;}
.y1bf{bottom:126.695863pt;}
.y30{bottom:127.144402pt;}
.y20e{bottom:129.626668pt;}
.y2b5{bottom:129.990656pt;}
.y11c{bottom:131.220135pt;}
.y74{bottom:132.487602pt;}
.y85{bottom:134.154670pt;}
.y265{bottom:135.186799pt;}
.y103{bottom:137.761465pt;}
.y18c{bottom:137.764132pt;}
.yda{bottom:139.240665pt;}
.y1be{bottom:140.027863pt;}
.y2b4{bottom:141.320656pt;}
.y20d{bottom:142.161337pt;}
.y2f{bottom:144.439067pt;}
.y11b{bottom:144.552135pt;}
.y73{bottom:145.819602pt;}
.y264{bottom:146.516799pt;}
.y84{bottom:147.486670pt;}
.y102{bottom:151.094799pt;}
.y18b{bottom:151.096132pt;}
.yd9{bottom:152.572665pt;}
.y2b3{bottom:152.650656pt;}
.y1bd{bottom:153.363863pt;}
.y20c{bottom:155.497327pt;}
.y263{bottom:157.846799pt;}
.y11a{bottom:157.889468pt;}
.y72{bottom:159.151602pt;}
.y83{bottom:160.818670pt;}
.y2b2{bottom:163.980656pt;}
.y18a{bottom:164.428132pt;}
.y101{bottom:164.432132pt;}
.yd8{bottom:165.904665pt;}
.y1bc{bottom:166.695863pt;}
.y20b{bottom:168.829327pt;}
.y262{bottom:169.176799pt;}
.y119{bottom:171.221468pt;}
.y71{bottom:172.483602pt;}
.y82{bottom:174.150670pt;}
.y2b1{bottom:175.310656pt;}
.y189{bottom:177.760132pt;}
.y100{bottom:177.764132pt;}
.yd7{bottom:179.236665pt;}
.y1bb{bottom:180.027863pt;}
.y261{bottom:180.506799pt;}
.y20a{bottom:182.161327pt;}
.y2d{bottom:182.729605pt;}
.y118{bottom:184.553468pt;}
.y2b0{bottom:186.640656pt;}
.y81{bottom:187.482670pt;}
.y188{bottom:191.093465pt;}
.yff{bottom:191.096132pt;}
.y260{bottom:191.836799pt;}
.yd6{bottom:192.569998pt;}
.y1ba{bottom:193.361197pt;}
.y2c{bottom:196.062938pt;}
.y209{bottom:196.293335pt;}
.y117{bottom:197.885468pt;}
.y2af{bottom:197.970656pt;}
.y80{bottom:200.814670pt;}
.y70{bottom:201.844935pt;}
.y25f{bottom:203.166799pt;}
.yfe{bottom:204.428132pt;}
.yd5{bottom:205.904665pt;}
.y1b9{bottom:206.694530pt;}
.y2ae{bottom:209.300656pt;}
.y2b{bottom:209.400271pt;}
.y116{bottom:211.217468pt;}
.y7f{bottom:214.146670pt;}
.y25e{bottom:214.496799pt;}
.y6f{bottom:215.176935pt;}
.yfd{bottom:217.768132pt;}
.yd4{bottom:219.236665pt;}
.y1b8{bottom:220.035863pt;}
.y187{bottom:220.434799pt;}
.y2ad{bottom:220.630656pt;}
.y2a{bottom:222.732271pt;}
.y115{bottom:224.550802pt;}
.y208{bottom:224.835993pt;}
.y25d{bottom:225.826799pt;}
.y7e{bottom:227.478670pt;}
.y6e{bottom:228.508935pt;}
.yfc{bottom:231.100132pt;}
.y2ac{bottom:231.960656pt;}
.yd3{bottom:232.583352pt;}
.y1b7{bottom:233.367863pt;}
.y186{bottom:233.766799pt;}
.y29{bottom:236.064271pt;}
.y25c{bottom:237.156799pt;}
.y207{bottom:238.167993pt;}
.y7d{bottom:240.810670pt;}
.y6d{bottom:241.840935pt;}
.y2ab{bottom:243.290656pt;}
.yfb{bottom:244.432132pt;}
.yd2{bottom:245.915352pt;}
.y1b6{bottom:246.699863pt;}
.y185{bottom:247.098799pt;}
.y25b{bottom:248.486799pt;}
.y28{bottom:249.396271pt;}
.y206{bottom:251.499993pt;}
.y114{bottom:253.885468pt;}
.y7c{bottom:254.142670pt;}
.y2aa{bottom:254.620656pt;}
.y6c{bottom:255.172935pt;}
.yfa{bottom:257.764132pt;}
.yd1{bottom:259.247352pt;}
.y25a{bottom:259.816799pt;}
.y1b5{bottom:260.031863pt;}
.y184{bottom:260.430799pt;}
.y27{bottom:262.729605pt;}
.y205{bottom:264.831993pt;}
.y2a9{bottom:265.950656pt;}
.y113{bottom:267.217468pt;}
.y7b{bottom:267.474670pt;}
.y6b{bottom:268.504935pt;}
.yf9{bottom:271.096132pt;}
.y259{bottom:271.146799pt;}
.yd0{bottom:272.579352pt;}
.y1b4{bottom:273.363863pt;}
.y183{bottom:273.762799pt;}
.y26{bottom:276.066938pt;}
.y2a8{bottom:277.280656pt;}
.y204{bottom:278.163993pt;}
.y6a{bottom:281.836935pt;}
.y258{bottom:282.476799pt;}
.yf8{bottom:284.428132pt;}
.ycf{bottom:285.911352pt;}
.y1b3{bottom:286.695863pt;}
.y182{bottom:287.094799pt;}
.y2a7{bottom:288.610656pt;}
.y25{bottom:289.398938pt;}
.y203{bottom:291.495993pt;}
.y257{bottom:293.806799pt;}
.y69{bottom:295.168935pt;}
.yf7{bottom:297.761465pt;}
.yce{bottom:299.243352pt;}
.y2a6{bottom:299.940656pt;}
.y1b2{bottom:300.027863pt;}
.y181{bottom:300.428132pt;}
.y24{bottom:302.730938pt;}
.y202{bottom:304.827993pt;}
.y256{bottom:305.136799pt;}
.y68{bottom:308.500935pt;}
.yf6{bottom:311.096132pt;}
.y2a5{bottom:311.270656pt;}
.ybb{bottom:312.048138pt;}
.ycd{bottom:312.575352pt;}
.y1b1{bottom:313.359863pt;}
.y180{bottom:313.761465pt;}
.y23{bottom:316.062938pt;}
.y255{bottom:316.466799pt;}
.y201{bottom:318.162660pt;}
.y67{bottom:321.832935pt;}
.y12c{bottom:321.883067pt;}
.y2a4{bottom:322.600656pt;}
.yf5{bottom:324.428132pt;}
.yba{bottom:325.380138pt;}
.ycc{bottom:325.907352pt;}
.y17f{bottom:327.094799pt;}
.y254{bottom:327.796799pt;}
.y22{bottom:329.397605pt;}
.y200{bottom:331.494660pt;}
.y2a3{bottom:333.930656pt;}
.y66{bottom:335.164935pt;}
.y12b{bottom:335.217714pt;}
.yf4{bottom:337.760132pt;}
.yb9{bottom:338.712138pt;}
.y253{bottom:339.126799pt;}
.ycb{bottom:339.239352pt;}
.y17e{bottom:340.436132pt;}
.y1b0{bottom:342.694530pt;}
.y21{bottom:342.729605pt;}
.y1ff{bottom:344.827993pt;}
.y2a2{bottom:345.260656pt;}
.y65{bottom:348.496935pt;}
.y12a{bottom:348.549714pt;}
.y252{bottom:350.456799pt;}
.yca{bottom:352.571352pt;}
.y17d{bottom:353.768132pt;}
.y1af{bottom:356.039863pt;}
.y20{bottom:356.064271pt;}
.y2a1{bottom:356.590656pt;}
.y1fe{bottom:358.165327pt;}
.y251{bottom:361.786799pt;}
.y64{bottom:361.828935pt;}
.y129{bottom:361.884381pt;}
.yc9{bottom:365.903352pt;}
.y17c{bottom:367.100132pt;}
.yf3{bottom:367.105465pt;}
.y2a0{bottom:367.920656pt;}
.y1ae{bottom:369.371863pt;}
.y1f{bottom:369.396271pt;}
.y1fd{bottom:371.497327pt;}
.y250{bottom:373.116799pt;}
.y63{bottom:375.160935pt;}
.y128{bottom:375.216381pt;}
.yc8{bottom:379.239352pt;}
.y29f{bottom:379.250656pt;}
.y17b{bottom:380.432132pt;}
.yf2{bottom:380.437465pt;}
.y1ad{bottom:382.703863pt;}
.y1e{bottom:382.730938pt;}
.y24f{bottom:384.446799pt;}
.y1fc{bottom:384.829327pt;}
.y62{bottom:388.492935pt;}
.y127{bottom:388.551047pt;}
.y29e{bottom:390.580656pt;}
.yc7{bottom:392.571352pt;}
.y17a{bottom:393.764132pt;}
.yf1{bottom:393.769465pt;}
.y24e{bottom:395.776799pt;}
.y1ac{bottom:396.035863pt;}
.y1d{bottom:396.062938pt;}
.y1fb{bottom:398.161327pt;}
.y61{bottom:401.824935pt;}
.y126{bottom:401.883047pt;}
.y29d{bottom:401.910656pt;}
.yc6{bottom:405.903352pt;}
.y179{bottom:407.096132pt;}
.yf0{bottom:407.101465pt;}
.y24d{bottom:407.106799pt;}
.y1ab{bottom:409.367863pt;}
.y1c{bottom:409.400271pt;}
.y1fa{bottom:411.493327pt;}
.y29c{bottom:413.240656pt;}
.y2da{bottom:413.255328pt;}
.y60{bottom:415.156935pt;}
.y125{bottom:415.219047pt;}
.y24c{bottom:418.436799pt;}
.yc5{bottom:419.238018pt;}
.y178{bottom:420.428132pt;}
.yef{bottom:420.433465pt;}
.y1aa{bottom:422.699863pt;}
.y1b{bottom:422.732271pt;}
.y29b{bottom:424.570656pt;}
.y5f{bottom:428.488935pt;}
.y124{bottom:428.551047pt;}
.y24b{bottom:429.766799pt;}
.yc4{bottom:432.570018pt;}
.yee{bottom:433.765465pt;}
.y177{bottom:433.772132pt;}
.y29a{bottom:435.900656pt;}
.y1a9{bottom:436.031863pt;}
.y1a{bottom:436.064271pt;}
.y2d9{bottom:439.919327pt;}
.y1f9{bottom:440.833327pt;}
.y24a{bottom:441.096799pt;}
.y5e{bottom:441.820935pt;}
.y123{bottom:441.883047pt;}
.yc3{bottom:445.907352pt;}
.yed{bottom:447.097465pt;}
.y176{bottom:447.104132pt;}
.y299{bottom:447.230656pt;}
.y1a8{bottom:449.363863pt;}
.y19{bottom:449.396271pt;}
.y249{bottom:452.426799pt;}
.y2d8{bottom:453.251327pt;}
.y1f8{bottom:454.165327pt;}
.y5d{bottom:455.152935pt;}
.y122{bottom:455.215047pt;}
.y298{bottom:458.560656pt;}
.yc2{bottom:459.239352pt;}
.yec{bottom:460.429465pt;}
.y175{bottom:460.436132pt;}
.y1a7{bottom:462.695863pt;}
.y18{bottom:462.729605pt;}
.y248{bottom:463.760132pt;}
.y2d7{bottom:466.583327pt;}
.y1f7{bottom:467.497327pt;}
.y5c{bottom:468.484935pt;}
.y297{bottom:469.890656pt;}
.yc1{bottom:472.571352pt;}
.yeb{bottom:473.761465pt;}
.y174{bottom:473.768132pt;}
.y1a6{bottom:476.027863pt;}
.y17{bottom:476.062938pt;}
.y2d6{bottom:479.915327pt;}
.y1f6{bottom:480.829327pt;}
.y296{bottom:481.220656pt;}
.y5b{bottom:481.816935pt;}
.y14e{bottom:483.522022pt;}
.yc0{bottom:485.903352pt;}
.yea{bottom:487.093465pt;}
.y173{bottom:487.100132pt;}
.y1a5{bottom:489.363863pt;}
.y16{bottom:489.409613pt;}
.y295{bottom:492.550656pt;}
.y2d5{bottom:493.247327pt;}
.y1f5{bottom:494.161327pt;}
.y14c{bottom:499.108689pt;}
.ybf{bottom:499.235352pt;}
.y172{bottom:500.432132pt;}
.y1a4{bottom:502.695863pt;}
.y15{bottom:502.741613pt;}
.y294{bottom:503.893989pt;}
.y2d4{bottom:506.579327pt;}
.y1f4{bottom:507.500132pt;}
.y247{bottom:507.760132pt;}
.y5a{bottom:511.159602pt;}
.y171{bottom:513.764132pt;}
.y14d{bottom:514.695355pt;}
.y293{bottom:515.223989pt;}
.y1a3{bottom:516.027863pt;}
.y2d3{bottom:519.911327pt;}
.y1f3{bottom:520.832132pt;}
.y112{bottom:523.176138pt;}
.y59{bottom:524.491602pt;}
.y292{bottom:526.553989pt;}
.y170{bottom:527.096132pt;}
.y1a2{bottom:529.359863pt;}
.y14b{bottom:530.282022pt;}
.y2d2{bottom:533.243327pt;}
.y111{bottom:536.509471pt;}
.y58{bottom:537.823602pt;}
.y291{bottom:537.883989pt;}
.y16f{bottom:540.428132pt;}
.y21e{bottom:540.826660pt;}
.y145{bottom:540.875355pt;}
.y14{bottom:542.869613pt;}
.y225{bottom:543.534667pt;}
.ye8{bottom:544.838792pt;}
.y222{bottom:545.159993pt;}
.y149{bottom:545.868689pt;}
.y246{bottom:547.762799pt;}
.y290{bottom:549.337363pt;}
.y110{bottom:549.842805pt;}
.y144{bottom:550.871355pt;}
.y57{bottom:551.155602pt;}
.y2d1{bottom:553.234116pt;}
.y16e{bottom:553.782839pt;}
.y21d{bottom:554.064819pt;}
.y227{bottom:554.718547pt;}
.y13{bottom:557.533613pt;}
.ye7{bottom:558.170792pt;}
.y220{bottom:559.662923pt;}
.y28f{bottom:560.667363pt;}
.y245{bottom:561.094799pt;}
.y14a{bottom:561.455355pt;}
.y221{bottom:563.136468pt;}
.y10f{bottom:563.177471pt;}
.y56{bottom:564.487602pt;}
.y1da{bottom:565.359985pt;}
.y2d0{bottom:566.566116pt;}
.y16d{bottom:567.114839pt;}
.y228{bottom:570.150920pt;}
.y1e1{bottom:570.919881pt;}
.ye6{bottom:571.502792pt;}
.y28e{bottom:571.997363pt;}
.y12{bottom:572.197613pt;}
.y244{bottom:574.430799pt;}
.y10e{bottom:576.509471pt;}
.y148{bottom:577.042022pt;}
.y55{bottom:577.819602pt;}
.y1dc{bottom:578.146525pt;}
.y1d9{bottom:579.197998pt;}
.y16c{bottom:580.446839pt;}
.y28d{bottom:583.327363pt;}
.ye5{bottom:584.834792pt;}
.y2cf{bottom:586.570116pt;}
.y11{bottom:586.880239pt;}
.y1df{bottom:586.942261pt;}
.y243{bottom:587.762799pt;}
.y10d{bottom:589.846805pt;}
.y54{bottom:591.151602pt;}
.y146{bottom:592.628689pt;}
.y16b{bottom:593.778839pt;}
.y28c{bottom:594.657363pt;}
.y21b{bottom:596.026652pt;}
.ye4{bottom:598.166792pt;}
.y21a{bottom:598.731486pt;}
.y1dd{bottom:599.411811pt;}
.y242{bottom:601.094799pt;}
.y10{bottom:601.544239pt;}
.y10c{bottom:603.178805pt;}
.y53{bottom:604.486269pt;}
.y92{bottom:605.884381pt;}
.y28b{bottom:605.987363pt;}
.y2ce{bottom:606.574116pt;}
.y16a{bottom:607.110839pt;}
.y147{bottom:608.215355pt;}
.ye3{bottom:611.498792pt;}
.y241{bottom:614.434839pt;}
.yf{bottom:616.208239pt;}
.y10b{bottom:616.510805pt;}
.y28a{bottom:617.317363pt;}
.y52{bottom:617.818269pt;}
.y91{bottom:619.216381pt;}
.y169{bottom:620.442839pt;}
.y1cd{bottom:621.760010pt;}
.y143{bottom:623.802022pt;}
.y1d6{bottom:623.998820pt;}
.ye2{bottom:624.830792pt;}
.y2cd{bottom:626.578116pt;}
.y1d7{bottom:627.454549pt;}
.y240{bottom:627.766839pt;}
.y289{bottom:628.647363pt;}
.y10a{bottom:629.842805pt;}
.y214{bottom:630.159993pt;}
.ye{bottom:630.872239pt;}
.y51{bottom:631.152935pt;}
.y90{bottom:632.553755pt;}
.y1d4{bottom:632.938517pt;}
.y218{bottom:633.346680pt;}
.y168{bottom:633.774839pt;}
.y1cf{bottom:634.054403pt;}
.y213{bottom:634.266660pt;}
.y1cc{bottom:636.197998pt;}
.ye1{bottom:638.162792pt;}
.y216{bottom:638.302409pt;}
.y141{bottom:639.388689pt;}
.y2cc{bottom:639.910116pt;}
.y288{bottom:639.977363pt;}
.y23f{bottom:641.098839pt;}
.y109{bottom:643.174805pt;}
.y50{bottom:644.484935pt;}
.y1d2{bottom:644.542277pt;}
.yd{bottom:645.536239pt;}
.y8f{bottom:645.885755pt;}
.y167{bottom:647.106839pt;}
.y287{bottom:651.307363pt;}
.ye0{bottom:651.494792pt;}
.y2cb{bottom:653.243449pt;}
.y23e{bottom:654.430839pt;}
.y142{bottom:654.975355pt;}
.y1d0{bottom:657.011949pt;}
.y4f{bottom:657.816935pt;}
.y8e{bottom:659.217755pt;}
.yc{bottom:660.200239pt;}
.y1f2{bottom:660.428132pt;}
.y166{bottom:660.438839pt;}
.y286{bottom:662.637363pt;}
.y23d{bottom:667.762839pt;}
.y140{bottom:670.562022pt;}
.y4e{bottom:671.150269pt;}
.y8d{bottom:672.549755pt;}
.y1f1{bottom:673.765506pt;}
.y165{bottom:673.770839pt;}
.y285{bottom:673.967363pt;}
.yb{bottom:674.864239pt;}
.y1c5{bottom:679.359985pt;}
.y2ca{bottom:679.910116pt;}
.y23c{bottom:681.094839pt;}
.y1ca{bottom:681.634684pt;}
.y1c7{bottom:681.694539pt;}
.y1c4{bottom:682.203862pt;}
.y1c9{bottom:685.186686pt;}
.y284{bottom:685.297363pt;}
.y8c{bottom:685.883088pt;}
.y13b{bottom:686.148689pt;}
.y1f0{bottom:687.097506pt;}
.y164{bottom:687.102839pt;}
.ya{bottom:689.528239pt;}
.y2c9{bottom:693.243490pt;}
.y23b{bottom:694.432173pt;}
.y283{bottom:696.627363pt;}
.y8b{bottom:699.217755pt;}
.y1ef{bottom:700.429506pt;}
.y163{bottom:700.434839pt;}
.y4d{bottom:700.484895pt;}
.y13f{bottom:701.735355pt;}
.y1a1{bottom:707.098839pt;}
.y23a{bottom:707.764173pt;}
.y282{bottom:707.957363pt;}
.y8a{bottom:712.549755pt;}
.y1ee{bottom:713.761506pt;}
.y162{bottom:713.766839pt;}
.y4c{bottom:713.828895pt;}
.y9{bottom:716.194906pt;}
.y13e{bottom:717.322022pt;}
.y281{bottom:719.287363pt;}
.y1a0{bottom:720.430839pt;}
.y239{bottom:721.096173pt;}
.y2c8{bottom:721.216697pt;}
.y89{bottom:725.881755pt;}
.y161{bottom:727.098839pt;}
.y4b{bottom:727.160895pt;}
.y280{bottom:730.617363pt;}
.y8{bottom:732.194906pt;}
.y13c{bottom:732.908689pt;}
.y19f{bottom:733.762839pt;}
.y238{bottom:734.428173pt;}
.y2c7{bottom:734.548697pt;}
.y160{bottom:740.430839pt;}
.y4a{bottom:740.492895pt;}
.y27f{bottom:741.947363pt;}
.y19e{bottom:747.094839pt;}
.y237{bottom:747.765506pt;}
.y2c6{bottom:747.880697pt;}
.y13d{bottom:748.495355pt;}
.y27e{bottom:753.277363pt;}
.y15f{bottom:753.762839pt;}
.y49{bottom:753.824895pt;}
.yb8{bottom:754.071368pt;}
.y19d{bottom:760.432173pt;}
.y236{bottom:761.097506pt;}
.y2c5{bottom:761.214030pt;}
.y7{bottom:761.517572pt;}
.y13a{bottom:764.072689pt;}
.y27d{bottom:764.607363pt;}
.yb5{bottom:764.655368pt;}
.y15e{bottom:767.094839pt;}
.y48{bottom:767.156895pt;}
.yb7{bottom:769.658035pt;}
.y19c{bottom:773.764173pt;}
.y235{bottom:774.429506pt;}
.yb4{bottom:774.651368pt;}
.y27c{bottom:775.937363pt;}
.y138{bottom:779.659355pt;}
.y1ed{bottom:780.430839pt;}
.y15d{bottom:780.441506pt;}
.y47{bottom:780.488895pt;}
.yb6{bottom:785.244701pt;}
.y19b{bottom:787.096173pt;}
.y27b{bottom:787.267363pt;}
.y234{bottom:787.761506pt;}
.y2c4{bottom:787.884697pt;}
.y1ec{bottom:793.762839pt;}
.y15c{bottom:793.773506pt;}
.y46{bottom:793.820895pt;}
.y139{bottom:795.246022pt;}
.y27a{bottom:798.597363pt;}
.y19a{bottom:800.428173pt;}
.yb3{bottom:800.822035pt;}
.y233{bottom:801.093506pt;}
.y2c3{bottom:801.216697pt;}
.y6{bottom:801.522906pt;}
.y1eb{bottom:807.094839pt;}
.y15b{bottom:807.105506pt;}
.y45{bottom:807.152895pt;}
.y279{bottom:809.927363pt;}
.y137{bottom:810.832689pt;}
.y199{bottom:813.764173pt;}
.y2c2{bottom:814.548697pt;}
.yb1{bottom:816.408701pt;}
.y15a{bottom:820.437506pt;}
.y1ea{bottom:820.441506pt;}
.y44{bottom:820.484895pt;}
.y278{bottom:821.257363pt;}
.y132{bottom:826.419355pt;}
.y198{bottom:827.096173pt;}
.y2c1{bottom:827.880697pt;}
.y232{bottom:830.430839pt;}
.yb2{bottom:831.995368pt;}
.y277{bottom:832.587363pt;}
.y159{bottom:833.769506pt;}
.y1e9{bottom:833.773506pt;}
.y43{bottom:833.819561pt;}
.y197{bottom:840.428173pt;}
.y2c0{bottom:841.214030pt;}
.y5{bottom:841.528239pt;}
.y136{bottom:842.006022pt;}
.y231{bottom:843.762839pt;}
.y276{bottom:843.917363pt;}
.y158{bottom:847.101506pt;}
.y1e8{bottom:847.105506pt;}
.y42{bottom:847.151561pt;}
.yb0{bottom:847.582035pt;}
.y2e{bottom:848.326009pt;}
.y275{bottom:855.247363pt;}
.y230{bottom:857.094839pt;}
.y135{bottom:857.592689pt;}
.y157{bottom:860.433506pt;}
.y1e7{bottom:860.437506pt;}
.y41{bottom:860.486228pt;}
.yae{bottom:863.168701pt;}
.y274{bottom:866.577363pt;}
.y2bf{bottom:867.883363pt;}
.y22f{bottom:870.426839pt;}
.y196{bottom:870.428173pt;}
.y133{bottom:873.179355pt;}
.y156{bottom:873.765506pt;}
.y1e6{bottom:873.769506pt;}
.y40{bottom:873.818228pt;}
.y273{bottom:877.907363pt;}
.yaf{bottom:878.755368pt;}
.y2be{bottom:881.215363pt;}
.y195{bottom:884.559977pt;}
.y155{bottom:887.097506pt;}
.y1e5{bottom:887.101506pt;}
.y3f{bottom:887.152895pt;}
.y134{bottom:888.766022pt;}
.y272{bottom:889.237363pt;}
.y93{bottom:894.339355pt;}
.yad{bottom:894.347355pt;}
.y9f{bottom:894.349848pt;}
.ya2{bottom:894.359180pt;}
.ya4{bottom:894.368514pt;}
.ya7{bottom:894.377846pt;}
.yaa{bottom:894.387178pt;}
.y2bd{bottom:894.547363pt;}
.y194{bottom:897.094839pt;}
.y22e{bottom:900.428173pt;}
.y154{bottom:900.429506pt;}
.y1e4{bottom:900.433506pt;}
.y3e{bottom:900.484895pt;}
.y271{bottom:900.567363pt;}
.yac{bottom:904.343355pt;}
.y9e{bottom:904.345848pt;}
.y12f{bottom:904.353848pt;}
.ya1{bottom:904.355180pt;}
.ya6{bottom:904.373846pt;}
.ya9{bottom:904.383178pt;}
.y2bc{bottom:907.880697pt;}
.ya3{bottom:909.945847pt;}
.y193{bottom:911.226644pt;}
.y270{bottom:911.897363pt;}
.y153{bottom:913.761506pt;}
.y22d{bottom:913.762839pt;}
.y1e3{bottom:913.765506pt;}
.y3d{bottom:913.819561pt;}
.y130{bottom:914.339355pt;}
.y9d{bottom:914.341848pt;}
.y12e{bottom:914.349848pt;}
.ya0{bottom:914.351180pt;}
.ya5{bottom:914.369846pt;}
.ya8{bottom:914.379178pt;}
.yab{bottom:914.388511pt;}
.y26f{bottom:923.227363pt;}
.y12d{bottom:924.345848pt;}
.y192{bottom:924.559977pt;}
.y22c{bottom:927.094839pt;}
.y152{bottom:927.097506pt;}
.y3c{bottom:927.151561pt;}
.y131{bottom:929.926022pt;}
.y26e{bottom:934.557363pt;}
.y98{bottom:935.517847pt;}
.y95{bottom:935.518020pt;}
.y9c{bottom:935.521847pt;}
.y151{bottom:940.429506pt;}
.y3b{bottom:940.484895pt;}
.y22b{bottom:941.226644pt;}
.y97{bottom:945.513847pt;}
.y94{bottom:945.514020pt;}
.y9b{bottom:945.517847pt;}
.y26d{bottom:945.887363pt;}
.y150{bottom:953.761506pt;}
.y3a{bottom:953.818228pt;}
.y96{bottom:955.509847pt;}
.y9a{bottom:955.513847pt;}
.y26c{bottom:957.217363pt;}
.y99{bottom:965.509847pt;}
.y14f{bottom:967.093506pt;}
.y39{bottom:967.150228pt;}
.y26b{bottom:968.547363pt;}
.y7a{bottom:1013.902507pt;}
.ybe{bottom:1013.996908pt;}
.y38{bottom:1013.997070pt;}
.y4{bottom:1015.042236pt;}
.h3f{height:0.000000pt;}
.h51{height:1.921323pt;}
.h4d{height:14.133333pt;}
.h37{height:14.400000pt;}
.h4b{height:16.934667pt;}
.h3b{height:17.436003pt;}
.hf{height:21.193555pt;}
.h54{height:21.282453pt;}
.h4c{height:21.662913pt;}
.h39{height:25.553546pt;}
.h3a{height:25.991607pt;}
.h2{height:30.687500pt;}
.h3e{height:31.404590pt;}
.h56{height:31.476562pt;}
.h45{height:32.470352pt;}
.h11{height:32.605469pt;}
.h3d{height:33.623146pt;}
.h38{height:34.199543pt;}
.h8{height:34.523438pt;}
.h4f{height:35.199999pt;}
.h42{height:36.401333pt;}
.h1e{height:36.922667pt;}
.h12{height:37.017547pt;}
.h10{height:37.038880pt;}
.h3c{height:37.601333pt;}
.h1c{height:38.229333pt;}
.h57{height:39.560000pt;}
.h59{height:40.080000pt;}
.h5a{height:40.466504pt;}
.h3{height:40.604167pt;}
.h58{height:40.960000pt;}
.h43{height:41.399087pt;}
.h17{height:42.195312pt;}
.h50{height:42.955428pt;}
.h7{height:43.600260pt;}
.h46{height:43.654530pt;}
.h6{height:43.718750pt;}
.h13{height:43.887578pt;}
.h52{height:44.069514pt;}
.h49{height:44.271967pt;}
.h4a{height:44.272008pt;}
.h30{height:44.272781pt;}
.h5b{height:44.834667pt;}
.h4e{height:45.814524pt;}
.h53{height:46.392166pt;}
.h41{height:46.438940pt;}
.h40{height:47.448179pt;}
.h9{height:47.472000pt;}
.h2c{height:47.565938pt;}
.h2b{height:47.597938pt;}
.ha{height:47.598068pt;}
.h33{height:47.603434pt;}
.h2d{height:47.608767pt;}
.h16{height:47.608930pt;}
.h2e{height:47.619434pt;}
.h34{height:47.619515pt;}
.h55{height:47.624605pt;}
.h22{height:47.624767pt;}
.h2f{height:47.630139pt;}
.h1b{height:47.634783pt;}
.h47{height:47.635271pt;}
.hc{height:47.635434pt;}
.h25{height:47.635475pt;}
.h20{height:47.640116pt;}
.h26{height:47.640279pt;}
.h2a{height:47.640605pt;}
.h32{height:47.640767pt;}
.h36{height:47.640808pt;}
.h1f{height:47.645450pt;}
.h27{height:47.645613pt;}
.h28{height:47.645694pt;}
.h19{height:47.645938pt;}
.hd{height:47.646101pt;}
.h24{height:47.646139pt;}
.h48{height:47.646182pt;}
.h15{height:47.646264pt;}
.h1a{height:47.651271pt;}
.hb{height:47.651434pt;}
.h23{height:47.651473pt;}
.h35{height:47.651515pt;}
.h14{height:47.651597pt;}
.h29{height:47.656605pt;}
.h21{height:47.656767pt;}
.h44{height:48.024087pt;}
.h31{height:48.096000pt;}
.h18{height:49.152000pt;}
.h4{height:50.755208pt;}
.he{height:69.046875pt;}
.h1d{height:78.213333pt;}
.h5{height:99.734375pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w6{width:104.213338pt;}
.w5{width:135.960002pt;}
.w2{width:251.893331pt;}
.w4{width:287.653341pt;}
.w3{width:306.519999pt;}
.w7{width:358.680013pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:1.709839pt;}
.x8{left:6.425200pt;}
.x44{left:44.322957pt;}
.x3{left:54.803202pt;}
.xa{left:58.991999pt;}
.x46{left:75.655233pt;}
.x47{left:78.907227pt;}
.x20{left:83.905884pt;}
.x22{left:90.446004pt;}
.x49{left:93.895223pt;}
.x24{left:110.989746pt;}
.x4a{left:119.171023pt;}
.x50{left:123.660522pt;}
.x7{left:125.685069pt;}
.x32{left:131.047201pt;}
.xb{left:137.037333pt;}
.x13{left:143.539733pt;}
.x35{left:150.259196pt;}
.x3c{left:156.587219pt;}
.x26{left:159.157878pt;}
.x27{left:165.697998pt;}
.x52{left:174.936523pt;}
.x29{left:184.909465pt;}
.x40{left:202.379089pt;}
.x5{left:207.874003pt;}
.xc{left:216.067729pt;}
.x6{left:223.869680pt;}
.x1c{left:225.448792pt;}
.x14{left:228.099733pt;}
.x36{left:233.983073pt;}
.x54{left:240.264689pt;}
.x2b{left:241.753866pt;}
.x2d{left:248.293905pt;}
.x57{left:258.960409pt;}
.x5a{left:268.887736pt;}
.x3e{left:283.150655pt;}
.x38{left:289.987183pt;}
.xd{left:294.645059pt;}
.x4d{left:307.749858pt;}
.x15{left:311.631205pt;}
.x2e{left:320.126668pt;}
.x39{left:329.559998pt;}
.x3a{left:345.110921pt;}
.x1e{left:347.439982pt;}
.xf{left:356.072499pt;}
.x18{left:379.328269pt;}
.x4f{left:402.117879pt;}
.x42{left:405.405314pt;}
.x43{left:415.960653pt;}
.x2f{left:417.717611pt;}
.x4b{left:421.278687pt;}
.x51{left:423.214152pt;}
.x1f{left:429.269857pt;}
.x10{left:434.005833pt;}
.x21{left:435.810018pt;}
.x23{left:445.721883pt;}
.x19{left:450.270934pt;}
.x4e{left:451.433050pt;}
.x45{left:454.648519pt;}
.x33{left:463.845744pt;}
.x30{left:466.049793pt;}
.x34{left:468.309855pt;}
.x3b{left:473.473029pt;}
.x31{left:478.725871pt;}
.x53{left:482.121867pt;}
.x3d{left:486.147217pt;}
.x48{left:493.288656pt;}
.x3f{left:499.539185pt;}
.x25{left:504.521851pt;}
.x16{left:509.884115pt;}
.x11{left:511.052499pt;}
.x28{left:520.313599pt;}
.x4{left:521.612549pt;}
.x55{left:541.414144pt;}
.x56{left:545.889608pt;}
.x58{left:558.057861pt;}
.x37{left:560.133748pt;}
.x1a{left:571.053599pt;}
.x41{left:576.243205pt;}
.x2a{left:587.117716pt;}
.x12{left:588.649833pt;}
.x2c{left:593.657878pt;}
.x17{left:626.513346pt;}
.xe{left:665.537882pt;}
.x1b{left:687.673598pt;}
.x9{left:708.791829pt;}
.x2{left:710.134766pt;}
.x1d{left:724.838011pt;}
.x59{left:727.865560pt;}
.x1{left:733.334391pt;}
}




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