
    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_44ab4bafa43acbe77a91b1dc.woff')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5e395121a285c6f0e4416b34.woff')format("woff");}.ff2{font-family:ff2;line-height:0.906000;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_9812651ee20720dd9adee2c6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.898000;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_67fe890d89d75b4e211c9af9.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895000;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_d2130c5e45ed6c2c1598425c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.580000;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_38cf47429d342cf6668dfaf4.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8ccda53201c0b2b30d939a58.woff')format("woff");}.ff7{font-family:ff7;line-height:0.773000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m15{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);}
.m1b{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);}
.m1d{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);}
.m19{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);}
.m26{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);}
.m11{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);}
.mc{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);}
.md{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);}
.m6{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);}
.m28{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);}
.m4{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);}
.m22{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);}
.mb{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);}
.m23{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);}
.m25{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);}
.m1{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);}
.m20{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);}
.m3{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);}
.m14{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);}
.m16{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);}
.ma{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m1c{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);}
.m24{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);}
.mf{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);}
.m13{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);}
.m1e{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);}
.m10{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);}
.me{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);}
.m18{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);}
.m12{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);}
.m1a{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);}
.m17{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m21{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);}
.m5{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);}
.m29{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);}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:21.696000px;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls13{letter-spacing:2.543454px;}
.ls21{letter-spacing:2.612196px;}
.ls0{letter-spacing:2.988780px;}
.lsf{letter-spacing:15.191982px;}
.ls5{letter-spacing:15.260724px;}
.ls27{letter-spacing:16.291854px;}
.ls16{letter-spacing:16.704306px;}
.lsd{letter-spacing:16.841790px;}
.ls1a{letter-spacing:16.910532px;}
.ls15{letter-spacing:17.048016px;}
.ls10{letter-spacing:17.185500px;}
.ls17{letter-spacing:17.322984px;}
.ls1b{letter-spacing:17.391726px;}
.ls1d{letter-spacing:17.460468px;}
.ls1f{letter-spacing:17.529210px;}
.ls20{letter-spacing:17.597952px;}
.lse{letter-spacing:17.933100px;}
.ls28{letter-spacing:17.941662px;}
.ls12{letter-spacing:18.560340px;}
.ls14{letter-spacing:19.110276px;}
.ls2a{letter-spacing:19.522728px;}
.lsa{letter-spacing:19.660212px;}
.ls9{letter-spacing:19.728954px;}
.ls22{letter-spacing:19.797696px;}
.ls23{letter-spacing:20.691342px;}
.ls7{letter-spacing:20.760084px;}
.ls8{letter-spacing:20.828826px;}
.ls19{letter-spacing:20.966310px;}
.ls18{letter-spacing:21.172536px;}
.lsc{letter-spacing:21.310020px;}
.lsb{letter-spacing:21.378762px;}
.ls6{letter-spacing:22.409892px;}
.ls11{letter-spacing:22.478634px;}
.ls26{letter-spacing:23.097312px;}
.ls29{letter-spacing:23.372280px;}
.ls24{letter-spacing:23.441022px;}
.ls1c{letter-spacing:24.059700px;}
.ls25{letter-spacing:26.121960px;}
.ls1e{letter-spacing:26.740638px;}
.ls2{letter-spacing:957.795000px;}
.ls4{letter-spacing:958.653000px;}
.ls3{letter-spacing:958.995000px;}
.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;}
}
.wsa1{word-spacing:-17.185500px;}
.wse1{word-spacing:-14.943900px;}
.wsfc{word-spacing:-6.942942px;}
.wsf6{word-spacing:-6.805458px;}
.ws69{word-spacing:-3.780810px;}
.wsf5{word-spacing:-3.643326px;}
.ws16{word-spacing:-3.574584px;}
.ws29{word-spacing:-3.505842px;}
.wsbb{word-spacing:-3.437100px;}
.ws66{word-spacing:-3.368358px;}
.ws63{word-spacing:-3.230874px;}
.wsb1{word-spacing:-3.162132px;}
.wsbe{word-spacing:-3.093390px;}
.ws11{word-spacing:-2.988780px;}
.wsb6{word-spacing:-2.955906px;}
.ws96{word-spacing:-2.818422px;}
.wsd7{word-spacing:-2.680938px;}
.wsd6{word-spacing:-2.612196px;}
.ws22{word-spacing:-2.543454px;}
.wsdc{word-spacing:-2.405970px;}
.ws78{word-spacing:-2.337228px;}
.wsa6{word-spacing:-2.331248px;}
.ws4e{word-spacing:-2.268486px;}
.wsdd{word-spacing:-2.199744px;}
.ws92{word-spacing:-2.131002px;}
.wsac{word-spacing:-2.062260px;}
.wse7{word-spacing:-1.993518px;}
.ws7d{word-spacing:-1.924776px;}
.wsd{word-spacing:-1.912819px;}
.ws15{word-spacing:-1.856034px;}
.wsff{word-spacing:-1.787292px;}
.ws39{word-spacing:-1.649808px;}
.ws77{word-spacing:-1.581066px;}
.wsb3{word-spacing:-1.512324px;}
.ws61{word-spacing:-1.443582px;}
.wsa0{word-spacing:-1.374840px;}
.wscd{word-spacing:-1.306098px;}
.ws60{word-spacing:-1.237356px;}
.wsa4{word-spacing:-1.195512px;}
.ws38{word-spacing:-1.168614px;}
.ws19{word-spacing:-1.099872px;}
.ws36{word-spacing:-1.031130px;}
.ws75{word-spacing:-0.962388px;}
.wsea{word-spacing:-0.893646px;}
.ws52{word-spacing:-0.824904px;}
.ws90{word-spacing:-0.756162px;}
.wsde{word-spacing:-0.687420px;}
.ws58{word-spacing:-0.618678px;}
.wsc2{word-spacing:-0.591782px;}
.wsd1{word-spacing:-0.549936px;}
.ws88{word-spacing:-0.481194px;}
.wsf{word-spacing:-0.478205px;}
.ws27{word-spacing:-0.412452px;}
.wsb{word-spacing:-0.358654px;}
.ws20{word-spacing:-0.343710px;}
.ws7{word-spacing:-0.298878px;}
.ws1b{word-spacing:-0.274968px;}
.ws25{word-spacing:-0.206226px;}
.ws1c{word-spacing:-0.137484px;}
.ws2{word-spacing:-0.103292px;}
.ws31{word-spacing:-0.068742px;}
.ws5{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.ws3{word-spacing:0.000000px;}
.ws2e{word-spacing:0.068742px;}
.ws12{word-spacing:0.107597px;}
.ws6{word-spacing:0.119551px;}
.ws17{word-spacing:0.137484px;}
.wsa{word-spacing:0.179327px;}
.ws21{word-spacing:0.206226px;}
.wscf{word-spacing:0.215194px;}
.wse{word-spacing:0.239102px;}
.ws24{word-spacing:0.274968px;}
.wsa3{word-spacing:0.298878px;}
.ws28{word-spacing:0.343710px;}
.ws35{word-spacing:0.412452px;}
.ws2c{word-spacing:0.481194px;}
.wsc{word-spacing:0.537980px;}
.ws55{word-spacing:0.549936px;}
.wsb7{word-spacing:0.618678px;}
.wsa5{word-spacing:0.657532px;}
.ws34{word-spacing:0.687420px;}
.ws9f{word-spacing:0.756162px;}
.ws9b{word-spacing:0.824904px;}
.ws95{word-spacing:0.893646px;}
.wsb4{word-spacing:0.962388px;}
.ws5c{word-spacing:1.031130px;}
.ws53{word-spacing:1.099872px;}
.ws33{word-spacing:1.168614px;}
.ws86{word-spacing:1.237356px;}
.ws99{word-spacing:1.306098px;}
.ws87{word-spacing:1.374840px;}
.ws3b{word-spacing:1.443582px;}
.ws30{word-spacing:1.512324px;}
.ws3c{word-spacing:1.581066px;}
.ws79{word-spacing:1.649808px;}
.ws3f{word-spacing:1.718550px;}
.ws1a{word-spacing:1.787292px;}
.ws54{word-spacing:1.856034px;}
.ws9c{word-spacing:1.924776px;}
.ws9e{word-spacing:1.993518px;}
.wsa7{word-spacing:2.062260px;}
.wsdb{word-spacing:2.131002px;}
.ws84{word-spacing:2.199744px;}
.wsc6{word-spacing:2.268486px;}
.ws59{word-spacing:2.337228px;}
.wsef{word-spacing:2.405970px;}
.ws3e{word-spacing:2.474712px;}
.ws7e{word-spacing:2.543454px;}
.ws1f{word-spacing:2.612196px;}
.ws10{word-spacing:2.630126px;}
.ws67{word-spacing:2.680938px;}
.ws2a{word-spacing:2.749680px;}
.ws8e{word-spacing:2.818422px;}
.wsa8{word-spacing:2.887164px;}
.wsf9{word-spacing:2.955906px;}
.ws6b{word-spacing:3.024648px;}
.ws4f{word-spacing:3.093390px;}
.ws8a{word-spacing:3.162132px;}
.wsb8{word-spacing:3.230874px;}
.ws37{word-spacing:3.368358px;}
.wsf1{word-spacing:3.437100px;}
.ws9a{word-spacing:3.505842px;}
.ws48{word-spacing:3.574584px;}
.wse0{word-spacing:3.604493px;}
.ws71{word-spacing:3.712068px;}
.ws43{word-spacing:3.780810px;}
.ws2d{word-spacing:3.849552px;}
.ws85{word-spacing:3.918294px;}
.wsc1{word-spacing:3.987036px;}
.ws82{word-spacing:4.055778px;}
.ws68{word-spacing:4.124520px;}
.ws93{word-spacing:4.193262px;}
.ws3a{word-spacing:4.262004px;}
.wsb9{word-spacing:4.330746px;}
.ws6a{word-spacing:4.399488px;}
.wsf4{word-spacing:4.468230px;}
.ws2b{word-spacing:4.536972px;}
.ws41{word-spacing:4.605714px;}
.ws3d{word-spacing:4.674456px;}
.ws8b{word-spacing:4.743198px;}
.ws47{word-spacing:4.811940px;}
.wsd4{word-spacing:4.880682px;}
.wsc7{word-spacing:4.949424px;}
.ws8d{word-spacing:5.018166px;}
.ws5b{word-spacing:5.086908px;}
.wsee{word-spacing:5.155650px;}
.wse9{word-spacing:5.224392px;}
.ws1e{word-spacing:5.293134px;}
.ws23{word-spacing:5.361876px;}
.ws2f{word-spacing:5.430618px;}
.ws5e{word-spacing:5.499360px;}
.wsba{word-spacing:5.568102px;}
.wseb{word-spacing:5.636844px;}
.ws5f{word-spacing:5.705586px;}
.ws45{word-spacing:5.774328px;}
.ws4d{word-spacing:5.843070px;}
.ws46{word-spacing:5.911812px;}
.ws9{word-spacing:6.037336px;}
.ws94{word-spacing:6.049296px;}
.ws89{word-spacing:6.118038px;}
.wsc9{word-spacing:6.186780px;}
.wsfa{word-spacing:6.255522px;}
.ws4c{word-spacing:6.324264px;}
.ws83{word-spacing:6.393006px;}
.ws9d{word-spacing:6.461748px;}
.ws4a{word-spacing:6.530490px;}
.ws4b{word-spacing:6.667974px;}
.wsae{word-spacing:6.736716px;}
.ws42{word-spacing:6.805458px;}
.ws7f{word-spacing:6.874200px;}
.ws81{word-spacing:6.942942px;}
.ws7a{word-spacing:7.011684px;}
.ws74{word-spacing:7.080426px;}
.ws18{word-spacing:7.149168px;}
.wsb2{word-spacing:7.217910px;}
.ws8f{word-spacing:7.355394px;}
.ws5d{word-spacing:7.424136px;}
.ws7b{word-spacing:7.492878px;}
.wsfb{word-spacing:7.544778px;}
.wsf3{word-spacing:7.558650px;}
.wsf8{word-spacing:7.559502px;}
.wsf7{word-spacing:7.559586px;}
.wsfe{word-spacing:7.561500px;}
.wsda{word-spacing:7.561620px;}
.wsca{word-spacing:7.630362px;}
.ws26{word-spacing:7.767846px;}
.ws76{word-spacing:7.836588px;}
.wsec{word-spacing:7.905330px;}
.wsd5{word-spacing:7.974072px;}
.ws98{word-spacing:8.042814px;}
.ws32{word-spacing:8.111556px;}
.wsbc{word-spacing:8.180298px;}
.ws5a{word-spacing:8.249040px;}
.ws49{word-spacing:8.317782px;}
.ws8{word-spacing:8.368584px;}
.ws40{word-spacing:8.386524px;}
.ws65{word-spacing:8.524008px;}
.wsb5{word-spacing:8.592750px;}
.ws97{word-spacing:8.730234px;}
.ws56{word-spacing:8.798976px;}
.ws91{word-spacing:8.867718px;}
.wse6{word-spacing:8.936460px;}
.wscb{word-spacing:9.073944px;}
.ws70{word-spacing:9.142686px;}
.ws7c{word-spacing:9.211428px;}
.wsaf{word-spacing:9.280170px;}
.ws1d{word-spacing:9.348912px;}
.wsd9{word-spacing:9.417654px;}
.wsc8{word-spacing:9.486396px;}
.ws44{word-spacing:9.555138px;}
.ws50{word-spacing:9.623880px;}
.ws51{word-spacing:9.692622px;}
.wse5{word-spacing:9.761364px;}
.wsa9{word-spacing:9.830106px;}
.ws62{word-spacing:9.898848px;}
.ws64{word-spacing:9.967590px;}
.wsad{word-spacing:10.105074px;}
.wse4{word-spacing:10.517526px;}
.wsb0{word-spacing:10.586268px;}
.ws73{word-spacing:10.723752px;}
.ws80{word-spacing:10.792494px;}
.wse3{word-spacing:10.861236px;}
.wsaa{word-spacing:10.998720px;}
.wsab{word-spacing:11.067462px;}
.ws14{word-spacing:11.136204px;}
.ws8c{word-spacing:11.411172px;}
.ws6f{word-spacing:11.479914px;}
.wsdf{word-spacing:11.961108px;}
.wsf0{word-spacing:12.029850px;}
.wscc{word-spacing:12.648528px;}
.ws57{word-spacing:13.198464px;}
.wsa2{word-spacing:14.884124px;}
.ws72{word-spacing:15.741918px;}
.wsd3{word-spacing:16.704306px;}
.ws0{word-spacing:16.880672px;}
.wsbd{word-spacing:17.804178px;}
.ws4{word-spacing:18.709763px;}
.wsd2{word-spacing:19.041534px;}
.wsbf{word-spacing:19.349392px;}
.wsd0{word-spacing:21.241278px;}
.wsc0{word-spacing:21.928698px;}
.ws6e{word-spacing:23.097312px;}
.wsf2{word-spacing:25.846992px;}
.ws6d{word-spacing:28.184220px;}
.ws6c{word-spacing:28.252962px;}
.wsc5{word-spacing:33.683580px;}
.wsed{word-spacing:35.677098px;}
.wsd8{word-spacing:40.420296px;}
.wse2{word-spacing:50.181660px;}
.wse8{word-spacing:50.319144px;}
.ws13{word-spacing:77.630692px;}
.wsc4{word-spacing:250.997744px;}
.wsfd{word-spacing:940.539258px;}
.wsce{word-spacing:943.119258px;}
.wsc3{word-spacing:1593.258842px;}
._50{margin-left:-9.725504px;}
._3{margin-left:-8.625632px;}
._25{margin-left:-6.635092px;}
._14{margin-left:-5.499360px;}
._7{margin-left:-3.885414px;}
._1{margin-left:-2.582310px;}
._2{margin-left:-1.549386px;}
._0{width:1.386797px;}
._4c{width:2.677951px;}
._4d{width:3.685163px;}
._4e{width:4.783240px;}
._4b{width:6.324264px;}
._51{width:7.424136px;}
._4f{width:8.864731px;}
._29{width:13.029300px;}
._c{width:14.568599px;}
._a{width:16.236349px;}
._4{width:17.875304px;}
._8{width:19.439029px;}
._f{width:20.828826px;}
._6{width:22.009380px;}
._10{width:23.922216px;}
._1e{width:25.029264px;}
._d{width:26.259444px;}
._e{width:28.085592px;}
._12{width:29.146608px;}
._1d{width:30.246480px;}
._b{width:32.153636px;}
._11{width:34.134888px;}
._1c{width:35.883324px;}
._19{width:37.326906px;}
._21{width:38.462640px;}
._1a{width:39.668316px;}
._17{width:40.873992px;}
._16{width:41.902734px;}
._1b{width:43.032492px;}
._5{width:44.293720px;}
._13{width:46.607076px;}
._1f{width:48.325626px;}
._15{width:49.631724px;}
._35{width:51.419016px;}
._27{width:53.178810px;}
._26{width:54.411984px;}
._9{width:58.933962px;}
._18{width:67.367160px;}
._28{width:68.398290px;}
._20{width:69.979356px;}
._22{width:71.730720px;}
._48{width:76.692095px;}
._2a{width:77.708400px;}
._45{width:81.713245px;}
._43{width:87.451703px;}
._37{width:91.588178px;}
._4a{width:96.657145px;}
._3d{width:98.809067px;}
._39{width:106.579895px;}
._3c{width:111.541270px;}
._3f{width:121.523795px;}
._24{width:131.506320px;}
._42{width:153.085312px;}
._2f{width:202.101304px;}
._2d{width:266.001420px;}
._41{width:639.307222px;}
._47{width:690.826609px;}
._44{width:695.907535px;}
._23{width:791.608271px;}
._40{width:794.642488px;}
._46{width:879.490362px;}
._49{width:895.139610px;}
._33{width:903.627745px;}
._34{width:911.936554px;}
._36{width:994.015632px;}
._32{width:1044.753157px;}
._30{width:1094.551012px;}
._2c{width:1104.653088px;}
._3b{width:1115.472472px;}
._38{width:1120.553398px;}
._31{width:1254.092088px;}
._2e{width:1288.235915px;}
._3a{width:1304.136224px;}
._3e{width:1319.785472px;}
._2b{width:1502.220604px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs6{font-size:44.233800px;}
.fs0{font-size:47.820600px;}
.fs4{font-size:53.798400px;}
.fs3{font-size:59.775600px;}
.fs5{font-size:68.742000px;}
.fs2{font-size:77.708400px;}
.fs1{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y53{bottom:41.308500px;}
.y73{bottom:41.592000px;}
.y54{bottom:43.522500px;}
.y112{bottom:87.568500px;}
.y52{bottom:90.733500px;}
.y25{bottom:94.839000px;}
.yec{bottom:97.648500px;}
.y68{bottom:99.780000px;}
.y72{bottom:100.794000px;}
.y9c{bottom:103.539000px;}
.y1bc{bottom:104.295000px;}
.y9e{bottom:104.553000px;}
.y17e{bottom:106.497000px;}
.y1a4{bottom:107.511000px;}
.y133{bottom:108.700500px;}
.y149{bottom:109.714500px;}
.y111{bottom:110.365500px;}
.y51{bottom:113.530500px;}
.yc4{bottom:116.860500px;}
.y24{bottom:117.636000px;}
.yc8{bottom:117.874500px;}
.yeb{bottom:120.445500px;}
.y67{bottom:122.577000px;}
.y71{bottom:123.591000px;}
.y9b{bottom:126.336000px;}
.y1bb{bottom:127.092000px;}
.y9d{bottom:127.350000px;}
.y17d{bottom:129.294000px;}
.y1a3{bottom:130.308000px;}
.y132{bottom:131.497500px;}
.y148{bottom:132.511500px;}
.y110{bottom:133.162500px;}
.y50{bottom:136.327500px;}
.yc3{bottom:139.657500px;}
.y23{bottom:140.433000px;}
.yc7{bottom:140.671500px;}
.yea{bottom:143.242500px;}
.y66{bottom:145.374000px;}
.y70{bottom:146.388000px;}
.y1ba{bottom:149.889000px;}
.y154{bottom:150.858000px;}
.y17c{bottom:152.091000px;}
.y1a2{bottom:153.105000px;}
.y131{bottom:154.294500px;}
.y147{bottom:155.308500px;}
.y10f{bottom:155.959500px;}
.y4f{bottom:159.124500px;}
.yc2{bottom:162.454500px;}
.y22{bottom:163.230000px;}
.yc6{bottom:163.468500px;}
.ye9{bottom:166.039500px;}
.y65{bottom:168.171000px;}
.y6f{bottom:169.185000px;}
.y9a{bottom:170.203500px;}
.y1b9{bottom:172.686000px;}
.y17b{bottom:174.888000px;}
.y1a1{bottom:175.902000px;}
.y130{bottom:177.093000px;}
.y146{bottom:178.107000px;}
.y10e{bottom:178.756500px;}
.y4e{bottom:181.921500px;}
.y153{bottom:183.190500px;}
.yc1{bottom:185.251500px;}
.y21{bottom:186.027000px;}
.yc5{bottom:186.265500px;}
.ye8{bottom:188.836500px;}
.y99{bottom:189.622500px;}
.y64{bottom:190.968000px;}
.y6e{bottom:191.982000px;}
.y1b8{bottom:195.483000px;}
.y17a{bottom:197.685000px;}
.y1a0{bottom:198.699000px;}
.y12f{bottom:199.890000px;}
.y145{bottom:200.904000px;}
.y10d{bottom:201.553500px;}
.y4d{bottom:204.718500px;}
.y152{bottom:205.599000px;}
.y20{bottom:208.824000px;}
.ye7{bottom:211.633500px;}
.y98{bottom:212.031000px;}
.y63{bottom:213.765000px;}
.y6d{bottom:214.779000px;}
.y1b7{bottom:218.280000px;}
.y179{bottom:220.482000px;}
.y19f{bottom:221.496000px;}
.y12e{bottom:222.687000px;}
.y144{bottom:223.701000px;}
.y10c{bottom:224.350500px;}
.yc0{bottom:226.995000px;}
.y4c{bottom:227.515500px;}
.y151{bottom:228.007500px;}
.y97{bottom:231.451500px;}
.y1f{bottom:231.621000px;}
.ye6{bottom:234.430500px;}
.y62{bottom:236.562000px;}
.y6c{bottom:237.576000px;}
.y1b5{bottom:241.078500px;}
.y1b6{bottom:241.164000px;}
.y178{bottom:243.280500px;}
.y19e{bottom:244.294500px;}
.y12d{bottom:245.484000px;}
.y143{bottom:246.498000px;}
.y10b{bottom:247.147500px;}
.ybf{bottom:249.792000px;}
.y4b{bottom:250.312500px;}
.y96{bottom:253.860000px;}
.y1e{bottom:254.418000px;}
.ye5{bottom:257.227500px;}
.y150{bottom:257.919000px;}
.y61{bottom:259.359000px;}
.y6b{bottom:260.373000px;}
.y1b4{bottom:263.875500px;}
.y177{bottom:266.077500px;}
.y19d{bottom:267.091500px;}
.y12c{bottom:268.281000px;}
.y142{bottom:269.295000px;}
.y10a{bottom:269.946000px;}
.ybe{bottom:272.589000px;}
.y4a{bottom:273.109500px;}
.y95{bottom:273.279000px;}
.y1d{bottom:277.215000px;}
.ye4{bottom:280.024500px;}
.y14f{bottom:280.327500px;}
.y60{bottom:282.156000px;}
.y6a{bottom:283.170000px;}
.y1b3{bottom:286.672500px;}
.y176{bottom:288.874500px;}
.y19c{bottom:289.888500px;}
.y12b{bottom:291.078000px;}
.y141{bottom:292.092000px;}
.y109{bottom:292.743000px;}
.ybd{bottom:295.387500px;}
.y94{bottom:295.687500px;}
.y49{bottom:295.908000px;}
.y14e{bottom:302.736000px;}
.ye3{bottom:302.821500px;}
.y5f{bottom:304.953000px;}
.y69{bottom:305.967000px;}
.y1b2{bottom:309.469500px;}
.y175{bottom:311.671500px;}
.y19b{bottom:312.685500px;}
.y12a{bottom:313.875000px;}
.y140{bottom:314.889000px;}
.y93{bottom:315.108000px;}
.y108{bottom:315.540000px;}
.ybc{bottom:318.184500px;}
.y48{bottom:318.705000px;}
.y14d{bottom:325.144500px;}
.ye2{bottom:325.618500px;}
.y1c{bottom:328.405500px;}
.y1b1{bottom:332.266500px;}
.y174{bottom:334.468500px;}
.y19a{bottom:335.482500px;}
.y129{bottom:336.672000px;}
.y92{bottom:337.516500px;}
.y13f{bottom:337.686000px;}
.y107{bottom:338.337000px;}
.y47{bottom:341.502000px;}
.y5e{bottom:346.698000px;}
.ye1{bottom:348.417000px;}
.ybb{bottom:351.442500px;}
.y14c{bottom:355.056000px;}
.y1b0{bottom:355.063500px;}
.y91{bottom:356.935500px;}
.y173{bottom:357.265500px;}
.y199{bottom:358.279500px;}
.y128{bottom:359.469000px;}
.y13e{bottom:360.483000px;}
.y106{bottom:361.134000px;}
.y46{bottom:364.299000px;}
.y5d{bottom:369.495000px;}
.y1b{bottom:369.579000px;}
.ye0{bottom:371.214000px;}
.y1af{bottom:377.860500px;}
.y172{bottom:380.062500px;}
.y198{bottom:381.076500px;}
.y127{bottom:382.266000px;}
.y13d{bottom:383.280000px;}
.y105{bottom:383.931000px;}
.y90{bottom:386.847000px;}
.y45{bottom:387.096000px;}
.y1a{bottom:388.155000px;}
.y5c{bottom:392.292000px;}
.ydf{bottom:394.011000px;}
.yac{bottom:395.811000px;}
.yba{bottom:396.825000px;}
.y14b{bottom:398.799000px;}
.y1ae{bottom:400.657500px;}
.y171{bottom:402.859500px;}
.y197{bottom:403.873500px;}
.y126{bottom:405.063000px;}
.y13c{bottom:406.077000px;}
.y104{bottom:406.728000px;}
.y44{bottom:409.893000px;}
.y19{bottom:409.977000px;}
.yde{bottom:416.808000px;}
.yab{bottom:418.608000px;}
.yb9{bottom:419.622000px;}
.y14a{bottom:421.596000px;}
.y1ad{bottom:423.454500px;}
.y5b{bottom:425.550000px;}
.y170{bottom:425.656500px;}
.y196{bottom:426.670500px;}
.y125{bottom:427.860000px;}
.y13b{bottom:428.874000px;}
.y103{bottom:429.525000px;}
.y8f{bottom:430.590000px;}
.y43{bottom:432.690000px;}
.ydd{bottom:439.605000px;}
.yaa{bottom:441.405000px;}
.yb8{bottom:442.419000px;}
.y18{bottom:443.626500px;}
.y1ac{bottom:446.251500px;}
.y16f{bottom:448.453500px;}
.y195{bottom:449.467500px;}
.y124{bottom:450.657000px;}
.y13a{bottom:451.671000px;}
.y102{bottom:452.322000px;}
.y8e{bottom:453.388500px;}
.y42{bottom:455.487000px;}
.y1bd{bottom:455.572500px;}
.ydc{bottom:462.402000px;}
.ya9{bottom:464.202000px;}
.yb7{bottom:465.216000px;}
.y1ab{bottom:469.048500px;}
.y16e{bottom:471.250500px;}
.y194{bottom:472.264500px;}
.y123{bottom:473.455500px;}
.y139{bottom:474.468000px;}
.y101{bottom:475.119000px;}
.y41{bottom:478.284000px;}
.y17{bottom:479.029500px;}
.ydb{bottom:485.199000px;}
.ya8{bottom:486.999000px;}
.y8d{bottom:487.278000px;}
.y5a{bottom:487.851000px;}
.yb6{bottom:488.013000px;}
.y1aa{bottom:491.845500px;}
.y16d{bottom:494.047500px;}
.y193{bottom:495.061500px;}
.y122{bottom:496.252500px;}
.y138{bottom:497.266500px;}
.y100{bottom:497.916000px;}
.y16{bottom:500.982000px;}
.y40{bottom:501.081000px;}
.yda{bottom:507.996000px;}
.ya7{bottom:509.796000px;}
.y8c{bottom:510.075000px;}
.y59{bottom:510.648000px;}
.yb5{bottom:510.810000px;}
.y1a9{bottom:514.642500px;}
.y16c{bottom:516.844500px;}
.y192{bottom:517.858500px;}
.y121{bottom:519.049500px;}
.y137{bottom:520.063500px;}
.yff{bottom:520.713000px;}
.y15{bottom:522.934500px;}
.y3f{bottom:523.878000px;}
.yd9{bottom:530.793000px;}
.ya6{bottom:532.593000px;}
.y8b{bottom:532.872000px;}
.y58{bottom:533.445000px;}
.yb4{bottom:533.607000px;}
.y1a8{bottom:537.439500px;}
.y16b{bottom:539.643000px;}
.y191{bottom:540.655500px;}
.y120{bottom:541.846500px;}
.y136{bottom:542.860500px;}
.yfe{bottom:543.510000px;}
.y14{bottom:544.887000px;}
.y3e{bottom:546.675000px;}
.yd8{bottom:553.590000px;}
.ya5{bottom:555.390000px;}
.y8a{bottom:555.670500px;}
.y57{bottom:556.242000px;}
.yb3{bottom:556.404000px;}
.y1a7{bottom:560.238000px;}
.y16a{bottom:562.440000px;}
.y190{bottom:563.454000px;}
.y11f{bottom:564.643500px;}
.y135{bottom:565.657500px;}
.yfd{bottom:566.308500px;}
.y13{bottom:566.841000px;}
.y3d{bottom:569.472000px;}
.yd7{bottom:576.387000px;}
.ya4{bottom:578.187000px;}
.y89{bottom:578.467500px;}
.y56{bottom:579.039000px;}
.yb2{bottom:579.201000px;}
.y1a6{bottom:583.035000px;}
.y169{bottom:585.237000px;}
.y18f{bottom:586.251000px;}
.y11e{bottom:587.440500px;}
.y134{bottom:588.454500px;}
.y12{bottom:588.793500px;}
.yfc{bottom:589.105500px;}
.y3c{bottom:592.269000px;}
.yd6{bottom:599.184000px;}
.y55{bottom:600.822000px;}
.ya3{bottom:600.984000px;}
.y88{bottom:601.264500px;}
.yb1{bottom:601.998000px;}
.y168{bottom:608.034000px;}
.y18e{bottom:609.048000px;}
.y11{bottom:610.746000px;}
.yfb{bottom:611.902500px;}
.y3b{bottom:615.067500px;}
.y1a5{bottom:616.293000px;}
.yd5{bottom:621.981000px;}
.ya2{bottom:623.781000px;}
.y87{bottom:624.061500px;}
.yb0{bottom:624.795000px;}
.y167{bottom:630.831000px;}
.y18d{bottom:631.845000px;}
.y10{bottom:632.698500px;}
.yfa{bottom:634.699500px;}
.y3a{bottom:637.864500px;}
.yd4{bottom:644.778000px;}
.ya1{bottom:646.578000px;}
.y86{bottom:646.858500px;}
.yaf{bottom:647.592000px;}
.y11d{bottom:650.967000px;}
.y166{bottom:653.628000px;}
.y18c{bottom:654.642000px;}
.yf{bottom:654.651000px;}
.yf9{bottom:657.496500px;}
.y39{bottom:660.661500px;}
.yd3{bottom:667.576500px;}
.ya0{bottom:669.376500px;}
.yae{bottom:670.390500px;}
.y11c{bottom:673.764000px;}
.y165{bottom:676.425000px;}
.ye{bottom:676.603500px;}
.y18b{bottom:677.439000px;}
.yf8{bottom:680.293500px;}
.y38{bottom:683.458500px;}
.y85{bottom:689.712000px;}
.yd2{bottom:690.373500px;}
.y9f{bottom:692.173500px;}
.yad{bottom:693.187500px;}
.y11b{bottom:696.561000px;}
.yd{bottom:698.557500px;}
.y164{bottom:699.222000px;}
.y18a{bottom:700.236000px;}
.y37{bottom:706.255500px;}
.y84{bottom:709.131000px;}
.yd1{bottom:713.170500px;}
.yc{bottom:720.510000px;}
.y163{bottom:722.019000px;}
.y189{bottom:723.033000px;}
.y83{bottom:728.551500px;}
.y36{bottom:729.052500px;}
.yd0{bottom:735.967500px;}
.yb{bottom:742.462500px;}
.yf7{bottom:742.806000px;}
.y162{bottom:744.816000px;}
.y188{bottom:745.830000px;}
.y82{bottom:750.960000px;}
.y35{bottom:751.849500px;}
.ya{bottom:764.415000px;}
.yf6{bottom:765.603000px;}
.y161{bottom:767.613000px;}
.y187{bottom:768.627000px;}
.y81{bottom:770.379000px;}
.y34{bottom:774.646500px;}
.y1be{bottom:774.732000px;}
.y11a{bottom:775.138500px;}
.y9{bottom:786.367500px;}
.yf5{bottom:788.400000px;}
.y80{bottom:789.799500px;}
.y160{bottom:790.410000px;}
.y186{bottom:791.424000px;}
.y33{bottom:797.443500px;}
.ycf{bottom:798.480000px;}
.y119{bottom:805.050000px;}
.y8{bottom:808.321500px;}
.y7f{bottom:812.208000px;}
.y15f{bottom:813.207000px;}
.y185{bottom:814.221000px;}
.y32{bottom:820.240500px;}
.yf4{bottom:820.732500px;}
.yce{bottom:821.277000px;}
.y118{bottom:827.458500px;}
.y7{bottom:830.274000px;}
.y7e{bottom:831.627000px;}
.y15e{bottom:836.004000px;}
.y184{bottom:837.018000px;}
.y31{bottom:843.037500px;}
.ycd{bottom:844.074000px;}
.y117{bottom:849.867000px;}
.yf3{bottom:850.644000px;}
.y7d{bottom:851.047500px;}
.y6{bottom:852.226500px;}
.y15d{bottom:858.802500px;}
.y183{bottom:859.815000px;}
.y30{bottom:865.834500px;}
.y116{bottom:872.275500px;}
.yf2{bottom:873.052500px;}
.y7c{bottom:873.456000px;}
.ycc{bottom:876.406500px;}
.y15c{bottom:881.599500px;}
.y182{bottom:882.613500px;}
.y2f{bottom:888.631500px;}
.y7b{bottom:892.875000px;}
.yf1{bottom:895.461000px;}
.y115{bottom:902.187000px;}
.y15b{bottom:904.396500px;}
.y181{bottom:905.410500px;}
.ycb{bottom:906.318000px;}
.y2e{bottom:911.430000px;}
.y7a{bottom:912.295500px;}
.yf0{bottom:917.869500px;}
.y5{bottom:917.967000px;}
.y15a{bottom:927.193500px;}
.y180{bottom:928.207500px;}
.yca{bottom:928.726500px;}
.y2d{bottom:934.227000px;}
.y79{bottom:934.704000px;}
.y114{bottom:945.930000px;}
.yef{bottom:947.781000px;}
.y159{bottom:949.990500px;}
.y17f{bottom:951.004500px;}
.yc9{bottom:951.135000px;}
.y78{bottom:954.123000px;}
.y2c{bottom:957.024000px;}
.y4{bottom:959.347500px;}
.y113{bottom:968.727000px;}
.y77{bottom:973.543500px;}
.y2b{bottom:979.821000px;}
.yee{bottom:991.524000px;}
.y158{bottom:991.734000px;}
.y3{bottom:996.498000px;}
.y2a{bottom:1002.618000px;}
.y76{bottom:1003.455000px;}
.yed{bottom:1014.321000px;}
.y157{bottom:1014.531000px;}
.y29{bottom:1025.415000px;}
.y156{bottom:1037.328000px;}
.y75{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y74{bottom:1069.995000px;}
.y155{bottom:1070.586000px;}
.y27{bottom:1071.009000px;}
.y2{bottom:1101.726000px;}
.y26{bottom:1110.262500px;}
.y1{bottom:1113.681000px;}
.h1{height:35.865450px;}
.h6{height:37.013299px;}
.h5{height:41.125613px;}
.h4{height:41.364715px;}
.ha{height:47.157012px;}
.h8{height:47.294496px;}
.hc{height:47.569464px;}
.hd{height:52.128854px;}
.h3{height:53.463379px;}
.h7{height:53.774213px;}
.h2{height:71.065171px;}
.hb{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x3{left:127.558500px;}
.x12{left:136.525500px;}
.x13{left:151.461000px;}
.xb{left:153.070500px;}
.x6{left:178.044000px;}
.x20{left:180.991500px;}
.x9{left:182.308500px;}
.x22{left:201.282000px;}
.x8{left:266.863500px;}
.x23{left:267.961500px;}
.x1f{left:279.375000px;}
.x10{left:315.294000px;}
.x24{left:340.987500px;}
.x1b{left:346.113000px;}
.x16{left:372.421500px;}
.x5{left:383.128500px;}
.x17{left:401.734500px;}
.xd{left:404.373000px;}
.x7{left:410.130000px;}
.x4{left:411.709500px;}
.x27{left:416.364000px;}
.x26{left:417.799500px;}
.xa{left:432.832500px;}
.x1c{left:443.523000px;}
.x15{left:447.636000px;}
.xe{left:452.577000px;}
.x18{left:463.120500px;}
.xc{left:464.346000px;}
.x11{left:489.858000px;}
.x21{left:493.957500px;}
.x25{left:507.444000px;}
.x14{left:523.366500px;}
.x2{left:573.774000px;}
.xf{left:578.070000px;}
.x1d{left:595.563000px;}
.x19{left:624.621000px;}
.x1{left:696.322500px;}
.x1e{left:701.566500px;}
.x1a{left:731.718000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:19.285333pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls13{letter-spacing:2.260848pt;}
.ls21{letter-spacing:2.321952pt;}
.ls0{letter-spacing:2.656693pt;}
.lsf{letter-spacing:13.503984pt;}
.ls5{letter-spacing:13.565088pt;}
.ls27{letter-spacing:14.481648pt;}
.ls16{letter-spacing:14.848272pt;}
.lsd{letter-spacing:14.970480pt;}
.ls1a{letter-spacing:15.031584pt;}
.ls15{letter-spacing:15.153792pt;}
.ls10{letter-spacing:15.276000pt;}
.ls17{letter-spacing:15.398208pt;}
.ls1b{letter-spacing:15.459312pt;}
.ls1d{letter-spacing:15.520416pt;}
.ls1f{letter-spacing:15.581520pt;}
.ls20{letter-spacing:15.642624pt;}
.lse{letter-spacing:15.940533pt;}
.ls28{letter-spacing:15.948144pt;}
.ls12{letter-spacing:16.498080pt;}
.ls14{letter-spacing:16.986912pt;}
.ls2a{letter-spacing:17.353536pt;}
.lsa{letter-spacing:17.475744pt;}
.ls9{letter-spacing:17.536848pt;}
.ls22{letter-spacing:17.597952pt;}
.ls23{letter-spacing:18.392304pt;}
.ls7{letter-spacing:18.453408pt;}
.ls8{letter-spacing:18.514512pt;}
.ls19{letter-spacing:18.636720pt;}
.ls18{letter-spacing:18.820032pt;}
.lsc{letter-spacing:18.942240pt;}
.lsb{letter-spacing:19.003344pt;}
.ls6{letter-spacing:19.919904pt;}
.ls11{letter-spacing:19.981008pt;}
.ls26{letter-spacing:20.530944pt;}
.ls29{letter-spacing:20.775360pt;}
.ls24{letter-spacing:20.836464pt;}
.ls1c{letter-spacing:21.386400pt;}
.ls25{letter-spacing:23.219520pt;}
.ls1e{letter-spacing:23.769456pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.wsa1{word-spacing:-15.276000pt;}
.wse1{word-spacing:-13.283467pt;}
.wsfc{word-spacing:-6.171504pt;}
.wsf6{word-spacing:-6.049296pt;}
.ws69{word-spacing:-3.360720pt;}
.wsf5{word-spacing:-3.238512pt;}
.ws16{word-spacing:-3.177408pt;}
.ws29{word-spacing:-3.116304pt;}
.wsbb{word-spacing:-3.055200pt;}
.ws66{word-spacing:-2.994096pt;}
.ws63{word-spacing:-2.871888pt;}
.wsb1{word-spacing:-2.810784pt;}
.wsbe{word-spacing:-2.749680pt;}
.ws11{word-spacing:-2.656693pt;}
.wsb6{word-spacing:-2.627472pt;}
.ws96{word-spacing:-2.505264pt;}
.wsd7{word-spacing:-2.383056pt;}
.wsd6{word-spacing:-2.321952pt;}
.ws22{word-spacing:-2.260848pt;}
.wsdc{word-spacing:-2.138640pt;}
.ws78{word-spacing:-2.077536pt;}
.wsa6{word-spacing:-2.072221pt;}
.ws4e{word-spacing:-2.016432pt;}
.wsdd{word-spacing:-1.955328pt;}
.ws92{word-spacing:-1.894224pt;}
.wsac{word-spacing:-1.833120pt;}
.wse7{word-spacing:-1.772016pt;}
.ws7d{word-spacing:-1.710912pt;}
.wsd{word-spacing:-1.700284pt;}
.ws15{word-spacing:-1.649808pt;}
.wsff{word-spacing:-1.588704pt;}
.ws39{word-spacing:-1.466496pt;}
.ws77{word-spacing:-1.405392pt;}
.wsb3{word-spacing:-1.344288pt;}
.ws61{word-spacing:-1.283184pt;}
.wsa0{word-spacing:-1.222080pt;}
.wscd{word-spacing:-1.160976pt;}
.ws60{word-spacing:-1.099872pt;}
.wsa4{word-spacing:-1.062677pt;}
.ws38{word-spacing:-1.038768pt;}
.ws19{word-spacing:-0.977664pt;}
.ws36{word-spacing:-0.916560pt;}
.ws75{word-spacing:-0.855456pt;}
.wsea{word-spacing:-0.794352pt;}
.ws52{word-spacing:-0.733248pt;}
.ws90{word-spacing:-0.672144pt;}
.wsde{word-spacing:-0.611040pt;}
.ws58{word-spacing:-0.549936pt;}
.wsc2{word-spacing:-0.526029pt;}
.wsd1{word-spacing:-0.488832pt;}
.ws88{word-spacing:-0.427728pt;}
.wsf{word-spacing:-0.425071pt;}
.ws27{word-spacing:-0.366624pt;}
.wsb{word-spacing:-0.318803pt;}
.ws20{word-spacing:-0.305520pt;}
.ws7{word-spacing:-0.265669pt;}
.ws1b{word-spacing:-0.244416pt;}
.ws25{word-spacing:-0.183312pt;}
.ws1c{word-spacing:-0.122208pt;}
.ws2{word-spacing:-0.091815pt;}
.ws31{word-spacing:-0.061104pt;}
.ws5{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.ws3{word-spacing:0.000000pt;}
.ws2e{word-spacing:0.061104pt;}
.ws12{word-spacing:0.095642pt;}
.ws6{word-spacing:0.106268pt;}
.ws17{word-spacing:0.122208pt;}
.wsa{word-spacing:0.159402pt;}
.ws21{word-spacing:0.183312pt;}
.wscf{word-spacing:0.191283pt;}
.wse{word-spacing:0.212535pt;}
.ws24{word-spacing:0.244416pt;}
.wsa3{word-spacing:0.265669pt;}
.ws28{word-spacing:0.305520pt;}
.ws35{word-spacing:0.366624pt;}
.ws2c{word-spacing:0.427728pt;}
.wsc{word-spacing:0.478205pt;}
.ws55{word-spacing:0.488832pt;}
.wsb7{word-spacing:0.549936pt;}
.wsa5{word-spacing:0.584473pt;}
.ws34{word-spacing:0.611040pt;}
.ws9f{word-spacing:0.672144pt;}
.ws9b{word-spacing:0.733248pt;}
.ws95{word-spacing:0.794352pt;}
.wsb4{word-spacing:0.855456pt;}
.ws5c{word-spacing:0.916560pt;}
.ws53{word-spacing:0.977664pt;}
.ws33{word-spacing:1.038768pt;}
.ws86{word-spacing:1.099872pt;}
.ws99{word-spacing:1.160976pt;}
.ws87{word-spacing:1.222080pt;}
.ws3b{word-spacing:1.283184pt;}
.ws30{word-spacing:1.344288pt;}
.ws3c{word-spacing:1.405392pt;}
.ws79{word-spacing:1.466496pt;}
.ws3f{word-spacing:1.527600pt;}
.ws1a{word-spacing:1.588704pt;}
.ws54{word-spacing:1.649808pt;}
.ws9c{word-spacing:1.710912pt;}
.ws9e{word-spacing:1.772016pt;}
.wsa7{word-spacing:1.833120pt;}
.wsdb{word-spacing:1.894224pt;}
.ws84{word-spacing:1.955328pt;}
.wsc6{word-spacing:2.016432pt;}
.ws59{word-spacing:2.077536pt;}
.wsef{word-spacing:2.138640pt;}
.ws3e{word-spacing:2.199744pt;}
.ws7e{word-spacing:2.260848pt;}
.ws1f{word-spacing:2.321952pt;}
.ws10{word-spacing:2.337890pt;}
.ws67{word-spacing:2.383056pt;}
.ws2a{word-spacing:2.444160pt;}
.ws8e{word-spacing:2.505264pt;}
.wsa8{word-spacing:2.566368pt;}
.wsf9{word-spacing:2.627472pt;}
.ws6b{word-spacing:2.688576pt;}
.ws4f{word-spacing:2.749680pt;}
.ws8a{word-spacing:2.810784pt;}
.wsb8{word-spacing:2.871888pt;}
.ws37{word-spacing:2.994096pt;}
.wsf1{word-spacing:3.055200pt;}
.ws9a{word-spacing:3.116304pt;}
.ws48{word-spacing:3.177408pt;}
.wse0{word-spacing:3.203994pt;}
.ws71{word-spacing:3.299616pt;}
.ws43{word-spacing:3.360720pt;}
.ws2d{word-spacing:3.421824pt;}
.ws85{word-spacing:3.482928pt;}
.wsc1{word-spacing:3.544032pt;}
.ws82{word-spacing:3.605136pt;}
.ws68{word-spacing:3.666240pt;}
.ws93{word-spacing:3.727344pt;}
.ws3a{word-spacing:3.788448pt;}
.wsb9{word-spacing:3.849552pt;}
.ws6a{word-spacing:3.910656pt;}
.wsf4{word-spacing:3.971760pt;}
.ws2b{word-spacing:4.032864pt;}
.ws41{word-spacing:4.093968pt;}
.ws3d{word-spacing:4.155072pt;}
.ws8b{word-spacing:4.216176pt;}
.ws47{word-spacing:4.277280pt;}
.wsd4{word-spacing:4.338384pt;}
.wsc7{word-spacing:4.399488pt;}
.ws8d{word-spacing:4.460592pt;}
.ws5b{word-spacing:4.521696pt;}
.wsee{word-spacing:4.582800pt;}
.wse9{word-spacing:4.643904pt;}
.ws1e{word-spacing:4.705008pt;}
.ws23{word-spacing:4.766112pt;}
.ws2f{word-spacing:4.827216pt;}
.ws5e{word-spacing:4.888320pt;}
.wsba{word-spacing:4.949424pt;}
.wseb{word-spacing:5.010528pt;}
.ws5f{word-spacing:5.071632pt;}
.ws45{word-spacing:5.132736pt;}
.ws4d{word-spacing:5.193840pt;}
.ws46{word-spacing:5.254944pt;}
.ws9{word-spacing:5.366521pt;}
.ws94{word-spacing:5.377152pt;}
.ws89{word-spacing:5.438256pt;}
.wsc9{word-spacing:5.499360pt;}
.wsfa{word-spacing:5.560464pt;}
.ws4c{word-spacing:5.621568pt;}
.ws83{word-spacing:5.682672pt;}
.ws9d{word-spacing:5.743776pt;}
.ws4a{word-spacing:5.804880pt;}
.ws4b{word-spacing:5.927088pt;}
.wsae{word-spacing:5.988192pt;}
.ws42{word-spacing:6.049296pt;}
.ws7f{word-spacing:6.110400pt;}
.ws81{word-spacing:6.171504pt;}
.ws7a{word-spacing:6.232608pt;}
.ws74{word-spacing:6.293712pt;}
.ws18{word-spacing:6.354816pt;}
.wsb2{word-spacing:6.415920pt;}
.ws8f{word-spacing:6.538128pt;}
.ws5d{word-spacing:6.599232pt;}
.ws7b{word-spacing:6.660336pt;}
.wsfb{word-spacing:6.706469pt;}
.wsf3{word-spacing:6.718800pt;}
.wsf8{word-spacing:6.719557pt;}
.wsf7{word-spacing:6.719632pt;}
.wsfe{word-spacing:6.721333pt;}
.wsda{word-spacing:6.721440pt;}
.wsca{word-spacing:6.782544pt;}
.ws26{word-spacing:6.904752pt;}
.ws76{word-spacing:6.965856pt;}
.wsec{word-spacing:7.026960pt;}
.wsd5{word-spacing:7.088064pt;}
.ws98{word-spacing:7.149168pt;}
.ws32{word-spacing:7.210272pt;}
.wsbc{word-spacing:7.271376pt;}
.ws5a{word-spacing:7.332480pt;}
.ws49{word-spacing:7.393584pt;}
.ws8{word-spacing:7.438741pt;}
.ws40{word-spacing:7.454688pt;}
.ws65{word-spacing:7.576896pt;}
.wsb5{word-spacing:7.638000pt;}
.ws97{word-spacing:7.760208pt;}
.ws56{word-spacing:7.821312pt;}
.ws91{word-spacing:7.882416pt;}
.wse6{word-spacing:7.943520pt;}
.wscb{word-spacing:8.065728pt;}
.ws70{word-spacing:8.126832pt;}
.ws7c{word-spacing:8.187936pt;}
.wsaf{word-spacing:8.249040pt;}
.ws1d{word-spacing:8.310144pt;}
.wsd9{word-spacing:8.371248pt;}
.wsc8{word-spacing:8.432352pt;}
.ws44{word-spacing:8.493456pt;}
.ws50{word-spacing:8.554560pt;}
.ws51{word-spacing:8.615664pt;}
.wse5{word-spacing:8.676768pt;}
.wsa9{word-spacing:8.737872pt;}
.ws62{word-spacing:8.798976pt;}
.ws64{word-spacing:8.860080pt;}
.wsad{word-spacing:8.982288pt;}
.wse4{word-spacing:9.348912pt;}
.wsb0{word-spacing:9.410016pt;}
.ws73{word-spacing:9.532224pt;}
.ws80{word-spacing:9.593328pt;}
.wse3{word-spacing:9.654432pt;}
.wsaa{word-spacing:9.776640pt;}
.wsab{word-spacing:9.837744pt;}
.ws14{word-spacing:9.898848pt;}
.ws8c{word-spacing:10.143264pt;}
.ws6f{word-spacing:10.204368pt;}
.wsdf{word-spacing:10.632096pt;}
.wsf0{word-spacing:10.693200pt;}
.wscc{word-spacing:11.243136pt;}
.ws57{word-spacing:11.731968pt;}
.wsa2{word-spacing:13.230333pt;}
.ws72{word-spacing:13.992816pt;}
.wsd3{word-spacing:14.848272pt;}
.ws0{word-spacing:15.005042pt;}
.wsbd{word-spacing:15.825936pt;}
.ws4{word-spacing:16.630900pt;}
.wsd2{word-spacing:16.925808pt;}
.wsbf{word-spacing:17.199459pt;}
.wsd0{word-spacing:18.881136pt;}
.wsc0{word-spacing:19.492176pt;}
.ws6e{word-spacing:20.530944pt;}
.wsf2{word-spacing:22.975104pt;}
.ws6d{word-spacing:25.052640pt;}
.ws6c{word-spacing:25.113744pt;}
.wsc5{word-spacing:29.940960pt;}
.wsed{word-spacing:31.712976pt;}
.wsd8{word-spacing:35.929152pt;}
.wse2{word-spacing:44.605920pt;}
.wse8{word-spacing:44.728128pt;}
.ws13{word-spacing:69.005059pt;}
.wsc4{word-spacing:223.109106pt;}
.wsfd{word-spacing:836.034896pt;}
.wsce{word-spacing:838.328229pt;}
.wsc3{word-spacing:1416.230082pt;}
._50{margin-left:-8.644893pt;}
._3{margin-left:-7.667229pt;}
._25{margin-left:-5.897859pt;}
._14{margin-left:-4.888320pt;}
._7{margin-left:-3.453701pt;}
._1{margin-left:-2.295387pt;}
._2{margin-left:-1.377232pt;}
._0{width:1.232709pt;}
._4c{width:2.380401pt;}
._4d{width:3.275700pt;}
._4e{width:4.251769pt;}
._4b{width:5.621568pt;}
._51{width:6.599232pt;}
._4f{width:7.879761pt;}
._29{width:11.581600pt;}
._c{width:12.949866pt;}
._a{width:14.432310pt;}
._4{width:15.889159pt;}
._8{width:17.279137pt;}
._f{width:18.514512pt;}
._6{width:19.563893pt;}
._10{width:21.264192pt;}
._1e{width:22.248235pt;}
._d{width:23.341728pt;}
._e{width:24.964971pt;}
._12{width:25.908096pt;}
._1d{width:26.885760pt;}
._b{width:28.581010pt;}
._11{width:30.342123pt;}
._1c{width:31.896288pt;}
._19{width:33.179472pt;}
._21{width:34.189013pt;}
._1a{width:35.260725pt;}
._17{width:36.332437pt;}
._16{width:37.246875pt;}
._1b{width:38.251104pt;}
._5{width:39.372195pt;}
._13{width:41.428512pt;}
._1f{width:42.956112pt;}
._15{width:44.117088pt;}
._35{width:45.705792pt;}
._27{width:47.270053pt;}
._26{width:48.366208pt;}
._9{width:52.385744pt;}
._18{width:59.881920pt;}
._28{width:60.798480pt;}
._20{width:62.203872pt;}
._22{width:63.760640pt;}
._48{width:68.170751pt;}
._2a{width:69.074133pt;}
._45{width:72.633996pt;}
._43{width:77.734847pt;}
._37{width:81.411714pt;}
._4a{width:85.917462pt;}
._3d{width:87.830282pt;}
._39{width:94.737684pt;}
._3c{width:99.147795pt;}
._3f{width:108.021151pt;}
._24{width:116.894507pt;}
._42{width:136.075833pt;}
._2f{width:179.645603pt;}
._2d{width:236.445707pt;}
._41{width:568.273086pt;}
._47{width:614.068097pt;}
._44{width:618.584476pt;}
._23{width:703.651796pt;}
._40{width:706.348878pt;}
._46{width:781.769211pt;}
._49{width:795.679653pt;}
._33{width:803.224662pt;}
._34{width:810.610270pt;}
._36{width:883.569451pt;}
._32{width:928.669473pt;}
._30{width:972.934233pt;}
._2c{width:981.913856pt;}
._3b{width:991.531086pt;}
._38{width:996.047465pt;}
._31{width:1114.748523pt;}
._2e{width:1145.098591pt;}
._3a{width:1159.232199pt;}
._3e{width:1173.142642pt;}
._2b{width:1335.307203pt;}
.fs6{font-size:39.318933pt;}
.fs0{font-size:42.507200pt;}
.fs4{font-size:47.820800pt;}
.fs3{font-size:53.133867pt;}
.fs5{font-size:61.104000pt;}
.fs2{font-size:69.074133pt;}
.fs1{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:36.718667pt;}
.y73{bottom:36.970667pt;}
.y54{bottom:38.686667pt;}
.y112{bottom:77.838667pt;}
.y52{bottom:80.652000pt;}
.y25{bottom:84.301333pt;}
.yec{bottom:86.798667pt;}
.y68{bottom:88.693333pt;}
.y72{bottom:89.594667pt;}
.y9c{bottom:92.034667pt;}
.y1bc{bottom:92.706667pt;}
.y9e{bottom:92.936000pt;}
.y17e{bottom:94.664000pt;}
.y1a4{bottom:95.565333pt;}
.y133{bottom:96.622667pt;}
.y149{bottom:97.524000pt;}
.y111{bottom:98.102667pt;}
.y51{bottom:100.916000pt;}
.yc4{bottom:103.876000pt;}
.y24{bottom:104.565333pt;}
.yc8{bottom:104.777333pt;}
.yeb{bottom:107.062667pt;}
.y67{bottom:108.957333pt;}
.y71{bottom:109.858667pt;}
.y9b{bottom:112.298667pt;}
.y1bb{bottom:112.970667pt;}
.y9d{bottom:113.200000pt;}
.y17d{bottom:114.928000pt;}
.y1a3{bottom:115.829333pt;}
.y132{bottom:116.886667pt;}
.y148{bottom:117.788000pt;}
.y110{bottom:118.366667pt;}
.y50{bottom:121.180000pt;}
.yc3{bottom:124.140000pt;}
.y23{bottom:124.829333pt;}
.yc7{bottom:125.041333pt;}
.yea{bottom:127.326667pt;}
.y66{bottom:129.221333pt;}
.y70{bottom:130.122667pt;}
.y1ba{bottom:133.234667pt;}
.y154{bottom:134.096000pt;}
.y17c{bottom:135.192000pt;}
.y1a2{bottom:136.093333pt;}
.y131{bottom:137.150667pt;}
.y147{bottom:138.052000pt;}
.y10f{bottom:138.630667pt;}
.y4f{bottom:141.444000pt;}
.yc2{bottom:144.404000pt;}
.y22{bottom:145.093333pt;}
.yc6{bottom:145.305333pt;}
.ye9{bottom:147.590667pt;}
.y65{bottom:149.485333pt;}
.y6f{bottom:150.386667pt;}
.y9a{bottom:151.292000pt;}
.y1b9{bottom:153.498667pt;}
.y17b{bottom:155.456000pt;}
.y1a1{bottom:156.357333pt;}
.y130{bottom:157.416000pt;}
.y146{bottom:158.317333pt;}
.y10e{bottom:158.894667pt;}
.y4e{bottom:161.708000pt;}
.y153{bottom:162.836000pt;}
.yc1{bottom:164.668000pt;}
.y21{bottom:165.357333pt;}
.yc5{bottom:165.569333pt;}
.ye8{bottom:167.854667pt;}
.y99{bottom:168.553333pt;}
.y64{bottom:169.749333pt;}
.y6e{bottom:170.650667pt;}
.y1b8{bottom:173.762667pt;}
.y17a{bottom:175.720000pt;}
.y1a0{bottom:176.621333pt;}
.y12f{bottom:177.680000pt;}
.y145{bottom:178.581333pt;}
.y10d{bottom:179.158667pt;}
.y4d{bottom:181.972000pt;}
.y152{bottom:182.754667pt;}
.y20{bottom:185.621333pt;}
.ye7{bottom:188.118667pt;}
.y98{bottom:188.472000pt;}
.y63{bottom:190.013333pt;}
.y6d{bottom:190.914667pt;}
.y1b7{bottom:194.026667pt;}
.y179{bottom:195.984000pt;}
.y19f{bottom:196.885333pt;}
.y12e{bottom:197.944000pt;}
.y144{bottom:198.845333pt;}
.y10c{bottom:199.422667pt;}
.yc0{bottom:201.773333pt;}
.y4c{bottom:202.236000pt;}
.y151{bottom:202.673333pt;}
.y97{bottom:205.734667pt;}
.y1f{bottom:205.885333pt;}
.ye6{bottom:208.382667pt;}
.y62{bottom:210.277333pt;}
.y6c{bottom:211.178667pt;}
.y1b5{bottom:214.292000pt;}
.y1b6{bottom:214.368000pt;}
.y178{bottom:216.249333pt;}
.y19e{bottom:217.150667pt;}
.y12d{bottom:218.208000pt;}
.y143{bottom:219.109333pt;}
.y10b{bottom:219.686667pt;}
.ybf{bottom:222.037333pt;}
.y4b{bottom:222.500000pt;}
.y96{bottom:225.653333pt;}
.y1e{bottom:226.149333pt;}
.ye5{bottom:228.646667pt;}
.y150{bottom:229.261333pt;}
.y61{bottom:230.541333pt;}
.y6b{bottom:231.442667pt;}
.y1b4{bottom:234.556000pt;}
.y177{bottom:236.513333pt;}
.y19d{bottom:237.414667pt;}
.y12c{bottom:238.472000pt;}
.y142{bottom:239.373333pt;}
.y10a{bottom:239.952000pt;}
.ybe{bottom:242.301333pt;}
.y4a{bottom:242.764000pt;}
.y95{bottom:242.914667pt;}
.y1d{bottom:246.413333pt;}
.ye4{bottom:248.910667pt;}
.y14f{bottom:249.180000pt;}
.y60{bottom:250.805333pt;}
.y6a{bottom:251.706667pt;}
.y1b3{bottom:254.820000pt;}
.y176{bottom:256.777333pt;}
.y19c{bottom:257.678667pt;}
.y12b{bottom:258.736000pt;}
.y141{bottom:259.637333pt;}
.y109{bottom:260.216000pt;}
.ybd{bottom:262.566667pt;}
.y94{bottom:262.833333pt;}
.y49{bottom:263.029333pt;}
.y14e{bottom:269.098667pt;}
.ye3{bottom:269.174667pt;}
.y5f{bottom:271.069333pt;}
.y69{bottom:271.970667pt;}
.y1b2{bottom:275.084000pt;}
.y175{bottom:277.041333pt;}
.y19b{bottom:277.942667pt;}
.y12a{bottom:279.000000pt;}
.y140{bottom:279.901333pt;}
.y93{bottom:280.096000pt;}
.y108{bottom:280.480000pt;}
.ybc{bottom:282.830667pt;}
.y48{bottom:283.293333pt;}
.y14d{bottom:289.017333pt;}
.ye2{bottom:289.438667pt;}
.y1c{bottom:291.916000pt;}
.y1b1{bottom:295.348000pt;}
.y174{bottom:297.305333pt;}
.y19a{bottom:298.206667pt;}
.y129{bottom:299.264000pt;}
.y92{bottom:300.014667pt;}
.y13f{bottom:300.165333pt;}
.y107{bottom:300.744000pt;}
.y47{bottom:303.557333pt;}
.y5e{bottom:308.176000pt;}
.ye1{bottom:309.704000pt;}
.ybb{bottom:312.393333pt;}
.y14c{bottom:315.605333pt;}
.y1b0{bottom:315.612000pt;}
.y91{bottom:317.276000pt;}
.y173{bottom:317.569333pt;}
.y199{bottom:318.470667pt;}
.y128{bottom:319.528000pt;}
.y13e{bottom:320.429333pt;}
.y106{bottom:321.008000pt;}
.y46{bottom:323.821333pt;}
.y5d{bottom:328.440000pt;}
.y1b{bottom:328.514667pt;}
.ye0{bottom:329.968000pt;}
.y1af{bottom:335.876000pt;}
.y172{bottom:337.833333pt;}
.y198{bottom:338.734667pt;}
.y127{bottom:339.792000pt;}
.y13d{bottom:340.693333pt;}
.y105{bottom:341.272000pt;}
.y90{bottom:343.864000pt;}
.y45{bottom:344.085333pt;}
.y1a{bottom:345.026667pt;}
.y5c{bottom:348.704000pt;}
.ydf{bottom:350.232000pt;}
.yac{bottom:351.832000pt;}
.yba{bottom:352.733333pt;}
.y14b{bottom:354.488000pt;}
.y1ae{bottom:356.140000pt;}
.y171{bottom:358.097333pt;}
.y197{bottom:358.998667pt;}
.y126{bottom:360.056000pt;}
.y13c{bottom:360.957333pt;}
.y104{bottom:361.536000pt;}
.y44{bottom:364.349333pt;}
.y19{bottom:364.424000pt;}
.yde{bottom:370.496000pt;}
.yab{bottom:372.096000pt;}
.yb9{bottom:372.997333pt;}
.y14a{bottom:374.752000pt;}
.y1ad{bottom:376.404000pt;}
.y5b{bottom:378.266667pt;}
.y170{bottom:378.361333pt;}
.y196{bottom:379.262667pt;}
.y125{bottom:380.320000pt;}
.y13b{bottom:381.221333pt;}
.y103{bottom:381.800000pt;}
.y8f{bottom:382.746667pt;}
.y43{bottom:384.613333pt;}
.ydd{bottom:390.760000pt;}
.yaa{bottom:392.360000pt;}
.yb8{bottom:393.261333pt;}
.y18{bottom:394.334667pt;}
.y1ac{bottom:396.668000pt;}
.y16f{bottom:398.625333pt;}
.y195{bottom:399.526667pt;}
.y124{bottom:400.584000pt;}
.y13a{bottom:401.485333pt;}
.y102{bottom:402.064000pt;}
.y8e{bottom:403.012000pt;}
.y42{bottom:404.877333pt;}
.y1bd{bottom:404.953333pt;}
.ydc{bottom:411.024000pt;}
.ya9{bottom:412.624000pt;}
.yb7{bottom:413.525333pt;}
.y1ab{bottom:416.932000pt;}
.y16e{bottom:418.889333pt;}
.y194{bottom:419.790667pt;}
.y123{bottom:420.849333pt;}
.y139{bottom:421.749333pt;}
.y101{bottom:422.328000pt;}
.y41{bottom:425.141333pt;}
.y17{bottom:425.804000pt;}
.ydb{bottom:431.288000pt;}
.ya8{bottom:432.888000pt;}
.y8d{bottom:433.136000pt;}
.y5a{bottom:433.645333pt;}
.yb6{bottom:433.789333pt;}
.y1aa{bottom:437.196000pt;}
.y16d{bottom:439.153333pt;}
.y193{bottom:440.054667pt;}
.y122{bottom:441.113333pt;}
.y138{bottom:442.014667pt;}
.y100{bottom:442.592000pt;}
.y16{bottom:445.317333pt;}
.y40{bottom:445.405333pt;}
.yda{bottom:451.552000pt;}
.ya7{bottom:453.152000pt;}
.y8c{bottom:453.400000pt;}
.y59{bottom:453.909333pt;}
.yb5{bottom:454.053333pt;}
.y1a9{bottom:457.460000pt;}
.y16c{bottom:459.417333pt;}
.y192{bottom:460.318667pt;}
.y121{bottom:461.377333pt;}
.y137{bottom:462.278667pt;}
.yff{bottom:462.856000pt;}
.y15{bottom:464.830667pt;}
.y3f{bottom:465.669333pt;}
.yd9{bottom:471.816000pt;}
.ya6{bottom:473.416000pt;}
.y8b{bottom:473.664000pt;}
.y58{bottom:474.173333pt;}
.yb4{bottom:474.317333pt;}
.y1a8{bottom:477.724000pt;}
.y16b{bottom:479.682667pt;}
.y191{bottom:480.582667pt;}
.y120{bottom:481.641333pt;}
.y136{bottom:482.542667pt;}
.yfe{bottom:483.120000pt;}
.y14{bottom:484.344000pt;}
.y3e{bottom:485.933333pt;}
.yd8{bottom:492.080000pt;}
.ya5{bottom:493.680000pt;}
.y8a{bottom:493.929333pt;}
.y57{bottom:494.437333pt;}
.yb3{bottom:494.581333pt;}
.y1a7{bottom:497.989333pt;}
.y16a{bottom:499.946667pt;}
.y190{bottom:500.848000pt;}
.y11f{bottom:501.905333pt;}
.y135{bottom:502.806667pt;}
.yfd{bottom:503.385333pt;}
.y13{bottom:503.858667pt;}
.y3d{bottom:506.197333pt;}
.yd7{bottom:512.344000pt;}
.ya4{bottom:513.944000pt;}
.y89{bottom:514.193333pt;}
.y56{bottom:514.701333pt;}
.yb2{bottom:514.845333pt;}
.y1a6{bottom:518.253333pt;}
.y169{bottom:520.210667pt;}
.y18f{bottom:521.112000pt;}
.y11e{bottom:522.169333pt;}
.y134{bottom:523.070667pt;}
.y12{bottom:523.372000pt;}
.yfc{bottom:523.649333pt;}
.y3c{bottom:526.461333pt;}
.yd6{bottom:532.608000pt;}
.y55{bottom:534.064000pt;}
.ya3{bottom:534.208000pt;}
.y88{bottom:534.457333pt;}
.yb1{bottom:535.109333pt;}
.y168{bottom:540.474667pt;}
.y18e{bottom:541.376000pt;}
.y11{bottom:542.885333pt;}
.yfb{bottom:543.913333pt;}
.y3b{bottom:546.726667pt;}
.y1a5{bottom:547.816000pt;}
.yd5{bottom:552.872000pt;}
.ya2{bottom:554.472000pt;}
.y87{bottom:554.721333pt;}
.yb0{bottom:555.373333pt;}
.y167{bottom:560.738667pt;}
.y18d{bottom:561.640000pt;}
.y10{bottom:562.398667pt;}
.yfa{bottom:564.177333pt;}
.y3a{bottom:566.990667pt;}
.yd4{bottom:573.136000pt;}
.ya1{bottom:574.736000pt;}
.y86{bottom:574.985333pt;}
.yaf{bottom:575.637333pt;}
.y11d{bottom:578.637333pt;}
.y166{bottom:581.002667pt;}
.y18c{bottom:581.904000pt;}
.yf{bottom:581.912000pt;}
.yf9{bottom:584.441333pt;}
.y39{bottom:587.254667pt;}
.yd3{bottom:593.401333pt;}
.ya0{bottom:595.001333pt;}
.yae{bottom:595.902667pt;}
.y11c{bottom:598.901333pt;}
.y165{bottom:601.266667pt;}
.ye{bottom:601.425333pt;}
.y18b{bottom:602.168000pt;}
.yf8{bottom:604.705333pt;}
.y38{bottom:607.518667pt;}
.y85{bottom:613.077333pt;}
.yd2{bottom:613.665333pt;}
.y9f{bottom:615.265333pt;}
.yad{bottom:616.166667pt;}
.y11b{bottom:619.165333pt;}
.yd{bottom:620.940000pt;}
.y164{bottom:621.530667pt;}
.y18a{bottom:622.432000pt;}
.y37{bottom:627.782667pt;}
.y84{bottom:630.338667pt;}
.yd1{bottom:633.929333pt;}
.yc{bottom:640.453333pt;}
.y163{bottom:641.794667pt;}
.y189{bottom:642.696000pt;}
.y83{bottom:647.601333pt;}
.y36{bottom:648.046667pt;}
.yd0{bottom:654.193333pt;}
.yb{bottom:659.966667pt;}
.yf7{bottom:660.272000pt;}
.y162{bottom:662.058667pt;}
.y188{bottom:662.960000pt;}
.y82{bottom:667.520000pt;}
.y35{bottom:668.310667pt;}
.ya{bottom:679.480000pt;}
.yf6{bottom:680.536000pt;}
.y161{bottom:682.322667pt;}
.y187{bottom:683.224000pt;}
.y81{bottom:684.781333pt;}
.y34{bottom:688.574667pt;}
.y1be{bottom:688.650667pt;}
.y11a{bottom:689.012000pt;}
.y9{bottom:698.993333pt;}
.yf5{bottom:700.800000pt;}
.y80{bottom:702.044000pt;}
.y160{bottom:702.586667pt;}
.y186{bottom:703.488000pt;}
.y33{bottom:708.838667pt;}
.ycf{bottom:709.760000pt;}
.y119{bottom:715.600000pt;}
.y8{bottom:718.508000pt;}
.y7f{bottom:721.962667pt;}
.y15f{bottom:722.850667pt;}
.y185{bottom:723.752000pt;}
.y32{bottom:729.102667pt;}
.yf4{bottom:729.540000pt;}
.yce{bottom:730.024000pt;}
.y118{bottom:735.518667pt;}
.y7{bottom:738.021333pt;}
.y7e{bottom:739.224000pt;}
.y15e{bottom:743.114667pt;}
.y184{bottom:744.016000pt;}
.y31{bottom:749.366667pt;}
.ycd{bottom:750.288000pt;}
.y117{bottom:755.437333pt;}
.yf3{bottom:756.128000pt;}
.y7d{bottom:756.486667pt;}
.y6{bottom:757.534667pt;}
.y15d{bottom:763.380000pt;}
.y183{bottom:764.280000pt;}
.y30{bottom:769.630667pt;}
.y116{bottom:775.356000pt;}
.yf2{bottom:776.046667pt;}
.y7c{bottom:776.405333pt;}
.ycc{bottom:779.028000pt;}
.y15c{bottom:783.644000pt;}
.y182{bottom:784.545333pt;}
.y2f{bottom:789.894667pt;}
.y7b{bottom:793.666667pt;}
.yf1{bottom:795.965333pt;}
.y115{bottom:801.944000pt;}
.y15b{bottom:803.908000pt;}
.y181{bottom:804.809333pt;}
.ycb{bottom:805.616000pt;}
.y2e{bottom:810.160000pt;}
.y7a{bottom:810.929333pt;}
.yf0{bottom:815.884000pt;}
.y5{bottom:815.970667pt;}
.y15a{bottom:824.172000pt;}
.y180{bottom:825.073333pt;}
.yca{bottom:825.534667pt;}
.y2d{bottom:830.424000pt;}
.y79{bottom:830.848000pt;}
.y114{bottom:840.826667pt;}
.yef{bottom:842.472000pt;}
.y159{bottom:844.436000pt;}
.y17f{bottom:845.337333pt;}
.yc9{bottom:845.453333pt;}
.y78{bottom:848.109333pt;}
.y2c{bottom:850.688000pt;}
.y4{bottom:852.753333pt;}
.y113{bottom:861.090667pt;}
.y77{bottom:865.372000pt;}
.y2b{bottom:870.952000pt;}
.yee{bottom:881.354667pt;}
.y158{bottom:881.541333pt;}
.y3{bottom:885.776000pt;}
.y2a{bottom:891.216000pt;}
.y76{bottom:891.960000pt;}
.yed{bottom:901.618667pt;}
.y157{bottom:901.805333pt;}
.y29{bottom:911.480000pt;}
.y156{bottom:922.069333pt;}
.y75{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y74{bottom:951.106667pt;}
.y155{bottom:951.632000pt;}
.y27{bottom:952.008000pt;}
.y2{bottom:979.312000pt;}
.y26{bottom:986.900000pt;}
.y1{bottom:989.938667pt;}
.h1{height:31.880400pt;}
.h6{height:32.900710pt;}
.h5{height:36.556100pt;}
.h4{height:36.768636pt;}
.ha{height:41.917344pt;}
.h8{height:42.039552pt;}
.hc{height:42.283968pt;}
.hd{height:46.336759pt;}
.h3{height:47.523004pt;}
.h7{height:47.799300pt;}
.h2{height:63.169041pt;}
.hb{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x3{left:113.385333pt;}
.x12{left:121.356000pt;}
.x13{left:134.632000pt;}
.xb{left:136.062667pt;}
.x6{left:158.261333pt;}
.x20{left:160.881333pt;}
.x9{left:162.052000pt;}
.x22{left:178.917333pt;}
.x8{left:237.212000pt;}
.x23{left:238.188000pt;}
.x1f{left:248.333333pt;}
.x10{left:280.261333pt;}
.x24{left:303.100000pt;}
.x1b{left:307.656000pt;}
.x16{left:331.041333pt;}
.x5{left:340.558667pt;}
.x17{left:357.097333pt;}
.xd{left:359.442667pt;}
.x7{left:364.560000pt;}
.x4{left:365.964000pt;}
.x27{left:370.101333pt;}
.x26{left:371.377333pt;}
.xa{left:384.740000pt;}
.x1c{left:394.242667pt;}
.x15{left:397.898667pt;}
.xe{left:402.290667pt;}
.x18{left:411.662667pt;}
.xc{left:412.752000pt;}
.x11{left:435.429333pt;}
.x21{left:439.073333pt;}
.x25{left:451.061333pt;}
.x14{left:465.214667pt;}
.x2{left:510.021333pt;}
.xf{left:513.840000pt;}
.x1d{left:529.389333pt;}
.x19{left:555.218667pt;}
.x1{left:618.953333pt;}
.x1e{left:623.614667pt;}
.x1a{left:650.416000pt;}
}




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