
    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_9867cdec5f76435f499c239b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_df78d0ea39085418792844d4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_d63b1b7820cb1ce190fadb1e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_ea27a1752ce8814d891ebc4a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_beaeaa47ad60f165f152debe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_82f3bc081ab7c612633aee4f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_28aaad62fabe7667840af18a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_c2092999dd0a55dc2d8b9fd2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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_d94e15ffc534ce851337d65f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.958008;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_36f860c062e238fc0307d6f2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_d5b0fe5e0955209e67c41214.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_dce46483fe72b0cb0102edc8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.958008;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_520401803405cd492a9fef52.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.958008;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:ffe;src:url('chunks/assets/font_c12fe32eb90fee2dbd57e240.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.958008;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:fff;src:url('chunks/assets/font_e8706064587a220445003ca9.woff2')format("woff");}.fff{font-family:fff;line-height:0.958008;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:ff10;src:url('chunks/assets/font_2b224fc32670e9ed623ce157.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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:ff11;src:url('chunks/assets/font_e4f374fd7de4b0a68c025052.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.958008;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:ff12;src:url('chunks/assets/font_49fdbd2fe524dc6e2ad7ebc2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.958008;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:ff13;src:url('chunks/assets/font_bd0fee12c6655dd88a3c6a3d.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.958008;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:ff14;src:url('chunks/assets/font_47500573bc19235b751d33f3.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.958008;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-11.697000px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.620000px;}
.v5{vertical-align:3.693000px;}
.v6{vertical-align:24.350400px;}
.v3{vertical-align:28.263000px;}
.v1{vertical-align:30.381600px;}
.ls8f{letter-spacing:-2.208000px;}
.ls55{letter-spacing:-1.776000px;}
.lsa{letter-spacing:-0.780000px;}
.ls8a{letter-spacing:-0.720000px;}
.ls82{letter-spacing:-0.576000px;}
.ls81{letter-spacing:-0.480000px;}
.ls34{letter-spacing:-0.420000px;}
.ls8d{letter-spacing:-0.336000px;}
.ls5c{letter-spacing:-0.300000px;}
.lsd{letter-spacing:-0.240000px;}
.ls5d{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.135000px;}
.lsc{letter-spacing:-0.120000px;}
.ls8c{letter-spacing:-0.096000px;}
.ls35{letter-spacing:-0.060000px;}
.ls8b{letter-spacing:-0.048000px;}
.ls9{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.004140px;}
.ls0{letter-spacing:0.005076px;}
.ls2{letter-spacing:0.005676px;}
.ls43{letter-spacing:0.034980px;}
.ls42{letter-spacing:0.035400px;}
.ls7b{letter-spacing:0.048000px;}
.ls21{letter-spacing:0.060000px;}
.ls6c{letter-spacing:0.096000px;}
.ls29{letter-spacing:0.120000px;}
.ls6d{letter-spacing:0.144000px;}
.ls41{letter-spacing:0.145200px;}
.ls8{letter-spacing:0.180000px;}
.ls85{letter-spacing:0.192000px;}
.ls3b{letter-spacing:0.240000px;}
.ls65{letter-spacing:0.288000px;}
.ls36{letter-spacing:0.300000px;}
.ls7f{letter-spacing:0.336000px;}
.ls22{letter-spacing:0.360000px;}
.ls76{letter-spacing:0.384000px;}
.ls11{letter-spacing:0.420000px;}
.ls77{letter-spacing:0.432000px;}
.lse{letter-spacing:0.480000px;}
.ls86{letter-spacing:0.528000px;}
.ls1a{letter-spacing:0.540000px;}
.ls84{letter-spacing:0.576000px;}
.ls7{letter-spacing:0.600000px;}
.ls67{letter-spacing:0.624000px;}
.ls13{letter-spacing:0.660000px;}
.ls75{letter-spacing:0.672000px;}
.ls10{letter-spacing:0.720000px;}
.ls6e{letter-spacing:0.768000px;}
.ls33{letter-spacing:0.773400px;}
.ls45{letter-spacing:0.780000px;}
.ls7c{letter-spacing:0.816000px;}
.ls1c{letter-spacing:0.840000px;}
.ls78{letter-spacing:0.864000px;}
.ls6{letter-spacing:0.900000px;}
.ls74{letter-spacing:0.912000px;}
.ls18{letter-spacing:0.960000px;}
.ls7e{letter-spacing:1.008000px;}
.ls4b{letter-spacing:1.014420px;}
.ls25{letter-spacing:1.020000px;}
.ls6f{letter-spacing:1.056000px;}
.ls3a{letter-spacing:1.080000px;}
.ls80{letter-spacing:1.104000px;}
.ls31{letter-spacing:1.140000px;}
.ls6b{letter-spacing:1.152000px;}
.ls4c{letter-spacing:1.189320px;}
.ls2d{letter-spacing:1.200000px;}
.ls7d{letter-spacing:1.248000px;}
.ls38{letter-spacing:1.260000px;}
.ls12{letter-spacing:1.320000px;}
.ls87{letter-spacing:1.344000px;}
.ls20{letter-spacing:1.380000px;}
.ls69{letter-spacing:1.392000px;}
.ls4e{letter-spacing:1.434180px;}
.ls1d{letter-spacing:1.440000px;}
.ls17{letter-spacing:1.500000px;}
.ls70{letter-spacing:1.536000px;}
.ls3c{letter-spacing:1.560000px;}
.ls66{letter-spacing:1.584000px;}
.ls2b{letter-spacing:1.620000px;}
.ls6a{letter-spacing:1.632000px;}
.ls30{letter-spacing:1.680000px;}
.ls4a{letter-spacing:1.730400px;}
.ls26{letter-spacing:1.740000px;}
.ls83{letter-spacing:1.776000px;}
.ls32{letter-spacing:1.800000px;}
.ls88{letter-spacing:1.824000px;}
.ls2f{letter-spacing:1.860000px;}
.ls79{letter-spacing:1.872000px;}
.ls27{letter-spacing:1.920000px;}
.ls1b{letter-spacing:1.980000px;}
.ls5{letter-spacing:2.040000px;}
.ls73{letter-spacing:2.064000px;}
.ls28{letter-spacing:2.100000px;}
.lsf{letter-spacing:2.160000px;}
.ls15{letter-spacing:2.220000px;}
.ls7a{letter-spacing:2.256000px;}
.ls53{letter-spacing:2.271000px;}
.ls2c{letter-spacing:2.280000px;}
.ls72{letter-spacing:2.304000px;}
.ls59{letter-spacing:2.340000px;}
.ls23{letter-spacing:2.400000px;}
.ls4d{letter-spacing:2.436000px;}
.ls71{letter-spacing:2.448000px;}
.ls1e{letter-spacing:2.460000px;}
.ls14{letter-spacing:2.520000px;}
.ls39{letter-spacing:2.580000px;}
.ls16{letter-spacing:2.640000px;}
.ls5f{letter-spacing:2.700000px;}
.ls1f{letter-spacing:2.760000px;}
.ls24{letter-spacing:2.820000px;}
.ls2a{letter-spacing:2.880000px;}
.ls8e{letter-spacing:2.928000px;}
.ls56{letter-spacing:2.940000px;}
.ls19{letter-spacing:3.060000px;}
.ls4{letter-spacing:3.120000px;}
.ls48{letter-spacing:3.180000px;}
.ls89{letter-spacing:3.216000px;}
.ls3e{letter-spacing:3.240000px;}
.ls91{letter-spacing:3.264000px;}
.ls5e{letter-spacing:3.300000px;}
.ls57{letter-spacing:3.360000px;}
.ls40{letter-spacing:3.420000px;}
.ls50{letter-spacing:3.480000px;}
.ls5a{letter-spacing:3.540000px;}
.ls54{letter-spacing:3.600000px;}
.ls49{letter-spacing:3.720000px;}
.ls62{letter-spacing:3.780000px;}
.ls4f{letter-spacing:3.840000px;}
.ls52{letter-spacing:3.863400px;}
.ls51{letter-spacing:3.900000px;}
.ls3d{letter-spacing:3.960000px;}
.ls68{letter-spacing:4.080000px;}
.ls2e{letter-spacing:4.140000px;}
.ls58{letter-spacing:4.380000px;}
.ls44{letter-spacing:4.620000px;}
.ls90{letter-spacing:4.896000px;}
.ls3f{letter-spacing:5.040000px;}
.ls37{letter-spacing:5.160000px;}
.ls5b{letter-spacing:5.520000px;}
.ls64{letter-spacing:5.760000px;}
.ls60{letter-spacing:7.560000px;}
.ls61{letter-spacing:8.040000px;}
.ls63{letter-spacing:8.700000px;}
.ls1{letter-spacing:59.533476px;}
.ls46{letter-spacing:308.160000px;}
.ls47{letter-spacing:342.192000px;}
.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;}
}
.ws7b{word-spacing:-19.320000px;}
.ws1{word-spacing:-17.514000px;}
.ws42{word-spacing:-17.040000px;}
.ws2d{word-spacing:-16.680000px;}
.wsb6{word-spacing:-15.900000px;}
.ws50{word-spacing:-15.846000px;}
.wsc{word-spacing:-15.660000px;}
.ws44{word-spacing:-15.000000px;}
.ws87{word-spacing:-13.920000px;}
.wsb5{word-spacing:-13.824000px;}
.ws82{word-spacing:-13.632000px;}
.ws4{word-spacing:-13.344000px;}
.ws9d{word-spacing:-13.056000px;}
.ws9f{word-spacing:-12.864000px;}
.wsa2{word-spacing:-12.816000px;}
.wsa3{word-spacing:-12.720000px;}
.wsa1{word-spacing:-12.624000px;}
.ws3{word-spacing:-12.510000px;}
.ws84{word-spacing:-12.480000px;}
.wsa4{word-spacing:-12.432000px;}
.ws85{word-spacing:-12.384000px;}
.wsa0{word-spacing:-12.240000px;}
.ws83{word-spacing:-12.144000px;}
.ws86{word-spacing:-12.048000px;}
.ws5e{word-spacing:-12.000000px;}
.ws81{word-spacing:-11.424000px;}
.ws9e{word-spacing:-11.280000px;}
.ws0{word-spacing:-10.210662px;}
.ws43{word-spacing:-9.934320px;}
.wsa5{word-spacing:-9.792000px;}
.ws41{word-spacing:-9.759420px;}
.ws2e{word-spacing:-8.779980px;}
.ws2c{word-spacing:-8.745000px;}
.ws2{word-spacing:-7.293330px;}
.ws8f{word-spacing:-4.080000px;}
.ws6{word-spacing:-2.886000px;}
.ws9b{word-spacing:-2.640000px;}
.ws3a{word-spacing:-2.460000px;}
.ws95{word-spacing:-2.448000px;}
.ws23{word-spacing:-2.220000px;}
.ws36{word-spacing:-2.040000px;}
.ws9c{word-spacing:-1.920000px;}
.wsb8{word-spacing:-1.824000px;}
.ws4b{word-spacing:-1.740000px;}
.ws91{word-spacing:-1.632000px;}
.ws2a{word-spacing:-1.560000px;}
.ws21{word-spacing:-1.080000px;}
.wsa6{word-spacing:-0.960000px;}
.wsab{word-spacing:-0.816000px;}
.wsa8{word-spacing:-0.720000px;}
.ws70{word-spacing:-0.480000px;}
.wsb7{word-spacing:-0.432000px;}
.ws1e{word-spacing:-0.420000px;}
.wsa9{word-spacing:-0.384000px;}
.ws1c{word-spacing:-0.360000px;}
.ws99{word-spacing:-0.336000px;}
.ws49{word-spacing:-0.300000px;}
.wsae{word-spacing:-0.288000px;}
.ws7f{word-spacing:-0.240000px;}
.ws3c{word-spacing:-0.180000px;}
.ws92{word-spacing:-0.144000px;}
.ws15{word-spacing:-0.120000px;}
.ws3e{word-spacing:-0.060000px;}
.ws25{word-spacing:-0.053500px;}
.ws96{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.wsad{word-spacing:0.048000px;}
.ws26{word-spacing:0.060000px;}
.ws2b{word-spacing:0.096000px;}
.ws7{word-spacing:0.120000px;}
.ws14{word-spacing:0.180000px;}
.wsaf{word-spacing:0.240000px;}
.ws73{word-spacing:0.300000px;}
.ws6d{word-spacing:0.360000px;}
.ws13{word-spacing:0.420000px;}
.ws62{word-spacing:0.480000px;}
.ws37{word-spacing:0.540000px;}
.ws22{word-spacing:0.600000px;}
.ws61{word-spacing:0.660000px;}
.ws79{word-spacing:0.720000px;}
.ws9a{word-spacing:0.816000px;}
.ws20{word-spacing:0.840000px;}
.ws75{word-spacing:0.900000px;}
.ws4c{word-spacing:1.020000px;}
.ws97{word-spacing:1.104000px;}
.ws17{word-spacing:1.200000px;}
.ws8e{word-spacing:1.296000px;}
.ws10{word-spacing:1.320000px;}
.ws6c{word-spacing:1.380000px;}
.wsb3{word-spacing:1.440000px;}
.ws93{word-spacing:1.488000px;}
.ws80{word-spacing:1.500000px;}
.ws1d{word-spacing:1.560000px;}
.ws48{word-spacing:1.620000px;}
.ws4e{word-spacing:1.680000px;}
.wsd{word-spacing:1.740000px;}
.ws56{word-spacing:1.776000px;}
.wsa{word-spacing:1.800000px;}
.ws78{word-spacing:1.980000px;}
.ws60{word-spacing:2.040000px;}
.ws63{word-spacing:2.100000px;}
.wsac{word-spacing:2.160000px;}
.ws94{word-spacing:2.208000px;}
.ws7e{word-spacing:2.220000px;}
.ws29{word-spacing:2.280000px;}
.wsb4{word-spacing:2.304000px;}
.ws18{word-spacing:2.340000px;}
.ws7c{word-spacing:2.400000px;}
.wsb0{word-spacing:2.448000px;}
.ws90{word-spacing:2.496000px;}
.ws6a{word-spacing:2.520000px;}
.ws16{word-spacing:2.580000px;}
.ws98{word-spacing:2.592000px;}
.ws6b{word-spacing:2.640000px;}
.wsa7{word-spacing:2.688000px;}
.ws11{word-spacing:2.700000px;}
.ws3f{word-spacing:2.760000px;}
.wsb1{word-spacing:2.784000px;}
.ws27{word-spacing:2.820000px;}
.ws4d{word-spacing:2.868360px;}
.ws7a{word-spacing:2.880000px;}
.wsf{word-spacing:3.000000px;}
.ws51{word-spacing:3.016440px;}
.ws28{word-spacing:3.060000px;}
.ws38{word-spacing:3.120000px;}
.ws8c{word-spacing:3.168000px;}
.ws71{word-spacing:3.180000px;}
.wse{word-spacing:3.240000px;}
.ws8d{word-spacing:3.312000px;}
.ws69{word-spacing:3.360000px;}
.ws8b{word-spacing:3.408000px;}
.ws1a{word-spacing:3.420000px;}
.ws39{word-spacing:3.480000px;}
.wsaa{word-spacing:3.600000px;}
.ws6f{word-spacing:3.660000px;}
.ws3b{word-spacing:3.780000px;}
.wsb2{word-spacing:3.792000px;}
.ws88{word-spacing:3.840000px;}
.ws1f{word-spacing:3.900000px;}
.ws64{word-spacing:3.936000px;}
.wsb{word-spacing:3.960000px;}
.ws55{word-spacing:3.984000px;}
.ws12{word-spacing:4.020000px;}
.ws40{word-spacing:4.080000px;}
.ws4a{word-spacing:4.140000px;}
.ws72{word-spacing:4.200000px;}
.ws6e{word-spacing:4.260000px;}
.ws77{word-spacing:4.320000px;}
.ws19{word-spacing:4.380000px;}
.ws76{word-spacing:4.440000px;}
.ws68{word-spacing:4.560000px;}
.ws74{word-spacing:4.740000px;}
.ws7d{word-spacing:4.800000px;}
.ws1b{word-spacing:4.860000px;}
.ws9{word-spacing:4.920000px;}
.ws8{word-spacing:4.980000px;}
.ws3d{word-spacing:5.040000px;}
.ws8a{word-spacing:5.460000px;}
.ws89{word-spacing:5.520000px;}
.ws24{word-spacing:10.659390px;}
.ws4f{word-spacing:72.914400px;}
.ws45{word-spacing:114.768000px;}
.ws53{word-spacing:127.376400px;}
.ws54{word-spacing:134.064000px;}
.ws46{word-spacing:144.096000px;}
.ws35{word-spacing:250.176000px;}
.ws65{word-spacing:251.952000px;}
.ws58{word-spacing:254.112000px;}
.ws66{word-spacing:254.640000px;}
.ws5c{word-spacing:255.936000px;}
.ws5d{word-spacing:256.176000px;}
.ws67{word-spacing:260.016000px;}
.ws32{word-spacing:262.176000px;}
.ws5f{word-spacing:268.176000px;}
.ws59{word-spacing:272.592000px;}
.ws33{word-spacing:274.176000px;}
.ws57{word-spacing:280.176000px;}
.ws34{word-spacing:286.176000px;}
.ws5a{word-spacing:292.176000px;}
.ws5b{word-spacing:304.176000px;}
.ws31{word-spacing:308.160000px;}
.ws52{word-spacing:394.850400px;}
.ws47{word-spacing:424.800000px;}
.ws2f{word-spacing:605.952000px;}
.ws30{word-spacing:785.616000px;}
._a{margin-left:-2898.096000px;}
._d{margin-left:-2874.288000px;}
._2{margin-left:-9.368400px;}
._21{margin-left:-8.280000px;}
._3{margin-left:-6.963000px;}
._1{margin-left:-5.376000px;}
._53{margin-left:-4.353000px;}
._6{margin-left:-3.330000px;}
._0{margin-left:-2.310000px;}
._5{margin-left:-1.197000px;}
._7{width:1.380000px;}
._9{width:3.240000px;}
._8{width:5.220000px;}
._e{width:7.080000px;}
._f{width:8.160000px;}
._c{width:42.272790px;}
._b{width:53.702250px;}
._39{width:55.662000px;}
._4{width:59.559414px;}
._38{width:105.278586px;}
._2a{width:116.496000px;}
._25{width:122.784000px;}
._29{width:124.128000px;}
._24{width:128.112000px;}
._36{width:132.240000px;}
._28{width:133.440000px;}
._27{width:134.736000px;}
._23{width:136.080000px;}
._26{width:142.752000px;}
._2c{width:144.096000px;}
._49{width:154.224000px;}
._3c{width:155.568000px;}
._37{width:156.816000px;}
._22{width:173.328000px;}
._34{width:189.548400px;}
._2e{width:192.642000px;}
._2d{width:195.330000px;}
._2b{width:207.984000px;}
._48{width:217.536000px;}
._3b{width:236.208000px;}
._44{width:242.640000px;}
._40{width:247.968000px;}
._1a{width:262.176000px;}
._16{width:274.176000px;}
._45{width:280.416000px;}
._14{width:286.176000px;}
._3d{width:291.888000px;}
._19{width:296.160000px;}
._12{width:298.176000px;}
._3e{width:304.176000px;}
._18{width:308.160000px;}
._4c{width:311.904000px;}
._47{width:313.248000px;}
._52{width:314.640000px;}
._42{width:316.176000px;}
._13{width:320.160000px;}
._3a{width:322.608000px;}
._51{width:330.576000px;}
._1e{width:332.160000px;}
._4d{width:343.968000px;}
._46{width:359.250000px;}
._41{width:361.248000px;}
._4e{width:367.920000px;}
._4a{width:374.592000px;}
._4f{width:381.264000px;}
._4b{width:385.938000px;}
._50{width:389.232000px;}
._43{width:411.936000px;}
._3f{width:415.872000px;}
._10{width:625.584000px;}
._2f{width:635.013000px;}
._1b{width:669.648000px;}
._1f{width:676.320000px;}
._11{width:681.600000px;}
._30{width:684.127800px;}
._20{width:701.616000px;}
._17{width:710.928000px;}
._32{width:713.869800px;}
._33{width:719.601000px;}
._31{width:765.486600px;}
._1c{width:806.928000px;}
._1d{width:845.616000px;}
._15{width:849.552000px;}
._35{width:1346.194080px;}
.fc3{color:rgb(57,53,53);}
.fc2{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fsc{font-size:40.530000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fsf{font-size:45.600000px;}
.fsb{font-size:46.320000px;}
.fs9{font-size:48.000000px;}
.fse{font-size:53.499600px;}
.fs10{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs11{font-size:71.820000px;}
.fsd{font-size:73.561800px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y6e{bottom:3.483000px;}
.y72{bottom:3.483600px;}
.y74{bottom:3.484350px;}
.y70{bottom:3.484800px;}
.y1{bottom:46.264950px;}
.y2f{bottom:47.777250px;}
.y196{bottom:80.263500px;}
.y155{bottom:83.121900px;}
.ybb{bottom:83.460300px;}
.y13d{bottom:83.635350px;}
.y65{bottom:83.770350px;}
.y7a{bottom:84.417000px;}
.y2c{bottom:88.026750px;}
.y9e{bottom:89.174700px;}
.y128{bottom:92.123550px;}
.y114{bottom:92.666700px;}
.yab{bottom:92.725500px;}
.y195{bottom:95.263500px;}
.y154{bottom:98.121900px;}
.yba{bottom:99.204300px;}
.y79{bottom:100.161000px;}
.y13c{bottom:101.635350px;}
.y64{bottom:101.770350px;}
.y2b{bottom:103.023000px;}
.y9d{bottom:105.422700px;}
.y127{bottom:108.371550px;}
.y113{bottom:108.914700px;}
.yaa{bottom:108.973500px;}
.y194{bottom:110.263500px;}
.y153{bottom:113.121900px;}
.y13b{bottom:119.635350px;}
.y63{bottom:119.770350px;}
.ye0{bottom:120.686250px;}
.y9c{bottom:121.670700px;}
.ydf{bottom:123.307500px;}
.y6d{bottom:123.823500px;}
.y126{bottom:124.619550px;}
.y112{bottom:125.162700px;}
.ya9{bottom:125.221500px;}
.y193{bottom:125.263500px;}
.yde{bottom:127.593300px;}
.y152{bottom:128.121900px;}
.y13a{bottom:137.635350px;}
.y62{bottom:137.770350px;}
.y9b{bottom:137.918700px;}
.y192{bottom:140.263500px;}
.y125{bottom:140.867550px;}
.y111{bottom:141.410700px;}
.y151{bottom:143.121900px;}
.ydd{bottom:143.777550px;}
.y9a{bottom:154.166700px;}
.y191{bottom:155.263500px;}
.y139{bottom:155.635350px;}
.y61{bottom:155.770350px;}
.ya8{bottom:156.733500px;}
.y124{bottom:157.115550px;}
.y110{bottom:157.658700px;}
.y150{bottom:158.121900px;}
.y6f{bottom:163.978500px;}
.y75{bottom:164.237700px;}
.y119{bottom:166.162650px;}
.yd8{bottom:168.851550px;}
.yd7{bottom:169.466550px;}
.y28{bottom:169.908300px;}
.y190{bottom:170.263500px;}
.y99{bottom:170.414700px;}
.y14f{bottom:173.121900px;}
.y138{bottom:173.230350px;}
.y123{bottom:173.363550px;}
.y60{bottom:173.770350px;}
.y10f{bottom:173.906700px;}
.y118{bottom:182.410650px;}
.y18f{bottom:185.263500px;}
.y98{bottom:186.662700px;}
.y27{bottom:187.908300px;}
.y14e{bottom:188.121900px;}
.y122{bottom:189.611550px;}
.y10e{bottom:190.154700px;}
.ya7{bottom:191.635350px;}
.y5f{bottom:191.770350px;}
.y117{bottom:198.658650px;}
.y18e{bottom:200.263500px;}
.y97{bottom:202.910700px;}
.y14d{bottom:203.121900px;}
.y121{bottom:205.859550px;}
.y26{bottom:205.908300px;}
.y10d{bottom:206.402700px;}
.y137{bottom:209.635350px;}
.y5e{bottom:209.770350px;}
.y18d{bottom:215.263500px;}
.y14c{bottom:218.121900px;}
.y120{bottom:222.107550px;}
.y10c{bottom:222.650700px;}
.y2a{bottom:223.908300px;}
.y136{bottom:227.635350px;}
.y116{bottom:227.662650px;}
.y5d{bottom:227.770350px;}
.y18c{bottom:230.263500px;}
.y96{bottom:231.914700px;}
.y14b{bottom:233.121900px;}
.yad{bottom:237.073500px;}
.y11f{bottom:238.355550px;}
.y25{bottom:241.505400px;}
.yd9{bottom:241.902750px;}
.y29{bottom:241.908300px;}
.y18b{bottom:245.263500px;}
.y135{bottom:245.635350px;}
.y5c{bottom:245.770350px;}
.y14a{bottom:248.121900px;}
.yac{bottom:252.817500px;}
.y10b{bottom:254.162700px;}
.y11e{bottom:254.603550px;}
.y115{bottom:256.666650px;}
.y18a{bottom:260.263500px;}
.y95{bottom:260.918700px;}
.y149{bottom:263.121900px;}
.y134{bottom:263.635350px;}
.y5b{bottom:263.770350px;}
.y11d{bottom:270.851550px;}
.y189{bottom:275.263500px;}
.y148{bottom:278.121900px;}
.yb5{bottom:280.542900px;}
.y67{bottom:281.365350px;}
.y133{bottom:281.635350px;}
.y5a{bottom:281.770350px;}
.y71{bottom:285.442500px;}
.y10a{bottom:289.057800px;}
.y188{bottom:290.263500px;}
.y147{bottom:293.121900px;}
.y94{bottom:293.320350px;}
.yb4{bottom:297.579000px;}
.y132{bottom:299.635350px;}
.y59{bottom:299.770350px;}
.y11c{bottom:302.363550px;}
.y187{bottom:305.263500px;}
.y146{bottom:308.121900px;}
.y109{bottom:308.557800px;}
.y93{bottom:312.820350px;}
.yda{bottom:314.942550px;}
.y24{bottom:315.504900px;}
.y66{bottom:317.230350px;}
.y131{bottom:317.635350px;}
.y58{bottom:317.770350px;}
.yae{bottom:319.557450px;}
.y186{bottom:320.263500px;}
.y145{bottom:323.121900px;}
.y23{bottom:333.514200px;}
.y185{bottom:335.263500px;}
.y130{bottom:335.635350px;}
.y57{bottom:335.770350px;}
.y11b{bottom:337.255350px;}
.y144{bottom:338.121900px;}
.y184{bottom:350.263500px;}
.y100{bottom:353.460300px;}
.y7e{bottom:353.635350px;}
.y56{bottom:353.770350px;}
.y92{bottom:353.920350px;}
.y22{bottom:360.859200px;}
.yb6{bottom:362.622450px;}
.yaf{bottom:363.393450px;}
.y183{bottom:365.263500px;}
.yff{bottom:369.204300px;}
.y143{bottom:371.230350px;}
.y7d{bottom:371.635350px;}
.y55{bottom:371.770350px;}
.y91{bottom:371.920350px;}
.y21{bottom:378.859200px;}
.y182{bottom:380.263500px;}
.ydb{bottom:387.993750px;}
.y12f{bottom:389.635350px;}
.y54{bottom:389.770350px;}
.y90{bottom:389.920350px;}
.y181{bottom:395.263500px;}
.y20{bottom:396.859200px;}
.y107{bottom:396.940500px;}
.y73{bottom:406.885500px;}
.y7c{bottom:407.230350px;}
.yb0{bottom:407.241450px;}
.y12e{bottom:407.635350px;}
.y53{bottom:407.770350px;}
.y8f{bottom:407.920350px;}
.y78{bottom:409.884296px;}
.y180{bottom:410.263500px;}
.y106{bottom:413.976600px;}
.y1f{bottom:414.859200px;}
.y1c1{bottom:425.263500px;}
.y17f{bottom:425.265900px;}
.y12d{bottom:425.635350px;}
.y52{bottom:425.770350px;}
.y8e{bottom:425.920350px;}
.y77{bottom:426.001050px;}
.y1e{bottom:432.859200px;}
.y101{bottom:436.508850px;}
.ye2{bottom:438.156600px;}
.y1c0{bottom:440.263500px;}
.y17e{bottom:440.265900px;}
.ye1{bottom:443.332350px;}
.y12c{bottom:443.635350px;}
.y51{bottom:443.770350px;}
.y8d{bottom:443.920350px;}
.y76{bottom:449.258550px;}
.y1d{bottom:450.859200px;}
.yb1{bottom:451.077450px;}
.y1bf{bottom:455.263500px;}
.y17d{bottom:455.265900px;}
.ydc{bottom:461.044950px;}
.y142{bottom:461.365350px;}
.y12b{bottom:461.635350px;}
.y50{bottom:461.770350px;}
.y8c{bottom:461.920350px;}
.y1c{bottom:468.859200px;}
.y1be{bottom:470.263500px;}
.y17c{bottom:470.265900px;}
.yb9{bottom:476.359800px;}
.y108{bottom:476.537100px;}
.y4f{bottom:479.770350px;}
.y8b{bottom:479.920350px;}
.y1bd{bottom:485.263500px;}
.y17b{bottom:485.265900px;}
.y1b{bottom:486.859200px;}
.y102{bottom:491.864850px;}
.yb2{bottom:494.925450px;}
.y12a{bottom:497.230350px;}
.y4e{bottom:497.770350px;}
.y8a{bottom:497.920350px;}
.yb8{bottom:499.687800px;}
.y1bc{bottom:500.263500px;}
.y17a{bottom:500.265900px;}
.y1a{bottom:504.859200px;}
.ybd{bottom:512.496300px;}
.y1bb{bottom:515.263500px;}
.y179{bottom:515.265900px;}
.y141{bottom:515.365350px;}
.y4d{bottom:515.770350px;}
.y6c{bottom:515.920350px;}
.y19{bottom:522.859200px;}
.yb7{bottom:524.743950px;}
.ybc{bottom:528.240300px;}
.y1ba{bottom:530.263500px;}
.y178{bottom:530.265900px;}
.y4c{bottom:533.770350px;}
.y6b{bottom:533.920350px;}
.yb3{bottom:538.761450px;}
.y18{bottom:540.859200px;}
.y1b9{bottom:545.263500px;}
.y177{bottom:545.265900px;}
.y103{bottom:547.208850px;}
.y4b{bottom:551.770350px;}
.y6a{bottom:551.920350px;}
.yd2{bottom:555.541050px;}
.y17{bottom:558.859200px;}
.y1b8{bottom:560.263500px;}
.y176{bottom:560.265900px;}
.y4a{bottom:569.770350px;}
.y89{bottom:569.920350px;}
.yc1{bottom:573.523200px;}
.y1b7{bottom:575.263500px;}
.y175{bottom:575.265900px;}
.y16{bottom:576.859200px;}
.y140{bottom:587.365350px;}
.y69{bottom:587.515350px;}
.y49{bottom:587.770350px;}
.y88{bottom:587.920350px;}
.y1b6{bottom:590.263500px;}
.y174{bottom:590.265900px;}
.ycd{bottom:590.766600px;}
.y15{bottom:594.859200px;}
.y104{bottom:602.576850px;}
.y1b5{bottom:605.263500px;}
.y173{bottom:605.265900px;}
.y48{bottom:605.770350px;}
.y87{bottom:605.920350px;}
.y14{bottom:612.859200px;}
.yce{bottom:615.174000px;}
.y1b4{bottom:620.263500px;}
.y172{bottom:620.265900px;}
.y47{bottom:623.770350px;}
.y86{bottom:623.920350px;}
.y13{bottom:630.859200px;}
.yd6{bottom:634.115400px;}
.y1b3{bottom:635.263500px;}
.y171{bottom:635.265900px;}
.ycf{bottom:639.581400px;}
.ya0{bottom:641.515350px;}
.y46{bottom:641.770350px;}
.y85{bottom:641.920350px;}
.y12{bottom:648.859200px;}
.y1b2{bottom:650.263500px;}
.y170{bottom:650.265900px;}
.y105{bottom:657.932850px;}
.yd5{bottom:658.739400px;}
.y45{bottom:659.770350px;}
.y84{bottom:659.920350px;}
.yd0{bottom:663.988800px;}
.y1b1{bottom:665.263500px;}
.y16f{bottom:665.265900px;}
.y13f{bottom:677.365350px;}
.y44{bottom:677.770350px;}
.y83{bottom:677.920350px;}
.y1b0{bottom:680.263500px;}
.y16e{bottom:680.265900px;}
.yd4{bottom:685.186800px;}
.yd1{bottom:688.396200px;}
.y11{bottom:694.017300px;}
.y1af{bottom:695.263500px;}
.y16d{bottom:695.265900px;}
.y43{bottom:695.770350px;}
.y82{bottom:695.920350px;}
.y10{bottom:706.468050px;}
.y1ae{bottom:710.263500px;}
.y16c{bottom:710.265900px;}
.yfe{bottom:713.635350px;}
.y42{bottom:713.770350px;}
.yf1{bottom:713.912100px;}
.y81{bottom:713.920350px;}
.ybe{bottom:720.925950px;}
.y1ad{bottom:725.263500px;}
.y16b{bottom:725.265900px;}
.yc2{bottom:729.361800px;}
.yfd{bottom:731.635350px;}
.y41{bottom:731.770350px;}
.yf0{bottom:731.912100px;}
.y80{bottom:731.920350px;}
.yd3{bottom:732.510900px;}
.y1ac{bottom:740.263500px;}
.y16a{bottom:740.265900px;}
.yf{bottom:743.608950px;}
.yc8{bottom:746.605200px;}
.ya6{bottom:749.515350px;}
.yfc{bottom:749.635350px;}
.y40{bottom:749.770350px;}
.yef{bottom:749.912100px;}
.y1ab{bottom:755.263500px;}
.y169{bottom:755.265900px;}
.ye{bottom:757.108950px;}
.y7f{bottom:767.515350px;}
.yfb{bottom:767.635350px;}
.y3f{bottom:767.770350px;}
.yee{bottom:767.912100px;}
.y1aa{bottom:770.263500px;}
.y168{bottom:770.265900px;}
.yd{bottom:770.608950px;}
.yc9{bottom:771.012600px;}
.yc{bottom:784.108950px;}
.y1a9{bottom:785.263500px;}
.y167{bottom:785.265900px;}
.yfa{bottom:785.635350px;}
.y3e{bottom:785.770350px;}
.yed{bottom:785.912100px;}
.yb{bottom:792.183600px;}
.yca{bottom:795.420000px;}
.y1a8{bottom:800.263500px;}
.y166{bottom:800.265900px;}
.yf9{bottom:803.635350px;}
.y3d{bottom:803.770350px;}
.yec{bottom:803.912100px;}
.ya{bottom:811.108950px;}
.y1a7{bottom:815.263500px;}
.y165{bottom:815.265900px;}
.y9{bottom:819.183600px;}
.ycb{bottom:819.827400px;}
.yf8{bottom:821.635350px;}
.y3c{bottom:821.770350px;}
.yeb{bottom:821.912100px;}
.y1a6{bottom:830.263500px;}
.y164{bottom:830.265900px;}
.y8{bottom:838.108950px;}
.yf7{bottom:839.635350px;}
.y3b{bottom:839.770350px;}
.yea{bottom:839.912100px;}
.ycc{bottom:844.234800px;}
.y1a5{bottom:845.263500px;}
.y163{bottom:845.265900px;}
.y13e{bottom:857.365350px;}
.yf6{bottom:857.635350px;}
.y3a{bottom:857.770350px;}
.ye9{bottom:857.912100px;}
.y1a4{bottom:860.263500px;}
.y162{bottom:860.265900px;}
.y7{bottom:866.836200px;}
.y1a3{bottom:875.263500px;}
.y161{bottom:875.265900px;}
.yf5{bottom:875.635350px;}
.y39{bottom:875.770350px;}
.ye8{bottom:875.912100px;}
.ybf{bottom:876.763650px;}
.y6{bottom:887.830950px;}
.y1a2{bottom:890.263500px;}
.y160{bottom:890.265900px;}
.yf4{bottom:893.635350px;}
.y38{bottom:893.770350px;}
.ye7{bottom:893.920350px;}
.yc3{bottom:902.459400px;}
.y1a1{bottom:905.263500px;}
.y15f{bottom:905.265900px;}
.y37{bottom:911.770350px;}
.ye6{bottom:911.920350px;}
.y1a0{bottom:920.263500px;}
.y15e{bottom:920.265900px;}
.yc4{bottom:926.866800px;}
.yf3{bottom:929.230350px;}
.y36{bottom:929.770350px;}
.ye5{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y19f{bottom:935.263500px;}
.y15d{bottom:935.265900px;}
.y35{bottom:947.770350px;}
.ye4{bottom:947.920350px;}
.y19e{bottom:950.263500px;}
.y15c{bottom:950.265900px;}
.yc5{bottom:951.262800px;}
.y19d{bottom:965.263500px;}
.y15b{bottom:965.265900px;}
.y34{bottom:965.770350px;}
.y1c5{bottom:965.772600px;}
.ya5{bottom:965.785350px;}
.y4{bottom:970.465200px;}
.yc6{bottom:975.670200px;}
.y19c{bottom:980.263500px;}
.y15a{bottom:980.265900px;}
.ye3{bottom:983.515350px;}
.y33{bottom:983.770350px;}
.y1c4{bottom:983.772600px;}
.ya4{bottom:983.785350px;}
.y19b{bottom:995.263500px;}
.y159{bottom:995.265900px;}
.yc7{bottom:1000.077600px;}
.y32{bottom:1001.770350px;}
.y1c3{bottom:1001.772600px;}
.ya3{bottom:1001.785350px;}
.y3{bottom:1006.926000px;}
.y19a{bottom:1010.263500px;}
.y158{bottom:1010.265900px;}
.y31{bottom:1019.770350px;}
.ya2{bottom:1019.785350px;}
.y199{bottom:1025.263500px;}
.y157{bottom:1025.265900px;}
.yc0{bottom:1032.602250px;}
.y1c2{bottom:1037.367600px;}
.y30{bottom:1037.770350px;}
.yf2{bottom:1037.777100px;}
.ya1{bottom:1037.785350px;}
.y198{bottom:1040.263500px;}
.y156{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y68{bottom:1132.418700px;}
.y197{bottom:1132.423500px;}
.y7b{bottom:1132.425000px;}
.y11a{bottom:1132.438650px;}
.y9f{bottom:1132.454700px;}
.y129{bottom:1132.463550px;}
.y2e{bottom:1136.092500px;}
.y2d{bottom:1150.492500px;}
.h13{height:13.428000px;}
.h15{height:13.431000px;}
.h7{height:19.125417px;}
.h9{height:28.393066px;}
.h16{height:29.882959px;}
.h2{height:30.577148px;}
.he{height:32.761230px;}
.h8{height:32.805176px;}
.h21{height:33.328125px;}
.h19{height:33.351562px;}
.h1c{height:33.621094px;}
.h14{height:34.151953px;}
.h10{height:34.945312px;}
.hf{height:34.992188px;}
.h1a{height:35.390625px;}
.h18{height:39.445506px;}
.h11{height:41.660156px;}
.hd{height:41.689453px;}
.h1d{height:42.026367px;}
.hb{height:43.681641px;}
.hc{height:43.710938px;}
.ha{height:43.740234px;}
.h1b{height:44.238281px;}
.h12{height:52.567951px;}
.h1e{height:52.953223px;}
.h17{height:54.237460px;}
.h3{height:56.786133px;}
.h6{height:57.100316px;}
.h5{height:57.121316px;}
.h20{height:61.664494px;}
.h4{height:92.168262px;}
.h1f{height:357.247500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w4{width:35.532000px;}
.w2{width:44.538000px;}
.w3{width:44.539500px;}
.w5{width:606.838500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x31{left:12.240150px;}
.xb{left:76.535400px;}
.x1d{left:78.655350px;}
.x9{left:96.094500px;}
.x1{left:97.795200px;}
.x1e{left:99.921300px;}
.x3a{left:102.047400px;}
.x4{left:106.299150px;}
.xc{left:110.555400px;}
.x2a{left:113.829000px;}
.x29{left:120.954000px;}
.x3c{left:123.307350px;}
.x3{left:125.427900px;}
.x7{left:131.811000px;}
.x23{left:150.582750px;}
.x20{left:157.554750px;}
.x1f{left:164.298750px;}
.x5{left:191.338650px;}
.x39{left:194.285400px;}
.x35{left:195.645900px;}
.x26{left:201.970500px;}
.x27{left:203.266950px;}
.x2e{left:207.670200px;}
.x1b{left:211.093200px;}
.x6{left:212.876400px;}
.x24{left:215.005050px;}
.x25{left:245.730900px;}
.x17{left:270.825000px;}
.x2f{left:287.391000px;}
.x21{left:292.886400px;}
.x32{left:294.187500px;}
.x14{left:332.215500px;}
.x1c{left:342.583350px;}
.x2b{left:435.256650px;}
.x30{left:445.355100px;}
.x15{left:446.637000px;}
.xa{left:455.041500px;}
.xd{left:457.085400px;}
.x36{left:458.613300px;}
.x22{left:462.053850px;}
.x12{left:478.345350px;}
.x8{left:480.486000px;}
.x3b{left:482.603400px;}
.xe{left:491.105400px;}
.x3d{left:503.875350px;}
.x18{left:509.598900px;}
.x13{left:512.365350px;}
.xf{left:525.275400px;}
.x33{left:528.746400px;}
.x16{left:561.060000px;}
.x19{left:577.375500px;}
.x28{left:591.010200px;}
.x34{left:600.681150px;}
.x2c{left:609.677100px;}
.x2d{left:642.109950px;}
.x11{left:663.492300px;}
.x2{left:693.365400px;}
.x37{left:721.717650px;}
.x10{left:728.391600px;}
.x38{left:743.868150px;}
.x1a{left:749.647350px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-10.397333pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:1.440000pt;}
.v5{vertical-align:3.282667pt;}
.v6{vertical-align:21.644800pt;}
.v3{vertical-align:25.122667pt;}
.v1{vertical-align:27.005867pt;}
.ls8f{letter-spacing:-1.962667pt;}
.ls55{letter-spacing:-1.578667pt;}
.lsa{letter-spacing:-0.693333pt;}
.ls8a{letter-spacing:-0.640000pt;}
.ls82{letter-spacing:-0.512000pt;}
.ls81{letter-spacing:-0.426667pt;}
.ls34{letter-spacing:-0.373333pt;}
.ls8d{letter-spacing:-0.298667pt;}
.ls5c{letter-spacing:-0.266667pt;}
.lsd{letter-spacing:-0.213333pt;}
.ls5d{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.120000pt;}
.lsc{letter-spacing:-0.106667pt;}
.ls8c{letter-spacing:-0.085333pt;}
.ls35{letter-spacing:-0.053333pt;}
.ls8b{letter-spacing:-0.042667pt;}
.ls9{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.003680pt;}
.ls0{letter-spacing:0.004512pt;}
.ls2{letter-spacing:0.005045pt;}
.ls43{letter-spacing:0.031093pt;}
.ls42{letter-spacing:0.031467pt;}
.ls7b{letter-spacing:0.042667pt;}
.ls21{letter-spacing:0.053333pt;}
.ls6c{letter-spacing:0.085333pt;}
.ls29{letter-spacing:0.106667pt;}
.ls6d{letter-spacing:0.128000pt;}
.ls41{letter-spacing:0.129067pt;}
.ls8{letter-spacing:0.160000pt;}
.ls85{letter-spacing:0.170667pt;}
.ls3b{letter-spacing:0.213333pt;}
.ls65{letter-spacing:0.256000pt;}
.ls36{letter-spacing:0.266667pt;}
.ls7f{letter-spacing:0.298667pt;}
.ls22{letter-spacing:0.320000pt;}
.ls76{letter-spacing:0.341333pt;}
.ls11{letter-spacing:0.373333pt;}
.ls77{letter-spacing:0.384000pt;}
.lse{letter-spacing:0.426667pt;}
.ls86{letter-spacing:0.469333pt;}
.ls1a{letter-spacing:0.480000pt;}
.ls84{letter-spacing:0.512000pt;}
.ls7{letter-spacing:0.533333pt;}
.ls67{letter-spacing:0.554667pt;}
.ls13{letter-spacing:0.586667pt;}
.ls75{letter-spacing:0.597333pt;}
.ls10{letter-spacing:0.640000pt;}
.ls6e{letter-spacing:0.682667pt;}
.ls33{letter-spacing:0.687467pt;}
.ls45{letter-spacing:0.693333pt;}
.ls7c{letter-spacing:0.725333pt;}
.ls1c{letter-spacing:0.746667pt;}
.ls78{letter-spacing:0.768000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls74{letter-spacing:0.810667pt;}
.ls18{letter-spacing:0.853333pt;}
.ls7e{letter-spacing:0.896000pt;}
.ls4b{letter-spacing:0.901707pt;}
.ls25{letter-spacing:0.906667pt;}
.ls6f{letter-spacing:0.938667pt;}
.ls3a{letter-spacing:0.960000pt;}
.ls80{letter-spacing:0.981333pt;}
.ls31{letter-spacing:1.013333pt;}
.ls6b{letter-spacing:1.024000pt;}
.ls4c{letter-spacing:1.057173pt;}
.ls2d{letter-spacing:1.066667pt;}
.ls7d{letter-spacing:1.109333pt;}
.ls38{letter-spacing:1.120000pt;}
.ls12{letter-spacing:1.173333pt;}
.ls87{letter-spacing:1.194667pt;}
.ls20{letter-spacing:1.226667pt;}
.ls69{letter-spacing:1.237333pt;}
.ls4e{letter-spacing:1.274827pt;}
.ls1d{letter-spacing:1.280000pt;}
.ls17{letter-spacing:1.333333pt;}
.ls70{letter-spacing:1.365333pt;}
.ls3c{letter-spacing:1.386667pt;}
.ls66{letter-spacing:1.408000pt;}
.ls2b{letter-spacing:1.440000pt;}
.ls6a{letter-spacing:1.450667pt;}
.ls30{letter-spacing:1.493333pt;}
.ls4a{letter-spacing:1.538133pt;}
.ls26{letter-spacing:1.546667pt;}
.ls83{letter-spacing:1.578667pt;}
.ls32{letter-spacing:1.600000pt;}
.ls88{letter-spacing:1.621333pt;}
.ls2f{letter-spacing:1.653333pt;}
.ls79{letter-spacing:1.664000pt;}
.ls27{letter-spacing:1.706667pt;}
.ls1b{letter-spacing:1.760000pt;}
.ls5{letter-spacing:1.813333pt;}
.ls73{letter-spacing:1.834667pt;}
.ls28{letter-spacing:1.866667pt;}
.lsf{letter-spacing:1.920000pt;}
.ls15{letter-spacing:1.973333pt;}
.ls7a{letter-spacing:2.005333pt;}
.ls53{letter-spacing:2.018667pt;}
.ls2c{letter-spacing:2.026667pt;}
.ls72{letter-spacing:2.048000pt;}
.ls59{letter-spacing:2.080000pt;}
.ls23{letter-spacing:2.133333pt;}
.ls4d{letter-spacing:2.165333pt;}
.ls71{letter-spacing:2.176000pt;}
.ls1e{letter-spacing:2.186667pt;}
.ls14{letter-spacing:2.240000pt;}
.ls39{letter-spacing:2.293333pt;}
.ls16{letter-spacing:2.346667pt;}
.ls5f{letter-spacing:2.400000pt;}
.ls1f{letter-spacing:2.453333pt;}
.ls24{letter-spacing:2.506667pt;}
.ls2a{letter-spacing:2.560000pt;}
.ls8e{letter-spacing:2.602667pt;}
.ls56{letter-spacing:2.613333pt;}
.ls19{letter-spacing:2.720000pt;}
.ls4{letter-spacing:2.773333pt;}
.ls48{letter-spacing:2.826667pt;}
.ls89{letter-spacing:2.858667pt;}
.ls3e{letter-spacing:2.880000pt;}
.ls91{letter-spacing:2.901333pt;}
.ls5e{letter-spacing:2.933333pt;}
.ls57{letter-spacing:2.986667pt;}
.ls40{letter-spacing:3.040000pt;}
.ls50{letter-spacing:3.093333pt;}
.ls5a{letter-spacing:3.146667pt;}
.ls54{letter-spacing:3.200000pt;}
.ls49{letter-spacing:3.306667pt;}
.ls62{letter-spacing:3.360000pt;}
.ls4f{letter-spacing:3.413333pt;}
.ls52{letter-spacing:3.434133pt;}
.ls51{letter-spacing:3.466667pt;}
.ls3d{letter-spacing:3.520000pt;}
.ls68{letter-spacing:3.626667pt;}
.ls2e{letter-spacing:3.680000pt;}
.ls58{letter-spacing:3.893333pt;}
.ls44{letter-spacing:4.106667pt;}
.ls90{letter-spacing:4.352000pt;}
.ls3f{letter-spacing:4.480000pt;}
.ls37{letter-spacing:4.586667pt;}
.ls5b{letter-spacing:4.906667pt;}
.ls64{letter-spacing:5.120000pt;}
.ls60{letter-spacing:6.720000pt;}
.ls61{letter-spacing:7.146667pt;}
.ls63{letter-spacing:7.733333pt;}
.ls1{letter-spacing:52.918645pt;}
.ls46{letter-spacing:273.920000pt;}
.ls47{letter-spacing:304.170667pt;}
.ws7b{word-spacing:-17.173333pt;}
.ws1{word-spacing:-15.568000pt;}
.ws42{word-spacing:-15.146667pt;}
.ws2d{word-spacing:-14.826667pt;}
.wsb6{word-spacing:-14.133333pt;}
.ws50{word-spacing:-14.085333pt;}
.wsc{word-spacing:-13.920000pt;}
.ws44{word-spacing:-13.333333pt;}
.ws87{word-spacing:-12.373333pt;}
.wsb5{word-spacing:-12.288000pt;}
.ws82{word-spacing:-12.117333pt;}
.ws4{word-spacing:-11.861333pt;}
.ws9d{word-spacing:-11.605333pt;}
.ws9f{word-spacing:-11.434667pt;}
.wsa2{word-spacing:-11.392000pt;}
.wsa3{word-spacing:-11.306667pt;}
.wsa1{word-spacing:-11.221333pt;}
.ws3{word-spacing:-11.120000pt;}
.ws84{word-spacing:-11.093333pt;}
.wsa4{word-spacing:-11.050667pt;}
.ws85{word-spacing:-11.008000pt;}
.wsa0{word-spacing:-10.880000pt;}
.ws83{word-spacing:-10.794667pt;}
.ws86{word-spacing:-10.709333pt;}
.ws5e{word-spacing:-10.666667pt;}
.ws81{word-spacing:-10.154667pt;}
.ws9e{word-spacing:-10.026667pt;}
.ws0{word-spacing:-9.076144pt;}
.ws43{word-spacing:-8.830507pt;}
.wsa5{word-spacing:-8.704000pt;}
.ws41{word-spacing:-8.675040pt;}
.ws2e{word-spacing:-7.804427pt;}
.ws2c{word-spacing:-7.773333pt;}
.ws2{word-spacing:-6.482960pt;}
.ws8f{word-spacing:-3.626667pt;}
.ws6{word-spacing:-2.565333pt;}
.ws9b{word-spacing:-2.346667pt;}
.ws3a{word-spacing:-2.186667pt;}
.ws95{word-spacing:-2.176000pt;}
.ws23{word-spacing:-1.973333pt;}
.ws36{word-spacing:-1.813333pt;}
.ws9c{word-spacing:-1.706667pt;}
.wsb8{word-spacing:-1.621333pt;}
.ws4b{word-spacing:-1.546667pt;}
.ws91{word-spacing:-1.450667pt;}
.ws2a{word-spacing:-1.386667pt;}
.ws21{word-spacing:-0.960000pt;}
.wsa6{word-spacing:-0.853333pt;}
.wsab{word-spacing:-0.725333pt;}
.wsa8{word-spacing:-0.640000pt;}
.ws70{word-spacing:-0.426667pt;}
.wsb7{word-spacing:-0.384000pt;}
.ws1e{word-spacing:-0.373333pt;}
.wsa9{word-spacing:-0.341333pt;}
.ws1c{word-spacing:-0.320000pt;}
.ws99{word-spacing:-0.298667pt;}
.ws49{word-spacing:-0.266667pt;}
.wsae{word-spacing:-0.256000pt;}
.ws7f{word-spacing:-0.213333pt;}
.ws3c{word-spacing:-0.160000pt;}
.ws92{word-spacing:-0.128000pt;}
.ws15{word-spacing:-0.106667pt;}
.ws3e{word-spacing:-0.053333pt;}
.ws25{word-spacing:-0.047555pt;}
.ws96{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.wsad{word-spacing:0.042667pt;}
.ws26{word-spacing:0.053333pt;}
.ws2b{word-spacing:0.085333pt;}
.ws7{word-spacing:0.106667pt;}
.ws14{word-spacing:0.160000pt;}
.wsaf{word-spacing:0.213333pt;}
.ws73{word-spacing:0.266667pt;}
.ws6d{word-spacing:0.320000pt;}
.ws13{word-spacing:0.373333pt;}
.ws62{word-spacing:0.426667pt;}
.ws37{word-spacing:0.480000pt;}
.ws22{word-spacing:0.533333pt;}
.ws61{word-spacing:0.586667pt;}
.ws79{word-spacing:0.640000pt;}
.ws9a{word-spacing:0.725333pt;}
.ws20{word-spacing:0.746667pt;}
.ws75{word-spacing:0.800000pt;}
.ws4c{word-spacing:0.906667pt;}
.ws97{word-spacing:0.981333pt;}
.ws17{word-spacing:1.066667pt;}
.ws8e{word-spacing:1.152000pt;}
.ws10{word-spacing:1.173333pt;}
.ws6c{word-spacing:1.226667pt;}
.wsb3{word-spacing:1.280000pt;}
.ws93{word-spacing:1.322667pt;}
.ws80{word-spacing:1.333333pt;}
.ws1d{word-spacing:1.386667pt;}
.ws48{word-spacing:1.440000pt;}
.ws4e{word-spacing:1.493333pt;}
.wsd{word-spacing:1.546667pt;}
.ws56{word-spacing:1.578667pt;}
.wsa{word-spacing:1.600000pt;}
.ws78{word-spacing:1.760000pt;}
.ws60{word-spacing:1.813333pt;}
.ws63{word-spacing:1.866667pt;}
.wsac{word-spacing:1.920000pt;}
.ws94{word-spacing:1.962667pt;}
.ws7e{word-spacing:1.973333pt;}
.ws29{word-spacing:2.026667pt;}
.wsb4{word-spacing:2.048000pt;}
.ws18{word-spacing:2.080000pt;}
.ws7c{word-spacing:2.133333pt;}
.wsb0{word-spacing:2.176000pt;}
.ws90{word-spacing:2.218667pt;}
.ws6a{word-spacing:2.240000pt;}
.ws16{word-spacing:2.293333pt;}
.ws98{word-spacing:2.304000pt;}
.ws6b{word-spacing:2.346667pt;}
.wsa7{word-spacing:2.389333pt;}
.ws11{word-spacing:2.400000pt;}
.ws3f{word-spacing:2.453333pt;}
.wsb1{word-spacing:2.474667pt;}
.ws27{word-spacing:2.506667pt;}
.ws4d{word-spacing:2.549653pt;}
.ws7a{word-spacing:2.560000pt;}
.wsf{word-spacing:2.666667pt;}
.ws51{word-spacing:2.681280pt;}
.ws28{word-spacing:2.720000pt;}
.ws38{word-spacing:2.773333pt;}
.ws8c{word-spacing:2.816000pt;}
.ws71{word-spacing:2.826667pt;}
.wse{word-spacing:2.880000pt;}
.ws8d{word-spacing:2.944000pt;}
.ws69{word-spacing:2.986667pt;}
.ws8b{word-spacing:3.029333pt;}
.ws1a{word-spacing:3.040000pt;}
.ws39{word-spacing:3.093333pt;}
.wsaa{word-spacing:3.200000pt;}
.ws6f{word-spacing:3.253333pt;}
.ws3b{word-spacing:3.360000pt;}
.wsb2{word-spacing:3.370667pt;}
.ws88{word-spacing:3.413333pt;}
.ws1f{word-spacing:3.466667pt;}
.ws64{word-spacing:3.498667pt;}
.wsb{word-spacing:3.520000pt;}
.ws55{word-spacing:3.541333pt;}
.ws12{word-spacing:3.573333pt;}
.ws40{word-spacing:3.626667pt;}
.ws4a{word-spacing:3.680000pt;}
.ws72{word-spacing:3.733333pt;}
.ws6e{word-spacing:3.786667pt;}
.ws77{word-spacing:3.840000pt;}
.ws19{word-spacing:3.893333pt;}
.ws76{word-spacing:3.946667pt;}
.ws68{word-spacing:4.053333pt;}
.ws74{word-spacing:4.213333pt;}
.ws7d{word-spacing:4.266667pt;}
.ws1b{word-spacing:4.320000pt;}
.ws9{word-spacing:4.373333pt;}
.ws8{word-spacing:4.426667pt;}
.ws3d{word-spacing:4.480000pt;}
.ws8a{word-spacing:4.853333pt;}
.ws89{word-spacing:4.906667pt;}
.ws24{word-spacing:9.475013pt;}
.ws4f{word-spacing:64.812800pt;}
.ws45{word-spacing:102.016000pt;}
.ws53{word-spacing:113.223467pt;}
.ws54{word-spacing:119.168000pt;}
.ws46{word-spacing:128.085333pt;}
.ws35{word-spacing:222.378667pt;}
.ws65{word-spacing:223.957333pt;}
.ws58{word-spacing:225.877333pt;}
.ws66{word-spacing:226.346667pt;}
.ws5c{word-spacing:227.498667pt;}
.ws5d{word-spacing:227.712000pt;}
.ws67{word-spacing:231.125333pt;}
.ws32{word-spacing:233.045333pt;}
.ws5f{word-spacing:238.378667pt;}
.ws59{word-spacing:242.304000pt;}
.ws33{word-spacing:243.712000pt;}
.ws57{word-spacing:249.045333pt;}
.ws34{word-spacing:254.378667pt;}
.ws5a{word-spacing:259.712000pt;}
.ws5b{word-spacing:270.378667pt;}
.ws31{word-spacing:273.920000pt;}
.ws52{word-spacing:350.978133pt;}
.ws47{word-spacing:377.600000pt;}
.ws2f{word-spacing:538.624000pt;}
.ws30{word-spacing:698.325333pt;}
._a{margin-left:-2576.085333pt;}
._d{margin-left:-2554.922667pt;}
._2{margin-left:-8.327467pt;}
._21{margin-left:-7.360000pt;}
._3{margin-left:-6.189333pt;}
._1{margin-left:-4.778667pt;}
._53{margin-left:-3.869333pt;}
._6{margin-left:-2.960000pt;}
._0{margin-left:-2.053333pt;}
._5{margin-left:-1.064000pt;}
._7{width:1.226667pt;}
._9{width:2.880000pt;}
._8{width:4.640000pt;}
._e{width:6.293333pt;}
._f{width:7.253333pt;}
._c{width:37.575813pt;}
._b{width:47.735333pt;}
._39{width:49.477333pt;}
._4{width:52.941701pt;}
._38{width:93.580965pt;}
._2a{width:103.552000pt;}
._25{width:109.141333pt;}
._29{width:110.336000pt;}
._24{width:113.877333pt;}
._36{width:117.546667pt;}
._28{width:118.613333pt;}
._27{width:119.765333pt;}
._23{width:120.960000pt;}
._26{width:126.890667pt;}
._2c{width:128.085333pt;}
._49{width:137.088000pt;}
._3c{width:138.282667pt;}
._37{width:139.392000pt;}
._22{width:154.069333pt;}
._34{width:168.487467pt;}
._2e{width:171.237333pt;}
._2d{width:173.626667pt;}
._2b{width:184.874667pt;}
._48{width:193.365333pt;}
._3b{width:209.962667pt;}
._44{width:215.680000pt;}
._40{width:220.416000pt;}
._1a{width:233.045333pt;}
._16{width:243.712000pt;}
._45{width:249.258667pt;}
._14{width:254.378667pt;}
._3d{width:259.456000pt;}
._19{width:263.253333pt;}
._12{width:265.045333pt;}
._3e{width:270.378667pt;}
._18{width:273.920000pt;}
._4c{width:277.248000pt;}
._47{width:278.442667pt;}
._52{width:279.680000pt;}
._42{width:281.045333pt;}
._13{width:284.586667pt;}
._3a{width:286.762667pt;}
._51{width:293.845333pt;}
._1e{width:295.253333pt;}
._4d{width:305.749333pt;}
._46{width:319.333333pt;}
._41{width:321.109333pt;}
._4e{width:327.040000pt;}
._4a{width:332.970667pt;}
._4f{width:338.901333pt;}
._4b{width:343.056000pt;}
._50{width:345.984000pt;}
._43{width:366.165333pt;}
._3f{width:369.664000pt;}
._10{width:556.074667pt;}
._2f{width:564.456000pt;}
._1b{width:595.242667pt;}
._1f{width:601.173333pt;}
._11{width:605.866667pt;}
._30{width:608.113600pt;}
._20{width:623.658667pt;}
._17{width:631.936000pt;}
._32{width:634.550933pt;}
._33{width:639.645333pt;}
._31{width:680.432533pt;}
._1c{width:717.269333pt;}
._1d{width:751.658667pt;}
._15{width:755.157333pt;}
._35{width:1196.616960pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fsc{font-size:36.026667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fsf{font-size:40.533333pt;}
.fsb{font-size:41.173333pt;}
.fs9{font-size:42.666667pt;}
.fse{font-size:47.555200pt;}
.fs10{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs11{font-size:63.840000pt;}
.fsd{font-size:65.388267pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:3.096000pt;}
.y72{bottom:3.096533pt;}
.y74{bottom:3.097200pt;}
.y70{bottom:3.097600pt;}
.y1{bottom:41.124400pt;}
.y2f{bottom:42.468667pt;}
.y196{bottom:71.345333pt;}
.y155{bottom:73.886133pt;}
.ybb{bottom:74.186933pt;}
.y13d{bottom:74.342533pt;}
.y65{bottom:74.462533pt;}
.y7a{bottom:75.037333pt;}
.y2c{bottom:78.246000pt;}
.y9e{bottom:79.266400pt;}
.y128{bottom:81.887600pt;}
.y114{bottom:82.370400pt;}
.yab{bottom:82.422667pt;}
.y195{bottom:84.678667pt;}
.y154{bottom:87.219467pt;}
.yba{bottom:88.181600pt;}
.y79{bottom:89.032000pt;}
.y13c{bottom:90.342533pt;}
.y64{bottom:90.462533pt;}
.y2b{bottom:91.576000pt;}
.y9d{bottom:93.709067pt;}
.y127{bottom:96.330267pt;}
.y113{bottom:96.813067pt;}
.yaa{bottom:96.865333pt;}
.y194{bottom:98.012000pt;}
.y153{bottom:100.552800pt;}
.y13b{bottom:106.342533pt;}
.y63{bottom:106.462533pt;}
.ye0{bottom:107.276667pt;}
.y9c{bottom:108.151733pt;}
.ydf{bottom:109.606667pt;}
.y6d{bottom:110.065333pt;}
.y126{bottom:110.772933pt;}
.y112{bottom:111.255733pt;}
.ya9{bottom:111.308000pt;}
.y193{bottom:111.345333pt;}
.yde{bottom:113.416267pt;}
.y152{bottom:113.886133pt;}
.y13a{bottom:122.342533pt;}
.y62{bottom:122.462533pt;}
.y9b{bottom:122.594400pt;}
.y192{bottom:124.678667pt;}
.y125{bottom:125.215600pt;}
.y111{bottom:125.698400pt;}
.y151{bottom:127.219467pt;}
.ydd{bottom:127.802267pt;}
.y9a{bottom:137.037067pt;}
.y191{bottom:138.012000pt;}
.y139{bottom:138.342533pt;}
.y61{bottom:138.462533pt;}
.ya8{bottom:139.318667pt;}
.y124{bottom:139.658267pt;}
.y110{bottom:140.141067pt;}
.y150{bottom:140.552800pt;}
.y6f{bottom:145.758667pt;}
.y75{bottom:145.989067pt;}
.y119{bottom:147.700133pt;}
.yd8{bottom:150.090267pt;}
.yd7{bottom:150.636933pt;}
.y28{bottom:151.029600pt;}
.y190{bottom:151.345333pt;}
.y99{bottom:151.479733pt;}
.y14f{bottom:153.886133pt;}
.y138{bottom:153.982533pt;}
.y123{bottom:154.100933pt;}
.y60{bottom:154.462533pt;}
.y10f{bottom:154.583733pt;}
.y118{bottom:162.142800pt;}
.y18f{bottom:164.678667pt;}
.y98{bottom:165.922400pt;}
.y27{bottom:167.029600pt;}
.y14e{bottom:167.219467pt;}
.y122{bottom:168.543600pt;}
.y10e{bottom:169.026400pt;}
.ya7{bottom:170.342533pt;}
.y5f{bottom:170.462533pt;}
.y117{bottom:176.585467pt;}
.y18e{bottom:178.012000pt;}
.y97{bottom:180.365067pt;}
.y14d{bottom:180.552800pt;}
.y121{bottom:182.986267pt;}
.y26{bottom:183.029600pt;}
.y10d{bottom:183.469067pt;}
.y137{bottom:186.342533pt;}
.y5e{bottom:186.462533pt;}
.y18d{bottom:191.345333pt;}
.y14c{bottom:193.886133pt;}
.y120{bottom:197.428933pt;}
.y10c{bottom:197.911733pt;}
.y2a{bottom:199.029600pt;}
.y136{bottom:202.342533pt;}
.y116{bottom:202.366800pt;}
.y5d{bottom:202.462533pt;}
.y18c{bottom:204.678667pt;}
.y96{bottom:206.146400pt;}
.y14b{bottom:207.219467pt;}
.yad{bottom:210.732000pt;}
.y11f{bottom:211.871600pt;}
.y25{bottom:214.671467pt;}
.yd9{bottom:215.024667pt;}
.y29{bottom:215.029600pt;}
.y18b{bottom:218.012000pt;}
.y135{bottom:218.342533pt;}
.y5c{bottom:218.462533pt;}
.y14a{bottom:220.552800pt;}
.yac{bottom:224.726667pt;}
.y10b{bottom:225.922400pt;}
.y11e{bottom:226.314267pt;}
.y115{bottom:228.148133pt;}
.y18a{bottom:231.345333pt;}
.y95{bottom:231.927733pt;}
.y149{bottom:233.886133pt;}
.y134{bottom:234.342533pt;}
.y5b{bottom:234.462533pt;}
.y11d{bottom:240.756933pt;}
.y189{bottom:244.678667pt;}
.y148{bottom:247.219467pt;}
.yb5{bottom:249.371467pt;}
.y67{bottom:250.102533pt;}
.y133{bottom:250.342533pt;}
.y5a{bottom:250.462533pt;}
.y71{bottom:253.726667pt;}
.y10a{bottom:256.940267pt;}
.y188{bottom:258.012000pt;}
.y147{bottom:260.552800pt;}
.y94{bottom:260.729200pt;}
.yb4{bottom:264.514667pt;}
.y132{bottom:266.342533pt;}
.y59{bottom:266.462533pt;}
.y11c{bottom:268.767600pt;}
.y187{bottom:271.345333pt;}
.y146{bottom:273.886133pt;}
.y109{bottom:274.273600pt;}
.y93{bottom:278.062533pt;}
.yda{bottom:279.948933pt;}
.y24{bottom:280.448800pt;}
.y66{bottom:281.982533pt;}
.y131{bottom:282.342533pt;}
.y58{bottom:282.462533pt;}
.yae{bottom:284.051067pt;}
.y186{bottom:284.678667pt;}
.y145{bottom:287.219467pt;}
.y23{bottom:296.457067pt;}
.y185{bottom:298.012000pt;}
.y130{bottom:298.342533pt;}
.y57{bottom:298.462533pt;}
.y11b{bottom:299.782533pt;}
.y144{bottom:300.552800pt;}
.y184{bottom:311.345333pt;}
.y100{bottom:314.186933pt;}
.y7e{bottom:314.342533pt;}
.y56{bottom:314.462533pt;}
.y92{bottom:314.595867pt;}
.y22{bottom:320.763733pt;}
.yb6{bottom:322.331067pt;}
.yaf{bottom:323.016400pt;}
.y183{bottom:324.678667pt;}
.yff{bottom:328.181600pt;}
.y143{bottom:329.982533pt;}
.y7d{bottom:330.342533pt;}
.y55{bottom:330.462533pt;}
.y91{bottom:330.595867pt;}
.y21{bottom:336.763733pt;}
.y182{bottom:338.012000pt;}
.ydb{bottom:344.883333pt;}
.y12f{bottom:346.342533pt;}
.y54{bottom:346.462533pt;}
.y90{bottom:346.595867pt;}
.y181{bottom:351.345333pt;}
.y20{bottom:352.763733pt;}
.y107{bottom:352.836000pt;}
.y73{bottom:361.676000pt;}
.y7c{bottom:361.982533pt;}
.yb0{bottom:361.992400pt;}
.y12e{bottom:362.342533pt;}
.y53{bottom:362.462533pt;}
.y8f{bottom:362.595867pt;}
.y78{bottom:364.341596pt;}
.y180{bottom:364.678667pt;}
.y106{bottom:367.979200pt;}
.y1f{bottom:368.763733pt;}
.y1c1{bottom:378.012000pt;}
.y17f{bottom:378.014133pt;}
.y12d{bottom:378.342533pt;}
.y52{bottom:378.462533pt;}
.y8e{bottom:378.595867pt;}
.y77{bottom:378.667600pt;}
.y1e{bottom:384.763733pt;}
.y101{bottom:388.007867pt;}
.ye2{bottom:389.472533pt;}
.y1c0{bottom:391.345333pt;}
.y17e{bottom:391.347467pt;}
.ye1{bottom:394.073200pt;}
.y12c{bottom:394.342533pt;}
.y51{bottom:394.462533pt;}
.y8d{bottom:394.595867pt;}
.y76{bottom:399.340933pt;}
.y1d{bottom:400.763733pt;}
.yb1{bottom:400.957733pt;}
.y1bf{bottom:404.678667pt;}
.y17d{bottom:404.680800pt;}
.ydc{bottom:409.817733pt;}
.y142{bottom:410.102533pt;}
.y12b{bottom:410.342533pt;}
.y50{bottom:410.462533pt;}
.y8c{bottom:410.595867pt;}
.y1c{bottom:416.763733pt;}
.y1be{bottom:418.012000pt;}
.y17c{bottom:418.014133pt;}
.yb9{bottom:423.430933pt;}
.y108{bottom:423.588533pt;}
.y4f{bottom:426.462533pt;}
.y8b{bottom:426.595867pt;}
.y1bd{bottom:431.345333pt;}
.y17b{bottom:431.347467pt;}
.y1b{bottom:432.763733pt;}
.y102{bottom:437.213200pt;}
.yb2{bottom:439.933733pt;}
.y12a{bottom:441.982533pt;}
.y4e{bottom:442.462533pt;}
.y8a{bottom:442.595867pt;}
.yb8{bottom:444.166933pt;}
.y1bc{bottom:444.678667pt;}
.y17a{bottom:444.680800pt;}
.y1a{bottom:448.763733pt;}
.ybd{bottom:455.552267pt;}
.y1bb{bottom:458.012000pt;}
.y179{bottom:458.014133pt;}
.y141{bottom:458.102533pt;}
.y4d{bottom:458.462533pt;}
.y6c{bottom:458.595867pt;}
.y19{bottom:464.763733pt;}
.yb7{bottom:466.439067pt;}
.ybc{bottom:469.546933pt;}
.y1ba{bottom:471.345333pt;}
.y178{bottom:471.347467pt;}
.y4c{bottom:474.462533pt;}
.y6b{bottom:474.595867pt;}
.yb3{bottom:478.899067pt;}
.y18{bottom:480.763733pt;}
.y1b9{bottom:484.678667pt;}
.y177{bottom:484.680800pt;}
.y103{bottom:486.407867pt;}
.y4b{bottom:490.462533pt;}
.y6a{bottom:490.595867pt;}
.yd2{bottom:493.814267pt;}
.y17{bottom:496.763733pt;}
.y1b8{bottom:498.012000pt;}
.y176{bottom:498.014133pt;}
.y4a{bottom:506.462533pt;}
.y89{bottom:506.595867pt;}
.yc1{bottom:509.798400pt;}
.y1b7{bottom:511.345333pt;}
.y175{bottom:511.347467pt;}
.y16{bottom:512.763733pt;}
.y140{bottom:522.102533pt;}
.y69{bottom:522.235867pt;}
.y49{bottom:522.462533pt;}
.y88{bottom:522.595867pt;}
.y1b6{bottom:524.678667pt;}
.y174{bottom:524.680800pt;}
.ycd{bottom:525.125867pt;}
.y15{bottom:528.763733pt;}
.y104{bottom:535.623867pt;}
.y1b5{bottom:538.012000pt;}
.y173{bottom:538.014133pt;}
.y48{bottom:538.462533pt;}
.y87{bottom:538.595867pt;}
.y14{bottom:544.763733pt;}
.yce{bottom:546.821333pt;}
.y1b4{bottom:551.345333pt;}
.y172{bottom:551.347467pt;}
.y47{bottom:554.462533pt;}
.y86{bottom:554.595867pt;}
.y13{bottom:560.763733pt;}
.yd6{bottom:563.658133pt;}
.y1b3{bottom:564.678667pt;}
.y171{bottom:564.680800pt;}
.ycf{bottom:568.516800pt;}
.ya0{bottom:570.235867pt;}
.y46{bottom:570.462533pt;}
.y85{bottom:570.595867pt;}
.y12{bottom:576.763733pt;}
.y1b2{bottom:578.012000pt;}
.y170{bottom:578.014133pt;}
.y105{bottom:584.829200pt;}
.yd5{bottom:585.546133pt;}
.y45{bottom:586.462533pt;}
.y84{bottom:586.595867pt;}
.yd0{bottom:590.212267pt;}
.y1b1{bottom:591.345333pt;}
.y16f{bottom:591.347467pt;}
.y13f{bottom:602.102533pt;}
.y44{bottom:602.462533pt;}
.y83{bottom:602.595867pt;}
.y1b0{bottom:604.678667pt;}
.y16e{bottom:604.680800pt;}
.yd4{bottom:609.054933pt;}
.yd1{bottom:611.907733pt;}
.y11{bottom:616.904267pt;}
.y1af{bottom:618.012000pt;}
.y16d{bottom:618.014133pt;}
.y43{bottom:618.462533pt;}
.y82{bottom:618.595867pt;}
.y10{bottom:627.971600pt;}
.y1ae{bottom:631.345333pt;}
.y16c{bottom:631.347467pt;}
.yfe{bottom:634.342533pt;}
.y42{bottom:634.462533pt;}
.yf1{bottom:634.588533pt;}
.y81{bottom:634.595867pt;}
.ybe{bottom:640.823067pt;}
.y1ad{bottom:644.678667pt;}
.y16b{bottom:644.680800pt;}
.yc2{bottom:648.321600pt;}
.yfd{bottom:650.342533pt;}
.y41{bottom:650.462533pt;}
.yf0{bottom:650.588533pt;}
.y80{bottom:650.595867pt;}
.yd3{bottom:651.120800pt;}
.y1ac{bottom:658.012000pt;}
.y16a{bottom:658.014133pt;}
.yf{bottom:660.985733pt;}
.yc8{bottom:663.649067pt;}
.ya6{bottom:666.235867pt;}
.yfc{bottom:666.342533pt;}
.y40{bottom:666.462533pt;}
.yef{bottom:666.588533pt;}
.y1ab{bottom:671.345333pt;}
.y169{bottom:671.347467pt;}
.ye{bottom:672.985733pt;}
.y7f{bottom:682.235867pt;}
.yfb{bottom:682.342533pt;}
.y3f{bottom:682.462533pt;}
.yee{bottom:682.588533pt;}
.y1aa{bottom:684.678667pt;}
.y168{bottom:684.680800pt;}
.yd{bottom:684.985733pt;}
.yc9{bottom:685.344533pt;}
.yc{bottom:696.985733pt;}
.y1a9{bottom:698.012000pt;}
.y167{bottom:698.014133pt;}
.yfa{bottom:698.342533pt;}
.y3e{bottom:698.462533pt;}
.yed{bottom:698.588533pt;}
.yb{bottom:704.163200pt;}
.yca{bottom:707.040000pt;}
.y1a8{bottom:711.345333pt;}
.y166{bottom:711.347467pt;}
.yf9{bottom:714.342533pt;}
.y3d{bottom:714.462533pt;}
.yec{bottom:714.588533pt;}
.ya{bottom:720.985733pt;}
.y1a7{bottom:724.678667pt;}
.y165{bottom:724.680800pt;}
.y9{bottom:728.163200pt;}
.ycb{bottom:728.735467pt;}
.yf8{bottom:730.342533pt;}
.y3c{bottom:730.462533pt;}
.yeb{bottom:730.588533pt;}
.y1a6{bottom:738.012000pt;}
.y164{bottom:738.014133pt;}
.y8{bottom:744.985733pt;}
.yf7{bottom:746.342533pt;}
.y3b{bottom:746.462533pt;}
.yea{bottom:746.588533pt;}
.ycc{bottom:750.430933pt;}
.y1a5{bottom:751.345333pt;}
.y163{bottom:751.347467pt;}
.y13e{bottom:762.102533pt;}
.yf6{bottom:762.342533pt;}
.y3a{bottom:762.462533pt;}
.ye9{bottom:762.588533pt;}
.y1a4{bottom:764.678667pt;}
.y162{bottom:764.680800pt;}
.y7{bottom:770.521067pt;}
.y1a3{bottom:778.012000pt;}
.y161{bottom:778.014133pt;}
.yf5{bottom:778.342533pt;}
.y39{bottom:778.462533pt;}
.ye8{bottom:778.588533pt;}
.ybf{bottom:779.345467pt;}
.y6{bottom:789.183067pt;}
.y1a2{bottom:791.345333pt;}
.y160{bottom:791.347467pt;}
.yf4{bottom:794.342533pt;}
.y38{bottom:794.462533pt;}
.ye7{bottom:794.595867pt;}
.yc3{bottom:802.186133pt;}
.y1a1{bottom:804.678667pt;}
.y15f{bottom:804.680800pt;}
.y37{bottom:810.462533pt;}
.ye6{bottom:810.595867pt;}
.y1a0{bottom:818.012000pt;}
.y15e{bottom:818.014133pt;}
.yc4{bottom:823.881600pt;}
.yf3{bottom:825.982533pt;}
.y36{bottom:826.462533pt;}
.ye5{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y19f{bottom:831.345333pt;}
.y15d{bottom:831.347467pt;}
.y35{bottom:842.462533pt;}
.ye4{bottom:842.595867pt;}
.y19e{bottom:844.678667pt;}
.y15c{bottom:844.680800pt;}
.yc5{bottom:845.566933pt;}
.y19d{bottom:858.012000pt;}
.y15b{bottom:858.014133pt;}
.y34{bottom:858.462533pt;}
.y1c5{bottom:858.464533pt;}
.ya5{bottom:858.475867pt;}
.y4{bottom:862.635733pt;}
.yc6{bottom:867.262400pt;}
.y19c{bottom:871.345333pt;}
.y15a{bottom:871.347467pt;}
.ye3{bottom:874.235867pt;}
.y33{bottom:874.462533pt;}
.y1c4{bottom:874.464533pt;}
.ya4{bottom:874.475867pt;}
.y19b{bottom:884.678667pt;}
.y159{bottom:884.680800pt;}
.yc7{bottom:888.957867pt;}
.y32{bottom:890.462533pt;}
.y1c3{bottom:890.464533pt;}
.ya3{bottom:890.475867pt;}
.y3{bottom:895.045333pt;}
.y19a{bottom:898.012000pt;}
.y158{bottom:898.014133pt;}
.y31{bottom:906.462533pt;}
.ya2{bottom:906.475867pt;}
.y199{bottom:911.345333pt;}
.y157{bottom:911.347467pt;}
.yc0{bottom:917.868667pt;}
.y1c2{bottom:922.104533pt;}
.y30{bottom:922.462533pt;}
.yf2{bottom:922.468533pt;}
.ya1{bottom:922.475867pt;}
.y198{bottom:924.678667pt;}
.y156{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y68{bottom:1006.594400pt;}
.y197{bottom:1006.598667pt;}
.y7b{bottom:1006.600000pt;}
.y11a{bottom:1006.612133pt;}
.y9f{bottom:1006.626400pt;}
.y129{bottom:1006.634267pt;}
.y2e{bottom:1009.860000pt;}
.y2d{bottom:1022.660000pt;}
.h13{height:11.936000pt;}
.h15{height:11.938667pt;}
.h7{height:17.000371pt;}
.h9{height:25.238281pt;}
.h16{height:26.562630pt;}
.h2{height:27.179688pt;}
.he{height:29.121094pt;}
.h8{height:29.160156pt;}
.h21{height:29.625000pt;}
.h19{height:29.645833pt;}
.h1c{height:29.885417pt;}
.h14{height:30.357292pt;}
.h10{height:31.062500pt;}
.hf{height:31.104167pt;}
.h1a{height:31.458333pt;}
.h18{height:35.062672pt;}
.h11{height:37.031250pt;}
.hd{height:37.057292pt;}
.h1d{height:37.356771pt;}
.hb{height:38.828125pt;}
.hc{height:38.854167pt;}
.ha{height:38.880208pt;}
.h1b{height:39.322917pt;}
.h12{height:46.727068pt;}
.h1e{height:47.069531pt;}
.h17{height:48.211076pt;}
.h3{height:50.476562pt;}
.h6{height:50.755837pt;}
.h5{height:50.774503pt;}
.h20{height:54.812883pt;}
.h4{height:81.927344pt;}
.h1f{height:317.553333pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w4{width:31.584000pt;}
.w2{width:39.589333pt;}
.w3{width:39.590667pt;}
.w5{width:539.412000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x31{left:10.880133pt;}
.xb{left:68.031467pt;}
.x1d{left:69.915867pt;}
.x9{left:85.417333pt;}
.x1{left:86.929067pt;}
.x1e{left:88.818933pt;}
.x3a{left:90.708800pt;}
.x4{left:94.488133pt;}
.xc{left:98.271467pt;}
.x2a{left:101.181333pt;}
.x29{left:107.514667pt;}
.x3c{left:109.606533pt;}
.x3{left:111.491467pt;}
.x7{left:117.165333pt;}
.x23{left:133.851333pt;}
.x20{left:140.048667pt;}
.x1f{left:146.043333pt;}
.x5{left:170.078800pt;}
.x39{left:172.698133pt;}
.x35{left:173.907467pt;}
.x26{left:179.529333pt;}
.x27{left:180.681733pt;}
.x2e{left:184.595733pt;}
.x1b{left:187.638400pt;}
.x6{left:189.223467pt;}
.x24{left:191.115600pt;}
.x25{left:218.427467pt;}
.x17{left:240.733333pt;}
.x2f{left:255.458667pt;}
.x21{left:260.343467pt;}
.x32{left:261.500000pt;}
.x14{left:295.302667pt;}
.x1c{left:304.518533pt;}
.x2b{left:386.894800pt;}
.x30{left:395.871200pt;}
.x15{left:397.010667pt;}
.xa{left:404.481333pt;}
.xd{left:406.298133pt;}
.x36{left:407.656267pt;}
.x22{left:410.714533pt;}
.x12{left:425.195867pt;}
.x8{left:427.098667pt;}
.x3b{left:428.980800pt;}
.xe{left:436.538133pt;}
.x3d{left:447.889200pt;}
.x18{left:452.976800pt;}
.x13{left:455.435867pt;}
.xf{left:466.911467pt;}
.x33{left:469.996800pt;}
.x16{left:498.720000pt;}
.x19{left:513.222667pt;}
.x28{left:525.342400pt;}
.x34{left:533.938800pt;}
.x2c{left:541.935200pt;}
.x2d{left:570.764400pt;}
.x11{left:589.770933pt;}
.x2{left:616.324800pt;}
.x37{left:641.526800pt;}
.x10{left:647.459200pt;}
.x38{left:661.216133pt;}
.x1a{left:666.353200pt;}
}




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