
    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_e74ed89da889a8b5ffe6e21a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.989000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8e9bf17b1bd50d0f8b684d73.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.011000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_9ad677f659da762ccc64aeec.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.010000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_76aee719b95ae7bdbe38e19a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.638000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_7dee6283c1be7bf644746fe4.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9b72b69fcc05ff121e9db449.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.493000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ed2b43ca714657eac336d147.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.234000;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;}
.m9{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);}
.mf{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);}
.m18{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);}
.m25{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);}
.m12{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);}
.m4{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);}
.mb{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);}
.m14{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);}
.m8{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);}
.m1f{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);}
.m1c{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);}
.m1d{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);}
.m1e{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);}
.m29{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m21{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m26{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);}
.m17{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);}
.m24{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);}
.m15{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);}
.m5{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);}
.m23{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m20{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m28{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);}
.m16{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);}
.m11{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);}
.m1b{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);}
.mc{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);}
.m27{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);}
.md{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);}
.m22{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.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);}
.m19{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);}
.m1a{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-17.358000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:3.408000px;}
.v1{vertical-align:21.702000px;}
.v4{vertical-align:27.846000px;}
.ls5{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000608px;}
.lsc{letter-spacing:0.001133px;}
.ls1{letter-spacing:0.003634px;}
.ls14{letter-spacing:0.004200px;}
.lsa{letter-spacing:0.004800px;}
.lsd{letter-spacing:0.642088px;}
.ls12{letter-spacing:3.287658px;}
.ls0{letter-spacing:10.461300px;}
.ls4{letter-spacing:11.960850px;}
.ls15{letter-spacing:13.447133px;}
.ls19{letter-spacing:13.448400px;}
.ls16{letter-spacing:13.453133px;}
.ls18{letter-spacing:13.454400px;}
.lse{letter-spacing:14.116445px;}
.ls13{letter-spacing:14.704798px;}
.ls7{letter-spacing:14.764573px;}
.ls8{letter-spacing:14.884124px;}
.ls9{letter-spacing:14.943900px;}
.lsf{letter-spacing:15.242778px;}
.ls1a{letter-spacing:15.850400px;}
.ls6{letter-spacing:17.334924px;}
.ls10{letter-spacing:17.872904px;}
.ls11{letter-spacing:23.192933px;}
.ls2{letter-spacing:62.761200px;}
.ls3{letter-spacing:64.321654px;}
.lsb{letter-spacing:1104.313133px;}
.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;}
}
.ws4b{word-spacing:-14.943900px;}
.ws7a{word-spacing:-13.449600px;}
.ws2c{word-spacing:-11.955150px;}
.wsa{word-spacing:-11.357400px;}
.ws2{word-spacing:-10.460700px;}
.ws42{word-spacing:-3.646312px;}
.ws61{word-spacing:-3.586536px;}
.wsb3{word-spacing:-3.423166px;}
.ws9d{word-spacing:-2.809453px;}
.ws2a{word-spacing:-2.570351px;}
.ws7d{word-spacing:-2.331248px;}
.ws53{word-spacing:-2.151922px;}
.ws73{word-spacing:-2.032370px;}
.ws31{word-spacing:-1.912819px;}
.ws74{word-spacing:-1.853044px;}
.ws50{word-spacing:-1.554166px;}
.ws1a{word-spacing:-1.452557px;}
.ws34{word-spacing:-1.434614px;}
.ws46{word-spacing:-1.374839px;}
.ws57{word-spacing:-1.315063px;}
.ws26{word-spacing:-1.255288px;}
.ws87{word-spacing:-1.195512px;}
.ws4e{word-spacing:-1.135736px;}
.ws63{word-spacing:-1.075961px;}
.ws78{word-spacing:-1.016185px;}
.ws82{word-spacing:-0.956410px;}
.ws28{word-spacing:-0.896634px;}
.wsac{word-spacing:-0.860774px;}
.ws3a{word-spacing:-0.836858px;}
.ws9e{word-spacing:-0.777083px;}
.wsf2{word-spacing:-0.717307px;}
.wse2{word-spacing:-0.657532px;}
.ws84{word-spacing:-0.597756px;}
.ws107{word-spacing:-0.537984px;}
.ws25{word-spacing:-0.537980px;}
.ws10d{word-spacing:-0.430387px;}
.ws45{word-spacing:-0.418429px;}
.wsde{word-spacing:-0.383561px;}
.ws3f{word-spacing:-0.358654px;}
.wsd8{word-spacing:-0.327269px;}
.wsb7{word-spacing:-0.322790px;}
.ws29{word-spacing:-0.298878px;}
.ws100{word-spacing:-0.268992px;}
.wsf0{word-spacing:-0.245038px;}
.ws22{word-spacing:-0.239102px;}
.wsf9{word-spacing:-0.215194px;}
.wsf4{word-spacing:-0.198411px;}
.ws39{word-spacing:-0.179327px;}
.wsf5{word-spacing:-0.177595px;}
.ws17{word-spacing:-0.161395px;}
.wsb4{word-spacing:-0.159006px;}
.ws1c{word-spacing:-0.153011px;}
.wsd4{word-spacing:-0.138567px;}
.wsb1{word-spacing:-0.137641px;}
.wsdd{word-spacing:-0.136363px;}
.ws27{word-spacing:-0.119551px;}
.wsd5{word-spacing:-0.119297px;}
.wsb2{word-spacing:-0.115056px;}
.wsd3{word-spacing:-0.113415px;}
.wsc6{word-spacing:-0.107597px;}
.wsd9{word-spacing:-0.092301px;}
.wsd2{word-spacing:-0.082271px;}
.wsd1{word-spacing:-0.069876px;}
.ws91{word-spacing:-0.060917px;}
.ws90{word-spacing:-0.060319px;}
.ws23{word-spacing:-0.059776px;}
.ws16{word-spacing:-0.053798px;}
.wsc4{word-spacing:-0.044452px;}
.wsee{word-spacing:-0.008842px;}
.wsea{word-spacing:-0.008003px;}
.wsbd{word-spacing:-0.007330px;}
.ws106{word-spacing:-0.006643px;}
.ws9f{word-spacing:-0.005182px;}
.ws1d{word-spacing:-0.004666px;}
.wsef{word-spacing:-0.003533px;}
.wsed{word-spacing:-0.003504px;}
.ws109{word-spacing:-0.003466px;}
.ws2b{word-spacing:-0.002857px;}
.wsa1{word-spacing:-0.002198px;}
.wsbe{word-spacing:-0.002193px;}
.wseb{word-spacing:-0.001825px;}
.wsbf{word-spacing:-0.001448px;}
.wsa0{word-spacing:-0.000376px;}
.ws1{word-spacing:0.000000px;}
.wsdf{word-spacing:0.002052px;}
.ws10a{word-spacing:0.002400px;}
.ws3b{word-spacing:0.004321px;}
.wsd7{word-spacing:0.019845px;}
.ws98{word-spacing:0.024816px;}
.wsda{word-spacing:0.027118px;}
.wsab{word-spacing:0.053798px;}
.ws4a{word-spacing:0.059776px;}
.wsa7{word-spacing:0.061209px;}
.ws12{word-spacing:0.107597px;}
.ws32{word-spacing:0.119551px;}
.wsd6{word-spacing:0.127964px;}
.ws96{word-spacing:0.135212px;}
.ws95{word-spacing:0.137330px;}
.wsa5{word-spacing:0.144905px;}
.ws1e{word-spacing:0.161395px;}
.wsc3{word-spacing:0.166030px;}
.ws24{word-spacing:0.179327px;}
.wsc5{word-spacing:0.183402px;}
.ws14{word-spacing:0.215194px;}
.ws21{word-spacing:0.239102px;}
.wse0{word-spacing:0.268992px;}
.ws2e{word-spacing:0.298878px;}
.wsb9{word-spacing:0.322790px;}
.ws5a{word-spacing:0.358654px;}
.wsdb{word-spacing:0.376589px;}
.wsf8{word-spacing:0.418429px;}
.ws44{word-spacing:0.478205px;}
.wsfb{word-spacing:0.484186px;}
.wsa8{word-spacing:0.537980px;}
.ws108{word-spacing:0.537984px;}
.ws110{word-spacing:0.591782px;}
.ws30{word-spacing:0.597756px;}
.ws54{word-spacing:0.657532px;}
.wse4{word-spacing:0.717307px;}
.ws13{word-spacing:0.753178px;}
.ws58{word-spacing:0.777083px;}
.ws6e{word-spacing:0.836858px;}
.ws52{word-spacing:0.956410px;}
.wse5{word-spacing:1.016185px;}
.ws10b{word-spacing:1.022170px;}
.ws10{word-spacing:1.129766px;}
.ws40{word-spacing:1.135736px;}
.ws11{word-spacing:1.183565px;}
.ws2f{word-spacing:1.195512px;}
.ws97{word-spacing:1.255288px;}
.ws9b{word-spacing:1.315063px;}
.ws75{word-spacing:1.374839px;}
.wsdc{word-spacing:1.434614px;}
.ws55{word-spacing:1.494390px;}
.ws4d{word-spacing:1.554166px;}
.ws9c{word-spacing:1.613941px;}
.ws19{word-spacing:1.613952px;}
.wsa9{word-spacing:1.793268px;}
.ws43{word-spacing:1.853044px;}
.ws1b{word-spacing:1.882944px;}
.ws20{word-spacing:1.912819px;}
.wsb6{word-spacing:1.936742px;}
.ws6f{word-spacing:1.972595px;}
.wsb5{word-spacing:2.205734px;}
.ws5c{word-spacing:2.211697px;}
.ws18{word-spacing:2.259533px;}
.ws37{word-spacing:2.271473px;}
.ws8c{word-spacing:2.331248px;}
.ws47{word-spacing:2.391024px;}
.ws105{word-spacing:2.420928px;}
.ws2d{word-spacing:2.450800px;}
.wsd0{word-spacing:2.510317px;}
.wscf{word-spacing:2.510575px;}
.ws0{word-spacing:2.511541px;}
.ws72{word-spacing:2.570351px;}
.ws8a{word-spacing:2.689902px;}
.ws15{word-spacing:2.743718px;}
.ws93{word-spacing:2.749678px;}
.wse6{word-spacing:2.809453px;}
.ws5d{word-spacing:2.869229px;}
.wsd{word-spacing:2.869236px;}
.ws36{word-spacing:2.880791px;}
.wsa2{word-spacing:2.929004px;}
.ws69{word-spacing:2.988780px;}
.ws5f{word-spacing:3.048556px;}
.ws67{word-spacing:3.108331px;}
.ws79{word-spacing:3.168107px;}
.ws7c{word-spacing:3.174106px;}
.ws10e{word-spacing:3.223421px;}
.ws103{word-spacing:3.225773px;}
.ws41{word-spacing:3.227882px;}
.ws102{word-spacing:3.227904px;}
.ws99{word-spacing:3.347434px;}
.ws70{word-spacing:3.407209px;}
.ws7b{word-spacing:3.496896px;}
.wsc9{word-spacing:3.526760px;}
.wscb{word-spacing:3.561892px;}
.wsca{word-spacing:3.563258px;}
.ws1f{word-spacing:3.586536px;}
.wsfa{word-spacing:3.604493px;}
.ws59{word-spacing:3.646312px;}
.wscc{word-spacing:3.680905px;}
.ws85{word-spacing:3.706087px;}
.ws6d{word-spacing:3.765863px;}
.ws33{word-spacing:3.825638px;}
.wscd{word-spacing:3.885414px;}
.wsce{word-spacing:3.898552px;}
.ws111{word-spacing:3.903868px;}
.ws62{word-spacing:3.945190px;}
.ws113{word-spacing:4.034880px;}
.ws83{word-spacing:4.184292px;}
.wse7{word-spacing:4.244068px;}
.ws116{word-spacing:4.250074px;}
.ws5b{word-spacing:4.303843px;}
.wsc8{word-spacing:4.356009px;}
.ws35{word-spacing:4.363619px;}
.wsc7{word-spacing:4.371496px;}
.wsf{word-spacing:4.465267px;}
.ws76{word-spacing:4.483170px;}
.ws8b{word-spacing:4.542946px;}
.wsf7{word-spacing:4.602721px;}
.ws115{word-spacing:4.626662px;}
.ws6c{word-spacing:4.662497px;}
.ws6a{word-spacing:4.722272px;}
.ws8{word-spacing:4.770079px;}
.ws81{word-spacing:4.782048px;}
.ws3c{word-spacing:4.841824px;}
.ws9{word-spacing:4.853765px;}
.ws64{word-spacing:4.961375px;}
.ws5e{word-spacing:5.021150px;}
.ws4f{word-spacing:5.080926px;}
.wse9{word-spacing:5.140702px;}
.wse8{word-spacing:5.144058px;}
.ws66{word-spacing:5.200477px;}
.ws60{word-spacing:5.260253px;}
.ws65{word-spacing:5.320028px;}
.ws4c{word-spacing:5.379804px;}
.ws48{word-spacing:5.439580px;}
.ws92{word-spacing:5.452857px;}
.wsc1{word-spacing:5.485582px;}
.wsc0{word-spacing:5.486787px;}
.ws3d{word-spacing:5.499355px;}
.ws3e{word-spacing:5.505568px;}
.ws9a{word-spacing:5.559131px;}
.ws68{word-spacing:5.738458px;}
.wse3{word-spacing:5.798233px;}
.ws56{word-spacing:5.858009px;}
.ws101{word-spacing:5.917824px;}
.ws77{word-spacing:5.977560px;}
.ws8e{word-spacing:6.037336px;}
.ws112{word-spacing:6.199886px;}
.ws49{word-spacing:6.216662px;}
.wsf6{word-spacing:6.336214px;}
.wsa4{word-spacing:6.424684px;}
.wsa3{word-spacing:6.455765px;}
.ws38{word-spacing:6.515540px;}
.ws94{word-spacing:6.754643px;}
.ws8d{word-spacing:6.814418px;}
.wse{word-spacing:7.047590px;}
.wsb0{word-spacing:7.053521px;}
.wsf3{word-spacing:7.055162px;}
.wsf1{word-spacing:7.232848px;}
.ws6{word-spacing:7.782761px;}
.ws8f{word-spacing:7.830604px;}
.wsba{word-spacing:7.908365px;}
.ws6b{word-spacing:7.950155px;}
.wsec{word-spacing:8.069706px;}
.ws71{word-spacing:8.189257px;}
.wsaa{word-spacing:8.249033px;}
.ws10f{word-spacing:8.259691px;}
.ws51{word-spacing:8.428360px;}
.ws10c{word-spacing:9.139786px;}
.ws104{word-spacing:9.253325px;}
.ws7f{word-spacing:11.536691px;}
.ws4{word-spacing:12.176255px;}
.ws114{word-spacing:13.557197px;}
.wsc2{word-spacing:14.764573px;}
.ws5{word-spacing:16.109478px;}
.ws80{word-spacing:22.116972px;}
.ws7{word-spacing:26.109907px;}
.ws3{word-spacing:26.840252px;}
.wsad{word-spacing:39.864614px;}
.wsb{word-spacing:46.647245px;}
.wsc{word-spacing:61.549015px;}
.ws86{word-spacing:78.604914px;}
.wsbc{word-spacing:83.979302px;}
.wsbb{word-spacing:94.846579px;}
.wsae{word-spacing:100.226419px;}
.wsb8{word-spacing:106.628429px;}
.wsff{word-spacing:119.916634px;}
.wsfc{word-spacing:142.404365px;}
.wsaf{word-spacing:147.300019px;}
.wsfe{word-spacing:160.319232px;}
.wsfd{word-spacing:176.835341px;}
.wse1{word-spacing:182.215181px;}
.ws7e{word-spacing:271.118734px;}
.ws89{word-spacing:1113.116755px;}
.ws88{word-spacing:1251.884208px;}
.wsa6{word-spacing:1539.871603px;}
._13{margin-left:-7.220897px;}
._8{margin-left:-6.025464px;}
._7{margin-left:-4.734259px;}
._d{margin-left:-3.012667px;}
._3{margin-left:-1.506341px;}
._5{width:1.132165px;}
._4{width:2.986783px;}
._0{width:12.217198px;}
._e{width:14.041382px;}
._b{width:15.278746px;}
._c{width:16.516109px;}
._10{width:18.064182px;}
._9{width:19.098432px;}
._a{width:20.120587px;}
._f{width:22.272538px;}
._15{width:23.683088px;}
._18{width:24.755524px;}
._1{width:25.946136px;}
._1a{width:27.018571px;}
._1c{width:28.345585px;}
._19{width:29.349820px;}
._2{width:30.587087px;}
._26{width:31.979946px;}
._16{width:33.211170px;}
._17{width:34.370970px;}
._27{width:35.382406px;}
._1d{width:37.491252px;}
._14{width:38.674813px;}
._3c{width:40.121378px;}
._6{width:56.810873px;}
._1b{width:58.185928px;}
._67{width:71.713267px;}
._20{width:81.773021px;}
._49{width:82.849536px;}
._48{width:85.916045px;}
._41{width:87.852787px;}
._64{width:90.004723px;}
._21{width:93.548814px;}
._1e{width:96.043000px;}
._4e{width:99.903629px;}
._60{width:103.723315px;}
._31{width:107.758195px;}
._3b{width:113.729818px;}
._47{width:117.226714px;}
._66{width:118.733069px;}
._4d{width:120.078029px;}
._4a{width:121.745779px;}
._3e{width:123.413530px;}
._50{width:125.619264px;}
._61{width:127.663603px;}
._4f{width:129.169958px;}
._40{width:130.891507px;}
._30{width:132.397862px;}
._46{width:133.689024px;}
._4c{width:135.141581px;}
._52{width:136.271347px;}
._3f{width:139.875840px;}
._43{width:142.619558px;}
._51{width:145.255680px;}
._32{width:148.053197px;}
._62{width:149.774746px;}
._65{width:151.227302px;}
._45{width:152.572262px;}
._63{width:155.638771px;}
._39{width:160.803418px;}
._2d{width:164.515507px;}
._42{width:166.021862px;}
._36{width:167.474419px;}
._35{width:171.939686px;}
._33{width:173.499840px;}
._34{width:177.965107px;}
._2e{width:182.430374px;}
._56{width:184.098125px;}
._3a{width:185.227891px;}
._37{width:194.373619px;}
._53{width:199.000282px;}
._2f{width:204.810509px;}
._55{width:206.478259px;}
._38{width:207.823219px;}
._54{width:215.516390px;}
._5b{width:218.260109px;}
._59{width:233.377459px;}
._5d{width:237.896525px;}
._58{width:239.349082px;}
._5a{width:240.909235px;}
._5c{width:248.333414px;}
._57{width:260.276659px;}
._1f{width:277.420772px;}
._44{width:396.655603px;}
._2a{width:788.469350px;}
._5e{width:856.161648px;}
._5f{width:857.668358px;}
._4b{width:914.142413px;}
._29{width:991.827302px;}
._11{width:1027.393844px;}
._24{width:1186.820563px;}
._3d{width:1305.310579px;}
._25{width:1318.465248px;}
._22{width:1367.178739px;}
._23{width:1409.464282px;}
._2b{width:1421.299930px;}
._2c{width:1477.465459px;}
._28{width:2533.412700px;}
._12{width:2557.322700px;}
.fc2{color:rgb(8,117,183);}
.fc1{color:rgb(54,121,123);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.865600px;}
.fs0{font-size:41.842800px;}
.fs4{font-size:45.429600px;}
.fs6{font-size:47.820600px;}
.fs7{font-size:53.798400px;}
.fs8{font-size:56.058000px;}
.fs2{font-size:59.775600px;}
.fs9{font-size:62.286600px;}
.fs3{font-size:107.596800px;}
.fs1{font-size:151.185600px;}
.y0{bottom:0.000000px;}
.y16{bottom:16.015847px;}
.y43{bottom:31.890000px;}
.y1ef{bottom:91.665000px;}
.y9b{bottom:92.248500px;}
.y191{bottom:93.540000px;}
.y12c{bottom:94.689000px;}
.yda{bottom:97.764000px;}
.y166{bottom:99.456000px;}
.yff{bottom:104.226000px;}
.y14{bottom:104.646000px;}
.y270{bottom:105.999000px;}
.y159{bottom:109.759500px;}
.y1ee{bottom:110.494500px;}
.y9a{bottom:111.078000px;}
.y190{bottom:112.369500px;}
.y12b{bottom:113.518500px;}
.y42{bottom:114.010500px;}
.yd9{bottom:116.593500px;}
.y1c7{bottom:116.803500px;}
.y14c{bottom:117.504000px;}
.y165{bottom:118.285500px;}
.y23f{bottom:118.651500px;}
.y13{bottom:122.535000px;}
.yfe{bottom:123.055500px;}
.y26f{bottom:123.259500px;}
.y78{bottom:126.022500px;}
.y158{bottom:126.198000px;}
.y219{bottom:126.324000px;}
.y7c{bottom:126.471000px;}
.y217{bottom:129.324000px;}
.y99{bottom:129.907500px;}
.y18f{bottom:131.199000px;}
.y12a{bottom:132.348000px;}
.y41{bottom:132.840000px;}
.y1c6{bottom:133.242000px;}
.yd8{bottom:135.421500px;}
.y14b{bottom:136.333500px;}
.y164{bottom:137.115000px;}
.y23e{bottom:137.481000px;}
.yb8{bottom:138.363000px;}
.y12{bottom:140.422500px;}
.y26e{bottom:140.518500px;}
.yfd{bottom:141.885000px;}
.y157{bottom:142.636500px;}
.y77{bottom:144.852000px;}
.y7b{bottom:145.300500px;}
.y218{bottom:145.557000px;}
.y216{bottom:148.153500px;}
.y98{bottom:148.737000px;}
.y1c5{bottom:149.680500px;}
.y18e{bottom:150.028500px;}
.y129{bottom:151.177500px;}
.y40{bottom:151.668000px;}
.y1ed{bottom:152.088000px;}
.yd7{bottom:154.251000px;}
.y14a{bottom:155.163000px;}
.y23d{bottom:156.309000px;}
.y26d{bottom:157.779000px;}
.y11{bottom:158.310000px;}
.y156{bottom:159.075000px;}
.y163{bottom:160.428000px;}
.yfc{bottom:160.714500px;}
.yb7{bottom:161.676000px;}
.y7a{bottom:164.130000px;}
.y1c4{bottom:166.119000px;}
.y215{bottom:166.983000px;}
.y97{bottom:167.566500px;}
.y76{bottom:168.165000px;}
.y1ec{bottom:168.526500px;}
.y18d{bottom:168.858000px;}
.y128{bottom:170.007000px;}
.y3f{bottom:170.497500px;}
.yd6{bottom:173.080500px;}
.y149{bottom:173.992500px;}
.y26c{bottom:175.039500px;}
.y23c{bottom:175.138500px;}
.y155{bottom:175.513500px;}
.y10{bottom:176.199000px;}
.yfa{bottom:179.542500px;}
.yfb{bottom:179.544000px;}
.yb6{bottom:180.505500px;}
.y1c3{bottom:182.557500px;}
.y79{bottom:182.959500px;}
.y1eb{bottom:184.965000px;}
.y214{bottom:185.812500px;}
.y18c{bottom:187.687500px;}
.y127{bottom:188.836500px;}
.y3e{bottom:189.327000px;}
.y96{bottom:190.879500px;}
.y26b{bottom:192.300000px;}
.y148{bottom:192.822000px;}
.y23b{bottom:193.968000px;}
.y162{bottom:194.052000px;}
.yf{bottom:194.086500px;}
.yd5{bottom:196.393500px;}
.yf9{bottom:198.372000px;}
.y1c2{bottom:198.996000px;}
.yb5{bottom:199.335000px;}
.y154{bottom:199.453500px;}
.y1ea{bottom:201.403500px;}
.y75{bottom:201.789000px;}
.y18b{bottom:206.517000px;}
.y126{bottom:207.666000px;}
.y3d{bottom:208.156500px;}
.y26a{bottom:209.560500px;}
.y147{bottom:211.651500px;}
.ye{bottom:211.974000px;}
.y23a{bottom:212.797500px;}
.y161{bottom:212.881500px;}
.y1c1{bottom:215.434500px;}
.yf8{bottom:217.201500px;}
.y1e9{bottom:217.842000px;}
.yb4{bottom:218.164500px;}
.y74{bottom:220.618500px;}
.y95{bottom:224.503500px;}
.y18a{bottom:225.345000px;}
.y125{bottom:226.495500px;}
.y269{bottom:226.821000px;}
.y3c{bottom:226.986000px;}
.y213{bottom:227.448000px;}
.yd{bottom:229.863000px;}
.yd4{bottom:230.017500px;}
.y146{bottom:230.481000px;}
.y153{bottom:231.072000px;}
.y239{bottom:231.627000px;}
.y15f{bottom:231.709500px;}
.y160{bottom:231.711000px;}
.y1e8{bottom:234.280500px;}
.yf7{bottom:236.031000px;}
.yb3{bottom:236.992500px;}
.y1c0{bottom:239.373000px;}
.y73{bottom:239.446500px;}
.y94{bottom:243.333000px;}
.y212{bottom:243.886500px;}
.y268{bottom:244.081500px;}
.y124{bottom:245.325000px;}
.y3b{bottom:245.815500px;}
.yd3{bottom:248.847000px;}
.y145{bottom:249.310500px;}
.y238{bottom:250.456500px;}
.y15e{bottom:250.539000px;}
.y1e7{bottom:250.719000px;}
.y189{bottom:253.500000px;}
.yf6{bottom:254.860500px;}
.yb2{bottom:255.822000px;}
.y72{bottom:258.276000px;}
.y267{bottom:261.342000px;}
.y93{bottom:262.162500px;}
.y1bf{bottom:263.313000px;}
.y187{bottom:263.751000px;}
.y3a{bottom:264.645000px;}
.yd2{bottom:267.676500px;}
.y211{bottom:267.825000px;}
.y144{bottom:268.140000px;}
.y152{bottom:268.176000px;}
.y123{bottom:268.636500px;}
.y237{bottom:269.286000px;}
.y15d{bottom:269.368500px;}
.yf5{bottom:273.690000px;}
.y188{bottom:273.868500px;}
.yb1{bottom:274.651500px;}
.y1e6{bottom:274.657500px;}
.y71{bottom:277.105500px;}
.y266{bottom:278.602500px;}
.y92{bottom:280.992000px;}
.y39{bottom:283.474500px;}
.y210{bottom:284.263500px;}
.yd1{bottom:286.506000px;}
.y143{bottom:286.969500px;}
.y151{bottom:287.005500px;}
.y236{bottom:288.115500px;}
.y15c{bottom:288.198000px;}
.yf4{bottom:292.519500px;}
.yb0{bottom:293.481000px;}
.y1be{bottom:294.933000px;}
.y265{bottom:295.861500px;}
.y70{bottom:295.935000px;}
.y1e5{bottom:298.597500px;}
.y91{bottom:299.821500px;}
.yc{bottom:299.892000px;}
.y122{bottom:302.260500px;}
.y38{bottom:302.304000px;}
.yd0{bottom:305.335500px;}
.y142{bottom:305.799000px;}
.y150{bottom:305.835000px;}
.y186{bottom:306.064500px;}
.y235{bottom:306.945000px;}
.y20f{bottom:308.203500px;}
.yf3{bottom:311.349000px;}
.y15b{bottom:311.511000px;}
.yaf{bottom:312.310500px;}
.y264{bottom:313.122000px;}
.y1bd{bottom:314.166000px;}
.y6f{bottom:314.764500px;}
.yb{bottom:317.779500px;}
.y90{bottom:318.651000px;}
.y121{bottom:321.090000px;}
.y37{bottom:321.133500px;}
.ycf{bottom:324.165000px;}
.y141{bottom:324.628500px;}
.y20e{bottom:324.642000px;}
.y14f{bottom:324.664500px;}
.y185{bottom:324.894000px;}
.y234{bottom:325.774500px;}
.yf2{bottom:330.178500px;}
.y1e4{bottom:330.217500px;}
.y15a{bottom:330.340500px;}
.yae{bottom:331.140000px;}
.y1bc{bottom:333.397500px;}
.y6e{bottom:333.594000px;}
.y263{bottom:334.866000px;}
.ya{bottom:335.667000px;}
.y8f{bottom:337.480500px;}
.y120{bottom:339.919500px;}
.y36{bottom:339.963000px;}
.yce{bottom:342.994500px;}
.y140{bottom:343.458000px;}
.y14e{bottom:343.494000px;}
.y184{bottom:343.723500px;}
.y233{bottom:344.604000px;}
.y20d{bottom:348.582000px;}
.y1e3{bottom:349.450500px;}
.yad{bottom:349.969500px;}
.y6d{bottom:352.423500px;}
.yf1{bottom:353.491500px;}
.y9{bottom:353.556000px;}
.y8e{bottom:356.310000px;}
.y11f{bottom:358.749000px;}
.y35{bottom:358.792500px;}
.ycd{bottom:361.824000px;}
.y13f{bottom:362.287500px;}
.y183{bottom:362.553000px;}
.y232{bottom:363.433500px;}
.y20c{bottom:365.019000px;}
.y1bb{bottom:367.534500px;}
.y1e1{bottom:368.682000px;}
.y1e2{bottom:368.683500px;}
.yac{bottom:368.799000px;}
.y262{bottom:370.549500px;}
.y6c{bottom:371.253000px;}
.yf0{bottom:372.321000px;}
.y14d{bottom:377.059500px;}
.y11e{bottom:377.578500px;}
.y34{bottom:377.622000px;}
.y296{bottom:379.099500px;}
.ycc{bottom:380.653500px;}
.y13e{bottom:381.117000px;}
.y182{bottom:381.382500px;}
.y8{bottom:381.904500px;}
.y231{bottom:382.263000px;}
.y8d{bottom:382.611000px;}
.y1ba{bottom:386.364000px;}
.yab{bottom:387.628500px;}
.y261{bottom:388.123500px;}
.y20b{bottom:388.959000px;}
.y6b{bottom:390.082500px;}
.yef{bottom:391.150500px;}
.y295{bottom:396.360000px;}
.ycb{bottom:399.483000px;}
.y1e0{bottom:399.519000px;}
.y7{bottom:399.792000px;}
.y13d{bottom:399.946500px;}
.y181{bottom:400.212000px;}
.y33{bottom:400.935000px;}
.y230{bottom:401.092500px;}
.y8c{bottom:401.440500px;}
.y260{bottom:405.697500px;}
.yaa{bottom:406.458000px;}
.y6a{bottom:408.912000px;}
.yee{bottom:409.980000px;}
.y294{bottom:413.619000px;}
.yca{bottom:418.312500px;}
.y1df{bottom:418.348500px;}
.y13c{bottom:418.776000px;}
.y180{bottom:419.041500px;}
.y22f{bottom:419.922000px;}
.y8b{bottom:420.270000px;}
.y20a{bottom:420.579000px;}
.y11d{bottom:421.546500px;}
.y25f{bottom:423.271500px;}
.ya9{bottom:425.287500px;}
.y6{bottom:426.646500px;}
.y69{bottom:427.741500px;}
.yed{bottom:428.809500px;}
.y1b9{bottom:429.127500px;}
.yc9{bottom:437.142000px;}
.y1de{bottom:437.178000px;}
.y13b{bottom:437.605500px;}
.y17f{bottom:437.871000px;}
.y11c{bottom:437.985000px;}
.y22e{bottom:438.751500px;}
.y8a{bottom:439.099500px;}
.y209{bottom:439.812000px;}
.y25e{bottom:440.845500px;}
.ya8{bottom:444.117000px;}
.y5{bottom:444.534000px;}
.y1b8{bottom:445.566000px;}
.y68{bottom:446.571000px;}
.y293{bottom:449.709000px;}
.yec{bottom:452.122500px;}
.y1b5{bottom:453.786000px;}
.yc8{bottom:455.971500px;}
.y1dd{bottom:456.007500px;}
.y13a{bottom:456.433500px;}
.y17e{bottom:456.700500px;}
.y22d{bottom:457.581000px;}
.y89{bottom:457.929000px;}
.y25d{bottom:458.419500px;}
.y208{bottom:459.045000px;}
.y11b{bottom:461.923500px;}
.y1b7{bottom:462.004500px;}
.y4{bottom:462.423000px;}
.ya7{bottom:462.946500px;}
.y67{bottom:465.400500px;}
.y292{bottom:466.969500px;}
.yeb{bottom:470.952000px;}
.yc7{bottom:474.801000px;}
.y1dc{bottom:474.837000px;}
.y139{bottom:475.263000px;}
.y17d{bottom:475.530000px;}
.y25c{bottom:475.993500px;}
.y32{bottom:476.085000px;}
.y22c{bottom:476.410500px;}
.y88{bottom:476.758500px;}
.y11a{bottom:478.362000px;}
.y1b6{bottom:478.443000px;}
.y3{bottom:480.310500px;}
.ya6{bottom:481.776000px;}
.y66{bottom:484.230000px;}
.yea{bottom:489.780000px;}
.y207{bottom:492.052500px;}
.y25b{bottom:493.567500px;}
.yc6{bottom:493.630500px;}
.y1db{bottom:493.666500px;}
.y138{bottom:494.092500px;}
.y17c{bottom:494.359500px;}
.y22b{bottom:495.240000px;}
.y87{bottom:495.588000px;}
.y2{bottom:498.198000px;}
.ya5{bottom:500.605500px;}
.y291{bottom:501.490500px;}
.y119{bottom:502.302000px;}
.y1b4{bottom:502.383000px;}
.y65{bottom:503.059500px;}
.ye9{bottom:508.609500px;}
.y25a{bottom:511.143000px;}
.yc5{bottom:512.460000px;}
.y1da{bottom:512.496000px;}
.y137{bottom:512.922000px;}
.y17b{bottom:513.189000px;}
.y31{bottom:513.474000px;}
.y22a{bottom:514.069500px;}
.y86{bottom:514.417500px;}
.y206{bottom:515.365500px;}
.y1{bottom:516.087000px;}
.y118{bottom:518.740500px;}
.y290{bottom:518.751000px;}
.y1b3{bottom:518.821500px;}
.ya4{bottom:519.435000px;}
.y64{bottom:521.889000px;}
.y1b0{bottom:527.040000px;}
.y259{bottom:528.717000px;}
.yc4{bottom:531.289500px;}
.y1d9{bottom:531.325500px;}
.y136{bottom:531.751500px;}
.ye8{bottom:531.922500px;}
.y229{bottom:532.899000px;}
.y30{bottom:532.932000px;}
.y85{bottom:533.247000px;}
.y117{bottom:535.179000px;}
.y1b2{bottom:535.260000px;}
.y28f{bottom:536.011500px;}
.ya3{bottom:538.264500px;}
.y63{bottom:540.718500px;}
.y258{bottom:546.291000px;}
.y205{bottom:548.989500px;}
.yc3{bottom:550.117500px;}
.y1d8{bottom:550.155000px;}
.y135{bottom:550.581000px;}
.ye7{bottom:550.752000px;}
.y116{bottom:551.617500px;}
.y1b1{bottom:551.698500px;}
.y228{bottom:551.728500px;}
.y84{bottom:552.076500px;}
.y2f{bottom:552.388500px;}
.y28e{bottom:553.272000px;}
.ya2{bottom:557.094000px;}
.y17a{bottom:558.651000px;}
.y62{bottom:559.548000px;}
.y257{bottom:563.865000px;}
.y204{bottom:567.819000px;}
.yc2{bottom:568.947000px;}
.y1d7{bottom:568.984500px;}
.y134{bottom:569.410500px;}
.ye6{bottom:569.581500px;}
.y28d{bottom:570.531000px;}
.y227{bottom:570.558000px;}
.y83{bottom:570.906000px;}
.y2e{bottom:571.846500px;}
.y179{bottom:575.089500px;}
.y115{bottom:575.556000px;}
.y1af{bottom:575.637000px;}
.ya1{bottom:575.923500px;}
.y61{bottom:578.377500px;}
.y256{bottom:581.439000px;}
.y203{bottom:586.648500px;}
.yc1{bottom:587.776500px;}
.y28c{bottom:587.791500px;}
.y1d6{bottom:587.814000px;}
.y133{bottom:588.240000px;}
.ye5{bottom:588.411000px;}
.y226{bottom:589.387500px;}
.y82{bottom:589.734000px;}
.y2d{bottom:591.303000px;}
.y178{bottom:591.528000px;}
.y1ae{bottom:592.075500px;}
.ya0{bottom:594.753000px;}
.y60{bottom:597.207000px;}
.y255{bottom:599.013000px;}
.y1ab{bottom:600.295500px;}
.y28b{bottom:605.052000px;}
.y202{bottom:605.478000px;}
.yc0{bottom:606.606000px;}
.y1d5{bottom:606.643500px;}
.y132{bottom:607.069500px;}
.y114{bottom:607.176000px;}
.ye4{bottom:607.240500px;}
.y177{bottom:607.966500px;}
.y225{bottom:608.217000px;}
.y1ad{bottom:608.514000px;}
.y81{bottom:608.563500px;}
.y2c{bottom:610.759500px;}
.y9f{bottom:613.582500px;}
.y5f{bottom:616.036500px;}
.y254{bottom:616.587000px;}
.y28a{bottom:622.312500px;}
.y201{bottom:624.306000px;}
.y176{bottom:624.405000px;}
.y1ac{bottom:624.952500px;}
.ybf{bottom:625.435500px;}
.y1d4{bottom:625.473000px;}
.ye3{bottom:626.070000px;}
.y224{bottom:627.046500px;}
.y80{bottom:627.393000px;}
.y2b{bottom:630.217500px;}
.y131{bottom:630.382500px;}
.y9e{bottom:632.412000px;}
.y253{bottom:634.161000px;}
.y5e{bottom:634.866000px;}
.y289{bottom:639.573000px;}
.y175{bottom:640.843500px;}
.y200{bottom:643.135500px;}
.y113{bottom:644.280000px;}
.ye2{bottom:644.899500px;}
.y223{bottom:645.876000px;}
.y7f{bottom:646.222500px;}
.ybe{bottom:648.748500px;}
.y1aa{bottom:648.892500px;}
.y130{bottom:649.212000px;}
.y2a{bottom:649.674000px;}
.y252{bottom:651.735000px;}
.y5d{bottom:653.695500px;}
.y9d{bottom:655.723500px;}
.y288{bottom:656.833500px;}
.y174{bottom:657.280500px;}
.y1ff{bottom:661.965000px;}
.y112{bottom:663.109500px;}
.ye1{bottom:663.729000px;}
.y222{bottom:664.704000px;}
.y7e{bottom:665.052000px;}
.y1a9{bottom:665.331000px;}
.y1d3{bottom:667.066500px;}
.ybd{bottom:667.578000px;}
.y12f{bottom:668.041500px;}
.y29{bottom:669.130500px;}
.y251{bottom:669.309000px;}
.y5c{bottom:672.525000px;}
.y1a6{bottom:673.549500px;}
.y287{bottom:674.094000px;}
.y1fe{bottom:680.794500px;}
.y173{bottom:681.220500px;}
.y1a8{bottom:681.769500px;}
.ye0{bottom:682.558500px;}
.y1d2{bottom:683.505000px;}
.y221{bottom:683.533500px;}
.y7d{bottom:683.881500px;}
.ybc{bottom:686.407500px;}
.y111{bottom:686.422500px;}
.y12e{bottom:686.871000px;}
.y250{bottom:686.883000px;}
.y28{bottom:688.588500px;}
.y9c{bottom:689.290500px;}
.y5b{bottom:691.354500px;}
.y1a7{bottom:698.206500px;}
.y1fd{bottom:699.624000px;}
.y1d1{bottom:699.943500px;}
.ydf{bottom:701.388000px;}
.y24f{bottom:704.457000px;}
.y172{bottom:705.160500px;}
.ybb{bottom:705.237000px;}
.y110{bottom:705.252000px;}
.y12d{bottom:705.700500px;}
.y220{bottom:706.846500px;}
.y27{bottom:708.045000px;}
.y286{bottom:708.613500px;}
.y5a{bottom:710.184000px;}
.y1d0{bottom:716.382000px;}
.y1fc{bottom:718.453500px;}
.yde{bottom:720.217500px;}
.y171{bottom:721.599000px;}
.y24e{bottom:722.031000px;}
.y1a5{bottom:722.146500px;}
.yba{bottom:724.066500px;}
.y10f{bottom:724.081500px;}
.y285{bottom:725.874000px;}
.y26{bottom:727.503000px;}
.y59{bottom:729.013500px;}
.y1cf{bottom:732.820500px;}
.y170{bottom:738.037500px;}
.y1a4{bottom:738.585000px;}
.y24d{bottom:739.605000px;}
.y21f{bottom:740.470500px;}
.y10e{bottom:742.911000px;}
.y284{bottom:743.134500px;}
.y1a1{bottom:746.805000px;}
.y25{bottom:746.959500px;}
.y58{bottom:747.843000px;}
.y1ce{bottom:749.257500px;}
.ydd{bottom:753.783000px;}
.y16f{bottom:754.476000px;}
.y1a3{bottom:755.023500px;}
.yb9{bottom:757.632000px;}
.y21e{bottom:759.300000px;}
.y1fb{bottom:760.089000px;}
.y283{bottom:760.395000px;}
.y10d{bottom:761.740500px;}
.y1cd{bottom:765.696000px;}
.y24{bottom:766.416000px;}
.y57{bottom:766.671000px;}
.y16e{bottom:770.914500px;}
.y24c{bottom:770.976000px;}
.y1a2{bottom:771.462000px;}
.ydc{bottom:773.016000px;}
.y1fa{bottom:776.527500px;}
.y282{bottom:777.655500px;}
.y21d{bottom:778.129500px;}
.y10c{bottom:780.570000px;}
.y56{bottom:785.500500px;}
.y23{bottom:785.874000px;}
.y16d{bottom:787.351500px;}
.y1cc{bottom:789.636000px;}
.ydb{bottom:792.249000px;}
.y1f9{bottom:792.966000px;}
.y24b{bottom:793.033500px;}
.y281{bottom:794.916000px;}
.y1a0{bottom:795.402000px;}
.y21c{bottom:796.959000px;}
.y10b{bottom:799.399500px;}
.y16c{bottom:803.790000px;}
.y55{bottom:804.330000px;}
.y22{bottom:805.330500px;}
.y1f8{bottom:809.403000px;}
.y19f{bottom:811.840500px;}
.y280{bottom:812.176500px;}
.y1cb{bottom:813.576000px;}
.y10a{bottom:818.229000px;}
.y19c{bottom:820.059000px;}
.y54{bottom:823.159500px;}
.y21{bottom:824.787000px;}
.y1f7{bottom:825.841500px;}
.y16b{bottom:827.730000px;}
.y19e{bottom:828.277500px;}
.y27f{bottom:829.437000px;}
.y24a{bottom:829.795500px;}
.y21b{bottom:830.524500px;}
.y109{bottom:837.058500px;}
.y53{bottom:841.989000px;}
.y1f6{bottom:842.280000px;}
.y20{bottom:844.245000px;}
.y19d{bottom:844.716000px;}
.y1ca{bottom:845.194500px;}
.y27e{bottom:846.697500px;}
.y21a{bottom:850.006500px;}
.y16a{bottom:851.670000px;}
.y108{bottom:855.888000px;}
.y249{bottom:856.336500px;}
.y1f5{bottom:858.718500px;}
.y52{bottom:860.818500px;}
.y1f{bottom:863.701500px;}
.y27d{bottom:863.956500px;}
.y1c9{bottom:864.427500px;}
.y19b{bottom:868.656000px;}
.y248{bottom:873.910500px;}
.y107{bottom:879.199500px;}
.y51{bottom:879.648000px;}
.y27c{bottom:881.217000px;}
.y1f4{bottom:882.658500px;}
.y169{bottom:883.288500px;}
.y1c8{bottom:883.660500px;}
.y19a{bottom:885.094500px;}
.y247{bottom:891.484500px;}
.y197{bottom:893.313000px;}
.y106{bottom:898.029000px;}
.y50{bottom:898.477500px;}
.y199{bottom:901.533000px;}
.y1e{bottom:902.287500px;}
.y168{bottom:902.521500px;}
.y1f3{bottom:906.598500px;}
.y27b{bottom:915.738000px;}
.y105{bottom:916.858500px;}
.y4f{bottom:917.307000px;}
.y198{bottom:917.971500px;}
.y246{bottom:918.024000px;}
.y1d{bottom:918.426000px;}
.y167{bottom:921.754500px;}
.y27a{bottom:932.998500px;}
.y245{bottom:935.599500px;}
.y104{bottom:935.688000px;}
.y4e{bottom:936.136500px;}
.y1f2{bottom:938.217000px;}
.y1c{bottom:938.905500px;}
.y196{bottom:941.910000px;}
.y279{bottom:950.259000px;}
.y103{bottom:954.517500px;}
.y4d{bottom:954.966000px;}
.y1b{bottom:955.045500px;}
.y1f1{bottom:957.450000px;}
.y244{bottom:962.139000px;}
.y195{bottom:965.850000px;}
.y278{bottom:967.519500px;}
.y102{bottom:973.347000px;}
.y4c{bottom:973.795500px;}
.y1f0{bottom:976.683000px;}
.y243{bottom:979.713000px;}
.y277{bottom:984.780000px;}
.y101{bottom:992.176500px;}
.y4b{bottom:992.625000px;}
.y242{bottom:997.287000px;}
.y194{bottom:997.470000px;}
.y1a{bottom:999.721500px;}
.y276{bottom:1002.040500px;}
.y4a{bottom:1011.454500px;}
.y241{bottom:1014.862500px;}
.y100{bottom:1015.489500px;}
.y193{bottom:1016.703000px;}
.y275{bottom:1019.299500px;}
.y49{bottom:1030.284000px;}
.y240{bottom:1032.436500px;}
.y192{bottom:1035.936000px;}
.y19{bottom:1036.485000px;}
.y274{bottom:1036.560000px;}
.y48{bottom:1049.113500px;}
.y273{bottom:1053.820500px;}
.y18{bottom:1064.728500px;}
.y47{bottom:1067.943000px;}
.y272{bottom:1071.081000px;}
.y46{bottom:1086.772500px;}
.y271{bottom:1088.341500px;}
.y17{bottom:1092.972000px;}
.y45{bottom:1105.602000px;}
.y15{bottom:1136.460000px;}
.y44{bottom:1168.366500px;}
.h9{height:26.110157px;}
.h2{height:30.461558px;}
.h3{height:30.712615px;}
.ha{height:34.813397px;}
.h10{height:35.100320px;}
.hb{height:38.896243px;}
.hc{height:39.165235px;}
.hd{height:39.488026px;}
.h11{height:42.573235px;}
.he{height:43.217759px;}
.hf{height:43.516637px;}
.h6{height:43.875290px;}
.h4{height:50.930649px;}
.h8{height:54.547601px;}
.h12{height:67.334026px;}
.h7{height:77.792486px;}
.h5{height:94.491000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:174.085494px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:52.525500px;}
.x1{left:53.574000px;}
.x2{left:58.555600px;}
.x4d{left:67.884000px;}
.x43{left:73.206000px;}
.x45{left:77.685000px;}
.x46{left:78.808500px;}
.x5c{left:85.848000px;}
.x4e{left:132.357000px;}
.x4c{left:216.367500px;}
.x60{left:238.488000px;}
.x5{left:248.526000px;}
.x4{left:249.591000px;}
.x29{left:250.887000px;}
.x2e{left:251.902500px;}
.x4a{left:254.133000px;}
.x3e{left:258.556500px;}
.x53{left:265.551000px;}
.x51{left:269.290500px;}
.x54{left:275.589000px;}
.x8{left:281.479500px;}
.x55{left:283.060500px;}
.x42{left:300.411000px;}
.x4b{left:302.613000px;}
.x34{left:310.303500px;}
.x6{left:311.862000px;}
.x35{left:314.871000px;}
.x7{left:319.890000px;}
.x36{left:321.597000px;}
.xf{left:324.012000px;}
.x57{left:325.383000px;}
.x10{left:331.483500px;}
.x23{left:338.095500px;}
.x27{left:346.182000px;}
.x2b{left:347.247000px;}
.x2d{left:349.714500px;}
.x24{left:353.040000px;}
.x56{left:355.980000px;}
.x28{left:361.126500px;}
.x2c{left:362.191500px;}
.x52{left:363.486000px;}
.x39{left:366.153000px;}
.x3a{left:368.073000px;}
.xb{left:374.778000px;}
.x25{left:377.137500px;}
.x1f{left:378.198000px;}
.xc{left:382.249500px;}
.x33{left:384.232500px;}
.x2a{left:387.075000px;}
.x58{left:390.714000px;}
.x26{left:392.080500px;}
.x20{left:393.142500px;}
.x3c{left:397.804500px;}
.x1b{left:401.779500px;}
.x1d{left:407.887500px;}
.x44{left:412.596000px;}
.x1c{left:416.275500px;}
.x1e{left:422.830500px;}
.x59{left:427.980000px;}
.x3d{left:435.735000px;}
.x21{left:443.155500px;}
.x47{left:449.265000px;}
.x22{left:458.100000px;}
.x4f{left:465.942000px;}
.x3f{left:468.975000px;}
.x49{left:504.394500px;}
.x48{left:510.991500px;}
.x50{left:524.814000px;}
.x2f{left:526.596000px;}
.x3b{left:530.395500px;}
.x30{left:541.539000px;}
.x9{left:583.083000px;}
.xa{left:590.556000px;}
.x17{left:622.018500px;}
.x18{left:629.490000px;}
.x19{left:633.271500px;}
.x1a{left:648.214500px;}
.x37{left:681.288000px;}
.x40{left:684.568500px;}
.x38{left:689.505000px;}
.x41{left:699.511500px;}
.x5d{left:720.543000px;}
.x11{left:746.553000px;}
.x12{left:754.026000px;}
.x13{left:757.836000px;}
.x14{left:765.307500px;}
.x15{left:773.554500px;}
.x5a{left:778.338000px;}
.x16{left:781.027500px;}
.x5b{left:791.787000px;}
.x5e{left:810.937500px;}
.x31{left:818.893500px;}
.xd{left:824.770500px;}
.xe{left:832.243500px;}
.x32{left:833.838000px;}
.x5f{left:837.837000px;}
@media print{
.v2{vertical-align:-15.429333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:3.029333pt;}
.v1{vertical-align:19.290667pt;}
.v4{vertical-align:24.752000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000540pt;}
.lsc{letter-spacing:0.001007pt;}
.ls1{letter-spacing:0.003230pt;}
.ls14{letter-spacing:0.003733pt;}
.lsa{letter-spacing:0.004267pt;}
.lsd{letter-spacing:0.570745pt;}
.ls12{letter-spacing:2.922363pt;}
.ls0{letter-spacing:9.298933pt;}
.ls4{letter-spacing:10.631867pt;}
.ls15{letter-spacing:11.953007pt;}
.ls19{letter-spacing:11.954133pt;}
.ls16{letter-spacing:11.958340pt;}
.ls18{letter-spacing:11.959467pt;}
.lse{letter-spacing:12.547951pt;}
.ls13{letter-spacing:13.070931pt;}
.ls7{letter-spacing:13.124065pt;}
.ls8{letter-spacing:13.230333pt;}
.ls9{letter-spacing:13.283467pt;}
.lsf{letter-spacing:13.549136pt;}
.ls1a{letter-spacing:14.089244pt;}
.ls6{letter-spacing:15.408821pt;}
.ls10{letter-spacing:15.887026pt;}
.ls11{letter-spacing:20.615940pt;}
.ls2{letter-spacing:55.787733pt;}
.ls3{letter-spacing:57.174803pt;}
.lsb{letter-spacing:981.611674pt;}
.ws4b{word-spacing:-13.283467pt;}
.ws7a{word-spacing:-11.955200pt;}
.ws2c{word-spacing:-10.626800pt;}
.wsa{word-spacing:-10.095467pt;}
.ws2{word-spacing:-9.298400pt;}
.ws42{word-spacing:-3.241166pt;}
.ws61{word-spacing:-3.188032pt;}
.wsb3{word-spacing:-3.042814pt;}
.ws9d{word-spacing:-2.497292pt;}
.ws2a{word-spacing:-2.284756pt;}
.ws7d{word-spacing:-2.072221pt;}
.ws53{word-spacing:-1.912819pt;}
.ws73{word-spacing:-1.806551pt;}
.ws31{word-spacing:-1.700284pt;}
.ws74{word-spacing:-1.647150pt;}
.ws50{word-spacing:-1.381481pt;}
.ws1a{word-spacing:-1.291162pt;}
.ws34{word-spacing:-1.275213pt;}
.ws46{word-spacing:-1.222079pt;}
.ws57{word-spacing:-1.168945pt;}
.ws26{word-spacing:-1.115811pt;}
.ws87{word-spacing:-1.062677pt;}
.ws4e{word-spacing:-1.009543pt;}
.ws63{word-spacing:-0.956410pt;}
.ws78{word-spacing:-0.903276pt;}
.ws82{word-spacing:-0.850142pt;}
.ws28{word-spacing:-0.797008pt;}
.wsac{word-spacing:-0.765133pt;}
.ws3a{word-spacing:-0.743874pt;}
.ws9e{word-spacing:-0.690740pt;}
.wsf2{word-spacing:-0.637606pt;}
.wse2{word-spacing:-0.584473pt;}
.ws84{word-spacing:-0.531339pt;}
.ws107{word-spacing:-0.478208pt;}
.ws25{word-spacing:-0.478205pt;}
.ws10d{word-spacing:-0.382566pt;}
.ws45{word-spacing:-0.371937pt;}
.wsde{word-spacing:-0.340943pt;}
.ws3f{word-spacing:-0.318803pt;}
.wsd8{word-spacing:-0.290906pt;}
.wsb7{word-spacing:-0.286925pt;}
.ws29{word-spacing:-0.265669pt;}
.ws100{word-spacing:-0.239104pt;}
.wsf0{word-spacing:-0.217812pt;}
.ws22{word-spacing:-0.212535pt;}
.wsf9{word-spacing:-0.191283pt;}
.wsf4{word-spacing:-0.176365pt;}
.ws39{word-spacing:-0.159402pt;}
.wsf5{word-spacing:-0.157862pt;}
.ws17{word-spacing:-0.143462pt;}
.wsb4{word-spacing:-0.141339pt;}
.ws1c{word-spacing:-0.136010pt;}
.wsd4{word-spacing:-0.123171pt;}
.wsb1{word-spacing:-0.122347pt;}
.wsdd{word-spacing:-0.121212pt;}
.ws27{word-spacing:-0.106268pt;}
.wsd5{word-spacing:-0.106042pt;}
.wsb2{word-spacing:-0.102272pt;}
.wsd3{word-spacing:-0.100813pt;}
.wsc6{word-spacing:-0.095642pt;}
.wsd9{word-spacing:-0.082045pt;}
.wsd2{word-spacing:-0.073130pt;}
.wsd1{word-spacing:-0.062112pt;}
.ws91{word-spacing:-0.054148pt;}
.ws90{word-spacing:-0.053617pt;}
.ws23{word-spacing:-0.053134pt;}
.ws16{word-spacing:-0.047821pt;}
.wsc4{word-spacing:-0.039513pt;}
.wsee{word-spacing:-0.007859pt;}
.wsea{word-spacing:-0.007114pt;}
.wsbd{word-spacing:-0.006516pt;}
.ws106{word-spacing:-0.005905pt;}
.ws9f{word-spacing:-0.004606pt;}
.ws1d{word-spacing:-0.004147pt;}
.wsef{word-spacing:-0.003140pt;}
.wsed{word-spacing:-0.003115pt;}
.ws109{word-spacing:-0.003081pt;}
.ws2b{word-spacing:-0.002540pt;}
.wsa1{word-spacing:-0.001954pt;}
.wsbe{word-spacing:-0.001949pt;}
.wseb{word-spacing:-0.001622pt;}
.wsbf{word-spacing:-0.001287pt;}
.wsa0{word-spacing:-0.000334pt;}
.ws1{word-spacing:0.000000pt;}
.wsdf{word-spacing:0.001824pt;}
.ws10a{word-spacing:0.002133pt;}
.ws3b{word-spacing:0.003841pt;}
.wsd7{word-spacing:0.017640pt;}
.ws98{word-spacing:0.022059pt;}
.wsda{word-spacing:0.024105pt;}
.wsab{word-spacing:0.047821pt;}
.ws4a{word-spacing:0.053134pt;}
.wsa7{word-spacing:0.054408pt;}
.ws12{word-spacing:0.095642pt;}
.ws32{word-spacing:0.106268pt;}
.wsd6{word-spacing:0.113746pt;}
.ws96{word-spacing:0.120188pt;}
.ws95{word-spacing:0.122071pt;}
.wsa5{word-spacing:0.128804pt;}
.ws1e{word-spacing:0.143462pt;}
.wsc3{word-spacing:0.147582pt;}
.ws24{word-spacing:0.159402pt;}
.wsc5{word-spacing:0.163024pt;}
.ws14{word-spacing:0.191283pt;}
.ws21{word-spacing:0.212535pt;}
.wse0{word-spacing:0.239104pt;}
.ws2e{word-spacing:0.265669pt;}
.wsb9{word-spacing:0.286925pt;}
.ws5a{word-spacing:0.318803pt;}
.wsdb{word-spacing:0.334746pt;}
.wsf8{word-spacing:0.371937pt;}
.ws44{word-spacing:0.425071pt;}
.wsfb{word-spacing:0.430387pt;}
.wsa8{word-spacing:0.478205pt;}
.ws108{word-spacing:0.478208pt;}
.ws110{word-spacing:0.526029pt;}
.ws30{word-spacing:0.531339pt;}
.ws54{word-spacing:0.584473pt;}
.wse4{word-spacing:0.637606pt;}
.ws13{word-spacing:0.669491pt;}
.ws58{word-spacing:0.690740pt;}
.ws6e{word-spacing:0.743874pt;}
.ws52{word-spacing:0.850142pt;}
.wse5{word-spacing:0.903276pt;}
.ws10b{word-spacing:0.908595pt;}
.ws10{word-spacing:1.004237pt;}
.ws40{word-spacing:1.009543pt;}
.ws11{word-spacing:1.052058pt;}
.ws2f{word-spacing:1.062677pt;}
.ws97{word-spacing:1.115811pt;}
.ws9b{word-spacing:1.168945pt;}
.ws75{word-spacing:1.222079pt;}
.wsdc{word-spacing:1.275213pt;}
.ws55{word-spacing:1.328347pt;}
.ws4d{word-spacing:1.381481pt;}
.ws9c{word-spacing:1.434614pt;}
.ws19{word-spacing:1.434624pt;}
.wsa9{word-spacing:1.594016pt;}
.ws43{word-spacing:1.647150pt;}
.ws1b{word-spacing:1.673728pt;}
.ws20{word-spacing:1.700284pt;}
.wsb6{word-spacing:1.721549pt;}
.ws6f{word-spacing:1.753418pt;}
.wsb5{word-spacing:1.960653pt;}
.ws5c{word-spacing:1.965953pt;}
.ws18{word-spacing:2.008474pt;}
.ws37{word-spacing:2.019087pt;}
.ws8c{word-spacing:2.072221pt;}
.ws47{word-spacing:2.125355pt;}
.ws105{word-spacing:2.151936pt;}
.ws2d{word-spacing:2.178489pt;}
.wsd0{word-spacing:2.231393pt;}
.wscf{word-spacing:2.231622pt;}
.ws0{word-spacing:2.232481pt;}
.ws72{word-spacing:2.284756pt;}
.ws8a{word-spacing:2.391024pt;}
.ws15{word-spacing:2.438861pt;}
.ws93{word-spacing:2.444158pt;}
.wse6{word-spacing:2.497292pt;}
.ws5d{word-spacing:2.550426pt;}
.wsd{word-spacing:2.550432pt;}
.ws36{word-spacing:2.560703pt;}
.wsa2{word-spacing:2.603559pt;}
.ws69{word-spacing:2.656693pt;}
.ws5f{word-spacing:2.709827pt;}
.ws67{word-spacing:2.762961pt;}
.ws79{word-spacing:2.816095pt;}
.ws7c{word-spacing:2.821427pt;}
.ws10e{word-spacing:2.865263pt;}
.ws103{word-spacing:2.867354pt;}
.ws41{word-spacing:2.869229pt;}
.ws102{word-spacing:2.869248pt;}
.ws99{word-spacing:2.975497pt;}
.ws70{word-spacing:3.028630pt;}
.ws7b{word-spacing:3.108352pt;}
.wsc9{word-spacing:3.134898pt;}
.wscb{word-spacing:3.166126pt;}
.wsca{word-spacing:3.167340pt;}
.ws1f{word-spacing:3.188032pt;}
.wsfa{word-spacing:3.203994pt;}
.ws59{word-spacing:3.241166pt;}
.wscc{word-spacing:3.271916pt;}
.ws85{word-spacing:3.294300pt;}
.ws6d{word-spacing:3.347434pt;}
.ws33{word-spacing:3.400567pt;}
.wscd{word-spacing:3.453701pt;}
.wsce{word-spacing:3.465380pt;}
.ws111{word-spacing:3.470105pt;}
.ws62{word-spacing:3.506835pt;}
.ws113{word-spacing:3.586560pt;}
.ws83{word-spacing:3.719371pt;}
.wse7{word-spacing:3.772505pt;}
.ws116{word-spacing:3.777843pt;}
.ws5b{word-spacing:3.825638pt;}
.wsc8{word-spacing:3.872008pt;}
.ws35{word-spacing:3.878772pt;}
.wsc7{word-spacing:3.885774pt;}
.wsf{word-spacing:3.969126pt;}
.ws76{word-spacing:3.985040pt;}
.ws8b{word-spacing:4.038174pt;}
.wsf7{word-spacing:4.091308pt;}
.ws115{word-spacing:4.112589pt;}
.ws6c{word-spacing:4.144442pt;}
.ws6a{word-spacing:4.197575pt;}
.ws8{word-spacing:4.240070pt;}
.ws81{word-spacing:4.250709pt;}
.ws3c{word-spacing:4.303843pt;}
.ws9{word-spacing:4.314458pt;}
.ws64{word-spacing:4.410111pt;}
.ws5e{word-spacing:4.463245pt;}
.ws4f{word-spacing:4.516379pt;}
.wse9{word-spacing:4.569513pt;}
.wse8{word-spacing:4.572496pt;}
.ws66{word-spacing:4.622646pt;}
.ws60{word-spacing:4.675780pt;}
.ws65{word-spacing:4.728914pt;}
.ws4c{word-spacing:4.782048pt;}
.ws48{word-spacing:4.835182pt;}
.ws92{word-spacing:4.846984pt;}
.wsc1{word-spacing:4.876072pt;}
.wsc0{word-spacing:4.877144pt;}
.ws3d{word-spacing:4.888316pt;}
.ws3e{word-spacing:4.893838pt;}
.ws9a{word-spacing:4.941450pt;}
.ws68{word-spacing:5.100851pt;}
.wse3{word-spacing:5.153985pt;}
.ws56{word-spacing:5.207119pt;}
.ws101{word-spacing:5.260288pt;}
.ws77{word-spacing:5.313387pt;}
.ws8e{word-spacing:5.366521pt;}
.ws112{word-spacing:5.511009pt;}
.ws49{word-spacing:5.525922pt;}
.wsf6{word-spacing:5.632190pt;}
.wsa4{word-spacing:5.710830pt;}
.wsa3{word-spacing:5.738458pt;}
.ws38{word-spacing:5.791591pt;}
.ws94{word-spacing:6.004127pt;}
.ws8d{word-spacing:6.057261pt;}
.wse{word-spacing:6.264525pt;}
.wsb0{word-spacing:6.269796pt;}
.wsf3{word-spacing:6.271255pt;}
.wsf1{word-spacing:6.429198pt;}
.ws6{word-spacing:6.918010pt;}
.ws8f{word-spacing:6.960537pt;}
.wsba{word-spacing:7.029658pt;}
.ws6b{word-spacing:7.066804pt;}
.wsec{word-spacing:7.173072pt;}
.ws71{word-spacing:7.279340pt;}
.wsaa{word-spacing:7.332474pt;}
.ws10f{word-spacing:7.341947pt;}
.ws51{word-spacing:7.491875pt;}
.ws10c{word-spacing:8.124254pt;}
.ws104{word-spacing:8.225178pt;}
.ws7f{word-spacing:10.254836pt;}
.ws4{word-spacing:10.823338pt;}
.ws114{word-spacing:12.050842pt;}
.wsc2{word-spacing:13.124065pt;}
.ws5{word-spacing:14.319536pt;}
.ws80{word-spacing:19.659531pt;}
.ws7{word-spacing:23.208806pt;}
.ws3{word-spacing:23.858002pt;}
.wsad{word-spacing:35.435213pt;}
.wsb{word-spacing:41.464218pt;}
.wsc{word-spacing:54.710236pt;}
.ws86{word-spacing:69.871035pt;}
.wsbc{word-spacing:74.648269pt;}
.wsbb{word-spacing:84.308070pt;}
.wsae{word-spacing:89.090150pt;}
.wsb8{word-spacing:94.780826pt;}
.wsff{word-spacing:106.592563pt;}
.wsfc{word-spacing:126.581658pt;}
.wsaf{word-spacing:130.933350pt;}
.wsfe{word-spacing:142.505984pt;}
.wsfd{word-spacing:157.186970pt;}
.wse1{word-spacing:161.969050pt;}
.ws7e{word-spacing:240.994430pt;}
.ws89{word-spacing:989.437116pt;}
.ws88{word-spacing:1112.785963pt;}
.wsa6{word-spacing:1368.774758pt;}
._13{margin-left:-6.418575pt;}
._8{margin-left:-5.355968pt;}
._7{margin-left:-4.208230pt;}
._d{margin-left:-2.677926pt;}
._3{margin-left:-1.338970pt;}
._5{width:1.006369pt;}
._4{width:2.654918pt;}
._0{width:10.859731pt;}
._e{width:12.481229pt;}
._b{width:13.581107pt;}
._c{width:14.680986pt;}
._10{width:16.057051pt;}
._9{width:16.976384pt;}
._a{width:17.884966pt;}
._f{width:19.797811pt;}
._15{width:21.051634pt;}
._18{width:22.004910pt;}
._1{width:23.063232pt;}
._1a{width:24.016508pt;}
._1c{width:25.196076pt;}
._19{width:26.088729pt;}
._2{width:27.188522pt;}
._26{width:28.426619pt;}
._16{width:29.521040pt;}
._17{width:30.551973pt;}
._27{width:31.451028pt;}
._1d{width:33.325557pt;}
._14{width:34.377612pt;}
._3c{width:35.663447pt;}
._6{width:50.498554pt;}
._1b{width:51.720825pt;}
._67{width:63.745126pt;}
._20{width:72.687130pt;}
._49{width:73.644032pt;}
._48{width:76.369818pt;}
._41{width:78.091366pt;}
._64{width:80.004198pt;}
._21{width:83.154501pt;}
._1e{width:85.371555pt;}
._4e{width:88.803226pt;}
._60{width:92.198502pt;}
._31{width:95.785062pt;}
._3b{width:101.093171pt;}
._47{width:104.201523pt;}
._66{width:105.540506pt;}
._4d{width:106.736026pt;}
._4a{width:108.218470pt;}
._3e{width:109.700915pt;}
._50{width:111.661568pt;}
._61{width:113.478758pt;}
._4f{width:114.817741pt;}
._40{width:116.348006pt;}
._30{width:117.686989pt;}
._46{width:118.834688pt;}
._4c{width:120.125850pt;}
._52{width:121.130086pt;}
._3f{width:124.334080pt;}
._43{width:126.772941pt;}
._51{width:129.116160pt;}
._32{width:131.602842pt;}
._62{width:133.133107pt;}
._65{width:134.424269pt;}
._45{width:135.619789pt;}
._63{width:138.345574pt;}
._39{width:142.936371pt;}
._2d{width:146.236006pt;}
._42{width:147.574989pt;}
._36{width:148.866150pt;}
._35{width:152.835277pt;}
._33{width:154.222080pt;}
._34{width:158.191206pt;}
._2e{width:162.160333pt;}
._56{width:163.642778pt;}
._3a{width:164.647014pt;}
._37{width:172.776550pt;}
._53{width:176.889139pt;}
._2f{width:182.053786pt;}
._55{width:183.536230pt;}
._38{width:184.731750pt;}
._54{width:191.570125pt;}
._5b{width:194.008986pt;}
._59{width:207.446630pt;}
._5d{width:211.463578pt;}
._58{width:212.754739pt;}
._5a{width:214.141542pt;}
._5c{width:220.740813pt;}
._57{width:231.357030pt;}
._1f{width:246.596242pt;}
._44{width:352.582758pt;}
._2a{width:700.861645pt;}
._5e{width:761.032576pt;}
._5f{width:762.371874pt;}
._4b{width:812.571034pt;}
._29{width:881.624269pt;}
._11{width:913.238973pt;}
._24{width:1054.951612pt;}
._3d{width:1160.276070pt;}
._25{width:1171.969109pt;}
._22{width:1215.269990pt;}
._23{width:1252.857139pt;}
._2b{width:1263.377715pt;}
._2c{width:1313.302630pt;}
._28{width:2251.922400pt;}
._12{width:2273.175733pt;}
.fs5{font-size:31.880533pt;}
.fs0{font-size:37.193600pt;}
.fs4{font-size:40.381867pt;}
.fs6{font-size:42.507200pt;}
.fs7{font-size:47.820800pt;}
.fs8{font-size:49.829333pt;}
.fs2{font-size:53.133867pt;}
.fs9{font-size:55.365867pt;}
.fs3{font-size:95.641600pt;}
.fs1{font-size:134.387200pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:14.236308pt;}
.y43{bottom:28.346667pt;}
.y1ef{bottom:81.480000pt;}
.y9b{bottom:81.998667pt;}
.y191{bottom:83.146667pt;}
.y12c{bottom:84.168000pt;}
.yda{bottom:86.901333pt;}
.y166{bottom:88.405333pt;}
.yff{bottom:92.645333pt;}
.y14{bottom:93.018667pt;}
.y270{bottom:94.221333pt;}
.y159{bottom:97.564000pt;}
.y1ee{bottom:98.217333pt;}
.y9a{bottom:98.736000pt;}
.y190{bottom:99.884000pt;}
.y12b{bottom:100.905333pt;}
.y42{bottom:101.342667pt;}
.yd9{bottom:103.638667pt;}
.y1c7{bottom:103.825333pt;}
.y14c{bottom:104.448000pt;}
.y165{bottom:105.142667pt;}
.y23f{bottom:105.468000pt;}
.y13{bottom:108.920000pt;}
.yfe{bottom:109.382667pt;}
.y26f{bottom:109.564000pt;}
.y78{bottom:112.020000pt;}
.y158{bottom:112.176000pt;}
.y219{bottom:112.288000pt;}
.y7c{bottom:112.418667pt;}
.y217{bottom:114.954667pt;}
.y99{bottom:115.473333pt;}
.y18f{bottom:116.621333pt;}
.y12a{bottom:117.642667pt;}
.y41{bottom:118.080000pt;}
.y1c6{bottom:118.437333pt;}
.yd8{bottom:120.374667pt;}
.y14b{bottom:121.185333pt;}
.y164{bottom:121.880000pt;}
.y23e{bottom:122.205333pt;}
.yb8{bottom:122.989333pt;}
.y12{bottom:124.820000pt;}
.y26e{bottom:124.905333pt;}
.yfd{bottom:126.120000pt;}
.y157{bottom:126.788000pt;}
.y77{bottom:128.757333pt;}
.y7b{bottom:129.156000pt;}
.y218{bottom:129.384000pt;}
.y216{bottom:131.692000pt;}
.y98{bottom:132.210667pt;}
.y1c5{bottom:133.049333pt;}
.y18e{bottom:133.358667pt;}
.y129{bottom:134.380000pt;}
.y40{bottom:134.816000pt;}
.y1ed{bottom:135.189333pt;}
.yd7{bottom:137.112000pt;}
.y14a{bottom:137.922667pt;}
.y23d{bottom:138.941333pt;}
.y26d{bottom:140.248000pt;}
.y11{bottom:140.720000pt;}
.y156{bottom:141.400000pt;}
.y163{bottom:142.602667pt;}
.yfc{bottom:142.857333pt;}
.yb7{bottom:143.712000pt;}
.y7a{bottom:145.893333pt;}
.y1c4{bottom:147.661333pt;}
.y215{bottom:148.429333pt;}
.y97{bottom:148.948000pt;}
.y76{bottom:149.480000pt;}
.y1ec{bottom:149.801333pt;}
.y18d{bottom:150.096000pt;}
.y128{bottom:151.117333pt;}
.y3f{bottom:151.553333pt;}
.yd6{bottom:153.849333pt;}
.y149{bottom:154.660000pt;}
.y26c{bottom:155.590667pt;}
.y23c{bottom:155.678667pt;}
.y155{bottom:156.012000pt;}
.y10{bottom:156.621333pt;}
.yfa{bottom:159.593333pt;}
.yfb{bottom:159.594667pt;}
.yb6{bottom:160.449333pt;}
.y1c3{bottom:162.273333pt;}
.y79{bottom:162.630667pt;}
.y1eb{bottom:164.413333pt;}
.y214{bottom:165.166667pt;}
.y18c{bottom:166.833333pt;}
.y127{bottom:167.854667pt;}
.y3e{bottom:168.290667pt;}
.y96{bottom:169.670667pt;}
.y26b{bottom:170.933333pt;}
.y148{bottom:171.397333pt;}
.y23b{bottom:172.416000pt;}
.y162{bottom:172.490667pt;}
.yf{bottom:172.521333pt;}
.yd5{bottom:174.572000pt;}
.yf9{bottom:176.330667pt;}
.y1c2{bottom:176.885333pt;}
.yb5{bottom:177.186667pt;}
.y154{bottom:177.292000pt;}
.y1ea{bottom:179.025333pt;}
.y75{bottom:179.368000pt;}
.y18b{bottom:183.570667pt;}
.y126{bottom:184.592000pt;}
.y3d{bottom:185.028000pt;}
.y26a{bottom:186.276000pt;}
.y147{bottom:188.134667pt;}
.ye{bottom:188.421333pt;}
.y23a{bottom:189.153333pt;}
.y161{bottom:189.228000pt;}
.y1c1{bottom:191.497333pt;}
.yf8{bottom:193.068000pt;}
.y1e9{bottom:193.637333pt;}
.yb4{bottom:193.924000pt;}
.y74{bottom:196.105333pt;}
.y95{bottom:199.558667pt;}
.y18a{bottom:200.306667pt;}
.y125{bottom:201.329333pt;}
.y269{bottom:201.618667pt;}
.y3c{bottom:201.765333pt;}
.y213{bottom:202.176000pt;}
.yd{bottom:204.322667pt;}
.yd4{bottom:204.460000pt;}
.y146{bottom:204.872000pt;}
.y153{bottom:205.397333pt;}
.y239{bottom:205.890667pt;}
.y15f{bottom:205.964000pt;}
.y160{bottom:205.965333pt;}
.y1e8{bottom:208.249333pt;}
.yf7{bottom:209.805333pt;}
.yb3{bottom:210.660000pt;}
.y1c0{bottom:212.776000pt;}
.y73{bottom:212.841333pt;}
.y94{bottom:216.296000pt;}
.y212{bottom:216.788000pt;}
.y268{bottom:216.961333pt;}
.y124{bottom:218.066667pt;}
.y3b{bottom:218.502667pt;}
.yd3{bottom:221.197333pt;}
.y145{bottom:221.609333pt;}
.y238{bottom:222.628000pt;}
.y15e{bottom:222.701333pt;}
.y1e7{bottom:222.861333pt;}
.y189{bottom:225.333333pt;}
.yf6{bottom:226.542667pt;}
.yb2{bottom:227.397333pt;}
.y72{bottom:229.578667pt;}
.y267{bottom:232.304000pt;}
.y93{bottom:233.033333pt;}
.y1bf{bottom:234.056000pt;}
.y187{bottom:234.445333pt;}
.y3a{bottom:235.240000pt;}
.yd2{bottom:237.934667pt;}
.y211{bottom:238.066667pt;}
.y144{bottom:238.346667pt;}
.y152{bottom:238.378667pt;}
.y123{bottom:238.788000pt;}
.y237{bottom:239.365333pt;}
.y15d{bottom:239.438667pt;}
.yf5{bottom:243.280000pt;}
.y188{bottom:243.438667pt;}
.yb1{bottom:244.134667pt;}
.y1e6{bottom:244.140000pt;}
.y71{bottom:246.316000pt;}
.y266{bottom:247.646667pt;}
.y92{bottom:249.770667pt;}
.y39{bottom:251.977333pt;}
.y210{bottom:252.678667pt;}
.yd1{bottom:254.672000pt;}
.y143{bottom:255.084000pt;}
.y151{bottom:255.116000pt;}
.y236{bottom:256.102667pt;}
.y15c{bottom:256.176000pt;}
.yf4{bottom:260.017333pt;}
.yb0{bottom:260.872000pt;}
.y1be{bottom:262.162667pt;}
.y265{bottom:262.988000pt;}
.y70{bottom:263.053333pt;}
.y1e5{bottom:265.420000pt;}
.y91{bottom:266.508000pt;}
.yc{bottom:266.570667pt;}
.y122{bottom:268.676000pt;}
.y38{bottom:268.714667pt;}
.yd0{bottom:271.409333pt;}
.y142{bottom:271.821333pt;}
.y150{bottom:271.853333pt;}
.y186{bottom:272.057333pt;}
.y235{bottom:272.840000pt;}
.y20f{bottom:273.958667pt;}
.yf3{bottom:276.754667pt;}
.y15b{bottom:276.898667pt;}
.yaf{bottom:277.609333pt;}
.y264{bottom:278.330667pt;}
.y1bd{bottom:279.258667pt;}
.y6f{bottom:279.790667pt;}
.yb{bottom:282.470667pt;}
.y90{bottom:283.245333pt;}
.y121{bottom:285.413333pt;}
.y37{bottom:285.452000pt;}
.ycf{bottom:288.146667pt;}
.y141{bottom:288.558667pt;}
.y20e{bottom:288.570667pt;}
.y14f{bottom:288.590667pt;}
.y185{bottom:288.794667pt;}
.y234{bottom:289.577333pt;}
.yf2{bottom:293.492000pt;}
.y1e4{bottom:293.526667pt;}
.y15a{bottom:293.636000pt;}
.yae{bottom:294.346667pt;}
.y1bc{bottom:296.353333pt;}
.y6e{bottom:296.528000pt;}
.y263{bottom:297.658667pt;}
.ya{bottom:298.370667pt;}
.y8f{bottom:299.982667pt;}
.y120{bottom:302.150667pt;}
.y36{bottom:302.189333pt;}
.yce{bottom:304.884000pt;}
.y140{bottom:305.296000pt;}
.y14e{bottom:305.328000pt;}
.y184{bottom:305.532000pt;}
.y233{bottom:306.314667pt;}
.y20d{bottom:309.850667pt;}
.y1e3{bottom:310.622667pt;}
.yad{bottom:311.084000pt;}
.y6d{bottom:313.265333pt;}
.yf1{bottom:314.214667pt;}
.y9{bottom:314.272000pt;}
.y8e{bottom:316.720000pt;}
.y11f{bottom:318.888000pt;}
.y35{bottom:318.926667pt;}
.ycd{bottom:321.621333pt;}
.y13f{bottom:322.033333pt;}
.y183{bottom:322.269333pt;}
.y232{bottom:323.052000pt;}
.y20c{bottom:324.461333pt;}
.y1bb{bottom:326.697333pt;}
.y1e1{bottom:327.717333pt;}
.y1e2{bottom:327.718667pt;}
.yac{bottom:327.821333pt;}
.y262{bottom:329.377333pt;}
.y6c{bottom:330.002667pt;}
.yf0{bottom:330.952000pt;}
.y14d{bottom:335.164000pt;}
.y11e{bottom:335.625333pt;}
.y34{bottom:335.664000pt;}
.y296{bottom:336.977333pt;}
.ycc{bottom:338.358667pt;}
.y13e{bottom:338.770667pt;}
.y182{bottom:339.006667pt;}
.y8{bottom:339.470667pt;}
.y231{bottom:339.789333pt;}
.y8d{bottom:340.098667pt;}
.y1ba{bottom:343.434667pt;}
.yab{bottom:344.558667pt;}
.y261{bottom:344.998667pt;}
.y20b{bottom:345.741333pt;}
.y6b{bottom:346.740000pt;}
.yef{bottom:347.689333pt;}
.y295{bottom:352.320000pt;}
.ycb{bottom:355.096000pt;}
.y1e0{bottom:355.128000pt;}
.y7{bottom:355.370667pt;}
.y13d{bottom:355.508000pt;}
.y181{bottom:355.744000pt;}
.y33{bottom:356.386667pt;}
.y230{bottom:356.526667pt;}
.y8c{bottom:356.836000pt;}
.y260{bottom:360.620000pt;}
.yaa{bottom:361.296000pt;}
.y6a{bottom:363.477333pt;}
.yee{bottom:364.426667pt;}
.y294{bottom:367.661333pt;}
.yca{bottom:371.833333pt;}
.y1df{bottom:371.865333pt;}
.y13c{bottom:372.245333pt;}
.y180{bottom:372.481333pt;}
.y22f{bottom:373.264000pt;}
.y8b{bottom:373.573333pt;}
.y20a{bottom:373.848000pt;}
.y11d{bottom:374.708000pt;}
.y25f{bottom:376.241333pt;}
.ya9{bottom:378.033333pt;}
.y6{bottom:379.241333pt;}
.y69{bottom:380.214667pt;}
.yed{bottom:381.164000pt;}
.y1b9{bottom:381.446667pt;}
.yc9{bottom:388.570667pt;}
.y1de{bottom:388.602667pt;}
.y13b{bottom:388.982667pt;}
.y17f{bottom:389.218667pt;}
.y11c{bottom:389.320000pt;}
.y22e{bottom:390.001333pt;}
.y8a{bottom:390.310667pt;}
.y209{bottom:390.944000pt;}
.y25e{bottom:391.862667pt;}
.ya8{bottom:394.770667pt;}
.y5{bottom:395.141333pt;}
.y1b8{bottom:396.058667pt;}
.y68{bottom:396.952000pt;}
.y293{bottom:399.741333pt;}
.yec{bottom:401.886667pt;}
.y1b5{bottom:403.365333pt;}
.yc8{bottom:405.308000pt;}
.y1dd{bottom:405.340000pt;}
.y13a{bottom:405.718667pt;}
.y17e{bottom:405.956000pt;}
.y22d{bottom:406.738667pt;}
.y89{bottom:407.048000pt;}
.y25d{bottom:407.484000pt;}
.y208{bottom:408.040000pt;}
.y11b{bottom:410.598667pt;}
.y1b7{bottom:410.670667pt;}
.y4{bottom:411.042667pt;}
.ya7{bottom:411.508000pt;}
.y67{bottom:413.689333pt;}
.y292{bottom:415.084000pt;}
.yeb{bottom:418.624000pt;}
.yc7{bottom:422.045333pt;}
.y1dc{bottom:422.077333pt;}
.y139{bottom:422.456000pt;}
.y17d{bottom:422.693333pt;}
.y25c{bottom:423.105333pt;}
.y32{bottom:423.186667pt;}
.y22c{bottom:423.476000pt;}
.y88{bottom:423.785333pt;}
.y11a{bottom:425.210667pt;}
.y1b6{bottom:425.282667pt;}
.y3{bottom:426.942667pt;}
.ya6{bottom:428.245333pt;}
.y66{bottom:430.426667pt;}
.yea{bottom:435.360000pt;}
.y207{bottom:437.380000pt;}
.y25b{bottom:438.726667pt;}
.yc6{bottom:438.782667pt;}
.y1db{bottom:438.814667pt;}
.y138{bottom:439.193333pt;}
.y17c{bottom:439.430667pt;}
.y22b{bottom:440.213333pt;}
.y87{bottom:440.522667pt;}
.y2{bottom:442.842667pt;}
.ya5{bottom:444.982667pt;}
.y291{bottom:445.769333pt;}
.y119{bottom:446.490667pt;}
.y1b4{bottom:446.562667pt;}
.y65{bottom:447.164000pt;}
.ye9{bottom:452.097333pt;}
.y25a{bottom:454.349333pt;}
.yc5{bottom:455.520000pt;}
.y1da{bottom:455.552000pt;}
.y137{bottom:455.930667pt;}
.y17b{bottom:456.168000pt;}
.y31{bottom:456.421333pt;}
.y22a{bottom:456.950667pt;}
.y86{bottom:457.260000pt;}
.y206{bottom:458.102667pt;}
.y1{bottom:458.744000pt;}
.y118{bottom:461.102667pt;}
.y290{bottom:461.112000pt;}
.y1b3{bottom:461.174667pt;}
.ya4{bottom:461.720000pt;}
.y64{bottom:463.901333pt;}
.y1b0{bottom:468.480000pt;}
.y259{bottom:469.970667pt;}
.yc4{bottom:472.257333pt;}
.y1d9{bottom:472.289333pt;}
.y136{bottom:472.668000pt;}
.ye8{bottom:472.820000pt;}
.y229{bottom:473.688000pt;}
.y30{bottom:473.717333pt;}
.y85{bottom:473.997333pt;}
.y117{bottom:475.714667pt;}
.y1b2{bottom:475.786667pt;}
.y28f{bottom:476.454667pt;}
.ya3{bottom:478.457333pt;}
.y63{bottom:480.638667pt;}
.y258{bottom:485.592000pt;}
.y205{bottom:487.990667pt;}
.yc3{bottom:488.993333pt;}
.y1d8{bottom:489.026667pt;}
.y135{bottom:489.405333pt;}
.ye7{bottom:489.557333pt;}
.y116{bottom:490.326667pt;}
.y1b1{bottom:490.398667pt;}
.y228{bottom:490.425333pt;}
.y84{bottom:490.734667pt;}
.y2f{bottom:491.012000pt;}
.y28e{bottom:491.797333pt;}
.ya2{bottom:495.194667pt;}
.y17a{bottom:496.578667pt;}
.y62{bottom:497.376000pt;}
.y257{bottom:501.213333pt;}
.y204{bottom:504.728000pt;}
.yc2{bottom:505.730667pt;}
.y1d7{bottom:505.764000pt;}
.y134{bottom:506.142667pt;}
.ye6{bottom:506.294667pt;}
.y28d{bottom:507.138667pt;}
.y227{bottom:507.162667pt;}
.y83{bottom:507.472000pt;}
.y2e{bottom:508.308000pt;}
.y179{bottom:511.190667pt;}
.y115{bottom:511.605333pt;}
.y1af{bottom:511.677333pt;}
.ya1{bottom:511.932000pt;}
.y61{bottom:514.113333pt;}
.y256{bottom:516.834667pt;}
.y203{bottom:521.465333pt;}
.yc1{bottom:522.468000pt;}
.y28c{bottom:522.481333pt;}
.y1d6{bottom:522.501333pt;}
.y133{bottom:522.880000pt;}
.ye5{bottom:523.032000pt;}
.y226{bottom:523.900000pt;}
.y82{bottom:524.208000pt;}
.y2d{bottom:525.602667pt;}
.y178{bottom:525.802667pt;}
.y1ae{bottom:526.289333pt;}
.ya0{bottom:528.669333pt;}
.y60{bottom:530.850667pt;}
.y255{bottom:532.456000pt;}
.y1ab{bottom:533.596000pt;}
.y28b{bottom:537.824000pt;}
.y202{bottom:538.202667pt;}
.yc0{bottom:539.205333pt;}
.y1d5{bottom:539.238667pt;}
.y132{bottom:539.617333pt;}
.y114{bottom:539.712000pt;}
.ye4{bottom:539.769333pt;}
.y177{bottom:540.414667pt;}
.y225{bottom:540.637333pt;}
.y1ad{bottom:540.901333pt;}
.y81{bottom:540.945333pt;}
.y2c{bottom:542.897333pt;}
.y9f{bottom:545.406667pt;}
.y5f{bottom:547.588000pt;}
.y254{bottom:548.077333pt;}
.y28a{bottom:553.166667pt;}
.y201{bottom:554.938667pt;}
.y176{bottom:555.026667pt;}
.y1ac{bottom:555.513333pt;}
.ybf{bottom:555.942667pt;}
.y1d4{bottom:555.976000pt;}
.ye3{bottom:556.506667pt;}
.y224{bottom:557.374667pt;}
.y80{bottom:557.682667pt;}
.y2b{bottom:560.193333pt;}
.y131{bottom:560.340000pt;}
.y9e{bottom:562.144000pt;}
.y253{bottom:563.698667pt;}
.y5e{bottom:564.325333pt;}
.y289{bottom:568.509333pt;}
.y175{bottom:569.638667pt;}
.y200{bottom:571.676000pt;}
.y113{bottom:572.693333pt;}
.ye2{bottom:573.244000pt;}
.y223{bottom:574.112000pt;}
.y7f{bottom:574.420000pt;}
.ybe{bottom:576.665333pt;}
.y1aa{bottom:576.793333pt;}
.y130{bottom:577.077333pt;}
.y2a{bottom:577.488000pt;}
.y252{bottom:579.320000pt;}
.y5d{bottom:581.062667pt;}
.y9d{bottom:582.865333pt;}
.y288{bottom:583.852000pt;}
.y174{bottom:584.249333pt;}
.y1ff{bottom:588.413333pt;}
.y112{bottom:589.430667pt;}
.ye1{bottom:589.981333pt;}
.y222{bottom:590.848000pt;}
.y7e{bottom:591.157333pt;}
.y1a9{bottom:591.405333pt;}
.y1d3{bottom:592.948000pt;}
.ybd{bottom:593.402667pt;}
.y12f{bottom:593.814667pt;}
.y29{bottom:594.782667pt;}
.y251{bottom:594.941333pt;}
.y5c{bottom:597.800000pt;}
.y1a6{bottom:598.710667pt;}
.y287{bottom:599.194667pt;}
.y1fe{bottom:605.150667pt;}
.y173{bottom:605.529333pt;}
.y1a8{bottom:606.017333pt;}
.ye0{bottom:606.718667pt;}
.y1d2{bottom:607.560000pt;}
.y221{bottom:607.585333pt;}
.y7d{bottom:607.894667pt;}
.ybc{bottom:610.140000pt;}
.y111{bottom:610.153333pt;}
.y12e{bottom:610.552000pt;}
.y250{bottom:610.562667pt;}
.y28{bottom:612.078667pt;}
.y9c{bottom:612.702667pt;}
.y5b{bottom:614.537333pt;}
.y1a7{bottom:620.628000pt;}
.y1fd{bottom:621.888000pt;}
.y1d1{bottom:622.172000pt;}
.ydf{bottom:623.456000pt;}
.y24f{bottom:626.184000pt;}
.y172{bottom:626.809333pt;}
.ybb{bottom:626.877333pt;}
.y110{bottom:626.890667pt;}
.y12d{bottom:627.289333pt;}
.y220{bottom:628.308000pt;}
.y27{bottom:629.373333pt;}
.y286{bottom:629.878667pt;}
.y5a{bottom:631.274667pt;}
.y1d0{bottom:636.784000pt;}
.y1fc{bottom:638.625333pt;}
.yde{bottom:640.193333pt;}
.y171{bottom:641.421333pt;}
.y24e{bottom:641.805333pt;}
.y1a5{bottom:641.908000pt;}
.yba{bottom:643.614667pt;}
.y10f{bottom:643.628000pt;}
.y285{bottom:645.221333pt;}
.y26{bottom:646.669333pt;}
.y59{bottom:648.012000pt;}
.y1cf{bottom:651.396000pt;}
.y170{bottom:656.033333pt;}
.y1a4{bottom:656.520000pt;}
.y24d{bottom:657.426667pt;}
.y21f{bottom:658.196000pt;}
.y10e{bottom:660.365333pt;}
.y284{bottom:660.564000pt;}
.y1a1{bottom:663.826667pt;}
.y25{bottom:663.964000pt;}
.y58{bottom:664.749333pt;}
.y1ce{bottom:666.006667pt;}
.ydd{bottom:670.029333pt;}
.y16f{bottom:670.645333pt;}
.y1a3{bottom:671.132000pt;}
.yb9{bottom:673.450667pt;}
.y21e{bottom:674.933333pt;}
.y1fb{bottom:675.634667pt;}
.y283{bottom:675.906667pt;}
.y10d{bottom:677.102667pt;}
.y1cd{bottom:680.618667pt;}
.y24{bottom:681.258667pt;}
.y57{bottom:681.485333pt;}
.y16e{bottom:685.257333pt;}
.y24c{bottom:685.312000pt;}
.y1a2{bottom:685.744000pt;}
.ydc{bottom:687.125333pt;}
.y1fa{bottom:690.246667pt;}
.y282{bottom:691.249333pt;}
.y21d{bottom:691.670667pt;}
.y10c{bottom:693.840000pt;}
.y56{bottom:698.222667pt;}
.y23{bottom:698.554667pt;}
.y16d{bottom:699.868000pt;}
.y1cc{bottom:701.898667pt;}
.ydb{bottom:704.221333pt;}
.y1f9{bottom:704.858667pt;}
.y24b{bottom:704.918667pt;}
.y281{bottom:706.592000pt;}
.y1a0{bottom:707.024000pt;}
.y21c{bottom:708.408000pt;}
.y10b{bottom:710.577333pt;}
.y16c{bottom:714.480000pt;}
.y55{bottom:714.960000pt;}
.y22{bottom:715.849333pt;}
.y1f8{bottom:719.469333pt;}
.y19f{bottom:721.636000pt;}
.y280{bottom:721.934667pt;}
.y1cb{bottom:723.178667pt;}
.y10a{bottom:727.314667pt;}
.y19c{bottom:728.941333pt;}
.y54{bottom:731.697333pt;}
.y21{bottom:733.144000pt;}
.y1f7{bottom:734.081333pt;}
.y16b{bottom:735.760000pt;}
.y19e{bottom:736.246667pt;}
.y27f{bottom:737.277333pt;}
.y24a{bottom:737.596000pt;}
.y21b{bottom:738.244000pt;}
.y109{bottom:744.052000pt;}
.y53{bottom:748.434667pt;}
.y1f6{bottom:748.693333pt;}
.y20{bottom:750.440000pt;}
.y19d{bottom:750.858667pt;}
.y1ca{bottom:751.284000pt;}
.y27e{bottom:752.620000pt;}
.y21a{bottom:755.561333pt;}
.y16a{bottom:757.040000pt;}
.y108{bottom:760.789333pt;}
.y249{bottom:761.188000pt;}
.y1f5{bottom:763.305333pt;}
.y52{bottom:765.172000pt;}
.y1f{bottom:767.734667pt;}
.y27d{bottom:767.961333pt;}
.y1c9{bottom:768.380000pt;}
.y19b{bottom:772.138667pt;}
.y248{bottom:776.809333pt;}
.y107{bottom:781.510667pt;}
.y51{bottom:781.909333pt;}
.y27c{bottom:783.304000pt;}
.y1f4{bottom:784.585333pt;}
.y169{bottom:785.145333pt;}
.y1c8{bottom:785.476000pt;}
.y19a{bottom:786.750667pt;}
.y247{bottom:792.430667pt;}
.y197{bottom:794.056000pt;}
.y106{bottom:798.248000pt;}
.y50{bottom:798.646667pt;}
.y199{bottom:801.362667pt;}
.y1e{bottom:802.033333pt;}
.y168{bottom:802.241333pt;}
.y1f3{bottom:805.865333pt;}
.y27b{bottom:813.989333pt;}
.y105{bottom:814.985333pt;}
.y4f{bottom:815.384000pt;}
.y198{bottom:815.974667pt;}
.y246{bottom:816.021333pt;}
.y1d{bottom:816.378667pt;}
.y167{bottom:819.337333pt;}
.y27a{bottom:829.332000pt;}
.y245{bottom:831.644000pt;}
.y104{bottom:831.722667pt;}
.y4e{bottom:832.121333pt;}
.y1f2{bottom:833.970667pt;}
.y1c{bottom:834.582667pt;}
.y196{bottom:837.253333pt;}
.y279{bottom:844.674667pt;}
.y103{bottom:848.460000pt;}
.y4d{bottom:848.858667pt;}
.y1b{bottom:848.929333pt;}
.y1f1{bottom:851.066667pt;}
.y244{bottom:855.234667pt;}
.y195{bottom:858.533333pt;}
.y278{bottom:860.017333pt;}
.y102{bottom:865.197333pt;}
.y4c{bottom:865.596000pt;}
.y1f0{bottom:868.162667pt;}
.y243{bottom:870.856000pt;}
.y277{bottom:875.360000pt;}
.y101{bottom:881.934667pt;}
.y4b{bottom:882.333333pt;}
.y242{bottom:886.477333pt;}
.y194{bottom:886.640000pt;}
.y1a{bottom:888.641333pt;}
.y276{bottom:890.702667pt;}
.y4a{bottom:899.070667pt;}
.y241{bottom:902.100000pt;}
.y100{bottom:902.657333pt;}
.y193{bottom:903.736000pt;}
.y275{bottom:906.044000pt;}
.y49{bottom:915.808000pt;}
.y240{bottom:917.721333pt;}
.y192{bottom:920.832000pt;}
.y19{bottom:921.320000pt;}
.y274{bottom:921.386667pt;}
.y48{bottom:932.545333pt;}
.y273{bottom:936.729333pt;}
.y18{bottom:946.425333pt;}
.y47{bottom:949.282667pt;}
.y272{bottom:952.072000pt;}
.y46{bottom:966.020000pt;}
.y271{bottom:967.414667pt;}
.y17{bottom:971.530667pt;}
.y45{bottom:982.757333pt;}
.y15{bottom:1010.186667pt;}
.y44{bottom:1038.548000pt;}
.h9{height:23.209028pt;}
.h2{height:27.076941pt;}
.h3{height:27.300102pt;}
.ha{height:30.945242pt;}
.h10{height:31.200285pt;}
.hb{height:34.574438pt;}
.hc{height:34.813542pt;}
.hd{height:35.100467pt;}
.h11{height:37.842876pt;}
.he{height:38.415786pt;}
.hf{height:38.681455pt;}
.h6{height:39.000258pt;}
.h4{height:45.271688pt;}
.h8{height:48.486756pt;}
.h12{height:59.852467pt;}
.h7{height:69.148877pt;}
.h5{height:83.992000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:154.742661pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:46.689333pt;}
.x1{left:47.621333pt;}
.x2{left:52.049422pt;}
.x4d{left:60.341333pt;}
.x43{left:65.072000pt;}
.x45{left:69.053333pt;}
.x46{left:70.052000pt;}
.x5c{left:76.309333pt;}
.x4e{left:117.650667pt;}
.x4c{left:192.326667pt;}
.x60{left:211.989333pt;}
.x5{left:220.912000pt;}
.x4{left:221.858667pt;}
.x29{left:223.010667pt;}
.x2e{left:223.913333pt;}
.x4a{left:225.896000pt;}
.x3e{left:229.828000pt;}
.x53{left:236.045333pt;}
.x51{left:239.369333pt;}
.x54{left:244.968000pt;}
.x8{left:250.204000pt;}
.x55{left:251.609333pt;}
.x42{left:267.032000pt;}
.x4b{left:268.989333pt;}
.x34{left:275.825333pt;}
.x6{left:277.210667pt;}
.x35{left:279.885333pt;}
.x7{left:284.346667pt;}
.x36{left:285.864000pt;}
.xf{left:288.010667pt;}
.x57{left:289.229333pt;}
.x10{left:294.652000pt;}
.x23{left:300.529333pt;}
.x27{left:307.717333pt;}
.x2b{left:308.664000pt;}
.x2d{left:310.857333pt;}
.x24{left:313.813333pt;}
.x56{left:316.426667pt;}
.x28{left:321.001333pt;}
.x2c{left:321.948000pt;}
.x52{left:323.098667pt;}
.x39{left:325.469333pt;}
.x3a{left:327.176000pt;}
.xb{left:333.136000pt;}
.x25{left:335.233333pt;}
.x1f{left:336.176000pt;}
.xc{left:339.777333pt;}
.x33{left:341.540000pt;}
.x2a{left:344.066667pt;}
.x58{left:347.301333pt;}
.x26{left:348.516000pt;}
.x20{left:349.460000pt;}
.x3c{left:353.604000pt;}
.x1b{left:357.137333pt;}
.x1d{left:362.566667pt;}
.x44{left:366.752000pt;}
.x1c{left:370.022667pt;}
.x1e{left:375.849333pt;}
.x59{left:380.426667pt;}
.x3d{left:387.320000pt;}
.x21{left:393.916000pt;}
.x47{left:399.346667pt;}
.x22{left:407.200000pt;}
.x4f{left:414.170667pt;}
.x3f{left:416.866667pt;}
.x49{left:448.350667pt;}
.x48{left:454.214667pt;}
.x50{left:466.501333pt;}
.x2f{left:468.085333pt;}
.x3b{left:471.462667pt;}
.x30{left:481.368000pt;}
.x9{left:518.296000pt;}
.xa{left:524.938667pt;}
.x17{left:552.905333pt;}
.x18{left:559.546667pt;}
.x19{left:562.908000pt;}
.x1a{left:576.190667pt;}
.x37{left:605.589333pt;}
.x40{left:608.505333pt;}
.x38{left:612.893333pt;}
.x41{left:621.788000pt;}
.x5d{left:640.482667pt;}
.x11{left:663.602667pt;}
.x12{left:670.245333pt;}
.x13{left:673.632000pt;}
.x14{left:680.273333pt;}
.x15{left:687.604000pt;}
.x5a{left:691.856000pt;}
.x16{left:694.246667pt;}
.x5b{left:703.810667pt;}
.x5e{left:720.833333pt;}
.x31{left:727.905333pt;}
.xd{left:733.129333pt;}
.xe{left:739.772000pt;}
.x32{left:741.189333pt;}
.x5f{left:744.744000pt;}
}




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