
    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_25225db5a93fb9557e0bfb37.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_ee95cc89e584da0780c35124.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.952637;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_73b7417573047f6eb35deda3.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_8a78ee772e03c70f80fc3082.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.929199;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_75aca547c7374e1a3d301e03.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_7e8d3fc000105e1bd31bd634.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.882324;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_c20dcceff12eac5c65f6dff0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.894000;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_3137cf5e3e1da20aa778d1d2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.926758;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_b62b2fde7243afa345985c3c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.882324;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_a4277821a8c0b5b015bddb43.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.731445;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_9349c8ddb428b44d72baea07.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_f3469b414f57443b9a8f92a5.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.952637;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_761f916e54cf70188b3fce1d.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.952637;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_c419ffc852ed37ce09085737.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.711000;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.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);}
.m3{transform:matrix(0.000000,-0.258708,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.258708,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.258708,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249973,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);}
.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:-16.471800px;}
.v4{vertical-align:-3.464400px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:1.620000px;}
.v6{vertical-align:3.948807px;}
.v5{vertical-align:20.535600px;}
.v1{vertical-align:22.655400px;}
.v7{vertical-align:40.860000px;}
.lsa7{letter-spacing:-2.640000px;}
.ls1b{letter-spacing:-0.960000px;}
.ls7e{letter-spacing:-0.420000px;}
.ls83{letter-spacing:-0.360000px;}
.ls43{letter-spacing:-0.300000px;}
.lsa8{letter-spacing:-0.288000px;}
.ls67{letter-spacing:-0.240000px;}
.ls47{letter-spacing:-0.192000px;}
.ls58{letter-spacing:-0.180000px;}
.lsa9{letter-spacing:-0.144000px;}
.ls66{letter-spacing:-0.120000px;}
.ls44{letter-spacing:-0.060000px;}
.ls1a{letter-spacing:-0.048000px;}
.ls19{letter-spacing:0.000000px;}
.ls54{letter-spacing:0.000600px;}
.ls0{letter-spacing:0.004200px;}
.ls53{letter-spacing:0.006000px;}
.ls2{letter-spacing:0.048000px;}
.ls1f{letter-spacing:0.060000px;}
.ls7{letter-spacing:0.096000px;}
.ls3e{letter-spacing:0.120000px;}
.ls5c{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.192000px;}
.ls13{letter-spacing:0.240000px;}
.ls92{letter-spacing:0.288000px;}
.ls2e{letter-spacing:0.300000px;}
.ls6e{letter-spacing:0.336000px;}
.lsa{letter-spacing:0.360000px;}
.lsaa{letter-spacing:0.384000px;}
.ls45{letter-spacing:0.420000px;}
.ls3{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.480000px;}
.ls8{letter-spacing:0.528000px;}
.ls40{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.600000px;}
.ls75{letter-spacing:0.624000px;}
.ls52{letter-spacing:0.660000px;}
.ls9f{letter-spacing:0.672000px;}
.ls27{letter-spacing:0.720000px;}
.ls74{letter-spacing:0.768000px;}
.ls11{letter-spacing:0.780000px;}
.ls4{letter-spacing:0.816000px;}
.ls37{letter-spacing:0.840000px;}
.ls9e{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.900000px;}
.ls9a{letter-spacing:0.912000px;}
.ls6{letter-spacing:0.960000px;}
.ls72{letter-spacing:1.008000px;}
.ls16{letter-spacing:1.020000px;}
.ls98{letter-spacing:1.056000px;}
.ls18{letter-spacing:1.080000px;}
.ls6d{letter-spacing:1.104000px;}
.ls17{letter-spacing:1.140000px;}
.ls94{letter-spacing:1.152000px;}
.ls22{letter-spacing:1.200000px;}
.ls20{letter-spacing:1.260000px;}
.ls9b{letter-spacing:1.296000px;}
.lsc{letter-spacing:1.320000px;}
.lsa3{letter-spacing:1.344000px;}
.ls29{letter-spacing:1.380000px;}
.lsa2{letter-spacing:1.392000px;}
.ls4b{letter-spacing:1.440000px;}
.ls8e{letter-spacing:1.488000px;}
.ls61{letter-spacing:1.500000px;}
.ls3f{letter-spacing:1.560000px;}
.ls91{letter-spacing:1.584000px;}
.ls42{letter-spacing:1.620000px;}
.ls1{letter-spacing:1.632000px;}
.ls33{letter-spacing:1.680000px;}
.ls5a{letter-spacing:1.728000px;}
.ls34{letter-spacing:1.740000px;}
.ls5b{letter-spacing:1.776000px;}
.ls5e{letter-spacing:1.800000px;}
.ls95{letter-spacing:1.824000px;}
.ls3a{letter-spacing:1.860000px;}
.ls93{letter-spacing:1.872000px;}
.ls36{letter-spacing:1.920000px;}
.lsa1{letter-spacing:1.968000px;}
.ls2f{letter-spacing:1.980000px;}
.lsad{letter-spacing:2.016000px;}
.ls12{letter-spacing:2.040000px;}
.ls76{letter-spacing:2.064000px;}
.lsb{letter-spacing:2.100000px;}
.ls49{letter-spacing:2.160000px;}
.ls71{letter-spacing:2.208000px;}
.ls2d{letter-spacing:2.220000px;}
.lsaf{letter-spacing:2.256000px;}
.lse{letter-spacing:2.280000px;}
.ls8f{letter-spacing:2.304000px;}
.ls32{letter-spacing:2.340000px;}
.ls97{letter-spacing:2.352000px;}
.ls14{letter-spacing:2.400000px;}
.ls9c{letter-spacing:2.448000px;}
.ls10{letter-spacing:2.460000px;}
.ls41{letter-spacing:2.520000px;}
.ls8c{letter-spacing:2.544000px;}
.ls1e{letter-spacing:2.580000px;}
.ls73{letter-spacing:2.592000px;}
.lsf{letter-spacing:2.640000px;}
.ls23{letter-spacing:2.700000px;}
.lsa4{letter-spacing:2.736000px;}
.ls3c{letter-spacing:2.760000px;}
.ls3b{letter-spacing:2.820000px;}
.ls55{letter-spacing:2.880000px;}
.ls30{letter-spacing:2.940000px;}
.ls28{letter-spacing:3.000000px;}
.ls99{letter-spacing:3.024000px;}
.ls1d{letter-spacing:3.060000px;}
.lsa0{letter-spacing:3.072000px;}
.ls78{letter-spacing:3.120000px;}
.ls2b{letter-spacing:3.180000px;}
.ls65{letter-spacing:3.240000px;}
.ls4c{letter-spacing:3.300000px;}
.ls48{letter-spacing:3.360000px;}
.ls8d{letter-spacing:3.408000px;}
.ls39{letter-spacing:3.420000px;}
.ls26{letter-spacing:3.480000px;}
.ls96{letter-spacing:3.504000px;}
.ls35{letter-spacing:3.540000px;}
.ls25{letter-spacing:3.600000px;}
.ls24{letter-spacing:3.660000px;}
.ls21{letter-spacing:3.720000px;}
.lsa5{letter-spacing:3.744000px;}
.ls70{letter-spacing:3.780000px;}
.ls90{letter-spacing:3.792000px;}
.ls50{letter-spacing:3.840000px;}
.ls15{letter-spacing:3.900000px;}
.ls56{letter-spacing:3.960000px;}
.ls4e{letter-spacing:4.020000px;}
.lsab{letter-spacing:4.032000px;}
.ls4a{letter-spacing:4.080000px;}
.ls7b{letter-spacing:4.140000px;}
.ls2a{letter-spacing:4.200000px;}
.ls60{letter-spacing:4.260000px;}
.ls9d{letter-spacing:4.272000px;}
.ls84{letter-spacing:4.320000px;}
.lsae{letter-spacing:4.368000px;}
.ls31{letter-spacing:4.380000px;}
.ls3d{letter-spacing:4.440000px;}
.ls7d{letter-spacing:4.560000px;}
.ls80{letter-spacing:4.620000px;}
.ls4f{letter-spacing:4.740000px;}
.ls51{letter-spacing:4.800000px;}
.ls57{letter-spacing:4.980000px;}
.ls69{letter-spacing:5.040000px;}
.ls81{letter-spacing:5.100000px;}
.ls88{letter-spacing:5.160000px;}
.lsa6{letter-spacing:5.184000px;}
.ls64{letter-spacing:5.220000px;}
.lsac{letter-spacing:5.232000px;}
.ls6b{letter-spacing:5.280000px;}
.ls77{letter-spacing:5.340000px;}
.ls6f{letter-spacing:5.460000px;}
.ls8a{letter-spacing:5.520000px;}
.ls38{letter-spacing:5.580000px;}
.ls89{letter-spacing:5.640000px;}
.ls68{letter-spacing:5.700000px;}
.ls86{letter-spacing:5.760000px;}
.ls4d{letter-spacing:5.880000px;}
.ls6c{letter-spacing:6.000000px;}
.ls85{letter-spacing:6.120000px;}
.ls5f{letter-spacing:6.180000px;}
.ls7c{letter-spacing:6.240000px;}
.ls8b{letter-spacing:6.300000px;}
.ls7f{letter-spacing:6.360000px;}
.ls63{letter-spacing:6.600000px;}
.ls62{letter-spacing:6.780000px;}
.ls6a{letter-spacing:7.020000px;}
.ls59{letter-spacing:7.740000px;}
.ls82{letter-spacing:8.100000px;}
.ls87{letter-spacing:9.780000px;}
.ls7a{letter-spacing:10.620000px;}
.ls46{letter-spacing:194.503200px;}
.ls79{letter-spacing:297.180000px;}
.ls5d{letter-spacing:1007.223870px;}
.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;}
}
.ws27{word-spacing:-60.000000px;}
.ws21{word-spacing:-48.000000px;}
.ws9e{word-spacing:-27.300000px;}
.ws42{word-spacing:-23.460000px;}
.ws43{word-spacing:-23.280000px;}
.wsa0{word-spacing:-22.920000px;}
.wsa2{word-spacing:-22.560000px;}
.ws40{word-spacing:-22.260000px;}
.ws70{word-spacing:-22.140000px;}
.ws91{word-spacing:-22.020000px;}
.ws9f{word-spacing:-21.960000px;}
.ws46{word-spacing:-21.900000px;}
.ws6a{word-spacing:-21.420000px;}
.ws3d{word-spacing:-20.640000px;}
.ws71{word-spacing:-20.460000px;}
.ws6e{word-spacing:-20.400000px;}
.ws68{word-spacing:-20.340000px;}
.ws90{word-spacing:-19.920000px;}
.ws49{word-spacing:-19.860000px;}
.ws10{word-spacing:-19.740000px;}
.ws47{word-spacing:-19.620000px;}
.ws92{word-spacing:-19.500000px;}
.ws66{word-spacing:-19.440000px;}
.ws69{word-spacing:-19.320000px;}
.ws4a{word-spacing:-19.260000px;}
.wsa1{word-spacing:-19.140000px;}
.wsaa{word-spacing:-19.080000px;}
.ws48{word-spacing:-18.780000px;}
.ws12{word-spacing:-18.660000px;}
.ws94{word-spacing:-18.480000px;}
.ws28{word-spacing:-18.420000px;}
.ws65{word-spacing:-18.360000px;}
.ws67{word-spacing:-18.180000px;}
.ws95{word-spacing:-18.120000px;}
.ws45{word-spacing:-17.940000px;}
.ws3e{word-spacing:-17.700000px;}
.ws6b{word-spacing:-17.640000px;}
.ws11{word-spacing:-17.580000px;}
.ws3f{word-spacing:-17.520000px;}
.ws44{word-spacing:-17.460000px;}
.ws4b{word-spacing:-17.400000px;}
.wsa9{word-spacing:-17.340000px;}
.ws93{word-spacing:-17.160000px;}
.ws41{word-spacing:-17.100000px;}
.ws3b{word-spacing:-17.040000px;}
.ws6d{word-spacing:-16.980000px;}
.ws6f{word-spacing:-16.920000px;}
.ws60{word-spacing:-16.860000px;}
.wsbb{word-spacing:-16.848000px;}
.ws6c{word-spacing:-16.800000px;}
.ws3c{word-spacing:-16.740000px;}
.ws3a{word-spacing:-16.680000px;}
.ws77{word-spacing:-15.936000px;}
.wsbd{word-spacing:-15.792000px;}
.ws73{word-spacing:-15.552000px;}
.ws7d{word-spacing:-15.408000px;}
.ws7c{word-spacing:-14.544000px;}
.ws76{word-spacing:-14.352000px;}
.ws7a{word-spacing:-14.304000px;}
.ws13{word-spacing:-14.178000px;}
.ws78{word-spacing:-14.112000px;}
.ws79{word-spacing:-13.968000px;}
.wsc9{word-spacing:-13.728000px;}
.ws7b{word-spacing:-13.584000px;}
.ws2{word-spacing:-13.440000px;}
.wsca{word-spacing:-13.392000px;}
.ws1{word-spacing:-13.344000px;}
.wsbe{word-spacing:-13.296000px;}
.ws0{word-spacing:-11.008800px;}
.wsbc{word-spacing:-10.704000px;}
.wsa7{word-spacing:-10.620000px;}
.ws56{word-spacing:-6.600000px;}
.ws55{word-spacing:-5.580000px;}
.ws97{word-spacing:-5.340000px;}
.ws5a{word-spacing:-5.220000px;}
.ws58{word-spacing:-4.440000px;}
.wsb3{word-spacing:-4.080000px;}
.ws86{word-spacing:-3.720000px;}
.ws5e{word-spacing:-3.660000px;}
.ws8b{word-spacing:-2.592000px;}
.ws5b{word-spacing:-2.580000px;}
.wsa8{word-spacing:-2.460000px;}
.ws1a{word-spacing:-2.400000px;}
.ws1f{word-spacing:-2.220000px;}
.ws89{word-spacing:-2.208000px;}
.ws8f{word-spacing:-2.064000px;}
.ws5c{word-spacing:-1.680000px;}
.wsac{word-spacing:-1.440000px;}
.ws85{word-spacing:-1.200000px;}
.wsae{word-spacing:-1.020000px;}
.ws8a{word-spacing:-1.008000px;}
.ws53{word-spacing:-0.960000px;}
.wsab{word-spacing:-0.900000px;}
.wsba{word-spacing:-0.864000px;}
.ws54{word-spacing:-0.840000px;}
.ws57{word-spacing:-0.780000px;}
.ws8c{word-spacing:-0.768000px;}
.ws5d{word-spacing:-0.720000px;}
.ws8d{word-spacing:-0.624000px;}
.ws52{word-spacing:-0.540000px;}
.ws99{word-spacing:-0.480000px;}
.wsb9{word-spacing:-0.432000px;}
.ws2c{word-spacing:-0.420000px;}
.wsaf{word-spacing:-0.360000px;}
.ws87{word-spacing:-0.240000px;}
.ws8e{word-spacing:-0.192000px;}
.ws62{word-spacing:-0.180000px;}
.ws39{word-spacing:-0.144000px;}
.ws84{word-spacing:-0.120000px;}
.ws37{word-spacing:-0.096000px;}
.ws88{word-spacing:-0.060000px;}
.ws96{word-spacing:-0.048936px;}
.ws32{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.wsb7{word-spacing:0.048000px;}
.ws8{word-spacing:0.096000px;}
.ws83{word-spacing:0.120000px;}
.wsb0{word-spacing:0.180000px;}
.wsc7{word-spacing:0.192000px;}
.ws4e{word-spacing:0.240000px;}
.wsce{word-spacing:0.384000px;}
.wsa6{word-spacing:0.420000px;}
.wsc3{word-spacing:0.528000px;}
.wsf{word-spacing:0.540000px;}
.wsbf{word-spacing:0.576000px;}
.ws2d{word-spacing:0.660000px;}
.wsa4{word-spacing:0.780000px;}
.wsb5{word-spacing:0.816000px;}
.ws61{word-spacing:0.840000px;}
.ws19{word-spacing:0.900000px;}
.wsd0{word-spacing:0.912000px;}
.ws2b{word-spacing:0.960000px;}
.ws26{word-spacing:1.020000px;}
.wsc6{word-spacing:1.056000px;}
.ws98{word-spacing:1.080000px;}
.ws64{word-spacing:1.104000px;}
.ws51{word-spacing:1.140000px;}
.ws36{word-spacing:1.152000px;}
.wsb{word-spacing:1.200000px;}
.ws80{word-spacing:1.380000px;}
.ws9d{word-spacing:1.536000px;}
.wsc1{word-spacing:1.584000px;}
.ws4c{word-spacing:1.620000px;}
.wscc{word-spacing:1.632000px;}
.ws20{word-spacing:1.860000px;}
.wsc8{word-spacing:1.872000px;}
.ws4f{word-spacing:1.920000px;}
.ws6{word-spacing:2.064000px;}
.ws14{word-spacing:2.100000px;}
.ws9a{word-spacing:2.112000px;}
.ws7e{word-spacing:2.160000px;}
.ws50{word-spacing:2.220000px;}
.ws4d{word-spacing:2.280000px;}
.wsb4{word-spacing:2.304000px;}
.wsa3{word-spacing:2.400000px;}
.ws1c{word-spacing:2.460000px;}
.wscd{word-spacing:2.592000px;}
.wsb8{word-spacing:2.688000px;}
.wsb6{word-spacing:2.736000px;}
.wse{word-spacing:2.760000px;}
.ws38{word-spacing:2.784000px;}
.wsa{word-spacing:2.832000px;}
.ws18{word-spacing:3.000000px;}
.wscf{word-spacing:3.072000px;}
.ws9{word-spacing:3.168000px;}
.wsc5{word-spacing:3.216000px;}
.ws5f{word-spacing:3.300000px;}
.ws17{word-spacing:3.480000px;}
.ws16{word-spacing:3.540000px;}
.ws1e{word-spacing:3.600000px;}
.wsb2{word-spacing:3.660000px;}
.ws31{word-spacing:3.720000px;}
.wscb{word-spacing:3.744000px;}
.wsc4{word-spacing:3.792000px;}
.ws7{word-spacing:3.840000px;}
.ws1d{word-spacing:3.900000px;}
.wsb1{word-spacing:4.020000px;}
.wsc0{word-spacing:4.032000px;}
.ws82{word-spacing:4.080000px;}
.ws25{word-spacing:4.128000px;}
.wsad{word-spacing:4.140000px;}
.ws29{word-spacing:4.260000px;}
.wsa5{word-spacing:4.320000px;}
.ws5{word-spacing:4.368000px;}
.ws4{word-spacing:4.416000px;}
.ws2a{word-spacing:4.500000px;}
.ws15{word-spacing:4.740000px;}
.ws7f{word-spacing:4.800000px;}
.ws2e{word-spacing:4.980000px;}
.ws81{word-spacing:5.160000px;}
.ws30{word-spacing:5.220000px;}
.ws1b{word-spacing:5.340000px;}
.ws2f{word-spacing:5.400000px;}
.wsc{word-spacing:5.460000px;}
.wsd{word-spacing:5.520000px;}
.wsc2{word-spacing:7.872000px;}
.ws63{word-spacing:8.520000px;}
.ws59{word-spacing:9.960000px;}
.ws24{word-spacing:46.176000px;}
.ws22{word-spacing:46.320000px;}
.ws23{word-spacing:60.528000px;}
.ws9c{word-spacing:93.180600px;}
.ws72{word-spacing:188.784000px;}
.ws34{word-spacing:231.144252px;}
.ws75{word-spacing:276.816000px;}
.ws74{word-spacing:282.144000px;}
.ws33{word-spacing:297.050397px;}
.ws35{word-spacing:409.229886px;}
.ws9b{word-spacing:428.976000px;}
._6{margin-left:-2898.126000px;}
._28{margin-left:-2874.309000px;}
._3e{margin-left:-10.620000px;}
._29{margin-left:-7.620000px;}
._5{margin-left:-5.700000px;}
._1{margin-left:-4.416000px;}
._0{margin-left:-3.192000px;}
._2{margin-left:-1.680000px;}
._3{width:1.008000px;}
._4{width:2.832000px;}
._2b{width:4.680000px;}
._2a{width:5.880000px;}
._32{width:7.020000px;}
._34{width:8.700000px;}
._33{width:10.980000px;}
._7{width:38.179200px;}
._c{width:41.472000px;}
._18{width:59.472000px;}
._23{width:61.248000px;}
._1b{width:73.056000px;}
._26{width:85.488000px;}
._19{width:86.496000px;}
._1d{width:88.272000px;}
._1a{width:93.648000px;}
._f{width:98.688000px;}
._16{width:101.616000px;}
._e{width:103.776000px;}
._1c{width:107.136000px;}
._21{width:110.256000px;}
._20{width:114.816000px;}
._b{width:116.112000px;}
._13{width:118.416000px;}
._10{width:121.056000px;}
._12{width:122.400000px;}
._3d{width:129.843600px;}
._d{width:134.112000px;}
._14{width:153.744000px;}
._11{width:157.296000px;}
._a{width:159.792000px;}
._1e{width:167.712000px;}
._24{width:170.256000px;}
._1f{width:172.944000px;}
._15{width:175.584000px;}
._22{width:178.272000px;}
._17{width:181.056000px;}
._25{width:183.600000px;}
._35{width:196.752000px;}
._8{width:254.304000px;}
._9{width:259.440000px;}
._30{width:282.033807px;}
._31{width:305.615415px;}
._2e{width:315.014688px;}
._2d{width:317.795538px;}
._38{width:343.680000px;}
._2f{width:363.679563px;}
._2c{width:366.349179px;}
._3c{width:368.443200px;}
._36{width:403.872000px;}
._3b{width:442.320000px;}
._37{width:539.280000px;}
._3a{width:637.920000px;}
._27{width:837.552000px;}
._39{width:1189.920000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:28.800000px;}
.fs7{font-size:36.000000px;}
.fs2{font-size:39.600000px;}
.fs4{font-size:48.000000px;}
.fs9{font-size:48.936000px;}
.fsa{font-size:50.640600px;}
.fs6{font-size:51.000000px;}
.fs8{font-size:55.617000px;}
.fs5{font-size:60.000000px;}
.fsb{font-size:60.768600px;}
.fs1{font-size:66.000000px;}
.fsc{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y1f3{bottom:83.228850px;}
.y61{bottom:83.363850px;}
.y1db{bottom:83.378850px;}
.y2b{bottom:83.493900px;}
.y1a5{bottom:83.502600px;}
.y6b{bottom:83.513850px;}
.y109{bottom:83.517600px;}
.ya5{bottom:84.225300px;}
.y128{bottom:90.521700px;}
.y21b{bottom:91.796700px;}
.y82{bottom:91.967400px;}
.y159{bottom:92.782350px;}
.y126{bottom:94.167300px;}
.y25a{bottom:94.938300px;}
.y111{bottom:97.630800px;}
.ya4{bottom:99.969300px;}
.y1f2{bottom:101.228850px;}
.y60{bottom:101.363850px;}
.y1da{bottom:101.378850px;}
.y1a4{bottom:101.502600px;}
.y6a{bottom:101.513850px;}
.y108{bottom:101.517600px;}
.y127{bottom:106.265700px;}
.y21a{bottom:106.796700px;}
.y158{bottom:109.282350px;}
.y259{bottom:109.938300px;}
.y125{bottom:110.667300px;}
.y110{bottom:113.374800px;}
.ya3{bottom:115.713300px;}
.y1f1{bottom:119.228850px;}
.y5f{bottom:119.363850px;}
.y1d9{bottom:119.378850px;}
.y1a3{bottom:119.502600px;}
.y69{bottom:119.513850px;}
.y107{bottom:119.517600px;}
.y219{bottom:121.796700px;}
.y81{bottom:124.475400px;}
.y258{bottom:124.938300px;}
.y157{bottom:125.782350px;}
.y124{bottom:127.167300px;}
.y10f{bottom:129.118800px;}
.y12b{bottom:130.690500px;}
.ya2{bottom:131.457300px;}
.y137{bottom:135.668894px;}
.y218{bottom:136.796700px;}
.y1f0{bottom:137.228850px;}
.y5e{bottom:137.363850px;}
.y1d8{bottom:137.378850px;}
.y1a2{bottom:137.502600px;}
.y68{bottom:137.513850px;}
.y106{bottom:137.517600px;}
.y257{bottom:139.938300px;}
.y80{bottom:140.762850px;}
.y156{bottom:142.282350px;}
.y123{bottom:143.667300px;}
.y10e{bottom:144.862800px;}
.y1d{bottom:146.466300px;}
.ya1{bottom:147.201300px;}
.y142{bottom:151.123490px;}
.y217{bottom:151.796700px;}
.y256{bottom:154.938300px;}
.y1ef{bottom:155.228850px;}
.y5d{bottom:155.363850px;}
.y1d7{bottom:155.378850px;}
.y1a1{bottom:155.502600px;}
.y67{bottom:155.513850px;}
.y105{bottom:155.517600px;}
.y7f{bottom:157.010850px;}
.y155{bottom:158.782350px;}
.y122{bottom:160.167300px;}
.y10d{bottom:160.606800px;}
.ya0{bottom:162.945300px;}
.y216{bottom:166.796700px;}
.y144{bottom:169.566760px;}
.y255{bottom:169.938300px;}
.y136{bottom:170.352572px;}
.y1ee{bottom:173.228850px;}
.y7e{bottom:173.258850px;}
.y5c{bottom:173.363850px;}
.y1d6{bottom:173.378850px;}
.y1a0{bottom:173.502600px;}
.y66{bottom:173.513850px;}
.y104{bottom:173.517600px;}
.y154{bottom:175.030350px;}
.y10c{bottom:176.350800px;}
.y121{bottom:176.667300px;}
.y9f{bottom:178.689300px;}
.y215{bottom:181.796700px;}
.y254{bottom:184.938300px;}
.y7d{bottom:189.506850px;}
.y1ed{bottom:191.228850px;}
.y5b{bottom:191.363850px;}
.y1d5{bottom:191.378850px;}
.y19f{bottom:191.502600px;}
.y65{bottom:191.513850px;}
.y103{bottom:191.517600px;}
.y153{bottom:191.530350px;}
.y10b{bottom:192.094800px;}
.y120{bottom:193.167300px;}
.y9e{bottom:194.433300px;}
.y214{bottom:196.796700px;}
.y27{bottom:199.375500px;}
.y253{bottom:199.938300px;}
.y135{bottom:205.036251px;}
.y7c{bottom:205.754850px;}
.y10a{bottom:207.838800px;}
.y152{bottom:208.030350px;}
.y1ec{bottom:209.228850px;}
.y5a{bottom:209.363850px;}
.y1d4{bottom:209.378850px;}
.y19e{bottom:209.502600px;}
.y64{bottom:209.513850px;}
.y102{bottom:209.517600px;}
.y11f{bottom:209.660100px;}
.y9d{bottom:210.177300px;}
.y213{bottom:211.796700px;}
.y252{bottom:214.938300px;}
.y145{bottom:216.738386px;}
.y26{bottom:217.375500px;}
.y7b{bottom:222.002850px;}
.y151{bottom:224.530350px;}
.y11e{bottom:226.160100px;}
.y212{bottom:226.796700px;}
.y1eb{bottom:227.228850px;}
.y59{bottom:227.363850px;}
.yca{bottom:227.378850px;}
.y141{bottom:227.433660px;}
.y19d{bottom:227.502600px;}
.y83{bottom:227.513850px;}
.y101{bottom:227.517600px;}
.y251{bottom:229.938300px;}
.y25{bottom:235.375500px;}
.y7a{bottom:238.250850px;}
.y134{bottom:239.719929px;}
.y150{bottom:241.030350px;}
.y211{bottom:241.796700px;}
.y11d{bottom:242.660100px;}
.y250{bottom:244.938300px;}
.y1ea{bottom:245.228850px;}
.y58{bottom:245.363850px;}
.y1d3{bottom:245.378850px;}
.y19c{bottom:245.502600px;}
.y63{bottom:245.513850px;}
.y100{bottom:245.517600px;}
.y24{bottom:253.375500px;}
.y79{bottom:254.498850px;}
.y210{bottom:256.796700px;}
.y14f{bottom:257.278350px;}
.y11c{bottom:259.160100px;}
.y24f{bottom:259.938300px;}
.y1e9{bottom:263.228850px;}
.y57{bottom:263.363850px;}
.y1d2{bottom:263.378850px;}
.y19b{bottom:263.502600px;}
.y9c{bottom:263.513850px;}
.yff{bottom:263.517600px;}
.y78{bottom:270.746850px;}
.y23{bottom:271.375500px;}
.y20f{bottom:271.796700px;}
.y14e{bottom:273.778350px;}
.y133{bottom:274.403608px;}
.y24e{bottom:274.938300px;}
.y11b{bottom:275.660100px;}
.y168{bottom:277.712550px;}
.y1e8{bottom:281.228850px;}
.y56{bottom:281.363850px;}
.y1d1{bottom:281.378850px;}
.y19a{bottom:281.502600px;}
.y9b{bottom:281.513850px;}
.yfe{bottom:281.517600px;}
.y20e{bottom:286.796700px;}
.y22{bottom:289.375500px;}
.y24d{bottom:289.938300px;}
.y14d{bottom:290.278350px;}
.y11a{bottom:292.160100px;}
.y1e7{bottom:299.228850px;}
.y55{bottom:299.363850px;}
.y1d0{bottom:299.378850px;}
.y199{bottom:299.502600px;}
.yc9{bottom:299.513850px;}
.yfd{bottom:299.517600px;}
.y77{bottom:299.750850px;}
.y20d{bottom:301.796700px;}
.y24c{bottom:304.938300px;}
.y14c{bottom:306.778350px;}
.y21{bottom:307.375500px;}
.y119{bottom:308.408100px;}
.y132{bottom:309.087286px;}
.y20c{bottom:316.796700px;}
.y1e6{bottom:317.228850px;}
.y54{bottom:317.363850px;}
.y1cf{bottom:317.378850px;}
.y198{bottom:317.502600px;}
.y9a{bottom:317.513850px;}
.yfc{bottom:317.517600px;}
.y24b{bottom:319.938300px;}
.y14b{bottom:323.278350px;}
.y118{bottom:324.668100px;}
.y20{bottom:325.375500px;}
.y76{bottom:328.754850px;}
.y20b{bottom:331.796700px;}
.y24a{bottom:334.938300px;}
.y1e5{bottom:335.228850px;}
.y53{bottom:335.363850px;}
.y1ce{bottom:335.378850px;}
.y197{bottom:335.502600px;}
.yc8{bottom:335.513850px;}
.y1c8{bottom:335.517600px;}
.y14a{bottom:339.526350px;}
.y117{bottom:341.168100px;}
.y1f{bottom:343.375500px;}
.y131{bottom:343.770965px;}
.y20a{bottom:346.796700px;}
.yae{bottom:348.323718px;}
.y140{bottom:348.408750px;}
.y249{bottom:349.938300px;}
.y1e4{bottom:353.228850px;}
.y52{bottom:353.363850px;}
.y1cd{bottom:353.378850px;}
.y196{bottom:353.502600px;}
.yc7{bottom:353.513850px;}
.yfb{bottom:353.517600px;}
.y75{bottom:361.068300px;}
.y28{bottom:361.375500px;}
.y209{bottom:361.796700px;}
.y12c{bottom:363.331650px;}
.y248{bottom:364.938300px;}
.y143{bottom:370.953901px;}
.y149{bottom:371.038350px;}
.y1e3{bottom:371.228850px;}
.y51{bottom:371.363850px;}
.y1cc{bottom:371.378850px;}
.y195{bottom:371.502600px;}
.yc6{bottom:371.513850px;}
.y1c7{bottom:371.517600px;}
.y116{bottom:372.680100px;}
.y208{bottom:376.796700px;}
.y130{bottom:378.454643px;}
.y1e{bottom:379.375500px;}
.y247{bottom:379.938300px;}
.y74{bottom:380.568300px;}
.yb0{bottom:387.797884px;}
.y1e2{bottom:389.228850px;}
.y50{bottom:389.363850px;}
.yfa{bottom:389.367600px;}
.y1cb{bottom:389.378850px;}
.y194{bottom:389.502600px;}
.yc5{bottom:389.513850px;}
.y1c6{bottom:389.517600px;}
.y207{bottom:391.796700px;}
.y246{bottom:394.938300px;}
.y73{bottom:400.068300px;}
.y148{bottom:405.855750px;}
.y206{bottom:406.796700px;}
.y1e1{bottom:407.228850px;}
.y4f{bottom:407.363850px;}
.yf9{bottom:407.367600px;}
.y1ca{bottom:407.378850px;}
.y193{bottom:407.502600px;}
.yc4{bottom:407.513850px;}
.y1c5{bottom:407.517600px;}
.y245{bottom:409.938300px;}
.y12f{bottom:413.138322px;}
.y72{bottom:419.568300px;}
.y205{bottom:421.796700px;}
.y244{bottom:424.938300px;}
.y1e0{bottom:425.228850px;}
.y147{bottom:425.355750px;}
.y4e{bottom:425.363850px;}
.yf8{bottom:425.367600px;}
.y1c9{bottom:425.378850px;}
.y192{bottom:425.502600px;}
.yc3{bottom:425.513850px;}
.y1c4{bottom:425.517600px;}
.y115{bottom:427.013850px;}
.y138{bottom:432.462736px;}
.y204{bottom:436.796700px;}
.y71{bottom:439.068300px;}
.y243{bottom:439.938300px;}
.y1df{bottom:443.228850px;}
.y4d{bottom:443.363850px;}
.yf7{bottom:443.367600px;}
.yd6{bottom:443.378850px;}
.y191{bottom:443.502600px;}
.yc2{bottom:443.513850px;}
.y1c3{bottom:443.517600px;}
.y146{bottom:444.855750px;}
.y12e{bottom:447.822000px;}
.y203{bottom:451.796700px;}
.y1c{bottom:453.555900px;}
.y242{bottom:454.938300px;}
.y70{bottom:458.568300px;}
.y1de{bottom:461.228850px;}
.y4c{bottom:461.363850px;}
.yf6{bottom:461.367600px;}
.yd5{bottom:461.378850px;}
.y190{bottom:461.502600px;}
.yc1{bottom:461.513850px;}
.y1c2{bottom:461.517600px;}
.y129{bottom:464.842800px;}
.y202{bottom:466.796700px;}
.y241{bottom:469.938300px;}
.yad{bottom:477.827903px;}
.yaf{bottom:478.829009px;}
.y1dd{bottom:479.228850px;}
.y4b{bottom:479.363850px;}
.yf5{bottom:479.367600px;}
.yd4{bottom:479.378850px;}
.y18f{bottom:479.502600px;}
.yc0{bottom:479.513850px;}
.y1c1{bottom:479.517600px;}
.y201{bottom:481.796700px;}
.y240{bottom:484.938300px;}
.y1b{bottom:486.411900px;}
.y15b{bottom:490.810350px;}
.y12d{bottom:494.022150px;}
.y114{bottom:494.094900px;}
.y200{bottom:496.796700px;}
.y4a{bottom:497.363850px;}
.yf4{bottom:497.367600px;}
.yd3{bottom:497.378850px;}
.y18e{bottom:497.502600px;}
.ybf{bottom:497.513850px;}
.y1c0{bottom:497.517600px;}
.y23f{bottom:499.938300px;}
.y1a{bottom:501.411900px;}
.y6e{bottom:505.922850px;}
.y15a{bottom:506.554350px;}
.y139{bottom:511.122900px;}
.y1ff{bottom:511.796700px;}
.y23e{bottom:514.938300px;}
.y1dc{bottom:515.228850px;}
.y49{bottom:515.363850px;}
.yf3{bottom:515.367600px;}
.yd2{bottom:515.378850px;}
.y18d{bottom:515.502600px;}
.ybe{bottom:515.513850px;}
.y1bf{bottom:515.517600px;}
.y19{bottom:516.411900px;}
.y6d{bottom:521.669700px;}
.y12a{bottom:526.142250px;}
.y1fe{bottom:526.796700px;}
.y167{bottom:529.639500px;}
.y23d{bottom:529.938300px;}
.y18{bottom:531.411900px;}
.y48{bottom:533.363850px;}
.yf2{bottom:533.367600px;}
.yd1{bottom:533.378850px;}
.y18c{bottom:533.502600px;}
.ybd{bottom:533.513850px;}
.y1be{bottom:533.517600px;}
.y15d{bottom:536.458350px;}
.y1fd{bottom:541.796700px;}
.y23c{bottom:544.938300px;}
.y17{bottom:546.411900px;}
.y47{bottom:551.363850px;}
.yf1{bottom:551.367600px;}
.yd0{bottom:551.378850px;}
.y18b{bottom:551.502600px;}
.ybc{bottom:551.513850px;}
.y1bd{bottom:551.517600px;}
.y13f{bottom:555.822225px;}
.y1fc{bottom:556.796700px;}
.y23b{bottom:559.938300px;}
.y16{bottom:561.411900px;}
.y46{bottom:569.363850px;}
.yf0{bottom:569.367600px;}
.ycf{bottom:569.378850px;}
.y18a{bottom:569.502600px;}
.ybb{bottom:569.513850px;}
.y1bc{bottom:569.517600px;}
.y13e{bottom:569.748390px;}
.y1fb{bottom:571.796700px;}
.y15e{bottom:571.851900px;}
.y169{bottom:574.851900px;}
.y23a{bottom:574.938300px;}
.y15{bottom:576.411900px;}
.yac{bottom:579.634821px;}
.y13d{bottom:583.674555px;}
.y1fa{bottom:586.796700px;}
.y45{bottom:587.363850px;}
.yef{bottom:587.367600px;}
.yce{bottom:587.378850px;}
.y189{bottom:587.502600px;}
.yba{bottom:587.513850px;}
.y1bb{bottom:587.517600px;}
.y239{bottom:589.938300px;}
.y14{bottom:591.411900px;}
.y13c{bottom:597.600720px;}
.y1f9{bottom:601.796700px;}
.y238{bottom:604.938300px;}
.y44{bottom:605.363850px;}
.yee{bottom:605.367600px;}
.y99{bottom:605.378850px;}
.y188{bottom:605.502600px;}
.yb9{bottom:605.513850px;}
.y1ba{bottom:605.517600px;}
.y13{bottom:606.411900px;}
.y13b{bottom:611.526885px;}
.y1f8{bottom:616.796700px;}
.y15f{bottom:618.351900px;}
.y237{bottom:619.938300px;}
.y170{bottom:621.331200px;}
.y12{bottom:621.411900px;}
.ya9{bottom:622.487720px;}
.y43{bottom:623.363850px;}
.yed{bottom:623.367600px;}
.ycd{bottom:623.378850px;}
.yab{bottom:623.488826px;}
.y187{bottom:623.502600px;}
.yb8{bottom:623.513850px;}
.y1b9{bottom:623.517600px;}
.y13a{bottom:625.453050px;}
.y1f7{bottom:631.796700px;}
.y236{bottom:634.938300px;}
.y11{bottom:636.411900px;}
.y42{bottom:641.363850px;}
.yec{bottom:641.367600px;}
.y98{bottom:641.378850px;}
.y186{bottom:641.502600px;}
.yb7{bottom:641.513850px;}
.y1b8{bottom:641.517600px;}
.y1f6{bottom:646.796700px;}
.y235{bottom:649.938300px;}
.y10{bottom:651.411900px;}
.y62{bottom:659.228850px;}
.y41{bottom:659.363850px;}
.yeb{bottom:659.367600px;}
.y97{bottom:659.378850px;}
.y185{bottom:659.502600px;}
.yb6{bottom:659.513850px;}
.y1b7{bottom:659.517600px;}
.y1f5{bottom:661.796700px;}
.y160{bottom:664.851900px;}
.y234{bottom:664.938300px;}
.yf{bottom:666.411900px;}
.y40{bottom:677.363850px;}
.yea{bottom:677.367600px;}
.y96{bottom:677.378850px;}
.y184{bottom:677.502600px;}
.yb5{bottom:677.513850px;}
.y1b6{bottom:677.517600px;}
.y233{bottom:679.938300px;}
.ye{bottom:681.411900px;}
.y232{bottom:694.938300px;}
.y1f4{bottom:695.243850px;}
.y3f{bottom:695.363850px;}
.ye9{bottom:695.367600px;}
.y95{bottom:695.378850px;}
.y183{bottom:695.502600px;}
.yb4{bottom:695.513850px;}
.y1b5{bottom:695.517600px;}
.yd{bottom:696.411900px;}
.y231{bottom:709.938300px;}
.y161{bottom:711.351900px;}
.yc{bottom:711.411900px;}
.y3e{bottom:713.363850px;}
.ye8{bottom:713.367600px;}
.y94{bottom:713.378850px;}
.y182{bottom:713.502600px;}
.y1b4{bottom:713.517600px;}
.y16f{bottom:721.201200px;}
.y230{bottom:724.938300px;}
.yb{bottom:726.411900px;}
.y3d{bottom:731.363850px;}
.ye7{bottom:731.367600px;}
.y93{bottom:731.378850px;}
.y181{bottom:731.502600px;}
.yb3{bottom:731.513850px;}
.y1b3{bottom:731.517600px;}
.ya8{bottom:738.087654px;}
.yaa{bottom:739.088760px;}
.y22f{bottom:739.938300px;}
.ya{bottom:741.411900px;}
.y3c{bottom:749.363850px;}
.ye6{bottom:749.367600px;}
.y92{bottom:749.378850px;}
.y180{bottom:749.502600px;}
.y1b2{bottom:749.517600px;}
.y22e{bottom:754.938300px;}
.y9{bottom:756.411900px;}
.y162{bottom:757.852050px;}
.y113{bottom:760.902900px;}
.y3b{bottom:767.363850px;}
.ye5{bottom:767.367600px;}
.y91{bottom:767.378850px;}
.y17f{bottom:767.502600px;}
.y1b1{bottom:767.517600px;}
.y22d{bottom:769.938300px;}
.y8{bottom:771.411900px;}
.y22c{bottom:784.938300px;}
.y3a{bottom:785.363850px;}
.ye4{bottom:785.367600px;}
.ycc{bottom:785.378850px;}
.y17e{bottom:785.502600px;}
.y1b0{bottom:785.517600px;}
.y7{bottom:786.411900px;}
.y22b{bottom:799.938300px;}
.y39{bottom:803.363850px;}
.ye3{bottom:803.367600px;}
.y90{bottom:803.378850px;}
.y17d{bottom:803.502600px;}
.y1af{bottom:803.517600px;}
.y163{bottom:804.352050px;}
.y22a{bottom:814.938300px;}
.y172{bottom:819.631200px;}
.y38{bottom:821.363850px;}
.ye2{bottom:821.367600px;}
.ycb{bottom:821.378850px;}
.y17c{bottom:821.502600px;}
.y1ae{bottom:821.517600px;}
.y15c{bottom:829.852050px;}
.y229{bottom:829.938300px;}
.y16e{bottom:833.686200px;}
.y6{bottom:834.939900px;}
.y37{bottom:839.363850px;}
.ye1{bottom:839.367600px;}
.y8f{bottom:839.378850px;}
.y17b{bottom:839.502600px;}
.y1ad{bottom:839.517600px;}
.y228{bottom:844.938300px;}
.y36{bottom:857.363850px;}
.ye0{bottom:857.367600px;}
.y8e{bottom:857.378850px;}
.y17a{bottom:857.502600px;}
.y1ac{bottom:857.517600px;}
.y227{bottom:859.938300px;}
.y16c{bottom:873.061200px;}
.y5{bottom:873.773850px;}
.y226{bottom:874.938300px;}
.y35{bottom:875.363850px;}
.ydf{bottom:875.367600px;}
.y8d{bottom:875.378850px;}
.y179{bottom:875.502600px;}
.y1ab{bottom:875.517600px;}
.y16d{bottom:879.061200px;}
.yb1{bottom:885.375374px;}
.ya7{bottom:886.348672px;}
.y225{bottom:889.938300px;}
.y4{bottom:890.273850px;}
.y34{bottom:893.363850px;}
.yde{bottom:893.367600px;}
.y8c{bottom:893.378850px;}
.y178{bottom:893.502600px;}
.y1aa{bottom:893.517600px;}
.y164{bottom:897.352050px;}
.y224{bottom:904.938300px;}
.y3{bottom:905.541300px;}
.y33{bottom:911.363850px;}
.ydd{bottom:911.367600px;}
.y8b{bottom:911.378850px;}
.y177{bottom:911.502600px;}
.y1a9{bottom:911.517600px;}
.y223{bottom:919.938300px;}
.y32{bottom:929.363850px;}
.ydc{bottom:929.367600px;}
.y8a{bottom:929.378850px;}
.y176{bottom:929.502600px;}
.y2{bottom:932.936700px;}
.y222{bottom:934.938300px;}
.y165{bottom:943.851900px;}
.y31{bottom:947.363850px;}
.ydb{bottom:947.367600px;}
.y89{bottom:947.378850px;}
.y175{bottom:947.502600px;}
.y1a8{bottom:947.517600px;}
.y221{bottom:949.938300px;}
.y1{bottom:959.936700px;}
.y220{bottom:964.938300px;}
.y30{bottom:965.363850px;}
.yda{bottom:965.367600px;}
.y88{bottom:965.378850px;}
.y1a7{bottom:965.517600px;}
.y16b{bottom:968.311200px;}
.y21f{bottom:979.938300px;}
.y171{bottom:980.296200px;}
.y2f{bottom:983.363850px;}
.yd9{bottom:983.367600px;}
.y87{bottom:983.378850px;}
.y174{bottom:983.502600px;}
.y166{bottom:990.351900px;}
.y21e{bottom:994.938300px;}
.y16a{bottom:998.881200px;}
.y2e{bottom:1001.363850px;}
.yd8{bottom:1001.367600px;}
.y86{bottom:1001.378850px;}
.y173{bottom:1001.502600px;}
.y21d{bottom:1009.938300px;}
.y6f{bottom:1017.615600px;}
.y2d{bottom:1019.363850px;}
.y1a6{bottom:1019.367600px;}
.y85{bottom:1019.378850px;}
.ya6{bottom:1021.066950px;}
.yb2{bottom:1022.081960px;}
.y21c{bottom:1024.938300px;}
.y2c{bottom:1037.363850px;}
.yd7{bottom:1037.367600px;}
.y84{bottom:1037.378850px;}
.y112{bottom:1039.938300px;}
.y2a{bottom:1070.769450px;}
.y6c{bottom:1086.066450px;}
.y29{bottom:1086.069450px;}
.h4{height:20.967187px;}
.h11{height:33.978023px;}
.h5{height:34.945312px;}
.h7{height:34.968750px;}
.h8{height:35.580600px;}
.h6{height:35.625000px;}
.h12{height:37.584820px;}
.hb{height:37.851562px;}
.hc{height:38.640000px;}
.h10{height:39.974719px;}
.h9{height:43.681641px;}
.hd{height:43.710938px;}
.hf{height:43.923526px;}
.ha{height:44.531250px;}
.h14{height:45.101695px;}
.he{height:47.254350px;}
.h17{height:50.400000px;}
.h3{height:52.046025px;}
.h2{height:61.154297px;}
.h15{height:62.343750px;}
.h18{height:85.391250px;}
.h16{height:499.336500px;}
.h13{height:521.986500px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w3{width:670.113000px;}
.w2{width:718.582500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x37{left:10.864050px;}
.x51{left:18.022350px;}
.x9{left:76.535400px;}
.x1f{left:78.661350px;}
.x7{left:96.094500px;}
.x1{left:97.795350px;}
.x10{left:99.921150px;}
.x61{left:106.299150px;}
.x48{left:107.626818px;}
.xa{left:110.555400px;}
.x63{left:127.559100px;}
.x4d{left:128.997300px;}
.x4{left:131.816400px;}
.x38{left:144.107850px;}
.x46{left:149.845802px;}
.x14{left:158.663918px;}
.x2{left:161.571600px;}
.x44{left:163.315391px;}
.x11{left:165.801150px;}
.x53{left:170.766600px;}
.x58{left:174.306600px;}
.x39{left:179.556270px;}
.x49{left:191.329350px;}
.x1d{left:211.096200px;}
.x3{left:212.876400px;}
.x3a{left:215.004690px;}
.x5c{left:220.137450px;}
.x20{left:223.249350px;}
.x47{left:230.683233px;}
.xf{left:233.513850px;}
.x36{left:238.206750px;}
.x13{left:242.831167px;}
.x3b{left:250.453110px;}
.x3c{left:285.901530px;}
.x1c{left:291.449083px;}
.x15{left:312.205889px;}
.x18{left:316.084757px;}
.x3d{left:321.349950px;}
.x54{left:345.561600px;}
.x3e{left:356.798370px;}
.x57{left:360.366600px;}
.x56{left:372.066600px;}
.x4a{left:374.185350px;}
.x3f{left:392.246790px;}
.x4f{left:410.733600px;}
.x50{left:416.727750px;}
.x40{left:427.695210px;}
.x4e{left:430.409400px;}
.x19{left:433.854952px;}
.x55{left:436.071600px;}
.x41{left:447.788400px;}
.x42{left:449.064541px;}
.x43{left:451.571245px;}
.x8{left:455.041500px;}
.xb{left:457.085400px;}
.x16{left:474.603912px;}
.x1e{left:478.346400px;}
.x5{left:480.476400px;}
.x21{left:485.012100px;}
.x62{left:486.795150px;}
.xc{left:491.105400px;}
.x22{left:499.692900px;}
.x60{left:508.106400px;}
.x5d{left:512.367450px;}
.x6{left:514.496400px;}
.xd{left:525.275400px;}
.x23{left:529.054500px;}
.x1a{left:544.590355px;}
.x4c{left:557.029350px;}
.x24{left:558.416100px;}
.x25{left:573.096900px;}
.x26{left:587.777700px;}
.x5f{left:596.095350px;}
.x27{left:602.458500px;}
.x45{left:606.667800px;}
.x28{left:617.139300px;}
.x17{left:619.136901px;}
.x29{left:631.820100px;}
.x1b{left:642.952312px;}
.x2a{left:646.500900px;}
.x2b{left:661.181700px;}
.x5a{left:664.101600px;}
.x52{left:667.663500px;}
.x2c{left:675.862500px;}
.x59{left:687.411600px;}
.x2d{left:690.543300px;}
.x2e{left:705.224100px;}
.x5b{left:717.130200px;}
.x2f{left:719.904900px;}
.xe{left:724.221150px;}
.x30{left:734.585700px;}
.x5e{left:739.336350px;}
.x4b{left:740.929350px;}
.x12{left:745.480950px;}
.x31{left:749.266500px;}
.x32{left:763.947300px;}
.x33{left:778.628100px;}
.x34{left:793.308900px;}
.x35{left:807.989700px;}
@media print{
.v2{vertical-align:-14.641600pt;}
.v4{vertical-align:-3.079467pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.440000pt;}
.v6{vertical-align:3.510051pt;}
.v5{vertical-align:18.253867pt;}
.v1{vertical-align:20.138133pt;}
.v7{vertical-align:36.320000pt;}
.lsa7{letter-spacing:-2.346667pt;}
.ls1b{letter-spacing:-0.853333pt;}
.ls7e{letter-spacing:-0.373333pt;}
.ls83{letter-spacing:-0.320000pt;}
.ls43{letter-spacing:-0.266667pt;}
.lsa8{letter-spacing:-0.256000pt;}
.ls67{letter-spacing:-0.213333pt;}
.ls47{letter-spacing:-0.170667pt;}
.ls58{letter-spacing:-0.160000pt;}
.lsa9{letter-spacing:-0.128000pt;}
.ls66{letter-spacing:-0.106667pt;}
.ls44{letter-spacing:-0.053333pt;}
.ls1a{letter-spacing:-0.042667pt;}
.ls19{letter-spacing:0.000000pt;}
.ls54{letter-spacing:0.000533pt;}
.ls0{letter-spacing:0.003733pt;}
.ls53{letter-spacing:0.005333pt;}
.ls2{letter-spacing:0.042667pt;}
.ls1f{letter-spacing:0.053333pt;}
.ls7{letter-spacing:0.085333pt;}
.ls3e{letter-spacing:0.106667pt;}
.ls5c{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.170667pt;}
.ls13{letter-spacing:0.213333pt;}
.ls92{letter-spacing:0.256000pt;}
.ls2e{letter-spacing:0.266667pt;}
.ls6e{letter-spacing:0.298667pt;}
.lsa{letter-spacing:0.320000pt;}
.lsaa{letter-spacing:0.341333pt;}
.ls45{letter-spacing:0.373333pt;}
.ls3{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls8{letter-spacing:0.469333pt;}
.ls40{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.533333pt;}
.ls75{letter-spacing:0.554667pt;}
.ls52{letter-spacing:0.586667pt;}
.ls9f{letter-spacing:0.597333pt;}
.ls27{letter-spacing:0.640000pt;}
.ls74{letter-spacing:0.682667pt;}
.ls11{letter-spacing:0.693333pt;}
.ls4{letter-spacing:0.725333pt;}
.ls37{letter-spacing:0.746667pt;}
.ls9e{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls9a{letter-spacing:0.810667pt;}
.ls6{letter-spacing:0.853333pt;}
.ls72{letter-spacing:0.896000pt;}
.ls16{letter-spacing:0.906667pt;}
.ls98{letter-spacing:0.938667pt;}
.ls18{letter-spacing:0.960000pt;}
.ls6d{letter-spacing:0.981333pt;}
.ls17{letter-spacing:1.013333pt;}
.ls94{letter-spacing:1.024000pt;}
.ls22{letter-spacing:1.066667pt;}
.ls20{letter-spacing:1.120000pt;}
.ls9b{letter-spacing:1.152000pt;}
.lsc{letter-spacing:1.173333pt;}
.lsa3{letter-spacing:1.194667pt;}
.ls29{letter-spacing:1.226667pt;}
.lsa2{letter-spacing:1.237333pt;}
.ls4b{letter-spacing:1.280000pt;}
.ls8e{letter-spacing:1.322667pt;}
.ls61{letter-spacing:1.333333pt;}
.ls3f{letter-spacing:1.386667pt;}
.ls91{letter-spacing:1.408000pt;}
.ls42{letter-spacing:1.440000pt;}
.ls1{letter-spacing:1.450667pt;}
.ls33{letter-spacing:1.493333pt;}
.ls5a{letter-spacing:1.536000pt;}
.ls34{letter-spacing:1.546667pt;}
.ls5b{letter-spacing:1.578667pt;}
.ls5e{letter-spacing:1.600000pt;}
.ls95{letter-spacing:1.621333pt;}
.ls3a{letter-spacing:1.653333pt;}
.ls93{letter-spacing:1.664000pt;}
.ls36{letter-spacing:1.706667pt;}
.lsa1{letter-spacing:1.749333pt;}
.ls2f{letter-spacing:1.760000pt;}
.lsad{letter-spacing:1.792000pt;}
.ls12{letter-spacing:1.813333pt;}
.ls76{letter-spacing:1.834667pt;}
.lsb{letter-spacing:1.866667pt;}
.ls49{letter-spacing:1.920000pt;}
.ls71{letter-spacing:1.962667pt;}
.ls2d{letter-spacing:1.973333pt;}
.lsaf{letter-spacing:2.005333pt;}
.lse{letter-spacing:2.026667pt;}
.ls8f{letter-spacing:2.048000pt;}
.ls32{letter-spacing:2.080000pt;}
.ls97{letter-spacing:2.090667pt;}
.ls14{letter-spacing:2.133333pt;}
.ls9c{letter-spacing:2.176000pt;}
.ls10{letter-spacing:2.186667pt;}
.ls41{letter-spacing:2.240000pt;}
.ls8c{letter-spacing:2.261333pt;}
.ls1e{letter-spacing:2.293333pt;}
.ls73{letter-spacing:2.304000pt;}
.lsf{letter-spacing:2.346667pt;}
.ls23{letter-spacing:2.400000pt;}
.lsa4{letter-spacing:2.432000pt;}
.ls3c{letter-spacing:2.453333pt;}
.ls3b{letter-spacing:2.506667pt;}
.ls55{letter-spacing:2.560000pt;}
.ls30{letter-spacing:2.613333pt;}
.ls28{letter-spacing:2.666667pt;}
.ls99{letter-spacing:2.688000pt;}
.ls1d{letter-spacing:2.720000pt;}
.lsa0{letter-spacing:2.730667pt;}
.ls78{letter-spacing:2.773333pt;}
.ls2b{letter-spacing:2.826667pt;}
.ls65{letter-spacing:2.880000pt;}
.ls4c{letter-spacing:2.933333pt;}
.ls48{letter-spacing:2.986667pt;}
.ls8d{letter-spacing:3.029333pt;}
.ls39{letter-spacing:3.040000pt;}
.ls26{letter-spacing:3.093333pt;}
.ls96{letter-spacing:3.114667pt;}
.ls35{letter-spacing:3.146667pt;}
.ls25{letter-spacing:3.200000pt;}
.ls24{letter-spacing:3.253333pt;}
.ls21{letter-spacing:3.306667pt;}
.lsa5{letter-spacing:3.328000pt;}
.ls70{letter-spacing:3.360000pt;}
.ls90{letter-spacing:3.370667pt;}
.ls50{letter-spacing:3.413333pt;}
.ls15{letter-spacing:3.466667pt;}
.ls56{letter-spacing:3.520000pt;}
.ls4e{letter-spacing:3.573333pt;}
.lsab{letter-spacing:3.584000pt;}
.ls4a{letter-spacing:3.626667pt;}
.ls7b{letter-spacing:3.680000pt;}
.ls2a{letter-spacing:3.733333pt;}
.ls60{letter-spacing:3.786667pt;}
.ls9d{letter-spacing:3.797333pt;}
.ls84{letter-spacing:3.840000pt;}
.lsae{letter-spacing:3.882667pt;}
.ls31{letter-spacing:3.893333pt;}
.ls3d{letter-spacing:3.946667pt;}
.ls7d{letter-spacing:4.053333pt;}
.ls80{letter-spacing:4.106667pt;}
.ls4f{letter-spacing:4.213333pt;}
.ls51{letter-spacing:4.266667pt;}
.ls57{letter-spacing:4.426667pt;}
.ls69{letter-spacing:4.480000pt;}
.ls81{letter-spacing:4.533333pt;}
.ls88{letter-spacing:4.586667pt;}
.lsa6{letter-spacing:4.608000pt;}
.ls64{letter-spacing:4.640000pt;}
.lsac{letter-spacing:4.650667pt;}
.ls6b{letter-spacing:4.693333pt;}
.ls77{letter-spacing:4.746667pt;}
.ls6f{letter-spacing:4.853333pt;}
.ls8a{letter-spacing:4.906667pt;}
.ls38{letter-spacing:4.960000pt;}
.ls89{letter-spacing:5.013333pt;}
.ls68{letter-spacing:5.066667pt;}
.ls86{letter-spacing:5.120000pt;}
.ls4d{letter-spacing:5.226667pt;}
.ls6c{letter-spacing:5.333333pt;}
.ls85{letter-spacing:5.440000pt;}
.ls5f{letter-spacing:5.493333pt;}
.ls7c{letter-spacing:5.546667pt;}
.ls8b{letter-spacing:5.600000pt;}
.ls7f{letter-spacing:5.653333pt;}
.ls63{letter-spacing:5.866667pt;}
.ls62{letter-spacing:6.026667pt;}
.ls6a{letter-spacing:6.240000pt;}
.ls59{letter-spacing:6.880000pt;}
.ls82{letter-spacing:7.200000pt;}
.ls87{letter-spacing:8.693333pt;}
.ls7a{letter-spacing:9.440000pt;}
.ls46{letter-spacing:172.891733pt;}
.ls79{letter-spacing:264.160000pt;}
.ls5d{letter-spacing:895.310107pt;}
.ws27{word-spacing:-53.333333pt;}
.ws21{word-spacing:-42.666667pt;}
.ws9e{word-spacing:-24.266667pt;}
.ws42{word-spacing:-20.853333pt;}
.ws43{word-spacing:-20.693333pt;}
.wsa0{word-spacing:-20.373333pt;}
.wsa2{word-spacing:-20.053333pt;}
.ws40{word-spacing:-19.786667pt;}
.ws70{word-spacing:-19.680000pt;}
.ws91{word-spacing:-19.573333pt;}
.ws9f{word-spacing:-19.520000pt;}
.ws46{word-spacing:-19.466667pt;}
.ws6a{word-spacing:-19.040000pt;}
.ws3d{word-spacing:-18.346667pt;}
.ws71{word-spacing:-18.186667pt;}
.ws6e{word-spacing:-18.133333pt;}
.ws68{word-spacing:-18.080000pt;}
.ws90{word-spacing:-17.706667pt;}
.ws49{word-spacing:-17.653333pt;}
.ws10{word-spacing:-17.546667pt;}
.ws47{word-spacing:-17.440000pt;}
.ws92{word-spacing:-17.333333pt;}
.ws66{word-spacing:-17.280000pt;}
.ws69{word-spacing:-17.173333pt;}
.ws4a{word-spacing:-17.120000pt;}
.wsa1{word-spacing:-17.013333pt;}
.wsaa{word-spacing:-16.960000pt;}
.ws48{word-spacing:-16.693333pt;}
.ws12{word-spacing:-16.586667pt;}
.ws94{word-spacing:-16.426667pt;}
.ws28{word-spacing:-16.373333pt;}
.ws65{word-spacing:-16.320000pt;}
.ws67{word-spacing:-16.160000pt;}
.ws95{word-spacing:-16.106667pt;}
.ws45{word-spacing:-15.946667pt;}
.ws3e{word-spacing:-15.733333pt;}
.ws6b{word-spacing:-15.680000pt;}
.ws11{word-spacing:-15.626667pt;}
.ws3f{word-spacing:-15.573333pt;}
.ws44{word-spacing:-15.520000pt;}
.ws4b{word-spacing:-15.466667pt;}
.wsa9{word-spacing:-15.413333pt;}
.ws93{word-spacing:-15.253333pt;}
.ws41{word-spacing:-15.200000pt;}
.ws3b{word-spacing:-15.146667pt;}
.ws6d{word-spacing:-15.093333pt;}
.ws6f{word-spacing:-15.040000pt;}
.ws60{word-spacing:-14.986667pt;}
.wsbb{word-spacing:-14.976000pt;}
.ws6c{word-spacing:-14.933333pt;}
.ws3c{word-spacing:-14.880000pt;}
.ws3a{word-spacing:-14.826667pt;}
.ws77{word-spacing:-14.165333pt;}
.wsbd{word-spacing:-14.037333pt;}
.ws73{word-spacing:-13.824000pt;}
.ws7d{word-spacing:-13.696000pt;}
.ws7c{word-spacing:-12.928000pt;}
.ws76{word-spacing:-12.757333pt;}
.ws7a{word-spacing:-12.714667pt;}
.ws13{word-spacing:-12.602667pt;}
.ws78{word-spacing:-12.544000pt;}
.ws79{word-spacing:-12.416000pt;}
.wsc9{word-spacing:-12.202667pt;}
.ws7b{word-spacing:-12.074667pt;}
.ws2{word-spacing:-11.946667pt;}
.wsca{word-spacing:-11.904000pt;}
.ws1{word-spacing:-11.861333pt;}
.wsbe{word-spacing:-11.818667pt;}
.ws0{word-spacing:-9.785600pt;}
.wsbc{word-spacing:-9.514667pt;}
.wsa7{word-spacing:-9.440000pt;}
.ws56{word-spacing:-5.866667pt;}
.ws55{word-spacing:-4.960000pt;}
.ws97{word-spacing:-4.746667pt;}
.ws5a{word-spacing:-4.640000pt;}
.ws58{word-spacing:-3.946667pt;}
.wsb3{word-spacing:-3.626667pt;}
.ws86{word-spacing:-3.306667pt;}
.ws5e{word-spacing:-3.253333pt;}
.ws8b{word-spacing:-2.304000pt;}
.ws5b{word-spacing:-2.293333pt;}
.wsa8{word-spacing:-2.186667pt;}
.ws1a{word-spacing:-2.133333pt;}
.ws1f{word-spacing:-1.973333pt;}
.ws89{word-spacing:-1.962667pt;}
.ws8f{word-spacing:-1.834667pt;}
.ws5c{word-spacing:-1.493333pt;}
.wsac{word-spacing:-1.280000pt;}
.ws85{word-spacing:-1.066667pt;}
.wsae{word-spacing:-0.906667pt;}
.ws8a{word-spacing:-0.896000pt;}
.ws53{word-spacing:-0.853333pt;}
.wsab{word-spacing:-0.800000pt;}
.wsba{word-spacing:-0.768000pt;}
.ws54{word-spacing:-0.746667pt;}
.ws57{word-spacing:-0.693333pt;}
.ws8c{word-spacing:-0.682667pt;}
.ws5d{word-spacing:-0.640000pt;}
.ws8d{word-spacing:-0.554667pt;}
.ws52{word-spacing:-0.480000pt;}
.ws99{word-spacing:-0.426667pt;}
.wsb9{word-spacing:-0.384000pt;}
.ws2c{word-spacing:-0.373333pt;}
.wsaf{word-spacing:-0.320000pt;}
.ws87{word-spacing:-0.213333pt;}
.ws8e{word-spacing:-0.170667pt;}
.ws62{word-spacing:-0.160000pt;}
.ws39{word-spacing:-0.128000pt;}
.ws84{word-spacing:-0.106667pt;}
.ws37{word-spacing:-0.085333pt;}
.ws88{word-spacing:-0.053333pt;}
.ws96{word-spacing:-0.043499pt;}
.ws32{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.wsb7{word-spacing:0.042667pt;}
.ws8{word-spacing:0.085333pt;}
.ws83{word-spacing:0.106667pt;}
.wsb0{word-spacing:0.160000pt;}
.wsc7{word-spacing:0.170667pt;}
.ws4e{word-spacing:0.213333pt;}
.wsce{word-spacing:0.341333pt;}
.wsa6{word-spacing:0.373333pt;}
.wsc3{word-spacing:0.469333pt;}
.wsf{word-spacing:0.480000pt;}
.wsbf{word-spacing:0.512000pt;}
.ws2d{word-spacing:0.586667pt;}
.wsa4{word-spacing:0.693333pt;}
.wsb5{word-spacing:0.725333pt;}
.ws61{word-spacing:0.746667pt;}
.ws19{word-spacing:0.800000pt;}
.wsd0{word-spacing:0.810667pt;}
.ws2b{word-spacing:0.853333pt;}
.ws26{word-spacing:0.906667pt;}
.wsc6{word-spacing:0.938667pt;}
.ws98{word-spacing:0.960000pt;}
.ws64{word-spacing:0.981333pt;}
.ws51{word-spacing:1.013333pt;}
.ws36{word-spacing:1.024000pt;}
.wsb{word-spacing:1.066667pt;}
.ws80{word-spacing:1.226667pt;}
.ws9d{word-spacing:1.365333pt;}
.wsc1{word-spacing:1.408000pt;}
.ws4c{word-spacing:1.440000pt;}
.wscc{word-spacing:1.450667pt;}
.ws20{word-spacing:1.653333pt;}
.wsc8{word-spacing:1.664000pt;}
.ws4f{word-spacing:1.706667pt;}
.ws6{word-spacing:1.834667pt;}
.ws14{word-spacing:1.866667pt;}
.ws9a{word-spacing:1.877333pt;}
.ws7e{word-spacing:1.920000pt;}
.ws50{word-spacing:1.973333pt;}
.ws4d{word-spacing:2.026667pt;}
.wsb4{word-spacing:2.048000pt;}
.wsa3{word-spacing:2.133333pt;}
.ws1c{word-spacing:2.186667pt;}
.wscd{word-spacing:2.304000pt;}
.wsb8{word-spacing:2.389333pt;}
.wsb6{word-spacing:2.432000pt;}
.wse{word-spacing:2.453333pt;}
.ws38{word-spacing:2.474667pt;}
.wsa{word-spacing:2.517333pt;}
.ws18{word-spacing:2.666667pt;}
.wscf{word-spacing:2.730667pt;}
.ws9{word-spacing:2.816000pt;}
.wsc5{word-spacing:2.858667pt;}
.ws5f{word-spacing:2.933333pt;}
.ws17{word-spacing:3.093333pt;}
.ws16{word-spacing:3.146667pt;}
.ws1e{word-spacing:3.200000pt;}
.wsb2{word-spacing:3.253333pt;}
.ws31{word-spacing:3.306667pt;}
.wscb{word-spacing:3.328000pt;}
.wsc4{word-spacing:3.370667pt;}
.ws7{word-spacing:3.413333pt;}
.ws1d{word-spacing:3.466667pt;}
.wsb1{word-spacing:3.573333pt;}
.wsc0{word-spacing:3.584000pt;}
.ws82{word-spacing:3.626667pt;}
.ws25{word-spacing:3.669333pt;}
.wsad{word-spacing:3.680000pt;}
.ws29{word-spacing:3.786667pt;}
.wsa5{word-spacing:3.840000pt;}
.ws5{word-spacing:3.882667pt;}
.ws4{word-spacing:3.925333pt;}
.ws2a{word-spacing:4.000000pt;}
.ws15{word-spacing:4.213333pt;}
.ws7f{word-spacing:4.266667pt;}
.ws2e{word-spacing:4.426667pt;}
.ws81{word-spacing:4.586667pt;}
.ws30{word-spacing:4.640000pt;}
.ws1b{word-spacing:4.746667pt;}
.ws2f{word-spacing:4.800000pt;}
.wsc{word-spacing:4.853333pt;}
.wsd{word-spacing:4.906667pt;}
.wsc2{word-spacing:6.997333pt;}
.ws63{word-spacing:7.573333pt;}
.ws59{word-spacing:8.853333pt;}
.ws24{word-spacing:41.045333pt;}
.ws22{word-spacing:41.173333pt;}
.ws23{word-spacing:53.802667pt;}
.ws9c{word-spacing:82.827200pt;}
.ws72{word-spacing:167.808000pt;}
.ws34{word-spacing:205.461557pt;}
.ws75{word-spacing:246.058667pt;}
.ws74{word-spacing:250.794667pt;}
.ws33{word-spacing:264.044797pt;}
.ws35{word-spacing:363.759899pt;}
.ws9b{word-spacing:381.312000pt;}
._6{margin-left:-2576.112000pt;}
._28{margin-left:-2554.941333pt;}
._3e{margin-left:-9.440000pt;}
._29{margin-left:-6.773333pt;}
._5{margin-left:-5.066667pt;}
._1{margin-left:-3.925333pt;}
._0{margin-left:-2.837333pt;}
._2{margin-left:-1.493333pt;}
._3{width:0.896000pt;}
._4{width:2.517333pt;}
._2b{width:4.160000pt;}
._2a{width:5.226667pt;}
._32{width:6.240000pt;}
._34{width:7.733333pt;}
._33{width:9.760000pt;}
._7{width:33.937067pt;}
._c{width:36.864000pt;}
._18{width:52.864000pt;}
._23{width:54.442667pt;}
._1b{width:64.938667pt;}
._26{width:75.989333pt;}
._19{width:76.885333pt;}
._1d{width:78.464000pt;}
._1a{width:83.242667pt;}
._f{width:87.722667pt;}
._16{width:90.325333pt;}
._e{width:92.245333pt;}
._1c{width:95.232000pt;}
._21{width:98.005333pt;}
._20{width:102.058667pt;}
._b{width:103.210667pt;}
._13{width:105.258667pt;}
._10{width:107.605333pt;}
._12{width:108.800000pt;}
._3d{width:115.416533pt;}
._d{width:119.210667pt;}
._14{width:136.661333pt;}
._11{width:139.818667pt;}
._a{width:142.037333pt;}
._1e{width:149.077333pt;}
._24{width:151.338667pt;}
._1f{width:153.728000pt;}
._15{width:156.074667pt;}
._22{width:158.464000pt;}
._17{width:160.938667pt;}
._25{width:163.200000pt;}
._35{width:174.890667pt;}
._8{width:226.048000pt;}
._9{width:230.613333pt;}
._30{width:250.696717pt;}
._31{width:271.658147pt;}
._2e{width:280.013056pt;}
._2d{width:282.484923pt;}
._38{width:305.493333pt;}
._2f{width:323.270723pt;}
._2c{width:325.643715pt;}
._3c{width:327.505067pt;}
._36{width:358.997333pt;}
._3b{width:393.173333pt;}
._37{width:479.360000pt;}
._3a{width:567.040000pt;}
._27{width:744.490667pt;}
._39{width:1057.706667pt;}
.fs3{font-size:25.600000pt;}
.fs7{font-size:32.000000pt;}
.fs2{font-size:35.200000pt;}
.fs4{font-size:42.666667pt;}
.fs9{font-size:43.498667pt;}
.fsa{font-size:45.013867pt;}
.fs6{font-size:45.333333pt;}
.fs8{font-size:49.437333pt;}
.fs5{font-size:53.333333pt;}
.fsb{font-size:54.016533pt;}
.fs1{font-size:58.666667pt;}
.fsc{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y1f3{bottom:73.981200pt;}
.y61{bottom:74.101200pt;}
.y1db{bottom:74.114533pt;}
.y2b{bottom:74.216800pt;}
.y1a5{bottom:74.224533pt;}
.y6b{bottom:74.234533pt;}
.y109{bottom:74.237867pt;}
.ya5{bottom:74.866933pt;}
.y128{bottom:80.463733pt;}
.y21b{bottom:81.597067pt;}
.y82{bottom:81.748800pt;}
.y159{bottom:82.473200pt;}
.y126{bottom:83.704267pt;}
.y25a{bottom:84.389600pt;}
.y111{bottom:86.782933pt;}
.ya4{bottom:88.861600pt;}
.y1f2{bottom:89.981200pt;}
.y60{bottom:90.101200pt;}
.y1da{bottom:90.114533pt;}
.y1a4{bottom:90.224533pt;}
.y6a{bottom:90.234533pt;}
.y108{bottom:90.237867pt;}
.y127{bottom:94.458400pt;}
.y21a{bottom:94.930400pt;}
.y158{bottom:97.139867pt;}
.y259{bottom:97.722933pt;}
.y125{bottom:98.370933pt;}
.y110{bottom:100.777600pt;}
.ya3{bottom:102.856267pt;}
.y1f1{bottom:105.981200pt;}
.y5f{bottom:106.101200pt;}
.y1d9{bottom:106.114533pt;}
.y1a3{bottom:106.224533pt;}
.y69{bottom:106.234533pt;}
.y107{bottom:106.237867pt;}
.y219{bottom:108.263733pt;}
.y81{bottom:110.644800pt;}
.y258{bottom:111.056267pt;}
.y157{bottom:111.806533pt;}
.y124{bottom:113.037600pt;}
.y10f{bottom:114.772267pt;}
.y12b{bottom:116.169333pt;}
.ya2{bottom:116.850933pt;}
.y137{bottom:120.594572pt;}
.y218{bottom:121.597067pt;}
.y1f0{bottom:121.981200pt;}
.y5e{bottom:122.101200pt;}
.y1d8{bottom:122.114533pt;}
.y1a2{bottom:122.224533pt;}
.y68{bottom:122.234533pt;}
.y106{bottom:122.237867pt;}
.y257{bottom:124.389600pt;}
.y80{bottom:125.122533pt;}
.y156{bottom:126.473200pt;}
.y123{bottom:127.704267pt;}
.y10e{bottom:128.766933pt;}
.y1d{bottom:130.192267pt;}
.ya1{bottom:130.845600pt;}
.y142{bottom:134.331991pt;}
.y217{bottom:134.930400pt;}
.y256{bottom:137.722933pt;}
.y1ef{bottom:137.981200pt;}
.y5d{bottom:138.101200pt;}
.y1d7{bottom:138.114533pt;}
.y1a1{bottom:138.224533pt;}
.y67{bottom:138.234533pt;}
.y105{bottom:138.237867pt;}
.y7f{bottom:139.565200pt;}
.y155{bottom:141.139867pt;}
.y122{bottom:142.370933pt;}
.y10d{bottom:142.761600pt;}
.ya0{bottom:144.840267pt;}
.y216{bottom:148.263733pt;}
.y144{bottom:150.726009pt;}
.y255{bottom:151.056267pt;}
.y136{bottom:151.424509pt;}
.y1ee{bottom:153.981200pt;}
.y7e{bottom:154.007867pt;}
.y5c{bottom:154.101200pt;}
.y1d6{bottom:154.114533pt;}
.y1a0{bottom:154.224533pt;}
.y66{bottom:154.234533pt;}
.y104{bottom:154.237867pt;}
.y154{bottom:155.582533pt;}
.y10c{bottom:156.756267pt;}
.y121{bottom:157.037600pt;}
.y9f{bottom:158.834933pt;}
.y215{bottom:161.597067pt;}
.y254{bottom:164.389600pt;}
.y7d{bottom:168.450533pt;}
.y1ed{bottom:169.981200pt;}
.y5b{bottom:170.101200pt;}
.y1d5{bottom:170.114533pt;}
.y19f{bottom:170.224533pt;}
.y65{bottom:170.234533pt;}
.y103{bottom:170.237867pt;}
.y153{bottom:170.249200pt;}
.y10b{bottom:170.750933pt;}
.y120{bottom:171.704267pt;}
.y9e{bottom:172.829600pt;}
.y214{bottom:174.930400pt;}
.y27{bottom:177.222667pt;}
.y253{bottom:177.722933pt;}
.y135{bottom:182.254445pt;}
.y7c{bottom:182.893200pt;}
.y10a{bottom:184.745600pt;}
.y152{bottom:184.915867pt;}
.y1ec{bottom:185.981200pt;}
.y5a{bottom:186.101200pt;}
.y1d4{bottom:186.114533pt;}
.y19e{bottom:186.224533pt;}
.y64{bottom:186.234533pt;}
.y102{bottom:186.237867pt;}
.y11f{bottom:186.364533pt;}
.y9d{bottom:186.824267pt;}
.y213{bottom:188.263733pt;}
.y252{bottom:191.056267pt;}
.y145{bottom:192.656343pt;}
.y26{bottom:193.222667pt;}
.y7b{bottom:197.335867pt;}
.y151{bottom:199.582533pt;}
.y11e{bottom:201.031200pt;}
.y212{bottom:201.597067pt;}
.y1eb{bottom:201.981200pt;}
.y59{bottom:202.101200pt;}
.yca{bottom:202.114533pt;}
.y141{bottom:202.163253pt;}
.y19d{bottom:202.224533pt;}
.y83{bottom:202.234533pt;}
.y101{bottom:202.237867pt;}
.y251{bottom:204.389600pt;}
.y25{bottom:209.222667pt;}
.y7a{bottom:211.778533pt;}
.y134{bottom:213.084382pt;}
.y150{bottom:214.249200pt;}
.y211{bottom:214.930400pt;}
.y11d{bottom:215.697867pt;}
.y250{bottom:217.722933pt;}
.y1ea{bottom:217.981200pt;}
.y58{bottom:218.101200pt;}
.y1d3{bottom:218.114533pt;}
.y19c{bottom:218.224533pt;}
.y63{bottom:218.234533pt;}
.y100{bottom:218.237867pt;}
.y24{bottom:225.222667pt;}
.y79{bottom:226.221200pt;}
.y210{bottom:228.263733pt;}
.y14f{bottom:228.691867pt;}
.y11c{bottom:230.364533pt;}
.y24f{bottom:231.056267pt;}
.y1e9{bottom:233.981200pt;}
.y57{bottom:234.101200pt;}
.y1d2{bottom:234.114533pt;}
.y19b{bottom:234.224533pt;}
.y9c{bottom:234.234533pt;}
.yff{bottom:234.237867pt;}
.y78{bottom:240.663867pt;}
.y23{bottom:241.222667pt;}
.y20f{bottom:241.597067pt;}
.y14e{bottom:243.358533pt;}
.y133{bottom:243.914318pt;}
.y24e{bottom:244.389600pt;}
.y11b{bottom:245.031200pt;}
.y168{bottom:246.855600pt;}
.y1e8{bottom:249.981200pt;}
.y56{bottom:250.101200pt;}
.y1d1{bottom:250.114533pt;}
.y19a{bottom:250.224533pt;}
.y9b{bottom:250.234533pt;}
.yfe{bottom:250.237867pt;}
.y20e{bottom:254.930400pt;}
.y22{bottom:257.222667pt;}
.y24d{bottom:257.722933pt;}
.y14d{bottom:258.025200pt;}
.y11a{bottom:259.697867pt;}
.y1e7{bottom:265.981200pt;}
.y55{bottom:266.101200pt;}
.y1d0{bottom:266.114533pt;}
.y199{bottom:266.224533pt;}
.yc9{bottom:266.234533pt;}
.yfd{bottom:266.237867pt;}
.y77{bottom:266.445200pt;}
.y20d{bottom:268.263733pt;}
.y24c{bottom:271.056267pt;}
.y14c{bottom:272.691867pt;}
.y21{bottom:273.222667pt;}
.y119{bottom:274.140533pt;}
.y132{bottom:274.744254pt;}
.y20c{bottom:281.597067pt;}
.y1e6{bottom:281.981200pt;}
.y54{bottom:282.101200pt;}
.y1cf{bottom:282.114533pt;}
.y198{bottom:282.224533pt;}
.y9a{bottom:282.234533pt;}
.yfc{bottom:282.237867pt;}
.y24b{bottom:284.389600pt;}
.y14b{bottom:287.358533pt;}
.y118{bottom:288.593867pt;}
.y20{bottom:289.222667pt;}
.y76{bottom:292.226533pt;}
.y20b{bottom:294.930400pt;}
.y24a{bottom:297.722933pt;}
.y1e5{bottom:297.981200pt;}
.y53{bottom:298.101200pt;}
.y1ce{bottom:298.114533pt;}
.y197{bottom:298.224533pt;}
.yc8{bottom:298.234533pt;}
.y1c8{bottom:298.237867pt;}
.y14a{bottom:301.801200pt;}
.y117{bottom:303.260533pt;}
.y1f{bottom:305.222667pt;}
.y131{bottom:305.574191pt;}
.y20a{bottom:308.263733pt;}
.yae{bottom:309.621083pt;}
.y140{bottom:309.696667pt;}
.y249{bottom:311.056267pt;}
.y1e4{bottom:313.981200pt;}
.y52{bottom:314.101200pt;}
.y1cd{bottom:314.114533pt;}
.y196{bottom:314.224533pt;}
.yc7{bottom:314.234533pt;}
.yfb{bottom:314.237867pt;}
.y75{bottom:320.949600pt;}
.y28{bottom:321.222667pt;}
.y209{bottom:321.597067pt;}
.y12c{bottom:322.961467pt;}
.y248{bottom:324.389600pt;}
.y143{bottom:329.736801pt;}
.y149{bottom:329.811867pt;}
.y1e3{bottom:329.981200pt;}
.y51{bottom:330.101200pt;}
.y1cc{bottom:330.114533pt;}
.y195{bottom:330.224533pt;}
.yc6{bottom:330.234533pt;}
.y1c7{bottom:330.237867pt;}
.y116{bottom:331.271200pt;}
.y208{bottom:334.930400pt;}
.y130{bottom:336.404127pt;}
.y1e{bottom:337.222667pt;}
.y247{bottom:337.722933pt;}
.y74{bottom:338.282933pt;}
.yb0{bottom:344.709230pt;}
.y1e2{bottom:345.981200pt;}
.y50{bottom:346.101200pt;}
.yfa{bottom:346.104533pt;}
.y1cb{bottom:346.114533pt;}
.y194{bottom:346.224533pt;}
.yc5{bottom:346.234533pt;}
.y1c6{bottom:346.237867pt;}
.y207{bottom:348.263733pt;}
.y246{bottom:351.056267pt;}
.y73{bottom:355.616267pt;}
.y148{bottom:360.760667pt;}
.y206{bottom:361.597067pt;}
.y1e1{bottom:361.981200pt;}
.y4f{bottom:362.101200pt;}
.yf9{bottom:362.104533pt;}
.y1ca{bottom:362.114533pt;}
.y193{bottom:362.224533pt;}
.yc4{bottom:362.234533pt;}
.y1c5{bottom:362.237867pt;}
.y245{bottom:364.389600pt;}
.y12f{bottom:367.234064pt;}
.y72{bottom:372.949600pt;}
.y205{bottom:374.930400pt;}
.y244{bottom:377.722933pt;}
.y1e0{bottom:377.981200pt;}
.y147{bottom:378.094000pt;}
.y4e{bottom:378.101200pt;}
.yf8{bottom:378.104533pt;}
.y1c9{bottom:378.114533pt;}
.y192{bottom:378.224533pt;}
.yc3{bottom:378.234533pt;}
.y1c4{bottom:378.237867pt;}
.y115{bottom:379.567867pt;}
.y138{bottom:384.411321pt;}
.y204{bottom:388.263733pt;}
.y71{bottom:390.282933pt;}
.y243{bottom:391.056267pt;}
.y1df{bottom:393.981200pt;}
.y4d{bottom:394.101200pt;}
.yf7{bottom:394.104533pt;}
.yd6{bottom:394.114533pt;}
.y191{bottom:394.224533pt;}
.yc2{bottom:394.234533pt;}
.y1c3{bottom:394.237867pt;}
.y146{bottom:395.427333pt;}
.y12e{bottom:398.064000pt;}
.y203{bottom:401.597067pt;}
.y1c{bottom:403.160800pt;}
.y242{bottom:404.389600pt;}
.y70{bottom:407.616267pt;}
.y1de{bottom:409.981200pt;}
.y4c{bottom:410.101200pt;}
.yf6{bottom:410.104533pt;}
.yd5{bottom:410.114533pt;}
.y190{bottom:410.224533pt;}
.yc1{bottom:410.234533pt;}
.y1c2{bottom:410.237867pt;}
.y129{bottom:413.193600pt;}
.y202{bottom:414.930400pt;}
.y241{bottom:417.722933pt;}
.yad{bottom:424.735913pt;}
.yaf{bottom:425.625785pt;}
.y1dd{bottom:425.981200pt;}
.y4b{bottom:426.101200pt;}
.yf5{bottom:426.104533pt;}
.yd4{bottom:426.114533pt;}
.y18f{bottom:426.224533pt;}
.yc0{bottom:426.234533pt;}
.y1c1{bottom:426.237867pt;}
.y201{bottom:428.263733pt;}
.y240{bottom:431.056267pt;}
.y1b{bottom:432.366133pt;}
.y15b{bottom:436.275867pt;}
.y12d{bottom:439.130800pt;}
.y114{bottom:439.195467pt;}
.y200{bottom:441.597067pt;}
.y4a{bottom:442.101200pt;}
.yf4{bottom:442.104533pt;}
.yd3{bottom:442.114533pt;}
.y18e{bottom:442.224533pt;}
.ybf{bottom:442.234533pt;}
.y1c0{bottom:442.237867pt;}
.y23f{bottom:444.389600pt;}
.y1a{bottom:445.699467pt;}
.y6e{bottom:449.709200pt;}
.y15a{bottom:450.270533pt;}
.y139{bottom:454.331467pt;}
.y1ff{bottom:454.930400pt;}
.y23e{bottom:457.722933pt;}
.y1dc{bottom:457.981200pt;}
.y49{bottom:458.101200pt;}
.yf3{bottom:458.104533pt;}
.yd2{bottom:458.114533pt;}
.y18d{bottom:458.224533pt;}
.ybe{bottom:458.234533pt;}
.y1bf{bottom:458.237867pt;}
.y19{bottom:459.032800pt;}
.y6d{bottom:463.706400pt;}
.y12a{bottom:467.682000pt;}
.y1fe{bottom:468.263733pt;}
.y167{bottom:470.790667pt;}
.y23d{bottom:471.056267pt;}
.y18{bottom:472.366133pt;}
.y48{bottom:474.101200pt;}
.yf2{bottom:474.104533pt;}
.yd1{bottom:474.114533pt;}
.y18c{bottom:474.224533pt;}
.ybd{bottom:474.234533pt;}
.y1be{bottom:474.237867pt;}
.y15d{bottom:476.851867pt;}
.y1fd{bottom:481.597067pt;}
.y23c{bottom:484.389600pt;}
.y17{bottom:485.699467pt;}
.y47{bottom:490.101200pt;}
.yf1{bottom:490.104533pt;}
.yd0{bottom:490.114533pt;}
.y18b{bottom:490.224533pt;}
.ybc{bottom:490.234533pt;}
.y1bd{bottom:490.237867pt;}
.y13f{bottom:494.064200pt;}
.y1fc{bottom:494.930400pt;}
.y23b{bottom:497.722933pt;}
.y16{bottom:499.032800pt;}
.y46{bottom:506.101200pt;}
.yf0{bottom:506.104533pt;}
.ycf{bottom:506.114533pt;}
.y18a{bottom:506.224533pt;}
.ybb{bottom:506.234533pt;}
.y1bc{bottom:506.237867pt;}
.y13e{bottom:506.443013pt;}
.y1fb{bottom:508.263733pt;}
.y15e{bottom:508.312800pt;}
.y169{bottom:510.979467pt;}
.y23a{bottom:511.056267pt;}
.y15{bottom:512.366133pt;}
.yac{bottom:515.230952pt;}
.y13d{bottom:518.821827pt;}
.y1fa{bottom:521.597067pt;}
.y45{bottom:522.101200pt;}
.yef{bottom:522.104533pt;}
.yce{bottom:522.114533pt;}
.y189{bottom:522.224533pt;}
.yba{bottom:522.234533pt;}
.y1bb{bottom:522.237867pt;}
.y239{bottom:524.389600pt;}
.y14{bottom:525.699467pt;}
.y13c{bottom:531.200640pt;}
.y1f9{bottom:534.930400pt;}
.y238{bottom:537.722933pt;}
.y44{bottom:538.101200pt;}
.yee{bottom:538.104533pt;}
.y99{bottom:538.114533pt;}
.y188{bottom:538.224533pt;}
.yb9{bottom:538.234533pt;}
.y1ba{bottom:538.237867pt;}
.y13{bottom:539.032800pt;}
.y13b{bottom:543.579453pt;}
.y1f8{bottom:548.263733pt;}
.y15f{bottom:549.646133pt;}
.y237{bottom:551.056267pt;}
.y170{bottom:552.294400pt;}
.y12{bottom:552.366133pt;}
.ya9{bottom:553.322417pt;}
.y43{bottom:554.101200pt;}
.yed{bottom:554.104533pt;}
.ycd{bottom:554.114533pt;}
.yab{bottom:554.212289pt;}
.y187{bottom:554.224533pt;}
.yb8{bottom:554.234533pt;}
.y1b9{bottom:554.237867pt;}
.y13a{bottom:555.958267pt;}
.y1f7{bottom:561.597067pt;}
.y236{bottom:564.389600pt;}
.y11{bottom:565.699467pt;}
.y42{bottom:570.101200pt;}
.yec{bottom:570.104533pt;}
.y98{bottom:570.114533pt;}
.y186{bottom:570.224533pt;}
.yb7{bottom:570.234533pt;}
.y1b8{bottom:570.237867pt;}
.y1f6{bottom:574.930400pt;}
.y235{bottom:577.722933pt;}
.y10{bottom:579.032800pt;}
.y62{bottom:585.981200pt;}
.y41{bottom:586.101200pt;}
.yeb{bottom:586.104533pt;}
.y97{bottom:586.114533pt;}
.y185{bottom:586.224533pt;}
.yb6{bottom:586.234533pt;}
.y1b7{bottom:586.237867pt;}
.y1f5{bottom:588.263733pt;}
.y160{bottom:590.979467pt;}
.y234{bottom:591.056267pt;}
.yf{bottom:592.366133pt;}
.y40{bottom:602.101200pt;}
.yea{bottom:602.104533pt;}
.y96{bottom:602.114533pt;}
.y184{bottom:602.224533pt;}
.yb5{bottom:602.234533pt;}
.y1b6{bottom:602.237867pt;}
.y233{bottom:604.389600pt;}
.ye{bottom:605.699467pt;}
.y232{bottom:617.722933pt;}
.y1f4{bottom:617.994533pt;}
.y3f{bottom:618.101200pt;}
.ye9{bottom:618.104533pt;}
.y95{bottom:618.114533pt;}
.y183{bottom:618.224533pt;}
.yb4{bottom:618.234533pt;}
.y1b5{bottom:618.237867pt;}
.yd{bottom:619.032800pt;}
.y231{bottom:631.056267pt;}
.y161{bottom:632.312800pt;}
.yc{bottom:632.366133pt;}
.y3e{bottom:634.101200pt;}
.ye8{bottom:634.104533pt;}
.y94{bottom:634.114533pt;}
.y182{bottom:634.224533pt;}
.y1b4{bottom:634.237867pt;}
.y16f{bottom:641.067733pt;}
.y230{bottom:644.389600pt;}
.yb{bottom:645.699467pt;}
.y3d{bottom:650.101200pt;}
.ye7{bottom:650.104533pt;}
.y93{bottom:650.114533pt;}
.y181{bottom:650.224533pt;}
.yb3{bottom:650.234533pt;}
.y1b3{bottom:650.237867pt;}
.ya8{bottom:656.077915pt;}
.yaa{bottom:656.967787pt;}
.y22f{bottom:657.722933pt;}
.ya{bottom:659.032800pt;}
.y3c{bottom:666.101200pt;}
.ye6{bottom:666.104533pt;}
.y92{bottom:666.114533pt;}
.y180{bottom:666.224533pt;}
.y1b2{bottom:666.237867pt;}
.y22e{bottom:671.056267pt;}
.y9{bottom:672.366133pt;}
.y162{bottom:673.646267pt;}
.y113{bottom:676.358133pt;}
.y3b{bottom:682.101200pt;}
.ye5{bottom:682.104533pt;}
.y91{bottom:682.114533pt;}
.y17f{bottom:682.224533pt;}
.y1b1{bottom:682.237867pt;}
.y22d{bottom:684.389600pt;}
.y8{bottom:685.699467pt;}
.y22c{bottom:697.722933pt;}
.y3a{bottom:698.101200pt;}
.ye4{bottom:698.104533pt;}
.ycc{bottom:698.114533pt;}
.y17e{bottom:698.224533pt;}
.y1b0{bottom:698.237867pt;}
.y7{bottom:699.032800pt;}
.y22b{bottom:711.056267pt;}
.y39{bottom:714.101200pt;}
.ye3{bottom:714.104533pt;}
.y90{bottom:714.114533pt;}
.y17d{bottom:714.224533pt;}
.y1af{bottom:714.237867pt;}
.y163{bottom:714.979600pt;}
.y22a{bottom:724.389600pt;}
.y172{bottom:728.561067pt;}
.y38{bottom:730.101200pt;}
.ye2{bottom:730.104533pt;}
.ycb{bottom:730.114533pt;}
.y17c{bottom:730.224533pt;}
.y1ae{bottom:730.237867pt;}
.y15c{bottom:737.646267pt;}
.y229{bottom:737.722933pt;}
.y16e{bottom:741.054400pt;}
.y6{bottom:742.168800pt;}
.y37{bottom:746.101200pt;}
.ye1{bottom:746.104533pt;}
.y8f{bottom:746.114533pt;}
.y17b{bottom:746.224533pt;}
.y1ad{bottom:746.237867pt;}
.y228{bottom:751.056267pt;}
.y36{bottom:762.101200pt;}
.ye0{bottom:762.104533pt;}
.y8e{bottom:762.114533pt;}
.y17a{bottom:762.224533pt;}
.y1ac{bottom:762.237867pt;}
.y227{bottom:764.389600pt;}
.y16c{bottom:776.054400pt;}
.y5{bottom:776.687867pt;}
.y226{bottom:777.722933pt;}
.y35{bottom:778.101200pt;}
.ydf{bottom:778.104533pt;}
.y8d{bottom:778.114533pt;}
.y179{bottom:778.224533pt;}
.y1ab{bottom:778.237867pt;}
.y16d{bottom:781.387733pt;}
.yb1{bottom:787.000333pt;}
.ya7{bottom:787.865486pt;}
.y225{bottom:791.056267pt;}
.y4{bottom:791.354533pt;}
.y34{bottom:794.101200pt;}
.yde{bottom:794.104533pt;}
.y8c{bottom:794.114533pt;}
.y178{bottom:794.224533pt;}
.y1aa{bottom:794.237867pt;}
.y164{bottom:797.646267pt;}
.y224{bottom:804.389600pt;}
.y3{bottom:804.925600pt;}
.y33{bottom:810.101200pt;}
.ydd{bottom:810.104533pt;}
.y8b{bottom:810.114533pt;}
.y177{bottom:810.224533pt;}
.y1a9{bottom:810.237867pt;}
.y223{bottom:817.722933pt;}
.y32{bottom:826.101200pt;}
.ydc{bottom:826.104533pt;}
.y8a{bottom:826.114533pt;}
.y176{bottom:826.224533pt;}
.y2{bottom:829.277067pt;}
.y222{bottom:831.056267pt;}
.y165{bottom:838.979467pt;}
.y31{bottom:842.101200pt;}
.ydb{bottom:842.104533pt;}
.y89{bottom:842.114533pt;}
.y175{bottom:842.224533pt;}
.y1a8{bottom:842.237867pt;}
.y221{bottom:844.389600pt;}
.y1{bottom:853.277067pt;}
.y220{bottom:857.722933pt;}
.y30{bottom:858.101200pt;}
.yda{bottom:858.104533pt;}
.y88{bottom:858.114533pt;}
.y1a7{bottom:858.237867pt;}
.y16b{bottom:860.721067pt;}
.y21f{bottom:871.056267pt;}
.y171{bottom:871.374400pt;}
.y2f{bottom:874.101200pt;}
.yd9{bottom:874.104533pt;}
.y87{bottom:874.114533pt;}
.y174{bottom:874.224533pt;}
.y166{bottom:880.312800pt;}
.y21e{bottom:884.389600pt;}
.y16a{bottom:887.894400pt;}
.y2e{bottom:890.101200pt;}
.yd8{bottom:890.104533pt;}
.y86{bottom:890.114533pt;}
.y173{bottom:890.224533pt;}
.y21d{bottom:897.722933pt;}
.y6f{bottom:904.547200pt;}
.y2d{bottom:906.101200pt;}
.y1a6{bottom:906.104533pt;}
.y85{bottom:906.114533pt;}
.ya6{bottom:907.615067pt;}
.yb2{bottom:908.517298pt;}
.y21c{bottom:911.056267pt;}
.y2c{bottom:922.101200pt;}
.yd7{bottom:922.104533pt;}
.y84{bottom:922.114533pt;}
.y112{bottom:924.389600pt;}
.y2a{bottom:951.795067pt;}
.y6c{bottom:965.392400pt;}
.y29{bottom:965.395067pt;}
.h4{height:18.637500pt;}
.h11{height:30.202688pt;}
.h5{height:31.062500pt;}
.h7{height:31.083333pt;}
.h8{height:31.627200pt;}
.h6{height:31.666667pt;}
.h12{height:33.408729pt;}
.hb{height:33.645833pt;}
.hc{height:34.346667pt;}
.h10{height:35.533083pt;}
.h9{height:38.828125pt;}
.hd{height:38.854167pt;}
.hf{height:39.043134pt;}
.ha{height:39.583333pt;}
.h14{height:40.090396pt;}
.he{height:42.003867pt;}
.h17{height:44.800000pt;}
.h3{height:46.263133pt;}
.h2{height:54.359375pt;}
.h15{height:55.416667pt;}
.h18{height:75.903333pt;}
.h16{height:443.854667pt;}
.h13{height:463.988000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w3{width:595.656000pt;}
.w2{width:638.740000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x37{left:9.656933pt;}
.x51{left:16.019867pt;}
.x9{left:68.031467pt;}
.x1f{left:69.921200pt;}
.x7{left:85.417333pt;}
.x1{left:86.929200pt;}
.x10{left:88.818800pt;}
.x61{left:94.488133pt;}
.x48{left:95.668282pt;}
.xa{left:98.271467pt;}
.x63{left:113.385867pt;}
.x4d{left:114.664267pt;}
.x4{left:117.170133pt;}
.x38{left:128.095867pt;}
.x46{left:133.196269pt;}
.x14{left:141.034594pt;}
.x2{left:143.619200pt;}
.x44{left:145.169237pt;}
.x11{left:147.378800pt;}
.x53{left:151.792533pt;}
.x58{left:154.939200pt;}
.x39{left:159.605573pt;}
.x49{left:170.070533pt;}
.x1d{left:187.641067pt;}
.x3{left:189.223467pt;}
.x3a{left:191.115280pt;}
.x5c{left:195.677733pt;}
.x20{left:198.443867pt;}
.x47{left:205.051762pt;}
.xf{left:207.567867pt;}
.x36{left:211.739333pt;}
.x13{left:215.849926pt;}
.x3b{left:222.624987pt;}
.x3c{left:254.134693pt;}
.x1c{left:259.065852pt;}
.x15{left:277.516346pt;}
.x18{left:280.964228pt;}
.x3d{left:285.644400pt;}
.x54{left:307.165867pt;}
.x3e{left:317.154107pt;}
.x57{left:320.325867pt;}
.x56{left:330.725867pt;}
.x4a{left:332.609200pt;}
.x3f{left:348.663813pt;}
.x4f{left:365.096533pt;}
.x50{left:370.424667pt;}
.x40{left:380.173520pt;}
.x4e{left:382.586133pt;}
.x19{left:385.648846pt;}
.x55{left:387.619200pt;}
.x41{left:398.034133pt;}
.x42{left:399.168481pt;}
.x43{left:401.396663pt;}
.x8{left:404.481333pt;}
.xb{left:406.298133pt;}
.x16{left:421.870144pt;}
.x1e{left:425.196800pt;}
.x5{left:427.090133pt;}
.x21{left:431.121867pt;}
.x62{left:432.706800pt;}
.xc{left:436.538133pt;}
.x22{left:444.171467pt;}
.x60{left:451.650133pt;}
.x5d{left:455.437733pt;}
.x6{left:457.330133pt;}
.xd{left:466.911467pt;}
.x23{left:470.270667pt;}
.x1a{left:484.080316pt;}
.x4c{left:495.137200pt;}
.x24{left:496.369867pt;}
.x25{left:509.419467pt;}
.x26{left:522.469067pt;}
.x5f{left:529.862533pt;}
.x27{left:535.518667pt;}
.x45{left:539.260267pt;}
.x28{left:548.568267pt;}
.x17{left:550.343912pt;}
.x29{left:561.617867pt;}
.x1b{left:571.513166pt;}
.x2a{left:574.667467pt;}
.x2b{left:587.717067pt;}
.x5a{left:590.312533pt;}
.x52{left:593.478667pt;}
.x2c{left:600.766667pt;}
.x59{left:611.032533pt;}
.x2d{left:613.816267pt;}
.x2e{left:626.865867pt;}
.x5b{left:637.449067pt;}
.x2f{left:639.915467pt;}
.xe{left:643.752133pt;}
.x30{left:652.965067pt;}
.x5e{left:657.187867pt;}
.x4b{left:658.603867pt;}
.x12{left:662.649733pt;}
.x31{left:666.014667pt;}
.x32{left:679.064267pt;}
.x33{left:692.113867pt;}
.x34{left:705.163467pt;}
.x35{left:718.213067pt;}
}




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