
    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_5dcedda49a3974b1d10311bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_01bb2134fa171f637a1b18a7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_d13ebcd5f369ae77c912d3c1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;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_c21a657ba9c3a719b02bde04.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_cd9f7727dd754b39f2f2433a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_6a19e6dd543cdd85357a211b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_de5f7a23061e7f788d2aaaef.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_7d62f408d325e0191fa45ba7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910645;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_46659d8a30c1c309de18c029.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.695312;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_4b9219704bc50c8b78ccb31d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;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_0384633c5272ccb5b44f90cc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.861816;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_0fe6f9bff9dce3ca37d9bcbc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.904297;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_a744baa110c4fecaba7fe764.woff2')format("woff");}.fff{font-family:fff;line-height:1.432129;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_4aea134a9d36c9a420e485db.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.694824;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_45eb1ddbf8e5286ffbc1d131.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895996;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_ee5403df7d67d1fc7bf6856c.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.895996;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_0ead9c9bb49750b108521366.woff2')format("woff");}.ff13{font-family:ff13;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;}
@font-face{font-family:ff14;src:url('chunks/assets/font_0fe0022ca0872c851a9d2ca5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.762207;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_ddb602806b19f934f876b123.woff2')format("woff");}.ff15{font-family:ff15;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;}
@font-face{font-family:ff16;src:url('chunks/assets/font_28c2ce06a44156c23bf8383f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.684000;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_c5966cd5ce06491f5864c77a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.688477;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_442ca9a36afc0ad356a962c1.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m7{transform:matrix(0.160570,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160570,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160570,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.161379,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161379,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161379,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.190686,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.190686,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.190686,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.194901,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.194901,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.194901,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.224163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224163,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.231822,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.231822,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.231822,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.244126,0.000000,-0.081367,0.236388,0,0);-ms-transform:matrix(0.244126,0.000000,-0.081367,0.236388,0,0);-webkit-transform:matrix(0.244126,0.000000,-0.081367,0.236388,0,0);}
.m9{transform:matrix(0.246514,0.000000,-0.082163,0.236113,0,0);-ms-transform:matrix(0.246514,0.000000,-0.082163,0.236113,0,0);-webkit-transform:matrix(0.246514,0.000000,-0.082163,0.236113,0,0);}
.m4{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.258183,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.258183,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.258183,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.261013,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261013,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261013,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.274987,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.274987,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.274987,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.280380,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.280380,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);}
.v3{vertical-align:-83.520000px;}
.v2{vertical-align:-33.120000px;}
.v7{vertical-align:-18.163402px;}
.v4{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:9.360000px;}
.v6{vertical-align:18.163402px;}
.v8{vertical-align:33.120000px;}
.v1{vertical-align:38.880000px;}
.lsd{letter-spacing:-1.440000px;}
.ls23{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.414600px;}
.ls5{letter-spacing:-0.288000px;}
.ls22{letter-spacing:-0.273181px;}
.ls6{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls25{letter-spacing:-0.058555px;}
.ls3{letter-spacing:-0.037440px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.072000px;}
.ls28{letter-spacing:0.131016px;}
.ls4{letter-spacing:0.144000px;}
.ls2c{letter-spacing:0.165850px;}
.ls2a{letter-spacing:0.168912px;}
.lsf{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.216000px;}
.ls1a{letter-spacing:0.256202px;}
.ls15{letter-spacing:0.269280px;}
.ls1c{letter-spacing:0.269400px;}
.ls1d{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.396000px;}
.ls7{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.720000px;}
.ls24{letter-spacing:0.792000px;}
.lsb{letter-spacing:1.440000px;}
.ls16{letter-spacing:3.600000px;}
.ls2d{letter-spacing:5.040000px;}
.ls2{letter-spacing:5.760000px;}
.ls27{letter-spacing:7.200000px;}
.ls19{letter-spacing:9.540000px;}
.ls1e{letter-spacing:10.020000px;}
.ls18{letter-spacing:10.080000px;}
.ls11{letter-spacing:10.800000px;}
.ls14{letter-spacing:12.032715px;}
.ls2e{letter-spacing:13.680000px;}
.ls10{letter-spacing:17.280000px;}
.ls26{letter-spacing:28.800000px;}
.ls21{letter-spacing:98.547907px;}
.ls9{letter-spacing:148.836000px;}
.ls20{letter-spacing:582.358473px;}
.ls1f{letter-spacing:695.817494px;}
.ls29{letter-spacing:704.702277px;}
.ls2b{letter-spacing:758.320437px;}
.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;}
}
.ws15{word-spacing:-72.235530px;}
.ws19{word-spacing:-41.989800px;}
.ws1a{word-spacing:-41.780068px;}
.ws7{word-spacing:-19.440000px;}
.ws1c{word-spacing:-18.792000px;}
.ws2{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws14{word-spacing:-18.058883px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws1b{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws9{word-spacing:-16.560000px;}
.ws80{word-spacing:-15.416784px;}
.wsf{word-spacing:-14.970334px;}
.wsa{word-spacing:-14.940000px;}
.ws38{word-spacing:-13.560225px;}
.ws1{word-spacing:-13.500000px;}
.ws91{word-spacing:-12.329400px;}
.ws11{word-spacing:-12.060000px;}
.ws18{word-spacing:-10.548547px;}
.ws87{word-spacing:-10.542739px;}
.ws39{word-spacing:-9.869847px;}
.ws57{word-spacing:-9.690932px;}
.ws0{word-spacing:0.000000px;}
.ws74{word-spacing:98.153524px;}
.ws72{word-spacing:98.204913px;}
.ws8b{word-spacing:108.871325px;}
.ws84{word-spacing:108.887551px;}
.ws88{word-spacing:108.998090px;}
.ws82{word-spacing:109.014316px;}
.ws13{word-spacing:110.781319px;}
.ws83{word-spacing:111.913670px;}
.ws85{word-spacing:111.998180px;}
.ws86{word-spacing:112.040435px;}
.ws73{word-spacing:112.850858px;}
.ws76{word-spacing:113.467529px;}
.ws7d{word-spacing:113.570307px;}
.ws79{word-spacing:113.621697px;}
.ws8a{word-spacing:126.111280px;}
.ws8d{word-spacing:126.195789px;}
.ws8c{word-spacing:126.238044px;}
.ws75{word-spacing:128.267641px;}
.ws78{word-spacing:128.370420px;}
.ws77{word-spacing:128.421809px;}
.ws7f{word-spacing:128.884313px;}
.ws66{word-spacing:137.454759px;}
.ws6f{word-spacing:138.017795px;}
.ws2f{word-spacing:140.967643px;}
.ws2d{word-spacing:141.087644px;}
.ws2b{word-spacing:141.268370px;}
.ws7a{word-spacing:143.684425px;}
.ws7b{word-spacing:143.838593px;}
.ws36{word-spacing:148.428730px;}
.ws54{word-spacing:148.451198px;}
.ws37{word-spacing:149.101513px;}
.ws31{word-spacing:149.161755px;}
.ws6e{word-spacing:150.490350px;}
.ws29{word-spacing:156.207173px;}
.ws65{word-spacing:158.851995px;}
.ws51{word-spacing:158.901121px;}
.ws49{word-spacing:159.019795px;}
.ws63{word-spacing:161.253288px;}
.ws2e{word-spacing:163.498137px;}
.ws32{word-spacing:163.609705px;}
.ws34{word-spacing:163.730189px;}
.ws35{word-spacing:163.790431px;}
.ws33{word-spacing:164.220559px;}
.ws2c{word-spacing:164.332609px;}
.ws6c{word-spacing:165.362333px;}
.ws68{word-spacing:165.377248px;}
.ws3e{word-spacing:165.650327px;}
.ws12{word-spacing:169.366492px;}
.ws60{word-spacing:169.572053px;}
.ws5c{word-spacing:169.614933px;}
.ws46{word-spacing:169.981439px;}
.ws48{word-spacing:172.177376px;}
.ws52{word-spacing:172.256492px;}
.ws45{word-spacing:172.296050px;}
.ws23{word-spacing:178.617183px;}
.ws26{word-spacing:178.737667px;}
.ws28{word-spacing:178.797909px;}
.ws27{word-spacing:179.513584px;}
.ws24{word-spacing:179.634068px;}
.ws1e{word-spacing:179.694310px;}
.ws5a{word-spacing:180.297704px;}
.ws50{word-spacing:180.855740px;}
.ws64{word-spacing:182.650524px;}
.ws5e{word-spacing:186.903124px;}
.ws6d{word-spacing:191.051010px;}
.ws4b{word-spacing:191.698711px;}
.ws4e{word-spacing:191.773713px;}
.ws67{word-spacing:193.370582px;}
.ws62{word-spacing:193.452303px;}
.ws71{word-spacing:193.614249px;}
.ws1f{word-spacing:193.798159px;}
.ws21{word-spacing:193.918642px;}
.ws22{word-spacing:193.978884px;}
.ws20{word-spacing:194.694559px;}
.ws1d{word-spacing:199.136078px;}
.ws61{word-spacing:201.697426px;}
.ws5b{word-spacing:201.775108px;}
.ws3c{word-spacing:202.691685px;}
.ws4a{word-spacing:202.735357px;}
.ws47{word-spacing:205.093639px;}
.ws6a{word-spacing:208.300360px;}
.ws70{word-spacing:213.944160px;}
.ws40{word-spacing:220.211708px;}
.ws43{word-spacing:224.527630px;}
.ws7c{word-spacing:234.006223px;}
.ws56{word-spacing:236.921349px;}
.ws58{word-spacing:237.108419px;}
.ws44{word-spacing:237.685211px;}
.ws41{word-spacing:237.764327px;}
.ws3d{word-spacing:237.803885px;}
.wsb{word-spacing:260.273294px;}
.ws3a{word-spacing:260.513268px;}
.wsc{word-spacing:284.415893px;}
.ws7e{word-spacing:421.289313px;}
.wsd{word-spacing:452.830422px;}
.ws90{word-spacing:455.298404px;}
.ws4d{word-spacing:489.847970px;}
.wse{word-spacing:519.317050px;}
.ws81{word-spacing:523.173118px;}
.ws8f{word-spacing:524.339350px;}
.ws10{word-spacing:536.389437px;}
.ws25{word-spacing:537.908693px;}
.ws6b{word-spacing:546.803438px;}
.ws8e{word-spacing:556.480710px;}
.ws89{word-spacing:570.102302px;}
.ws4c{word-spacing:576.318313px;}
.ws2a{word-spacing:580.419761px;}
.ws3b{word-spacing:586.144488px;}
.ws42{word-spacing:606.408245px;}
.ws4f{word-spacing:610.950122px;}
.ws3f{word-spacing:619.160437px;}
.ws59{word-spacing:619.914234px;}
.ws55{word-spacing:632.280992px;}
.ws53{word-spacing:634.202555px;}
.ws30{word-spacing:639.256882px;}
.ws69{word-spacing:642.426356px;}
.ws5f{word-spacing:650.530720px;}
.ws5d{word-spacing:663.051748px;}
.ws16{word-spacing:828.557660px;}
.ws17{word-spacing:1069.384842px;}
._35{margin-left:-625.937433px;}
._3b{margin-left:-513.981318px;}
._33{margin-left:-502.186698px;}
._3c{margin-left:-458.739269px;}
._3d{margin-left:-359.162708px;}
._43{margin-left:-353.475688px;}
._41{margin-left:-281.933133px;}
._45{margin-left:-255.933801px;}
._46{margin-left:-244.203153px;}
._48{margin-left:-240.090286px;}
._36{margin-left:-238.043001px;}
._44{margin-left:-221.444968px;}
._38{margin-left:-218.914588px;}
._39{margin-left:-202.300359px;}
._3f{margin-left:-182.060087px;}
._40{margin-left:-168.365340px;}
._34{margin-left:-165.128601px;}
._3e{margin-left:-156.586184px;}
._42{margin-left:-132.456613px;}
._3a{margin-left:-108.068196px;}
._31{margin-left:-106.255756px;}
._37{margin-left:-104.139426px;}
._30{margin-left:-52.153560px;}
._32{margin-left:-46.121524px;}
._3{margin-left:-4.685859px;}
._1{margin-left:-3.491072px;}
._0{margin-left:-2.132924px;}
._6{margin-left:-1.095120px;}
._7{width:1.148967px;}
._8{width:2.528924px;}
._1a{width:3.539767px;}
._2{width:4.561151px;}
._d{width:6.419579px;}
._5{width:7.757166px;}
._e{width:9.144000px;}
._9{width:10.152000px;}
._a{width:11.238022px;}
._f{width:12.276000px;}
._4{width:13.539520px;}
._10{width:14.760000px;}
._11{width:16.619513px;}
._1f{width:17.964011px;}
._1e{width:19.185854px;}
._b{width:20.448000px;}
._c{width:21.756000px;}
._19{width:23.316000px;}
._12{width:25.128000px;}
._13{width:27.009055px;}
._1c{width:28.625760px;}
._1b{width:29.823120px;}
._1d{width:31.071120px;}
._9b{width:32.135040px;}
._16{width:33.696000px;}
._17{width:34.896000px;}
._18{width:36.441099px;}
._9c{width:40.104000px;}
._76{width:53.341144px;}
._14{width:58.584000px;}
._15{width:59.784000px;}
._77{width:63.731332px;}
._51{width:72.225078px;}
._52{width:73.432384px;}
._20{width:78.611968px;}
._53{width:83.875504px;}
._93{width:92.778205px;}
._47{width:115.836000px;}
._94{width:125.184285px;}
._78{width:127.286240px;}
._75{width:136.750964px;}
._96{width:143.684425px;}
._95{width:145.027665px;}
._54{width:148.505313px;}
._4f{width:155.729092px;}
._83{width:158.380313px;}
._2d{width:164.316000px;}
._4d{width:169.890051px;}
._4c{width:176.277868px;}
._4b{width:178.433775px;}
._74{width:180.203125px;}
._7e{width:181.884020px;}
._80{width:186.345681px;}
._66{width:191.043633px;}
._63{width:193.320267px;}
._49{width:197.976000px;}
._7b{width:200.811316px;}
._6f{width:202.477440px;}
._5b{width:204.319887px;}
._22{width:208.114667px;}
._4a{width:211.502067px;}
._6a{width:213.280212px;}
._8f{width:214.489605px;}
._59{width:215.531221px;}
._79{width:217.776667px;}
._65{width:219.051593px;}
._7a{width:221.496483px;}
._6c{width:222.532331px;}
._7d{width:224.402000px;}
._21{width:225.465502px;}
._62{width:226.923888px;}
._82{width:228.687966px;}
._86{width:229.914483px;}
._85{width:232.682631px;}
._5e{width:234.166886px;}
._69{width:235.294959px;}
._5a{width:237.065577px;}
._55{width:241.261559px;}
._71{width:243.757819px;}
._6d{width:245.386978px;}
._68{width:247.501893px;}
._5c{width:248.504764px;}
._57{width:252.007692px;}
._72{width:254.174198px;}
._5f{width:258.049287px;}
._56{width:259.376216px;}
._6e{width:264.675705px;}
._5d{width:269.674981px;}
._6b{width:291.318881px;}
._98{width:294.747780px;}
._28{width:299.898197px;}
._50{width:302.255141px;}
._23{width:306.416912px;}
._9a{width:330.744805px;}
._99{width:344.942414px;}
._60{width:359.006988px;}
._97{width:365.561399px;}
._87{width:369.059283px;}
._64{width:373.244024px;}
._8d{width:378.162943px;}
._61{width:379.889746px;}
._2e{width:383.880035px;}
._88{width:388.883001px;}
._8b{width:399.603059px;}
._67{width:412.643664px;}
._7c{width:424.859515px;}
._7f{width:432.313218px;}
._58{width:436.663203px;}
._81{width:438.838471px;}
._2f{width:442.502484px;}
._84{width:464.473392px;}
._4e{width:471.457951px;}
._2a{width:527.285700px;}
._29{width:533.448938px;}
._70{width:545.180255px;}
._73{width:551.825977px;}
._27{width:589.436649px;}
._2c{width:594.560041px;}
._24{width:598.741827px;}
._8a{width:601.132692px;}
._90{width:607.657945px;}
._25{width:663.913755px;}
._2b{width:677.758001px;}
._89{width:684.027639px;}
._92{width:697.288816px;}
._91{width:699.261307px;}
._8c{width:716.187813px;}
._8e{width:720.848707px;}
._26{width:869.325280px;}
.fc1{color:rgb(255,1,1);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs19{font-size:42.011736px;}
.fs17{font-size:42.194186px;}
.fs1e{font-size:42.880232px;}
.fs1d{font-size:43.671890px;}
.fs20{font-size:46.649288px;}
.fs12{font-size:47.869941px;}
.fse{font-size:48.240000px;}
.fs11{font-size:53.060658px;}
.fs5{font-size:53.999978px;}
.fsc{font-size:54.000000px;}
.fs10{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1c{font-size:60.000997px;}
.fs1f{font-size:61.667135px;}
.fs1{font-size:63.000000px;}
.fs22{font-size:65.880000px;}
.fsf{font-size:66.240000px;}
.fs13{font-size:66.240415px;}
.fs9{font-size:69.119972px;}
.fs1a{font-size:71.958575px;}
.fs7{font-size:71.999971px;}
.fs0{font-size:72.000000px;}
.fs16{font-size:72.235530px;}
.fsa{font-size:74.879970px;}
.fs1b{font-size:76.102127px;}
.fs18{font-size:76.484152px;}
.fs6{font-size:77.759969px;}
.fsb{font-size:84.240000px;}
.fs14{font-size:95.424436px;}
.fsd{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs8{font-size:105.119958px;}
.fs15{font-size:115.686808px;}
.fs21{font-size:228.240000px;}
.y0{bottom:0.000000px;}
.y1ea{bottom:3.029582px;}
.y22e{bottom:3.029669px;}
.y1fe{bottom:3.049002px;}
.y22b{bottom:3.052886px;}
.y1ee{bottom:3.058712px;}
.y1a8{bottom:3.085514px;}
.y1b8{bottom:3.105293px;}
.y1ab{bottom:3.115182px;}
.y1e5{bottom:3.146104px;}
.y1a3{bottom:3.204188px;}
.y245{bottom:3.295874px;}
.y258{bottom:3.295905px;}
.y251{bottom:3.321226px;}
.y10d{bottom:3.748803px;}
.yee{bottom:3.748851px;}
.y25a{bottom:3.802931px;}
.yb5{bottom:3.960000px;}
.yb0{bottom:4.140000px;}
.y233{bottom:4.316699px;}
.y15e{bottom:4.436953px;}
.y11c{bottom:4.860030px;}
.y125{bottom:4.860060px;}
.y11e{bottom:4.864530px;}
.y11a{bottom:4.890031px;}
.y120{bottom:4.896031px;}
.y239{bottom:5.087564px;}
.y127{bottom:5.400034px;}
.y179{bottom:5.421777px;}
.y14b{bottom:5.973047px;}
.y177{bottom:6.000145px;}
.y23b{bottom:8.826109px;}
.y15f{bottom:8.943244px;}
.y14a{bottom:10.513898px;}
.y149{bottom:10.548833px;}
.y148{bottom:10.583768px;}
.y23e{bottom:13.566770px;}
.y15d{bottom:16.985088px;}
.y1e6{bottom:17.245311px;}
.y1a4{bottom:17.563695px;}
.y10b{bottom:22.204191px;}
.yaf{bottom:23.040000px;}
.y238{bottom:24.697970px;}
.y129{bottom:27.180170px;}
.y176{bottom:27.867978px;}
.y23d{bottom:33.017612px;}
.y6{bottom:35.925007px;}
.y10a{bottom:39.650766px;}
.yba{bottom:41.940000px;}
.yb8{bottom:42.120000px;}
.y237{bottom:44.277286px;}
.y128{bottom:48.990307px;}
.y175{bottom:49.771956px;}
.y2a2{bottom:51.834000px;}
.y109{bottom:57.097341px;}
.y37{bottom:57.420000px;}
.y236{bottom:63.887435px;}
.y5{bottom:66.525004px;}
.y174{bottom:71.675934px;}
.y2a1{bottom:72.534000px;}
.y108{bottom:74.572754px;}
.y36{bottom:78.156000px;}
.y235{bottom:83.466750px;}
.y107{bottom:92.019329px;}
.y2a0{bottom:93.234000px;}
.y173{bottom:93.543768px;}
.y4{bottom:97.125005px;}
.y106{bottom:109.465904px;}
.y230{bottom:112.536000px;}
.ye8{bottom:113.796000px;}
.y172{bottom:115.447746px;}
.y144{bottom:117.396000px;}
.y2a3{bottom:120.636000px;}
.y105{bottom:126.913680px;}
.y17e{bottom:133.956000px;}
.y29f{bottom:134.496000px;}
.yc6{bottom:136.296000px;}
.y22f{bottom:136.476000px;}
.y1e7{bottom:136.639815px;}
.y171{bottom:137.351724px;}
.y22d{bottom:137.455442px;}
.y7e{bottom:138.096000px;}
.y23{bottom:139.264499px;}
.y19f{bottom:139.716000px;}
.yab{bottom:141.516000px;}
.y17f{bottom:141.696000px;}
.y104{bottom:144.360255px;}
.ye7{bottom:144.756000px;}
.y66{bottom:144.936000px;}
.y115{bottom:148.176000px;}
.y143{bottom:148.356000px;}
.y29e{bottom:148.536000px;}
.y22c{bottom:151.555125px;}
.y103{bottom:161.806831px;}
.y16c{bottom:163.650000px;}
.y17d{bottom:164.910000px;}
.y276{bottom:165.630000px;}
.y22a{bottom:165.654332px;}
.y65{bottom:166.350000px;}
.yc5{bottom:167.430000px;}
.y114{bottom:168.870000px;}
.y29d{bottom:169.230000px;}
.y19e{bottom:170.670000px;}
.y142{bottom:171.750000px;}
.ye6{bottom:175.890000px;}
.y7d{bottom:179.490000px;}
.yaa{bottom:182.910000px;}
.y96{bottom:186.330000px;}
.y113{bottom:189.570000px;}
.y64{bottom:189.930000px;}
.y229{bottom:193.876050px;}
.y16b{bottom:194.790000px;}
.y141{bottom:195.330000px;}
.y17c{bottom:196.050000px;}
.y1a{bottom:196.933500px;}
.yc4{bottom:198.390000px;}
.y19d{bottom:201.810000px;}
.ye5{bottom:206.850000px;}
.y275{bottom:207.030000px;}
.y228{bottom:207.975256px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y112{bottom:210.270000px;}
.y63{bottom:210.630000px;}
.y100{bottom:214.170587px;}
.y7c{bottom:220.890000px;}
.y227{bottom:222.074463px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.ya9{bottom:224.310000px;}
.y16a{bottom:225.750000px;}
.y140{bottom:226.290000px;}
.y17b{bottom:227.010000px;}
.y95{bottom:227.730000px;}
.yc3{bottom:229.530000px;}
.y111{bottom:230.970000px;}
.y62{bottom:231.330000px;}
.y19c{bottom:232.770000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y226{bottom:236.170757px;}
.ye4{bottom:237.990000px;}
.y274{bottom:248.430000px;}
.yfe{bottom:249.063737px;}
.y1e1{bottom:249.510000px;}
.y225{bottom:250.269964px;}
.y110{bottom:251.670000px;}
.y61{bottom:252.030000px;}
.y17a{bottom:253.650000px;}
.y170{bottom:253.863451px;}
.y169{bottom:256.890000px;}
.y13f{bottom:257.250000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y7b{bottom:262.290000px;}
.y19b{bottom:263.910000px;}
.y224{bottom:264.369170px;}
.ya8{bottom:265.710000px;}
.yfd{bottom:266.510312px;}
.y1e0{bottom:266.790000px;}
.ye3{bottom:268.950000px;}
.y94{bottom:269.130000px;}
.y10f{bottom:272.370000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y60{bottom:272.730000px;}
.y223{bottom:278.468377px;}
.y1df{bottom:280.290000px;}
.y1a5{bottom:280.489588px;}
.y1de{bottom:281.320323px;}
.yc2{bottom:281.550000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y168{bottom:287.850000px;}
.y13e{bottom:288.390000px;}
.y273{bottom:289.830000px;}
.y222{bottom:292.567584px;}
.y5f{bottom:293.430000px;}
.y19a{bottom:294.870000px;}
.y1dd{bottom:295.679830px;}
.y10e{bottom:298.830000px;}
.yf0{bottom:299.028719px;}
.y10c{bottom:300.038013px;}
.ye2{bottom:300.090000px;}
.yfb{bottom:301.439509px;}
.y7a{bottom:303.690000px;}
.yc1{bottom:305.850000px;}
.y221{bottom:306.666791px;}
.ya7{bottom:307.110000px;}
.y13d{bottom:309.270000px;}
.y1dc{bottom:310.039337px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y93{bottom:310.530000px;}
.y5e{bottom:314.130000px;}
.y167{bottom:318.990000px;}
.y220{bottom:320.765998px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y199{bottom:326.010000px;}
.yc0{bottom:329.835000px;}
.y13c{bottom:330.015000px;}
.ye1{bottom:331.095000px;}
.y272{bottom:331.275000px;}
.y5d{bottom:334.515000px;}
.y21f{bottom:334.865204px;}
.y29c{bottom:334.875000px;}
.yf9{bottom:336.332659px;}
.y1db{bottom:338.782087px;}
.y79{bottom:345.135000px;}
.y11{bottom:348.133500px;}
.ya6{bottom:348.555000px;}
.y21e{bottom:348.964411px;}
.ybf{bottom:349.635000px;}
.y166{bottom:349.995000px;}
.y92{bottom:351.975000px;}
.y1da{bottom:353.141594px;}
.yf8{bottom:353.779234px;}
.y5c{bottom:355.575000px;}
.y198{bottom:357.015000px;}
.y13b{bottom:360.795000px;}
.ye0{bottom:362.235000px;}
.y21d{bottom:363.063618px;}
.ybe{bottom:366.915000px;}
.y1d9{bottom:367.501101px;}
.yf7{bottom:371.225809px;}
.y271{bottom:372.675000px;}
.y5b{bottom:376.275000px;}
.y21c{bottom:377.162825px;}
.y165{bottom:381.135000px;}
.y1d8{bottom:381.860609px;}
.ybd{bottom:384.195000px;}
.y78{bottom:386.535000px;}
.y10{bottom:386.785499px;}
.y197{bottom:388.155000px;}
.yf6{bottom:388.696415px;}
.ya5{bottom:389.955000px;}
.y21b{bottom:391.291162px;}
.y13a{bottom:391.935000px;}
.ydf{bottom:393.195000px;}
.y91{bottom:393.375000px;}
.y1d7{bottom:396.220116px;}
.y25e{bottom:396.255000px;}
.y29b{bottom:396.975000px;}
.y5a{bottom:397.515000px;}
.ybc{bottom:401.475000px;}
.y21a{bottom:405.390369px;}
.yf5{bottom:406.142990px;}
.y178{bottom:407.658219px;}
.yf{bottom:408.044999px;}
.y1d6{bottom:410.579623px;}
.y164{bottom:412.095000px;}
.y270{bottom:414.075000px;}
.y29a{bottom:417.675000px;}
.ybb{bottom:418.395000px;}
.y196{bottom:419.115000px;}
.y219{bottom:419.489576px;}
.y59{bottom:421.095000px;}
.y139{bottom:422.895000px;}
.yf4{bottom:423.589565px;}
.yde{bottom:424.335000px;}
.y1d5{bottom:424.939131px;}
.y25d{bottom:425.055000px;}
.y77{bottom:427.935000px;}
.ya4{bottom:431.355000px;}
.yb9{bottom:432.975000px;}
.y218{bottom:433.588782px;}
.y90{bottom:434.775000px;}
.y299{bottom:438.195000px;}
.y1d4{bottom:439.298638px;}
.yf3{bottom:441.036140px;}
.y58{bottom:441.795000px;}
.y163{bottom:443.235000px;}
.y16f{bottom:445.035000px;}
.y217{bottom:447.687989px;}
.y195{bottom:450.255000px;}
.y25c{bottom:450.975000px;}
.y1d3{bottom:453.658145px;}
.y138{bottom:454.035000px;}
.ydd{bottom:455.295000px;}
.y26f{bottom:455.475000px;}
.yf2{bottom:458.482715px;}
.y298{bottom:458.895000px;}
.y216{bottom:461.787196px;}
.y57{bottom:462.495000px;}
.y16e{bottom:465.555000px;}
.y1d2{bottom:468.017653px;}
.y76{bottom:469.335000px;}
.ya3{bottom:472.755000px;}
.y162{bottom:474.195000px;}
.y102{bottom:474.557305px;}
.y215{bottom:475.886403px;}
.yf1{bottom:475.965337px;}
.y8f{bottom:476.175000px;}
.y25b{bottom:479.055000px;}
.y297{bottom:479.595000px;}
.y194{bottom:481.215000px;}
.y1d1{bottom:482.377160px;}
.y56{bottom:483.195000px;}
.ye{bottom:484.864502px;}
.y137{bottom:484.995000px;}
.y16d{bottom:486.255000px;}
.ydc{bottom:486.435000px;}
.y214{bottom:489.985609px;}
.yb7{bottom:490.575000px;}
.y101{bottom:492.003880px;}
.y257{bottom:496.479717px;}
.y1d0{bottom:496.736667px;}
.y26e{bottom:496.875000px;}
.y296{bottom:500.295000px;}
.yd{bottom:502.864502px;}
.y55{bottom:503.895000px;}
.y213{bottom:504.084816px;}
.y161{bottom:505.335000px;}
.y75{bottom:510.735000px;}
.y1cf{bottom:511.115954px;}
.y256{bottom:511.818660px;}
.y193{bottom:512.355000px;}
.ya2{bottom:514.155000px;}
.y136{bottom:516.135000px;}
.ydb{bottom:517.395000px;}
.y8e{bottom:517.575000px;}
.y212{bottom:518.184023px;}
.yc{bottom:520.864502px;}
.y295{bottom:520.995000px;}
.y54{bottom:524.595000px;}
.y1ce{bottom:525.475461px;}
.yff{bottom:526.897030px;}
.y255{bottom:527.157149px;}
.y15c{bottom:531.990000px;}
.y211{bottom:532.283230px;}
.y26d{bottom:538.275000px;}
.yb{bottom:538.864499px;}
.y1cd{bottom:539.834968px;}
.y160{bottom:540.975000px;}
.y294{bottom:541.695000px;}
.y254{bottom:542.520990px;}
.y192{bottom:543.315000px;}
.y53{bottom:545.295000px;}
.y210{bottom:546.382436px;}
.y135{bottom:547.095000px;}
.yb6{bottom:548.355000px;}
.yda{bottom:548.535000px;}
.y74{bottom:552.135000px;}
.y1cc{bottom:554.194476px;}
.ya1{bottom:555.555000px;}
.ya{bottom:556.864499px;}
.y253{bottom:557.859479px;}
.y8d{bottom:558.975000px;}
.y20f{bottom:560.481643px;}
.y293{bottom:562.395000px;}
.y52{bottom:565.995000px;}
.y1cb{bottom:568.553983px;}
.y252{bottom:573.197968px;}
.y191{bottom:574.455000px;}
.y20e{bottom:574.580850px;}
.y15b{bottom:575.175000px;}
.y134{bottom:578.235000px;}
.yfc{bottom:579.272802px;}
.yd9{bottom:579.495000px;}
.y26c{bottom:579.675000px;}
.y1ca{bottom:582.913490px;}
.y292{bottom:583.095000px;}
.y51{bottom:586.695000px;}
.yb4{bottom:587.055000px;}
.y250{bottom:588.536457px;}
.y20d{bottom:588.680057px;}
.y73{bottom:593.535000px;}
.ya0{bottom:596.985000px;}
.y1c9{bottom:597.272998px;}
.y8c{bottom:600.405000px;}
.y20c{bottom:602.798684px;}
.y291{bottom:603.825000px;}
.y24f{bottom:603.901355px;}
.y190{bottom:605.445000px;}
.y15a{bottom:606.165000px;}
.yb3{bottom:606.705000px;}
.y50{bottom:607.425000px;}
.y133{bottom:609.225000px;}
.yd8{bottom:610.665000px;}
.y1c8{bottom:611.632505px;}
.yfa{bottom:614.165952px;}
.y20b{bottom:616.897891px;}
.y24e{bottom:619.239843px;}
.y26b{bottom:621.105000px;}
.y290{bottom:624.525000px;}
.y1c7{bottom:625.992012px;}
.y4f{bottom:628.125000px;}
.y20a{bottom:630.997097px;}
.y24d{bottom:634.578332px;}
.y72{bottom:634.965000px;}
.y18f{bottom:636.405000px;}
.y159{bottom:637.305000px;}
.y9f{bottom:638.385000px;}
.y1c6{bottom:640.351520px;}
.y132{bottom:640.365000px;}
.yd7{bottom:641.625000px;}
.y8b{bottom:641.805000px;}
.y209{bottom:645.096304px;}
.y28f{bottom:645.225000px;}
.yb2{bottom:645.405000px;}
.y9{bottom:645.510000px;}
.y4e{bottom:648.825000px;}
.y24c{bottom:649.916821px;}
.y1c5{bottom:654.711027px;}
.y208{bottom:659.195511px;}
.y26a{bottom:662.505000px;}
.y24b{bottom:665.276437px;}
.y28e{bottom:665.925000px;}
.y8{bottom:666.771000px;}
.y18e{bottom:667.545000px;}
.y158{bottom:668.265000px;}
.y1c4{bottom:669.070534px;}
.y4d{bottom:669.525000px;}
.y131{bottom:671.325000px;}
.yd6{bottom:672.765000px;}
.y207{bottom:673.294718px;}
.y71{bottom:676.365000px;}
.y9e{bottom:679.785000px;}
.y24a{bottom:680.614926px;}
.y8a{bottom:683.205000px;}
.y1c3{bottom:683.459710px;}
.yb1{bottom:684.105000px;}
.y28d{bottom:686.625000px;}
.y206{bottom:687.393925px;}
.y4c{bottom:690.225000px;}
.y249{bottom:695.953415px;}
.y1c2{bottom:697.819217px;}
.y18d{bottom:698.505000px;}
.y157{bottom:699.405000px;}
.y205{bottom:701.493131px;}
.y130{bottom:702.465000px;}
.yd5{bottom:703.725000px;}
.y269{bottom:703.905000px;}
.y28c{bottom:707.325000px;}
.y4b{bottom:710.925000px;}
.y248{bottom:711.291903px;}
.y1c1{bottom:712.178725px;}
.y204{bottom:715.592338px;}
.y70{bottom:717.765000px;}
.y9d{bottom:721.185000px;}
.yae{bottom:722.805000px;}
.y89{bottom:724.605000px;}
.y7{bottom:726.298500px;}
.y1c0{bottom:726.538232px;}
.y247{bottom:726.662083px;}
.y28b{bottom:728.025000px;}
.y18c{bottom:729.645000px;}
.y203{bottom:729.691545px;}
.y156{bottom:730.365000px;}
.y4a{bottom:731.625000px;}
.y12f{bottom:733.425000px;}
.yd4{bottom:734.865000px;}
.y1bf{bottom:740.897739px;}
.y246{bottom:742.000572px;}
.y202{bottom:743.790752px;}
.y35{bottom:744.239702px;}
.y268{bottom:745.305000px;}
.y28a{bottom:748.725000px;}
.y49{bottom:752.325000px;}
.y3{bottom:752.599495px;}
.y1be{bottom:755.257247px;}
.y244{bottom:757.339061px;}
.y201{bottom:757.889958px;}
.y6f{bottom:759.165000px;}
.y18b{bottom:760.605000px;}
.y155{bottom:761.505000px;}
.y34{bottom:761.699695px;}
.y9c{bottom:762.585000px;}
.y12e{bottom:764.565000px;}
.yd3{bottom:765.825000px;}
.y88{bottom:766.005000px;}
.y289{bottom:769.425000px;}
.y1bd{bottom:769.616754px;}
.y200{bottom:771.989165px;}
.y259{bottom:772.170492px;}
.y48{bottom:773.025000px;}
.yad{bottom:776.265000px;}
.y1a6{bottom:779.452275px;}
.y33{bottom:780.779688px;}
.y1bc{bottom:783.976261px;}
.y12d{bottom:785.625000px;}
.y1ff{bottom:786.088372px;}
.y267{bottom:786.705000px;}
.yef{bottom:788.691781px;}
.y288{bottom:790.125000px;}
.y18a{bottom:791.745000px;}
.y154{bottom:792.465000px;}
.y47{bottom:793.545000px;}
.yd2{bottom:796.965000px;}
.y1bb{bottom:798.335769px;}
.y1fd{bottom:800.187579px;}
.y6e{bottom:800.565000px;}
.y32{bottom:801.839679px;}
.y9b{bottom:803.985000px;}
.yed{bottom:806.138356px;}
.yac{bottom:807.225000px;}
.y87{bottom:807.405000px;}
.y12c{bottom:809.565000px;}
.y287{bottom:810.825000px;}
.y1ba{bottom:812.695276px;}
.y46{bottom:814.245000px;}
.y1fc{bottom:814.306206px;}
.y189{bottom:822.705000px;}
.y243{bottom:822.885000px;}
.y31{bottom:822.899671px;}
.y153{bottom:823.605000px;}
.y1b9{bottom:827.054783px;}
.yec{bottom:827.745000px;}
.yd1{bottom:827.925000px;}
.y266{bottom:828.105000px;}
.y1fb{bottom:828.405413px;}
.y12b{bottom:830.265000px;}
.y286{bottom:831.525000px;}
.y45{bottom:834.945000px;}
.y1b7{bottom:841.414291px;}
.y6d{bottom:841.965000px;}
.y1fa{bottom:842.504619px;}
.y242{bottom:843.585000px;}
.y9a{bottom:845.385000px;}
.y12a{bottom:846.465000px;}
.y30{bottom:847.559661px;}
.y124{bottom:847.897029px;}
.yeb{bottom:848.445000px;}
.y86{bottom:848.805000px;}
.y285{bottom:852.225000px;}
.y188{bottom:853.845000px;}
.y152{bottom:854.565000px;}
.y44{bottom:855.645000px;}
.y1b6{bottom:855.793577px;}
.y1f9{bottom:856.603826px;}
.yd0{bottom:859.065000px;}
.y241{bottom:864.330000px;}
.yea{bottom:869.190000px;}
.y265{bottom:869.550000px;}
.y1b5{bottom:870.153084px;}
.y1f8{bottom:870.703033px;}
.y284{bottom:872.970000px;}
.y43{bottom:876.390000px;}
.y123{bottom:877.273693px;}
.y2{bottom:879.369000px;}
.y2f{bottom:881.759647px;}
.y6c{bottom:883.410000px;}
.y1b4{bottom:884.512592px;}
.y1f7{bottom:884.802240px;}
.y187{bottom:884.850000px;}
.y240{bottom:885.030000px;}
.y151{bottom:885.750000px;}
.ye9{bottom:889.890000px;}
.ycf{bottom:890.070000px;}
.y85{bottom:890.250000px;}
.y283{bottom:893.670000px;}
.y42{bottom:897.810000px;}
.y1b3{bottom:898.872099px;}
.y1f6{bottom:898.901447px;}
.y23f{bottom:905.730000px;}
.y122{bottom:906.613877px;}
.y99{bottom:907.710000px;}
.y264{bottom:910.950000px;}
.y1f5{bottom:913.000653px;}
.y1b2{bottom:913.231606px;}
.y282{bottom:914.370000px;}
.y186{bottom:915.990000px;}
.y2e{bottom:916.139634px;}
.y150{bottom:916.710000px;}
.yce{bottom:921.210000px;}
.y41{bottom:921.930000px;}
.y234{bottom:922.591316px;}
.y6b{bottom:924.810000px;}
.y1f4{bottom:927.099860px;}
.y1b1{bottom:927.591114px;}
.y84{bottom:931.650000px;}
.y98{bottom:931.830000px;}
.y1e8{bottom:934.510825px;}
.y281{bottom:935.070000px;}
.y121{bottom:935.990060px;}
.y1f3{bottom:941.199067px;}
.y1b0{bottom:941.950621px;}
.y40{bottom:946.770000px;}
.y185{bottom:946.950000px;}
.y14f{bottom:947.850000px;}
.y2d{bottom:950.339620px;}
.ycd{bottom:952.170000px;}
.y263{bottom:952.350000px;}
.y1f2{bottom:955.298274px;}
.y280{bottom:955.770000px;}
.y1af{bottom:956.310128px;}
.y11f{bottom:965.330244px;}
.y6a{bottom:966.210000px;}
.y1{bottom:966.726000px;}
.y1f1{bottom:969.397480px;}
.y1ae{bottom:970.669636px;}
.y83{bottom:973.050000px;}
.y97{bottom:974.310000px;}
.y27f{bottom:976.470000px;}
.y184{bottom:978.090000px;}
.y14e{bottom:978.810000px;}
.y2c{bottom:981.299607px;}
.y3f{bottom:981.330000px;}
.ycc{bottom:983.310000px;}
.y1f0{bottom:983.496687px;}
.y1ad{bottom:985.029143px;}
.y262{bottom:993.750000px;}
.y11d{bottom:994.706428px;}
.y27e{bottom:997.170000px;}
.y1ef{bottom:997.595894px;}
.y2b{bottom:999.299600px;}
.y1ac{bottom:999.388650px;}
.y3e{bottom:1002.030000px;}
.y69{bottom:1007.610000px;}
.y183{bottom:1009.050000px;}
.y14d{bottom:1009.950000px;}
.y1ed{bottom:1011.695101px;}
.y1aa{bottom:1013.748158px;}
.ycb{bottom:1014.270000px;}
.y82{bottom:1014.450000px;}
.y2a{bottom:1017.299593px;}
.y27d{bottom:1017.870000px;}
.y232{bottom:1021.659851px;}
.y3d{bottom:1022.730000px;}
.y126{bottom:1023.361107px;}
.y11b{bottom:1024.081112px;}
.y1ec{bottom:1025.823438px;}
.y1a9{bottom:1028.137333px;}
.y261{bottom:1035.150000px;}
.y29{bottom:1035.299586px;}
.y3c{bottom:1036.410000px;}
.y147{bottom:1036.515000px;}
.y27c{bottom:1038.570000px;}
.y1eb{bottom:1039.922645px;}
.y182{bottom:1040.190000px;}
.y23c{bottom:1040.622495px;}
.y1a7{bottom:1042.496841px;}
.yca{bottom:1045.410000px;}
.y14c{bottom:1047.030000px;}
.y68{bottom:1049.010000px;}
.y28{bottom:1053.299579px;}
.y1e9{bottom:1054.021852px;}
.y81{bottom:1055.850000px;}
.y27b{bottom:1059.270000px;}
.y119{bottom:1063.321357px;}
.y3b{bottom:1063.410000px;}
.y181{bottom:1071.150000px;}
.y27{bottom:1071.299571px;}
.y1a2{bottom:1074.776064px;}
.yc9{bottom:1076.370000px;}
.y260{bottom:1076.550000px;}
.y27a{bottom:1079.970000px;}
.y146{bottom:1081.230000px;}
.y1e4{bottom:1085.715936px;}
.y3a{bottom:1087.170000px;}
.y23a{bottom:1089.056891px;}
.y26{bottom:1089.299564px;}
.y118{bottom:1096.890000px;}
.y80{bottom:1097.250000px;}
.y279{bottom:1100.670000px;}
.y180{bottom:1102.290000px;}
.y25f{bottom:1107.150000px;}
.yc8{bottom:1107.510000px;}
.y25{bottom:1107.659557px;}
.y1a1{bottom:1108.410000px;}
.y39{bottom:1111.290000px;}
.y145{bottom:1112.370000px;}
.y117{bottom:1117.590000px;}
.y1e3{bottom:1117.950000px;}
.y231{bottom:1118.670000px;}
.y278{bottom:1121.010000px;}
.y24{bottom:1126.559549px;}
.y38{bottom:1135.440000px;}
.y67{bottom:1135.800000px;}
.y1a0{bottom:1138.140000px;}
.y116{bottom:1138.320000px;}
.yc7{bottom:1138.500000px;}
.y7f{bottom:1138.680000px;}
.y1e2{bottom:1139.400000px;}
.y2a4{bottom:1140.960450px;}
.y277{bottom:1141.380000px;}
.h48{height:13.167028px;}
.h49{height:13.190332px;}
.h42{height:13.410118px;}
.h43{height:13.433853px;}
.h51{height:14.324374px;}
.h54{height:14.349727px;}
.h22{height:16.293082px;}
.h4a{height:18.345973px;}
.h1c{height:18.936000px;}
.h3c{height:21.181075px;}
.h4e{height:23.618513px;}
.h44{height:27.266235px;}
.h3e{height:27.769626px;}
.h2b{height:27.900175px;}
.h26{height:27.936175px;}
.h34{height:28.424518px;}
.h2e{height:30.074275px;}
.h47{height:30.778292px;}
.h45{height:31.134231px;}
.h41{height:31.346523px;}
.h3f{height:31.709033px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h52{height:33.483620px;}
.h53{height:33.870845px;}
.h23{height:36.271934px;}
.h28{height:37.800237px;}
.h1b{height:37.980000px;}
.h35{height:41.211708px;}
.h3a{height:43.067122px;}
.h3b{height:43.565177px;}
.h5a{height:43.909277px;}
.h2d{height:44.820000px;}
.h29{height:45.281533px;}
.h55{height:45.533762px;}
.h7{height:45.960000px;}
.h16{height:47.344922px;}
.h2a{height:47.545610px;}
.h27{height:48.095457px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h4f{height:48.439535px;}
.h3d{height:48.761719px;}
.h50{height:48.796875px;}
.h24{height:49.926853px;}
.h38{height:49.963425px;}
.h56{height:50.027344px;}
.h37{height:52.840442px;}
.ha{height:52.998026px;}
.h33{height:53.105696px;}
.h2{height:55.152000px;}
.h1f{height:56.880000px;}
.h1d{height:57.060000px;}
.h21{height:58.651172px;}
.h20{height:60.226875px;}
.h4b{height:60.522921px;}
.h4d{height:62.148910px;}
.h1e{height:64.978594px;}
.h19{height:65.010937px;}
.h2f{height:66.256615px;}
.h10{height:67.803723px;}
.he{height:67.837473px;}
.h2c{height:67.896425px;}
.h1a{height:70.628906px;}
.hc{height:70.664034px;}
.h12{height:70.664062px;}
.h31{height:70.895223px;}
.h18{height:72.562500px;}
.hf{height:73.490596px;}
.hb{height:76.317157px;}
.h5{height:78.132000px;}
.h30{height:80.325508px;}
.h57{height:80.464922px;}
.h17{height:82.676953px;}
.h13{height:84.898125px;}
.h36{height:88.613436px;}
.h32{height:89.023353px;}
.h14{height:91.851680px;}
.h15{height:93.936445px;}
.hd{height:105.941208px;}
.h58{height:109.440000px;}
.h4{height:119.055004px;}
.h39{height:174.972786px;}
.h4c{height:190.088945px;}
.h59{height:224.005078px;}
.h25{height:523.397252px;}
.h40{height:822.052127px;}
.h46{height:976.340938px;}
.h0{height:1262.833500px;}
.h11{height:1262.880000px;}
.h1{height:1263.000000px;}
.wc{width:74.852587px;}
.w13{width:89.412866px;}
.wf{width:94.029038px;}
.we{width:94.052370px;}
.w11{width:94.507132px;}
.w1a{width:108.848515px;}
.w19{width:108.868106px;}
.w17{width:109.509450px;}
.wa{width:133.776619px;}
.w9{width:204.015944px;}
.w16{width:219.021204px;}
.w7{width:276.968670px;}
.w15{width:328.526046px;}
.wb{width:487.422328px;}
.w8{width:518.222397px;}
.wd{width:588.439787px;}
.w2{width:637.794021px;}
.w6{width:640.746091px;}
.w12{width:644.285780px;}
.w10{width:648.626990px;}
.w14{width:679.169629px;}
.w18{width:679.186523px;}
.w5{width:690.630000px;}
.w1b{width:749.490000px;}
.w3{width:892.500000px;}
.w1c{width:892.830000px;}
.w0{width:892.912500px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1a{left:1.319728px;}
.x22{left:2.880013px;}
.x19{left:7.740000px;}
.x36{left:9.099584px;}
.x49{left:11.197003px;}
.x2c{left:14.175930px;}
.x2b{left:17.791998px;}
.x4f{left:18.925066px;}
.x3f{left:20.125082px;}
.x46{left:21.426363px;}
.x39{left:22.713040px;}
.x3a{left:25.715338px;}
.x2e{left:27.671876px;}
.x33{left:33.015159px;}
.x4a{left:36.355700px;}
.x53{left:38.437867px;}
.x4c{left:41.746849px;}
.x47{left:46.032122px;}
.x24{left:50.763256px;}
.x2d{left:53.983490px;}
.x2a{left:67.658016px;}
.x44{left:72.193020px;}
.x54{left:85.140000px;}
.x18{left:100.296000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x10{left:108.036000px;}
.x1f{left:109.530007px;}
.x1b{left:119.893589px;}
.x11{left:121.896000px;}
.x2f{left:132.430062px;}
.x25{left:137.117146px;}
.x15{left:140.076000px;}
.x17{left:150.510000px;}
.x12{left:165.990000px;}
.x14{left:183.630000px;}
.x4{left:203.484001px;}
.x3c{left:204.830721px;}
.x3b{left:206.919276px;}
.x3d{left:207.963554px;}
.x41{left:221.691722px;}
.x40{left:225.612192px;}
.x1c{left:227.543680px;}
.x43{left:240.403551px;}
.x4e{left:243.523727px;}
.x6{left:259.199896px;}
.x27{left:266.679374px;}
.x30{left:269.320685px;}
.x7{left:273.059891px;}
.x8{left:294.479882px;}
.x28{left:303.452426px;}
.xe{left:304.559878px;}
.x21{left:313.545950px;}
.x20{left:340.666576px;}
.x48{left:349.919913px;}
.x50{left:352.401629px;}
.x31{left:363.378889px;}
.x9{left:383.399847px;}
.xc{left:390.239844px;}
.x16{left:409.965000px;}
.x13{left:445.605000px;}
.x3{left:454.959000px;}
.x32{left:457.427370px;}
.x4b{left:459.424755px;}
.x51{left:461.269735px;}
.x26{left:476.225980px;}
.xd{left:491.759803px;}
.xb{left:498.959800px;}
.xa{left:506.519797px;}
.x34{left:551.485574px;}
.x45{left:568.941117px;}
.x52{left:570.147637px;}
.x29{left:595.590000px;}
.x23{left:627.990000px;}
.x35{left:645.514612px;}
.x38{left:662.318636px;}
.x4d{left:678.445960px;}
.x5{left:706.499717px;}
.x37{left:740.160000px;}
.x1d{left:749.880000px;}
.x42{left:753.660000px;}
.x3e{left:757.980000px;}
.x1e{left:765.180000px;}
.xf{left:774.180000px;}
@media print{
.v3{vertical-align:-74.240000pt;}
.v2{vertical-align:-29.440000pt;}
.v7{vertical-align:-16.145246pt;}
.v4{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.320000pt;}
.v6{vertical-align:16.145246pt;}
.v8{vertical-align:29.440000pt;}
.v1{vertical-align:34.560000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls23{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.368533pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls22{letter-spacing:-0.242828pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls25{letter-spacing:-0.052049pt;}
.ls3{letter-spacing:-0.033280pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.064000pt;}
.ls28{letter-spacing:0.116458pt;}
.ls4{letter-spacing:0.128000pt;}
.ls2c{letter-spacing:0.147422pt;}
.ls2a{letter-spacing:0.150144pt;}
.lsf{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.192000pt;}
.ls1a{letter-spacing:0.227735pt;}
.ls15{letter-spacing:0.239360pt;}
.ls1c{letter-spacing:0.239467pt;}
.ls1d{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.352000pt;}
.ls7{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.640000pt;}
.ls24{letter-spacing:0.704000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls2d{letter-spacing:4.480000pt;}
.ls2{letter-spacing:5.120000pt;}
.ls27{letter-spacing:6.400000pt;}
.ls19{letter-spacing:8.480000pt;}
.ls1e{letter-spacing:8.906667pt;}
.ls18{letter-spacing:8.960000pt;}
.ls11{letter-spacing:9.600000pt;}
.ls14{letter-spacing:10.695747pt;}
.ls2e{letter-spacing:12.160000pt;}
.ls10{letter-spacing:15.360000pt;}
.ls26{letter-spacing:25.600000pt;}
.ls21{letter-spacing:87.598140pt;}
.ls9{letter-spacing:132.298667pt;}
.ls20{letter-spacing:517.651976pt;}
.ls1f{letter-spacing:618.504439pt;}
.ls29{letter-spacing:626.402024pt;}
.ls2b{letter-spacing:674.062611pt;}
.ws15{word-spacing:-64.209360pt;}
.ws19{word-spacing:-37.324266pt;}
.ws1a{word-spacing:-37.137838pt;}
.ws7{word-spacing:-17.280000pt;}
.ws1c{word-spacing:-16.704000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws14{word-spacing:-16.052340pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws1b{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws9{word-spacing:-14.720000pt;}
.ws80{word-spacing:-13.703808pt;}
.wsf{word-spacing:-13.306963pt;}
.wsa{word-spacing:-13.280000pt;}
.ws38{word-spacing:-12.053534pt;}
.ws1{word-spacing:-12.000000pt;}
.ws91{word-spacing:-10.959467pt;}
.ws11{word-spacing:-10.720000pt;}
.ws18{word-spacing:-9.376486pt;}
.ws87{word-spacing:-9.371324pt;}
.ws39{word-spacing:-8.773197pt;}
.ws57{word-spacing:-8.614162pt;}
.ws0{word-spacing:0.000000pt;}
.ws74{word-spacing:87.247577pt;}
.ws72{word-spacing:87.293256pt;}
.ws8b{word-spacing:96.774512pt;}
.ws84{word-spacing:96.788935pt;}
.ws88{word-spacing:96.887191pt;}
.ws82{word-spacing:96.901614pt;}
.ws13{word-spacing:98.472284pt;}
.ws83{word-spacing:99.478818pt;}
.ws85{word-spacing:99.553938pt;}
.ws86{word-spacing:99.591498pt;}
.ws73{word-spacing:100.311873pt;}
.ws76{word-spacing:100.860026pt;}
.ws7d{word-spacing:100.951384pt;}
.ws79{word-spacing:100.997064pt;}
.ws8a{word-spacing:112.098915pt;}
.ws8d{word-spacing:112.174035pt;}
.ws8c{word-spacing:112.211595pt;}
.ws75{word-spacing:114.015681pt;}
.ws78{word-spacing:114.107040pt;}
.ws77{word-spacing:114.152719pt;}
.ws7f{word-spacing:114.563834pt;}
.ws66{word-spacing:122.182008pt;}
.ws6f{word-spacing:122.682485pt;}
.ws2f{word-spacing:125.304571pt;}
.ws2d{word-spacing:125.411240pt;}
.ws2b{word-spacing:125.571885pt;}
.ws7a{word-spacing:127.719489pt;}
.ws7b{word-spacing:127.856527pt;}
.ws36{word-spacing:131.936649pt;}
.ws54{word-spacing:131.956620pt;}
.ws37{word-spacing:132.534678pt;}
.ws31{word-spacing:132.588226pt;}
.ws6e{word-spacing:133.769200pt;}
.ws29{word-spacing:138.850820pt;}
.ws65{word-spacing:141.201773pt;}
.ws51{word-spacing:141.245441pt;}
.ws49{word-spacing:141.350929pt;}
.ws63{word-spacing:143.336256pt;}
.ws2e{word-spacing:145.331678pt;}
.ws32{word-spacing:145.430849pt;}
.ws34{word-spacing:145.537946pt;}
.ws35{word-spacing:145.591494pt;}
.ws33{word-spacing:145.973830pt;}
.ws2c{word-spacing:146.073430pt;}
.ws6c{word-spacing:146.988740pt;}
.ws68{word-spacing:147.001998pt;}
.ws3e{word-spacing:147.244735pt;}
.ws12{word-spacing:150.547993pt;}
.ws60{word-spacing:150.730714pt;}
.ws5c{word-spacing:150.768830pt;}
.ws46{word-spacing:151.094613pt;}
.ws48{word-spacing:153.046556pt;}
.ws52{word-spacing:153.116882pt;}
.ws45{word-spacing:153.152044pt;}
.ws23{word-spacing:158.770830pt;}
.ws26{word-spacing:158.877927pt;}
.ws28{word-spacing:158.931475pt;}
.ws27{word-spacing:159.567630pt;}
.ws24{word-spacing:159.674727pt;}
.ws1e{word-spacing:159.728275pt;}
.ws5a{word-spacing:160.264626pt;}
.ws50{word-spacing:160.760658pt;}
.ws64{word-spacing:162.356021pt;}
.ws5e{word-spacing:166.136111pt;}
.ws6d{word-spacing:169.823120pt;}
.ws4b{word-spacing:170.398854pt;}
.ws4e{word-spacing:170.465522pt;}
.ws67{word-spacing:171.884962pt;}
.ws62{word-spacing:171.957603pt;}
.ws71{word-spacing:172.101555pt;}
.ws1f{word-spacing:172.265030pt;}
.ws21{word-spacing:172.372127pt;}
.ws22{word-spacing:172.425675pt;}
.ws20{word-spacing:173.061830pt;}
.ws1d{word-spacing:177.009848pt;}
.ws61{word-spacing:179.286601pt;}
.ws5b{word-spacing:179.355651pt;}
.ws3c{word-spacing:180.170387pt;}
.ws4a{word-spacing:180.209206pt;}
.ws47{word-spacing:182.305457pt;}
.ws6a{word-spacing:185.155876pt;}
.ws70{word-spacing:190.172587pt;}
.ws40{word-spacing:195.743741pt;}
.ws43{word-spacing:199.580116pt;}
.ws7c{word-spacing:208.005531pt;}
.ws56{word-spacing:210.596754pt;}
.ws58{word-spacing:210.763039pt;}
.ws44{word-spacing:211.275743pt;}
.ws41{word-spacing:211.346068pt;}
.ws3d{word-spacing:211.381231pt;}
.wsb{word-spacing:231.354039pt;}
.ws3a{word-spacing:231.567349pt;}
.wsc{word-spacing:252.814127pt;}
.ws7e{word-spacing:374.479389pt;}
.wsd{word-spacing:402.515930pt;}
.ws90{word-spacing:404.709692pt;}
.ws4d{word-spacing:435.420418pt;}
.wse{word-spacing:461.615155pt;}
.ws81{word-spacing:465.042772pt;}
.ws8f{word-spacing:466.079423pt;}
.ws10{word-spacing:476.790610pt;}
.ws25{word-spacing:478.141060pt;}
.ws6b{word-spacing:486.047501pt;}
.ws8e{word-spacing:494.649520pt;}
.ws89{word-spacing:506.757602pt;}
.ws4c{word-spacing:512.282945pt;}
.ws2a{word-spacing:515.928676pt;}
.ws3b{word-spacing:521.017323pt;}
.ws42{word-spacing:539.029551pt;}
.ws4f{word-spacing:543.066775pt;}
.ws3f{word-spacing:550.364833pt;}
.ws59{word-spacing:551.034875pt;}
.ws55{word-spacing:562.027548pt;}
.ws53{word-spacing:563.735604pt;}
.ws30{word-spacing:568.228340pt;}
.ws69{word-spacing:571.045650pt;}
.ws5f{word-spacing:578.249529pt;}
.ws5d{word-spacing:589.379331pt;}
.ws16{word-spacing:736.495698pt;}
.ws17{word-spacing:950.564304pt;}
._35{margin-left:-556.388829pt;}
._3b{margin-left:-456.872283pt;}
._33{margin-left:-446.388176pt;}
._3c{margin-left:-407.768239pt;}
._3d{margin-left:-319.255740pt;}
._43{margin-left:-314.200611pt;}
._41{margin-left:-250.607229pt;}
._45{margin-left:-227.496712pt;}
._46{margin-left:-217.069470pt;}
._48{margin-left:-213.413588pt;}
._36{margin-left:-211.593779pt;}
._44{margin-left:-196.839972pt;}
._38{margin-left:-194.590745pt;}
._39{margin-left:-179.822541pt;}
._3f{margin-left:-161.831188pt;}
._40{margin-left:-149.658080pt;}
._34{margin-left:-146.780979pt;}
._3e{margin-left:-139.187719pt;}
._42{margin-left:-117.739212pt;}
._3a{margin-left:-96.060619pt;}
._31{margin-left:-94.449561pt;}
._37{margin-left:-92.568379pt;}
._30{margin-left:-46.358720pt;}
._32{margin-left:-40.996910pt;}
._3{margin-left:-4.165208pt;}
._1{margin-left:-3.103175pt;}
._0{margin-left:-1.895932pt;}
._6{margin-left:-0.973440pt;}
._7{width:1.021304pt;}
._8{width:2.247932pt;}
._1a{width:3.146460pt;}
._2{width:4.054357pt;}
._d{width:5.706292pt;}
._5{width:6.895259pt;}
._e{width:8.128000pt;}
._9{width:9.024000pt;}
._a{width:9.989353pt;}
._f{width:10.912000pt;}
._4{width:12.035129pt;}
._10{width:13.120000pt;}
._11{width:14.772900pt;}
._1f{width:15.968010pt;}
._1e{width:17.054093pt;}
._b{width:18.176000pt;}
._c{width:19.338667pt;}
._19{width:20.725333pt;}
._12{width:22.336000pt;}
._13{width:24.008049pt;}
._1c{width:25.445120pt;}
._1b{width:26.509440pt;}
._1d{width:27.618773pt;}
._9b{width:28.564480pt;}
._16{width:29.952000pt;}
._17{width:31.018667pt;}
._18{width:32.392088pt;}
._9c{width:35.648000pt;}
._76{width:47.414351pt;}
._14{width:52.074667pt;}
._15{width:53.141333pt;}
._77{width:56.650073pt;}
._51{width:64.200069pt;}
._52{width:65.273231pt;}
._20{width:69.877305pt;}
._53{width:74.556004pt;}
._93{width:82.469516pt;}
._47{width:102.965333pt;}
._94{width:111.274920pt;}
._78{width:113.143325pt;}
._75{width:121.556413pt;}
._96{width:127.719489pt;}
._95{width:128.913480pt;}
._54{width:132.004723pt;}
._4f{width:138.425860pt;}
._83{width:140.782500pt;}
._2d{width:146.058667pt;}
._4d{width:151.013378pt;}
._4c{width:156.691438pt;}
._4b{width:158.607800pt;}
._74{width:160.180555pt;}
._7e{width:161.674684pt;}
._80{width:165.640606pt;}
._66{width:169.816562pt;}
._63{width:171.840237pt;}
._49{width:175.978667pt;}
._7b{width:178.498947pt;}
._6f{width:179.979946pt;}
._5b{width:181.617677pt;}
._22{width:184.990815pt;}
._4a{width:188.001837pt;}
._6a{width:189.582411pt;}
._8f{width:190.657427pt;}
._59{width:191.583307pt;}
._79{width:193.579259pt;}
._65{width:194.712527pt;}
._7a{width:196.885763pt;}
._6c{width:197.806517pt;}
._7d{width:199.468444pt;}
._21{width:200.413779pt;}
._62{width:201.710122pt;}
._82{width:203.278192pt;}
._86{width:204.368429pt;}
._85{width:206.829005pt;}
._5e{width:208.148343pt;}
._69{width:209.151075pt;}
._5a{width:210.724957pt;}
._55{width:214.454719pt;}
._71{width:216.673617pt;}
._6d{width:218.121758pt;}
._68{width:220.001682pt;}
._5c{width:220.893123pt;}
._57{width:224.006838pt;}
._72{width:225.932620pt;}
._5f{width:229.377144pt;}
._56{width:230.556637pt;}
._6e{width:235.267293pt;}
._5d{width:239.711094pt;}
._6b{width:258.950116pt;}
._98{width:261.998027pt;}
._28{width:266.576175pt;}
._50{width:268.671236pt;}
._23{width:272.370589pt;}
._9a{width:293.995382pt;}
._99{width:306.615479pt;}
._60{width:319.117322pt;}
._97{width:324.943466pt;}
._87{width:328.052696pt;}
._64{width:331.772466pt;}
._8d{width:336.144838pt;}
._61{width:337.679774pt;}
._2e{width:341.226698pt;}
._88{width:345.673778pt;}
._8b{width:355.202719pt;}
._67{width:366.794368pt;}
._7c{width:377.652903pt;}
._7f{width:384.278416pt;}
._58{width:388.145070pt;}
._81{width:390.078641pt;}
._2f{width:393.335541pt;}
._84{width:412.865238pt;}
._4e{width:419.073734pt;}
._2a{width:468.698400pt;}
._29{width:474.176834pt;}
._70{width:484.604671pt;}
._73{width:490.511980pt;}
._27{width:523.943688pt;}
._2c{width:528.497814pt;}
._24{width:532.214957pt;}
._8a{width:534.340171pt;}
._90{width:540.140396pt;}
._25{width:590.145560pt;}
._2b{width:602.451557pt;}
._89{width:608.024568pt;}
._92{width:619.812281pt;}
._91{width:621.565606pt;}
._8c{width:636.611389pt;}
._8e{width:640.754407pt;}
._26{width:772.733582pt;}
.fs4{font-size:37.333333pt;}
.fs19{font-size:37.343766pt;}
.fs17{font-size:37.505943pt;}
.fs1e{font-size:38.115762pt;}
.fs1d{font-size:38.819458pt;}
.fs20{font-size:41.466034pt;}
.fs12{font-size:42.551059pt;}
.fse{font-size:42.880000pt;}
.fs11{font-size:47.165029pt;}
.fs5{font-size:47.999981pt;}
.fsc{font-size:48.000000pt;}
.fs10{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1c{font-size:53.334219pt;}
.fs1f{font-size:54.815231pt;}
.fs1{font-size:56.000000pt;}
.fs22{font-size:58.560000pt;}
.fsf{font-size:58.880000pt;}
.fs13{font-size:58.880368pt;}
.fs9{font-size:61.439975pt;}
.fs1a{font-size:63.963178pt;}
.fs7{font-size:63.999974pt;}
.fs0{font-size:64.000000pt;}
.fs16{font-size:64.209360pt;}
.fsa{font-size:66.559973pt;}
.fs1b{font-size:67.646335pt;}
.fs18{font-size:67.985913pt;}
.fs6{font-size:69.119972pt;}
.fsb{font-size:74.880000pt;}
.fs14{font-size:84.821721pt;}
.fsd{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs8{font-size:93.439963pt;}
.fs15{font-size:102.832718pt;}
.fs21{font-size:202.880000pt;}
.y0{bottom:0.000000pt;}
.y1ea{bottom:2.692961pt;}
.y22e{bottom:2.693039pt;}
.y1fe{bottom:2.710224pt;}
.y22b{bottom:2.713677pt;}
.y1ee{bottom:2.718855pt;}
.y1a8{bottom:2.742679pt;}
.y1b8{bottom:2.760260pt;}
.y1ab{bottom:2.769051pt;}
.y1e5{bottom:2.796537pt;}
.y1a3{bottom:2.848167pt;}
.y245{bottom:2.929665pt;}
.y258{bottom:2.929694pt;}
.y251{bottom:2.952201pt;}
.y10d{bottom:3.332269pt;}
.yee{bottom:3.332312pt;}
.y25a{bottom:3.380383pt;}
.yb5{bottom:3.520000pt;}
.yb0{bottom:3.680000pt;}
.y233{bottom:3.837066pt;}
.y15e{bottom:3.943958pt;}
.y11c{bottom:4.320027pt;}
.y125{bottom:4.320054pt;}
.y11e{bottom:4.324027pt;}
.y11a{bottom:4.346694pt;}
.y120{bottom:4.352027pt;}
.y239{bottom:4.522279pt;}
.y127{bottom:4.800030pt;}
.y179{bottom:4.819357pt;}
.y14b{bottom:5.309375pt;}
.y177{bottom:5.333462pt;}
.y23b{bottom:7.845430pt;}
.y15f{bottom:7.949551pt;}
.y14a{bottom:9.345687pt;}
.y149{bottom:9.376740pt;}
.y148{bottom:9.407794pt;}
.y23e{bottom:12.059351pt;}
.y15d{bottom:15.097856pt;}
.y1e6{bottom:15.329165pt;}
.y1a4{bottom:15.612173pt;}
.y10b{bottom:19.737059pt;}
.yaf{bottom:20.480000pt;}
.y238{bottom:21.953751pt;}
.y129{bottom:24.160151pt;}
.y176{bottom:24.771536pt;}
.y23d{bottom:29.348988pt;}
.y6{bottom:31.933340pt;}
.y10a{bottom:35.245126pt;}
.yba{bottom:37.280000pt;}
.yb8{bottom:37.440000pt;}
.y237{bottom:39.357587pt;}
.y128{bottom:43.546939pt;}
.y175{bottom:44.241739pt;}
.y2a2{bottom:46.074667pt;}
.y109{bottom:50.753192pt;}
.y37{bottom:51.040000pt;}
.y236{bottom:56.788831pt;}
.y5{bottom:59.133337pt;}
.y174{bottom:63.711942pt;}
.y2a1{bottom:64.474667pt;}
.y108{bottom:66.286892pt;}
.y36{bottom:69.472000pt;}
.y235{bottom:74.192667pt;}
.y107{bottom:81.794959pt;}
.y2a0{bottom:82.874667pt;}
.y173{bottom:83.150016pt;}
.y4{bottom:86.333337pt;}
.y106{bottom:97.303026pt;}
.y230{bottom:100.032000pt;}
.ye8{bottom:101.152000pt;}
.y172{bottom:102.620218pt;}
.y144{bottom:104.352000pt;}
.y2a3{bottom:107.232000pt;}
.y105{bottom:112.812160pt;}
.y17e{bottom:119.072000pt;}
.y29f{bottom:119.552000pt;}
.yc6{bottom:121.152000pt;}
.y22f{bottom:121.312000pt;}
.y1e7{bottom:121.457613pt;}
.y171{bottom:122.090421pt;}
.y22d{bottom:122.182615pt;}
.y7e{bottom:122.752000pt;}
.y23{bottom:123.790666pt;}
.y19f{bottom:124.192000pt;}
.yab{bottom:125.792000pt;}
.y17f{bottom:125.952000pt;}
.y104{bottom:128.320227pt;}
.ye7{bottom:128.672000pt;}
.y66{bottom:128.832000pt;}
.y115{bottom:131.712000pt;}
.y143{bottom:131.872000pt;}
.y29e{bottom:132.032000pt;}
.y22c{bottom:134.715667pt;}
.y103{bottom:143.828294pt;}
.y16c{bottom:145.466667pt;}
.y17d{bottom:146.586667pt;}
.y276{bottom:147.226667pt;}
.y22a{bottom:147.248295pt;}
.y65{bottom:147.866667pt;}
.yc5{bottom:148.826667pt;}
.y114{bottom:150.106667pt;}
.y29d{bottom:150.426667pt;}
.y19e{bottom:151.706667pt;}
.y142{bottom:152.666667pt;}
.ye6{bottom:156.346667pt;}
.y7d{bottom:159.546667pt;}
.yaa{bottom:162.586667pt;}
.y96{bottom:165.626667pt;}
.y113{bottom:168.506667pt;}
.y64{bottom:168.826667pt;}
.y229{bottom:172.334266pt;}
.y16b{bottom:173.146667pt;}
.y141{bottom:173.626667pt;}
.y17c{bottom:174.266667pt;}
.y1a{bottom:175.052000pt;}
.yc4{bottom:176.346667pt;}
.y19d{bottom:179.386667pt;}
.ye5{bottom:183.866667pt;}
.y275{bottom:184.026667pt;}
.y228{bottom:184.866895pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y112{bottom:186.906667pt;}
.y63{bottom:187.226667pt;}
.y100{bottom:190.373855pt;}
.y7c{bottom:196.346667pt;}
.y227{bottom:197.399523pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.ya9{bottom:199.386667pt;}
.y16a{bottom:200.666667pt;}
.y140{bottom:201.146667pt;}
.y17b{bottom:201.786667pt;}
.y95{bottom:202.426667pt;}
.yc3{bottom:204.026667pt;}
.y111{bottom:205.306667pt;}
.y62{bottom:205.626667pt;}
.y19c{bottom:206.906667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y226{bottom:209.929562pt;}
.ye4{bottom:211.546667pt;}
.y274{bottom:220.826667pt;}
.yfe{bottom:221.389988pt;}
.y1e1{bottom:221.786667pt;}
.y225{bottom:222.462190pt;}
.y110{bottom:223.706667pt;}
.y61{bottom:224.026667pt;}
.y17a{bottom:225.466667pt;}
.y170{bottom:225.656401pt;}
.y169{bottom:228.346667pt;}
.y13f{bottom:228.666667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y7b{bottom:233.146667pt;}
.y19b{bottom:234.586667pt;}
.y224{bottom:234.994818pt;}
.ya8{bottom:236.186667pt;}
.yfd{bottom:236.898055pt;}
.y1e0{bottom:237.146667pt;}
.ye3{bottom:239.066667pt;}
.y94{bottom:239.226667pt;}
.y10f{bottom:242.106667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y60{bottom:242.426667pt;}
.y223{bottom:247.527446pt;}
.y1df{bottom:249.146667pt;}
.y1a5{bottom:249.324078pt;}
.y1de{bottom:250.062509pt;}
.yc2{bottom:250.266667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y168{bottom:255.866667pt;}
.y13e{bottom:256.346667pt;}
.y273{bottom:257.626667pt;}
.y222{bottom:260.060075pt;}
.y5f{bottom:260.826667pt;}
.y19a{bottom:262.106667pt;}
.y1dd{bottom:262.826515pt;}
.y10e{bottom:265.626667pt;}
.yf0{bottom:265.803306pt;}
.y10c{bottom:266.700456pt;}
.ye2{bottom:266.746667pt;}
.yfb{bottom:267.946230pt;}
.y7a{bottom:269.946667pt;}
.yc1{bottom:271.866667pt;}
.y221{bottom:272.592703pt;}
.ya7{bottom:272.986667pt;}
.y13d{bottom:274.906667pt;}
.y1dc{bottom:275.590522pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y93{bottom:276.026667pt;}
.y5e{bottom:279.226667pt;}
.y167{bottom:283.546667pt;}
.y220{bottom:285.125331pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y199{bottom:289.786667pt;}
.yc0{bottom:293.186667pt;}
.y13c{bottom:293.346667pt;}
.ye1{bottom:294.306667pt;}
.y272{bottom:294.466667pt;}
.y5d{bottom:297.346667pt;}
.y21f{bottom:297.657959pt;}
.y29c{bottom:297.666667pt;}
.yf9{bottom:298.962363pt;}
.y1db{bottom:301.139633pt;}
.y79{bottom:306.786667pt;}
.y11{bottom:309.452000pt;}
.ya6{bottom:309.826667pt;}
.y21e{bottom:310.190588pt;}
.ybf{bottom:310.786667pt;}
.y166{bottom:311.106667pt;}
.y92{bottom:312.866667pt;}
.y1da{bottom:313.903639pt;}
.yf8{bottom:314.470430pt;}
.y5c{bottom:316.066667pt;}
.y198{bottom:317.346667pt;}
.y13b{bottom:320.706667pt;}
.ye0{bottom:321.986667pt;}
.y21d{bottom:322.723216pt;}
.ybe{bottom:326.146667pt;}
.y1d9{bottom:326.667646pt;}
.yf7{bottom:329.978497pt;}
.y271{bottom:331.266667pt;}
.y5b{bottom:334.466667pt;}
.y21c{bottom:335.255844pt;}
.y165{bottom:338.786667pt;}
.y1d8{bottom:339.431652pt;}
.ybd{bottom:341.506667pt;}
.y78{bottom:343.586667pt;}
.y10{bottom:343.809333pt;}
.y197{bottom:345.026667pt;}
.yf6{bottom:345.507925pt;}
.ya5{bottom:346.626667pt;}
.y21b{bottom:347.814366pt;}
.y13a{bottom:348.386667pt;}
.ydf{bottom:349.506667pt;}
.y91{bottom:349.666667pt;}
.y1d7{bottom:352.195659pt;}
.y25e{bottom:352.226667pt;}
.y29b{bottom:352.866667pt;}
.y5a{bottom:353.346667pt;}
.ybc{bottom:356.866667pt;}
.y21a{bottom:360.346994pt;}
.yf5{bottom:361.015991pt;}
.y178{bottom:362.362861pt;}
.yf{bottom:362.706666pt;}
.y1d6{bottom:364.959665pt;}
.y164{bottom:366.306667pt;}
.y270{bottom:368.066667pt;}
.y29a{bottom:371.266667pt;}
.ybb{bottom:371.906667pt;}
.y196{bottom:372.546667pt;}
.y219{bottom:372.879623pt;}
.y59{bottom:374.306667pt;}
.y139{bottom:375.906667pt;}
.yf4{bottom:376.524058pt;}
.yde{bottom:377.186667pt;}
.y1d5{bottom:377.723672pt;}
.y25d{bottom:377.826667pt;}
.y77{bottom:380.386667pt;}
.ya4{bottom:383.426667pt;}
.yb9{bottom:384.866667pt;}
.y218{bottom:385.412251pt;}
.y90{bottom:386.466667pt;}
.y299{bottom:389.506667pt;}
.y1d4{bottom:390.487678pt;}
.yf3{bottom:392.032125pt;}
.y58{bottom:392.706667pt;}
.y163{bottom:393.986667pt;}
.y16f{bottom:395.586667pt;}
.y217{bottom:397.944879pt;}
.y195{bottom:400.226667pt;}
.y25c{bottom:400.866667pt;}
.y1d3{bottom:403.251685pt;}
.y138{bottom:403.586667pt;}
.ydd{bottom:404.706667pt;}
.y26f{bottom:404.866667pt;}
.yf2{bottom:407.540191pt;}
.y298{bottom:407.906667pt;}
.y216{bottom:410.477507pt;}
.y57{bottom:411.106667pt;}
.y16e{bottom:413.826667pt;}
.y1d2{bottom:416.015691pt;}
.y76{bottom:417.186667pt;}
.ya3{bottom:420.226667pt;}
.y162{bottom:421.506667pt;}
.y102{bottom:421.828716pt;}
.y215{bottom:423.010136pt;}
.yf1{bottom:423.080300pt;}
.y8f{bottom:423.266667pt;}
.y25b{bottom:425.826667pt;}
.y297{bottom:426.306667pt;}
.y194{bottom:427.746667pt;}
.y1d1{bottom:428.779698pt;}
.y56{bottom:429.506667pt;}
.ye{bottom:430.990669pt;}
.y137{bottom:431.106667pt;}
.y16d{bottom:432.226667pt;}
.ydc{bottom:432.386667pt;}
.y214{bottom:435.542764pt;}
.yb7{bottom:436.066667pt;}
.y101{bottom:437.336783pt;}
.y257{bottom:441.315304pt;}
.y1d0{bottom:441.543704pt;}
.y26e{bottom:441.666667pt;}
.y296{bottom:444.706667pt;}
.yd{bottom:446.990669pt;}
.y55{bottom:447.906667pt;}
.y213{bottom:448.075392pt;}
.y161{bottom:449.186667pt;}
.y75{bottom:453.986667pt;}
.y1cf{bottom:454.325292pt;}
.y256{bottom:454.949920pt;}
.y193{bottom:455.426667pt;}
.ya2{bottom:457.026667pt;}
.y136{bottom:458.786667pt;}
.ydb{bottom:459.906667pt;}
.y8e{bottom:460.066667pt;}
.y212{bottom:460.608020pt;}
.yc{bottom:462.990669pt;}
.y295{bottom:463.106667pt;}
.y54{bottom:466.306667pt;}
.y1ce{bottom:467.089299pt;}
.yff{bottom:468.352916pt;}
.y255{bottom:468.584132pt;}
.y15c{bottom:472.880000pt;}
.y211{bottom:473.140649pt;}
.y26d{bottom:478.466667pt;}
.yb{bottom:478.990666pt;}
.y1cd{bottom:479.853305pt;}
.y160{bottom:480.866667pt;}
.y294{bottom:481.506667pt;}
.y254{bottom:482.240880pt;}
.y192{bottom:482.946667pt;}
.y53{bottom:484.706667pt;}
.y210{bottom:485.673277pt;}
.y135{bottom:486.306667pt;}
.yb6{bottom:487.426667pt;}
.yda{bottom:487.586667pt;}
.y74{bottom:490.786667pt;}
.y1cc{bottom:492.617312pt;}
.ya1{bottom:493.826667pt;}
.ya{bottom:494.990666pt;}
.y253{bottom:495.875093pt;}
.y8d{bottom:496.866667pt;}
.y20f{bottom:498.205905pt;}
.y293{bottom:499.906667pt;}
.y52{bottom:503.106667pt;}
.y1cb{bottom:505.381318pt;}
.y252{bottom:509.509305pt;}
.y191{bottom:510.626667pt;}
.y20e{bottom:510.738533pt;}
.y15b{bottom:511.266667pt;}
.y134{bottom:513.986667pt;}
.yfc{bottom:514.909158pt;}
.yd9{bottom:515.106667pt;}
.y26c{bottom:515.266667pt;}
.y1ca{bottom:518.145325pt;}
.y292{bottom:518.306667pt;}
.y51{bottom:521.506667pt;}
.yb4{bottom:521.826667pt;}
.y250{bottom:523.143517pt;}
.y20d{bottom:523.271162pt;}
.y73{bottom:527.586667pt;}
.ya0{bottom:530.653333pt;}
.y1c9{bottom:530.909331pt;}
.y8c{bottom:533.693333pt;}
.y20c{bottom:535.821052pt;}
.y291{bottom:536.733333pt;}
.y24f{bottom:536.801204pt;}
.y190{bottom:538.173333pt;}
.y15a{bottom:538.813333pt;}
.yb3{bottom:539.293333pt;}
.y50{bottom:539.933333pt;}
.y133{bottom:541.533333pt;}
.yd8{bottom:542.813333pt;}
.y1c8{bottom:543.673338pt;}
.yfa{bottom:545.925291pt;}
.y20b{bottom:548.353681pt;}
.y24e{bottom:550.435416pt;}
.y26b{bottom:552.093333pt;}
.y290{bottom:555.133333pt;}
.y1c7{bottom:556.437344pt;}
.y4f{bottom:558.333333pt;}
.y20a{bottom:560.886309pt;}
.y24d{bottom:564.069629pt;}
.y72{bottom:564.413333pt;}
.y18f{bottom:565.693333pt;}
.y159{bottom:566.493333pt;}
.y9f{bottom:567.453333pt;}
.y1c6{bottom:569.201351pt;}
.y132{bottom:569.213333pt;}
.yd7{bottom:570.333333pt;}
.y8b{bottom:570.493333pt;}
.y209{bottom:573.418937pt;}
.y28f{bottom:573.533333pt;}
.yb2{bottom:573.693333pt;}
.y9{bottom:573.786667pt;}
.y4e{bottom:576.733333pt;}
.y24c{bottom:577.703841pt;}
.y1c5{bottom:581.965357pt;}
.y208{bottom:585.951565pt;}
.y26a{bottom:588.893333pt;}
.y24b{bottom:591.356833pt;}
.y28e{bottom:591.933333pt;}
.y8{bottom:592.685334pt;}
.y18e{bottom:593.373333pt;}
.y158{bottom:594.013333pt;}
.y1c4{bottom:594.729364pt;}
.y4d{bottom:595.133333pt;}
.y131{bottom:596.733333pt;}
.yd6{bottom:598.013333pt;}
.y207{bottom:598.484194pt;}
.y71{bottom:601.213333pt;}
.y9e{bottom:604.253333pt;}
.y24a{bottom:604.991045pt;}
.y8a{bottom:607.293333pt;}
.y1c3{bottom:607.519742pt;}
.yb1{bottom:608.093333pt;}
.y28d{bottom:610.333333pt;}
.y206{bottom:611.016822pt;}
.y4c{bottom:613.533333pt;}
.y249{bottom:618.625257pt;}
.y1c2{bottom:620.283749pt;}
.y18d{bottom:620.893333pt;}
.y157{bottom:621.693333pt;}
.y205{bottom:623.549450pt;}
.y130{bottom:624.413333pt;}
.yd5{bottom:625.533333pt;}
.y269{bottom:625.693333pt;}
.y28c{bottom:628.733333pt;}
.y4b{bottom:631.933333pt;}
.y248{bottom:632.259470pt;}
.y1c1{bottom:633.047755pt;}
.y204{bottom:636.082078pt;}
.y70{bottom:638.013333pt;}
.y9d{bottom:641.053333pt;}
.yae{bottom:642.493333pt;}
.y89{bottom:644.093333pt;}
.y7{bottom:645.598667pt;}
.y1c0{bottom:645.811762pt;}
.y247{bottom:645.921852pt;}
.y28b{bottom:647.133333pt;}
.y18c{bottom:648.573333pt;}
.y203{bottom:648.614707pt;}
.y156{bottom:649.213333pt;}
.y4a{bottom:650.333333pt;}
.y12f{bottom:651.933333pt;}
.yd4{bottom:653.213333pt;}
.y1bf{bottom:658.575768pt;}
.y246{bottom:659.556064pt;}
.y202{bottom:661.147335pt;}
.y35{bottom:661.546402pt;}
.y268{bottom:662.493333pt;}
.y28a{bottom:665.533333pt;}
.y49{bottom:668.733333pt;}
.y3{bottom:668.977329pt;}
.y1be{bottom:671.339775pt;}
.y244{bottom:673.190276pt;}
.y201{bottom:673.679963pt;}
.y6f{bottom:674.813333pt;}
.y18b{bottom:676.093333pt;}
.y155{bottom:676.893333pt;}
.y34{bottom:677.066396pt;}
.y9c{bottom:677.853333pt;}
.y12e{bottom:679.613333pt;}
.yd3{bottom:680.733333pt;}
.y88{bottom:680.893333pt;}
.y289{bottom:683.933333pt;}
.y1bd{bottom:684.103781pt;}
.y200{bottom:686.212591pt;}
.y259{bottom:686.373771pt;}
.y48{bottom:687.133333pt;}
.yad{bottom:690.013333pt;}
.y1a6{bottom:692.846466pt;}
.y33{bottom:694.026389pt;}
.y1bc{bottom:696.867788pt;}
.y12d{bottom:698.333333pt;}
.y1ff{bottom:698.745220pt;}
.y267{bottom:699.293333pt;}
.yef{bottom:701.059361pt;}
.y288{bottom:702.333333pt;}
.y18a{bottom:703.773333pt;}
.y154{bottom:704.413333pt;}
.y47{bottom:705.373333pt;}
.yd2{bottom:708.413333pt;}
.y1bb{bottom:709.631794pt;}
.y1fd{bottom:711.277848pt;}
.y6e{bottom:711.613333pt;}
.y32{bottom:712.746382pt;}
.y9b{bottom:714.653333pt;}
.yed{bottom:716.567427pt;}
.yac{bottom:717.533333pt;}
.y87{bottom:717.693333pt;}
.y12c{bottom:719.613333pt;}
.y287{bottom:720.733333pt;}
.y1ba{bottom:722.395801pt;}
.y46{bottom:723.773333pt;}
.y1fc{bottom:723.827739pt;}
.y189{bottom:731.293333pt;}
.y243{bottom:731.453333pt;}
.y31{bottom:731.466374pt;}
.y153{bottom:732.093333pt;}
.y1b9{bottom:735.159808pt;}
.yec{bottom:735.773333pt;}
.yd1{bottom:735.933333pt;}
.y266{bottom:736.093333pt;}
.y1fb{bottom:736.360367pt;}
.y12b{bottom:738.013333pt;}
.y286{bottom:739.133333pt;}
.y45{bottom:742.173333pt;}
.y1b7{bottom:747.923814pt;}
.y6d{bottom:748.413333pt;}
.y1fa{bottom:748.892995pt;}
.y242{bottom:749.853333pt;}
.y9a{bottom:751.453333pt;}
.y12a{bottom:752.413333pt;}
.y30{bottom:753.386365pt;}
.y124{bottom:753.686248pt;}
.yeb{bottom:754.173333pt;}
.y86{bottom:754.493333pt;}
.y285{bottom:757.533333pt;}
.y188{bottom:758.973333pt;}
.y152{bottom:759.613333pt;}
.y44{bottom:760.573333pt;}
.y1b6{bottom:760.705402pt;}
.y1f9{bottom:761.425623pt;}
.yd0{bottom:763.613333pt;}
.y241{bottom:768.293333pt;}
.yea{bottom:772.613333pt;}
.y265{bottom:772.933333pt;}
.y1b5{bottom:773.469408pt;}
.y1f8{bottom:773.958252pt;}
.y284{bottom:775.973333pt;}
.y43{bottom:779.013333pt;}
.y123{bottom:779.798838pt;}
.y2{bottom:781.661334pt;}
.y2f{bottom:783.786353pt;}
.y6c{bottom:785.253333pt;}
.y1b4{bottom:786.233415pt;}
.y1f7{bottom:786.490880pt;}
.y187{bottom:786.533333pt;}
.y240{bottom:786.693333pt;}
.y151{bottom:787.333333pt;}
.ye9{bottom:791.013333pt;}
.ycf{bottom:791.173333pt;}
.y85{bottom:791.333333pt;}
.y283{bottom:794.373333pt;}
.y42{bottom:798.053333pt;}
.y1b3{bottom:798.997421pt;}
.y1f6{bottom:799.023508pt;}
.y23f{bottom:805.093333pt;}
.y122{bottom:805.879001pt;}
.y99{bottom:806.853333pt;}
.y264{bottom:809.733333pt;}
.y1f5{bottom:811.556136pt;}
.y1b2{bottom:811.761428pt;}
.y282{bottom:812.773333pt;}
.y186{bottom:814.213333pt;}
.y2e{bottom:814.346341pt;}
.y150{bottom:814.853333pt;}
.yce{bottom:818.853333pt;}
.y41{bottom:819.493333pt;}
.y234{bottom:820.081170pt;}
.y6b{bottom:822.053333pt;}
.y1f4{bottom:824.088764pt;}
.y1b1{bottom:824.525434pt;}
.y84{bottom:828.133333pt;}
.y98{bottom:828.293333pt;}
.y1e8{bottom:830.676289pt;}
.y281{bottom:831.173333pt;}
.y121{bottom:831.991165pt;}
.y1f3{bottom:836.621393pt;}
.y1b0{bottom:837.289441pt;}
.y40{bottom:841.573333pt;}
.y185{bottom:841.733333pt;}
.y14f{bottom:842.533333pt;}
.y2d{bottom:844.746329pt;}
.ycd{bottom:846.373333pt;}
.y263{bottom:846.533333pt;}
.y1f2{bottom:849.154021pt;}
.y280{bottom:849.573333pt;}
.y1af{bottom:850.053447pt;}
.y11f{bottom:858.071328pt;}
.y6a{bottom:858.853333pt;}
.y1{bottom:859.312000pt;}
.y1f1{bottom:861.686649pt;}
.y1ae{bottom:862.817454pt;}
.y83{bottom:864.933333pt;}
.y97{bottom:866.053333pt;}
.y27f{bottom:867.973333pt;}
.y184{bottom:869.413333pt;}
.y14e{bottom:870.053333pt;}
.y2c{bottom:872.266318pt;}
.y3f{bottom:872.293333pt;}
.ycc{bottom:874.053333pt;}
.y1f0{bottom:874.219277pt;}
.y1ad{bottom:875.581461pt;}
.y262{bottom:883.333333pt;}
.y11d{bottom:884.183491pt;}
.y27e{bottom:886.373333pt;}
.y1ef{bottom:886.751906pt;}
.y2b{bottom:888.266311pt;}
.y1ac{bottom:888.345467pt;}
.y3e{bottom:890.693333pt;}
.y69{bottom:895.653333pt;}
.y183{bottom:896.933333pt;}
.y14d{bottom:897.733333pt;}
.y1ed{bottom:899.284534pt;}
.y1aa{bottom:901.109474pt;}
.ycb{bottom:901.573333pt;}
.y82{bottom:901.733333pt;}
.y2a{bottom:904.266305pt;}
.y27d{bottom:904.773333pt;}
.y232{bottom:908.142090pt;}
.y3d{bottom:909.093333pt;}
.y126{bottom:909.654317pt;}
.y11b{bottom:910.294321pt;}
.y1ec{bottom:911.843056pt;}
.y1a9{bottom:913.899852pt;}
.y261{bottom:920.133333pt;}
.y29{bottom:920.266299pt;}
.y3c{bottom:921.253333pt;}
.y147{bottom:921.346667pt;}
.y27c{bottom:923.173333pt;}
.y1eb{bottom:924.375684pt;}
.y182{bottom:924.613333pt;}
.y23c{bottom:924.997774pt;}
.y1a7{bottom:926.663859pt;}
.yca{bottom:929.253333pt;}
.y14c{bottom:930.693333pt;}
.y68{bottom:932.453333pt;}
.y28{bottom:936.266292pt;}
.y1e9{bottom:936.908313pt;}
.y81{bottom:938.533333pt;}
.y27b{bottom:941.573333pt;}
.y119{bottom:945.174540pt;}
.y3b{bottom:945.253333pt;}
.y181{bottom:952.133333pt;}
.y27{bottom:952.266286pt;}
.y1a2{bottom:955.356501pt;}
.yc9{bottom:956.773333pt;}
.y260{bottom:956.933333pt;}
.y27a{bottom:959.973333pt;}
.y146{bottom:961.093333pt;}
.y1e4{bottom:965.080832pt;}
.y3a{bottom:966.373333pt;}
.y23a{bottom:968.050570pt;}
.y26{bottom:968.266279pt;}
.y118{bottom:975.013333pt;}
.y80{bottom:975.333333pt;}
.y279{bottom:978.373333pt;}
.y180{bottom:979.813333pt;}
.y25f{bottom:984.133333pt;}
.yc8{bottom:984.453333pt;}
.y25{bottom:984.586273pt;}
.y1a1{bottom:985.253333pt;}
.y39{bottom:987.813333pt;}
.y145{bottom:988.773333pt;}
.y117{bottom:993.413333pt;}
.y1e3{bottom:993.733333pt;}
.y231{bottom:994.373333pt;}
.y278{bottom:996.453333pt;}
.y24{bottom:1001.386266pt;}
.y38{bottom:1009.280000pt;}
.y67{bottom:1009.600000pt;}
.y1a0{bottom:1011.680000pt;}
.y116{bottom:1011.840000pt;}
.yc7{bottom:1012.000000pt;}
.y7f{bottom:1012.160000pt;}
.y1e2{bottom:1012.800000pt;}
.y2a4{bottom:1014.187067pt;}
.y277{bottom:1014.560000pt;}
.h48{height:11.704025pt;}
.h49{height:11.724740pt;}
.h42{height:11.920105pt;}
.h43{height:11.941203pt;}
.h51{height:12.732777pt;}
.h54{height:12.755313pt;}
.h22{height:14.482740pt;}
.h4a{height:16.307531pt;}
.h1c{height:16.832000pt;}
.h3c{height:18.827622pt;}
.h4e{height:20.994234pt;}
.h44{height:24.236653pt;}
.h3e{height:24.684112pt;}
.h2b{height:24.800155pt;}
.h26{height:24.832155pt;}
.h34{height:25.266238pt;}
.h2e{height:26.732689pt;}
.h47{height:27.358481pt;}
.h45{height:27.674872pt;}
.h41{height:27.863576pt;}
.h3f{height:28.185808pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h52{height:29.763218pt;}
.h53{height:30.107418pt;}
.h23{height:32.241719pt;}
.h28{height:33.600210pt;}
.h1b{height:33.760000pt;}
.h35{height:36.632629pt;}
.h3a{height:38.281886pt;}
.h3b{height:38.724602pt;}
.h5a{height:39.030469pt;}
.h2d{height:39.840000pt;}
.h29{height:40.250252pt;}
.h55{height:40.474455pt;}
.h7{height:40.853333pt;}
.h16{height:42.084375pt;}
.h2a{height:42.262764pt;}
.h27{height:42.751518pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h4f{height:43.057364pt;}
.h3d{height:43.343750pt;}
.h50{height:43.375000pt;}
.h24{height:44.379425pt;}
.h38{height:44.411933pt;}
.h56{height:44.468750pt;}
.h37{height:46.969282pt;}
.ha{height:47.109356pt;}
.h33{height:47.205063pt;}
.h2{height:49.024000pt;}
.h1f{height:50.560000pt;}
.h1d{height:50.720000pt;}
.h21{height:52.134375pt;}
.h20{height:53.535000pt;}
.h4b{height:53.798152pt;}
.h4d{height:55.243475pt;}
.h1e{height:57.758750pt;}
.h19{height:57.787500pt;}
.h2f{height:58.894769pt;}
.h10{height:60.269976pt;}
.he{height:60.299976pt;}
.h2c{height:60.352378pt;}
.h1a{height:62.781250pt;}
.hc{height:62.812475pt;}
.h12{height:62.812500pt;}
.h31{height:63.017976pt;}
.h18{height:64.500000pt;}
.hf{height:65.324974pt;}
.hb{height:67.837473pt;}
.h5{height:69.450667pt;}
.h30{height:71.400452pt;}
.h57{height:71.524375pt;}
.h17{height:73.490625pt;}
.h13{height:75.465000pt;}
.h36{height:78.767499pt;}
.h32{height:79.131869pt;}
.h14{height:81.645938pt;}
.h15{height:83.499062pt;}
.hd{height:94.169962pt;}
.h58{height:97.280000pt;}
.h4{height:105.826671pt;}
.h39{height:155.531365pt;}
.h4c{height:168.967951pt;}
.h59{height:199.115625pt;}
.h25{height:465.242002pt;}
.h40{height:730.713001pt;}
.h46{height:867.858612pt;}
.h0{height:1122.518667pt;}
.h11{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wc{width:66.535633pt;}
.w13{width:79.478103pt;}
.wf{width:83.581367pt;}
.we{width:83.602107pt;}
.w11{width:84.006340pt;}
.w1a{width:96.754236pt;}
.w19{width:96.771650pt;}
.w17{width:97.341733pt;}
.wa{width:118.912550pt;}
.w9{width:181.347505pt;}
.w16{width:194.685515pt;}
.w7{width:246.194374pt;}
.w15{width:292.023152pt;}
.wb{width:433.264292pt;}
.w8{width:460.642130pt;}
.wd{width:523.057588pt;}
.w2{width:566.928019pt;}
.w6{width:569.552081pt;}
.w12{width:572.698472pt;}
.w10{width:576.557324pt;}
.w14{width:603.706337pt;}
.w18{width:603.721354pt;}
.w5{width:613.893333pt;}
.w1b{width:666.213333pt;}
.w3{width:793.333333pt;}
.w1c{width:793.626667pt;}
.w0{width:793.700000pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1a{left:1.173091pt;}
.x22{left:2.560012pt;}
.x19{left:6.880000pt;}
.x36{left:8.088519pt;}
.x49{left:9.952891pt;}
.x2c{left:12.600827pt;}
.x2b{left:15.815109pt;}
.x4f{left:16.822281pt;}
.x3f{left:17.888962pt;}
.x46{left:19.045656pt;}
.x39{left:20.189369pt;}
.x3a{left:22.858079pt;}
.x2e{left:24.597223pt;}
.x33{left:29.346808pt;}
.x4a{left:32.316178pt;}
.x53{left:34.166993pt;}
.x4c{left:37.108310pt;}
.x47{left:40.917442pt;}
.x24{left:45.122894pt;}
.x2d{left:47.985325pt;}
.x2a{left:60.140459pt;}
.x44{left:64.171573pt;}
.x54{left:75.680000pt;}
.x18{left:89.152000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x10{left:96.032000pt;}
.x1f{left:97.360006pt;}
.x1b{left:106.572079pt;}
.x11{left:108.352000pt;}
.x2f{left:117.715610pt;}
.x25{left:121.881908pt;}
.x15{left:124.512000pt;}
.x17{left:133.786667pt;}
.x12{left:147.546667pt;}
.x14{left:163.226667pt;}
.x4{left:180.874667pt;}
.x3c{left:182.071752pt;}
.x3b{left:183.928245pt;}
.x3d{left:184.856492pt;}
.x41{left:197.059308pt;}
.x40{left:200.544171pt;}
.x1c{left:202.261048pt;}
.x43{left:213.692046pt;}
.x4e{left:216.465535pt;}
.x6{left:230.399908pt;}
.x27{left:237.048332pt;}
.x30{left:239.396165pt;}
.x7{left:242.719903pt;}
.x8{left:261.759895pt;}
.x28{left:269.735490pt;}
.xe{left:270.719892pt;}
.x21{left:278.707511pt;}
.x20{left:302.814734pt;}
.x48{left:311.039923pt;}
.x50{left:313.245892pt;}
.x31{left:323.003457pt;}
.x9{left:340.799864pt;}
.xc{left:346.879861pt;}
.x16{left:364.413333pt;}
.x13{left:396.093333pt;}
.x3{left:404.408000pt;}
.x32{left:406.602107pt;}
.x4b{left:408.377560pt;}
.x51{left:410.017542pt;}
.x26{left:423.311982pt;}
.xd{left:437.119825pt;}
.xb{left:443.519823pt;}
.xa{left:450.239820pt;}
.x34{left:490.209399pt;}
.x45{left:505.725438pt;}
.x52{left:506.797899pt;}
.x29{left:529.413333pt;}
.x23{left:558.213333pt;}
.x35{left:573.790766pt;}
.x38{left:588.727677pt;}
.x4d{left:603.063075pt;}
.x5{left:627.999749pt;}
.x37{left:657.920000pt;}
.x1d{left:666.560000pt;}
.x42{left:669.920000pt;}
.x3e{left:673.760000pt;}
.x1e{left:680.160000pt;}
.xf{left:688.160000pt;}
}




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