
    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_b42577014d5ec531d7bef7d2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.191000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ca1b836da04973d4412043c5.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a11cb37c3b72d42d75e6af6b.woff')format("woff");}.ff3{font-family:ff3;line-height:1.009000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8fa9242a181797d93584ba54.woff')format("woff");}.ff4{font-family:ff4;line-height:0.040000;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;}
.m14{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);}
.m21{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);}
.m6{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);}
.m29{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);}
.mf{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);}
.m1{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);}
.m9{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);}
.m1d{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);}
.m24{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);}
.m26{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);}
.m1f{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);}
.m3{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);}
.m12{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);}
.m2{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);}
.m5{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);}
.m1b{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);}
.m15{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);}
.m1e{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);}
.m4{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);}
.m18{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);}
.me{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);}
.m1a{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);}
.m25{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);}
.m23{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);}
.m17{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);}
.m7{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);}
.m27{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);}
.m11{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);}
.m10{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);}
.mc{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);}
.ma{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);}
.m20{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);}
.m13{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);}
.m28{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);}
.m16{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);}
.m19{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);}
.md{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);}
.m1c{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);}
.m8{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);}
.mb{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;}
.v3{vertical-align:-11.952000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:2.688000px;}
.v9{vertical-align:12.000000px;}
.v1{vertical-align:21.696000px;}
.v4{vertical-align:23.910000px;}
.v5{vertical-align:47.820000px;}
.v6{vertical-align:71.730000px;}
.v7{vertical-align:95.640000px;}
.ls7{letter-spacing:0.000000px;}
.ls2b{letter-spacing:0.000608px;}
.ls52{letter-spacing:0.000800px;}
.ls18{letter-spacing:0.001100px;}
.ls40{letter-spacing:0.001996px;}
.ls28{letter-spacing:0.003623px;}
.ls5f{letter-spacing:0.004800px;}
.ls3e{letter-spacing:0.005269px;}
.ls8{letter-spacing:0.717483px;}
.lse{letter-spacing:0.723483px;}
.ls1{letter-spacing:2.983200px;}
.ls2{letter-spacing:2.989200px;}
.ls0{letter-spacing:8.367300px;}
.ls32{letter-spacing:10.778351px;}
.ls33{letter-spacing:10.784473px;}
.ls59{letter-spacing:11.768400px;}
.ls3d{letter-spacing:11.770800px;}
.ls14{letter-spacing:11.868147px;}
.ls15{letter-spacing:11.874269px;}
.ls6{letter-spacing:11.954850px;}
.ls43{letter-spacing:11.972229px;}
.ls20{letter-spacing:12.011159px;}
.ls5a{letter-spacing:12.302400px;}
.ls3b{letter-spacing:12.365506px;}
.ls3c{letter-spacing:12.371388px;}
.ls49{letter-spacing:13.049780px;}
.ls24{letter-spacing:13.072200px;}
.ls23{letter-spacing:13.072766px;}
.ls27{letter-spacing:13.078766px;}
.ls26{letter-spacing:13.127306px;}
.ls5b{letter-spacing:13.211833px;}
.ls56{letter-spacing:13.266376px;}
.ls60{letter-spacing:13.321913px;}
.ls25{letter-spacing:13.332113px;}
.ls50{letter-spacing:13.339300px;}
.ls48{letter-spacing:13.444800px;}
.ls4e{letter-spacing:13.448400px;}
.ls46{letter-spacing:13.450800px;}
.ls4f{letter-spacing:13.454400px;}
.ls53{letter-spacing:13.520097px;}
.ls5c{letter-spacing:13.532033px;}
.ls4b{letter-spacing:13.544796px;}
.ls5d{letter-spacing:13.562497px;}
.ls5e{letter-spacing:13.581012px;}
.ls47{letter-spacing:13.594918px;}
.ls4d{letter-spacing:13.614230px;}
.ls58{letter-spacing:13.681631px;}
.ls44{letter-spacing:13.700800px;}
.ls55{letter-spacing:13.862165px;}
.ls51{letter-spacing:14.044518px;}
.ls1d{letter-spacing:14.262726px;}
.ls54{letter-spacing:14.268047px;}
.ls1c{letter-spacing:14.304037px;}
.ls42{letter-spacing:14.518322px;}
.ls38{letter-spacing:14.676531px;}
.ls1f{letter-spacing:14.691199px;}
.ls2e{letter-spacing:14.693970px;}
.lsd{letter-spacing:14.699626px;}
.ls1b{letter-spacing:14.753002px;}
.lsb{letter-spacing:14.758384px;}
.ls36{letter-spacing:14.812433px;}
.ls4c{letter-spacing:14.894918px;}
.ls19{letter-spacing:14.908193px;}
.ls57{letter-spacing:14.909224px;}
.ls13{letter-spacing:14.944200px;}
.ls3a{letter-spacing:14.944766px;}
.ls3f{letter-spacing:15.020363px;}
.ls34{letter-spacing:15.042992px;}
.ls12{letter-spacing:15.123227px;}
.ls41{letter-spacing:15.133348px;}
.ls31{letter-spacing:15.200525px;}
.ls4a{letter-spacing:15.230212px;}
.ls10{letter-spacing:15.900435px;}
.ls1a{letter-spacing:16.071024px;}
.lsf{letter-spacing:16.526688px;}
.ls2c{letter-spacing:17.564766px;}
.ls2a{letter-spacing:17.794553px;}
.lsc{letter-spacing:17.929200px;}
.lsa{letter-spacing:17.935200px;}
.ls35{letter-spacing:17.935355px;}
.ls39{letter-spacing:18.323965px;}
.ls2d{letter-spacing:18.853376px;}
.ls1e{letter-spacing:19.135729px;}
.ls30{letter-spacing:19.276531px;}
.ls2f{letter-spacing:19.318082px;}
.ls45{letter-spacing:19.618447px;}
.ls17{letter-spacing:19.753376px;}
.ls37{letter-spacing:20.341612px;}
.ls29{letter-spacing:22.223590px;}
.ls21{letter-spacing:23.970649px;}
.ls9{letter-spacing:24.859259px;}
.ls22{letter-spacing:27.700435px;}
.ls16{letter-spacing:44.788296px;}
.ls3{letter-spacing:57.415200px;}
.ls4{letter-spacing:62.761200px;}
.ls5{letter-spacing:64.321654px;}
.ls11{letter-spacing:394.713895px;}
.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;}
}
.ws2c{word-spacing:-14.943900px;}
.ws93{word-spacing:-13.449600px;}
.ws20{word-spacing:-11.955150px;}
.wsd{word-spacing:-11.357400px;}
.ws5{word-spacing:-10.460700px;}
.wsbf{word-spacing:-3.108331px;}
.ws4e{word-spacing:-3.048556px;}
.wsf2{word-spacing:-2.905114px;}
.ws4f{word-spacing:-2.749678px;}
.wsbc{word-spacing:-2.689920px;}
.wsbb{word-spacing:-2.674967px;}
.wsdb{word-spacing:-2.570351px;}
.ws89{word-spacing:-2.259511px;}
.ws74{word-spacing:-2.217668px;}
.wsb1{word-spacing:-2.211697px;}
.wsbd{word-spacing:-2.151936px;}
.ws7d{word-spacing:-2.133983px;}
.ws54{word-spacing:-2.092146px;}
.ws0{word-spacing:-2.092140px;}
.ws3{word-spacing:-2.050297px;}
.wsbe{word-spacing:-2.044339px;}
.ws88{word-spacing:-2.008454px;}
.ws2{word-spacing:-1.966612px;}
.ws3c{word-spacing:-1.912819px;}
.wsad{word-spacing:-1.853044px;}
.ws84{word-spacing:-1.841083px;}
.wsb0{word-spacing:-1.793268px;}
.wsba{word-spacing:-1.775347px;}
.wsc9{word-spacing:-1.667750px;}
.ws91{word-spacing:-1.613952px;}
.ws44{word-spacing:-1.613941px;}
.ws92{word-spacing:-1.605586px;}
.ws90{word-spacing:-1.598413px;}
.ws12b{word-spacing:-1.560154px;}
.ws3e{word-spacing:-1.554166px;}
.wscb{word-spacing:-1.494390px;}
.wsa6{word-spacing:-1.458189px;}
.wsa5{word-spacing:-1.452557px;}
.wsd2{word-spacing:-1.434614px;}
.ws124{word-spacing:-1.398758px;}
.wsa7{word-spacing:-1.344960px;}
.wsa4{word-spacing:-1.291162px;}
.ws45{word-spacing:-1.255288px;}
.wsdc{word-spacing:-1.195512px;}
.wsa8{word-spacing:-1.183565px;}
.ws5e{word-spacing:-1.135736px;}
.wsc7{word-spacing:-1.103051px;}
.wsc5{word-spacing:-1.091399px;}
.wsc6{word-spacing:-1.075968px;}
.wsca{word-spacing:-1.075961px;}
.ws121{word-spacing:-1.022170px;}
.ws12d{word-spacing:-0.968371px;}
.ws4d{word-spacing:-0.956410px;}
.ws120{word-spacing:-0.914573px;}
.ws8f{word-spacing:-0.860774px;}
.ws65{word-spacing:-0.795013px;}
.wsc0{word-spacing:-0.777083px;}
.ws123{word-spacing:-0.753178px;}
.ws9d{word-spacing:-0.717307px;}
.ws10d{word-spacing:-0.699379px;}
.ws9b{word-spacing:-0.657532px;}
.wsd6{word-spacing:-0.597756px;}
.wse2{word-spacing:-0.537980px;}
.wsf3{word-spacing:-0.484186px;}
.ws5a{word-spacing:-0.478205px;}
.wse7{word-spacing:-0.430387px;}
.wsd3{word-spacing:-0.418429px;}
.wse8{word-spacing:-0.376589px;}
.ws46{word-spacing:-0.358654px;}
.ws9c{word-spacing:-0.327753px;}
.ws112{word-spacing:-0.322790px;}
.ws24{word-spacing:-0.298878px;}
.wseb{word-spacing:-0.268992px;}
.ws1e{word-spacing:-0.239102px;}
.wsa1{word-spacing:-0.234060px;}
.wsef{word-spacing:-0.215194px;}
.ws36{word-spacing:-0.179327px;}
.ws37{word-spacing:-0.164079px;}
.ws119{word-spacing:-0.161395px;}
.ws23{word-spacing:-0.119551px;}
.wsfe{word-spacing:-0.107597px;}
.ws1a{word-spacing:-0.059776px;}
.wsc4{word-spacing:-0.053798px;}
.ws16{word-spacing:-0.047821px;}
.ws12{word-spacing:-0.047282px;}
.ws6{word-spacing:-0.041843px;}
.wsb3{word-spacing:-0.005323px;}
.wsb{word-spacing:-0.000140px;}
.wsa{word-spacing:0.000000px;}
.ws8d{word-spacing:0.000900px;}
.wsa3{word-spacing:0.053798px;}
.ws13{word-spacing:0.059776px;}
.wsea{word-spacing:0.107597px;}
.ws2f{word-spacing:0.119551px;}
.ws8e{word-spacing:0.161395px;}
.ws1d{word-spacing:0.179327px;}
.wsf9{word-spacing:0.215194px;}
.ws17{word-spacing:0.239103px;}
.wsb9{word-spacing:0.268992px;}
.ws40{word-spacing:0.298878px;}
.wse6{word-spacing:0.322790px;}
.wsa2{word-spacing:0.358654px;}
.ws63{word-spacing:0.418428px;}
.ws57{word-spacing:0.418429px;}
.ws8{word-spacing:0.422252px;}
.ws103{word-spacing:0.430387px;}
.ws3d{word-spacing:0.478205px;}
.ws2d{word-spacing:0.537980px;}
.wsee{word-spacing:0.537984px;}
.ws105{word-spacing:0.591782px;}
.ws56{word-spacing:0.597756px;}
.ws133{word-spacing:0.645581px;}
.ws47{word-spacing:0.657532px;}
.wse1{word-spacing:0.777083px;}
.wsf7{word-spacing:0.806976px;}
.wsdd{word-spacing:0.836858px;}
.wscd{word-spacing:0.896634px;}
.ws136{word-spacing:0.914573px;}
.ws38{word-spacing:0.956410px;}
.ws52{word-spacing:1.016185px;}
.ws1c{word-spacing:1.075961px;}
.wsf6{word-spacing:1.129766px;}
.ws42{word-spacing:1.135736px;}
.ws12e{word-spacing:1.183565px;}
.ws41{word-spacing:1.195512px;}
.ws2e{word-spacing:1.255288px;}
.ws94{word-spacing:1.398758px;}
.wsd7{word-spacing:1.434614px;}
.wsec{word-spacing:1.452557px;}
.wsde{word-spacing:1.494390px;}
.wse9{word-spacing:1.775347px;}
.ws9a{word-spacing:1.840194px;}
.wsda{word-spacing:1.853044px;}
.ws5b{word-spacing:1.912819px;}
.ws10e{word-spacing:1.936742px;}
.ws3f{word-spacing:1.972595px;}
.ws39{word-spacing:2.032370px;}
.ws10b{word-spacing:2.044339px;}
.ws30{word-spacing:2.092146px;}
.wsa0{word-spacing:2.151922px;}
.wsed{word-spacing:2.205734px;}
.wsa9{word-spacing:2.211697px;}
.ws12a{word-spacing:2.259533px;}
.ws26{word-spacing:2.331248px;}
.ws4c{word-spacing:2.391024px;}
.ws1b{word-spacing:2.510575px;}
.wsb5{word-spacing:2.630126px;}
.ws138{word-spacing:2.636122px;}
.ws53{word-spacing:2.809453px;}
.ws50{word-spacing:2.869229px;}
.ws19{word-spacing:2.869236px;}
.ws115{word-spacing:2.905114px;}
.ws4a{word-spacing:2.929004px;}
.wse5{word-spacing:2.958912px;}
.wsb2{word-spacing:2.988780px;}
.ws59{word-spacing:3.168107px;}
.ws137{word-spacing:3.220454px;}
.ws134{word-spacing:3.224102px;}
.ws11d{word-spacing:3.224285px;}
.wsf0{word-spacing:3.224822px;}
.ws31{word-spacing:3.227882px;}
.ws132{word-spacing:3.281702px;}
.ws32{word-spacing:3.287658px;}
.wsc3{word-spacing:3.347434px;}
.ws43{word-spacing:3.407209px;}
.ws55{word-spacing:3.466985px;}
.ws13b{word-spacing:3.496896px;}
.ws3a{word-spacing:3.583475px;}
.ws8c{word-spacing:3.586536px;}
.wsfb{word-spacing:3.604493px;}
.ws25{word-spacing:3.646312px;}
.ws27{word-spacing:3.706087px;}
.ws101{word-spacing:3.712090px;}
.ws117{word-spacing:3.765888px;}
.wsc8{word-spacing:3.819686px;}
.ws2a{word-spacing:3.825638px;}
.ws58{word-spacing:3.885414px;}
.wsb6{word-spacing:3.945190px;}
.wscc{word-spacing:4.064741px;}
.wsdf{word-spacing:4.124516px;}
.ws9e{word-spacing:4.184292px;}
.wsb8{word-spacing:4.303843px;}
.ws3b{word-spacing:4.303872px;}
.wsb7{word-spacing:4.363619px;}
.wsd8{word-spacing:4.483170px;}
.wsd4{word-spacing:4.602721px;}
.wscf{word-spacing:4.662497px;}
.wsd0{word-spacing:4.722272px;}
.ws99{word-spacing:4.782048px;}
.ws51{word-spacing:4.841824px;}
.ws33{word-spacing:4.901599px;}
.ws48{word-spacing:5.200477px;}
.ws49{word-spacing:5.320028px;}
.wsc1{word-spacing:5.379804px;}
.ws28{word-spacing:5.499355px;}
.wsd1{word-spacing:5.618906px;}
.ws2b{word-spacing:5.656889px;}
.ws95{word-spacing:5.756429px;}
.ws29{word-spacing:5.798233px;}
.ws11c{word-spacing:5.971622px;}
.ws22{word-spacing:5.977560px;}
.wse3{word-spacing:6.025421px;}
.wsf1{word-spacing:6.133018px;}
.wse4{word-spacing:6.186816px;}
.ws108{word-spacing:6.240614px;}
.wsce{word-spacing:6.276438px;}
.ws9f{word-spacing:6.440194px;}
.wse0{word-spacing:6.515540px;}
.ws4b{word-spacing:6.575316px;}
.ws5c{word-spacing:6.635092px;}
.ws125{word-spacing:6.778598px;}
.wsc2{word-spacing:6.874194px;}
.wsb4{word-spacing:7.292623px;}
.ws98{word-spacing:7.412174px;}
.ws97{word-spacing:7.471950px;}
.wsaf{word-spacing:7.651277px;}
.wsae{word-spacing:7.711052px;}
.wsd9{word-spacing:7.950155px;}
.ws4{word-spacing:8.327642px;}
.wsaa{word-spacing:9.026116px;}
.ws34{word-spacing:9.922750px;}
.ws5d{word-spacing:10.759608px;}
.ws7{word-spacing:11.297556px;}
.ws12c{word-spacing:11.674253px;}
.ws11f{word-spacing:11.700883px;}
.ws5f{word-spacing:11.903615px;}
.ws1f{word-spacing:11.909615px;}
.ws122{word-spacing:12.373632px;}
.wsab{word-spacing:12.732203px;}
.wsac{word-spacing:12.758931px;}
.ws10c{word-spacing:13.126810px;}
.ws118{word-spacing:13.180608px;}
.wsff{word-spacing:13.288205px;}
.ws13a{word-spacing:13.383254px;}
.ws129{word-spacing:13.386758px;}
.ws113{word-spacing:13.387747px;}
.ws139{word-spacing:13.388755px;}
.ws116{word-spacing:13.389024px;}
.ws114{word-spacing:13.390618px;}
.ws127{word-spacing:13.391165px;}
.ws106{word-spacing:13.391280px;}
.wsfc{word-spacing:13.391587px;}
.ws12f{word-spacing:13.393747px;}
.ws110{word-spacing:13.393757px;}
.ws100{word-spacing:13.395802px;}
.ws126{word-spacing:13.411150px;}
.ws107{word-spacing:13.449600px;}
.ws128{word-spacing:13.503398px;}
.wsfa{word-spacing:13.557197px;}
.ws11b{word-spacing:13.605472px;}
.ws11e{word-spacing:13.610995px;}
.ws111{word-spacing:13.652144px;}
.ws104{word-spacing:13.826189px;}
.ws96{word-spacing:13.987490px;}
.ws109{word-spacing:13.998352px;}
.wsf8{word-spacing:14.204780px;}
.ws11a{word-spacing:14.525568px;}
.ws10a{word-spacing:14.738822px;}
.ws9{word-spacing:14.884124px;}
.ws130{word-spacing:14.923205px;}
.ws135{word-spacing:14.955955px;}
.ws35{word-spacing:15.010782px;}
.ws10f{word-spacing:15.332544px;}
.ws21{word-spacing:15.720983px;}
.ws131{word-spacing:16.247117px;}
.wsfd{word-spacing:16.623706px;}
.ws102{word-spacing:17.000294px;}
.wsd5{word-spacing:17.932680px;}
.ws1{word-spacing:22.179541px;}
.ws18{word-spacing:41.838000px;}
.ws15{word-spacing:41.844000px;}
.ws10{word-spacing:46.053000px;}
.ws11{word-spacing:46.054800px;}
.wsf{word-spacing:46.056000px;}
.wse{word-spacing:46.059000px;}
.wsc{word-spacing:46.059600px;}
.wsf4{word-spacing:58.263667px;}
.ws14{word-spacing:61.005000px;}
.ws7c{word-spacing:168.223097px;}
.ws72{word-spacing:168.394344px;}
.ws69{word-spacing:193.557272px;}
.ws80{word-spacing:195.112976px;}
.ws7a{word-spacing:240.093986px;}
.ws83{word-spacing:244.403795px;}
.ws6a{word-spacing:244.654852px;}
.ws76{word-spacing:245.910136px;}
.ws6f{word-spacing:250.303630px;}
.ws70{word-spacing:251.307857px;}
.ws6c{word-spacing:256.036093px;}
.ws60{word-spacing:265.700798px;}
.ws7b{word-spacing:267.291806px;}
.ws6d{word-spacing:268.547090px;}
.ws64{word-spacing:269.760532px;}
.ws87{word-spacing:271.434244px;}
.ws71{word-spacing:273.233484px;}
.ws61{word-spacing:273.249349px;}
.ws6e{word-spacing:273.315136px;}
.ws85{word-spacing:275.785895px;}
.ws68{word-spacing:280.388603px;}
.wsf5{word-spacing:280.504858px;}
.ws8a{word-spacing:281.643887px;}
.ws82{word-spacing:282.355214px;}
.ws66{word-spacing:282.606271px;}
.ws6b{word-spacing:284.587097px;}
.ws78{word-spacing:284.782097px;}
.ws7e{word-spacing:285.367896px;}
.ws7f{word-spacing:288.506106px;}
.ws73{word-spacing:292.062744px;}
.ws8b{word-spacing:293.066971px;}
.ws77{word-spacing:293.168740px;}
.ws79{word-spacing:312.942301px;}
.ws81{word-spacing:324.779116px;}
.ws67{word-spacing:326.559778px;}
.ws62{word-spacing:331.454100px;}
.ws86{word-spacing:336.685579px;}
.ws75{word-spacing:436.205068px;}
._67{margin-left:-20.685816px;}
._5{margin-left:-11.943245px;}
._69{margin-left:-8.358601px;}
._7{margin-left:-6.635618px;}
._1{margin-left:-5.397721px;}
._2{margin-left:-3.765852px;}
._59{margin-left:-2.705555px;}
._3{margin-left:-1.506341px;}
._6{width:2.986486px;}
._1c{width:4.483170px;}
._68{width:6.618040px;}
._0{width:10.879128px;}
._5d{width:12.692983px;}
._16{width:13.879890px;}
._8{width:15.822612px;}
._15{width:17.287099px;}
._9{width:18.435835px;}
._d{width:19.606397px;}
._11{width:21.220338px;}
._e{width:22.786981px;}
._5c{width:24.041742px;}
._10{width:25.283945px;}
._a{width:26.600142px;}
._f{width:27.902898px;}
._5e{width:28.925940px;}
._13{width:29.947576px;}
._5a{width:31.489769px;}
._4{width:33.355008px;}
._12{width:34.622550px;}
._14{width:37.311925px;}
._1d{width:38.579164px;}
._5b{width:41.021672px;}
._66{width:61.868160px;}
._1b{width:71.730720px;}
._3b{width:93.989843px;}
._19{width:100.841437px;}
._57{width:106.191355px;}
._18{width:136.706797px;}
._17{width:153.384190px;}
._1a{width:160.557262px;}
._3f{width:164.813089px;}
._3e{width:173.599542px;}
._3c{width:175.862369px;}
._2e{width:177.950875px;}
._4d{width:192.042930px;}
._53{width:201.556768px;}
._31{width:205.041631px;}
._50{width:206.342803px;}
._21{width:208.418987px;}
._43{width:212.954678px;}
._60{width:215.247398px;}
._20{width:217.708088px;}
._37{width:232.827338px;}
._2a{width:234.441205px;}
._3a{width:236.071249px;}
._64{width:240.371251px;}
._38{width:241.553065px;}
._25{width:242.601205px;}
._4c{width:251.238107px;}
._40{width:253.274468px;}
._34{width:258.546661px;}
._65{width:263.934950px;}
._61{width:266.409677px;}
._4b{width:270.890287px;}
._41{width:273.386154px;}
._44{width:278.631205px;}
._27{width:291.882761px;}
._63{width:293.255078px;}
._4e{width:294.698840px;}
._62{width:295.783603px;}
._4a{width:297.246599px;}
._33{width:298.748574px;}
._54{width:301.276061px;}
._23{width:305.234920px;}
._35{width:311.450078px;}
._30{width:313.235201px;}
._3d{width:314.252574px;}
._22{width:315.285498px;}
._24{width:321.284574px;}
._51{width:324.922061px;}
._1f{width:326.917796px;}
._5f{width:329.461402px;}
._28{width:331.471662px;}
._55{width:332.513017px;}
._47{width:333.821858px;}
._32{width:334.999228px;}
._4f{width:336.855019px;}
._29{width:341.156574px;}
._2d{width:343.822288px;}
._42{width:352.850574px;}
._49{width:363.100061px;}
._52{width:371.480378px;}
._2f{width:372.728574px;}
._48{width:383.420574px;}
._2b{width:387.924599px;}
._46{width:389.198574px;}
._56{width:393.982061px;}
._39{width:395.414460px;}
._36{width:398.385299px;}
._2c{width:403.292574px;}
._26{width:405.875160px;}
._45{width:411.704574px;}
._b{width:1798.268700px;}
._58{width:2527.484700px;}
._c{width:2551.394700px;}
._1e{width:4029.380700px;}
.fc1{color:rgb(8,117,183);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs3{font-size:45.429600px;}
.fs5{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs1{font-size:59.775600px;}
.fs6{font-size:62.286600px;}
.fs7{font-size:71.731200px;}
.fs2{font-size:107.596800px;}
.y0{bottom:0.000000px;}
.y51{bottom:45.921000px;}
.y19c{bottom:99.720000px;}
.y19{bottom:100.260000px;}
.y1b5{bottom:100.818000px;}
.y19d{bottom:105.144000px;}
.y26a{bottom:105.961500px;}
.y203{bottom:106.221000px;}
.y13c{bottom:106.266000px;}
.y154{bottom:110.548500px;}
.y1cd{bottom:116.407500px;}
.y10b{bottom:118.078500px;}
.y18{bottom:118.147500px;}
.y139{bottom:118.221000px;}
.y238{bottom:118.234500px;}
.y82{bottom:119.236500px;}
.y19a{bottom:120.610500px;}
.y1b4{bottom:121.708500px;}
.y50{bottom:123.228000px;}
.y135{bottom:124.198500px;}
.y269{bottom:125.112000px;}
.y202{bottom:125.719500px;}
.y19b{bottom:126.036000px;}
.y188{bottom:129.556500px;}
.y108{bottom:130.033500px;}
.y138{bottom:130.176000px;}
.y104{bottom:136.011000px;}
.y17{bottom:136.035000px;}
.y134{bottom:136.153500px;}
.y1cb{bottom:137.298000px;}
.y237{bottom:137.385000px;}
.y1d6{bottom:139.255500px;}
.y81{bottom:140.128500px;}
.y199{bottom:141.502500px;}
.y107{bottom:141.988500px;}
.y137{bottom:142.131000px;}
.y26d{bottom:142.521000px;}
.y1b3{bottom:142.600500px;}
.y1cc{bottom:142.723500px;}
.y170{bottom:143.245500px;}
.y4f{bottom:144.120000px;}
.yca{bottom:144.135000px;}
.y268{bottom:144.262500px;}
.y201{bottom:145.219500px;}
.y103{bottom:147.966000px;}
.y13a{bottom:148.108500px;}
.y187{bottom:150.448500px;}
.y16{bottom:153.924000px;}
.y106{bottom:153.943500px;}
.y136{bottom:154.086000px;}
.yc7{bottom:156.097500px;}
.y236{bottom:156.535500px;}
.y1ca{bottom:158.190000px;}
.y109{bottom:159.922500px;}
.y1d5{bottom:160.147500px;}
.y80{bottom:161.020500px;}
.y26c{bottom:161.671500px;}
.y198{bottom:162.394500px;}
.y267{bottom:163.413000px;}
.y1b2{bottom:163.492500px;}
.y16f{bottom:164.137500px;}
.y200{bottom:164.718000px;}
.y4e{bottom:165.012000px;}
.yc9{bottom:165.025500px;}
.y9a{bottom:165.100500px;}
.y105{bottom:165.900000px;}
.y13b{bottom:166.041000px;}
.y186{bottom:171.339000px;}
.y15{bottom:171.811500px;}
.y235{bottom:175.686000px;}
.yc6{bottom:176.989500px;}
.y10a{bottom:177.855000px;}
.y1c9{bottom:179.082000px;}
.y26b{bottom:180.822000px;}
.y1d4{bottom:181.039500px;}
.y7f{bottom:181.911000px;}
.y266{bottom:182.563500px;}
.y197{bottom:183.285000px;}
.y1ff{bottom:184.216500px;}
.y1b1{bottom:184.383000px;}
.y16d{bottom:185.029500px;}
.y131{bottom:185.497500px;}
.y4d{bottom:185.904000px;}
.y14{bottom:189.699000px;}
.y16e{bottom:190.453500px;}
.y99{bottom:190.534500px;}
.y12d{bottom:191.475000px;}
.y234{bottom:194.836500px;}
.y185{bottom:196.714500px;}
.y100{bottom:197.311500px;}
.y130{bottom:197.452500px;}
.yc5{bottom:197.880000px;}
.y1c8{bottom:199.972500px;}
.yc8{bottom:200.653500px;}
.y265{bottom:201.714000px;}
.y1d3{bottom:201.930000px;}
.y7e{bottom:202.803000px;}
.y102{bottom:203.289000px;}
.y12c{bottom:203.430000px;}
.y1fe{bottom:203.715000px;}
.y196{bottom:204.177000px;}
.y1b0{bottom:205.275000px;}
.y16c{bottom:205.920000px;}
.y4c{bottom:206.794500px;}
.y13{bottom:207.586500px;}
.yff{bottom:209.266500px;}
.y133{bottom:209.407500px;}
.y12f{bottom:209.409000px;}
.y233{bottom:213.988500px;}
.y101{bottom:215.244000px;}
.y132{bottom:215.386500px;}
.y98{bottom:215.968500px;}
.yc4{bottom:218.772000px;}
.y1c7{bottom:220.864500px;}
.y12e{bottom:221.364000px;}
.y1d2{bottom:222.822000px;}
.y7d{bottom:223.695000px;}
.y195{bottom:225.069000px;}
.y12{bottom:225.475500px;}
.y1af{bottom:226.167000px;}
.y16a{bottom:226.812000px;}
.y4b{bottom:227.686500px;}
.y184{bottom:232.057500px;}
.y16b{bottom:232.237500px;}
.y232{bottom:233.139000px;}
.y1fd{bottom:238.357500px;}
.y264{bottom:240.015000px;}
.yfd{bottom:240.678000px;}
.y12a{bottom:240.820500px;}
.y97{bottom:241.402500px;}
.y1c6{bottom:241.756500px;}
.y1d1{bottom:243.714000px;}
.yc3{bottom:244.147500px;}
.y7c{bottom:244.585500px;}
.y193{bottom:245.961000px;}
.yfe{bottom:246.655500px;}
.y12b{bottom:246.798000px;}
.y1ae{bottom:247.057500px;}
.y169{bottom:247.704000px;}
.y4a{bottom:248.578500px;}
.y194{bottom:251.385000px;}
.y231{bottom:252.289500px;}
.y11{bottom:252.330000px;}
.yfc{bottom:252.633000px;}
.y129{bottom:252.775500px;}
.y182{bottom:252.948000px;}
.y183{bottom:258.373500px;}
.y263{bottom:259.165500px;}
.y1fc{bottom:262.339500px;}
.y1c4{bottom:262.647000px;}
.y1d0{bottom:264.606000px;}
.y7b{bottom:265.477500px;}
.y96{bottom:266.836500px;}
.y192{bottom:266.851500px;}
.y1ad{bottom:267.949500px;}
.y1c5{bottom:268.072500px;}
.y168{bottom:268.596000px;}
.y10{bottom:270.217500px;}
.y230{bottom:271.440000px;}
.y181{bottom:273.840000px;}
.y262{bottom:278.316000px;}
.yfa{bottom:281.592000px;}
.yc2{bottom:282.970500px;}
.y1c3{bottom:283.539000px;}
.y128{bottom:284.187000px;}
.y7a{bottom:286.369500px;}
.yfb{bottom:287.569500px;}
.yf{bottom:288.105000px;}
.y49{bottom:288.598500px;}
.y1ac{bottom:288.841500px;}
.y166{bottom:289.486500px;}
.y1cf{bottom:289.980000px;}
.y22f{bottom:290.590500px;}
.y191{bottom:292.227000px;}
.y95{bottom:292.270500px;}
.yf9{bottom:293.547000px;}
.y17f{bottom:294.732000px;}
.y167{bottom:294.912000px;}
.y126{bottom:296.142000px;}
.y261{bottom:297.466500px;}
.y180{bottom:300.156000px;}
.y1fb{bottom:301.164000px;}
.y122{bottom:302.119500px;}
.y152{bottom:303.643500px;}
.yc1{bottom:303.862500px;}
.y1c2{bottom:304.431000px;}
.ye{bottom:305.994000px;}
.y79{bottom:307.261500px;}
.y125{bottom:308.097000px;}
.y48{bottom:309.076500px;}
.y1ab{bottom:309.732000px;}
.y22e{bottom:309.741000px;}
.y165{bottom:310.378500px;}
.y121{bottom:314.074500px;}
.y151{bottom:315.598500px;}
.y17e{bottom:315.622500px;}
.y260{bottom:316.617000px;}
.y124{bottom:320.052000px;}
.y1fa{bottom:320.662500px;}
.y47{bottom:320.877000px;}
.yf8{bottom:322.504500px;}
.y190{bottom:323.797500px;}
.yd{bottom:323.881500px;}
.yc0{bottom:324.754500px;}
.y94{bottom:324.936000px;}
.y1c1{bottom:325.323000px;}
.y14e{bottom:327.553500px;}
.y78{bottom:328.152000px;}
.y22d{bottom:328.891500px;}
.y1aa{bottom:330.624000px;}
.y163{bottom:331.270500px;}
.y123{bottom:332.007000px;}
.y14f{bottom:333.531000px;}
.yf3{bottom:334.461000px;}
.y25f{bottom:335.767500px;}
.y17c{bottom:336.514500px;}
.y164{bottom:336.694500px;}
.y14d{bottom:339.508500px;}
.y1f9{bottom:340.161000px;}
.yf5{bottom:340.438500px;}
.y46{bottom:341.356500px;}
.yc{bottom:341.769000px;}
.y17d{bottom:341.938500px;}
.y18f{bottom:343.030500px;}
.y127{bottom:343.962000px;}
.ybf{bottom:345.645000px;}
.y1c0{bottom:346.213500px;}
.yf2{bottom:346.416000px;}
.y22c{bottom:348.042000px;}
.y77{bottom:349.044000px;}
.y150{bottom:351.463500px;}
.y1a9{bottom:351.516000px;}
.y162{bottom:352.161000px;}
.yf4{bottom:352.393500px;}
.y45{bottom:353.155500px;}
.y25e{bottom:354.918000px;}
.y17b{bottom:357.406500px;}
.y44{bottom:357.495000px;}
.yf7{bottom:358.371000px;}
.yb{bottom:359.658000px;}
.y93{bottom:362.041500px;}
.y18e{bottom:362.262000px;}
.y120{bottom:363.418500px;}
.ybe{bottom:366.537000px;}
.y1bf{bottom:367.105500px;}
.y22b{bottom:367.192500px;}
.y1f8{bottom:368.626500px;}
.y43{bottom:369.295500px;}
.y11e{bottom:369.396000px;}
.y76{bottom:369.936000px;}
.yf6{bottom:370.326000px;}
.y161{bottom:373.053000px;}
.y25d{bottom:374.070000px;}
.y11c{bottom:375.373500px;}
.y1a8{bottom:376.890000px;}
.ya{bottom:377.545500px;}
.y179{bottom:378.297000px;}
.y11d{bottom:381.351000px;}
.y18d{bottom:381.495000px;}
.y92{bottom:382.932000px;}
.y17a{bottom:383.722500px;}
.y42{bottom:385.435500px;}
.y22a{bottom:386.343000px;}
.yf1{bottom:387.328500px;}
.ybd{bottom:387.429000px;}
.y1be{bottom:387.997500px;}
.y1f7{bottom:388.125000px;}
.y41{bottom:389.775000px;}
.y75{bottom:390.826500px;}
.y25c{bottom:393.220500px;}
.yed{bottom:393.306000px;}
.y14c{bottom:394.830000px;}
.y9{bottom:395.433000px;}
.y178{bottom:399.189000px;}
.y11f{bottom:399.283500px;}
.yef{bottom:399.285000px;}
.y14a{bottom:400.807500px;}
.y40{bottom:401.574000px;}
.y91{bottom:403.824000px;}
.yec{bottom:405.262500px;}
.y229{bottom:405.493500px;}
.y146{bottom:406.785000px;}
.ybc{bottom:408.321000px;}
.y160{bottom:408.681000px;}
.y1bd{bottom:408.888000px;}
.yee{bottom:411.240000px;}
.y74{bottom:411.718500px;}
.y25b{bottom:412.371000px;}
.y149{bottom:412.762500px;}
.y8{bottom:413.322000px;}
.y1a7{bottom:415.714500px;}
.y1f6{bottom:416.590500px;}
.y145{bottom:418.740000px;}
.y177{bottom:420.081000px;}
.y3f{bottom:422.053500px;}
.yf0{bottom:423.195000px;}
.y228{bottom:424.644000px;}
.y90{bottom:424.716000px;}
.y148{bottom:424.717500px;}
.y15f{bottom:427.914000px;}
.yba{bottom:429.211500px;}
.y1bb{bottom:429.780000px;}
.y14b{bottom:430.695000px;}
.y11b{bottom:430.696500px;}
.y7{bottom:431.209500px;}
.y25a{bottom:431.521500px;}
.y3e{bottom:433.854000px;}
.ybb{bottom:434.637000px;}
.y1bc{bottom:435.204000px;}
.y1a6{bottom:436.606500px;}
.y147{bottom:436.674000px;}
.y73{bottom:437.094000px;}
.yea{bottom:442.651500px;}
.y227{bottom:443.794500px;}
.y1f5{bottom:445.054500px;}
.y8f{bottom:445.606500px;}
.y15e{bottom:447.147000px;}
.yeb{bottom:448.629000px;}
.y6{bottom:449.097000px;}
.yb9{bottom:450.103500px;}
.y1ba{bottom:450.672000px;}
.y3d{bottom:454.333500px;}
.ye9{bottom:454.606500px;}
.y176{bottom:455.709000px;}
.y1a5{bottom:457.498500px;}
.y144{bottom:462.108000px;}
.y226{bottom:462.945000px;}
.y1f4{bottom:464.553000px;}
.y3c{bottom:466.132500px;}
.y15d{bottom:466.380000px;}
.y8e{bottom:466.498500px;}
.y11a{bottom:466.561500px;}
.y142{bottom:468.085500px;}
.y259{bottom:469.822500px;}
.yb8{bottom:470.995500px;}
.y1b9{bottom:471.562500px;}
.y5{bottom:472.963500px;}
.y143{bottom:474.063000px;}
.y175{bottom:474.942000px;}
.y1ce{bottom:476.988000px;}
.y1a4{bottom:478.389000px;}
.y119{bottom:478.516500px;}
.y141{bottom:480.040500px;}
.y225{bottom:482.095500px;}
.y1f3{bottom:484.053000px;}
.y15c{bottom:485.611500px;}
.ye8{bottom:486.018000px;}
.y3b{bottom:486.612000px;}
.y8d{bottom:487.390500px;}
.y258{bottom:488.973000px;}
.y4{bottom:490.851000px;}
.yb7{bottom:491.886000px;}
.y1b8{bottom:492.454500px;}
.y174{bottom:494.173500px;}
.ye7{bottom:497.973000px;}
.y1a3{bottom:499.281000px;}
.y224{bottom:501.246000px;}
.y3a{bottom:502.752000px;}
.y1f2{bottom:503.551500px;}
.y114{bottom:503.950500px;}
.y257{bottom:508.123500px;}
.y8c{bottom:508.281000px;}
.y3{bottom:508.738500px;}
.y117{bottom:509.928000px;}
.yb6{bottom:512.778000px;}
.y1b7{bottom:513.346500px;}
.y173{bottom:513.406500px;}
.y113{bottom:515.905500px;}
.y72{bottom:516.304500px;}
.y13f{bottom:517.429500px;}
.y39{bottom:518.890500px;}
.y223{bottom:520.396500px;}
.y116{bottom:521.883000px;}
.y1f1{bottom:523.050000px;}
.y2{bottom:526.627500px;}
.y256{bottom:527.274000px;}
.y118{bottom:527.860500px;}
.y8b{bottom:529.173000px;}
.ye6{bottom:529.384500px;}
.y38{bottom:530.691000px;}
.yb5{bottom:533.670000px;}
.y115{bottom:533.838000px;}
.y1b6{bottom:534.237000px;}
.y1a2{bottom:534.909000px;}
.y140{bottom:535.362000px;}
.y222{bottom:539.547000px;}
.ye2{bottom:541.339500px;}
.y1f0{bottom:542.548500px;}
.y255{bottom:546.424500px;}
.y37{bottom:546.831000px;}
.ye3{bottom:547.317000px;}
.y8a{bottom:550.065000px;}
.y1{bottom:550.492500px;}
.ye1{bottom:553.294500px;}
.y1a1{bottom:554.142000px;}
.y71{bottom:555.129000px;}
.y221{bottom:558.697500px;}
.yb4{bottom:559.044000px;}
.y110{bottom:559.272000px;}
.y1ef{bottom:562.047000px;}
.y36{bottom:562.969500px;}
.ye5{bottom:565.249500px;}
.y254{bottom:565.575000px;}
.y35{bottom:567.310500px;}
.y89{bottom:570.955500px;}
.y10f{bottom:571.227000px;}
.y1a0{bottom:573.375000px;}
.y70{bottom:576.021000px;}
.ye4{bottom:577.204500px;}
.y220{bottom:577.848000px;}
.y34{bottom:579.109500px;}
.y10e{bottom:583.182000px;}
.y13e{bottom:584.706000px;}
.y253{bottom:584.725500px;}
.y112{bottom:589.159500px;}
.y1ee{bottom:590.512500px;}
.y88{bottom:591.847500px;}
.y19f{bottom:592.606500px;}
.yb3{bottom:594.387000px;}
.y10d{bottom:595.138500px;}
.ydb{bottom:596.661000px;}
.y6f{bottom:596.913000px;}
.y21f{bottom:597.000000px;}
.y33{bottom:599.589000px;}
.y111{bottom:601.116000px;}
.ye0{bottom:602.638500px;}
.y252{bottom:603.876000px;}
.yd8{bottom:608.616000px;}
.y1ed{bottom:610.533000px;}
.y32{bottom:611.389500px;}
.y87{bottom:612.739500px;}
.ydd{bottom:614.593500px;}
.ydf{bottom:614.595000px;}
.yb2{bottom:615.277500px;}
.y21e{bottom:616.150500px;}
.y6e{bottom:617.803500px;}
.yd7{bottom:620.572500px;}
.y251{bottom:623.026500px;}
.ydc{bottom:626.550000px;}
.y1ec{bottom:630.555000px;}
.y31{bottom:631.867500px;}
.yda{bottom:632.527500px;}
.y86{bottom:633.631500px;}
.y21d{bottom:635.301000px;}
.yb1{bottom:636.169500px;}
.yde{bottom:638.505000px;}
.y6d{bottom:638.695500px;}
.y250{bottom:642.177000px;}
.yd9{bottom:644.482500px;}
.y30{bottom:648.007500px;}
.y1eb{bottom:650.575500px;}
.y21c{bottom:654.451500px;}
.y85{bottom:654.522000px;}
.y10c{bottom:656.437500px;}
.yb0{bottom:657.061500px;}
.y6c{bottom:659.587500px;}
.y24f{bottom:661.327500px;}
.yd6{bottom:663.939000px;}
.y2f{bottom:664.147500px;}
.yd4{bottom:669.916500px;}
.y1ea{bottom:670.596000px;}
.y21b{bottom:673.602000px;}
.yd2{bottom:675.894000px;}
.yaf{bottom:677.953500px;}
.y84{bottom:679.897500px;}
.y2e{bottom:680.286000px;}
.y6a{bottom:680.478000px;}
.yd3{bottom:681.871500px;}
.y6b{bottom:685.903500px;}
.yd1{bottom:687.849000px;}
.y1e9{bottom:690.618000px;}
.y2d{bottom:692.086500px;}
.y21a{bottom:692.752500px;}
.y13d{bottom:693.826500px;}
.yae{bottom:698.844000px;}
.y24e{bottom:699.628500px;}
.yd5{bottom:699.804000px;}
.y68{bottom:701.370000px;}
.y83{bottom:704.329500px;}
.y69{bottom:706.794000px;}
.y1e8{bottom:710.638500px;}
.y219{bottom:711.903000px;}
.y2c{bottom:712.566000px;}
.y24d{bottom:718.779000px;}
.yd0{bottom:719.260500px;}
.y67{bottom:722.262000px;}
.yad{bottom:724.219500px;}
.y2b{bottom:724.365000px;}
.yce{bottom:725.238000px;}
.y1e7{bottom:730.660500px;}
.y218{bottom:731.053500px;}
.ycd{bottom:731.215500px;}
.y24c{bottom:737.929500px;}
.y66{bottom:743.152500px;}
.ycf{bottom:743.170500px;}
.y2a{bottom:744.844500px;}
.y153{bottom:746.004000px;}
.y217{bottom:750.204000px;}
.y1e6{bottom:750.681000px;}
.y24b{bottom:757.081500px;}
.yac{bottom:759.561000px;}
.y29{bottom:760.984500px;}
.y65{bottom:764.044500px;}
.y216{bottom:769.354500px;}
.y1e5{bottom:770.701500px;}
.ycc{bottom:771.652500px;}
.y28{bottom:772.785000px;}
.y24a{bottom:776.232000px;}
.yab{bottom:780.453000px;}
.y64{bottom:784.936500px;}
.y215{bottom:788.505000px;}
.y1e4{bottom:790.723500px;}
.y27{bottom:793.263000px;}
.y249{bottom:795.382500px;}
.yaa{bottom:801.345000px;}
.y26{bottom:805.063500px;}
.y63{bottom:805.827000px;}
.y214{bottom:807.655500px;}
.y1e3{bottom:810.744000px;}
.y248{bottom:814.533000px;}
.y25{bottom:821.203500px;}
.ya9{bottom:822.235500px;}
.y62{bottom:826.719000px;}
.y213{bottom:826.806000px;}
.ycb{bottom:830.622000px;}
.y1e2{bottom:830.764500px;}
.y247{bottom:833.683500px;}
.y24{bottom:841.681500px;}
.ya8{bottom:843.127500px;}
.y212{bottom:845.956500px;}
.y61{bottom:847.611000px;}
.y1e1{bottom:850.786500px;}
.y246{bottom:852.834000px;}
.ya7{bottom:864.019500px;}
.y211{bottom:865.107000px;}
.y60{bottom:868.503000px;}
.y1e0{bottom:870.807000px;}
.y245{bottom:871.984500px;}
.y210{bottom:884.257500px;}
.ya6{bottom:884.910000px;}
.y23{bottom:886.359000px;}
.y5f{bottom:889.393500px;}
.y244{bottom:891.135000px;}
.y20f{bottom:903.408000px;}
.ya5{bottom:905.802000px;}
.y21{bottom:907.251000px;}
.y1df{bottom:908.761500px;}
.y5e{bottom:910.285500px;}
.y22{bottom:912.675000px;}
.y18c{bottom:915.709500px;}
.y20e{bottom:922.558500px;}
.ya4{bottom:926.694000px;}
.y20{bottom:928.141500px;}
.y243{bottom:929.436000px;}
.y1de{bottom:929.652000px;}
.y5d{bottom:931.177500px;}
.y20d{bottom:941.709000px;}
.ya3{bottom:947.584500px;}
.y242{bottom:948.586500px;}
.y1f{bottom:949.033500px;}
.y1dd{bottom:950.544000px;}
.y5c{bottom:952.068000px;}
.y18b{bottom:957.493500px;}
.y20c{bottom:960.859500px;}
.y241{bottom:967.737000px;}
.ya2{bottom:968.476500px;}
.y1e{bottom:969.925500px;}
.y1dc{bottom:971.436000px;}
.y5b{bottom:972.960000px;}
.y20b{bottom:984.493500px;}
.y240{bottom:986.887500px;}
.ya1{bottom:989.368500px;}
.y1db{bottom:992.326500px;}
.y5a{bottom:993.852000px;}
.y23f{bottom:1006.038000px;}
.y1d{bottom:1008.748500px;}
.y15b{bottom:1009.258500px;}
.ya0{bottom:1010.260500px;}
.y1da{bottom:1013.218500px;}
.y59{bottom:1014.742500px;}
.y18a{bottom:1020.168000px;}
.y20a{bottom:1024.395000px;}
.y23e{bottom:1025.188500px;}
.y15a{bottom:1030.150500px;}
.y9f{bottom:1031.151000px;}
.y1d9{bottom:1034.110500px;}
.y58{bottom:1035.634500px;}
.y172{bottom:1036.576500px;}
.y1c{bottom:1040.086500px;}
.y209{bottom:1043.893500px;}
.y23d{bottom:1044.339000px;}
.y159{bottom:1051.041000px;}
.y9e{bottom:1052.043000px;}
.y1d8{bottom:1055.001000px;}
.y57{bottom:1056.526500px;}
.y171{bottom:1057.467000px;}
.y189{bottom:1061.950500px;}
.y208{bottom:1063.392000px;}
.y23c{bottom:1063.489500px;}
.y1b{bottom:1071.424500px;}
.y157{bottom:1071.933000px;}
.y9d{bottom:1072.935000px;}
.y158{bottom:1077.358500px;}
.y56{bottom:1077.417000px;}
.y1d7{bottom:1080.376500px;}
.y23b{bottom:1082.640000px;}
.y207{bottom:1082.890500px;}
.y156{bottom:1092.825000px;}
.y9c{bottom:1093.825500px;}
.y55{bottom:1098.309000px;}
.y23a{bottom:1101.790500px;}
.y206{bottom:1102.389000px;}
.y1a{bottom:1102.761000px;}
.y19e{bottom:1103.734500px;}
.y9b{bottom:1114.717500px;}
.y155{bottom:1118.199000px;}
.y54{bottom:1119.201000px;}
.y239{bottom:1120.941000px;}
.y205{bottom:1121.889000px;}
.y53{bottom:1140.091500px;}
.y204{bottom:1141.387500px;}
.y52{bottom:1200.543000px;}
.hc{height:16.817382px;}
.h15{height:30.252344px;}
.h9{height:32.565965px;}
.h8{height:32.845601px;}
.h2{height:37.993262px;}
.h1e{height:38.896243px;}
.he{height:41.250077px;}
.h7{height:43.217759px;}
.ha{height:43.421105px;}
.h3{height:43.815515px;}
.h10{height:48.848947px;}
.h1f{height:51.536947px;}
.hf{height:51.861658px;}
.h13{height:54.162344px;}
.hb{height:54.276245px;}
.h5{height:54.541601px;}
.h6{height:54.547601px;}
.h20{height:60.848947px;}
.h1a{height:61.903262px;}
.h19{height:61.909262px;}
.hd{height:62.946077px;}
.h1d{height:62.952077px;}
.h4{height:77.792486px;}
.h14{height:78.072344px;}
.h17{height:85.813262px;}
.h18{height:85.819262px;}
.h16{height:109.723262px;}
.h1b{height:133.633262px;}
.h1c{height:133.639262px;}
.h11{height:892.914000px;}
.h12{height:893.250000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w2{width:1262.835000px;}
.w3{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:53.574000px;}
.x4a{left:66.927000px;}
.x7a{left:73.407000px;}
.x62{left:74.547000px;}
.x6a{left:75.960000px;}
.x64{left:77.386500px;}
.x54{left:80.823000px;}
.x84{left:82.219500px;}
.x5a{left:84.034500px;}
.x13a{left:85.174500px;}
.x6d{left:86.398500px;}
.x76{left:91.618500px;}
.x45{left:98.691000px;}
.x4b{left:109.444500px;}
.x13b{left:151.128000px;}
.x2d{left:247.348500px;}
.xd{left:248.526000px;}
.xb{left:249.591000px;}
.x2{left:251.352000px;}
.xb5{left:254.467500px;}
.x3a{left:258.556500px;}
.xaf{left:262.068000px;}
.xc8{left:268.056000px;}
.xc{left:269.914500px;}
.xb6{left:273.072000px;}
.xc9{left:280.347000px;}
.x24{left:281.479500px;}
.xb7{left:288.016500px;}
.x137{left:290.194500px;}
.xb8{left:291.678000px;}
.x123{left:295.086000px;}
.x124{left:300.162000px;}
.x138{left:301.452000px;}
.xb2{left:302.757000px;}
.xe8{left:304.419000px;}
.xb9{left:306.621000px;}
.x2e{left:311.193000px;}
.x139{left:312.519000px;}
.xdf{left:314.391000px;}
.x2f{left:318.664500px;}
.x6b{left:321.625500px;}
.xb4{left:322.710000px;}
.x120{left:323.799000px;}
.xba{left:325.227000px;}
.x4c{left:326.856000px;}
.xbb{left:328.888500px;}
.x10e{left:330.784500px;}
.x14{left:334.113000px;}
.xf2{left:336.573000px;}
.xe4{left:337.729500px;}
.x125{left:341.482500px;}
.xbc{left:343.831500px;}
.x10f{left:345.729000px;}
.x101{left:348.226500px;}
.xe9{left:349.786500px;}
.x129{left:353.182500px;}
.x4d{left:354.939000px;}
.x126{left:356.427000px;}
.x11b{left:359.139000px;}
.x127{left:360.237000px;}
.xea{left:361.602000px;}
.x43{left:363.066000px;}
.x110{left:364.483500px;}
.x3b{left:365.808000px;}
.x102{left:366.981000px;}
.x111{left:368.293500px;}
.x133{left:372.273000px;}
.xee{left:373.480500px;}
.xca{left:374.725500px;}
.xf3{left:376.656000px;}
.x44{left:378.010500px;}
.xe0{left:379.065000px;}
.x103{left:381.925500px;}
.x112{left:383.238000px;}
.x3{left:384.813000px;}
.xcb{left:387.016500px;}
.xcd{left:388.378500px;}
.x104{left:389.547000px;}
.xe1{left:390.982500px;}
.x11f{left:392.776500px;}
.x128{left:393.936000px;}
.x131{left:397.762500px;}
.x108{left:400.024500px;}
.x8e{left:402.858000px;}
.x105{left:404.491500px;}
.xce{left:407.040000px;}
.x106{left:408.301500px;}
.x4{left:410.524500px;}
.x109{left:414.969000px;}
.x8f{left:417.801000px;}
.x107{left:420.430500px;}
.x90{left:421.578000px;}
.x1f{left:423.153000px;}
.x113{left:424.558500px;}
.xf4{left:428.410500px;}
.xcf{left:429.418500px;}
.x10a{left:433.711500px;}
.x20{left:435.444000px;}
.x91{left:436.522500px;}
.x132{left:440.668500px;}
.xd9{left:442.050000px;}
.x92{left:444.076500px;}
.x134{left:445.894500px;}
.xd0{left:448.080000px;}
.xcc{left:449.220000px;}
.x25{left:451.660500px;}
.xb0{left:454.992000px;}
.xda{left:456.247500px;}
.x26{left:459.132000px;}
.x11a{left:460.347000px;}
.x93{left:462.798000px;}
.xb1{left:466.456500px;}
.x67{left:468.525000px;}
.x21{left:470.143500px;}
.x10b{left:471.199500px;}
.x10c{left:474.999000px;}
.xd3{left:476.196000px;}
.x135{left:477.580500px;}
.x15{left:478.585500px;}
.x94{left:481.519500px;}
.x2c{left:483.195000px;}
.xf5{left:484.675500px;}
.xd1{left:489.120000px;}
.x16{left:490.876500px;}
.x10d{left:493.741500px;}
.xdb{left:495.310500px;}
.x95{left:496.462500px;}
.xdc{left:498.739500px;}
.x96{left:500.239500px;}
.xe5{left:502.665000px;}
.xe{left:504.405000px;}
.x121{left:506.187000px;}
.x42{left:507.816000px;}
.xdd{left:512.937000px;}
.x27{left:514.383000px;}
.x122{left:517.287000px;}
.x97{left:518.961000px;}
.x28{left:521.854500px;}
.xff{left:522.969000px;}
.xd2{left:526.443000px;}
.xab{left:528.942000px;}
.x5{left:532.482000px;}
.x98{left:533.905500px;}
.xac{left:536.563500px;}
.xe2{left:540.067500px;}
.x99{left:541.459500px;}
.xf6{left:544.750500px;}
.x35{left:547.476000px;}
.x31{left:548.677500px;}
.xad{left:551.506500px;}
.xe3{left:553.609500px;}
.x36{left:554.949000px;}
.x32{left:556.149000px;}
.x6{left:558.193500px;}
.x9a{left:560.179500px;}
.xc0{left:562.792500px;}
.x100{left:564.289500px;}
.xf7{left:567.315000px;}
.xae{left:570.261000px;}
.xef{left:571.647000px;}
.x37{left:573.699000px;}
.x9b{left:575.124000px;}
.x55{left:576.592500px;}
.x88{left:577.843500px;}
.x17{left:579.681000px;}
.x38{left:581.313000px;}
.x7e{left:583.042500px;}
.x7f{left:584.176500px;}
.x6c{left:585.427500px;}
.xd4{left:586.600500px;}
.x4e{left:588.382500px;}
.x56{left:589.741500px;}
.x18{left:591.972000px;}
.xf{left:593.112000px;}
.x82{left:594.564000px;}
.x39{left:596.257500px;}
.x6e{left:597.310500px;}
.x2b{left:599.604000px;}
.xf8{left:601.014000px;}
.x6f{left:602.268000px;}
.x7d{left:603.273000px;}
.xf9{left:604.824000px;}
.xc1{left:607.326000px;}
.x22{left:609.763500px;}
.x4f{left:613.158000px;}
.x85{left:616.285500px;}
.xfa{left:619.768500px;}
.xc2{left:622.270500px;}
.xfb{left:623.580000px;}
.xc3{left:625.932000px;}
.x1d{left:632.308500px;}
.xd5{left:634.200000px;}
.x114{left:637.576500px;}
.x19{left:639.141000px;}
.xbd{left:641.191500px;}
.x1e{left:642.475500px;}
.xc4{left:644.536500px;}
.xd6{left:646.491000px;}
.x1a{left:651.432000px;}
.xbe{left:653.482500px;}
.xe6{left:655.912500px;}
.xfc{left:657.277500px;}
.xc5{left:659.481000px;}
.xd8{left:661.380000px;}
.xc6{left:663.142500px;}
.x10{left:665.224500px;}
.xa0{left:668.751000px;}
.x115{left:671.560500px;}
.x3c{left:676.386000px;}
.x11{left:677.515500px;}
.xfd{left:679.843500px;}
.x9c{left:681.199500px;}
.xa1{left:684.895500px;}
.x116{left:687.103500px;}
.x3d{left:691.329000px;}
.x9d{left:693.490500px;}
.x12a{left:696.589500px;}
.x7{left:698.221500px;}
.xc7{left:700.353000px;}
.x136{left:703.048500px;}
.x57{left:704.554500px;}
.x86{left:705.588000px;}
.x77{left:707.041500px;}
.x33{left:709.521000px;}
.x8b{left:710.635500px;}
.x50{left:712.032000px;}
.x78{left:713.323500px;}
.x65{left:714.694500px;}
.x51{left:716.106000px;}
.x8{left:718.254000px;}
.x23{left:720.075000px;}
.x7c{left:721.645500px;}
.x30{left:723.112500px;}
.x34{left:724.465500px;}
.x29{left:726.787500px;}
.x8a{left:728.068500px;}
.x81{left:729.250500px;}
.x12{left:730.345500px;}
.x5f{left:732.012000px;}
.x2a{left:734.259000px;}
.x7b{left:736.765500px;}
.x5b{left:739.396500px;}
.x74{left:740.820000px;}
.x13{left:742.636500px;}
.x80{left:743.983500px;}
.x3e{left:745.578000px;}
.x12b{left:747.610500px;}
.x72{left:749.569500px;}
.x1b{left:750.864000px;}
.xa2{left:752.764500px;}
.xb3{left:754.990500px;}
.x3f{left:756.766500px;}
.x12c{left:760.387500px;}
.xe7{left:761.835000px;}
.x12d{left:763.473000px;}
.xa3{left:765.810000px;}
.xa4{left:768.907500px;}
.x130{left:770.077500px;}
.x117{left:771.405000px;}
.xfe{left:777.154500px;}
.x12e{left:779.337000px;}
.xa5{left:781.953000px;}
.x9e{left:783.003000px;}
.xeb{left:784.840500px;}
.xf0{left:785.988000px;}
.xa6{left:788.346000px;}
.xd7{left:791.661000px;}
.xbf{left:792.918000px;}
.x9f{left:795.295500px;}
.x11c{left:796.489500px;}
.xf1{left:797.905500px;}
.xec{left:799.038000px;}
.x11d{left:800.251500px;}
.xa7{left:801.393000px;}
.x118{left:802.489500px;}
.xa8{left:804.490500px;}
.x12f{left:807.978000px;}
.x9{left:811.363500px;}
.xde{left:813.381000px;}
.x119{left:815.133000px;}
.xed{left:816.529500px;}
.x40{left:817.698000px;}
.x11e{left:818.958000px;}
.xa9{left:820.633500px;}
.x41{left:832.642500px;}
.xaa{left:833.679000px;}
.x1c{left:835.386000px;}
.xa{left:837.075000px;}
.x79{left:861.969000px;}
.x75{left:864.009000px;}
.x70{left:874.014000px;}
.x46{left:966.051000px;}
.x52{left:1089.549000px;}
.x53{left:1090.941000px;}
.x83{left:1091.944500px;}
.x8d{left:1093.063500px;}
.x60{left:1094.157000px;}
.x61{left:1095.690000px;}
.x58{left:1097.241000px;}
.x68{left:1099.330500px;}
.x63{left:1101.448500px;}
.x5d{left:1103.358000px;}
.x47{left:1105.020000px;}
.x89{left:1106.553000px;}
.x49{left:1107.630000px;}
.x5c{left:1109.272500px;}
.x87{left:1110.693000px;}
.x48{left:1111.815000px;}
.x66{left:1113.954000px;}
.x69{left:1115.743500px;}
.x8c{left:1117.050000px;}
.x5e{left:1118.190000px;}
.x59{left:1119.754500px;}
.x71{left:1120.830000px;}
.x73{left:1127.595000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v3{vertical-align:-10.624000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:2.389333pt;}
.v9{vertical-align:10.666667pt;}
.v1{vertical-align:19.285333pt;}
.v4{vertical-align:21.253333pt;}
.v5{vertical-align:42.506667pt;}
.v6{vertical-align:63.760000pt;}
.v7{vertical-align:85.013333pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2b{letter-spacing:0.000540pt;}
.ls52{letter-spacing:0.000711pt;}
.ls18{letter-spacing:0.000978pt;}
.ls40{letter-spacing:0.001774pt;}
.ls28{letter-spacing:0.003220pt;}
.ls5f{letter-spacing:0.004267pt;}
.ls3e{letter-spacing:0.004684pt;}
.ls8{letter-spacing:0.637762pt;}
.lse{letter-spacing:0.643096pt;}
.ls1{letter-spacing:2.651733pt;}
.ls2{letter-spacing:2.657067pt;}
.ls0{letter-spacing:7.437600pt;}
.ls32{letter-spacing:9.580756pt;}
.ls33{letter-spacing:9.586199pt;}
.ls59{letter-spacing:10.460800pt;}
.ls3d{letter-spacing:10.462933pt;}
.ls14{letter-spacing:10.549464pt;}
.ls15{letter-spacing:10.554906pt;}
.ls6{letter-spacing:10.626533pt;}
.ls43{letter-spacing:10.641981pt;}
.ls20{letter-spacing:10.676585pt;}
.ls5a{letter-spacing:10.935467pt;}
.ls3b{letter-spacing:10.991561pt;}
.ls3c{letter-spacing:10.996790pt;}
.ls49{letter-spacing:11.599804pt;}
.ls24{letter-spacing:11.619733pt;}
.ls23{letter-spacing:11.620237pt;}
.ls27{letter-spacing:11.625570pt;}
.ls26{letter-spacing:11.668716pt;}
.ls5b{letter-spacing:11.743851pt;}
.ls56{letter-spacing:11.792335pt;}
.ls60{letter-spacing:11.841701pt;}
.ls25{letter-spacing:11.850767pt;}
.ls50{letter-spacing:11.857155pt;}
.ls48{letter-spacing:11.950933pt;}
.ls4e{letter-spacing:11.954133pt;}
.ls46{letter-spacing:11.956267pt;}
.ls4f{letter-spacing:11.959467pt;}
.ls53{letter-spacing:12.017864pt;}
.ls5c{letter-spacing:12.028473pt;}
.ls4b{letter-spacing:12.039819pt;}
.ls5d{letter-spacing:12.055553pt;}
.ls5e{letter-spacing:12.072011pt;}
.ls47{letter-spacing:12.084371pt;}
.ls4d{letter-spacing:12.101538pt;}
.ls58{letter-spacing:12.161450pt;}
.ls44{letter-spacing:12.178489pt;}
.ls55{letter-spacing:12.321924pt;}
.ls51{letter-spacing:12.484016pt;}
.ls1d{letter-spacing:12.677978pt;}
.ls54{letter-spacing:12.682708pt;}
.ls1c{letter-spacing:12.714699pt;}
.ls42{letter-spacing:12.905176pt;}
.ls38{letter-spacing:13.045805pt;}
.ls1f{letter-spacing:13.058844pt;}
.ls2e{letter-spacing:13.061307pt;}
.lsd{letter-spacing:13.066335pt;}
.ls1b{letter-spacing:13.113779pt;}
.lsb{letter-spacing:13.118564pt;}
.ls36{letter-spacing:13.166607pt;}
.ls4c{letter-spacing:13.239927pt;}
.ls19{letter-spacing:13.251727pt;}
.ls57{letter-spacing:13.252643pt;}
.ls13{letter-spacing:13.283733pt;}
.ls3a{letter-spacing:13.284237pt;}
.ls3f{letter-spacing:13.351434pt;}
.ls34{letter-spacing:13.371549pt;}
.ls12{letter-spacing:13.442868pt;}
.ls41{letter-spacing:13.451865pt;}
.ls31{letter-spacing:13.511578pt;}
.ls4a{letter-spacing:13.537966pt;}
.ls10{letter-spacing:14.133720pt;}
.ls1a{letter-spacing:14.285354pt;}
.lsf{letter-spacing:14.690390pt;}
.ls2c{letter-spacing:15.613126pt;}
.ls2a{letter-spacing:15.817380pt;}
.lsc{letter-spacing:15.937067pt;}
.lsa{letter-spacing:15.942400pt;}
.ls35{letter-spacing:15.942537pt;}
.ls39{letter-spacing:16.287969pt;}
.ls2d{letter-spacing:16.758557pt;}
.ls1e{letter-spacing:17.009537pt;}
.ls30{letter-spacing:17.134694pt;}
.ls2f{letter-spacing:17.171629pt;}
.ls45{letter-spacing:17.438620pt;}
.ls17{letter-spacing:17.558557pt;}
.ls37{letter-spacing:18.081433pt;}
.ls29{letter-spacing:19.754302pt;}
.ls21{letter-spacing:21.307243pt;}
.ls9{letter-spacing:22.097119pt;}
.ls22{letter-spacing:24.622609pt;}
.ls16{letter-spacing:39.811818pt;}
.ls3{letter-spacing:51.035733pt;}
.ls4{letter-spacing:55.787733pt;}
.ls5{letter-spacing:57.174803pt;}
.ls11{letter-spacing:350.856796pt;}
.ws2c{word-spacing:-13.283467pt;}
.ws93{word-spacing:-11.955200pt;}
.ws20{word-spacing:-10.626800pt;}
.wsd{word-spacing:-10.095467pt;}
.ws5{word-spacing:-9.298400pt;}
.wsbf{word-spacing:-2.762961pt;}
.ws4e{word-spacing:-2.709827pt;}
.wsf2{word-spacing:-2.582323pt;}
.ws4f{word-spacing:-2.444158pt;}
.wsbc{word-spacing:-2.391040pt;}
.wsbb{word-spacing:-2.377749pt;}
.wsdb{word-spacing:-2.284756pt;}
.ws89{word-spacing:-2.008454pt;}
.ws74{word-spacing:-1.971261pt;}
.wsb1{word-spacing:-1.965953pt;}
.wsbd{word-spacing:-1.912832pt;}
.ws7d{word-spacing:-1.896874pt;}
.ws54{word-spacing:-1.859685pt;}
.ws0{word-spacing:-1.859680pt;}
.ws3{word-spacing:-1.822486pt;}
.wsbe{word-spacing:-1.817190pt;}
.ws88{word-spacing:-1.785293pt;}
.ws2{word-spacing:-1.748099pt;}
.ws3c{word-spacing:-1.700284pt;}
.wsad{word-spacing:-1.647150pt;}
.ws84{word-spacing:-1.636518pt;}
.wsb0{word-spacing:-1.594016pt;}
.wsba{word-spacing:-1.578086pt;}
.wsc9{word-spacing:-1.482445pt;}
.ws91{word-spacing:-1.434624pt;}
.ws44{word-spacing:-1.434614pt;}
.ws92{word-spacing:-1.427187pt;}
.ws90{word-spacing:-1.420812pt;}
.ws12b{word-spacing:-1.386803pt;}
.ws3e{word-spacing:-1.381481pt;}
.wscb{word-spacing:-1.328347pt;}
.wsa6{word-spacing:-1.296168pt;}
.wsa5{word-spacing:-1.291162pt;}
.wsd2{word-spacing:-1.275213pt;}
.ws124{word-spacing:-1.243341pt;}
.wsa7{word-spacing:-1.195520pt;}
.wsa4{word-spacing:-1.147699pt;}
.ws45{word-spacing:-1.115811pt;}
.wsdc{word-spacing:-1.062677pt;}
.wsa8{word-spacing:-1.052058pt;}
.ws5e{word-spacing:-1.009543pt;}
.wsc7{word-spacing:-0.980490pt;}
.wsc5{word-spacing:-0.970133pt;}
.wsc6{word-spacing:-0.956416pt;}
.wsca{word-spacing:-0.956410pt;}
.ws121{word-spacing:-0.908595pt;}
.ws12d{word-spacing:-0.860774pt;}
.ws4d{word-spacing:-0.850142pt;}
.ws120{word-spacing:-0.812954pt;}
.ws8f{word-spacing:-0.765133pt;}
.ws65{word-spacing:-0.706678pt;}
.wsc0{word-spacing:-0.690740pt;}
.ws123{word-spacing:-0.669491pt;}
.ws9d{word-spacing:-0.637606pt;}
.ws10d{word-spacing:-0.621670pt;}
.ws9b{word-spacing:-0.584473pt;}
.wsd6{word-spacing:-0.531339pt;}
.wse2{word-spacing:-0.478205pt;}
.wsf3{word-spacing:-0.430387pt;}
.ws5a{word-spacing:-0.425071pt;}
.wse7{word-spacing:-0.382566pt;}
.wsd3{word-spacing:-0.371937pt;}
.wse8{word-spacing:-0.334746pt;}
.ws46{word-spacing:-0.318803pt;}
.ws9c{word-spacing:-0.291336pt;}
.ws112{word-spacing:-0.286925pt;}
.ws24{word-spacing:-0.265669pt;}
.wseb{word-spacing:-0.239104pt;}
.ws1e{word-spacing:-0.212535pt;}
.wsa1{word-spacing:-0.208053pt;}
.wsef{word-spacing:-0.191283pt;}
.ws36{word-spacing:-0.159402pt;}
.ws37{word-spacing:-0.145848pt;}
.ws119{word-spacing:-0.143462pt;}
.ws23{word-spacing:-0.106268pt;}
.wsfe{word-spacing:-0.095642pt;}
.ws1a{word-spacing:-0.053134pt;}
.wsc4{word-spacing:-0.047821pt;}
.ws16{word-spacing:-0.042507pt;}
.ws12{word-spacing:-0.042029pt;}
.ws6{word-spacing:-0.037194pt;}
.wsb3{word-spacing:-0.004732pt;}
.wsb{word-spacing:-0.000125pt;}
.wsa{word-spacing:0.000000pt;}
.ws8d{word-spacing:0.000800pt;}
.wsa3{word-spacing:0.047821pt;}
.ws13{word-spacing:0.053134pt;}
.wsea{word-spacing:0.095642pt;}
.ws2f{word-spacing:0.106268pt;}
.ws8e{word-spacing:0.143462pt;}
.ws1d{word-spacing:0.159402pt;}
.wsf9{word-spacing:0.191283pt;}
.ws17{word-spacing:0.212536pt;}
.wsb9{word-spacing:0.239104pt;}
.ws40{word-spacing:0.265669pt;}
.wse6{word-spacing:0.286925pt;}
.wsa2{word-spacing:0.318803pt;}
.ws63{word-spacing:0.371936pt;}
.ws57{word-spacing:0.371937pt;}
.ws8{word-spacing:0.375335pt;}
.ws103{word-spacing:0.382566pt;}
.ws3d{word-spacing:0.425071pt;}
.ws2d{word-spacing:0.478205pt;}
.wsee{word-spacing:0.478208pt;}
.ws105{word-spacing:0.526029pt;}
.ws56{word-spacing:0.531339pt;}
.ws133{word-spacing:0.573850pt;}
.ws47{word-spacing:0.584473pt;}
.wse1{word-spacing:0.690740pt;}
.wsf7{word-spacing:0.717312pt;}
.wsdd{word-spacing:0.743874pt;}
.wscd{word-spacing:0.797008pt;}
.ws136{word-spacing:0.812954pt;}
.ws38{word-spacing:0.850142pt;}
.ws52{word-spacing:0.903276pt;}
.ws1c{word-spacing:0.956410pt;}
.wsf6{word-spacing:1.004237pt;}
.ws42{word-spacing:1.009543pt;}
.ws12e{word-spacing:1.052058pt;}
.ws41{word-spacing:1.062677pt;}
.ws2e{word-spacing:1.115811pt;}
.ws94{word-spacing:1.243341pt;}
.wsd7{word-spacing:1.275213pt;}
.wsec{word-spacing:1.291162pt;}
.wsde{word-spacing:1.328347pt;}
.wse9{word-spacing:1.578086pt;}
.ws9a{word-spacing:1.635728pt;}
.wsda{word-spacing:1.647150pt;}
.ws5b{word-spacing:1.700284pt;}
.ws10e{word-spacing:1.721549pt;}
.ws3f{word-spacing:1.753418pt;}
.ws39{word-spacing:1.806551pt;}
.ws10b{word-spacing:1.817190pt;}
.ws30{word-spacing:1.859685pt;}
.wsa0{word-spacing:1.912819pt;}
.wsed{word-spacing:1.960653pt;}
.wsa9{word-spacing:1.965953pt;}
.ws12a{word-spacing:2.008474pt;}
.ws26{word-spacing:2.072221pt;}
.ws4c{word-spacing:2.125355pt;}
.ws1b{word-spacing:2.231622pt;}
.wsb5{word-spacing:2.337890pt;}
.ws138{word-spacing:2.343219pt;}
.ws53{word-spacing:2.497292pt;}
.ws50{word-spacing:2.550426pt;}
.ws19{word-spacing:2.550432pt;}
.ws115{word-spacing:2.582323pt;}
.ws4a{word-spacing:2.603559pt;}
.wse5{word-spacing:2.630144pt;}
.wsb2{word-spacing:2.656693pt;}
.ws59{word-spacing:2.816095pt;}
.ws137{word-spacing:2.862626pt;}
.ws134{word-spacing:2.865869pt;}
.ws11d{word-spacing:2.866031pt;}
.wsf0{word-spacing:2.866509pt;}
.ws31{word-spacing:2.869229pt;}
.ws132{word-spacing:2.917069pt;}
.ws32{word-spacing:2.922363pt;}
.wsc3{word-spacing:2.975497pt;}
.ws43{word-spacing:3.028630pt;}
.ws55{word-spacing:3.081764pt;}
.ws13b{word-spacing:3.108352pt;}
.ws3a{word-spacing:3.185311pt;}
.ws8c{word-spacing:3.188032pt;}
.wsfb{word-spacing:3.203994pt;}
.ws25{word-spacing:3.241166pt;}
.ws27{word-spacing:3.294300pt;}
.ws101{word-spacing:3.299635pt;}
.ws117{word-spacing:3.347456pt;}
.wsc8{word-spacing:3.395277pt;}
.ws2a{word-spacing:3.400567pt;}
.ws58{word-spacing:3.453701pt;}
.wsb6{word-spacing:3.506835pt;}
.wscc{word-spacing:3.613103pt;}
.wsdf{word-spacing:3.666237pt;}
.ws9e{word-spacing:3.719371pt;}
.wsb8{word-spacing:3.825638pt;}
.ws3b{word-spacing:3.825664pt;}
.wsb7{word-spacing:3.878772pt;}
.wsd8{word-spacing:3.985040pt;}
.wsd4{word-spacing:4.091308pt;}
.wscf{word-spacing:4.144442pt;}
.wsd0{word-spacing:4.197575pt;}
.ws99{word-spacing:4.250709pt;}
.ws51{word-spacing:4.303843pt;}
.ws33{word-spacing:4.356977pt;}
.ws48{word-spacing:4.622646pt;}
.ws49{word-spacing:4.728914pt;}
.wsc1{word-spacing:4.782048pt;}
.ws28{word-spacing:4.888316pt;}
.wsd1{word-spacing:4.994583pt;}
.ws2b{word-spacing:5.028346pt;}
.ws95{word-spacing:5.116826pt;}
.ws29{word-spacing:5.153985pt;}
.ws11c{word-spacing:5.308109pt;}
.ws22{word-spacing:5.313387pt;}
.wse3{word-spacing:5.355930pt;}
.wsf1{word-spacing:5.451571pt;}
.wse4{word-spacing:5.499392pt;}
.ws108{word-spacing:5.547213pt;}
.wsce{word-spacing:5.579056pt;}
.ws9f{word-spacing:5.724617pt;}
.wse0{word-spacing:5.791591pt;}
.ws4b{word-spacing:5.844725pt;}
.ws5c{word-spacing:5.897859pt;}
.ws125{word-spacing:6.025421pt;}
.wsc2{word-spacing:6.110395pt;}
.wsb4{word-spacing:6.482332pt;}
.ws98{word-spacing:6.588599pt;}
.ws97{word-spacing:6.641733pt;}
.wsaf{word-spacing:6.801135pt;}
.wsae{word-spacing:6.854269pt;}
.wsd9{word-spacing:7.066804pt;}
.ws4{word-spacing:7.402349pt;}
.wsaa{word-spacing:8.023214pt;}
.ws34{word-spacing:8.820222pt;}
.ws5d{word-spacing:9.564096pt;}
.ws7{word-spacing:10.042272pt;}
.ws12c{word-spacing:10.377114pt;}
.ws11f{word-spacing:10.400785pt;}
.ws5f{word-spacing:10.580991pt;}
.ws1f{word-spacing:10.586324pt;}
.ws122{word-spacing:10.998784pt;}
.wsab{word-spacing:11.317514pt;}
.wsac{word-spacing:11.341272pt;}
.ws10c{word-spacing:11.668275pt;}
.ws118{word-spacing:11.716096pt;}
.wsff{word-spacing:11.811738pt;}
.ws13a{word-spacing:11.896226pt;}
.ws129{word-spacing:11.899341pt;}
.ws113{word-spacing:11.900220pt;}
.ws139{word-spacing:11.901116pt;}
.ws116{word-spacing:11.901355pt;}
.ws114{word-spacing:11.902771pt;}
.ws127{word-spacing:11.903258pt;}
.ws106{word-spacing:11.903360pt;}
.wsfc{word-spacing:11.903633pt;}
.ws12f{word-spacing:11.905553pt;}
.ws110{word-spacing:11.905562pt;}
.ws100{word-spacing:11.907379pt;}
.ws126{word-spacing:11.921022pt;}
.ws107{word-spacing:11.955200pt;}
.ws128{word-spacing:12.003021pt;}
.wsfa{word-spacing:12.050842pt;}
.ws11b{word-spacing:12.093753pt;}
.ws11e{word-spacing:12.098662pt;}
.ws111{word-spacing:12.135239pt;}
.ws104{word-spacing:12.289946pt;}
.ws96{word-spacing:12.433325pt;}
.ws109{word-spacing:12.442979pt;}
.wsf8{word-spacing:12.626471pt;}
.ws11a{word-spacing:12.911616pt;}
.ws10a{word-spacing:13.101175pt;}
.ws9{word-spacing:13.230333pt;}
.ws130{word-spacing:13.265072pt;}
.ws135{word-spacing:13.294182pt;}
.ws35{word-spacing:13.342918pt;}
.ws10f{word-spacing:13.628928pt;}
.ws21{word-spacing:13.974207pt;}
.ws131{word-spacing:14.441882pt;}
.wsfd{word-spacing:14.776627pt;}
.ws102{word-spacing:15.111373pt;}
.wsd5{word-spacing:15.940160pt;}
.ws1{word-spacing:19.715148pt;}
.ws18{word-spacing:37.189333pt;}
.ws15{word-spacing:37.194667pt;}
.ws10{word-spacing:40.936000pt;}
.ws11{word-spacing:40.937600pt;}
.wsf{word-spacing:40.938667pt;}
.wse{word-spacing:40.941333pt;}
.wsc{word-spacing:40.941867pt;}
.wsf4{word-spacing:51.789926pt;}
.ws14{word-spacing:54.226667pt;}
.ws7c{word-spacing:149.531642pt;}
.ws72{word-spacing:149.683861pt;}
.ws69{word-spacing:172.050909pt;}
.ws80{word-spacing:173.433757pt;}
.ws7a{word-spacing:213.416877pt;}
.ws83{word-spacing:217.247818pt;}
.ws6a{word-spacing:217.470979pt;}
.ws76{word-spacing:218.586787pt;}
.ws6f{word-spacing:222.492115pt;}
.ws70{word-spacing:223.384762pt;}
.ws6c{word-spacing:227.587638pt;}
.ws60{word-spacing:236.178487pt;}
.ws7b{word-spacing:237.592717pt;}
.ws6d{word-spacing:238.708525pt;}
.ws64{word-spacing:239.787139pt;}
.ws87{word-spacing:241.274883pt;}
.ws71{word-spacing:242.874208pt;}
.ws61{word-spacing:242.888310pt;}
.ws6e{word-spacing:242.946787pt;}
.ws85{word-spacing:245.143018pt;}
.ws68{word-spacing:249.234314pt;}
.wsf5{word-spacing:249.337651pt;}
.ws8a{word-spacing:250.350122pt;}
.ws82{word-spacing:250.982413pt;}
.ws66{word-spacing:251.205574pt;}
.ws6b{word-spacing:252.966308pt;}
.ws78{word-spacing:253.139642pt;}
.ws7e{word-spacing:253.660352pt;}
.ws7f{word-spacing:256.449872pt;}
.ws73{word-spacing:259.611328pt;}
.ws8b{word-spacing:260.503974pt;}
.ws77{word-spacing:260.594435pt;}
.ws79{word-spacing:278.170934pt;}
.ws81{word-spacing:288.692547pt;}
.ws67{word-spacing:290.275358pt;}
.ws62{word-spacing:294.625867pt;}
.ws86{word-spacing:299.276070pt;}
.ws75{word-spacing:387.737838pt;}
._67{margin-left:-18.387392pt;}
._5{margin-left:-10.616218pt;}
._69{margin-left:-7.429867pt;}
._7{margin-left:-5.898327pt;}
._1{margin-left:-4.797974pt;}
._2{margin-left:-3.347424pt;}
._59{margin-left:-2.404938pt;}
._3{margin-left:-1.338970pt;}
._6{width:2.654654pt;}
._1c{width:3.985040pt;}
._68{width:5.882702pt;}
._0{width:9.670336pt;}
._5d{width:11.282652pt;}
._16{width:12.337680pt;}
._8{width:14.064544pt;}
._15{width:15.366310pt;}
._9{width:16.387409pt;}
._d{width:17.427908pt;}
._11{width:18.862523pt;}
._e{width:20.255094pt;}
._5c{width:21.370437pt;}
._10{width:22.474618pt;}
._a{width:23.644571pt;}
._f{width:24.802576pt;}
._5e{width:25.711946pt;}
._13{width:26.620067pt;}
._5a{width:27.990906pt;}
._4{width:29.648896pt;}
._12{width:30.775600pt;}
._14{width:33.166156pt;}
._1d{width:34.292590pt;}
._5b{width:36.463708pt;}
._66{width:54.993920pt;}
._1b{width:63.760640pt;}
._3b{width:83.546527pt;}
._19{width:89.636833pt;}
._57{width:94.392316pt;}
._18{width:121.517153pt;}
._17{width:136.341502pt;}
._1a{width:142.717566pt;}
._3f{width:146.500524pt;}
._3e{width:154.310704pt;}
._3c{width:156.322106pt;}
._2e{width:158.178556pt;}
._4d{width:170.704827pt;}
._53{width:179.161571pt;}
._31{width:182.259228pt;}
._50{width:183.415825pt;}
._21{width:185.261322pt;}
._43{width:189.293047pt;}
._60{width:191.331021pt;}
._20{width:193.518301pt;}
._37{width:206.957634pt;}
._2a{width:208.392182pt;}
._3a{width:209.841110pt;}
._64{width:213.663334pt;}
._38{width:214.713836pt;}
._25{width:215.645516pt;}
._4c{width:223.322762pt;}
._40{width:225.132861pt;}
._34{width:229.819254pt;}
._65{width:234.608845pt;}
._61{width:236.808602pt;}
._4b{width:240.791366pt;}
._41{width:243.009915pt;}
._44{width:247.672182pt;}
._27{width:259.451343pt;}
._63{width:260.671181pt;}
._4e{width:261.954525pt;}
._62{width:262.918758pt;}
._4a{width:264.219199pt;}
._33{width:265.554288pt;}
._54{width:267.800943pt;}
._23{width:271.319929pt;}
._35{width:276.844514pt;}
._30{width:278.431290pt;}
._3d{width:279.335621pt;}
._22{width:280.253776pt;}
._24{width:285.586288pt;}
._51{width:288.819610pt;}
._1f{width:290.593597pt;}
._5f{width:292.854579pt;}
._28{width:294.641477pt;}
._55{width:295.567126pt;}
._47{width:296.730541pt;}
._32{width:297.777091pt;}
._4f{width:299.426684pt;}
._29{width:303.250288pt;}
._2d{width:305.619811pt;}
._42{width:313.644955pt;}
._49{width:322.755610pt;}
._52{width:330.204781pt;}
._2f{width:331.314288pt;}
._48{width:340.818288pt;}
._2b{width:344.821866pt;}
._46{width:345.954288pt;}
._56{width:350.206276pt;}
._39{width:351.479520pt;}
._36{width:354.120266pt;}
._2c{width:358.482288pt;}
._26{width:360.777920pt;}
._45{width:365.959621pt;}
._b{width:1598.461067pt;}
._58{width:2246.653067pt;}
._c{width:2267.906400pt;}
._1e{width:3581.671733pt;}
.fs4{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs3{font-size:40.381867pt;}
.fs5{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs1{font-size:53.133867pt;}
.fs6{font-size:55.365867pt;}
.fs7{font-size:63.761067pt;}
.fs2{font-size:95.641600pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:40.818667pt;}
.y19c{bottom:88.640000pt;}
.y19{bottom:89.120000pt;}
.y1b5{bottom:89.616000pt;}
.y19d{bottom:93.461333pt;}
.y26a{bottom:94.188000pt;}
.y203{bottom:94.418667pt;}
.y13c{bottom:94.458667pt;}
.y154{bottom:98.265333pt;}
.y1cd{bottom:103.473333pt;}
.y10b{bottom:104.958667pt;}
.y18{bottom:105.020000pt;}
.y139{bottom:105.085333pt;}
.y238{bottom:105.097333pt;}
.y82{bottom:105.988000pt;}
.y19a{bottom:107.209333pt;}
.y1b4{bottom:108.185333pt;}
.y50{bottom:109.536000pt;}
.y135{bottom:110.398667pt;}
.y269{bottom:111.210667pt;}
.y202{bottom:111.750667pt;}
.y19b{bottom:112.032000pt;}
.y188{bottom:115.161333pt;}
.y108{bottom:115.585333pt;}
.y138{bottom:115.712000pt;}
.y104{bottom:120.898667pt;}
.y17{bottom:120.920000pt;}
.y134{bottom:121.025333pt;}
.y1cb{bottom:122.042667pt;}
.y237{bottom:122.120000pt;}
.y1d6{bottom:123.782667pt;}
.y81{bottom:124.558667pt;}
.y199{bottom:125.780000pt;}
.y107{bottom:126.212000pt;}
.y137{bottom:126.338667pt;}
.y26d{bottom:126.685333pt;}
.y1b3{bottom:126.756000pt;}
.y1cc{bottom:126.865333pt;}
.y170{bottom:127.329333pt;}
.y4f{bottom:128.106667pt;}
.yca{bottom:128.120000pt;}
.y268{bottom:128.233333pt;}
.y201{bottom:129.084000pt;}
.y103{bottom:131.525333pt;}
.y13a{bottom:131.652000pt;}
.y187{bottom:133.732000pt;}
.y16{bottom:136.821333pt;}
.y106{bottom:136.838667pt;}
.y136{bottom:136.965333pt;}
.yc7{bottom:138.753333pt;}
.y236{bottom:139.142667pt;}
.y1ca{bottom:140.613333pt;}
.y109{bottom:142.153333pt;}
.y1d5{bottom:142.353333pt;}
.y80{bottom:143.129333pt;}
.y26c{bottom:143.708000pt;}
.y198{bottom:144.350667pt;}
.y267{bottom:145.256000pt;}
.y1b2{bottom:145.326667pt;}
.y16f{bottom:145.900000pt;}
.y200{bottom:146.416000pt;}
.y4e{bottom:146.677333pt;}
.yc9{bottom:146.689333pt;}
.y9a{bottom:146.756000pt;}
.y105{bottom:147.466667pt;}
.y13b{bottom:147.592000pt;}
.y186{bottom:152.301333pt;}
.y15{bottom:152.721333pt;}
.y235{bottom:156.165333pt;}
.yc6{bottom:157.324000pt;}
.y10a{bottom:158.093333pt;}
.y1c9{bottom:159.184000pt;}
.y26b{bottom:160.730667pt;}
.y1d4{bottom:160.924000pt;}
.y7f{bottom:161.698667pt;}
.y266{bottom:162.278667pt;}
.y197{bottom:162.920000pt;}
.y1ff{bottom:163.748000pt;}
.y1b1{bottom:163.896000pt;}
.y16d{bottom:164.470667pt;}
.y131{bottom:164.886667pt;}
.y4d{bottom:165.248000pt;}
.y14{bottom:168.621333pt;}
.y16e{bottom:169.292000pt;}
.y99{bottom:169.364000pt;}
.y12d{bottom:170.200000pt;}
.y234{bottom:173.188000pt;}
.y185{bottom:174.857333pt;}
.y100{bottom:175.388000pt;}
.y130{bottom:175.513333pt;}
.yc5{bottom:175.893333pt;}
.y1c8{bottom:177.753333pt;}
.yc8{bottom:178.358667pt;}
.y265{bottom:179.301333pt;}
.y1d3{bottom:179.493333pt;}
.y7e{bottom:180.269333pt;}
.y102{bottom:180.701333pt;}
.y12c{bottom:180.826667pt;}
.y1fe{bottom:181.080000pt;}
.y196{bottom:181.490667pt;}
.y1b0{bottom:182.466667pt;}
.y16c{bottom:183.040000pt;}
.y4c{bottom:183.817333pt;}
.y13{bottom:184.521333pt;}
.yff{bottom:186.014667pt;}
.y133{bottom:186.140000pt;}
.y12f{bottom:186.141333pt;}
.y233{bottom:190.212000pt;}
.y101{bottom:191.328000pt;}
.y132{bottom:191.454667pt;}
.y98{bottom:191.972000pt;}
.yc4{bottom:194.464000pt;}
.y1c7{bottom:196.324000pt;}
.y12e{bottom:196.768000pt;}
.y1d2{bottom:198.064000pt;}
.y7d{bottom:198.840000pt;}
.y195{bottom:200.061333pt;}
.y12{bottom:200.422667pt;}
.y1af{bottom:201.037333pt;}
.y16a{bottom:201.610667pt;}
.y4b{bottom:202.388000pt;}
.y184{bottom:206.273333pt;}
.y16b{bottom:206.433333pt;}
.y232{bottom:207.234667pt;}
.y1fd{bottom:211.873333pt;}
.y264{bottom:213.346667pt;}
.yfd{bottom:213.936000pt;}
.y12a{bottom:214.062667pt;}
.y97{bottom:214.580000pt;}
.y1c6{bottom:214.894667pt;}
.y1d1{bottom:216.634667pt;}
.yc3{bottom:217.020000pt;}
.y7c{bottom:217.409333pt;}
.y193{bottom:218.632000pt;}
.yfe{bottom:219.249333pt;}
.y12b{bottom:219.376000pt;}
.y1ae{bottom:219.606667pt;}
.y169{bottom:220.181333pt;}
.y4a{bottom:220.958667pt;}
.y194{bottom:223.453333pt;}
.y231{bottom:224.257333pt;}
.y11{bottom:224.293333pt;}
.yfc{bottom:224.562667pt;}
.y129{bottom:224.689333pt;}
.y182{bottom:224.842667pt;}
.y183{bottom:229.665333pt;}
.y263{bottom:230.369333pt;}
.y1fc{bottom:233.190667pt;}
.y1c4{bottom:233.464000pt;}
.y1d0{bottom:235.205333pt;}
.y7b{bottom:235.980000pt;}
.y96{bottom:237.188000pt;}
.y192{bottom:237.201333pt;}
.y1ad{bottom:238.177333pt;}
.y1c5{bottom:238.286667pt;}
.y168{bottom:238.752000pt;}
.y10{bottom:240.193333pt;}
.y230{bottom:241.280000pt;}
.y181{bottom:243.413333pt;}
.y262{bottom:247.392000pt;}
.yfa{bottom:250.304000pt;}
.yc2{bottom:251.529333pt;}
.y1c3{bottom:252.034667pt;}
.y128{bottom:252.610667pt;}
.y7a{bottom:254.550667pt;}
.yfb{bottom:255.617333pt;}
.yf{bottom:256.093333pt;}
.y49{bottom:256.532000pt;}
.y1ac{bottom:256.748000pt;}
.y166{bottom:257.321333pt;}
.y1cf{bottom:257.760000pt;}
.y22f{bottom:258.302667pt;}
.y191{bottom:259.757333pt;}
.y95{bottom:259.796000pt;}
.yf9{bottom:260.930667pt;}
.y17f{bottom:261.984000pt;}
.y167{bottom:262.144000pt;}
.y126{bottom:263.237333pt;}
.y261{bottom:264.414667pt;}
.y180{bottom:266.805333pt;}
.y1fb{bottom:267.701333pt;}
.y122{bottom:268.550667pt;}
.y152{bottom:269.905333pt;}
.yc1{bottom:270.100000pt;}
.y1c2{bottom:270.605333pt;}
.ye{bottom:271.994667pt;}
.y79{bottom:273.121333pt;}
.y125{bottom:273.864000pt;}
.y48{bottom:274.734667pt;}
.y1ab{bottom:275.317333pt;}
.y22e{bottom:275.325333pt;}
.y165{bottom:275.892000pt;}
.y121{bottom:279.177333pt;}
.y151{bottom:280.532000pt;}
.y17e{bottom:280.553333pt;}
.y260{bottom:281.437333pt;}
.y124{bottom:284.490667pt;}
.y1fa{bottom:285.033333pt;}
.y47{bottom:285.224000pt;}
.yf8{bottom:286.670667pt;}
.y190{bottom:287.820000pt;}
.yd{bottom:287.894667pt;}
.yc0{bottom:288.670667pt;}
.y94{bottom:288.832000pt;}
.y1c1{bottom:289.176000pt;}
.y14e{bottom:291.158667pt;}
.y78{bottom:291.690667pt;}
.y22d{bottom:292.348000pt;}
.y1aa{bottom:293.888000pt;}
.y163{bottom:294.462667pt;}
.y123{bottom:295.117333pt;}
.y14f{bottom:296.472000pt;}
.yf3{bottom:297.298667pt;}
.y25f{bottom:298.460000pt;}
.y17c{bottom:299.124000pt;}
.y164{bottom:299.284000pt;}
.y14d{bottom:301.785333pt;}
.y1f9{bottom:302.365333pt;}
.yf5{bottom:302.612000pt;}
.y46{bottom:303.428000pt;}
.yc{bottom:303.794667pt;}
.y17d{bottom:303.945333pt;}
.y18f{bottom:304.916000pt;}
.y127{bottom:305.744000pt;}
.ybf{bottom:307.240000pt;}
.y1c0{bottom:307.745333pt;}
.yf2{bottom:307.925333pt;}
.y22c{bottom:309.370667pt;}
.y77{bottom:310.261333pt;}
.y150{bottom:312.412000pt;}
.y1a9{bottom:312.458667pt;}
.y162{bottom:313.032000pt;}
.yf4{bottom:313.238667pt;}
.y45{bottom:313.916000pt;}
.y25e{bottom:315.482667pt;}
.y17b{bottom:317.694667pt;}
.y44{bottom:317.773333pt;}
.yf7{bottom:318.552000pt;}
.yb{bottom:319.696000pt;}
.y93{bottom:321.814667pt;}
.y18e{bottom:322.010667pt;}
.y120{bottom:323.038667pt;}
.ybe{bottom:325.810667pt;}
.y1bf{bottom:326.316000pt;}
.y22b{bottom:326.393333pt;}
.y1f8{bottom:327.668000pt;}
.y43{bottom:328.262667pt;}
.y11e{bottom:328.352000pt;}
.y76{bottom:328.832000pt;}
.yf6{bottom:329.178667pt;}
.y161{bottom:331.602667pt;}
.y25d{bottom:332.506667pt;}
.y11c{bottom:333.665333pt;}
.y1a8{bottom:335.013333pt;}
.ya{bottom:335.596000pt;}
.y179{bottom:336.264000pt;}
.y11d{bottom:338.978667pt;}
.y18d{bottom:339.106667pt;}
.y92{bottom:340.384000pt;}
.y17a{bottom:341.086667pt;}
.y42{bottom:342.609333pt;}
.y22a{bottom:343.416000pt;}
.yf1{bottom:344.292000pt;}
.ybd{bottom:344.381333pt;}
.y1be{bottom:344.886667pt;}
.y1f7{bottom:345.000000pt;}
.y41{bottom:346.466667pt;}
.y75{bottom:347.401333pt;}
.y25c{bottom:349.529333pt;}
.yed{bottom:349.605333pt;}
.y14c{bottom:350.960000pt;}
.y9{bottom:351.496000pt;}
.y178{bottom:354.834667pt;}
.y11f{bottom:354.918667pt;}
.yef{bottom:354.920000pt;}
.y14a{bottom:356.273333pt;}
.y40{bottom:356.954667pt;}
.y91{bottom:358.954667pt;}
.yec{bottom:360.233333pt;}
.y229{bottom:360.438667pt;}
.y146{bottom:361.586667pt;}
.ybc{bottom:362.952000pt;}
.y160{bottom:363.272000pt;}
.y1bd{bottom:363.456000pt;}
.yee{bottom:365.546667pt;}
.y74{bottom:365.972000pt;}
.y25b{bottom:366.552000pt;}
.y149{bottom:366.900000pt;}
.y8{bottom:367.397333pt;}
.y1a7{bottom:369.524000pt;}
.y1f6{bottom:370.302667pt;}
.y145{bottom:372.213333pt;}
.y177{bottom:373.405333pt;}
.y3f{bottom:375.158667pt;}
.yf0{bottom:376.173333pt;}
.y228{bottom:377.461333pt;}
.y90{bottom:377.525333pt;}
.y148{bottom:377.526667pt;}
.y15f{bottom:380.368000pt;}
.yba{bottom:381.521333pt;}
.y1bb{bottom:382.026667pt;}
.y14b{bottom:382.840000pt;}
.y11b{bottom:382.841333pt;}
.y7{bottom:383.297333pt;}
.y25a{bottom:383.574667pt;}
.y3e{bottom:385.648000pt;}
.ybb{bottom:386.344000pt;}
.y1bc{bottom:386.848000pt;}
.y1a6{bottom:388.094667pt;}
.y147{bottom:388.154667pt;}
.y73{bottom:388.528000pt;}
.yea{bottom:393.468000pt;}
.y227{bottom:394.484000pt;}
.y1f5{bottom:395.604000pt;}
.y8f{bottom:396.094667pt;}
.y15e{bottom:397.464000pt;}
.yeb{bottom:398.781333pt;}
.y6{bottom:399.197333pt;}
.yb9{bottom:400.092000pt;}
.y1ba{bottom:400.597333pt;}
.y3d{bottom:403.852000pt;}
.ye9{bottom:404.094667pt;}
.y176{bottom:405.074667pt;}
.y1a5{bottom:406.665333pt;}
.y144{bottom:410.762667pt;}
.y226{bottom:411.506667pt;}
.y1f4{bottom:412.936000pt;}
.y3c{bottom:414.340000pt;}
.y15d{bottom:414.560000pt;}
.y8e{bottom:414.665333pt;}
.y11a{bottom:414.721333pt;}
.y142{bottom:416.076000pt;}
.y259{bottom:417.620000pt;}
.yb8{bottom:418.662667pt;}
.y1b9{bottom:419.166667pt;}
.y5{bottom:420.412000pt;}
.y143{bottom:421.389333pt;}
.y175{bottom:422.170667pt;}
.y1ce{bottom:423.989333pt;}
.y1a4{bottom:425.234667pt;}
.y119{bottom:425.348000pt;}
.y141{bottom:426.702667pt;}
.y225{bottom:428.529333pt;}
.y1f3{bottom:430.269333pt;}
.y15c{bottom:431.654667pt;}
.ye8{bottom:432.016000pt;}
.y3b{bottom:432.544000pt;}
.y8d{bottom:433.236000pt;}
.y258{bottom:434.642667pt;}
.y4{bottom:436.312000pt;}
.yb7{bottom:437.232000pt;}
.y1b8{bottom:437.737333pt;}
.y174{bottom:439.265333pt;}
.ye7{bottom:442.642667pt;}
.y1a3{bottom:443.805333pt;}
.y224{bottom:445.552000pt;}
.y3a{bottom:446.890667pt;}
.y1f2{bottom:447.601333pt;}
.y114{bottom:447.956000pt;}
.y257{bottom:451.665333pt;}
.y8c{bottom:451.805333pt;}
.y3{bottom:452.212000pt;}
.y117{bottom:453.269333pt;}
.yb6{bottom:455.802667pt;}
.y1b7{bottom:456.308000pt;}
.y173{bottom:456.361333pt;}
.y113{bottom:458.582667pt;}
.y72{bottom:458.937333pt;}
.y13f{bottom:459.937333pt;}
.y39{bottom:461.236000pt;}
.y223{bottom:462.574667pt;}
.y116{bottom:463.896000pt;}
.y1f1{bottom:464.933333pt;}
.y2{bottom:468.113333pt;}
.y256{bottom:468.688000pt;}
.y118{bottom:469.209333pt;}
.y8b{bottom:470.376000pt;}
.ye6{bottom:470.564000pt;}
.y38{bottom:471.725333pt;}
.yb5{bottom:474.373333pt;}
.y115{bottom:474.522667pt;}
.y1b6{bottom:474.877333pt;}
.y1a2{bottom:475.474667pt;}
.y140{bottom:475.877333pt;}
.y222{bottom:479.597333pt;}
.ye2{bottom:481.190667pt;}
.y1f0{bottom:482.265333pt;}
.y255{bottom:485.710667pt;}
.y37{bottom:486.072000pt;}
.ye3{bottom:486.504000pt;}
.y8a{bottom:488.946667pt;}
.y1{bottom:489.326667pt;}
.ye1{bottom:491.817333pt;}
.y1a1{bottom:492.570667pt;}
.y71{bottom:493.448000pt;}
.y221{bottom:496.620000pt;}
.yb4{bottom:496.928000pt;}
.y110{bottom:497.130667pt;}
.y1ef{bottom:499.597333pt;}
.y36{bottom:500.417333pt;}
.ye5{bottom:502.444000pt;}
.y254{bottom:502.733333pt;}
.y35{bottom:504.276000pt;}
.y89{bottom:507.516000pt;}
.y10f{bottom:507.757333pt;}
.y1a0{bottom:509.666667pt;}
.y70{bottom:512.018667pt;}
.ye4{bottom:513.070667pt;}
.y220{bottom:513.642667pt;}
.y34{bottom:514.764000pt;}
.y10e{bottom:518.384000pt;}
.y13e{bottom:519.738667pt;}
.y253{bottom:519.756000pt;}
.y112{bottom:523.697333pt;}
.y1ee{bottom:524.900000pt;}
.y88{bottom:526.086667pt;}
.y19f{bottom:526.761333pt;}
.yb3{bottom:528.344000pt;}
.y10d{bottom:529.012000pt;}
.ydb{bottom:530.365333pt;}
.y6f{bottom:530.589333pt;}
.y21f{bottom:530.666667pt;}
.y33{bottom:532.968000pt;}
.y111{bottom:534.325333pt;}
.ye0{bottom:535.678667pt;}
.y252{bottom:536.778667pt;}
.yd8{bottom:540.992000pt;}
.y1ed{bottom:542.696000pt;}
.y32{bottom:543.457333pt;}
.y87{bottom:544.657333pt;}
.ydd{bottom:546.305333pt;}
.ydf{bottom:546.306667pt;}
.yb2{bottom:546.913333pt;}
.y21e{bottom:547.689333pt;}
.y6e{bottom:549.158667pt;}
.yd7{bottom:551.620000pt;}
.y251{bottom:553.801333pt;}
.ydc{bottom:556.933333pt;}
.y1ec{bottom:560.493333pt;}
.y31{bottom:561.660000pt;}
.yda{bottom:562.246667pt;}
.y86{bottom:563.228000pt;}
.y21d{bottom:564.712000pt;}
.yb1{bottom:565.484000pt;}
.yde{bottom:567.560000pt;}
.y6d{bottom:567.729333pt;}
.y250{bottom:570.824000pt;}
.yd9{bottom:572.873333pt;}
.y30{bottom:576.006667pt;}
.y1eb{bottom:578.289333pt;}
.y21c{bottom:581.734667pt;}
.y85{bottom:581.797333pt;}
.y10c{bottom:583.500000pt;}
.yb0{bottom:584.054667pt;}
.y6c{bottom:586.300000pt;}
.y24f{bottom:587.846667pt;}
.yd6{bottom:590.168000pt;}
.y2f{bottom:590.353333pt;}
.yd4{bottom:595.481333pt;}
.y1ea{bottom:596.085333pt;}
.y21b{bottom:598.757333pt;}
.yd2{bottom:600.794667pt;}
.yaf{bottom:602.625333pt;}
.y84{bottom:604.353333pt;}
.y2e{bottom:604.698667pt;}
.y6a{bottom:604.869333pt;}
.yd3{bottom:606.108000pt;}
.y6b{bottom:609.692000pt;}
.yd1{bottom:611.421333pt;}
.y1e9{bottom:613.882667pt;}
.y2d{bottom:615.188000pt;}
.y21a{bottom:615.780000pt;}
.y13d{bottom:616.734667pt;}
.yae{bottom:621.194667pt;}
.y24e{bottom:621.892000pt;}
.yd5{bottom:622.048000pt;}
.y68{bottom:623.440000pt;}
.y83{bottom:626.070667pt;}
.y69{bottom:628.261333pt;}
.y1e8{bottom:631.678667pt;}
.y219{bottom:632.802667pt;}
.y2c{bottom:633.392000pt;}
.y24d{bottom:638.914667pt;}
.yd0{bottom:639.342667pt;}
.y67{bottom:642.010667pt;}
.yad{bottom:643.750667pt;}
.y2b{bottom:643.880000pt;}
.yce{bottom:644.656000pt;}
.y1e7{bottom:649.476000pt;}
.y218{bottom:649.825333pt;}
.ycd{bottom:649.969333pt;}
.y24c{bottom:655.937333pt;}
.y66{bottom:660.580000pt;}
.ycf{bottom:660.596000pt;}
.y2a{bottom:662.084000pt;}
.y153{bottom:663.114667pt;}
.y217{bottom:666.848000pt;}
.y1e6{bottom:667.272000pt;}
.y24b{bottom:672.961333pt;}
.yac{bottom:675.165333pt;}
.y29{bottom:676.430667pt;}
.y65{bottom:679.150667pt;}
.y216{bottom:683.870667pt;}
.y1e5{bottom:685.068000pt;}
.ycc{bottom:685.913333pt;}
.y28{bottom:686.920000pt;}
.y24a{bottom:689.984000pt;}
.yab{bottom:693.736000pt;}
.y64{bottom:697.721333pt;}
.y215{bottom:700.893333pt;}
.y1e4{bottom:702.865333pt;}
.y27{bottom:705.122667pt;}
.y249{bottom:707.006667pt;}
.yaa{bottom:712.306667pt;}
.y26{bottom:715.612000pt;}
.y63{bottom:716.290667pt;}
.y214{bottom:717.916000pt;}
.y1e3{bottom:720.661333pt;}
.y248{bottom:724.029333pt;}
.y25{bottom:729.958667pt;}
.ya9{bottom:730.876000pt;}
.y62{bottom:734.861333pt;}
.y213{bottom:734.938667pt;}
.ycb{bottom:738.330667pt;}
.y1e2{bottom:738.457333pt;}
.y247{bottom:741.052000pt;}
.y24{bottom:748.161333pt;}
.ya8{bottom:749.446667pt;}
.y212{bottom:751.961333pt;}
.y61{bottom:753.432000pt;}
.y1e1{bottom:756.254667pt;}
.y246{bottom:758.074667pt;}
.ya7{bottom:768.017333pt;}
.y211{bottom:768.984000pt;}
.y60{bottom:772.002667pt;}
.y1e0{bottom:774.050667pt;}
.y245{bottom:775.097333pt;}
.y210{bottom:786.006667pt;}
.ya6{bottom:786.586667pt;}
.y23{bottom:787.874667pt;}
.y5f{bottom:790.572000pt;}
.y244{bottom:792.120000pt;}
.y20f{bottom:803.029333pt;}
.ya5{bottom:805.157333pt;}
.y21{bottom:806.445333pt;}
.y1df{bottom:807.788000pt;}
.y5e{bottom:809.142667pt;}
.y22{bottom:811.266667pt;}
.y18c{bottom:813.964000pt;}
.y20e{bottom:820.052000pt;}
.ya4{bottom:823.728000pt;}
.y20{bottom:825.014667pt;}
.y243{bottom:826.165333pt;}
.y1de{bottom:826.357333pt;}
.y5d{bottom:827.713333pt;}
.y20d{bottom:837.074667pt;}
.ya3{bottom:842.297333pt;}
.y242{bottom:843.188000pt;}
.y1f{bottom:843.585333pt;}
.y1dd{bottom:844.928000pt;}
.y5c{bottom:846.282667pt;}
.y18b{bottom:851.105333pt;}
.y20c{bottom:854.097333pt;}
.y241{bottom:860.210667pt;}
.ya2{bottom:860.868000pt;}
.y1e{bottom:862.156000pt;}
.y1dc{bottom:863.498667pt;}
.y5b{bottom:864.853333pt;}
.y20b{bottom:875.105333pt;}
.y240{bottom:877.233333pt;}
.ya1{bottom:879.438667pt;}
.y1db{bottom:882.068000pt;}
.y5a{bottom:883.424000pt;}
.y23f{bottom:894.256000pt;}
.y1d{bottom:896.665333pt;}
.y15b{bottom:897.118667pt;}
.ya0{bottom:898.009333pt;}
.y1da{bottom:900.638667pt;}
.y59{bottom:901.993333pt;}
.y18a{bottom:906.816000pt;}
.y20a{bottom:910.573333pt;}
.y23e{bottom:911.278667pt;}
.y15a{bottom:915.689333pt;}
.y9f{bottom:916.578667pt;}
.y1d9{bottom:919.209333pt;}
.y58{bottom:920.564000pt;}
.y172{bottom:921.401333pt;}
.y1c{bottom:924.521333pt;}
.y209{bottom:927.905333pt;}
.y23d{bottom:928.301333pt;}
.y159{bottom:934.258667pt;}
.y9e{bottom:935.149333pt;}
.y1d8{bottom:937.778667pt;}
.y57{bottom:939.134667pt;}
.y171{bottom:939.970667pt;}
.y189{bottom:943.956000pt;}
.y208{bottom:945.237333pt;}
.y23c{bottom:945.324000pt;}
.y1b{bottom:952.377333pt;}
.y157{bottom:952.829333pt;}
.y9d{bottom:953.720000pt;}
.y158{bottom:957.652000pt;}
.y56{bottom:957.704000pt;}
.y1d7{bottom:960.334667pt;}
.y23b{bottom:962.346667pt;}
.y207{bottom:962.569333pt;}
.y156{bottom:971.400000pt;}
.y9c{bottom:972.289333pt;}
.y55{bottom:976.274667pt;}
.y23a{bottom:979.369333pt;}
.y206{bottom:979.901333pt;}
.y1a{bottom:980.232000pt;}
.y19e{bottom:981.097333pt;}
.y9b{bottom:990.860000pt;}
.y155{bottom:993.954667pt;}
.y54{bottom:994.845333pt;}
.y239{bottom:996.392000pt;}
.y205{bottom:997.234667pt;}
.y53{bottom:1013.414667pt;}
.y204{bottom:1014.566667pt;}
.y52{bottom:1067.149333pt;}
.hc{height:14.948784pt;}
.h15{height:26.890973pt;}
.h9{height:28.947524pt;}
.h8{height:29.196090pt;}
.h2{height:33.771789pt;}
.h1e{height:34.574438pt;}
.he{height:36.666735pt;}
.h7{height:38.415786pt;}
.ha{height:38.596538pt;}
.h3{height:38.947124pt;}
.h10{height:43.421286pt;}
.h1f{height:45.810620pt;}
.hf{height:46.099251pt;}
.h13{height:48.144306pt;}
.hb{height:48.245551pt;}
.h5{height:48.481423pt;}
.h6{height:48.486756pt;}
.h20{height:54.087953pt;}
.h1a{height:55.025122pt;}
.h19{height:55.030455pt;}
.hd{height:55.952068pt;}
.h1d{height:55.957402pt;}
.h4{height:69.148877pt;}
.h14{height:69.397639pt;}
.h17{height:76.278455pt;}
.h18{height:76.283789pt;}
.h16{height:97.531789pt;}
.h1b{height:118.785122pt;}
.h1c{height:118.790455pt;}
.h11{height:793.701333pt;}
.h12{height:794.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w2{width:1122.520000pt;}
.w3{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:47.621333pt;}
.x4a{left:59.490667pt;}
.x7a{left:65.250667pt;}
.x62{left:66.264000pt;}
.x6a{left:67.520000pt;}
.x64{left:68.788000pt;}
.x54{left:71.842667pt;}
.x84{left:73.084000pt;}
.x5a{left:74.697333pt;}
.x13a{left:75.710667pt;}
.x6d{left:76.798667pt;}
.x76{left:81.438667pt;}
.x45{left:87.725333pt;}
.x4b{left:97.284000pt;}
.x13b{left:134.336000pt;}
.x2d{left:219.865333pt;}
.xd{left:220.912000pt;}
.xb{left:221.858667pt;}
.x2{left:223.424000pt;}
.xb5{left:226.193333pt;}
.x3a{left:229.828000pt;}
.xaf{left:232.949333pt;}
.xc8{left:238.272000pt;}
.xc{left:239.924000pt;}
.xb6{left:242.730667pt;}
.xc9{left:249.197333pt;}
.x24{left:250.204000pt;}
.xb7{left:256.014667pt;}
.x137{left:257.950667pt;}
.xb8{left:259.269333pt;}
.x123{left:262.298667pt;}
.x124{left:266.810667pt;}
.x138{left:267.957333pt;}
.xb2{left:269.117333pt;}
.xe8{left:270.594667pt;}
.xb9{left:272.552000pt;}
.x2e{left:276.616000pt;}
.x139{left:277.794667pt;}
.xdf{left:279.458667pt;}
.x2f{left:283.257333pt;}
.x6b{left:285.889333pt;}
.xb4{left:286.853333pt;}
.x120{left:287.821333pt;}
.xba{left:289.090667pt;}
.x4c{left:290.538667pt;}
.xbb{left:292.345333pt;}
.x10e{left:294.030667pt;}
.x14{left:296.989333pt;}
.xf2{left:299.176000pt;}
.xe4{left:300.204000pt;}
.x125{left:303.540000pt;}
.xbc{left:305.628000pt;}
.x10f{left:307.314667pt;}
.x101{left:309.534667pt;}
.xe9{left:310.921333pt;}
.x129{left:313.940000pt;}
.x4d{left:315.501333pt;}
.x126{left:316.824000pt;}
.x11b{left:319.234667pt;}
.x127{left:320.210667pt;}
.xea{left:321.424000pt;}
.x43{left:322.725333pt;}
.x110{left:323.985333pt;}
.x3b{left:325.162667pt;}
.x102{left:326.205333pt;}
.x111{left:327.372000pt;}
.x133{left:330.909333pt;}
.xee{left:331.982667pt;}
.xca{left:333.089333pt;}
.xf3{left:334.805333pt;}
.x44{left:336.009333pt;}
.xe0{left:336.946667pt;}
.x103{left:339.489333pt;}
.x112{left:340.656000pt;}
.x3{left:342.056000pt;}
.xcb{left:344.014667pt;}
.xcd{left:345.225333pt;}
.x104{left:346.264000pt;}
.xe1{left:347.540000pt;}
.x11f{left:349.134667pt;}
.x128{left:350.165333pt;}
.x131{left:353.566667pt;}
.x108{left:355.577333pt;}
.x8e{left:358.096000pt;}
.x105{left:359.548000pt;}
.xce{left:361.813333pt;}
.x106{left:362.934667pt;}
.x4{left:364.910667pt;}
.x109{left:368.861333pt;}
.x8f{left:371.378667pt;}
.x107{left:373.716000pt;}
.x90{left:374.736000pt;}
.x1f{left:376.136000pt;}
.x113{left:377.385333pt;}
.xf4{left:380.809333pt;}
.xcf{left:381.705333pt;}
.x10a{left:385.521333pt;}
.x20{left:387.061333pt;}
.x91{left:388.020000pt;}
.x132{left:391.705333pt;}
.xd9{left:392.933333pt;}
.x92{left:394.734667pt;}
.x134{left:396.350667pt;}
.xd0{left:398.293333pt;}
.xcc{left:399.306667pt;}
.x25{left:401.476000pt;}
.xb0{left:404.437333pt;}
.xda{left:405.553333pt;}
.x26{left:408.117333pt;}
.x11a{left:409.197333pt;}
.x93{left:411.376000pt;}
.xb1{left:414.628000pt;}
.x67{left:416.466667pt;}
.x21{left:417.905333pt;}
.x10b{left:418.844000pt;}
.x10c{left:422.221333pt;}
.xd3{left:423.285333pt;}
.x135{left:424.516000pt;}
.x15{left:425.409333pt;}
.x94{left:428.017333pt;}
.x2c{left:429.506667pt;}
.xf5{left:430.822667pt;}
.xd1{left:434.773333pt;}
.x16{left:436.334667pt;}
.x10d{left:438.881333pt;}
.xdb{left:440.276000pt;}
.x95{left:441.300000pt;}
.xdc{left:443.324000pt;}
.x96{left:444.657333pt;}
.xe5{left:446.813333pt;}
.xe{left:448.360000pt;}
.x121{left:449.944000pt;}
.x42{left:451.392000pt;}
.xdd{left:455.944000pt;}
.x27{left:457.229333pt;}
.x122{left:459.810667pt;}
.x97{left:461.298667pt;}
.x28{left:463.870667pt;}
.xff{left:464.861333pt;}
.xd2{left:467.949333pt;}
.xab{left:470.170667pt;}
.x5{left:473.317333pt;}
.x98{left:474.582667pt;}
.xac{left:476.945333pt;}
.xe2{left:480.060000pt;}
.x99{left:481.297333pt;}
.xf6{left:484.222667pt;}
.x35{left:486.645333pt;}
.x31{left:487.713333pt;}
.xad{left:490.228000pt;}
.xe3{left:492.097333pt;}
.x36{left:493.288000pt;}
.x32{left:494.354667pt;}
.x6{left:496.172000pt;}
.x9a{left:497.937333pt;}
.xc0{left:500.260000pt;}
.x100{left:501.590667pt;}
.xf7{left:504.280000pt;}
.xae{left:506.898667pt;}
.xef{left:508.130667pt;}
.x37{left:509.954667pt;}
.x9b{left:511.221333pt;}
.x55{left:512.526667pt;}
.x88{left:513.638667pt;}
.x17{left:515.272000pt;}
.x38{left:516.722667pt;}
.x7e{left:518.260000pt;}
.x7f{left:519.268000pt;}
.x6c{left:520.380000pt;}
.xd4{left:521.422667pt;}
.x4e{left:523.006667pt;}
.x56{left:524.214667pt;}
.x18{left:526.197333pt;}
.xf{left:527.210667pt;}
.x82{left:528.501333pt;}
.x39{left:530.006667pt;}
.x6e{left:530.942667pt;}
.x2b{left:532.981333pt;}
.xf8{left:534.234667pt;}
.x6f{left:535.349333pt;}
.x7d{left:536.242667pt;}
.xf9{left:537.621333pt;}
.xc1{left:539.845333pt;}
.x22{left:542.012000pt;}
.x4f{left:545.029333pt;}
.x85{left:547.809333pt;}
.xfa{left:550.905333pt;}
.xc2{left:553.129333pt;}
.xfb{left:554.293333pt;}
.xc3{left:556.384000pt;}
.x1d{left:562.052000pt;}
.xd5{left:563.733333pt;}
.x114{left:566.734667pt;}
.x19{left:568.125333pt;}
.xbd{left:569.948000pt;}
.x1e{left:571.089333pt;}
.xc4{left:572.921333pt;}
.xd6{left:574.658667pt;}
.x1a{left:579.050667pt;}
.xbe{left:580.873333pt;}
.xe6{left:583.033333pt;}
.xfc{left:584.246667pt;}
.xc5{left:586.205333pt;}
.xd8{left:587.893333pt;}
.xc6{left:589.460000pt;}
.x10{left:591.310667pt;}
.xa0{left:594.445333pt;}
.x115{left:596.942667pt;}
.x3c{left:601.232000pt;}
.x11{left:602.236000pt;}
.xfd{left:604.305333pt;}
.x9c{left:605.510667pt;}
.xa1{left:608.796000pt;}
.x116{left:610.758667pt;}
.x3d{left:614.514667pt;}
.x9d{left:616.436000pt;}
.x12a{left:619.190667pt;}
.x7{left:620.641333pt;}
.xc7{left:622.536000pt;}
.x136{left:624.932000pt;}
.x57{left:626.270667pt;}
.x86{left:627.189333pt;}
.x77{left:628.481333pt;}
.x33{left:630.685333pt;}
.x8b{left:631.676000pt;}
.x50{left:632.917333pt;}
.x78{left:634.065333pt;}
.x65{left:635.284000pt;}
.x51{left:636.538667pt;}
.x8{left:638.448000pt;}
.x23{left:640.066667pt;}
.x7c{left:641.462667pt;}
.x30{left:642.766667pt;}
.x34{left:643.969333pt;}
.x29{left:646.033333pt;}
.x8a{left:647.172000pt;}
.x81{left:648.222667pt;}
.x12{left:649.196000pt;}
.x5f{left:650.677333pt;}
.x2a{left:652.674667pt;}
.x7b{left:654.902667pt;}
.x5b{left:657.241333pt;}
.x74{left:658.506667pt;}
.x13{left:660.121333pt;}
.x80{left:661.318667pt;}
.x3e{left:662.736000pt;}
.x12b{left:664.542667pt;}
.x72{left:666.284000pt;}
.x1b{left:667.434667pt;}
.xa2{left:669.124000pt;}
.xb3{left:671.102667pt;}
.x3f{left:672.681333pt;}
.x12c{left:675.900000pt;}
.xe7{left:677.186667pt;}
.x12d{left:678.642667pt;}
.xa3{left:680.720000pt;}
.xa4{left:683.473333pt;}
.x130{left:684.513333pt;}
.x117{left:685.693333pt;}
.xfe{left:690.804000pt;}
.x12e{left:692.744000pt;}
.xa5{left:695.069333pt;}
.x9e{left:696.002667pt;}
.xeb{left:697.636000pt;}
.xf0{left:698.656000pt;}
.xa6{left:700.752000pt;}
.xd7{left:703.698667pt;}
.xbf{left:704.816000pt;}
.x9f{left:706.929333pt;}
.x11c{left:707.990667pt;}
.xf1{left:709.249333pt;}
.xec{left:710.256000pt;}
.x11d{left:711.334667pt;}
.xa7{left:712.349333pt;}
.x118{left:713.324000pt;}
.xa8{left:715.102667pt;}
.x12f{left:718.202667pt;}
.x9{left:721.212000pt;}
.xde{left:723.005333pt;}
.x119{left:724.562667pt;}
.xed{left:725.804000pt;}
.x40{left:726.842667pt;}
.x11e{left:727.962667pt;}
.xa9{left:729.452000pt;}
.x41{left:740.126667pt;}
.xaa{left:741.048000pt;}
.x1c{left:742.565333pt;}
.xa{left:744.066667pt;}
.x79{left:766.194667pt;}
.x75{left:768.008000pt;}
.x70{left:776.901333pt;}
.x46{left:858.712000pt;}
.x52{left:968.488000pt;}
.x53{left:969.725333pt;}
.x83{left:970.617333pt;}
.x8d{left:971.612000pt;}
.x60{left:972.584000pt;}
.x61{left:973.946667pt;}
.x58{left:975.325333pt;}
.x68{left:977.182667pt;}
.x63{left:979.065333pt;}
.x5d{left:980.762667pt;}
.x47{left:982.240000pt;}
.x89{left:983.602667pt;}
.x49{left:984.560000pt;}
.x5c{left:986.020000pt;}
.x87{left:987.282667pt;}
.x48{left:988.280000pt;}
.x66{left:990.181333pt;}
.x69{left:991.772000pt;}
.x8c{left:992.933333pt;}
.x5e{left:993.946667pt;}
.x59{left:995.337333pt;}
.x71{left:996.293333pt;}
.x73{left:1002.306667pt;}
}




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