
    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_1f09e692a7facfba53318fca.woff')format("woff");}.ff1{font-family:ff1;line-height:0.900000;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_326ceaa7e498734f7971b941.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_785b0926a0b6036a243ae1bf.woff')format("woff");}.ff3{font-family:ff3;line-height:0.892000;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);}
.m24{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);}
.m0{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);}
.m1a{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);}
.m25{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.m7{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);}
.m6{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);}
.m1e{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);}
.m15{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);}
.m1d{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);}
.m23{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);}
.mb{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);}
.m14{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);}
.m1c{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);}
.m22{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.md{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);}
.m18{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);}
.m10{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m12{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);}
.m28{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);}
.m29{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);}
.m19{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m13{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);}
.m21{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m5{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);}
.m9{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);}
.m4{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);}
.m8{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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:35.865600px;}
.ls4{letter-spacing:1272.092400px;}
.ls3{letter-spacing:1274.606400px;}
.ls2{letter-spacing:2178.410400px;}
.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;}
}
.ws10{word-spacing:-40.743322px;}
.wse{word-spacing:-37.371955px;}
.ws1d{word-spacing:-37.180650px;}
.ws2{word-spacing:-25.823100px;}
.ws13{word-spacing:-18.650112px;}
.ws30{word-spacing:-17.932800px;}
.ws11{word-spacing:-3.586560px;}
.ws5f{word-spacing:-3.514829px;}
.ws96{word-spacing:-3.299635px;}
.ws19{word-spacing:-3.227904px;}
.ws18{word-spacing:-3.084442px;}
.ws75{word-spacing:-2.797517px;}
.ws71{word-spacing:-2.725786px;}
.wsa2{word-spacing:-2.654054px;}
.ws16{word-spacing:-2.510592px;}
.ws41{word-spacing:-2.438861px;}
.ws83{word-spacing:-2.151936px;}
.ws7e{word-spacing:-2.080205px;}
.ws91{word-spacing:-2.008474px;}
.ws4c{word-spacing:-1.936742px;}
.wsac{word-spacing:-1.865011px;}
.ws63{word-spacing:-1.793280px;}
.wsa0{word-spacing:-1.721549px;}
.wsa1{word-spacing:-1.649818px;}
.ws3c{word-spacing:-1.578086px;}
.ws36{word-spacing:-1.506355px;}
.ws17{word-spacing:-1.434624px;}
.ws7b{word-spacing:-1.362893px;}
.ws37{word-spacing:-1.291162px;}
.ws52{word-spacing:-1.219430px;}
.ws43{word-spacing:-1.147699px;}
.ws34{word-spacing:-1.075968px;}
.ws27{word-spacing:-1.004237px;}
.ws89{word-spacing:-0.932506px;}
.ws70{word-spacing:-0.860774px;}
.ws2a{word-spacing:-0.789043px;}
.ws2b{word-spacing:-0.717312px;}
.ws45{word-spacing:-0.573850px;}
.ws31{word-spacing:-0.502118px;}
.ws1f{word-spacing:-0.430387px;}
.ws9c{word-spacing:-0.413170px;}
.ws7f{word-spacing:-0.392728px;}
.ws3{word-spacing:-0.358656px;}
.ws8{word-spacing:-0.286925px;}
.ws80{word-spacing:-0.261818px;}
.ws21{word-spacing:-0.215194px;}
.ws72{word-spacing:-0.144222px;}
.ws1e{word-spacing:-0.143462px;}
.ws86{word-spacing:-0.130909px;}
.ws5{word-spacing:-0.071731px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.071731px;}
.ws6{word-spacing:0.143462px;}
.wsb{word-spacing:0.215194px;}
.ws4{word-spacing:0.286925px;}
.ws93{word-spacing:0.327273px;}
.ws1a{word-spacing:0.358656px;}
.ws4b{word-spacing:0.430387px;}
.ws60{word-spacing:0.502118px;}
.ws5c{word-spacing:0.573850px;}
.ws0{word-spacing:0.594890px;}
.ws5d{word-spacing:0.645581px;}
.ws7{word-spacing:0.717312px;}
.ws53{word-spacing:0.789043px;}
.ws42{word-spacing:0.860774px;}
.wsab{word-spacing:0.932506px;}
.wsb4{word-spacing:1.004237px;}
.ws3b{word-spacing:1.147699px;}
.ws98{word-spacing:1.219430px;}
.ws84{word-spacing:1.291162px;}
.ws61{word-spacing:1.362893px;}
.ws9{word-spacing:1.434624px;}
.ws2c{word-spacing:1.506355px;}
.ws5b{word-spacing:1.578086px;}
.wsd{word-spacing:1.721549px;}
.ws40{word-spacing:1.793280px;}
.ws3a{word-spacing:1.865011px;}
.ws44{word-spacing:1.936742px;}
.ws65{word-spacing:2.008474px;}
.ws25{word-spacing:2.151936px;}
.ws78{word-spacing:2.223667px;}
.ws94{word-spacing:2.356366px;}
.ws6e{word-spacing:2.367130px;}
.ws4e{word-spacing:2.438861px;}
.ws62{word-spacing:2.510592px;}
.ws29{word-spacing:2.582323px;}
.ws2e{word-spacing:2.654054px;}
.ws47{word-spacing:2.725786px;}
.ws33{word-spacing:2.797517px;}
.ws22{word-spacing:2.869248px;}
.ws73{word-spacing:2.940979px;}
.wsb2{word-spacing:3.012710px;}
.ws7a{word-spacing:3.084442px;}
.ws38{word-spacing:3.156173px;}
.ws59{word-spacing:3.227904px;}
.ws58{word-spacing:3.299635px;}
.ws6d{word-spacing:3.443098px;}
.ws26{word-spacing:3.514829px;}
.ws48{word-spacing:3.586560px;}
.ws51{word-spacing:3.658291px;}
.ws54{word-spacing:3.801754px;}
.ws32{word-spacing:3.873485px;}
.ws4d{word-spacing:4.016947px;}
.ws35{word-spacing:4.088678px;}
.ws6b{word-spacing:4.160410px;}
.ws39{word-spacing:4.232141px;}
.ws64{word-spacing:4.303872px;}
.ws23{word-spacing:4.447334px;}
.wsc4{word-spacing:4.519066px;}
.ws74{word-spacing:4.662528px;}
.ws3e{word-spacing:4.734259px;}
.ws9f{word-spacing:4.805990px;}
.ws3f{word-spacing:4.877722px;}
.ws6a{word-spacing:4.949453px;}
.ws5a{word-spacing:5.092915px;}
.ws56{word-spacing:5.164646px;}
.ws1b{word-spacing:5.236378px;}
.ws8a{word-spacing:5.308109px;}
.wsa{word-spacing:5.379840px;}
.ws97{word-spacing:5.451571px;}
.ws50{word-spacing:5.666765px;}
.ws9d{word-spacing:5.738496px;}
.ws20{word-spacing:5.810227px;}
.ws76{word-spacing:6.025421px;}
.ws4f{word-spacing:6.097152px;}
.ws8d{word-spacing:6.240614px;}
.ws7c{word-spacing:6.384077px;}
.ws85{word-spacing:6.455808px;}
.ws2f{word-spacing:6.527539px;}
.wsae{word-spacing:6.671002px;}
.ws88{word-spacing:6.742733px;}
.ws77{word-spacing:6.814464px;}
.ws49{word-spacing:6.886195px;}
.ws4a{word-spacing:6.957926px;}
.wsc7{word-spacing:7.173120px;}
.ws57{word-spacing:7.316582px;}
.ws92{word-spacing:7.330915px;}
.wsa3{word-spacing:7.388314px;}
.ws9a{word-spacing:7.818701px;}
.wsaf{word-spacing:7.886563px;}
.wsaa{word-spacing:7.889894px;}
.ws28{word-spacing:7.890432px;}
.ws99{word-spacing:8.033894px;}
.ws2d{word-spacing:8.105626px;}
.ws82{word-spacing:8.177357px;}
.ws8b{word-spacing:8.320819px;}
.wsb3{word-spacing:8.464282px;}
.ws9b{word-spacing:8.751206px;}
.wsb1{word-spacing:9.396787px;}
.ws69{word-spacing:9.540250px;}
.ws3d{word-spacing:9.683712px;}
.ws46{word-spacing:9.898906px;}
.ws1c{word-spacing:9.970637px;}
.wsc0{word-spacing:10.114099px;}
.ws24{word-spacing:10.185830px;}
.wsa4{word-spacing:11.190067px;}
.wsa5{word-spacing:11.261798px;}
.wsc6{word-spacing:12.337766px;}
.wsb7{word-spacing:13.557197px;}
.wsc5{word-spacing:14.059315px;}
.wsb5{word-spacing:15.780864px;}
.wsf{word-spacing:17.932800px;}
.wsc3{word-spacing:18.793574px;}
.ws95{word-spacing:19.963653px;}
.wsa8{word-spacing:20.730317px;}
.wsa7{word-spacing:21.949747px;}
.wsbe{word-spacing:22.953984px;}
.wsb0{word-spacing:34.430976px;}
.wsc2{word-spacing:40.958515px;}
.wsa6{word-spacing:44.473344px;}
.wsc1{word-spacing:45.549312px;}
.wsbf{word-spacing:46.553549px;}
.wsb8{word-spacing:52.005120px;}
.ws8e{word-spacing:52.410184px;}
.wsbc{word-spacing:53.654938px;}
.ws14{word-spacing:53.798400px;}
.ws90{word-spacing:54.568803px;}
.ws8f{word-spacing:55.256401px;}
.ws67{word-spacing:64.557900px;}
.wsba{word-spacing:67.642522px;}
.wsb9{word-spacing:72.520243px;}
.wsa9{word-spacing:74.743910px;}
.wsbd{word-spacing:180.260506px;}
.wsbb{word-spacing:180.277882px;}
.ws8c{word-spacing:450.996000px;}
.ws87{word-spacing:453.510000px;}
.ws6c{word-spacing:547.758000px;}
.ws66{word-spacing:553.140000px;}
.ws7d{word-spacing:556.800000px;}
.ws81{word-spacing:559.314000px;}
.ws5e{word-spacing:1029.576000px;}
.ws6f{word-spacing:1208.421744px;}
.ws68{word-spacing:1208.427744px;}
.ws79{word-spacing:1213.887744px;}
.ws55{word-spacing:1223.676000px;}
.ws12{word-spacing:2010.845779px;}
.ws9e{word-spacing:2170.590000px;}
.ws15{word-spacing:2192.033741px;}
.wsad{word-spacing:2206.668000px;}
.wsb6{word-spacing:2206.669210px;}
._1f{margin-left:-36.941568px;}
._e{margin-left:-35.865600px;}
._10{margin-left:-17.932800px;}
._0{margin-left:-16.508209px;}
._a{margin-left:-13.682479px;}
._4a{margin-left:-11.465456px;}
._4d{margin-left:-10.386667px;}
._4c{margin-left:-8.335207px;}
._3{margin-left:-6.886176px;}
._14{margin-left:-5.738496px;}
._3a{margin-left:-4.734259px;}
._6{margin-left:-3.672660px;}
._2{margin-left:-2.151930px;}
._5{margin-left:-1.032924px;}
._4f{width:1.004225px;}
._51{width:2.826216px;}
._54{width:3.988242px;}
._20{width:6.240614px;}
._59{width:10.759680px;}
._3c{width:14.432328px;}
._3f{width:15.493939px;}
._13{width:17.215482px;}
._15{width:18.650118px;}
._35{width:20.658649px;}
._8{width:21.677191px;}
._7{width:22.810522px;}
._3b{width:23.886490px;}
._9{width:24.890726px;}
._36{width:25.894951px;}
._4{width:27.114318px;}
._4e{width:28.118624px;}
._16{width:29.122867px;}
._34{width:30.787048px;}
._1{width:32.020644px;}
._28{width:33.598907px;}
._39{width:34.631807px;}
._2e{width:35.865600px;}
._1d{width:36.869837px;}
._52{width:38.103636px;}
._f{width:39.452160px;}
._2d{width:41.561046px;}
._32{width:42.751789px;}
._29{width:43.928188px;}
._55{width:45.477581px;}
._25{width:46.912211px;}
._26{width:49.308022px;}
._1e{width:50.570496px;}
._19{width:52.435507px;}
._30{width:54.013588px;}
._2b{width:56.222879px;}
._33{width:58.460928px;}
._53{width:62.560683px;}
._21{width:63.625568px;}
._23{width:64.916736px;}
._57{width:66.781741px;}
._1b{width:67.958140px;}
._18{width:69.062795px;}
._2a{width:70.224845px;}
._c{width:71.731200px;}
._22{width:72.735437px;}
._12{width:75.317760px;}
._5c{width:76.471419px;}
._5b{width:77.828352px;}
._2f{width:85.360128px;}
._11{width:86.436096px;}
._58{width:91.980038px;}
._56{width:96.693658px;}
._5e{width:100.136749px;}
._37{width:103.292400px;}
._31{width:107.596800px;}
._17{width:122.301696px;}
._5a{width:136.647936px;}
._61{width:158.023828px;}
._60{width:172.298342px;}
._5f{width:175.311053px;}
._27{width:206.026363px;}
._5d{width:257.945389px;}
._24{width:357.293101px;}
._1c{width:374.422470px;}
._3e{width:847.218067px;}
._1a{width:852.181007px;}
._4b{width:918.792851px;}
._d{width:1076.972231px;}
._44{width:1214.767584px;}
._40{width:1304.964982px;}
._48{width:1376.722259px;}
._49{width:1415.545805px;}
._45{width:1555.419053px;}
._47{width:1558.532182px;}
._46{width:1571.486842px;}
._42{width:1622.848973px;}
._50{width:1680.592589px;}
._3d{width:1726.054367px;}
._38{width:1815.445805px;}
._43{width:1897.852037px;}
._41{width:1929.643315px;}
._2c{width:2064.926054px;}
._b{width:2138.880916px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:65.454600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs1{font-size:103.292400px;}
.fs0{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y9{bottom:153.636000px;}
.y181{bottom:154.119000px;}
.yac{bottom:156.096000px;}
.y2c2{bottom:157.089000px;}
.y179{bottom:160.005000px;}
.y1ae{bottom:160.618500px;}
.y60{bottom:161.133000px;}
.y202{bottom:162.091500px;}
.y26a{bottom:162.331500px;}
.y1f1{bottom:162.438000px;}
.y11c{bottom:166.374000px;}
.y23a{bottom:166.690500px;}
.y29e{bottom:168.147000px;}
.y2e{bottom:173.071500px;}
.y2e6{bottom:173.620500px;}
.y2c1{bottom:176.592000px;}
.y130{bottom:179.031000px;}
.y180{bottom:181.009500px;}
.yab{bottom:182.988000px;}
.y164{bottom:186.660000px;}
.y178{bottom:186.895500px;}
.y29d{bottom:187.648500px;}
.y5f{bottom:188.023500px;}
.y224{bottom:188.166000px;}
.y201{bottom:188.982000px;}
.y269{bottom:189.222000px;}
.y1f0{bottom:189.330000px;}
.y274{bottom:189.919500px;}
.y190{bottom:191.577000px;}
.y2e5{bottom:193.122000px;}
.y11b{bottom:193.264500px;}
.y239{bottom:193.581000px;}
.y1ca{bottom:193.938000px;}
.y2c0{bottom:196.093500px;}
.y2d{bottom:199.962000px;}
.y218{bottom:200.182500px;}
.yfa{bottom:204.864000px;}
.y257{bottom:205.588500px;}
.y12f{bottom:205.921500px;}
.yc5{bottom:206.191500px;}
.y29c{bottom:207.151500px;}
.y17f{bottom:207.900000px;}
.y93{bottom:208.207500px;}
.yaa{bottom:209.878500px;}
.y1d9{bottom:212.430000px;}
.y163{bottom:213.550500px;}
.y177{bottom:213.786000px;}
.y5e{bottom:214.914000px;}
.y223{bottom:215.058000px;}
.y200{bottom:215.872500px;}
.y268{bottom:216.112500px;}
.y1ef{bottom:216.220500px;}
.y273{bottom:216.810000px;}
.y1e5{bottom:216.879000px;}
.y18f{bottom:218.469000px;}
.y238{bottom:220.471500px;}
.y23c{bottom:222.445500px;}
.y205{bottom:224.823000px;}
.y2e4{bottom:226.675500px;}
.y2c{bottom:226.852500px;}
.y1a8{bottom:227.754000px;}
.y1c9{bottom:230.148000px;}
.y2bf{bottom:230.539500px;}
.yf9{bottom:231.754500px;}
.y256{bottom:232.479000px;}
.y12e{bottom:232.813500px;}
.y1d8{bottom:234.099000px;}
.y17e{bottom:234.790500px;}
.y92{bottom:235.099500px;}
.y217{bottom:236.391000px;}
.ydb{bottom:236.769000px;}
.y1bd{bottom:238.807500px;}
.y162{bottom:240.441000px;}
.y176{bottom:240.676500px;}
.y106{bottom:241.413000px;}
.y29b{bottom:241.596000px;}
.y5d{bottom:241.804500px;}
.y222{bottom:241.948500px;}
.y1ff{bottom:242.763000px;}
.y267{bottom:243.003000px;}
.y1ee{bottom:243.111000px;}
.y272{bottom:243.700500px;}
.y1e4{bottom:243.771000px;}
.y18e{bottom:245.359500px;}
.y2e3{bottom:246.177000px;}
.yc4{bottom:248.026500px;}
.y2be{bottom:250.041000px;}
.y1c8{bottom:250.471500px;}
.ya9{bottom:251.713500px;}
.y2b{bottom:253.743000px;}
.y1a7{bottom:254.644500px;}
.y216{bottom:256.714500px;}
.yf8{bottom:258.645000px;}
.y255{bottom:259.371000px;}
.y12d{bottom:259.704000px;}
.y29a{bottom:261.099000px;}
.y91{bottom:261.990000px;}
.y237{bottom:262.306500px;}
.yda{bottom:263.659500px;}
.y1bc{bottom:265.698000px;}
.y161{bottom:267.333000px;}
.y175{bottom:267.568500px;}
.y5c{bottom:268.696500px;}
.y221{bottom:268.839000px;}
.y2bd{bottom:269.542500px;}
.y1fe{bottom:269.653500px;}
.y266{bottom:269.895000px;}
.y1ed{bottom:270.001500px;}
.y271{bottom:270.592500px;}
.y1e3{bottom:270.661500px;}
.y17d{bottom:273.786000px;}
.yc3{bottom:274.917000px;}
.y215{bottom:277.038000px;}
.ya8{bottom:278.604000px;}
.y2e2{bottom:279.732000px;}
.y299{bottom:280.600500px;}
.y2a{bottom:280.635000px;}
.y18d{bottom:284.355000px;}
.yf7{bottom:285.535500px;}
.y254{bottom:286.261500px;}
.y12c{bottom:286.594500px;}
.y90{bottom:288.880500px;}
.y236{bottom:289.197000px;}
.yd9{bottom:290.551500px;}
.y8{bottom:291.363000px;}
.y148{bottom:292.012500px;}
.y1bb{bottom:292.588500px;}
.y160{bottom:294.223500px;}
.y174{bottom:294.459000px;}
.y5b{bottom:295.587000px;}
.y220{bottom:295.729500px;}
.y1fd{bottom:296.545500px;}
.y265{bottom:296.785500px;}
.y1ec{bottom:296.893500px;}
.y270{bottom:297.483000px;}
.y1e2{bottom:297.552000px;}
.y2e1{bottom:299.233500px;}
.yc2{bottom:301.809000px;}
.y2bc{bottom:303.988500px;}
.ya7{bottom:305.494500px;}
.y29{bottom:307.525500px;}
.yf6{bottom:312.426000px;}
.y253{bottom:313.152000px;}
.y12b{bottom:313.485000px;}
.y298{bottom:315.045000px;}
.y8f{bottom:315.771000px;}
.y235{bottom:316.087500px;}
.yd8{bottom:317.442000px;}
.y147{bottom:318.903000px;}
.y1ba{bottom:319.480500px;}
.y15f{bottom:321.114000px;}
.y173{bottom:321.349500px;}
.y127{bottom:321.675000px;}
.y5a{bottom:322.477500px;}
.y21f{bottom:322.620000px;}
.y1fc{bottom:323.436000px;}
.y264{bottom:323.676000px;}
.y1a6{bottom:323.902500px;}
.y26f{bottom:324.373500px;}
.y1e1{bottom:324.442500px;}
.y7{bottom:324.744000px;}
.yc1{bottom:328.699500px;}
.ya6{bottom:332.385000px;}
.y2e0{bottom:332.787000px;}
.y28{bottom:334.416000px;}
.y18c{bottom:336.297000px;}
.y105{bottom:336.417000px;}
.y137{bottom:338.373000px;}
.y2bb{bottom:338.433000px;}
.yf5{bottom:339.318000px;}
.y1eb{bottom:342.343500px;}
.y8e{bottom:342.663000px;}
.y156{bottom:342.679500px;}
.y234{bottom:342.979500px;}
.yd7{bottom:344.332500px;}
.y146{bottom:345.793500px;}
.y1b9{bottom:346.371000px;}
.y17c{bottom:347.418000px;}
.y15e{bottom:348.004500px;}
.y126{bottom:348.565500px;}
.y59{bottom:349.368000px;}
.y297{bottom:349.491000px;}
.y21e{bottom:349.512000px;}
.y1fb{bottom:350.326500px;}
.y1e0{bottom:351.334500px;}
.y2df{bottom:352.288500px;}
.y252{bottom:354.987000px;}
.yc0{bottom:355.590000px;}
.y6{bottom:358.126500px;}
.yed{bottom:359.277000px;}
.y1a5{bottom:360.111000px;}
.y27{bottom:361.306500px;}
.y172{bottom:363.184500px;}
.y104{bottom:363.309000px;}
.y136{bottom:365.263500px;}
.y263{bottom:365.511000px;}
.yf4{bottom:366.208500px;}
.y242{bottom:366.873000px;}
.y296{bottom:368.992500px;}
.y8d{bottom:369.553500px;}
.y155{bottom:369.571500px;}
.y233{bottom:369.870000px;}
.y1a1{bottom:370.257000px;}
.yd6{bottom:371.223000px;}
.y2de{bottom:371.790000px;}
.y145{bottom:372.684000px;}
.y2ba{bottom:372.879000px;}
.y1b8{bottom:373.261500px;}
.y204{bottom:374.220000px;}
.y58{bottom:376.260000px;}
.y21d{bottom:376.402500px;}
.y1fa{bottom:377.217000px;}
.ya5{bottom:377.836500px;}
.y1df{bottom:378.225000px;}
.y251{bottom:381.877500px;}
.ybf{bottom:382.480500px;}
.y12a{bottom:382.743000px;}
.y17b{bottom:383.626500px;}
.y26{bottom:388.198500px;}
.y15d{bottom:389.839500px;}
.y171{bottom:390.075000px;}
.y103{bottom:390.199500px;}
.y125{bottom:390.400500px;}
.y135{bottom:392.155500px;}
.y262{bottom:392.401500px;}
.y47{bottom:393.091500px;}
.yf3{bottom:393.099000px;}
.y241{bottom:393.763500px;}
.y11a{bottom:396.444000px;}
.y154{bottom:396.462000px;}
.y232{bottom:396.760500px;}
.y1a0{bottom:397.147500px;}
.yd5{bottom:398.115000px;}
.y144{bottom:399.574500px;}
.y1b7{bottom:400.152000px;}
.y1d5{bottom:400.515000px;}
.yec{bottom:401.112000px;}
.y57{bottom:403.150500px;}
.y21c{bottom:403.293000px;}
.y295{bottom:403.438500px;}
.y1f9{bottom:404.109000px;}
.y129{bottom:404.410500px;}
.y1de{bottom:405.115500px;}
.y18b{bottom:405.340500px;}
.y2dd{bottom:405.343500px;}
.y2b9{bottom:407.325000px;}
.y250{bottom:408.769500px;}
.ybe{bottom:409.371000px;}
.y8c{bottom:411.388500px;}
.y25{bottom:415.089000px;}
.y15c{bottom:416.730000px;}
.y170{bottom:416.965500px;}
.y102{bottom:417.090000px;}
.y124{bottom:417.292500px;}
.y7f{bottom:418.093500px;}
.y134{bottom:419.046000px;}
.y261{bottom:419.292000px;}
.yf2{bottom:419.989500px;}
.y240{bottom:420.654000px;}
.y294{bottom:422.940000px;}
.y119{bottom:423.334500px;}
.y153{bottom:423.352500px;}
.y231{bottom:423.651000px;}
.y19f{bottom:424.039500px;}
.y2dc{bottom:424.846500px;}
.y143{bottom:426.466500px;}
.y2b8{bottom:426.826500px;}
.y1b6{bottom:427.044000px;}
.y16b{bottom:427.345500px;}
.y1d4{bottom:427.405500px;}
.yeb{bottom:428.002500px;}
.y56{bottom:430.041000px;}
.y21b{bottom:430.183500px;}
.y1f8{bottom:430.999500px;}
.y1dd{bottom:432.006000px;}
.y18a{bottom:432.231000px;}
.y24f{bottom:435.660000px;}
.ybd{bottom:436.263000px;}
.y46{bottom:437.914500px;}
.y8b{bottom:438.279000px;}
.yd4{bottom:439.948500px;}
.y24{bottom:441.979500px;}
.y15b{bottom:443.622000px;}
.y16f{bottom:443.857500px;}
.y101{bottom:443.980500px;}
.y123{bottom:444.183000px;}
.y7e{bottom:444.985500px;}
.y260{bottom:446.184000px;}
.y2b7{bottom:446.328000px;}
.ya4{bottom:446.881500px;}
.y71{bottom:449.878500px;}
.y152{bottom:450.243000px;}
.y230{bottom:450.543000px;}
.y19e{bottom:450.930000px;}
.y142{bottom:453.357000px;}
.y1b5{bottom:453.934500px;}
.y16a{bottom:454.236000px;}
.y1d3{bottom:454.296000px;}
.yea{bottom:454.893000px;}
.y55{bottom:456.931500px;}
.y21a{bottom:457.075500px;}
.y293{bottom:457.386000px;}
.y1f7{bottom:457.890000px;}
.y133{bottom:458.041500px;}
.y2db{bottom:458.400000px;}
.y189{bottom:459.123000px;}
.y23f{bottom:462.489000px;}
.y45{bottom:464.805000px;}
.y8a{bottom:465.169500px;}
.y2b6{bottom:465.831000px;}
.yd3{bottom:466.840500px;}
.y23{bottom:468.870000px;}
.y15a{bottom:470.512500px;}
.y16e{bottom:470.748000px;}
.y100{bottom:470.872500px;}
.y122{bottom:471.073500px;}
.y7d{bottom:471.876000px;}
.y25f{bottom:473.074500px;}
.ya3{bottom:473.772000px;}
.y1ea{bottom:475.164000px;}
.y70{bottom:476.769000px;}
.y292{bottom:476.887500px;}
.y151{bottom:477.135000px;}
.y22f{bottom:477.433500px;}
.y24e{bottom:477.495000px;}
.y19d{bottom:477.820500px;}
.y2da{bottom:477.901500px;}
.y141{bottom:480.247500px;}
.y1b4{bottom:480.825000px;}
.y169{bottom:481.126500px;}
.y1d2{bottom:481.186500px;}
.ye9{bottom:481.783500px;}
.y54{bottom:483.823500px;}
.y1f6{bottom:484.780500px;}
.y188{bottom:486.013500px;}
.ybc{bottom:489.379500px;}
.y118{bottom:490.462500px;}
.y44{bottom:491.697000px;}
.y89{bottom:492.060000px;}
.yd2{bottom:493.731000px;}
.y22{bottom:495.762000px;}
.y291{bottom:496.390500px;}
.y159{bottom:497.403000px;}
.y16d{bottom:497.638500px;}
.y5{bottom:497.694000px;}
.yff{bottom:497.763000px;}
.y121{bottom:497.964000px;}
.y199{bottom:498.760500px;}
.y7c{bottom:498.766500px;}
.y25e{bottom:499.965000px;}
.y2b5{bottom:500.275500px;}
.ya2{bottom:500.662500px;}
.y1dc{bottom:501.264000px;}
.y1e9{bottom:502.054500px;}
.y6f{bottom:503.659500px;}
.y22e{bottom:504.324000px;}
.y24d{bottom:504.385500px;}
.y19c{bottom:504.711000px;}
.y1b3{bottom:507.715500px;}
.y168{bottom:508.017000px;}
.y1d1{bottom:508.078500px;}
.ye8{bottom:508.675500px;}
.y132{bottom:509.983500px;}
.y53{bottom:510.714000px;}
.y2d9{bottom:511.455000px;}
.y1f5{bottom:511.672500px;}
.y187{bottom:512.904000px;}
.ybb{bottom:516.271500px;}
.y117{bottom:517.353000px;}
.y88{bottom:518.952000px;}
.y2b4{bottom:519.777000px;}
.yd1{bottom:520.621500px;}
.y21{bottom:522.652500px;}
.yfe{bottom:524.653500px;}
.y120{bottom:524.856000px;}
.y198{bottom:525.652500px;}
.y7b{bottom:525.657000px;}
.y219{bottom:526.332000px;}
.ya1{bottom:527.553000px;}
.y6e{bottom:530.550000px;}
.y290{bottom:530.835000px;}
.y2d8{bottom:530.956500px;}
.y4{bottom:531.076500px;}
.y23e{bottom:531.214500px;}
.y24c{bottom:531.276000px;}
.y167{bottom:534.907500px;}
.y1d0{bottom:534.969000px;}
.y43{bottom:536.520000px;}
.y1db{bottom:537.472500px;}
.y52{bottom:537.604500px;}
.y1cd{bottom:538.104000px;}
.y1c6{bottom:538.192500px;}
.y1f4{bottom:538.563000px;}
.y2b3{bottom:539.280000px;}
.y186{bottom:539.794500px;}
.y26e{bottom:542.497500px;}
.yba{bottom:543.162000px;}
.y19b{bottom:543.706500px;}
.y116{bottom:544.243500px;}
.y25d{bottom:545.416500px;}
.y87{bottom:545.842500px;}
.y22d{bottom:546.159000px;}
.y150{bottom:546.391500px;}
.yd0{bottom:547.512000px;}
.y140{bottom:549.505500px;}
.y28f{bottom:550.336500px;}
.y2d7{bottom:550.459500px;}
.ye7{bottom:550.509000px;}
.y182{bottom:550.843500px;}
.yfd{bottom:551.544000px;}
.y197{bottom:552.543000px;}
.y7a{bottom:552.549000px;}
.ya0{bottom:554.445000px;}
.y16{bottom:555.438000px;}
.y6d{bottom:557.442000px;}
.y1da{bottom:557.796000px;}
.y23d{bottom:558.105000px;}
.y24b{bottom:558.166500px;}
.y2b2{bottom:558.781500px;}
.y166{bottom:561.799500px;}
.y42{bottom:563.410500px;}
.y51{bottom:564.495000px;}
.y1c5{bottom:565.084500px;}
.y1f3{bottom:565.453500px;}
.y158{bottom:566.661000px;}
.y184{bottom:566.845500px;}
.y16c{bottom:566.895000px;}
.y20{bottom:567.475500px;}
.y1c7{bottom:569.124000px;}
.y26d{bottom:569.388000px;}
.y28e{bottom:569.839500px;}
.yb9{bottom:570.052500px;}
.y115{bottom:571.135500px;}
.y1e8{bottom:571.312500px;}
.y86{bottom:572.733000px;}
.y22c{bottom:573.049500px;}
.y1cc{bottom:574.314000px;}
.ycf{bottom:574.404000px;}
.y1b2{bottom:576.973500px;}
.ye6{bottom:577.401000px;}
.y196{bottom:579.433500px;}
.y79{bottom:579.439500px;}
.y9f{bottom:581.335500px;}
.y15{bottom:582.328500px;}
.y14f{bottom:582.600000px;}
.y214{bottom:582.708000px;}
.y2d6{bottom:584.013000px;}
.y6c{bottom:584.332500px;}
.y25c{bottom:586.216500px;}
.y41{bottom:590.301000px;}
.y50{bottom:591.385500px;}
.y1c4{bottom:591.975000px;}
.y131{bottom:593.149500px;}
.y2b1{bottom:593.227500px;}
.y11f{bottom:594.112500px;}
.y1f{bottom:594.366000px;}
.y26c{bottom:596.278500px;}
.yb8{bottom:596.943000px;}
.yfc{bottom:596.995500px;}
.y114{bottom:598.026000px;}
.y85{bottom:599.623500px;}
.y22b{bottom:599.940000px;}
.y24a{bottom:600.001500px;}
.y13e{bottom:600.582000px;}
.yce{bottom:601.294500px;}
.y2d5{bottom:603.514500px;}
.y3{bottom:603.904500px;}
.y1cf{bottom:604.225500px;}
.y28d{bottom:604.284000px;}
.ye5{bottom:604.291500px;}
.y195{bottom:606.324000px;}
.y78{bottom:606.330000px;}
.y1e7{bottom:607.521000px;}
.y9e{bottom:608.226000px;}
.y1a2{bottom:608.584500px;}
.y185{bottom:609.052500px;}
.y14{bottom:609.219000px;}
.y213{bottom:609.600000px;}
.y1a4{bottom:610.719000px;}
.y1f2{bottom:610.905000px;}
.y6b{bottom:611.223000px;}
.y1b1{bottom:613.182000px;}
.y157{bottom:617.188500px;}
.y40{bottom:617.193000px;}
.y4f{bottom:618.277500px;}
.y1ce{bottom:618.393000px;}
.y183{bottom:618.576000px;}
.y1c3{bottom:618.865500px;}
.y19a{bottom:619.455000px;}
.y13f{bottom:619.957500px;}
.y1e{bottom:621.258000px;}
.y2d4{bottom:623.016000px;}
.y26b{bottom:623.170500px;}
.y28c{bottom:623.787000px;}
.yb7{bottom:623.835000px;}
.y113{bottom:624.916500px;}
.y84{bottom:626.515500px;}
.y22a{bottom:626.832000px;}
.y249{bottom:626.892000px;}
.y13d{bottom:627.472500px;}
.y2b0{bottom:627.672000px;}
.ycd{bottom:628.185000px;}
.y165{bottom:631.056000px;}
.ye4{bottom:631.182000px;}
.y194{bottom:633.214500px;}
.y77{bottom:633.220500px;}
.y1b0{bottom:633.505500px;}
.y281{bottom:634.497000px;}
.yf1{bottom:635.116500px;}
.y13{bottom:636.111000px;}
.y212{bottom:636.490500px;}
.yfb{bottom:637.795500px;}
.y17a{bottom:641.083500px;}
.y28b{bottom:643.288500px;}
.y3f{bottom:644.083500px;}
.y4e{bottom:645.168000px;}
.y1c2{bottom:645.756000px;}
.y2af{bottom:647.175000px;}
.y9d{bottom:650.061000px;}
.y1ad{bottom:650.796000px;}
.y112{bottom:651.807000px;}
.y6a{bottom:653.058000px;}
.y83{bottom:653.406000px;}
.y229{bottom:653.722500px;}
.y248{bottom:653.784000px;}
.y13c{bottom:654.364500px;}
.y25b{bottom:655.260000px;}
.y2d3{bottom:656.569500px;}
.ye3{bottom:658.072500px;}
.y76{bottom:660.112500px;}
.y280{bottom:661.389000px;}
.yf0{bottom:662.008500px;}
.y28a{bottom:662.790000px;}
.y12{bottom:663.001500px;}
.y211{bottom:663.381000px;}
.yb6{bottom:665.668500px;}
.y1d{bottom:666.081000px;}
.y2ae{bottom:666.676500px;}
.ycc{bottom:670.020000px;}
.y193{bottom:672.210000px;}
.y1c1{bottom:672.648000px;}
.y2d2{bottom:676.072500px;}
.y9c{bottom:676.951500px;}
.y1ac{bottom:677.686500px;}
.y69{bottom:679.948500px;}
.y82{bottom:680.296500px;}
.y228{bottom:680.613000px;}
.y247{bottom:680.674500px;}
.y13b{bottom:681.255000px;}
.y25a{bottom:682.150500px;}
.ye2{bottom:684.964500px;}
.y4d{bottom:687.003000px;}
.y27f{bottom:688.279500px;}
.y3e{bottom:688.906500px;}
.y11{bottom:689.892000px;}
.y210{bottom:690.271500px;}
.yb5{bottom:692.560500px;}
.y1c{bottom:692.971500px;}
.y111{bottom:693.642000px;}
.y2d1{bottom:695.574000px;}
.ycb{bottom:696.910500px;}
.y289{bottom:697.236000px;}
.y1c0{bottom:699.538500px;}
.y2ad{bottom:701.122500px;}
.y75{bottom:701.946000px;}
.y23b{bottom:703.599000px;}
.y9b{bottom:703.842000px;}
.y1ab{bottom:704.578500px;}
.y68{bottom:706.839000px;}
.y227{bottom:707.503500px;}
.y246{bottom:707.565000px;}
.y13a{bottom:708.145500px;}
.y259{bottom:709.042500px;}
.ye1{bottom:711.855000px;}
.y4c{bottom:713.893500px;}
.y2d0{bottom:715.075500px;}
.y27e{bottom:715.170000px;}
.y3d{bottom:715.798500px;}
.y10{bottom:716.782500px;}
.y20f{bottom:717.163500px;}
.yb4{bottom:719.451000px;}
.y1b{bottom:719.863500px;}
.y110{bottom:720.532500px;}
.y2ac{bottom:720.624000px;}
.yca{bottom:723.801000px;}
.y74{bottom:728.838000px;}
.y9a{bottom:730.734000px;}
.y288{bottom:731.680500px;}
.y67{bottom:733.731000px;}
.y226{bottom:734.394000px;}
.y258{bottom:735.933000px;}
.ye0{bottom:738.745500px;}
.y2ab{bottom:740.125500px;}
.y4b{bottom:740.784000px;}
.y27d{bottom:742.060500px;}
.y3c{bottom:742.689000px;}
.yf{bottom:743.674500px;}
.y20e{bottom:744.054000px;}
.yb3{bottom:746.341500px;}
.y1a{bottom:746.754000px;}
.y10f{bottom:747.424500px;}
.y192{bottom:747.958500px;}
.y2cf{bottom:748.629000px;}
.y287{bottom:751.183500px;}
.y128{bottom:753.498000px;}
.y2ea{bottom:755.068500px;}
.y73{bottom:755.728500px;}
.y99{bottom:757.624500px;}
.y66{bottom:760.621500px;}
.y225{bottom:761.286000px;}
.ydf{bottom:765.636000px;}
.y4a{bottom:767.674500px;}
.y2ce{bottom:768.130500px;}
.y1d7{bottom:768.493500px;}
.y1bf{bottom:768.795000px;}
.y27c{bottom:768.952500px;}
.yc9{bottom:769.252500px;}
.y3b{bottom:769.579500px;}
.ye{bottom:770.565000px;}
.y20d{bottom:770.944500px;}
.y1aa{bottom:771.313500px;}
.yb2{bottom:773.232000px;}
.y19{bottom:773.644500px;}
.y10e{bottom:774.315000px;}
.y2aa{bottom:774.571500px;}
.y245{bottom:776.821500px;}
.y139{bottom:777.402000px;}
.y81{bottom:781.906500px;}
.y72{bottom:782.619000px;}
.y191{bottom:784.168500px;}
.yef{bottom:784.515000px;}
.y286{bottom:785.628000px;}
.y65{bottom:787.512000px;}
.y2cd{bottom:787.632000px;}
.yde{bottom:792.528000px;}
.y2a9{bottom:794.073000px;}
.y27b{bottom:795.843000px;}
.y3a{bottom:796.470000px;}
.yd{bottom:797.455500px;}
.y244{bottom:798.490500px;}
.y98{bottom:799.459500px;}
.yb1{bottom:800.124000px;}
.y10d{bottom:801.205500px;}
.y1d6{bottom:804.702000px;}
.y1be{bottom:805.005000px;}
.y285{bottom:805.131000px;}
.y2cc{bottom:807.135000px;}
.y1a9{bottom:807.523500px;}
.y2e9{bottom:809.016000px;}
.y49{bottom:809.509500px;}
.y203{bottom:811.087500px;}
.yee{bottom:811.405500px;}
.y138{bottom:813.612000px;}
.y64{bottom:814.402500px;}
.y18{bottom:818.467500px;}
.y243{bottom:820.159500px;}
.y27a{bottom:822.733500px;}
.y39{bottom:823.360500px;}
.y20c{bottom:824.062500px;}
.yc{bottom:824.346000px;}
.y97{bottom:826.350000px;}
.yb0{bottom:827.014500px;}
.y10c{bottom:828.096000px;}
.y2a8{bottom:828.519000px;}
.y48{bottom:836.401500px;}
.y80{bottom:837.543000px;}
.ydd{bottom:837.978000px;}
.yc8{bottom:838.297500px;}
.y284{bottom:839.575500px;}
.y2cb{bottom:840.688500px;}
.y63{bottom:841.294500px;}
.y2a7{bottom:848.020500px;}
.y279{bottom:849.624000px;}
.y38{bottom:850.252500px;}
.y20b{bottom:850.953000px;}
.yb{bottom:851.236500px;}
.y14e{bottom:852.093000px;}
.y1cb{bottom:852.922500px;}
.y96{bottom:853.240500px;}
.y10b{bottom:854.986500px;}
.y283{bottom:859.078500px;}
.y1e6{bottom:859.608000px;}
.y2ca{bottom:860.190000px;}
.y1a3{bottom:861.283500px;}
.y2e8{bottom:862.963500px;}
.yc7{bottom:865.188000px;}
.y62{bottom:868.185000px;}
.y278{bottom:876.514500px;}
.y37{bottom:877.143000px;}
.y2c9{bottom:879.691500px;}
.y95{bottom:880.131000px;}
.y10a{bottom:881.878500px;}
.y2a6{bottom:882.466500px;}
.yc6{bottom:892.078500px;}
.y61{bottom:895.075500px;}
.y2a5{bottom:901.968000px;}
.y277{bottom:903.406500px;}
.y20a{bottom:904.071000px;}
.y94{bottom:907.023000px;}
.y109{bottom:908.769000px;}
.y14d{bottom:911.701500px;}
.y2c8{bottom:913.245000px;}
.y36{bottom:921.966000px;}
.y276{bottom:930.297000px;}
.y209{bottom:930.961500px;}
.y2c7{bottom:932.748000px;}
.y1af{bottom:933.595500px;}
.yaf{bottom:933.913500px;}
.y108{bottom:935.659500px;}
.y2a4{bottom:936.412500px;}
.y17{bottom:938.011500px;}
.y14c{bottom:938.592000px;}
.y35{bottom:948.858000px;}
.y2c6{bottom:952.249500px;}
.ya{bottom:952.848000px;}
.y282{bottom:953.299500px;}
.y2a3{bottom:955.915500px;}
.y275{bottom:957.187500px;}
.yae{bottom:960.804000px;}
.y14b{bottom:965.482500px;}
.y2c5{bottom:971.751000px;}
.y11e{bottom:972.433500px;}
.y34{bottom:975.748500px;}
.y208{bottom:984.078000px;}
.yad{bottom:987.694500px;}
.y2a2{bottom:990.360000px;}
.y2c4{bottom:991.252500px;}
.y14a{bottom:992.374500px;}
.y33{bottom:1002.639000px;}
.y107{bottom:1004.917500px;}
.y2a1{bottom:1009.863000px;}
.y207{bottom:1010.970000px;}
.ydc{bottom:1014.586500px;}
.y2{bottom:1019.991000px;}
.y2c3{bottom:1024.806000px;}
.y2e7{bottom:1029.364500px;}
.y32{bottom:1029.529500px;}
.y149{bottom:1031.370000px;}
.y206{bottom:1037.860500px;}
.y11d{bottom:1041.477000px;}
.y2a0{bottom:1044.307500px;}
.y31{bottom:1056.420000px;}
.y29f{bottom:1063.810500px;}
.y1{bottom:1075.627500px;}
.y30{bottom:1083.312000px;}
.y2f{bottom:1137.444000px;}
.ha{height:45.032765px;}
.h8{height:48.992410px;}
.h6{height:49.351066px;}
.h7{height:49.781453px;}
.h5{height:58.790728px;}
.h4{height:59.221114px;}
.h9{height:59.737577px;}
.h3{height:71.684926px;}
.h2{height:103.213484px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:101.980500px;}
.xf{left:108.508500px;}
.x1a{left:110.475000px;}
.x25{left:113.619000px;}
.x34{left:123.240000px;}
.x15{left:125.446500px;}
.x36{left:126.516000px;}
.x18{left:127.831500px;}
.xc{left:129.177000px;}
.xa{left:130.216500px;}
.x2b{left:133.969500px;}
.x1{left:136.755000px;}
.x13{left:137.797500px;}
.x31{left:138.864000px;}
.x19{left:140.020500px;}
.x33{left:144.745500px;}
.x28{left:145.927500px;}
.x35{left:147.775500px;}
.x1e{left:150.411000px;}
.x14{left:152.854500px;}
.xd{left:157.116000px;}
.x30{left:159.961500px;}
.x2e{left:163.476000px;}
.x27{left:167.187000px;}
.x29{left:168.343500px;}
.x22{left:171.670500px;}
.x23{left:172.827000px;}
.x21{left:175.086000px;}
.x10{left:177.100500px;}
.x2{left:182.715000px;}
.x6{left:185.665500px;}
.x17{left:188.319000px;}
.x24{left:189.603000px;}
.x1f{left:194.086500px;}
.x1d{left:196.345500px;}
.xe{left:198.361500px;}
.x1b{left:204.091500px;}
.x2a{left:217.927500px;}
.x32{left:246.136500px;}
.x20{left:264.066000px;}
.x3{left:274.479000px;}
.x1c{left:285.325500px;}
.x7{left:315.265500px;}
.x4{left:338.172000px;}
.x5{left:349.932000px;}
.x8{left:372.732000px;}
.x26{left:394.483500px;}
.xb{left:408.579000px;}
.x9{left:410.164500px;}
.x2d{left:420.226500px;}
.x2f{left:437.529000px;}
.x2c{left:458.788500px;}
.x12{left:744.763500px;}
.x11{left:766.024500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:31.880533pt;}
.ls4{letter-spacing:1130.748800pt;}
.ls3{letter-spacing:1132.983467pt;}
.ls2{letter-spacing:1936.364800pt;}
.ws10{word-spacing:-36.216286pt;}
.wse{word-spacing:-33.219516pt;}
.ws1d{word-spacing:-33.049467pt;}
.ws2{word-spacing:-22.953867pt;}
.ws13{word-spacing:-16.577877pt;}
.ws30{word-spacing:-15.940267pt;}
.ws11{word-spacing:-3.188053pt;}
.ws5f{word-spacing:-3.124292pt;}
.ws96{word-spacing:-2.933009pt;}
.ws19{word-spacing:-2.869248pt;}
.ws18{word-spacing:-2.741726pt;}
.ws75{word-spacing:-2.486682pt;}
.ws71{word-spacing:-2.422921pt;}
.wsa2{word-spacing:-2.359159pt;}
.ws16{word-spacing:-2.231637pt;}
.ws41{word-spacing:-2.167876pt;}
.ws83{word-spacing:-1.912832pt;}
.ws7e{word-spacing:-1.849071pt;}
.ws91{word-spacing:-1.785310pt;}
.ws4c{word-spacing:-1.721549pt;}
.wsac{word-spacing:-1.657788pt;}
.ws63{word-spacing:-1.594027pt;}
.wsa0{word-spacing:-1.530266pt;}
.wsa1{word-spacing:-1.466505pt;}
.ws3c{word-spacing:-1.402743pt;}
.ws36{word-spacing:-1.338982pt;}
.ws17{word-spacing:-1.275221pt;}
.ws7b{word-spacing:-1.211460pt;}
.ws37{word-spacing:-1.147699pt;}
.ws52{word-spacing:-1.083938pt;}
.ws43{word-spacing:-1.020177pt;}
.ws34{word-spacing:-0.956416pt;}
.ws27{word-spacing:-0.892655pt;}
.ws89{word-spacing:-0.828894pt;}
.ws70{word-spacing:-0.765133pt;}
.ws2a{word-spacing:-0.701372pt;}
.ws2b{word-spacing:-0.637611pt;}
.ws45{word-spacing:-0.510089pt;}
.ws31{word-spacing:-0.446327pt;}
.ws1f{word-spacing:-0.382566pt;}
.ws9c{word-spacing:-0.367262pt;}
.ws7f{word-spacing:-0.349091pt;}
.ws3{word-spacing:-0.318805pt;}
.ws8{word-spacing:-0.255044pt;}
.ws80{word-spacing:-0.232727pt;}
.ws21{word-spacing:-0.191283pt;}
.ws72{word-spacing:-0.128197pt;}
.ws1e{word-spacing:-0.127522pt;}
.ws86{word-spacing:-0.116364pt;}
.ws5{word-spacing:-0.063761pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.063761pt;}
.ws6{word-spacing:0.127522pt;}
.wsb{word-spacing:0.191283pt;}
.ws4{word-spacing:0.255044pt;}
.ws93{word-spacing:0.290909pt;}
.ws1a{word-spacing:0.318805pt;}
.ws4b{word-spacing:0.382566pt;}
.ws60{word-spacing:0.446327pt;}
.ws5c{word-spacing:0.510089pt;}
.ws0{word-spacing:0.528791pt;}
.ws5d{word-spacing:0.573850pt;}
.ws7{word-spacing:0.637611pt;}
.ws53{word-spacing:0.701372pt;}
.ws42{word-spacing:0.765133pt;}
.wsab{word-spacing:0.828894pt;}
.wsb4{word-spacing:0.892655pt;}
.ws3b{word-spacing:1.020177pt;}
.ws98{word-spacing:1.083938pt;}
.ws84{word-spacing:1.147699pt;}
.ws61{word-spacing:1.211460pt;}
.ws9{word-spacing:1.275221pt;}
.ws2c{word-spacing:1.338982pt;}
.ws5b{word-spacing:1.402743pt;}
.wsd{word-spacing:1.530266pt;}
.ws40{word-spacing:1.594027pt;}
.ws3a{word-spacing:1.657788pt;}
.ws44{word-spacing:1.721549pt;}
.ws65{word-spacing:1.785310pt;}
.ws25{word-spacing:1.912832pt;}
.ws78{word-spacing:1.976593pt;}
.ws94{word-spacing:2.094547pt;}
.ws6e{word-spacing:2.104115pt;}
.ws4e{word-spacing:2.167876pt;}
.ws62{word-spacing:2.231637pt;}
.ws29{word-spacing:2.295398pt;}
.ws2e{word-spacing:2.359159pt;}
.ws47{word-spacing:2.422921pt;}
.ws33{word-spacing:2.486682pt;}
.ws22{word-spacing:2.550443pt;}
.ws73{word-spacing:2.614204pt;}
.wsb2{word-spacing:2.677965pt;}
.ws7a{word-spacing:2.741726pt;}
.ws38{word-spacing:2.805487pt;}
.ws59{word-spacing:2.869248pt;}
.ws58{word-spacing:2.933009pt;}
.ws6d{word-spacing:3.060531pt;}
.ws26{word-spacing:3.124292pt;}
.ws48{word-spacing:3.188053pt;}
.ws51{word-spacing:3.251814pt;}
.ws54{word-spacing:3.379337pt;}
.ws32{word-spacing:3.443098pt;}
.ws4d{word-spacing:3.570620pt;}
.ws35{word-spacing:3.634381pt;}
.ws6b{word-spacing:3.698142pt;}
.ws39{word-spacing:3.761903pt;}
.ws64{word-spacing:3.825664pt;}
.ws23{word-spacing:3.953186pt;}
.wsc4{word-spacing:4.016947pt;}
.ws74{word-spacing:4.144469pt;}
.ws3e{word-spacing:4.208230pt;}
.ws9f{word-spacing:4.271991pt;}
.ws3f{word-spacing:4.335753pt;}
.ws6a{word-spacing:4.399514pt;}
.ws5a{word-spacing:4.527036pt;}
.ws56{word-spacing:4.590797pt;}
.ws1b{word-spacing:4.654558pt;}
.ws8a{word-spacing:4.718319pt;}
.wsa{word-spacing:4.782080pt;}
.ws97{word-spacing:4.845841pt;}
.ws50{word-spacing:5.037124pt;}
.ws9d{word-spacing:5.100885pt;}
.ws20{word-spacing:5.164646pt;}
.ws76{word-spacing:5.355930pt;}
.ws4f{word-spacing:5.419691pt;}
.ws8d{word-spacing:5.547213pt;}
.ws7c{word-spacing:5.674735pt;}
.ws85{word-spacing:5.738496pt;}
.ws2f{word-spacing:5.802257pt;}
.wsae{word-spacing:5.929779pt;}
.ws88{word-spacing:5.993540pt;}
.ws77{word-spacing:6.057301pt;}
.ws49{word-spacing:6.121062pt;}
.ws4a{word-spacing:6.184823pt;}
.wsc7{word-spacing:6.376107pt;}
.ws57{word-spacing:6.503629pt;}
.ws92{word-spacing:6.516369pt;}
.wsa3{word-spacing:6.567390pt;}
.ws9a{word-spacing:6.949956pt;}
.wsaf{word-spacing:7.010278pt;}
.wsaa{word-spacing:7.013239pt;}
.ws28{word-spacing:7.013717pt;}
.ws99{word-spacing:7.141239pt;}
.ws2d{word-spacing:7.205001pt;}
.ws82{word-spacing:7.268762pt;}
.ws8b{word-spacing:7.396284pt;}
.wsb3{word-spacing:7.523806pt;}
.ws9b{word-spacing:7.778850pt;}
.wsb1{word-spacing:8.352700pt;}
.ws69{word-spacing:8.480222pt;}
.ws3d{word-spacing:8.607744pt;}
.ws46{word-spacing:8.799027pt;}
.ws1c{word-spacing:8.862788pt;}
.wsc0{word-spacing:8.990310pt;}
.ws24{word-spacing:9.054071pt;}
.wsa4{word-spacing:9.946726pt;}
.wsa5{word-spacing:10.010487pt;}
.wsc6{word-spacing:10.966903pt;}
.wsb7{word-spacing:12.050842pt;}
.wsc5{word-spacing:12.497169pt;}
.wsb5{word-spacing:14.027435pt;}
.wsf{word-spacing:15.940267pt;}
.wsc3{word-spacing:16.705399pt;}
.ws95{word-spacing:17.745469pt;}
.wsa8{word-spacing:18.426948pt;}
.wsa7{word-spacing:19.510886pt;}
.wsbe{word-spacing:20.403541pt;}
.wsb0{word-spacing:30.605312pt;}
.wsc2{word-spacing:36.407569pt;}
.wsa6{word-spacing:39.531861pt;}
.wsc1{word-spacing:40.488277pt;}
.wsbf{word-spacing:41.380932pt;}
.wsb8{word-spacing:46.226773pt;}
.ws8e{word-spacing:46.586830pt;}
.wsbc{word-spacing:47.693278pt;}
.ws14{word-spacing:47.820800pt;}
.ws90{word-spacing:48.505603pt;}
.ws8f{word-spacing:49.116801pt;}
.ws67{word-spacing:57.384800pt;}
.wsba{word-spacing:60.126686pt;}
.wsb9{word-spacing:64.462438pt;}
.wsa9{word-spacing:66.439031pt;}
.wsbd{word-spacing:160.231561pt;}
.wsbb{word-spacing:160.247007pt;}
.ws8c{word-spacing:400.885333pt;}
.ws87{word-spacing:403.120000pt;}
.ws6c{word-spacing:486.896000pt;}
.ws66{word-spacing:491.680000pt;}
.ws7d{word-spacing:494.933333pt;}
.ws81{word-spacing:497.168000pt;}
.ws5e{word-spacing:915.178667pt;}
.ws6f{word-spacing:1074.152661pt;}
.ws68{word-spacing:1074.157995pt;}
.ws79{word-spacing:1079.011328pt;}
.ws55{word-spacing:1087.712000pt;}
.ws12{word-spacing:1787.418470pt;}
.ws9e{word-spacing:1929.413333pt;}
.ws15{word-spacing:1948.474436pt;}
.wsad{word-spacing:1961.482667pt;}
.wsb6{word-spacing:1961.483742pt;}
._1f{margin-left:-32.836949pt;}
._e{margin-left:-31.880533pt;}
._10{margin-left:-15.940267pt;}
._0{margin-left:-14.673963pt;}
._a{margin-left:-12.162204pt;}
._4a{margin-left:-10.191517pt;}
._4d{margin-left:-9.232593pt;}
._4c{margin-left:-7.409073pt;}
._3{margin-left:-6.121045pt;}
._14{margin-left:-5.100885pt;}
._3a{margin-left:-4.208230pt;}
._6{margin-left:-3.264587pt;}
._2{margin-left:-1.912827pt;}
._5{margin-left:-0.918155pt;}
._4f{width:0.892644pt;}
._51{width:2.512192pt;}
._54{width:3.545104pt;}
._20{width:5.547213pt;}
._59{width:9.564160pt;}
._3c{width:12.828736pt;}
._3f{width:13.772390pt;}
._13{width:15.302651pt;}
._15{width:16.577883pt;}
._35{width:18.363244pt;}
._8{width:19.268614pt;}
._7{width:20.276019pt;}
._3b{width:21.232435pt;}
._9{width:22.125090pt;}
._36{width:23.017734pt;}
._4{width:24.101616pt;}
._4e{width:24.994333pt;}
._16{width:25.886993pt;}
._34{width:27.366265pt;}
._1{width:28.462795pt;}
._28{width:29.865695pt;}
._39{width:30.783828pt;}
._2e{width:31.880533pt;}
._1d{width:32.773188pt;}
._52{width:33.869899pt;}
._f{width:35.068587pt;}
._2d{width:36.943152pt;}
._32{width:38.001590pt;}
._29{width:39.047278pt;}
._55{width:40.424516pt;}
._25{width:41.699743pt;}
._26{width:43.829353pt;}
._1e{width:44.951552pt;}
._19{width:46.609340pt;}
._30{width:48.012078pt;}
._2b{width:49.975892pt;}
._33{width:51.965269pt;}
._53{width:55.609496pt;}
._21{width:56.556061pt;}
._23{width:57.703765pt;}
._57{width:59.361548pt;}
._1b{width:60.407235pt;}
._18{width:61.389151pt;}
._2a{width:62.422084pt;}
._c{width:63.761067pt;}
._22{width:64.653722pt;}
._12{width:66.949120pt;}
._5c{width:67.974595pt;}
._5b{width:69.180757pt;}
._2f{width:75.875669pt;}
._11{width:76.832085pt;}
._58{width:81.760033pt;}
._56{width:85.949918pt;}
._5e{width:89.010444pt;}
._37{width:91.815467pt;}
._31{width:95.641600pt;}
._17{width:108.712619pt;}
._5a{width:121.464832pt;}
._61{width:140.465625pt;}
._60{width:153.154082pt;}
._5f{width:155.832047pt;}
._27{width:183.134545pt;}
._5d{width:229.284790pt;}
._24{width:317.593868pt;}
._1c{width:332.819973pt;}
._3e{width:753.082726pt;}
._1a{width:757.494228pt;}
._4b{width:816.704756pt;}
._d{width:957.308650pt;}
._44{width:1079.793408pt;}
._40{width:1159.968873pt;}
._48{width:1223.753119pt;}
._49{width:1258.262938pt;}
._45{width:1382.594714pt;}
._47{width:1385.361939pt;}
._46{width:1396.877193pt;}
._42{width:1442.532420pt;}
._50{width:1493.860079pt;}
._3d{width:1534.270548pt;}
._38{width:1613.729604pt;}
._43{width:1686.979588pt;}
._41{width:1715.238502pt;}
._2c{width:1835.489826pt;}
._b{width:1901.227481pt;}
.fs4{font-size:58.181867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs1{font-size:91.815467pt;}
.fs0{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:136.565333pt;}
.y181{bottom:136.994667pt;}
.yac{bottom:138.752000pt;}
.y2c2{bottom:139.634667pt;}
.y179{bottom:142.226667pt;}
.y1ae{bottom:142.772000pt;}
.y60{bottom:143.229333pt;}
.y202{bottom:144.081333pt;}
.y26a{bottom:144.294667pt;}
.y1f1{bottom:144.389333pt;}
.y11c{bottom:147.888000pt;}
.y23a{bottom:148.169333pt;}
.y29e{bottom:149.464000pt;}
.y2e{bottom:153.841333pt;}
.y2e6{bottom:154.329333pt;}
.y2c1{bottom:156.970667pt;}
.y130{bottom:159.138667pt;}
.y180{bottom:160.897333pt;}
.yab{bottom:162.656000pt;}
.y164{bottom:165.920000pt;}
.y178{bottom:166.129333pt;}
.y29d{bottom:166.798667pt;}
.y5f{bottom:167.132000pt;}
.y224{bottom:167.258667pt;}
.y201{bottom:167.984000pt;}
.y269{bottom:168.197333pt;}
.y1f0{bottom:168.293333pt;}
.y274{bottom:168.817333pt;}
.y190{bottom:170.290667pt;}
.y2e5{bottom:171.664000pt;}
.y11b{bottom:171.790667pt;}
.y239{bottom:172.072000pt;}
.y1ca{bottom:172.389333pt;}
.y2c0{bottom:174.305333pt;}
.y2d{bottom:177.744000pt;}
.y218{bottom:177.940000pt;}
.yfa{bottom:182.101333pt;}
.y257{bottom:182.745333pt;}
.y12f{bottom:183.041333pt;}
.yc5{bottom:183.281333pt;}
.y29c{bottom:184.134667pt;}
.y17f{bottom:184.800000pt;}
.y93{bottom:185.073333pt;}
.yaa{bottom:186.558667pt;}
.y1d9{bottom:188.826667pt;}
.y163{bottom:189.822667pt;}
.y177{bottom:190.032000pt;}
.y5e{bottom:191.034667pt;}
.y223{bottom:191.162667pt;}
.y200{bottom:191.886667pt;}
.y268{bottom:192.100000pt;}
.y1ef{bottom:192.196000pt;}
.y273{bottom:192.720000pt;}
.y1e5{bottom:192.781333pt;}
.y18f{bottom:194.194667pt;}
.y238{bottom:195.974667pt;}
.y23c{bottom:197.729333pt;}
.y205{bottom:199.842667pt;}
.y2e4{bottom:201.489333pt;}
.y2c{bottom:201.646667pt;}
.y1a8{bottom:202.448000pt;}
.y1c9{bottom:204.576000pt;}
.y2bf{bottom:204.924000pt;}
.yf9{bottom:206.004000pt;}
.y256{bottom:206.648000pt;}
.y12e{bottom:206.945333pt;}
.y1d8{bottom:208.088000pt;}
.y17e{bottom:208.702667pt;}
.y92{bottom:208.977333pt;}
.y217{bottom:210.125333pt;}
.ydb{bottom:210.461333pt;}
.y1bd{bottom:212.273333pt;}
.y162{bottom:213.725333pt;}
.y176{bottom:213.934667pt;}
.y106{bottom:214.589333pt;}
.y29b{bottom:214.752000pt;}
.y5d{bottom:214.937333pt;}
.y222{bottom:215.065333pt;}
.y1ff{bottom:215.789333pt;}
.y267{bottom:216.002667pt;}
.y1ee{bottom:216.098667pt;}
.y272{bottom:216.622667pt;}
.y1e4{bottom:216.685333pt;}
.y18e{bottom:218.097333pt;}
.y2e3{bottom:218.824000pt;}
.yc4{bottom:220.468000pt;}
.y2be{bottom:222.258667pt;}
.y1c8{bottom:222.641333pt;}
.ya9{bottom:223.745333pt;}
.y2b{bottom:225.549333pt;}
.y1a7{bottom:226.350667pt;}
.y216{bottom:228.190667pt;}
.yf8{bottom:229.906667pt;}
.y255{bottom:230.552000pt;}
.y12d{bottom:230.848000pt;}
.y29a{bottom:232.088000pt;}
.y91{bottom:232.880000pt;}
.y237{bottom:233.161333pt;}
.yda{bottom:234.364000pt;}
.y1bc{bottom:236.176000pt;}
.y161{bottom:237.629333pt;}
.y175{bottom:237.838667pt;}
.y5c{bottom:238.841333pt;}
.y221{bottom:238.968000pt;}
.y2bd{bottom:239.593333pt;}
.y1fe{bottom:239.692000pt;}
.y266{bottom:239.906667pt;}
.y1ed{bottom:240.001333pt;}
.y271{bottom:240.526667pt;}
.y1e3{bottom:240.588000pt;}
.y17d{bottom:243.365333pt;}
.yc3{bottom:244.370667pt;}
.y215{bottom:246.256000pt;}
.ya8{bottom:247.648000pt;}
.y2e2{bottom:248.650667pt;}
.y299{bottom:249.422667pt;}
.y2a{bottom:249.453333pt;}
.y18d{bottom:252.760000pt;}
.yf7{bottom:253.809333pt;}
.y254{bottom:254.454667pt;}
.y12c{bottom:254.750667pt;}
.y90{bottom:256.782667pt;}
.y236{bottom:257.064000pt;}
.yd9{bottom:258.268000pt;}
.y8{bottom:258.989333pt;}
.y148{bottom:259.566667pt;}
.y1bb{bottom:260.078667pt;}
.y160{bottom:261.532000pt;}
.y174{bottom:261.741333pt;}
.y5b{bottom:262.744000pt;}
.y220{bottom:262.870667pt;}
.y1fd{bottom:263.596000pt;}
.y265{bottom:263.809333pt;}
.y1ec{bottom:263.905333pt;}
.y270{bottom:264.429333pt;}
.y1e2{bottom:264.490667pt;}
.y2e1{bottom:265.985333pt;}
.yc2{bottom:268.274667pt;}
.y2bc{bottom:270.212000pt;}
.ya7{bottom:271.550667pt;}
.y29{bottom:273.356000pt;}
.yf6{bottom:277.712000pt;}
.y253{bottom:278.357333pt;}
.y12b{bottom:278.653333pt;}
.y298{bottom:280.040000pt;}
.y8f{bottom:280.685333pt;}
.y235{bottom:280.966667pt;}
.yd8{bottom:282.170667pt;}
.y147{bottom:283.469333pt;}
.y1ba{bottom:283.982667pt;}
.y15f{bottom:285.434667pt;}
.y173{bottom:285.644000pt;}
.y127{bottom:285.933333pt;}
.y5a{bottom:286.646667pt;}
.y21f{bottom:286.773333pt;}
.y1fc{bottom:287.498667pt;}
.y264{bottom:287.712000pt;}
.y1a6{bottom:287.913333pt;}
.y26f{bottom:288.332000pt;}
.y1e1{bottom:288.393333pt;}
.y7{bottom:288.661333pt;}
.yc1{bottom:292.177333pt;}
.ya6{bottom:295.453333pt;}
.y2e0{bottom:295.810667pt;}
.y28{bottom:297.258667pt;}
.y18c{bottom:298.930667pt;}
.y105{bottom:299.037333pt;}
.y137{bottom:300.776000pt;}
.y2bb{bottom:300.829333pt;}
.yf5{bottom:301.616000pt;}
.y1eb{bottom:304.305333pt;}
.y8e{bottom:304.589333pt;}
.y156{bottom:304.604000pt;}
.y234{bottom:304.870667pt;}
.yd7{bottom:306.073333pt;}
.y146{bottom:307.372000pt;}
.y1b9{bottom:307.885333pt;}
.y17c{bottom:308.816000pt;}
.y15e{bottom:309.337333pt;}
.y126{bottom:309.836000pt;}
.y59{bottom:310.549333pt;}
.y297{bottom:310.658667pt;}
.y21e{bottom:310.677333pt;}
.y1fb{bottom:311.401333pt;}
.y1e0{bottom:312.297333pt;}
.y2df{bottom:313.145333pt;}
.y252{bottom:315.544000pt;}
.yc0{bottom:316.080000pt;}
.y6{bottom:318.334667pt;}
.yed{bottom:319.357333pt;}
.y1a5{bottom:320.098667pt;}
.y27{bottom:321.161333pt;}
.y172{bottom:322.830667pt;}
.y104{bottom:322.941333pt;}
.y136{bottom:324.678667pt;}
.y263{bottom:324.898667pt;}
.yf4{bottom:325.518667pt;}
.y242{bottom:326.109333pt;}
.y296{bottom:327.993333pt;}
.y8d{bottom:328.492000pt;}
.y155{bottom:328.508000pt;}
.y233{bottom:328.773333pt;}
.y1a1{bottom:329.117333pt;}
.yd6{bottom:329.976000pt;}
.y2de{bottom:330.480000pt;}
.y145{bottom:331.274667pt;}
.y2ba{bottom:331.448000pt;}
.y1b8{bottom:331.788000pt;}
.y204{bottom:332.640000pt;}
.y58{bottom:334.453333pt;}
.y21d{bottom:334.580000pt;}
.y1fa{bottom:335.304000pt;}
.ya5{bottom:335.854667pt;}
.y1df{bottom:336.200000pt;}
.y251{bottom:339.446667pt;}
.ybf{bottom:339.982667pt;}
.y12a{bottom:340.216000pt;}
.y17b{bottom:341.001333pt;}
.y26{bottom:345.065333pt;}
.y15d{bottom:346.524000pt;}
.y171{bottom:346.733333pt;}
.y103{bottom:346.844000pt;}
.y125{bottom:347.022667pt;}
.y135{bottom:348.582667pt;}
.y262{bottom:348.801333pt;}
.y47{bottom:349.414667pt;}
.yf3{bottom:349.421333pt;}
.y241{bottom:350.012000pt;}
.y11a{bottom:352.394667pt;}
.y154{bottom:352.410667pt;}
.y232{bottom:352.676000pt;}
.y1a0{bottom:353.020000pt;}
.yd5{bottom:353.880000pt;}
.y144{bottom:355.177333pt;}
.y1b7{bottom:355.690667pt;}
.y1d5{bottom:356.013333pt;}
.yec{bottom:356.544000pt;}
.y57{bottom:358.356000pt;}
.y21c{bottom:358.482667pt;}
.y295{bottom:358.612000pt;}
.y1f9{bottom:359.208000pt;}
.y129{bottom:359.476000pt;}
.y1de{bottom:360.102667pt;}
.y18b{bottom:360.302667pt;}
.y2dd{bottom:360.305333pt;}
.y2b9{bottom:362.066667pt;}
.y250{bottom:363.350667pt;}
.ybe{bottom:363.885333pt;}
.y8c{bottom:365.678667pt;}
.y25{bottom:368.968000pt;}
.y15c{bottom:370.426667pt;}
.y170{bottom:370.636000pt;}
.y102{bottom:370.746667pt;}
.y124{bottom:370.926667pt;}
.y7f{bottom:371.638667pt;}
.y134{bottom:372.485333pt;}
.y261{bottom:372.704000pt;}
.yf2{bottom:373.324000pt;}
.y240{bottom:373.914667pt;}
.y294{bottom:375.946667pt;}
.y119{bottom:376.297333pt;}
.y153{bottom:376.313333pt;}
.y231{bottom:376.578667pt;}
.y19f{bottom:376.924000pt;}
.y2dc{bottom:377.641333pt;}
.y143{bottom:379.081333pt;}
.y2b8{bottom:379.401333pt;}
.y1b6{bottom:379.594667pt;}
.y16b{bottom:379.862667pt;}
.y1d4{bottom:379.916000pt;}
.yeb{bottom:380.446667pt;}
.y56{bottom:382.258667pt;}
.y21b{bottom:382.385333pt;}
.y1f8{bottom:383.110667pt;}
.y1dd{bottom:384.005333pt;}
.y18a{bottom:384.205333pt;}
.y24f{bottom:387.253333pt;}
.ybd{bottom:387.789333pt;}
.y46{bottom:389.257333pt;}
.y8b{bottom:389.581333pt;}
.yd4{bottom:391.065333pt;}
.y24{bottom:392.870667pt;}
.y15b{bottom:394.330667pt;}
.y16f{bottom:394.540000pt;}
.y101{bottom:394.649333pt;}
.y123{bottom:394.829333pt;}
.y7e{bottom:395.542667pt;}
.y260{bottom:396.608000pt;}
.y2b7{bottom:396.736000pt;}
.ya4{bottom:397.228000pt;}
.y71{bottom:399.892000pt;}
.y152{bottom:400.216000pt;}
.y230{bottom:400.482667pt;}
.y19e{bottom:400.826667pt;}
.y142{bottom:402.984000pt;}
.y1b5{bottom:403.497333pt;}
.y16a{bottom:403.765333pt;}
.y1d3{bottom:403.818667pt;}
.yea{bottom:404.349333pt;}
.y55{bottom:406.161333pt;}
.y21a{bottom:406.289333pt;}
.y293{bottom:406.565333pt;}
.y1f7{bottom:407.013333pt;}
.y133{bottom:407.148000pt;}
.y2db{bottom:407.466667pt;}
.y189{bottom:408.109333pt;}
.y23f{bottom:411.101333pt;}
.y45{bottom:413.160000pt;}
.y8a{bottom:413.484000pt;}
.y2b6{bottom:414.072000pt;}
.yd3{bottom:414.969333pt;}
.y23{bottom:416.773333pt;}
.y15a{bottom:418.233333pt;}
.y16e{bottom:418.442667pt;}
.y100{bottom:418.553333pt;}
.y122{bottom:418.732000pt;}
.y7d{bottom:419.445333pt;}
.y25f{bottom:420.510667pt;}
.ya3{bottom:421.130667pt;}
.y1ea{bottom:422.368000pt;}
.y70{bottom:423.794667pt;}
.y292{bottom:423.900000pt;}
.y151{bottom:424.120000pt;}
.y22f{bottom:424.385333pt;}
.y24e{bottom:424.440000pt;}
.y19d{bottom:424.729333pt;}
.y2da{bottom:424.801333pt;}
.y141{bottom:426.886667pt;}
.y1b4{bottom:427.400000pt;}
.y169{bottom:427.668000pt;}
.y1d2{bottom:427.721333pt;}
.ye9{bottom:428.252000pt;}
.y54{bottom:430.065333pt;}
.y1f6{bottom:430.916000pt;}
.y188{bottom:432.012000pt;}
.ybc{bottom:435.004000pt;}
.y118{bottom:435.966667pt;}
.y44{bottom:437.064000pt;}
.y89{bottom:437.386667pt;}
.yd2{bottom:438.872000pt;}
.y22{bottom:440.677333pt;}
.y291{bottom:441.236000pt;}
.y159{bottom:442.136000pt;}
.y16d{bottom:442.345333pt;}
.y5{bottom:442.394667pt;}
.yff{bottom:442.456000pt;}
.y121{bottom:442.634667pt;}
.y199{bottom:443.342667pt;}
.y7c{bottom:443.348000pt;}
.y25e{bottom:444.413333pt;}
.y2b5{bottom:444.689333pt;}
.ya2{bottom:445.033333pt;}
.y1dc{bottom:445.568000pt;}
.y1e9{bottom:446.270667pt;}
.y6f{bottom:447.697333pt;}
.y22e{bottom:448.288000pt;}
.y24d{bottom:448.342667pt;}
.y19c{bottom:448.632000pt;}
.y1b3{bottom:451.302667pt;}
.y168{bottom:451.570667pt;}
.y1d1{bottom:451.625333pt;}
.ye8{bottom:452.156000pt;}
.y132{bottom:453.318667pt;}
.y53{bottom:453.968000pt;}
.y2d9{bottom:454.626667pt;}
.y1f5{bottom:454.820000pt;}
.y187{bottom:455.914667pt;}
.ybb{bottom:458.908000pt;}
.y117{bottom:459.869333pt;}
.y88{bottom:461.290667pt;}
.y2b4{bottom:462.024000pt;}
.yd1{bottom:462.774667pt;}
.y21{bottom:464.580000pt;}
.yfe{bottom:466.358667pt;}
.y120{bottom:466.538667pt;}
.y198{bottom:467.246667pt;}
.y7b{bottom:467.250667pt;}
.y219{bottom:467.850667pt;}
.ya1{bottom:468.936000pt;}
.y6e{bottom:471.600000pt;}
.y290{bottom:471.853333pt;}
.y2d8{bottom:471.961333pt;}
.y4{bottom:472.068000pt;}
.y23e{bottom:472.190667pt;}
.y24c{bottom:472.245333pt;}
.y167{bottom:475.473333pt;}
.y1d0{bottom:475.528000pt;}
.y43{bottom:476.906667pt;}
.y1db{bottom:477.753333pt;}
.y52{bottom:477.870667pt;}
.y1cd{bottom:478.314667pt;}
.y1c6{bottom:478.393333pt;}
.y1f4{bottom:478.722667pt;}
.y2b3{bottom:479.360000pt;}
.y186{bottom:479.817333pt;}
.y26e{bottom:482.220000pt;}
.yba{bottom:482.810667pt;}
.y19b{bottom:483.294667pt;}
.y116{bottom:483.772000pt;}
.y25d{bottom:484.814667pt;}
.y87{bottom:485.193333pt;}
.y22d{bottom:485.474667pt;}
.y150{bottom:485.681333pt;}
.yd0{bottom:486.677333pt;}
.y140{bottom:488.449333pt;}
.y28f{bottom:489.188000pt;}
.y2d7{bottom:489.297333pt;}
.ye7{bottom:489.341333pt;}
.y182{bottom:489.638667pt;}
.yfd{bottom:490.261333pt;}
.y197{bottom:491.149333pt;}
.y7a{bottom:491.154667pt;}
.ya0{bottom:492.840000pt;}
.y16{bottom:493.722667pt;}
.y6d{bottom:495.504000pt;}
.y1da{bottom:495.818667pt;}
.y23d{bottom:496.093333pt;}
.y24b{bottom:496.148000pt;}
.y2b2{bottom:496.694667pt;}
.y166{bottom:499.377333pt;}
.y42{bottom:500.809333pt;}
.y51{bottom:501.773333pt;}
.y1c5{bottom:502.297333pt;}
.y1f3{bottom:502.625333pt;}
.y158{bottom:503.698667pt;}
.y184{bottom:503.862667pt;}
.y16c{bottom:503.906667pt;}
.y20{bottom:504.422667pt;}
.y1c7{bottom:505.888000pt;}
.y26d{bottom:506.122667pt;}
.y28e{bottom:506.524000pt;}
.yb9{bottom:506.713333pt;}
.y115{bottom:507.676000pt;}
.y1e8{bottom:507.833333pt;}
.y86{bottom:509.096000pt;}
.y22c{bottom:509.377333pt;}
.y1cc{bottom:510.501333pt;}
.ycf{bottom:510.581333pt;}
.y1b2{bottom:512.865333pt;}
.ye6{bottom:513.245333pt;}
.y196{bottom:515.052000pt;}
.y79{bottom:515.057333pt;}
.y9f{bottom:516.742667pt;}
.y15{bottom:517.625333pt;}
.y14f{bottom:517.866667pt;}
.y214{bottom:517.962667pt;}
.y2d6{bottom:519.122667pt;}
.y6c{bottom:519.406667pt;}
.y25c{bottom:521.081333pt;}
.y41{bottom:524.712000pt;}
.y50{bottom:525.676000pt;}
.y1c4{bottom:526.200000pt;}
.y131{bottom:527.244000pt;}
.y2b1{bottom:527.313333pt;}
.y11f{bottom:528.100000pt;}
.y1f{bottom:528.325333pt;}
.y26c{bottom:530.025333pt;}
.yb8{bottom:530.616000pt;}
.yfc{bottom:530.662667pt;}
.y114{bottom:531.578667pt;}
.y85{bottom:532.998667pt;}
.y22b{bottom:533.280000pt;}
.y24a{bottom:533.334667pt;}
.y13e{bottom:533.850667pt;}
.yce{bottom:534.484000pt;}
.y2d5{bottom:536.457333pt;}
.y3{bottom:536.804000pt;}
.y1cf{bottom:537.089333pt;}
.y28d{bottom:537.141333pt;}
.ye5{bottom:537.148000pt;}
.y195{bottom:538.954667pt;}
.y78{bottom:538.960000pt;}
.y1e7{bottom:540.018667pt;}
.y9e{bottom:540.645333pt;}
.y1a2{bottom:540.964000pt;}
.y185{bottom:541.380000pt;}
.y14{bottom:541.528000pt;}
.y213{bottom:541.866667pt;}
.y1a4{bottom:542.861333pt;}
.y1f2{bottom:543.026667pt;}
.y6b{bottom:543.309333pt;}
.y1b1{bottom:545.050667pt;}
.y157{bottom:548.612000pt;}
.y40{bottom:548.616000pt;}
.y4f{bottom:549.580000pt;}
.y1ce{bottom:549.682667pt;}
.y183{bottom:549.845333pt;}
.y1c3{bottom:550.102667pt;}
.y19a{bottom:550.626667pt;}
.y13f{bottom:551.073333pt;}
.y1e{bottom:552.229333pt;}
.y2d4{bottom:553.792000pt;}
.y26b{bottom:553.929333pt;}
.y28c{bottom:554.477333pt;}
.yb7{bottom:554.520000pt;}
.y113{bottom:555.481333pt;}
.y84{bottom:556.902667pt;}
.y22a{bottom:557.184000pt;}
.y249{bottom:557.237333pt;}
.y13d{bottom:557.753333pt;}
.y2b0{bottom:557.930667pt;}
.ycd{bottom:558.386667pt;}
.y165{bottom:560.938667pt;}
.ye4{bottom:561.050667pt;}
.y194{bottom:562.857333pt;}
.y77{bottom:562.862667pt;}
.y1b0{bottom:563.116000pt;}
.y281{bottom:563.997333pt;}
.yf1{bottom:564.548000pt;}
.y13{bottom:565.432000pt;}
.y212{bottom:565.769333pt;}
.yfb{bottom:566.929333pt;}
.y17a{bottom:569.852000pt;}
.y28b{bottom:571.812000pt;}
.y3f{bottom:572.518667pt;}
.y4e{bottom:573.482667pt;}
.y1c2{bottom:574.005333pt;}
.y2af{bottom:575.266667pt;}
.y9d{bottom:577.832000pt;}
.y1ad{bottom:578.485333pt;}
.y112{bottom:579.384000pt;}
.y6a{bottom:580.496000pt;}
.y83{bottom:580.805333pt;}
.y229{bottom:581.086667pt;}
.y248{bottom:581.141333pt;}
.y13c{bottom:581.657333pt;}
.y25b{bottom:582.453333pt;}
.y2d3{bottom:583.617333pt;}
.ye3{bottom:584.953333pt;}
.y76{bottom:586.766667pt;}
.y280{bottom:587.901333pt;}
.yf0{bottom:588.452000pt;}
.y28a{bottom:589.146667pt;}
.y12{bottom:589.334667pt;}
.y211{bottom:589.672000pt;}
.yb6{bottom:591.705333pt;}
.y1d{bottom:592.072000pt;}
.y2ae{bottom:592.601333pt;}
.ycc{bottom:595.573333pt;}
.y193{bottom:597.520000pt;}
.y1c1{bottom:597.909333pt;}
.y2d2{bottom:600.953333pt;}
.y9c{bottom:601.734667pt;}
.y1ac{bottom:602.388000pt;}
.y69{bottom:604.398667pt;}
.y82{bottom:604.708000pt;}
.y228{bottom:604.989333pt;}
.y247{bottom:605.044000pt;}
.y13b{bottom:605.560000pt;}
.y25a{bottom:606.356000pt;}
.ye2{bottom:608.857333pt;}
.y4d{bottom:610.669333pt;}
.y27f{bottom:611.804000pt;}
.y3e{bottom:612.361333pt;}
.y11{bottom:613.237333pt;}
.y210{bottom:613.574667pt;}
.yb5{bottom:615.609333pt;}
.y1c{bottom:615.974667pt;}
.y111{bottom:616.570667pt;}
.y2d1{bottom:618.288000pt;}
.ycb{bottom:619.476000pt;}
.y289{bottom:619.765333pt;}
.y1c0{bottom:621.812000pt;}
.y2ad{bottom:623.220000pt;}
.y75{bottom:623.952000pt;}
.y23b{bottom:625.421333pt;}
.y9b{bottom:625.637333pt;}
.y1ab{bottom:626.292000pt;}
.y68{bottom:628.301333pt;}
.y227{bottom:628.892000pt;}
.y246{bottom:628.946667pt;}
.y13a{bottom:629.462667pt;}
.y259{bottom:630.260000pt;}
.ye1{bottom:632.760000pt;}
.y4c{bottom:634.572000pt;}
.y2d0{bottom:635.622667pt;}
.y27e{bottom:635.706667pt;}
.y3d{bottom:636.265333pt;}
.y10{bottom:637.140000pt;}
.y20f{bottom:637.478667pt;}
.yb4{bottom:639.512000pt;}
.y1b{bottom:639.878667pt;}
.y110{bottom:640.473333pt;}
.y2ac{bottom:640.554667pt;}
.yca{bottom:643.378667pt;}
.y74{bottom:647.856000pt;}
.y9a{bottom:649.541333pt;}
.y288{bottom:650.382667pt;}
.y67{bottom:652.205333pt;}
.y226{bottom:652.794667pt;}
.y258{bottom:654.162667pt;}
.ye0{bottom:656.662667pt;}
.y2ab{bottom:657.889333pt;}
.y4b{bottom:658.474667pt;}
.y27d{bottom:659.609333pt;}
.y3c{bottom:660.168000pt;}
.yf{bottom:661.044000pt;}
.y20e{bottom:661.381333pt;}
.yb3{bottom:663.414667pt;}
.y1a{bottom:663.781333pt;}
.y10f{bottom:664.377333pt;}
.y192{bottom:664.852000pt;}
.y2cf{bottom:665.448000pt;}
.y287{bottom:667.718667pt;}
.y128{bottom:669.776000pt;}
.y2ea{bottom:671.172000pt;}
.y73{bottom:671.758667pt;}
.y99{bottom:673.444000pt;}
.y66{bottom:676.108000pt;}
.y225{bottom:676.698667pt;}
.ydf{bottom:680.565333pt;}
.y4a{bottom:682.377333pt;}
.y2ce{bottom:682.782667pt;}
.y1d7{bottom:683.105333pt;}
.y1bf{bottom:683.373333pt;}
.y27c{bottom:683.513333pt;}
.yc9{bottom:683.780000pt;}
.y3b{bottom:684.070667pt;}
.ye{bottom:684.946667pt;}
.y20d{bottom:685.284000pt;}
.y1aa{bottom:685.612000pt;}
.yb2{bottom:687.317333pt;}
.y19{bottom:687.684000pt;}
.y10e{bottom:688.280000pt;}
.y2aa{bottom:688.508000pt;}
.y245{bottom:690.508000pt;}
.y139{bottom:691.024000pt;}
.y81{bottom:695.028000pt;}
.y72{bottom:695.661333pt;}
.y191{bottom:697.038667pt;}
.yef{bottom:697.346667pt;}
.y286{bottom:698.336000pt;}
.y65{bottom:700.010667pt;}
.y2cd{bottom:700.117333pt;}
.yde{bottom:704.469333pt;}
.y2a9{bottom:705.842667pt;}
.y27b{bottom:707.416000pt;}
.y3a{bottom:707.973333pt;}
.yd{bottom:708.849333pt;}
.y244{bottom:709.769333pt;}
.y98{bottom:710.630667pt;}
.yb1{bottom:711.221333pt;}
.y10d{bottom:712.182667pt;}
.y1d6{bottom:715.290667pt;}
.y1be{bottom:715.560000pt;}
.y285{bottom:715.672000pt;}
.y2cc{bottom:717.453333pt;}
.y1a9{bottom:717.798667pt;}
.y2e9{bottom:719.125333pt;}
.y49{bottom:719.564000pt;}
.y203{bottom:720.966667pt;}
.yee{bottom:721.249333pt;}
.y138{bottom:723.210667pt;}
.y64{bottom:723.913333pt;}
.y18{bottom:727.526667pt;}
.y243{bottom:729.030667pt;}
.y27a{bottom:731.318667pt;}
.y39{bottom:731.876000pt;}
.y20c{bottom:732.500000pt;}
.yc{bottom:732.752000pt;}
.y97{bottom:734.533333pt;}
.yb0{bottom:735.124000pt;}
.y10c{bottom:736.085333pt;}
.y2a8{bottom:736.461333pt;}
.y48{bottom:743.468000pt;}
.y80{bottom:744.482667pt;}
.ydd{bottom:744.869333pt;}
.yc8{bottom:745.153333pt;}
.y284{bottom:746.289333pt;}
.y2cb{bottom:747.278667pt;}
.y63{bottom:747.817333pt;}
.y2a7{bottom:753.796000pt;}
.y279{bottom:755.221333pt;}
.y38{bottom:755.780000pt;}
.y20b{bottom:756.402667pt;}
.yb{bottom:756.654667pt;}
.y14e{bottom:757.416000pt;}
.y1cb{bottom:758.153333pt;}
.y96{bottom:758.436000pt;}
.y10b{bottom:759.988000pt;}
.y283{bottom:763.625333pt;}
.y1e6{bottom:764.096000pt;}
.y2ca{bottom:764.613333pt;}
.y1a3{bottom:765.585333pt;}
.y2e8{bottom:767.078667pt;}
.yc7{bottom:769.056000pt;}
.y62{bottom:771.720000pt;}
.y278{bottom:779.124000pt;}
.y37{bottom:779.682667pt;}
.y2c9{bottom:781.948000pt;}
.y95{bottom:782.338667pt;}
.y10a{bottom:783.892000pt;}
.y2a6{bottom:784.414667pt;}
.yc6{bottom:792.958667pt;}
.y61{bottom:795.622667pt;}
.y2a5{bottom:801.749333pt;}
.y277{bottom:803.028000pt;}
.y20a{bottom:803.618667pt;}
.y94{bottom:806.242667pt;}
.y109{bottom:807.794667pt;}
.y14d{bottom:810.401333pt;}
.y2c8{bottom:811.773333pt;}
.y36{bottom:819.525333pt;}
.y276{bottom:826.930667pt;}
.y209{bottom:827.521333pt;}
.y2c7{bottom:829.109333pt;}
.y1af{bottom:829.862667pt;}
.yaf{bottom:830.145333pt;}
.y108{bottom:831.697333pt;}
.y2a4{bottom:832.366667pt;}
.y17{bottom:833.788000pt;}
.y14c{bottom:834.304000pt;}
.y35{bottom:843.429333pt;}
.y2c6{bottom:846.444000pt;}
.ya{bottom:846.976000pt;}
.y282{bottom:847.377333pt;}
.y2a3{bottom:849.702667pt;}
.y275{bottom:850.833333pt;}
.yae{bottom:854.048000pt;}
.y14b{bottom:858.206667pt;}
.y2c5{bottom:863.778667pt;}
.y11e{bottom:864.385333pt;}
.y34{bottom:867.332000pt;}
.y208{bottom:874.736000pt;}
.yad{bottom:877.950667pt;}
.y2a2{bottom:880.320000pt;}
.y2c4{bottom:881.113333pt;}
.y14a{bottom:882.110667pt;}
.y33{bottom:891.234667pt;}
.y107{bottom:893.260000pt;}
.y2a1{bottom:897.656000pt;}
.y207{bottom:898.640000pt;}
.ydc{bottom:901.854667pt;}
.y2{bottom:906.658667pt;}
.y2c3{bottom:910.938667pt;}
.y2e7{bottom:914.990667pt;}
.y32{bottom:915.137333pt;}
.y149{bottom:916.773333pt;}
.y206{bottom:922.542667pt;}
.y11d{bottom:925.757333pt;}
.y2a0{bottom:928.273333pt;}
.y31{bottom:939.040000pt;}
.y29f{bottom:945.609333pt;}
.y1{bottom:956.113333pt;}
.y30{bottom:962.944000pt;}
.y2f{bottom:1011.061333pt;}
.ha{height:40.029124pt;}
.h8{height:43.548809pt;}
.h6{height:43.867614pt;}
.h7{height:44.250180pt;}
.h5{height:52.258425pt;}
.h4{height:52.640990pt;}
.h9{height:53.100068pt;}
.h3{height:63.719934pt;}
.h2{height:91.745319pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:90.649333pt;}
.xf{left:96.452000pt;}
.x1a{left:98.200000pt;}
.x25{left:100.994667pt;}
.x34{left:109.546667pt;}
.x15{left:111.508000pt;}
.x36{left:112.458667pt;}
.x18{left:113.628000pt;}
.xc{left:114.824000pt;}
.xa{left:115.748000pt;}
.x2b{left:119.084000pt;}
.x1{left:121.560000pt;}
.x13{left:122.486667pt;}
.x31{left:123.434667pt;}
.x19{left:124.462667pt;}
.x33{left:128.662667pt;}
.x28{left:129.713333pt;}
.x35{left:131.356000pt;}
.x1e{left:133.698667pt;}
.x14{left:135.870667pt;}
.xd{left:139.658667pt;}
.x30{left:142.188000pt;}
.x2e{left:145.312000pt;}
.x27{left:148.610667pt;}
.x29{left:149.638667pt;}
.x22{left:152.596000pt;}
.x23{left:153.624000pt;}
.x21{left:155.632000pt;}
.x10{left:157.422667pt;}
.x2{left:162.413333pt;}
.x6{left:165.036000pt;}
.x17{left:167.394667pt;}
.x24{left:168.536000pt;}
.x1f{left:172.521333pt;}
.x1d{left:174.529333pt;}
.xe{left:176.321333pt;}
.x1b{left:181.414667pt;}
.x2a{left:193.713333pt;}
.x32{left:218.788000pt;}
.x20{left:234.725333pt;}
.x3{left:243.981333pt;}
.x1c{left:253.622667pt;}
.x7{left:280.236000pt;}
.x4{left:300.597333pt;}
.x5{left:311.050667pt;}
.x8{left:331.317333pt;}
.x26{left:350.652000pt;}
.xb{left:363.181333pt;}
.x9{left:364.590667pt;}
.x2d{left:373.534667pt;}
.x2f{left:388.914667pt;}
.x2c{left:407.812000pt;}
.x12{left:662.012000pt;}
.x11{left:680.910667pt;}
}




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