
    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_7b0d800684edbeb1565f8cf1.woff2')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_153e58fcb7da606480df86ed.woff2')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_8dbdff8e021c8f273a0b9945.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.897000;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_bb1235aaa2d82c0ecd977a29.woff2')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;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.me{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);}
.ma{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);}
.m18{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);}
.m12{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.m19{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);}
.m1e{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);}
.mb{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);}
.m27{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);}
.mc{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);}
.m25{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);}
.m3{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);}
.m17{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);}
.m26{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);}
.m2{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);}
.m21{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);}
.m1f{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);}
.m28{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);}
.m1d{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);}
.md{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);}
.m20{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);}
.m1a{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);}
.m1c{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);}
.m6{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);}
.m1b{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);}
.m13{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m24{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);}
.m15{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);}
.m8{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);}
.m7{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);}
.m16{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);}
.m14{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);}
.m23{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);}
.mf{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);}
.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;}
.v2{vertical-align:55.542000px;}
.v1{vertical-align:56.676000px;}
.ls1{letter-spacing:0.000000px;}
.ls16{letter-spacing:1.443582px;}
.ls13{letter-spacing:2.543454px;}
.ls0{letter-spacing:2.988780px;}
.lsc{letter-spacing:16.016886px;}
.lsb{letter-spacing:16.291854px;}
.ls17{letter-spacing:16.841790px;}
.lsa{letter-spacing:16.910532px;}
.ls1e{letter-spacing:16.979274px;}
.ls5{letter-spacing:17.048016px;}
.ls6{letter-spacing:17.185500px;}
.ls19{letter-spacing:17.254242px;}
.ls8{letter-spacing:17.322984px;}
.ls10{letter-spacing:17.391726px;}
.ls9{letter-spacing:17.460468px;}
.ls1a{letter-spacing:17.529210px;}
.lsf{letter-spacing:18.147888px;}
.ls11{letter-spacing:18.904050px;}
.lsd{letter-spacing:19.179018px;}
.ls18{letter-spacing:19.316502px;}
.ls7{letter-spacing:20.966310px;}
.ls20{letter-spacing:22.341150px;}
.ls15{letter-spacing:22.959828px;}
.lse{letter-spacing:23.303538px;}
.ls14{letter-spacing:23.509764px;}
.ls1b{letter-spacing:24.815862px;}
.ls1c{letter-spacing:25.297056px;}
.ls1d{letter-spacing:25.434540px;}
.ls12{letter-spacing:25.915734px;}
.ls1f{letter-spacing:26.534412px;}
.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;}
}
.ws98{word-spacing:-17.185500px;}
.ws118{word-spacing:-7.836588px;}
.ws11a{word-spacing:-7.699104px;}
.ws11c{word-spacing:-6.393006px;}
.wsd7{word-spacing:-3.780810px;}
.ws104{word-spacing:-3.712068px;}
.wsb5{word-spacing:-3.643326px;}
.ws8c{word-spacing:-3.574584px;}
.ws66{word-spacing:-3.505842px;}
.ws111{word-spacing:-3.437100px;}
.ws9e{word-spacing:-3.368358px;}
.wsd1{word-spacing:-3.299616px;}
.wsbe{word-spacing:-3.230874px;}
.wsc7{word-spacing:-3.162132px;}
.ws103{word-spacing:-3.093390px;}
.wsf8{word-spacing:-3.024648px;}
.wsf{word-spacing:-2.988780px;}
.ws3a{word-spacing:-2.955906px;}
.ws78{word-spacing:-2.887164px;}
.ws37{word-spacing:-2.818422px;}
.ws9d{word-spacing:-2.749680px;}
.wsbb{word-spacing:-2.680938px;}
.ws9f{word-spacing:-2.612196px;}
.ws52{word-spacing:-2.543454px;}
.ws33{word-spacing:-2.474712px;}
.wsb7{word-spacing:-2.405970px;}
.ws114{word-spacing:-2.337228px;}
.wsb0{word-spacing:-2.268486px;}
.ws30{word-spacing:-2.199744px;}
.wsd3{word-spacing:-2.131002px;}
.wse6{word-spacing:-2.062260px;}
.wsde{word-spacing:-1.993518px;}
.ws76{word-spacing:-1.856034px;}
.ws35{word-spacing:-1.787292px;}
.wsa7{word-spacing:-1.718550px;}
.ws4e{word-spacing:-1.649808px;}
.wseb{word-spacing:-1.581066px;}
.ws87{word-spacing:-1.512324px;}
.ws91{word-spacing:-1.443582px;}
.ws50{word-spacing:-1.374840px;}
.ws5a{word-spacing:-1.306098px;}
.ws2d{word-spacing:-1.237356px;}
.wsd9{word-spacing:-1.168614px;}
.ws18{word-spacing:-1.099872px;}
.ws41{word-spacing:-1.031130px;}
.ws9c{word-spacing:-0.962388px;}
.ws4c{word-spacing:-0.893646px;}
.ws7{word-spacing:-0.836858px;}
.wsbc{word-spacing:-0.824904px;}
.wsca{word-spacing:-0.756162px;}
.ws67{word-spacing:-0.687420px;}
.ws74{word-spacing:-0.618678px;}
.wsc3{word-spacing:-0.549936px;}
.wsb{word-spacing:-0.537980px;}
.ws4f{word-spacing:-0.481194px;}
.ws44{word-spacing:-0.412452px;}
.ws2e{word-spacing:-0.343710px;}
.wsa{word-spacing:-0.298878px;}
.ws15{word-spacing:-0.274968px;}
.wsff{word-spacing:-0.268992px;}
.ws2b{word-spacing:-0.206226px;}
.ws2c{word-spacing:-0.137484px;}
.wsd{word-spacing:-0.119551px;}
.ws3e{word-spacing:-0.068742px;}
.ws8{word-spacing:-0.059776px;}
.ws1{word-spacing:-0.047821px;}
.ws2{word-spacing:0.000000px;}
.ws5{word-spacing:0.059776px;}
.ws38{word-spacing:0.068742px;}
.ws10{word-spacing:0.107597px;}
.ws1d{word-spacing:0.137484px;}
.wse{word-spacing:0.179327px;}
.ws42{word-spacing:0.206226px;}
.ws6{word-spacing:0.239102px;}
.ws2f{word-spacing:0.274968px;}
.ws3b{word-spacing:0.343710px;}
.ws36{word-spacing:0.412452px;}
.ws25{word-spacing:0.481194px;}
.ws56{word-spacing:0.549936px;}
.ws93{word-spacing:0.618678px;}
.ws64{word-spacing:0.687420px;}
.ws92{word-spacing:0.756162px;}
.ws20{word-spacing:0.824904px;}
.wsba{word-spacing:0.893646px;}
.ws22{word-spacing:0.962388px;}
.ws4d{word-spacing:1.031130px;}
.ws24{word-spacing:1.099872px;}
.wsa3{word-spacing:1.168614px;}
.wsac{word-spacing:1.237356px;}
.ws84{word-spacing:1.306098px;}
.wsc5{word-spacing:1.374840px;}
.ws65{word-spacing:1.512324px;}
.ws117{word-spacing:1.581066px;}
.wsa1{word-spacing:1.649808px;}
.ws5f{word-spacing:1.718550px;}
.ws17{word-spacing:1.787292px;}
.ws62{word-spacing:1.856034px;}
.ws61{word-spacing:1.924776px;}
.wsae{word-spacing:1.993518px;}
.ws75{word-spacing:2.062260px;}
.ws7d{word-spacing:2.131002px;}
.wsd8{word-spacing:2.199744px;}
.wsd2{word-spacing:2.268486px;}
.ws58{word-spacing:2.337228px;}
.wsaf{word-spacing:2.405970px;}
.ws34{word-spacing:2.474712px;}
.ws85{word-spacing:2.543454px;}
.ws89{word-spacing:2.612196px;}
.ws8d{word-spacing:2.680938px;}
.wsb8{word-spacing:2.749680px;}
.ws45{word-spacing:2.818422px;}
.ws8f{word-spacing:2.887164px;}
.ws46{word-spacing:2.955906px;}
.ws4{word-spacing:2.988780px;}
.wsdc{word-spacing:3.024648px;}
.ws4b{word-spacing:3.093390px;}
.ws70{word-spacing:3.162132px;}
.ws19{word-spacing:3.230874px;}
.ws32{word-spacing:3.299616px;}
.wsad{word-spacing:3.368358px;}
.ws2a{word-spacing:3.437100px;}
.wsbf{word-spacing:3.505842px;}
.wsb3{word-spacing:3.643326px;}
.ws8a{word-spacing:3.712068px;}
.ws48{word-spacing:3.780810px;}
.wsc{word-spacing:3.825638px;}
.ws43{word-spacing:3.849552px;}
.wsc8{word-spacing:3.918294px;}
.wsa5{word-spacing:3.987036px;}
.wscc{word-spacing:4.055778px;}
.ws77{word-spacing:4.124520px;}
.ws8b{word-spacing:4.193262px;}
.ws27{word-spacing:4.262004px;}
.ws23{word-spacing:4.330746px;}
.ws1a{word-spacing:4.399488px;}
.wsa0{word-spacing:4.468230px;}
.wsc2{word-spacing:4.536972px;}
.ws72{word-spacing:4.605714px;}
.ws94{word-spacing:4.674456px;}
.wsc9{word-spacing:4.743198px;}
.wsa4{word-spacing:4.811940px;}
.ws4a{word-spacing:4.880682px;}
.wsaa{word-spacing:4.949424px;}
.ws51{word-spacing:5.018166px;}
.ws47{word-spacing:5.086908px;}
.ws107{word-spacing:5.155650px;}
.ws83{word-spacing:5.224392px;}
.wsa8{word-spacing:5.293134px;}
.ws6e{word-spacing:5.361876px;}
.ws6b{word-spacing:5.430618px;}
.ws9{word-spacing:5.439580px;}
.wsd5{word-spacing:5.499360px;}
.wsb2{word-spacing:5.568102px;}
.wsb6{word-spacing:5.636844px;}
.ws119{word-spacing:5.705586px;}
.wsdb{word-spacing:5.774328px;}
.wsb4{word-spacing:5.843070px;}
.ws81{word-spacing:5.911812px;}
.ws5d{word-spacing:5.980554px;}
.ws29{word-spacing:6.049296px;}
.ws69{word-spacing:6.118038px;}
.ws90{word-spacing:6.255522px;}
.ws16{word-spacing:6.324264px;}
.ws54{word-spacing:6.393006px;}
.ws3c{word-spacing:6.461748px;}
.ws6c{word-spacing:6.530490px;}
.wsbd{word-spacing:6.599232px;}
.ws13{word-spacing:6.667974px;}
.wscf{word-spacing:6.736716px;}
.ws7b{word-spacing:6.805458px;}
.wsb1{word-spacing:6.874200px;}
.wscd{word-spacing:6.942942px;}
.ws8e{word-spacing:7.011684px;}
.wsa9{word-spacing:7.080426px;}
.ws7e{word-spacing:7.149168px;}
.wsc4{word-spacing:7.217910px;}
.ws6d{word-spacing:7.286652px;}
.wsdd{word-spacing:7.355394px;}
.ws1e{word-spacing:7.424136px;}
.ws3d{word-spacing:7.492878px;}
.ws49{word-spacing:7.561620px;}
.ws88{word-spacing:7.630362px;}
.wsb9{word-spacing:7.699104px;}
.wsa6{word-spacing:7.767846px;}
.ws14{word-spacing:7.836588px;}
.ws21{word-spacing:7.905330px;}
.ws7a{word-spacing:7.974072px;}
.ws1b{word-spacing:8.042814px;}
.ws60{word-spacing:8.111556px;}
.ws28{word-spacing:8.180298px;}
.ws101{word-spacing:8.249040px;}
.ws59{word-spacing:8.317782px;}
.wsc1{word-spacing:8.386524px;}
.ws3f{word-spacing:8.455266px;}
.wsf1{word-spacing:8.524008px;}
.ws86{word-spacing:8.592750px;}
.wsf2{word-spacing:8.661492px;}
.ws102{word-spacing:8.730234px;}
.ws12{word-spacing:8.798976px;}
.wsda{word-spacing:8.867718px;}
.ws79{word-spacing:8.936460px;}
.ws55{word-spacing:9.005202px;}
.wsf5{word-spacing:9.073944px;}
.ws40{word-spacing:9.142686px;}
.ws82{word-spacing:9.211428px;}
.ws26{word-spacing:9.280170px;}
.ws11b{word-spacing:9.348912px;}
.ws5c{word-spacing:9.417654px;}
.wsec{word-spacing:9.486396px;}
.wse0{word-spacing:9.623880px;}
.wsc0{word-spacing:9.692622px;}
.ws1c{word-spacing:9.761364px;}
.wsef{word-spacing:9.830106px;}
.ws7c{word-spacing:9.898848px;}
.ws80{word-spacing:10.105074px;}
.wse7{word-spacing:10.173816px;}
.ws95{word-spacing:10.242558px;}
.wsf3{word-spacing:10.311300px;}
.ws6a{word-spacing:10.380042px;}
.wsee{word-spacing:10.448784px;}
.ws53{word-spacing:10.586268px;}
.ws31{word-spacing:10.655010px;}
.wse8{word-spacing:10.792494px;}
.wse4{word-spacing:10.861236px;}
.wse2{word-spacing:10.929978px;}
.wsfb{word-spacing:11.067462px;}
.wsab{word-spacing:11.136204px;}
.ws68{word-spacing:11.204946px;}
.wsce{word-spacing:11.342430px;}
.ws97{word-spacing:11.411172px;}
.wsfa{word-spacing:11.479914px;}
.wsd6{word-spacing:11.548656px;}
.wse3{word-spacing:11.686140px;}
.ws112{word-spacing:11.892366px;}
.wscb{word-spacing:11.961108px;}
.ws99{word-spacing:12.029850px;}
.ws39{word-spacing:12.098592px;}
.wsfd{word-spacing:12.304818px;}
.ws1f{word-spacing:12.373560px;}
.wsf0{word-spacing:12.442302px;}
.wsfc{word-spacing:12.511044px;}
.ws71{word-spacing:12.579786px;}
.ws10d{word-spacing:12.648528px;}
.ws5b{word-spacing:12.717270px;}
.ws9a{word-spacing:12.786012px;}
.ws5e{word-spacing:13.129722px;}
.ws57{word-spacing:13.267206px;}
.ws106{word-spacing:13.335948px;}
.wsed{word-spacing:13.473432px;}
.ws10f{word-spacing:13.748400px;}
.wsf4{word-spacing:13.817142px;}
.ws6f{word-spacing:14.023368px;}
.ws7f{word-spacing:14.092110px;}
.ws63{word-spacing:14.435820px;}
.wsf9{word-spacing:14.504562px;}
.ws73{word-spacing:14.573304px;}
.wsdf{word-spacing:14.642046px;}
.ws115{word-spacing:14.985756px;}
.wsa2{word-spacing:15.260724px;}
.wsea{word-spacing:15.466950px;}
.ws100{word-spacing:16.154370px;}
.ws109{word-spacing:16.704306px;}
.ws9b{word-spacing:16.841790px;}
.ws0{word-spacing:16.880672px;}
.ws10e{word-spacing:17.185500px;}
.ws10a{word-spacing:17.254242px;}
.wsf7{word-spacing:17.391726px;}
.wse9{word-spacing:18.285372px;}
.wse5{word-spacing:18.354114px;}
.ws110{word-spacing:18.904050px;}
.ws105{word-spacing:19.179018px;}
.wse1{word-spacing:19.349392px;}
.ws116{word-spacing:19.385244px;}
.ws10b{word-spacing:19.453986px;}
.ws10c{word-spacing:19.866438px;}
.wsd4{word-spacing:22.272408px;}
.ws3{word-spacing:27.915205px;}
.ws113{word-spacing:28.596672px;}
.wsc6{word-spacing:29.490318px;}
.wsf6{word-spacing:35.677098px;}
.ws96{word-spacing:50.181660px;}
.ws108{word-spacing:52.862598px;}
.ws11{word-spacing:77.630692px;}
.wsfe{word-spacing:940.539258px;}
.wsd0{word-spacing:943.119258px;}
._3{margin-left:-12.395088px;}
._1e{margin-left:-9.280170px;}
._1{margin-left:-8.263392px;}
._5{margin-left:-7.230468px;}
._1a{margin-left:-5.568102px;}
._2{margin-left:-4.131696px;}
._7{margin-left:-2.921825px;}
._9{margin-left:-1.494390px;}
._0{width:1.386797px;}
._34{width:3.212940px;}
._35{width:4.561438px;}
._38{width:5.739276px;}
._37{width:7.714044px;}
._36{width:9.481020px;}
._32{width:12.751931px;}
._27{width:14.630711px;}
._28{width:15.792726px;}
._6{width:16.916495px;}
._b{width:18.470660px;}
._8{width:19.546621px;}
._15{width:21.317196px;}
._a{width:22.356074px;}
._1c{width:24.128442px;}
._10{width:25.228314px;}
._17{width:26.404104px;}
._12{width:27.428058px;}
._e{width:29.085042px;}
._c{width:30.664883px;}
._4{width:32.020644px;}
._14{width:33.271128px;}
._13{width:35.318464px;}
._18{width:37.326906px;}
._29{width:38.390910px;}
._26{width:39.526650px;}
._11{width:40.771182px;}
._1d{width:42.441299px;}
._21{width:43.857396px;}
._f{width:45.746304px;}
._23{width:47.019528px;}
._25{width:48.651402px;}
._1b{width:50.112918px;}
._22{width:52.312662px;}
._16{width:53.962470px;}
._30{width:55.749762px;}
._d{width:59.775600px;}
._33{width:62.142768px;}
._1f{width:64.306644px;}
._19{width:67.367160px;}
._2b{width:68.467032px;}
._20{width:69.635646px;}
._2c{width:71.079228px;}
._2a{width:77.708400px;}
._24{width:94.107798px;}
._2d{width:98.438544px;}
._2f{width:108.474876px;}
._2e{width:116.517690px;}
._31{width:129.303702px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.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;}
.y50{bottom:41.308500px;}
.yb9{bottom:41.592000px;}
.y51{bottom:43.522500px;}
.y132{bottom:86.379000px;}
.y1ba{bottom:87.603000px;}
.y25{bottom:88.371000px;}
.yf3{bottom:90.733500px;}
.y7b{bottom:98.434500px;}
.yd7{bottom:98.649000px;}
.y91{bottom:99.448500px;}
.yed{bottom:99.663000px;}
.yb7{bottom:100.462500px;}
.y1e7{bottom:104.407500px;}
.y1ed{bottom:105.421500px;}
.y183{bottom:108.145500px;}
.yef{bottom:108.163500px;}
.y1d4{bottom:108.505500px;}
.y14c{bottom:108.544500px;}
.y1a1{bottom:109.159500px;}
.yf1{bottom:109.177500px;}
.y15a{bottom:109.558500px;}
.y1b9{bottom:110.400000px;}
.y24{bottom:111.168000px;}
.yf2{bottom:113.530500px;}
.y7a{bottom:121.231500px;}
.yd6{bottom:121.446000px;}
.y90{bottom:122.245500px;}
.yec{bottom:122.460000px;}
.yb6{bottom:123.259500px;}
.y1e6{bottom:127.204500px;}
.y1ec{bottom:128.218500px;}
.y182{bottom:130.942500px;}
.yee{bottom:130.960500px;}
.y1d3{bottom:131.302500px;}
.y14b{bottom:131.341500px;}
.y1a0{bottom:131.956500px;}
.yf0{bottom:131.974500px;}
.y159{bottom:132.355500px;}
.y1b8{bottom:133.197000px;}
.y23{bottom:133.965000px;}
.yb8{bottom:136.327500px;}
.y79{bottom:144.028500px;}
.yd5{bottom:144.243000px;}
.y8f{bottom:145.042500px;}
.yeb{bottom:145.257000px;}
.yb5{bottom:146.056500px;}
.y20d{bottom:149.889000px;}
.y1e5{bottom:150.001500px;}
.y1eb{bottom:151.015500px;}
.y181{bottom:153.739500px;}
.y11a{bottom:153.757500px;}
.y1d2{bottom:154.099500px;}
.y14a{bottom:154.138500px;}
.y19f{bottom:154.753500px;}
.y131{bottom:154.771500px;}
.y158{bottom:155.152500px;}
.y1b7{bottom:155.994000px;}
.y22{bottom:156.762000px;}
.y4f{bottom:159.124500px;}
.y78{bottom:166.825500px;}
.yd4{bottom:167.040000px;}
.y8e{bottom:167.839500px;}
.yea{bottom:168.054000px;}
.yb4{bottom:168.853500px;}
.y20c{bottom:172.686000px;}
.y1e4{bottom:172.798500px;}
.y1ea{bottom:173.812500px;}
.y180{bottom:176.536500px;}
.y119{bottom:176.554500px;}
.y1d1{bottom:176.896500px;}
.y149{bottom:176.935500px;}
.y19e{bottom:177.550500px;}
.y130{bottom:177.568500px;}
.y157{bottom:177.949500px;}
.y1b6{bottom:178.791000px;}
.y21{bottom:179.559000px;}
.y4e{bottom:181.921500px;}
.y77{bottom:189.622500px;}
.yd3{bottom:189.837000px;}
.y8d{bottom:190.636500px;}
.ye9{bottom:190.851000px;}
.yb3{bottom:191.650500px;}
.y20b{bottom:195.483000px;}
.y1e3{bottom:195.595500px;}
.y1e9{bottom:196.609500px;}
.y17f{bottom:199.333500px;}
.y118{bottom:199.351500px;}
.y1d0{bottom:199.693500px;}
.y148{bottom:199.732500px;}
.y19d{bottom:200.347500px;}
.y12f{bottom:200.365500px;}
.y156{bottom:200.746500px;}
.y1b5{bottom:201.588000px;}
.y20{bottom:202.357500px;}
.y4d{bottom:204.718500px;}
.y76{bottom:212.419500px;}
.yd2{bottom:212.634000px;}
.y8c{bottom:213.433500px;}
.ye8{bottom:213.648000px;}
.yb2{bottom:214.447500px;}
.y20a{bottom:218.280000px;}
.y1e2{bottom:218.392500px;}
.y1e8{bottom:219.406500px;}
.y17e{bottom:222.130500px;}
.y117{bottom:222.148500px;}
.y1cf{bottom:222.490500px;}
.y147{bottom:222.529500px;}
.y19c{bottom:223.144500px;}
.y12e{bottom:223.162500px;}
.y155{bottom:223.543500px;}
.y1b4{bottom:224.385000px;}
.y1f{bottom:225.154500px;}
.y4c{bottom:227.515500px;}
.y75{bottom:235.216500px;}
.yd1{bottom:235.431000px;}
.y8b{bottom:236.230500px;}
.ye7{bottom:236.445000px;}
.yb1{bottom:237.244500px;}
.y209{bottom:241.078500px;}
.y17d{bottom:244.927500px;}
.y116{bottom:244.945500px;}
.y1ce{bottom:245.287500px;}
.y146{bottom:245.326500px;}
.y19b{bottom:245.941500px;}
.y12d{bottom:245.959500px;}
.y154{bottom:246.340500px;}
.y1b3{bottom:247.182000px;}
.y1e{bottom:247.951500px;}
.y4b{bottom:250.312500px;}
.y74{bottom:258.013500px;}
.yd0{bottom:258.228000px;}
.y8a{bottom:259.027500px;}
.ye6{bottom:259.242000px;}
.yb0{bottom:260.041500px;}
.y1e1{bottom:260.137500px;}
.y208{bottom:263.875500px;}
.y17c{bottom:267.726000px;}
.y115{bottom:267.742500px;}
.y1cd{bottom:268.084500px;}
.y145{bottom:268.123500px;}
.y19a{bottom:268.740000px;}
.y12c{bottom:268.756500px;}
.y153{bottom:269.137500px;}
.y1b2{bottom:269.979000px;}
.y1d{bottom:270.748500px;}
.y4a{bottom:273.109500px;}
.y73{bottom:280.810500px;}
.ycf{bottom:281.025000px;}
.y89{bottom:281.824500px;}
.ye5{bottom:282.039000px;}
.yaf{bottom:282.838500px;}
.y1e0{bottom:282.934500px;}
.y207{bottom:286.672500px;}
.y17b{bottom:290.523000px;}
.y114{bottom:290.539500px;}
.y1cc{bottom:290.881500px;}
.y144{bottom:290.920500px;}
.y199{bottom:291.537000px;}
.y12b{bottom:291.553500px;}
.y152{bottom:291.934500px;}
.y1b1{bottom:292.776000px;}
.y1c{bottom:293.545500px;}
.y49{bottom:295.908000px;}
.y15c{bottom:297.400500px;}
.y72{bottom:303.607500px;}
.yce{bottom:303.822000px;}
.y88{bottom:304.621500px;}
.ye4{bottom:304.836000px;}
.yae{bottom:305.635500px;}
.y1df{bottom:305.731500px;}
.y206{bottom:309.469500px;}
.y17a{bottom:313.320000px;}
.y113{bottom:313.336500px;}
.y1cb{bottom:313.678500px;}
.y143{bottom:313.717500px;}
.y198{bottom:314.334000px;}
.y12a{bottom:314.350500px;}
.y151{bottom:314.731500px;}
.y1b0{bottom:315.573000px;}
.y1b{bottom:316.342500px;}
.y48{bottom:318.705000px;}
.y71{bottom:326.404500px;}
.ycd{bottom:326.619000px;}
.y87{bottom:327.418500px;}
.ye3{bottom:327.633000px;}
.yad{bottom:328.432500px;}
.y1de{bottom:328.528500px;}
.y205{bottom:332.266500px;}
.y179{bottom:336.117000px;}
.y112{bottom:336.133500px;}
.y1ca{bottom:336.475500px;}
.y142{bottom:336.514500px;}
.y197{bottom:337.131000px;}
.y129{bottom:337.147500px;}
.y150{bottom:337.528500px;}
.y1af{bottom:338.370000px;}
.y1a{bottom:339.139500px;}
.y47{bottom:341.502000px;}
.y70{bottom:349.203000px;}
.ycc{bottom:349.417500px;}
.y86{bottom:350.217000px;}
.ye2{bottom:350.430000px;}
.yac{bottom:351.229500px;}
.y1dd{bottom:351.325500px;}
.y204{bottom:355.063500px;}
.y178{bottom:358.914000px;}
.y111{bottom:358.930500px;}
.y1c9{bottom:359.272500px;}
.y141{bottom:359.311500px;}
.y196{bottom:359.928000px;}
.y128{bottom:359.944500px;}
.y14f{bottom:360.325500px;}
.y1ae{bottom:361.167000px;}
.y46{bottom:364.299000px;}
.y6f{bottom:372.000000px;}
.ycb{bottom:372.214500px;}
.y85{bottom:373.014000px;}
.ye1{bottom:373.228500px;}
.yab{bottom:374.028000px;}
.y203{bottom:377.860500px;}
.y177{bottom:381.711000px;}
.y110{bottom:381.727500px;}
.y1c8{bottom:382.069500px;}
.y140{bottom:382.110000px;}
.y195{bottom:382.725000px;}
.y127{bottom:382.741500px;}
.y14e{bottom:383.124000px;}
.y1ad{bottom:383.964000px;}
.y1dc{bottom:384.583500px;}
.y45{bottom:387.096000px;}
.y19{bottom:390.330000px;}
.y6e{bottom:394.797000px;}
.yca{bottom:395.011500px;}
.y84{bottom:395.811000px;}
.ye0{bottom:396.025500px;}
.yaa{bottom:396.825000px;}
.y202{bottom:400.657500px;}
.y176{bottom:404.508000px;}
.y10f{bottom:404.526000px;}
.y1c7{bottom:404.866500px;}
.y13f{bottom:404.907000px;}
.y194{bottom:405.522000px;}
.y126{bottom:405.538500px;}
.y14d{bottom:405.921000px;}
.y1ac{bottom:406.762500px;}
.y44{bottom:409.893000px;}
.y6d{bottom:417.594000px;}
.yc9{bottom:417.808500px;}
.y83{bottom:418.608000px;}
.ydf{bottom:418.822500px;}
.ya9{bottom:419.622000px;}
.y201{bottom:423.454500px;}
.y175{bottom:427.305000px;}
.y10e{bottom:427.323000px;}
.y1c6{bottom:427.665000px;}
.y193{bottom:428.319000px;}
.y125{bottom:428.337000px;}
.y1ab{bottom:429.559500px;}
.y18{bottom:431.503500px;}
.y43{bottom:432.690000px;}
.y6c{bottom:440.391000px;}
.yc8{bottom:440.605500px;}
.y82{bottom:441.405000px;}
.yde{bottom:441.619500px;}
.ya8{bottom:442.419000px;}
.y1ff{bottom:446.251500px;}
.y200{bottom:446.337000px;}
.y1db{bottom:446.884500px;}
.y17{bottom:450.079500px;}
.y174{bottom:450.102000px;}
.y10d{bottom:450.120000px;}
.y1c5{bottom:450.462000px;}
.y192{bottom:451.116000px;}
.y124{bottom:451.134000px;}
.y1aa{bottom:452.356500px;}
.y42{bottom:455.487000px;}
.y6b{bottom:463.188000px;}
.yc7{bottom:463.402500px;}
.y81{bottom:464.202000px;}
.ydd{bottom:464.416500px;}
.ya7{bottom:465.216000px;}
.y1fe{bottom:469.048500px;}
.y1da{bottom:469.681500px;}
.y16{bottom:471.901500px;}
.y173{bottom:472.899000px;}
.y10c{bottom:472.917000px;}
.y1c4{bottom:473.259000px;}
.y191{bottom:473.913000px;}
.y123{bottom:473.931000px;}
.y1a9{bottom:475.153500px;}
.y41{bottom:478.284000px;}
.y6a{bottom:485.985000px;}
.yc6{bottom:486.199500px;}
.y80{bottom:486.999000px;}
.ydc{bottom:487.213500px;}
.ya6{bottom:488.013000px;}
.y1fd{bottom:491.845500px;}
.y1d9{bottom:492.478500px;}
.y172{bottom:495.696000px;}
.y10b{bottom:495.714000px;}
.y1c3{bottom:496.056000px;}
.y190{bottom:496.710000px;}
.y122{bottom:496.728000px;}
.y1a8{bottom:497.950500px;}
.y40{bottom:501.081000px;}
.y15{bottom:505.551000px;}
.y69{bottom:508.782000px;}
.yc5{bottom:508.996500px;}
.y7f{bottom:509.796000px;}
.ydb{bottom:510.010500px;}
.ya5{bottom:510.810000px;}
.y1fb{bottom:514.642500px;}
.y1fc{bottom:514.729500px;}
.y1d8{bottom:515.275500px;}
.y171{bottom:518.493000px;}
.y10a{bottom:518.511000px;}
.y1c2{bottom:518.853000px;}
.y18f{bottom:519.507000px;}
.y121{bottom:519.525000px;}
.y1a7{bottom:520.747500px;}
.y3f{bottom:523.878000px;}
.y68{bottom:531.579000px;}
.yc4{bottom:531.793500px;}
.y7e{bottom:532.593000px;}
.yda{bottom:532.807500px;}
.ya4{bottom:533.607000px;}
.y1fa{bottom:537.439500px;}
.y1d7{bottom:538.072500px;}
.y14{bottom:540.954000px;}
.y170{bottom:541.290000px;}
.y109{bottom:541.308000px;}
.y1c1{bottom:541.650000px;}
.y18e{bottom:542.304000px;}
.y120{bottom:542.322000px;}
.y1a6{bottom:543.544500px;}
.y3e{bottom:546.675000px;}
.y67{bottom:554.376000px;}
.yc3{bottom:554.590500px;}
.y7d{bottom:555.390000px;}
.yd9{bottom:555.604500px;}
.ya3{bottom:556.404000px;}
.y1f9{bottom:560.238000px;}
.y1d6{bottom:560.869500px;}
.y13{bottom:562.906500px;}
.y16f{bottom:564.088500px;}
.y108{bottom:564.105000px;}
.y1c0{bottom:564.447000px;}
.y18d{bottom:565.101000px;}
.y11f{bottom:565.119000px;}
.y1a5{bottom:566.341500px;}
.y13e{bottom:568.458000px;}
.y3d{bottom:569.472000px;}
.y66{bottom:577.173000px;}
.yc2{bottom:577.387500px;}
.y7c{bottom:578.187000px;}
.yd8{bottom:578.401500px;}
.ya2{bottom:579.201000px;}
.y1d5{bottom:582.654000px;}
.y1f8{bottom:583.035000px;}
.y12{bottom:584.859000px;}
.y16e{bottom:586.885500px;}
.y107{bottom:586.902000px;}
.y1bf{bottom:587.244000px;}
.y18c{bottom:587.899500px;}
.y11e{bottom:587.916000px;}
.y1a4{bottom:589.138500px;}
.y13d{bottom:591.256500px;}
.y3c{bottom:592.269000px;}
.y99{bottom:600.984000px;}
.ya1{bottom:601.998000px;}
.y1f7{bottom:605.832000px;}
.y11{bottom:606.811500px;}
.y16d{bottom:609.682500px;}
.y106{bottom:609.699000px;}
.y1be{bottom:610.041000px;}
.y18b{bottom:610.696500px;}
.y11d{bottom:610.713000px;}
.y1a3{bottom:611.935500px;}
.y13c{bottom:614.053500px;}
.y3b{bottom:615.067500px;}
.y65{bottom:618.918000px;}
.yc1{bottom:619.131000px;}
.y98{bottom:623.781000px;}
.ya0{bottom:624.795000px;}
.y1f6{bottom:628.629000px;}
.y10{bottom:628.764000px;}
.y16c{bottom:632.479500px;}
.y105{bottom:632.496000px;}
.y1bd{bottom:632.838000px;}
.y18a{bottom:633.493500px;}
.y11c{bottom:633.510000px;}
.y1a2{bottom:633.718500px;}
.y13b{bottom:636.850500px;}
.y3a{bottom:637.864500px;}
.y64{bottom:641.715000px;}
.yc0{bottom:641.929500px;}
.y97{bottom:646.578000px;}
.y9f{bottom:647.592000px;}
.yf{bottom:650.718000px;}
.y1f5{bottom:651.426000px;}
.y1bc{bottom:654.621000px;}
.y16b{bottom:655.276500px;}
.y104{bottom:655.293000px;}
.y189{bottom:656.290500px;}
.y11b{bottom:656.307000px;}
.y13a{bottom:659.647500px;}
.y39{bottom:660.661500px;}
.y63{bottom:664.512000px;}
.ybf{bottom:664.726500px;}
.y96{bottom:669.376500px;}
.y9e{bottom:670.390500px;}
.ye{bottom:672.670500px;}
.y1f4{bottom:674.223000px;}
.y1bb{bottom:677.418000px;}
.y16a{bottom:678.073500px;}
.y188{bottom:679.087500px;}
.y139{bottom:682.444500px;}
.y38{bottom:683.458500px;}
.y62{bottom:687.309000px;}
.ybe{bottom:687.523500px;}
.y95{bottom:692.173500px;}
.y9d{bottom:693.187500px;}
.yd{bottom:694.623000px;}
.y1f3{bottom:697.020000px;}
.y169{bottom:700.870500px;}
.y187{bottom:701.884500px;}
.y138{bottom:705.241500px;}
.y37{bottom:706.255500px;}
.y61{bottom:710.106000px;}
.ybd{bottom:710.320500px;}
.y94{bottom:714.970500px;}
.y9c{bottom:715.984500px;}
.yc{bottom:716.575500px;}
.y1f2{bottom:719.817000px;}
.y168{bottom:723.667500px;}
.y186{bottom:724.681500px;}
.y137{bottom:728.038500px;}
.y36{bottom:729.052500px;}
.y60{bottom:732.903000px;}
.ybc{bottom:733.117500px;}
.y93{bottom:737.767500px;}
.yb{bottom:738.528000px;}
.y9b{bottom:738.781500px;}
.y1f1{bottom:742.614000px;}
.y167{bottom:746.464500px;}
.y185{bottom:747.478500px;}
.y136{bottom:750.835500px;}
.y35{bottom:751.849500px;}
.y5f{bottom:755.700000px;}
.ya{bottom:760.480500px;}
.y92{bottom:760.564500px;}
.y9a{bottom:761.578500px;}
.y1f0{bottom:765.411000px;}
.ybb{bottom:766.375500px;}
.y166{bottom:769.261500px;}
.y184{bottom:770.275500px;}
.y135{bottom:773.632500px;}
.y34{bottom:774.646500px;}
.y5e{bottom:778.497000px;}
.y9{bottom:782.434500px;}
.yfb{bottom:783.361500px;}
.y103{bottom:784.375500px;}
.y1ef{bottom:788.208000px;}
.yba{bottom:788.581500px;}
.y134{bottom:796.429500px;}
.y33{bottom:797.443500px;}
.y5d{bottom:801.294000px;}
.y8{bottom:804.387000px;}
.yfa{bottom:806.158500px;}
.y102{bottom:807.172500px;}
.y165{bottom:811.005000px;}
.y133{bottom:819.226500px;}
.y32{bottom:820.240500px;}
.y7{bottom:826.339500px;}
.yf9{bottom:828.955500px;}
.y101{bottom:829.969500px;}
.y164{bottom:833.802000px;}
.y5c{bottom:842.023500px;}
.y31{bottom:843.037500px;}
.y6{bottom:848.292000px;}
.yf8{bottom:851.752500px;}
.y100{bottom:852.766500px;}
.y163{bottom:856.600500px;}
.y5b{bottom:864.820500px;}
.y30{bottom:865.834500px;}
.yf7{bottom:874.549500px;}
.yff{bottom:875.563500px;}
.y162{bottom:879.397500px;}
.y5a{bottom:887.617500px;}
.y2f{bottom:888.631500px;}
.yf6{bottom:897.346500px;}
.yfe{bottom:898.360500px;}
.y161{bottom:902.194500px;}
.y59{bottom:910.416000px;}
.y2e{bottom:911.430000px;}
.y5{bottom:917.967000px;}
.yf5{bottom:920.143500px;}
.yfd{bottom:921.157500px;}
.y160{bottom:924.991500px;}
.y58{bottom:933.213000px;}
.y2d{bottom:934.227000px;}
.y15b{bottom:934.312500px;}
.yf4{bottom:942.940500px;}
.yfc{bottom:943.954500px;}
.y15f{bottom:947.788500px;}
.y57{bottom:956.010000px;}
.y2c{bottom:957.024000px;}
.y1ee{bottom:958.249500px;}
.y4{bottom:959.347500px;}
.y15e{bottom:970.585500px;}
.y56{bottom:978.807000px;}
.y2b{bottom:979.821000px;}
.y3{bottom:996.498000px;}
.y55{bottom:1001.604000px;}
.y2a{bottom:1002.618000px;}
.y15d{bottom:1003.843500px;}
.y20e{bottom:1006.605000px;}
.y54{bottom:1024.401000px;}
.y29{bottom:1025.415000px;}
.y53{bottom:1047.198000px;}
.y28{bottom:1048.212000px;}
.y52{bottom:1069.995000px;}
.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.304940px;}
.hb{height:47.157012px;}
.h8{height:47.294496px;}
.hc{height:47.636496px;}
.h3{height:53.463379px;}
.h7{height:53.696504px;}
.h2{height:71.065171px;}
.ha{height:91.407450px;}
.h9{height:92.541450px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:126.132000px;}
.xc{left:127.558500px;}
.x3{left:138.670500px;}
.x11{left:151.072500px;}
.xd{left:153.070500px;}
.x1e{left:165.745500px;}
.x7{left:176.595000px;}
.x6{left:178.044000px;}
.x1a{left:180.957000px;}
.xa{left:182.308500px;}
.x12{left:190.990500px;}
.x19{left:227.716500px;}
.x1d{left:228.798000px;}
.x1c{left:232.140000px;}
.x4{left:253.686000px;}
.x9{left:270.516000px;}
.x16{left:310.987500px;}
.x13{left:315.294000px;}
.x1b{left:317.520000px;}
.x5{left:403.633500px;}
.x8{left:410.130000px;}
.xb{left:432.832500px;}
.x15{left:447.636000px;}
.xf{left:452.577000px;}
.x18{left:462.060000px;}
.xe{left:464.346000px;}
.x14{left:489.858000px;}
.x2{left:573.774000px;}
.x10{left:578.070000px;}
.x1{left:696.322500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:49.370667pt;}
.v1{vertical-align:50.378667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls16{letter-spacing:1.283184pt;}
.ls13{letter-spacing:2.260848pt;}
.ls0{letter-spacing:2.656693pt;}
.lsc{letter-spacing:14.237232pt;}
.lsb{letter-spacing:14.481648pt;}
.ls17{letter-spacing:14.970480pt;}
.lsa{letter-spacing:15.031584pt;}
.ls1e{letter-spacing:15.092688pt;}
.ls5{letter-spacing:15.153792pt;}
.ls6{letter-spacing:15.276000pt;}
.ls19{letter-spacing:15.337104pt;}
.ls8{letter-spacing:15.398208pt;}
.ls10{letter-spacing:15.459312pt;}
.ls9{letter-spacing:15.520416pt;}
.ls1a{letter-spacing:15.581520pt;}
.lsf{letter-spacing:16.131456pt;}
.ls11{letter-spacing:16.803600pt;}
.lsd{letter-spacing:17.048016pt;}
.ls18{letter-spacing:17.170224pt;}
.ls7{letter-spacing:18.636720pt;}
.ls20{letter-spacing:19.858800pt;}
.ls15{letter-spacing:20.408736pt;}
.lse{letter-spacing:20.714256pt;}
.ls14{letter-spacing:20.897568pt;}
.ls1b{letter-spacing:22.058544pt;}
.ls1c{letter-spacing:22.486272pt;}
.ls1d{letter-spacing:22.608480pt;}
.ls12{letter-spacing:23.036208pt;}
.ls1f{letter-spacing:23.586144pt;}
.ls2{letter-spacing:851.373333pt;}
.ls4{letter-spacing:852.136000pt;}
.ls3{letter-spacing:852.440000pt;}
.ws98{word-spacing:-15.276000pt;}
.ws118{word-spacing:-6.965856pt;}
.ws11a{word-spacing:-6.843648pt;}
.ws11c{word-spacing:-5.682672pt;}
.wsd7{word-spacing:-3.360720pt;}
.ws104{word-spacing:-3.299616pt;}
.wsb5{word-spacing:-3.238512pt;}
.ws8c{word-spacing:-3.177408pt;}
.ws66{word-spacing:-3.116304pt;}
.ws111{word-spacing:-3.055200pt;}
.ws9e{word-spacing:-2.994096pt;}
.wsd1{word-spacing:-2.932992pt;}
.wsbe{word-spacing:-2.871888pt;}
.wsc7{word-spacing:-2.810784pt;}
.ws103{word-spacing:-2.749680pt;}
.wsf8{word-spacing:-2.688576pt;}
.wsf{word-spacing:-2.656693pt;}
.ws3a{word-spacing:-2.627472pt;}
.ws78{word-spacing:-2.566368pt;}
.ws37{word-spacing:-2.505264pt;}
.ws9d{word-spacing:-2.444160pt;}
.wsbb{word-spacing:-2.383056pt;}
.ws9f{word-spacing:-2.321952pt;}
.ws52{word-spacing:-2.260848pt;}
.ws33{word-spacing:-2.199744pt;}
.wsb7{word-spacing:-2.138640pt;}
.ws114{word-spacing:-2.077536pt;}
.wsb0{word-spacing:-2.016432pt;}
.ws30{word-spacing:-1.955328pt;}
.wsd3{word-spacing:-1.894224pt;}
.wse6{word-spacing:-1.833120pt;}
.wsde{word-spacing:-1.772016pt;}
.ws76{word-spacing:-1.649808pt;}
.ws35{word-spacing:-1.588704pt;}
.wsa7{word-spacing:-1.527600pt;}
.ws4e{word-spacing:-1.466496pt;}
.wseb{word-spacing:-1.405392pt;}
.ws87{word-spacing:-1.344288pt;}
.ws91{word-spacing:-1.283184pt;}
.ws50{word-spacing:-1.222080pt;}
.ws5a{word-spacing:-1.160976pt;}
.ws2d{word-spacing:-1.099872pt;}
.wsd9{word-spacing:-1.038768pt;}
.ws18{word-spacing:-0.977664pt;}
.ws41{word-spacing:-0.916560pt;}
.ws9c{word-spacing:-0.855456pt;}
.ws4c{word-spacing:-0.794352pt;}
.ws7{word-spacing:-0.743874pt;}
.wsbc{word-spacing:-0.733248pt;}
.wsca{word-spacing:-0.672144pt;}
.ws67{word-spacing:-0.611040pt;}
.ws74{word-spacing:-0.549936pt;}
.wsc3{word-spacing:-0.488832pt;}
.wsb{word-spacing:-0.478205pt;}
.ws4f{word-spacing:-0.427728pt;}
.ws44{word-spacing:-0.366624pt;}
.ws2e{word-spacing:-0.305520pt;}
.wsa{word-spacing:-0.265669pt;}
.ws15{word-spacing:-0.244416pt;}
.wsff{word-spacing:-0.239104pt;}
.ws2b{word-spacing:-0.183312pt;}
.ws2c{word-spacing:-0.122208pt;}
.wsd{word-spacing:-0.106268pt;}
.ws3e{word-spacing:-0.061104pt;}
.ws8{word-spacing:-0.053134pt;}
.ws1{word-spacing:-0.042507pt;}
.ws2{word-spacing:0.000000pt;}
.ws5{word-spacing:0.053134pt;}
.ws38{word-spacing:0.061104pt;}
.ws10{word-spacing:0.095642pt;}
.ws1d{word-spacing:0.122208pt;}
.wse{word-spacing:0.159402pt;}
.ws42{word-spacing:0.183312pt;}
.ws6{word-spacing:0.212535pt;}
.ws2f{word-spacing:0.244416pt;}
.ws3b{word-spacing:0.305520pt;}
.ws36{word-spacing:0.366624pt;}
.ws25{word-spacing:0.427728pt;}
.ws56{word-spacing:0.488832pt;}
.ws93{word-spacing:0.549936pt;}
.ws64{word-spacing:0.611040pt;}
.ws92{word-spacing:0.672144pt;}
.ws20{word-spacing:0.733248pt;}
.wsba{word-spacing:0.794352pt;}
.ws22{word-spacing:0.855456pt;}
.ws4d{word-spacing:0.916560pt;}
.ws24{word-spacing:0.977664pt;}
.wsa3{word-spacing:1.038768pt;}
.wsac{word-spacing:1.099872pt;}
.ws84{word-spacing:1.160976pt;}
.wsc5{word-spacing:1.222080pt;}
.ws65{word-spacing:1.344288pt;}
.ws117{word-spacing:1.405392pt;}
.wsa1{word-spacing:1.466496pt;}
.ws5f{word-spacing:1.527600pt;}
.ws17{word-spacing:1.588704pt;}
.ws62{word-spacing:1.649808pt;}
.ws61{word-spacing:1.710912pt;}
.wsae{word-spacing:1.772016pt;}
.ws75{word-spacing:1.833120pt;}
.ws7d{word-spacing:1.894224pt;}
.wsd8{word-spacing:1.955328pt;}
.wsd2{word-spacing:2.016432pt;}
.ws58{word-spacing:2.077536pt;}
.wsaf{word-spacing:2.138640pt;}
.ws34{word-spacing:2.199744pt;}
.ws85{word-spacing:2.260848pt;}
.ws89{word-spacing:2.321952pt;}
.ws8d{word-spacing:2.383056pt;}
.wsb8{word-spacing:2.444160pt;}
.ws45{word-spacing:2.505264pt;}
.ws8f{word-spacing:2.566368pt;}
.ws46{word-spacing:2.627472pt;}
.ws4{word-spacing:2.656693pt;}
.wsdc{word-spacing:2.688576pt;}
.ws4b{word-spacing:2.749680pt;}
.ws70{word-spacing:2.810784pt;}
.ws19{word-spacing:2.871888pt;}
.ws32{word-spacing:2.932992pt;}
.wsad{word-spacing:2.994096pt;}
.ws2a{word-spacing:3.055200pt;}
.wsbf{word-spacing:3.116304pt;}
.wsb3{word-spacing:3.238512pt;}
.ws8a{word-spacing:3.299616pt;}
.ws48{word-spacing:3.360720pt;}
.wsc{word-spacing:3.400567pt;}
.ws43{word-spacing:3.421824pt;}
.wsc8{word-spacing:3.482928pt;}
.wsa5{word-spacing:3.544032pt;}
.wscc{word-spacing:3.605136pt;}
.ws77{word-spacing:3.666240pt;}
.ws8b{word-spacing:3.727344pt;}
.ws27{word-spacing:3.788448pt;}
.ws23{word-spacing:3.849552pt;}
.ws1a{word-spacing:3.910656pt;}
.wsa0{word-spacing:3.971760pt;}
.wsc2{word-spacing:4.032864pt;}
.ws72{word-spacing:4.093968pt;}
.ws94{word-spacing:4.155072pt;}
.wsc9{word-spacing:4.216176pt;}
.wsa4{word-spacing:4.277280pt;}
.ws4a{word-spacing:4.338384pt;}
.wsaa{word-spacing:4.399488pt;}
.ws51{word-spacing:4.460592pt;}
.ws47{word-spacing:4.521696pt;}
.ws107{word-spacing:4.582800pt;}
.ws83{word-spacing:4.643904pt;}
.wsa8{word-spacing:4.705008pt;}
.ws6e{word-spacing:4.766112pt;}
.ws6b{word-spacing:4.827216pt;}
.ws9{word-spacing:4.835182pt;}
.wsd5{word-spacing:4.888320pt;}
.wsb2{word-spacing:4.949424pt;}
.wsb6{word-spacing:5.010528pt;}
.ws119{word-spacing:5.071632pt;}
.wsdb{word-spacing:5.132736pt;}
.wsb4{word-spacing:5.193840pt;}
.ws81{word-spacing:5.254944pt;}
.ws5d{word-spacing:5.316048pt;}
.ws29{word-spacing:5.377152pt;}
.ws69{word-spacing:5.438256pt;}
.ws90{word-spacing:5.560464pt;}
.ws16{word-spacing:5.621568pt;}
.ws54{word-spacing:5.682672pt;}
.ws3c{word-spacing:5.743776pt;}
.ws6c{word-spacing:5.804880pt;}
.wsbd{word-spacing:5.865984pt;}
.ws13{word-spacing:5.927088pt;}
.wscf{word-spacing:5.988192pt;}
.ws7b{word-spacing:6.049296pt;}
.wsb1{word-spacing:6.110400pt;}
.wscd{word-spacing:6.171504pt;}
.ws8e{word-spacing:6.232608pt;}
.wsa9{word-spacing:6.293712pt;}
.ws7e{word-spacing:6.354816pt;}
.wsc4{word-spacing:6.415920pt;}
.ws6d{word-spacing:6.477024pt;}
.wsdd{word-spacing:6.538128pt;}
.ws1e{word-spacing:6.599232pt;}
.ws3d{word-spacing:6.660336pt;}
.ws49{word-spacing:6.721440pt;}
.ws88{word-spacing:6.782544pt;}
.wsb9{word-spacing:6.843648pt;}
.wsa6{word-spacing:6.904752pt;}
.ws14{word-spacing:6.965856pt;}
.ws21{word-spacing:7.026960pt;}
.ws7a{word-spacing:7.088064pt;}
.ws1b{word-spacing:7.149168pt;}
.ws60{word-spacing:7.210272pt;}
.ws28{word-spacing:7.271376pt;}
.ws101{word-spacing:7.332480pt;}
.ws59{word-spacing:7.393584pt;}
.wsc1{word-spacing:7.454688pt;}
.ws3f{word-spacing:7.515792pt;}
.wsf1{word-spacing:7.576896pt;}
.ws86{word-spacing:7.638000pt;}
.wsf2{word-spacing:7.699104pt;}
.ws102{word-spacing:7.760208pt;}
.ws12{word-spacing:7.821312pt;}
.wsda{word-spacing:7.882416pt;}
.ws79{word-spacing:7.943520pt;}
.ws55{word-spacing:8.004624pt;}
.wsf5{word-spacing:8.065728pt;}
.ws40{word-spacing:8.126832pt;}
.ws82{word-spacing:8.187936pt;}
.ws26{word-spacing:8.249040pt;}
.ws11b{word-spacing:8.310144pt;}
.ws5c{word-spacing:8.371248pt;}
.wsec{word-spacing:8.432352pt;}
.wse0{word-spacing:8.554560pt;}
.wsc0{word-spacing:8.615664pt;}
.ws1c{word-spacing:8.676768pt;}
.wsef{word-spacing:8.737872pt;}
.ws7c{word-spacing:8.798976pt;}
.ws80{word-spacing:8.982288pt;}
.wse7{word-spacing:9.043392pt;}
.ws95{word-spacing:9.104496pt;}
.wsf3{word-spacing:9.165600pt;}
.ws6a{word-spacing:9.226704pt;}
.wsee{word-spacing:9.287808pt;}
.ws53{word-spacing:9.410016pt;}
.ws31{word-spacing:9.471120pt;}
.wse8{word-spacing:9.593328pt;}
.wse4{word-spacing:9.654432pt;}
.wse2{word-spacing:9.715536pt;}
.wsfb{word-spacing:9.837744pt;}
.wsab{word-spacing:9.898848pt;}
.ws68{word-spacing:9.959952pt;}
.wsce{word-spacing:10.082160pt;}
.ws97{word-spacing:10.143264pt;}
.wsfa{word-spacing:10.204368pt;}
.wsd6{word-spacing:10.265472pt;}
.wse3{word-spacing:10.387680pt;}
.ws112{word-spacing:10.570992pt;}
.wscb{word-spacing:10.632096pt;}
.ws99{word-spacing:10.693200pt;}
.ws39{word-spacing:10.754304pt;}
.wsfd{word-spacing:10.937616pt;}
.ws1f{word-spacing:10.998720pt;}
.wsf0{word-spacing:11.059824pt;}
.wsfc{word-spacing:11.120928pt;}
.ws71{word-spacing:11.182032pt;}
.ws10d{word-spacing:11.243136pt;}
.ws5b{word-spacing:11.304240pt;}
.ws9a{word-spacing:11.365344pt;}
.ws5e{word-spacing:11.670864pt;}
.ws57{word-spacing:11.793072pt;}
.ws106{word-spacing:11.854176pt;}
.wsed{word-spacing:11.976384pt;}
.ws10f{word-spacing:12.220800pt;}
.wsf4{word-spacing:12.281904pt;}
.ws6f{word-spacing:12.465216pt;}
.ws7f{word-spacing:12.526320pt;}
.ws63{word-spacing:12.831840pt;}
.wsf9{word-spacing:12.892944pt;}
.ws73{word-spacing:12.954048pt;}
.wsdf{word-spacing:13.015152pt;}
.ws115{word-spacing:13.320672pt;}
.wsa2{word-spacing:13.565088pt;}
.wsea{word-spacing:13.748400pt;}
.ws100{word-spacing:14.359440pt;}
.ws109{word-spacing:14.848272pt;}
.ws9b{word-spacing:14.970480pt;}
.ws0{word-spacing:15.005042pt;}
.ws10e{word-spacing:15.276000pt;}
.ws10a{word-spacing:15.337104pt;}
.wsf7{word-spacing:15.459312pt;}
.wse9{word-spacing:16.253664pt;}
.wse5{word-spacing:16.314768pt;}
.ws110{word-spacing:16.803600pt;}
.ws105{word-spacing:17.048016pt;}
.wse1{word-spacing:17.199459pt;}
.ws116{word-spacing:17.231328pt;}
.ws10b{word-spacing:17.292432pt;}
.ws10c{word-spacing:17.659056pt;}
.wsd4{word-spacing:19.797696pt;}
.ws3{word-spacing:24.813516pt;}
.ws113{word-spacing:25.419264pt;}
.wsc6{word-spacing:26.213616pt;}
.wsf6{word-spacing:31.712976pt;}
.ws96{word-spacing:44.605920pt;}
.ws108{word-spacing:46.988976pt;}
.ws11{word-spacing:69.005059pt;}
.wsfe{word-spacing:836.034896pt;}
.wsd0{word-spacing:838.328229pt;}
._3{margin-left:-11.017856pt;}
._1e{margin-left:-8.249040pt;}
._1{margin-left:-7.345237pt;}
._5{margin-left:-6.427083pt;}
._1a{margin-left:-4.949424pt;}
._2{margin-left:-3.672619pt;}
._7{margin-left:-2.597178pt;}
._9{margin-left:-1.328347pt;}
._0{width:1.232709pt;}
._34{width:2.855947pt;}
._35{width:4.054612pt;}
._38{width:5.101579pt;}
._37{width:6.856928pt;}
._36{width:8.427573pt;}
._32{width:11.335050pt;}
._27{width:13.005076pt;}
._28{width:14.037979pt;}
._6{width:15.036884pt;}
._b{width:16.418365pt;}
._8{width:17.374774pt;}
._15{width:18.948619pt;}
._a{width:19.872066pt;}
._1c{width:21.447504pt;}
._10{width:22.425168pt;}
._17{width:23.470315pt;}
._12{width:24.380496pt;}
._e{width:25.853371pt;}
._c{width:27.257674pt;}
._4{width:28.462795pt;}
._14{width:29.574336pt;}
._13{width:31.394190pt;}
._18{width:33.179472pt;}
._29{width:34.125253pt;}
._26{width:35.134800pt;}
._11{width:36.241051pt;}
._1d{width:37.725599pt;}
._21{width:38.984352pt;}
._f{width:40.663381pt;}
._23{width:41.795136pt;}
._25{width:43.245691pt;}
._1b{width:44.544816pt;}
._22{width:46.500144pt;}
._16{width:47.966640pt;}
._30{width:49.555344pt;}
._d{width:53.133867pt;}
._33{width:55.238016pt;}
._1f{width:57.161461pt;}
._19{width:59.881920pt;}
._2b{width:60.859584pt;}
._20{width:61.898352pt;}
._2c{width:63.181536pt;}
._2a{width:69.074133pt;}
._24{width:83.651376pt;}
._2d{width:87.500928pt;}
._2f{width:96.422112pt;}
._2e{width:103.571280pt;}
._31{width:114.936624pt;}
.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;}
.y50{bottom:36.718667pt;}
.yb9{bottom:36.970667pt;}
.y51{bottom:38.686667pt;}
.y132{bottom:76.781333pt;}
.y1ba{bottom:77.869333pt;}
.y25{bottom:78.552000pt;}
.yf3{bottom:80.652000pt;}
.y7b{bottom:87.497333pt;}
.yd7{bottom:87.688000pt;}
.y91{bottom:88.398667pt;}
.yed{bottom:88.589333pt;}
.yb7{bottom:89.300000pt;}
.y1e7{bottom:92.806667pt;}
.y1ed{bottom:93.708000pt;}
.y183{bottom:96.129333pt;}
.yef{bottom:96.145333pt;}
.y1d4{bottom:96.449333pt;}
.y14c{bottom:96.484000pt;}
.y1a1{bottom:97.030667pt;}
.yf1{bottom:97.046667pt;}
.y15a{bottom:97.385333pt;}
.y1b9{bottom:98.133333pt;}
.y24{bottom:98.816000pt;}
.yf2{bottom:100.916000pt;}
.y7a{bottom:107.761333pt;}
.yd6{bottom:107.952000pt;}
.y90{bottom:108.662667pt;}
.yec{bottom:108.853333pt;}
.yb6{bottom:109.564000pt;}
.y1e6{bottom:113.070667pt;}
.y1ec{bottom:113.972000pt;}
.y182{bottom:116.393333pt;}
.yee{bottom:116.409333pt;}
.y1d3{bottom:116.713333pt;}
.y14b{bottom:116.748000pt;}
.y1a0{bottom:117.294667pt;}
.yf0{bottom:117.310667pt;}
.y159{bottom:117.649333pt;}
.y1b8{bottom:118.397333pt;}
.y23{bottom:119.080000pt;}
.yb8{bottom:121.180000pt;}
.y79{bottom:128.025333pt;}
.yd5{bottom:128.216000pt;}
.y8f{bottom:128.926667pt;}
.yeb{bottom:129.117333pt;}
.yb5{bottom:129.828000pt;}
.y20d{bottom:133.234667pt;}
.y1e5{bottom:133.334667pt;}
.y1eb{bottom:134.236000pt;}
.y181{bottom:136.657333pt;}
.y11a{bottom:136.673333pt;}
.y1d2{bottom:136.977333pt;}
.y14a{bottom:137.012000pt;}
.y19f{bottom:137.558667pt;}
.y131{bottom:137.574667pt;}
.y158{bottom:137.913333pt;}
.y1b7{bottom:138.661333pt;}
.y22{bottom:139.344000pt;}
.y4f{bottom:141.444000pt;}
.y78{bottom:148.289333pt;}
.yd4{bottom:148.480000pt;}
.y8e{bottom:149.190667pt;}
.yea{bottom:149.381333pt;}
.yb4{bottom:150.092000pt;}
.y20c{bottom:153.498667pt;}
.y1e4{bottom:153.598667pt;}
.y1ea{bottom:154.500000pt;}
.y180{bottom:156.921333pt;}
.y119{bottom:156.937333pt;}
.y1d1{bottom:157.241333pt;}
.y149{bottom:157.276000pt;}
.y19e{bottom:157.822667pt;}
.y130{bottom:157.838667pt;}
.y157{bottom:158.177333pt;}
.y1b6{bottom:158.925333pt;}
.y21{bottom:159.608000pt;}
.y4e{bottom:161.708000pt;}
.y77{bottom:168.553333pt;}
.yd3{bottom:168.744000pt;}
.y8d{bottom:169.454667pt;}
.ye9{bottom:169.645333pt;}
.yb3{bottom:170.356000pt;}
.y20b{bottom:173.762667pt;}
.y1e3{bottom:173.862667pt;}
.y1e9{bottom:174.764000pt;}
.y17f{bottom:177.185333pt;}
.y118{bottom:177.201333pt;}
.y1d0{bottom:177.505333pt;}
.y148{bottom:177.540000pt;}
.y19d{bottom:178.086667pt;}
.y12f{bottom:178.102667pt;}
.y156{bottom:178.441333pt;}
.y1b5{bottom:179.189333pt;}
.y20{bottom:179.873333pt;}
.y4d{bottom:181.972000pt;}
.y76{bottom:188.817333pt;}
.yd2{bottom:189.008000pt;}
.y8c{bottom:189.718667pt;}
.ye8{bottom:189.909333pt;}
.yb2{bottom:190.620000pt;}
.y20a{bottom:194.026667pt;}
.y1e2{bottom:194.126667pt;}
.y1e8{bottom:195.028000pt;}
.y17e{bottom:197.449333pt;}
.y117{bottom:197.465333pt;}
.y1cf{bottom:197.769333pt;}
.y147{bottom:197.804000pt;}
.y19c{bottom:198.350667pt;}
.y12e{bottom:198.366667pt;}
.y155{bottom:198.705333pt;}
.y1b4{bottom:199.453333pt;}
.y1f{bottom:200.137333pt;}
.y4c{bottom:202.236000pt;}
.y75{bottom:209.081333pt;}
.yd1{bottom:209.272000pt;}
.y8b{bottom:209.982667pt;}
.ye7{bottom:210.173333pt;}
.yb1{bottom:210.884000pt;}
.y209{bottom:214.292000pt;}
.y17d{bottom:217.713333pt;}
.y116{bottom:217.729333pt;}
.y1ce{bottom:218.033333pt;}
.y146{bottom:218.068000pt;}
.y19b{bottom:218.614667pt;}
.y12d{bottom:218.630667pt;}
.y154{bottom:218.969333pt;}
.y1b3{bottom:219.717333pt;}
.y1e{bottom:220.401333pt;}
.y4b{bottom:222.500000pt;}
.y74{bottom:229.345333pt;}
.yd0{bottom:229.536000pt;}
.y8a{bottom:230.246667pt;}
.ye6{bottom:230.437333pt;}
.yb0{bottom:231.148000pt;}
.y1e1{bottom:231.233333pt;}
.y208{bottom:234.556000pt;}
.y17c{bottom:237.978667pt;}
.y115{bottom:237.993333pt;}
.y1cd{bottom:238.297333pt;}
.y145{bottom:238.332000pt;}
.y19a{bottom:238.880000pt;}
.y12c{bottom:238.894667pt;}
.y153{bottom:239.233333pt;}
.y1b2{bottom:239.981333pt;}
.y1d{bottom:240.665333pt;}
.y4a{bottom:242.764000pt;}
.y73{bottom:249.609333pt;}
.ycf{bottom:249.800000pt;}
.y89{bottom:250.510667pt;}
.ye5{bottom:250.701333pt;}
.yaf{bottom:251.412000pt;}
.y1e0{bottom:251.497333pt;}
.y207{bottom:254.820000pt;}
.y17b{bottom:258.242667pt;}
.y114{bottom:258.257333pt;}
.y1cc{bottom:258.561333pt;}
.y144{bottom:258.596000pt;}
.y199{bottom:259.144000pt;}
.y12b{bottom:259.158667pt;}
.y152{bottom:259.497333pt;}
.y1b1{bottom:260.245333pt;}
.y1c{bottom:260.929333pt;}
.y49{bottom:263.029333pt;}
.y15c{bottom:264.356000pt;}
.y72{bottom:269.873333pt;}
.yce{bottom:270.064000pt;}
.y88{bottom:270.774667pt;}
.ye4{bottom:270.965333pt;}
.yae{bottom:271.676000pt;}
.y1df{bottom:271.761333pt;}
.y206{bottom:275.084000pt;}
.y17a{bottom:278.506667pt;}
.y113{bottom:278.521333pt;}
.y1cb{bottom:278.825333pt;}
.y143{bottom:278.860000pt;}
.y198{bottom:279.408000pt;}
.y12a{bottom:279.422667pt;}
.y151{bottom:279.761333pt;}
.y1b0{bottom:280.509333pt;}
.y1b{bottom:281.193333pt;}
.y48{bottom:283.293333pt;}
.y71{bottom:290.137333pt;}
.ycd{bottom:290.328000pt;}
.y87{bottom:291.038667pt;}
.ye3{bottom:291.229333pt;}
.yad{bottom:291.940000pt;}
.y1de{bottom:292.025333pt;}
.y205{bottom:295.348000pt;}
.y179{bottom:298.770667pt;}
.y112{bottom:298.785333pt;}
.y1ca{bottom:299.089333pt;}
.y142{bottom:299.124000pt;}
.y197{bottom:299.672000pt;}
.y129{bottom:299.686667pt;}
.y150{bottom:300.025333pt;}
.y1af{bottom:300.773333pt;}
.y1a{bottom:301.457333pt;}
.y47{bottom:303.557333pt;}
.y70{bottom:310.402667pt;}
.ycc{bottom:310.593333pt;}
.y86{bottom:311.304000pt;}
.ye2{bottom:311.493333pt;}
.yac{bottom:312.204000pt;}
.y1dd{bottom:312.289333pt;}
.y204{bottom:315.612000pt;}
.y178{bottom:319.034667pt;}
.y111{bottom:319.049333pt;}
.y1c9{bottom:319.353333pt;}
.y141{bottom:319.388000pt;}
.y196{bottom:319.936000pt;}
.y128{bottom:319.950667pt;}
.y14f{bottom:320.289333pt;}
.y1ae{bottom:321.037333pt;}
.y46{bottom:323.821333pt;}
.y6f{bottom:330.666667pt;}
.ycb{bottom:330.857333pt;}
.y85{bottom:331.568000pt;}
.ye1{bottom:331.758667pt;}
.yab{bottom:332.469333pt;}
.y203{bottom:335.876000pt;}
.y177{bottom:339.298667pt;}
.y110{bottom:339.313333pt;}
.y1c8{bottom:339.617333pt;}
.y140{bottom:339.653333pt;}
.y195{bottom:340.200000pt;}
.y127{bottom:340.214667pt;}
.y14e{bottom:340.554667pt;}
.y1ad{bottom:341.301333pt;}
.y1dc{bottom:341.852000pt;}
.y45{bottom:344.085333pt;}
.y19{bottom:346.960000pt;}
.y6e{bottom:350.930667pt;}
.yca{bottom:351.121333pt;}
.y84{bottom:351.832000pt;}
.ye0{bottom:352.022667pt;}
.yaa{bottom:352.733333pt;}
.y202{bottom:356.140000pt;}
.y176{bottom:359.562667pt;}
.y10f{bottom:359.578667pt;}
.y1c7{bottom:359.881333pt;}
.y13f{bottom:359.917333pt;}
.y194{bottom:360.464000pt;}
.y126{bottom:360.478667pt;}
.y14d{bottom:360.818667pt;}
.y1ac{bottom:361.566667pt;}
.y44{bottom:364.349333pt;}
.y6d{bottom:371.194667pt;}
.yc9{bottom:371.385333pt;}
.y83{bottom:372.096000pt;}
.ydf{bottom:372.286667pt;}
.ya9{bottom:372.997333pt;}
.y201{bottom:376.404000pt;}
.y175{bottom:379.826667pt;}
.y10e{bottom:379.842667pt;}
.y1c6{bottom:380.146667pt;}
.y193{bottom:380.728000pt;}
.y125{bottom:380.744000pt;}
.y1ab{bottom:381.830667pt;}
.y18{bottom:383.558667pt;}
.y43{bottom:384.613333pt;}
.y6c{bottom:391.458667pt;}
.yc8{bottom:391.649333pt;}
.y82{bottom:392.360000pt;}
.yde{bottom:392.550667pt;}
.ya8{bottom:393.261333pt;}
.y1ff{bottom:396.668000pt;}
.y200{bottom:396.744000pt;}
.y1db{bottom:397.230667pt;}
.y17{bottom:400.070667pt;}
.y174{bottom:400.090667pt;}
.y10d{bottom:400.106667pt;}
.y1c5{bottom:400.410667pt;}
.y192{bottom:400.992000pt;}
.y124{bottom:401.008000pt;}
.y1aa{bottom:402.094667pt;}
.y42{bottom:404.877333pt;}
.y6b{bottom:411.722667pt;}
.yc7{bottom:411.913333pt;}
.y81{bottom:412.624000pt;}
.ydd{bottom:412.814667pt;}
.ya7{bottom:413.525333pt;}
.y1fe{bottom:416.932000pt;}
.y1da{bottom:417.494667pt;}
.y16{bottom:419.468000pt;}
.y173{bottom:420.354667pt;}
.y10c{bottom:420.370667pt;}
.y1c4{bottom:420.674667pt;}
.y191{bottom:421.256000pt;}
.y123{bottom:421.272000pt;}
.y1a9{bottom:422.358667pt;}
.y41{bottom:425.141333pt;}
.y6a{bottom:431.986667pt;}
.yc6{bottom:432.177333pt;}
.y80{bottom:432.888000pt;}
.ydc{bottom:433.078667pt;}
.ya6{bottom:433.789333pt;}
.y1fd{bottom:437.196000pt;}
.y1d9{bottom:437.758667pt;}
.y172{bottom:440.618667pt;}
.y10b{bottom:440.634667pt;}
.y1c3{bottom:440.938667pt;}
.y190{bottom:441.520000pt;}
.y122{bottom:441.536000pt;}
.y1a8{bottom:442.622667pt;}
.y40{bottom:445.405333pt;}
.y15{bottom:449.378667pt;}
.y69{bottom:452.250667pt;}
.yc5{bottom:452.441333pt;}
.y7f{bottom:453.152000pt;}
.ydb{bottom:453.342667pt;}
.ya5{bottom:454.053333pt;}
.y1fb{bottom:457.460000pt;}
.y1fc{bottom:457.537333pt;}
.y1d8{bottom:458.022667pt;}
.y171{bottom:460.882667pt;}
.y10a{bottom:460.898667pt;}
.y1c2{bottom:461.202667pt;}
.y18f{bottom:461.784000pt;}
.y121{bottom:461.800000pt;}
.y1a7{bottom:462.886667pt;}
.y3f{bottom:465.669333pt;}
.y68{bottom:472.514667pt;}
.yc4{bottom:472.705333pt;}
.y7e{bottom:473.416000pt;}
.yda{bottom:473.606667pt;}
.ya4{bottom:474.317333pt;}
.y1fa{bottom:477.724000pt;}
.y1d7{bottom:478.286667pt;}
.y14{bottom:480.848000pt;}
.y170{bottom:481.146667pt;}
.y109{bottom:481.162667pt;}
.y1c1{bottom:481.466667pt;}
.y18e{bottom:482.048000pt;}
.y120{bottom:482.064000pt;}
.y1a6{bottom:483.150667pt;}
.y3e{bottom:485.933333pt;}
.y67{bottom:492.778667pt;}
.yc3{bottom:492.969333pt;}
.y7d{bottom:493.680000pt;}
.yd9{bottom:493.870667pt;}
.ya3{bottom:494.581333pt;}
.y1f9{bottom:497.989333pt;}
.y1d6{bottom:498.550667pt;}
.y13{bottom:500.361333pt;}
.y16f{bottom:501.412000pt;}
.y108{bottom:501.426667pt;}
.y1c0{bottom:501.730667pt;}
.y18d{bottom:502.312000pt;}
.y11f{bottom:502.328000pt;}
.y1a5{bottom:503.414667pt;}
.y13e{bottom:505.296000pt;}
.y3d{bottom:506.197333pt;}
.y66{bottom:513.042667pt;}
.yc2{bottom:513.233333pt;}
.y7c{bottom:513.944000pt;}
.yd8{bottom:514.134667pt;}
.ya2{bottom:514.845333pt;}
.y1d5{bottom:517.914667pt;}
.y1f8{bottom:518.253333pt;}
.y12{bottom:519.874667pt;}
.y16e{bottom:521.676000pt;}
.y107{bottom:521.690667pt;}
.y1bf{bottom:521.994667pt;}
.y18c{bottom:522.577333pt;}
.y11e{bottom:522.592000pt;}
.y1a4{bottom:523.678667pt;}
.y13d{bottom:525.561333pt;}
.y3c{bottom:526.461333pt;}
.y99{bottom:534.208000pt;}
.ya1{bottom:535.109333pt;}
.y1f7{bottom:538.517333pt;}
.y11{bottom:539.388000pt;}
.y16d{bottom:541.940000pt;}
.y106{bottom:541.954667pt;}
.y1be{bottom:542.258667pt;}
.y18b{bottom:542.841333pt;}
.y11d{bottom:542.856000pt;}
.y1a3{bottom:543.942667pt;}
.y13c{bottom:545.825333pt;}
.y3b{bottom:546.726667pt;}
.y65{bottom:550.149333pt;}
.yc1{bottom:550.338667pt;}
.y98{bottom:554.472000pt;}
.ya0{bottom:555.373333pt;}
.y1f6{bottom:558.781333pt;}
.y10{bottom:558.901333pt;}
.y16c{bottom:562.204000pt;}
.y105{bottom:562.218667pt;}
.y1bd{bottom:562.522667pt;}
.y18a{bottom:563.105333pt;}
.y11c{bottom:563.120000pt;}
.y1a2{bottom:563.305333pt;}
.y13b{bottom:566.089333pt;}
.y3a{bottom:566.990667pt;}
.y64{bottom:570.413333pt;}
.yc0{bottom:570.604000pt;}
.y97{bottom:574.736000pt;}
.y9f{bottom:575.637333pt;}
.yf{bottom:578.416000pt;}
.y1f5{bottom:579.045333pt;}
.y1bc{bottom:581.885333pt;}
.y16b{bottom:582.468000pt;}
.y104{bottom:582.482667pt;}
.y189{bottom:583.369333pt;}
.y11b{bottom:583.384000pt;}
.y13a{bottom:586.353333pt;}
.y39{bottom:587.254667pt;}
.y63{bottom:590.677333pt;}
.ybf{bottom:590.868000pt;}
.y96{bottom:595.001333pt;}
.y9e{bottom:595.902667pt;}
.ye{bottom:597.929333pt;}
.y1f4{bottom:599.309333pt;}
.y1bb{bottom:602.149333pt;}
.y16a{bottom:602.732000pt;}
.y188{bottom:603.633333pt;}
.y139{bottom:606.617333pt;}
.y38{bottom:607.518667pt;}
.y62{bottom:610.941333pt;}
.ybe{bottom:611.132000pt;}
.y95{bottom:615.265333pt;}
.y9d{bottom:616.166667pt;}
.yd{bottom:617.442667pt;}
.y1f3{bottom:619.573333pt;}
.y169{bottom:622.996000pt;}
.y187{bottom:623.897333pt;}
.y138{bottom:626.881333pt;}
.y37{bottom:627.782667pt;}
.y61{bottom:631.205333pt;}
.ybd{bottom:631.396000pt;}
.y94{bottom:635.529333pt;}
.y9c{bottom:636.430667pt;}
.yc{bottom:636.956000pt;}
.y1f2{bottom:639.837333pt;}
.y168{bottom:643.260000pt;}
.y186{bottom:644.161333pt;}
.y137{bottom:647.145333pt;}
.y36{bottom:648.046667pt;}
.y60{bottom:651.469333pt;}
.ybc{bottom:651.660000pt;}
.y93{bottom:655.793333pt;}
.yb{bottom:656.469333pt;}
.y9b{bottom:656.694667pt;}
.y1f1{bottom:660.101333pt;}
.y167{bottom:663.524000pt;}
.y185{bottom:664.425333pt;}
.y136{bottom:667.409333pt;}
.y35{bottom:668.310667pt;}
.y5f{bottom:671.733333pt;}
.ya{bottom:675.982667pt;}
.y92{bottom:676.057333pt;}
.y9a{bottom:676.958667pt;}
.y1f0{bottom:680.365333pt;}
.ybb{bottom:681.222667pt;}
.y166{bottom:683.788000pt;}
.y184{bottom:684.689333pt;}
.y135{bottom:687.673333pt;}
.y34{bottom:688.574667pt;}
.y5e{bottom:691.997333pt;}
.y9{bottom:695.497333pt;}
.yfb{bottom:696.321333pt;}
.y103{bottom:697.222667pt;}
.y1ef{bottom:700.629333pt;}
.yba{bottom:700.961333pt;}
.y134{bottom:707.937333pt;}
.y33{bottom:708.838667pt;}
.y5d{bottom:712.261333pt;}
.y8{bottom:715.010667pt;}
.yfa{bottom:716.585333pt;}
.y102{bottom:717.486667pt;}
.y165{bottom:720.893333pt;}
.y133{bottom:728.201333pt;}
.y32{bottom:729.102667pt;}
.y7{bottom:734.524000pt;}
.yf9{bottom:736.849333pt;}
.y101{bottom:737.750667pt;}
.y164{bottom:741.157333pt;}
.y5c{bottom:748.465333pt;}
.y31{bottom:749.366667pt;}
.y6{bottom:754.037333pt;}
.yf8{bottom:757.113333pt;}
.y100{bottom:758.014667pt;}
.y163{bottom:761.422667pt;}
.y5b{bottom:768.729333pt;}
.y30{bottom:769.630667pt;}
.yf7{bottom:777.377333pt;}
.yff{bottom:778.278667pt;}
.y162{bottom:781.686667pt;}
.y5a{bottom:788.993333pt;}
.y2f{bottom:789.894667pt;}
.yf6{bottom:797.641333pt;}
.yfe{bottom:798.542667pt;}
.y161{bottom:801.950667pt;}
.y59{bottom:809.258667pt;}
.y2e{bottom:810.160000pt;}
.y5{bottom:815.970667pt;}
.yf5{bottom:817.905333pt;}
.yfd{bottom:818.806667pt;}
.y160{bottom:822.214667pt;}
.y58{bottom:829.522667pt;}
.y2d{bottom:830.424000pt;}
.y15b{bottom:830.500000pt;}
.yf4{bottom:838.169333pt;}
.yfc{bottom:839.070667pt;}
.y15f{bottom:842.478667pt;}
.y57{bottom:849.786667pt;}
.y2c{bottom:850.688000pt;}
.y1ee{bottom:851.777333pt;}
.y4{bottom:852.753333pt;}
.y15e{bottom:862.742667pt;}
.y56{bottom:870.050667pt;}
.y2b{bottom:870.952000pt;}
.y3{bottom:885.776000pt;}
.y55{bottom:890.314667pt;}
.y2a{bottom:891.216000pt;}
.y15d{bottom:892.305333pt;}
.y20e{bottom:894.760000pt;}
.y54{bottom:910.578667pt;}
.y29{bottom:911.480000pt;}
.y53{bottom:930.842667pt;}
.y28{bottom:931.744000pt;}
.y52{bottom:951.106667pt;}
.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.715502pt;}
.hb{height:41.917344pt;}
.h8{height:42.039552pt;}
.hc{height:42.343552pt;}
.h3{height:47.523004pt;}
.h7{height:47.730226pt;}
.h2{height:63.169041pt;}
.ha{height:81.251067pt;}
.h9{height:82.259067pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:112.117333pt;}
.xc{left:113.385333pt;}
.x3{left:123.262667pt;}
.x11{left:134.286667pt;}
.xd{left:136.062667pt;}
.x1e{left:147.329333pt;}
.x7{left:156.973333pt;}
.x6{left:158.261333pt;}
.x1a{left:160.850667pt;}
.xa{left:162.052000pt;}
.x12{left:169.769333pt;}
.x19{left:202.414667pt;}
.x1d{left:203.376000pt;}
.x1c{left:206.346667pt;}
.x4{left:225.498667pt;}
.x9{left:240.458667pt;}
.x16{left:276.433333pt;}
.x13{left:280.261333pt;}
.x1b{left:282.240000pt;}
.x5{left:358.785333pt;}
.x8{left:364.560000pt;}
.xb{left:384.740000pt;}
.x15{left:397.898667pt;}
.xf{left:402.290667pt;}
.x18{left:410.720000pt;}
.xe{left:412.752000pt;}
.x14{left:435.429333pt;}
.x2{left:510.021333pt;}
.x10{left:513.840000pt;}
.x1{left:618.953333pt;}
}




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