
    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_4b82030989b656f5d10d7baa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.736000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d0c6562702f94ed1f3977945.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.660000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ae3d30b173e585783f2d5020.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.885000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ec8c142adab0dc9632f93d5f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9a543c8068166ca77513ba7e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.011000;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_27d30189aaee5f346a065397.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f121656f57e70ffe7c166a27.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.839000;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_91e703ac3cbdf8240a07dad0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.933000;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_9ff5fcf6fc0acee9ae04c0ec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.677000;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_cc80cd89e542592f74d150df.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.002441;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_5e43b454db0ba4069f3bed57.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_3db75afb4a2e45c7929b875c.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.206055;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_1755aff4c18cd81046d11800.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c9f08e9b58a34bf5784c4489.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.021484;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_866d8c83e78c066fce187b32.woff2')format("woff");}.fff{font-family:fff;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;}
.ma{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);}
.m9{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);}
.m1{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);}
.mf{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);}
.mc{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);}
.md{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);}
.m5{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);}
.m6{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);}
.m16{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);}
.m1b{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);}
.m14{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);}
.m11{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);}
.m20{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);}
.m13{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);}
.m3{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);}
.m1e{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);}
.m1c{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);}
.me{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);}
.m19{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);}
.m1f{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);}
.m8{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);}
.m15{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);}
.m29{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);}
.m1d{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);}
.mb{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m4{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);}
.m22{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);}
.m10{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);}
.m1a{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);}
.m17{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);}
.m25{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);}
.m21{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);}
.m27{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);}
.m24{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);}
.m26{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);}
.m2{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);}
.m12{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;}
.v4{vertical-align:4.554000px;}
.v5{vertical-align:17.372102px;}
.v1{vertical-align:21.696000px;}
.v3{vertical-align:23.910000px;}
.ls37{letter-spacing:-1.555605px;}
.ls34{letter-spacing:-0.580759px;}
.ls36{letter-spacing:-0.538200px;}
.ls39{letter-spacing:-0.262724px;}
.ls30{letter-spacing:-0.159017px;}
.ls2e{letter-spacing:-0.152104px;}
.ls2d{letter-spacing:-0.138276px;}
.ls35{letter-spacing:-0.124448px;}
.ls31{letter-spacing:-0.124200px;}
.ls27{letter-spacing:-0.104618px;}
.ls33{letter-spacing:-0.103707px;}
.ls38{letter-spacing:-0.082966px;}
.ls2c{letter-spacing:-0.055310px;}
.ls32{letter-spacing:-0.048397px;}
.ls2b{letter-spacing:-0.034569px;}
.ls29{letter-spacing:-0.020741px;}
.ls28{letter-spacing:-0.016519px;}
.ls2f{letter-spacing:-0.013828px;}
.ls2a{letter-spacing:-0.006914px;}
.ls10{letter-spacing:0.000000px;}
.ls4c{letter-spacing:0.000566px;}
.ls47{letter-spacing:0.000568px;}
.ls12{letter-spacing:0.000600px;}
.ls4f{letter-spacing:0.000800px;}
.ls5d{letter-spacing:0.000845px;}
.ls51{letter-spacing:0.001036px;}
.ls60{letter-spacing:0.001155px;}
.lsc{letter-spacing:0.001573px;}
.ls58{letter-spacing:0.001693px;}
.ls8{letter-spacing:0.001933px;}
.ls7{letter-spacing:0.001952px;}
.ls5e{letter-spacing:0.002271px;}
.ls4a{letter-spacing:0.002488px;}
.ls5b{letter-spacing:0.002544px;}
.ls6{letter-spacing:0.003488px;}
.ls48{letter-spacing:0.003634px;}
.ls49{letter-spacing:0.003752px;}
.ls5c{letter-spacing:0.003859px;}
.lsa{letter-spacing:0.004612px;}
.ls13{letter-spacing:0.004800px;}
.ls19{letter-spacing:0.006914px;}
.ls1a{letter-spacing:0.013828px;}
.ls1b{letter-spacing:0.020741px;}
.ls1d{letter-spacing:0.027655px;}
.ls1f{letter-spacing:0.034569px;}
.ls23{letter-spacing:0.041483px;}
.ls1e{letter-spacing:0.048397px;}
.ls14{letter-spacing:0.055062px;}
.ls22{letter-spacing:0.055310px;}
.ls24{letter-spacing:0.062224px;}
.ls25{letter-spacing:0.069138px;}
.ls1c{letter-spacing:0.076052px;}
.ls18{letter-spacing:0.089879px;}
.ls17{letter-spacing:0.110621px;}
.ls26{letter-spacing:0.117535px;}
.ls21{letter-spacing:0.138276px;}
.ls20{letter-spacing:0.159017px;}
.ls16{letter-spacing:0.192717px;}
.ls15{letter-spacing:0.209236px;}
.ls3b{letter-spacing:0.542815px;}
.ls3a{letter-spacing:0.548815px;}
.ls3d{letter-spacing:0.720783px;}
.ls43{letter-spacing:0.802544px;}
.ls45{letter-spacing:0.805894px;}
.ls42{letter-spacing:0.806682px;}
.ls44{letter-spacing:0.806918px;}
.ls3f{letter-spacing:0.806976px;}
.ls41{letter-spacing:0.807037px;}
.ls40{letter-spacing:0.808427px;}
.ls11{letter-spacing:0.896634px;}
.lsf{letter-spacing:1.275394px;}
.ls0{letter-spacing:1.861130px;}
.ls2{letter-spacing:2.989200px;}
.ls3e{letter-spacing:3.559200px;}
.ls1{letter-spacing:10.461300px;}
.lse{letter-spacing:11.954850px;}
.ls9{letter-spacing:11.957700px;}
.lsb{letter-spacing:12.169130px;}
.ls53{letter-spacing:12.203461px;}
.ls57{letter-spacing:13.299168px;}
.ls59{letter-spacing:13.362714px;}
.ls4d{letter-spacing:13.448400px;}
.ls5a{letter-spacing:13.450560px;}
.ls50{letter-spacing:13.454400px;}
.ls4b{letter-spacing:13.497196px;}
.ls52{letter-spacing:13.556448px;}
.ls56{letter-spacing:13.562472px;}
.ls54{letter-spacing:13.629508px;}
.ls61{letter-spacing:13.648160px;}
.ls4e{letter-spacing:13.809224px;}
.ls55{letter-spacing:14.120988px;}
.ls46{letter-spacing:14.405495px;}
.ls3c{letter-spacing:17.935200px;}
.ls5f{letter-spacing:20.103341px;}
.ls3{letter-spacing:57.415200px;}
.ls5{letter-spacing:62.761200px;}
.lsd{letter-spacing:64.321654px;}
.ls4{letter-spacing:72.361200px;}
.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;}
}
.ws60{word-spacing:-41.400000px;}
.wsca{word-spacing:-14.943900px;}
.wsec{word-spacing:-14.256576px;}
.ws5f{word-spacing:-13.974736px;}
.ws4b{word-spacing:-13.449600px;}
.ws11{word-spacing:-11.955150px;}
.wsf{word-spacing:-11.357400px;}
.ws4{word-spacing:-10.460700px;}
.ws61{word-spacing:-10.350000px;}
.ws62{word-spacing:-10.225800px;}
.ws63{word-spacing:-9.811800px;}
.ws7f{word-spacing:-4.044573px;}
.ws7e{word-spacing:-3.982349px;}
.ws44{word-spacing:-3.347434px;}
.ws89{word-spacing:-3.208003px;}
.ws8a{word-spacing:-3.194176px;}
.ws109{word-spacing:-3.012710px;}
.ws41{word-spacing:-2.988780px;}
.wsd8{word-spacing:-2.869229px;}
.wscd{word-spacing:-2.809453px;}
.ws132{word-spacing:-2.797517px;}
.wsf0{word-spacing:-2.743718px;}
.wsc7{word-spacing:-2.570351px;}
.ws40{word-spacing:-2.391024px;}
.ws6f{word-spacing:-2.385261px;}
.wse3{word-spacing:-2.271473px;}
.wsf8{word-spacing:-2.259533px;}
.wsa4{word-spacing:-2.032657px;}
.ws24{word-spacing:-2.032370px;}
.ws3f{word-spacing:-1.912819px;}
.ws1{word-spacing:-1.908367px;}
.ws43{word-spacing:-1.853044px;}
.wsc8{word-spacing:-1.733492px;}
.ws105{word-spacing:-1.613952px;}
.ws65{word-spacing:-1.613941px;}
.ws66{word-spacing:-1.554166px;}
.wsa6{word-spacing:-1.472639px;}
.ws5c{word-spacing:-1.434614px;}
.wsa5{word-spacing:-1.431157px;}
.ws0{word-spacing:-1.322630px;}
.ws8d{word-spacing:-1.279053px;}
.ws107{word-spacing:-1.237363px;}
.wsd7{word-spacing:-1.195512px;}
.ws5{word-spacing:-1.171598px;}
.ws79{word-spacing:-1.161518px;}
.ws22{word-spacing:-1.135736px;}
.wsfe{word-spacing:-1.129766px;}
.ws78{word-spacing:-1.085467px;}
.wseb{word-spacing:-1.075968px;}
.ws59{word-spacing:-1.075961px;}
.ws7{word-spacing:-1.046070px;}
.wsd6{word-spacing:-1.016185px;}
.wsbf{word-spacing:-0.956410px;}
.ws2e{word-spacing:-0.896634px;}
.wsf7{word-spacing:-0.860774px;}
.ws1c{word-spacing:-0.806976px;}
.ws35{word-spacing:-0.777083px;}
.ws8e{word-spacing:-0.732863px;}
.wsdf{word-spacing:-0.717307px;}
.wsed{word-spacing:-0.699379px;}
.wsdc{word-spacing:-0.657532px;}
.wsee{word-spacing:-0.645581px;}
.ws2b{word-spacing:-0.597756px;}
.wsf6{word-spacing:-0.591782px;}
.ws82{word-spacing:-0.573845px;}
.wsb1{word-spacing:-0.537980px;}
.ws111{word-spacing:-0.484186px;}
.wsb8{word-spacing:-0.478205px;}
.ws117{word-spacing:-0.430387px;}
.ws7a{word-spacing:-0.387173px;}
.ws9d{word-spacing:-0.373345px;}
.wsce{word-spacing:-0.358654px;}
.wsbd{word-spacing:-0.298878px;}
.wsea{word-spacing:-0.268992px;}
.ws2a{word-spacing:-0.239102px;}
.ws17{word-spacing:-0.215194px;}
.ws9c{word-spacing:-0.207414px;}
.ws29{word-spacing:-0.179327px;}
.ws1a{word-spacing:-0.161395px;}
.ws46{word-spacing:-0.119551px;}
.ws1b{word-spacing:-0.107597px;}
.ws69{word-spacing:-0.088099px;}
.ws23{word-spacing:-0.059776px;}
.wse9{word-spacing:-0.053798px;}
.wsa7{word-spacing:-0.048397px;}
.ws10{word-spacing:-0.047821px;}
.wsf5{word-spacing:-0.012230px;}
.ws131{word-spacing:-0.011290px;}
.wsfd{word-spacing:-0.009725px;}
.ws6c{word-spacing:-0.006914px;}
.ws125{word-spacing:-0.006797px;}
.wsf2{word-spacing:-0.005510px;}
.ws13a{word-spacing:-0.005290px;}
.ws14{word-spacing:-0.004990px;}
.ws11c{word-spacing:-0.004282px;}
.ws2d{word-spacing:-0.003377px;}
.ws123{word-spacing:-0.002333px;}
.ws139{word-spacing:-0.001843px;}
.ws3{word-spacing:0.000000px;}
.ws99{word-spacing:0.034569px;}
.ws1e{word-spacing:0.053798px;}
.ws7d{word-spacing:0.055310px;}
.ws27{word-spacing:0.059776px;}
.ws94{word-spacing:0.062224px;}
.ws16{word-spacing:0.107597px;}
.ws2c{word-spacing:0.119551px;}
.ws19{word-spacing:0.161395px;}
.ws21{word-spacing:0.179327px;}
.ws12{word-spacing:0.191282px;}
.ws6b{word-spacing:0.204930px;}
.ws18{word-spacing:0.215194px;}
.ws13{word-spacing:0.239103px;}
.ws7c{word-spacing:0.241983px;}
.ws1f{word-spacing:0.268992px;}
.ws28{word-spacing:0.298878px;}
.ws100{word-spacing:0.322790px;}
.wsf4{word-spacing:0.376589px;}
.ws98{word-spacing:0.401000px;}
.ws85{word-spacing:0.407914px;}
.wsc6{word-spacing:0.418429px;}
.ws48{word-spacing:0.430387px;}
.wsb2{word-spacing:0.478205px;}
.ws112{word-spacing:0.484186px;}
.wse7{word-spacing:0.537980px;}
.wsb4{word-spacing:0.597756px;}
.ws114{word-spacing:0.645581px;}
.ws52{word-spacing:0.657532px;}
.ws47{word-spacing:0.699379px;}
.ws45{word-spacing:0.717307px;}
.ws102{word-spacing:0.753178px;}
.ws49{word-spacing:0.806976px;}
.ws67{word-spacing:0.836858px;}
.ws97{word-spacing:0.864225px;}
.ws86{word-spacing:0.884966px;}
.wsd0{word-spacing:0.896634px;}
.ws1d{word-spacing:0.914573px;}
.ws73{word-spacing:0.919535px;}
.ws72{word-spacing:0.940277px;}
.wsbe{word-spacing:0.956410px;}
.wsa9{word-spacing:0.988673px;}
.ws6{word-spacing:1.004227px;}
.wsd2{word-spacing:1.016185px;}
.ws37{word-spacing:1.075961px;}
.ws126{word-spacing:1.075968px;}
.wsfa{word-spacing:1.129766px;}
.ws58{word-spacing:1.135736px;}
.ws26{word-spacing:1.195512px;}
.wsae{word-spacing:1.279053px;}
.wsaa{word-spacing:1.306708px;}
.ws51{word-spacing:1.315063px;}
.wse6{word-spacing:1.374839px;}
.ws15{word-spacing:1.398758px;}
.wsa8{word-spacing:1.403501px;}
.ws30{word-spacing:1.494390px;}
.wsf1{word-spacing:1.506355px;}
.ws116{word-spacing:1.560154px;}
.wsb6{word-spacing:1.613941px;}
.wscc{word-spacing:1.673717px;}
.ws84{word-spacing:1.707709px;}
.ws80{word-spacing:1.721536px;}
.wsdd{word-spacing:1.733492px;}
.wsa2{word-spacing:1.749191px;}
.wsaf{word-spacing:1.776847px;}
.ws34{word-spacing:1.793268px;}
.ws53{word-spacing:1.912819px;}
.wsc1{word-spacing:1.972595px;}
.ws55{word-spacing:2.032370px;}
.ws75{word-spacing:2.170933px;}
.ws74{word-spacing:2.205502px;}
.wsc2{word-spacing:2.271473px;}
.ws4c{word-spacing:2.331248px;}
.ws5d{word-spacing:2.391024px;}
.ws118{word-spacing:2.397906px;}
.ws119{word-spacing:2.420928px;}
.ws32{word-spacing:2.450800px;}
.wsc5{word-spacing:2.510575px;}
.ws2{word-spacing:2.511541px;}
.ws7b{word-spacing:2.558106px;}
.ws5a{word-spacing:2.570351px;}
.wse1{word-spacing:2.630126px;}
.wsdb{word-spacing:2.689902px;}
.wsbc{word-spacing:2.809453px;}
.ws5e{word-spacing:2.869229px;}
.ws106{word-spacing:2.905114px;}
.ws54{word-spacing:2.929004px;}
.ws115{word-spacing:2.958912px;}
.ws9e{word-spacing:2.979848px;}
.wsd9{word-spacing:2.988780px;}
.wse8{word-spacing:3.048556px;}
.ws11a{word-spacing:3.066509px;}
.wsf9{word-spacing:3.216835px;}
.ws133{word-spacing:3.219830px;}
.ws12a{word-spacing:3.220416px;}
.ws11f{word-spacing:3.221088px;}
.ws13b{word-spacing:3.221213px;}
.ws122{word-spacing:3.222067px;}
.ws128{word-spacing:3.222077px;}
.ws10d{word-spacing:3.222317px;}
.ws135{word-spacing:3.222432px;}
.ws11e{word-spacing:3.223882px;}
.ws10c{word-spacing:3.223891px;}
.wsfc{word-spacing:3.224909px;}
.ws11d{word-spacing:3.225542px;}
.ws129{word-spacing:3.226474px;}
.ws12c{word-spacing:3.227578px;}
.ws68{word-spacing:3.227882px;}
.wsf3{word-spacing:3.227904px;}
.wse4{word-spacing:3.287658px;}
.ws42{word-spacing:3.347434px;}
.ws25{word-spacing:3.407209px;}
.ws10a{word-spacing:3.443098px;}
.wsef{word-spacing:3.496896px;}
.wsd3{word-spacing:3.526760px;}
.ws121{word-spacing:3.550694px;}
.ws20{word-spacing:3.586536px;}
.wsc0{word-spacing:3.706087px;}
.ws101{word-spacing:3.712090px;}
.wsb3{word-spacing:3.765863px;}
.ws127{word-spacing:3.765888px;}
.ws4e{word-spacing:3.825638px;}
.wsb5{word-spacing:3.885414px;}
.wsb7{word-spacing:3.945190px;}
.ws108{word-spacing:3.981082px;}
.ws4f{word-spacing:4.004965px;}
.wsd1{word-spacing:4.124516px;}
.ws95{word-spacing:4.182849px;}
.ws96{word-spacing:4.238159px;}
.ws50{word-spacing:4.244068px;}
.ws83{word-spacing:4.251987px;}
.wsd4{word-spacing:4.363619px;}
.wsde{word-spacing:4.423394px;}
.wsba{word-spacing:4.483170px;}
.ws5b{word-spacing:4.542946px;}
.ws91{word-spacing:4.583849px;}
.ws90{word-spacing:4.604591px;}
.wsd5{word-spacing:4.662497px;}
.wse0{word-spacing:4.722272px;}
.wsd{word-spacing:4.770079px;}
.wsbb{word-spacing:4.782048px;}
.wse{word-spacing:4.853765px;}
.ws136{word-spacing:4.895654px;}
.wsc4{word-spacing:4.901599px;}
.ws70{word-spacing:4.998677px;}
.ws4a{word-spacing:5.003251px;}
.ws93{word-spacing:5.005591px;}
.ws33{word-spacing:5.021150px;}
.ws71{word-spacing:5.095471px;}
.ws92{word-spacing:5.109298px;}
.ws113{word-spacing:5.110848px;}
.ws134{word-spacing:5.218445px;}
.wsb0{word-spacing:5.260253px;}
.ws137{word-spacing:5.272243px;}
.wsda{word-spacing:5.320028px;}
.wse5{word-spacing:5.379804px;}
.ws8b{word-spacing:5.434247px;}
.ws56{word-spacing:5.499355px;}
.ws36{word-spacing:5.678682px;}
.wsc9{word-spacing:5.738458px;}
.wsfb{word-spacing:5.756429px;}
.ws10f{word-spacing:5.971622px;}
.ws10e{word-spacing:5.973906px;}
.ws8c{word-spacing:6.056489px;}
.ws64{word-spacing:6.216662px;}
.wsac{word-spacing:6.270817px;}
.ws4d{word-spacing:6.395989px;}
.ws2f{word-spacing:6.575316px;}
.ws6e{word-spacing:6.630334px;}
.ws6d{word-spacing:6.637248px;}
.ws138{word-spacing:6.671002px;}
.wsa3{word-spacing:6.678731px;}
.ws87{word-spacing:6.713300px;}
.ws88{word-spacing:6.720214px;}
.ws124{word-spacing:6.832397px;}
.ws31{word-spacing:7.053521px;}
.ws9f{word-spacing:7.072817px;}
.wsab{word-spacing:7.086645px;}
.ws120{word-spacing:7.101389px;}
.wsa1{word-spacing:7.107386px;}
.ws9a{word-spacing:7.148869px;}
.ws9b{word-spacing:7.190352px;}
.wsc3{word-spacing:7.412174px;}
.wscf{word-spacing:7.471950px;}
.ws110{word-spacing:7.531776px;}
.wsb9{word-spacing:7.591501px;}
.wsa0{word-spacing:7.722715px;}
.wsb{word-spacing:7.782761px;}
.wse2{word-spacing:7.890379px;}
.ws57{word-spacing:7.950155px;}
.wscb{word-spacing:8.069706px;}
.ws104{word-spacing:8.177357px;}
.ws76{word-spacing:8.324215px;}
.wsad{word-spacing:8.344957px;}
.ws77{word-spacing:8.407181px;}
.ws81{word-spacing:8.718302px;}
.wsff{word-spacing:9.683712px;}
.ws8f{word-spacing:10.011182px;}
.ws103{word-spacing:10.275494px;}
.ws12b{word-spacing:10.759680px;}
.ws10b{word-spacing:10.867277px;}
.ws12f{word-spacing:12.104640px;}
.ws9{word-spacing:12.176255px;}
.ws130{word-spacing:12.319834px;}
.ws6a{word-spacing:13.363547px;}
.ws11b{word-spacing:13.395802px;}
.ws12e{word-spacing:15.171149px;}
.wsa{word-spacing:16.109478px;}
.ws12d{word-spacing:25.554240px;}
.wsc{word-spacing:26.109907px;}
.ws8{word-spacing:26.840252px;}
.ws3c{word-spacing:199.049588px;}
.ws3e{word-spacing:264.153596px;}
.ws3d{word-spacing:309.594877px;}
.ws3a{word-spacing:344.398342px;}
.ws39{word-spacing:357.300192px;}
.ws38{word-spacing:400.426746px;}
.ws3b{word-spacing:421.701728px;}
._2b{margin-left:-20.216221px;}
._26{margin-left:-7.703485px;}
._a{margin-left:-6.635092px;}
._2{margin-left:-5.623274px;}
._3{margin-left:-4.602708px;}
._6{margin-left:-2.948262px;}
._0{margin-left:-1.322630px;}
._1{width:1.091170px;}
._7{width:2.301354px;}
._9{width:3.676322px;}
._27{width:12.212237px;}
._4{width:13.618176px;}
._c{width:14.676313px;}
._b{width:16.211207px;}
._e{width:17.521818px;}
._d{width:18.829440px;}
._1c{width:20.024826px;}
._20{width:21.160562px;}
._13{width:22.176748px;}
._11{width:23.491811px;}
._24{width:24.866650px;}
._5{width:25.946136px;}
._1e{width:27.795654px;}
._1a{width:29.170493px;}
._8{width:30.587087px;}
._23{width:32.099497px;}
._12{width:33.183025px;}
._1d{width:34.737191px;}
._21{width:36.283789px;}
._1b{width:38.196608px;}
._22{width:41.790712px;}
._29{width:43.253914px;}
._2a{width:44.464841px;}
._28{width:61.868160px;}
._14{width:310.933847px;}
._19{width:326.882627px;}
._18{width:336.734515px;}
._15{width:364.032360px;}
._17{width:432.152438px;}
._16{width:541.545857px;}
._f{width:947.627905px;}
._1f{width:2458.071355px;}
._25{width:2524.764229px;}
._10{width:2548.674229px;}
.fc4{color:transparent;}
.fc3{color:rgb(8,117,183);}
.fc2{color:rgb(138,67,71);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(12,11,11);}
.fs7{font-size:35.865600px;}
.fsf{font-size:41.400000px;}
.fs2{font-size:41.842800px;}
.fs1{font-size:41.936104px;}
.fs6{font-size:45.429600px;}
.fs0{font-size:47.236800px;}
.fsa{font-size:47.337600px;}
.fs8{font-size:47.820600px;}
.fs9{font-size:53.798400px;}
.fsb{font-size:55.062000px;}
.fs4{font-size:59.775600px;}
.fse{font-size:62.100000px;}
.fs10{font-size:62.286600px;}
.fsc{font-size:69.138000px;}
.fsd{font-size:95.220000px;}
.fs5{font-size:107.596800px;}
.fs3{font-size:151.185600px;}
.yd1{bottom:-1119.403732px;}
.y100{bottom:-1035.979110px;}
.yff{bottom:-1013.934459px;}
.yfe{bottom:-991.786100px;}
.yfd{bottom:-969.637742px;}
.yfc{bottom:-947.593091px;}
.yfb{bottom:-925.443884px;}
.yfa{bottom:-903.388399px;}
.yf9{bottom:-881.240041px;}
.yf8{bottom:-859.091683px;}
.yf7{bottom:-837.047032px;}
.yf6{bottom:-814.898673px;}
.yf5{bottom:-792.750315px;}
.yf4{bottom:-770.705664px;}
.yf3{bottom:-748.557305px;}
.yf2{bottom:-726.512654px;}
.yf1{bottom:-704.364296px;}
.yf0{bottom:-682.215937px;}
.yef{bottom:-660.171286px;}
.yee{bottom:-638.022928px;}
.yed{bottom:-615.978277px;}
.yec{bottom:-593.829918px;}
.yeb{bottom:-571.676620px;}
.yea{bottom:-549.631968px;}
.ye9{bottom:-527.483610px;}
.ye8{bottom:-505.438959px;}
.ye7{bottom:-483.290600px;}
.ye6{bottom:-461.142242px;}
.ye5{bottom:-439.097591px;}
.ye4{bottom:-416.945258px;}
.ye3{bottom:-394.796900px;}
.ye2{bottom:-372.750520px;}
.ye1{bottom:-350.602162px;}
.ye0{bottom:-328.557510px;}
.ydf{bottom:-306.409152px;}
.yde{bottom:-284.260794px;}
.ydd{bottom:-262.214414px;}
.ydc{bottom:-240.066056px;}
.ydb{bottom:-218.019676px;}
.yda{bottom:-195.871318px;}
.yd9{bottom:-173.722959px;}
.yd8{bottom:-151.676580px;}
.yd7{bottom:-129.528221px;}
.yd6{bottom:-107.483570px;}
.yd5{bottom:-80.160232px;}
.yd4{bottom:-37.828732px;}
.yd3{bottom:-11.953732px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.425340px;}
.y2{bottom:14.151273px;}
.y1d{bottom:16.185269px;}
.y4b{bottom:31.890000px;}
.yd2{bottom:57.287768px;}
.yb7{bottom:91.665000px;}
.y10a{bottom:97.174500px;}
.ya3{bottom:100.192500px;}
.y1b6{bottom:104.503500px;}
.y1b{bottom:104.646000px;}
.y17f{bottom:106.744500px;}
.y14b{bottom:107.193000px;}
.y130{bottom:107.641500px;}
.yb6{bottom:110.494500px;}
.y14c{bottom:112.617000px;}
.y109{bottom:116.004000px;}
.ya2{bottom:119.022000px;}
.y1b5{bottom:121.762500px;}
.y1a{bottom:122.535000px;}
.y17e{bottom:124.005000px;}
.y14a{bottom:126.022500px;}
.y12f{bottom:126.471000px;}
.y4a{bottom:127.440000px;}
.yb5{bottom:129.324000px;}
.y133{bottom:131.895000px;}
.y108{bottom:134.833500px;}
.ya1{bottom:137.851500px;}
.y1b4{bottom:139.023000px;}
.y19{bottom:140.422500px;}
.y17d{bottom:141.265500px;}
.y149{bottom:144.852000px;}
.y12e{bottom:145.300500px;}
.y49{bottom:146.269500px;}
.yb4{bottom:148.153500px;}
.y107{bottom:153.663000px;}
.y1b3{bottom:156.283500px;}
.ya0{bottom:156.681000px;}
.y18{bottom:158.310000px;}
.y17c{bottom:158.526000px;}
.y148{bottom:163.681500px;}
.y12d{bottom:164.130000px;}
.y48{bottom:165.099000px;}
.yb3{bottom:166.983000px;}
.y106{bottom:172.492500px;}
.y1b2{bottom:173.544000px;}
.y9f{bottom:175.510500px;}
.y17b{bottom:175.786500px;}
.y17{bottom:176.199000px;}
.y147{bottom:182.511000px;}
.y12c{bottom:182.959500px;}
.y47{bottom:183.928500px;}
.yd0{bottom:184.799923px;}
.yb2{bottom:185.812500px;}
.y1b1{bottom:190.804500px;}
.y105{bottom:191.322000px;}
.y17a{bottom:193.047000px;}
.y16{bottom:194.086500px;}
.y9e{bottom:194.340000px;}
.ycf{bottom:195.874268px;}
.y146{bottom:201.340500px;}
.y12b{bottom:201.789000px;}
.y46{bottom:202.758000px;}
.yb1{bottom:204.642000px;}
.y1b0{bottom:208.065000px;}
.y104{bottom:210.151500px;}
.y179{bottom:210.307500px;}
.y15{bottom:211.974000px;}
.y9d{bottom:213.169500px;}
.y145{bottom:220.170000px;}
.y12a{bottom:220.618500px;}
.y45{bottom:221.587500px;}
.yb0{bottom:223.471500px;}
.y157{bottom:224.652000px;}
.y1af{bottom:225.325500px;}
.y178{bottom:227.568000px;}
.y103{bottom:228.981000px;}
.y14{bottom:229.863000px;}
.y9c{bottom:231.999000px;}
.y144{bottom:238.999500px;}
.y129{bottom:239.446500px;}
.y44{bottom:240.417000px;}
.yaf{bottom:242.301000px;}
.y1ae{bottom:242.586000px;}
.y177{bottom:244.827000px;}
.y9b{bottom:250.828500px;}
.y102{bottom:252.294000px;}
.y143{bottom:257.829000px;}
.y128{bottom:258.276000px;}
.y43{bottom:259.246500px;}
.y1ad{bottom:259.846500px;}
.yae{bottom:261.130500px;}
.y176{bottom:262.087500px;}
.y9a{bottom:269.658000px;}
.y142{bottom:273.928500px;}
.y141{bottom:276.658500px;}
.y127{bottom:277.105500px;}
.y42{bottom:278.076000px;}
.y175{bottom:279.348000px;}
.yad{bottom:279.960000px;}
.y101{bottom:285.709500px;}
.y98{bottom:288.487500px;}
.y99{bottom:293.911500px;}
.y1ac{bottom:294.366000px;}
.y140{bottom:295.488000px;}
.y126{bottom:295.935000px;}
.y174{bottom:296.608500px;}
.y41{bottom:296.905500px;}
.yac{bottom:298.789500px;}
.y13{bottom:300.154500px;}
.y97{bottom:307.317000px;}
.yce{bottom:311.128500px;}
.y1ab{bottom:311.626500px;}
.y173{bottom:313.869000px;}
.y13e{bottom:314.317500px;}
.y125{bottom:314.764500px;}
.y40{bottom:315.735000px;}
.yab{bottom:317.619000px;}
.y12{bottom:318.043500px;}
.y13f{bottom:319.741500px;}
.y1aa{bottom:328.887000px;}
.y96{bottom:330.630000px;}
.y172{bottom:331.129500px;}
.y13d{bottom:333.145500px;}
.y124{bottom:333.594000px;}
.y3f{bottom:334.564500px;}
.y11{bottom:335.931000px;}
.y1a9{bottom:346.147500px;}
.yaa{bottom:348.508500px;}
.y13c{bottom:349.246500px;}
.y95{bottom:350.803500px;}
.y13b{bottom:351.975000px;}
.y123{bottom:352.423500px;}
.y171{bottom:352.873500px;}
.y3e{bottom:353.394000px;}
.y10{bottom:353.818500px;}
.y1a8{bottom:363.408000px;}
.ya9{bottom:367.741500px;}
.y13a{bottom:370.804500px;}
.y122{bottom:371.253000px;}
.y3d{bottom:372.223500px;}
.y1a7{bottom:380.668500px;}
.yf{bottom:380.673000px;}
.y94{bottom:384.810000px;}
.y170{bottom:386.496000px;}
.y139{bottom:386.904000px;}
.y138{bottom:389.634000px;}
.y121{bottom:390.082500px;}
.y3c{bottom:395.536500px;}
.y1a6{bottom:397.929000px;}
.ye{bottom:398.562000px;}
.y16f{bottom:404.071500px;}
.y8f{bottom:404.169000px;}
.y92{bottom:404.791500px;}
.y93{bottom:406.015500px;}
.y137{bottom:408.463500px;}
.y120{bottom:408.912000px;}
.y1a5{bottom:415.188000px;}
.y8e{bottom:416.124000px;}
.yd{bottom:416.449500px;}
.y91{bottom:416.746500px;}
.y16e{bottom:421.645500px;}
.y136{bottom:427.293000px;}
.y90{bottom:427.563000px;}
.y11f{bottom:427.741500px;}
.y8d{bottom:428.079000px;}
.y1a4{bottom:432.448500px;}
.yc{bottom:444.798000px;}
.y135{bottom:446.122500px;}
.y11e{bottom:446.571000px;}
.y8b{bottom:447.730500px;}
.y16d{bottom:448.185000px;}
.y8c{bottom:449.112000px;}
.y1a3{bottom:449.709000px;}
.y83{bottom:453.718500px;}
.y8a{bottom:459.685500px;}
.ycd{bottom:464.952000px;}
.y11d{bottom:465.400500px;}
.y82{bottom:465.673500px;}
.y16c{bottom:465.759000px;}
.y1a2{bottom:466.969500px;}
.y86{bottom:470.661000px;}
.y3b{bottom:470.686500px;}
.y156{bottom:470.824500px;}
.y89{bottom:471.640500px;}
.yb{bottom:471.652500px;}
.y81{bottom:477.628500px;}
.y84{bottom:482.616000px;}
.y16b{bottom:483.334500px;}
.y88{bottom:483.595500px;}
.ycc{bottom:483.781500px;}
.y11c{bottom:484.230000px;}
.ya{bottom:489.540000px;}
.y80{bottom:489.583500px;}
.y3a{bottom:490.143000px;}
.y85{bottom:494.571000px;}
.y87{bottom:495.550500px;}
.y16a{bottom:500.908500px;}
.y1a1{bottom:501.490500px;}
.ycb{bottom:502.611000px;}
.y11b{bottom:503.059500px;}
.y9{bottom:507.429000px;}
.y155{bottom:508.483500px;}
.y7f{bottom:516.120000px;}
.y169{bottom:518.482500px;}
.y1a0{bottom:518.751000px;}
.yca{bottom:521.440500px;}
.y11a{bottom:521.889000px;}
.y7e{bottom:522.097500px;}
.y8{bottom:525.316500px;}
.y7d{bottom:526.692000px;}
.y39{bottom:527.533500px;}
.y70{bottom:532.680000px;}
.y19f{bottom:536.011500px;}
.y168{bottom:536.056500px;}
.y7c{bottom:538.647000px;}
.yc8{bottom:540.270000px;}
.y119{bottom:540.718500px;}
.y7{bottom:543.204000px;}
.y6f{bottom:544.635000px;}
.yc9{bottom:545.694000px;}
.y38{bottom:546.990000px;}
.y75{bottom:549.622500px;}
.y7b{bottom:550.603500px;}
.y19e{bottom:553.272000px;}
.y167{bottom:553.630500px;}
.y6e{bottom:556.590000px;}
.yc6{bottom:559.099500px;}
.y118{bottom:559.548000px;}
.y6{bottom:561.093000px;}
.y74{bottom:561.579000px;}
.y7a{bottom:562.558500px;}
.yc7{bottom:564.523500px;}
.y37{bottom:566.446500px;}
.y77{bottom:567.556500px;}
.y6d{bottom:568.546500px;}
.y19d{bottom:570.531000px;}
.y166{bottom:571.204500px;}
.y71{bottom:573.534000px;}
.y79{bottom:574.513500px;}
.yc5{bottom:577.929000px;}
.y117{bottom:578.377500px;}
.y5{bottom:578.980500px;}
.y76{bottom:579.511500px;}
.y6c{bottom:580.501500px;}
.y73{bottom:585.489000px;}
.y36{bottom:585.904500px;}
.y78{bottom:586.468500px;}
.y19c{bottom:587.791500px;}
.y165{bottom:588.778500px;}
.yc3{bottom:596.758500px;}
.y4{bottom:596.868000px;}
.y115{bottom:597.207000px;}
.y72{bottom:597.444000px;}
.y134{bottom:601.242000px;}
.yc4{bottom:602.182500px;}
.y116{bottom:602.631000px;}
.y19b{bottom:605.052000px;}
.y35{bottom:605.361000px;}
.y1{bottom:614.756964px;}
.y164{bottom:615.319500px;}
.yc2{bottom:615.588000px;}
.y114{bottom:616.036500px;}
.y69{bottom:618.993000px;}
.y19a{bottom:622.312500px;}
.y34{bottom:624.817500px;}
.y6b{bottom:624.970500px;}
.y68{bottom:630.948000px;}
.yc1{bottom:634.417500px;}
.y113{bottom:634.866000px;}
.y64{bottom:636.925500px;}
.y199{bottom:639.573000px;}
.y163{bottom:641.859000px;}
.y67{bottom:642.903000px;}
.y33{bottom:644.275500px;}
.y63{bottom:648.880500px;}
.yc0{bottom:653.247000px;}
.y112{bottom:653.695500px;}
.y66{bottom:654.858000px;}
.y198{bottom:656.833500px;}
.y162{bottom:659.434500px;}
.y6a{bottom:660.835500px;}
.y32{bottom:663.732000px;}
.y65{bottom:666.813000px;}
.ybf{bottom:672.076500px;}
.y111{bottom:672.525000px;}
.y197{bottom:674.094000px;}
.y161{bottom:677.008500px;}
.ya8{bottom:679.965000px;}
.y31{bottom:683.190000px;}
.y62{bottom:688.362000px;}
.ybe{bottom:690.906000px;}
.y110{bottom:691.354500px;}
.y160{bottom:694.582500px;}
.ya7{bottom:698.794500px;}
.y61{bottom:700.317000px;}
.y30{bottom:702.646500px;}
.y196{bottom:708.613500px;}
.ybd{bottom:709.735500px;}
.y10f{bottom:710.184000px;}
.ya6{bottom:717.624000px;}
.y15f{bottom:721.122000px;}
.y2f{bottom:722.103000px;}
.y195{bottom:725.874000px;}
.ybc{bottom:728.565000px;}
.y10e{bottom:729.013500px;}
.y60{bottom:733.461000px;}
.ya5{bottom:736.453500px;}
.y15e{bottom:738.696000px;}
.y2e{bottom:741.561000px;}
.y194{bottom:743.134500px;}
.ybb{bottom:747.394500px;}
.y10d{bottom:747.843000px;}
.y154{bottom:753.267000px;}
.y15d{bottom:756.271500px;}
.y193{bottom:760.395000px;}
.y2d{bottom:761.017500px;}
.y153{bottom:763.942500px;}
.yba{bottom:766.224000px;}
.y5f{bottom:766.671000px;}
.ya4{bottom:767.343000px;}
.y15c{bottom:773.845500px;}
.y192{bottom:777.655500px;}
.yb9{bottom:785.053500px;}
.y5e{bottom:785.500500px;}
.y15b{bottom:791.419500px;}
.y191{bottom:794.916000px;}
.y2c{bottom:799.603500px;}
.y5d{bottom:804.330000px;}
.yb8{bottom:808.365000px;}
.y15a{bottom:808.993500px;}
.y190{bottom:812.176500px;}
.y2b{bottom:820.083000px;}
.y5c{bottom:823.159500px;}
.y159{bottom:826.567500px;}
.y18f{bottom:829.437000px;}
.y2a{bottom:831.882000px;}
.y5b{bottom:841.989000px;}
.y158{bottom:844.141500px;}
.y18e{bottom:846.697500px;}
.y29{bottom:852.361500px;}
.y152{bottom:858.088500px;}
.y5a{bottom:860.818500px;}
.y18d{bottom:863.956500px;}
.y28{bottom:864.160500px;}
.y10c{bottom:866.244000px;}
.y27{bottom:868.501500px;}
.y59{bottom:879.648000px;}
.y26{bottom:880.300500px;}
.y18c{bottom:881.217000px;}
.y132{bottom:885.073500px;}
.y151{bottom:895.747500px;}
.y25{bottom:896.440500px;}
.y58{bottom:898.477500px;}
.y24{bottom:912.580500px;}
.y18b{bottom:915.738000px;}
.y57{bottom:917.307000px;}
.y18a{bottom:932.998500px;}
.y23{bottom:933.058500px;}
.y150{bottom:933.406500px;}
.y56{bottom:936.136500px;}
.y189{bottom:950.259000px;}
.y55{bottom:954.966000px;}
.y188{bottom:967.519500px;}
.y54{bottom:973.795500px;}
.y22{bottom:977.736000px;}
.y187{bottom:984.780000px;}
.y14f{bottom:989.895000px;}
.y53{bottom:992.625000px;}
.y21{bottom:996.565500px;}
.y10b{bottom:998.049000px;}
.y185{bottom:1002.039000px;}
.y186{bottom:1002.040500px;}
.y52{bottom:1011.454500px;}
.y184{bottom:1019.299500px;}
.y51{bottom:1030.284000px;}
.y20{bottom:1036.485000px;}
.y183{bottom:1036.560000px;}
.y50{bottom:1049.113500px;}
.y182{bottom:1053.820500px;}
.y14e{bottom:1054.537500px;}
.y1f{bottom:1064.728500px;}
.y14d{bottom:1065.213000px;}
.y4f{bottom:1067.943000px;}
.y181{bottom:1071.081000px;}
.y131{bottom:1073.367000px;}
.y4e{bottom:1086.772500px;}
.y180{bottom:1088.341500px;}
.y1e{bottom:1092.972000px;}
.y4d{bottom:1105.602000px;}
.y1c{bottom:1136.460000px;}
.y4c{bottom:1168.366500px;}
.h2{height:25.508090px;}
.hf{height:26.110157px;}
.h10{height:26.296208px;}
.hc{height:26.302208px;}
.h16{height:30.252344px;}
.h5{height:30.461558px;}
.h6{height:30.670772px;}
.h1d{height:31.526842px;}
.h1c{height:33.072749px;}
.h4{height:33.112997px;}
.h3{height:34.199443px;}
.he{height:34.813397px;}
.h1b{height:35.015558px;}
.h15{height:35.052500px;}
.h1a{height:38.202476px;}
.h11{height:38.896243px;}
.h12{height:39.165235px;}
.h2a{height:39.434227px;}
.h2b{height:39.489235px;}
.h26{height:41.482876px;}
.h25{height:41.723369px;}
.h13{height:43.217759px;}
.h14{height:43.516637px;}
.hd{height:43.660208px;}
.h9{height:43.815515px;}
.h29{height:49.117939px;}
.h23{height:50.908254px;}
.h1f{height:50.921596px;}
.h7{height:50.931027px;}
.h28{height:53.228842px;}
.h17{height:54.162344px;}
.h19{height:54.371558px;}
.hb{height:54.541601px;}
.h24{height:54.768749px;}
.h27{height:54.774749px;}
.h22{height:57.430371px;}
.h21{height:63.464502px;}
.h20{height:63.939146px;}
.ha{height:77.792486px;}
.h18{height:78.281558px;}
.h8{height:94.491000px;}
.h1e{height:130.184025px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:75.364879px;}
.w3{width:210.267043px;}
.w4{width:680.367773px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x62{left:-109.154378px;}
.x0{left:0.000000px;}
.x2{left:29.274117px;}
.x4{left:52.525500px;}
.x1{left:53.574073px;}
.x3{left:63.308592px;}
.x39{left:81.919500px;}
.xab{left:85.848000px;}
.x1c{left:87.093000px;}
.x1e{left:90.052500px;}
.x2a{left:91.240500px;}
.x3a{left:92.668500px;}
.x44{left:94.824000px;}
.x29{left:97.726500px;}
.x2b{left:99.243000px;}
.x43{left:100.707000px;}
.x28{left:102.061500px;}
.x3b{left:103.485000px;}
.x1d{left:105.456000px;}
.x1f{left:110.400000px;}
.x63{left:115.751123px;}
.x64{left:152.390806px;}
.xb3{left:171.183000px;}
.xb1{left:175.669500px;}
.xb6{left:182.710500px;}
.xb0{left:186.190500px;}
.xb7{left:200.320500px;}
.x2c{left:234.873000px;}
.x7{left:248.526000px;}
.x5{left:249.591000px;}
.x6{left:269.914500px;}
.x59{left:272.557500px;}
.x5d{left:275.757000px;}
.x5f{left:279.336000px;}
.xa{left:281.479500px;}
.x5e{left:282.564000px;}
.xf{left:287.830500px;}
.x10{left:295.302000px;}
.x83{left:299.116500px;}
.xa9{left:302.005500px;}
.x49{left:307.533000px;}
.x8{left:308.994000px;}
.x65{left:310.804500px;}
.xa8{left:316.506000px;}
.x9{left:319.918500px;}
.x81{left:320.971500px;}
.x5a{left:322.350000px;}
.x9e{left:325.899000px;}
.x82{left:328.443000px;}
.xb8{left:333.012000px;}
.x9f{left:334.183500px;}
.x6d{left:336.148500px;}
.x67{left:340.000500px;}
.xa0{left:349.950000px;}
.x78{left:353.808000px;}
.x6e{left:355.672500px;}
.x2f{left:359.886000px;}
.x38{left:364.834500px;}
.x55{left:366.016500px;}
.x17{left:370.081500px;}
.x31{left:371.398500px;}
.x30{left:372.454500px;}
.x2e{left:373.741500px;}
.xa7{left:376.731000px;}
.xa4{left:378.997500px;}
.x56{left:380.961000px;}
.x20{left:382.236000px;}
.x2d{left:383.637000px;}
.x18{left:390.664500px;}
.x3c{left:397.885500px;}
.xaa{left:402.642000px;}
.x19{left:405.607500px;}
.x1a{left:413.229000px;}
.x80{left:417.889500px;}
.x60{left:422.101500px;}
.x13{left:423.123000px;}
.x46{left:425.401500px;}
.x1b{left:428.173500px;}
.x14{left:430.594500px;}
.x15{left:434.296500px;}
.x57{left:435.406500px;}
.x61{left:437.044500px;}
.x47{left:440.344500px;}
.x16{left:441.768000px;}
.x73{left:447.370500px;}
.x6a{left:449.967000px;}
.x8b{left:460.410000px;}
.x74{left:462.313500px;}
.x9c{left:464.818500px;}
.x75{left:466.125000px;}
.xb4{left:473.059500px;}
.x9d{left:475.492500px;}
.x76{left:481.068000px;}
.x6f{left:482.406000px;}
.x72{left:485.698500px;}
.x53{left:491.632500px;}
.x87{left:495.652500px;}
.x5b{left:497.955000px;}
.x7b{left:500.305500px;}
.x70{left:501.930000px;}
.x5c{left:504.760500px;}
.x54{left:506.575500px;}
.x88{left:512.010000px;}
.x22{left:513.796500px;}
.x89{left:515.191500px;}
.x23{left:517.807500px;}
.x21{left:519.073500px;}
.x24{left:525.946500px;}
.x3d{left:529.570500px;}
.x3e{left:532.024500px;}
.x32{left:540.748500px;}
.xa6{left:544.071000px;}
.x7c{left:549.945000px;}
.x48{left:556.147500px;}
.x4a{left:561.891000px;}
.x51{left:565.278000px;}
.x4b{left:568.615500px;}
.x52{left:572.749500px;}
.x85{left:579.636000px;}
.x86{left:595.677000px;}
.x8a{left:628.543500px;}
.x4c{left:634.767000px;}
.x11{left:636.804000px;}
.x8e{left:640.203000px;}
.x4d{left:642.984000px;}
.x12{left:644.275500px;}
.x94{left:646.422000px;}
.x8f{left:649.594500px;}
.x95{left:652.848000px;}
.xa5{left:656.754000px;}
.x6b{left:662.677500px;}
.x71{left:665.116500px;}
.x99{left:666.586500px;}
.x37{left:668.115000px;}
.x25{left:670.212000px;}
.x40{left:671.284500px;}
.x9a{left:673.012500px;}
.xa2{left:674.857500px;}
.x41{left:681.190500px;}
.x36{left:684.490500px;}
.x27{left:685.809000px;}
.x26{left:688.623000px;}
.x33{left:692.604000px;}
.x4e{left:694.519500px;}
.x42{left:695.988000px;}
.x45{left:699.454500px;}
.x35{left:701.322000px;}
.x3f{left:703.194000px;}
.x34{left:705.339000px;}
.x6c{left:711.631500px;}
.xa1{left:719.148000px;}
.xa3{left:720.597000px;}
.x68{left:721.804500px;}
.xbb{left:725.119500px;}
.xac{left:728.445000px;}
.x79{left:729.660000px;}
.xba{left:732.091500px;}
.x69{left:736.747500px;}
.x7a{left:743.296500px;}
.xb9{left:746.784000px;}
.xb2{left:748.326000px;}
.x8c{left:750.699000px;}
.xbc{left:752.019000px;}
.xad{left:755.343000px;}
.x90{left:756.651000px;}
.x4f{left:758.803500px;}
.x8d{left:762.817500px;}
.x50{left:767.022000px;}
.xaf{left:768.801000px;}
.x84{left:775.518000px;}
.x7d{left:778.336500px;}
.x7e{left:782.842500px;}
.x9b{left:784.690500px;}
.x91{left:786.999000px;}
.xb5{left:790.017000px;}
.x92{left:791.503500px;}
.x77{left:799.291500px;}
.x93{left:800.959500px;}
.x7f{left:805.756500px;}
.x96{left:808.504500px;}
.xae{left:810.325500px;}
.xb{left:813.576000px;}
.x66{left:817.101000px;}
.xc{left:821.047500px;}
.x97{left:822.100500px;}
.xd{left:824.727000px;}
.x58{left:828.222000px;}
.xe{left:832.200000px;}
.x98{left:837.867000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:4.048000pt;}
.v5{vertical-align:15.441869pt;}
.v1{vertical-align:19.285333pt;}
.v3{vertical-align:21.253333pt;}
.ls37{letter-spacing:-1.382760pt;}
.ls34{letter-spacing:-0.516230pt;}
.ls36{letter-spacing:-0.478400pt;}
.ls39{letter-spacing:-0.233533pt;}
.ls30{letter-spacing:-0.141349pt;}
.ls2e{letter-spacing:-0.135203pt;}
.ls2d{letter-spacing:-0.122912pt;}
.ls35{letter-spacing:-0.110621pt;}
.ls31{letter-spacing:-0.110400pt;}
.ls27{letter-spacing:-0.092994pt;}
.ls33{letter-spacing:-0.092184pt;}
.ls38{letter-spacing:-0.073747pt;}
.ls2c{letter-spacing:-0.049165pt;}
.ls32{letter-spacing:-0.043019pt;}
.ls2b{letter-spacing:-0.030728pt;}
.ls29{letter-spacing:-0.018437pt;}
.ls28{letter-spacing:-0.014683pt;}
.ls2f{letter-spacing:-0.012291pt;}
.ls2a{letter-spacing:-0.006146pt;}
.ls10{letter-spacing:0.000000pt;}
.ls4c{letter-spacing:0.000503pt;}
.ls47{letter-spacing:0.000504pt;}
.ls12{letter-spacing:0.000533pt;}
.ls4f{letter-spacing:0.000711pt;}
.ls5d{letter-spacing:0.000751pt;}
.ls51{letter-spacing:0.000921pt;}
.ls60{letter-spacing:0.001026pt;}
.lsc{letter-spacing:0.001398pt;}
.ls58{letter-spacing:0.001505pt;}
.ls8{letter-spacing:0.001718pt;}
.ls7{letter-spacing:0.001735pt;}
.ls5e{letter-spacing:0.002018pt;}
.ls4a{letter-spacing:0.002212pt;}
.ls5b{letter-spacing:0.002262pt;}
.ls6{letter-spacing:0.003100pt;}
.ls48{letter-spacing:0.003230pt;}
.ls49{letter-spacing:0.003335pt;}
.ls5c{letter-spacing:0.003430pt;}
.lsa{letter-spacing:0.004100pt;}
.ls13{letter-spacing:0.004267pt;}
.ls19{letter-spacing:0.006146pt;}
.ls1a{letter-spacing:0.012291pt;}
.ls1b{letter-spacing:0.018437pt;}
.ls1d{letter-spacing:0.024582pt;}
.ls1f{letter-spacing:0.030728pt;}
.ls23{letter-spacing:0.036874pt;}
.ls1e{letter-spacing:0.043019pt;}
.ls14{letter-spacing:0.048944pt;}
.ls22{letter-spacing:0.049165pt;}
.ls24{letter-spacing:0.055310pt;}
.ls25{letter-spacing:0.061456pt;}
.ls1c{letter-spacing:0.067602pt;}
.ls18{letter-spacing:0.079893pt;}
.ls17{letter-spacing:0.098330pt;}
.ls26{letter-spacing:0.104475pt;}
.ls21{letter-spacing:0.122912pt;}
.ls20{letter-spacing:0.141349pt;}
.ls16{letter-spacing:0.171304pt;}
.ls15{letter-spacing:0.185987pt;}
.ls3b{letter-spacing:0.482502pt;}
.ls3a{letter-spacing:0.487835pt;}
.ls3d{letter-spacing:0.640696pt;}
.ls43{letter-spacing:0.713373pt;}
.ls45{letter-spacing:0.716350pt;}
.ls42{letter-spacing:0.717051pt;}
.ls44{letter-spacing:0.717260pt;}
.ls3f{letter-spacing:0.717312pt;}
.ls41{letter-spacing:0.717366pt;}
.ls40{letter-spacing:0.718601pt;}
.ls11{letter-spacing:0.797008pt;}
.lsf{letter-spacing:1.133683pt;}
.ls0{letter-spacing:1.654338pt;}
.ls2{letter-spacing:2.657067pt;}
.ls3e{letter-spacing:3.163733pt;}
.ls1{letter-spacing:9.298933pt;}
.lse{letter-spacing:10.626533pt;}
.ls9{letter-spacing:10.629067pt;}
.lsb{letter-spacing:10.817004pt;}
.ls53{letter-spacing:10.847521pt;}
.ls57{letter-spacing:11.821483pt;}
.ls59{letter-spacing:11.877968pt;}
.ls4d{letter-spacing:11.954133pt;}
.ls5a{letter-spacing:11.956053pt;}
.ls50{letter-spacing:11.959467pt;}
.ls4b{letter-spacing:11.997508pt;}
.ls52{letter-spacing:12.050176pt;}
.ls56{letter-spacing:12.055531pt;}
.ls54{letter-spacing:12.115118pt;}
.ls61{letter-spacing:12.131697pt;}
.ls4e{letter-spacing:12.274865pt;}
.ls55{letter-spacing:12.551990pt;}
.ls46{letter-spacing:12.804885pt;}
.ls3c{letter-spacing:15.942400pt;}
.ls5f{letter-spacing:17.869637pt;}
.ls3{letter-spacing:51.035733pt;}
.ls5{letter-spacing:55.787733pt;}
.lsd{letter-spacing:57.174803pt;}
.ls4{letter-spacing:64.321067pt;}
.ws60{word-spacing:-36.800000pt;}
.wsca{word-spacing:-13.283467pt;}
.wsec{word-spacing:-12.672512pt;}
.ws5f{word-spacing:-12.421987pt;}
.ws4b{word-spacing:-11.955200pt;}
.ws11{word-spacing:-10.626800pt;}
.wsf{word-spacing:-10.095467pt;}
.ws4{word-spacing:-9.298400pt;}
.ws61{word-spacing:-9.200000pt;}
.ws62{word-spacing:-9.089600pt;}
.ws63{word-spacing:-8.721600pt;}
.ws7f{word-spacing:-3.595176pt;}
.ws7e{word-spacing:-3.539866pt;}
.ws44{word-spacing:-2.975497pt;}
.ws89{word-spacing:-2.851558pt;}
.ws8a{word-spacing:-2.839267pt;}
.ws109{word-spacing:-2.677965pt;}
.ws41{word-spacing:-2.656693pt;}
.wsd8{word-spacing:-2.550426pt;}
.wscd{word-spacing:-2.497292pt;}
.ws132{word-spacing:-2.486682pt;}
.wsf0{word-spacing:-2.438861pt;}
.wsc7{word-spacing:-2.284756pt;}
.ws40{word-spacing:-2.125355pt;}
.ws6f{word-spacing:-2.120232pt;}
.wse3{word-spacing:-2.019087pt;}
.wsf8{word-spacing:-2.008474pt;}
.wsa4{word-spacing:-1.806806pt;}
.ws24{word-spacing:-1.806551pt;}
.ws3f{word-spacing:-1.700284pt;}
.ws1{word-spacing:-1.696326pt;}
.ws43{word-spacing:-1.647150pt;}
.wsc8{word-spacing:-1.540882pt;}
.ws105{word-spacing:-1.434624pt;}
.ws65{word-spacing:-1.434614pt;}
.ws66{word-spacing:-1.381481pt;}
.wsa6{word-spacing:-1.309013pt;}
.ws5c{word-spacing:-1.275213pt;}
.wsa5{word-spacing:-1.272139pt;}
.ws0{word-spacing:-1.175671pt;}
.ws8d{word-spacing:-1.136936pt;}
.ws107{word-spacing:-1.099878pt;}
.wsd7{word-spacing:-1.062677pt;}
.ws5{word-spacing:-1.041421pt;}
.ws79{word-spacing:-1.032461pt;}
.ws22{word-spacing:-1.009543pt;}
.wsfe{word-spacing:-1.004237pt;}
.ws78{word-spacing:-0.964859pt;}
.wseb{word-spacing:-0.956416pt;}
.ws59{word-spacing:-0.956410pt;}
.ws7{word-spacing:-0.929840pt;}
.wsd6{word-spacing:-0.903276pt;}
.wsbf{word-spacing:-0.850142pt;}
.ws2e{word-spacing:-0.797008pt;}
.wsf7{word-spacing:-0.765133pt;}
.ws1c{word-spacing:-0.717312pt;}
.ws35{word-spacing:-0.690740pt;}
.ws8e{word-spacing:-0.651434pt;}
.wsdf{word-spacing:-0.637606pt;}
.wsed{word-spacing:-0.621670pt;}
.wsdc{word-spacing:-0.584473pt;}
.wsee{word-spacing:-0.573850pt;}
.ws2b{word-spacing:-0.531339pt;}
.wsf6{word-spacing:-0.526029pt;}
.ws82{word-spacing:-0.510085pt;}
.wsb1{word-spacing:-0.478205pt;}
.ws111{word-spacing:-0.430387pt;}
.wsb8{word-spacing:-0.425071pt;}
.ws117{word-spacing:-0.382566pt;}
.ws7a{word-spacing:-0.344154pt;}
.ws9d{word-spacing:-0.331862pt;}
.wsce{word-spacing:-0.318803pt;}
.wsbd{word-spacing:-0.265669pt;}
.wsea{word-spacing:-0.239104pt;}
.ws2a{word-spacing:-0.212535pt;}
.ws17{word-spacing:-0.191283pt;}
.ws9c{word-spacing:-0.184368pt;}
.ws29{word-spacing:-0.159402pt;}
.ws1a{word-spacing:-0.143462pt;}
.ws46{word-spacing:-0.106268pt;}
.ws1b{word-spacing:-0.095642pt;}
.ws69{word-spacing:-0.078310pt;}
.ws23{word-spacing:-0.053134pt;}
.wse9{word-spacing:-0.047821pt;}
.wsa7{word-spacing:-0.043019pt;}
.ws10{word-spacing:-0.042507pt;}
.wsf5{word-spacing:-0.010871pt;}
.ws131{word-spacing:-0.010035pt;}
.wsfd{word-spacing:-0.008644pt;}
.ws6c{word-spacing:-0.006146pt;}
.ws125{word-spacing:-0.006042pt;}
.wsf2{word-spacing:-0.004898pt;}
.ws13a{word-spacing:-0.004702pt;}
.ws14{word-spacing:-0.004435pt;}
.ws11c{word-spacing:-0.003806pt;}
.ws2d{word-spacing:-0.003002pt;}
.ws123{word-spacing:-0.002074pt;}
.ws139{word-spacing:-0.001638pt;}
.ws3{word-spacing:0.000000pt;}
.ws99{word-spacing:0.030728pt;}
.ws1e{word-spacing:0.047821pt;}
.ws7d{word-spacing:0.049165pt;}
.ws27{word-spacing:0.053134pt;}
.ws94{word-spacing:0.055310pt;}
.ws16{word-spacing:0.095642pt;}
.ws2c{word-spacing:0.106268pt;}
.ws19{word-spacing:0.143462pt;}
.ws21{word-spacing:0.159402pt;}
.ws12{word-spacing:0.170029pt;}
.ws6b{word-spacing:0.182160pt;}
.ws18{word-spacing:0.191283pt;}
.ws13{word-spacing:0.212536pt;}
.ws7c{word-spacing:0.215096pt;}
.ws1f{word-spacing:0.239104pt;}
.ws28{word-spacing:0.265669pt;}
.ws100{word-spacing:0.286925pt;}
.wsf4{word-spacing:0.334746pt;}
.ws98{word-spacing:0.356445pt;}
.ws85{word-spacing:0.362590pt;}
.wsc6{word-spacing:0.371937pt;}
.ws48{word-spacing:0.382566pt;}
.wsb2{word-spacing:0.425071pt;}
.ws112{word-spacing:0.430387pt;}
.wse7{word-spacing:0.478205pt;}
.wsb4{word-spacing:0.531339pt;}
.ws114{word-spacing:0.573850pt;}
.ws52{word-spacing:0.584473pt;}
.ws47{word-spacing:0.621670pt;}
.ws45{word-spacing:0.637606pt;}
.ws102{word-spacing:0.669491pt;}
.ws49{word-spacing:0.717312pt;}
.ws67{word-spacing:0.743874pt;}
.ws97{word-spacing:0.768200pt;}
.ws86{word-spacing:0.786637pt;}
.wsd0{word-spacing:0.797008pt;}
.ws1d{word-spacing:0.812954pt;}
.ws73{word-spacing:0.817365pt;}
.ws72{word-spacing:0.835802pt;}
.wsbe{word-spacing:0.850142pt;}
.wsa9{word-spacing:0.878821pt;}
.ws6{word-spacing:0.892646pt;}
.wsd2{word-spacing:0.903276pt;}
.ws37{word-spacing:0.956410pt;}
.ws126{word-spacing:0.956416pt;}
.wsfa{word-spacing:1.004237pt;}
.ws58{word-spacing:1.009543pt;}
.ws26{word-spacing:1.062677pt;}
.wsae{word-spacing:1.136936pt;}
.wsaa{word-spacing:1.161518pt;}
.ws51{word-spacing:1.168945pt;}
.wse6{word-spacing:1.222079pt;}
.ws15{word-spacing:1.243341pt;}
.wsa8{word-spacing:1.247557pt;}
.ws30{word-spacing:1.328347pt;}
.wsf1{word-spacing:1.338982pt;}
.ws116{word-spacing:1.386803pt;}
.wsb6{word-spacing:1.434614pt;}
.wscc{word-spacing:1.487748pt;}
.ws84{word-spacing:1.517963pt;}
.ws80{word-spacing:1.530254pt;}
.wsdd{word-spacing:1.540882pt;}
.wsa2{word-spacing:1.554837pt;}
.wsaf{word-spacing:1.579419pt;}
.ws34{word-spacing:1.594016pt;}
.ws53{word-spacing:1.700284pt;}
.wsc1{word-spacing:1.753418pt;}
.ws55{word-spacing:1.806551pt;}
.ws75{word-spacing:1.929718pt;}
.ws74{word-spacing:1.960446pt;}
.wsc2{word-spacing:2.019087pt;}
.ws4c{word-spacing:2.072221pt;}
.ws5d{word-spacing:2.125355pt;}
.ws118{word-spacing:2.131472pt;}
.ws119{word-spacing:2.151936pt;}
.ws32{word-spacing:2.178489pt;}
.wsc5{word-spacing:2.231622pt;}
.ws2{word-spacing:2.232481pt;}
.ws7b{word-spacing:2.273872pt;}
.ws5a{word-spacing:2.284756pt;}
.wse1{word-spacing:2.337890pt;}
.wsdb{word-spacing:2.391024pt;}
.wsbc{word-spacing:2.497292pt;}
.ws5e{word-spacing:2.550426pt;}
.ws106{word-spacing:2.582323pt;}
.ws54{word-spacing:2.603559pt;}
.ws115{word-spacing:2.630144pt;}
.ws9e{word-spacing:2.648754pt;}
.wsd9{word-spacing:2.656693pt;}
.wse8{word-spacing:2.709827pt;}
.ws11a{word-spacing:2.725786pt;}
.wsf9{word-spacing:2.859409pt;}
.ws133{word-spacing:2.862071pt;}
.ws12a{word-spacing:2.862592pt;}
.ws11f{word-spacing:2.863189pt;}
.ws13b{word-spacing:2.863300pt;}
.ws122{word-spacing:2.864060pt;}
.ws128{word-spacing:2.864068pt;}
.ws10d{word-spacing:2.864282pt;}
.ws135{word-spacing:2.864384pt;}
.ws11e{word-spacing:2.865673pt;}
.ws10c{word-spacing:2.865681pt;}
.wsfc{word-spacing:2.866586pt;}
.ws11d{word-spacing:2.867149pt;}
.ws129{word-spacing:2.867977pt;}
.ws12c{word-spacing:2.868958pt;}
.ws68{word-spacing:2.869229pt;}
.wsf3{word-spacing:2.869248pt;}
.wse4{word-spacing:2.922363pt;}
.ws42{word-spacing:2.975497pt;}
.ws25{word-spacing:3.028630pt;}
.ws10a{word-spacing:3.060531pt;}
.wsef{word-spacing:3.108352pt;}
.wsd3{word-spacing:3.134898pt;}
.ws121{word-spacing:3.156173pt;}
.ws20{word-spacing:3.188032pt;}
.wsc0{word-spacing:3.294300pt;}
.ws101{word-spacing:3.299635pt;}
.wsb3{word-spacing:3.347434pt;}
.ws127{word-spacing:3.347456pt;}
.ws4e{word-spacing:3.400567pt;}
.wsb5{word-spacing:3.453701pt;}
.wsb7{word-spacing:3.506835pt;}
.ws108{word-spacing:3.538739pt;}
.ws4f{word-spacing:3.559969pt;}
.wsd1{word-spacing:3.666237pt;}
.ws95{word-spacing:3.718088pt;}
.ws96{word-spacing:3.767253pt;}
.ws50{word-spacing:3.772505pt;}
.ws83{word-spacing:3.779544pt;}
.wsd4{word-spacing:3.878772pt;}
.wsde{word-spacing:3.931906pt;}
.wsba{word-spacing:3.985040pt;}
.ws5b{word-spacing:4.038174pt;}
.ws91{word-spacing:4.074533pt;}
.ws90{word-spacing:4.092970pt;}
.wsd5{word-spacing:4.144442pt;}
.wse0{word-spacing:4.197575pt;}
.wsd{word-spacing:4.240070pt;}
.wsbb{word-spacing:4.250709pt;}
.wse{word-spacing:4.314458pt;}
.ws136{word-spacing:4.351693pt;}
.wsc4{word-spacing:4.356977pt;}
.ws70{word-spacing:4.443269pt;}
.ws4a{word-spacing:4.447334pt;}
.ws93{word-spacing:4.449414pt;}
.ws33{word-spacing:4.463245pt;}
.ws71{word-spacing:4.529307pt;}
.ws92{word-spacing:4.541598pt;}
.ws113{word-spacing:4.542976pt;}
.ws134{word-spacing:4.638618pt;}
.wsb0{word-spacing:4.675780pt;}
.ws137{word-spacing:4.686438pt;}
.wsda{word-spacing:4.728914pt;}
.wse5{word-spacing:4.782048pt;}
.ws8b{word-spacing:4.830442pt;}
.ws56{word-spacing:4.888316pt;}
.ws36{word-spacing:5.047717pt;}
.wsc9{word-spacing:5.100851pt;}
.wsfb{word-spacing:5.116826pt;}
.ws10f{word-spacing:5.308109pt;}
.ws10e{word-spacing:5.310139pt;}
.ws8c{word-spacing:5.383546pt;}
.ws64{word-spacing:5.525922pt;}
.wsac{word-spacing:5.574059pt;}
.ws4d{word-spacing:5.685324pt;}
.ws2f{word-spacing:5.844725pt;}
.ws6e{word-spacing:5.893630pt;}
.ws6d{word-spacing:5.899776pt;}
.ws138{word-spacing:5.929779pt;}
.wsa3{word-spacing:5.936650pt;}
.ws87{word-spacing:5.967378pt;}
.ws88{word-spacing:5.973523pt;}
.ws124{word-spacing:6.073242pt;}
.ws31{word-spacing:6.269796pt;}
.ws9f{word-spacing:6.286949pt;}
.wsab{word-spacing:6.299240pt;}
.ws120{word-spacing:6.312346pt;}
.wsa1{word-spacing:6.317677pt;}
.ws9a{word-spacing:6.354550pt;}
.ws9b{word-spacing:6.391424pt;}
.wsc3{word-spacing:6.588599pt;}
.wscf{word-spacing:6.641733pt;}
.ws110{word-spacing:6.694912pt;}
.wsb9{word-spacing:6.748001pt;}
.wsa0{word-spacing:6.864635pt;}
.wsb{word-spacing:6.918010pt;}
.wse2{word-spacing:7.013670pt;}
.ws57{word-spacing:7.066804pt;}
.wscb{word-spacing:7.173072pt;}
.ws104{word-spacing:7.268762pt;}
.ws76{word-spacing:7.399302pt;}
.wsad{word-spacing:7.417739pt;}
.ws77{word-spacing:7.473050pt;}
.ws81{word-spacing:7.749602pt;}
.wsff{word-spacing:8.607744pt;}
.ws8f{word-spacing:8.898829pt;}
.ws103{word-spacing:9.133773pt;}
.ws12b{word-spacing:9.564160pt;}
.ws10b{word-spacing:9.659802pt;}
.ws12f{word-spacing:10.759680pt;}
.ws9{word-spacing:10.823338pt;}
.ws130{word-spacing:10.950963pt;}
.ws6a{word-spacing:11.878709pt;}
.ws11b{word-spacing:11.907379pt;}
.ws12e{word-spacing:13.485466pt;}
.wsa{word-spacing:14.319536pt;}
.ws12d{word-spacing:22.714880pt;}
.wsc{word-spacing:23.208806pt;}
.ws8{word-spacing:23.858002pt;}
.ws3c{word-spacing:176.932967pt;}
.ws3e{word-spacing:234.803197pt;}
.ws3d{word-spacing:275.195446pt;}
.ws3a{word-spacing:306.131859pt;}
.ws39{word-spacing:317.600171pt;}
.ws38{word-spacing:355.934885pt;}
.ws3b{word-spacing:374.845981pt;}
._2b{margin-left:-17.969974pt;}
._26{margin-left:-6.847542pt;}
._a{margin-left:-5.897859pt;}
._2{margin-left:-4.998466pt;}
._3{margin-left:-4.091296pt;}
._6{margin-left:-2.620677pt;}
._0{margin-left:-1.175671pt;}
._1{width:0.969929pt;}
._7{width:2.045648pt;}
._9{width:3.267842pt;}
._27{width:10.855322pt;}
._4{width:12.105045pt;}
._c{width:13.045612pt;}
._b{width:14.409962pt;}
._e{width:15.574949pt;}
._d{width:16.737280pt;}
._1c{width:17.799845pt;}
._20{width:18.809389pt;}
._13{width:19.712665pt;}
._11{width:20.881610pt;}
._24{width:22.103689pt;}
._5{width:23.063232pt;}
._1e{width:24.707248pt;}
._1a{width:25.929327pt;}
._8{width:27.188522pt;}
._23{width:28.532886pt;}
._12{width:29.496022pt;}
._1d{width:30.877503pt;}
._21{width:32.252257pt;}
._1b{width:33.952541pt;}
._22{width:37.147299pt;}
._29{width:38.447923pt;}
._2a{width:39.524303pt;}
._28{width:54.993920pt;}
._14{width:276.385642pt;}
._19{width:290.562335pt;}
._18{width:299.319569pt;}
._15{width:323.584320pt;}
._17{width:384.135501pt;}
._16{width:481.374095pt;}
._f{width:842.335915pt;}
._1f{width:2184.952316pt;}
._25{width:2244.234870pt;}
._10{width:2265.488204pt;}
.fs7{font-size:31.880533pt;}
.fsf{font-size:36.800000pt;}
.fs2{font-size:37.193600pt;}
.fs1{font-size:37.276537pt;}
.fs6{font-size:40.381867pt;}
.fs0{font-size:41.988267pt;}
.fsa{font-size:42.077867pt;}
.fs8{font-size:42.507200pt;}
.fs9{font-size:47.820800pt;}
.fsb{font-size:48.944000pt;}
.fs4{font-size:53.133867pt;}
.fse{font-size:55.200000pt;}
.fs10{font-size:55.365867pt;}
.fsc{font-size:61.456000pt;}
.fsd{font-size:84.640000pt;}
.fs5{font-size:95.641600pt;}
.fs3{font-size:134.387200pt;}
.yd1{bottom:-995.025540pt;}
.y100{bottom:-920.870320pt;}
.yff{bottom:-901.275074pt;}
.yfe{bottom:-881.587645pt;}
.yfd{bottom:-861.900215pt;}
.yfc{bottom:-842.304970pt;}
.yfb{bottom:-822.616786pt;}
.yfa{bottom:-803.011911pt;}
.yf9{bottom:-783.324481pt;}
.yf8{bottom:-763.637051pt;}
.yf7{bottom:-744.041806pt;}
.yf6{bottom:-724.354376pt;}
.yf5{bottom:-704.666947pt;}
.yf4{bottom:-685.071701pt;}
.yf3{bottom:-665.384271pt;}
.yf2{bottom:-645.789026pt;}
.yf1{bottom:-626.101596pt;}
.yf0{bottom:-606.414167pt;}
.yef{bottom:-586.818921pt;}
.yee{bottom:-567.131491pt;}
.yed{bottom:-547.536246pt;}
.yec{bottom:-527.848816pt;}
.yeb{bottom:-508.156995pt;}
.yea{bottom:-488.561750pt;}
.ye9{bottom:-468.874320pt;}
.ye8{bottom:-449.279074pt;}
.ye7{bottom:-429.591645pt;}
.ye6{bottom:-409.904215pt;}
.ye5{bottom:-390.308970pt;}
.ye4{bottom:-370.618007pt;}
.ye3{bottom:-350.930578pt;}
.ye2{bottom:-331.333796pt;}
.ye1{bottom:-311.646366pt;}
.ye0{bottom:-292.051120pt;}
.ydf{bottom:-272.363691pt;}
.yde{bottom:-252.676261pt;}
.ydd{bottom:-233.079479pt;}
.ydc{bottom:-213.392050pt;}
.ydb{bottom:-193.795268pt;}
.yda{bottom:-174.107838pt;}
.yd9{bottom:-154.420408pt;}
.yd8{bottom:-134.823626pt;}
.yd7{bottom:-115.136197pt;}
.yd6{bottom:-95.540951pt;}
.yd5{bottom:-71.253540pt;}
.yd4{bottom:-33.625540pt;}
.yd3{bottom:-10.625540pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.044747pt;}
.y2{bottom:12.578910pt;}
.y1d{bottom:14.386906pt;}
.y4b{bottom:28.346667pt;}
.yd2{bottom:50.922460pt;}
.yb7{bottom:81.480000pt;}
.y10a{bottom:86.377333pt;}
.ya3{bottom:89.060000pt;}
.y1b6{bottom:92.892000pt;}
.y1b{bottom:93.018667pt;}
.y17f{bottom:94.884000pt;}
.y14b{bottom:95.282667pt;}
.y130{bottom:95.681333pt;}
.yb6{bottom:98.217333pt;}
.y14c{bottom:100.104000pt;}
.y109{bottom:103.114667pt;}
.ya2{bottom:105.797333pt;}
.y1b5{bottom:108.233333pt;}
.y1a{bottom:108.920000pt;}
.y17e{bottom:110.226667pt;}
.y14a{bottom:112.020000pt;}
.y12f{bottom:112.418667pt;}
.y4a{bottom:113.280000pt;}
.yb5{bottom:114.954667pt;}
.y133{bottom:117.240000pt;}
.y108{bottom:119.852000pt;}
.ya1{bottom:122.534667pt;}
.y1b4{bottom:123.576000pt;}
.y19{bottom:124.820000pt;}
.y17d{bottom:125.569333pt;}
.y149{bottom:128.757333pt;}
.y12e{bottom:129.156000pt;}
.y49{bottom:130.017333pt;}
.yb4{bottom:131.692000pt;}
.y107{bottom:136.589333pt;}
.y1b3{bottom:138.918667pt;}
.ya0{bottom:139.272000pt;}
.y18{bottom:140.720000pt;}
.y17c{bottom:140.912000pt;}
.y148{bottom:145.494667pt;}
.y12d{bottom:145.893333pt;}
.y48{bottom:146.754667pt;}
.yb3{bottom:148.429333pt;}
.y106{bottom:153.326667pt;}
.y1b2{bottom:154.261333pt;}
.y9f{bottom:156.009333pt;}
.y17b{bottom:156.254667pt;}
.y17{bottom:156.621333pt;}
.y147{bottom:162.232000pt;}
.y12c{bottom:162.630667pt;}
.y47{bottom:163.492000pt;}
.yd0{bottom:164.266598pt;}
.yb2{bottom:165.166667pt;}
.y1b1{bottom:169.604000pt;}
.y105{bottom:170.064000pt;}
.y17a{bottom:171.597333pt;}
.y16{bottom:172.521333pt;}
.y9e{bottom:172.746667pt;}
.ycf{bottom:174.110460pt;}
.y146{bottom:178.969333pt;}
.y12b{bottom:179.368000pt;}
.y46{bottom:180.229333pt;}
.yb1{bottom:181.904000pt;}
.y1b0{bottom:184.946667pt;}
.y104{bottom:186.801333pt;}
.y179{bottom:186.940000pt;}
.y15{bottom:188.421333pt;}
.y9d{bottom:189.484000pt;}
.y145{bottom:195.706667pt;}
.y12a{bottom:196.105333pt;}
.y45{bottom:196.966667pt;}
.yb0{bottom:198.641333pt;}
.y157{bottom:199.690667pt;}
.y1af{bottom:200.289333pt;}
.y178{bottom:202.282667pt;}
.y103{bottom:203.538667pt;}
.y14{bottom:204.322667pt;}
.y9c{bottom:206.221333pt;}
.y144{bottom:212.444000pt;}
.y129{bottom:212.841333pt;}
.y44{bottom:213.704000pt;}
.yaf{bottom:215.378667pt;}
.y1ae{bottom:215.632000pt;}
.y177{bottom:217.624000pt;}
.y9b{bottom:222.958667pt;}
.y102{bottom:224.261333pt;}
.y143{bottom:229.181333pt;}
.y128{bottom:229.578667pt;}
.y43{bottom:230.441333pt;}
.y1ad{bottom:230.974667pt;}
.yae{bottom:232.116000pt;}
.y176{bottom:232.966667pt;}
.y9a{bottom:239.696000pt;}
.y142{bottom:243.492000pt;}
.y141{bottom:245.918667pt;}
.y127{bottom:246.316000pt;}
.y42{bottom:247.178667pt;}
.y175{bottom:248.309333pt;}
.yad{bottom:248.853333pt;}
.y101{bottom:253.964000pt;}
.y98{bottom:256.433333pt;}
.y99{bottom:261.254667pt;}
.y1ac{bottom:261.658667pt;}
.y140{bottom:262.656000pt;}
.y126{bottom:263.053333pt;}
.y174{bottom:263.652000pt;}
.y41{bottom:263.916000pt;}
.yac{bottom:265.590667pt;}
.y13{bottom:266.804000pt;}
.y97{bottom:273.170667pt;}
.yce{bottom:276.558667pt;}
.y1ab{bottom:277.001333pt;}
.y173{bottom:278.994667pt;}
.y13e{bottom:279.393333pt;}
.y125{bottom:279.790667pt;}
.y40{bottom:280.653333pt;}
.yab{bottom:282.328000pt;}
.y12{bottom:282.705333pt;}
.y13f{bottom:284.214667pt;}
.y1aa{bottom:292.344000pt;}
.y96{bottom:293.893333pt;}
.y172{bottom:294.337333pt;}
.y13d{bottom:296.129333pt;}
.y124{bottom:296.528000pt;}
.y3f{bottom:297.390667pt;}
.y11{bottom:298.605333pt;}
.y1a9{bottom:307.686667pt;}
.yaa{bottom:309.785333pt;}
.y13c{bottom:310.441333pt;}
.y95{bottom:311.825333pt;}
.y13b{bottom:312.866667pt;}
.y123{bottom:313.265333pt;}
.y171{bottom:313.665333pt;}
.y3e{bottom:314.128000pt;}
.y10{bottom:314.505333pt;}
.y1a8{bottom:323.029333pt;}
.ya9{bottom:326.881333pt;}
.y13a{bottom:329.604000pt;}
.y122{bottom:330.002667pt;}
.y3d{bottom:330.865333pt;}
.y1a7{bottom:338.372000pt;}
.yf{bottom:338.376000pt;}
.y94{bottom:342.053333pt;}
.y170{bottom:343.552000pt;}
.y139{bottom:343.914667pt;}
.y138{bottom:346.341333pt;}
.y121{bottom:346.740000pt;}
.y3c{bottom:351.588000pt;}
.y1a6{bottom:353.714667pt;}
.ye{bottom:354.277333pt;}
.y16f{bottom:359.174667pt;}
.y8f{bottom:359.261333pt;}
.y92{bottom:359.814667pt;}
.y93{bottom:360.902667pt;}
.y137{bottom:363.078667pt;}
.y120{bottom:363.477333pt;}
.y1a5{bottom:369.056000pt;}
.y8e{bottom:369.888000pt;}
.yd{bottom:370.177333pt;}
.y91{bottom:370.441333pt;}
.y16e{bottom:374.796000pt;}
.y136{bottom:379.816000pt;}
.y90{bottom:380.056000pt;}
.y11f{bottom:380.214667pt;}
.y8d{bottom:380.514667pt;}
.y1a4{bottom:384.398667pt;}
.yc{bottom:395.376000pt;}
.y135{bottom:396.553333pt;}
.y11e{bottom:396.952000pt;}
.y8b{bottom:397.982667pt;}
.y16d{bottom:398.386667pt;}
.y8c{bottom:399.210667pt;}
.y1a3{bottom:399.741333pt;}
.y83{bottom:403.305333pt;}
.y8a{bottom:408.609333pt;}
.ycd{bottom:413.290667pt;}
.y11d{bottom:413.689333pt;}
.y82{bottom:413.932000pt;}
.y16c{bottom:414.008000pt;}
.y1a2{bottom:415.084000pt;}
.y86{bottom:418.365333pt;}
.y3b{bottom:418.388000pt;}
.y156{bottom:418.510667pt;}
.y89{bottom:419.236000pt;}
.yb{bottom:419.246667pt;}
.y81{bottom:424.558667pt;}
.y84{bottom:428.992000pt;}
.y16b{bottom:429.630667pt;}
.y88{bottom:429.862667pt;}
.ycc{bottom:430.028000pt;}
.y11c{bottom:430.426667pt;}
.ya{bottom:435.146667pt;}
.y80{bottom:435.185333pt;}
.y3a{bottom:435.682667pt;}
.y85{bottom:439.618667pt;}
.y87{bottom:440.489333pt;}
.y16a{bottom:445.252000pt;}
.y1a1{bottom:445.769333pt;}
.ycb{bottom:446.765333pt;}
.y11b{bottom:447.164000pt;}
.y9{bottom:451.048000pt;}
.y155{bottom:451.985333pt;}
.y7f{bottom:458.773333pt;}
.y169{bottom:460.873333pt;}
.y1a0{bottom:461.112000pt;}
.yca{bottom:463.502667pt;}
.y11a{bottom:463.901333pt;}
.y7e{bottom:464.086667pt;}
.y8{bottom:466.948000pt;}
.y7d{bottom:468.170667pt;}
.y39{bottom:468.918667pt;}
.y70{bottom:473.493333pt;}
.y19f{bottom:476.454667pt;}
.y168{bottom:476.494667pt;}
.y7c{bottom:478.797333pt;}
.yc8{bottom:480.240000pt;}
.y119{bottom:480.638667pt;}
.y7{bottom:482.848000pt;}
.y6f{bottom:484.120000pt;}
.yc9{bottom:485.061333pt;}
.y38{bottom:486.213333pt;}
.y75{bottom:488.553333pt;}
.y7b{bottom:489.425333pt;}
.y19e{bottom:491.797333pt;}
.y167{bottom:492.116000pt;}
.y6e{bottom:494.746667pt;}
.yc6{bottom:496.977333pt;}
.y118{bottom:497.376000pt;}
.y6{bottom:498.749333pt;}
.y74{bottom:499.181333pt;}
.y7a{bottom:500.052000pt;}
.yc7{bottom:501.798667pt;}
.y37{bottom:503.508000pt;}
.y77{bottom:504.494667pt;}
.y6d{bottom:505.374667pt;}
.y19d{bottom:507.138667pt;}
.y166{bottom:507.737333pt;}
.y71{bottom:509.808000pt;}
.y79{bottom:510.678667pt;}
.yc5{bottom:513.714667pt;}
.y117{bottom:514.113333pt;}
.y5{bottom:514.649333pt;}
.y76{bottom:515.121333pt;}
.y6c{bottom:516.001333pt;}
.y73{bottom:520.434667pt;}
.y36{bottom:520.804000pt;}
.y78{bottom:521.305333pt;}
.y19c{bottom:522.481333pt;}
.y165{bottom:523.358667pt;}
.yc3{bottom:530.452000pt;}
.y4{bottom:530.549333pt;}
.y115{bottom:530.850667pt;}
.y72{bottom:531.061333pt;}
.y134{bottom:534.437333pt;}
.yc4{bottom:535.273333pt;}
.y116{bottom:535.672000pt;}
.y19b{bottom:537.824000pt;}
.y35{bottom:538.098667pt;}
.y1{bottom:546.450634pt;}
.y164{bottom:546.950667pt;}
.yc2{bottom:547.189333pt;}
.y114{bottom:547.588000pt;}
.y69{bottom:550.216000pt;}
.y19a{bottom:553.166667pt;}
.y34{bottom:555.393333pt;}
.y6b{bottom:555.529333pt;}
.y68{bottom:560.842667pt;}
.yc1{bottom:563.926667pt;}
.y113{bottom:564.325333pt;}
.y64{bottom:566.156000pt;}
.y199{bottom:568.509333pt;}
.y163{bottom:570.541333pt;}
.y67{bottom:571.469333pt;}
.y33{bottom:572.689333pt;}
.y63{bottom:576.782667pt;}
.yc0{bottom:580.664000pt;}
.y112{bottom:581.062667pt;}
.y66{bottom:582.096000pt;}
.y198{bottom:583.852000pt;}
.y162{bottom:586.164000pt;}
.y6a{bottom:587.409333pt;}
.y32{bottom:589.984000pt;}
.y65{bottom:592.722667pt;}
.ybf{bottom:597.401333pt;}
.y111{bottom:597.800000pt;}
.y197{bottom:599.194667pt;}
.y161{bottom:601.785333pt;}
.ya8{bottom:604.413333pt;}
.y31{bottom:607.280000pt;}
.y62{bottom:611.877333pt;}
.ybe{bottom:614.138667pt;}
.y110{bottom:614.537333pt;}
.y160{bottom:617.406667pt;}
.ya7{bottom:621.150667pt;}
.y61{bottom:622.504000pt;}
.y30{bottom:624.574667pt;}
.y196{bottom:629.878667pt;}
.ybd{bottom:630.876000pt;}
.y10f{bottom:631.274667pt;}
.ya6{bottom:637.888000pt;}
.y15f{bottom:640.997333pt;}
.y2f{bottom:641.869333pt;}
.y195{bottom:645.221333pt;}
.ybc{bottom:647.613333pt;}
.y10e{bottom:648.012000pt;}
.y60{bottom:651.965333pt;}
.ya5{bottom:654.625333pt;}
.y15e{bottom:656.618667pt;}
.y2e{bottom:659.165333pt;}
.y194{bottom:660.564000pt;}
.ybb{bottom:664.350667pt;}
.y10d{bottom:664.749333pt;}
.y154{bottom:669.570667pt;}
.y15d{bottom:672.241333pt;}
.y193{bottom:675.906667pt;}
.y2d{bottom:676.460000pt;}
.y153{bottom:679.060000pt;}
.yba{bottom:681.088000pt;}
.y5f{bottom:681.485333pt;}
.ya4{bottom:682.082667pt;}
.y15c{bottom:687.862667pt;}
.y192{bottom:691.249333pt;}
.yb9{bottom:697.825333pt;}
.y5e{bottom:698.222667pt;}
.y15b{bottom:703.484000pt;}
.y191{bottom:706.592000pt;}
.y2c{bottom:710.758667pt;}
.y5d{bottom:714.960000pt;}
.yb8{bottom:718.546667pt;}
.y15a{bottom:719.105333pt;}
.y190{bottom:721.934667pt;}
.y2b{bottom:728.962667pt;}
.y5c{bottom:731.697333pt;}
.y159{bottom:734.726667pt;}
.y18f{bottom:737.277333pt;}
.y2a{bottom:739.450667pt;}
.y5b{bottom:748.434667pt;}
.y158{bottom:750.348000pt;}
.y18e{bottom:752.620000pt;}
.y29{bottom:757.654667pt;}
.y152{bottom:762.745333pt;}
.y5a{bottom:765.172000pt;}
.y18d{bottom:767.961333pt;}
.y28{bottom:768.142667pt;}
.y10c{bottom:769.994667pt;}
.y27{bottom:772.001333pt;}
.y59{bottom:781.909333pt;}
.y26{bottom:782.489333pt;}
.y18c{bottom:783.304000pt;}
.y132{bottom:786.732000pt;}
.y151{bottom:796.220000pt;}
.y25{bottom:796.836000pt;}
.y58{bottom:798.646667pt;}
.y24{bottom:811.182667pt;}
.y18b{bottom:813.989333pt;}
.y57{bottom:815.384000pt;}
.y18a{bottom:829.332000pt;}
.y23{bottom:829.385333pt;}
.y150{bottom:829.694667pt;}
.y56{bottom:832.121333pt;}
.y189{bottom:844.674667pt;}
.y55{bottom:848.858667pt;}
.y188{bottom:860.017333pt;}
.y54{bottom:865.596000pt;}
.y22{bottom:869.098667pt;}
.y187{bottom:875.360000pt;}
.y14f{bottom:879.906667pt;}
.y53{bottom:882.333333pt;}
.y21{bottom:885.836000pt;}
.y10b{bottom:887.154667pt;}
.y185{bottom:890.701333pt;}
.y186{bottom:890.702667pt;}
.y52{bottom:899.070667pt;}
.y184{bottom:906.044000pt;}
.y51{bottom:915.808000pt;}
.y20{bottom:921.320000pt;}
.y183{bottom:921.386667pt;}
.y50{bottom:932.545333pt;}
.y182{bottom:936.729333pt;}
.y14e{bottom:937.366667pt;}
.y1f{bottom:946.425333pt;}
.y14d{bottom:946.856000pt;}
.y4f{bottom:949.282667pt;}
.y181{bottom:952.072000pt;}
.y131{bottom:954.104000pt;}
.y4e{bottom:966.020000pt;}
.y180{bottom:967.414667pt;}
.y1e{bottom:971.530667pt;}
.y4d{bottom:982.757333pt;}
.y1c{bottom:1010.186667pt;}
.y4c{bottom:1038.548000pt;}
.h2{height:22.673858pt;}
.hf{height:23.209028pt;}
.h10{height:23.374407pt;}
.hc{height:23.379740pt;}
.h16{height:26.890973pt;}
.h5{height:27.076941pt;}
.h6{height:27.262909pt;}
.h1d{height:28.023859pt;}
.h1c{height:29.397999pt;}
.h4{height:29.433775pt;}
.h3{height:30.399505pt;}
.he{height:30.945242pt;}
.h1b{height:31.124941pt;}
.h15{height:31.157778pt;}
.h1a{height:33.957757pt;}
.h11{height:34.574438pt;}
.h12{height:34.813542pt;}
.h2a{height:35.052646pt;}
.h2b{height:35.101542pt;}
.h26{height:36.873667pt;}
.h25{height:37.087439pt;}
.h13{height:38.415786pt;}
.h14{height:38.681455pt;}
.hd{height:38.809074pt;}
.h9{height:38.947124pt;}
.h29{height:43.660390pt;}
.h23{height:45.251781pt;}
.h1f{height:45.263641pt;}
.h7{height:45.272024pt;}
.h28{height:47.314526pt;}
.h17{height:48.144306pt;}
.h19{height:48.330274pt;}
.hb{height:48.481423pt;}
.h24{height:48.683332pt;}
.h27{height:48.688666pt;}
.h22{height:51.049219pt;}
.h21{height:56.412891pt;}
.h20{height:56.834797pt;}
.ha{height:69.148877pt;}
.h18{height:69.583607pt;}
.h8{height:83.992000pt;}
.h1e{height:115.719133pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:66.991004pt;}
.w3{width:186.904038pt;}
.w4{width:604.771353pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x62{left:-97.026113pt;}
.x0{left:0.000000pt;}
.x2{left:26.021437pt;}
.x4{left:46.689333pt;}
.x1{left:47.621398pt;}
.x3{left:56.274304pt;}
.x39{left:72.817333pt;}
.xab{left:76.309333pt;}
.x1c{left:77.416000pt;}
.x1e{left:80.046667pt;}
.x2a{left:81.102667pt;}
.x3a{left:82.372000pt;}
.x44{left:84.288000pt;}
.x29{left:86.868000pt;}
.x2b{left:88.216000pt;}
.x43{left:89.517333pt;}
.x28{left:90.721333pt;}
.x3b{left:91.986667pt;}
.x1d{left:93.738667pt;}
.x1f{left:98.133333pt;}
.x63{left:102.889887pt;}
.x64{left:135.458494pt;}
.xb3{left:152.162667pt;}
.xb1{left:156.150667pt;}
.xb6{left:162.409333pt;}
.xb0{left:165.502667pt;}
.xb7{left:178.062667pt;}
.x2c{left:208.776000pt;}
.x7{left:220.912000pt;}
.x5{left:221.858667pt;}
.x6{left:239.924000pt;}
.x59{left:242.273333pt;}
.x5d{left:245.117333pt;}
.x5f{left:248.298667pt;}
.xa{left:250.204000pt;}
.x5e{left:251.168000pt;}
.xf{left:255.849333pt;}
.x10{left:262.490667pt;}
.x83{left:265.881333pt;}
.xa9{left:268.449333pt;}
.x49{left:273.362667pt;}
.x8{left:274.661333pt;}
.x65{left:276.270667pt;}
.xa8{left:281.338667pt;}
.x9{left:284.372000pt;}
.x81{left:285.308000pt;}
.x5a{left:286.533333pt;}
.x9e{left:289.688000pt;}
.x82{left:291.949333pt;}
.xb8{left:296.010667pt;}
.x9f{left:297.052000pt;}
.x6d{left:298.798667pt;}
.x67{left:302.222667pt;}
.xa0{left:311.066667pt;}
.x78{left:314.496000pt;}
.x6e{left:316.153333pt;}
.x2f{left:319.898667pt;}
.x38{left:324.297333pt;}
.x55{left:325.348000pt;}
.x17{left:328.961333pt;}
.x31{left:330.132000pt;}
.x30{left:331.070667pt;}
.x2e{left:332.214667pt;}
.xa7{left:334.872000pt;}
.xa4{left:336.886667pt;}
.x56{left:338.632000pt;}
.x20{left:339.765333pt;}
.x2d{left:341.010667pt;}
.x18{left:347.257333pt;}
.x3c{left:353.676000pt;}
.xaa{left:357.904000pt;}
.x19{left:360.540000pt;}
.x1a{left:367.314667pt;}
.x80{left:371.457333pt;}
.x60{left:375.201333pt;}
.x13{left:376.109333pt;}
.x46{left:378.134667pt;}
.x1b{left:380.598667pt;}
.x14{left:382.750667pt;}
.x15{left:386.041333pt;}
.x57{left:387.028000pt;}
.x61{left:388.484000pt;}
.x47{left:391.417333pt;}
.x16{left:392.682667pt;}
.x73{left:397.662667pt;}
.x6a{left:399.970667pt;}
.x8b{left:409.253333pt;}
.x74{left:410.945333pt;}
.x9c{left:413.172000pt;}
.x75{left:414.333333pt;}
.xb4{left:420.497333pt;}
.x9d{left:422.660000pt;}
.x76{left:427.616000pt;}
.x6f{left:428.805333pt;}
.x72{left:431.732000pt;}
.x53{left:437.006667pt;}
.x87{left:440.580000pt;}
.x5b{left:442.626667pt;}
.x7b{left:444.716000pt;}
.x70{left:446.160000pt;}
.x5c{left:448.676000pt;}
.x54{left:450.289333pt;}
.x88{left:455.120000pt;}
.x22{left:456.708000pt;}
.x89{left:457.948000pt;}
.x23{left:460.273333pt;}
.x21{left:461.398667pt;}
.x24{left:467.508000pt;}
.x3d{left:470.729333pt;}
.x3e{left:472.910667pt;}
.x32{left:480.665333pt;}
.xa6{left:483.618667pt;}
.x7c{left:488.840000pt;}
.x48{left:494.353333pt;}
.x4a{left:499.458667pt;}
.x51{left:502.469333pt;}
.x4b{left:505.436000pt;}
.x52{left:509.110667pt;}
.x85{left:515.232000pt;}
.x86{left:529.490667pt;}
.x8a{left:558.705333pt;}
.x4c{left:564.237333pt;}
.x11{left:566.048000pt;}
.x8e{left:569.069333pt;}
.x4d{left:571.541333pt;}
.x12{left:572.689333pt;}
.x94{left:574.597333pt;}
.x8f{left:577.417333pt;}
.x95{left:580.309333pt;}
.xa5{left:583.781333pt;}
.x6b{left:589.046667pt;}
.x71{left:591.214667pt;}
.x99{left:592.521333pt;}
.x37{left:593.880000pt;}
.x25{left:595.744000pt;}
.x40{left:596.697333pt;}
.x9a{left:598.233333pt;}
.xa2{left:599.873333pt;}
.x41{left:605.502667pt;}
.x36{left:608.436000pt;}
.x27{left:609.608000pt;}
.x26{left:612.109333pt;}
.x33{left:615.648000pt;}
.x4e{left:617.350667pt;}
.x42{left:618.656000pt;}
.x45{left:621.737333pt;}
.x35{left:623.397333pt;}
.x3f{left:625.061333pt;}
.x34{left:626.968000pt;}
.x6c{left:632.561333pt;}
.xa1{left:639.242667pt;}
.xa3{left:640.530667pt;}
.x68{left:641.604000pt;}
.xbb{left:644.550667pt;}
.xac{left:647.506667pt;}
.x79{left:648.586667pt;}
.xba{left:650.748000pt;}
.x69{left:654.886667pt;}
.x7a{left:660.708000pt;}
.xb9{left:663.808000pt;}
.xb2{left:665.178667pt;}
.x8c{left:667.288000pt;}
.xbc{left:668.461333pt;}
.xad{left:671.416000pt;}
.x90{left:672.578667pt;}
.x4f{left:674.492000pt;}
.x8d{left:678.060000pt;}
.x50{left:681.797333pt;}
.xaf{left:683.378667pt;}
.x84{left:689.349333pt;}
.x7d{left:691.854667pt;}
.x7e{left:695.860000pt;}
.x9b{left:697.502667pt;}
.x91{left:699.554667pt;}
.xb5{left:702.237333pt;}
.x92{left:703.558667pt;}
.x77{left:710.481333pt;}
.x93{left:711.964000pt;}
.x7f{left:716.228000pt;}
.x96{left:718.670667pt;}
.xae{left:720.289333pt;}
.xb{left:723.178667pt;}
.x66{left:726.312000pt;}
.xc{left:729.820000pt;}
.x97{left:730.756000pt;}
.xd{left:733.090667pt;}
.x58{left:736.197333pt;}
.xe{left:739.733333pt;}
.x98{left:744.770667pt;}
}




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