
    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_1b83507218e2081709607a8f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f272b80877b576597e02325b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.191000;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_a5d00ac837cd30528667805f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b7dbb8fa93f4d79b1374145d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.710000;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_80cf3af60bff1d7abd9a8f58.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.763000;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_441d0d61e51fb8b1b68d8e0a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.803000;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_bdd364faa4c16c7444d62064.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b7777f4de73ac363a7e4e380.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_da7e70457c6296d603198686.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_42d85a0eef3c6e71a0d64824.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.221680;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_13a6b1aa6144285328922501.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_34ba6321564727e01512677a.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_aa73774bd66861fbee8ea920.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.221680;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_b7777f4de73ac363a7e4e380.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_ecaf30849108dc1ce1038a71.woff2')format("woff");}.fff{font-family:fff;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_69466c5489505622c53b7a35.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.221680;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_4f8ec90d743fab9e3b3b4ce4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.734000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m8{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:14.204799px;}
.v5{vertical-align:15.389498px;}
.v8{vertical-align:19.530000px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:31.308000px;}
.v6{vertical-align:32.874000px;}
.v4{vertical-align:37.488000px;}
.ls7{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000845px;}
.ls22{letter-spacing:0.001155px;}
.ls1c{letter-spacing:0.001502px;}
.ls12{letter-spacing:0.001555px;}
.ls2c{letter-spacing:0.001584px;}
.ls23{letter-spacing:0.002573px;}
.ls1f{letter-spacing:0.004800px;}
.ls16{letter-spacing:0.045657px;}
.lsf{letter-spacing:0.048060px;}
.lsd{letter-spacing:0.049502px;}
.ls10{letter-spacing:0.054000px;}
.ls17{letter-spacing:0.102600px;}
.ls2a{letter-spacing:0.520800px;}
.ls1{letter-spacing:2.989200px;}
.ls3{letter-spacing:2.998354px;}
.ls2b{letter-spacing:3.531945px;}
.ls0{letter-spacing:10.461300px;}
.ls13{letter-spacing:11.297588px;}
.ls6{letter-spacing:11.954850px;}
.ls18{letter-spacing:12.433325px;}
.ls29{letter-spacing:12.723869px;}
.ls1d{letter-spacing:13.220988px;}
.ls2f{letter-spacing:13.369032px;}
.ls2e{letter-spacing:13.404131px;}
.ls19{letter-spacing:13.448400px;}
.ls1a{letter-spacing:13.454400px;}
.ls1b{letter-spacing:13.457120px;}
.ls26{letter-spacing:13.547385px;}
.ls2d{letter-spacing:13.587135px;}
.ls25{letter-spacing:13.693257px;}
.lsc{letter-spacing:14.094088px;}
.lsb{letter-spacing:14.100088px;}
.ls8{letter-spacing:14.120363px;}
.ls15{letter-spacing:14.704798px;}
.ls20{letter-spacing:14.885694px;}
.ls9{letter-spacing:15.663483px;}
.lsa{letter-spacing:15.688200px;}
.ls24{letter-spacing:16.156282px;}
.ls14{letter-spacing:16.199188px;}
.ls27{letter-spacing:16.420988px;}
.lse{letter-spacing:17.036046px;}
.ls28{letter-spacing:17.920988px;}
.ls21{letter-spacing:17.991576px;}
.ls1e{letter-spacing:18.197459px;}
.ls2{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.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;}
}
.ws2e{word-spacing:-14.943900px;}
.wsc{word-spacing:-14.355754px;}
.ws79{word-spacing:-13.500000px;}
.ws7c{word-spacing:-13.449600px;}
.ws94{word-spacing:-12.825000px;}
.ws69{word-spacing:-12.375450px;}
.ws77{word-spacing:-12.015000px;}
.wse{word-spacing:-11.955150px;}
.ws92{word-spacing:-11.414250px;}
.wsb{word-spacing:-11.357400px;}
.ws3{word-spacing:-10.460700px;}
.ws93{word-spacing:-8.550000px;}
.ws6a{word-spacing:-8.482050px;}
.ws78{word-spacing:-8.235000px;}
.ws7d{word-spacing:-3.646312px;}
.ws5b{word-spacing:-3.048556px;}
.ws54{word-spacing:-2.988780px;}
.ws4d{word-spacing:-2.689902px;}
.wsb5{word-spacing:-2.528525px;}
.wsa4{word-spacing:-2.510575px;}
.wsa1{word-spacing:-2.450800px;}
.wsce{word-spacing:-2.259533px;}
.ws9e{word-spacing:-2.092146px;}
.wsa5{word-spacing:-2.032370px;}
.ws8e{word-spacing:-1.972595px;}
.ws6b{word-spacing:-1.882944px;}
.wsa8{word-spacing:-1.793268px;}
.ws58{word-spacing:-1.673717px;}
.ws24{word-spacing:-1.554166px;}
.ws53{word-spacing:-1.494390px;}
.ws95{word-spacing:-1.452557px;}
.wsb2{word-spacing:-1.398758px;}
.wsaf{word-spacing:-1.344960px;}
.ws99{word-spacing:-1.315063px;}
.ws21{word-spacing:-1.255288px;}
.ws73{word-spacing:-1.237363px;}
.ws40{word-spacing:-1.195512px;}
.ws96{word-spacing:-1.183565px;}
.ws4c{word-spacing:-1.135736px;}
.wsb3{word-spacing:-1.129766px;}
.ws39{word-spacing:-1.075961px;}
.wsac{word-spacing:-1.022170px;}
.ws37{word-spacing:-1.016185px;}
.wsdd{word-spacing:-0.968371px;}
.ws3b{word-spacing:-0.896634px;}
.wsd3{word-spacing:-0.860774px;}
.ws49{word-spacing:-0.836858px;}
.wsa6{word-spacing:-0.777083px;}
.wsa0{word-spacing:-0.717307px;}
.ws87{word-spacing:-0.645581px;}
.ws88{word-spacing:-0.591782px;}
.ws7e{word-spacing:-0.537980px;}
.wsb1{word-spacing:-0.484186px;}
.ws33{word-spacing:-0.478205px;}
.ws97{word-spacing:-0.430387px;}
.ws44{word-spacing:-0.418429px;}
.ws3c{word-spacing:-0.358654px;}
.ws1a{word-spacing:-0.322790px;}
.ws48{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.268992px;}
.ws3a{word-spacing:-0.239102px;}
.ws15{word-spacing:-0.215194px;}
.ws26{word-spacing:-0.179327px;}
.ws14{word-spacing:-0.161395px;}
.ws29{word-spacing:-0.119551px;}
.ws16{word-spacing:-0.107597px;}
.ws31{word-spacing:-0.059776px;}
.ws1c{word-spacing:-0.053798px;}
.ws5e{word-spacing:-0.047821px;}
.wsd9{word-spacing:-0.009120px;}
.wse0{word-spacing:-0.008726px;}
.wsbd{word-spacing:-0.007037px;}
.wsdf{word-spacing:-0.006394px;}
.wse1{word-spacing:-0.006221px;}
.wsba{word-spacing:-0.006202px;}
.wscc{word-spacing:-0.004214px;}
.wsbf{word-spacing:-0.002909px;}
.ws2b{word-spacing:-0.002582px;}
.wsd4{word-spacing:-0.001133px;}
.ws1{word-spacing:0.000000px;}
.wscd{word-spacing:0.053798px;}
.ws32{word-spacing:0.059776px;}
.ws6f{word-spacing:0.107597px;}
.ws25{word-spacing:0.119551px;}
.ws17{word-spacing:0.161395px;}
.ws20{word-spacing:0.179327px;}
.ws6c{word-spacing:0.215194px;}
.ws2a{word-spacing:0.239102px;}
.ws70{word-spacing:0.268992px;}
.ws47{word-spacing:0.298878px;}
.ws98{word-spacing:0.322790px;}
.ws23{word-spacing:0.358654px;}
.ws11{word-spacing:0.430387px;}
.ws57{word-spacing:0.478205px;}
.wsde{word-spacing:0.484186px;}
.wsd{word-spacing:0.562186px;}
.wsb7{word-spacing:0.645581px;}
.ws41{word-spacing:0.657532px;}
.ws51{word-spacing:0.742234px;}
.ws10{word-spacing:0.753178px;}
.wsd0{word-spacing:0.806976px;}
.ws4b{word-spacing:0.836858px;}
.ws75{word-spacing:0.896634px;}
.ws3f{word-spacing:0.956410px;}
.ws43{word-spacing:1.075961px;}
.wsc3{word-spacing:1.075968px;}
.wsa9{word-spacing:1.135736px;}
.ws5f{word-spacing:1.195512px;}
.ws7f{word-spacing:1.255288px;}
.wsbc{word-spacing:1.291162px;}
.ws2d{word-spacing:1.315063px;}
.ws6d{word-spacing:1.398758px;}
.ws28{word-spacing:1.434614px;}
.wsc4{word-spacing:1.452557px;}
.ws9c{word-spacing:1.506355px;}
.wscb{word-spacing:1.560154px;}
.ws38{word-spacing:1.613941px;}
.ws83{word-spacing:1.613952px;}
.ws2c{word-spacing:1.673717px;}
.ws9b{word-spacing:1.775347px;}
.wsbe{word-spacing:1.829146px;}
.ws82{word-spacing:1.882944px;}
.wsca{word-spacing:1.936742px;}
.ws5c{word-spacing:1.972595px;}
.wsd6{word-spacing:1.990541px;}
.ws52{word-spacing:2.032370px;}
.ws74{word-spacing:2.092146px;}
.wsd1{word-spacing:2.098138px;}
.ws8d{word-spacing:2.211697px;}
.wsb9{word-spacing:2.259533px;}
.ws9f{word-spacing:2.271473px;}
.ws12{word-spacing:2.313331px;}
.ws68{word-spacing:2.391024px;}
.ws2{word-spacing:2.510281px;}
.ws0{word-spacing:2.511541px;}
.wsb8{word-spacing:2.528525px;}
.ws9a{word-spacing:2.570351px;}
.wsa3{word-spacing:2.630126px;}
.wsd2{word-spacing:2.689920px;}
.ws35{word-spacing:2.809453px;}
.ws7b{word-spacing:2.851315px;}
.wsf{word-spacing:2.869236px;}
.wsd7{word-spacing:2.958912px;}
.ws4e{word-spacing:2.988780px;}
.wsb0{word-spacing:3.066509px;}
.ws4a{word-spacing:3.168107px;}
.ws7a{word-spacing:3.174106px;}
.wsc2{word-spacing:3.218890px;}
.ws1e{word-spacing:3.219667px;}
.wsc1{word-spacing:3.220003px;}
.wsd5{word-spacing:3.222413px;}
.wsc5{word-spacing:3.223459px;}
.ws19{word-spacing:3.227904px;}
.wscf{word-spacing:3.281702px;}
.ws36{word-spacing:3.287658px;}
.wsda{word-spacing:3.335501px;}
.ws76{word-spacing:3.347434px;}
.ws34{word-spacing:3.466985px;}
.wsb6{word-spacing:3.496896px;}
.ws46{word-spacing:3.526760px;}
.ws13{word-spacing:3.550694px;}
.ws1f{word-spacing:3.586536px;}
.ws45{word-spacing:3.706087px;}
.ws6e{word-spacing:3.712090px;}
.ws3e{word-spacing:3.765863px;}
.wsae{word-spacing:3.765888px;}
.ws27{word-spacing:3.825638px;}
.ws66{word-spacing:3.885414px;}
.ws18{word-spacing:3.927283px;}
.wsa2{word-spacing:4.004965px;}
.wsd8{word-spacing:4.034880px;}
.ws81{word-spacing:4.244068px;}
.wse3{word-spacing:4.250074px;}
.ws22{word-spacing:4.303843px;}
.wsc6{word-spacing:4.303872px;}
.ws62{word-spacing:4.363619px;}
.ws8f{word-spacing:4.423394px;}
.wsdc{word-spacing:4.465267px;}
.ws3d{word-spacing:4.483170px;}
.wsc9{word-spacing:4.572864px;}
.wse2{word-spacing:4.626662px;}
.ws90{word-spacing:4.662497px;}
.wsb4{word-spacing:4.680461px;}
.ws60{word-spacing:4.722272px;}
.wsc0{word-spacing:4.734259px;}
.ws9{word-spacing:4.770079px;}
.ws80{word-spacing:4.782048px;}
.ws63{word-spacing:4.841824px;}
.wsa{word-spacing:4.853765px;}
.wsad{word-spacing:5.003251px;}
.wsab{word-spacing:5.164646px;}
.ws2f{word-spacing:5.200477px;}
.ws1d{word-spacing:5.272243px;}
.ws61{word-spacing:5.320028px;}
.wsaa{word-spacing:5.487437px;}
.ws91{word-spacing:5.499355px;}
.ws4f{word-spacing:5.977560px;}
.ws42{word-spacing:6.097111px;}
.ws59{word-spacing:6.156887px;}
.ws56{word-spacing:6.216662px;}
.ws55{word-spacing:6.515540px;}
.ws71{word-spacing:6.617203px;}
.ws5a{word-spacing:6.694867px;}
.ws67{word-spacing:6.754643px;}
.wsc7{word-spacing:6.939994px;}
.ws65{word-spacing:7.232848px;}
.ws72{word-spacing:7.424179px;}
.wsa7{word-spacing:7.651277px;}
.ws7{word-spacing:7.782761px;}
.ws50{word-spacing:7.830604px;}
.ws64{word-spacing:8.249033px;}
.wsbb{word-spacing:8.284954px;}
.ws5d{word-spacing:9.982525px;}
.ws5{word-spacing:12.176255px;}
.wsdb{word-spacing:14.256576px;}
.wsc8{word-spacing:14.471770px;}
.ws6{word-spacing:16.109478px;}
.ws30{word-spacing:19.785724px;}
.ws8{word-spacing:26.109907px;}
.ws4{word-spacing:26.840252px;}
.ws85{word-spacing:52.532419px;}
.ws8c{word-spacing:98.074483px;}
.ws86{word-spacing:130.676314px;}
.ws8a{word-spacing:139.253654px;}
.ws84{word-spacing:162.040781px;}
.ws8b{word-spacing:163.759997px;}
.ws89{word-spacing:241.232026px;}
.ws9d{word-spacing:260.707046px;}
._49{margin-left:-20.916580px;}
._8{margin-left:-6.684149px;}
._13{margin-left:-5.678682px;}
._4{margin-left:-4.644551px;}
._0{margin-left:-3.096367px;}
._2{margin-left:-1.506341px;}
._2f{width:1.269090px;}
._7{width:3.001712px;}
._32{width:4.074166px;}
._33{width:5.487415px;}
._30{width:6.950425px;}
._31{width:8.932283px;}
._34{width:10.158930px;}
._38{width:11.179359px;}
._1{width:12.218098px;}
._15{width:13.581012px;}
._b{width:14.740762px;}
._d{width:15.924298px;}
._a{width:17.174837px;}
._9{width:18.452851px;}
._e{width:20.443363px;}
._29{width:22.069147px;}
._f{width:23.432035px;}
._14{width:24.904667px;}
._3{width:25.946423px;}
._c{width:27.383371px;}
._39{width:28.512961px;}
._12{width:29.529146px;}
._5{width:30.587087px;}
._2b{width:31.979838px;}
._6{width:33.355008px;}
._2a{width:34.729624px;}
._35{width:36.206294px;}
._2c{width:37.299974px;}
._36{width:39.380429px;}
._47{width:42.500452px;}
._2d{width:43.815515px;}
._48{width:61.868160px;}
._3f{width:73.219622px;}
._42{width:84.863059px;}
._3e{width:103.830912px;}
._40{width:119.109658px;}
._3c{width:134.310790px;}
._41{width:197.332531px;}
._43{width:288.359424px;}
._3a{width:297.666547px;}
._1f{width:433.884096px;}
._3b{width:508.018291px;}
._1d{width:654.511334px;}
._23{width:701.296608px;}
._1a{width:724.246320px;}
._20{width:751.170840px;}
._1c{width:771.953242px;}
._1e{width:773.029210px;}
._1b{width:782.820518px;}
._17{width:791.011022px;}
._22{width:846.786816px;}
._21{width:860.236416px;}
._16{width:862.495949px;}
._3d{width:883.692518px;}
._25{width:886.005850px;}
._24{width:891.129542px;}
._45{width:927.000230px;}
._10{width:935.544967px;}
._28{width:941.633395px;}
._27{width:955.082995px;}
._26{width:968.532595px;}
._19{width:1788.527194px;}
._18{width:1867.420301px;}
._44{width:1943.800778px;}
._37{width:2046.026801px;}
._2e{width:2107.362415px;}
._46{width:2429.734907px;}
._11{width:2453.644907px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc1{color:rgb(14,15,14);}
.fc2{color:rgb(46,92,87);}
.fc0{color:rgb(0,0,0);}
.fs12{font-size:32.940000px;}
.fse{font-size:33.928200px;}
.fs15{font-size:34.200000px;}
.fs6{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs17{font-size:43.600200px;}
.fs5{font-size:45.429600px;}
.fs13{font-size:45.657000px;}
.fs7{font-size:47.820600px;}
.fsf{font-size:48.060000px;}
.fsb{font-size:49.501800px;}
.fs16{font-size:51.300000px;}
.fs8{font-size:53.798400px;}
.fs11{font-size:54.000000px;}
.fsd{font-size:55.620000px;}
.fsa{font-size:56.058000px;}
.fs1{font-size:56.694600px;}
.fs14{font-size:56.943000px;}
.fs3{font-size:59.775600px;}
.fs10{font-size:59.940000px;}
.fsc{font-size:61.738200px;}
.fs9{font-size:62.286600px;}
.fs2{font-size:71.813160px;}
.fs4{font-size:107.596800px;}
.y139{bottom:-409.255500px;}
.y1a7{bottom:-337.866075px;}
.y15f{bottom:-337.612215px;}
.y15e{bottom:-318.356490px;}
.y15d{bottom:-299.145720px;}
.y15c{bottom:-279.919965px;}
.y1ca{bottom:-266.725800px;}
.y15b{bottom:-260.709195px;}
.y1c9{bottom:-250.271325px;}
.y15a{bottom:-241.498425px;}
.y1c8{bottom:-233.855325px;}
.y159{bottom:-222.242700px;}
.y1c7{bottom:-217.400850px;}
.y158{bottom:-203.016945px;}
.y1c6{bottom:-200.984850px;}
.y1c5{bottom:-184.517550px;}
.y157{bottom:-183.806175px;}
.y1c4{bottom:-168.101550px;}
.y156{bottom:-164.595405px;}
.yf8{bottom:-154.935690px;}
.y1c3{bottom:-151.647075px;}
.y155{bottom:-145.324695px;}
.y1c2{bottom:-135.231075px;}
.y154{bottom:-126.113925px;}
.y1c1{bottom:-118.776600px;}
.y153{bottom:-106.903155px;}
.y1c0{bottom:-102.360600px;}
.y1bf{bottom:-85.893300px;}
.y152{bottom:-83.181900px;}
.y11b{bottom:-80.863755px;}
.y1be{bottom:-69.477300px;}
.y11a{bottom:-63.023640px;}
.y1bd{bottom:-53.022825px;}
.y151{bottom:-46.375500px;}
.y119{bottom:-45.225240px;}
.y1bc{bottom:-36.606825px;}
.y150{bottom:-29.095500px;}
.y118{bottom:-27.385125px;}
.y1bb{bottom:-20.152350px;}
.y14f{bottom:-6.638520px;}
.y117{bottom:-4.248178px;}
.y0{bottom:0.000000px;}
.y1ba{bottom:1.186783px;}
.y1a{bottom:2.692616px;}
.y19{bottom:21.969157px;}
.y4a{bottom:31.890000px;}
.y18{bottom:38.977537px;}
.y1ed{bottom:95.451000px;}
.y120{bottom:96.061500px;}
.y170{bottom:100.432500px;}
.y49{bottom:103.621500px;}
.y16{bottom:104.646000px;}
.y8f{bottom:107.641500px;}
.y221{bottom:112.221000px;}
.y90{bottom:113.065500px;}
.y1ec{bottom:114.280500px;}
.y11e{bottom:115.294500px;}
.y16f{bottom:119.262000px;}
.y11f{bottom:120.177000px;}
.y28a{bottom:121.762500px;}
.y48{bottom:122.449500px;}
.y15{bottom:122.535000px;}
.yf4{bottom:124.963500px;}
.y8e{bottom:126.471000px;}
.y220{bottom:131.050500px;}
.y225{bottom:131.895000px;}
.y1eb{bottom:133.110000px;}
.y28e{bottom:134.466000px;}
.y11d{bottom:134.527500px;}
.y16e{bottom:138.091500px;}
.y254{bottom:138.688500px;}
.y289{bottom:139.023000px;}
.y1a3{bottom:140.346000px;}
.y14{bottom:140.422500px;}
.y47{bottom:141.279000px;}
.yf3{bottom:143.793000px;}
.y8d{bottom:145.300500px;}
.y21f{bottom:149.880000px;}
.y28d{bottom:151.726500px;}
.y1ea{bottom:151.939500px;}
.y11c{bottom:153.760500px;}
.y253{bottom:155.949000px;}
.y288{bottom:156.283500px;}
.y16d{bottom:156.921000px;}
.y13{bottom:158.310000px;}
.y1a2{bottom:159.175500px;}
.y46{bottom:160.108500px;}
.yc0{bottom:162.336000px;}
.yf2{bottom:162.622500px;}
.y8c{bottom:164.130000px;}
.y21e{bottom:168.709500px;}
.y28c{bottom:168.987000px;}
.y1e9{bottom:170.769000px;}
.y252{bottom:173.208000px;}
.y287{bottom:173.544000px;}
.y16c{bottom:175.750500px;}
.y12{bottom:176.199000px;}
.y1a1{bottom:178.005000px;}
.y45{bottom:178.938000px;}
.yf5{bottom:179.178000px;}
.ybf{bottom:181.165500px;}
.yf1{bottom:181.452000px;}
.y8b{bottom:182.959500px;}
.y21d{bottom:187.539000px;}
.y224{bottom:188.383500px;}
.y1e8{bottom:189.598500px;}
.y251{bottom:190.468500px;}
.y286{bottom:190.804500px;}
.y11{bottom:194.086500px;}
.y16b{bottom:194.580000px;}
.y1a0{bottom:196.834500px;}
.y44{bottom:197.767500px;}
.ybe{bottom:199.995000px;}
.yf0{bottom:200.281500px;}
.y8a{bottom:201.789000px;}
.y21c{bottom:206.368500px;}
.y223{bottom:207.213000px;}
.y250{bottom:207.729000px;}
.y285{bottom:208.065000px;}
.y1e7{bottom:208.428000px;}
.y10{bottom:211.974000px;}
.y16a{bottom:213.409500px;}
.y19f{bottom:215.664000px;}
.y43{bottom:216.597000px;}
.ybd{bottom:218.824500px;}
.yef{bottom:219.111000px;}
.y89{bottom:220.618500px;}
.y24f{bottom:224.989500px;}
.y21b{bottom:225.198000px;}
.y284{bottom:225.325500px;}
.y1e5{bottom:227.257500px;}
.yf{bottom:229.863000px;}
.y169{bottom:232.239000px;}
.y1e6{bottom:232.681500px;}
.y19e{bottom:234.493500px;}
.y42{bottom:235.426500px;}
.ybc{bottom:237.654000px;}
.yee{bottom:237.940500px;}
.y88{bottom:239.446500px;}
.y24e{bottom:242.250000px;}
.y283{bottom:242.586000px;}
.y21a{bottom:244.027500px;}
.y1e4{bottom:246.087000px;}
.y168{bottom:251.068500px;}
.y19d{bottom:253.323000px;}
.y41{bottom:254.256000px;}
.ybb{bottom:256.483500px;}
.y87{bottom:258.276000px;}
.y24d{bottom:259.510500px;}
.y282{bottom:259.846500px;}
.yed{bottom:261.253500px;}
.y219{bottom:262.857000px;}
.y1e3{bottom:264.916500px;}
.y167{bottom:269.898000px;}
.y19c{bottom:272.152500px;}
.y40{bottom:273.085500px;}
.yba{bottom:275.313000px;}
.y86{bottom:277.105500px;}
.y24c{bottom:281.254500px;}
.y218{bottom:281.686500px;}
.y1e2{bottom:283.746000px;}
.y14e{bottom:284.370180px;}
.y166{bottom:288.727500px;}
.y19b{bottom:290.982000px;}
.y3f{bottom:291.915000px;}
.yb9{bottom:294.142500px;}
.y281{bottom:294.366000px;}
.yec{bottom:294.877500px;}
.y85{bottom:295.935000px;}
.ye{bottom:298.876500px;}
.y217{bottom:300.516000px;}
.y1e1{bottom:302.575500px;}
.y14d{bottom:303.595935px;}
.y165{bottom:307.557000px;}
.y19a{bottom:309.811500px;}
.y3e{bottom:310.744500px;}
.y280{bottom:311.626500px;}
.yb8{bottom:312.972000px;}
.yeb{bottom:313.707000px;}
.y84{bottom:314.764500px;}
.y24b{bottom:314.878500px;}
.yd{bottom:316.764000px;}
.y216{bottom:319.345500px;}
.y1e0{bottom:321.405000px;}
.y14c{bottom:322.851660px;}
.y164{bottom:326.386500px;}
.y199{bottom:328.641000px;}
.y27f{bottom:328.887000px;}
.yb7{bottom:331.801500px;}
.y24a{bottom:332.452500px;}
.yea{bottom:332.536500px;}
.y83{bottom:333.594000px;}
.y3d{bottom:334.057500px;}
.yc{bottom:334.653000px;}
.y215{bottom:338.175000px;}
.y1df{bottom:340.233000px;}
.y14b{bottom:342.062430px;}
.y163{bottom:345.216000px;}
.y27e{bottom:346.147500px;}
.y198{bottom:347.470500px;}
.y249{bottom:350.026500px;}
.yb6{bottom:350.631000px;}
.ye8{bottom:351.364500px;}
.y82{bottom:352.423500px;}
.yb{bottom:352.540500px;}
.ye9{bottom:356.790000px;}
.y214{bottom:357.004500px;}
.y1de{bottom:359.062500px;}
.y14a{bottom:361.273200px;}
.y27d{bottom:363.408000px;}
.y197{bottom:366.298500px;}
.y162{bottom:368.527500px;}
.yb5{bottom:369.460500px;}
.ye7{bottom:370.194000px;}
.y81{bottom:371.253000px;}
.y213{bottom:375.834000px;}
.y248{bottom:376.566000px;}
.y1b9{bottom:377.167176px;}
.y1dd{bottom:377.892000px;}
.y149{bottom:380.498955px;}
.y27c{bottom:380.668500px;}
.ya{bottom:380.889000px;}
.y116{bottom:382.680556px;}
.y196{bottom:385.128000px;}
.yb4{bottom:388.290000px;}
.ye6{bottom:389.023500px;}
.y80{bottom:390.082500px;}
.y247{bottom:394.140000px;}
.y212{bottom:394.663500px;}
.y1b8{bottom:395.417407px;}
.y1dc{bottom:396.721500px;}
.y27b{bottom:397.929000px;}
.y9{bottom:398.778000px;}
.y161{bottom:398.955000px;}
.y148{bottom:399.709725px;}
.y115{bottom:402.467649px;}
.y195{bottom:403.957500px;}
.yb2{bottom:407.119500px;}
.ye5{bottom:407.853000px;}
.y7f{bottom:408.912000px;}
.y3c{bottom:409.207500px;}
.yb3{bottom:412.543500px;}
.y211{bottom:413.493000px;}
.y1b7{bottom:413.681875px;}
.y27a{bottom:415.188000px;}
.y1db{bottom:415.551000px;}
.y160{bottom:418.188000px;}
.y147{bottom:418.965450px;}
.y246{bottom:420.681000px;}
.y114{bottom:422.301045px;}
.y8{bottom:425.631000px;}
.yb0{bottom:425.949000px;}
.ye4{bottom:426.682500px;}
.y194{bottom:427.270500px;}
.y7e{bottom:427.741500px;}
.yb1{bottom:431.373000px;}
.y1b6{bottom:431.932106px;}
.y210{bottom:432.322500px;}
.y279{bottom:432.448500px;}
.y146{bottom:438.191205px;}
.y245{bottom:438.255000px;}
.y113{bottom:442.103573px;}
.y7{bottom:443.520000px;}
.y136{bottom:443.607000px;}
.yaf{bottom:444.778500px;}
.ye3{bottom:445.512000px;}
.y7d{bottom:446.571000px;}
.y3b{bottom:446.596500px;}
.y1da{bottom:449.116500px;}
.y278{bottom:449.709000px;}
.y1b5{bottom:450.225045px;}
.y20e{bottom:451.152000px;}
.y244{bottom:455.829000px;}
.y20f{bottom:456.576000px;}
.y193{bottom:460.894500px;}
.y6{bottom:461.407500px;}
.y112{bottom:461.890666px;}
.y145{bottom:461.897475px;}
.yae{bottom:463.608000px;}
.y7c{bottom:465.400500px;}
.y3a{bottom:466.054500px;}
.y277{bottom:466.969500px;}
.y1d9{bottom:468.349500px;}
.y1b4{bottom:468.489512px;}
.ye2{bottom:468.825000px;}
.y20c{bottom:469.981500px;}
.y243{bottom:473.403000px;}
.y20d{bottom:475.405500px;}
.y5{bottom:479.295000px;}
.y192{bottom:479.724000px;}
.y111{bottom:481.677759px;}
.yad{bottom:482.437500px;}
.y7b{bottom:484.230000px;}
.y191{bottom:485.149500px;}
.y39{bottom:485.511000px;}
.y1b3{bottom:486.739744px;}
.y1d8{bottom:487.582500px;}
.y20b{bottom:488.811000px;}
.y241{bottom:490.978500px;}
.y242{bottom:495.859500px;}
.y4{bottom:497.184000px;}
.y190{bottom:498.553500px;}
.y144{bottom:498.714000px;}
.yac{bottom:501.267000px;}
.y110{bottom:501.480287px;}
.y276{bottom:501.490500px;}
.ye1{bottom:502.449000px;}
.y7a{bottom:503.059500px;}
.y38{bottom:504.969000px;}
.y1b2{bottom:504.989975px;}
.y1d7{bottom:506.815500px;}
.y20a{bottom:507.640500px;}
.y3{bottom:515.071500px;}
.y143{bottom:515.994000px;}
.y18f{bottom:517.383000px;}
.y240{bottom:517.518000px;}
.y275{bottom:518.751000px;}
.yab{bottom:520.095000px;}
.ye0{bottom:521.278500px;}
.y10f{bottom:521.313684px;}
.y78{bottom:521.889000px;}
.y1b1{bottom:523.282914px;}
.y37{bottom:524.425500px;}
.y1d6{bottom:526.048500px;}
.y209{bottom:526.468500px;}
.y79{bottom:527.313000px;}
.y2{bottom:532.959000px;}
.y142{bottom:533.314500px;}
.y23f{bottom:535.092000px;}
.y274{bottom:536.011500px;}
.y18e{bottom:536.212500px;}
.yaa{bottom:538.924500px;}
.ydf{bottom:540.108000px;}
.y77{bottom:540.718500px;}
.y10e{bottom:541.100777px;}
.y1b0{bottom:541.547381px;}
.y36{bottom:543.882000px;}
.y1d5{bottom:545.281500px;}
.y208{bottom:545.298000px;}
.y141{bottom:550.594500px;}
.y1{bottom:550.848000px;}
.y273{bottom:553.272000px;}
.y18d{bottom:555.042000px;}
.ya9{bottom:557.754000px;}
.yde{bottom:558.937500px;}
.y75{bottom:559.548000px;}
.y1af{bottom:559.797613px;}
.y10d{bottom:560.887870px;}
.y23e{bottom:561.633000px;}
.y35{bottom:563.340000px;}
.y207{bottom:564.127500px;}
.y1d4{bottom:564.514500px;}
.y76{bottom:564.972000px;}
.y140{bottom:567.915000px;}
.y272{bottom:570.531000px;}
.y18c{bottom:573.871500px;}
.y28b{bottom:575.413500px;}
.ya8{bottom:576.583500px;}
.ydc{bottom:577.767000px;}
.y1ae{bottom:578.047844px;}
.y74{bottom:578.377500px;}
.y23d{bottom:579.207000px;}
.y10c{bottom:580.690398px;}
.y34{bottom:582.796500px;}
.y206{bottom:582.957000px;}
.ydd{bottom:583.191000px;}
.y1d3{bottom:583.747500px;}
.y13f{bottom:585.195000px;}
.y271{bottom:587.791500px;}
.y18a{bottom:592.701000px;}
.ya7{bottom:595.413000px;}
.y1ad{bottom:596.312311px;}
.ydb{bottom:596.596500px;}
.y23c{bottom:596.781000px;}
.y72{bottom:597.207000px;}
.y18b{bottom:598.125000px;}
.y10b{bottom:600.523794px;}
.y205{bottom:601.786500px;}
.y33{bottom:602.253000px;}
.y13e{bottom:602.529000px;}
.y73{bottom:602.631000px;}
.y1d2{bottom:602.980500px;}
.y270{bottom:605.052000px;}
.y26f{bottom:609.934500px;}
.y189{bottom:611.530500px;}
.ya6{bottom:614.242500px;}
.y23b{bottom:614.355000px;}
.y1ac{bottom:614.605250px;}
.yda{bottom:615.426000px;}
.y71{bottom:616.036500px;}
.y13d{bottom:619.809000px;}
.y10a{bottom:620.310887px;}
.y204{bottom:620.616000px;}
.y32{bottom:621.711000px;}
.y1d1{bottom:622.213500px;}
.y26e{bottom:622.312500px;}
.y188{bottom:630.360000px;}
.y1ab{bottom:632.855482px;}
.ya4{bottom:633.072000px;}
.y70{bottom:634.866000px;}
.y13c{bottom:637.129500px;}
.ya5{bottom:638.497500px;}
.yd9{bottom:638.739000px;}
.y203{bottom:639.445500px;}
.y26d{bottom:639.573000px;}
.y109{bottom:640.097980px;}
.y222{bottom:640.290000px;}
.y23a{bottom:640.896000px;}
.y30{bottom:641.167500px;}
.y1d0{bottom:641.445000px;}
.y31{bottom:646.050000px;}
.y187{bottom:649.189500px;}
.y1aa{bottom:651.105713px;}
.ya3{bottom:651.901500px;}
.y6e{bottom:653.695500px;}
.y13b{bottom:654.409500px;}
.y26c{bottom:656.833500px;}
.y239{bottom:658.470000px;}
.y6f{bottom:659.119500px;}
.y108{bottom:659.900508px;}
.y2f{bottom:660.625500px;}
.y1cf{bottom:660.678000px;}
.y202{bottom:662.758500px;}
.y186{bottom:668.019000px;}
.y1a9{bottom:669.370181px;}
.ya2{bottom:670.731000px;}
.y13a{bottom:671.730000px;}
.y6d{bottom:672.525000px;}
.y26b{bottom:674.094000px;}
.yd8{bottom:675.733500px;}
.y238{bottom:676.044000px;}
.y107{bottom:679.687601px;}
.y1ce{bottom:679.911000px;}
.y2e{bottom:680.082000px;}
.y185{bottom:686.848500px;}
.y1a8{bottom:687.663119px;}
.ya1{bottom:689.560500px;}
.yd7{bottom:689.931000px;}
.y6c{bottom:691.354500px;}
.y237{bottom:693.618000px;}
.y1cd{bottom:699.144000px;}
.y106{bottom:699.520998px;}
.y2d{bottom:699.538500px;}
.y184{bottom:705.678000px;}
.y201{bottom:708.070500px;}
.ya0{bottom:708.390000px;}
.y26a{bottom:708.613500px;}
.y6b{bottom:710.184000px;}
.y236{bottom:711.192000px;}
.yd6{bottom:711.763500px;}
.y1cc{bottom:718.377000px;}
.y2c{bottom:718.996500px;}
.y105{bottom:719.323526px;}
.y135{bottom:720.645000px;}
.y183{bottom:724.507500px;}
.y138{bottom:724.883820px;}
.y269{bottom:725.874000px;}
.y9f{bottom:727.219500px;}
.yd5{bottom:728.200500px;}
.yd3{bottom:728.595000px;}
.y235{bottom:728.766000px;}
.y6a{bottom:729.013500px;}
.y200{bottom:731.712000px;}
.y69{bottom:734.437500px;}
.y137{bottom:734.507835px;}
.y1cb{bottom:737.610000px;}
.y2b{bottom:738.453000px;}
.y104{bottom:739.110619px;}
.y134{bottom:739.474500px;}
.y1a6{bottom:739.566279px;}
.y268{bottom:743.134500px;}
.yd4{bottom:744.639000px;}
.y9e{bottom:746.049000px;}
.y234{bottom:746.340000px;}
.y67{bottom:747.843000px;}
.y1ff{bottom:748.150500px;}
.y1a5{bottom:748.709093px;}
.y68{bottom:753.267000px;}
.y133{bottom:758.304000px;}
.y103{bottom:758.897712px;}
.y267{bottom:760.395000px;}
.y1a4{bottom:763.027500px;}
.y233{bottom:763.915500px;}
.y1fe{bottom:764.589000px;}
.y9d{bottom:764.878500px;}
.y182{bottom:765.486000px;}
.y66{bottom:766.671000px;}
.yd2{bottom:768.280500px;}
.y2a{bottom:772.623000px;}
.yd1{bottom:777.097500px;}
.y132{bottom:777.133500px;}
.y266{bottom:777.655500px;}
.y102{bottom:778.731109px;}
.y9c{bottom:783.708000px;}
.y64{bottom:785.500500px;}
.y1fd{bottom:788.229000px;}
.y181{bottom:789.126000px;}
.y232{bottom:790.455000px;}
.y65{bottom:790.926000px;}
.y29{bottom:793.102500px;}
.y265{bottom:794.916000px;}
.y131{bottom:795.963000px;}
.y101{bottom:798.533636px;}
.y1f7{bottom:798.901500px;}
.y9b{bottom:802.537500px;}
.y62{bottom:804.330000px;}
.y1fc{bottom:804.667500px;}
.y180{bottom:805.564500px;}
.y231{bottom:808.029000px;}
.yd0{bottom:808.359000px;}
.y28{bottom:809.241000px;}
.y63{bottom:809.755500px;}
.y264{bottom:812.176500px;}
.y130{bottom:814.792500px;}
.ycf{bottom:815.425500px;}
.y100{bottom:818.320729px;}
.y27{bottom:821.041500px;}
.y9a{bottom:821.367000px;}
.y17f{bottom:822.003000px;}
.y61{bottom:823.159500px;}
.y230{bottom:825.603000px;}
.y1fb{bottom:828.309000px;}
.y263{bottom:829.437000px;}
.y12f{bottom:833.622000px;}
.yff{bottom:838.107822px;}
.y99{bottom:840.196500px;}
.y26{bottom:841.521000px;}
.y5f{bottom:841.989000px;}
.y22f{bottom:843.177000px;}
.y1fa{bottom:844.746000px;}
.y17e{bottom:845.644500px;}
.y262{bottom:846.697500px;}
.y60{bottom:847.414500px;}
.yce{bottom:848.439000px;}
.y12e{bottom:852.451500px;}
.y178{bottom:853.849500px;}
.ycd{bottom:857.256000px;}
.y25{bottom:857.659500px;}
.yfe{bottom:857.910350px;}
.y98{bottom:859.026000px;}
.y22e{bottom:860.752500px;}
.y5e{bottom:860.818500px;}
.y17d{bottom:862.081500px;}
.y261{bottom:863.956500px;}
.y1f9{bottom:868.387500px;}
.y12d{bottom:871.281000px;}
.y24{bottom:873.799500px;}
.y1f8{bottom:876.606000px;}
.yfd{bottom:877.743747px;}
.y97{bottom:877.855500px;}
.y22d{bottom:878.326500px;}
.y5c{bottom:879.648000px;}
.y260{bottom:881.217000px;}
.y5d{bottom:885.073500px;}
.y23{bottom:885.600000px;}
.y17c{bottom:885.723000px;}
.ycc{bottom:888.517500px;}
.y12c{bottom:894.594000px;}
.y96{bottom:896.685000px;}
.ycb{bottom:897.334500px;}
.yfc{bottom:897.530840px;}
.y5b{bottom:898.477500px;}
.y22{bottom:901.738500px;}
.y17b{bottom:902.161500px;}
.y22c{bottom:904.866000px;}
.y1f6{bottom:908.466000px;}
.y95{bottom:915.514500px;}
.y25f{bottom:915.738000px;}
.y59{bottom:917.307000px;}
.yfb{bottom:917.317933px;}
.y21{bottom:917.878500px;}
.y1f4{bottom:918.511500px;}
.y5a{bottom:922.732500px;}
.y22b{bottom:922.911000px;}
.y12b{bottom:925.020000px;}
.y17a{bottom:925.801500px;}
.yca{bottom:928.596000px;}
.y1f5{bottom:932.107500px;}
.y25e{bottom:932.998500px;}
.y179{bottom:934.021500px;}
.y93{bottom:934.344000px;}
.y57{bottom:936.136500px;}
.yfa{bottom:937.120461px;}
.y20{bottom:938.358000px;}
.y94{bottom:939.768000px;}
.y22a{bottom:940.956000px;}
.y58{bottom:941.562000px;}
.y12a{bottom:944.253000px;}
.yc9{bottom:945.034500px;}
.yc7{bottom:945.429000px;}
.y25d{bottom:950.259000px;}
.y56{bottom:954.966000px;}
.y1f3{bottom:955.747500px;}
.yf9{bottom:956.953857px;}
.y92{bottom:957.655500px;}
.y229{bottom:959.001000px;}
.yc8{bottom:961.473000px;}
.y129{bottom:963.486000px;}
.y177{bottom:965.881500px;}
.y25c{bottom:967.519500px;}
.y1f2{bottom:972.186000px;}
.y55{bottom:973.795500px;}
.y175{bottom:975.925500px;}
.y228{bottom:977.046000px;}
.y91{bottom:977.830500px;}
.y1f{bottom:978.619500px;}
.y128{bottom:982.719000px;}
.y25b{bottom:984.780000px;}
.yc6{bottom:985.114500px;}
.y176{bottom:989.521500px;}
.y54{bottom:992.625000px;}
.yc5{bottom:993.726000px;}
.y227{bottom:995.091000px;}
.y1f1{bottom:995.827500px;}
.y1e{bottom:997.449000px;}
.y127{bottom:1001.952000px;}
.y25a{bottom:1002.040500px;}
.y53{bottom:1011.454500px;}
.y226{bottom:1013.136000px;}
.y174{bottom:1013.163000px;}
.yf7{bottom:1013.227810px;}
.y259{bottom:1019.299500px;}
.y126{bottom:1021.185000px;}
.yf6{bottom:1023.140545px;}
.yc4{bottom:1025.193000px;}
.y173{bottom:1029.601500px;}
.y51{bottom:1030.284000px;}
.y1f0{bottom:1030.435500px;}
.y52{bottom:1035.708000px;}
.y258{bottom:1036.560000px;}
.y1d{bottom:1037.367000px;}
.y125{bottom:1040.418000px;}
.yc3{bottom:1048.833000px;}
.y50{bottom:1049.113500px;}
.y1ef{bottom:1049.668500px;}
.y172{bottom:1053.241500px;}
.y257{bottom:1053.820500px;}
.y124{bottom:1059.651000px;}
.y1c{bottom:1065.612000px;}
.y4e{bottom:1067.943000px;}
.y256{bottom:1071.081000px;}
.yc2{bottom:1072.474500px;}
.y4f{bottom:1073.367000px;}
.y122{bottom:1078.884000px;}
.y123{bottom:1083.765000px;}
.y4d{bottom:1086.772500px;}
.y171{bottom:1087.849500px;}
.y255{bottom:1088.341500px;}
.y1b{bottom:1093.855500px;}
.y121{bottom:1098.117000px;}
.y4c{bottom:1105.602000px;}
.yc1{bottom:1107.082500px;}
.y1ee{bottom:1111.026000px;}
.y17{bottom:1137.343500px;}
.y4b{bottom:1168.366500px;}
.h2b{height:29.037733px;}
.h9{height:32.565965px;}
.h22{height:37.334628px;}
.h2a{height:37.551283px;}
.h2{height:37.993262px;}
.hb{height:38.896243px;}
.h4{height:39.402747px;}
.hf{height:41.250077px;}
.h10{height:41.482876px;}
.h12{height:41.723369px;}
.h25{height:42.469036px;}
.h20{height:43.140410px;}
.hd{height:43.217759px;}
.ha{height:43.421105px;}
.h6{height:43.815515px;}
.h1f{height:44.135508px;}
.h1c{height:44.704248px;}
.h18{height:46.045375px;}
.h27{height:47.718018px;}
.h5{height:48.689322px;}
.hc{height:48.848947px;}
.h1e{height:50.229492px;}
.h3{height:50.931027px;}
.h1a{height:51.736377px;}
.h26{height:52.967000px;}
.he{height:54.276245px;}
.h8{height:54.541601px;}
.h1d{height:55.754736px;}
.h19{height:57.427378px;}
.h11{height:62.946077px;}
.h21{height:71.770243px;}
.h28{height:71.776243px;}
.h7{height:77.792486px;}
.h15{height:79.328947px;}
.h14{height:79.334947px;}
.h13{height:80.156947px;}
.h23{height:81.722947px;}
.h29{height:81.728947px;}
.h16{height:86.336947px;}
.h1b{height:259.375500px;}
.h24{height:357.519675px;}
.h17{height:364.201305px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:209.166223px;}
.w3{width:620.202398px;}
.w4{width:725.598900px;}
.w5{width:743.332155px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x97{left:-95.531305px;}
.xb7{left:-3.746981px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x2{left:58.694030px;}
.xa4{left:62.016000px;}
.xac{left:69.165000px;}
.xb6{left:74.580570px;}
.xa5{left:80.005500px;}
.x9c{left:83.445600px;}
.xa3{left:84.699000px;}
.xe4{left:85.848000px;}
.x7d{left:89.580000px;}
.x76{left:90.883500px;}
.xe7{left:96.532500px;}
.x7c{left:102.181500px;}
.x98{left:105.962156px;}
.x75{left:117.331500px;}
.x78{left:126.108000px;}
.x7f{left:128.139000px;}
.x74{left:131.965500px;}
.x7e{left:137.062500px;}
.x99{left:138.776010px;}
.xae{left:149.754000px;}
.xa6{left:152.202000px;}
.xb3{left:154.132500px;}
.xb1{left:156.727500px;}
.xaf{left:161.469000px;}
.xb0{left:167.595000px;}
.xb8{left:182.096503px;}
.x9d{left:196.007400px;}
.xb9{left:212.361708px;}
.x9e{left:227.870640px;}
.xef{left:238.488000px;}
.xb2{left:245.494500px;}
.x5{left:248.526000px;}
.x3{left:249.591000px;}
.xad{left:253.483500px;}
.x34{left:261.694500px;}
.xbc{left:264.021000px;}
.x8e{left:266.820000px;}
.x4{left:269.914500px;}
.x8c{left:271.680000px;}
.x9{left:281.479500px;}
.x8f{left:282.849000px;}
.x25{left:284.173500px;}
.x8d{left:286.624500px;}
.x39{left:288.249000px;}
.x60{left:290.271000px;}
.x26{left:296.278500px;}
.xc3{left:299.508000px;}
.x10{left:300.682500px;}
.xa1{left:302.292000px;}
.xc{left:304.690500px;}
.x61{left:306.279000px;}
.x6{left:308.656500px;}
.xa0{left:310.002000px;}
.xd{left:312.162000px;}
.xc4{left:318.112500px;}
.x7b{left:320.016000px;}
.x51{left:322.701000px;}
.x1c{left:324.087000px;}
.xd7{left:325.734000px;}
.xe6{left:327.775500px;}
.x59{left:329.646000px;}
.xbe{left:333.409500px;}
.x90{left:335.827500px;}
.x96{left:337.471500px;}
.x11{left:339.219000px;}
.x46{left:340.845000px;}
.xbf{left:342.379500px;}
.xa2{left:343.500000px;}
.x62{left:344.599500px;}
.x12{left:346.690500px;}
.x18{left:354.480000px;}
.x47{left:355.789500px;}
.x3a{left:357.624000px;}
.xcc{left:360.327000px;}
.x19{left:361.953000px;}
.xa7{left:366.003000px;}
.xc7{left:368.434500px;}
.x3b{left:372.567000px;}
.x79{left:375.420000px;}
.xc8{left:380.538000px;}
.x3c{left:385.783500px;}
.x91{left:389.407500px;}
.xe1{left:390.693000px;}
.xd0{left:392.940000px;}
.x83{left:394.653000px;}
.x3d{left:397.888500px;}
.xc5{left:403.881000px;}
.x77{left:407.893500px;}
.x84{left:409.597500px;}
.x7a{left:411.532500px;}
.x7{left:413.683500px;}
.x37{left:414.712500px;}
.x17{left:416.292000px;}
.xe0{left:417.768000px;}
.xc6{left:418.824000px;}
.xa{left:420.145500px;}
.x8{left:424.891500px;}
.x92{left:426.114000px;}
.xb{left:427.618500px;}
.x63{left:428.770500px;}
.x66{left:430.111500px;}
.x38{left:431.956500px;}
.x88{left:434.823000px;}
.x80{left:439.776000px;}
.x93{left:442.143000px;}
.x64{left:444.778500px;}
.x89{left:449.766000px;}
.x81{left:453.682500px;}
.xc0{left:457.462500px;}
.xc1{left:464.940000px;}
.xd9{left:468.244500px;}
.xda{left:483.187500px;}
.xdb{left:486.876000px;}
.x5a{left:488.226000px;}
.x55{left:489.367500px;}
.x49{left:500.673000px;}
.xdc{left:501.819000px;}
.x42{left:505.092000px;}
.xcd{left:506.346000px;}
.x65{left:510.711000px;}
.x4a{left:515.616000px;}
.x43{left:520.035000px;}
.x6e{left:521.170500px;}
.xa8{left:529.366500px;}
.x35{left:530.884500px;}
.x4b{left:534.367500px;}
.x36{left:538.357500px;}
.xa9{left:540.429000px;}
.x82{left:542.665500px;}
.x4c{left:547.936500px;}
.x1d{left:550.186500px;}
.xde{left:560.428500px;}
.x1e{left:562.291500px;}
.x94{left:566.178000px;}
.x6f{left:570.108000px;}
.xdf{left:572.533500px;}
.x27{left:578.098500px;}
.x28{left:585.571500px;}
.xbd{left:587.527500px;}
.x95{left:588.612000px;}
.xe2{left:590.929500px;}
.x5b{left:594.373500px;}
.xce{left:597.114000px;}
.x4d{left:598.555500px;}
.xc9{left:599.947500px;}
.x40{left:601.560000px;}
.xe{left:605.059500px;}
.x6c{left:607.087500px;}
.x5c{left:610.383000px;}
.xf{left:612.532500px;}
.x41{left:613.665000px;}
.x67{left:614.823000px;}
.xaa{left:616.579500px;}
.x9a{left:619.222682px;}
.x44{left:626.968500px;}
.x68{left:630.411000px;}
.x5d{left:632.278500px;}
.x30{left:634.539000px;}
.x45{left:639.073500px;}
.x3e{left:641.346000px;}
.x31{left:646.642500px;}
.x5e{left:648.286500px;}
.xd3{left:649.932000px;}
.x70{left:653.442000px;}
.xca{left:654.511500px;}
.x3f{left:656.290500px;}
.x52{left:658.513500px;}
.xc2{left:660.574500px;}
.xd4{left:662.037000px;}
.xcb{left:666.615000px;}
.xd8{left:668.727000px;}
.xed{left:671.428500px;}
.x53{left:673.458000px;}
.xdd{left:674.491500px;}
.x13{left:676.525500px;}
.xee{left:684.754500px;}
.x1a{left:686.229000px;}
.x14{left:688.630500px;}
.x54{left:692.062500px;}
.x1b{left:693.702000px;}
.x5f{left:695.721000px;}
.x86{left:701.155500px;}
.xe5{left:702.313500px;}
.x71{left:703.758000px;}
.x9b{left:706.611000px;}
.x8a{left:713.601000px;}
.xab{left:714.853500px;}
.x87{left:718.812000px;}
.xea{left:720.387000px;}
.x9f{left:722.630385px;}
.xcf{left:729.177000px;}
.xba{left:733.845000px;}
.x2b{left:735.955500px;}
.xbb{left:737.170500px;}
.x29{left:739.672500px;}
.x2d{left:743.164500px;}
.x2e{left:746.959500px;}
.x2c{left:748.060500px;}
.xd5{left:749.215500px;}
.x2a{left:751.777500px;}
.x8b{left:753.430500px;}
.x69{left:755.554500px;}
.xb4{left:758.049000px;}
.x2f{left:761.904000px;}
.xd6{left:764.160000px;}
.x6a{left:765.277500px;}
.x4e{left:766.783500px;}
.x56{left:768.610500px;}
.xb5{left:770.152500px;}
.x85{left:772.216500px;}
.xeb{left:773.824500px;}
.x73{left:775.551000px;}
.xe3{left:777.156000px;}
.x72{left:782.292000px;}
.x57{left:783.553500px;}
.xec{left:785.665500px;}
.x6b{left:786.939000px;}
.x15{left:788.179500px;}
.x23{left:790.240500px;}
.x4f{left:792.174000px;}
.x32{left:793.854000px;}
.x16{left:795.652500px;}
.xd1{left:797.121000px;}
.x48{left:799.800000px;}
.x33{left:801.325500px;}
.x24{left:802.345500px;}
.x58{left:805.821000px;}
.x50{left:807.117000px;}
.xe8{left:810.346500px;}
.xd2{left:812.065500px;}
.x1f{left:813.886500px;}
.x6d{left:817.698000px;}
.x20{left:821.359500px;}
.x21{left:825.169500px;}
.x22{left:832.642500px;}
.xe9{left:837.246000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:12.626488pt;}
.v5{vertical-align:13.679554pt;}
.v8{vertical-align:17.360000pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:27.829333pt;}
.v6{vertical-align:29.221333pt;}
.v4{vertical-align:33.322667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000751pt;}
.ls22{letter-spacing:0.001026pt;}
.ls1c{letter-spacing:0.001335pt;}
.ls12{letter-spacing:0.001382pt;}
.ls2c{letter-spacing:0.001408pt;}
.ls23{letter-spacing:0.002287pt;}
.ls1f{letter-spacing:0.004267pt;}
.ls16{letter-spacing:0.040584pt;}
.lsf{letter-spacing:0.042720pt;}
.lsd{letter-spacing:0.044002pt;}
.ls10{letter-spacing:0.048000pt;}
.ls17{letter-spacing:0.091200pt;}
.ls2a{letter-spacing:0.462933pt;}
.ls1{letter-spacing:2.657067pt;}
.ls3{letter-spacing:2.665203pt;}
.ls2b{letter-spacing:3.139507pt;}
.ls0{letter-spacing:9.298933pt;}
.ls13{letter-spacing:10.042301pt;}
.ls6{letter-spacing:10.626533pt;}
.ls18{letter-spacing:11.051844pt;}
.ls29{letter-spacing:11.310106pt;}
.ls1d{letter-spacing:11.751990pt;}
.ls2f{letter-spacing:11.883584pt;}
.ls2e{letter-spacing:11.914783pt;}
.ls19{letter-spacing:11.954133pt;}
.ls1a{letter-spacing:11.959467pt;}
.ls1b{letter-spacing:11.961885pt;}
.ls26{letter-spacing:12.042120pt;}
.ls2d{letter-spacing:12.077453pt;}
.ls25{letter-spacing:12.171784pt;}
.lsc{letter-spacing:12.528078pt;}
.lsb{letter-spacing:12.533411pt;}
.ls8{letter-spacing:12.551434pt;}
.ls15{letter-spacing:13.070931pt;}
.ls20{letter-spacing:13.231728pt;}
.ls9{letter-spacing:13.923096pt;}
.lsa{letter-spacing:13.945067pt;}
.ls24{letter-spacing:14.361140pt;}
.ls14{letter-spacing:14.399278pt;}
.ls27{letter-spacing:14.596434pt;}
.lse{letter-spacing:15.143152pt;}
.ls28{letter-spacing:15.929767pt;}
.ls21{letter-spacing:15.992512pt;}
.ls1e{letter-spacing:16.175519pt;}
.ls2{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ws2e{word-spacing:-13.283467pt;}
.wsc{word-spacing:-12.760670pt;}
.ws79{word-spacing:-12.000000pt;}
.ws7c{word-spacing:-11.955200pt;}
.ws94{word-spacing:-11.400000pt;}
.ws69{word-spacing:-11.000400pt;}
.ws77{word-spacing:-10.680000pt;}
.wse{word-spacing:-10.626800pt;}
.ws92{word-spacing:-10.146000pt;}
.wsb{word-spacing:-10.095467pt;}
.ws3{word-spacing:-9.298400pt;}
.ws93{word-spacing:-7.600000pt;}
.ws6a{word-spacing:-7.539600pt;}
.ws78{word-spacing:-7.320000pt;}
.ws7d{word-spacing:-3.241166pt;}
.ws5b{word-spacing:-2.709827pt;}
.ws54{word-spacing:-2.656693pt;}
.ws4d{word-spacing:-2.391024pt;}
.wsb5{word-spacing:-2.247578pt;}
.wsa4{word-spacing:-2.231622pt;}
.wsa1{word-spacing:-2.178489pt;}
.wsce{word-spacing:-2.008474pt;}
.ws9e{word-spacing:-1.859685pt;}
.wsa5{word-spacing:-1.806551pt;}
.ws8e{word-spacing:-1.753418pt;}
.ws6b{word-spacing:-1.673728pt;}
.wsa8{word-spacing:-1.594016pt;}
.ws58{word-spacing:-1.487748pt;}
.ws24{word-spacing:-1.381481pt;}
.ws53{word-spacing:-1.328347pt;}
.ws95{word-spacing:-1.291162pt;}
.wsb2{word-spacing:-1.243341pt;}
.wsaf{word-spacing:-1.195520pt;}
.ws99{word-spacing:-1.168945pt;}
.ws21{word-spacing:-1.115811pt;}
.ws73{word-spacing:-1.099878pt;}
.ws40{word-spacing:-1.062677pt;}
.ws96{word-spacing:-1.052058pt;}
.ws4c{word-spacing:-1.009543pt;}
.wsb3{word-spacing:-1.004237pt;}
.ws39{word-spacing:-0.956410pt;}
.wsac{word-spacing:-0.908595pt;}
.ws37{word-spacing:-0.903276pt;}
.wsdd{word-spacing:-0.860774pt;}
.ws3b{word-spacing:-0.797008pt;}
.wsd3{word-spacing:-0.765133pt;}
.ws49{word-spacing:-0.743874pt;}
.wsa6{word-spacing:-0.690740pt;}
.wsa0{word-spacing:-0.637606pt;}
.ws87{word-spacing:-0.573850pt;}
.ws88{word-spacing:-0.526029pt;}
.ws7e{word-spacing:-0.478205pt;}
.wsb1{word-spacing:-0.430387pt;}
.ws33{word-spacing:-0.425071pt;}
.ws97{word-spacing:-0.382566pt;}
.ws44{word-spacing:-0.371937pt;}
.ws3c{word-spacing:-0.318803pt;}
.ws1a{word-spacing:-0.286925pt;}
.ws48{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.239104pt;}
.ws3a{word-spacing:-0.212535pt;}
.ws15{word-spacing:-0.191283pt;}
.ws26{word-spacing:-0.159402pt;}
.ws14{word-spacing:-0.143462pt;}
.ws29{word-spacing:-0.106268pt;}
.ws16{word-spacing:-0.095642pt;}
.ws31{word-spacing:-0.053134pt;}
.ws1c{word-spacing:-0.047821pt;}
.ws5e{word-spacing:-0.042507pt;}
.wsd9{word-spacing:-0.008107pt;}
.wse0{word-spacing:-0.007757pt;}
.wsbd{word-spacing:-0.006255pt;}
.wsdf{word-spacing:-0.005683pt;}
.wse1{word-spacing:-0.005530pt;}
.wsba{word-spacing:-0.005513pt;}
.wscc{word-spacing:-0.003746pt;}
.wsbf{word-spacing:-0.002586pt;}
.ws2b{word-spacing:-0.002295pt;}
.wsd4{word-spacing:-0.001007pt;}
.ws1{word-spacing:0.000000pt;}
.wscd{word-spacing:0.047821pt;}
.ws32{word-spacing:0.053134pt;}
.ws6f{word-spacing:0.095642pt;}
.ws25{word-spacing:0.106268pt;}
.ws17{word-spacing:0.143462pt;}
.ws20{word-spacing:0.159402pt;}
.ws6c{word-spacing:0.191283pt;}
.ws2a{word-spacing:0.212535pt;}
.ws70{word-spacing:0.239104pt;}
.ws47{word-spacing:0.265669pt;}
.ws98{word-spacing:0.286925pt;}
.ws23{word-spacing:0.318803pt;}
.ws11{word-spacing:0.382566pt;}
.ws57{word-spacing:0.425071pt;}
.wsde{word-spacing:0.430387pt;}
.wsd{word-spacing:0.499721pt;}
.wsb7{word-spacing:0.573850pt;}
.ws41{word-spacing:0.584473pt;}
.ws51{word-spacing:0.659763pt;}
.ws10{word-spacing:0.669491pt;}
.wsd0{word-spacing:0.717312pt;}
.ws4b{word-spacing:0.743874pt;}
.ws75{word-spacing:0.797008pt;}
.ws3f{word-spacing:0.850142pt;}
.ws43{word-spacing:0.956410pt;}
.wsc3{word-spacing:0.956416pt;}
.wsa9{word-spacing:1.009543pt;}
.ws5f{word-spacing:1.062677pt;}
.ws7f{word-spacing:1.115811pt;}
.wsbc{word-spacing:1.147699pt;}
.ws2d{word-spacing:1.168945pt;}
.ws6d{word-spacing:1.243341pt;}
.ws28{word-spacing:1.275213pt;}
.wsc4{word-spacing:1.291162pt;}
.ws9c{word-spacing:1.338982pt;}
.wscb{word-spacing:1.386803pt;}
.ws38{word-spacing:1.434614pt;}
.ws83{word-spacing:1.434624pt;}
.ws2c{word-spacing:1.487748pt;}
.ws9b{word-spacing:1.578086pt;}
.wsbe{word-spacing:1.625907pt;}
.ws82{word-spacing:1.673728pt;}
.wsca{word-spacing:1.721549pt;}
.ws5c{word-spacing:1.753418pt;}
.wsd6{word-spacing:1.769370pt;}
.ws52{word-spacing:1.806551pt;}
.ws74{word-spacing:1.859685pt;}
.wsd1{word-spacing:1.865011pt;}
.ws8d{word-spacing:1.965953pt;}
.wsb9{word-spacing:2.008474pt;}
.ws9f{word-spacing:2.019087pt;}
.ws12{word-spacing:2.056294pt;}
.ws68{word-spacing:2.125355pt;}
.ws2{word-spacing:2.231361pt;}
.ws0{word-spacing:2.232481pt;}
.wsb8{word-spacing:2.247578pt;}
.ws9a{word-spacing:2.284756pt;}
.wsa3{word-spacing:2.337890pt;}
.wsd2{word-spacing:2.391040pt;}
.ws35{word-spacing:2.497292pt;}
.ws7b{word-spacing:2.534502pt;}
.wsf{word-spacing:2.550432pt;}
.wsd7{word-spacing:2.630144pt;}
.ws4e{word-spacing:2.656693pt;}
.wsb0{word-spacing:2.725786pt;}
.ws4a{word-spacing:2.816095pt;}
.ws7a{word-spacing:2.821427pt;}
.wsc2{word-spacing:2.861235pt;}
.ws1e{word-spacing:2.861926pt;}
.wsc1{word-spacing:2.862225pt;}
.wsd5{word-spacing:2.864367pt;}
.wsc5{word-spacing:2.865297pt;}
.ws19{word-spacing:2.869248pt;}
.wscf{word-spacing:2.917069pt;}
.ws36{word-spacing:2.922363pt;}
.wsda{word-spacing:2.964890pt;}
.ws76{word-spacing:2.975497pt;}
.ws34{word-spacing:3.081764pt;}
.wsb6{word-spacing:3.108352pt;}
.ws46{word-spacing:3.134898pt;}
.ws13{word-spacing:3.156173pt;}
.ws1f{word-spacing:3.188032pt;}
.ws45{word-spacing:3.294300pt;}
.ws6e{word-spacing:3.299635pt;}
.ws3e{word-spacing:3.347434pt;}
.wsae{word-spacing:3.347456pt;}
.ws27{word-spacing:3.400567pt;}
.ws66{word-spacing:3.453701pt;}
.ws18{word-spacing:3.490918pt;}
.wsa2{word-spacing:3.559969pt;}
.wsd8{word-spacing:3.586560pt;}
.ws81{word-spacing:3.772505pt;}
.wse3{word-spacing:3.777843pt;}
.ws22{word-spacing:3.825638pt;}
.wsc6{word-spacing:3.825664pt;}
.ws62{word-spacing:3.878772pt;}
.ws8f{word-spacing:3.931906pt;}
.wsdc{word-spacing:3.969126pt;}
.ws3d{word-spacing:3.985040pt;}
.wsc9{word-spacing:4.064768pt;}
.wse2{word-spacing:4.112589pt;}
.ws90{word-spacing:4.144442pt;}
.wsb4{word-spacing:4.160410pt;}
.ws60{word-spacing:4.197575pt;}
.wsc0{word-spacing:4.208230pt;}
.ws9{word-spacing:4.240070pt;}
.ws80{word-spacing:4.250709pt;}
.ws63{word-spacing:4.303843pt;}
.wsa{word-spacing:4.314458pt;}
.wsad{word-spacing:4.447334pt;}
.wsab{word-spacing:4.590797pt;}
.ws2f{word-spacing:4.622646pt;}
.ws1d{word-spacing:4.686438pt;}
.ws61{word-spacing:4.728914pt;}
.wsaa{word-spacing:4.877722pt;}
.ws91{word-spacing:4.888316pt;}
.ws4f{word-spacing:5.313387pt;}
.ws42{word-spacing:5.419654pt;}
.ws59{word-spacing:5.472788pt;}
.ws56{word-spacing:5.525922pt;}
.ws55{word-spacing:5.791591pt;}
.ws71{word-spacing:5.881958pt;}
.ws5a{word-spacing:5.950993pt;}
.ws67{word-spacing:6.004127pt;}
.wsc7{word-spacing:6.168883pt;}
.ws65{word-spacing:6.429198pt;}
.ws72{word-spacing:6.599270pt;}
.wsa7{word-spacing:6.801135pt;}
.ws7{word-spacing:6.918010pt;}
.ws50{word-spacing:6.960537pt;}
.ws64{word-spacing:7.332474pt;}
.wsbb{word-spacing:7.364403pt;}
.ws5d{word-spacing:8.873356pt;}
.ws5{word-spacing:10.823338pt;}
.wsdb{word-spacing:12.672512pt;}
.wsc8{word-spacing:12.863795pt;}
.ws6{word-spacing:14.319536pt;}
.ws30{word-spacing:17.587310pt;}
.ws8{word-spacing:23.208806pt;}
.ws4{word-spacing:23.858002pt;}
.ws85{word-spacing:46.695484pt;}
.ws8c{word-spacing:87.177318pt;}
.ws86{word-spacing:116.156723pt;}
.ws8a{word-spacing:123.781026pt;}
.ws84{word-spacing:144.036250pt;}
.ws8b{word-spacing:145.564442pt;}
.ws89{word-spacing:214.428467pt;}
.ws9d{word-spacing:231.739597pt;}
._49{margin-left:-18.592515pt;}
._8{margin-left:-5.941466pt;}
._13{margin-left:-5.047717pt;}
._4{margin-left:-4.128490pt;}
._0{margin-left:-2.752326pt;}
._2{margin-left:-1.338970pt;}
._2f{width:1.128080pt;}
._7{width:2.668189pt;}
._32{width:3.621480pt;}
._33{width:4.877702pt;}
._30{width:6.178155pt;}
._31{width:7.939807pt;}
._34{width:9.030160pt;}
._38{width:9.937208pt;}
._1{width:10.860531pt;}
._15{width:12.072011pt;}
._b{width:13.102899pt;}
._d{width:14.154931pt;}
._a{width:15.266522pt;}
._9{width:16.402534pt;}
._e{width:18.171878pt;}
._29{width:19.617020pt;}
._f{width:20.828476pt;}
._14{width:22.137482pt;}
._3{width:23.063487pt;}
._c{width:24.340774pt;}
._39{width:25.344854pt;}
._12{width:26.248130pt;}
._5{width:27.188522pt;}
._2b{width:28.426523pt;}
._6{width:29.648896pt;}
._2a{width:30.870777pt;}
._35{width:32.183373pt;}
._2c{width:33.155533pt;}
._36{width:35.004826pt;}
._47{width:37.778179pt;}
._2d{width:38.947124pt;}
._48{width:54.993920pt;}
._3f{width:65.084109pt;}
._42{width:75.433830pt;}
._3e{width:92.294144pt;}
._40{width:105.875251pt;}
._3c{width:119.387369pt;}
._41{width:175.406694pt;}
._43{width:256.319488pt;}
._3a{width:264.592486pt;}
._1f{width:385.674752pt;}
._3b{width:451.571814pt;}
._1d{width:581.787853pt;}
._23{width:623.374763pt;}
._1a{width:643.774507pt;}
._20{width:667.707413pt;}
._1c{width:686.180659pt;}
._1e{width:687.137075pt;}
._1b{width:695.840461pt;}
._17{width:703.120909pt;}
._22{width:752.699392pt;}
._21{width:764.654592pt;}
._16{width:766.663066pt;}
._3d{width:785.504461pt;}
._25{width:787.560755pt;}
._24{width:792.115149pt;}
._45{width:824.000205pt;}
._10{width:831.595526pt;}
._28{width:837.007462pt;}
._27{width:848.962662pt;}
._26{width:860.917862pt;}
._19{width:1589.801950pt;}
._18{width:1659.929156pt;}
._44{width:1727.822914pt;}
._37{width:1818.690490pt;}
._2e{width:1873.211035pt;}
._46{width:2159.764362pt;}
._11{width:2181.017695pt;}
.fs12{font-size:29.280000pt;}
.fse{font-size:30.158400pt;}
.fs15{font-size:30.400000pt;}
.fs6{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs17{font-size:38.755733pt;}
.fs5{font-size:40.381867pt;}
.fs13{font-size:40.584000pt;}
.fs7{font-size:42.507200pt;}
.fsf{font-size:42.720000pt;}
.fsb{font-size:44.001600pt;}
.fs16{font-size:45.600000pt;}
.fs8{font-size:47.820800pt;}
.fs11{font-size:48.000000pt;}
.fsd{font-size:49.440000pt;}
.fsa{font-size:49.829333pt;}
.fs1{font-size:50.395200pt;}
.fs14{font-size:50.616000pt;}
.fs3{font-size:53.133867pt;}
.fs10{font-size:53.280000pt;}
.fsc{font-size:54.878400pt;}
.fs9{font-size:55.365867pt;}
.fs2{font-size:63.833920pt;}
.fs4{font-size:95.641600pt;}
.y139{bottom:-363.782667pt;}
.y1a7{bottom:-300.325400pt;}
.y15f{bottom:-300.099747pt;}
.y15e{bottom:-282.983547pt;}
.y15d{bottom:-265.907307pt;}
.y15c{bottom:-248.817747pt;}
.y1ca{bottom:-237.089600pt;}
.y15b{bottom:-231.741507pt;}
.y1c9{bottom:-222.463400pt;}
.y15a{bottom:-214.665267pt;}
.y1c8{bottom:-207.871400pt;}
.y159{bottom:-197.549067pt;}
.y1c7{bottom:-193.245200pt;}
.y158{bottom:-180.459507pt;}
.y1c6{bottom:-178.653200pt;}
.y1c5{bottom:-164.015600pt;}
.y157{bottom:-163.383267pt;}
.y1c4{bottom:-149.423600pt;}
.y156{bottom:-146.307027pt;}
.yf8{bottom:-137.720613pt;}
.y1c3{bottom:-134.797400pt;}
.y155{bottom:-129.177507pt;}
.y1c2{bottom:-120.205400pt;}
.y154{bottom:-112.101267pt;}
.y1c1{bottom:-105.579200pt;}
.y153{bottom:-95.025027pt;}
.y1c0{bottom:-90.987200pt;}
.y1bf{bottom:-76.349600pt;}
.y152{bottom:-73.939467pt;}
.y11b{bottom:-71.878893pt;}
.y1be{bottom:-61.757600pt;}
.y11a{bottom:-56.021013pt;}
.y1bd{bottom:-47.131400pt;}
.y151{bottom:-41.222667pt;}
.y119{bottom:-40.200213pt;}
.y1bc{bottom:-32.539400pt;}
.y150{bottom:-25.862667pt;}
.y118{bottom:-24.342333pt;}
.y1bb{bottom:-17.913200pt;}
.y14f{bottom:-5.900907pt;}
.y117{bottom:-3.776159pt;}
.y0{bottom:0.000000pt;}
.y1ba{bottom:1.054918pt;}
.y1a{bottom:2.393436pt;}
.y19{bottom:19.528140pt;}
.y4a{bottom:28.346667pt;}
.y18{bottom:34.646700pt;}
.y1ed{bottom:84.845333pt;}
.y120{bottom:85.388000pt;}
.y170{bottom:89.273333pt;}
.y49{bottom:92.108000pt;}
.y16{bottom:93.018667pt;}
.y8f{bottom:95.681333pt;}
.y221{bottom:99.752000pt;}
.y90{bottom:100.502667pt;}
.y1ec{bottom:101.582667pt;}
.y11e{bottom:102.484000pt;}
.y16f{bottom:106.010667pt;}
.y11f{bottom:106.824000pt;}
.y28a{bottom:108.233333pt;}
.y48{bottom:108.844000pt;}
.y15{bottom:108.920000pt;}
.yf4{bottom:111.078667pt;}
.y8e{bottom:112.418667pt;}
.y220{bottom:116.489333pt;}
.y225{bottom:117.240000pt;}
.y1eb{bottom:118.320000pt;}
.y28e{bottom:119.525333pt;}
.y11d{bottom:119.580000pt;}
.y16e{bottom:122.748000pt;}
.y254{bottom:123.278667pt;}
.y289{bottom:123.576000pt;}
.y1a3{bottom:124.752000pt;}
.y14{bottom:124.820000pt;}
.y47{bottom:125.581333pt;}
.yf3{bottom:127.816000pt;}
.y8d{bottom:129.156000pt;}
.y21f{bottom:133.226667pt;}
.y28d{bottom:134.868000pt;}
.y1ea{bottom:135.057333pt;}
.y11c{bottom:136.676000pt;}
.y253{bottom:138.621333pt;}
.y288{bottom:138.918667pt;}
.y16d{bottom:139.485333pt;}
.y13{bottom:140.720000pt;}
.y1a2{bottom:141.489333pt;}
.y46{bottom:142.318667pt;}
.yc0{bottom:144.298667pt;}
.yf2{bottom:144.553333pt;}
.y8c{bottom:145.893333pt;}
.y21e{bottom:149.964000pt;}
.y28c{bottom:150.210667pt;}
.y1e9{bottom:151.794667pt;}
.y252{bottom:153.962667pt;}
.y287{bottom:154.261333pt;}
.y16c{bottom:156.222667pt;}
.y12{bottom:156.621333pt;}
.y1a1{bottom:158.226667pt;}
.y45{bottom:159.056000pt;}
.yf5{bottom:159.269333pt;}
.ybf{bottom:161.036000pt;}
.yf1{bottom:161.290667pt;}
.y8b{bottom:162.630667pt;}
.y21d{bottom:166.701333pt;}
.y224{bottom:167.452000pt;}
.y1e8{bottom:168.532000pt;}
.y251{bottom:169.305333pt;}
.y286{bottom:169.604000pt;}
.y11{bottom:172.521333pt;}
.y16b{bottom:172.960000pt;}
.y1a0{bottom:174.964000pt;}
.y44{bottom:175.793333pt;}
.ybe{bottom:177.773333pt;}
.yf0{bottom:178.028000pt;}
.y8a{bottom:179.368000pt;}
.y21c{bottom:183.438667pt;}
.y223{bottom:184.189333pt;}
.y250{bottom:184.648000pt;}
.y285{bottom:184.946667pt;}
.y1e7{bottom:185.269333pt;}
.y10{bottom:188.421333pt;}
.y16a{bottom:189.697333pt;}
.y19f{bottom:191.701333pt;}
.y43{bottom:192.530667pt;}
.ybd{bottom:194.510667pt;}
.yef{bottom:194.765333pt;}
.y89{bottom:196.105333pt;}
.y24f{bottom:199.990667pt;}
.y21b{bottom:200.176000pt;}
.y284{bottom:200.289333pt;}
.y1e5{bottom:202.006667pt;}
.yf{bottom:204.322667pt;}
.y169{bottom:206.434667pt;}
.y1e6{bottom:206.828000pt;}
.y19e{bottom:208.438667pt;}
.y42{bottom:209.268000pt;}
.ybc{bottom:211.248000pt;}
.yee{bottom:211.502667pt;}
.y88{bottom:212.841333pt;}
.y24e{bottom:215.333333pt;}
.y283{bottom:215.632000pt;}
.y21a{bottom:216.913333pt;}
.y1e4{bottom:218.744000pt;}
.y168{bottom:223.172000pt;}
.y19d{bottom:225.176000pt;}
.y41{bottom:226.005333pt;}
.ybb{bottom:227.985333pt;}
.y87{bottom:229.578667pt;}
.y24d{bottom:230.676000pt;}
.y282{bottom:230.974667pt;}
.yed{bottom:232.225333pt;}
.y219{bottom:233.650667pt;}
.y1e3{bottom:235.481333pt;}
.y167{bottom:239.909333pt;}
.y19c{bottom:241.913333pt;}
.y40{bottom:242.742667pt;}
.yba{bottom:244.722667pt;}
.y86{bottom:246.316000pt;}
.y24c{bottom:250.004000pt;}
.y218{bottom:250.388000pt;}
.y1e2{bottom:252.218667pt;}
.y14e{bottom:252.773493pt;}
.y166{bottom:256.646667pt;}
.y19b{bottom:258.650667pt;}
.y3f{bottom:259.480000pt;}
.yb9{bottom:261.460000pt;}
.y281{bottom:261.658667pt;}
.yec{bottom:262.113333pt;}
.y85{bottom:263.053333pt;}
.ye{bottom:265.668000pt;}
.y217{bottom:267.125333pt;}
.y1e1{bottom:268.956000pt;}
.y14d{bottom:269.863053pt;}
.y165{bottom:273.384000pt;}
.y19a{bottom:275.388000pt;}
.y3e{bottom:276.217333pt;}
.y280{bottom:277.001333pt;}
.yb8{bottom:278.197333pt;}
.yeb{bottom:278.850667pt;}
.y84{bottom:279.790667pt;}
.y24b{bottom:279.892000pt;}
.yd{bottom:281.568000pt;}
.y216{bottom:283.862667pt;}
.y1e0{bottom:285.693333pt;}
.y14c{bottom:286.979253pt;}
.y164{bottom:290.121333pt;}
.y199{bottom:292.125333pt;}
.y27f{bottom:292.344000pt;}
.yb7{bottom:294.934667pt;}
.y24a{bottom:295.513333pt;}
.yea{bottom:295.588000pt;}
.y83{bottom:296.528000pt;}
.y3d{bottom:296.940000pt;}
.yc{bottom:297.469333pt;}
.y215{bottom:300.600000pt;}
.y1df{bottom:302.429333pt;}
.y14b{bottom:304.055493pt;}
.y163{bottom:306.858667pt;}
.y27e{bottom:307.686667pt;}
.y198{bottom:308.862667pt;}
.y249{bottom:311.134667pt;}
.yb6{bottom:311.672000pt;}
.ye8{bottom:312.324000pt;}
.y82{bottom:313.265333pt;}
.yb{bottom:313.369333pt;}
.ye9{bottom:317.146667pt;}
.y214{bottom:317.337333pt;}
.y1de{bottom:319.166667pt;}
.y14a{bottom:321.131733pt;}
.y27d{bottom:323.029333pt;}
.y197{bottom:325.598667pt;}
.y162{bottom:327.580000pt;}
.yb5{bottom:328.409333pt;}
.ye7{bottom:329.061333pt;}
.y81{bottom:330.002667pt;}
.y213{bottom:334.074667pt;}
.y248{bottom:334.725333pt;}
.y1b9{bottom:335.259712pt;}
.y1dd{bottom:335.904000pt;}
.y149{bottom:338.221293pt;}
.y27c{bottom:338.372000pt;}
.ya{bottom:338.568000pt;}
.y116{bottom:340.160494pt;}
.y196{bottom:342.336000pt;}
.yb4{bottom:345.146667pt;}
.ye6{bottom:345.798667pt;}
.y80{bottom:346.740000pt;}
.y247{bottom:350.346667pt;}
.y212{bottom:350.812000pt;}
.y1b8{bottom:351.482140pt;}
.y1dc{bottom:352.641333pt;}
.y27b{bottom:353.714667pt;}
.y9{bottom:354.469333pt;}
.y161{bottom:354.626667pt;}
.y148{bottom:355.297533pt;}
.y115{bottom:357.749021pt;}
.y195{bottom:359.073333pt;}
.yb2{bottom:361.884000pt;}
.ye5{bottom:362.536000pt;}
.y7f{bottom:363.477333pt;}
.y3c{bottom:363.740000pt;}
.yb3{bottom:366.705333pt;}
.y211{bottom:367.549333pt;}
.y1b7{bottom:367.717222pt;}
.y27a{bottom:369.056000pt;}
.y1db{bottom:369.378667pt;}
.y160{bottom:371.722667pt;}
.y147{bottom:372.413733pt;}
.y246{bottom:373.938667pt;}
.y114{bottom:375.378707pt;}
.y8{bottom:378.338667pt;}
.yb0{bottom:378.621333pt;}
.ye4{bottom:379.273333pt;}
.y194{bottom:379.796000pt;}
.y7e{bottom:380.214667pt;}
.yb1{bottom:383.442667pt;}
.y1b6{bottom:383.939650pt;}
.y210{bottom:384.286667pt;}
.y279{bottom:384.398667pt;}
.y146{bottom:389.503293pt;}
.y245{bottom:389.560000pt;}
.y113{bottom:392.980954pt;}
.y7{bottom:394.240000pt;}
.y136{bottom:394.317333pt;}
.yaf{bottom:395.358667pt;}
.ye3{bottom:396.010667pt;}
.y7d{bottom:396.952000pt;}
.y3b{bottom:396.974667pt;}
.y1da{bottom:399.214667pt;}
.y278{bottom:399.741333pt;}
.y1b5{bottom:400.200040pt;}
.y20e{bottom:401.024000pt;}
.y244{bottom:405.181333pt;}
.y20f{bottom:405.845333pt;}
.y193{bottom:409.684000pt;}
.y6{bottom:410.140000pt;}
.y112{bottom:410.569481pt;}
.y145{bottom:410.575533pt;}
.yae{bottom:412.096000pt;}
.y7c{bottom:413.689333pt;}
.y3a{bottom:414.270667pt;}
.y277{bottom:415.084000pt;}
.y1d9{bottom:416.310667pt;}
.y1b4{bottom:416.435122pt;}
.ye2{bottom:416.733333pt;}
.y20c{bottom:417.761333pt;}
.y243{bottom:420.802667pt;}
.y20d{bottom:422.582667pt;}
.y5{bottom:426.040000pt;}
.y192{bottom:426.421333pt;}
.y111{bottom:428.158008pt;}
.yad{bottom:428.833333pt;}
.y7b{bottom:430.426667pt;}
.y191{bottom:431.244000pt;}
.y39{bottom:431.565333pt;}
.y1b3{bottom:432.657550pt;}
.y1d8{bottom:433.406667pt;}
.y20b{bottom:434.498667pt;}
.y241{bottom:436.425333pt;}
.y242{bottom:440.764000pt;}
.y4{bottom:441.941333pt;}
.y190{bottom:443.158667pt;}
.y144{bottom:443.301333pt;}
.yac{bottom:445.570667pt;}
.y110{bottom:445.760255pt;}
.y276{bottom:445.769333pt;}
.ye1{bottom:446.621333pt;}
.y7a{bottom:447.164000pt;}
.y38{bottom:448.861333pt;}
.y1b2{bottom:448.879978pt;}
.y1d7{bottom:450.502667pt;}
.y20a{bottom:451.236000pt;}
.y3{bottom:457.841333pt;}
.y143{bottom:458.661333pt;}
.y18f{bottom:459.896000pt;}
.y240{bottom:460.016000pt;}
.y275{bottom:461.112000pt;}
.yab{bottom:462.306667pt;}
.ye0{bottom:463.358667pt;}
.y10f{bottom:463.389941pt;}
.y78{bottom:463.901333pt;}
.y1b1{bottom:465.140368pt;}
.y37{bottom:466.156000pt;}
.y1d6{bottom:467.598667pt;}
.y209{bottom:467.972000pt;}
.y79{bottom:468.722667pt;}
.y2{bottom:473.741333pt;}
.y142{bottom:474.057333pt;}
.y23f{bottom:475.637333pt;}
.y274{bottom:476.454667pt;}
.y18e{bottom:476.633333pt;}
.yaa{bottom:479.044000pt;}
.ydf{bottom:480.096000pt;}
.y77{bottom:480.638667pt;}
.y10e{bottom:480.978468pt;}
.y1b0{bottom:481.375450pt;}
.y36{bottom:483.450667pt;}
.y1d5{bottom:484.694667pt;}
.y208{bottom:484.709333pt;}
.y141{bottom:489.417333pt;}
.y1{bottom:489.642667pt;}
.y273{bottom:491.797333pt;}
.y18d{bottom:493.370667pt;}
.ya9{bottom:495.781333pt;}
.yde{bottom:496.833333pt;}
.y75{bottom:497.376000pt;}
.y1af{bottom:497.597878pt;}
.y10d{bottom:498.566995pt;}
.y23e{bottom:499.229333pt;}
.y35{bottom:500.746667pt;}
.y207{bottom:501.446667pt;}
.y1d4{bottom:501.790667pt;}
.y76{bottom:502.197333pt;}
.y140{bottom:504.813333pt;}
.y272{bottom:507.138667pt;}
.y18c{bottom:510.108000pt;}
.y28b{bottom:511.478667pt;}
.ya8{bottom:512.518667pt;}
.ydc{bottom:513.570667pt;}
.y1ae{bottom:513.820306pt;}
.y74{bottom:514.113333pt;}
.y23d{bottom:514.850667pt;}
.y10c{bottom:516.169242pt;}
.y34{bottom:518.041333pt;}
.y206{bottom:518.184000pt;}
.ydd{bottom:518.392000pt;}
.y1d3{bottom:518.886667pt;}
.y13f{bottom:520.173333pt;}
.y271{bottom:522.481333pt;}
.y18a{bottom:526.845333pt;}
.ya7{bottom:529.256000pt;}
.y1ad{bottom:530.055388pt;}
.ydb{bottom:530.308000pt;}
.y23c{bottom:530.472000pt;}
.y72{bottom:530.850667pt;}
.y18b{bottom:531.666667pt;}
.y10b{bottom:533.798928pt;}
.y205{bottom:534.921333pt;}
.y33{bottom:535.336000pt;}
.y13e{bottom:535.581333pt;}
.y73{bottom:535.672000pt;}
.y1d2{bottom:535.982667pt;}
.y270{bottom:537.824000pt;}
.y26f{bottom:542.164000pt;}
.y189{bottom:543.582667pt;}
.ya6{bottom:545.993333pt;}
.y23b{bottom:546.093333pt;}
.y1ac{bottom:546.315778pt;}
.yda{bottom:547.045333pt;}
.y71{bottom:547.588000pt;}
.y13d{bottom:550.941333pt;}
.y10a{bottom:551.387455pt;}
.y204{bottom:551.658667pt;}
.y32{bottom:552.632000pt;}
.y1d1{bottom:553.078667pt;}
.y26e{bottom:553.166667pt;}
.y188{bottom:560.320000pt;}
.y1ab{bottom:562.538206pt;}
.ya4{bottom:562.730667pt;}
.y70{bottom:564.325333pt;}
.y13c{bottom:566.337333pt;}
.ya5{bottom:567.553333pt;}
.yd9{bottom:567.768000pt;}
.y203{bottom:568.396000pt;}
.y26d{bottom:568.509333pt;}
.y109{bottom:568.975983pt;}
.y222{bottom:569.146667pt;}
.y23a{bottom:569.685333pt;}
.y30{bottom:569.926667pt;}
.y1d0{bottom:570.173333pt;}
.y31{bottom:574.266667pt;}
.y187{bottom:577.057333pt;}
.y1aa{bottom:578.760634pt;}
.ya3{bottom:579.468000pt;}
.y6e{bottom:581.062667pt;}
.y13b{bottom:581.697333pt;}
.y26c{bottom:583.852000pt;}
.y239{bottom:585.306667pt;}
.y6f{bottom:585.884000pt;}
.y108{bottom:586.578229pt;}
.y2f{bottom:587.222667pt;}
.y1cf{bottom:587.269333pt;}
.y202{bottom:589.118667pt;}
.y186{bottom:593.794667pt;}
.y1a9{bottom:594.995716pt;}
.ya2{bottom:596.205333pt;}
.y13a{bottom:597.093333pt;}
.y6d{bottom:597.800000pt;}
.y26b{bottom:599.194667pt;}
.yd8{bottom:600.652000pt;}
.y238{bottom:600.928000pt;}
.y107{bottom:604.166757pt;}
.y1ce{bottom:604.365333pt;}
.y2e{bottom:604.517333pt;}
.y185{bottom:610.532000pt;}
.y1a8{bottom:611.256106pt;}
.ya1{bottom:612.942667pt;}
.yd7{bottom:613.272000pt;}
.y6c{bottom:614.537333pt;}
.y237{bottom:616.549333pt;}
.y1cd{bottom:621.461333pt;}
.y106{bottom:621.796443pt;}
.y2d{bottom:621.812000pt;}
.y184{bottom:627.269333pt;}
.y201{bottom:629.396000pt;}
.ya0{bottom:629.680000pt;}
.y26a{bottom:629.878667pt;}
.y6b{bottom:631.274667pt;}
.y236{bottom:632.170667pt;}
.yd6{bottom:632.678667pt;}
.y1cc{bottom:638.557333pt;}
.y2c{bottom:639.108000pt;}
.y105{bottom:639.398689pt;}
.y135{bottom:640.573333pt;}
.y183{bottom:644.006667pt;}
.y138{bottom:644.341173pt;}
.y269{bottom:645.221333pt;}
.y9f{bottom:646.417333pt;}
.yd5{bottom:647.289333pt;}
.yd3{bottom:647.640000pt;}
.y235{bottom:647.792000pt;}
.y6a{bottom:648.012000pt;}
.y200{bottom:650.410667pt;}
.y69{bottom:652.833333pt;}
.y137{bottom:652.895853pt;}
.y1cb{bottom:655.653333pt;}
.y2b{bottom:656.402667pt;}
.y104{bottom:656.987217pt;}
.y134{bottom:657.310667pt;}
.y1a6{bottom:657.392248pt;}
.y268{bottom:660.564000pt;}
.yd4{bottom:661.901333pt;}
.y9e{bottom:663.154667pt;}
.y234{bottom:663.413333pt;}
.y67{bottom:664.749333pt;}
.y1ff{bottom:665.022667pt;}
.y1a5{bottom:665.519194pt;}
.y68{bottom:669.570667pt;}
.y133{bottom:674.048000pt;}
.y103{bottom:674.575744pt;}
.y267{bottom:675.906667pt;}
.y1a4{bottom:678.246667pt;}
.y233{bottom:679.036000pt;}
.y1fe{bottom:679.634667pt;}
.y9d{bottom:679.892000pt;}
.y182{bottom:680.432000pt;}
.y66{bottom:681.485333pt;}
.yd2{bottom:682.916000pt;}
.y2a{bottom:686.776000pt;}
.yd1{bottom:690.753333pt;}
.y132{bottom:690.785333pt;}
.y266{bottom:691.249333pt;}
.y102{bottom:692.205430pt;}
.y9c{bottom:696.629333pt;}
.y64{bottom:698.222667pt;}
.y1fd{bottom:700.648000pt;}
.y181{bottom:701.445333pt;}
.y232{bottom:702.626667pt;}
.y65{bottom:703.045333pt;}
.y29{bottom:704.980000pt;}
.y265{bottom:706.592000pt;}
.y131{bottom:707.522667pt;}
.y101{bottom:709.807677pt;}
.y1f7{bottom:710.134667pt;}
.y9b{bottom:713.366667pt;}
.y62{bottom:714.960000pt;}
.y1fc{bottom:715.260000pt;}
.y180{bottom:716.057333pt;}
.y231{bottom:718.248000pt;}
.yd0{bottom:718.541333pt;}
.y28{bottom:719.325333pt;}
.y63{bottom:719.782667pt;}
.y264{bottom:721.934667pt;}
.y130{bottom:724.260000pt;}
.ycf{bottom:724.822667pt;}
.y100{bottom:727.396204pt;}
.y27{bottom:729.814667pt;}
.y9a{bottom:730.104000pt;}
.y17f{bottom:730.669333pt;}
.y61{bottom:731.697333pt;}
.y230{bottom:733.869333pt;}
.y1fb{bottom:736.274667pt;}
.y263{bottom:737.277333pt;}
.y12f{bottom:740.997333pt;}
.yff{bottom:744.984731pt;}
.y99{bottom:746.841333pt;}
.y26{bottom:748.018667pt;}
.y5f{bottom:748.434667pt;}
.y22f{bottom:749.490667pt;}
.y1fa{bottom:750.885333pt;}
.y17e{bottom:751.684000pt;}
.y262{bottom:752.620000pt;}
.y60{bottom:753.257333pt;}
.yce{bottom:754.168000pt;}
.y12e{bottom:757.734667pt;}
.y178{bottom:758.977333pt;}
.ycd{bottom:762.005333pt;}
.y25{bottom:762.364000pt;}
.yfe{bottom:762.586978pt;}
.y98{bottom:763.578667pt;}
.y22e{bottom:765.113333pt;}
.y5e{bottom:765.172000pt;}
.y17d{bottom:766.294667pt;}
.y261{bottom:767.961333pt;}
.y1f9{bottom:771.900000pt;}
.y12d{bottom:774.472000pt;}
.y24{bottom:776.710667pt;}
.y1f8{bottom:779.205333pt;}
.yfd{bottom:780.216664pt;}
.y97{bottom:780.316000pt;}
.y22d{bottom:780.734667pt;}
.y5c{bottom:781.909333pt;}
.y260{bottom:783.304000pt;}
.y5d{bottom:786.732000pt;}
.y23{bottom:787.200000pt;}
.y17c{bottom:787.309333pt;}
.ycc{bottom:789.793333pt;}
.y12c{bottom:795.194667pt;}
.y96{bottom:797.053333pt;}
.ycb{bottom:797.630667pt;}
.yfc{bottom:797.805191pt;}
.y5b{bottom:798.646667pt;}
.y22{bottom:801.545333pt;}
.y17b{bottom:801.921333pt;}
.y22c{bottom:804.325333pt;}
.y1f6{bottom:807.525333pt;}
.y95{bottom:813.790667pt;}
.y25f{bottom:813.989333pt;}
.y59{bottom:815.384000pt;}
.yfb{bottom:815.393718pt;}
.y21{bottom:815.892000pt;}
.y1f4{bottom:816.454667pt;}
.y5a{bottom:820.206667pt;}
.y22b{bottom:820.365333pt;}
.y12b{bottom:822.240000pt;}
.y17a{bottom:822.934667pt;}
.yca{bottom:825.418667pt;}
.y1f5{bottom:828.540000pt;}
.y25e{bottom:829.332000pt;}
.y179{bottom:830.241333pt;}
.y93{bottom:830.528000pt;}
.y57{bottom:832.121333pt;}
.yfa{bottom:832.995965pt;}
.y20{bottom:834.096000pt;}
.y94{bottom:835.349333pt;}
.y22a{bottom:836.405333pt;}
.y58{bottom:836.944000pt;}
.y12a{bottom:839.336000pt;}
.yc9{bottom:840.030667pt;}
.yc7{bottom:840.381333pt;}
.y25d{bottom:844.674667pt;}
.y56{bottom:848.858667pt;}
.y1f3{bottom:849.553333pt;}
.yf9{bottom:850.625651pt;}
.y92{bottom:851.249333pt;}
.y229{bottom:852.445333pt;}
.yc8{bottom:854.642667pt;}
.y129{bottom:856.432000pt;}
.y177{bottom:858.561333pt;}
.y25c{bottom:860.017333pt;}
.y1f2{bottom:864.165333pt;}
.y55{bottom:865.596000pt;}
.y175{bottom:867.489333pt;}
.y228{bottom:868.485333pt;}
.y91{bottom:869.182667pt;}
.y1f{bottom:869.884000pt;}
.y128{bottom:873.528000pt;}
.y25b{bottom:875.360000pt;}
.yc6{bottom:875.657333pt;}
.y176{bottom:879.574667pt;}
.y54{bottom:882.333333pt;}
.yc5{bottom:883.312000pt;}
.y227{bottom:884.525333pt;}
.y1f1{bottom:885.180000pt;}
.y1e{bottom:886.621333pt;}
.y127{bottom:890.624000pt;}
.y25a{bottom:890.702667pt;}
.y53{bottom:899.070667pt;}
.y226{bottom:900.565333pt;}
.y174{bottom:900.589333pt;}
.yf7{bottom:900.646942pt;}
.y259{bottom:906.044000pt;}
.y126{bottom:907.720000pt;}
.yf6{bottom:909.458262pt;}
.yc4{bottom:911.282667pt;}
.y173{bottom:915.201333pt;}
.y51{bottom:915.808000pt;}
.y1f0{bottom:915.942667pt;}
.y52{bottom:920.629333pt;}
.y258{bottom:921.386667pt;}
.y1d{bottom:922.104000pt;}
.y125{bottom:924.816000pt;}
.yc3{bottom:932.296000pt;}
.y50{bottom:932.545333pt;}
.y1ef{bottom:933.038667pt;}
.y172{bottom:936.214667pt;}
.y257{bottom:936.729333pt;}
.y124{bottom:941.912000pt;}
.y1c{bottom:947.210667pt;}
.y4e{bottom:949.282667pt;}
.y256{bottom:952.072000pt;}
.yc2{bottom:953.310667pt;}
.y4f{bottom:954.104000pt;}
.y122{bottom:959.008000pt;}
.y123{bottom:963.346667pt;}
.y4d{bottom:966.020000pt;}
.y171{bottom:966.977333pt;}
.y255{bottom:967.414667pt;}
.y1b{bottom:972.316000pt;}
.y121{bottom:976.104000pt;}
.y4c{bottom:982.757333pt;}
.yc1{bottom:984.073333pt;}
.y1ee{bottom:987.578667pt;}
.y17{bottom:1010.972000pt;}
.y4b{bottom:1038.548000pt;}
.h2b{height:25.811318pt;}
.h9{height:28.947524pt;}
.h22{height:33.186336pt;}
.h2a{height:33.378918pt;}
.h2{height:33.771789pt;}
.hb{height:34.574438pt;}
.h4{height:35.024664pt;}
.hf{height:36.666735pt;}
.h10{height:36.873667pt;}
.h12{height:37.087439pt;}
.h25{height:37.750254pt;}
.h20{height:38.347031pt;}
.hd{height:38.415786pt;}
.ha{height:38.596538pt;}
.h6{height:38.947124pt;}
.h1f{height:39.231562pt;}
.h1c{height:39.737109pt;}
.h18{height:40.929223pt;}
.h27{height:42.416016pt;}
.h5{height:43.279398pt;}
.hc{height:43.421286pt;}
.h1e{height:44.648438pt;}
.h3{height:45.272024pt;}
.h1a{height:45.987891pt;}
.h26{height:47.081777pt;}
.he{height:48.245551pt;}
.h8{height:48.481423pt;}
.h1d{height:49.559766pt;}
.h19{height:51.046559pt;}
.h11{height:55.952068pt;}
.h21{height:63.795772pt;}
.h28{height:63.801105pt;}
.h7{height:69.148877pt;}
.h15{height:70.514620pt;}
.h14{height:70.519953pt;}
.h13{height:71.250620pt;}
.h23{height:72.642620pt;}
.h29{height:72.647953pt;}
.h16{height:76.743953pt;}
.h1b{height:230.556000pt;}
.h24{height:317.795267pt;}
.h17{height:323.734493pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:185.925531pt;}
.w3{width:551.291020pt;}
.w4{width:644.976800pt;}
.w5{width:660.739693pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x97{left:-84.916716pt;}
.xb7{left:-3.330649pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x2{left:52.172471pt;}
.xa4{left:55.125333pt;}
.xac{left:61.480000pt;}
.xb6{left:66.293840pt;}
.xa5{left:71.116000pt;}
.x9c{left:74.173867pt;}
.xa3{left:75.288000pt;}
.xe4{left:76.309333pt;}
.x7d{left:79.626667pt;}
.x76{left:80.785333pt;}
.xe7{left:85.806667pt;}
.x7c{left:90.828000pt;}
.x98{left:94.188583pt;}
.x75{left:104.294667pt;}
.x78{left:112.096000pt;}
.x7f{left:113.901333pt;}
.x74{left:117.302667pt;}
.x7e{left:121.833333pt;}
.x99{left:123.356453pt;}
.xae{left:133.114667pt;}
.xa6{left:135.290667pt;}
.xb3{left:137.006667pt;}
.xb1{left:139.313333pt;}
.xaf{left:143.528000pt;}
.xb0{left:148.973333pt;}
.xb8{left:161.863559pt;}
.x9d{left:174.228800pt;}
.xb9{left:188.765963pt;}
.x9e{left:202.551680pt;}
.xef{left:211.989333pt;}
.xb2{left:218.217333pt;}
.x5{left:220.912000pt;}
.x3{left:221.858667pt;}
.xad{left:225.318667pt;}
.x34{left:232.617333pt;}
.xbc{left:234.685333pt;}
.x8e{left:237.173333pt;}
.x4{left:239.924000pt;}
.x8c{left:241.493333pt;}
.x9{left:250.204000pt;}
.x8f{left:251.421333pt;}
.x25{left:252.598667pt;}
.x8d{left:254.777333pt;}
.x39{left:256.221333pt;}
.x60{left:258.018667pt;}
.x26{left:263.358667pt;}
.xc3{left:266.229333pt;}
.x10{left:267.273333pt;}
.xa1{left:268.704000pt;}
.xc{left:270.836000pt;}
.x61{left:272.248000pt;}
.x6{left:274.361333pt;}
.xa0{left:275.557333pt;}
.xd{left:277.477333pt;}
.xc4{left:282.766667pt;}
.x7b{left:284.458667pt;}
.x51{left:286.845333pt;}
.x1c{left:288.077333pt;}
.xd7{left:289.541333pt;}
.xe6{left:291.356000pt;}
.x59{left:293.018667pt;}
.xbe{left:296.364000pt;}
.x90{left:298.513333pt;}
.x96{left:299.974667pt;}
.x11{left:301.528000pt;}
.x46{left:302.973333pt;}
.xbf{left:304.337333pt;}
.xa2{left:305.333333pt;}
.x62{left:306.310667pt;}
.x12{left:308.169333pt;}
.x18{left:315.093333pt;}
.x47{left:316.257333pt;}
.x3a{left:317.888000pt;}
.xcc{left:320.290667pt;}
.x19{left:321.736000pt;}
.xa7{left:325.336000pt;}
.xc7{left:327.497333pt;}
.x3b{left:331.170667pt;}
.x79{left:333.706667pt;}
.xc8{left:338.256000pt;}
.x3c{left:342.918667pt;}
.x91{left:346.140000pt;}
.xe1{left:347.282667pt;}
.xd0{left:349.280000pt;}
.x83{left:350.802667pt;}
.x3d{left:353.678667pt;}
.xc5{left:359.005333pt;}
.x77{left:362.572000pt;}
.x84{left:364.086667pt;}
.x7a{left:365.806667pt;}
.x7{left:367.718667pt;}
.x37{left:368.633333pt;}
.x17{left:370.037333pt;}
.xe0{left:371.349333pt;}
.xc6{left:372.288000pt;}
.xa{left:373.462667pt;}
.x8{left:377.681333pt;}
.x92{left:378.768000pt;}
.xb{left:380.105333pt;}
.x63{left:381.129333pt;}
.x66{left:382.321333pt;}
.x38{left:383.961333pt;}
.x88{left:386.509333pt;}
.x80{left:390.912000pt;}
.x93{left:393.016000pt;}
.x64{left:395.358667pt;}
.x89{left:399.792000pt;}
.x81{left:403.273333pt;}
.xc0{left:406.633333pt;}
.xc1{left:413.280000pt;}
.xd9{left:416.217333pt;}
.xda{left:429.500000pt;}
.xdb{left:432.778667pt;}
.x5a{left:433.978667pt;}
.x55{left:434.993333pt;}
.x49{left:445.042667pt;}
.xdc{left:446.061333pt;}
.x42{left:448.970667pt;}
.xcd{left:450.085333pt;}
.x65{left:453.965333pt;}
.x4a{left:458.325333pt;}
.x43{left:462.253333pt;}
.x6e{left:463.262667pt;}
.xa8{left:470.548000pt;}
.x35{left:471.897333pt;}
.x4b{left:474.993333pt;}
.x36{left:478.540000pt;}
.xa9{left:480.381333pt;}
.x82{left:482.369333pt;}
.x4c{left:487.054667pt;}
.x1d{left:489.054667pt;}
.xde{left:498.158667pt;}
.x1e{left:499.814667pt;}
.x94{left:503.269333pt;}
.x6f{left:506.762667pt;}
.xdf{left:508.918667pt;}
.x27{left:513.865333pt;}
.x28{left:520.508000pt;}
.xbd{left:522.246667pt;}
.x95{left:523.210667pt;}
.xe2{left:525.270667pt;}
.x5b{left:528.332000pt;}
.xce{left:530.768000pt;}
.x4d{left:532.049333pt;}
.xc9{left:533.286667pt;}
.x40{left:534.720000pt;}
.xe{left:537.830667pt;}
.x6c{left:539.633333pt;}
.x5c{left:542.562667pt;}
.xf{left:544.473333pt;}
.x41{left:545.480000pt;}
.x67{left:546.509333pt;}
.xaa{left:548.070667pt;}
.x9a{left:550.420162pt;}
.x44{left:557.305333pt;}
.x68{left:560.365333pt;}
.x5d{left:562.025333pt;}
.x30{left:564.034667pt;}
.x45{left:568.065333pt;}
.x3e{left:570.085333pt;}
.x31{left:574.793333pt;}
.x5e{left:576.254667pt;}
.xd3{left:577.717333pt;}
.x70{left:580.837333pt;}
.xca{left:581.788000pt;}
.x3f{left:583.369333pt;}
.x52{left:585.345333pt;}
.xc2{left:587.177333pt;}
.xd4{left:588.477333pt;}
.xcb{left:592.546667pt;}
.xd8{left:594.424000pt;}
.xed{left:596.825333pt;}
.x53{left:598.629333pt;}
.xdd{left:599.548000pt;}
.x13{left:601.356000pt;}
.xee{left:608.670667pt;}
.x1a{left:609.981333pt;}
.x14{left:612.116000pt;}
.x54{left:615.166667pt;}
.x1b{left:616.624000pt;}
.x5f{left:618.418667pt;}
.x86{left:623.249333pt;}
.xe5{left:624.278667pt;}
.x71{left:625.562667pt;}
.x9b{left:628.098667pt;}
.x8a{left:634.312000pt;}
.xab{left:635.425333pt;}
.x87{left:638.944000pt;}
.xea{left:640.344000pt;}
.x9f{left:642.338120pt;}
.xcf{left:648.157333pt;}
.xba{left:652.306667pt;}
.x2b{left:654.182667pt;}
.xbb{left:655.262667pt;}
.x29{left:657.486667pt;}
.x2d{left:660.590667pt;}
.x2e{left:663.964000pt;}
.x2c{left:664.942667pt;}
.xd5{left:665.969333pt;}
.x2a{left:668.246667pt;}
.x8b{left:669.716000pt;}
.x69{left:671.604000pt;}
.xb4{left:673.821333pt;}
.x2f{left:677.248000pt;}
.xd6{left:679.253333pt;}
.x6a{left:680.246667pt;}
.x4e{left:681.585333pt;}
.x56{left:683.209333pt;}
.xb5{left:684.580000pt;}
.x85{left:686.414667pt;}
.xeb{left:687.844000pt;}
.x73{left:689.378667pt;}
.xe3{left:690.805333pt;}
.x72{left:695.370667pt;}
.x57{left:696.492000pt;}
.xec{left:698.369333pt;}
.x6b{left:699.501333pt;}
.x15{left:700.604000pt;}
.x23{left:702.436000pt;}
.x4f{left:704.154667pt;}
.x32{left:705.648000pt;}
.x16{left:707.246667pt;}
.xd1{left:708.552000pt;}
.x48{left:710.933333pt;}
.x33{left:712.289333pt;}
.x24{left:713.196000pt;}
.x58{left:716.285333pt;}
.x50{left:717.437333pt;}
.xe8{left:720.308000pt;}
.xd2{left:721.836000pt;}
.x1f{left:723.454667pt;}
.x6d{left:726.842667pt;}
.x20{left:730.097333pt;}
.x21{left:733.484000pt;}
.x22{left:740.126667pt;}
.xe9{left:744.218667pt;}
}




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