
    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_5b34b40cfa79d2b047d605c4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_c3980db84048b5c8051f5f36.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_fd4532150b787adaefed3918.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fa0bd99e4c69de992c313eff.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_a93d24890d4c55e2b9c664a8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_407854d0ca76be959914ba02.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.921000;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_035ec5dbb68a5cd9bf1f6ea0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.932000;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_d64ca201b89d5cbb48112634.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_b2cb437f02d1ed57ec0e282b.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_e215ec5bf06094f47a52dd8a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.596000;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_cc4fc571cd784291d6cb0cd7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.569000;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_ae14cf269cf00e4f8125fec9.woff2')format("woff");}.ffc{font-family:ffc;line-height:2.999000;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_c30116471bcfecb264ecbdf9.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_0cc8468885e882b76336a626.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_83f1370503187def18e21e2b.woff2')format("woff");}.fff{font-family:fff;line-height:0.451000;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_f6a327f2684ae9646e5d574b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.773000;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_3fc69d643b3974985497ed6a.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.947000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_09469bfd63a8611edc1ad327.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_27cb5545aaab26f3251359be.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_09469bfd63a8611edc1ad327.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_09469bfd63a8611edc1ad327.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_27cb5545aaab26f3251359be.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_27cb5545aaab26f3251359be.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_27cb5545aaab26f3251359be.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_32f1b6ddff054a5b509fcfc3.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_2881bb2d12e755338b5f5940.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.732000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m4{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);}
.me{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);}
.m11{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);}
.m1{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);}
.m1c{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);}
.mc{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);}
.m1b{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);}
.mf{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.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);}
.m12{transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249713,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249713,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.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);}
.ma{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);}
.m17{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);}
.m16{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);}
.m19{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);}
.m18{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);}
.mb{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);}
.m8{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);}
.m1a{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);}
.m14{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);}
.md{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);}
.m6{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);}
.m15{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m9{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:-26.028000px;}
.v10{vertical-align:-23.754000px;}
.v16{vertical-align:-18.930000px;}
.va{vertical-align:-9.816000px;}
.v12{vertical-align:-6.642000px;}
.v20{vertical-align:-5.357197px;}
.v21{vertical-align:-3.799110px;}
.v1f{vertical-align:-2.477527px;}
.v22{vertical-align:-1.345234px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:6.360000px;}
.v6{vertical-align:9.822000px;}
.v11{vertical-align:14.118000px;}
.v4{vertical-align:16.182000px;}
.v1b{vertical-align:17.274000px;}
.ve{vertical-align:19.836000px;}
.v1c{vertical-align:22.572000px;}
.v9{vertical-align:23.754000px;}
.v1d{vertical-align:25.770000px;}
.v3{vertical-align:27.024000px;}
.v1{vertical-align:31.236000px;}
.v8{vertical-align:35.082000px;}
.v15{vertical-align:39.930000px;}
.v1e{vertical-align:42.648000px;}
.v7{vertical-align:44.280000px;}
.v24{vertical-align:45.948000px;}
.v13{vertical-align:47.556000px;}
.v1a{vertical-align:50.640000px;}
.v25{vertical-align:52.662000px;}
.vd{vertical-align:53.730000px;}
.vf{vertical-align:55.392000px;}
.v17{vertical-align:56.742000px;}
.v19{vertical-align:60.462000px;}
.v14{vertical-align:71.310000px;}
.vc{vertical-align:72.660000px;}
.v18{vertical-align:84.210000px;}
.v26{vertical-align:98.610000px;}
.v23{vertical-align:103.638000px;}
.vb{vertical-align:123.966000px;}
.v27{vertical-align:156.300000px;}
.ls2{letter-spacing:0.000000px;}
.ls60{letter-spacing:0.000982px;}
.lsa3{letter-spacing:0.001044px;}
.ls5a{letter-spacing:0.002682px;}
.ls7a{letter-spacing:0.002696px;}
.ls50{letter-spacing:0.002700px;}
.ls35{letter-spacing:0.002706px;}
.ls63{letter-spacing:0.003057px;}
.ls2a{letter-spacing:0.004478px;}
.ls4f{letter-spacing:0.004808px;}
.ls7e{letter-spacing:0.005402px;}
.ls5d{letter-spacing:0.005976px;}
.ls34{letter-spacing:0.009740px;}
.ls65{letter-spacing:0.011266px;}
.ls52{letter-spacing:0.011287px;}
.ls99{letter-spacing:0.012272px;}
.ls5{letter-spacing:0.012838px;}
.ls37{letter-spacing:0.015193px;}
.ls30{letter-spacing:0.015740px;}
.ls8d{letter-spacing:0.016241px;}
.ls2e{letter-spacing:0.024964px;}
.ls61{letter-spacing:0.028024px;}
.ls5b{letter-spacing:0.028682px;}
.lsa1{letter-spacing:0.029314px;}
.ls32{letter-spacing:0.030964px;}
.lsa6{letter-spacing:0.032016px;}
.ls4c{letter-spacing:0.191282px;}
.ls23{letter-spacing:0.242692px;}
.ls11{letter-spacing:0.261818px;}
.ls4d{letter-spacing:1.291156px;}
.ls45{letter-spacing:1.803170px;}
.ls66{letter-spacing:1.814137px;}
.ls3{letter-spacing:1.820137px;}
.ls70{letter-spacing:1.820222px;}
.lse{letter-spacing:1.828161px;}
.ls58{letter-spacing:2.356366px;}
.ls7b{letter-spacing:2.773595px;}
.ls54{letter-spacing:2.980031px;}
.ls31{letter-spacing:2.984915px;}
.ls4a{letter-spacing:2.986031px;}
.ls3a{letter-spacing:2.986059px;}
.lsa2{letter-spacing:2.986138px;}
.ls57{letter-spacing:2.986200px;}
.ls12{letter-spacing:2.988499px;}
.ls1f{letter-spacing:2.989194px;}
.ls24{letter-spacing:2.989223px;}
.ls27{letter-spacing:2.990450px;}
.ls1{letter-spacing:2.990915px;}
.ls2d{letter-spacing:2.992059px;}
.ls0{letter-spacing:2.992200px;}
.ls19{letter-spacing:2.995223px;}
.ls29{letter-spacing:2.995256px;}
.ls67{letter-spacing:3.632153px;}
.ls86{letter-spacing:3.730912px;}
.ls14{letter-spacing:3.796367px;}
.ls4e{letter-spacing:4.265644px;}
.ls80{letter-spacing:4.394022px;}
.ls7f{letter-spacing:4.400022px;}
.ls78{letter-spacing:5.044059px;}
.ls73{letter-spacing:5.068984px;}
.ls76{letter-spacing:5.116804px;}
.ls77{letter-spacing:5.315347px;}
.ls49{letter-spacing:5.345269px;}
.ls46{letter-spacing:5.976532px;}
.ls18{letter-spacing:6.293424px;}
.ls28{letter-spacing:7.043428px;}
.ls1a{letter-spacing:7.069097px;}
.ls75{letter-spacing:7.140493px;}
.ls96{letter-spacing:7.173282px;}
.ls6{letter-spacing:7.178696px;}
.ls42{letter-spacing:7.185580px;}
.ls20{letter-spacing:7.396370px;}
.ls1e{letter-spacing:7.461824px;}
.ls9{letter-spacing:9.098189px;}
.ls2b{letter-spacing:10.163220px;}
.ls5e{letter-spacing:10.930918px;}
.ls26{letter-spacing:11.619962px;}
.ls1c{letter-spacing:11.625962px;}
.ls89{letter-spacing:12.305465px;}
.ls8a{letter-spacing:12.370919px;}
.ls90{letter-spacing:14.465467px;}
.ls8{letter-spacing:14.530921px;}
.ls8e{letter-spacing:14.596376px;}
.ls88{letter-spacing:15.320915px;}
.ls72{letter-spacing:16.167286px;}
.ls51{letter-spacing:16.625468px;}
.ls8f{letter-spacing:17.492915px;}
.ls2f{letter-spacing:17.528915px;}
.ls36{letter-spacing:17.530138px;}
.ls7{letter-spacing:17.532499px;}
.ls3d{letter-spacing:17.534915px;}
.ls33{letter-spacing:17.539223px;}
.ls1d{letter-spacing:17.804915px;}
.ls1b{letter-spacing:18.081311px;}
.ls25{letter-spacing:18.088567px;}
.lsc{letter-spacing:18.130924px;}
.ls59{letter-spacing:18.158972px;}
.lsa{letter-spacing:18.196379px;}
.ls48{letter-spacing:18.261833px;}
.ls9b{letter-spacing:18.392743px;}
.ls9a{letter-spacing:18.458197px;}
.ls4{letter-spacing:19.091236px;}
.lsf{letter-spacing:19.097236px;}
.lsae{letter-spacing:19.413095px;}
.ls94{letter-spacing:20.552744px;}
.ls3c{letter-spacing:21.164915px;}
.ls40{letter-spacing:21.172059px;}
.lsaa{letter-spacing:21.469109px;}
.ls3e{letter-spacing:21.600018px;}
.ls82{letter-spacing:21.665473px;}
.ls8c{letter-spacing:21.717282px;}
.ls91{letter-spacing:21.730927px;}
.ls10{letter-spacing:21.796382px;}
.ls17{letter-spacing:21.861836px;}
.ls7d{letter-spacing:21.927291px;}
.ls85{letter-spacing:21.992746px;}
.ls93{letter-spacing:22.058200px;}
.ls16{letter-spacing:22.123655px;}
.ls9c{letter-spacing:22.254564px;}
.ls6e{letter-spacing:23.163460px;}
.ls68{letter-spacing:24.386915px;}
.ls38{letter-spacing:24.806915px;}
.ls92{letter-spacing:25.330930px;}
.ls5c{letter-spacing:25.985476px;}
.ls5f{letter-spacing:26.560677px;}
.ls56{letter-spacing:26.566677px;}
.ls47{letter-spacing:27.798532px;}
.ls3f{letter-spacing:28.008532px;}
.ls39{letter-spacing:28.865479px;}
.ls97{letter-spacing:29.443401px;}
.ls98{letter-spacing:29.443500px;}
.lsa0{letter-spacing:29.886777px;}
.ls9f{letter-spacing:30.316898px;}
.lsb0{letter-spacing:33.381846px;}
.ls41{letter-spacing:36.077412px;}
.lsaf{letter-spacing:36.654576px;}
.ls7c{letter-spacing:42.139860px;}
.ls44{letter-spacing:46.188532px;}
.ls3b{letter-spacing:54.523682px;}
.lsa7{letter-spacing:54.589136px;}
.lsa8{letter-spacing:58.856332px;}
.lsa9{letter-spacing:58.869401px;}
.lsad{letter-spacing:61.995095px;}
.ls95{letter-spacing:66.394898px;}
.ls8b{letter-spacing:66.466280px;}
.ls9d{letter-spacing:104.571095px;}
.ls9e{letter-spacing:104.577095px;}
.lsac{letter-spacing:152.843246px;}
.lsab{letter-spacing:154.812827px;}
.lsa4{letter-spacing:171.631890px;}
.lsa5{letter-spacing:209.044590px;}
.ls81{letter-spacing:271.898408px;}
.ls79{letter-spacing:340.233011px;}
.ls71{letter-spacing:497.716778px;}
.lsb{letter-spacing:520.233161px;}
.ls53{letter-spacing:524.660915px;}
.ls4b{letter-spacing:536.138629px;}
.ls21{letter-spacing:567.229564px;}
.ls69{letter-spacing:642.960536px;}
.ls2c{letter-spacing:676.342382px;}
.ls55{letter-spacing:723.993331px;}
.ls22{letter-spacing:726.423065px;}
.ls83{letter-spacing:746.902441px;}
.ls84{letter-spacing:746.967895px;}
.ls6f{letter-spacing:796.189754px;}
.ls6b{letter-spacing:836.837061px;}
.ls13{letter-spacing:862.887992px;}
.ls62{letter-spacing:863.084356px;}
.ls87{letter-spacing:928.800774px;}
.ls64{letter-spacing:931.877140px;}
.ls74{letter-spacing:934.037142px;}
.ls6c{letter-spacing:934.168051px;}
.ls6a{letter-spacing:960.218982px;}
.ls15{letter-spacing:993.339010px;}
.lsd{letter-spacing:1007.215385px;}
.ls6d{letter-spacing:1051.331785px;}
.ls43{letter-spacing:1110.502744px;}
.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;}
}
.ws2{word-spacing:-69.735937px;}
.ws2a{word-spacing:-42.637126px;}
.ws44{word-spacing:-36.379667px;}
.ws7d{word-spacing:-33.453846px;}
.ws28{word-spacing:-33.211407px;}
.ws7{word-spacing:-32.727300px;}
.ws6b{word-spacing:-32.714209px;}
.ws2b{word-spacing:-31.771663px;}
.ws26{word-spacing:-31.706208px;}
.ws4{word-spacing:-29.887800px;}
.ws39{word-spacing:-28.106205px;}
.ws3f{word-spacing:-24.506202px;}
.ws2d{word-spacing:-24.440748px;}
.ws74{word-spacing:-24.244384px;}
.ws64{word-spacing:-24.178929px;}
.ws0{word-spacing:-23.245313px;}
.ws1{word-spacing:-22.873388px;}
.ws4a{word-spacing:-21.265735px;}
.ws4b{word-spacing:-21.259735px;}
.ws53{word-spacing:-20.094562px;}
.ws4c{word-spacing:-19.047289px;}
.ws2c{word-spacing:-18.183288px;}
.ws54{word-spacing:-17.476378px;}
.ws1b{word-spacing:-16.560014px;}
.ws7e{word-spacing:-16.363650px;}
.ws42{word-spacing:-16.139475px;}
.ws1e{word-spacing:-15.970922px;}
.ws82{word-spacing:-15.905468px;}
.ws7f{word-spacing:-15.185467px;}
.ws81{word-spacing:-15.054558px;}
.ws83{word-spacing:-14.537467px;}
.ws45{word-spacing:-14.334557px;}
.ws43{word-spacing:-14.111859px;}
.ws37{word-spacing:-14.072739px;}
.ws65{word-spacing:-13.332276px;}
.ws66{word-spacing:-13.326276px;}
.ws8{word-spacing:-12.567283px;}
.ws38{word-spacing:-12.501829px;}
.ws4e{word-spacing:-12.436374px;}
.ws51{word-spacing:-12.370919px;}
.ws34{word-spacing:-12.305465px;}
.ws3d{word-spacing:-12.240010px;}
.ws3b{word-spacing:-12.038125px;}
.ws22{word-spacing:-11.650919px;}
.ws25{word-spacing:-11.585464px;}
.ws84{word-spacing:-11.389100px;}
.ws70{word-spacing:-11.258191px;}
.ws49{word-spacing:-11.192737px;}
.ws2f{word-spacing:-11.127282px;}
.ws30{word-spacing:-11.061827px;}
.ws1c{word-spacing:-10.996373px;}
.ws6{word-spacing:-10.930918px;}
.ws16{word-spacing:-10.865464px;}
.ws4f{word-spacing:-10.800009px;}
.ws1d{word-spacing:-10.734554px;}
.ws6f{word-spacing:-10.669100px;}
.ws56{word-spacing:-10.610191px;}
.ws4d{word-spacing:-10.603645px;}
.ws85{word-spacing:-10.544736px;}
.ws24{word-spacing:-10.472736px;}
.wsd{word-spacing:-10.400954px;}
.ws79{word-spacing:-10.348372px;}
.ws80{word-spacing:-10.282918px;}
.ws11{word-spacing:-10.281403px;}
.ws14{word-spacing:-10.221628px;}
.ws33{word-spacing:-10.210918px;}
.ws13{word-spacing:-10.161852px;}
.ws8a{word-spacing:-10.086554px;}
.ws5a{word-spacing:-10.021099px;}
.ws9{word-spacing:-9.982525px;}
.ws87{word-spacing:-9.955645px;}
.ws12{word-spacing:-9.922750px;}
.ws88{word-spacing:-9.759281px;}
.ws7a{word-spacing:-9.752735px;}
.wse{word-spacing:-9.743423px;}
.ws7b{word-spacing:-9.693826px;}
.wsc{word-spacing:-9.683647px;}
.ws8b{word-spacing:-9.621826px;}
.wsa{word-spacing:-9.444545px;}
.ws31{word-spacing:-9.294553px;}
.ws20{word-spacing:-9.151644px;}
.ws1a{word-spacing:-9.032735px;}
.ws32{word-spacing:-8.705462px;}
.ws86{word-spacing:-8.640007px;}
.ws77{word-spacing:-8.509098px;}
.wsf{word-spacing:-8.428360px;}
.ws10{word-spacing:-8.368584px;}
.ws78{word-spacing:-8.312734px;}
.ws15{word-spacing:-8.116370px;}
.ws2e{word-spacing:-7.854552px;}
.ws89{word-spacing:-7.789097px;}
.ws48{word-spacing:-6.741824px;}
.ws21{word-spacing:-6.414551px;}
.wsb{word-spacing:-5.977560px;}
.ws57{word-spacing:-5.616005px;}
.ws23{word-spacing:-4.712731px;}
.ws18{word-spacing:-4.385458px;}
.ws19{word-spacing:-3.665458px;}
.ws29{word-spacing:-3.652367px;}
.ws59{word-spacing:-3.586912px;}
.ws7c{word-spacing:-2.421820px;}
.ws71{word-spacing:-0.248727px;}
.ws41{word-spacing:-0.183273px;}
.ws27{word-spacing:-0.052364px;}
.ws6c{word-spacing:-0.018769px;}
.ws6a{word-spacing:-0.014895px;}
.ws6e{word-spacing:-0.000830px;}
.ws1f{word-spacing:0.000000px;}
.ws35{word-spacing:0.013091px;}
.ws50{word-spacing:0.078546px;}
.ws52{word-spacing:0.144000px;}
.ws76{word-spacing:0.154812px;}
.ws55{word-spacing:0.340364px;}
.ws63{word-spacing:0.405819px;}
.ws58{word-spacing:3.613094px;}
.ws47{word-spacing:7.278552px;}
.ws3e{word-spacing:11.886555px;}
.ws6d{word-spacing:11.952010px;}
.ws5{word-spacing:23.312640px;}
.ws3{word-spacing:27.975090px;}
.ws17{word-spacing:48.418425px;}
.ws62{word-spacing:106.205410px;}
.ws5b{word-spacing:107.306628px;}
.ws61{word-spacing:185.378818px;}
.ws75{word-spacing:209.549400px;}
.ws69{word-spacing:234.700801px;}
.ws60{word-spacing:309.350649px;}
.ws68{word-spacing:362.324470px;}
.ws5f{word-spacing:388.523171px;}
.ws40{word-spacing:412.599617px;}
.ws8c{word-spacing:454.264513px;}
.ws5e{word-spacing:467.697466px;}
.ws73{word-spacing:485.613465px;}
.ws36{word-spacing:486.961766px;}
.ws3c{word-spacing:546.323364px;}
.ws72{word-spacing:552.087913px;}
.ws67{word-spacing:569.121547px;}
.ws5d{word-spacing:591.669296px;}
.ws46{word-spacing:611.496853px;}
.ws5c{word-spacing:670.843592px;}
.ws3a{word-spacing:727.309281px;}
._19{margin-left:-18.167714px;}
._28{margin-left:-14.502935px;}
._0{margin-left:-11.653650px;}
._3{margin-left:-6.972253px;}
._5{margin-left:-5.336113px;}
._1{margin-left:-3.843225px;}
._4{margin-left:-2.324084px;}
._8{margin-left:-1.202676px;}
._6{width:1.832729px;}
._2{width:3.011997px;}
._24{width:4.289087px;}
._1a{width:5.328302px;}
._1b{width:7.189109px;}
._13{width:9.098189px;}
._17{width:11.192737px;}
._30{width:14.858194px;}
._d{width:17.410924px;}
._12{width:18.979075px;}
._10{width:20.129745px;}
._21{width:21.709978px;}
._1c{width:22.844548px;}
._11{width:24.095193px;}
._b{width:26.012809px;}
._9{width:27.105817px;}
._7{width:29.127297px;}
._e{width:30.344550px;}
._a{width:32.099497px;}
._16{width:33.419318px;}
._14{width:35.378657px;}
._15{width:36.458212px;}
._22{width:37.736599px;}
._1e{width:42.079520px;}
._f{width:43.781515px;}
._26{width:44.858700px;}
._c{width:51.676853px;}
._20{width:55.813976px;}
._29{width:58.340700px;}
._1f{width:96.836850px;}
._2d{width:98.356127px;}
._25{width:101.192035px;}
._2f{width:109.562442px;}
._23{width:117.535140px;}
._18{width:129.115800px;}
._27{width:152.109282px;}
._2a{width:174.979362px;}
._2c{width:199.694700px;}
._2e{width:242.276700px;}
._2b{width:284.852700px;}
._1d{width:521.945438px;}
.fc2{color:rgb(5,150,105);}
.fc3{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(16,185,129);}
.fs9{font-size:8.868164px;}
.fs8{font-size:13.302520px;}
.fs7{font-size:14.780873px;}
.fs6{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs4{font-size:71.731200px;}
.fs1{font-size:86.077200px;}
.fs0{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y145{bottom:7.508801px;}
.y15f{bottom:8.149774px;}
.y144{bottom:8.571472px;}
.y15e{bottom:9.041799px;}
.y121{bottom:9.493768px;}
.yf3{bottom:9.642291px;}
.y143{bottom:9.914513px;}
.y15d{bottom:9.965977px;}
.y142{bottom:10.697011px;}
.y15c{bottom:10.825981px;}
.y120{bottom:10.857736px;}
.y15b{bottom:11.717984px;}
.y141{bottom:11.759682px;}
.yf2{bottom:12.026191px;}
.y15a{bottom:12.610075px;}
.y140{bottom:12.822441px;}
.y11e{bottom:13.162129px;}
.y11d{bottom:13.183927px;}
.y159{bottom:13.502166px;}
.y13f{bottom:13.885199px;}
.yf1{bottom:14.410179px;}
.yf0{bottom:14.734906px;}
.y13e{bottom:14.947892px;}
.y158{bottom:15.164996px;}
.y157{bottom:15.286282px;}
.yd3{bottom:15.593462px;}
.y156{bottom:16.178373px;}
.y13d{bottom:16.721954px;}
.yef{bottom:16.794101px;}
.y11c{bottom:16.830506px;}
.y155{bottom:17.070376px;}
.y13c{bottom:17.073409px;}
.y11b{bottom:17.836443px;}
.y13b{bottom:18.136080px;}
.yed{bottom:19.178001px;}
.yd4{bottom:19.510430px;}
.y127{bottom:20.222690px;}
.y154{bottom:20.364038px;}
.y11a{bottom:20.498964px;}
.yeb{bottom:21.561989px;}
.yea{bottom:22.051936px;}
.y119{bottom:22.488847px;}
.y139{bottom:23.529417px;}
.ye8{bottom:23.945955px;}
.y118{bottom:24.167400px;}
.y117{bottom:24.815127px;}
.y153{bottom:25.563168px;}
.ye6{bottom:26.329811px;}
.ye5{bottom:27.539786px;}
.y116{bottom:27.835858px;}
.ye3{bottom:28.713887px;}
.y115{bottom:29.467686px;}
.y137{bottom:30.336858px;}
.y14d{bottom:30.762254px;}
.ye1{bottom:31.097743px;}
.y113{bottom:31.504094px;}
.y112{bottom:31.793966px;}
.ydf{bottom:33.481598px;}
.y111{bottom:35.172552px;}
.y106{bottom:35.207421px;}
.y148{bottom:35.961339px;}
.yde{bottom:36.540639px;}
.y135{bottom:37.144299px;}
.y110{bottom:38.841010px;}
.y146{bottom:39.793888px;}
.y10f{bottom:42.509468px;}
.y133{bottom:43.951739px;}
.ye0{bottom:43.975877px;}
.y147{bottom:45.720199px;}
.y10e{bottom:46.177926px;}
.y123{bottom:46.949883px;}
.y132{bottom:48.476746px;}
.y10d{bottom:50.100824px;}
.yd5{bottom:50.904413px;}
.ye2{bottom:51.410893px;}
.y149{bottom:51.646289px;}
.y124{bottom:57.359127px;}
.y14a{bottom:57.572600px;}
.ye4{bottom:58.846130px;}
.y134{bottom:60.855079px;}
.y24{bottom:61.467000px;}
.y114{bottom:61.511442px;}
.y14b{bottom:63.498689px;}
.ye7{bottom:66.281367px;}
.y107{bottom:66.601405px;}
.y125{bottom:67.768370px;}
.y14c{bottom:69.425001px;}
.y11f{bottom:72.922060px;}
.y136{bottom:73.233412px;}
.ye9{bottom:73.716383px;}
.y14e{bottom:75.351312px;}
.y126{bottom:78.177614px;}
.yec{bottom:81.151731px;}
.y14f{bottom:81.277401px;}
.yd6{bottom:82.298396px;}
.y122{bottom:84.332678px;}
.y138{bottom:85.611966px;}
.y150{bottom:87.203712px;}
.yee{bottom:88.586858px;}
.y151{bottom:93.129802px;}
.y13a{bottom:97.990520px;}
.y108{bottom:97.995388px;}
.y152{bottom:99.056113px;}
.y7b{bottom:99.325500px;}
.y9e{bottom:99.574500px;}
.yd1{bottom:101.068500px;}
.y23{bottom:106.299000px;}
.yd0{bottom:106.840500px;}
.y4d{bottom:107.040000px;}
.y49{bottom:111.529500px;}
.y160{bottom:112.396500px;}
.y7c{bottom:112.587000px;}
.yd7{bottom:113.692380px;}
.y9b{bottom:117.634500px;}
.y47{bottom:120.888000px;}
.y4b{bottom:127.285500px;}
.y4c{bottom:128.098500px;}
.y109{bottom:129.389371px;}
.y22{bottom:130.951500px;}
.y9d{bottom:132.186000px;}
.y7a{bottom:133.282500px;}
.ydb{bottom:133.541929px;}
.y104{bottom:136.101000px;}
.y9c{bottom:136.668000px;}
.yda{bottom:138.051840px;}
.y48{bottom:138.429000px;}
.y4a{bottom:139.500000px;}
.y131{bottom:141.567000px;}
.y19d{bottom:145.048500px;}
.yd8{bottom:145.086363px;}
.y21{bottom:155.604000px;}
.y103{bottom:156.424500px;}
.y79{bottom:159.222000px;}
.ycf{bottom:160.266000px;}
.y10a{bottom:160.783503px;}
.y9a{bottom:167.766000px;}
.y19c{bottom:169.701000px;}
.yd9{bottom:176.480494px;}
.y102{bottom:176.748000px;}
.y46{bottom:177.403500px;}
.y20{bottom:180.258000px;}
.yce{bottom:184.918500px;}
.y99{bottom:192.418500px;}
.y101{bottom:197.071500px;}
.y78{bottom:203.814000px;}
.y1f{bottom:204.910500px;}
.y19b{bottom:208.449000px;}
.ycd{bottom:209.571000px;}
.y98{bottom:217.072500px;}
.y100{bottom:217.396500px;}
.y1e{bottom:229.563000px;}
.y77{bottom:232.950000px;}
.y19a{bottom:233.101500px;}
.ycc{bottom:234.223500px;}
.yff{bottom:237.720000px;}
.y45{bottom:240.610500px;}
.y96{bottom:250.440000px;}
.y1d{bottom:254.215500px;}
.y95{bottom:257.619000px;}
.y199{bottom:257.754000px;}
.yfe{bottom:258.043500px;}
.ycb{bottom:258.876000px;}
.y94{bottom:261.664500px;}
.y93{bottom:265.801500px;}
.y97{bottom:272.734500px;}
.y76{bottom:277.542000px;}
.yca{bottom:277.756500px;}
.yfd{bottom:278.367000px;}
.y44{bottom:281.683500px;}
.yc9{bottom:283.530000px;}
.y1c{bottom:295.068000px;}
.y198{bottom:296.503500px;}
.yfc{bottom:298.690500px;}
.y92{bottom:307.810500px;}
.yc8{bottom:308.182500px;}
.y73{bottom:311.743500px;}
.yfb{bottom:319.015500px;}
.y75{bottom:319.176000px;}
.y197{bottom:321.156000px;}
.y70{bottom:330.400500px;}
.yc7{bottom:332.835000px;}
.yfa{bottom:339.339000px;}
.y43{bottom:339.609000px;}
.y74{bottom:341.470500px;}
.y72{bottom:344.952000px;}
.y196{bottom:345.808500px;}
.y71{bottom:351.096000px;}
.y91{bottom:352.404000px;}
.y1b{bottom:355.611000px;}
.yc6{bottom:357.487500px;}
.yf9{bottom:360.259500px;}
.y42{bottom:364.261500px;}
.y1a{bottom:380.265000px;}
.y90{bottom:381.540000px;}
.y195{bottom:384.556500px;}
.y6f{bottom:386.172000px;}
.y41{bottom:388.915500px;}
.yf8{bottom:395.527500px;}
.yc5{bottom:406.344000px;}
.y194{bottom:409.210500px;}
.y40{bottom:413.568000px;}
.yf7{bottom:415.851000px;}
.y17c{bottom:417.621000px;}
.y19{bottom:421.603500px;}
.y8f{bottom:426.132000px;}
.y6e{bottom:426.720000px;}
.y6d{bottom:430.765500px;}
.y3f{bottom:438.220500px;}
.y18{bottom:443.356500px;}
.y193{bottom:447.958500px;}
.y17b{bottom:458.473500px;}
.y8e{bottom:462.019500px;}
.y17{bottom:465.109500px;}
.y192{bottom:472.611000px;}
.y8d{bottom:473.244000px;}
.y6c{bottom:475.357500px;}
.y3e{bottom:482.812500px;}
.y16{bottom:486.861000px;}
.yc4{bottom:487.161000px;}
.yf6{bottom:494.344500px;}
.y191{bottom:497.263500px;}
.y6b{bottom:500.010000px;}
.y15{bottom:508.614000px;}
.y17a{bottom:515.755500px;}
.yc2{bottom:521.529000px;}
.y8c{bottom:522.112500px;}
.yf5{bottom:523.515000px;}
.y3d{bottom:527.404500px;}
.y14{bottom:530.365500px;}
.y190{bottom:536.013000px;}
.yc3{bottom:539.587500px;}
.y179{bottom:540.408000px;}
.y6a{bottom:542.913000px;}
.y130{bottom:551.383500px;}
.y3c{bottom:552.057000px;}
.y13{bottom:552.118500px;}
.yc1{bottom:554.140500px;}
.yc0{bottom:558.622500px;}
.y178{bottom:565.060500px;}
.y8b{bottom:566.704500px;}
.y12{bottom:573.871500px;}
.y18f{bottom:574.761000px;}
.y12f{bottom:576.036000px;}
.y3b{bottom:576.711000px;}
.y177{bottom:589.713000px;}
.ybf{bottom:589.720500px;}
.y11{bottom:595.623000px;}
.y18e{bottom:599.413500px;}
.y12e{bottom:600.688500px;}
.y3a{bottom:601.363500px;}
.y69{bottom:602.178000px;}
.y68{bottom:606.223500px;}
.y176{bottom:614.365500px;}
.ybe{bottom:614.373000px;}
.y10{bottom:617.376000px;}
.y12d{bottom:621.852000px;}
.y39{bottom:626.016000px;}
.y8a{bottom:631.237500px;}
.y12c{bottom:635.017500px;}
.y18d{bottom:638.163000px;}
.y175{bottom:639.018000px;}
.ybd{bottom:639.027000px;}
.yf{bottom:639.127500px;}
.y67{bottom:644.020500px;}
.y38{bottom:650.668500px;}
.y1ad{bottom:651.507000px;}
.y65{bottom:655.245000px;}
.ye{bottom:660.880500px;}
.y18c{bottom:662.815500px;}
.y66{bottom:663.088500px;}
.y174{bottom:663.672000px;}
.ybc{bottom:663.679500px;}
.y12b{bottom:668.437500px;}
.y37{bottom:675.321000px;}
.y1ac{bottom:676.159500px;}
.y173{bottom:688.324500px;}
.ybb{bottom:688.332000px;}
.y12a{bottom:688.600500px;}
.yd{bottom:691.902000px;}
.y89{bottom:695.769000px;}
.y1ab{bottom:700.812000px;}
.y18b{bottom:701.563500px;}
.y129{bottom:701.766000px;}
.yf4{bottom:703.152000px;}
.y64{bottom:704.931000px;}
.y172{bottom:712.977000px;}
.y36{bottom:719.913000px;}
.yb8{bottom:723.532500px;}
.y63{bottom:725.539500px;}
.y18a{bottom:726.216000px;}
.y62{bottom:729.585000px;}
.yc{bottom:731.517000px;}
.ydd{bottom:732.322500px;}
.yba{bottom:737.547000px;}
.y171{bottom:737.629500px;}
.y1aa{bottom:738.915000px;}
.yb9{bottom:741.592500px;}
.y87{bottom:752.733000px;}
.yb7{bottom:756.144000px;}
.y86{bottom:759.913500px;}
.yb6{bottom:760.627500px;}
.yb{bottom:761.451000px;}
.y170{bottom:762.282000px;}
.y1a9{bottom:763.567500px;}
.y85{bottom:763.957500px;}
.y35{bottom:764.506500px;}
.y61{bottom:764.785500px;}
.y189{bottom:764.965500px;}
.y128{bottom:766.495500px;}
.y88{bottom:775.029000px;}
.yb4{bottom:777.763500px;}
.y5e{bottom:782.845500px;}
.y34{bottom:785.113500px;}
.ya{bottom:786.103500px;}
.y33{bottom:789.159000px;}
.y188{bottom:789.618000px;}
.y10c{bottom:795.666000px;}
.yb5{bottom:795.822000px;}
.y60{bottom:797.397000px;}
.y1a8{bottom:801.669000px;}
.y5f{bottom:801.880500px;}
.y16f{bottom:803.136000px;}
.yb3{bottom:810.373500px;}
.y9{bottom:810.756000px;}
.y84{bottom:814.195500px;}
.yb2{bottom:814.857000px;}
.y1a7{bottom:826.323000px;}
.y187{bottom:828.366000px;}
.y5d{bottom:833.137500px;}
.y32{bottom:833.751000px;}
.y8{bottom:835.408500px;}
.yb1{bottom:850.045500px;}
.y1a6{bottom:850.975500px;}
.y186{bottom:853.018500px;}
.y83{bottom:858.789000px;}
.y16e{bottom:862.558500px;}
.y7{bottom:868.243500px;}
.yb0{bottom:874.698000px;}
.y5c{bottom:875.460000px;}
.y31{bottom:878.343000px;}
.y16d{bottom:882.882000px;}
.y1a5{bottom:889.077000px;}
.y185{bottom:891.768000px;}
.y6{bottom:901.159500px;}
.y16c{bottom:903.205500px;}
.yab{bottom:909.900000px;}
.y30{bottom:911.710500px;}
.ydc{bottom:911.959500px;}
.y1a4{bottom:913.729500px;}
.y184{bottom:916.420500px;}
.yae{bottom:916.734000px;}
.y2f{bottom:918.891000px;}
.y5b{bottom:920.052000px;}
.y2e{bottom:922.936500px;}
.y16b{bottom:923.529000px;}
.yad{bottom:923.914500px;}
.y5{bottom:924.244500px;}
.yaf{bottom:927.958500px;}
.yac{bottom:927.960000px;}
.y82{bottom:928.033500px;}
.y10b{bottom:935.067000px;}
.y59{bottom:937.932000px;}
.y1a3{bottom:938.382000px;}
.y183{bottom:941.073000px;}
.yd2{bottom:941.130000px;}
.yaa{bottom:942.511500px;}
.y16a{bottom:943.852500px;}
.ya9{bottom:946.993500px;}
.y81{bottom:952.686000px;}
.y5a{bottom:955.990500px;}
.y169{bottom:964.177500px;}
.y105{bottom:964.237500px;}
.y2d{bottom:967.528500px;}
.y58{bottom:970.542000px;}
.y57{bottom:975.025500px;}
.y1a2{bottom:976.485000px;}
.y182{bottom:979.821000px;}
.ya8{bottom:981.274500px;}
.y168{bottom:984.501000px;}
.y2c{bottom:992.181000px;}
.y80{bottom:996.528000px;}
.y4{bottom:999.393000px;}
.ya7{bottom:1000.284000px;}
.y1a1{bottom:1001.137500px;}
.y181{bottom:1004.475000px;}
.y167{bottom:1004.824500px;}
.ya5{bottom:1005.927000px;}
.y56{bottom:1006.284000px;}
.ya6{bottom:1013.238000px;}
.y2b{bottom:1016.833500px;}
.y166{bottom:1025.148000px;}
.y180{bottom:1029.127500px;}
.y1a0{bottom:1039.240500px;}
.y2a{bottom:1041.486000px;}
.y55{bottom:1042.047000px;}
.ya1{bottom:1044.070500px;}
.y3{bottom:1044.709500px;}
.y165{bottom:1045.471500px;}
.ya4{bottom:1050.904500px;}
.y50{bottom:1053.661500px;}
.y7e{bottom:1055.548500px;}
.y54{bottom:1055.550000px;}
.ya3{bottom:1058.085000px;}
.ya2{bottom:1062.130500px;}
.y4e{bottom:1063.020000px;}
.y164{bottom:1065.796500px;}
.y29{bottom:1066.138500px;}
.y17f{bottom:1067.875500px;}
.y7f{bottom:1068.808500px;}
.y52{bottom:1069.482000px;}
.y53{bottom:1070.295000px;}
.ya0{bottom:1076.682000px;}
.y19f{bottom:1077.342000px;}
.y4f{bottom:1080.561000px;}
.y9f{bottom:1081.165500px;}
.y51{bottom:1081.696500px;}
.y163{bottom:1086.717000px;}
.y7d{bottom:1089.504000px;}
.y2{bottom:1090.027500px;}
.y28{bottom:1090.791000px;}
.y17e{bottom:1092.528000px;}
.y19e{bottom:1101.994500px;}
.y27{bottom:1115.445000px;}
.y162{bottom:1121.985000px;}
.y17d{bottom:1133.695500px;}
.y1{bottom:1135.345500px;}
.y26{bottom:1140.097500px;}
.y161{bottom:1142.308500px;}
.y25{bottom:1199.275500px;}
.h12{height:2.391024px;}
.h37{height:6.287528px;}
.h21{height:7.801715px;}
.h35{height:9.697537px;}
.h38{height:10.479639px;}
.h34{height:10.775257px;}
.h19{height:26.731715px;}
.h4{height:35.865450px;}
.h8{height:41.842920px;}
.ha{height:42.799330px;}
.h17{height:43.771200px;}
.h7{height:44.831700px;}
.h6{height:45.818220px;}
.h10{height:46.865494px;}
.h5{height:49.090950px;}
.h1f{height:53.755715px;}
.h2e{height:53.761715px;}
.h1a{height:59.613450px;}
.he{height:59.619450px;}
.h2f{height:61.635450px;}
.h31{height:61.641450px;}
.hb{height:62.889450px;}
.h23{height:62.895450px;}
.h1b{height:63.047494px;}
.h9{height:64.557900px;}
.hf{height:65.272950px;}
.h29{height:66.358950px;}
.h27{height:66.364950px;}
.h2d{height:69.437494px;}
.h20{height:69.937715px;}
.h32{height:72.178950px;}
.h1e{height:75.795450px;}
.h3{height:76.067700px;}
.h14{height:79.455450px;}
.h2c{height:81.814950px;}
.h30{height:82.707450px;}
.h13{height:89.595450px;}
.h2{height:92.981250px;}
.h28{height:93.376950px;}
.h1d{height:93.988950px;}
.hd{height:93.994950px;}
.h22{height:98.371126px;}
.h3b{height:101.752950px;}
.h15{height:104.482950px;}
.h39{height:106.029024px;}
.h1c{height:107.175450px;}
.hc{height:109.552950px;}
.h26{height:110.536950px;}
.h36{height:115.372845px;}
.h24{height:120.075450px;}
.h2a{height:120.081450px;}
.h16{height:126.351024px;}
.h11{height:126.357024px;}
.h18{height:132.982950px;}
.h2b{height:138.268950px;}
.h25{height:138.274950px;}
.h3a{height:158.691024px;}
.h33{height:192.295890px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:255.104640px;}
.w2{width:425.191680px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xec{left:26.443633px;}
.xe0{left:27.506569px;}
.xf0{left:33.805572px;}
.xe1{left:34.940921px;}
.xf1{left:41.477534px;}
.xe2{left:43.524793px;}
.x10d{left:45.668602px;}
.xdc{left:47.243520px;}
.xef{left:48.572245px;}
.xdd{left:50.343875px;}
.xe3{left:52.108666px;}
.xdb{left:54.256230px;}
.x10e{left:55.771145px;}
.xf2{left:56.821680px;}
.xe4{left:60.692538px;}
.x107{left:63.011068px;}
.xf3{left:64.493642px;}
.x110{left:65.873466px;}
.xe5{left:69.276411px;}
.xf4{left:72.165604px;}
.x10a{left:74.279518px;}
.xe6{left:77.860283px;}
.xf6{left:79.837566px;}
.x10c{left:84.036827px;}
.xe7{left:86.444156px;}
.xf8{left:87.509749px;}
.xe8{left:95.028029px;}
.x10b{left:99.103281px;}
.x111{left:102.514641px;}
.xe9{left:103.611901px;}
.xc4{left:105.412500px;}
.x3{left:106.437000px;}
.xea{left:114.056133px;}
.x1{left:122.815500px;}
.xfa{left:125.614233px;}
.x109{left:129.236188px;}
.x5a{left:132.538500px;}
.x2{left:136.045500px;}
.xf9{left:137.712659px;}
.x5b{left:138.966000px;}
.x6{left:141.523500px;}
.x5c{left:144.874500px;}
.xe{left:147.208500px;}
.x2e{left:152.071500px;}
.xde{left:154.389978px;}
.x5d{left:155.847000px;}
.x108{left:159.368873px;}
.xf7{left:161.909955px;}
.x2c{left:166.575000px;}
.xee{left:169.936500px;}
.x83{left:172.294500px;}
.xa2{left:174.451500px;}
.xa1{left:175.627500px;}
.x1c{left:179.404500px;}
.xdf{left:180.565500px;}
.x52{left:181.858500px;}
.x2f{left:183.435000px;}
.xf5{left:186.107028px;}
.x1d{left:188.814000px;}
.x9a{left:191.530500px;}
.x99{left:192.708000px;}
.xc0{left:198.076500px;}
.x1e{left:200.478000px;}
.x3e{left:202.396500px;}
.xf{left:203.899500px;}
.x10f{left:205.550564px;}
.x1f{left:209.887500px;}
.x3f{left:212.256000px;}
.x10{left:213.307500px;}
.xa3{left:217.546500px;}
.x40{left:218.632500px;}
.x106{left:219.634687px;}
.x11{left:222.027000px;}
.x41{left:224.541000px;}
.x5{left:226.129500px;}
.x90{left:228.027000px;}
.x12{left:231.435000px;}
.x7a{left:234.006000px;}
.x77{left:237.625500px;}
.x2a{left:239.001000px;}
.x58{left:241.101000px;}
.x5e{left:242.230500px;}
.x72{left:244.117500px;}
.x57{left:245.542500px;}
.x5f{left:254.782500px;}
.x53{left:258.436500px;}
.x48{left:260.370000px;}
.x81{left:264.016500px;}
.x42{left:266.019000px;}
.x82{left:272.319000px;}
.x84{left:274.968000px;}
.x7{left:276.870000px;}
.x88{left:277.875000px;}
.x55{left:280.986000px;}
.x73{left:282.862500px;}
.x56{left:284.560500px;}
.x59{left:286.105500px;}
.x49{left:288.513000px;}
.xad{left:290.314500px;}
.xae{left:293.197500px;}
.x98{left:294.793500px;}
.x60{left:298.732500px;}
.x54{left:301.353000px;}
.x13{left:303.088500px;}
.x95{left:304.381500px;}
.x2d{left:311.133000px;}
.x14{left:312.498000px;}
.xa{left:313.911000px;}
.xb{left:318.139500px;}
.x85{left:319.351500px;}
.x9{left:321.684000px;}
.xaf{left:322.744500px;}
.x86{left:327.654000px;}
.x78{left:331.596000px;}
.x8e{left:332.833500px;}
.xa4{left:333.867000px;}
.x87{left:336.561000px;}
.xa5{left:337.926000px;}
.x43{left:339.243000px;}
.xc{left:342.741000px;}
.x9b{left:344.115000px;}
.x61{left:345.549000px;}
.x2b{left:347.202000px;}
.x62{left:351.457500px;}
.x4{left:354.303000px;}
.x47{left:359.998500px;}
.x45{left:361.792500px;}
.x7b{left:363.648000px;}
.x7c{left:366.609000px;}
.xc3{left:368.215500px;}
.xb0{left:370.519500px;}
.x44{left:371.602500px;}
.x70{left:373.026000px;}
.x9c{left:376.545000px;}
.x91{left:379.507500px;}
.x63{left:390.751500px;}
.xab{left:392.386500px;}
.x100{left:394.741500px;}
.x8{left:396.076500px;}
.x64{left:397.179000px;}
.x46{left:399.340500px;}
.x7e{left:408.988500px;}
.x96{left:410.643000px;}
.x71{left:412.173000px;}
.xd{left:413.812500px;}
.xd7{left:414.837000px;}
.x101{left:417.654000px;}
.x8c{left:419.472000px;}
.xfb{left:422.338500px;}
.x15{left:423.762000px;}
.xac{left:424.816500px;}
.x1b{left:428.047500px;}
.xb1{left:429.960000px;}
.x7d{left:431.184000px;}
.x16{left:433.170000px;}
.xd8{left:437.371500px;}
.x102{left:440.188500px;}
.x8d{left:441.753000px;}
.x97{left:443.073000px;}
.x9f{left:445.357500px;}
.xeb{left:449.184000px;}
.x65{left:450.568500px;}
.x89{left:454.584000px;}
.x8f{left:460.480500px;}
.x66{left:463.120500px;}
.xa0{left:464.379000px;}
.x92{left:465.945000px;}
.x8a{left:467.523000px;}
.x30{left:468.894000px;}
.x8b{left:471.079500px;}
.x20{left:473.394000px;}
.x9d{left:477.162000px;}
.x31{left:478.753500px;}
.xd9{left:481.060500px;}
.x32{left:485.142000px;}
.xc5{left:489.184500px;}
.x33{left:491.052000px;}
.x21{left:492.211500px;}
.x79{left:494.676000px;}
.xa7{left:497.332500px;}
.xa6{left:498.508500px;}
.x67{left:500.230500px;}
.x22{left:502.120500px;}
.x17{left:503.764500px;}
.xc6{left:505.281000px;}
.x103{left:507.136500px;}
.xc7{left:511.191000px;}
.x18{left:513.172500px;}
.x68{left:514.597500px;}
.x23{left:520.939500px;}
.x9e{left:523.465500px;}
.xa8{left:526.881000px;}
.x104{left:529.671000px;}
.x24{left:530.848500px;}
.xd4{left:534.799500px;}
.xfc{left:536.377500px;}
.xc8{left:538.990500px;}
.x69{left:540.262500px;}
.xd5{left:544.549500px;}
.xfd{left:546.127500px;}
.x6a{left:547.534500px;}
.x25{left:549.666000px;}
.xd6{left:550.888500px;}
.xfe{left:552.414000px;}
.x93{left:554.397000px;}
.x6b{left:555.798000px;}
.x26{left:559.575000px;}
.xff{left:561.766500px;}
.x6c{left:563.071500px;}
.x94{left:567.336000px;}
.xb2{left:568.680000px;}
.x6d{left:571.335000px;}
.x34{left:572.799000px;}
.xa9{left:574.656000px;}
.x27{left:578.392500px;}
.x105{left:581.920500px;}
.xcd{left:583.204500px;}
.xb3{left:584.217000px;}
.x112{left:586.113000px;}
.x28{left:588.301500px;}
.xce{left:589.530000px;}
.xb4{left:590.568000px;}
.x6e{left:592.243500px;}
.xb5{left:596.476500px;}
.xb6{left:602.827500px;}
.xda{left:603.910500px;}
.x29{left:607.120500px;}
.xc9{left:609.298500px;}
.x35{left:610.627500px;}
.xcf{left:612.063000px;}
.xca{left:615.535500px;}
.x19{left:621.288000px;}
.xb9{left:622.449000px;}
.xb7{left:624.490500px;}
.x38{left:627.201000px;}
.x1a{left:630.697500px;}
.xaa{left:632.022000px;}
.xba{left:637.984500px;}
.xbb{left:644.221500px;}
.xd0{left:646.456500px;}
.x39{left:649.735500px;}
.xed{left:650.808000px;}
.xbc{left:656.367000px;}
.x36{left:658.123500px;}
.xc1{left:662.296500px;}
.xb8{left:665.364000px;}
.x113{left:669.109500px;}
.xcb{left:672.106500px;}
.x4a{left:673.890000px;}
.xbd{left:678.007500px;}
.xc2{left:684.831000px;}
.x37{left:686.406000px;}
.x4b{left:692.709000px;}
.x114{left:694.204500px;}
.x115{left:698.749500px;}
.x4c{left:702.222000px;}
.xbe{left:710.316000px;}
.xd1{left:712.218000px;}
.xbf{left:718.333500px;}
.x4d{left:721.041000px;}
.x116{left:727.462500px;}
.x4e{left:730.554000px;}
.xd2{left:733.002000px;}
.xcc{left:735.699000px;}
.x74{left:736.741500px;}
.x7f{left:739.981500px;}
.x80{left:746.218500px;}
.x4f{left:749.373000px;}
.x6f{left:751.857000px;}
.x75{left:755.560500px;}
.x3a{left:756.571500px;}
.xd3{left:757.794000px;}
.x50{left:758.887500px;}
.x3b{left:766.321500px;}
.x3c{left:772.749000px;}
.x51{left:777.705000px;}
.x3d{left:782.101500px;}
.x76{left:784.371000px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v10{vertical-align:-21.114667pt;}
.v16{vertical-align:-16.826667pt;}
.va{vertical-align:-8.725333pt;}
.v12{vertical-align:-5.904000pt;}
.v20{vertical-align:-4.761953pt;}
.v21{vertical-align:-3.376987pt;}
.v1f{vertical-align:-2.202246pt;}
.v22{vertical-align:-1.195764pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:5.653333pt;}
.v6{vertical-align:8.730667pt;}
.v11{vertical-align:12.549333pt;}
.v4{vertical-align:14.384000pt;}
.v1b{vertical-align:15.354667pt;}
.ve{vertical-align:17.632000pt;}
.v1c{vertical-align:20.064000pt;}
.v9{vertical-align:21.114667pt;}
.v1d{vertical-align:22.906667pt;}
.v3{vertical-align:24.021333pt;}
.v1{vertical-align:27.765333pt;}
.v8{vertical-align:31.184000pt;}
.v15{vertical-align:35.493333pt;}
.v1e{vertical-align:37.909333pt;}
.v7{vertical-align:39.360000pt;}
.v24{vertical-align:40.842667pt;}
.v13{vertical-align:42.272000pt;}
.v1a{vertical-align:45.013333pt;}
.v25{vertical-align:46.810667pt;}
.vd{vertical-align:47.760000pt;}
.vf{vertical-align:49.237333pt;}
.v17{vertical-align:50.437333pt;}
.v19{vertical-align:53.744000pt;}
.v14{vertical-align:63.386667pt;}
.vc{vertical-align:64.586667pt;}
.v18{vertical-align:74.853333pt;}
.v26{vertical-align:87.653333pt;}
.v23{vertical-align:92.122667pt;}
.vb{vertical-align:110.192000pt;}
.v27{vertical-align:138.933333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls60{letter-spacing:0.000873pt;}
.lsa3{letter-spacing:0.000928pt;}
.ls5a{letter-spacing:0.002384pt;}
.ls7a{letter-spacing:0.002397pt;}
.ls50{letter-spacing:0.002400pt;}
.ls35{letter-spacing:0.002405pt;}
.ls63{letter-spacing:0.002718pt;}
.ls2a{letter-spacing:0.003980pt;}
.ls4f{letter-spacing:0.004274pt;}
.ls7e{letter-spacing:0.004802pt;}
.ls5d{letter-spacing:0.005312pt;}
.ls34{letter-spacing:0.008658pt;}
.ls65{letter-spacing:0.010014pt;}
.ls52{letter-spacing:0.010033pt;}
.ls99{letter-spacing:0.010909pt;}
.ls5{letter-spacing:0.011412pt;}
.ls37{letter-spacing:0.013505pt;}
.ls30{letter-spacing:0.013991pt;}
.ls8d{letter-spacing:0.014436pt;}
.ls2e{letter-spacing:0.022190pt;}
.ls61{letter-spacing:0.024910pt;}
.ls5b{letter-spacing:0.025495pt;}
.lsa1{letter-spacing:0.026057pt;}
.ls32{letter-spacing:0.027523pt;}
.lsa6{letter-spacing:0.028459pt;}
.ls4c{letter-spacing:0.170029pt;}
.ls23{letter-spacing:0.215727pt;}
.ls11{letter-spacing:0.232727pt;}
.ls4d{letter-spacing:1.147694pt;}
.ls45{letter-spacing:1.602818pt;}
.ls66{letter-spacing:1.612566pt;}
.ls3{letter-spacing:1.617899pt;}
.ls70{letter-spacing:1.617975pt;}
.lse{letter-spacing:1.625032pt;}
.ls58{letter-spacing:2.094547pt;}
.ls7b{letter-spacing:2.465418pt;}
.ls54{letter-spacing:2.648916pt;}
.ls31{letter-spacing:2.653258pt;}
.ls4a{letter-spacing:2.654249pt;}
.ls3a{letter-spacing:2.654275pt;}
.lsa2{letter-spacing:2.654345pt;}
.ls57{letter-spacing:2.654400pt;}
.ls12{letter-spacing:2.656444pt;}
.ls1f{letter-spacing:2.657061pt;}
.ls24{letter-spacing:2.657087pt;}
.ls27{letter-spacing:2.658178pt;}
.ls1{letter-spacing:2.658591pt;}
.ls2d{letter-spacing:2.659608pt;}
.ls0{letter-spacing:2.659733pt;}
.ls19{letter-spacing:2.662420pt;}
.ls29{letter-spacing:2.662450pt;}
.ls67{letter-spacing:3.228580pt;}
.ls86{letter-spacing:3.316366pt;}
.ls14{letter-spacing:3.374548pt;}
.ls4e{letter-spacing:3.791684pt;}
.ls80{letter-spacing:3.905798pt;}
.ls7f{letter-spacing:3.911131pt;}
.ls78{letter-spacing:4.483608pt;}
.ls73{letter-spacing:4.505763pt;}
.ls76{letter-spacing:4.548270pt;}
.ls77{letter-spacing:4.724753pt;}
.ls49{letter-spacing:4.751350pt;}
.ls46{letter-spacing:5.312473pt;}
.ls18{letter-spacing:5.594155pt;}
.ls28{letter-spacing:6.260825pt;}
.ls1a{letter-spacing:6.283642pt;}
.ls75{letter-spacing:6.347104pt;}
.ls96{letter-spacing:6.376251pt;}
.ls6{letter-spacing:6.381063pt;}
.ls42{letter-spacing:6.387182pt;}
.ls20{letter-spacing:6.574551pt;}
.ls1e{letter-spacing:6.632733pt;}
.ls9{letter-spacing:8.087279pt;}
.ls2b{letter-spacing:9.033974pt;}
.ls5e{letter-spacing:9.716372pt;}
.ls26{letter-spacing:10.328855pt;}
.ls1c{letter-spacing:10.334188pt;}
.ls89{letter-spacing:10.938191pt;}
.ls8a{letter-spacing:10.996373pt;}
.ls90{letter-spacing:12.858193pt;}
.ls8{letter-spacing:12.916374pt;}
.ls8e{letter-spacing:12.974556pt;}
.ls88{letter-spacing:13.618591pt;}
.ls72{letter-spacing:14.370921pt;}
.ls51{letter-spacing:14.778194pt;}
.ls8f{letter-spacing:15.549258pt;}
.ls2f{letter-spacing:15.581258pt;}
.ls36{letter-spacing:15.582345pt;}
.ls7{letter-spacing:15.584444pt;}
.ls3d{letter-spacing:15.586591pt;}
.ls33{letter-spacing:15.590420pt;}
.ls1d{letter-spacing:15.826591pt;}
.ls1b{letter-spacing:16.072276pt;}
.ls25{letter-spacing:16.078726pt;}
.lsc{letter-spacing:16.116377pt;}
.ls59{letter-spacing:16.141309pt;}
.lsa{letter-spacing:16.174559pt;}
.ls48{letter-spacing:16.232741pt;}
.ls9b{letter-spacing:16.349105pt;}
.ls9a{letter-spacing:16.407286pt;}
.ls4{letter-spacing:16.969987pt;}
.lsf{letter-spacing:16.975321pt;}
.lsae{letter-spacing:17.256085pt;}
.ls94{letter-spacing:18.269106pt;}
.ls3c{letter-spacing:18.813258pt;}
.ls40{letter-spacing:18.819608pt;}
.lsaa{letter-spacing:19.083652pt;}
.ls3e{letter-spacing:19.200016pt;}
.ls82{letter-spacing:19.258198pt;}
.ls8c{letter-spacing:19.304251pt;}
.ls91{letter-spacing:19.316380pt;}
.ls10{letter-spacing:19.374562pt;}
.ls17{letter-spacing:19.432743pt;}
.ls7d{letter-spacing:19.490925pt;}
.ls85{letter-spacing:19.549107pt;}
.ls93{letter-spacing:19.607289pt;}
.ls16{letter-spacing:19.665471pt;}
.ls9c{letter-spacing:19.781835pt;}
.ls6e{letter-spacing:20.589742pt;}
.ls68{letter-spacing:21.677258pt;}
.ls38{letter-spacing:22.050591pt;}
.ls92{letter-spacing:22.516382pt;}
.ls5c{letter-spacing:23.098201pt;}
.ls5f{letter-spacing:23.609490pt;}
.ls56{letter-spacing:23.614824pt;}
.ls47{letter-spacing:24.709806pt;}
.ls3f{letter-spacing:24.896473pt;}
.ls39{letter-spacing:25.658203pt;}
.ls97{letter-spacing:26.171912pt;}
.ls98{letter-spacing:26.172000pt;}
.lsa0{letter-spacing:26.566024pt;}
.ls9f{letter-spacing:26.948354pt;}
.lsb0{letter-spacing:29.672752pt;}
.ls41{letter-spacing:32.068811pt;}
.lsaf{letter-spacing:32.581845pt;}
.ls7c{letter-spacing:37.457653pt;}
.ls44{letter-spacing:41.056473pt;}
.ls3b{letter-spacing:48.465495pt;}
.lsa7{letter-spacing:48.523677pt;}
.lsa8{letter-spacing:52.316740pt;}
.lsa9{letter-spacing:52.328357pt;}
.lsad{letter-spacing:55.106751pt;}
.ls95{letter-spacing:59.017687pt;}
.ls8b{letter-spacing:59.081138pt;}
.ls9d{letter-spacing:92.952085pt;}
.ls9e{letter-spacing:92.957418pt;}
.lsac{letter-spacing:135.860663pt;}
.lsab{letter-spacing:137.611401pt;}
.lsa4{letter-spacing:152.561680pt;}
.lsa5{letter-spacing:185.817413pt;}
.ls81{letter-spacing:241.687474pt;}
.ls79{letter-spacing:302.429343pt;}
.ls71{letter-spacing:442.414914pt;}
.lsb{letter-spacing:462.429476pt;}
.ls53{letter-spacing:466.365258pt;}
.ls4b{letter-spacing:476.567670pt;}
.ls21{letter-spacing:504.204057pt;}
.ls69{letter-spacing:571.520476pt;}
.ls2c{letter-spacing:601.193228pt;}
.ls55{letter-spacing:643.549627pt;}
.ls22{letter-spacing:645.709391pt;}
.ls83{letter-spacing:663.913281pt;}
.ls84{letter-spacing:663.971462pt;}
.ls6f{letter-spacing:707.724226pt;}
.ls6b{letter-spacing:743.855165pt;}
.ls13{letter-spacing:767.011548pt;}
.ls62{letter-spacing:767.186094pt;}
.ls87{letter-spacing:825.600688pt;}
.ls64{letter-spacing:828.335236pt;}
.ls74{letter-spacing:830.255237pt;}
.ls6c{letter-spacing:830.371601pt;}
.ls6a{letter-spacing:853.527984pt;}
.ls15{letter-spacing:882.968009pt;}
.lsd{letter-spacing:895.302564pt;}
.ls6d{letter-spacing:934.517142pt;}
.ls43{letter-spacing:987.113550pt;}
.ws2{word-spacing:-61.987500pt;}
.ws2a{word-spacing:-37.899668pt;}
.ws44{word-spacing:-32.337481pt;}
.ws7d{word-spacing:-29.736752pt;}
.ws28{word-spacing:-29.521250pt;}
.ws7{word-spacing:-29.090933pt;}
.ws6b{word-spacing:-29.079297pt;}
.ws2b{word-spacing:-28.241478pt;}
.ws26{word-spacing:-28.183296pt;}
.ws4{word-spacing:-26.566933pt;}
.ws39{word-spacing:-24.983294pt;}
.ws3f{word-spacing:-21.783291pt;}
.ws2d{word-spacing:-21.725109pt;}
.ws74{word-spacing:-21.550563pt;}
.ws64{word-spacing:-21.492382pt;}
.ws0{word-spacing:-20.662500pt;}
.ws1{word-spacing:-20.331900pt;}
.ws4a{word-spacing:-18.902876pt;}
.ws4b{word-spacing:-18.897542pt;}
.ws53{word-spacing:-17.861833pt;}
.ws4c{word-spacing:-16.930923pt;}
.ws2c{word-spacing:-16.162923pt;}
.ws54{word-spacing:-15.534558pt;}
.ws1b{word-spacing:-14.720012pt;}
.ws7e{word-spacing:-14.545467pt;}
.ws42{word-spacing:-14.346200pt;}
.ws1e{word-spacing:-14.196375pt;}
.ws82{word-spacing:-14.138194pt;}
.ws7f{word-spacing:-13.498193pt;}
.ws81{word-spacing:-13.381829pt;}
.ws83{word-spacing:-12.922193pt;}
.ws45{word-spacing:-12.741829pt;}
.ws43{word-spacing:-12.543875pt;}
.ws37{word-spacing:-12.509101pt;}
.ws65{word-spacing:-11.850912pt;}
.ws66{word-spacing:-11.845578pt;}
.ws8{word-spacing:-11.170918pt;}
.ws38{word-spacing:-11.112737pt;}
.ws4e{word-spacing:-11.054555pt;}
.ws51{word-spacing:-10.996373pt;}
.ws34{word-spacing:-10.938191pt;}
.ws3d{word-spacing:-10.880009pt;}
.ws3b{word-spacing:-10.700556pt;}
.ws22{word-spacing:-10.356372pt;}
.ws25{word-spacing:-10.298190pt;}
.ws84{word-spacing:-10.123645pt;}
.ws70{word-spacing:-10.007281pt;}
.ws49{word-spacing:-9.949099pt;}
.ws2f{word-spacing:-9.890917pt;}
.ws30{word-spacing:-9.832735pt;}
.ws1c{word-spacing:-9.774554pt;}
.ws6{word-spacing:-9.716372pt;}
.ws16{word-spacing:-9.658190pt;}
.ws4f{word-spacing:-9.600008pt;}
.ws1d{word-spacing:-9.541826pt;}
.ws6f{word-spacing:-9.483644pt;}
.ws56{word-spacing:-9.431281pt;}
.ws4d{word-spacing:-9.425462pt;}
.ws85{word-spacing:-9.373099pt;}
.ws24{word-spacing:-9.309099pt;}
.wsd{word-spacing:-9.245293pt;}
.ws79{word-spacing:-9.198553pt;}
.ws80{word-spacing:-9.140371pt;}
.ws11{word-spacing:-9.139025pt;}
.ws14{word-spacing:-9.085891pt;}
.ws33{word-spacing:-9.076371pt;}
.ws13{word-spacing:-9.032757pt;}
.ws8a{word-spacing:-8.965826pt;}
.ws5a{word-spacing:-8.907644pt;}
.ws9{word-spacing:-8.873356pt;}
.ws87{word-spacing:-8.849462pt;}
.ws12{word-spacing:-8.820222pt;}
.ws88{word-spacing:-8.674916pt;}
.ws7a{word-spacing:-8.669098pt;}
.wse{word-spacing:-8.660820pt;}
.ws7b{word-spacing:-8.616734pt;}
.wsc{word-spacing:-8.607686pt;}
.ws8b{word-spacing:-8.552734pt;}
.wsa{word-spacing:-8.395151pt;}
.ws31{word-spacing:-8.261825pt;}
.ws20{word-spacing:-8.134795pt;}
.ws1a{word-spacing:-8.029098pt;}
.ws32{word-spacing:-7.738188pt;}
.ws86{word-spacing:-7.680006pt;}
.ws77{word-spacing:-7.563643pt;}
.wsf{word-spacing:-7.491875pt;}
.ws10{word-spacing:-7.438741pt;}
.ws78{word-spacing:-7.389097pt;}
.ws15{word-spacing:-7.214551pt;}
.ws2e{word-spacing:-6.981824pt;}
.ws89{word-spacing:-6.923642pt;}
.ws48{word-spacing:-5.992732pt;}
.ws21{word-spacing:-5.701823pt;}
.wsb{word-spacing:-5.313387pt;}
.ws57{word-spacing:-4.992004pt;}
.ws23{word-spacing:-4.189094pt;}
.ws18{word-spacing:-3.898185pt;}
.ws19{word-spacing:-3.258185pt;}
.ws29{word-spacing:-3.246548pt;}
.ws59{word-spacing:-3.188366pt;}
.ws7c{word-spacing:-2.152729pt;}
.ws71{word-spacing:-0.221091pt;}
.ws41{word-spacing:-0.162909pt;}
.ws27{word-spacing:-0.046545pt;}
.ws6c{word-spacing:-0.016683pt;}
.ws6a{word-spacing:-0.013240pt;}
.ws6e{word-spacing:-0.000738pt;}
.ws1f{word-spacing:0.000000pt;}
.ws35{word-spacing:0.011636pt;}
.ws50{word-spacing:0.069818pt;}
.ws52{word-spacing:0.128000pt;}
.ws76{word-spacing:0.137611pt;}
.ws55{word-spacing:0.302546pt;}
.ws63{word-spacing:0.360728pt;}
.ws58{word-spacing:3.211639pt;}
.ws47{word-spacing:6.469824pt;}
.ws3e{word-spacing:10.565827pt;}
.ws6d{word-spacing:10.624009pt;}
.ws5{word-spacing:20.722347pt;}
.ws3{word-spacing:24.866747pt;}
.ws17{word-spacing:43.038600pt;}
.ws62{word-spacing:94.404809pt;}
.ws5b{word-spacing:95.383670pt;}
.ws61{word-spacing:164.781172pt;}
.ws75{word-spacing:186.266133pt;}
.ws69{word-spacing:208.622935pt;}
.ws60{word-spacing:274.978354pt;}
.ws68{word-spacing:322.066195pt;}
.ws5f{word-spacing:345.353929pt;}
.ws40{word-spacing:366.755215pt;}
.ws8c{word-spacing:403.790678pt;}
.ws5e{word-spacing:415.731081pt;}
.ws73{word-spacing:431.656413pt;}
.ws36{word-spacing:432.854903pt;}
.ws3c{word-spacing:485.620768pt;}
.ws72{word-spacing:490.744811pt;}
.ws67{word-spacing:505.885819pt;}
.ws5d{word-spacing:525.928263pt;}
.ws46{word-spacing:543.552758pt;}
.ws5c{word-spacing:596.305415pt;}
.ws3a{word-spacing:646.497139pt;}
._19{margin-left:-16.149079pt;}
._28{margin-left:-12.891498pt;}
._0{margin-left:-10.358800pt;}
._3{margin-left:-6.197558pt;}
._5{margin-left:-4.743212pt;}
._1{margin-left:-3.416200pt;}
._4{margin-left:-2.065853pt;}
._8{margin-left:-1.069045pt;}
._6{width:1.629092pt;}
._2{width:2.677330pt;}
._24{width:3.812522pt;}
._1a{width:4.736269pt;}
._1b{width:6.390319pt;}
._13{width:8.087279pt;}
._17{width:9.949099pt;}
._30{width:13.207284pt;}
._d{width:15.476377pt;}
._12{width:16.870289pt;}
._10{width:17.893107pt;}
._21{width:19.297759pt;}
._1c{width:20.306265pt;}
._11{width:21.417950pt;}
._b{width:23.122497pt;}
._9{width:24.094060pt;}
._7{width:25.890931pt;}
._e{width:26.972933pt;}
._a{width:28.532886pt;}
._16{width:29.706060pt;}
._14{width:31.447695pt;}
._15{width:32.407300pt;}
._22{width:33.543644pt;}
._1e{width:37.404018pt;}
._f{width:38.916902pt;}
._26{width:39.874400pt;}
._c{width:45.934980pt;}
._20{width:49.612423pt;}
._29{width:51.858400pt;}
._1f{width:86.077200pt;}
._2d{width:87.427668pt;}
._25{width:89.948476pt;}
._2f{width:97.388838pt;}
._23{width:104.475680pt;}
._18{width:114.769600pt;}
._27{width:135.208251pt;}
._2a{width:155.537211pt;}
._2c{width:177.506400pt;}
._2e{width:215.357067pt;}
._2b{width:253.202400pt;}
._1d{width:463.951500pt;}
.fs9{font-size:7.882812pt;}
.fs8{font-size:11.824463pt;}
.fs7{font-size:13.138554pt;}
.fs6{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs4{font-size:63.761067pt;}
.fs1{font-size:76.513067pt;}
.fs0{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:6.674490pt;}
.y15f{bottom:7.244243pt;}
.y144{bottom:7.619086pt;}
.y15e{bottom:8.037154pt;}
.y121{bottom:8.438905pt;}
.yf3{bottom:8.570925pt;}
.y143{bottom:8.812901pt;}
.y15d{bottom:8.858646pt;}
.y142{bottom:9.508455pt;}
.y15c{bottom:9.623094pt;}
.y120{bottom:9.651321pt;}
.y15b{bottom:10.415985pt;}
.y141{bottom:10.453050pt;}
.yf2{bottom:10.689947pt;}
.y15a{bottom:11.208955pt;}
.y140{bottom:11.397725pt;}
.y11e{bottom:11.699670pt;}
.y11d{bottom:11.719047pt;}
.y159{bottom:12.001925pt;}
.y13f{bottom:12.342399pt;}
.yf1{bottom:12.809048pt;}
.yf0{bottom:13.097694pt;}
.y13e{bottom:13.287015pt;}
.y158{bottom:13.479997pt;}
.y157{bottom:13.587806pt;}
.yd3{bottom:13.860855pt;}
.y156{bottom:14.380776pt;}
.y13d{bottom:14.863959pt;}
.yef{bottom:14.928090pt;}
.y11c{bottom:14.960450pt;}
.y155{bottom:15.173667pt;}
.y13c{bottom:15.176364pt;}
.y11b{bottom:15.854616pt;}
.y13b{bottom:16.120960pt;}
.yed{bottom:17.047112pt;}
.yd4{bottom:17.342604pt;}
.y127{bottom:17.975724pt;}
.y154{bottom:18.101367pt;}
.y11a{bottom:18.221302pt;}
.yeb{bottom:19.166212pt;}
.yea{bottom:19.601721pt;}
.y119{bottom:19.990086pt;}
.y139{bottom:20.915037pt;}
.ye8{bottom:21.285293pt;}
.y118{bottom:21.482133pt;}
.y117{bottom:22.057890pt;}
.y153{bottom:22.722816pt;}
.ye6{bottom:23.404276pt;}
.ye5{bottom:24.479810pt;}
.y116{bottom:24.742985pt;}
.ye3{bottom:25.523455pt;}
.y115{bottom:26.193499pt;}
.y137{bottom:26.966096pt;}
.y14d{bottom:27.344225pt;}
.ye1{bottom:27.642438pt;}
.y113{bottom:28.003639pt;}
.y112{bottom:28.261303pt;}
.ydf{bottom:29.761421pt;}
.y111{bottom:31.264491pt;}
.y106{bottom:31.295486pt;}
.y148{bottom:31.965635pt;}
.yde{bottom:32.480568pt;}
.y135{bottom:33.017154pt;}
.y110{bottom:34.525342pt;}
.y146{bottom:35.372345pt;}
.y10f{bottom:37.786194pt;}
.y133{bottom:39.068213pt;}
.ye0{bottom:39.089668pt;}
.y147{bottom:40.640177pt;}
.y10e{bottom:41.047045pt;}
.y123{bottom:41.733229pt;}
.y132{bottom:43.090441pt;}
.y10d{bottom:44.534066pt;}
.yd5{bottom:45.248367pt;}
.ye2{bottom:45.698571pt;}
.y149{bottom:45.907812pt;}
.y124{bottom:50.985890pt;}
.y14a{bottom:51.175644pt;}
.ye4{bottom:52.307671pt;}
.y134{bottom:54.093404pt;}
.y24{bottom:54.637333pt;}
.y114{bottom:54.676837pt;}
.y14b{bottom:56.443279pt;}
.ye7{bottom:58.916771pt;}
.y107{bottom:59.201249pt;}
.y125{bottom:60.238552pt;}
.y14c{bottom:61.711112pt;}
.y11f{bottom:64.819609pt;}
.y136{bottom:65.096366pt;}
.ye9{bottom:65.525674pt;}
.y14e{bottom:66.978944pt;}
.y126{bottom:69.491213pt;}
.yec{bottom:72.134872pt;}
.y14f{bottom:72.246579pt;}
.yd6{bottom:73.154130pt;}
.y122{bottom:74.962380pt;}
.y138{bottom:76.099525pt;}
.y150{bottom:77.514411pt;}
.yee{bottom:78.743874pt;}
.y151{bottom:82.782046pt;}
.y13a{bottom:87.102684pt;}
.y108{bottom:87.107012pt;}
.y152{bottom:88.049878pt;}
.y7b{bottom:88.289333pt;}
.y9e{bottom:88.510667pt;}
.yd1{bottom:89.838667pt;}
.y23{bottom:94.488000pt;}
.yd0{bottom:94.969333pt;}
.y4d{bottom:95.146667pt;}
.y49{bottom:99.137333pt;}
.y160{bottom:99.908000pt;}
.y7c{bottom:100.077333pt;}
.yd7{bottom:101.059893pt;}
.y9b{bottom:104.564000pt;}
.y47{bottom:107.456000pt;}
.y4b{bottom:113.142667pt;}
.y4c{bottom:113.865333pt;}
.y109{bottom:115.012775pt;}
.y22{bottom:116.401333pt;}
.y9d{bottom:117.498667pt;}
.y7a{bottom:118.473333pt;}
.ydb{bottom:118.703937pt;}
.y104{bottom:120.978667pt;}
.y9c{bottom:121.482667pt;}
.yda{bottom:122.712747pt;}
.y48{bottom:123.048000pt;}
.y4a{bottom:124.000000pt;}
.y131{bottom:125.837333pt;}
.y19d{bottom:128.932000pt;}
.yd8{bottom:128.965656pt;}
.y21{bottom:138.314667pt;}
.y103{bottom:139.044000pt;}
.y79{bottom:141.530667pt;}
.ycf{bottom:142.458667pt;}
.y10a{bottom:142.918669pt;}
.y9a{bottom:149.125333pt;}
.y19c{bottom:150.845333pt;}
.yd9{bottom:156.871550pt;}
.y102{bottom:157.109333pt;}
.y46{bottom:157.692000pt;}
.y20{bottom:160.229333pt;}
.yce{bottom:164.372000pt;}
.y99{bottom:171.038667pt;}
.y101{bottom:175.174667pt;}
.y78{bottom:181.168000pt;}
.y1f{bottom:182.142667pt;}
.y19b{bottom:185.288000pt;}
.ycd{bottom:186.285333pt;}
.y98{bottom:192.953333pt;}
.y100{bottom:193.241333pt;}
.y1e{bottom:204.056000pt;}
.y77{bottom:207.066667pt;}
.y19a{bottom:207.201333pt;}
.ycc{bottom:208.198667pt;}
.yff{bottom:211.306667pt;}
.y45{bottom:213.876000pt;}
.y96{bottom:222.613333pt;}
.y1d{bottom:225.969333pt;}
.y95{bottom:228.994667pt;}
.y199{bottom:229.114667pt;}
.yfe{bottom:229.372000pt;}
.ycb{bottom:230.112000pt;}
.y94{bottom:232.590667pt;}
.y93{bottom:236.268000pt;}
.y97{bottom:242.430667pt;}
.y76{bottom:246.704000pt;}
.yca{bottom:246.894667pt;}
.yfd{bottom:247.437333pt;}
.y44{bottom:250.385333pt;}
.yc9{bottom:252.026667pt;}
.y1c{bottom:262.282667pt;}
.y198{bottom:263.558667pt;}
.yfc{bottom:265.502667pt;}
.y92{bottom:273.609333pt;}
.yc8{bottom:273.940000pt;}
.y73{bottom:277.105333pt;}
.yfb{bottom:283.569333pt;}
.y75{bottom:283.712000pt;}
.y197{bottom:285.472000pt;}
.y70{bottom:293.689333pt;}
.yc7{bottom:295.853333pt;}
.yfa{bottom:301.634667pt;}
.y43{bottom:301.874667pt;}
.y74{bottom:303.529333pt;}
.y72{bottom:306.624000pt;}
.y196{bottom:307.385333pt;}
.y71{bottom:312.085333pt;}
.y91{bottom:313.248000pt;}
.y1b{bottom:316.098667pt;}
.yc6{bottom:317.766667pt;}
.yf9{bottom:320.230667pt;}
.y42{bottom:323.788000pt;}
.y1a{bottom:338.013333pt;}
.y90{bottom:339.146667pt;}
.y195{bottom:341.828000pt;}
.y6f{bottom:343.264000pt;}
.y41{bottom:345.702667pt;}
.yf8{bottom:351.580000pt;}
.yc5{bottom:361.194667pt;}
.y194{bottom:363.742667pt;}
.y40{bottom:367.616000pt;}
.yf7{bottom:369.645333pt;}
.y17c{bottom:371.218667pt;}
.y19{bottom:374.758667pt;}
.y8f{bottom:378.784000pt;}
.y6e{bottom:379.306667pt;}
.y6d{bottom:382.902667pt;}
.y3f{bottom:389.529333pt;}
.y18{bottom:394.094667pt;}
.y193{bottom:398.185333pt;}
.y17b{bottom:407.532000pt;}
.y8e{bottom:410.684000pt;}
.y17{bottom:413.430667pt;}
.y192{bottom:420.098667pt;}
.y8d{bottom:420.661333pt;}
.y6c{bottom:422.540000pt;}
.y3e{bottom:429.166667pt;}
.y16{bottom:432.765333pt;}
.yc4{bottom:433.032000pt;}
.yf6{bottom:439.417333pt;}
.y191{bottom:442.012000pt;}
.y6b{bottom:444.453333pt;}
.y15{bottom:452.101333pt;}
.y17a{bottom:458.449333pt;}
.yc2{bottom:463.581333pt;}
.y8c{bottom:464.100000pt;}
.yf5{bottom:465.346667pt;}
.y3d{bottom:468.804000pt;}
.y14{bottom:471.436000pt;}
.y190{bottom:476.456000pt;}
.yc3{bottom:479.633333pt;}
.y179{bottom:480.362667pt;}
.y6a{bottom:482.589333pt;}
.y130{bottom:490.118667pt;}
.y3c{bottom:490.717333pt;}
.y13{bottom:490.772000pt;}
.yc1{bottom:492.569333pt;}
.yc0{bottom:496.553333pt;}
.y178{bottom:502.276000pt;}
.y8b{bottom:503.737333pt;}
.y12{bottom:510.108000pt;}
.y18f{bottom:510.898667pt;}
.y12f{bottom:512.032000pt;}
.y3b{bottom:512.632000pt;}
.y177{bottom:524.189333pt;}
.ybf{bottom:524.196000pt;}
.y11{bottom:529.442667pt;}
.y18e{bottom:532.812000pt;}
.y12e{bottom:533.945333pt;}
.y3a{bottom:534.545333pt;}
.y69{bottom:535.269333pt;}
.y68{bottom:538.865333pt;}
.y176{bottom:546.102667pt;}
.ybe{bottom:546.109333pt;}
.y10{bottom:548.778667pt;}
.y12d{bottom:552.757333pt;}
.y39{bottom:556.458667pt;}
.y8a{bottom:561.100000pt;}
.y12c{bottom:564.460000pt;}
.y18d{bottom:567.256000pt;}
.y175{bottom:568.016000pt;}
.ybd{bottom:568.024000pt;}
.yf{bottom:568.113333pt;}
.y67{bottom:572.462667pt;}
.y38{bottom:578.372000pt;}
.y1ad{bottom:579.117333pt;}
.y65{bottom:582.440000pt;}
.ye{bottom:587.449333pt;}
.y18c{bottom:589.169333pt;}
.y66{bottom:589.412000pt;}
.y174{bottom:589.930667pt;}
.ybc{bottom:589.937333pt;}
.y12b{bottom:594.166667pt;}
.y37{bottom:600.285333pt;}
.y1ac{bottom:601.030667pt;}
.y173{bottom:611.844000pt;}
.ybb{bottom:611.850667pt;}
.y12a{bottom:612.089333pt;}
.yd{bottom:615.024000pt;}
.y89{bottom:618.461333pt;}
.y1ab{bottom:622.944000pt;}
.y18b{bottom:623.612000pt;}
.y129{bottom:623.792000pt;}
.yf4{bottom:625.024000pt;}
.y64{bottom:626.605333pt;}
.y172{bottom:633.757333pt;}
.y36{bottom:639.922667pt;}
.yb8{bottom:643.140000pt;}
.y63{bottom:644.924000pt;}
.y18a{bottom:645.525333pt;}
.y62{bottom:648.520000pt;}
.yc{bottom:650.237333pt;}
.ydd{bottom:650.953333pt;}
.yba{bottom:655.597333pt;}
.y171{bottom:655.670667pt;}
.y1aa{bottom:656.813333pt;}
.yb9{bottom:659.193333pt;}
.y87{bottom:669.096000pt;}
.yb7{bottom:672.128000pt;}
.y86{bottom:675.478667pt;}
.yb6{bottom:676.113333pt;}
.yb{bottom:676.845333pt;}
.y170{bottom:677.584000pt;}
.y1a9{bottom:678.726667pt;}
.y85{bottom:679.073333pt;}
.y35{bottom:679.561333pt;}
.y61{bottom:679.809333pt;}
.y189{bottom:679.969333pt;}
.y128{bottom:681.329333pt;}
.y88{bottom:688.914667pt;}
.yb4{bottom:691.345333pt;}
.y5e{bottom:695.862667pt;}
.y34{bottom:697.878667pt;}
.ya{bottom:698.758667pt;}
.y33{bottom:701.474667pt;}
.y188{bottom:701.882667pt;}
.y10c{bottom:707.258667pt;}
.yb5{bottom:707.397333pt;}
.y60{bottom:708.797333pt;}
.y1a8{bottom:712.594667pt;}
.y5f{bottom:712.782667pt;}
.y16f{bottom:713.898667pt;}
.yb3{bottom:720.332000pt;}
.y9{bottom:720.672000pt;}
.y84{bottom:723.729333pt;}
.yb2{bottom:724.317333pt;}
.y1a7{bottom:734.509333pt;}
.y187{bottom:736.325333pt;}
.y5d{bottom:740.566667pt;}
.y32{bottom:741.112000pt;}
.y8{bottom:742.585333pt;}
.yb1{bottom:755.596000pt;}
.y1a6{bottom:756.422667pt;}
.y186{bottom:758.238667pt;}
.y83{bottom:763.368000pt;}
.y16e{bottom:766.718667pt;}
.y7{bottom:771.772000pt;}
.yb0{bottom:777.509333pt;}
.y5c{bottom:778.186667pt;}
.y31{bottom:780.749333pt;}
.y16d{bottom:784.784000pt;}
.y1a5{bottom:790.290667pt;}
.y185{bottom:792.682667pt;}
.y6{bottom:801.030667pt;}
.y16c{bottom:802.849333pt;}
.yab{bottom:808.800000pt;}
.y30{bottom:810.409333pt;}
.ydc{bottom:810.630667pt;}
.y1a4{bottom:812.204000pt;}
.y184{bottom:814.596000pt;}
.yae{bottom:814.874667pt;}
.y2f{bottom:816.792000pt;}
.y5b{bottom:817.824000pt;}
.y2e{bottom:820.388000pt;}
.y16b{bottom:820.914667pt;}
.yad{bottom:821.257333pt;}
.y5{bottom:821.550667pt;}
.yaf{bottom:824.852000pt;}
.yac{bottom:824.853333pt;}
.y82{bottom:824.918667pt;}
.y10b{bottom:831.170667pt;}
.y59{bottom:833.717333pt;}
.y1a3{bottom:834.117333pt;}
.y183{bottom:836.509333pt;}
.yd2{bottom:836.560000pt;}
.yaa{bottom:837.788000pt;}
.y16a{bottom:838.980000pt;}
.ya9{bottom:841.772000pt;}
.y81{bottom:846.832000pt;}
.y5a{bottom:849.769333pt;}
.y169{bottom:857.046667pt;}
.y105{bottom:857.100000pt;}
.y2d{bottom:860.025333pt;}
.y58{bottom:862.704000pt;}
.y57{bottom:866.689333pt;}
.y1a2{bottom:867.986667pt;}
.y182{bottom:870.952000pt;}
.ya8{bottom:872.244000pt;}
.y168{bottom:875.112000pt;}
.y2c{bottom:881.938667pt;}
.y80{bottom:885.802667pt;}
.y4{bottom:888.349333pt;}
.ya7{bottom:889.141333pt;}
.y1a1{bottom:889.900000pt;}
.y181{bottom:892.866667pt;}
.y167{bottom:893.177333pt;}
.ya5{bottom:894.157333pt;}
.y56{bottom:894.474667pt;}
.ya6{bottom:900.656000pt;}
.y2b{bottom:903.852000pt;}
.y166{bottom:911.242667pt;}
.y180{bottom:914.780000pt;}
.y1a0{bottom:923.769333pt;}
.y2a{bottom:925.765333pt;}
.y55{bottom:926.264000pt;}
.ya1{bottom:928.062667pt;}
.y3{bottom:928.630667pt;}
.y165{bottom:929.308000pt;}
.ya4{bottom:934.137333pt;}
.y50{bottom:936.588000pt;}
.y7e{bottom:938.265333pt;}
.y54{bottom:938.266667pt;}
.ya3{bottom:940.520000pt;}
.ya2{bottom:944.116000pt;}
.y4e{bottom:944.906667pt;}
.y164{bottom:947.374667pt;}
.y29{bottom:947.678667pt;}
.y17f{bottom:949.222667pt;}
.y7f{bottom:950.052000pt;}
.y52{bottom:950.650667pt;}
.y53{bottom:951.373333pt;}
.ya0{bottom:957.050667pt;}
.y19f{bottom:957.637333pt;}
.y4f{bottom:960.498667pt;}
.y9f{bottom:961.036000pt;}
.y51{bottom:961.508000pt;}
.y163{bottom:965.970667pt;}
.y7d{bottom:968.448000pt;}
.y2{bottom:968.913333pt;}
.y28{bottom:969.592000pt;}
.y17e{bottom:971.136000pt;}
.y19e{bottom:979.550667pt;}
.y27{bottom:991.506667pt;}
.y162{bottom:997.320000pt;}
.y17d{bottom:1007.729333pt;}
.y1{bottom:1009.196000pt;}
.y26{bottom:1013.420000pt;}
.y161{bottom:1015.385333pt;}
.y25{bottom:1066.022667pt;}
.h12{height:2.125355pt;}
.h37{height:5.588914pt;}
.h21{height:6.934858pt;}
.h35{height:8.620033pt;}
.h38{height:9.315235pt;}
.h34{height:9.578006pt;}
.h19{height:23.761525pt;}
.h4{height:31.880400pt;}
.h8{height:37.193707pt;}
.ha{height:38.043849pt;}
.h17{height:38.907733pt;}
.h7{height:39.850400pt;}
.h6{height:40.727307pt;}
.h10{height:41.658217pt;}
.h5{height:43.636400pt;}
.h1f{height:47.782858pt;}
.h2e{height:47.788191pt;}
.h1a{height:52.989733pt;}
.he{height:52.995067pt;}
.h2f{height:54.787067pt;}
.h31{height:54.792400pt;}
.hb{height:55.901733pt;}
.h23{height:55.907067pt;}
.h1b{height:56.042217pt;}
.h9{height:57.384800pt;}
.hf{height:58.020400pt;}
.h29{height:58.985733pt;}
.h27{height:58.991067pt;}
.h2d{height:61.722217pt;}
.h20{height:62.166858pt;}
.h32{height:64.159067pt;}
.h1e{height:67.373733pt;}
.h3{height:67.615733pt;}
.h14{height:70.627067pt;}
.h2c{height:72.724400pt;}
.h30{height:73.517733pt;}
.h13{height:79.640400pt;}
.h2{height:82.650000pt;}
.h28{height:83.001733pt;}
.h1d{height:83.545733pt;}
.hd{height:83.551067pt;}
.h22{height:87.441001pt;}
.h3b{height:90.447067pt;}
.h15{height:92.873733pt;}
.h39{height:94.248021pt;}
.h1c{height:95.267067pt;}
.hc{height:97.380400pt;}
.h26{height:98.255067pt;}
.h36{height:102.553640pt;}
.h24{height:106.733733pt;}
.h2a{height:106.739067pt;}
.h16{height:112.312021pt;}
.h11{height:112.317355pt;}
.h18{height:118.207067pt;}
.h2b{height:122.905733pt;}
.h25{height:122.911067pt;}
.h3a{height:141.058688pt;}
.h33{height:170.929680pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:226.759680pt;}
.w2{width:377.948160pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xec{left:23.505452pt;}
.xe0{left:24.450284pt;}
.xf0{left:30.049398pt;}
.xe1{left:31.058596pt;}
.xf1{left:36.868919pt;}
.xe2{left:38.688705pt;}
.x10d{left:40.594313pt;}
.xdc{left:41.994240pt;}
.xef{left:43.175329pt;}
.xdd{left:44.750111pt;}
.xe3{left:46.318814pt;}
.xdb{left:48.227760pt;}
.x10e{left:49.574351pt;}
.xf2{left:50.508160pt;}
.xe4{left:53.948923pt;}
.x107{left:56.009838pt;}
.xf3{left:57.327682pt;}
.x110{left:58.554192pt;}
.xe5{left:61.579032pt;}
.xf4{left:64.147203pt;}
.x10a{left:66.026238pt;}
.xe6{left:69.209141pt;}
.xf6{left:70.966725pt;}
.x10c{left:74.699402pt;}
.xe7{left:76.839250pt;}
.xf8{left:77.786444pt;}
.xe8{left:84.469359pt;}
.x10b{left:88.091805pt;}
.x111{left:91.124125pt;}
.xe9{left:92.099468pt;}
.xc4{left:93.700000pt;}
.x3{left:94.610667pt;}
.xea{left:101.383229pt;}
.x1{left:109.169333pt;}
.xfa{left:111.657096pt;}
.x109{left:114.876611pt;}
.x5a{left:117.812000pt;}
.x2{left:120.929333pt;}
.xf9{left:122.411253pt;}
.x5b{left:123.525333pt;}
.x6{left:125.798667pt;}
.x5c{left:128.777333pt;}
.xe{left:130.852000pt;}
.x2e{left:135.174667pt;}
.xde{left:137.235536pt;}
.x5d{left:138.530667pt;}
.x108{left:141.661221pt;}
.xf7{left:143.919960pt;}
.x2c{left:148.066667pt;}
.xee{left:151.054667pt;}
.x83{left:153.150667pt;}
.xa2{left:155.068000pt;}
.xa1{left:156.113333pt;}
.x1c{left:159.470667pt;}
.xdf{left:160.502667pt;}
.x52{left:161.652000pt;}
.x2f{left:163.053333pt;}
.xf5{left:165.428470pt;}
.x1d{left:167.834667pt;}
.x9a{left:170.249333pt;}
.x99{left:171.296000pt;}
.xc0{left:176.068000pt;}
.x1e{left:178.202667pt;}
.x3e{left:179.908000pt;}
.xf{left:181.244000pt;}
.x10f{left:182.711612pt;}
.x1f{left:186.566667pt;}
.x3f{left:188.672000pt;}
.x10{left:189.606667pt;}
.xa3{left:193.374667pt;}
.x40{left:194.340000pt;}
.x106{left:195.230833pt;}
.x11{left:197.357333pt;}
.x41{left:199.592000pt;}
.x5{left:201.004000pt;}
.x90{left:202.690667pt;}
.x12{left:205.720000pt;}
.x7a{left:208.005333pt;}
.x77{left:211.222667pt;}
.x2a{left:212.445333pt;}
.x58{left:214.312000pt;}
.x5e{left:215.316000pt;}
.x72{left:216.993333pt;}
.x57{left:218.260000pt;}
.x5f{left:226.473333pt;}
.x53{left:229.721333pt;}
.x48{left:231.440000pt;}
.x81{left:234.681333pt;}
.x42{left:236.461333pt;}
.x82{left:242.061333pt;}
.x84{left:244.416000pt;}
.x7{left:246.106667pt;}
.x88{left:247.000000pt;}
.x55{left:249.765333pt;}
.x73{left:251.433333pt;}
.x56{left:252.942667pt;}
.x59{left:254.316000pt;}
.x49{left:256.456000pt;}
.xad{left:258.057333pt;}
.xae{left:260.620000pt;}
.x98{left:262.038667pt;}
.x60{left:265.540000pt;}
.x54{left:267.869333pt;}
.x13{left:269.412000pt;}
.x95{left:270.561333pt;}
.x2d{left:276.562667pt;}
.x14{left:277.776000pt;}
.xa{left:279.032000pt;}
.xb{left:282.790667pt;}
.x85{left:283.868000pt;}
.x9{left:285.941333pt;}
.xaf{left:286.884000pt;}
.x86{left:291.248000pt;}
.x78{left:294.752000pt;}
.x8e{left:295.852000pt;}
.xa4{left:296.770667pt;}
.x87{left:299.165333pt;}
.xa5{left:300.378667pt;}
.x43{left:301.549333pt;}
.xc{left:304.658667pt;}
.x9b{left:305.880000pt;}
.x61{left:307.154667pt;}
.x2b{left:308.624000pt;}
.x62{left:312.406667pt;}
.x4{left:314.936000pt;}
.x47{left:319.998667pt;}
.x45{left:321.593333pt;}
.x7b{left:323.242667pt;}
.x7c{left:325.874667pt;}
.xc3{left:327.302667pt;}
.xb0{left:329.350667pt;}
.x44{left:330.313333pt;}
.x70{left:331.578667pt;}
.x9c{left:334.706667pt;}
.x91{left:337.340000pt;}
.x63{left:347.334667pt;}
.xab{left:348.788000pt;}
.x100{left:350.881333pt;}
.x8{left:352.068000pt;}
.x64{left:353.048000pt;}
.x46{left:354.969333pt;}
.x7e{left:363.545333pt;}
.x96{left:365.016000pt;}
.x71{left:366.376000pt;}
.xd{left:367.833333pt;}
.xd7{left:368.744000pt;}
.x101{left:371.248000pt;}
.x8c{left:372.864000pt;}
.xfb{left:375.412000pt;}
.x15{left:376.677333pt;}
.xac{left:377.614667pt;}
.x1b{left:380.486667pt;}
.xb1{left:382.186667pt;}
.x7d{left:383.274667pt;}
.x16{left:385.040000pt;}
.xd8{left:388.774667pt;}
.x102{left:391.278667pt;}
.x8d{left:392.669333pt;}
.x97{left:393.842667pt;}
.x9f{left:395.873333pt;}
.xeb{left:399.274667pt;}
.x65{left:400.505333pt;}
.x89{left:404.074667pt;}
.x8f{left:409.316000pt;}
.x66{left:411.662667pt;}
.xa0{left:412.781333pt;}
.x92{left:414.173333pt;}
.x8a{left:415.576000pt;}
.x30{left:416.794667pt;}
.x8b{left:418.737333pt;}
.x20{left:420.794667pt;}
.x9d{left:424.144000pt;}
.x31{left:425.558667pt;}
.xd9{left:427.609333pt;}
.x32{left:431.237333pt;}
.xc5{left:434.830667pt;}
.x33{left:436.490667pt;}
.x21{left:437.521333pt;}
.x79{left:439.712000pt;}
.xa7{left:442.073333pt;}
.xa6{left:443.118667pt;}
.x67{left:444.649333pt;}
.x22{left:446.329333pt;}
.x17{left:447.790667pt;}
.xc6{left:449.138667pt;}
.x103{left:450.788000pt;}
.xc7{left:454.392000pt;}
.x18{left:456.153333pt;}
.x68{left:457.420000pt;}
.x23{left:463.057333pt;}
.x9e{left:465.302667pt;}
.xa8{left:468.338667pt;}
.x104{left:470.818667pt;}
.x24{left:471.865333pt;}
.xd4{left:475.377333pt;}
.xfc{left:476.780000pt;}
.xc8{left:479.102667pt;}
.x69{left:480.233333pt;}
.xd5{left:484.044000pt;}
.xfd{left:485.446667pt;}
.x6a{left:486.697333pt;}
.x25{left:488.592000pt;}
.xd6{left:489.678667pt;}
.xfe{left:491.034667pt;}
.x93{left:492.797333pt;}
.x6b{left:494.042667pt;}
.x26{left:497.400000pt;}
.xff{left:499.348000pt;}
.x6c{left:500.508000pt;}
.x94{left:504.298667pt;}
.xb2{left:505.493333pt;}
.x6d{left:507.853333pt;}
.x34{left:509.154667pt;}
.xa9{left:510.805333pt;}
.x27{left:514.126667pt;}
.x105{left:517.262667pt;}
.xcd{left:518.404000pt;}
.xb3{left:519.304000pt;}
.x112{left:520.989333pt;}
.x28{left:522.934667pt;}
.xce{left:524.026667pt;}
.xb4{left:524.949333pt;}
.x6e{left:526.438667pt;}
.xb5{left:530.201333pt;}
.xb6{left:535.846667pt;}
.xda{left:536.809333pt;}
.x29{left:539.662667pt;}
.xc9{left:541.598667pt;}
.x35{left:542.780000pt;}
.xcf{left:544.056000pt;}
.xca{left:547.142667pt;}
.x19{left:552.256000pt;}
.xb9{left:553.288000pt;}
.xb7{left:555.102667pt;}
.x38{left:557.512000pt;}
.x1a{left:560.620000pt;}
.xaa{left:561.797333pt;}
.xba{left:567.097333pt;}
.xbb{left:572.641333pt;}
.xd0{left:574.628000pt;}
.x39{left:577.542667pt;}
.xed{left:578.496000pt;}
.xbc{left:583.437333pt;}
.x36{left:584.998667pt;}
.xc1{left:588.708000pt;}
.xb8{left:591.434667pt;}
.x113{left:594.764000pt;}
.xcb{left:597.428000pt;}
.x4a{left:599.013333pt;}
.xbd{left:602.673333pt;}
.xc2{left:608.738667pt;}
.x37{left:610.138667pt;}
.x4b{left:615.741333pt;}
.x114{left:617.070667pt;}
.x115{left:621.110667pt;}
.x4c{left:624.197333pt;}
.xbe{left:631.392000pt;}
.xd1{left:633.082667pt;}
.xbf{left:638.518667pt;}
.x4d{left:640.925333pt;}
.x116{left:646.633333pt;}
.x4e{left:649.381333pt;}
.xd2{left:651.557333pt;}
.xcc{left:653.954667pt;}
.x74{left:654.881333pt;}
.x7f{left:657.761333pt;}
.x80{left:663.305333pt;}
.x4f{left:666.109333pt;}
.x6f{left:668.317333pt;}
.x75{left:671.609333pt;}
.x3a{left:672.508000pt;}
.xd3{left:673.594667pt;}
.x50{left:674.566667pt;}
.x3b{left:681.174667pt;}
.x3c{left:686.888000pt;}
.x51{left:691.293333pt;}
.x3d{left:695.201333pt;}
.x76{left:697.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; }
  