
    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_5e8380bfdf18b965fe2e01f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.710000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7124ba8775d06a6a62acb401.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.691000;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_79e0f2b891b0e9b5a6714b9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;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_8022ad6f109ac866a7c28919.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_f52ccff89644265b0986254a.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_7948d0cbd417a56fabce6c1b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.450976;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_c6e7f8a88003f3fedb59fd99.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.414243;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_96b6b8a09b7b8a532c2adf45.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.665000;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_7d8c37a024935c7e60e75b50.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.997000;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_f5a1feb34bde61a16472fda5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000488;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b4a663797405877d228edfae.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.011230;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_707edf5f98a7530592a9066d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.006348;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_d37e2cfd7e2f8d6165cf284f.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.319000;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;}
.m4{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);}
.md{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m22{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);}
.m25{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);}
.m1c{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);}
.m2a{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);}
.m1{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);}
.m12{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);}
.m20{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);}
.m17{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);}
.mb{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);}
.mf{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);}
.m1e{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);}
.m2b{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);}
.m11{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);}
.ma{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);}
.m9{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);}
.m1b{transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249892,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m6{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);}
.m1d{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);}
.m13{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);}
.m29{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);}
.m5{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);}
.mc{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);}
.m1f{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);}
.m3{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);}
.me{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);}
.m28{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);}
.m21{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);}
.m8{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);}
.m15{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);}
.m23{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);}
.m16{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);}
.m27{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);}
.m24{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);}
.m7{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:-19.530000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.150200px;}
.v7{vertical-align:17.186400px;}
.v6{vertical-align:19.530000px;}
.v1{vertical-align:21.702000px;}
.v3{vertical-align:28.776600px;}
.v5{vertical-align:31.451538px;}
.ls28{letter-spacing:-0.117234px;}
.ls2e{letter-spacing:-0.098477px;}
.ls25{letter-spacing:-0.070340px;}
.ls24{letter-spacing:-0.067224px;}
.ls32{letter-spacing:-0.056272px;}
.ls2b{letter-spacing:-0.042204px;}
.ls34{letter-spacing:-0.037515px;}
.ls2f{letter-spacing:-0.032826px;}
.ls2c{letter-spacing:-0.028136px;}
.ls29{letter-spacing:-0.023447px;}
.ls23{letter-spacing:-0.022408px;}
.ls2d{letter-spacing:-0.014068px;}
.ls26{letter-spacing:-0.004689px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.000620px;}
.ls41{letter-spacing:0.003437px;}
.lsd{letter-spacing:0.004212px;}
.ls13{letter-spacing:0.004689px;}
.ls31{letter-spacing:0.009379px;}
.lsc{letter-spacing:0.012636px;}
.ls16{letter-spacing:0.014068px;}
.lsf{letter-spacing:0.016848px;}
.ls17{letter-spacing:0.023447px;}
.ls10{letter-spacing:0.025272px;}
.ls1a{letter-spacing:0.028136px;}
.ls30{letter-spacing:0.032826px;}
.lse{letter-spacing:0.042120px;}
.ls14{letter-spacing:0.042204px;}
.ls12{letter-spacing:0.051583px;}
.ls18{letter-spacing:0.054756px;}
.ls15{letter-spacing:0.056272px;}
.ls27{letter-spacing:0.060962px;}
.ls1c{letter-spacing:0.070340px;}
.ls11{letter-spacing:0.075030px;}
.ls2a{letter-spacing:0.084408px;}
.ls19{letter-spacing:0.093787px;}
.ls21{letter-spacing:0.126613px;}
.ls1f{letter-spacing:0.131302px;}
.ls33{letter-spacing:0.135991px;}
.lsb{letter-spacing:0.141916px;}
.lsa{letter-spacing:0.149386px;}
.ls39{letter-spacing:2.629968px;}
.ls22{letter-spacing:2.988600px;}
.ls0{letter-spacing:2.989200px;}
.ls1{letter-spacing:2.998354px;}
.ls5{letter-spacing:11.960850px;}
.ls3b{letter-spacing:12.993257px;}
.ls45{letter-spacing:13.192058px;}
.ls47{letter-spacing:13.430160px;}
.ls3c{letter-spacing:13.448400px;}
.ls3e{letter-spacing:13.454400px;}
.ls40{letter-spacing:13.568656px;}
.ls43{letter-spacing:13.607802px;}
.ls46{letter-spacing:13.645008px;}
.ls42{letter-spacing:13.897459px;}
.ls3f{letter-spacing:14.703341px;}
.ls37{letter-spacing:14.858495px;}
.ls38{letter-spacing:14.942100px;}
.ls35{letter-spacing:14.946493px;}
.ls7{letter-spacing:14.959908px;}
.ls9{letter-spacing:15.071024px;}
.ls3d{letter-spacing:15.544518px;}
.ls36{letter-spacing:17.929200px;}
.ls44{letter-spacing:19.015106px;}
.ls4{letter-spacing:21.550218px;}
.ls3{letter-spacing:67.247510px;}
.ls2{letter-spacing:70.236600px;}
.ls3a{letter-spacing:76.877797px;}
.ls1e{letter-spacing:273.961790px;}
.ls1b{letter-spacing:539.145098px;}
.ls1d{letter-spacing:593.640150px;}
.ls20{letter-spacing:744.206121px;}
.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;}
}
.ws28{word-spacing:-14.943900px;}
.ws2{word-spacing:-14.355754px;}
.ws6e{word-spacing:-13.449600px;}
.ws23{word-spacing:-11.955150px;}
.ws6c{word-spacing:-11.793740px;}
.ws6a{word-spacing:-11.779672px;}
.ws66{word-spacing:-11.774983px;}
.ws6b{word-spacing:-11.709332px;}
.ws67{word-spacing:-11.699953px;}
.ws69{word-spacing:-11.690574px;}
.ws68{word-spacing:-11.624923px;}
.ws1{word-spacing:-11.357400px;}
.ws65{word-spacing:-9.485986px;}
.wsa{word-spacing:-3.347434px;}
.ws43{word-spacing:-3.108331px;}
.ws103{word-spacing:-2.958912px;}
.ws10f{word-spacing:-2.689920px;}
.ws47{word-spacing:-2.450800px;}
.wsf4{word-spacing:-2.391024px;}
.ws117{word-spacing:-1.990541px;}
.ws131{word-spacing:-1.829146px;}
.ws97{word-spacing:-1.437123px;}
.ws96{word-spacing:-1.434614px;}
.ws82{word-spacing:-1.392740px;}
.ws81{word-spacing:-1.327089px;}
.ws118{word-spacing:-1.237363px;}
.ws135{word-spacing:-1.183565px;}
.wsdb{word-spacing:-0.836858px;}
.wsfd{word-spacing:-0.645581px;}
.ws44{word-spacing:-0.478205px;}
.wsff{word-spacing:-0.430387px;}
.wsc4{word-spacing:-0.418429px;}
.ws25{word-spacing:-0.358654px;}
.ws94{word-spacing:-0.337634px;}
.ws95{word-spacing:-0.332945px;}
.wseb{word-spacing:-0.313202px;}
.ws42{word-spacing:-0.298878px;}
.ws80{word-spacing:-0.281362px;}
.ws12d{word-spacing:-0.268992px;}
.wsf1{word-spacing:-0.241400px;}
.ws24{word-spacing:-0.239102px;}
.ws78{word-spacing:-0.216609px;}
.ws107{word-spacing:-0.215194px;}
.ws8f{word-spacing:-0.211021px;}
.ws79{word-spacing:-0.209140px;}
.ws130{word-spacing:-0.194450px;}
.wsb4{word-spacing:-0.183231px;}
.ws20{word-spacing:-0.179327px;}
.ws6d{word-spacing:-0.161395px;}
.ws7f{word-spacing:-0.135991px;}
.ws9{word-spacing:-0.119551px;}
.wsd1{word-spacing:-0.116009px;}
.ws114{word-spacing:-0.107597px;}
.ws92{word-spacing:-0.060962px;}
.ws21{word-spacing:-0.059776px;}
.ws126{word-spacing:-0.053798px;}
.ws36{word-spacing:-0.047821px;}
.ws77{word-spacing:-0.044816px;}
.wsce{word-spacing:-0.027747px;}
.wsd0{word-spacing:-0.027697px;}
.wscf{word-spacing:-0.022782px;}
.ws71{word-spacing:-0.010781px;}
.ws74{word-spacing:-0.008131px;}
.wsb0{word-spacing:-0.007968px;}
.ws73{word-spacing:-0.007133px;}
.ws70{word-spacing:-0.006701px;}
.ws138{word-spacing:-0.006557px;}
.ws75{word-spacing:-0.006480px;}
.wsb5{word-spacing:-0.006430px;}
.ws6f{word-spacing:-0.005837px;}
.ws76{word-spacing:-0.005539px;}
.wsb3{word-spacing:-0.005459px;}
.ws13d{word-spacing:-0.004512px;}
.wsdd{word-spacing:-0.004440px;}
.ws3b{word-spacing:-0.003568px;}
.ws110{word-spacing:-0.003466px;}
.ws72{word-spacing:-0.003216px;}
.ws13b{word-spacing:-0.002074px;}
.ws4c{word-spacing:-0.002045px;}
.ws3a{word-spacing:-0.002039px;}
.wsad{word-spacing:-0.001500px;}
.wsb1{word-spacing:-0.001331px;}
.wsb2{word-spacing:-0.001292px;}
.ws64{word-spacing:-0.001044px;}
.wsbc{word-spacing:-0.000950px;}
.ws4d{word-spacing:-0.000422px;}
.ws4a{word-spacing:-0.000288px;}
.ws0{word-spacing:0.000000px;}
.ws63{word-spacing:0.001146px;}
.wsb6{word-spacing:0.001944px;}
.wsdc{word-spacing:0.002092px;}
.ws29{word-spacing:0.007174px;}
.ws2b{word-spacing:0.008431px;}
.ws2a{word-spacing:0.014326px;}
.wsef{word-spacing:0.046384px;}
.ws90{word-spacing:0.046894px;}
.ws8c{word-spacing:0.051583px;}
.wsbd{word-spacing:0.053798px;}
.ws26{word-spacing:0.059776px;}
.ws8e{word-spacing:0.088452px;}
.wsf7{word-spacing:0.107597px;}
.ws93{word-spacing:0.112545px;}
.ws7e{word-spacing:0.117936px;}
.ws31{word-spacing:0.119551px;}
.ws91{word-spacing:0.131302px;}
.ws8d{word-spacing:0.138996px;}
.ws129{word-spacing:0.154196px;}
.ws4{word-spacing:0.161395px;}
.ws30{word-spacing:0.179327px;}
.ws132{word-spacing:0.215194px;}
.ws9d{word-spacing:0.220240px;}
.ws9f{word-spacing:0.234927px;}
.wsa0{word-spacing:0.237269px;}
.ws8{word-spacing:0.239102px;}
.ws9e{word-spacing:0.255308px;}
.ws123{word-spacing:0.268992px;}
.ws38{word-spacing:0.298878px;}
.wse0{word-spacing:0.301390px;}
.ws121{word-spacing:0.322790px;}
.ws2d{word-spacing:0.358654px;}
.ws11d{word-spacing:0.376589px;}
.ws2c{word-spacing:0.418429px;}
.ws122{word-spacing:0.430387px;}
.ws53{word-spacing:0.478205px;}
.ws3{word-spacing:0.556186px;}
.wsa1{word-spacing:0.657532px;}
.wsa2{word-spacing:0.681980px;}
.ws11b{word-spacing:0.699379px;}
.ws10{word-spacing:0.824796px;}
.wsf{word-spacing:0.836858px;}
.ws139{word-spacing:0.860774px;}
.wsc1{word-spacing:0.896634px;}
.ws109{word-spacing:0.968371px;}
.ws7d{word-spacing:0.968760px;}
.ws4e{word-spacing:1.075961px;}
.wscd{word-spacing:1.099628px;}
.ws133{word-spacing:1.183565px;}
.ws7c{word-spacing:1.225692px;}
.ws10b{word-spacing:1.237363px;}
.ws7a{word-spacing:1.255176px;}
.ws35{word-spacing:1.255288px;}
.ws7b{word-spacing:1.263600px;}
.ws48{word-spacing:1.494390px;}
.wsed{word-spacing:1.554166px;}
.ws106{word-spacing:1.613952px;}
.ws13f{word-spacing:1.667750px;}
.wsa4{word-spacing:1.673717px;}
.wsa5{word-spacing:1.685291px;}
.wsa9{word-spacing:1.696010px;}
.wsaa{word-spacing:1.700647px;}
.wsa7{word-spacing:1.719023px;}
.ws104{word-spacing:1.721549px;}
.ws37{word-spacing:1.793268px;}
.ws5c{word-spacing:1.972595px;}
.ws60{word-spacing:1.973267px;}
.ws5d{word-spacing:1.976838px;}
.ws5f{word-spacing:1.978205px;}
.ws62{word-spacing:1.982588px;}
.ws61{word-spacing:1.993047px;}
.ws1f{word-spacing:2.032370px;}
.wsd8{word-spacing:2.061892px;}
.wsd6{word-spacing:2.066724px;}
.wsd7{word-spacing:2.074666px;}
.wsd9{word-spacing:2.081650px;}
.wsda{word-spacing:2.201352px;}
.ws12c{word-spacing:2.205734px;}
.ws40{word-spacing:2.211697px;}
.wsc5{word-spacing:2.271473px;}
.ws85{word-spacing:2.279029px;}
.ws120{word-spacing:2.313331px;}
.ws86{word-spacing:2.363437px;}
.ws54{word-spacing:2.450800px;}
.wsa6{word-spacing:2.691238px;}
.wsa8{word-spacing:2.698310px;}
.wsec{word-spacing:2.749678px;}
.wsbe{word-spacing:2.840556px;}
.wsdf{word-spacing:2.869229px;}
.ws22{word-spacing:2.869236px;}
.wsfb{word-spacing:2.958912px;}
.ws128{word-spacing:3.066509px;}
.ws5b{word-spacing:3.114768px;}
.ws5e{word-spacing:3.115957px;}
.ws108{word-spacing:3.174106px;}
.ws88{word-spacing:3.179386px;}
.ws137{word-spacing:3.216326px;}
.ws10d{word-spacing:3.221837px;}
.ws11c{word-spacing:3.225312px;}
.ws127{word-spacing:3.225946px;}
.ws7{word-spacing:3.227882px;}
.wsfe{word-spacing:3.227904px;}
.ws116{word-spacing:3.228758px;}
.ws119{word-spacing:3.281702px;}
.ws105{word-spacing:3.335501px;}
.wsf3{word-spacing:3.347434px;}
.ws136{word-spacing:3.389299px;}
.ws8a{word-spacing:3.390407px;}
.ws89{word-spacing:3.404475px;}
.wsc8{word-spacing:3.407209px;}
.ws8b{word-spacing:3.413854px;}
.ws11e{word-spacing:3.443098px;}
.ws87{word-spacing:3.474816px;}
.ws12a{word-spacing:3.496896px;}
.wsee{word-spacing:3.526760px;}
.ws125{word-spacing:3.550694px;}
.ws1b{word-spacing:3.583475px;}
.ws115{word-spacing:3.658291px;}
.ws27{word-spacing:3.765863px;}
.wsde{word-spacing:3.885414px;}
.ws2f{word-spacing:4.184292px;}
.ws2e{word-spacing:4.244068px;}
.ws52{word-spacing:4.303843px;}
.ws101{word-spacing:4.303872px;}
.ws12f{word-spacing:4.411469px;}
.ws4f{word-spacing:4.423394px;}
.ws111{word-spacing:4.465267px;}
.ws112{word-spacing:4.519066px;}
.ws33{word-spacing:4.542946px;}
.wse5{word-spacing:4.566107px;}
.wse3{word-spacing:4.579981px;}
.wse4{word-spacing:4.588680px;}
.wse6{word-spacing:4.602721px;}
.ws3e{word-spacing:4.662497px;}
.ws12b{word-spacing:4.949453px;}
.ws34{word-spacing:4.961375px;}
.ws50{word-spacing:5.021150px;}
.ws98{word-spacing:5.080926px;}
.ws99{word-spacing:5.105510px;}
.wsd{word-spacing:5.140702px;}
.wse{word-spacing:5.167774px;}
.ws49{word-spacing:5.200477px;}
.wsd2{word-spacing:5.244698px;}
.wsd5{word-spacing:5.245529px;}
.wsd3{word-spacing:5.246835px;}
.wsd4{word-spacing:5.260253px;}
.wsea{word-spacing:5.320028px;}
.wsf0{word-spacing:5.379804px;}
.ws9c{word-spacing:5.552203px;}
.ws9b{word-spacing:5.559131px;}
.wscc{word-spacing:5.618906px;}
.ws124{word-spacing:5.917824px;}
.wsb{word-spacing:5.977560px;}
.ws41{word-spacing:6.156887px;}
.ws11{word-spacing:6.336214px;}
.ws12{word-spacing:6.348951px;}
.ws11f{word-spacing:6.455808px;}
.ws10a{word-spacing:6.563405px;}
.wsba{word-spacing:6.694867px;}
.wse1{word-spacing:6.754643px;}
.ws3d{word-spacing:6.933970px;}
.ws3c{word-spacing:6.993745px;}
.ws45{word-spacing:7.053521px;}
.wse2{word-spacing:7.063349px;}
.wsb9{word-spacing:7.153309px;}
.wsb8{word-spacing:7.155199px;}
.wsb7{word-spacing:7.173072px;}
.ws134{word-spacing:7.262784px;}
.wsa3{word-spacing:7.352399px;}
.ws5{word-spacing:7.412174px;}
.wsae{word-spacing:7.426209px;}
.wsaf{word-spacing:7.471950px;}
.wsc3{word-spacing:7.531726px;}
.ws100{word-spacing:7.746970px;}
.wse7{word-spacing:7.890379px;}
.ws12e{word-spacing:8.177357px;}
.wsc{word-spacing:8.189257px;}
.ws13e{word-spacing:8.231155px;}
.ws13c{word-spacing:8.446349px;}
.ws3f{word-spacing:8.667462px;}
.wsf2{word-spacing:8.787013px;}
.wsc7{word-spacing:8.846789px;}
.ws13{word-spacing:8.892439px;}
.ws14{word-spacing:8.893745px;}
.ws15{word-spacing:8.906564px;}
.wsfc{word-spacing:8.930534px;}
.ws1d{word-spacing:8.966340px;}
.wsca{word-spacing:9.026116px;}
.ws6{word-spacing:9.085891px;}
.wscb{word-spacing:9.803198px;}
.wse9{word-spacing:9.982525px;}
.wsf5{word-spacing:10.520506px;}
.ws10e{word-spacing:10.598285px;}
.wsbb{word-spacing:10.998710px;}
.wsac{word-spacing:11.297588px;}
.wsab{word-spacing:11.314833px;}
.ws1e{word-spacing:11.536691px;}
.ws32{word-spacing:11.716018px;}
.ws11a{word-spacing:11.781850px;}
.wse8{word-spacing:12.971305px;}
.ws1a{word-spacing:13.031081px;}
.ws51{word-spacing:13.210408px;}
.ws13a{word-spacing:13.557197px;}
.ws18{word-spacing:13.748388px;}
.ws17{word-spacing:13.769592px;}
.ws16{word-spacing:13.808164px;}
.ws58{word-spacing:14.346144px;}
.ws59{word-spacing:14.352569px;}
.ws57{word-spacing:14.359424px;}
.wsc9{word-spacing:14.465695px;}
.wsc2{word-spacing:15.302554px;}
.ws84{word-spacing:15.723424px;}
.ws83{word-spacing:15.803143px;}
.ws113{word-spacing:15.870528px;}
.wsc6{word-spacing:16.378514px;}
.ws102{word-spacing:16.569907px;}
.ws10c{word-spacing:18.183859px;}
.wsfa{word-spacing:18.237658px;}
.ws46{word-spacing:18.291334px;}
.wsf6{word-spacing:18.291456px;}
.wsf9{word-spacing:18.721843px;}
.wsf8{word-spacing:19.367424px;}
.ws9a{word-spacing:19.427070px;}
.ws1c{word-spacing:22.116972px;}
.ws55{word-spacing:22.475626px;}
.ws56{word-spacing:22.535401px;}
.ws19{word-spacing:28.512961px;}
.ws5a{word-spacing:47.162948px;}
.ws39{word-spacing:58.131518px;}
.wsbf{word-spacing:369.224875px;}
.wsc0{word-spacing:385.037301px;}
.ws4b{word-spacing:916.294349px;}
._5{margin-left:-6.939994px;}
._4{margin-left:-5.728519px;}
._14{margin-left:-4.399495px;}
._2{margin-left:-3.287658px;}
._36{margin-left:-2.151922px;}
._1{margin-left:-1.063024px;}
._3b{width:1.004618px;}
._3{width:3.000754px;}
._35{width:4.384583px;}
._0{width:10.165172px;}
._12{width:11.955150px;}
._6f{width:13.126810px;}
._37{width:14.156879px;}
._7{width:15.709133px;}
._6{width:16.952452px;}
._c{width:18.338172px;}
._17{width:20.263928px;}
._16{width:21.386728px;}
._d{width:22.475626px;}
._8{width:24.315732px;}
._9{width:25.464406px;}
._6e{width:26.704388px;}
._b{width:27.876394px;}
._6a{width:29.950212px;}
._10{width:31.322414px;}
._34{width:32.351537px;}
._e{width:34.656333px;}
._68{width:35.984911px;}
._f{width:37.429134px;}
._32{width:39.917164px;}
._4c{width:41.112676px;}
._33{width:44.330619px;}
._a{width:45.523133px;}
._6c{width:48.741350px;}
._69{width:49.772110px;}
._11{width:53.618713px;}
._67{width:62.405726px;}
._6b{width:65.094874px;}
._26{width:67.335823px;}
._19{width:72.471825px;}
._27{width:87.976524px;}
._2f{width:91.746577px;}
._18{width:96.595027px;}
._5b{width:97.853826px;}
._2e{width:156.053019px;}
._62{width:201.723473px;}
._49{width:229.448352px;}
._2d{width:256.860461px;}
._2a{width:268.723008px;}
._44{width:271.303507px;}
._28{width:277.922534px;}
._42{width:279.493469px;}
._25{width:289.930337px;}
._2c{width:307.457856px;}
._30{width:312.493386px;}
._29{width:336.702666px;}
._4f{width:360.841925px;}
._48{width:363.890554px;}
._46{width:369.862176px;}
._5e{width:381.060523px;}
._31{width:390.302012px;}
._3e{width:394.988021px;}
._51{width:396.872949px;}
._40{width:405.745709px;}
._4e{width:414.152995px;}
._13{width:427.576194px;}
._3d{width:430.065895px;}
._1a{width:439.635145px;}
._2b{width:451.613629px;}
._4a{width:460.404883px;}
._3f{width:465.517555px;}
._38{width:473.641114px;}
._22{width:479.346434px;}
._1c{width:532.397036px;}
._1d{width:535.003569px;}
._4b{width:547.081469px;}
._1b{width:555.753612px;}
._20{width:558.769012px;}
._47{width:566.174362px;}
._1f{width:576.810305px;}
._24{width:581.972262px;}
._23{width:584.681011px;}
._1e{width:593.267236px;}
._57{width:598.599733px;}
._21{width:602.722305px;}
._52{width:604.470215px;}
._55{width:610.435381px;}
._5a{width:611.808316px;}
._41{width:646.818163px;}
._39{width:683.616269px;}
._3a{width:702.338112px;}
._5d{width:727.702982px;}
._45{width:751.563648px;}
._5c{width:762.689157px;}
._4d{width:780.253259px;}
._5f{width:782.194305px;}
._60{width:806.196999px;}
._50{width:807.238536px;}
._43{width:820.049011px;}
._58{width:828.258647px;}
._64{width:843.455619px;}
._63{width:867.079572px;}
._66{width:872.429285px;}
._53{width:893.165341px;}
._65{width:898.088970px;}
._56{width:901.829035px;}
._54{width:933.785285px;}
._59{width:941.596812px;}
._3c{width:1217.096768px;}
._6d{width:1533.236287px;}
._15{width:1557.146587px;}
._61{width:1813.979600px;}
.fc5{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc4{color:rgb(35,31,32);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(40,82,46);}
.fc0{color:rgb(14,15,14);}
.fse{font-size:28.080000px;}
.fs10{font-size:36.821664px;}
.fsa{font-size:37.346400px;}
.fs5{font-size:41.842800px;}
.fsc{font-size:42.120000px;}
.fs4{font-size:45.429600px;}
.fsd{font-size:46.893600px;}
.fsf{font-size:47.342592px;}
.fs7{font-size:47.820600px;}
.fs9{font-size:48.418560px;}
.fs8{font-size:51.108480px;}
.fs6{font-size:53.798400px;}
.fsb{font-size:56.160000px;}
.fs0{font-size:56.694600px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:60.474240px;}
.fs3{font-size:107.596800px;}
.yd7{bottom:-323.465709px;}
.yd6{bottom:-307.670772px;}
.yd5{bottom:-291.946176px;}
.yd4{bottom:-276.151239px;}
.yd2{bottom:-260.286039px;}
.yd3{bottom:-257.337639px;}
.yd1{bottom:-243.928774px;}
.yd0{bottom:-235.996722px;}
.ycf{bottom:-204.477039px;}
.yce{bottom:-174.992697px;}
.ycd{bottom:-159.197761px;}
.ycc{bottom:-143.402824px;}
.ycb{bottom:-127.607887px;}
.yca{bottom:-111.812950px;}
.yc9{bottom:-88.998041px;}
.yc8{bottom:-66.183133px;}
.yc7{bottom:-36.769122px;}
.yc6{bottom:-36.768888px;}
.yc5{bottom:-21.465639px;}
.yc4{bottom:-0.265239px;}
.y0{bottom:0.000000px;}
.y4{bottom:6.350457px;}
.y3{bottom:20.308195px;}
.y2{bottom:37.114269px;}
.y31{bottom:63.780000px;}
.y1cd{bottom:108.957000px;}
.y14c{bottom:114.156000px;}
.yf0{bottom:117.385500px;}
.y1cc{bottom:128.325000px;}
.y30{bottom:131.664000px;}
.yef{bottom:133.899000px;}
.y14b{bottom:134.419500px;}
.y61{bottom:147.102000px;}
.y1cb{bottom:147.691500px;}
.yee{bottom:150.412500px;}
.y2f{bottom:151.927500px;}
.y92{bottom:153.754500px;}
.y14a{bottom:154.683000px;}
.y199{bottom:155.583000px;}
.y169{bottom:160.392000px;}
.yed{bottom:167.044500px;}
.y1ca{bottom:167.059500px;}
.y60{bottom:167.365500px;}
.y11f{bottom:170.607000px;}
.y2e{bottom:172.192500px;}
.y91{bottom:174.019500px;}
.y149{bottom:174.948000px;}
.y198{bottom:174.949500px;}
.y168{bottom:180.657000px;}
.y1c9{bottom:186.427500px;}
.y5f{bottom:187.629000px;}
.yec{bottom:190.956000px;}
.y11e{bottom:191.330700px;}
.y2d{bottom:192.456000px;}
.y8f{bottom:194.283000px;}
.y197{bottom:194.317500px;}
.y148{bottom:195.211500px;}
.y90{bottom:199.707000px;}
.y167{bottom:200.920500px;}
.yc1{bottom:204.301500px;}
.y1c8{bottom:205.794000px;}
.y11d{bottom:205.862580px;}
.yeb{bottom:207.468000px;}
.y5e{bottom:207.894000px;}
.y2c{bottom:212.719500px;}
.y196{bottom:213.684000px;}
.y8d{bottom:214.546500px;}
.y147{bottom:215.476500px;}
.y8e{bottom:219.972000px;}
.y11c{bottom:220.393140px;}
.y166{bottom:221.184000px;}
.yea{bottom:223.981500px;}
.yc0{bottom:224.565000px;}
.y1c7{bottom:225.162000px;}
.y5d{bottom:228.157500px;}
.y2b{bottom:232.984500px;}
.y195{bottom:233.052000px;}
.y8c{bottom:234.811500px;}
.y11b{bottom:234.925020px;}
.y146{bottom:235.740000px;}
.ye9{bottom:240.495000px;}
.y165{bottom:241.449000px;}
.y1c6{bottom:244.528500px;}
.ybf{bottom:244.830000px;}
.y11a{bottom:249.456900px;}
.y194{bottom:252.420000px;}
.y8b{bottom:255.075000px;}
.y145{bottom:256.003500px;}
.ye8{bottom:257.127000px;}
.y164{bottom:261.712500px;}
.y2a{bottom:262.215000px;}
.y1c5{bottom:263.896500px;}
.y119{bottom:264.094380px;}
.ybe{bottom:265.093500px;}
.y193{bottom:271.786500px;}
.y5c{bottom:274.691025px;}
.y8a{bottom:275.340000px;}
.y144{bottom:276.268500px;}
.ye7{bottom:281.038500px;}
.y163{bottom:281.977500px;}
.y1c4{bottom:283.264500px;}
.y118{bottom:285.135180px;}
.ybd{bottom:285.358500px;}
.y5b{bottom:290.377425px;}
.y192{bottom:291.154500px;}
.y89{bottom:295.603500px;}
.y143{bottom:296.532000px;}
.ye6{bottom:297.550500px;}
.y117{bottom:299.665740px;}
.y162{bottom:302.241000px;}
.y1c3{bottom:302.631000px;}
.y5a{bottom:306.065250px;}
.y1d0{bottom:308.416500px;}
.y191{bottom:310.521000px;}
.ye5{bottom:314.064000px;}
.y116{bottom:314.197620px;}
.ybc{bottom:314.589000px;}
.y88{bottom:315.867000px;}
.y142{bottom:316.797000px;}
.y59{bottom:321.753075px;}
.y1c2{bottom:321.999000px;}
.y161{bottom:322.504500px;}
.y1cf{bottom:327.783000px;}
.y115{bottom:328.729500px;}
.y190{bottom:329.889000px;}
.ye4{bottom:330.577500px;}
.y87{bottom:336.132000px;}
.y141{bottom:337.060500px;}
.y58{bottom:337.440900px;}
.y29{bottom:338.623500px;}
.y1c1{bottom:341.367000px;}
.y114{bottom:343.261380px;}
.y1ce{bottom:347.151000px;}
.ye3{bottom:347.209500px;}
.y18f{bottom:349.257000px;}
.ybb{bottom:349.408500px;}
.y160{bottom:351.735000px;}
.y57{bottom:353.127300px;}
.y140{bottom:357.324000px;}
.y113{bottom:357.791940px;}
.y1c0{bottom:360.733500px;}
.y86{bottom:365.362500px;}
.y18e{bottom:368.623500px;}
.ye2{bottom:371.121000px;}
.y112{bottom:372.429420px;}
.y56{bottom:375.941550px;}
.y28{bottom:376.819500px;}
.y13f{bottom:377.589000px;}
.y1bf{bottom:380.101500px;}
.yba{bottom:384.228000px;}
.y15f{bottom:386.554500px;}
.ye1{bottom:387.753000px;}
.y18d{bottom:387.991500px;}
.y111{bottom:393.470220px;}
.y27{bottom:397.084500px;}
.y13e{bottom:397.852500px;}
.y1be{bottom:399.468000px;}
.y85{bottom:400.182000px;}
.yb8{bottom:404.491500px;}
.y15e{bottom:406.819500px;}
.y18c{bottom:407.358000px;}
.y110{bottom:408.002100px;}
.yb9{bottom:409.915500px;}
.ye0{bottom:411.663000px;}
.y55{bottom:412.693500px;}
.y26{bottom:417.348000px;}
.y13d{bottom:418.117500px;}
.y1bd{bottom:418.836000px;}
.y84{bottom:420.445500px;}
.y10f{bottom:422.533980px;}
.yb7{bottom:424.755000px;}
.y18b{bottom:426.726000px;}
.y15d{bottom:427.083000px;}
.ydf{bottom:428.176500px;}
.y10e{bottom:437.065860px;}
.y25{bottom:437.611500px;}
.y1bc{bottom:438.204000px;}
.y13c{bottom:438.381000px;}
.y83{bottom:440.710500px;}
.yde{bottom:444.690000px;}
.yb6{bottom:445.020000px;}
.y18a{bottom:446.094000px;}
.y15c{bottom:447.348000px;}
.y54{bottom:449.799000px;}
.y10d{bottom:451.596420px;}
.y1bb{bottom:457.570500px;}
.y24{bottom:457.876500px;}
.y13b{bottom:458.644500px;}
.y82{bottom:460.974000px;}
.ydd{bottom:461.203500px;}
.yb5{bottom:465.283500px;}
.y189{bottom:465.460500px;}
.y10c{bottom:466.128300px;}
.y15b{bottom:467.611500px;}
.y53{bottom:470.062500px;}
.y1ba{bottom:476.938500px;}
.ydc{bottom:477.835500px;}
.y23{bottom:478.140000px;}
.y13a{bottom:478.909500px;}
.y10b{bottom:480.765780px;}
.y80{bottom:481.237500px;}
.y188{bottom:484.828500px;}
.yb4{bottom:485.548500px;}
.y81{bottom:486.663000px;}
.y15a{bottom:487.875000px;}
.y52{bottom:490.326000px;}
.y1b9{bottom:496.305000px;}
.y22{bottom:498.405000px;}
.y139{bottom:499.173000px;}
.y7e{bottom:501.502500px;}
.ydb{bottom:502.045500px;}
.y10a{bottom:502.069260px;}
.y187{bottom:504.195000px;}
.yb3{bottom:505.812000px;}
.y7f{bottom:506.926500px;}
.y159{bottom:508.140000px;}
.yc3{bottom:510.299361px;}
.y51{bottom:510.591000px;}
.y1b8{bottom:515.673000px;}
.y20{bottom:518.668500px;}
.y138{bottom:519.438000px;}
.y186{bottom:523.563000px;}
.y21{bottom:524.092500px;}
.yb2{bottom:526.075500px;}
.y158{bottom:528.403500px;}
.y7d{bottom:530.733000px;}
.y50{bottom:530.854500px;}
.y1b7{bottom:535.041000px;}
.y109{bottom:537.642000px;}
.y1f{bottom:538.932000px;}
.yda{bottom:539.641500px;}
.y137{bottom:539.701500px;}
.y185{bottom:542.931000px;}
.yb0{bottom:546.340500px;}
.y157{bottom:548.667000px;}
.y4f{bottom:551.119500px;}
.yb1{bottom:551.764500px;}
.y1b6{bottom:554.407500px;}
.y108{bottom:556.873500px;}
.y1e{bottom:559.197000px;}
.y136{bottom:559.965000px;}
.y184{bottom:562.297500px;}
.y7c{bottom:565.552500px;}
.yae{bottom:566.604000px;}
.y156{bottom:568.932000px;}
.y4d{bottom:571.383000px;}
.yaf{bottom:572.029500px;}
.y1b5{bottom:573.775500px;}
.y4e{bottom:576.807000px;}
.y1d{bottom:579.460500px;}
.y135{bottom:580.230000px;}
.y183{bottom:581.665500px;}
.yac{bottom:586.869000px;}
.y155{bottom:589.195500px;}
.y4b{bottom:591.646500px;}
.yd9{bottom:591.711000px;}
.yad{bottom:592.293000px;}
.y1b4{bottom:593.142000px;}
.y107{bottom:593.979000px;}
.y4c{bottom:597.072000px;}
.y1c{bottom:599.725500px;}
.y7b{bottom:600.372000px;}
.y134{bottom:600.493500px;}
.y182{bottom:601.032000px;}
.yaa{bottom:607.132500px;}
.y154{bottom:609.460500px;}
.yd8{bottom:610.944000px;}
.y4a{bottom:611.911500px;}
.y1b3{bottom:612.510000px;}
.yab{bottom:612.556500px;}
.y106{bottom:614.242500px;}
.y1b{bottom:619.989000px;}
.y181{bottom:620.400000px;}
.y7a{bottom:620.635500px;}
.y133{bottom:620.758500px;}
.y153{bottom:629.724000px;}
.y1b2{bottom:631.878000px;}
.y49{bottom:632.175000px;}
.y105{bottom:634.506000px;}
.ya9{bottom:636.363000px;}
.yc2{bottom:639.351000px;}
.y180{bottom:639.768000px;}
.y1a{bottom:640.252500px;}
.y79{bottom:640.900500px;}
.y132{bottom:641.022000px;}
.y152{bottom:649.987500px;}
.y1b1{bottom:651.244500px;}
.y48{bottom:652.438500px;}
.y104{bottom:654.771000px;}
.y17f{bottom:659.134500px;}
.y19{bottom:660.517500px;}
.y131{bottom:661.285500px;}
.y78{bottom:670.131000px;}
.y151{bottom:670.252500px;}
.y1b0{bottom:670.612500px;}
.ya8{bottom:671.182500px;}
.y47{bottom:672.703500px;}
.y103{bottom:675.034500px;}
.y17e{bottom:678.502500px;}
.y18{bottom:680.781000px;}
.y130{bottom:681.550500px;}
.y1af{bottom:689.979000px;}
.y150{bottom:690.516000px;}
.y17d{bottom:697.869000px;}
.y17{bottom:701.046000px;}
.y12f{bottom:701.814000px;}
.y46{bottom:701.934000px;}
.y102{bottom:704.265000px;}
.y77{bottom:704.950500px;}
.ya7{bottom:706.002000px;}
.y1ae{bottom:709.347000px;}
.y14f{bottom:710.781000px;}
.y17c{bottom:717.237000px;}
.y12e{bottom:722.077500px;}
.y76{bottom:725.214000px;}
.ya6{bottom:726.265500px;}
.y1ad{bottom:728.715000px;}
.y14e{bottom:731.044500px;}
.y16{bottom:732.069000px;}
.y17b{bottom:736.605000px;}
.y45{bottom:736.753500px;}
.y101{bottom:739.084500px;}
.y12d{bottom:742.342500px;}
.y75{bottom:745.477500px;}
.ya4{bottom:746.530500px;}
.y1ac{bottom:748.081500px;}
.y15{bottom:750.226500px;}
.y14d{bottom:751.308000px;}
.ya5{bottom:751.954500px;}
.y17a{bottom:755.971500px;}
.y100{bottom:759.349500px;}
.y12c{bottom:762.606000px;}
.y74{bottom:765.742500px;}
.ya2{bottom:766.794000px;}
.y1ab{bottom:767.449500px;}
.y44{bottom:771.573000px;}
.ya3{bottom:772.219500px;}
.y179{bottom:775.339500px;}
.y14{bottom:777.349500px;}
.yff{bottom:779.613000px;}
.y12b{bottom:782.871000px;}
.y73{bottom:786.006000px;}
.y1aa{bottom:786.816000px;}
.ya1{bottom:787.059000px;}
.y43{bottom:791.836500px;}
.y178{bottom:794.707500px;}
.yfe{bottom:799.876500px;}
.y13{bottom:800.388000px;}
.y12a{bottom:803.134500px;}
.y1a9{bottom:806.184000px;}
.y72{bottom:806.271000px;}
.y42{bottom:812.101500px;}
.y177{bottom:814.074000px;}
.ya0{bottom:816.289500px;}
.y12{bottom:818.545500px;}
.yfd{bottom:820.141500px;}
.y129{bottom:823.398000px;}
.y1a8{bottom:825.552000px;}
.y71{bottom:826.534500px;}
.y11{bottom:831.820500px;}
.y41{bottom:832.365000px;}
.y176{bottom:833.442000px;}
.yfc{bottom:840.405000px;}
.y128{bottom:843.663000px;}
.y1a7{bottom:844.918500px;}
.y70{bottom:846.798000px;}
.y10{bottom:849.978000px;}
.y40{bottom:852.628500px;}
.y175{bottom:852.808500px;}
.yf{bottom:854.859000px;}
.y9f{bottom:859.882500px;}
.yfb{bottom:860.668500px;}
.y126{bottom:863.926500px;}
.y1a6{bottom:864.286500px;}
.y6f{bottom:867.063000px;}
.ye{bottom:868.134000px;}
.y127{bottom:869.352000px;}
.y174{bottom:872.176500px;}
.y3f{bottom:872.893500px;}
.y9e{bottom:876.396000px;}
.yfa{bottom:880.933500px;}
.y1a5{bottom:883.653000px;}
.y125{bottom:884.191500px;}
.yd{bottom:886.291500px;}
.y6e{bottom:887.326500px;}
.y173{bottom:891.544500px;}
.y9d{bottom:892.909500px;}
.y3e{bottom:893.157000px;}
.yf9{bottom:901.197000px;}
.y1a4{bottom:903.021000px;}
.yc{bottom:904.449000px;}
.y124{bottom:904.455000px;}
.y9c{bottom:909.423000px;}
.y172{bottom:910.911000px;}
.y3d{bottom:913.422000px;}
.y6d{bottom:916.557000px;}
.yf8{bottom:921.462000px;}
.y1a3{bottom:922.389000px;}
.y123{bottom:924.718500px;}
.yb{bottom:927.487500px;}
.y9b{bottom:933.138000px;}
.y3c{bottom:933.685500px;}
.y171{bottom:939.244500px;}
.yf7{bottom:941.725500px;}
.y1a2{bottom:941.755500px;}
.y122{bottom:944.983500px;}
.y9a{bottom:949.651500px;}
.ya{bottom:949.729500px;}
.y6c{bottom:951.376500px;}
.y3b{bottom:953.949000px;}
.y1a1{bottom:961.123500px;}
.y121{bottom:965.247000px;}
.y99{bottom:966.163500px;}
.y9{bottom:966.615000px;}
.yf6{bottom:970.956000px;}
.y3a{bottom:974.214000px;}
.y170{bottom:976.545000px;}
.y1a0{bottom:980.490000px;}
.y98{bottom:982.677000px;}
.y120{bottom:985.512000px;}
.y6b{bottom:994.092600px;}
.y39{bottom:994.477500px;}
.y19f{bottom:999.858000px;}
.y16f{bottom:1000.710000px;}
.yf5{bottom:1005.775500px;}
.y97{bottom:1006.392000px;}
.y6a{bottom:1008.954750px;}
.y68{bottom:1009.375950px;}
.y8{bottom:1010.451000px;}
.y38{bottom:1014.742500px;}
.y16e{bottom:1015.908000px;}
.y19e{bottom:1019.226000px;}
.y96{bottom:1022.905500px;}
.y69{bottom:1023.816900px;}
.y67{bottom:1024.170600px;}
.yf4{bottom:1026.039000px;}
.y16d{bottom:1031.106000px;}
.y37{bottom:1035.006000px;}
.y19d{bottom:1038.592500px;}
.y66{bottom:1038.677700px;}
.y95{bottom:1039.419000px;}
.y7{bottom:1040.848500px;}
.yf3{bottom:1046.304000px;}
.y36{bottom:1055.269500px;}
.y94{bottom:1055.932500px;}
.y19c{bottom:1057.960500px;}
.y65{bottom:1060.291200px;}
.y16c{bottom:1061.502000px;}
.yf2{bottom:1066.567500px;}
.y64{bottom:1066.976400px;}
.y6{bottom:1071.244500px;}
.y63{bottom:1074.440550px;}
.y35{bottom:1075.534500px;}
.y19b{bottom:1077.327000px;}
.y93{bottom:1079.946000px;}
.y16b{bottom:1085.667000px;}
.yf1{bottom:1086.832500px;}
.y34{bottom:1095.798000px;}
.y19a{bottom:1096.695000px;}
.y5{bottom:1100.145000px;}
.y16a{bottom:1100.865000px;}
.y33{bottom:1116.063000px;}
.y62{bottom:1117.543500px;}
.y1{bottom:1137.954000px;}
.y32{bottom:1168.366500px;}
.h26{height:-248.071590px;}
.h25{height:20.676094px;}
.h18{height:21.884756px;}
.h2f{height:22.057344px;}
.h1d{height:27.499205px;}
.h17{height:27.855430px;}
.hf{height:28.491613px;}
.h9{height:30.461558px;}
.h20{height:30.746777px;}
.h1f{height:31.014141px;}
.hd{height:33.072749px;}
.h22{height:33.750570px;}
.h2b{height:34.228694px;}
.h21{height:34.231412px;}
.h2d{height:34.465407px;}
.h24{height:34.529077px;}
.h2e{height:34.813397px;}
.h13{height:35.006619px;}
.he{height:35.100320px;}
.h16{height:35.248712px;}
.h15{height:35.539223px;}
.h14{height:36.689423px;}
.h10{height:36.951431px;}
.h11{height:37.206973px;}
.h19{height:38.896243px;}
.h1a{height:39.057638px;}
.ha{height:39.165235px;}
.h3{height:39.402747px;}
.h28{height:39.488026px;}
.h4{height:41.001535px;}
.h1e{height:41.352187px;}
.h2c{height:43.122063px;}
.hb{height:43.217759px;}
.hc{height:43.516637px;}
.h5{height:43.875290px;}
.h27{height:49.002344px;}
.h29{height:49.008344px;}
.h2{height:50.931027px;}
.h8{height:54.541601px;}
.h7{height:54.547601px;}
.h1b{height:54.768749px;}
.h2a{height:54.774749px;}
.h12{height:64.328619px;}
.h23{height:65.980614px;}
.h6{height:77.792486px;}
.h1c{height:491.657400px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:14.947920px;}
.w2{width:215.864690px;}
.w3{width:268.037640px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x53{left:-123.322680px;}
.x55{left:-98.471880px;}
.x57{left:-20.198880px;}
.x58{left:-15.916680px;}
.x0{left:0.000000px;}
.x2{left:59.014071px;}
.x3{left:113.754000px;}
.x1{left:114.802500px;}
.x6{left:122.110500px;}
.x4{left:123.307500px;}
.x5f{left:124.474140px;}
.x24{left:129.645150px;}
.x26{left:136.600950px;}
.x5{left:146.170500px;}
.x37{left:153.714000px;}
.x38{left:162.943500px;}
.x42{left:168.060000px;}
.x43{left:178.225500px;}
.x40{left:188.569500px;}
.x7{left:192.291000px;}
.x82{left:193.585500px;}
.x5e{left:197.545500px;}
.xc{left:200.011500px;}
.x64{left:201.354000px;}
.x5b{left:203.935500px;}
.xd{left:207.483000px;}
.x83{left:208.528500px;}
.x1f{left:209.529000px;}
.x6a{left:214.143000px;}
.x20{left:216.171000px;}
.x3b{left:218.805000px;}
.x5d{left:222.228000px;}
.x21{left:224.850000px;}
.x3c{left:225.901500px;}
.x4b{left:227.049000px;}
.x3f{left:228.213000px;}
.x25{left:238.192500px;}
.x6d{left:240.063000px;}
.x22{left:241.153500px;}
.x56{left:242.770320px;}
.x6f{left:243.949500px;}
.x27{left:246.276300px;}
.x5c{left:248.071500px;}
.x59{left:249.860520px;}
.xa0{left:252.858000px;}
.x5a{left:256.318920px;}
.x70{left:258.894000px;}
.x6e{left:262.629000px;}
.x9f{left:264.760500px;}
.x54{left:268.252920px;}
.x8d{left:270.444000px;}
.x23{left:271.849500px;}
.x33{left:274.134000px;}
.x34{left:283.365000px;}
.x14{left:295.272000px;}
.x46{left:299.902500px;}
.x15{left:302.745000px;}
.x47{left:311.229000px;}
.x52{left:312.438000px;}
.x4e{left:317.950500px;}
.x10{left:320.089500px;}
.x76{left:324.009000px;}
.x11{left:327.562500px;}
.x12{left:331.372500px;}
.x4f{left:333.930000px;}
.x13{left:338.844000px;}
.x77{left:342.625500px;}
.x69{left:349.240500px;}
.x79{left:352.180500px;}
.x78{left:357.568500px;}
.x16{left:363.330000px;}
.x7c{left:364.455000px;}
.xa{left:367.045500px;}
.x17{left:370.801500px;}
.x73{left:373.138500px;}
.xb{left:374.517000px;}
.x66{left:375.978000px;}
.x7d{left:379.398000px;}
.x74{left:380.610000px;}
.x18{left:381.984000px;}
.x19{left:389.403000px;}
.x67{left:395.931000px;}
.x60{left:397.011000px;}
.x1a{left:404.347500px;}
.x68{left:410.875500px;}
.x93{left:417.331500px;}
.x3d{left:423.004500px;}
.x3e{left:430.101000px;}
.x44{left:434.775000px;}
.x45{left:448.386000px;}
.x29{left:464.550000px;}
.x2a{left:471.648000px;}
.x65{left:489.583500px;}
.x89{left:501.454500px;}
.x50{left:504.310500px;}
.x8a{left:516.399000px;}
.x51{left:520.290000px;}
.x35{left:525.103500px;}
.x36{left:534.333000px;}
.x8b{left:538.800000px;}
.x7e{left:543.304500px;}
.x28{left:552.703500px;}
.x8c{left:553.744500px;}
.x7f{left:558.249000px;}
.x7a{left:563.326500px;}
.x8{left:565.476000px;}
.x2f{left:568.314000px;}
.x9{left:571.902000px;}
.x7b{left:578.269500px;}
.x30{left:583.777500px;}
.x85{left:585.177000px;}
.x95{left:590.311500px;}
.x86{left:600.120000px;}
.x87{left:603.927000px;}
.x80{left:609.586500px;}
.x9e{left:614.494500px;}
.x96{left:617.211000px;}
.x88{left:618.871500px;}
.x71{left:622.918500px;}
.x81{left:624.529500px;}
.x92{left:630.027000px;}
.x72{left:637.863000px;}
.x6b{left:640.944000px;}
.x4c{left:646.753500px;}
.x1b{left:654.025500px;}
.x6c{left:655.887000px;}
.x4d{left:656.917500px;}
.x1c{left:660.666000px;}
.x48{left:668.185500px;}
.x1d{left:669.408000px;}
.x2b{left:670.815000px;}
.x8e{left:678.000000px;}
.x49{left:679.512000px;}
.x2c{left:682.851000px;}
.x1e{left:685.710000px;}
.x9b{left:688.978500px;}
.x98{left:690.048000px;}
.xe{left:691.810500px;}
.x9d{left:694.374000px;}
.x94{left:697.144500px;}
.xf{left:699.282000px;}
.x39{left:701.736000px;}
.x8f{left:704.899500px;}
.x3a{left:708.832500px;}
.x41{left:711.030000px;}
.x9c{left:715.878000px;}
.x99{left:716.947500px;}
.x84{left:724.129500px;}
.x91{left:728.350500px;}
.x61{left:733.582500px;}
.x31{left:745.882500px;}
.x62{left:748.527000px;}
.x97{left:749.598000px;}
.x9a{left:754.365000px;}
.x63{left:756.148500px;}
.x75{left:757.243500px;}
.x32{left:761.694000px;}
.x2d{left:768.103500px;}
.x4a{left:771.684000px;}
.x2e{left:774.529500px;}
.x90{left:776.362500px;}
@media print{
.v2{vertical-align:-17.360000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.022400pt;}
.v7{vertical-align:15.276800pt;}
.v6{vertical-align:17.360000pt;}
.v1{vertical-align:19.290667pt;}
.v3{vertical-align:25.579200pt;}
.v5{vertical-align:27.956922pt;}
.ls28{letter-spacing:-0.104208pt;}
.ls2e{letter-spacing:-0.087535pt;}
.ls25{letter-spacing:-0.062525pt;}
.ls24{letter-spacing:-0.059754pt;}
.ls32{letter-spacing:-0.050020pt;}
.ls2b{letter-spacing:-0.037515pt;}
.ls34{letter-spacing:-0.033347pt;}
.ls2f{letter-spacing:-0.029178pt;}
.ls2c{letter-spacing:-0.025010pt;}
.ls29{letter-spacing:-0.020842pt;}
.ls23{letter-spacing:-0.019918pt;}
.ls2d{letter-spacing:-0.012505pt;}
.ls26{letter-spacing:-0.004168pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.000551pt;}
.ls41{letter-spacing:0.003055pt;}
.lsd{letter-spacing:0.003744pt;}
.ls13{letter-spacing:0.004168pt;}
.ls31{letter-spacing:0.008337pt;}
.lsc{letter-spacing:0.011232pt;}
.ls16{letter-spacing:0.012505pt;}
.lsf{letter-spacing:0.014976pt;}
.ls17{letter-spacing:0.020842pt;}
.ls10{letter-spacing:0.022464pt;}
.ls1a{letter-spacing:0.025010pt;}
.ls30{letter-spacing:0.029178pt;}
.lse{letter-spacing:0.037440pt;}
.ls14{letter-spacing:0.037515pt;}
.ls12{letter-spacing:0.045852pt;}
.ls18{letter-spacing:0.048672pt;}
.ls15{letter-spacing:0.050020pt;}
.ls27{letter-spacing:0.054188pt;}
.ls1c{letter-spacing:0.062525pt;}
.ls11{letter-spacing:0.066693pt;}
.ls2a{letter-spacing:0.075030pt;}
.ls19{letter-spacing:0.083366pt;}
.ls21{letter-spacing:0.112545pt;}
.ls1f{letter-spacing:0.116713pt;}
.ls33{letter-spacing:0.120881pt;}
.lsb{letter-spacing:0.126148pt;}
.lsa{letter-spacing:0.132787pt;}
.ls39{letter-spacing:2.337749pt;}
.ls22{letter-spacing:2.656533pt;}
.ls0{letter-spacing:2.657067pt;}
.ls1{letter-spacing:2.665203pt;}
.ls5{letter-spacing:10.631867pt;}
.ls3b{letter-spacing:11.549562pt;}
.ls45{letter-spacing:11.726274pt;}
.ls47{letter-spacing:11.937920pt;}
.ls3c{letter-spacing:11.954133pt;}
.ls3e{letter-spacing:11.959467pt;}
.ls40{letter-spacing:12.061027pt;}
.ls43{letter-spacing:12.095824pt;}
.ls46{letter-spacing:12.128896pt;}
.ls42{letter-spacing:12.353297pt;}
.ls3f{letter-spacing:13.069637pt;}
.ls37{letter-spacing:13.207551pt;}
.ls38{letter-spacing:13.281867pt;}
.ls35{letter-spacing:13.285772pt;}
.ls7{letter-spacing:13.297696pt;}
.ls9{letter-spacing:13.396465pt;}
.ls3d{letter-spacing:13.817349pt;}
.ls36{letter-spacing:15.937067pt;}
.ls44{letter-spacing:16.902316pt;}
.ls4{letter-spacing:19.155749pt;}
.ls3{letter-spacing:59.775565pt;}
.ls2{letter-spacing:62.432533pt;}
.ls3a{letter-spacing:68.335819pt;}
.ls1e{letter-spacing:243.521591pt;}
.ls1b{letter-spacing:479.240087pt;}
.ls1d{letter-spacing:527.680134pt;}
.ls20{letter-spacing:661.516552pt;}
.ws28{word-spacing:-13.283467pt;}
.ws2{word-spacing:-12.760670pt;}
.ws6e{word-spacing:-11.955200pt;}
.ws23{word-spacing:-10.626800pt;}
.ws6c{word-spacing:-10.483325pt;}
.ws6a{word-spacing:-10.470820pt;}
.ws66{word-spacing:-10.466652pt;}
.ws6b{word-spacing:-10.408295pt;}
.ws67{word-spacing:-10.399958pt;}
.ws69{word-spacing:-10.391622pt;}
.ws68{word-spacing:-10.333265pt;}
.ws1{word-spacing:-10.095467pt;}
.ws65{word-spacing:-8.431987pt;}
.wsa{word-spacing:-2.975497pt;}
.ws43{word-spacing:-2.762961pt;}
.ws103{word-spacing:-2.630144pt;}
.ws10f{word-spacing:-2.391040pt;}
.ws47{word-spacing:-2.178489pt;}
.wsf4{word-spacing:-2.125355pt;}
.ws117{word-spacing:-1.769370pt;}
.ws131{word-spacing:-1.625907pt;}
.ws97{word-spacing:-1.277443pt;}
.ws96{word-spacing:-1.275213pt;}
.ws82{word-spacing:-1.237991pt;}
.ws81{word-spacing:-1.179635pt;}
.ws118{word-spacing:-1.099878pt;}
.ws135{word-spacing:-1.052058pt;}
.wsdb{word-spacing:-0.743874pt;}
.wsfd{word-spacing:-0.573850pt;}
.ws44{word-spacing:-0.425071pt;}
.wsff{word-spacing:-0.382566pt;}
.wsc4{word-spacing:-0.371937pt;}
.ws25{word-spacing:-0.318803pt;}
.ws94{word-spacing:-0.300119pt;}
.ws95{word-spacing:-0.295951pt;}
.wseb{word-spacing:-0.278401pt;}
.ws42{word-spacing:-0.265669pt;}
.ws80{word-spacing:-0.250099pt;}
.ws12d{word-spacing:-0.239104pt;}
.wsf1{word-spacing:-0.214578pt;}
.ws24{word-spacing:-0.212535pt;}
.ws78{word-spacing:-0.192541pt;}
.ws107{word-spacing:-0.191283pt;}
.ws8f{word-spacing:-0.187574pt;}
.ws79{word-spacing:-0.185902pt;}
.ws130{word-spacing:-0.172844pt;}
.wsb4{word-spacing:-0.162872pt;}
.ws20{word-spacing:-0.159402pt;}
.ws6d{word-spacing:-0.143462pt;}
.ws7f{word-spacing:-0.120881pt;}
.ws9{word-spacing:-0.106268pt;}
.wsd1{word-spacing:-0.103119pt;}
.ws114{word-spacing:-0.095642pt;}
.ws92{word-spacing:-0.054188pt;}
.ws21{word-spacing:-0.053134pt;}
.ws126{word-spacing:-0.047821pt;}
.ws36{word-spacing:-0.042507pt;}
.ws77{word-spacing:-0.039836pt;}
.wsce{word-spacing:-0.024664pt;}
.wsd0{word-spacing:-0.024619pt;}
.wscf{word-spacing:-0.020251pt;}
.ws71{word-spacing:-0.009583pt;}
.ws74{word-spacing:-0.007228pt;}
.wsb0{word-spacing:-0.007083pt;}
.ws73{word-spacing:-0.006340pt;}
.ws70{word-spacing:-0.005956pt;}
.ws138{word-spacing:-0.005828pt;}
.ws75{word-spacing:-0.005760pt;}
.wsb5{word-spacing:-0.005715pt;}
.ws6f{word-spacing:-0.005188pt;}
.ws76{word-spacing:-0.004924pt;}
.wsb3{word-spacing:-0.004852pt;}
.ws13d{word-spacing:-0.004011pt;}
.wsdd{word-spacing:-0.003947pt;}
.ws3b{word-spacing:-0.003172pt;}
.ws110{word-spacing:-0.003081pt;}
.ws72{word-spacing:-0.002859pt;}
.ws13b{word-spacing:-0.001843pt;}
.ws4c{word-spacing:-0.001818pt;}
.ws3a{word-spacing:-0.001812pt;}
.wsad{word-spacing:-0.001333pt;}
.wsb1{word-spacing:-0.001183pt;}
.wsb2{word-spacing:-0.001149pt;}
.ws64{word-spacing:-0.000928pt;}
.wsbc{word-spacing:-0.000845pt;}
.ws4d{word-spacing:-0.000375pt;}
.ws4a{word-spacing:-0.000256pt;}
.ws0{word-spacing:0.000000pt;}
.ws63{word-spacing:0.001019pt;}
.wsb6{word-spacing:0.001728pt;}
.wsdc{word-spacing:0.001859pt;}
.ws29{word-spacing:0.006377pt;}
.ws2b{word-spacing:0.007494pt;}
.ws2a{word-spacing:0.012734pt;}
.wsef{word-spacing:0.041230pt;}
.ws90{word-spacing:0.041683pt;}
.ws8c{word-spacing:0.045852pt;}
.wsbd{word-spacing:0.047821pt;}
.ws26{word-spacing:0.053134pt;}
.ws8e{word-spacing:0.078624pt;}
.wsf7{word-spacing:0.095642pt;}
.ws93{word-spacing:0.100040pt;}
.ws7e{word-spacing:0.104832pt;}
.ws31{word-spacing:0.106268pt;}
.ws91{word-spacing:0.116713pt;}
.ws8d{word-spacing:0.123552pt;}
.ws129{word-spacing:0.137063pt;}
.ws4{word-spacing:0.143462pt;}
.ws30{word-spacing:0.159402pt;}
.ws132{word-spacing:0.191283pt;}
.ws9d{word-spacing:0.195769pt;}
.ws9f{word-spacing:0.208824pt;}
.wsa0{word-spacing:0.210906pt;}
.ws8{word-spacing:0.212535pt;}
.ws9e{word-spacing:0.226940pt;}
.ws123{word-spacing:0.239104pt;}
.ws38{word-spacing:0.265669pt;}
.wse0{word-spacing:0.267902pt;}
.ws121{word-spacing:0.286925pt;}
.ws2d{word-spacing:0.318803pt;}
.ws11d{word-spacing:0.334746pt;}
.ws2c{word-spacing:0.371937pt;}
.ws122{word-spacing:0.382566pt;}
.ws53{word-spacing:0.425071pt;}
.ws3{word-spacing:0.494387pt;}
.wsa1{word-spacing:0.584473pt;}
.wsa2{word-spacing:0.606205pt;}
.ws11b{word-spacing:0.621670pt;}
.ws10{word-spacing:0.733152pt;}
.wsf{word-spacing:0.743874pt;}
.ws139{word-spacing:0.765133pt;}
.wsc1{word-spacing:0.797008pt;}
.ws109{word-spacing:0.860774pt;}
.ws7d{word-spacing:0.861120pt;}
.ws4e{word-spacing:0.956410pt;}
.wscd{word-spacing:0.977447pt;}
.ws133{word-spacing:1.052058pt;}
.ws7c{word-spacing:1.089504pt;}
.ws10b{word-spacing:1.099878pt;}
.ws7a{word-spacing:1.115712pt;}
.ws35{word-spacing:1.115811pt;}
.ws7b{word-spacing:1.123200pt;}
.ws48{word-spacing:1.328347pt;}
.wsed{word-spacing:1.381481pt;}
.ws106{word-spacing:1.434624pt;}
.ws13f{word-spacing:1.482445pt;}
.wsa4{word-spacing:1.487748pt;}
.wsa5{word-spacing:1.498036pt;}
.wsa9{word-spacing:1.507565pt;}
.wsaa{word-spacing:1.511686pt;}
.wsa7{word-spacing:1.528020pt;}
.ws104{word-spacing:1.530266pt;}
.ws37{word-spacing:1.594016pt;}
.ws5c{word-spacing:1.753418pt;}
.ws60{word-spacing:1.754016pt;}
.ws5d{word-spacing:1.757190pt;}
.ws5f{word-spacing:1.758404pt;}
.ws62{word-spacing:1.762300pt;}
.ws61{word-spacing:1.771597pt;}
.ws1f{word-spacing:1.806551pt;}
.wsd8{word-spacing:1.832792pt;}
.wsd6{word-spacing:1.837088pt;}
.wsd7{word-spacing:1.844148pt;}
.wsd9{word-spacing:1.850355pt;}
.wsda{word-spacing:1.956758pt;}
.ws12c{word-spacing:1.960653pt;}
.ws40{word-spacing:1.965953pt;}
.wsc5{word-spacing:2.019087pt;}
.ws85{word-spacing:2.025804pt;}
.ws120{word-spacing:2.056294pt;}
.ws86{word-spacing:2.100833pt;}
.ws54{word-spacing:2.178489pt;}
.wsa6{word-spacing:2.392212pt;}
.wsa8{word-spacing:2.398498pt;}
.wsec{word-spacing:2.444158pt;}
.wsbe{word-spacing:2.524938pt;}
.wsdf{word-spacing:2.550426pt;}
.ws22{word-spacing:2.550432pt;}
.wsfb{word-spacing:2.630144pt;}
.ws128{word-spacing:2.725786pt;}
.ws5b{word-spacing:2.768682pt;}
.ws5e{word-spacing:2.769740pt;}
.ws108{word-spacing:2.821427pt;}
.ws88{word-spacing:2.826121pt;}
.ws137{word-spacing:2.858957pt;}
.ws10d{word-spacing:2.863855pt;}
.ws11c{word-spacing:2.866944pt;}
.ws127{word-spacing:2.867507pt;}
.ws7{word-spacing:2.869229pt;}
.wsfe{word-spacing:2.869248pt;}
.ws116{word-spacing:2.870007pt;}
.ws119{word-spacing:2.917069pt;}
.ws105{word-spacing:2.964890pt;}
.wsf3{word-spacing:2.975497pt;}
.ws136{word-spacing:3.012710pt;}
.ws8a{word-spacing:3.013695pt;}
.ws89{word-spacing:3.026200pt;}
.wsc8{word-spacing:3.028630pt;}
.ws8b{word-spacing:3.034537pt;}
.ws11e{word-spacing:3.060531pt;}
.ws87{word-spacing:3.088725pt;}
.ws12a{word-spacing:3.108352pt;}
.wsee{word-spacing:3.134898pt;}
.ws125{word-spacing:3.156173pt;}
.ws1b{word-spacing:3.185311pt;}
.ws115{word-spacing:3.251814pt;}
.ws27{word-spacing:3.347434pt;}
.wsde{word-spacing:3.453701pt;}
.ws2f{word-spacing:3.719371pt;}
.ws2e{word-spacing:3.772505pt;}
.ws52{word-spacing:3.825638pt;}
.ws101{word-spacing:3.825664pt;}
.ws12f{word-spacing:3.921306pt;}
.ws4f{word-spacing:3.931906pt;}
.ws111{word-spacing:3.969126pt;}
.ws112{word-spacing:4.016947pt;}
.ws33{word-spacing:4.038174pt;}
.wse5{word-spacing:4.058762pt;}
.wse3{word-spacing:4.071094pt;}
.wse4{word-spacing:4.078827pt;}
.wse6{word-spacing:4.091308pt;}
.ws3e{word-spacing:4.144442pt;}
.ws12b{word-spacing:4.399514pt;}
.ws34{word-spacing:4.410111pt;}
.ws50{word-spacing:4.463245pt;}
.ws98{word-spacing:4.516379pt;}
.ws99{word-spacing:4.538231pt;}
.wsd{word-spacing:4.569513pt;}
.wse{word-spacing:4.593577pt;}
.ws49{word-spacing:4.622646pt;}
.wsd2{word-spacing:4.661954pt;}
.wsd5{word-spacing:4.662693pt;}
.wsd3{word-spacing:4.663854pt;}
.wsd4{word-spacing:4.675780pt;}
.wsea{word-spacing:4.728914pt;}
.wsf0{word-spacing:4.782048pt;}
.ws9c{word-spacing:4.935292pt;}
.ws9b{word-spacing:4.941450pt;}
.wscc{word-spacing:4.994583pt;}
.ws124{word-spacing:5.260288pt;}
.wsb{word-spacing:5.313387pt;}
.ws41{word-spacing:5.472788pt;}
.ws11{word-spacing:5.632190pt;}
.ws12{word-spacing:5.643512pt;}
.ws11f{word-spacing:5.738496pt;}
.ws10a{word-spacing:5.834138pt;}
.wsba{word-spacing:5.950993pt;}
.wse1{word-spacing:6.004127pt;}
.ws3d{word-spacing:6.163529pt;}
.ws3c{word-spacing:6.216662pt;}
.ws45{word-spacing:6.269796pt;}
.wse2{word-spacing:6.278532pt;}
.wsb9{word-spacing:6.358497pt;}
.wsb8{word-spacing:6.360177pt;}
.wsb7{word-spacing:6.376064pt;}
.ws134{word-spacing:6.455808pt;}
.wsa3{word-spacing:6.535466pt;}
.ws5{word-spacing:6.588599pt;}
.wsae{word-spacing:6.601074pt;}
.wsaf{word-spacing:6.641733pt;}
.wsc3{word-spacing:6.694867pt;}
.ws100{word-spacing:6.886195pt;}
.wse7{word-spacing:7.013670pt;}
.ws12e{word-spacing:7.268762pt;}
.wsc{word-spacing:7.279340pt;}
.ws13e{word-spacing:7.316582pt;}
.ws13c{word-spacing:7.507866pt;}
.ws3f{word-spacing:7.704411pt;}
.wsf2{word-spacing:7.810678pt;}
.wsc7{word-spacing:7.863812pt;}
.ws13{word-spacing:7.904390pt;}
.ws14{word-spacing:7.905551pt;}
.ws15{word-spacing:7.916946pt;}
.wsfc{word-spacing:7.938253pt;}
.ws1d{word-spacing:7.970080pt;}
.wsca{word-spacing:8.023214pt;}
.ws6{word-spacing:8.076348pt;}
.wscb{word-spacing:8.713954pt;}
.wse9{word-spacing:8.873356pt;}
.wsf5{word-spacing:9.351561pt;}
.ws10e{word-spacing:9.420698pt;}
.wsbb{word-spacing:9.776631pt;}
.wsac{word-spacing:10.042301pt;}
.wsab{word-spacing:10.057629pt;}
.ws1e{word-spacing:10.254836pt;}
.ws32{word-spacing:10.414238pt;}
.ws11a{word-spacing:10.472755pt;}
.wse8{word-spacing:11.530049pt;}
.ws1a{word-spacing:11.583183pt;}
.ws51{word-spacing:11.742585pt;}
.ws13a{word-spacing:12.050842pt;}
.ws18{word-spacing:12.220789pt;}
.ws17{word-spacing:12.239637pt;}
.ws16{word-spacing:12.273923pt;}
.ws58{word-spacing:12.752128pt;}
.ws59{word-spacing:12.757839pt;}
.ws57{word-spacing:12.763933pt;}
.wsc9{word-spacing:12.858396pt;}
.wsc2{word-spacing:13.602270pt;}
.ws84{word-spacing:13.976377pt;}
.ws83{word-spacing:14.047238pt;}
.ws113{word-spacing:14.107136pt;}
.wsc6{word-spacing:14.558679pt;}
.ws102{word-spacing:14.728806pt;}
.ws10c{word-spacing:16.163430pt;}
.wsfa{word-spacing:16.211251pt;}
.ws46{word-spacing:16.258963pt;}
.wsf6{word-spacing:16.259072pt;}
.wsf9{word-spacing:16.641638pt;}
.wsf8{word-spacing:17.215488pt;}
.ws9a{word-spacing:17.268507pt;}
.ws1c{word-spacing:19.659531pt;}
.ws55{word-spacing:19.978334pt;}
.ws56{word-spacing:20.031468pt;}
.ws19{word-spacing:25.344854pt;}
.ws5a{word-spacing:41.922621pt;}
.ws39{word-spacing:51.672461pt;}
.wsbf{word-spacing:328.199889pt;}
.wsc0{word-spacing:342.255378pt;}
.ws4b{word-spacing:814.483866pt;}
._5{margin-left:-6.168883pt;}
._4{margin-left:-5.092017pt;}
._14{margin-left:-3.910662pt;}
._2{margin-left:-2.922363pt;}
._36{margin-left:-1.912819pt;}
._1{margin-left:-0.944910pt;}
._3b{width:0.892994pt;}
._3{width:2.667337pt;}
._35{width:3.897407pt;}
._0{width:9.035708pt;}
._12{width:10.626800pt;}
._6f{width:11.668275pt;}
._37{width:12.583892pt;}
._7{width:13.963674pt;}
._6{width:15.068846pt;}
._c{width:16.300597pt;}
._17{width:18.012381pt;}
._16{width:19.010425pt;}
._d{width:19.978334pt;}
._8{width:21.613984pt;}
._9{width:22.635027pt;}
._6e{width:23.737234pt;}
._b{width:24.779017pt;}
._6a{width:26.622411pt;}
._10{width:27.842146pt;}
._34{width:28.756921pt;}
._e{width:30.805629pt;}
._68{width:31.986588pt;}
._f{width:33.270342pt;}
._32{width:35.481923pt;}
._4c{width:36.544601pt;}
._33{width:39.404995pt;}
._a{width:40.465007pt;}
._6c{width:43.325645pt;}
._69{width:44.241876pt;}
._11{width:47.661078pt;}
._67{width:55.471757pt;}
._6b{width:57.862110pt;}
._26{width:59.854065pt;}
._19{width:64.419400pt;}
._27{width:78.201354pt;}
._2f{width:81.552513pt;}
._18{width:85.862246pt;}
._5b{width:86.981179pt;}
._2e{width:138.713795pt;}
._62{width:179.309754pt;}
._49{width:203.954091pt;}
._2d{width:228.320410pt;}
._2a{width:238.864896pt;}
._44{width:241.158673pt;}
._28{width:247.042253pt;}
._42{width:248.438639pt;}
._25{width:257.715855pt;}
._2c{width:273.295872pt;}
._30{width:277.771899pt;}
._29{width:299.291259pt;}
._4f{width:320.748377pt;}
._48{width:323.458270pt;}
._46{width:328.766379pt;}
._5e{width:338.720465pt;}
._31{width:346.935122pt;}
._3e{width:351.100463pt;}
._51{width:352.775954pt;}
._40{width:360.662852pt;}
._4e{width:368.135995pt;}
._13{width:380.067728pt;}
._3d{width:382.280796pt;}
._1a{width:390.786796pt;}
._2b{width:401.434337pt;}
._4a{width:409.248785pt;}
._3f{width:413.793382pt;}
._38{width:421.014323pt;}
._22{width:426.085719pt;}
._1c{width:473.241810pt;}
._1d{width:475.558728pt;}
._4b{width:486.294639pt;}
._1b{width:494.003210pt;}
._20{width:496.683566pt;}
._47{width:503.266099pt;}
._1f{width:512.720271pt;}
._24{width:517.308677pt;}
._23{width:519.716454pt;}
._1e{width:527.348654pt;}
._57{width:532.088652pt;}
._21{width:535.753160pt;}
._52{width:537.306857pt;}
._55{width:542.609228pt;}
._5a{width:543.829615pt;}
._41{width:574.949478pt;}
._39{width:607.658906pt;}
._3a{width:624.300544pt;}
._5d{width:646.847095pt;}
._45{width:668.056576pt;}
._5c{width:677.945917pt;}
._4d{width:693.558452pt;}
._5f{width:695.283827pt;}
._60{width:716.619555pt;}
._50{width:717.545366pt;}
._43{width:728.932454pt;}
._58{width:736.229908pt;}
._64{width:749.738328pt;}
._63{width:770.737398pt;}
._66{width:775.492698pt;}
._53{width:793.924747pt;}
._65{width:798.301307pt;}
._56{width:801.625809pt;}
._54{width:830.031364pt;}
._59{width:836.974944pt;}
._3c{width:1081.863794pt;}
._6d{width:1362.876699pt;}
._15{width:1384.130299pt;}
._61{width:1612.426311pt;}
.fse{font-size:24.960000pt;}
.fs10{font-size:32.730368pt;}
.fsa{font-size:33.196800pt;}
.fs5{font-size:37.193600pt;}
.fsc{font-size:37.440000pt;}
.fs4{font-size:40.381867pt;}
.fsd{font-size:41.683200pt;}
.fsf{font-size:42.082304pt;}
.fs7{font-size:42.507200pt;}
.fs9{font-size:43.038720pt;}
.fs8{font-size:45.429760pt;}
.fs6{font-size:47.820800pt;}
.fsb{font-size:49.920000pt;}
.fs0{font-size:50.395200pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:53.754880pt;}
.fs3{font-size:95.641600pt;}
.yd7{bottom:-287.525075pt;}
.yd6{bottom:-273.485131pt;}
.yd5{bottom:-259.507712pt;}
.yd4{bottom:-245.467768pt;}
.yd2{bottom:-231.365368pt;}
.yd3{bottom:-228.744568pt;}
.yd1{bottom:-216.825577pt;}
.yd0{bottom:-209.774864pt;}
.ycf{bottom:-181.757368pt;}
.yce{bottom:-155.549064pt;}
.ycd{bottom:-141.509120pt;}
.ycc{bottom:-127.469177pt;}
.ycb{bottom:-113.429233pt;}
.yca{bottom:-99.389289pt;}
.yc9{bottom:-79.109370pt;}
.yc8{bottom:-58.829451pt;}
.yc7{bottom:-32.683664pt;}
.yc6{bottom:-32.683456pt;}
.yc5{bottom:-19.080568pt;}
.yc4{bottom:-0.235768pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:5.644850pt;}
.y3{bottom:18.051729pt;}
.y2{bottom:32.990462pt;}
.y31{bottom:56.693333pt;}
.y1cd{bottom:96.850667pt;}
.y14c{bottom:101.472000pt;}
.yf0{bottom:104.342667pt;}
.y1cc{bottom:114.066667pt;}
.y30{bottom:117.034667pt;}
.yef{bottom:119.021333pt;}
.y14b{bottom:119.484000pt;}
.y61{bottom:130.757333pt;}
.y1cb{bottom:131.281333pt;}
.yee{bottom:133.700000pt;}
.y2f{bottom:135.046667pt;}
.y92{bottom:136.670667pt;}
.y14a{bottom:137.496000pt;}
.y199{bottom:138.296000pt;}
.y169{bottom:142.570667pt;}
.yed{bottom:148.484000pt;}
.y1ca{bottom:148.497333pt;}
.y60{bottom:148.769333pt;}
.y11f{bottom:151.650667pt;}
.y2e{bottom:153.060000pt;}
.y91{bottom:154.684000pt;}
.y149{bottom:155.509333pt;}
.y198{bottom:155.510667pt;}
.y168{bottom:160.584000pt;}
.y1c9{bottom:165.713333pt;}
.y5f{bottom:166.781333pt;}
.yec{bottom:169.738667pt;}
.y11e{bottom:170.071733pt;}
.y2d{bottom:171.072000pt;}
.y8f{bottom:172.696000pt;}
.y197{bottom:172.726667pt;}
.y148{bottom:173.521333pt;}
.y90{bottom:177.517333pt;}
.y167{bottom:178.596000pt;}
.yc1{bottom:181.601333pt;}
.y1c8{bottom:182.928000pt;}
.y11d{bottom:182.988960pt;}
.yeb{bottom:184.416000pt;}
.y5e{bottom:184.794667pt;}
.y2c{bottom:189.084000pt;}
.y196{bottom:189.941333pt;}
.y8d{bottom:190.708000pt;}
.y147{bottom:191.534667pt;}
.y8e{bottom:195.530667pt;}
.y11c{bottom:195.905013pt;}
.y166{bottom:196.608000pt;}
.yea{bottom:199.094667pt;}
.yc0{bottom:199.613333pt;}
.y1c7{bottom:200.144000pt;}
.y5d{bottom:202.806667pt;}
.y2b{bottom:207.097333pt;}
.y195{bottom:207.157333pt;}
.y8c{bottom:208.721333pt;}
.y11b{bottom:208.822240pt;}
.y146{bottom:209.546667pt;}
.ye9{bottom:213.773333pt;}
.y165{bottom:214.621333pt;}
.y1c6{bottom:217.358667pt;}
.ybf{bottom:217.626667pt;}
.y11a{bottom:221.739467pt;}
.y194{bottom:224.373333pt;}
.y8b{bottom:226.733333pt;}
.y145{bottom:227.558667pt;}
.ye8{bottom:228.557333pt;}
.y164{bottom:232.633333pt;}
.y2a{bottom:233.080000pt;}
.y1c5{bottom:234.574667pt;}
.y119{bottom:234.750560pt;}
.ybe{bottom:235.638667pt;}
.y193{bottom:241.588000pt;}
.y5c{bottom:244.169800pt;}
.y8a{bottom:244.746667pt;}
.y144{bottom:245.572000pt;}
.ye7{bottom:249.812000pt;}
.y163{bottom:250.646667pt;}
.y1c4{bottom:251.790667pt;}
.y118{bottom:253.453493pt;}
.ybd{bottom:253.652000pt;}
.y5b{bottom:258.113267pt;}
.y192{bottom:258.804000pt;}
.y89{bottom:262.758667pt;}
.y143{bottom:263.584000pt;}
.ye6{bottom:264.489333pt;}
.y117{bottom:266.369547pt;}
.y162{bottom:268.658667pt;}
.y1c3{bottom:269.005333pt;}
.y5a{bottom:272.058000pt;}
.y1d0{bottom:274.148000pt;}
.y191{bottom:276.018667pt;}
.ye5{bottom:279.168000pt;}
.y116{bottom:279.286773pt;}
.ybc{bottom:279.634667pt;}
.y88{bottom:280.770667pt;}
.y142{bottom:281.597333pt;}
.y59{bottom:286.002733pt;}
.y1c2{bottom:286.221333pt;}
.y161{bottom:286.670667pt;}
.y1cf{bottom:291.362667pt;}
.y115{bottom:292.204000pt;}
.y190{bottom:293.234667pt;}
.ye4{bottom:293.846667pt;}
.y87{bottom:298.784000pt;}
.y141{bottom:299.609333pt;}
.y58{bottom:299.947467pt;}
.y29{bottom:300.998667pt;}
.y1c1{bottom:303.437333pt;}
.y114{bottom:305.121227pt;}
.y1ce{bottom:308.578667pt;}
.ye3{bottom:308.630667pt;}
.y18f{bottom:310.450667pt;}
.ybb{bottom:310.585333pt;}
.y160{bottom:312.653333pt;}
.y57{bottom:313.890933pt;}
.y140{bottom:317.621333pt;}
.y113{bottom:318.037280pt;}
.y1c0{bottom:320.652000pt;}
.y86{bottom:324.766667pt;}
.y18e{bottom:327.665333pt;}
.ye2{bottom:329.885333pt;}
.y112{bottom:331.048373pt;}
.y56{bottom:334.170267pt;}
.y28{bottom:334.950667pt;}
.y13f{bottom:335.634667pt;}
.y1bf{bottom:337.868000pt;}
.yba{bottom:341.536000pt;}
.y15f{bottom:343.604000pt;}
.ye1{bottom:344.669333pt;}
.y18d{bottom:344.881333pt;}
.y111{bottom:349.751307pt;}
.y27{bottom:352.964000pt;}
.y13e{bottom:353.646667pt;}
.y1be{bottom:355.082667pt;}
.y85{bottom:355.717333pt;}
.yb8{bottom:359.548000pt;}
.y15e{bottom:361.617333pt;}
.y18c{bottom:362.096000pt;}
.y110{bottom:362.668533pt;}
.yb9{bottom:364.369333pt;}
.ye0{bottom:365.922667pt;}
.y55{bottom:366.838667pt;}
.y26{bottom:370.976000pt;}
.y13d{bottom:371.660000pt;}
.y1bd{bottom:372.298667pt;}
.y84{bottom:373.729333pt;}
.y10f{bottom:375.585760pt;}
.yb7{bottom:377.560000pt;}
.y18b{bottom:379.312000pt;}
.y15d{bottom:379.629333pt;}
.ydf{bottom:380.601333pt;}
.y10e{bottom:388.502987pt;}
.y25{bottom:388.988000pt;}
.y1bc{bottom:389.514667pt;}
.y13c{bottom:389.672000pt;}
.y83{bottom:391.742667pt;}
.yde{bottom:395.280000pt;}
.yb6{bottom:395.573333pt;}
.y18a{bottom:396.528000pt;}
.y15c{bottom:397.642667pt;}
.y54{bottom:399.821333pt;}
.y10d{bottom:401.419040pt;}
.y1bb{bottom:406.729333pt;}
.y24{bottom:407.001333pt;}
.y13b{bottom:407.684000pt;}
.y82{bottom:409.754667pt;}
.ydd{bottom:409.958667pt;}
.yb5{bottom:413.585333pt;}
.y189{bottom:413.742667pt;}
.y10c{bottom:414.336267pt;}
.y15b{bottom:415.654667pt;}
.y53{bottom:417.833333pt;}
.y1ba{bottom:423.945333pt;}
.ydc{bottom:424.742667pt;}
.y23{bottom:425.013333pt;}
.y13a{bottom:425.697333pt;}
.y10b{bottom:427.347360pt;}
.y80{bottom:427.766667pt;}
.y188{bottom:430.958667pt;}
.yb4{bottom:431.598667pt;}
.y81{bottom:432.589333pt;}
.y15a{bottom:433.666667pt;}
.y52{bottom:435.845333pt;}
.y1b9{bottom:441.160000pt;}
.y22{bottom:443.026667pt;}
.y139{bottom:443.709333pt;}
.y7e{bottom:445.780000pt;}
.ydb{bottom:446.262667pt;}
.y10a{bottom:446.283787pt;}
.y187{bottom:448.173333pt;}
.yb3{bottom:449.610667pt;}
.y7f{bottom:450.601333pt;}
.y159{bottom:451.680000pt;}
.yc3{bottom:453.599432pt;}
.y51{bottom:453.858667pt;}
.y1b8{bottom:458.376000pt;}
.y20{bottom:461.038667pt;}
.y138{bottom:461.722667pt;}
.y186{bottom:465.389333pt;}
.y21{bottom:465.860000pt;}
.yb2{bottom:467.622667pt;}
.y158{bottom:469.692000pt;}
.y7d{bottom:471.762667pt;}
.y50{bottom:471.870667pt;}
.y1b7{bottom:475.592000pt;}
.y109{bottom:477.904000pt;}
.y1f{bottom:479.050667pt;}
.yda{bottom:479.681333pt;}
.y137{bottom:479.734667pt;}
.y185{bottom:482.605333pt;}
.yb0{bottom:485.636000pt;}
.y157{bottom:487.704000pt;}
.y4f{bottom:489.884000pt;}
.yb1{bottom:490.457333pt;}
.y1b6{bottom:492.806667pt;}
.y108{bottom:494.998667pt;}
.y1e{bottom:497.064000pt;}
.y136{bottom:497.746667pt;}
.y184{bottom:499.820000pt;}
.y7c{bottom:502.713333pt;}
.yae{bottom:503.648000pt;}
.y156{bottom:505.717333pt;}
.y4d{bottom:507.896000pt;}
.yaf{bottom:508.470667pt;}
.y1b5{bottom:510.022667pt;}
.y4e{bottom:512.717333pt;}
.y1d{bottom:515.076000pt;}
.y135{bottom:515.760000pt;}
.y183{bottom:517.036000pt;}
.yac{bottom:521.661333pt;}
.y155{bottom:523.729333pt;}
.y4b{bottom:525.908000pt;}
.yd9{bottom:525.965333pt;}
.yad{bottom:526.482667pt;}
.y1b4{bottom:527.237333pt;}
.y107{bottom:527.981333pt;}
.y4c{bottom:530.730667pt;}
.y1c{bottom:533.089333pt;}
.y7b{bottom:533.664000pt;}
.y134{bottom:533.772000pt;}
.y182{bottom:534.250667pt;}
.yaa{bottom:539.673333pt;}
.y154{bottom:541.742667pt;}
.yd8{bottom:543.061333pt;}
.y4a{bottom:543.921333pt;}
.y1b3{bottom:544.453333pt;}
.yab{bottom:544.494667pt;}
.y106{bottom:545.993333pt;}
.y1b{bottom:551.101333pt;}
.y181{bottom:551.466667pt;}
.y7a{bottom:551.676000pt;}
.y133{bottom:551.785333pt;}
.y153{bottom:559.754667pt;}
.y1b2{bottom:561.669333pt;}
.y49{bottom:561.933333pt;}
.y105{bottom:564.005333pt;}
.ya9{bottom:565.656000pt;}
.yc2{bottom:568.312000pt;}
.y180{bottom:568.682667pt;}
.y1a{bottom:569.113333pt;}
.y79{bottom:569.689333pt;}
.y132{bottom:569.797333pt;}
.y152{bottom:577.766667pt;}
.y1b1{bottom:578.884000pt;}
.y48{bottom:579.945333pt;}
.y104{bottom:582.018667pt;}
.y17f{bottom:585.897333pt;}
.y19{bottom:587.126667pt;}
.y131{bottom:587.809333pt;}
.y78{bottom:595.672000pt;}
.y151{bottom:595.780000pt;}
.y1b0{bottom:596.100000pt;}
.ya8{bottom:596.606667pt;}
.y47{bottom:597.958667pt;}
.y103{bottom:600.030667pt;}
.y17e{bottom:603.113333pt;}
.y18{bottom:605.138667pt;}
.y130{bottom:605.822667pt;}
.y1af{bottom:613.314667pt;}
.y150{bottom:613.792000pt;}
.y17d{bottom:620.328000pt;}
.y17{bottom:623.152000pt;}
.y12f{bottom:623.834667pt;}
.y46{bottom:623.941333pt;}
.y102{bottom:626.013333pt;}
.y77{bottom:626.622667pt;}
.ya7{bottom:627.557333pt;}
.y1ae{bottom:630.530667pt;}
.y14f{bottom:631.805333pt;}
.y17c{bottom:637.544000pt;}
.y12e{bottom:641.846667pt;}
.y76{bottom:644.634667pt;}
.ya6{bottom:645.569333pt;}
.y1ad{bottom:647.746667pt;}
.y14e{bottom:649.817333pt;}
.y16{bottom:650.728000pt;}
.y17b{bottom:654.760000pt;}
.y45{bottom:654.892000pt;}
.y101{bottom:656.964000pt;}
.y12d{bottom:659.860000pt;}
.y75{bottom:662.646667pt;}
.ya4{bottom:663.582667pt;}
.y1ac{bottom:664.961333pt;}
.y15{bottom:666.868000pt;}
.y14d{bottom:667.829333pt;}
.ya5{bottom:668.404000pt;}
.y17a{bottom:671.974667pt;}
.y100{bottom:674.977333pt;}
.y12c{bottom:677.872000pt;}
.y74{bottom:680.660000pt;}
.ya2{bottom:681.594667pt;}
.y1ab{bottom:682.177333pt;}
.y44{bottom:685.842667pt;}
.ya3{bottom:686.417333pt;}
.y179{bottom:689.190667pt;}
.y14{bottom:690.977333pt;}
.yff{bottom:692.989333pt;}
.y12b{bottom:695.885333pt;}
.y73{bottom:698.672000pt;}
.y1aa{bottom:699.392000pt;}
.ya1{bottom:699.608000pt;}
.y43{bottom:703.854667pt;}
.y178{bottom:706.406667pt;}
.yfe{bottom:711.001333pt;}
.y13{bottom:711.456000pt;}
.y12a{bottom:713.897333pt;}
.y1a9{bottom:716.608000pt;}
.y72{bottom:716.685333pt;}
.y42{bottom:721.868000pt;}
.y177{bottom:723.621333pt;}
.ya0{bottom:725.590667pt;}
.y12{bottom:727.596000pt;}
.yfd{bottom:729.014667pt;}
.y129{bottom:731.909333pt;}
.y1a8{bottom:733.824000pt;}
.y71{bottom:734.697333pt;}
.y11{bottom:739.396000pt;}
.y41{bottom:739.880000pt;}
.y176{bottom:740.837333pt;}
.yfc{bottom:747.026667pt;}
.y128{bottom:749.922667pt;}
.y1a7{bottom:751.038667pt;}
.y70{bottom:752.709333pt;}
.y10{bottom:755.536000pt;}
.y40{bottom:757.892000pt;}
.y175{bottom:758.052000pt;}
.yf{bottom:759.874667pt;}
.y9f{bottom:764.340000pt;}
.yfb{bottom:765.038667pt;}
.y126{bottom:767.934667pt;}
.y1a6{bottom:768.254667pt;}
.y6f{bottom:770.722667pt;}
.ye{bottom:771.674667pt;}
.y127{bottom:772.757333pt;}
.y174{bottom:775.268000pt;}
.y3f{bottom:775.905333pt;}
.y9e{bottom:779.018667pt;}
.yfa{bottom:783.052000pt;}
.y1a5{bottom:785.469333pt;}
.y125{bottom:785.948000pt;}
.yd{bottom:787.814667pt;}
.y6e{bottom:788.734667pt;}
.y173{bottom:792.484000pt;}
.y9d{bottom:793.697333pt;}
.y3e{bottom:793.917333pt;}
.yf9{bottom:801.064000pt;}
.y1a4{bottom:802.685333pt;}
.yc{bottom:803.954667pt;}
.y124{bottom:803.960000pt;}
.y9c{bottom:808.376000pt;}
.y172{bottom:809.698667pt;}
.y3d{bottom:811.930667pt;}
.y6d{bottom:814.717333pt;}
.yf8{bottom:819.077333pt;}
.y1a3{bottom:819.901333pt;}
.y123{bottom:821.972000pt;}
.yb{bottom:824.433333pt;}
.y9b{bottom:829.456000pt;}
.y3c{bottom:829.942667pt;}
.y171{bottom:834.884000pt;}
.yf7{bottom:837.089333pt;}
.y1a2{bottom:837.116000pt;}
.y122{bottom:839.985333pt;}
.y9a{bottom:844.134667pt;}
.ya{bottom:844.204000pt;}
.y6c{bottom:845.668000pt;}
.y3b{bottom:847.954667pt;}
.y1a1{bottom:854.332000pt;}
.y121{bottom:857.997333pt;}
.y99{bottom:858.812000pt;}
.y9{bottom:859.213333pt;}
.yf6{bottom:863.072000pt;}
.y3a{bottom:865.968000pt;}
.y170{bottom:868.040000pt;}
.y1a0{bottom:871.546667pt;}
.y98{bottom:873.490667pt;}
.y120{bottom:876.010667pt;}
.y6b{bottom:883.637867pt;}
.y39{bottom:883.980000pt;}
.y19f{bottom:888.762667pt;}
.y16f{bottom:889.520000pt;}
.yf5{bottom:894.022667pt;}
.y97{bottom:894.570667pt;}
.y6a{bottom:896.848667pt;}
.y68{bottom:897.223067pt;}
.y8{bottom:898.178667pt;}
.y38{bottom:901.993333pt;}
.y16e{bottom:903.029333pt;}
.y19e{bottom:905.978667pt;}
.y96{bottom:909.249333pt;}
.y69{bottom:910.059467pt;}
.y67{bottom:910.373867pt;}
.yf4{bottom:912.034667pt;}
.y16d{bottom:916.538667pt;}
.y37{bottom:920.005333pt;}
.y19d{bottom:923.193333pt;}
.y66{bottom:923.269067pt;}
.y95{bottom:923.928000pt;}
.y7{bottom:925.198667pt;}
.yf3{bottom:930.048000pt;}
.y36{bottom:938.017333pt;}
.y94{bottom:938.606667pt;}
.y19c{bottom:940.409333pt;}
.y65{bottom:942.481067pt;}
.y16c{bottom:943.557333pt;}
.yf2{bottom:948.060000pt;}
.y64{bottom:948.423467pt;}
.y6{bottom:952.217333pt;}
.y63{bottom:955.058267pt;}
.y35{bottom:956.030667pt;}
.y19b{bottom:957.624000pt;}
.y93{bottom:959.952000pt;}
.y16b{bottom:965.037333pt;}
.yf1{bottom:966.073333pt;}
.y34{bottom:974.042667pt;}
.y19a{bottom:974.840000pt;}
.y5{bottom:977.906667pt;}
.y16a{bottom:978.546667pt;}
.y33{bottom:992.056000pt;}
.y62{bottom:993.372000pt;}
.y1{bottom:1011.514667pt;}
.y32{bottom:1038.548000pt;}
.h26{height:-220.508080pt;}
.h25{height:18.378750pt;}
.h18{height:19.453116pt;}
.h2f{height:19.606528pt;}
.h1d{height:24.443738pt;}
.h17{height:24.760382pt;}
.hf{height:25.325878pt;}
.h9{height:27.076941pt;}
.h20{height:27.330469pt;}
.h1f{height:27.568125pt;}
.hd{height:29.397999pt;}
.h22{height:30.000506pt;}
.h2b{height:30.425506pt;}
.h21{height:30.427922pt;}
.h2d{height:30.635917pt;}
.h24{height:30.692512pt;}
.h2e{height:30.945242pt;}
.h13{height:31.116995pt;}
.he{height:31.200285pt;}
.h16{height:31.332188pt;}
.h15{height:31.590420pt;}
.h14{height:32.612820pt;}
.h10{height:32.845716pt;}
.h11{height:33.072865pt;}
.h19{height:34.574438pt;}
.h1a{height:34.717901pt;}
.ha{height:34.813542pt;}
.h3{height:35.024664pt;}
.h28{height:35.100467pt;}
.h4{height:36.445809pt;}
.h1e{height:36.757500pt;}
.h2c{height:38.330723pt;}
.hb{height:38.415786pt;}
.hc{height:38.681455pt;}
.h5{height:39.000258pt;}
.h27{height:43.557639pt;}
.h29{height:43.562973pt;}
.h2{height:45.272024pt;}
.h8{height:48.481423pt;}
.h7{height:48.486756pt;}
.h1b{height:48.683332pt;}
.h2a{height:48.688666pt;}
.h12{height:57.180995pt;}
.h23{height:58.649435pt;}
.h6{height:69.148877pt;}
.h1c{height:437.028800pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:13.287040pt;}
.w2{width:191.879724pt;}
.w3{width:238.255680pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x53{left:-109.620160pt;}
.x55{left:-87.530560pt;}
.x57{left:-17.954560pt;}
.x58{left:-14.148160pt;}
.x0{left:0.000000pt;}
.x2{left:52.456952pt;}
.x3{left:101.114667pt;}
.x1{left:102.046667pt;}
.x6{left:108.542667pt;}
.x4{left:109.606667pt;}
.x5f{left:110.643680pt;}
.x24{left:115.240133pt;}
.x26{left:121.423067pt;}
.x5{left:129.929333pt;}
.x37{left:136.634667pt;}
.x38{left:144.838667pt;}
.x42{left:149.386667pt;}
.x43{left:158.422667pt;}
.x40{left:167.617333pt;}
.x7{left:170.925333pt;}
.x82{left:172.076000pt;}
.x5e{left:175.596000pt;}
.xc{left:177.788000pt;}
.x64{left:178.981333pt;}
.x5b{left:181.276000pt;}
.xd{left:184.429333pt;}
.x83{left:185.358667pt;}
.x1f{left:186.248000pt;}
.x6a{left:190.349333pt;}
.x20{left:192.152000pt;}
.x3b{left:194.493333pt;}
.x5d{left:197.536000pt;}
.x21{left:199.866667pt;}
.x3c{left:200.801333pt;}
.x4b{left:201.821333pt;}
.x3f{left:202.856000pt;}
.x25{left:211.726667pt;}
.x6d{left:213.389333pt;}
.x22{left:214.358667pt;}
.x56{left:215.795840pt;}
.x6f{left:216.844000pt;}
.x27{left:218.912267pt;}
.x5c{left:220.508000pt;}
.x59{left:222.098240pt;}
.xa0{left:224.762667pt;}
.x5a{left:227.839040pt;}
.x70{left:230.128000pt;}
.x6e{left:233.448000pt;}
.x9f{left:235.342667pt;}
.x54{left:238.447040pt;}
.x8d{left:240.394667pt;}
.x23{left:241.644000pt;}
.x33{left:243.674667pt;}
.x34{left:251.880000pt;}
.x14{left:262.464000pt;}
.x46{left:266.580000pt;}
.x15{left:269.106667pt;}
.x47{left:276.648000pt;}
.x52{left:277.722667pt;}
.x4e{left:282.622667pt;}
.x10{left:284.524000pt;}
.x76{left:288.008000pt;}
.x11{left:291.166667pt;}
.x12{left:294.553333pt;}
.x4f{left:296.826667pt;}
.x13{left:301.194667pt;}
.x77{left:304.556000pt;}
.x69{left:310.436000pt;}
.x79{left:313.049333pt;}
.x78{left:317.838667pt;}
.x16{left:322.960000pt;}
.x7c{left:323.960000pt;}
.xa{left:326.262667pt;}
.x17{left:329.601333pt;}
.x73{left:331.678667pt;}
.xb{left:332.904000pt;}
.x66{left:334.202667pt;}
.x7d{left:337.242667pt;}
.x74{left:338.320000pt;}
.x18{left:339.541333pt;}
.x19{left:346.136000pt;}
.x67{left:351.938667pt;}
.x60{left:352.898667pt;}
.x1a{left:359.420000pt;}
.x68{left:365.222667pt;}
.x93{left:370.961333pt;}
.x3d{left:376.004000pt;}
.x3e{left:382.312000pt;}
.x44{left:386.466667pt;}
.x45{left:398.565333pt;}
.x29{left:412.933333pt;}
.x2a{left:419.242667pt;}
.x65{left:435.185333pt;}
.x89{left:445.737333pt;}
.x50{left:448.276000pt;}
.x8a{left:459.021333pt;}
.x51{left:462.480000pt;}
.x35{left:466.758667pt;}
.x36{left:474.962667pt;}
.x8b{left:478.933333pt;}
.x7e{left:482.937333pt;}
.x28{left:491.292000pt;}
.x8c{left:492.217333pt;}
.x7f{left:496.221333pt;}
.x7a{left:500.734667pt;}
.x8{left:502.645333pt;}
.x2f{left:505.168000pt;}
.x9{left:508.357333pt;}
.x7b{left:514.017333pt;}
.x30{left:518.913333pt;}
.x85{left:520.157333pt;}
.x95{left:524.721333pt;}
.x86{left:533.440000pt;}
.x87{left:536.824000pt;}
.x80{left:541.854667pt;}
.x9e{left:546.217333pt;}
.x96{left:548.632000pt;}
.x88{left:550.108000pt;}
.x71{left:553.705333pt;}
.x81{left:555.137333pt;}
.x92{left:560.024000pt;}
.x72{left:566.989333pt;}
.x6b{left:569.728000pt;}
.x4c{left:574.892000pt;}
.x1b{left:581.356000pt;}
.x6c{left:583.010667pt;}
.x4d{left:583.926667pt;}
.x1c{left:587.258667pt;}
.x48{left:593.942667pt;}
.x1d{left:595.029333pt;}
.x2b{left:596.280000pt;}
.x8e{left:602.666667pt;}
.x49{left:604.010667pt;}
.x2c{left:606.978667pt;}
.x1e{left:609.520000pt;}
.x9b{left:612.425333pt;}
.x98{left:613.376000pt;}
.xe{left:614.942667pt;}
.x9d{left:617.221333pt;}
.x94{left:619.684000pt;}
.xf{left:621.584000pt;}
.x39{left:623.765333pt;}
.x8f{left:626.577333pt;}
.x3a{left:630.073333pt;}
.x41{left:632.026667pt;}
.x9c{left:636.336000pt;}
.x99{left:637.286667pt;}
.x84{left:643.670667pt;}
.x91{left:647.422667pt;}
.x61{left:652.073333pt;}
.x31{left:663.006667pt;}
.x62{left:665.357333pt;}
.x97{left:666.309333pt;}
.x9a{left:670.546667pt;}
.x63{left:672.132000pt;}
.x75{left:673.105333pt;}
.x32{left:677.061333pt;}
.x2d{left:682.758667pt;}
.x4a{left:685.941333pt;}
.x2e{left:688.470667pt;}
.x90{left:690.100000pt;}
}




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