
    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_0a609d89efb0cbbeaad6fe52.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.943500;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_0ddb9bb90910ed09f5719e79.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.958000;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_8ae25707ebb4fbbf45e2564b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948500;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_9f8c758012cf4c4b19703a29.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.956500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5f194fe00374f222ef794cfb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4c71ced1f3a8fe4e0e3eb4fb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.744500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_23d6d3416b2799c9aad88148.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923500;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:ff8;src:url('chunks/assets/font_15733b736e040a09105125e2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.923500;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:ff9;src:url('chunks/assets/font_cd648b43cceb0bba068319f4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.736000;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:ffa;src:url('chunks/assets/font_d988832ff42fa37535631bc3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.732500;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:ffb;src:url('chunks/assets/font_d988832ff42fa37535631bc3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.732500;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:ffc;src:url('chunks/assets/font_f3b0126ac2306ca9366c8d0d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.744500;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:ffd;src:url('chunks/assets/font_d41d88dac861b1c4641865d9.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.723000;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.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.133690,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.182482,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(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);}
.v3{vertical-align:-32.400600px;}
.v7{vertical-align:-21.600000px;}
.v8{vertical-align:-20.250000px;}
.v4{vertical-align:-18.900000px;}
.v6{vertical-align:-15.840000px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:21.600000px;}
.v2{vertical-align:32.400600px;}
.lsa7{letter-spacing:-12.288000px;}
.ls57{letter-spacing:-4.128000px;}
.ls94{letter-spacing:-2.700000px;}
.ls1b{letter-spacing:-2.538000px;}
.ls50{letter-spacing:-2.452800px;}
.ls98{letter-spacing:-2.340000px;}
.ls70{letter-spacing:-2.256000px;}
.lsa8{letter-spacing:-2.160000px;}
.ls25{letter-spacing:-2.150400px;}
.ls3d{letter-spacing:-2.112000px;}
.ls56{letter-spacing:-2.064000px;}
.ls5e{letter-spacing:-2.025000px;}
.ls3f{letter-spacing:-2.016000px;}
.ls1a{letter-spacing:-1.998000px;}
.ls27{letter-spacing:-1.982400px;}
.ls29{letter-spacing:-1.968000px;}
.ls26{letter-spacing:-1.872000px;}
.ls5a{letter-spacing:-1.824000px;}
.ls93{letter-spacing:-1.755000px;}
.ls31{letter-spacing:-1.728000px;}
.ls7e{letter-spacing:-1.680000px;}
.lsa4{letter-spacing:-1.575000px;}
.ls2e{letter-spacing:-1.536000px;}
.ls5b{letter-spacing:-1.488000px;}
.ls23{letter-spacing:-1.440000px;}
.ls3b{letter-spacing:-1.392000px;}
.ls74{letter-spacing:-1.377600px;}
.ls8c{letter-spacing:-1.350000px;}
.lsa2{letter-spacing:-1.305000px;}
.ls92{letter-spacing:-1.260000px;}
.ls8a{letter-spacing:-1.215000px;}
.ls2f{letter-spacing:-1.200000px;}
.ls32{letter-spacing:-1.176000px;}
.ls28{letter-spacing:-1.152000px;}
.ls6f{letter-spacing:-1.142400px;}
.lsa3{letter-spacing:-1.125000px;}
.ls6c{letter-spacing:-1.104000px;}
.ls90{letter-spacing:-1.080000px;}
.lsa6{letter-spacing:-1.056000px;}
.lsa{letter-spacing:-1.050000px;}
.lsb{letter-spacing:-1.008000px;}
.ls43{letter-spacing:-0.945000px;}
.ls80{letter-spacing:-0.940800px;}
.ls5f{letter-spacing:-0.855000px;}
.ls97{letter-spacing:-0.810000px;}
.ls72{letter-spacing:-0.739200px;}
.ls61{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.705600px;}
.ls95{letter-spacing:-0.675000px;}
.ls9a{letter-spacing:-0.630000px;}
.ls6e{letter-spacing:-0.624000px;}
.ls69{letter-spacing:-0.576000px;}
.ls2d{letter-spacing:-0.537600px;}
.ls6d{letter-spacing:-0.528000px;}
.ls64{letter-spacing:-0.450000px;}
.ls78{letter-spacing:-0.436800px;}
.ls83{letter-spacing:-0.432000px;}
.ls3a{letter-spacing:-0.403200px;}
.ls8d{letter-spacing:-0.360000px;}
.ls75{letter-spacing:-0.336000px;}
.lsd{letter-spacing:-0.324000px;}
.ls9e{letter-spacing:-0.315000px;}
.ls10{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.240000px;}
.ls2b{letter-spacing:-0.235200px;}
.ls60{letter-spacing:-0.225000px;}
.lse{letter-spacing:-0.216000px;}
.ls51{letter-spacing:-0.192000px;}
.ls8f{letter-spacing:-0.180000px;}
.ls58{letter-spacing:-0.168000px;}
.ls8e{letter-spacing:-0.135000px;}
.ls4e{letter-spacing:-0.134400px;}
.ls48{letter-spacing:-0.090000px;}
.ls99{letter-spacing:-0.045000px;}
.ls66{letter-spacing:-0.033600px;}
.ls9{letter-spacing:0.000000px;}
.ls73{letter-spacing:0.033600px;}
.ls34{letter-spacing:0.076800px;}
.ls65{letter-spacing:0.096000px;}
.ls81{letter-spacing:0.100800px;}
.ls59{letter-spacing:0.134400px;}
.ls9b{letter-spacing:0.135000px;}
.ls38{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.192000px;}
.ls79{letter-spacing:0.201600px;}
.ls62{letter-spacing:0.225000px;}
.ls36{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.240600px;}
.ls68{letter-spacing:0.268800px;}
.lsa0{letter-spacing:0.270000px;}
.ls4f{letter-spacing:0.288000px;}
.ls5c{letter-spacing:0.315000px;}
.ls18{letter-spacing:0.324000px;}
.ls6{letter-spacing:0.334200px;}
.ls52{letter-spacing:0.336000px;}
.ls9d{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.405000px;}
.ls1{letter-spacing:0.411000px;}
.ls4{letter-spacing:0.417000px;}
.ls2a{letter-spacing:0.436800px;}
.ls91{letter-spacing:0.450000px;}
.ls17{letter-spacing:0.480000px;}
.ls63{letter-spacing:0.495000px;}
.lsf{letter-spacing:0.504000px;}
.ls37{letter-spacing:0.528000px;}
.ls71{letter-spacing:0.537600px;}
.ls19{letter-spacing:0.540000px;}
.ls5{letter-spacing:0.558000px;}
.ls1f{letter-spacing:0.576000px;}
.ls9f{letter-spacing:0.585000px;}
.ls7a{letter-spacing:0.604800px;}
.ls3{letter-spacing:0.622800px;}
.ls53{letter-spacing:0.624000px;}
.ls45{letter-spacing:0.630000px;}
.ls76{letter-spacing:0.638400px;}
.ls22{letter-spacing:0.672000px;}
.ls46{letter-spacing:0.675000px;}
.ls14{letter-spacing:0.714000px;}
.ls30{letter-spacing:0.720000px;}
.ls20{letter-spacing:0.721800px;}
.ls15{letter-spacing:0.756000px;}
.ls42{letter-spacing:0.765000px;}
.ls1d{letter-spacing:0.768000px;}
.ls4c{letter-spacing:0.774300px;}
.ls4d{letter-spacing:0.774900px;}
.ls2{letter-spacing:0.778200px;}
.ls12{letter-spacing:0.798000px;}
.ls8b{letter-spacing:0.810000px;}
.ls7{letter-spacing:0.822600px;}
.ls16{letter-spacing:0.840000px;}
.ls4b{letter-spacing:0.855000px;}
.ls7c{letter-spacing:0.864000px;}
.ls13{letter-spacing:0.882000px;}
.ls5d{letter-spacing:0.900000px;}
.ls39{letter-spacing:0.912000px;}
.ls33{letter-spacing:1.008000px;}
.ls82{letter-spacing:1.056000px;}
.ls54{letter-spacing:1.108800px;}
.lsa1{letter-spacing:1.170000px;}
.ls7d{letter-spacing:1.176000px;}
.ls6b{letter-spacing:1.209600px;}
.ls40{letter-spacing:1.344000px;}
.ls96{letter-spacing:1.350000px;}
.ls4a{letter-spacing:1.392000px;}
.ls6a{letter-spacing:1.488000px;}
.ls77{letter-spacing:1.536000px;}
.ls2c{letter-spacing:1.680000px;}
.ls49{letter-spacing:1.824000px;}
.ls44{letter-spacing:2.160000px;}
.ls88{letter-spacing:2.208000px;}
.ls35{letter-spacing:2.898000px;}
.ls9c{letter-spacing:3.465000px;}
.ls67{letter-spacing:3.792000px;}
.ls55{letter-spacing:4.464000px;}
.ls85{letter-spacing:4.800000px;}
.ls86{letter-spacing:5.136000px;}
.ls84{letter-spacing:5.424000px;}
.lsa5{letter-spacing:5.616000px;}
.ls7b{letter-spacing:5.664000px;}
.ls7f{letter-spacing:5.760000px;}
.ls89{letter-spacing:5.904000px;}
.ls21{letter-spacing:5.940000px;}
.ls1e{letter-spacing:6.000000px;}
.ls3e{letter-spacing:6.420000px;}
.ls41{letter-spacing:6.720000px;}
.ls1c{letter-spacing:8.400000px;}
.lsc{letter-spacing:11.448000px;}
.ls87{letter-spacing:68.016000px;}
.ls0{letter-spacing:92.029800px;}
.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;}
}
.ws0{word-spacing:-25.920000px;}
.ws3a{word-spacing:-21.000000px;}
.ws5f{word-spacing:-20.580000px;}
.ws1a{word-spacing:-20.520000px;}
.ws9{word-spacing:-18.606000px;}
.wsa6{word-spacing:-17.568000px;}
.ws9e{word-spacing:-17.088000px;}
.wsa4{word-spacing:-16.800000px;}
.ws7{word-spacing:-15.060000px;}
.ws25{word-spacing:-14.580000px;}
.wsa5{word-spacing:-14.496000px;}
.ws23{word-spacing:-14.340000px;}
.ws3d{word-spacing:-13.680000px;}
.ws22{word-spacing:-13.380000px;}
.wsa{word-spacing:-13.056000px;}
.ws91{word-spacing:-12.864000px;}
.ws2{word-spacing:-12.751200px;}
.ws6d{word-spacing:-12.375000px;}
.ws1{word-spacing:-12.247200px;}
.ws43{word-spacing:-12.240000px;}
.ws40{word-spacing:-12.150000px;}
.ws37{word-spacing:-12.144000px;}
.wsd4{word-spacing:-12.105000px;}
.ws82{word-spacing:-12.000000px;}
.ws84{word-spacing:-11.664000px;}
.wsd7{word-spacing:-11.655000px;}
.ws3{word-spacing:-11.541600px;}
.wsd6{word-spacing:-11.520000px;}
.ws5{word-spacing:-11.466000px;}
.wsa9{word-spacing:-11.430000px;}
.wsa7{word-spacing:-11.340000px;}
.ws6c{word-spacing:-11.295000px;}
.wsd2{word-spacing:-11.250000px;}
.wsad{word-spacing:-11.205000px;}
.wsab{word-spacing:-11.160000px;}
.wsd5{word-spacing:-11.115000px;}
.ws6{word-spacing:-11.088000px;}
.ws73{word-spacing:-11.070000px;}
.wsa8{word-spacing:-10.935000px;}
.wsd{word-spacing:-10.752000px;}
.wsd3{word-spacing:-10.710000px;}
.ws8{word-spacing:-10.638000px;}
.wsae{word-spacing:-10.305000px;}
.wsaa{word-spacing:-10.260000px;}
.ws83{word-spacing:-9.811200px;}
.wsd8{word-spacing:-9.810000px;}
.ws90{word-spacing:-9.777600px;}
.ws63{word-spacing:-9.710400px;}
.ws21{word-spacing:-9.696000px;}
.ws89{word-spacing:-9.441600px;}
.ws67{word-spacing:-9.408000px;}
.ws39{word-spacing:-9.273600px;}
.ws8c{word-spacing:-9.240000px;}
.ws8f{word-spacing:-9.206400px;}
.ws86{word-spacing:-9.139200px;}
.ws1f{word-spacing:-9.038400px;}
.ws62{word-spacing:-8.937600px;}
.ws81{word-spacing:-8.870400px;}
.wsac{word-spacing:-8.820000px;}
.ws8e{word-spacing:-8.803200px;}
.ws66{word-spacing:-8.736000px;}
.ws9d{word-spacing:-8.702400px;}
.ws88{word-spacing:-8.635200px;}
.ws1b{word-spacing:-8.601600px;}
.ws80{word-spacing:-8.568000px;}
.ws60{word-spacing:-8.467200px;}
.ws65{word-spacing:-8.433600px;}
.ws20{word-spacing:-8.366400px;}
.ws8b{word-spacing:-8.265600px;}
.ws38{word-spacing:-8.198400px;}
.ws8d{word-spacing:-8.164800px;}
.ws1e{word-spacing:-7.896000px;}
.ws87{word-spacing:-7.862400px;}
.ws9c{word-spacing:-7.660800px;}
.ws4{word-spacing:-7.526400px;}
.ws85{word-spacing:-7.459200px;}
.ws24{word-spacing:-7.425600px;}
.ws8a{word-spacing:-7.224000px;}
.ws64{word-spacing:-7.104000px;}
.ws92{word-spacing:-6.921600px;}
.ws5d{word-spacing:-6.720000px;}
.ws1d{word-spacing:-6.619200px;}
.ws1c{word-spacing:-6.451200px;}
.ws61{word-spacing:-6.148800px;}
.ws26{word-spacing:-6.000000px;}
.ws9f{word-spacing:-5.760000px;}
.ws9a{word-spacing:-5.664000px;}
.wse9{word-spacing:-5.616000px;}
.wsa3{word-spacing:-5.136000px;}
.wsa2{word-spacing:-4.800000px;}
.ws79{word-spacing:-4.464000px;}
.ws93{word-spacing:-3.792000px;}
.wsce{word-spacing:-3.465000px;}
.ws51{word-spacing:-2.898000px;}
.wsaf{word-spacing:-2.208000px;}
.wsca{word-spacing:-2.025000px;}
.wsdc{word-spacing:-1.710000px;}
.ws31{word-spacing:-1.680000px;}
.ws99{word-spacing:-1.536000px;}
.wsdb{word-spacing:-1.530000px;}
.ws95{word-spacing:-1.488000px;}
.wsc5{word-spacing:-1.350000px;}
.ws5c{word-spacing:-1.344000px;}
.wse3{word-spacing:-1.170000px;}
.wsa0{word-spacing:-1.056000px;}
.ws7b{word-spacing:-1.008000px;}
.ws55{word-spacing:-0.912000px;}
.ws13{word-spacing:-0.882000px;}
.ws9b{word-spacing:-0.864000px;}
.wsb1{word-spacing:-0.855000px;}
.ws16{word-spacing:-0.840000px;}
.wsb4{word-spacing:-0.810000px;}
.ws12{word-spacing:-0.798000px;}
.ws29{word-spacing:-0.768000px;}
.ws5e{word-spacing:-0.765000px;}
.ws15{word-spacing:-0.756000px;}
.ws33{word-spacing:-0.720000px;}
.ws14{word-spacing:-0.714000px;}
.wsc1{word-spacing:-0.675000px;}
.ws28{word-spacing:-0.672000px;}
.wsf{word-spacing:-0.648000px;}
.wsbf{word-spacing:-0.630000px;}
.ws78{word-spacing:-0.624000px;}
.wsd1{word-spacing:-0.585000px;}
.ws27{word-spacing:-0.576000px;}
.ws18{word-spacing:-0.540000px;}
.ws54{word-spacing:-0.528000px;}
.ws2c{word-spacing:-0.480000px;}
.wsbc{word-spacing:-0.450000px;}
.wsba{word-spacing:-0.405000px;}
.wsd9{word-spacing:-0.360000px;}
.ws17{word-spacing:-0.324000px;}
.ws7e{word-spacing:-0.315000px;}
.ws76{word-spacing:-0.288000px;}
.wse2{word-spacing:-0.270000px;}
.ws52{word-spacing:-0.240000px;}
.wsc4{word-spacing:-0.225000px;}
.ws59{word-spacing:-0.192000px;}
.ws98{word-spacing:-0.144000px;}
.wscd{word-spacing:-0.135000px;}
.wsb{word-spacing:0.000000px;}
.wscb{word-spacing:0.045000px;}
.wsb6{word-spacing:0.090000px;}
.wsb8{word-spacing:0.135000px;}
.wsb9{word-spacing:0.180000px;}
.ws77{word-spacing:0.192000px;}
.ws10{word-spacing:0.216000px;}
.ws2b{word-spacing:0.240000px;}
.ws11{word-spacing:0.288000px;}
.wse0{word-spacing:0.315000px;}
.ws35{word-spacing:0.336000px;}
.wsb5{word-spacing:0.360000px;}
.wsa1{word-spacing:0.432000px;}
.wsc3{word-spacing:0.450000px;}
.ws96{word-spacing:0.528000px;}
.ws32{word-spacing:0.537600px;}
.ws94{word-spacing:0.576000px;}
.wscc{word-spacing:0.630000px;}
.wsc2{word-spacing:0.675000px;}
.ws30{word-spacing:0.720000px;}
.wsc7{word-spacing:0.810000px;}
.ws53{word-spacing:0.864000px;}
.wsde{word-spacing:0.945000px;}
.wse{word-spacing:1.008000px;}
.wsc{word-spacing:1.050000px;}
.wsea{word-spacing:1.056000px;}
.wsbb{word-spacing:1.080000px;}
.ws57{word-spacing:1.104000px;}
.ws7f{word-spacing:1.125000px;}
.ws2e{word-spacing:1.152000px;}
.wsb0{word-spacing:1.215000px;}
.wsc9{word-spacing:1.260000px;}
.wse6{word-spacing:1.305000px;}
.wsb3{word-spacing:1.350000px;}
.ws58{word-spacing:1.392000px;}
.ws2a{word-spacing:1.440000px;}
.wse5{word-spacing:1.485000px;}
.ws7d{word-spacing:1.488000px;}
.wse8{word-spacing:1.575000px;}
.ws34{word-spacing:1.728000px;}
.wsbe{word-spacing:1.755000px;}
.ws2d{word-spacing:1.872000px;}
.ws2f{word-spacing:1.968000px;}
.ws5b{word-spacing:2.016000px;}
.ws7a{word-spacing:2.064000px;}
.ws5a{word-spacing:2.112000px;}
.wsec{word-spacing:2.160000px;}
.ws97{word-spacing:2.256000px;}
.wsc8{word-spacing:2.340000px;}
.ws19{word-spacing:2.538000px;}
.wsc0{word-spacing:2.700000px;}
.wsdd{word-spacing:3.015000px;}
.wsdf{word-spacing:3.555000px;}
.ws7c{word-spacing:4.272000px;}
.wse1{word-spacing:4.680000px;}
.wsd0{word-spacing:6.300000px;}
.wsb7{word-spacing:6.660000px;}
.wsb2{word-spacing:8.640000px;}
.wse4{word-spacing:8.730000px;}
.wsc6{word-spacing:9.315000px;}
.ws56{word-spacing:11.184000px;}
.wseb{word-spacing:12.288000px;}
.wse7{word-spacing:12.510000px;}
.wscf{word-spacing:15.615000px;}
.wsbd{word-spacing:17.865000px;}
.wsda{word-spacing:25.470000px;}
.ws6b{word-spacing:73.242000px;}
.ws69{word-spacing:120.060000px;}
.ws6a{word-spacing:193.950000px;}
.ws74{word-spacing:199.026000px;}
.ws75{word-spacing:199.957500px;}
.ws70{word-spacing:221.769000px;}
.ws71{word-spacing:224.226000px;}
.ws68{word-spacing:233.298000px;}
.ws6e{word-spacing:236.164500px;}
.ws6f{word-spacing:250.164000px;}
.ws72{word-spacing:269.262000px;}
.ws4d{word-spacing:367.708500px;}
.ws50{word-spacing:374.175000px;}
.ws48{word-spacing:376.335000px;}
.ws49{word-spacing:376.650000px;}
.ws47{word-spacing:379.530000px;}
.ws44{word-spacing:397.854000px;}
.ws4a{word-spacing:398.515500px;}
.ws42{word-spacing:400.329000px;}
.ws4e{word-spacing:400.522500px;}
.ws45{word-spacing:401.251500px;}
.ws41{word-spacing:403.866000px;}
.ws4f{word-spacing:403.933500px;}
.ws4b{word-spacing:404.451000px;}
.ws4c{word-spacing:404.784000px;}
.ws3c{word-spacing:406.179000px;}
.ws46{word-spacing:426.348000px;}
.ws3e{word-spacing:429.214500px;}
.ws3f{word-spacing:433.098000px;}
.ws3b{word-spacing:575.892000px;}
.ws36{word-spacing:2490.601200px;}
._12{margin-left:-12.670800px;}
._11{margin-left:-11.404800px;}
._1c{margin-left:-8.751600px;}
._1b{margin-left:-7.749000px;}
._6{margin-left:-6.285600px;}
._7{margin-left:-4.653600px;}
._8{margin-left:-2.641800px;}
._5{margin-left:-1.528200px;}
._2{width:1.360800px;}
._4{width:2.562000px;}
._9{width:4.222800px;}
._b{width:5.529600px;}
._c{width:6.772200px;}
._a{width:8.374200px;}
._3{width:9.450000px;}
._d{width:10.612800px;}
._10{width:11.942400px;}
._f{width:13.416000px;}
._1d{width:14.750400px;}
._1e{width:16.165200px;}
._e{width:17.284200px;}
._13{width:18.888000px;}
._14{width:20.181600px;}
._23{width:23.490000px;}
._1f{width:25.043400px;}
._15{width:26.625000px;}
._20{width:28.924200px;}
._21{width:31.054500px;}
._22{width:32.212200px;}
._24{width:36.463500px;}
._16{width:82.659600px;}
._18{width:112.086000px;}
._19{width:214.702200px;}
._1a{width:216.852300px;}
._17{width:249.782400px;}
._1{width:831.726000px;}
._0{width:1326.570000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:29.400000px;}
.fsd{font-size:31.500000px;}
.fsb{font-size:33.600000px;}
.fs0{font-size:42.000000px;}
.fsc{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:57.540000px;}
.fs8{font-size:60.000000px;}
.fs2{font-size:72.000000px;}
.fsa{font-size:78.120000px;}
.fs3{font-size:78.540000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.447800px;}
.y2{bottom:42.997800px;}
.yf{bottom:64.462650px;}
.y177{bottom:75.975000px;}
.y7f{bottom:76.438650px;}
.ye2{bottom:76.444950px;}
.yaf{bottom:76.453650px;}
.yfc{bottom:77.944950px;}
.y115{bottom:78.980100px;}
.y133{bottom:79.444200px;}
.ye{bottom:79.467150px;}
.yd{bottom:94.471650px;}
.y176{bottom:95.475000px;}
.y7e{bottom:95.938650px;}
.ye1{bottom:95.944950px;}
.yae{bottom:95.953650px;}
.yfb{bottom:97.444950px;}
.y114{bottom:98.480100px;}
.y1f2{bottom:98.798700px;}
.y132{bottom:98.944200px;}
.y1b2{bottom:98.944950px;}
.y1f1{bottom:114.548700px;}
.y1b1{bottom:114.694950px;}
.y175{bottom:114.975000px;}
.y7d{bottom:115.438650px;}
.ye0{bottom:115.444950px;}
.yad{bottom:115.453650px;}
.yfa{bottom:116.944950px;}
.y113{bottom:117.980100px;}
.y131{bottom:118.444200px;}
.y184{bottom:125.209650px;}
.y1f0{bottom:130.298700px;}
.y230{bottom:130.307400px;}
.y1b0{bottom:130.444950px;}
.y174{bottom:134.475000px;}
.y7c{bottom:134.938650px;}
.ydf{bottom:134.944950px;}
.yac{bottom:134.953650px;}
.yf9{bottom:136.444950px;}
.y112{bottom:137.480100px;}
.y130{bottom:137.944200px;}
.y1ef{bottom:146.048700px;}
.y22f{bottom:146.057400px;}
.y1af{bottom:146.194950px;}
.y173{bottom:153.975000px;}
.y7b{bottom:154.438650px;}
.yde{bottom:154.444950px;}
.yab{bottom:154.453650px;}
.yf8{bottom:155.944950px;}
.y12f{bottom:157.444200px;}
.y1ee{bottom:161.798700px;}
.y22e{bottom:161.807400px;}
.y1ae{bottom:161.944950px;}
.y172{bottom:173.475000px;}
.y237{bottom:173.813400px;}
.y7a{bottom:173.938650px;}
.ydd{bottom:173.944950px;}
.y181{bottom:173.953650px;}
.yf7{bottom:175.444950px;}
.y111{bottom:176.479950px;}
.y12e{bottom:176.944200px;}
.y34{bottom:177.490950px;}
.y1ed{bottom:177.548700px;}
.y22d{bottom:177.557400px;}
.y1ad{bottom:177.694950px;}
.yaa{bottom:183.703650px;}
.y33{bottom:192.495450px;}
.y171{bottom:192.975000px;}
.y1ec{bottom:193.298700px;}
.y22c{bottom:193.307400px;}
.y236{bottom:193.313400px;}
.y79{bottom:193.438650px;}
.ydc{bottom:193.444950px;}
.y180{bottom:193.453650px;}
.yf6{bottom:194.944950px;}
.y12d{bottom:196.444200px;}
.y183{bottom:203.209650px;}
.y32{bottom:207.499950px;}
.y1eb{bottom:209.048700px;}
.y22b{bottom:209.057400px;}
.y1ac{bottom:209.194950px;}
.y157{bottom:212.139300px;}
.y170{bottom:212.475000px;}
.y235{bottom:212.813400px;}
.y78{bottom:212.938650px;}
.ydb{bottom:212.944950px;}
.y17f{bottom:212.953650px;}
.yf5{bottom:214.444950px;}
.y12c{bottom:215.944200px;}
.y31{bottom:222.504450px;}
.y1ea{bottom:224.798700px;}
.y22a{bottom:224.807400px;}
.y1ab{bottom:224.944950px;}
.y156{bottom:227.889300px;}
.y16f{bottom:231.975000px;}
.y234{bottom:232.313400px;}
.y77{bottom:232.438650px;}
.yda{bottom:232.444950px;}
.ya9{bottom:232.453650px;}
.yf4{bottom:233.944950px;}
.y12b{bottom:235.444200px;}
.y30{bottom:237.508950px;}
.y1e9{bottom:240.548700px;}
.y229{bottom:240.557400px;}
.y1aa{bottom:240.694950px;}
.y155{bottom:243.639300px;}
.y16e{bottom:251.475000px;}
.y76{bottom:251.938650px;}
.yd9{bottom:251.944950px;}
.ya8{bottom:251.953650px;}
.y2f{bottom:252.513450px;}
.yf3{bottom:253.444950px;}
.y12a{bottom:254.944200px;}
.y1e8{bottom:256.298700px;}
.y228{bottom:256.307400px;}
.y1a9{bottom:256.444950px;}
.y154{bottom:259.389300px;}
.y2e{bottom:267.517950px;}
.y16d{bottom:270.975000px;}
.y75{bottom:271.438650px;}
.yd8{bottom:271.444950px;}
.ya7{bottom:271.453650px;}
.y1e7{bottom:272.048700px;}
.y227{bottom:272.057400px;}
.y1a8{bottom:272.194950px;}
.yf2{bottom:272.944950px;}
.y129{bottom:274.444200px;}
.y153{bottom:280.201800px;}
.y2d{bottom:282.522450px;}
.y233{bottom:285.557400px;}
.y1e6{bottom:287.798700px;}
.y226{bottom:287.807400px;}
.y1a7{bottom:287.944950px;}
.y16c{bottom:290.475000px;}
.y74{bottom:290.938650px;}
.yd7{bottom:290.944950px;}
.ya6{bottom:290.953650px;}
.yf1{bottom:292.444950px;}
.y128{bottom:293.944200px;}
.y2c{bottom:297.526950px;}
.y152{bottom:299.877750px;}
.y1e5{bottom:303.548700px;}
.y225{bottom:303.557400px;}
.y1a6{bottom:303.694950px;}
.y232{bottom:305.057400px;}
.y16b{bottom:309.975000px;}
.y73{bottom:310.438650px;}
.yd6{bottom:310.444950px;}
.ya5{bottom:310.453650px;}
.yf0{bottom:311.944950px;}
.y2b{bottom:312.531450px;}
.y127{bottom:313.444200px;}
.y1e4{bottom:319.298700px;}
.y224{bottom:319.307400px;}
.y1a5{bottom:319.444950px;}
.y151{bottom:320.937750px;}
.y2a{bottom:327.535950px;}
.y16a{bottom:329.475000px;}
.y72{bottom:329.938650px;}
.yd5{bottom:329.944950px;}
.ya4{bottom:329.953650px;}
.yef{bottom:331.444950px;}
.y126{bottom:332.944200px;}
.y231{bottom:333.557400px;}
.y1e3{bottom:335.048700px;}
.y223{bottom:335.057400px;}
.y1a4{bottom:335.194950px;}
.y48{bottom:337.451700px;}
.y150{bottom:341.997750px;}
.y169{bottom:348.975000px;}
.y71{bottom:349.438650px;}
.yd4{bottom:349.444950px;}
.ya3{bottom:349.453650px;}
.y1e2{bottom:350.798700px;}
.y222{bottom:350.807400px;}
.y1a3{bottom:350.944950px;}
.y125{bottom:352.444200px;}
.y47{bottom:356.951700px;}
.y29{bottom:357.534450px;}
.y14f{bottom:363.057750px;}
.y1e1{bottom:366.548700px;}
.y221{bottom:366.557400px;}
.y1a2{bottom:366.694950px;}
.y168{bottom:368.475000px;}
.y70{bottom:368.938650px;}
.ya2{bottom:368.953650px;}
.yee{bottom:370.444950px;}
.y124{bottom:371.944200px;}
.y28{bottom:372.538950px;}
.y46{bottom:376.451700px;}
.yd3{bottom:378.694950px;}
.y1e0{bottom:382.298700px;}
.y220{bottom:382.307400px;}
.y1a1{bottom:382.444950px;}
.y14e{bottom:386.964000px;}
.y27{bottom:387.543450px;}
.y167{bottom:387.975000px;}
.y6f{bottom:388.438650px;}
.ya1{bottom:388.453650px;}
.y123{bottom:391.444200px;}
.y1df{bottom:398.048700px;}
.y21f{bottom:398.057400px;}
.y1a0{bottom:398.194950px;}
.y26{bottom:402.547950px;}
.y166{bottom:407.475000px;}
.y6e{bottom:407.938650px;}
.ya0{bottom:407.953650px;}
.y122{bottom:410.944200px;}
.y45{bottom:412.369950px;}
.y1de{bottom:413.798700px;}
.y21e{bottom:413.807400px;}
.y19f{bottom:413.944950px;}
.y14d{bottom:414.995100px;}
.y25{bottom:417.552450px;}
.y165{bottom:426.975000px;}
.y6d{bottom:427.438650px;}
.yd2{bottom:427.444950px;}
.y9f{bottom:427.453650px;}
.yed{bottom:428.944950px;}
.y1dd{bottom:429.548700px;}
.y21d{bottom:429.557400px;}
.y19e{bottom:429.694950px;}
.y121{bottom:430.444200px;}
.y14c{bottom:431.495100px;}
.y24{bottom:432.556950px;}
.y44{bottom:434.874450px;}
.y1dc{bottom:445.298700px;}
.y21c{bottom:445.307400px;}
.y19d{bottom:445.444950px;}
.y164{bottom:446.475000px;}
.y6c{bottom:446.938650px;}
.yd1{bottom:446.944950px;}
.y9e{bottom:446.953650px;}
.y14b{bottom:447.995100px;}
.yec{bottom:448.444950px;}
.y120{bottom:449.944200px;}
.y43{bottom:457.378950px;}
.y1db{bottom:461.048700px;}
.y21b{bottom:461.057400px;}
.y19c{bottom:461.194950px;}
.y23{bottom:462.555450px;}
.y163{bottom:465.975000px;}
.y6b{bottom:466.438650px;}
.yd0{bottom:466.444950px;}
.y9d{bottom:466.453650px;}
.yeb{bottom:467.944950px;}
.y11f{bottom:469.444200px;}
.y182{bottom:476.209650px;}
.y1da{bottom:476.798700px;}
.y21a{bottom:476.807400px;}
.y19b{bottom:476.944950px;}
.y42{bottom:479.883450px;}
.y14a{bottom:481.276500px;}
.y22{bottom:482.284950px;}
.y162{bottom:485.475000px;}
.y6a{bottom:485.938650px;}
.ycf{bottom:485.944950px;}
.y9c{bottom:485.953650px;}
.yea{bottom:487.444950px;}
.y11e{bottom:488.944200px;}
.y1d9{bottom:492.548700px;}
.y219{bottom:492.557400px;}
.y19a{bottom:492.694950px;}
.y149{bottom:497.026500px;}
.y21{bottom:497.055450px;}
.y41{bottom:502.387950px;}
.y161{bottom:504.975000px;}
.y69{bottom:505.438650px;}
.yce{bottom:505.444950px;}
.y9b{bottom:505.453650px;}
.ye9{bottom:506.944950px;}
.y1d8{bottom:508.298700px;}
.y218{bottom:508.307400px;}
.y11d{bottom:508.444200px;}
.y199{bottom:508.444950px;}
.y148{bottom:512.776500px;}
.y20{bottom:516.784950px;}
.y1d7{bottom:524.048700px;}
.y217{bottom:524.057400px;}
.y198{bottom:524.194950px;}
.y160{bottom:524.475000px;}
.y40{bottom:524.892450px;}
.y68{bottom:524.938650px;}
.ycd{bottom:524.944950px;}
.y9a{bottom:524.953650px;}
.ye8{bottom:526.444950px;}
.y11c{bottom:527.944200px;}
.y147{bottom:528.526500px;}
.y1f{bottom:531.555450px;}
.y1d6{bottom:539.798700px;}
.y216{bottom:539.807400px;}
.y197{bottom:539.944950px;}
.y15f{bottom:543.975000px;}
.y67{bottom:544.438650px;}
.ycc{bottom:544.444950px;}
.y99{bottom:544.453650px;}
.ye7{bottom:545.944950px;}
.y3f{bottom:547.396950px;}
.y11b{bottom:547.444200px;}
.y146{bottom:549.339000px;}
.y1e{bottom:551.284950px;}
.y1d5{bottom:555.548700px;}
.y215{bottom:555.557400px;}
.y196{bottom:555.694950px;}
.y15e{bottom:563.475000px;}
.y66{bottom:563.938650px;}
.ycb{bottom:563.944950px;}
.y98{bottom:563.953650px;}
.ye6{bottom:565.444950px;}
.y1d{bottom:566.055450px;}
.y11a{bottom:566.944200px;}
.y145{bottom:569.022600px;}
.y3e{bottom:569.901450px;}
.y1d4{bottom:571.298700px;}
.y214{bottom:571.307400px;}
.y195{bottom:571.444950px;}
.y15d{bottom:582.975000px;}
.y65{bottom:583.438650px;}
.yca{bottom:583.444950px;}
.y97{bottom:583.453650px;}
.ye5{bottom:584.944950px;}
.y1c{bottom:585.784950px;}
.y119{bottom:586.444200px;}
.y1d3{bottom:587.048700px;}
.y213{bottom:587.057400px;}
.y194{bottom:587.194950px;}
.y144{bottom:590.082600px;}
.y3d{bottom:592.405950px;}
.y1b{bottom:600.555450px;}
.y15c{bottom:602.475000px;}
.y1d2{bottom:602.798700px;}
.y212{bottom:602.807400px;}
.y64{bottom:602.938650px;}
.yc9{bottom:602.944950px;}
.y96{bottom:602.953650px;}
.ye4{bottom:604.444950px;}
.y118{bottom:605.944200px;}
.y143{bottom:613.988850px;}
.y3c{bottom:614.910450px;}
.y1d1{bottom:618.548700px;}
.y211{bottom:618.557400px;}
.y193{bottom:618.694950px;}
.y1a{bottom:620.284950px;}
.y15b{bottom:621.975000px;}
.y63{bottom:622.438650px;}
.yc8{bottom:622.444950px;}
.y95{bottom:622.453650px;}
.ye3{bottom:623.944950px;}
.y117{bottom:625.448100px;}
.y1d0{bottom:634.298700px;}
.y210{bottom:634.307400px;}
.y192{bottom:634.444950px;}
.y19{bottom:635.050950px;}
.y3b{bottom:637.414950px;}
.y15a{bottom:641.475000px;}
.y62{bottom:641.938650px;}
.yc7{bottom:641.944950px;}
.y94{bottom:641.953650px;}
.y142{bottom:642.019950px;}
.y116{bottom:644.948100px;}
.y1cf{bottom:650.048700px;}
.y18{bottom:650.055450px;}
.y20f{bottom:650.057400px;}
.y191{bottom:650.194950px;}
.y3a{bottom:659.919450px;}
.y159{bottom:660.975000px;}
.y61{bottom:661.438650px;}
.yc6{bottom:661.444950px;}
.y93{bottom:661.453650px;}
.y110{bottom:663.616200px;}
.y1ce{bottom:665.798700px;}
.y20e{bottom:665.807400px;}
.y190{bottom:665.944950px;}
.y17{bottom:669.784950px;}
.y158{bottom:680.475000px;}
.y60{bottom:680.938650px;}
.yc5{bottom:680.944950px;}
.y92{bottom:680.953650px;}
.y1cd{bottom:681.548700px;}
.y20d{bottom:681.557400px;}
.y18f{bottom:681.694950px;}
.y39{bottom:682.423950px;}
.y16{bottom:684.555450px;}
.y10f{bottom:684.676200px;}
.y1cc{bottom:697.298700px;}
.y20c{bottom:697.307400px;}
.y18e{bottom:697.444950px;}
.y5f{bottom:700.438650px;}
.yc4{bottom:700.444950px;}
.y91{bottom:700.453650px;}
.y15{bottom:704.284950px;}
.y38{bottom:704.928450px;}
.y10e{bottom:705.736200px;}
.y1cb{bottom:713.048700px;}
.y20b{bottom:713.057400px;}
.y18d{bottom:713.194950px;}
.y14{bottom:719.055450px;}
.y5e{bottom:719.938650px;}
.yc3{bottom:719.944950px;}
.y17e{bottom:719.953650px;}
.y10d{bottom:726.796200px;}
.y37{bottom:727.432950px;}
.y1ca{bottom:728.798700px;}
.y20a{bottom:728.807400px;}
.y90{bottom:729.703650px;}
.y13{bottom:738.784950px;}
.y5d{bottom:739.438650px;}
.yc2{bottom:739.444950px;}
.y17d{bottom:739.453650px;}
.y18c{bottom:742.444950px;}
.y1c9{bottom:744.548700px;}
.y209{bottom:744.557400px;}
.y10c{bottom:747.856200px;}
.y36{bottom:749.937450px;}
.y12{bottom:753.550950px;}
.y5c{bottom:758.938650px;}
.yc1{bottom:758.944950px;}
.y17c{bottom:758.953650px;}
.y1c8{bottom:760.298700px;}
.y208{bottom:760.307400px;}
.y11{bottom:768.555450px;}
.y8f{bottom:768.703650px;}
.y10b{bottom:768.916200px;}
.y35{bottom:772.437450px;}
.y1c7{bottom:776.048700px;}
.y207{bottom:776.057400px;}
.y5b{bottom:778.438650px;}
.yc0{bottom:778.444950px;}
.y17b{bottom:778.453650px;}
.y10{bottom:788.284950px;}
.y10a{bottom:789.976200px;}
.y1c6{bottom:791.798700px;}
.y206{bottom:791.807400px;}
.y18b{bottom:797.932950px;}
.y5a{bottom:797.938650px;}
.ybf{bottom:797.944950px;}
.y17a{bottom:797.953650px;}
.y1c5{bottom:807.548700px;}
.y205{bottom:807.557400px;}
.y178{bottom:809.944950px;}
.y109{bottom:811.036200px;}
.y59{bottom:817.438650px;}
.ybe{bottom:817.444950px;}
.y8e{bottom:817.453650px;}
.y1c4{bottom:823.298700px;}
.y204{bottom:823.307400px;}
.y141{bottom:826.444950px;}
.y18a{bottom:827.188950px;}
.y108{bottom:832.096200px;}
.yc{bottom:835.506300px;}
.y58{bottom:836.938650px;}
.ybd{bottom:836.944950px;}
.y8d{bottom:836.953650px;}
.y1c3{bottom:839.048700px;}
.y203{bottom:839.057400px;}
.y140{bottom:842.944950px;}
.y107{bottom:853.156200px;}
.y1c2{bottom:854.798700px;}
.y202{bottom:854.807400px;}
.y57{bottom:856.438650px;}
.ybc{bottom:856.444950px;}
.y8c{bottom:856.453650px;}
.y13f{bottom:859.444950px;}
.yb{bottom:865.506300px;}
.y1c1{bottom:870.548700px;}
.y201{bottom:870.557400px;}
.y106{bottom:874.216200px;}
.y56{bottom:875.938650px;}
.ybb{bottom:875.944950px;}
.y8b{bottom:875.953650px;}
.y189{bottom:878.188950px;}
.y1c0{bottom:886.298700px;}
.y200{bottom:886.307400px;}
.y13e{bottom:892.444950px;}
.y105{bottom:895.276200px;}
.y55{bottom:895.438650px;}
.yba{bottom:895.444950px;}
.y8a{bottom:895.453650px;}
.ya{bottom:895.512300px;}
.y188{bottom:897.688950px;}
.y1bf{bottom:902.048700px;}
.y1ff{bottom:902.057400px;}
.y13d{bottom:908.944950px;}
.y54{bottom:914.938650px;}
.y89{bottom:914.953650px;}
.y104{bottom:916.336200px;}
.y187{bottom:917.188950px;}
.y1be{bottom:917.798700px;}
.y1fe{bottom:917.807400px;}
.yb9{bottom:924.694950px;}
.y13c{bottom:925.444950px;}
.y1bd{bottom:933.548700px;}
.y1fd{bottom:933.557400px;}
.y53{bottom:934.438650px;}
.y88{bottom:934.453650px;}
.y186{bottom:936.688950px;}
.y103{bottom:937.396200px;}
.y13b{bottom:941.944950px;}
.yb8{bottom:944.194950px;}
.y1bc{bottom:949.298700px;}
.y1fc{bottom:949.307400px;}
.y52{bottom:953.938650px;}
.y87{bottom:953.953650px;}
.y9{bottom:954.006300px;}
.y13a{bottom:958.444950px;}
.y102{bottom:958.456200px;}
.y1bb{bottom:965.048700px;}
.y1fb{bottom:965.057400px;}
.y185{bottom:965.944950px;}
.y51{bottom:973.438650px;}
.y86{bottom:973.453650px;}
.y139{bottom:974.944950px;}
.y101{bottom:979.516200px;}
.y1ba{bottom:980.798700px;}
.y1fa{bottom:980.807400px;}
.y8{bottom:988.512300px;}
.y138{bottom:991.444950px;}
.y50{bottom:992.938650px;}
.yb7{bottom:992.944950px;}
.y85{bottom:992.953650px;}
.y1b9{bottom:996.548700px;}
.y1f9{bottom:996.557400px;}
.y100{bottom:1000.576200px;}
.y137{bottom:1007.944950px;}
.y1b8{bottom:1012.298700px;}
.y1f8{bottom:1012.307400px;}
.y4f{bottom:1012.438650px;}
.yb6{bottom:1012.444950px;}
.y84{bottom:1012.453650px;}
.yff{bottom:1021.636200px;}
.y136{bottom:1024.444950px;}
.y1b7{bottom:1028.048700px;}
.y1f7{bottom:1028.057400px;}
.y4e{bottom:1031.938650px;}
.yb5{bottom:1031.944950px;}
.y83{bottom:1031.953650px;}
.y135{bottom:1040.944950px;}
.y1b6{bottom:1043.798700px;}
.y1f6{bottom:1043.807400px;}
.yfe{bottom:1045.913700px;}
.y4d{bottom:1051.438650px;}
.yb4{bottom:1051.444950px;}
.y82{bottom:1051.453650px;}
.y134{bottom:1057.444950px;}
.y7{bottom:1059.012300px;}
.y1b5{bottom:1059.548700px;}
.y1f5{bottom:1059.557400px;}
.yb3{bottom:1070.944950px;}
.y81{bottom:1070.953650px;}
.yfd{bottom:1073.944950px;}
.y1b4{bottom:1075.298700px;}
.y1f4{bottom:1075.307400px;}
.y4c{bottom:1090.438650px;}
.yb2{bottom:1090.444950px;}
.y80{bottom:1090.450650px;}
.y179{bottom:1090.453650px;}
.y1b3{bottom:1091.048700px;}
.y1f3{bottom:1091.057400px;}
.y6{bottom:1099.573650px;}
.y5{bottom:1118.319150px;}
.y4{bottom:1121.319150px;}
.yb1{bottom:1126.684950px;}
.y4a{bottom:1126.685700px;}
.y4b{bottom:1129.263000px;}
.yb0{bottom:1129.384950px;}
.y49{bottom:1129.385700px;}
.y3{bottom:1157.521800px;}
.hb{height:22.535100px;}
.h1b{height:24.144750px;}
.h12{height:30.429000px;}
.h10{height:30.576000px;}
.h16{height:30.941400px;}
.hc{height:31.206000px;}
.h4{height:32.193000px;}
.h2{height:32.571000px;}
.h18{height:33.435000px;}
.h1f{height:34.492500px;}
.h1e{height:34.852500px;}
.h19{height:34.897500px;}
.h1c{height:35.664000px;}
.hf{height:37.224000px;}
.h1d{height:37.272000px;}
.h7{height:39.771000px;}
.he{height:41.877000px;}
.h3{height:44.104410px;}
.hd{height:44.580000px;}
.h13{height:45.990000px;}
.h1a{height:47.338800px;}
.h14{height:47.354400px;}
.h15{height:47.366400px;}
.h17{height:47.656800px;}
.h5{height:49.176000px;}
.h11{height:60.191460px;}
.h6{height:60.200910px;}
.h9{height:69.847800px;}
.ha{height:69.871800px;}
.h8{height:80.244000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:67.181100px;}
.x1{left:69.732300px;}
.x14{left:76.181100px;}
.xe{left:86.746500px;}
.x16{left:89.189250px;}
.x1a{left:93.504450px;}
.x18{left:95.935950px;}
.x2{left:104.654700px;}
.x3{left:107.284800px;}
.x4{left:119.176500px;}
.x15{left:155.842350px;}
.x6{left:193.290300px;}
.x7{left:195.920400px;}
.xa{left:313.216050px;}
.x8{left:352.800300px;}
.x9{left:355.430400px;}
.xf{left:458.707050px;}
.x11{left:461.201700px;}
.x13{left:470.253150px;}
.x1c{left:476.735100px;}
.x10{left:478.213500px;}
.x12{left:480.711300px;}
.x1b{left:484.981350px;}
.x19{left:487.480950px;}
.x17{left:596.976300px;}
.xb{left:761.785650px;}
.xc{left:786.082650px;}
.xd{left:788.331600px;}
@media print{
.v3{vertical-align:-28.800533pt;}
.v7{vertical-align:-19.200000pt;}
.v8{vertical-align:-18.000000pt;}
.v4{vertical-align:-16.800000pt;}
.v6{vertical-align:-14.080000pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:19.200000pt;}
.v2{vertical-align:28.800533pt;}
.lsa7{letter-spacing:-10.922667pt;}
.ls57{letter-spacing:-3.669333pt;}
.ls94{letter-spacing:-2.400000pt;}
.ls1b{letter-spacing:-2.256000pt;}
.ls50{letter-spacing:-2.180267pt;}
.ls98{letter-spacing:-2.080000pt;}
.ls70{letter-spacing:-2.005333pt;}
.lsa8{letter-spacing:-1.920000pt;}
.ls25{letter-spacing:-1.911467pt;}
.ls3d{letter-spacing:-1.877333pt;}
.ls56{letter-spacing:-1.834667pt;}
.ls5e{letter-spacing:-1.800000pt;}
.ls3f{letter-spacing:-1.792000pt;}
.ls1a{letter-spacing:-1.776000pt;}
.ls27{letter-spacing:-1.762133pt;}
.ls29{letter-spacing:-1.749333pt;}
.ls26{letter-spacing:-1.664000pt;}
.ls5a{letter-spacing:-1.621333pt;}
.ls93{letter-spacing:-1.560000pt;}
.ls31{letter-spacing:-1.536000pt;}
.ls7e{letter-spacing:-1.493333pt;}
.lsa4{letter-spacing:-1.400000pt;}
.ls2e{letter-spacing:-1.365333pt;}
.ls5b{letter-spacing:-1.322667pt;}
.ls23{letter-spacing:-1.280000pt;}
.ls3b{letter-spacing:-1.237333pt;}
.ls74{letter-spacing:-1.224533pt;}
.ls8c{letter-spacing:-1.200000pt;}
.lsa2{letter-spacing:-1.160000pt;}
.ls92{letter-spacing:-1.120000pt;}
.ls8a{letter-spacing:-1.080000pt;}
.ls2f{letter-spacing:-1.066667pt;}
.ls32{letter-spacing:-1.045333pt;}
.ls28{letter-spacing:-1.024000pt;}
.ls6f{letter-spacing:-1.015467pt;}
.lsa3{letter-spacing:-1.000000pt;}
.ls6c{letter-spacing:-0.981333pt;}
.ls90{letter-spacing:-0.960000pt;}
.lsa6{letter-spacing:-0.938667pt;}
.lsa{letter-spacing:-0.933333pt;}
.lsb{letter-spacing:-0.896000pt;}
.ls43{letter-spacing:-0.840000pt;}
.ls80{letter-spacing:-0.836267pt;}
.ls5f{letter-spacing:-0.760000pt;}
.ls97{letter-spacing:-0.720000pt;}
.ls72{letter-spacing:-0.657067pt;}
.ls61{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.627200pt;}
.ls95{letter-spacing:-0.600000pt;}
.ls9a{letter-spacing:-0.560000pt;}
.ls6e{letter-spacing:-0.554667pt;}
.ls69{letter-spacing:-0.512000pt;}
.ls2d{letter-spacing:-0.477867pt;}
.ls6d{letter-spacing:-0.469333pt;}
.ls64{letter-spacing:-0.400000pt;}
.ls78{letter-spacing:-0.388267pt;}
.ls83{letter-spacing:-0.384000pt;}
.ls3a{letter-spacing:-0.358400pt;}
.ls8d{letter-spacing:-0.320000pt;}
.ls75{letter-spacing:-0.298667pt;}
.lsd{letter-spacing:-0.288000pt;}
.ls9e{letter-spacing:-0.280000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.213333pt;}
.ls2b{letter-spacing:-0.209067pt;}
.ls60{letter-spacing:-0.200000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls51{letter-spacing:-0.170667pt;}
.ls8f{letter-spacing:-0.160000pt;}
.ls58{letter-spacing:-0.149333pt;}
.ls8e{letter-spacing:-0.120000pt;}
.ls4e{letter-spacing:-0.119467pt;}
.ls48{letter-spacing:-0.080000pt;}
.ls99{letter-spacing:-0.040000pt;}
.ls66{letter-spacing:-0.029867pt;}
.ls9{letter-spacing:0.000000pt;}
.ls73{letter-spacing:0.029867pt;}
.ls34{letter-spacing:0.068267pt;}
.ls65{letter-spacing:0.085333pt;}
.ls81{letter-spacing:0.089600pt;}
.ls59{letter-spacing:0.119467pt;}
.ls9b{letter-spacing:0.120000pt;}
.ls38{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.170667pt;}
.ls79{letter-spacing:0.179200pt;}
.ls62{letter-spacing:0.200000pt;}
.ls36{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.213867pt;}
.ls68{letter-spacing:0.238933pt;}
.lsa0{letter-spacing:0.240000pt;}
.ls4f{letter-spacing:0.256000pt;}
.ls5c{letter-spacing:0.280000pt;}
.ls18{letter-spacing:0.288000pt;}
.ls6{letter-spacing:0.297067pt;}
.ls52{letter-spacing:0.298667pt;}
.ls9d{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.360000pt;}
.ls1{letter-spacing:0.365333pt;}
.ls4{letter-spacing:0.370667pt;}
.ls2a{letter-spacing:0.388267pt;}
.ls91{letter-spacing:0.400000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls63{letter-spacing:0.440000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls37{letter-spacing:0.469333pt;}
.ls71{letter-spacing:0.477867pt;}
.ls19{letter-spacing:0.480000pt;}
.ls5{letter-spacing:0.496000pt;}
.ls1f{letter-spacing:0.512000pt;}
.ls9f{letter-spacing:0.520000pt;}
.ls7a{letter-spacing:0.537600pt;}
.ls3{letter-spacing:0.553600pt;}
.ls53{letter-spacing:0.554667pt;}
.ls45{letter-spacing:0.560000pt;}
.ls76{letter-spacing:0.567467pt;}
.ls22{letter-spacing:0.597333pt;}
.ls46{letter-spacing:0.600000pt;}
.ls14{letter-spacing:0.634667pt;}
.ls30{letter-spacing:0.640000pt;}
.ls20{letter-spacing:0.641600pt;}
.ls15{letter-spacing:0.672000pt;}
.ls42{letter-spacing:0.680000pt;}
.ls1d{letter-spacing:0.682667pt;}
.ls4c{letter-spacing:0.688267pt;}
.ls4d{letter-spacing:0.688800pt;}
.ls2{letter-spacing:0.691733pt;}
.ls12{letter-spacing:0.709333pt;}
.ls8b{letter-spacing:0.720000pt;}
.ls7{letter-spacing:0.731200pt;}
.ls16{letter-spacing:0.746667pt;}
.ls4b{letter-spacing:0.760000pt;}
.ls7c{letter-spacing:0.768000pt;}
.ls13{letter-spacing:0.784000pt;}
.ls5d{letter-spacing:0.800000pt;}
.ls39{letter-spacing:0.810667pt;}
.ls33{letter-spacing:0.896000pt;}
.ls82{letter-spacing:0.938667pt;}
.ls54{letter-spacing:0.985600pt;}
.lsa1{letter-spacing:1.040000pt;}
.ls7d{letter-spacing:1.045333pt;}
.ls6b{letter-spacing:1.075200pt;}
.ls40{letter-spacing:1.194667pt;}
.ls96{letter-spacing:1.200000pt;}
.ls4a{letter-spacing:1.237333pt;}
.ls6a{letter-spacing:1.322667pt;}
.ls77{letter-spacing:1.365333pt;}
.ls2c{letter-spacing:1.493333pt;}
.ls49{letter-spacing:1.621333pt;}
.ls44{letter-spacing:1.920000pt;}
.ls88{letter-spacing:1.962667pt;}
.ls35{letter-spacing:2.576000pt;}
.ls9c{letter-spacing:3.080000pt;}
.ls67{letter-spacing:3.370667pt;}
.ls55{letter-spacing:3.968000pt;}
.ls85{letter-spacing:4.266667pt;}
.ls86{letter-spacing:4.565333pt;}
.ls84{letter-spacing:4.821333pt;}
.lsa5{letter-spacing:4.992000pt;}
.ls7b{letter-spacing:5.034667pt;}
.ls7f{letter-spacing:5.120000pt;}
.ls89{letter-spacing:5.248000pt;}
.ls21{letter-spacing:5.280000pt;}
.ls1e{letter-spacing:5.333333pt;}
.ls3e{letter-spacing:5.706667pt;}
.ls41{letter-spacing:5.973333pt;}
.ls1c{letter-spacing:7.466667pt;}
.lsc{letter-spacing:10.176000pt;}
.ls87{letter-spacing:60.458667pt;}
.ls0{letter-spacing:81.804267pt;}
.ws0{word-spacing:-23.040000pt;}
.ws3a{word-spacing:-18.666667pt;}
.ws5f{word-spacing:-18.293333pt;}
.ws1a{word-spacing:-18.240000pt;}
.ws9{word-spacing:-16.538667pt;}
.wsa6{word-spacing:-15.616000pt;}
.ws9e{word-spacing:-15.189333pt;}
.wsa4{word-spacing:-14.933333pt;}
.ws7{word-spacing:-13.386667pt;}
.ws25{word-spacing:-12.960000pt;}
.wsa5{word-spacing:-12.885333pt;}
.ws23{word-spacing:-12.746667pt;}
.ws3d{word-spacing:-12.160000pt;}
.ws22{word-spacing:-11.893333pt;}
.wsa{word-spacing:-11.605333pt;}
.ws91{word-spacing:-11.434667pt;}
.ws2{word-spacing:-11.334400pt;}
.ws6d{word-spacing:-11.000000pt;}
.ws1{word-spacing:-10.886400pt;}
.ws43{word-spacing:-10.880000pt;}
.ws40{word-spacing:-10.800000pt;}
.ws37{word-spacing:-10.794667pt;}
.wsd4{word-spacing:-10.760000pt;}
.ws82{word-spacing:-10.666667pt;}
.ws84{word-spacing:-10.368000pt;}
.wsd7{word-spacing:-10.360000pt;}
.ws3{word-spacing:-10.259200pt;}
.wsd6{word-spacing:-10.240000pt;}
.ws5{word-spacing:-10.192000pt;}
.wsa9{word-spacing:-10.160000pt;}
.wsa7{word-spacing:-10.080000pt;}
.ws6c{word-spacing:-10.040000pt;}
.wsd2{word-spacing:-10.000000pt;}
.wsad{word-spacing:-9.960000pt;}
.wsab{word-spacing:-9.920000pt;}
.wsd5{word-spacing:-9.880000pt;}
.ws6{word-spacing:-9.856000pt;}
.ws73{word-spacing:-9.840000pt;}
.wsa8{word-spacing:-9.720000pt;}
.wsd{word-spacing:-9.557333pt;}
.wsd3{word-spacing:-9.520000pt;}
.ws8{word-spacing:-9.456000pt;}
.wsae{word-spacing:-9.160000pt;}
.wsaa{word-spacing:-9.120000pt;}
.ws83{word-spacing:-8.721067pt;}
.wsd8{word-spacing:-8.720000pt;}
.ws90{word-spacing:-8.691200pt;}
.ws63{word-spacing:-8.631467pt;}
.ws21{word-spacing:-8.618667pt;}
.ws89{word-spacing:-8.392533pt;}
.ws67{word-spacing:-8.362667pt;}
.ws39{word-spacing:-8.243200pt;}
.ws8c{word-spacing:-8.213333pt;}
.ws8f{word-spacing:-8.183467pt;}
.ws86{word-spacing:-8.123733pt;}
.ws1f{word-spacing:-8.034133pt;}
.ws62{word-spacing:-7.944533pt;}
.ws81{word-spacing:-7.884800pt;}
.wsac{word-spacing:-7.840000pt;}
.ws8e{word-spacing:-7.825067pt;}
.ws66{word-spacing:-7.765333pt;}
.ws9d{word-spacing:-7.735467pt;}
.ws88{word-spacing:-7.675733pt;}
.ws1b{word-spacing:-7.645867pt;}
.ws80{word-spacing:-7.616000pt;}
.ws60{word-spacing:-7.526400pt;}
.ws65{word-spacing:-7.496533pt;}
.ws20{word-spacing:-7.436800pt;}
.ws8b{word-spacing:-7.347200pt;}
.ws38{word-spacing:-7.287467pt;}
.ws8d{word-spacing:-7.257600pt;}
.ws1e{word-spacing:-7.018667pt;}
.ws87{word-spacing:-6.988800pt;}
.ws9c{word-spacing:-6.809600pt;}
.ws4{word-spacing:-6.690133pt;}
.ws85{word-spacing:-6.630400pt;}
.ws24{word-spacing:-6.600533pt;}
.ws8a{word-spacing:-6.421333pt;}
.ws64{word-spacing:-6.314667pt;}
.ws92{word-spacing:-6.152533pt;}
.ws5d{word-spacing:-5.973333pt;}
.ws1d{word-spacing:-5.883733pt;}
.ws1c{word-spacing:-5.734400pt;}
.ws61{word-spacing:-5.465600pt;}
.ws26{word-spacing:-5.333333pt;}
.ws9f{word-spacing:-5.120000pt;}
.ws9a{word-spacing:-5.034667pt;}
.wse9{word-spacing:-4.992000pt;}
.wsa3{word-spacing:-4.565333pt;}
.wsa2{word-spacing:-4.266667pt;}
.ws79{word-spacing:-3.968000pt;}
.ws93{word-spacing:-3.370667pt;}
.wsce{word-spacing:-3.080000pt;}
.ws51{word-spacing:-2.576000pt;}
.wsaf{word-spacing:-1.962667pt;}
.wsca{word-spacing:-1.800000pt;}
.wsdc{word-spacing:-1.520000pt;}
.ws31{word-spacing:-1.493333pt;}
.ws99{word-spacing:-1.365333pt;}
.wsdb{word-spacing:-1.360000pt;}
.ws95{word-spacing:-1.322667pt;}
.wsc5{word-spacing:-1.200000pt;}
.ws5c{word-spacing:-1.194667pt;}
.wse3{word-spacing:-1.040000pt;}
.wsa0{word-spacing:-0.938667pt;}
.ws7b{word-spacing:-0.896000pt;}
.ws55{word-spacing:-0.810667pt;}
.ws13{word-spacing:-0.784000pt;}
.ws9b{word-spacing:-0.768000pt;}
.wsb1{word-spacing:-0.760000pt;}
.ws16{word-spacing:-0.746667pt;}
.wsb4{word-spacing:-0.720000pt;}
.ws12{word-spacing:-0.709333pt;}
.ws29{word-spacing:-0.682667pt;}
.ws5e{word-spacing:-0.680000pt;}
.ws15{word-spacing:-0.672000pt;}
.ws33{word-spacing:-0.640000pt;}
.ws14{word-spacing:-0.634667pt;}
.wsc1{word-spacing:-0.600000pt;}
.ws28{word-spacing:-0.597333pt;}
.wsf{word-spacing:-0.576000pt;}
.wsbf{word-spacing:-0.560000pt;}
.ws78{word-spacing:-0.554667pt;}
.wsd1{word-spacing:-0.520000pt;}
.ws27{word-spacing:-0.512000pt;}
.ws18{word-spacing:-0.480000pt;}
.ws54{word-spacing:-0.469333pt;}
.ws2c{word-spacing:-0.426667pt;}
.wsbc{word-spacing:-0.400000pt;}
.wsba{word-spacing:-0.360000pt;}
.wsd9{word-spacing:-0.320000pt;}
.ws17{word-spacing:-0.288000pt;}
.ws7e{word-spacing:-0.280000pt;}
.ws76{word-spacing:-0.256000pt;}
.wse2{word-spacing:-0.240000pt;}
.ws52{word-spacing:-0.213333pt;}
.wsc4{word-spacing:-0.200000pt;}
.ws59{word-spacing:-0.170667pt;}
.ws98{word-spacing:-0.128000pt;}
.wscd{word-spacing:-0.120000pt;}
.wsb{word-spacing:0.000000pt;}
.wscb{word-spacing:0.040000pt;}
.wsb6{word-spacing:0.080000pt;}
.wsb8{word-spacing:0.120000pt;}
.wsb9{word-spacing:0.160000pt;}
.ws77{word-spacing:0.170667pt;}
.ws10{word-spacing:0.192000pt;}
.ws2b{word-spacing:0.213333pt;}
.ws11{word-spacing:0.256000pt;}
.wse0{word-spacing:0.280000pt;}
.ws35{word-spacing:0.298667pt;}
.wsb5{word-spacing:0.320000pt;}
.wsa1{word-spacing:0.384000pt;}
.wsc3{word-spacing:0.400000pt;}
.ws96{word-spacing:0.469333pt;}
.ws32{word-spacing:0.477867pt;}
.ws94{word-spacing:0.512000pt;}
.wscc{word-spacing:0.560000pt;}
.wsc2{word-spacing:0.600000pt;}
.ws30{word-spacing:0.640000pt;}
.wsc7{word-spacing:0.720000pt;}
.ws53{word-spacing:0.768000pt;}
.wsde{word-spacing:0.840000pt;}
.wse{word-spacing:0.896000pt;}
.wsc{word-spacing:0.933333pt;}
.wsea{word-spacing:0.938667pt;}
.wsbb{word-spacing:0.960000pt;}
.ws57{word-spacing:0.981333pt;}
.ws7f{word-spacing:1.000000pt;}
.ws2e{word-spacing:1.024000pt;}
.wsb0{word-spacing:1.080000pt;}
.wsc9{word-spacing:1.120000pt;}
.wse6{word-spacing:1.160000pt;}
.wsb3{word-spacing:1.200000pt;}
.ws58{word-spacing:1.237333pt;}
.ws2a{word-spacing:1.280000pt;}
.wse5{word-spacing:1.320000pt;}
.ws7d{word-spacing:1.322667pt;}
.wse8{word-spacing:1.400000pt;}
.ws34{word-spacing:1.536000pt;}
.wsbe{word-spacing:1.560000pt;}
.ws2d{word-spacing:1.664000pt;}
.ws2f{word-spacing:1.749333pt;}
.ws5b{word-spacing:1.792000pt;}
.ws7a{word-spacing:1.834667pt;}
.ws5a{word-spacing:1.877333pt;}
.wsec{word-spacing:1.920000pt;}
.ws97{word-spacing:2.005333pt;}
.wsc8{word-spacing:2.080000pt;}
.ws19{word-spacing:2.256000pt;}
.wsc0{word-spacing:2.400000pt;}
.wsdd{word-spacing:2.680000pt;}
.wsdf{word-spacing:3.160000pt;}
.ws7c{word-spacing:3.797333pt;}
.wse1{word-spacing:4.160000pt;}
.wsd0{word-spacing:5.600000pt;}
.wsb7{word-spacing:5.920000pt;}
.wsb2{word-spacing:7.680000pt;}
.wse4{word-spacing:7.760000pt;}
.wsc6{word-spacing:8.280000pt;}
.ws56{word-spacing:9.941333pt;}
.wseb{word-spacing:10.922667pt;}
.wse7{word-spacing:11.120000pt;}
.wscf{word-spacing:13.880000pt;}
.wsbd{word-spacing:15.880000pt;}
.wsda{word-spacing:22.640000pt;}
.ws6b{word-spacing:65.104000pt;}
.ws69{word-spacing:106.720000pt;}
.ws6a{word-spacing:172.400000pt;}
.ws74{word-spacing:176.912000pt;}
.ws75{word-spacing:177.740000pt;}
.ws70{word-spacing:197.128000pt;}
.ws71{word-spacing:199.312000pt;}
.ws68{word-spacing:207.376000pt;}
.ws6e{word-spacing:209.924000pt;}
.ws6f{word-spacing:222.368000pt;}
.ws72{word-spacing:239.344000pt;}
.ws4d{word-spacing:326.852000pt;}
.ws50{word-spacing:332.600000pt;}
.ws48{word-spacing:334.520000pt;}
.ws49{word-spacing:334.800000pt;}
.ws47{word-spacing:337.360000pt;}
.ws44{word-spacing:353.648000pt;}
.ws4a{word-spacing:354.236000pt;}
.ws42{word-spacing:355.848000pt;}
.ws4e{word-spacing:356.020000pt;}
.ws45{word-spacing:356.668000pt;}
.ws41{word-spacing:358.992000pt;}
.ws4f{word-spacing:359.052000pt;}
.ws4b{word-spacing:359.512000pt;}
.ws4c{word-spacing:359.808000pt;}
.ws3c{word-spacing:361.048000pt;}
.ws46{word-spacing:378.976000pt;}
.ws3e{word-spacing:381.524000pt;}
.ws3f{word-spacing:384.976000pt;}
.ws3b{word-spacing:511.904000pt;}
.ws36{word-spacing:2213.867733pt;}
._12{margin-left:-11.262933pt;}
._11{margin-left:-10.137600pt;}
._1c{margin-left:-7.779200pt;}
._1b{margin-left:-6.888000pt;}
._6{margin-left:-5.587200pt;}
._7{margin-left:-4.136533pt;}
._8{margin-left:-2.348267pt;}
._5{margin-left:-1.358400pt;}
._2{width:1.209600pt;}
._4{width:2.277333pt;}
._9{width:3.753600pt;}
._b{width:4.915200pt;}
._c{width:6.019733pt;}
._a{width:7.443733pt;}
._3{width:8.400000pt;}
._d{width:9.433600pt;}
._10{width:10.615467pt;}
._f{width:11.925333pt;}
._1d{width:13.111467pt;}
._1e{width:14.369067pt;}
._e{width:15.363733pt;}
._13{width:16.789333pt;}
._14{width:17.939200pt;}
._23{width:20.880000pt;}
._1f{width:22.260800pt;}
._15{width:23.666667pt;}
._20{width:25.710400pt;}
._21{width:27.604000pt;}
._22{width:28.633067pt;}
._24{width:32.412000pt;}
._16{width:73.475200pt;}
._18{width:99.632000pt;}
._19{width:190.846400pt;}
._1a{width:192.757600pt;}
._17{width:222.028800pt;}
._1{width:739.312000pt;}
._0{width:1179.173333pt;}
.fs7{font-size:26.133333pt;}
.fsd{font-size:28.000000pt;}
.fsb{font-size:29.866667pt;}
.fs0{font-size:37.333333pt;}
.fsc{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:51.146667pt;}
.fs8{font-size:53.333333pt;}
.fs2{font-size:64.000000pt;}
.fsa{font-size:69.440000pt;}
.fs3{font-size:69.813333pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:35.953600pt;}
.y2{bottom:38.220267pt;}
.yf{bottom:57.300133pt;}
.y177{bottom:67.533333pt;}
.y7f{bottom:67.945467pt;}
.ye2{bottom:67.951067pt;}
.yaf{bottom:67.958800pt;}
.yfc{bottom:69.284400pt;}
.y115{bottom:70.204533pt;}
.y133{bottom:70.617067pt;}
.ye{bottom:70.637467pt;}
.yd{bottom:83.974800pt;}
.y176{bottom:84.866667pt;}
.y7e{bottom:85.278800pt;}
.ye1{bottom:85.284400pt;}
.yae{bottom:85.292133pt;}
.yfb{bottom:86.617733pt;}
.y114{bottom:87.537867pt;}
.y1f2{bottom:87.821067pt;}
.y132{bottom:87.950400pt;}
.y1b2{bottom:87.951067pt;}
.y1f1{bottom:101.821067pt;}
.y1b1{bottom:101.951067pt;}
.y175{bottom:102.200000pt;}
.y7d{bottom:102.612133pt;}
.ye0{bottom:102.617733pt;}
.yad{bottom:102.625467pt;}
.yfa{bottom:103.951067pt;}
.y113{bottom:104.871200pt;}
.y131{bottom:105.283733pt;}
.y184{bottom:111.297467pt;}
.y1f0{bottom:115.821067pt;}
.y230{bottom:115.828800pt;}
.y1b0{bottom:115.951067pt;}
.y174{bottom:119.533333pt;}
.y7c{bottom:119.945467pt;}
.ydf{bottom:119.951067pt;}
.yac{bottom:119.958800pt;}
.yf9{bottom:121.284400pt;}
.y112{bottom:122.204533pt;}
.y130{bottom:122.617067pt;}
.y1ef{bottom:129.821067pt;}
.y22f{bottom:129.828800pt;}
.y1af{bottom:129.951067pt;}
.y173{bottom:136.866667pt;}
.y7b{bottom:137.278800pt;}
.yde{bottom:137.284400pt;}
.yab{bottom:137.292133pt;}
.yf8{bottom:138.617733pt;}
.y12f{bottom:139.950400pt;}
.y1ee{bottom:143.821067pt;}
.y22e{bottom:143.828800pt;}
.y1ae{bottom:143.951067pt;}
.y172{bottom:154.200000pt;}
.y237{bottom:154.500800pt;}
.y7a{bottom:154.612133pt;}
.ydd{bottom:154.617733pt;}
.y181{bottom:154.625467pt;}
.yf7{bottom:155.951067pt;}
.y111{bottom:156.871067pt;}
.y12e{bottom:157.283733pt;}
.y34{bottom:157.769733pt;}
.y1ed{bottom:157.821067pt;}
.y22d{bottom:157.828800pt;}
.y1ad{bottom:157.951067pt;}
.yaa{bottom:163.292133pt;}
.y33{bottom:171.107067pt;}
.y171{bottom:171.533333pt;}
.y1ec{bottom:171.821067pt;}
.y22c{bottom:171.828800pt;}
.y236{bottom:171.834133pt;}
.y79{bottom:171.945467pt;}
.ydc{bottom:171.951067pt;}
.y180{bottom:171.958800pt;}
.yf6{bottom:173.284400pt;}
.y12d{bottom:174.617067pt;}
.y183{bottom:180.630800pt;}
.y32{bottom:184.444400pt;}
.y1eb{bottom:185.821067pt;}
.y22b{bottom:185.828800pt;}
.y1ac{bottom:185.951067pt;}
.y157{bottom:188.568267pt;}
.y170{bottom:188.866667pt;}
.y235{bottom:189.167467pt;}
.y78{bottom:189.278800pt;}
.ydb{bottom:189.284400pt;}
.y17f{bottom:189.292133pt;}
.yf5{bottom:190.617733pt;}
.y12c{bottom:191.950400pt;}
.y31{bottom:197.781733pt;}
.y1ea{bottom:199.821067pt;}
.y22a{bottom:199.828800pt;}
.y1ab{bottom:199.951067pt;}
.y156{bottom:202.568267pt;}
.y16f{bottom:206.200000pt;}
.y234{bottom:206.500800pt;}
.y77{bottom:206.612133pt;}
.yda{bottom:206.617733pt;}
.ya9{bottom:206.625467pt;}
.yf4{bottom:207.951067pt;}
.y12b{bottom:209.283733pt;}
.y30{bottom:211.119067pt;}
.y1e9{bottom:213.821067pt;}
.y229{bottom:213.828800pt;}
.y1aa{bottom:213.951067pt;}
.y155{bottom:216.568267pt;}
.y16e{bottom:223.533333pt;}
.y76{bottom:223.945467pt;}
.yd9{bottom:223.951067pt;}
.ya8{bottom:223.958800pt;}
.y2f{bottom:224.456400pt;}
.yf3{bottom:225.284400pt;}
.y12a{bottom:226.617067pt;}
.y1e8{bottom:227.821067pt;}
.y228{bottom:227.828800pt;}
.y1a9{bottom:227.951067pt;}
.y154{bottom:230.568267pt;}
.y2e{bottom:237.793733pt;}
.y16d{bottom:240.866667pt;}
.y75{bottom:241.278800pt;}
.yd8{bottom:241.284400pt;}
.ya7{bottom:241.292133pt;}
.y1e7{bottom:241.821067pt;}
.y227{bottom:241.828800pt;}
.y1a8{bottom:241.951067pt;}
.yf2{bottom:242.617733pt;}
.y129{bottom:243.950400pt;}
.y153{bottom:249.068267pt;}
.y2d{bottom:251.131067pt;}
.y233{bottom:253.828800pt;}
.y1e6{bottom:255.821067pt;}
.y226{bottom:255.828800pt;}
.y1a7{bottom:255.951067pt;}
.y16c{bottom:258.200000pt;}
.y74{bottom:258.612133pt;}
.yd7{bottom:258.617733pt;}
.ya6{bottom:258.625467pt;}
.yf1{bottom:259.951067pt;}
.y128{bottom:261.283733pt;}
.y2c{bottom:264.468400pt;}
.y152{bottom:266.558000pt;}
.y1e5{bottom:269.821067pt;}
.y225{bottom:269.828800pt;}
.y1a6{bottom:269.951067pt;}
.y232{bottom:271.162133pt;}
.y16b{bottom:275.533333pt;}
.y73{bottom:275.945467pt;}
.yd6{bottom:275.951067pt;}
.ya5{bottom:275.958800pt;}
.yf0{bottom:277.284400pt;}
.y2b{bottom:277.805733pt;}
.y127{bottom:278.617067pt;}
.y1e4{bottom:283.821067pt;}
.y224{bottom:283.828800pt;}
.y1a5{bottom:283.951067pt;}
.y151{bottom:285.278000pt;}
.y2a{bottom:291.143067pt;}
.y16a{bottom:292.866667pt;}
.y72{bottom:293.278800pt;}
.yd5{bottom:293.284400pt;}
.ya4{bottom:293.292133pt;}
.yef{bottom:294.617733pt;}
.y126{bottom:295.950400pt;}
.y231{bottom:296.495467pt;}
.y1e3{bottom:297.821067pt;}
.y223{bottom:297.828800pt;}
.y1a4{bottom:297.951067pt;}
.y48{bottom:299.957067pt;}
.y150{bottom:303.998000pt;}
.y169{bottom:310.200000pt;}
.y71{bottom:310.612133pt;}
.yd4{bottom:310.617733pt;}
.ya3{bottom:310.625467pt;}
.y1e2{bottom:311.821067pt;}
.y222{bottom:311.828800pt;}
.y1a3{bottom:311.951067pt;}
.y125{bottom:313.283733pt;}
.y47{bottom:317.290400pt;}
.y29{bottom:317.808400pt;}
.y14f{bottom:322.718000pt;}
.y1e1{bottom:325.821067pt;}
.y221{bottom:325.828800pt;}
.y1a2{bottom:325.951067pt;}
.y168{bottom:327.533333pt;}
.y70{bottom:327.945467pt;}
.ya2{bottom:327.958800pt;}
.yee{bottom:329.284400pt;}
.y124{bottom:330.617067pt;}
.y28{bottom:331.145733pt;}
.y46{bottom:334.623733pt;}
.yd3{bottom:336.617733pt;}
.y1e0{bottom:339.821067pt;}
.y220{bottom:339.828800pt;}
.y1a1{bottom:339.951067pt;}
.y14e{bottom:343.968000pt;}
.y27{bottom:344.483067pt;}
.y167{bottom:344.866667pt;}
.y6f{bottom:345.278800pt;}
.ya1{bottom:345.292133pt;}
.y123{bottom:347.950400pt;}
.y1df{bottom:353.821067pt;}
.y21f{bottom:353.828800pt;}
.y1a0{bottom:353.951067pt;}
.y26{bottom:357.820400pt;}
.y166{bottom:362.200000pt;}
.y6e{bottom:362.612133pt;}
.ya0{bottom:362.625467pt;}
.y122{bottom:365.283733pt;}
.y45{bottom:366.551067pt;}
.y1de{bottom:367.821067pt;}
.y21e{bottom:367.828800pt;}
.y19f{bottom:367.951067pt;}
.y14d{bottom:368.884533pt;}
.y25{bottom:371.157733pt;}
.y165{bottom:379.533333pt;}
.y6d{bottom:379.945467pt;}
.yd2{bottom:379.951067pt;}
.y9f{bottom:379.958800pt;}
.yed{bottom:381.284400pt;}
.y1dd{bottom:381.821067pt;}
.y21d{bottom:381.828800pt;}
.y19e{bottom:381.951067pt;}
.y121{bottom:382.617067pt;}
.y14c{bottom:383.551200pt;}
.y24{bottom:384.495067pt;}
.y44{bottom:386.555067pt;}
.y1dc{bottom:395.821067pt;}
.y21c{bottom:395.828800pt;}
.y19d{bottom:395.951067pt;}
.y164{bottom:396.866667pt;}
.y6c{bottom:397.278800pt;}
.yd1{bottom:397.284400pt;}
.y9e{bottom:397.292133pt;}
.y14b{bottom:398.217867pt;}
.yec{bottom:398.617733pt;}
.y120{bottom:399.950400pt;}
.y43{bottom:406.559067pt;}
.y1db{bottom:409.821067pt;}
.y21b{bottom:409.828800pt;}
.y19c{bottom:409.951067pt;}
.y23{bottom:411.160400pt;}
.y163{bottom:414.200000pt;}
.y6b{bottom:414.612133pt;}
.yd0{bottom:414.617733pt;}
.y9d{bottom:414.625467pt;}
.yeb{bottom:415.951067pt;}
.y11f{bottom:417.283733pt;}
.y182{bottom:423.297467pt;}
.y1da{bottom:423.821067pt;}
.y21a{bottom:423.828800pt;}
.y19b{bottom:423.951067pt;}
.y42{bottom:426.563067pt;}
.y14a{bottom:427.801333pt;}
.y22{bottom:428.697733pt;}
.y162{bottom:431.533333pt;}
.y6a{bottom:431.945467pt;}
.ycf{bottom:431.951067pt;}
.y9c{bottom:431.958800pt;}
.yea{bottom:433.284400pt;}
.y11e{bottom:434.617067pt;}
.y1d9{bottom:437.821067pt;}
.y219{bottom:437.828800pt;}
.y19a{bottom:437.951067pt;}
.y149{bottom:441.801333pt;}
.y21{bottom:441.827067pt;}
.y41{bottom:446.567067pt;}
.y161{bottom:448.866667pt;}
.y69{bottom:449.278800pt;}
.yce{bottom:449.284400pt;}
.y9b{bottom:449.292133pt;}
.ye9{bottom:450.617733pt;}
.y1d8{bottom:451.821067pt;}
.y218{bottom:451.828800pt;}
.y11d{bottom:451.950400pt;}
.y199{bottom:451.951067pt;}
.y148{bottom:455.801333pt;}
.y20{bottom:459.364400pt;}
.y1d7{bottom:465.821067pt;}
.y217{bottom:465.828800pt;}
.y198{bottom:465.951067pt;}
.y160{bottom:466.200000pt;}
.y40{bottom:466.571067pt;}
.y68{bottom:466.612133pt;}
.ycd{bottom:466.617733pt;}
.y9a{bottom:466.625467pt;}
.ye8{bottom:467.951067pt;}
.y11c{bottom:469.283733pt;}
.y147{bottom:469.801333pt;}
.y1f{bottom:472.493733pt;}
.y1d6{bottom:479.821067pt;}
.y216{bottom:479.828800pt;}
.y197{bottom:479.951067pt;}
.y15f{bottom:483.533333pt;}
.y67{bottom:483.945467pt;}
.ycc{bottom:483.951067pt;}
.y99{bottom:483.958800pt;}
.ye7{bottom:485.284400pt;}
.y3f{bottom:486.575067pt;}
.y11b{bottom:486.617067pt;}
.y146{bottom:488.301333pt;}
.y1e{bottom:490.031067pt;}
.y1d5{bottom:493.821067pt;}
.y215{bottom:493.828800pt;}
.y196{bottom:493.951067pt;}
.y15e{bottom:500.866667pt;}
.y66{bottom:501.278800pt;}
.ycb{bottom:501.284400pt;}
.y98{bottom:501.292133pt;}
.ye6{bottom:502.617733pt;}
.y1d{bottom:503.160400pt;}
.y11a{bottom:503.950400pt;}
.y145{bottom:505.797867pt;}
.y3e{bottom:506.579067pt;}
.y1d4{bottom:507.821067pt;}
.y214{bottom:507.828800pt;}
.y195{bottom:507.951067pt;}
.y15d{bottom:518.200000pt;}
.y65{bottom:518.612133pt;}
.yca{bottom:518.617733pt;}
.y97{bottom:518.625467pt;}
.ye5{bottom:519.951067pt;}
.y1c{bottom:520.697733pt;}
.y119{bottom:521.283733pt;}
.y1d3{bottom:521.821067pt;}
.y213{bottom:521.828800pt;}
.y194{bottom:521.951067pt;}
.y144{bottom:524.517867pt;}
.y3d{bottom:526.583067pt;}
.y1b{bottom:533.827067pt;}
.y15c{bottom:535.533333pt;}
.y1d2{bottom:535.821067pt;}
.y212{bottom:535.828800pt;}
.y64{bottom:535.945467pt;}
.yc9{bottom:535.951067pt;}
.y96{bottom:535.958800pt;}
.ye4{bottom:537.284400pt;}
.y118{bottom:538.617067pt;}
.y143{bottom:545.767867pt;}
.y3c{bottom:546.587067pt;}
.y1d1{bottom:549.821067pt;}
.y211{bottom:549.828800pt;}
.y193{bottom:549.951067pt;}
.y1a{bottom:551.364400pt;}
.y15b{bottom:552.866667pt;}
.y63{bottom:553.278800pt;}
.yc8{bottom:553.284400pt;}
.y95{bottom:553.292133pt;}
.ye3{bottom:554.617733pt;}
.y117{bottom:555.953867pt;}
.y1d0{bottom:563.821067pt;}
.y210{bottom:563.828800pt;}
.y192{bottom:563.951067pt;}
.y19{bottom:564.489733pt;}
.y3b{bottom:566.591067pt;}
.y15a{bottom:570.200000pt;}
.y62{bottom:570.612133pt;}
.yc7{bottom:570.617733pt;}
.y94{bottom:570.625467pt;}
.y142{bottom:570.684400pt;}
.y116{bottom:573.287200pt;}
.y1cf{bottom:577.821067pt;}
.y18{bottom:577.827067pt;}
.y20f{bottom:577.828800pt;}
.y191{bottom:577.951067pt;}
.y3a{bottom:586.595067pt;}
.y159{bottom:587.533333pt;}
.y61{bottom:587.945467pt;}
.yc6{bottom:587.951067pt;}
.y93{bottom:587.958800pt;}
.y110{bottom:589.881067pt;}
.y1ce{bottom:591.821067pt;}
.y20e{bottom:591.828800pt;}
.y190{bottom:591.951067pt;}
.y17{bottom:595.364400pt;}
.y158{bottom:604.866667pt;}
.y60{bottom:605.278800pt;}
.yc5{bottom:605.284400pt;}
.y92{bottom:605.292133pt;}
.y1cd{bottom:605.821067pt;}
.y20d{bottom:605.828800pt;}
.y18f{bottom:605.951067pt;}
.y39{bottom:606.599067pt;}
.y16{bottom:608.493733pt;}
.y10f{bottom:608.601067pt;}
.y1cc{bottom:619.821067pt;}
.y20c{bottom:619.828800pt;}
.y18e{bottom:619.951067pt;}
.y5f{bottom:622.612133pt;}
.yc4{bottom:622.617733pt;}
.y91{bottom:622.625467pt;}
.y15{bottom:626.031067pt;}
.y38{bottom:626.603067pt;}
.y10e{bottom:627.321067pt;}
.y1cb{bottom:633.821067pt;}
.y20b{bottom:633.828800pt;}
.y18d{bottom:633.951067pt;}
.y14{bottom:639.160400pt;}
.y5e{bottom:639.945467pt;}
.yc3{bottom:639.951067pt;}
.y17e{bottom:639.958800pt;}
.y10d{bottom:646.041067pt;}
.y37{bottom:646.607067pt;}
.y1ca{bottom:647.821067pt;}
.y20a{bottom:647.828800pt;}
.y90{bottom:648.625467pt;}
.y13{bottom:656.697733pt;}
.y5d{bottom:657.278800pt;}
.yc2{bottom:657.284400pt;}
.y17d{bottom:657.292133pt;}
.y18c{bottom:659.951067pt;}
.y1c9{bottom:661.821067pt;}
.y209{bottom:661.828800pt;}
.y10c{bottom:664.761067pt;}
.y36{bottom:666.611067pt;}
.y12{bottom:669.823067pt;}
.y5c{bottom:674.612133pt;}
.yc1{bottom:674.617733pt;}
.y17c{bottom:674.625467pt;}
.y1c8{bottom:675.821067pt;}
.y208{bottom:675.828800pt;}
.y11{bottom:683.160400pt;}
.y8f{bottom:683.292133pt;}
.y10b{bottom:683.481067pt;}
.y35{bottom:686.611067pt;}
.y1c7{bottom:689.821067pt;}
.y207{bottom:689.828800pt;}
.y5b{bottom:691.945467pt;}
.yc0{bottom:691.951067pt;}
.y17b{bottom:691.958800pt;}
.y10{bottom:700.697733pt;}
.y10a{bottom:702.201067pt;}
.y1c6{bottom:703.821067pt;}
.y206{bottom:703.828800pt;}
.y18b{bottom:709.273733pt;}
.y5a{bottom:709.278800pt;}
.ybf{bottom:709.284400pt;}
.y17a{bottom:709.292133pt;}
.y1c5{bottom:717.821067pt;}
.y205{bottom:717.828800pt;}
.y178{bottom:719.951067pt;}
.y109{bottom:720.921067pt;}
.y59{bottom:726.612133pt;}
.ybe{bottom:726.617733pt;}
.y8e{bottom:726.625467pt;}
.y1c4{bottom:731.821067pt;}
.y204{bottom:731.828800pt;}
.y141{bottom:734.617733pt;}
.y18a{bottom:735.279067pt;}
.y108{bottom:739.641067pt;}
.yc{bottom:742.672267pt;}
.y58{bottom:743.945467pt;}
.ybd{bottom:743.951067pt;}
.y8d{bottom:743.958800pt;}
.y1c3{bottom:745.821067pt;}
.y203{bottom:745.828800pt;}
.y140{bottom:749.284400pt;}
.y107{bottom:758.361067pt;}
.y1c2{bottom:759.821067pt;}
.y202{bottom:759.828800pt;}
.y57{bottom:761.278800pt;}
.ybc{bottom:761.284400pt;}
.y8c{bottom:761.292133pt;}
.y13f{bottom:763.951067pt;}
.yb{bottom:769.338933pt;}
.y1c1{bottom:773.821067pt;}
.y201{bottom:773.828800pt;}
.y106{bottom:777.081067pt;}
.y56{bottom:778.612133pt;}
.ybb{bottom:778.617733pt;}
.y8b{bottom:778.625467pt;}
.y189{bottom:780.612400pt;}
.y1c0{bottom:787.821067pt;}
.y200{bottom:787.828800pt;}
.y13e{bottom:793.284400pt;}
.y105{bottom:795.801067pt;}
.y55{bottom:795.945467pt;}
.yba{bottom:795.951067pt;}
.y8a{bottom:795.958800pt;}
.ya{bottom:796.010933pt;}
.y188{bottom:797.945733pt;}
.y1bf{bottom:801.821067pt;}
.y1ff{bottom:801.828800pt;}
.y13d{bottom:807.951067pt;}
.y54{bottom:813.278800pt;}
.y89{bottom:813.292133pt;}
.y104{bottom:814.521067pt;}
.y187{bottom:815.279067pt;}
.y1be{bottom:815.821067pt;}
.y1fe{bottom:815.828800pt;}
.yb9{bottom:821.951067pt;}
.y13c{bottom:822.617733pt;}
.y1bd{bottom:829.821067pt;}
.y1fd{bottom:829.828800pt;}
.y53{bottom:830.612133pt;}
.y88{bottom:830.625467pt;}
.y186{bottom:832.612400pt;}
.y103{bottom:833.241067pt;}
.y13b{bottom:837.284400pt;}
.yb8{bottom:839.284400pt;}
.y1bc{bottom:843.821067pt;}
.y1fc{bottom:843.828800pt;}
.y52{bottom:847.945467pt;}
.y87{bottom:847.958800pt;}
.y9{bottom:848.005600pt;}
.y13a{bottom:851.951067pt;}
.y102{bottom:851.961067pt;}
.y1bb{bottom:857.821067pt;}
.y1fb{bottom:857.828800pt;}
.y185{bottom:858.617733pt;}
.y51{bottom:865.278800pt;}
.y86{bottom:865.292133pt;}
.y139{bottom:866.617733pt;}
.y101{bottom:870.681067pt;}
.y1ba{bottom:871.821067pt;}
.y1fa{bottom:871.828800pt;}
.y8{bottom:878.677600pt;}
.y138{bottom:881.284400pt;}
.y50{bottom:882.612133pt;}
.yb7{bottom:882.617733pt;}
.y85{bottom:882.625467pt;}
.y1b9{bottom:885.821067pt;}
.y1f9{bottom:885.828800pt;}
.y100{bottom:889.401067pt;}
.y137{bottom:895.951067pt;}
.y1b8{bottom:899.821067pt;}
.y1f8{bottom:899.828800pt;}
.y4f{bottom:899.945467pt;}
.yb6{bottom:899.951067pt;}
.y84{bottom:899.958800pt;}
.yff{bottom:908.121067pt;}
.y136{bottom:910.617733pt;}
.y1b7{bottom:913.821067pt;}
.y1f7{bottom:913.828800pt;}
.y4e{bottom:917.278800pt;}
.yb5{bottom:917.284400pt;}
.y83{bottom:917.292133pt;}
.y135{bottom:925.284400pt;}
.y1b6{bottom:927.821067pt;}
.y1f6{bottom:927.828800pt;}
.yfe{bottom:929.701067pt;}
.y4d{bottom:934.612133pt;}
.yb4{bottom:934.617733pt;}
.y82{bottom:934.625467pt;}
.y134{bottom:939.951067pt;}
.y7{bottom:941.344267pt;}
.y1b5{bottom:941.821067pt;}
.y1f5{bottom:941.828800pt;}
.yb3{bottom:951.951067pt;}
.y81{bottom:951.958800pt;}
.yfd{bottom:954.617733pt;}
.y1b4{bottom:955.821067pt;}
.y1f4{bottom:955.828800pt;}
.y4c{bottom:969.278800pt;}
.yb2{bottom:969.284400pt;}
.y80{bottom:969.289467pt;}
.y179{bottom:969.292133pt;}
.y1b3{bottom:969.821067pt;}
.y1f3{bottom:969.828800pt;}
.y6{bottom:977.398800pt;}
.y5{bottom:994.061467pt;}
.y4{bottom:996.728133pt;}
.yb1{bottom:1001.497733pt;}
.y4a{bottom:1001.498400pt;}
.y4b{bottom:1003.789333pt;}
.yb0{bottom:1003.897733pt;}
.y49{bottom:1003.898400pt;}
.y3{bottom:1028.908267pt;}
.hb{height:20.031200pt;}
.h1b{height:21.462000pt;}
.h12{height:27.048000pt;}
.h10{height:27.178667pt;}
.h16{height:27.503467pt;}
.hc{height:27.738667pt;}
.h4{height:28.616000pt;}
.h2{height:28.952000pt;}
.h18{height:29.720000pt;}
.h1f{height:30.660000pt;}
.h1e{height:30.980000pt;}
.h19{height:31.020000pt;}
.h1c{height:31.701333pt;}
.hf{height:33.088000pt;}
.h1d{height:33.130667pt;}
.h7{height:35.352000pt;}
.he{height:37.224000pt;}
.h3{height:39.203920pt;}
.hd{height:39.626667pt;}
.h13{height:40.880000pt;}
.h1a{height:42.078933pt;}
.h14{height:42.092800pt;}
.h15{height:42.103467pt;}
.h17{height:42.361600pt;}
.h5{height:43.712000pt;}
.h11{height:53.503520pt;}
.h6{height:53.511920pt;}
.h9{height:62.086933pt;}
.ha{height:62.108267pt;}
.h8{height:71.328000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:59.716533pt;}
.x1{left:61.984267pt;}
.x14{left:67.716533pt;}
.xe{left:77.108000pt;}
.x16{left:79.279333pt;}
.x1a{left:83.115067pt;}
.x18{left:85.276400pt;}
.x2{left:93.026400pt;}
.x3{left:95.364267pt;}
.x4{left:105.934667pt;}
.x15{left:138.526533pt;}
.x6{left:171.813600pt;}
.x7{left:174.151467pt;}
.xa{left:278.414267pt;}
.x8{left:313.600267pt;}
.x9{left:315.938133pt;}
.xf{left:407.739600pt;}
.x11{left:409.957067pt;}
.x13{left:418.002800pt;}
.x1c{left:423.764533pt;}
.x10{left:425.078667pt;}
.x12{left:427.298933pt;}
.x1b{left:431.094533pt;}
.x19{left:433.316400pt;}
.x17{left:530.645600pt;}
.xb{left:677.142800pt;}
.xc{left:698.740133pt;}
.xd{left:700.739200pt;}
}




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