
    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_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065581;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_b5b14b5ed17346bd43b3011a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.136000;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_35c1e5c160e45ef06847bde0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_befc9fe96699c79acbe18efe.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_b71e53df1f18d9f8a1cbc1ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.924000;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_2271904558cdf466a313be36.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_f373a978c01d0a579988ac39.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.715000;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_f0850a4be55f29d027f0802b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.695000;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_0791838233ed796363188361.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.679000;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_dd528a5657f3254fed8a9956.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.266000;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_6f8ae8056aa32681b820a69d.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.230000;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_2edc2612a0ca0aa49640beaa.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690000;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_b4d88f78551570e7c6e16c2a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.120000;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_a89315784562bf5de1be04e3.woff2')format("woff");}.fff{font-family:fff;line-height:0.452000;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_c20424d5d4b80119389ac594.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.731000;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_2e5106c8b740ba1533f8a8a3.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.710000;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_82558550108c65cc2c00530d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.861000;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;}
.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);}
.v3{vertical-align:-24.000000px;}
.v5{vertical-align:-20.400011px;}
.v4{vertical-align:-15.000000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:14.957153px;}
.v7{vertical-align:20.376055px;}
.v2{vertical-align:24.000000px;}
.v1{vertical-align:38.399780px;}
.ls9a{letter-spacing:-4.920000px;}
.lsc4{letter-spacing:-4.320000px;}
.ls84{letter-spacing:-4.200000px;}
.lsa0{letter-spacing:-3.825000px;}
.lsc2{letter-spacing:-2.760000px;}
.ls2f{letter-spacing:-2.160000px;}
.ls7c{letter-spacing:-1.920000px;}
.ls97{letter-spacing:-1.440000px;}
.lsc5{letter-spacing:-1.200000px;}
.lsad{letter-spacing:-0.834432px;}
.ls9e{letter-spacing:-0.832428px;}
.lsae{letter-spacing:-0.709267px;}
.ls9f{letter-spacing:-0.707564px;}
.ls86{letter-spacing:-0.663000px;}
.ls9b{letter-spacing:-0.660000px;}
.ls98{letter-spacing:-0.420000px;}
.ls2b{letter-spacing:-0.360000px;}
.lsc6{letter-spacing:-0.357000px;}
.ls28{letter-spacing:-0.300000px;}
.ls99{letter-spacing:-0.294000px;}
.lsd1{letter-spacing:-0.255000px;}
.lsab{letter-spacing:-0.250330px;}
.ls9c{letter-spacing:-0.249728px;}
.ls2c{letter-spacing:-0.240000px;}
.ls29{letter-spacing:-0.210000px;}
.lsa1{letter-spacing:-0.204000px;}
.ls7a{letter-spacing:-0.180000px;}
.ls2d{letter-spacing:-0.168000px;}
.lsd0{letter-spacing:-0.153000px;}
.ls83{letter-spacing:-0.126000px;}
.ls7d{letter-spacing:-0.120000px;}
.lsaa{letter-spacing:-0.084000px;}
.ls85{letter-spacing:-0.060015px;}
.ls7e{letter-spacing:-0.060000px;}
.lsd2{letter-spacing:-0.051000px;}
.ls82{letter-spacing:-0.042000px;}
.ls27{letter-spacing:0.000000px;}
.ls8c{letter-spacing:0.000020px;}
.lsc1{letter-spacing:0.000026px;}
.ls8d{letter-spacing:0.000037px;}
.ls8b{letter-spacing:0.000041px;}
.ls13{letter-spacing:0.024000px;}
.ls73{letter-spacing:0.027134px;}
.ls80{letter-spacing:0.042000px;}
.ls2{letter-spacing:0.044355px;}
.lsb8{letter-spacing:0.051000px;}
.ls1{letter-spacing:0.060000px;}
.ls70{letter-spacing:0.060015px;}
.lsa3{letter-spacing:0.077454px;}
.ls4{letter-spacing:0.090000px;}
.lsb7{letter-spacing:0.102000px;}
.lsd{letter-spacing:0.120000px;}
.ls96{letter-spacing:0.126000px;}
.ls87{letter-spacing:0.144653px;}
.lsb3{letter-spacing:0.156006px;}
.lsd3{letter-spacing:0.178500px;}
.ls25{letter-spacing:0.178791px;}
.lsf{letter-spacing:0.180000px;}
.ls67{letter-spacing:0.191970px;}
.ls1a{letter-spacing:0.201038px;}
.lsb6{letter-spacing:0.204000px;}
.ls6a{letter-spacing:0.207728px;}
.ls6c{letter-spacing:0.209517px;}
.lsa4{letter-spacing:0.209839px;}
.ls66{letter-spacing:0.209925px;}
.ls10{letter-spacing:0.210000px;}
.lsa{letter-spacing:0.210022px;}
.lscd{letter-spacing:0.229500px;}
.ls0{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.255000px;}
.ls64{letter-spacing:0.256251px;}
.ls1f{letter-spacing:0.276000px;}
.lsce{letter-spacing:0.280500px;}
.lsbb{letter-spacing:0.288000px;}
.ls69{letter-spacing:0.289797px;}
.ls7f{letter-spacing:0.294000px;}
.ls1b{letter-spacing:0.299991px;}
.ls3{letter-spacing:0.300000px;}
.ls5e{letter-spacing:0.316223px;}
.ls5c{letter-spacing:0.330000px;}
.ls7b{letter-spacing:0.336000px;}
.ls21{letter-spacing:0.354000px;}
.lsb9{letter-spacing:0.357000px;}
.ls9{letter-spacing:0.360000px;}
.lsb4{letter-spacing:0.364838px;}
.ls5f{letter-spacing:0.369003px;}
.ls51{letter-spacing:0.378000px;}
.ls1c{letter-spacing:0.383947px;}
.ls60{letter-spacing:0.390000px;}
.ls63{letter-spacing:0.397660px;}
.lsba{letter-spacing:0.408000px;}
.ls11{letter-spacing:0.419951px;}
.ls45{letter-spacing:0.420000px;}
.lsaf{letter-spacing:0.428419px;}
.ls5d{letter-spacing:0.450000px;}
.lsc0{letter-spacing:0.459000px;}
.ls62{letter-spacing:0.461992px;}
.ls2a{letter-spacing:0.462000px;}
.lsb{letter-spacing:0.480000px;}
.ls68{letter-spacing:0.498516px;}
.lsb2{letter-spacing:0.501661px;}
.ls35{letter-spacing:0.510000px;}
.lse{letter-spacing:0.540000px;}
.ls6b{letter-spacing:0.544807px;}
.ls79{letter-spacing:0.546000px;}
.lscb{letter-spacing:0.561000px;}
.ls57{letter-spacing:0.588000px;}
.ls14{letter-spacing:0.600000px;}
.ls9d{letter-spacing:0.624321px;}
.lsac{letter-spacing:0.625824px;}
.ls88{letter-spacing:0.630000px;}
.ls6{letter-spacing:0.660000px;}
.lsc3{letter-spacing:0.672000px;}
.ls48{letter-spacing:0.690000px;}
.ls36{letter-spacing:0.707988px;}
.ls89{letter-spacing:0.712784px;}
.ls8{letter-spacing:0.714000px;}
.ls20{letter-spacing:0.720000px;}
.lsa5{letter-spacing:0.737366px;}
.lsb5{letter-spacing:0.742790px;}
.ls5b{letter-spacing:0.755354px;}
.ls81{letter-spacing:0.756000px;}
.ls65{letter-spacing:0.756665px;}
.lsbd{letter-spacing:0.765000px;}
.ls12{letter-spacing:0.780000px;}
.ls5a{letter-spacing:0.797377px;}
.ls54{letter-spacing:0.798000px;}
.ls50{letter-spacing:0.804000px;}
.ls61{letter-spacing:0.810000px;}
.lsbf{letter-spacing:0.816000px;}
.ls16{letter-spacing:0.840000px;}
.lsa6{letter-spacing:0.850342px;}
.ls6d{letter-spacing:0.859863px;}
.lscf{letter-spacing:0.867000px;}
.ls8a{letter-spacing:0.870000px;}
.ls23{letter-spacing:0.882000px;}
.lsa2{letter-spacing:0.899993px;}
.ls32{letter-spacing:0.900000px;}
.ls56{letter-spacing:0.924000px;}
.lsb1{letter-spacing:0.930000px;}
.ls15{letter-spacing:0.960000px;}
.lsbc{letter-spacing:0.969000px;}
.ls59{letter-spacing:0.990000px;}
.ls7{letter-spacing:1.020000px;}
.ls3b{letter-spacing:1.057203px;}
.lscc{letter-spacing:1.071000px;}
.ls2e{letter-spacing:1.080000px;}
.ls3e{letter-spacing:1.110000px;}
.ls3c{letter-spacing:1.120100px;}
.lsca{letter-spacing:1.122000px;}
.ls4b{letter-spacing:1.139987px;}
.ls1e{letter-spacing:1.140000px;}
.lsbe{letter-spacing:1.173000px;}
.ls55{letter-spacing:1.176000px;}
.ls49{letter-spacing:1.192793px;}
.ls3f{letter-spacing:1.200000px;}
.ls22{letter-spacing:1.260000px;}
.lsc{letter-spacing:1.283973px;}
.ls34{letter-spacing:1.302000px;}
.ls31{letter-spacing:1.320000px;}
.ls58{letter-spacing:1.344000px;}
.ls1d{letter-spacing:1.350000px;}
.lsc7{letter-spacing:1.377000px;}
.ls4e{letter-spacing:1.379993px;}
.ls47{letter-spacing:1.380000px;}
.ls39{letter-spacing:1.410000px;}
.ls4f{letter-spacing:1.440000px;}
.ls3a{letter-spacing:1.500000px;}
.lsc8{letter-spacing:1.530000px;}
.ls52{letter-spacing:1.554000px;}
.ls37{letter-spacing:1.560000px;}
.ls30{letter-spacing:1.620000px;}
.ls43{letter-spacing:1.680000px;}
.ls42{letter-spacing:1.696791px;}
.lsc9{letter-spacing:1.708500px;}
.ls44{letter-spacing:1.740000px;}
.ls53{letter-spacing:1.764000px;}
.ls40{letter-spacing:1.800000px;}
.ls4c{letter-spacing:1.830000px;}
.ls33{letter-spacing:1.860000px;}
.ls4d{letter-spacing:1.890000px;}
.ls46{letter-spacing:1.980000px;}
.ls17{letter-spacing:2.004000px;}
.ls19{letter-spacing:2.070000px;}
.ls18{letter-spacing:2.100000px;}
.lsb0{letter-spacing:2.160000px;}
.ls38{letter-spacing:2.220000px;}
.ls4a{letter-spacing:2.340000px;}
.ls41{letter-spacing:2.400000px;}
.ls3d{letter-spacing:2.520000px;}
.ls24{letter-spacing:2.910000px;}
.ls6f{letter-spacing:2.955869px;}
.ls72{letter-spacing:13.323329px;}
.ls5{letter-spacing:14.994621px;}
.ls71{letter-spacing:16.347837px;}
.ls6e{letter-spacing:19.694639px;}
.ls8e{letter-spacing:75.628836px;}
.ls94{letter-spacing:76.245000px;}
.ls90{letter-spacing:80.550902px;}
.ls95{letter-spacing:81.906000px;}
.ls92{letter-spacing:131.550994px;}
.ls76{letter-spacing:170.226348px;}
.ls91{letter-spacing:217.485869px;}
.ls8f{letter-spacing:245.713767px;}
.ls77{letter-spacing:256.161407px;}
.ls75{letter-spacing:256.161773px;}
.ls74{letter-spacing:258.889304px;}
.ls93{letter-spacing:268.485869px;}
.ls78{letter-spacing:281.661407px;}
.lsa9{letter-spacing:359.501372px;}
.lsa7{letter-spacing:359.501555px;}
.lsa8{letter-spacing:374.546408px;}
.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;}
}
.ws3{word-spacing:-18.432000px;}
.ws47{word-spacing:-17.400000px;}
.ws6f{word-spacing:-16.140000px;}
.ws82{word-spacing:-15.780000px;}
.ws32{word-spacing:-15.660000px;}
.ws77{word-spacing:-15.540000px;}
.ws66{word-spacing:-15.300000px;}
.wsae{word-spacing:-15.180000px;}
.ws65{word-spacing:-15.000000px;}
.ws83{word-spacing:-14.940000px;}
.wsb0{word-spacing:-14.832000px;}
.ws23{word-spacing:-14.760000px;}
.wsb{word-spacing:-14.544000px;}
.wsc5{word-spacing:-13.719000px;}
.wsc3{word-spacing:-13.005000px;}
.ws2{word-spacing:-12.902400px;}
.wsa3{word-spacing:-12.840000px;}
.ws69{word-spacing:-12.750000px;}
.ws4{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.360000px;}
.ws34{word-spacing:-12.264000px;}
.ws33{word-spacing:-12.054000px;}
.ws3a{word-spacing:-11.844000px;}
.ws30{word-spacing:-11.802000px;}
.ws36{word-spacing:-11.676000px;}
.ws9{word-spacing:-11.520000px;}
.ws37{word-spacing:-11.424000px;}
.wsf{word-spacing:-11.382000px;}
.ws5c{word-spacing:-11.340000px;}
.ws35{word-spacing:-11.298000px;}
.ws62{word-spacing:-11.256000px;}
.wsd{word-spacing:-11.214000px;}
.wsad{word-spacing:-11.172000px;}
.wsa1{word-spacing:-11.130000px;}
.ws38{word-spacing:-11.088000px;}
.ws5d{word-spacing:-11.046000px;}
.wsc{word-spacing:-10.962000px;}
.ws60{word-spacing:-10.920000px;}
.ws31{word-spacing:-10.878000px;}
.ws5e{word-spacing:-10.836000px;}
.ws5f{word-spacing:-10.794000px;}
.ws7{word-spacing:-10.710000px;}
.ws84{word-spacing:-10.626000px;}
.ws61{word-spacing:-10.542000px;}
.wsa{word-spacing:-10.500000px;}
.ws63{word-spacing:-10.458000px;}
.wsa2{word-spacing:-10.416000px;}
.ws64{word-spacing:-10.374000px;}
.wse{word-spacing:-10.332000px;}
.wsaf{word-spacing:-10.302000px;}
.ws8{word-spacing:-10.290000px;}
.ws85{word-spacing:-10.206000px;}
.ws1{word-spacing:-9.996000px;}
.ws0{word-spacing:-9.408000px;}
.wsc7{word-spacing:-9.103500px;}
.ws68{word-spacing:-8.925000px;}
.ws5{word-spacing:-8.694000px;}
.ws57{word-spacing:-7.500000px;}
.ws80{word-spacing:-6.375000px;}
.ws22{word-spacing:-2.100000px;}
.ws10{word-spacing:-1.890000px;}
.ws54{word-spacing:-1.860000px;}
.ws41{word-spacing:-1.620000px;}
.ws59{word-spacing:-1.560000px;}
.ws12{word-spacing:-1.500000px;}
.ws46{word-spacing:-1.440000px;}
.ws29{word-spacing:-1.320000px;}
.wsbb{word-spacing:-1.275000px;}
.ws28{word-spacing:-1.260000px;}
.wsca{word-spacing:-1.224000px;}
.ws52{word-spacing:-1.200000px;}
.ws1b{word-spacing:-1.140000px;}
.ws7b{word-spacing:-1.080000px;}
.wsc0{word-spacing:-1.071000px;}
.ws1d{word-spacing:-1.020000px;}
.wsbd{word-spacing:-0.969000px;}
.ws56{word-spacing:-0.960000px;}
.ws74{word-spacing:-0.840000px;}
.wsc4{word-spacing:-0.816000px;}
.ws95{word-spacing:-0.780000px;}
.wsc1{word-spacing:-0.765000px;}
.ws18{word-spacing:-0.720000px;}
.wsc2{word-spacing:-0.714000px;}
.wsa6{word-spacing:-0.667546px;}
.ws88{word-spacing:-0.665942px;}
.ws98{word-spacing:-0.660000px;}
.ws2f{word-spacing:-0.612000px;}
.ws13{word-spacing:-0.600000px;}
.ws3c{word-spacing:-0.540000px;}
.ws24{word-spacing:-0.480000px;}
.wscd{word-spacing:-0.459000px;}
.ws17{word-spacing:-0.360000px;}
.ws19{word-spacing:-0.300000px;}
.wscf{word-spacing:-0.255000px;}
.ws7a{word-spacing:-0.240000px;}
.ws1a{word-spacing:-0.210000px;}
.wsc8{word-spacing:-0.204000px;}
.wsb6{word-spacing:-0.180000px;}
.ws4f{word-spacing:-0.120000px;}
.ws39{word-spacing:-0.066000px;}
.ws67{word-spacing:-0.060015px;}
.ws1e{word-spacing:-0.060000px;}
.wsa4{word-spacing:-0.035762px;}
.ws86{word-spacing:-0.035675px;}
.ws11{word-spacing:0.000000px;}
.wsab{word-spacing:0.060000px;}
.ws7f{word-spacing:0.060015px;}
.ws79{word-spacing:0.120000px;}
.ws4a{word-spacing:0.180000px;}
.ws87{word-spacing:0.208107px;}
.wsa5{word-spacing:0.208608px;}
.ws55{word-spacing:0.240000px;}
.ws75{word-spacing:0.300000px;}
.wsba{word-spacing:0.306000px;}
.ws76{word-spacing:0.480000px;}
.ws16{word-spacing:0.540000px;}
.wsb4{word-spacing:0.600000px;}
.ws3e{word-spacing:0.660000px;}
.ws81{word-spacing:0.663000px;}
.ws9c{word-spacing:0.707564px;}
.wsac{word-spacing:0.709267px;}
.ws9f{word-spacing:0.765000px;}
.ws2b{word-spacing:0.780000px;}
.ws89{word-spacing:0.790807px;}
.wsa7{word-spacing:0.792710px;}
.ws3d{word-spacing:0.840000px;}
.ws78{word-spacing:0.960000px;}
.ws96{word-spacing:1.020000px;}
.wsa9{word-spacing:1.080000px;}
.wsbe{word-spacing:1.173000px;}
.wsb5{word-spacing:1.200000px;}
.wsbf{word-spacing:1.275000px;}
.ws43{word-spacing:1.440000px;}
.wsc9{word-spacing:1.479000px;}
.ws14{word-spacing:1.500000px;}
.wsbc{word-spacing:1.530000px;}
.ws40{word-spacing:1.560000px;}
.ws1c{word-spacing:1.620000px;}
.ws44{word-spacing:1.680000px;}
.ws2d{word-spacing:1.740000px;}
.ws49{word-spacing:1.800000px;}
.wsb2{word-spacing:1.860000px;}
.ws4b{word-spacing:1.920000px;}
.wsa0{word-spacing:1.989000px;}
.ws20{word-spacing:2.040000px;}
.ws50{word-spacing:2.100000px;}
.ws53{word-spacing:2.160000px;}
.ws4c{word-spacing:2.220000px;}
.wscb{word-spacing:2.295000px;}
.wsaa{word-spacing:2.340000px;}
.ws45{word-spacing:2.400000px;}
.ws5a{word-spacing:2.460000px;}
.ws1f{word-spacing:2.580000px;}
.ws2a{word-spacing:2.640000px;}
.ws71{word-spacing:2.700000px;}
.ws9d{word-spacing:2.703000px;}
.wsb3{word-spacing:2.760000px;}
.ws3b{word-spacing:2.820000px;}
.ws15{word-spacing:2.880000px;}
.ws4e{word-spacing:2.940000px;}
.ws27{word-spacing:3.000000px;}
.wscc{word-spacing:3.009000px;}
.wsb8{word-spacing:3.060000px;}
.ws70{word-spacing:3.180000px;}
.ws7c{word-spacing:3.300000px;}
.ws9b{word-spacing:3.360000px;}
.wsd0{word-spacing:3.417000px;}
.ws26{word-spacing:3.420000px;}
.ws4d{word-spacing:3.480000px;}
.ws72{word-spacing:3.780000px;}
.ws9e{word-spacing:3.825000px;}
.ws7e{word-spacing:3.840000px;}
.wsce{word-spacing:3.876000px;}
.ws2c{word-spacing:3.960000px;}
.ws9a{word-spacing:4.020000px;}
.ws7d{word-spacing:4.200000px;}
.wsb7{word-spacing:4.320000px;}
.ws25{word-spacing:4.440000px;}
.ws3f{word-spacing:4.560000px;}
.ws58{word-spacing:4.680000px;}
.wsb9{word-spacing:4.740000px;}
.ws5b{word-spacing:4.800000px;}
.ws97{word-spacing:4.920000px;}
.ws73{word-spacing:4.980000px;}
.ws51{word-spacing:5.220000px;}
.ws48{word-spacing:5.700000px;}
.ws42{word-spacing:6.300000px;}
.ws99{word-spacing:6.360000px;}
.ws21{word-spacing:8.100000px;}
.wsb1{word-spacing:8.460000px;}
.wsc6{word-spacing:11.373000px;}
.wsd1{word-spacing:13.515000px;}
.wsd2{word-spacing:17.595000px;}
.ws91{word-spacing:28.305000px;}
.ws92{word-spacing:57.222000px;}
.ws8f{word-spacing:63.495000px;}
.ws2e{word-spacing:72.267000px;}
.ws8c{word-spacing:81.850891px;}
.ws93{word-spacing:108.222000px;}
.ws6b{word-spacing:120.526245px;}
.ws6e{word-spacing:146.880000px;}
.ws8b{word-spacing:159.268767px;}
.ws8a{word-spacing:193.897858px;}
.ws6a{word-spacing:197.944120px;}
.ws8e{word-spacing:198.079913px;}
.ws6c{word-spacing:212.122304px;}
.ws90{word-spacing:214.811988px;}
.ws8d{word-spacing:224.446767px;}
.ws6d{word-spacing:232.815000px;}
.ws94{word-spacing:245.156988px;}
.wsa8{word-spacing:466.854000px;}
._20{margin-left:-200.959528px;}
._2e{margin-left:-183.270749px;}
._22{margin-left:-181.908860px;}
._2f{margin-left:-180.686520px;}
._21{margin-left:-179.661314px;}
._23{margin-left:-175.415942px;}
._30{margin-left:-172.212959px;}
._24{margin-left:-153.546922px;}
._40{margin-left:-24.420891px;}
._12{margin-left:-20.347270px;}
._10{margin-left:-18.370732px;}
._13{margin-left:-16.900714px;}
._7{margin-left:-15.893991px;}
._4{margin-left:-13.835914px;}
._25{margin-left:-12.751814px;}
._4b{margin-left:-11.577000px;}
._9{margin-left:-8.587690px;}
._2{margin-left:-6.507024px;}
._5{margin-left:-5.034000px;}
._6{margin-left:-4.032009px;}
._8{margin-left:-2.905286px;}
._0{margin-left:-1.632000px;}
._1{width:1.785000px;}
._c{width:2.959162px;}
._11{width:4.788108px;}
._3b{width:7.038000px;}
._3d{width:8.619000px;}
._a{width:9.948000px;}
._39{width:11.424000px;}
._b{width:13.078166px;}
._3a{width:14.433000px;}
._14{width:15.599186px;}
._d{width:17.678991px;}
._4c{width:19.186732px;}
._4a{width:22.802892px;}
._3c{width:25.857000px;}
._3e{width:27.438000px;}
._3f{width:28.968000px;}
._3{width:39.605389px;}
._2a{width:41.054988px;}
._e{width:54.621000px;}
._2d{width:66.554988px;}
._18{width:79.713000px;}
._1d{width:91.632000px;}
._1f{width:105.058286px;}
._1b{width:130.713000px;}
._1e{width:158.967000px;}
._36{width:176.613023px;}
._27{width:177.989988px;}
._34{width:181.407000px;}
._29{width:191.133576px;}
._33{width:201.246000px;}
._37{width:202.570245px;}
._1c{width:203.898000px;}
._2b{width:206.243988px;}
._17{width:216.648000px;}
._41{width:220.254000px;}
._44{width:223.939254px;}
._19{width:229.398000px;}
._43{width:235.110000px;}
._49{width:236.638286px;}
._28{width:241.739988px;}
._2c{width:257.243988px;}
._26{width:266.576988px;}
._35{width:269.329269px;}
._46{width:293.301000px;}
._48{width:333.604286px;}
._45{width:338.895000px;}
._38{width:342.872994px;}
._47{width:348.330000px;}
._16{width:351.847286px;}
._32{width:433.448994px;}
._42{width:488.733000px;}
._15{width:546.924000px;}
._1a{width:555.441000px;}
._31{width:615.606000px;}
._f{width:1993.232966px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:35.675400px;}
.fs8{font-size:35.699999px;}
.fse{font-size:35.761800px;}
.fsd{font-size:41.621400px;}
.fsf{font-size:41.721600px;}
.fs6{font-size:42.000000px;}
.fsb{font-size:42.010200px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:51.000000px;}
.fs5{font-size:60.000000px;}
.fsa{font-size:60.014997px;}
.fs9{font-size:66.000000px;}
.fs4{font-size:67.199999px;}
.fs7{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.fs3{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y119{bottom:3.190475px;}
.y146{bottom:3.199356px;}
.yea{bottom:5.520081px;}
.yf2{bottom:5.520538px;}
.yec{bottom:17.521271px;}
.yee{bottom:17.521454px;}
.yf0{bottom:17.521637px;}
.y2{bottom:68.547300px;}
.y1{bottom:68.829002px;}
.y36{bottom:112.944300px;}
.y14d{bottom:113.677345px;}
.yf9{bottom:113.912842px;}
.y125{bottom:113.923053px;}
.y179{bottom:114.874947px;}
.y31{bottom:122.973598px;}
.y35{bottom:127.938300px;}
.y124{bottom:128.923053px;}
.y6b{bottom:132.165298px;}
.yf8{bottom:133.165342px;}
.y178{bottom:133.624947px;}
.y9a{bottom:135.915298px;}
.y30{bottom:141.723598px;}
.y153{bottom:142.558352px;}
.y123{bottom:143.925592px;}
.y34{bottom:148.032303px;}
.y99{bottom:148.665298px;}
.y6a{bottom:150.915298px;}
.y177{bottom:152.374947px;}
.y199{bottom:152.437360px;}
.y2f{bottom:160.473598px;}
.yff{bottom:162.049348px;}
.y122{bottom:163.178092px;}
.y152{bottom:166.451855px;}
.y98{bottom:167.415298px;}
.y198{bottom:167.431360px;}
.y69{bottom:169.665298px;}
.y33{bottom:173.032794px;}
.y176{bottom:177.124947px;}
.y2e{bottom:179.223450px;}
.yfe{bottom:180.842848px;}
.y197{bottom:182.425360px;}
.y151{bottom:185.164352px;}
.y97{bottom:186.165298px;}
.y32{bottom:188.026794px;}
.y68{bottom:188.415298px;}
.y175{bottom:189.874947px;}
.y12b{bottom:192.049348px;}
.y196{bottom:197.419360px;}
.y2d{bottom:197.973450px;}
.y150{bottom:198.772357px;}
.yfd{bottom:199.559848px;}
.y96{bottom:204.915298px;}
.y14c{bottom:206.408092px;}
.y67{bottom:207.165298px;}
.y174{bottom:208.624947px;}
.y12a{bottom:210.842848px;}
.yf7{bottom:210.908092px;}
.y121{bottom:210.914092px;}
.y195{bottom:212.413360px;}
.y2c{bottom:216.723450px;}
.y14f{bottom:217.488593px;}
.yfc{bottom:218.276848px;}
.y14b{bottom:221.408092px;}
.y95{bottom:223.665298px;}
.yf6{bottom:225.908092px;}
.y66{bottom:225.915298px;}
.y173{bottom:227.374947px;}
.y194{bottom:227.407360px;}
.y129{bottom:229.559848px;}
.y26{bottom:235.473450px;}
.yfb{bottom:236.988593px;}
.y120{bottom:240.908092px;}
.y14a{bottom:241.502106px;}
.y193{bottom:242.401360px;}
.y94{bottom:242.415298px;}
.y65{bottom:244.665298px;}
.y14e{bottom:245.576843px;}
.yf5{bottom:246.002106px;}
.y128{bottom:248.276848px;}
.y149{bottom:251.403610px;}
.y172{bottom:252.124947px;}
.y25{bottom:254.223450px;}
.yf4{bottom:255.908092px;}
.y192{bottom:257.395360px;}
.y11f{bottom:261.002106px;}
.y93{bottom:261.165298px;}
.y64{bottom:263.415298px;}
.y171{bottom:264.874947px;}
.y127{bottom:266.988593px;}
.yfa{bottom:270.176857px;}
.yf3{bottom:270.902092px;}
.y191{bottom:272.389360px;}
.y24{bottom:272.973450px;}
.y11e{bottom:276.002106px;}
.y92{bottom:279.915298px;}
.y63{bottom:282.165298px;}
.y170{bottom:283.624947px;}
.y11d{bottom:285.911252px;}
.y190{bottom:287.383360px;}
.y23{bottom:291.723450px;}
.y91{bottom:298.665298px;}
.y126{bottom:300.176857px;}
.y11c{bottom:300.905252px;}
.y62{bottom:300.915298px;}
.y16f{bottom:302.374809px;}
.y18f{bottom:302.377360px;}
.y148{bottom:305.603850px;}
.y22{bottom:310.473450px;}
.y147{bottom:315.503860px;}
.y18e{bottom:317.371360px;}
.y90{bottom:317.415298px;}
.y61{bottom:319.665298px;}
.y16e{bottom:321.124809px;}
.y21{bottom:329.223450px;}
.ye7{bottom:330.510132px;}
.y18d{bottom:332.365360px;}
.y8f{bottom:336.165298px;}
.y60{bottom:338.415298px;}
.yc3{bottom:339.735306px;}
.y16d{bottom:339.874786px;}
.y18c{bottom:347.359360px;}
.y20{bottom:347.973450px;}
.ye6{bottom:349.260132px;}
.y130{bottom:350.578491px;}
.y8e{bottom:354.915298px;}
.y5f{bottom:357.165298px;}
.y11b{bottom:357.630000px;}
.yc2{bottom:358.485306px;}
.y16c{bottom:358.624786px;}
.y1f{bottom:366.723450px;}
.ye5{bottom:368.010132px;}
.y12f{bottom:371.243843px;}
.y11a{bottom:372.624000px;}
.y8d{bottom:373.665298px;}
.y5e{bottom:375.915298px;}
.yc1{bottom:377.235306px;}
.y16b{bottom:377.374786px;}
.y18b{bottom:381.109360px;}
.y145{bottom:383.295200px;}
.y1e{bottom:385.473450px;}
.y104{bottom:385.491760px;}
.y131{bottom:389.103149px;}
.y8c{bottom:392.415298px;}
.ye4{bottom:392.760132px;}
.y5d{bottom:394.665298px;}
.yc0{bottom:395.985306px;}
.y16a{bottom:396.124786px;}
.y144{bottom:401.319147px;}
.y1d{bottom:404.223450px;}
.ye3{bottom:405.510132px;}
.y103{bottom:407.698517px;}
.y8b{bottom:411.165298px;}
.y5c{bottom:413.415298px;}
.ybf{bottom:414.735306px;}
.y143{bottom:418.753025px;}
.y169{bottom:420.874786px;}
.y1c{bottom:422.973450px;}
.ye2{bottom:424.260132px;}
.y102{bottom:427.355988px;}
.y8a{bottom:429.915298px;}
.y5b{bottom:432.165298px;}
.ybe{bottom:433.485306px;}
.y168{bottom:433.624786px;}
.y142{bottom:436.785912px;}
.y1b{bottom:441.723450px;}
.y118{bottom:442.761998px;}
.ye1{bottom:443.010132px;}
.y89{bottom:448.665298px;}
.y5a{bottom:450.915298px;}
.ybd{bottom:452.235306px;}
.y167{bottom:452.374786px;}
.y141{bottom:454.818800px;}
.y18a{bottom:456.182688px;}
.y117{bottom:460.394565px;}
.y1a{bottom:460.473450px;}
.ye0{bottom:461.760132px;}
.y88{bottom:467.415298px;}
.y59{bottom:469.665298px;}
.ybc{bottom:470.985306px;}
.y166{bottom:471.124786px;}
.y189{bottom:471.176688px;}
.y140{bottom:472.234797px;}
.y116{bottom:478.027131px;}
.y19{bottom:479.223450px;}
.y87{bottom:486.165298px;}
.y188{bottom:486.170688px;}
.ydf{bottom:486.510132px;}
.y58{bottom:488.415298px;}
.ybb{bottom:489.735306px;}
.y165{bottom:489.874786px;}
.y13f{bottom:490.267684px;}
.y115{bottom:495.659697px;}
.y18{bottom:497.973450px;}
.yde{bottom:499.260132px;}
.y187{bottom:501.164688px;}
.y86{bottom:504.915298px;}
.y57{bottom:507.165298px;}
.y13e{bottom:508.300572px;}
.yba{bottom:508.485306px;}
.y164{bottom:508.624786px;}
.y114{bottom:512.560918px;}
.y186{bottom:516.158688px;}
.y17{bottom:516.723450px;}
.ydd{bottom:518.010132px;}
.y85{bottom:523.665298px;}
.y13d{bottom:525.734449px;}
.y56{bottom:525.915298px;}
.yb9{bottom:527.235306px;}
.y163{bottom:527.374786px;}
.y113{bottom:530.193485px;}
.y185{bottom:531.152688px;}
.y16{bottom:535.473450px;}
.ydc{bottom:536.760132px;}
.y2b{bottom:541.473450px;}
.y84{bottom:542.415298px;}
.y13c{bottom:543.767337px;}
.y55{bottom:544.665298px;}
.yb8{bottom:545.985306px;}
.y162{bottom:546.124786px;}
.y184{bottom:546.146688px;}
.y112{bottom:547.826051px;}
.y15{bottom:554.223450px;}
.ydb{bottom:555.510132px;}
.y183{bottom:561.140688px;}
.y83{bottom:561.165298px;}
.y13b{bottom:561.782344px;}
.y54{bottom:563.415298px;}
.yb7{bottom:564.735306px;}
.y161{bottom:564.874786px;}
.y111{bottom:565.458618px;}
.y14{bottom:572.973450px;}
.y182{bottom:576.134688px;}
.y13a{bottom:579.216221px;}
.y82{bottom:579.915298px;}
.y53{bottom:582.165298px;}
.y110{bottom:583.091184px;}
.yb6{bottom:583.485306px;}
.y160{bottom:583.624786px;}
.y181{bottom:591.128688px;}
.y29{bottom:591.723450px;}
.yda{bottom:593.010132px;}
.y139{bottom:597.249109px;}
.y13{bottom:597.723450px;}
.y2a{bottom:597.727950px;}
.y81{bottom:598.665298px;}
.y10f{bottom:600.723750px;}
.y52{bottom:600.915298px;}
.yb5{bottom:602.235306px;}
.y180{bottom:606.122688px;}
.y27{bottom:610.473450px;}
.y138{bottom:614.665105px;}
.y28{bottom:616.477950px;}
.y80{bottom:617.415298px;}
.y10e{bottom:617.624971px;}
.y51{bottom:619.665298px;}
.yb4{bottom:620.985306px;}
.y17f{bottom:621.116688px;}
.y15f{bottom:621.124786px;}
.y12{bottom:629.223450px;}
.y137{bottom:632.697993px;}
.y10d{bottom:635.257538px;}
.y7f{bottom:636.165298px;}
.y50{bottom:638.415298px;}
.yb3{bottom:639.735306px;}
.yd9{bottom:649.260132px;}
.y136{bottom:650.730881px;}
.y10c{bottom:652.890104px;}
.y17e{bottom:654.827688px;}
.y4f{bottom:657.165298px;}
.yb2{bottom:658.485306px;}
.yd8{bottom:668.010132px;}
.y135{bottom:668.164758px;}
.y17d{bottom:669.821688px;}
.y10b{bottom:670.531589px;}
.y1bf{bottom:671.392823px;}
.y7e{bottom:673.665298px;}
.y4e{bottom:675.915344px;}
.yb1{bottom:677.235260px;}
.y15e{bottom:677.374969px;}
.y11{bottom:685.473450px;}
.y134{bottom:686.197646px;}
.y1be{bottom:686.386823px;}
.yd7{bottom:686.760132px;}
.y10a{bottom:688.119562px;}
.y4d{bottom:694.665344px;}
.yb0{bottom:695.985260px;}
.y15d{bottom:696.124969px;}
.y1bd{bottom:701.380823px;}
.y17c{bottom:703.532688px;}
.y133{bottom:704.212653px;}
.y10{bottom:704.223450px;}
.yd6{bottom:705.510132px;}
.y109{bottom:705.761047px;}
.y4c{bottom:713.415344px;}
.yaf{bottom:714.735260px;}
.y15c{bottom:714.874969px;}
.y1bc{bottom:716.374823px;}
.y17b{bottom:718.526688px;}
.y132{bottom:721.646530px;}
.y108{bottom:723.393613px;}
.yd5{bottom:724.260132px;}
.y7d{bottom:729.915298px;}
.y1bb{bottom:731.368823px;}
.y4b{bottom:732.165344px;}
.yae{bottom:733.485260px;}
.y15b{bottom:733.624969px;}
.y107{bottom:740.285915px;}
.yf{bottom:741.723450px;}
.yd4{bottom:743.010132px;}
.y1d6{bottom:745.430573px;}
.y1ba{bottom:746.362823px;}
.y7c{bottom:748.665344px;}
.y4a{bottom:750.915344px;}
.yad{bottom:752.235260px;}
.y15a{bottom:752.374969px;}
.y106{bottom:757.927401px;}
.y1d5{bottom:760.424573px;}
.ye{bottom:760.473450px;}
.y1b9{bottom:761.356823px;}
.yd3{bottom:761.760132px;}
.y7b{bottom:767.415344px;}
.y49{bottom:769.665344px;}
.yac{bottom:770.985260px;}
.y159{bottom:771.124969px;}
.y105{bottom:775.559967px;}
.y1b8{bottom:776.350823px;}
.yd{bottom:779.223450px;}
.yd2{bottom:780.510132px;}
.y7a{bottom:786.165344px;}
.y48{bottom:788.415344px;}
.yab{bottom:789.735260px;}
.y158{bottom:789.874969px;}
.y1d4{bottom:791.266823px;}
.y1b7{bottom:791.344823px;}
.yc{bottom:797.973450px;}
.yd1{bottom:799.260132px;}
.y79{bottom:804.915344px;}
.y1d3{bottom:806.260823px;}
.y1b6{bottom:806.338823px;}
.y47{bottom:807.165344px;}
.yaa{bottom:808.485260px;}
.y157{bottom:808.624969px;}
.yb{bottom:816.723450px;}
.yd0{bottom:818.010132px;}
.y1d2{bottom:821.254823px;}
.y1b5{bottom:821.332823px;}
.y78{bottom:823.665344px;}
.y46{bottom:825.915344px;}
.ya9{bottom:827.235260px;}
.y12e{bottom:833.235260px;}
.y156{bottom:833.374969px;}
.ya{bottom:835.473450px;}
.y1d1{bottom:836.248823px;}
.y1b4{bottom:836.326823px;}
.ycf{bottom:836.760132px;}
.y77{bottom:842.415344px;}
.y45{bottom:844.665344px;}
.ya8{bottom:845.985260px;}
.y155{bottom:846.124969px;}
.y1d0{bottom:851.242823px;}
.y1b3{bottom:851.320823px;}
.yce{bottom:855.510132px;}
.y76{bottom:861.165344px;}
.y44{bottom:863.415344px;}
.ya7{bottom:864.735260px;}
.y154{bottom:864.874969px;}
.y1cf{bottom:866.236823px;}
.y1b2{bottom:866.314823px;}
.ycd{bottom:874.260132px;}
.y9{bottom:879.656208px;}
.y75{bottom:879.915344px;}
.y1ce{bottom:881.230823px;}
.y1b1{bottom:881.308823px;}
.ya6{bottom:883.485260px;}
.y43{bottom:888.165344px;}
.ycc{bottom:893.010132px;}
.y8{bottom:894.650208px;}
.y1b0{bottom:896.302823px;}
.y1cd{bottom:896.468597px;}
.y74{bottom:898.665344px;}
.y42{bottom:900.915344px;}
.ya5{bottom:902.235260px;}
.y1af{bottom:911.296823px;}
.y1cc{bottom:911.462597px;}
.ycb{bottom:911.760132px;}
.y73{bottom:917.415344px;}
.y19c{bottom:917.875847px;}
.y41{bottom:919.665344px;}
.ya4{bottom:920.985260px;}
.y1ae{bottom:926.290823px;}
.y1cb{bottom:926.456597px;}
.yca{bottom:930.510172px;}
.y72{bottom:936.165344px;}
.y7{bottom:937.250244px;}
.y40{bottom:938.415344px;}
.ya3{bottom:939.735260px;}
.y1ad{bottom:941.284823px;}
.y1ca{bottom:941.450597px;}
.y1a2{bottom:946.584756px;}
.y71{bottom:954.915344px;}
.y1ac{bottom:956.278823px;}
.y1c9{bottom:956.444597px;}
.y3f{bottom:957.165344px;}
.ya2{bottom:958.485260px;}
.ye9{bottom:958.635040px;}
.yeb{bottom:960.415833px;}
.ye8{bottom:962.310116px;}
.yed{bottom:964.155121px;}
.yef{bottom:964.155487px;}
.yf1{bottom:964.155579px;}
.y12c{bottom:964.485260px;}
.y1a1{bottom:965.378256px;}
.y1ab{bottom:971.272823px;}
.y1c8{bottom:971.438597px;}
.y70{bottom:973.665344px;}
.y3e{bottom:975.915344px;}
.ya1{bottom:977.235260px;}
.y6{bottom:981.936768px;}
.y1a0{bottom:984.095256px;}
.y1aa{bottom:986.266823px;}
.y1c7{bottom:986.432597px;}
.y6f{bottom:992.415344px;}
.y3d{bottom:994.665344px;}
.yc9{bottom:995.985168px;}
.ya0{bottom:995.985260px;}
.y1a9{bottom:1001.260823px;}
.y1c6{bottom:1001.426597px;}
.y12d{bottom:1001.985260px;}
.y19f{bottom:1007.912292px;}
.y5{bottom:1008.936768px;}
.y6e{bottom:1011.165344px;}
.y3c{bottom:1013.415344px;}
.yc8{bottom:1014.735168px;}
.y9f{bottom:1014.735260px;}
.y1a8{bottom:1016.254823px;}
.y1c5{bottom:1016.420597px;}
.y19e{bottom:1021.524024px;}
.y1a7{bottom:1031.248823px;}
.y1c4{bottom:1031.414597px;}
.y3b{bottom:1032.165344px;}
.y9e{bottom:1033.485260px;}
.yc7{bottom:1033.485306px;}
.y1a6{bottom:1046.242823px;}
.y1c3{bottom:1046.408597px;}
.y6d{bottom:1048.665344px;}
.y19d{bottom:1049.612274px;}
.y3a{bottom:1050.915344px;}
.y9d{bottom:1052.235260px;}
.yc6{bottom:1052.235306px;}
.y101{bottom:1058.235260px;}
.y1a5{bottom:1061.236823px;}
.y1c2{bottom:1061.402597px;}
.y39{bottom:1069.665344px;}
.y9c{bottom:1070.985260px;}
.yc5{bottom:1070.985306px;}
.y19b{bottom:1075.108844px;}
.y1a4{bottom:1076.230823px;}
.y1c1{bottom:1076.396597px;}
.y6c{bottom:1086.165344px;}
.y38{bottom:1088.415344px;}
.y9b{bottom:1089.735260px;}
.yc4{bottom:1089.735306px;}
.y17a{bottom:1089.739906px;}
.y19a{bottom:1090.187156px;}
.y1a3{bottom:1091.224823px;}
.y1c0{bottom:1091.390597px;}
.y100{bottom:1095.735260px;}
.y4{bottom:1109.586556px;}
.y3{bottom:1126.582306px;}
.y37{bottom:1127.482361px;}
.h19{height:3.960990px;}
.h16{height:18.599999px;}
.h1a{height:18.784694px;}
.h10{height:25.204199px;}
.h1f{height:25.650613px;}
.h26{height:25.712734px;}
.h21{height:28.926873px;}
.h28{height:28.996512px;}
.hc{height:29.652000px;}
.hf{height:36.006000px;}
.he{height:36.855469px;}
.h18{height:38.122942px;}
.h17{height:40.090018px;}
.h1b{height:40.570138px;}
.h2{height:42.048000px;}
.ha{height:42.360000px;}
.h2f{height:44.628883px;}
.h4{height:44.676000px;}
.h1c{height:45.186000px;}
.h2e{height:45.267466px;}
.h23{height:45.567616px;}
.h24{height:45.570053px;}
.h25{height:45.580208px;}
.h1d{height:45.580254px;}
.h2a{height:45.598180px;}
.h29{height:45.604157px;}
.h22{height:45.604165px;}
.h1e{height:45.607218px;}
.h12{height:46.530000px;}
.h2d{height:53.633415px;}
.h14{height:53.651451px;}
.h11{height:53.651817px;}
.h15{height:53.651840px;}
.h9{height:53.652000px;}
.h2b{height:53.652092px;}
.h13{height:53.652183px;}
.h2c{height:53.652549px;}
.hd{height:53.652595px;}
.h3{height:54.862258px;}
.h8{height:59.340000px;}
.h7{height:64.866000px;}
.hb{height:71.208000px;}
.h6{height:85.056000px;}
.h5{height:97.938979px;}
.h20{height:393.142502px;}
.h27{height:396.772522px;}
.h0{height:1186.299000px;}
.h1{height:1186.500000px;}
.w2{width:183.044998px;}
.w3{width:739.841995px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:27.398712px;}
.x18{left:51.022653px;}
.x10{left:74.702545px;}
.x3{left:76.535402px;}
.xb{left:78.746400px;}
.x4{left:93.525151px;}
.xa{left:97.796100px;}
.x1f{left:102.048152px;}
.x12{left:132.145523px;}
.x19{left:137.476085px;}
.x14{left:160.886993px;}
.x1e{left:253.276955px;}
.x15{left:267.874204px;}
.x1b{left:296.136589px;}
.x1a{left:354.607801px;}
.x1c{left:430.793106px;}
.x5{left:459.209533px;}
.xd{left:464.321686px;}
.x16{left:468.279282px;}
.x9{left:476.220612px;}
.x1d{left:484.725290px;}
.x6{left:495.205192px;}
.xf{left:499.381210px;}
.x11{left:556.634995px;}
.x8{left:602.990410px;}
.x13{left:609.960022px;}
.x1{left:728.220612px;}
.x17{left:743.038788px;}
.x2{left:755.489868px;}
.x7{left:778.973808px;}
.xc{left:798.894460px;}
@media print{
.v3{vertical-align:-21.333333pt;}
.v5{vertical-align:-18.133343pt;}
.v4{vertical-align:-13.333333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:13.295247pt;}
.v7{vertical-align:18.112049pt;}
.v2{vertical-align:21.333333pt;}
.v1{vertical-align:34.133138pt;}
.ls9a{letter-spacing:-4.373333pt;}
.lsc4{letter-spacing:-3.840000pt;}
.ls84{letter-spacing:-3.733333pt;}
.lsa0{letter-spacing:-3.400000pt;}
.lsc2{letter-spacing:-2.453333pt;}
.ls2f{letter-spacing:-1.920000pt;}
.ls7c{letter-spacing:-1.706667pt;}
.ls97{letter-spacing:-1.280000pt;}
.lsc5{letter-spacing:-1.066667pt;}
.lsad{letter-spacing:-0.741717pt;}
.ls9e{letter-spacing:-0.739936pt;}
.lsae{letter-spacing:-0.630460pt;}
.ls9f{letter-spacing:-0.628946pt;}
.ls86{letter-spacing:-0.589333pt;}
.ls9b{letter-spacing:-0.586667pt;}
.ls98{letter-spacing:-0.373333pt;}
.ls2b{letter-spacing:-0.320000pt;}
.lsc6{letter-spacing:-0.317333pt;}
.ls28{letter-spacing:-0.266667pt;}
.ls99{letter-spacing:-0.261333pt;}
.lsd1{letter-spacing:-0.226667pt;}
.lsab{letter-spacing:-0.222515pt;}
.ls9c{letter-spacing:-0.221981pt;}
.ls2c{letter-spacing:-0.213333pt;}
.ls29{letter-spacing:-0.186667pt;}
.lsa1{letter-spacing:-0.181333pt;}
.ls7a{letter-spacing:-0.160000pt;}
.ls2d{letter-spacing:-0.149333pt;}
.lsd0{letter-spacing:-0.136000pt;}
.ls83{letter-spacing:-0.112000pt;}
.ls7d{letter-spacing:-0.106667pt;}
.lsaa{letter-spacing:-0.074667pt;}
.ls85{letter-spacing:-0.053347pt;}
.ls7e{letter-spacing:-0.053333pt;}
.lsd2{letter-spacing:-0.045333pt;}
.ls82{letter-spacing:-0.037333pt;}
.ls27{letter-spacing:0.000000pt;}
.ls8c{letter-spacing:0.000018pt;}
.lsc1{letter-spacing:0.000023pt;}
.ls8d{letter-spacing:0.000033pt;}
.ls8b{letter-spacing:0.000037pt;}
.ls13{letter-spacing:0.021333pt;}
.ls73{letter-spacing:0.024119pt;}
.ls80{letter-spacing:0.037333pt;}
.ls2{letter-spacing:0.039427pt;}
.lsb8{letter-spacing:0.045333pt;}
.ls1{letter-spacing:0.053333pt;}
.ls70{letter-spacing:0.053347pt;}
.lsa3{letter-spacing:0.068848pt;}
.ls4{letter-spacing:0.080000pt;}
.lsb7{letter-spacing:0.090667pt;}
.lsd{letter-spacing:0.106667pt;}
.ls96{letter-spacing:0.112000pt;}
.ls87{letter-spacing:0.128581pt;}
.lsb3{letter-spacing:0.138672pt;}
.lsd3{letter-spacing:0.158667pt;}
.ls25{letter-spacing:0.158926pt;}
.lsf{letter-spacing:0.160000pt;}
.ls67{letter-spacing:0.170640pt;}
.ls1a{letter-spacing:0.178701pt;}
.lsb6{letter-spacing:0.181333pt;}
.ls6a{letter-spacing:0.184647pt;}
.ls6c{letter-spacing:0.186237pt;}
.lsa4{letter-spacing:0.186523pt;}
.ls66{letter-spacing:0.186600pt;}
.ls10{letter-spacing:0.186667pt;}
.lsa{letter-spacing:0.186686pt;}
.lscd{letter-spacing:0.204000pt;}
.ls0{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.226667pt;}
.ls64{letter-spacing:0.227779pt;}
.ls1f{letter-spacing:0.245333pt;}
.lsce{letter-spacing:0.249333pt;}
.lsbb{letter-spacing:0.256000pt;}
.ls69{letter-spacing:0.257598pt;}
.ls7f{letter-spacing:0.261333pt;}
.ls1b{letter-spacing:0.266659pt;}
.ls3{letter-spacing:0.266667pt;}
.ls5e{letter-spacing:0.281087pt;}
.ls5c{letter-spacing:0.293333pt;}
.ls7b{letter-spacing:0.298667pt;}
.ls21{letter-spacing:0.314667pt;}
.lsb9{letter-spacing:0.317333pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb4{letter-spacing:0.324300pt;}
.ls5f{letter-spacing:0.328003pt;}
.ls51{letter-spacing:0.336000pt;}
.ls1c{letter-spacing:0.341286pt;}
.ls60{letter-spacing:0.346667pt;}
.ls63{letter-spacing:0.353476pt;}
.lsba{letter-spacing:0.362667pt;}
.ls11{letter-spacing:0.373289pt;}
.ls45{letter-spacing:0.373333pt;}
.lsaf{letter-spacing:0.380817pt;}
.ls5d{letter-spacing:0.400000pt;}
.lsc0{letter-spacing:0.408000pt;}
.ls62{letter-spacing:0.410660pt;}
.ls2a{letter-spacing:0.410667pt;}
.lsb{letter-spacing:0.426667pt;}
.ls68{letter-spacing:0.443125pt;}
.lsb2{letter-spacing:0.445921pt;}
.ls35{letter-spacing:0.453333pt;}
.lse{letter-spacing:0.480000pt;}
.ls6b{letter-spacing:0.484273pt;}
.ls79{letter-spacing:0.485333pt;}
.lscb{letter-spacing:0.498667pt;}
.ls57{letter-spacing:0.522667pt;}
.ls14{letter-spacing:0.533333pt;}
.ls9d{letter-spacing:0.554952pt;}
.lsac{letter-spacing:0.556288pt;}
.ls88{letter-spacing:0.560000pt;}
.ls6{letter-spacing:0.586667pt;}
.lsc3{letter-spacing:0.597333pt;}
.ls48{letter-spacing:0.613333pt;}
.ls36{letter-spacing:0.629322pt;}
.ls89{letter-spacing:0.633586pt;}
.ls8{letter-spacing:0.634667pt;}
.ls20{letter-spacing:0.640000pt;}
.lsa5{letter-spacing:0.655436pt;}
.lsb5{letter-spacing:0.660258pt;}
.ls5b{letter-spacing:0.671426pt;}
.ls81{letter-spacing:0.672000pt;}
.ls65{letter-spacing:0.672591pt;}
.lsbd{letter-spacing:0.680000pt;}
.ls12{letter-spacing:0.693333pt;}
.ls5a{letter-spacing:0.708779pt;}
.ls54{letter-spacing:0.709333pt;}
.ls50{letter-spacing:0.714667pt;}
.ls61{letter-spacing:0.720000pt;}
.lsbf{letter-spacing:0.725333pt;}
.ls16{letter-spacing:0.746667pt;}
.lsa6{letter-spacing:0.755859pt;}
.ls6d{letter-spacing:0.764323pt;}
.lscf{letter-spacing:0.770667pt;}
.ls8a{letter-spacing:0.773333pt;}
.ls23{letter-spacing:0.784000pt;}
.lsa2{letter-spacing:0.799993pt;}
.ls32{letter-spacing:0.800000pt;}
.ls56{letter-spacing:0.821333pt;}
.lsb1{letter-spacing:0.826667pt;}
.ls15{letter-spacing:0.853333pt;}
.lsbc{letter-spacing:0.861333pt;}
.ls59{letter-spacing:0.880000pt;}
.ls7{letter-spacing:0.906667pt;}
.ls3b{letter-spacing:0.939736pt;}
.lscc{letter-spacing:0.952000pt;}
.ls2e{letter-spacing:0.960000pt;}
.ls3e{letter-spacing:0.986667pt;}
.ls3c{letter-spacing:0.995645pt;}
.lsca{letter-spacing:0.997333pt;}
.ls4b{letter-spacing:1.013321pt;}
.ls1e{letter-spacing:1.013333pt;}
.lsbe{letter-spacing:1.042667pt;}
.ls55{letter-spacing:1.045333pt;}
.ls49{letter-spacing:1.060260pt;}
.ls3f{letter-spacing:1.066667pt;}
.ls22{letter-spacing:1.120000pt;}
.lsc{letter-spacing:1.141309pt;}
.ls34{letter-spacing:1.157333pt;}
.ls31{letter-spacing:1.173333pt;}
.ls58{letter-spacing:1.194667pt;}
.ls1d{letter-spacing:1.200000pt;}
.lsc7{letter-spacing:1.224000pt;}
.ls4e{letter-spacing:1.226660pt;}
.ls47{letter-spacing:1.226667pt;}
.ls39{letter-spacing:1.253333pt;}
.ls4f{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.333333pt;}
.lsc8{letter-spacing:1.360000pt;}
.ls52{letter-spacing:1.381333pt;}
.ls37{letter-spacing:1.386667pt;}
.ls30{letter-spacing:1.440000pt;}
.ls43{letter-spacing:1.493333pt;}
.ls42{letter-spacing:1.508258pt;}
.lsc9{letter-spacing:1.518667pt;}
.ls44{letter-spacing:1.546667pt;}
.ls53{letter-spacing:1.568000pt;}
.ls40{letter-spacing:1.600000pt;}
.ls4c{letter-spacing:1.626667pt;}
.ls33{letter-spacing:1.653333pt;}
.ls4d{letter-spacing:1.680000pt;}
.ls46{letter-spacing:1.760000pt;}
.ls17{letter-spacing:1.781333pt;}
.ls19{letter-spacing:1.840000pt;}
.ls18{letter-spacing:1.866667pt;}
.lsb0{letter-spacing:1.920000pt;}
.ls38{letter-spacing:1.973333pt;}
.ls4a{letter-spacing:2.080000pt;}
.ls41{letter-spacing:2.133333pt;}
.ls3d{letter-spacing:2.240000pt;}
.ls24{letter-spacing:2.586667pt;}
.ls6f{letter-spacing:2.627439pt;}
.ls72{letter-spacing:11.842960pt;}
.ls5{letter-spacing:13.328552pt;}
.ls71{letter-spacing:14.531410pt;}
.ls6e{letter-spacing:17.506345pt;}
.ls8e{letter-spacing:67.225632pt;}
.ls94{letter-spacing:67.773333pt;}
.ls90{letter-spacing:71.600802pt;}
.ls95{letter-spacing:72.805333pt;}
.ls92{letter-spacing:116.934217pt;}
.ls76{letter-spacing:151.312309pt;}
.ls91{letter-spacing:193.320773pt;}
.ls8f{letter-spacing:218.412237pt;}
.ls77{letter-spacing:227.699028pt;}
.ls75{letter-spacing:227.699354pt;}
.ls74{letter-spacing:230.123826pt;}
.ls93{letter-spacing:238.654106pt;}
.ls78{letter-spacing:250.365695pt;}
.lsa9{letter-spacing:319.556775pt;}
.lsa7{letter-spacing:319.556937pt;}
.lsa8{letter-spacing:332.930141pt;}
.ws3{word-spacing:-16.384000pt;}
.ws47{word-spacing:-15.466667pt;}
.ws6f{word-spacing:-14.346667pt;}
.ws82{word-spacing:-14.026667pt;}
.ws32{word-spacing:-13.920000pt;}
.ws77{word-spacing:-13.813333pt;}
.ws66{word-spacing:-13.600000pt;}
.wsae{word-spacing:-13.493333pt;}
.ws65{word-spacing:-13.333333pt;}
.ws83{word-spacing:-13.280000pt;}
.wsb0{word-spacing:-13.184000pt;}
.ws23{word-spacing:-13.120000pt;}
.wsb{word-spacing:-12.928000pt;}
.wsc5{word-spacing:-12.194667pt;}
.wsc3{word-spacing:-11.560000pt;}
.ws2{word-spacing:-11.468800pt;}
.wsa3{word-spacing:-11.413333pt;}
.ws69{word-spacing:-11.333333pt;}
.ws4{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.986667pt;}
.ws34{word-spacing:-10.901333pt;}
.ws33{word-spacing:-10.714667pt;}
.ws3a{word-spacing:-10.528000pt;}
.ws30{word-spacing:-10.490667pt;}
.ws36{word-spacing:-10.378667pt;}
.ws9{word-spacing:-10.240000pt;}
.ws37{word-spacing:-10.154667pt;}
.wsf{word-spacing:-10.117333pt;}
.ws5c{word-spacing:-10.080000pt;}
.ws35{word-spacing:-10.042667pt;}
.ws62{word-spacing:-10.005333pt;}
.wsd{word-spacing:-9.968000pt;}
.wsad{word-spacing:-9.930667pt;}
.wsa1{word-spacing:-9.893333pt;}
.ws38{word-spacing:-9.856000pt;}
.ws5d{word-spacing:-9.818667pt;}
.wsc{word-spacing:-9.744000pt;}
.ws60{word-spacing:-9.706667pt;}
.ws31{word-spacing:-9.669333pt;}
.ws5e{word-spacing:-9.632000pt;}
.ws5f{word-spacing:-9.594667pt;}
.ws7{word-spacing:-9.520000pt;}
.ws84{word-spacing:-9.445333pt;}
.ws61{word-spacing:-9.370667pt;}
.wsa{word-spacing:-9.333333pt;}
.ws63{word-spacing:-9.296000pt;}
.wsa2{word-spacing:-9.258667pt;}
.ws64{word-spacing:-9.221333pt;}
.wse{word-spacing:-9.184000pt;}
.wsaf{word-spacing:-9.157333pt;}
.ws8{word-spacing:-9.146667pt;}
.ws85{word-spacing:-9.072000pt;}
.ws1{word-spacing:-8.885333pt;}
.ws0{word-spacing:-8.362667pt;}
.wsc7{word-spacing:-8.092000pt;}
.ws68{word-spacing:-7.933333pt;}
.ws5{word-spacing:-7.728000pt;}
.ws57{word-spacing:-6.666667pt;}
.ws80{word-spacing:-5.666667pt;}
.ws22{word-spacing:-1.866667pt;}
.ws10{word-spacing:-1.680000pt;}
.ws54{word-spacing:-1.653333pt;}
.ws41{word-spacing:-1.440000pt;}
.ws59{word-spacing:-1.386667pt;}
.ws12{word-spacing:-1.333333pt;}
.ws46{word-spacing:-1.280000pt;}
.ws29{word-spacing:-1.173333pt;}
.wsbb{word-spacing:-1.133333pt;}
.ws28{word-spacing:-1.120000pt;}
.wsca{word-spacing:-1.088000pt;}
.ws52{word-spacing:-1.066667pt;}
.ws1b{word-spacing:-1.013333pt;}
.ws7b{word-spacing:-0.960000pt;}
.wsc0{word-spacing:-0.952000pt;}
.ws1d{word-spacing:-0.906667pt;}
.wsbd{word-spacing:-0.861333pt;}
.ws56{word-spacing:-0.853333pt;}
.ws74{word-spacing:-0.746667pt;}
.wsc4{word-spacing:-0.725333pt;}
.ws95{word-spacing:-0.693333pt;}
.wsc1{word-spacing:-0.680000pt;}
.ws18{word-spacing:-0.640000pt;}
.wsc2{word-spacing:-0.634667pt;}
.wsa6{word-spacing:-0.593374pt;}
.ws88{word-spacing:-0.591949pt;}
.ws98{word-spacing:-0.586667pt;}
.ws2f{word-spacing:-0.544000pt;}
.ws13{word-spacing:-0.533333pt;}
.ws3c{word-spacing:-0.480000pt;}
.ws24{word-spacing:-0.426667pt;}
.wscd{word-spacing:-0.408000pt;}
.ws17{word-spacing:-0.320000pt;}
.ws19{word-spacing:-0.266667pt;}
.wscf{word-spacing:-0.226667pt;}
.ws7a{word-spacing:-0.213333pt;}
.ws1a{word-spacing:-0.186667pt;}
.wsc8{word-spacing:-0.181333pt;}
.wsb6{word-spacing:-0.160000pt;}
.ws4f{word-spacing:-0.106667pt;}
.ws39{word-spacing:-0.058667pt;}
.ws67{word-spacing:-0.053347pt;}
.ws1e{word-spacing:-0.053333pt;}
.wsa4{word-spacing:-0.031788pt;}
.ws86{word-spacing:-0.031711pt;}
.ws11{word-spacing:0.000000pt;}
.wsab{word-spacing:0.053333pt;}
.ws7f{word-spacing:0.053347pt;}
.ws79{word-spacing:0.106667pt;}
.ws4a{word-spacing:0.160000pt;}
.ws87{word-spacing:0.184984pt;}
.wsa5{word-spacing:0.185429pt;}
.ws55{word-spacing:0.213333pt;}
.ws75{word-spacing:0.266667pt;}
.wsba{word-spacing:0.272000pt;}
.ws76{word-spacing:0.426667pt;}
.ws16{word-spacing:0.480000pt;}
.wsb4{word-spacing:0.533333pt;}
.ws3e{word-spacing:0.586667pt;}
.ws81{word-spacing:0.589333pt;}
.ws9c{word-spacing:0.628946pt;}
.wsac{word-spacing:0.630460pt;}
.ws9f{word-spacing:0.680000pt;}
.ws2b{word-spacing:0.693333pt;}
.ws89{word-spacing:0.702939pt;}
.wsa7{word-spacing:0.704631pt;}
.ws3d{word-spacing:0.746667pt;}
.ws78{word-spacing:0.853333pt;}
.ws96{word-spacing:0.906667pt;}
.wsa9{word-spacing:0.960000pt;}
.wsbe{word-spacing:1.042667pt;}
.wsb5{word-spacing:1.066667pt;}
.wsbf{word-spacing:1.133333pt;}
.ws43{word-spacing:1.280000pt;}
.wsc9{word-spacing:1.314667pt;}
.ws14{word-spacing:1.333333pt;}
.wsbc{word-spacing:1.360000pt;}
.ws40{word-spacing:1.386667pt;}
.ws1c{word-spacing:1.440000pt;}
.ws44{word-spacing:1.493333pt;}
.ws2d{word-spacing:1.546667pt;}
.ws49{word-spacing:1.600000pt;}
.wsb2{word-spacing:1.653333pt;}
.ws4b{word-spacing:1.706667pt;}
.wsa0{word-spacing:1.768000pt;}
.ws20{word-spacing:1.813333pt;}
.ws50{word-spacing:1.866667pt;}
.ws53{word-spacing:1.920000pt;}
.ws4c{word-spacing:1.973333pt;}
.wscb{word-spacing:2.040000pt;}
.wsaa{word-spacing:2.080000pt;}
.ws45{word-spacing:2.133333pt;}
.ws5a{word-spacing:2.186667pt;}
.ws1f{word-spacing:2.293333pt;}
.ws2a{word-spacing:2.346667pt;}
.ws71{word-spacing:2.400000pt;}
.ws9d{word-spacing:2.402667pt;}
.wsb3{word-spacing:2.453333pt;}
.ws3b{word-spacing:2.506667pt;}
.ws15{word-spacing:2.560000pt;}
.ws4e{word-spacing:2.613333pt;}
.ws27{word-spacing:2.666667pt;}
.wscc{word-spacing:2.674667pt;}
.wsb8{word-spacing:2.720000pt;}
.ws70{word-spacing:2.826667pt;}
.ws7c{word-spacing:2.933333pt;}
.ws9b{word-spacing:2.986667pt;}
.wsd0{word-spacing:3.037333pt;}
.ws26{word-spacing:3.040000pt;}
.ws4d{word-spacing:3.093333pt;}
.ws72{word-spacing:3.360000pt;}
.ws9e{word-spacing:3.400000pt;}
.ws7e{word-spacing:3.413333pt;}
.wsce{word-spacing:3.445333pt;}
.ws2c{word-spacing:3.520000pt;}
.ws9a{word-spacing:3.573333pt;}
.ws7d{word-spacing:3.733333pt;}
.wsb7{word-spacing:3.840000pt;}
.ws25{word-spacing:3.946667pt;}
.ws3f{word-spacing:4.053333pt;}
.ws58{word-spacing:4.160000pt;}
.wsb9{word-spacing:4.213333pt;}
.ws5b{word-spacing:4.266667pt;}
.ws97{word-spacing:4.373333pt;}
.ws73{word-spacing:4.426667pt;}
.ws51{word-spacing:4.640000pt;}
.ws48{word-spacing:5.066667pt;}
.ws42{word-spacing:5.600000pt;}
.ws99{word-spacing:5.653333pt;}
.ws21{word-spacing:7.200000pt;}
.wsb1{word-spacing:7.520000pt;}
.wsc6{word-spacing:10.109333pt;}
.wsd1{word-spacing:12.013333pt;}
.wsd2{word-spacing:15.640000pt;}
.ws91{word-spacing:25.160000pt;}
.ws92{word-spacing:50.864000pt;}
.ws8f{word-spacing:56.440000pt;}
.ws2e{word-spacing:64.237333pt;}
.ws8c{word-spacing:72.756348pt;}
.ws93{word-spacing:96.197333pt;}
.ws6b{word-spacing:107.134440pt;}
.ws6e{word-spacing:130.560000pt;}
.ws8b{word-spacing:141.572237pt;}
.ws8a{word-spacing:172.353652pt;}
.ws6a{word-spacing:175.950329pt;}
.ws8e{word-spacing:176.071034pt;}
.ws6c{word-spacing:188.553159pt;}
.ws90{word-spacing:190.943990pt;}
.ws8d{word-spacing:199.508237pt;}
.ws6d{word-spacing:206.946667pt;}
.ws94{word-spacing:217.917323pt;}
.wsa8{word-spacing:414.981333pt;}
._20{margin-left:-178.630692pt;}
._2e{margin-left:-162.907333pt;}
._22{margin-left:-161.696765pt;}
._2f{margin-left:-160.610240pt;}
._21{margin-left:-159.698946pt;}
._23{margin-left:-155.925282pt;}
._30{margin-left:-153.078186pt;}
._24{margin-left:-136.486153pt;}
._40{margin-left:-21.707459pt;}
._12{margin-left:-18.086462pt;}
._10{margin-left:-16.329540pt;}
._13{margin-left:-15.022857pt;}
._7{margin-left:-14.127992pt;}
._4{margin-left:-12.298590pt;}
._25{margin-left:-11.334946pt;}
._4b{margin-left:-10.290667pt;}
._9{margin-left:-7.633502pt;}
._2{margin-left:-5.784021pt;}
._5{margin-left:-4.474667pt;}
._6{margin-left:-3.584008pt;}
._8{margin-left:-2.582476pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.586667pt;}
._c{width:2.630366pt;}
._11{width:4.256096pt;}
._3b{width:6.256000pt;}
._3d{width:7.661333pt;}
._a{width:8.842667pt;}
._39{width:10.154667pt;}
._b{width:11.625036pt;}
._3a{width:12.829333pt;}
._14{width:13.865943pt;}
._d{width:15.714659pt;}
._4c{width:17.054873pt;}
._4a{width:20.269237pt;}
._3c{width:22.984000pt;}
._3e{width:24.389333pt;}
._3f{width:25.749333pt;}
._3{width:35.204790pt;}
._2a{width:36.493323pt;}
._e{width:48.552000pt;}
._2d{width:59.159990pt;}
._18{width:70.856000pt;}
._1d{width:81.450667pt;}
._1f{width:93.385143pt;}
._1b{width:116.189333pt;}
._1e{width:141.304000pt;}
._36{width:156.989354pt;}
._27{width:158.213323pt;}
._34{width:161.250667pt;}
._29{width:169.896512pt;}
._33{width:178.885333pt;}
._37{width:180.062440pt;}
._1c{width:181.242667pt;}
._2b{width:183.327990pt;}
._17{width:192.576000pt;}
._41{width:195.781333pt;}
._44{width:199.057114pt;}
._19{width:203.909333pt;}
._43{width:208.986667pt;}
._49{width:210.345143pt;}
._28{width:214.879990pt;}
._2c{width:228.661323pt;}
._26{width:236.957323pt;}
._35{width:239.403794pt;}
._46{width:260.712000pt;}
._48{width:296.537143pt;}
._45{width:301.240000pt;}
._38{width:304.775994pt;}
._47{width:309.626667pt;}
._16{width:312.753143pt;}
._32{width:385.287994pt;}
._42{width:434.429333pt;}
._15{width:486.154667pt;}
._1a{width:493.725333pt;}
._31{width:547.205333pt;}
._f{width:1771.762636pt;}
.fsc{font-size:31.711467pt;}
.fs8{font-size:31.733332pt;}
.fse{font-size:31.788267pt;}
.fsd{font-size:36.996800pt;}
.fsf{font-size:37.085867pt;}
.fs6{font-size:37.333333pt;}
.fsb{font-size:37.342400pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:45.333333pt;}
.fs5{font-size:53.333333pt;}
.fsa{font-size:53.346664pt;}
.fs9{font-size:58.666667pt;}
.fs4{font-size:59.733332pt;}
.fs7{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.fs3{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y119{bottom:2.835978pt;}
.y146{bottom:2.843872pt;}
.yea{bottom:4.906738pt;}
.yf2{bottom:4.907145pt;}
.yec{bottom:15.574463pt;}
.yee{bottom:15.574626pt;}
.yf0{bottom:15.574788pt;}
.y2{bottom:60.930933pt;}
.y1{bottom:61.181335pt;}
.y36{bottom:100.394933pt;}
.y14d{bottom:101.046529pt;}
.yf9{bottom:101.255860pt;}
.y125{bottom:101.264936pt;}
.y179{bottom:102.111064pt;}
.y31{bottom:109.309865pt;}
.y35{bottom:113.722933pt;}
.y124{bottom:114.598270pt;}
.y6b{bottom:117.480265pt;}
.yf8{bottom:118.369193pt;}
.y178{bottom:118.777730pt;}
.y9a{bottom:120.813599pt;}
.y30{bottom:125.976532pt;}
.y153{bottom:126.718535pt;}
.y123{bottom:127.933860pt;}
.y34{bottom:131.584269pt;}
.y99{bottom:132.146932pt;}
.y6a{bottom:134.146932pt;}
.y177{bottom:135.444397pt;}
.y199{bottom:135.499875pt;}
.y2f{bottom:142.643199pt;}
.yff{bottom:144.043865pt;}
.y122{bottom:145.047193pt;}
.y152{bottom:147.957204pt;}
.y98{bottom:148.813599pt;}
.y198{bottom:148.827875pt;}
.y69{bottom:150.813599pt;}
.y33{bottom:153.806928pt;}
.y176{bottom:157.444397pt;}
.y2e{bottom:159.309733pt;}
.yfe{bottom:160.749198pt;}
.y197{bottom:162.155875pt;}
.y151{bottom:164.590535pt;}
.y97{bottom:165.480265pt;}
.y32{bottom:167.134928pt;}
.y68{bottom:167.480265pt;}
.y175{bottom:168.777730pt;}
.y12b{bottom:170.710531pt;}
.y196{bottom:175.483875pt;}
.y2d{bottom:175.976400pt;}
.y150{bottom:176.686540pt;}
.yfd{bottom:177.386531pt;}
.y96{bottom:182.146932pt;}
.y14c{bottom:183.473860pt;}
.y67{bottom:184.146932pt;}
.y174{bottom:185.444397pt;}
.y12a{bottom:187.415865pt;}
.yf7{bottom:187.473860pt;}
.y121{bottom:187.479193pt;}
.y195{bottom:188.811875pt;}
.y2c{bottom:192.643066pt;}
.y14f{bottom:193.323194pt;}
.yfc{bottom:194.023865pt;}
.y14b{bottom:196.807193pt;}
.y95{bottom:198.813599pt;}
.yf6{bottom:200.807193pt;}
.y66{bottom:200.813599pt;}
.y173{bottom:202.111064pt;}
.y194{bottom:202.139875pt;}
.y129{bottom:204.053198pt;}
.y26{bottom:209.309733pt;}
.yfb{bottom:210.656527pt;}
.y120{bottom:214.140526pt;}
.y14a{bottom:214.668538pt;}
.y193{bottom:215.467875pt;}
.y94{bottom:215.480265pt;}
.y65{bottom:217.480265pt;}
.y14e{bottom:218.290527pt;}
.yf5{bottom:218.668538pt;}
.y128{bottom:220.690531pt;}
.y149{bottom:223.469876pt;}
.y172{bottom:224.111064pt;}
.y25{bottom:225.976400pt;}
.yf4{bottom:227.473860pt;}
.y192{bottom:228.795875pt;}
.y11f{bottom:232.001872pt;}
.y93{bottom:232.146932pt;}
.y64{bottom:234.146932pt;}
.y171{bottom:235.444397pt;}
.y127{bottom:237.323194pt;}
.yfa{bottom:240.157206pt;}
.yf3{bottom:240.801860pt;}
.y191{bottom:242.123875pt;}
.y24{bottom:242.643066pt;}
.y11e{bottom:245.335205pt;}
.y92{bottom:248.813599pt;}
.y63{bottom:250.813599pt;}
.y170{bottom:252.111064pt;}
.y11d{bottom:254.143335pt;}
.y190{bottom:255.451875pt;}
.y23{bottom:259.309733pt;}
.y91{bottom:265.480265pt;}
.y126{bottom:266.823873pt;}
.y11c{bottom:267.471335pt;}
.y62{bottom:267.480265pt;}
.y16f{bottom:268.777608pt;}
.y18f{bottom:268.779875pt;}
.y148{bottom:271.647867pt;}
.y22{bottom:275.976400pt;}
.y147{bottom:280.447876pt;}
.y18e{bottom:282.107875pt;}
.y90{bottom:282.146932pt;}
.y61{bottom:284.146932pt;}
.y16e{bottom:285.444275pt;}
.y21{bottom:292.643066pt;}
.ye7{bottom:293.786784pt;}
.y18d{bottom:295.435875pt;}
.y8f{bottom:298.813599pt;}
.y60{bottom:300.813599pt;}
.yc3{bottom:301.986938pt;}
.y16d{bottom:302.110921pt;}
.y18c{bottom:308.763875pt;}
.y20{bottom:309.309733pt;}
.ye6{bottom:310.453451pt;}
.y130{bottom:311.625326pt;}
.y8e{bottom:315.480265pt;}
.y5f{bottom:317.480265pt;}
.y11b{bottom:317.893333pt;}
.yc2{bottom:318.653605pt;}
.y16c{bottom:318.777588pt;}
.y1f{bottom:325.976400pt;}
.ye5{bottom:327.120117pt;}
.y12f{bottom:329.994527pt;}
.y11a{bottom:331.221333pt;}
.y8d{bottom:332.146932pt;}
.y5e{bottom:334.146932pt;}
.yc1{bottom:335.320272pt;}
.y16b{bottom:335.444255pt;}
.y18b{bottom:338.763875pt;}
.y145{bottom:340.706844pt;}
.y1e{bottom:342.643066pt;}
.y104{bottom:342.659342pt;}
.y131{bottom:345.869466pt;}
.y8c{bottom:348.813599pt;}
.ye4{bottom:349.120117pt;}
.y5d{bottom:350.813599pt;}
.yc0{bottom:351.986938pt;}
.y16a{bottom:352.110921pt;}
.y144{bottom:356.728131pt;}
.y1d{bottom:359.309733pt;}
.ye3{bottom:360.453451pt;}
.y103{bottom:362.398682pt;}
.y8b{bottom:365.480265pt;}
.y5c{bottom:367.480265pt;}
.ybf{bottom:368.653605pt;}
.y143{bottom:372.224911pt;}
.y169{bottom:374.110921pt;}
.y1c{bottom:375.976400pt;}
.ye2{bottom:377.120117pt;}
.y102{bottom:379.871989pt;}
.y8a{bottom:382.146932pt;}
.y5b{bottom:384.146932pt;}
.ybe{bottom:385.320272pt;}
.y168{bottom:385.444255pt;}
.y142{bottom:388.254144pt;}
.y1b{bottom:392.643066pt;}
.y118{bottom:393.566221pt;}
.ye1{bottom:393.786784pt;}
.y89{bottom:398.813599pt;}
.y5a{bottom:400.813599pt;}
.ybd{bottom:401.986938pt;}
.y167{bottom:402.110921pt;}
.y141{bottom:404.283378pt;}
.y18a{bottom:405.495722pt;}
.y117{bottom:409.239613pt;}
.y1a{bottom:409.309733pt;}
.ye0{bottom:410.453451pt;}
.y88{bottom:415.480265pt;}
.y59{bottom:417.480265pt;}
.ybc{bottom:418.653605pt;}
.y166{bottom:418.777588pt;}
.y189{bottom:418.823722pt;}
.y140{bottom:419.764264pt;}
.y116{bottom:424.913005pt;}
.y19{bottom:425.976400pt;}
.y87{bottom:432.146932pt;}
.y188{bottom:432.151722pt;}
.ydf{bottom:432.453451pt;}
.y58{bottom:434.146932pt;}
.ybb{bottom:435.320272pt;}
.y165{bottom:435.444255pt;}
.y13f{bottom:435.793497pt;}
.y115{bottom:440.586398pt;}
.y18{bottom:442.643066pt;}
.yde{bottom:443.786784pt;}
.y187{bottom:445.479722pt;}
.y86{bottom:448.813599pt;}
.y57{bottom:450.813599pt;}
.y13e{bottom:451.822730pt;}
.yba{bottom:451.986938pt;}
.y164{bottom:452.110921pt;}
.y114{bottom:455.609705pt;}
.y186{bottom:458.807722pt;}
.y17{bottom:459.309733pt;}
.ydd{bottom:460.453451pt;}
.y85{bottom:465.480265pt;}
.y13d{bottom:467.319510pt;}
.y56{bottom:467.480265pt;}
.yb9{bottom:468.653605pt;}
.y163{bottom:468.777588pt;}
.y113{bottom:471.283098pt;}
.y185{bottom:472.135722pt;}
.y16{bottom:475.976400pt;}
.ydc{bottom:477.120117pt;}
.y2b{bottom:481.309733pt;}
.y84{bottom:482.146932pt;}
.y13c{bottom:483.348744pt;}
.y55{bottom:484.146932pt;}
.yb8{bottom:485.320272pt;}
.y162{bottom:485.444255pt;}
.y184{bottom:485.463722pt;}
.y112{bottom:486.956490pt;}
.y15{bottom:492.643066pt;}
.ydb{bottom:493.786784pt;}
.y183{bottom:498.791722pt;}
.y83{bottom:498.813599pt;}
.y13b{bottom:499.362083pt;}
.y54{bottom:500.813599pt;}
.yb7{bottom:501.986938pt;}
.y161{bottom:502.110921pt;}
.y111{bottom:502.629882pt;}
.y14{bottom:509.309733pt;}
.y182{bottom:512.119722pt;}
.y13a{bottom:514.858863pt;}
.y82{bottom:515.480265pt;}
.y53{bottom:517.480265pt;}
.y110{bottom:518.303275pt;}
.yb6{bottom:518.653605pt;}
.y160{bottom:518.777588pt;}
.y181{bottom:525.447722pt;}
.y29{bottom:525.976400pt;}
.yda{bottom:527.120117pt;}
.y139{bottom:530.888097pt;}
.y13{bottom:531.309733pt;}
.y2a{bottom:531.313733pt;}
.y81{bottom:532.146932pt;}
.y10f{bottom:533.976667pt;}
.y52{bottom:534.146932pt;}
.yb5{bottom:535.320272pt;}
.y180{bottom:538.775722pt;}
.y27{bottom:542.643066pt;}
.y138{bottom:546.368983pt;}
.y28{bottom:547.980400pt;}
.y80{bottom:548.813599pt;}
.y10e{bottom:548.999974pt;}
.y51{bottom:550.813599pt;}
.yb4{bottom:551.986938pt;}
.y17f{bottom:552.103722pt;}
.y15f{bottom:552.110921pt;}
.y12{bottom:559.309733pt;}
.y137{bottom:562.398216pt;}
.y10d{bottom:564.673367pt;}
.y7f{bottom:565.480265pt;}
.y50{bottom:567.480265pt;}
.yb3{bottom:568.653605pt;}
.yd9{bottom:577.120117pt;}
.y136{bottom:578.427450pt;}
.y10c{bottom:580.346759pt;}
.y17e{bottom:582.069056pt;}
.y4f{bottom:584.146932pt;}
.yb2{bottom:585.320272pt;}
.yd8{bottom:593.786784pt;}
.y135{bottom:593.924230pt;}
.y17d{bottom:595.397056pt;}
.y10b{bottom:596.028080pt;}
.y1bf{bottom:596.793620pt;}
.y7e{bottom:598.813599pt;}
.y4e{bottom:600.813639pt;}
.yb1{bottom:601.986898pt;}
.y15e{bottom:602.111084pt;}
.y11{bottom:609.309733pt;}
.y134{bottom:609.953463pt;}
.y1be{bottom:610.121620pt;}
.yd7{bottom:610.453451pt;}
.y10a{bottom:611.661833pt;}
.y4d{bottom:617.480306pt;}
.yb0{bottom:618.653564pt;}
.y15d{bottom:618.777751pt;}
.y1bd{bottom:623.449620pt;}
.y17c{bottom:625.362389pt;}
.y133{bottom:625.966802pt;}
.y10{bottom:625.976400pt;}
.yd6{bottom:627.120117pt;}
.y109{bottom:627.343153pt;}
.y4c{bottom:634.146973pt;}
.yaf{bottom:635.320231pt;}
.y15c{bottom:635.444417pt;}
.y1bc{bottom:636.777620pt;}
.y17b{bottom:638.690389pt;}
.y132{bottom:641.463582pt;}
.y108{bottom:643.016545pt;}
.yd5{bottom:643.786784pt;}
.y7d{bottom:648.813599pt;}
.y1bb{bottom:650.105620pt;}
.y4b{bottom:650.813639pt;}
.yae{bottom:651.986898pt;}
.y15b{bottom:652.111084pt;}
.y107{bottom:658.031925pt;}
.yf{bottom:659.309733pt;}
.yd4{bottom:660.453451pt;}
.y1d6{bottom:662.604954pt;}
.y1ba{bottom:663.433620pt;}
.y7c{bottom:665.480306pt;}
.y4a{bottom:667.480306pt;}
.yad{bottom:668.653564pt;}
.y15a{bottom:668.777751pt;}
.y106{bottom:673.713245pt;}
.y1d5{bottom:675.932954pt;}
.ye{bottom:675.976400pt;}
.y1b9{bottom:676.761620pt;}
.yd3{bottom:677.120117pt;}
.y7b{bottom:682.146973pt;}
.y49{bottom:684.146973pt;}
.yac{bottom:685.320231pt;}
.y159{bottom:685.444417pt;}
.y105{bottom:689.386637pt;}
.y1b8{bottom:690.089620pt;}
.yd{bottom:692.643066pt;}
.yd2{bottom:693.786784pt;}
.y7a{bottom:698.813639pt;}
.y48{bottom:700.813639pt;}
.yab{bottom:701.986898pt;}
.y158{bottom:702.111084pt;}
.y1d4{bottom:703.348287pt;}
.y1b7{bottom:703.417620pt;}
.yc{bottom:709.309733pt;}
.yd1{bottom:710.453451pt;}
.y79{bottom:715.480306pt;}
.y1d3{bottom:716.676287pt;}
.y1b6{bottom:716.745620pt;}
.y47{bottom:717.480306pt;}
.yaa{bottom:718.653564pt;}
.y157{bottom:718.777751pt;}
.yb{bottom:725.976400pt;}
.yd0{bottom:727.120117pt;}
.y1d2{bottom:730.004287pt;}
.y1b5{bottom:730.073620pt;}
.y78{bottom:732.146973pt;}
.y46{bottom:734.146973pt;}
.ya9{bottom:735.320231pt;}
.y12e{bottom:740.653564pt;}
.y156{bottom:740.777751pt;}
.ya{bottom:742.643066pt;}
.y1d1{bottom:743.332287pt;}
.y1b4{bottom:743.401620pt;}
.ycf{bottom:743.786784pt;}
.y77{bottom:748.813639pt;}
.y45{bottom:750.813639pt;}
.ya8{bottom:751.986898pt;}
.y155{bottom:752.111084pt;}
.y1d0{bottom:756.660287pt;}
.y1b3{bottom:756.729620pt;}
.yce{bottom:760.453451pt;}
.y76{bottom:765.480306pt;}
.y44{bottom:767.480306pt;}
.ya7{bottom:768.653564pt;}
.y154{bottom:768.777751pt;}
.y1cf{bottom:769.988287pt;}
.y1b2{bottom:770.057620pt;}
.ycd{bottom:777.120117pt;}
.y9{bottom:781.916629pt;}
.y75{bottom:782.146973pt;}
.y1ce{bottom:783.316287pt;}
.y1b1{bottom:783.385620pt;}
.ya6{bottom:785.320231pt;}
.y43{bottom:789.480306pt;}
.ycc{bottom:793.786784pt;}
.y8{bottom:795.244629pt;}
.y1b0{bottom:796.713620pt;}
.y1cd{bottom:796.860975pt;}
.y74{bottom:798.813639pt;}
.y42{bottom:800.813639pt;}
.ya5{bottom:801.986898pt;}
.y1af{bottom:810.041620pt;}
.y1cc{bottom:810.188975pt;}
.ycb{bottom:810.453451pt;}
.y73{bottom:815.480306pt;}
.y19c{bottom:815.889642pt;}
.y41{bottom:817.480306pt;}
.ya4{bottom:818.653564pt;}
.y1ae{bottom:823.369620pt;}
.y1cb{bottom:823.516975pt;}
.yca{bottom:827.120153pt;}
.y72{bottom:832.146973pt;}
.y7{bottom:833.111328pt;}
.y40{bottom:834.146973pt;}
.ya3{bottom:835.320231pt;}
.y1ad{bottom:836.697620pt;}
.y1ca{bottom:836.844975pt;}
.y1a2{bottom:841.408672pt;}
.y71{bottom:848.813639pt;}
.y1ac{bottom:850.025620pt;}
.y1c9{bottom:850.172975pt;}
.y3f{bottom:850.813639pt;}
.ya2{bottom:851.986898pt;}
.ye9{bottom:852.120036pt;}
.yeb{bottom:853.702962pt;}
.ye8{bottom:855.386770pt;}
.yed{bottom:857.026774pt;}
.yef{bottom:857.027100pt;}
.yf1{bottom:857.027181pt;}
.y12c{bottom:857.320231pt;}
.y1a1{bottom:858.114005pt;}
.y1ab{bottom:863.353620pt;}
.y1c8{bottom:863.500975pt;}
.y70{bottom:865.480306pt;}
.y3e{bottom:867.480306pt;}
.ya1{bottom:868.653564pt;}
.y6{bottom:872.832682pt;}
.y1a0{bottom:874.751339pt;}
.y1aa{bottom:876.681620pt;}
.y1c7{bottom:876.828975pt;}
.y6f{bottom:882.146973pt;}
.y3d{bottom:884.146973pt;}
.yc9{bottom:885.320150pt;}
.ya0{bottom:885.320231pt;}
.y1a9{bottom:890.009620pt;}
.y1c6{bottom:890.156975pt;}
.y12d{bottom:890.653564pt;}
.y19f{bottom:895.922038pt;}
.y5{bottom:896.832682pt;}
.y6e{bottom:898.813639pt;}
.y3c{bottom:900.813639pt;}
.yc8{bottom:901.986816pt;}
.y9f{bottom:901.986898pt;}
.y1a8{bottom:903.337620pt;}
.y1c5{bottom:903.484975pt;}
.y19e{bottom:908.021355pt;}
.y1a7{bottom:916.665620pt;}
.y1c4{bottom:916.812975pt;}
.y3b{bottom:917.480306pt;}
.y9e{bottom:918.653564pt;}
.yc7{bottom:918.653605pt;}
.y1a6{bottom:929.993620pt;}
.y1c3{bottom:930.140975pt;}
.y6d{bottom:932.146973pt;}
.y19d{bottom:932.988688pt;}
.y3a{bottom:934.146973pt;}
.y9d{bottom:935.320231pt;}
.yc6{bottom:935.320272pt;}
.y101{bottom:940.653564pt;}
.y1a5{bottom:943.321620pt;}
.y1c2{bottom:943.468975pt;}
.y39{bottom:950.813639pt;}
.y9c{bottom:951.986898pt;}
.yc5{bottom:951.986938pt;}
.y19b{bottom:955.652306pt;}
.y1a4{bottom:956.649620pt;}
.y1c1{bottom:956.796975pt;}
.y6c{bottom:965.480306pt;}
.y38{bottom:967.480306pt;}
.y9b{bottom:968.653564pt;}
.yc4{bottom:968.653605pt;}
.y17a{bottom:968.657694pt;}
.y19a{bottom:969.055249pt;}
.y1a3{bottom:969.977620pt;}
.y1c0{bottom:970.124975pt;}
.y100{bottom:973.986898pt;}
.y4{bottom:986.299161pt;}
.y3{bottom:1001.406494pt;}
.y37{bottom:1002.206543pt;}
.h19{height:3.520880pt;}
.h16{height:16.533333pt;}
.h1a{height:16.697506pt;}
.h10{height:22.403733pt;}
.h1f{height:22.800545pt;}
.h26{height:22.855764pt;}
.h21{height:25.712776pt;}
.h28{height:25.774677pt;}
.hc{height:26.357333pt;}
.hf{height:32.005333pt;}
.he{height:32.760417pt;}
.h18{height:33.887060pt;}
.h17{height:35.635572pt;}
.h1b{height:36.062345pt;}
.h2{height:37.376000pt;}
.ha{height:37.653333pt;}
.h2f{height:39.670118pt;}
.h4{height:39.712000pt;}
.h1c{height:40.165333pt;}
.h2e{height:40.237748pt;}
.h23{height:40.504548pt;}
.h24{height:40.506714pt;}
.h25{height:40.515741pt;}
.h1d{height:40.515781pt;}
.h2a{height:40.531716pt;}
.h29{height:40.537029pt;}
.h22{height:40.537035pt;}
.h1e{height:40.539749pt;}
.h12{height:41.360000pt;}
.h2d{height:47.674147pt;}
.h14{height:47.690178pt;}
.h11{height:47.690504pt;}
.h15{height:47.690524pt;}
.h9{height:47.690667pt;}
.h2b{height:47.690748pt;}
.h13{height:47.690829pt;}
.h2c{height:47.691155pt;}
.hd{height:47.691196pt;}
.h3{height:48.766452pt;}
.h8{height:52.746667pt;}
.h7{height:57.658667pt;}
.hb{height:63.296000pt;}
.h6{height:75.605333pt;}
.h5{height:87.056870pt;}
.h20{height:349.460002pt;}
.h27{height:352.686686pt;}
.h0{height:1054.488000pt;}
.h1{height:1054.666667pt;}
.w2{width:162.706665pt;}
.w3{width:657.637329pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:24.354411pt;}
.x18{left:45.353469pt;}
.x10{left:66.402262pt;}
.x3{left:68.031469pt;}
.xb{left:69.996800pt;}
.x4{left:83.133467pt;}
.xa{left:86.929867pt;}
.x1f{left:90.709469pt;}
.x12{left:117.462687pt;}
.x19{left:122.200964pt;}
.x14{left:143.010661pt;}
.x1e{left:225.135071pt;}
.x15{left:238.110403pt;}
.x1b{left:263.232524pt;}
.x1a{left:315.206935pt;}
.x1c{left:382.927205pt;}
.x5{left:408.186252pt;}
.xd{left:412.730387pt;}
.x16{left:416.248250pt;}
.x9{left:423.307210pt;}
.x1d{left:430.866924pt;}
.x6{left:440.182393pt;}
.xf{left:443.894409pt;}
.x11{left:494.786662pt;}
.x8{left:535.991476pt;}
.x13{left:542.186686pt;}
.x1{left:647.307210pt;}
.x17{left:660.478923pt;}
.x2{left:671.546549pt;}
.x7{left:692.421163pt;}
.xc{left:710.128409pt;}
}




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