
    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_200eaf43a5abfd88bf207f26.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_c7a1ff8fc72ff4127d3348ef.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_a2ff128cc45a3683b2ec9d61.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863770;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_725e8f42f6be59a49b691617.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.861816;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_65e79fb9c0dfe41eee0858f4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.895996;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_2e8f0ba0823c8fbcf7a44ade.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_03548ce976f30f610288f7b9.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_68ba167563551f312bbbe11f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.952148;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_bee011487e083fa3dfa3082c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.031738;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_795e3504b4ac5cbafa91da8d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.903809;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-76.854000px;}
.v4{vertical-align:-41.837400px;}
.v3{vertical-align:-23.559000px;}
.v6{vertical-align:-16.125000px;}
.v5{vertical-align:-10.797120px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:3.706800px;}
.v7{vertical-align:34.042200px;}
.v8{vertical-align:45.792000px;}
.lsba{letter-spacing:-21.888000px;}
.ls34{letter-spacing:-10.656000px;}
.lsab{letter-spacing:-8.436960px;}
.ls43{letter-spacing:-7.182000px;}
.lscc{letter-spacing:-6.486480px;}
.ls66{letter-spacing:-6.120000px;}
.ls57{letter-spacing:-5.310000px;}
.lscb{letter-spacing:-4.380480px;}
.ls6b{letter-spacing:-3.830400px;}
.lsb2{letter-spacing:-3.132000px;}
.lscf{letter-spacing:-2.864160px;}
.ls86{letter-spacing:-2.851920px;}
.lsb9{letter-spacing:-2.736000px;}
.ls33{letter-spacing:-2.499840px;}
.ls76{letter-spacing:-2.376000px;}
.ls4{letter-spacing:-2.091600px;}
.lsce{letter-spacing:-1.769040px;}
.ls1b{letter-spacing:-1.533600px;}
.ls56{letter-spacing:-1.440000px;}
.lsca{letter-spacing:-1.095120px;}
.ls5c{letter-spacing:-0.900000px;}
.lscd{letter-spacing:-0.758160px;}
.ls77{letter-spacing:-0.756000px;}
.ls89{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.673920px;}
.lsb4{letter-spacing:-0.568800px;}
.lsb6{letter-spacing:-0.503280px;}
.ls30{letter-spacing:-0.432000px;}
.ls19{letter-spacing:-0.408960px;}
.ls37{letter-spacing:-0.395280px;}
.ls4a{letter-spacing:-0.384480px;}
.ls27{letter-spacing:-0.360720px;}
.ls90{letter-spacing:-0.352080px;}
.ls5a{letter-spacing:-0.336960px;}
.ls7b{letter-spacing:-0.331200px;}
.ls32{letter-spacing:-0.324000px;}
.ls31{letter-spacing:-0.312480px;}
.ls1a{letter-spacing:-0.306720px;}
.ls41{letter-spacing:-0.288000px;}
.lsf{letter-spacing:-0.287280px;}
.ls55{letter-spacing:-0.270000px;}
.lsa8{letter-spacing:-0.263520px;}
.ls4d{letter-spacing:-0.257760px;}
.ls23{letter-spacing:-0.240480px;}
.lsaa{letter-spacing:-0.239760px;}
.ls5{letter-spacing:-0.239040px;}
.ls91{letter-spacing:-0.234720px;}
.lsc{letter-spacing:-0.224640px;}
.lsad{letter-spacing:-0.221760px;}
.ls2{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.204480px;}
.lsaf{letter-spacing:-0.203760px;}
.ls85{letter-spacing:-0.198720px;}
.ls4b{letter-spacing:-0.192240px;}
.lse{letter-spacing:-0.191520px;}
.ls53{letter-spacing:-0.180000px;}
.ls2f{letter-spacing:-0.175680px;}
.lsb5{letter-spacing:-0.168480px;}
.ls8{letter-spacing:-0.167760px;}
.lsa{letter-spacing:-0.159840px;}
.ls2d{letter-spacing:-0.156240px;}
.ls3{letter-spacing:-0.144000px;}
.ls7c{letter-spacing:-0.132480px;}
.ls25{letter-spacing:-0.120240px;}
.lsc8{letter-spacing:-0.113760px;}
.ls15{letter-spacing:-0.102240px;}
.ls6a{letter-spacing:-0.095760px;}
.ls26{letter-spacing:-0.084240px;}
.ls84{letter-spacing:-0.066240px;}
.ls6{letter-spacing:0.000000px;}
.ls7f{letter-spacing:0.066240px;}
.ls67{letter-spacing:0.095760px;}
.ls98{letter-spacing:0.100656px;}
.ls17{letter-spacing:0.102240px;}
.ls38{letter-spacing:0.105408px;}
.lsb0{letter-spacing:0.108000px;}
.lsb3{letter-spacing:0.113760px;}
.ls8d{letter-spacing:0.117360px;}
.ls94{letter-spacing:0.117432px;}
.ls7{letter-spacing:0.120240px;}
.ls35{letter-spacing:0.131760px;}
.ls61{letter-spacing:0.134208px;}
.ls44{letter-spacing:0.144000px;}
.ls2b{letter-spacing:0.156240px;}
.ls2c{letter-spacing:0.167760px;}
.lsa2{letter-spacing:0.171288px;}
.ls68{letter-spacing:0.172368px;}
.ls48{letter-spacing:0.173016px;}
.ls2e{letter-spacing:0.175680px;}
.ls52{letter-spacing:0.180000px;}
.lsbb{letter-spacing:0.184536px;}
.ls10{letter-spacing:0.191520px;}
.ls75{letter-spacing:0.192240px;}
.ls22{letter-spacing:0.192384px;}
.lsbd{letter-spacing:0.193392px;}
.ls7a{letter-spacing:0.198720px;}
.lsb1{letter-spacing:0.203760px;}
.ls20{letter-spacing:0.204408px;}
.ls18{letter-spacing:0.204480px;}
.ls59{letter-spacing:0.216000px;}
.lsb8{letter-spacing:0.221760px;}
.lsa5{letter-spacing:0.223992px;}
.ls9{letter-spacing:0.224640px;}
.lsbe{letter-spacing:0.227520px;}
.ls8a{letter-spacing:0.234720px;}
.ls24{letter-spacing:0.240480px;}
.ls3c{letter-spacing:0.257760px;}
.lsa9{letter-spacing:0.263520px;}
.ls54{letter-spacing:0.270000px;}
.ls3a{letter-spacing:0.273600px;}
.ls6c{letter-spacing:0.287280px;}
.ls0{letter-spacing:0.288000px;}
.lsa4{letter-spacing:0.303048px;}
.ls11{letter-spacing:0.306720px;}
.ls28{letter-spacing:0.312480px;}
.ls14{letter-spacing:0.318240px;}
.lsb{letter-spacing:0.319680px;}
.ls70{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.335520px;}
.lsc9{letter-spacing:0.336960px;}
.lsc7{letter-spacing:0.341280px;}
.lsa3{letter-spacing:0.355752px;}
.ls51{letter-spacing:0.360000px;}
.ls42{letter-spacing:0.360720px;}
.ls4f{letter-spacing:0.360864px;}
.ls58{letter-spacing:0.383040px;}
.ls4c{letter-spacing:0.384480px;}
.ls87{letter-spacing:0.483552px;}
.ls1c{letter-spacing:0.577152px;}
.ls88{letter-spacing:0.596160px;}
.ls12{letter-spacing:0.613440px;}
.ls49{letter-spacing:0.721728px;}
.lsc2{letter-spacing:0.728064px;}
.ls65{letter-spacing:0.738144px;}
.ls9f{letter-spacing:0.790560px;}
.lsbf{letter-spacing:0.796320px;}
.ls93{letter-spacing:0.822024px;}
.ls64{letter-spacing:0.838800px;}
.ls97{letter-spacing:0.855576px;}
.ls5d{letter-spacing:0.900000px;}
.ls95{letter-spacing:0.905904px;}
.lsc3{letter-spacing:0.921456px;}
.lsa1{letter-spacing:0.948672px;}
.ls81{letter-spacing:0.972000px;}
.ls3e{letter-spacing:1.008000px;}
.ls5f{letter-spacing:1.031040px;}
.lsa6{letter-spacing:1.040904px;}
.ls83{letter-spacing:1.047600px;}
.ls72{letter-spacing:1.080000px;}
.ls80{letter-spacing:1.101600px;}
.ls82{letter-spacing:1.155600px;}
.lsc0{letter-spacing:1.478880px;}
.lsc1{letter-spacing:1.535760px;}
.lsa0{letter-spacing:1.581120px;}
.ls74{letter-spacing:1.620000px;}
.ls40{letter-spacing:1.728000px;}
.ls78{letter-spacing:1.836000px;}
.ls71{letter-spacing:1.868400px;}
.ls63{letter-spacing:2.113776px;}
.lsc6{letter-spacing:2.172816px;}
.ls62{letter-spacing:2.348640px;}
.ls79{letter-spacing:2.376000px;}
.ls3f{letter-spacing:2.448000px;}
.lsa7{letter-spacing:2.503440px;}
.ls6e{letter-spacing:2.851920px;}
.lsc4{letter-spacing:2.866752px;}
.lsc5{letter-spacing:2.912256px;}
.ls73{letter-spacing:3.132000px;}
.ls3d{letter-spacing:3.168000px;}
.ls6f{letter-spacing:3.283200px;}
.ls7d{letter-spacing:3.931200px;}
.ls7e{letter-spacing:15.632640px;}
.ls1e{letter-spacing:22.998240px;}
.ls13{letter-spacing:23.208480px;}
.ls21{letter-spacing:26.693280px;}
.ls3b{letter-spacing:31.968000px;}
.ls47{letter-spacing:42.485040px;}
.ls29{letter-spacing:43.434720px;}
.ls2a{letter-spacing:44.215920px;}
.ls1f{letter-spacing:46.758240px;}
.ls8f{letter-spacing:93.024000px;}
.ls5b{letter-spacing:103.860000px;}
.ls5e{letter-spacing:105.876000px;}
.ls96{letter-spacing:111.600000px;}
.ls69{letter-spacing:114.156000px;}
.ls60{letter-spacing:117.360000px;}
.ls1d{letter-spacing:119.916000px;}
.ls50{letter-spacing:124.200000px;}
.ls9d{letter-spacing:125.676000px;}
.ls46{letter-spacing:129.600000px;}
.ls92{letter-spacing:132.048000px;}
.ls8e{letter-spacing:134.611920px;}
.ls6d{letter-spacing:136.476000px;}
.ls99{letter-spacing:137.340000px;}
.ls9e{letter-spacing:137.916600px;}
.lsac{letter-spacing:138.384000px;}
.ls9c{letter-spacing:141.840000px;}
.ls9a{letter-spacing:142.560000px;}
.lsae{letter-spacing:144.684000px;}
.ls45{letter-spacing:148.793760px;}
.ls4e{letter-spacing:157.284000px;}
.lsb7{letter-spacing:161.316000px;}
.ls39{letter-spacing:165.600000px;}
.ls9b{letter-spacing:167.040000px;}
.ls36{letter-spacing:169.884000px;}
.lsbc{letter-spacing:176.184000px;}
.ls8b{letter-spacing:205.145280px;}
.ls8c{letter-spacing:888.884640px;}
.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;}
}
.ws142{word-spacing:-100.823760px;}
.ws145{word-spacing:-93.744000px;}
.ws11c{word-spacing:-80.208000px;}
.ws60{word-spacing:-80.064000px;}
.ws10d{word-spacing:-79.776000px;}
.ws8b{word-spacing:-71.915040px;}
.ws79{word-spacing:-71.657280px;}
.wscf{word-spacing:-71.399520px;}
.ws136{word-spacing:-68.369760px;}
.ws138{word-spacing:-68.256000px;}
.ws14a{word-spacing:-64.800000px;}
.ws14b{word-spacing:-64.044000px;}
.ws147{word-spacing:-61.427520px;}
.ws130{word-spacing:-60.048000px;}
.ws131{word-spacing:-59.832000px;}
.ws14d{word-spacing:-57.551760px;}
.ws12e{word-spacing:-56.849040px;}
.ws154{word-spacing:-56.645280px;}
.ws12d{word-spacing:-56.441520px;}
.ws89{word-spacing:-53.827200px;}
.ws10f{word-spacing:-53.442720px;}
.ws88{word-spacing:-53.250480px;}
.ws86{word-spacing:-53.058240px;}
.ws13e{word-spacing:-50.544000px;}
.ws13d{word-spacing:-50.375520px;}
.ws85{word-spacing:-49.014720px;}
.ws61{word-spacing:-48.663360px;}
.ws91{word-spacing:-46.972800px;}
.ws55{word-spacing:-46.805040px;}
.wsde{word-spacing:-46.637280px;}
.wsae{word-spacing:-46.469520px;}
.ws11{word-spacing:-44.755200px;}
.ws12{word-spacing:-44.435520px;}
.ws43{word-spacing:-44.275680px;}
.ws54{word-spacing:-43.747200px;}
.ws51{word-spacing:-43.434720px;}
.ws53{word-spacing:-43.278480px;}
.wsf6{word-spacing:-43.200000px;}
.ws67{word-spacing:-43.122240px;}
.ws68{word-spacing:-40.934880px;}
.wsf9{word-spacing:-40.340160px;}
.wsfd{word-spacing:-40.320000px;}
.ws84{word-spacing:-40.176000px;}
.ws78{word-spacing:-39.888000px;}
.ws7d{word-spacing:-39.744000px;}
.wsf8{word-spacing:-39.611520px;}
.wsff{word-spacing:-39.312000px;}
.ws152{word-spacing:-37.296000px;}
.ws117{word-spacing:-36.892800px;}
.ws116{word-spacing:-36.761040px;}
.ws115{word-spacing:-36.365760px;}
.ws70{word-spacing:-36.234000px;}
.ws7e{word-spacing:-33.787440px;}
.ws45{word-spacing:-33.667200px;}
.ws44{word-spacing:-33.546960px;}
.wsb0{word-spacing:-33.426720px;}
.ws46{word-spacing:-33.306480px;}
.wsb2{word-spacing:-33.186240px;}
.ws102{word-spacing:-32.860800px;}
.ws100{word-spacing:-32.274000px;}
.ws158{word-spacing:-31.739040px;}
.ws159{word-spacing:-31.625280px;}
.ws15a{word-spacing:-31.511520px;}
.ws13{word-spacing:-31.449600px;}
.ws17{word-spacing:-31.224960px;}
.wsf0{word-spacing:-30.348000px;}
.wse2{word-spacing:-30.024000px;}
.wsf1{word-spacing:-29.808000px;}
.wse0{word-spacing:-29.700000px;}
.wse3{word-spacing:-29.268000px;}
.wse1{word-spacing:-27.648000px;}
.ws135{word-spacing:-26.892000px;}
.wsaf{word-spacing:-26.812800px;}
.ws20{word-spacing:-26.621280px;}
.ws1b{word-spacing:-26.429760px;}
.ws25{word-spacing:-26.334000px;}
.ws9b{word-spacing:-25.380000px;}
.wsc0{word-spacing:-25.290000px;}
.wsc8{word-spacing:-25.200000px;}
.wsc4{word-spacing:-24.840000px;}
.wsa4{word-spacing:-24.750000px;}
.ws6a{word-spacing:-24.408000px;}
.ws161{word-spacing:-23.755680px;}
.wsa8{word-spacing:-23.580000px;}
.ws162{word-spacing:-23.418720px;}
.ws34{word-spacing:-23.412960px;}
.wscd{word-spacing:-23.334480px;}
.ws32{word-spacing:-23.208480px;}
.wsc1{word-spacing:-23.081760px;}
.ws31{word-spacing:-22.901760px;}
.ws35{word-spacing:-22.799520px;}
.ws33{word-spacing:-22.697280px;}
.ws171{word-spacing:-22.660560px;}
.ws163{word-spacing:-22.323600px;}
.wsd8{word-spacing:-21.737520px;}
.ws172{word-spacing:-21.649680px;}
.wsd6{word-spacing:-21.354480px;}
.ws0{word-spacing:-20.304000px;}
.ws63{word-spacing:-20.016000px;}
.ws62{word-spacing:-19.872000px;}
.ws64{word-spacing:-19.584000px;}
.ws7f{word-spacing:-19.439280px;}
.ws164{word-spacing:-19.038240px;}
.wsd0{word-spacing:-18.900000px;}
.wsef{word-spacing:-16.626240px;}
.wse9{word-spacing:-16.427520px;}
.ws1{word-spacing:-16.374240px;}
.wsea{word-spacing:-16.295040px;}
.ws153{word-spacing:-11.520000px;}
.ws95{word-spacing:-11.341440px;}
.wscc{word-spacing:-10.080000px;}
.wsa7{word-spacing:-7.380000px;}
.ws110{word-spacing:-7.200000px;}
.wsce{word-spacing:-6.739200px;}
.ws16c{word-spacing:-6.486480px;}
.ws169{word-spacing:-6.065280px;}
.ws174{word-spacing:-5.728320px;}
.ws16e{word-spacing:-5.307120px;}
.ws173{word-spacing:-3.875040px;}
.wsa6{word-spacing:-3.780000px;}
.ws2b{word-spacing:-3.369600px;}
.ws83{word-spacing:-3.326400px;}
.ws4e{word-spacing:-3.246480px;}
.wsbd{word-spacing:-3.240000px;}
.ws47{word-spacing:-3.090168px;}
.ws99{word-spacing:-3.060000px;}
.ws52{word-spacing:-2.890440px;}
.wsc5{word-spacing:-2.880000px;}
.ws16a{word-spacing:-2.864160px;}
.ws5c{word-spacing:-2.656080px;}
.ws18{word-spacing:-2.583360px;}
.ws3f{word-spacing:-2.556000px;}
.ws15{word-spacing:-2.538432px;}
.ws16f{word-spacing:-2.527200px;}
.ws4f{word-spacing:-2.525040px;}
.wsc2{word-spacing:-2.442960px;}
.ws9d{word-spacing:-2.340000px;}
.ws4{word-spacing:-2.304000px;}
.wsd2{word-spacing:-2.250000px;}
.wsca{word-spacing:-2.164320px;}
.wsd1{word-spacing:-2.160000px;}
.ws105{word-spacing:-2.112480px;}
.ws98{word-spacing:-2.108160px;}
.wsb7{word-spacing:-2.106720px;}
.ws16b{word-spacing:-2.106000px;}
.ws132{word-spacing:-2.062080px;}
.wsc3{word-spacing:-1.980000px;}
.ws2a{word-spacing:-1.909440px;}
.ws109{word-spacing:-1.877760px;}
.ws5d{word-spacing:-1.874880px;}
.ws3b{word-spacing:-1.840320px;}
.wsda{word-spacing:-1.819440px;}
.ws4c{word-spacing:-1.803600px;}
.wsa9{word-spacing:-1.800000px;}
.ws38{word-spacing:-1.738080px;}
.ws10e{word-spacing:-1.728000px;}
.ws5b{word-spacing:-1.718640px;}
.wsab{word-spacing:-1.710000px;}
.ws11b{word-spacing:-1.684800px;}
.ws9c{word-spacing:-1.620000px;}
.ws8a{word-spacing:-1.614816px;}
.ws6e{word-spacing:-1.584000px;}
.ws72{word-spacing:-1.449360px;}
.ws113{word-spacing:-1.442880px;}
.wsa3{word-spacing:-1.440000px;}
.ws165{word-spacing:-1.432080px;}
.ws3a{word-spacing:-1.431360px;}
.ws108{word-spacing:-1.408320px;}
.ws76{word-spacing:-1.405440px;}
.wsc7{word-spacing:-1.350000px;}
.ws19{word-spacing:-1.347840px;}
.ws7c{word-spacing:-1.288800px;}
.ws36{word-spacing:-1.272960px;}
.ws5a{word-spacing:-1.249920px;}
.ws2f{word-spacing:-1.244880px;}
.ws28{word-spacing:-1.235520px;}
.ws14{word-spacing:-1.179360px;}
.ws5{word-spacing:-1.152000px;}
.ws40{word-spacing:-1.124640px;}
.wse5{word-spacing:-1.095120px;}
.ws59{word-spacing:-1.093680px;}
.wsc{word-spacing:-1.082160px;}
.ws168{word-spacing:-1.010880px;}
.wsfe{word-spacing:-1.008000px;}
.wsa2{word-spacing:-0.909000px;}
.wsac{word-spacing:-0.900000px;}
.ws8{word-spacing:-0.864000px;}
.ws10{word-spacing:-0.838800px;}
.ws15c{word-spacing:-0.796320px;}
.ws75{word-spacing:-0.790560px;}
.ws146{word-spacing:-0.781200px;}
.wse6{word-spacing:-0.758160px;}
.ws12c{word-spacing:-0.756000px;}
.ws112{word-spacing:-0.721440px;}
.ws9e{word-spacing:-0.720000px;}
.ws10a{word-spacing:-0.704160px;}
.ws119{word-spacing:-0.702720px;}
.ws13f{word-spacing:-0.673920px;}
.ws30{word-spacing:-0.670320px;}
.wsfc{word-spacing:-0.596160px;}
.wsb9{word-spacing:-0.590400px;}
.wsb8{word-spacing:-0.576000px;}
.ws9a{word-spacing:-0.540000px;}
.ws97{word-spacing:-0.515520px;}
.ws56{word-spacing:-0.479520px;}
.ws57{word-spacing:-0.468720px;}
.ws66{word-spacing:-0.432000px;}
.ws42{word-spacing:-0.408960px;}
.ws8d{word-spacing:-0.384480px;}
.wsb6{word-spacing:-0.383040px;}
.wsc9{word-spacing:-0.360720px;}
.ws9f{word-spacing:-0.360000px;}
.ws166{word-spacing:-0.336960px;}
.ws94{word-spacing:-0.335520px;}
.ws58{word-spacing:-0.312480px;}
.ws7{word-spacing:-0.288000px;}
.wsdb{word-spacing:-0.287280px;}
.wsa5{word-spacing:-0.270000px;}
.ws87{word-spacing:-0.269136px;}
.wsed{word-spacing:-0.264960px;}
.ws49{word-spacing:-0.264528px;}
.ws7b{word-spacing:-0.257760px;}
.ws167{word-spacing:-0.252720px;}
.ws111{word-spacing:-0.240480px;}
.ws104{word-spacing:-0.234720px;}
.ws27{word-spacing:-0.224640px;}
.ws126{word-spacing:-0.221760px;}
.wseb{word-spacing:-0.216000px;}
.ws3d{word-spacing:-0.204480px;}
.ws12f{word-spacing:-0.203760px;}
.ws96{word-spacing:-0.201312px;}
.wse4{word-spacing:-0.192240px;}
.wsa0{word-spacing:-0.180000px;}
.ws65{word-spacing:-0.175680px;}
.wse{word-spacing:-0.167760px;}
.ws5e{word-spacing:-0.156240px;}
.ws6f{word-spacing:-0.144000px;}
.ws118{word-spacing:-0.131760px;}
.ws4b{word-spacing:-0.120240px;}
.ws106{word-spacing:-0.117360px;}
.ws13c{word-spacing:-0.113760px;}
.wse7{word-spacing:-0.108000px;}
.wsdc{word-spacing:-0.095760px;}
.wsec{word-spacing:-0.066240px;}
.wsb{word-spacing:0.000000px;}
.ws4d{word-spacing:0.084240px;}
.ws37{word-spacing:0.102240px;}
.ws137{word-spacing:0.113760px;}
.ws114{word-spacing:0.120240px;}
.wsfb{word-spacing:0.132480px;}
.ws150{word-spacing:0.140400px;}
.ws80{word-spacing:0.144000px;}
.ws5f{word-spacing:0.156240px;}
.ws26{word-spacing:0.159840px;}
.ws140{word-spacing:0.168480px;}
.wsa1{word-spacing:0.180000px;}
.ws2d{word-spacing:0.191520px;}
.ws8c{word-spacing:0.192240px;}
.wsf2{word-spacing:0.198720px;}
.ws41{word-spacing:0.204480px;}
.ws3{word-spacing:0.216000px;}
.ws121{word-spacing:0.218088px;}
.ws148{word-spacing:0.221760px;}
.ws29{word-spacing:0.224640px;}
.ws107{word-spacing:0.234720px;}
.ws4a{word-spacing:0.240480px;}
.ws8e{word-spacing:0.257760px;}
.wsd9{word-spacing:0.287280px;}
.ws82{word-spacing:0.288000px;}
.ws39{word-spacing:0.306720px;}
.wsdf{word-spacing:0.324000px;}
.wsf3{word-spacing:0.331200px;}
.ws2{word-spacing:0.335520px;}
.ws16d{word-spacing:0.336960px;}
.wsbc{word-spacing:0.360000px;}
.ws127{word-spacing:0.407520px;}
.ws77{word-spacing:0.432000px;}
.ws123{word-spacing:0.443520px;}
.ws15b{word-spacing:0.455040px;}
.wsee{word-spacing:0.463680px;}
.ws92{word-spacing:0.469728px;}
.wsd{word-spacing:0.503280px;}
.ws6c{word-spacing:0.540000px;}
.ws13b{word-spacing:0.568800px;}
.ws6{word-spacing:0.576000px;}
.ws3c{word-spacing:0.613440px;}
.ws11d{word-spacing:0.648000px;}
.ws71{word-spacing:0.658800px;}
.ws143{word-spacing:0.671040px;}
.ws15e{word-spacing:0.682560px;}
.ws11a{word-spacing:0.719280px;}
.wsfa{word-spacing:0.720000px;}
.ws151{word-spacing:0.756000px;}
.ws2c{word-spacing:0.766080px;}
.ws141{word-spacing:0.773280px;}
.ws155{word-spacing:0.815040px;}
.ws93{word-spacing:0.838800px;}
.ws144{word-spacing:0.864000px;}
.ws149{word-spacing:0.887040px;}
.ws11f{word-spacing:0.937440px;}
.wsf{word-spacing:1.006560px;}
.wsdd{word-spacing:1.008000px;}
.ws14c{word-spacing:1.053360px;}
.ws90{word-spacing:1.140768px;}
.ws7a{word-spacing:1.152000px;}
.ws129{word-spacing:1.222560px;}
.wsd7{word-spacing:1.235304px;}
.ws16{word-spacing:1.269216px;}
.ws6b{word-spacing:1.296000px;}
.ws122{word-spacing:1.330560px;}
.wsf4{word-spacing:1.342080px;}
.ws15d{word-spacing:1.365120px;}
.ws2e{word-spacing:1.436400px;}
.wsbf{word-spacing:1.440000px;}
.ws74{word-spacing:1.449360px;}
.ws3e{word-spacing:1.533600px;}
.ws8f{word-spacing:1.546560px;}
.ws14f{word-spacing:1.620000px;}
.ws128{word-spacing:1.833840px;}
.ws157{word-spacing:1.845360px;}
.ws81{word-spacing:1.872000px;}
.wsb4{word-spacing:1.924776px;}
.ws125{word-spacing:1.995840px;}
.ws10c{word-spacing:2.016000px;}
.ws1c{word-spacing:2.068416px;}
.wsa{word-spacing:2.091600px;}
.ws73{word-spacing:2.108160px;}
.ws15f{word-spacing:2.161440px;}
.ws14e{word-spacing:2.298240px;}
.wsc6{word-spacing:2.340000px;}
.wsb1{word-spacing:2.346120px;}
.wsb3{word-spacing:2.365272px;}
.wsd3{word-spacing:2.575944px;}
.ws10b{word-spacing:2.592000px;}
.ws12a{word-spacing:2.648880px;}
.ws124{word-spacing:2.661120px;}
.wsd5{word-spacing:2.671704px;}
.ws11e{word-spacing:2.684160px;}
.ws133{word-spacing:2.700000px;}
.ws160{word-spacing:2.844000px;}
.wsf5{word-spacing:2.851920px;}
.wsb5{word-spacing:3.198384px;}
.ws134{word-spacing:3.456000px;}
.ws9{word-spacing:4.960080px;}
.ws170{word-spacing:6.486480px;}
.ws120{word-spacing:8.436960px;}
.wsd4{word-spacing:8.733312px;}
.ws48{word-spacing:8.850240px;}
.ws6d{word-spacing:10.656000px;}
.ws156{word-spacing:21.888000px;}
.ws50{word-spacing:68.683680px;}
.ws139{word-spacing:70.053408px;}
.ws24{word-spacing:100.777824px;}
.wsba{word-spacing:124.790400px;}
.ws1f{word-spacing:128.624832px;}
.wsbb{word-spacing:158.518800px;}
.ws103{word-spacing:169.667352px;}
.ws101{word-spacing:376.256160px;}
.ws21{word-spacing:378.845712px;}
.ws1d{word-spacing:389.599560px;}
.ws1a{word-spacing:466.667208px;}
.ws22{word-spacing:473.628960px;}
.ws23{word-spacing:483.444360px;}
.ws13a{word-spacing:545.934240px;}
.ws1e{word-spacing:634.812192px;}
.ws12b{word-spacing:850.633800px;}
.wse8{word-spacing:1090.542600px;}
.wscb{word-spacing:1100.128800px;}
.wsf7{word-spacing:1614.240000px;}
.ws69{word-spacing:1771.227000px;}
.wsad{word-spacing:2189.131056px;}
.wsbe{word-spacing:2654.608200px;}
.wsaa{word-spacing:4975.888800px;}
._f{margin-left:-2014.659000px;}
._2f{margin-left:-32.688000px;}
._1e{margin-left:-26.640000px;}
._26{margin-left:-23.921856px;}
._12{margin-left:-21.888000px;}
._10{margin-left:-20.376288px;}
._15{margin-left:-19.309176px;}
._d{margin-left:-15.552000px;}
._23{margin-left:-14.551200px;}
._17{margin-left:-13.449456px;}
._6{margin-left:-11.684304px;}
._13{margin-left:-10.568160px;}
._b{margin-left:-9.429264px;}
._31{margin-left:-8.352000px;}
._9{margin-left:-7.106976px;}
._e{margin-left:-6.048000px;}
._4{margin-left:-4.824000px;}
._1d{margin-left:-3.632544px;}
._5{margin-left:-2.356704px;}
._0{margin-left:-1.224000px;}
._1{width:1.008000px;}
._2{width:2.145384px;}
._3{width:3.740976px;}
._1c{width:5.527296px;}
._11{width:7.277760px;}
._16{width:9.446544px;}
._19{width:11.496096px;}
._36{width:12.608064px;}
._38{width:17.791560px;}
._1a{width:22.391928px;}
._1b{width:23.596704px;}
._a{width:25.123392px;}
._8{width:27.069120px;}
._7{width:28.075968px;}
._37{width:32.990400px;}
._c{width:41.313024px;}
._25{width:43.789464px;}
._14{width:45.630720px;}
._32{width:47.305728px;}
._24{width:48.514464px;}
._35{width:51.662880px;}
._34{width:55.224720px;}
._33{width:59.551920px;}
._30{width:63.321408px;}
._18{width:81.504000px;}
._22{width:153.725040px;}
._20{width:277.652880px;}
._2b{width:486.008784px;}
._2c{width:494.773920px;}
._2e{width:515.071440px;}
._1f{width:677.576880px;}
._2d{width:804.912480px;}
._21{width:893.062656px;}
._27{width:985.164000px;}
._28{width:1006.959000px;}
._2a{width:1235.988000px;}
._29{width:4235.091600px;}
.fcf{color:rgb(255,0,0);}
.fce{color:rgb(191,191,191);}
.fcd{color:rgb(125,125,125);}
.fc0{color:rgb(0,118,175);}
.fc5{color:transparent;}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc6{color:rgb(136,136,136);}
.fc7{color:rgb(34,34,34);}
.fc3{color:rgb(137,137,137);}
.fc8{color:rgb(50,50,50);}
.fc9{color:rgb(216,216,216);}
.fca{color:rgb(127,127,127);}
.fcb{color:rgb(217,217,217);}
.fcc{color:rgb(204,204,204);}
.fc4{color:rgb(108,24,105);}
.fs13{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs14{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:84.240000px;}
.fs12{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.fs9{font-size:102.240000px;}
.fsd{font-size:108.000000px;}
.fs7{font-size:112.320000px;}
.fs1c{font-size:113.760000px;}
.fs15{font-size:117.360000px;}
.fs3{font-size:120.240000px;}
.fs16{font-size:126.000000px;}
.fse{font-size:131.760000px;}
.fsf{font-size:144.000000px;}
.fsb{font-size:156.240000px;}
.fs8{font-size:159.120000px;}
.fs6{font-size:159.840000px;}
.fs4{font-size:167.760000px;}
.fsc{font-size:175.680000px;}
.fs11{font-size:192.240000px;}
.fs1b{font-size:203.760000px;}
.fs19{font-size:216.000000px;}
.fs1a{font-size:221.760000px;}
.fs18{font-size:239.760000px;}
.fs10{font-size:257.760000px;}
.fs2{font-size:288.000000px;}
.fs17{font-size:324.000000px;}
.y0{bottom:0.000000px;}
.y206{bottom:9.946800px;}
.y1d7{bottom:10.611750px;}
.y26b{bottom:11.941800px;}
.y1de{bottom:12.236700px;}
.y14{bottom:18.457350px;}
.ye8{bottom:18.459570px;}
.y262{bottom:19.357200px;}
.y34{bottom:24.162060px;}
.y107{bottom:24.347100px;}
.yff{bottom:24.535350px;}
.y6e{bottom:26.193300px;}
.y129{bottom:30.421800px;}
.y133{bottom:33.755400px;}
.yf0{bottom:36.230850px;}
.yd7{bottom:37.670850px;}
.y145{bottom:44.994150px;}
.y6d{bottom:47.793300px;}
.y72{bottom:48.382350px;}
.yd9{bottom:49.014150px;}
.y106{bottom:51.347100px;}
.yfe{bottom:51.535350px;}
.y117{bottom:52.883550px;}
.y33{bottom:52.961880px;}
.yfa{bottom:55.810350px;}
.y13c{bottom:56.051700px;}
.y176{bottom:56.328150px;}
.y119{bottom:56.345430px;}
.y23f{bottom:60.604050px;}
.y139{bottom:63.865200px;}
.yd6{bottom:64.670850px;}
.y132{bottom:66.155400px;}
.y19c{bottom:67.529550px;}
.yd8{bottom:76.014150px;}
.y175{bottom:76.133910px;}
.y144{bottom:77.394150px;}
.y105{bottom:78.347100px;}
.yfd{bottom:78.535350px;}
.y32{bottom:81.761700px;}
.yf9{bottom:82.810350px;}
.y19e{bottom:83.035050px;}
.y118{bottom:85.145250px;}
.y147{bottom:86.793840px;}
.y1e8{bottom:91.911330px;}
.y59{bottom:92.390640px;}
.y23e{bottom:93.004050px;}
.y66{bottom:93.493320px;}
.ya2{bottom:94.011390px;}
.y18f{bottom:95.424150px;}
.y138{bottom:96.265200px;}
.y10e{bottom:99.766950px;}
.y104{bottom:105.347100px;}
.yfc{bottom:105.535350px;}
.y146{bottom:106.599600px;}
.y225{bottom:110.432250px;}
.y31{bottom:110.561520px;}
.y13{bottom:111.012630px;}
.y2c7{bottom:111.531930px;}
.y2b5{bottom:112.585770px;}
.y220{bottom:113.619750px;}
.y7c{bottom:113.903550px;}
.y174{bottom:115.728870px;}
.y91{bottom:119.743950px;}
.y15f{bottom:119.940150px;}
.yb0{bottom:123.025050px;}
.y296{bottom:123.405030px;}
.y1fd{bottom:124.098150px;}
.y58{bottom:124.795320px;}
.y141{bottom:125.016300px;}
.y23d{bottom:125.404050px;}
.ya1{bottom:125.699670px;}
.y2dc{bottom:126.566850px;}
.y1fa{bottom:128.035650px;}
.y1ae{bottom:128.429250px;}
.y8e{bottom:129.904050px;}
.y131{bottom:130.955400px;}
.y1d3{bottom:131.760000px;}
.y19b{bottom:132.329550px;}
.yfb{bottom:132.535350px;}
.y7f{bottom:133.335000px;}
.y7b{bottom:135.503550px;}
.y65{bottom:135.600000px;}
.y93{bottom:138.535500px;}
.y18e{bottom:138.624300px;}
.y1e7{bottom:138.705210px;}
.y30{bottom:139.361340px;}
.y92{bottom:139.494300px;}
.y287{bottom:139.945050px;}
.y122{bottom:140.090700px;}
.y2c6{bottom:140.510490px;}
.y90{bottom:141.343950px;}
.y15e{bottom:141.540150px;}
.y224{bottom:142.832250px;}
.y1ce{bottom:143.423160px;}
.y21f{bottom:146.019750px;}
.y19d{bottom:147.835050px;}
.y8d{bottom:151.504050px;}
.yb9{bottom:153.625050px;}
.y198{bottom:153.699750px;}
.y261{bottom:153.772650px;}
.y173{bottom:155.323830px;}
.y2db{bottom:155.545410px;}
.yd4{bottom:155.882550px;}
.y1c3{bottom:156.239340px;}
.y7a{bottom:157.103550px;}
.y57{bottom:157.200000px;}
.ya0{bottom:157.387950px;}
.y140{bottom:157.416300px;}
.y23c{bottom:157.804050px;}
.y27c{bottom:159.027210px;}
.y226{bottom:159.444750px;}
.y137{bottom:161.065200px;}
.y205{bottom:161.198910px;}
.y12{bottom:161.424510px;}
.y2a4{bottom:161.689410px;}
.ycd{bottom:161.725050px;}
.y26a{bottom:162.085050px;}
.y1b6{bottom:162.449250px;}
.y275{bottom:162.635670px;}
.y8f{bottom:162.943950px;}
.y15d{bottom:163.140150px;}
.y130{bottom:163.355400px;}
.yc6{bottom:164.588310px;}
.y24a{bottom:164.785050px;}
.yb1{bottom:166.225050px;}
.y2f{bottom:168.161160px;}
.y2c5{bottom:169.489050px;}
.y1ef{bottom:171.625050px;}
.y2a0{bottom:171.867690px;}
.y295{bottom:172.358370px;}
.y2b4{bottom:174.145050px;}
.y1be{bottom:174.239340px;}
.ye7{bottom:174.380790px;}
.y172{bottom:175.129590px;}
.y223{bottom:175.232250px;}
.y194{bottom:177.633000px;}
.y21e{bottom:178.419750px;}
.y255{bottom:179.352450px;}
.y18d{bottom:181.824300px;}
.y1c8{bottom:182.088120px;}
.y121{bottom:183.290700px;}
.y260{bottom:184.014810px;}
.y2da{bottom:184.523970px;}
.y1f7{bottom:185.311710px;}
.y103{bottom:185.371950px;}
.ya3{bottom:185.540040px;}
.y64{bottom:186.733320px;}
.ye2{bottom:187.126350px;}
.y20d{bottom:187.673130px;}
.y23{bottom:191.192640px;}
.y14e{bottom:191.980710px;}
.y136{bottom:193.465200px;}
.y1e6{bottom:194.873490px;}
.y171{bottom:194.935350px;}
.y56{bottom:195.521280px;}
.y12f{bottom:195.755400px;}
.y28a{bottom:196.168680px;}
.y1cd{bottom:196.171080px;}
.y9f{bottom:196.971390px;}
.y19a{bottom:197.129550px;}
.y1ad{bottom:197.909250px;}
.y2c4{bottom:198.467610px;}
.y239{bottom:201.715050px;}
.y249{bottom:202.045050px;}
.y10d{bottom:202.853100px;}
.ye6{bottom:203.180610px;}
.y15c{bottom:206.340150px;}
.yd3{bottom:206.990520px;}
.y222{bottom:207.632250px;}
.y1c2{bottom:210.227100px;}
.y1b5{bottom:210.329250px;}
.y21d{bottom:210.819750px;}
.y11{bottom:211.836390px;}
.y2a3{bottom:212.101290px;}
.y29f{bottom:212.172030px;}
.y27b{bottom:212.305050px;}
.y2e{bottom:212.306520px;}
.y2d9{bottom:213.502530px;}
.y254{bottom:213.565770px;}
.y170{bottom:214.741110px;}
.y204{bottom:216.265050px;}
.yc5{bottom:216.445050px;}
.y286{bottom:217.705050px;}
.y197{bottom:218.499750px;}
.y102{bottom:220.662390px;}
.y294{bottom:221.311710px;}
.y1c7{bottom:221.682000px;}
.ycc{bottom:222.205050px;}
.y13f{bottom:222.216300px;}
.y1a1{bottom:223.732050px;}
.y22{bottom:224.664000px;}
.y135{bottom:225.865200px;}
.y120{bottom:226.490700px;}
.y2c3{bottom:227.446170px;}
.y55{bottom:227.925960px;}
.y15b{bottom:227.940150px;}
.y1bd{bottom:228.227100px;}
.y10c{bottom:228.593100px;}
.y9e{bottom:228.659670px;}
.y63{bottom:228.840000px;}
.y1d2{bottom:228.960000px;}
.ye5{bottom:231.980430px;}
.y274{bottom:232.123410px;}
.y14d{bottom:232.300710px;}
.y269{bottom:233.744490px;}
.y238{bottom:234.115050px;}
.y1f6{bottom:234.265050px;}
.ydc{bottom:239.499000px;}
.y1e5{bottom:241.667370px;}
.y193{bottom:242.433000px;}
.y2d8{bottom:242.481090px;}
.y2b3{bottom:242.545770px;}
.yd2{bottom:243.002400px;}
.y25f{bottom:244.499130px;}
.y128{bottom:246.685050px;}
.y20c{bottom:247.603770px;}
.y253{bottom:247.779090px;}
.y6c{bottom:248.916600px;}
.ybe{bottom:248.919000px;}
.y15a{bottom:249.540150px;}
.y219{bottom:249.720000px;}
.y2d{bottom:251.903280px;}
.y29e{bottom:252.476370px;}
.y7{bottom:252.763800px;}
.y10b{bottom:253.792950px;}
.y6a{bottom:253.983720px;}
.y16f{bottom:254.336070px;}
.y13e{bottom:254.616300px;}
.y229{bottom:254.727750px;}
.y1ee{bottom:256.227210px;}
.y2c2{bottom:256.424730px;}
.y285{bottom:256.585050px;}
.y101{bottom:256.674270px;}
.y232{bottom:258.041550px;}
.y1b4{bottom:258.209250px;}
.y134{bottom:258.265200px;}
.y18b{bottom:258.277710px;}
.y1ac{bottom:258.389250px;}
.y3d{bottom:259.220820px;}
.y46{bottom:259.242480px;}
.y54{bottom:260.330640px;}
.y9d{bottom:260.347950px;}
.ye4{bottom:260.780250px;}
.y199{bottom:261.929550px;}
.y10{bottom:262.248270px;}
.y28d{bottom:262.501290px;}
.y2a2{bottom:262.513170px;}
.y21{bottom:264.986880px;}
.ybc{bottom:269.005050px;}
.y79{bottom:269.471550px;}
.y2b2{bottom:269.905050px;}
.y293{bottom:270.265050px;}
.y22a{bottom:270.819750px;}
.y159{bottom:271.140150px;}
.yaf{bottom:271.165050px;}
.y2d7{bottom:271.459650px;}
.y88{bottom:272.084550px;}
.y14c{bottom:272.605050px;}
.y8b{bottom:272.760900px;}
.y1c1{bottom:273.251580px;}
.y16e{bottom:274.141830px;}
.y6{bottom:274.363800px;}
.yc4{bottom:276.925050px;}
.y1d6{bottom:278.280000px;}
.y27a{bottom:278.907210px;}
.y10a{bottom:278.993100px;}
.y1f8{bottom:279.816900px;}
.y62{bottom:279.973320px;}
.y2c{bottom:280.703100px;}
.y268{bottom:280.885050px;}
.y218{bottom:282.120000px;}
.y1bc{bottom:282.251580px;}
.y210{bottom:282.270000px;}
.ycb{bottom:282.685050px;}
.y196{bottom:283.299750px;}
.y252{bottom:283.585050px;}
.y2c1{bottom:285.403290px;}
.y13d{bottom:287.016300px;}
.y228{bottom:287.127750px;}
.y7e{bottom:288.084450px;}
.y1e4{bottom:288.461250px;}
.y1a0{bottom:288.532050px;}
.y1a6{bottom:288.989250px;}
.y3c{bottom:289.816140px;}
.y45{bottom:289.837800px;}
.y231{bottom:290.441550px;}
.ye3{bottom:291.020250px;}
.y78{bottom:291.071550px;}
.y8c{bottom:292.192350px;}
.y100{bottom:292.686150px;}
.y53{bottom:292.735320px;}
.y29d{bottom:292.780710px;}
.y18c{bottom:293.368350px;}
.y87{bottom:293.684550px;}
.y16d{bottom:293.947590px;}
.y8a{bottom:294.360900px;}
.y284{bottom:295.465050px;}
.y5{bottom:295.963800px;}
.y18a{bottom:296.067630px;}
.y127{bottom:297.085050px;}
.y20{bottom:298.654800px;}
.y248{bottom:299.425050px;}
.y9c{bottom:299.931390px;}
.y2d6{bottom:300.438210px;}
.y203{bottom:301.598910px;}
.y2b1{bottom:304.105050px;}
.y109{bottom:304.192950px;}
.y25e{bottom:304.983450px;}
.y1b3{bottom:306.089100px;}
.y181{bottom:306.225000px;}
.y20b{bottom:307.534410px;}
.ybb{bottom:307.885050px;}
.y17c{bottom:309.353700px;}
.y1ed{bottom:309.505050px;}
.yf{bottom:312.660150px;}
.y77{bottom:312.671550px;}
.y28c{bottom:312.913170px;}
.y2a1{bottom:312.925050px;}
.y1f5{bottom:313.478370px;}
.yec{bottom:313.645050px;}
.y158{bottom:314.340150px;}
.yae{bottom:314.365050px;}
.y2c0{bottom:314.381850px;}
.y69{bottom:314.461200px;}
.y217{bottom:314.520000px;}
.y20f{bottom:314.670000px;}
.y86{bottom:315.284550px;}
.y89{bottom:315.960900px;}
.y8{bottom:317.563800px;}
.yd1{bottom:318.494910px;}
.y1cc{bottom:318.510210px;}
.y111{bottom:318.517620px;}
.ybd{bottom:320.107350px;}
.y6b{bottom:320.109750px;}
.y61{bottom:322.080000px;}
.y230{bottom:322.841550px;}
.yc3{bottom:324.445050px;}
.y3b{bottom:324.731100px;}
.y44{bottom:324.752760px;}
.y2b{bottom:324.848460px;}
.y52{bottom:325.140000px;}
.y1c0{bottom:327.239340px;}
.y1ab{bottom:327.869100px;}
.y251{bottom:328.936770px;}
.y108{bottom:329.392950px;}
.y2d5{bottom:329.416770px;}
.y2b0{bottom:331.465050px;}
.y292{bottom:331.491690px;}
.y9b{bottom:331.619670px;}
.y279{bottom:332.185050px;}
.y1f{bottom:332.322720px;}
.y116{bottom:333.075570px;}
.y29c{bottom:333.085050px;}
.y16c{bottom:333.542550px;}
.y283{bottom:334.345050px;}
.yb8{bottom:334.885050px;}
.y1e3{bottom:335.255130px;}
.y12d{bottom:335.887050px;}
.y157{bottom:335.940150px;}
.y247{bottom:335.965050px;}
.y1bb{bottom:336.239340px;}
.yca{bottom:343.165050px;}
.y2bf{bottom:343.360410px;}
.y1ca{bottom:345.692670px;}
.y216{bottom:346.920000px;}
.y20e{bottom:347.070000px;}
.y195{bottom:348.099750px;}
.y180{bottom:349.425000px;}
.y26e{bottom:349.645050px;}
.y267{bottom:352.544490px;}
.y17b{bottom:352.553700px;}
.y1d9{bottom:353.233170px;}
.y14b{bottom:353.260710px;}
.y19f{bottom:353.332050px;}
.y16b{bottom:353.348310px;}
.y22f{bottom:355.241550px;}
.y11f{bottom:356.090700px;}
.y126{bottom:356.469030px;}
.y202{bottom:356.665050px;}
.yeb{bottom:356.845050px;}
.y156{bottom:357.540150px;}
.yad{bottom:357.565050px;}
.y189{bottom:357.710970px;}
.y2d4{bottom:358.395330px;}
.y1a5{bottom:359.549250px;}
.y3a{bottom:360.003900px;}
.y43{bottom:360.025560px;}
.y187{bottom:360.410250px;}
.y250{bottom:360.625050px;}
.y1f4{bottom:362.431710px;}
.y9a{bottom:363.307950px;}
.y28b{bottom:363.325050px;}
.y51{bottom:363.470640px;}
.y25d{bottom:365.467770px;}
.y2af{bottom:365.665770px;}
.y1e{bottom:365.794080px;}
.y20a{bottom:367.465050px;}
.y2a{bottom:368.993820px;}
.y1d5{bottom:369.360000px;}
.y273{bottom:369.458370px;}
.ye{bottom:370.440150px;}
.yc2{bottom:371.965050px;}
.y192{bottom:372.033000px;}
.y2be{bottom:372.338970px;}
.y16a{bottom:373.154070px;}
.y60{bottom:373.226640px;}
.y1dd{bottom:373.369410px;}
.yb7{bottom:373.765050px;}
.y1db{bottom:374.760000px;}
.y68{bottom:374.770920px;}
.yf7{bottom:377.604750px;}
.y26f{bottom:377.713170px;}
.y155{bottom:379.140150px;}
.y215{bottom:379.320000px;}
.y291{bottom:380.445030px;}
.y1bf{bottom:381.227100px;}
.y115{bottom:383.487450px;}
.y29b{bottom:383.547690px;}
.y1c9{bottom:385.286550px;}
.y246{bottom:385.825050px;}
.yb{bottom:387.202050px;}
.y2d3{bottom:387.373890px;}
.ydd{bottom:387.534000px;}
.ye1{bottom:389.728410px;}
.y1ba{bottom:390.227100px;}
.y1e2{bottom:391.423410px;}
.y17f{bottom:392.625000px;}
.y188{bottom:392.801610px;}
.y169{bottom:392.959830px;}
.y2ae{bottom:393.025050px;}
.y12c{bottom:393.487050px;}
.y14a{bottom:393.565050px;}
.y1ec{bottom:394.105050px;}
.y186{bottom:395.500890px;}
.y25c{bottom:395.709930px;}
.y17a{bottom:395.753700px;}
.y50{bottom:395.875320px;}
.yd0{bottom:395.887350px;}
.y1cb{bottom:395.902650px;}
.y110{bottom:395.910060px;}
.y1aa{bottom:397.349100px;}
.y278{bottom:398.785050px;}
.y11e{bottom:399.290700px;}
.y266{bottom:399.685050px;}
.y154{bottom:400.740150px;}
.y21c{bottom:400.832250px;}
.y2bd{bottom:401.317530px;}
.y1b2{bottom:401.849100px;}
.y99{bottom:402.891390px;}
.y237{bottom:403.054050px;}
.yc9{bottom:403.645050px;}
.ya{bottom:405.204750px;}
.y1d{bottom:406.116960px;}
.y241{bottom:408.904050px;}
.yac{bottom:409.405050px;}
.y1f3{bottom:411.385050px;}
.y272{bottom:411.565050px;}
.y282{bottom:412.105050px;}
.yb6{bottom:412.645050px;}
.y168{bottom:412.765590px;}
.y29{bottom:413.139180px;}
.ycf{bottom:413.725050px;}
.y236{bottom:414.791400px;}
.y5f{bottom:415.333320px;}
.y2d2{bottom:416.352450px;}
.yea{bottom:418.045050px;}
.ye0{bottom:418.528230px;}
.yc1{bottom:419.485050px;}
.y67{bottom:420.150000px;}
.y153{bottom:422.340150px;}
.y245{bottom:422.365050px;}
.y9{bottom:423.207450px;}
.y1d1{bottom:423.360000px;}
.y1dc{bottom:423.781290px;}
.y29a{bottom:423.852030px;}
.y76{bottom:424.335600px;}
.y82{bottom:426.122550px;}
.yd{bottom:426.780150px;}
.y2ad{bottom:427.226490px;}
.y26d{bottom:428.125050px;}
.y4f{bottom:428.280000px;}
.y290{bottom:429.398370px;}
.yf6{bottom:429.624600px;}
.y1a4{bottom:430.109100px;}
.y1fc{bottom:430.285650px;}
.y2bc{bottom:430.296090px;}
.y167{bottom:432.571350px;}
.y221{bottom:432.819750px;}
.y21b{bottom:433.232250px;}
.y1f9{bottom:434.129400px;}
.y98{bottom:434.579670px;}
.y17e{bottom:435.825000px;}
.y191{bottom:436.833000px;}
.y84{bottom:437.700450px;}
.y1e1{bottom:438.217290px;}
.y179{bottom:438.953700px;}
.y1c{bottom:439.784880px;}
.y240{bottom:441.304050px;}
.y201{bottom:441.985050px;}
.y11d{bottom:442.490700px;}
.y7d{bottom:443.392500px;}
.y160{bottom:443.940150px;}
.y1b9{bottom:444.239340px;}
.y2d1{bottom:445.331010px;}
.y85{bottom:445.382700px;}
.y42{bottom:445.498200px;}
.y75{bottom:445.935600px;}
.y24f{bottom:446.805090px;}
.y235{bottom:447.191400px;}
.ydf{bottom:447.328050px;}
.y81{bottom:447.722550px;}
.y212{bottom:448.368000px;}
.y214{bottom:448.935000px;}
.y1b1{bottom:449.729250px;}
.y281{bottom:450.985050px;}
.y12b{bottom:451.087050px;}
.yba{bottom:451.525050px;}
.y166{bottom:452.377110px;}
.ya6{bottom:452.605050px;}
.y2ac{bottom:454.585770px;}
.y25b{bottom:456.194250px;}
.yf5{bottom:456.804750px;}
.y185{bottom:457.144230px;}
.y28{bottom:457.284540px;}
.y5e{bottom:457.440000px;}
.y1a9{bottom:457.829250px;}
.y209{bottom:458.743770px;}
.y2bb{bottom:459.274650px;}
.y83{bottom:459.300450px;}
.ye9{bottom:461.245050px;}
.yc8{bottom:464.125050px;}
.y299{bottom:464.156370px;}
.y277{bottom:465.387210px;}
.y152{bottom:465.540150px;}
.y21a{bottom:465.632250px;}
.y97{bottom:466.267950px;}
.y1d4{bottom:466.560000px;}
.y4e{bottom:466.795320px;}
.y74{bottom:467.535600px;}
.y211{bottom:469.320000px;}
.y80{bottom:469.322550px;}
.yc0{bottom:469.868310px;}
.y265{bottom:471.325050px;}
.y165{bottom:472.182870px;}
.y244{bottom:472.225050px;}
.y10f{bottom:473.302500px;}
.y1b{bottom:473.452800px;}
.yce{bottom:474.193170px;}
.y149{bottom:474.205050px;}
.y2d0{bottom:474.309570px;}
.y125{bottom:475.285050px;}
.y41{bottom:476.093520px;}
.y4a{bottom:476.222970px;}
.y39{bottom:476.225220px;}
.yde{bottom:477.568050px;}
.y28f{bottom:478.351710px;}
.yb5{bottom:478.525050px;}
.y1eb{bottom:478.709370px;}
.y17d{bottom:479.025000px;}
.y4{bottom:479.116200px;}
.y234{bottom:479.591400px;}
.y24e{bottom:481.018410px;}
.y271{bottom:481.058370px;}
.y213{bottom:481.335000px;}
.y2ab{bottom:481.945050px;}
.y178{bottom:482.153700px;}
.y13b{bottom:483.244200px;}
.y114{bottom:484.263690px;}
.y1e0{bottom:485.011170px;}
.y142{bottom:485.356350px;}
.y11c{bottom:485.690700px;}
.y25a{bottom:486.436410px;}
.y151{bottom:487.140150px;}
.y2ba{bottom:488.253210px;}
.y280{bottom:489.865050px;}
.y1f2{bottom:490.598370px;}
.y164{bottom:491.988630px;}
.y184{bottom:494.934150px;}
.ya5{bottom:495.805050px;}
.y1b0{bottom:497.609250px;}
.y1b8{bottom:498.227100px;}
.y4d{bottom:499.200000px;}
.y1a3{bottom:500.686170px;}
.y3{bottom:500.716200px;}
.y27{bottom:501.429900px;}
.y2cf{bottom:503.288130px;}
.yab{bottom:504.445050px;}
.y298{bottom:504.460710px;}
.y1c6{bottom:504.721740px;}
.y26c{bottom:506.605050px;}
.y49{bottom:506.818290px;}
.y38{bottom:506.820540px;}
.y1a{bottom:507.120720px;}
.yf4{bottom:508.104750px;}
.y5d{bottom:508.573320px;}
.y12a{bottom:508.687200px;}
.y150{bottom:508.740150px;}
.y243{bottom:508.765050px;}
.y40{bottom:511.008480px;}
.y163{bottom:511.794390px;}
.y233{bottom:511.991400px;}
.yc{bottom:513.180150px;}
.y24d{bottom:515.231730px;}
.y2aa{bottom:516.146490px;}
.y259{bottom:516.678570px;}
.y22c{bottom:516.857250px;}
.y2b9{bottom:517.231770px;}
.yb4{bottom:517.405050px;}
.y1a8{bottom:518.309100px;}
.y276{bottom:518.665050px;}
.y208{bottom:518.674410px;}
.y1d0{bottom:520.560000px;}
.ybf{bottom:521.725050px;}
.y2{bottom:522.316200px;}
.y270{bottom:523.165050px;}
.y289{bottom:523.707450px;}
.yc7{bottom:524.605050px;}
.y71{bottom:525.202350px;}
.y177{bottom:525.353700px;}
.y124{bottom:525.685050px;}
.y22e{bottom:526.037250px;}
.y28e{bottom:527.305050px;}
.y200{bottom:527.318910px;}
.y27f{bottom:528.745050px;}
.y11b{bottom:528.890700px;}
.ydb{bottom:530.099700px;}
.y14f{bottom:530.340150px;}
.y162{bottom:531.600150px;}
.y1df{bottom:531.805050px;}
.y1ea{bottom:531.987210px;}
.y2ce{bottom:532.266690px;}
.yf3{bottom:532.404750px;}
.y227{bottom:532.935750px;}
.y113{bottom:534.675570px;}
.ya4{bottom:539.005050px;}
.y1f1{bottom:539.551710px;}
.y19{bottom:540.592080px;}
.y26{bottom:541.026660px;}
.y48{bottom:541.733250px;}
.y37{bottom:541.735500px;}
.y3f{bottom:541.782720px;}
.y2a9{bottom:543.505770px;}
.y1{bottom:543.916200px;}
.y1c5{bottom:544.315620px;}
.y297{bottom:544.765050px;}
.y264{bottom:544.784490px;}
.y1fe{bottom:545.043150px;}
.y2b8{bottom:546.210330px;}
.y96{bottom:546.531390px;}
.y258{bottom:546.920730px;}
.yaa{bottom:547.645050px;}
.y1fb{bottom:548.605650px;}
.y22b{bottom:549.257250px;}
.y24c{bottom:549.445050px;}
.y5c{bottom:550.680000px;}
.y148{bottom:554.860710px;}
.yb3{bottom:556.285050px;}
.y70{bottom:557.602350px;}
.y22d{bottom:558.437250px;}
.y242{bottom:558.625050px;}
.y23b{bottom:559.087050px;}
.y2cd{bottom:561.245250px;}
.y183{bottom:562.093410px;}
.y27e{bottom:566.545050px;}
.y1b7{bottom:569.502450px;}
.y25{bottom:569.826480px;}
.y2a8{bottom:570.865050px;}
.y1a2{bottom:571.229250px;}
.y11a{bottom:572.090700px;}
.y18{bottom:574.252080px;}
.y2b7{bottom:575.188890px;}
.y12e{bottom:576.160950px;}
.y3e{bottom:576.876600px;}
.y47{bottom:577.006050px;}
.y36{bottom:577.008300px;}
.y4c{bottom:577.135320px;}
.y257{bottom:577.162890px;}
.y95{bottom:578.219670px;}
.y207{bottom:578.605050px;}
.y1a7{bottom:578.789100px;}
.y288{bottom:578.967450px;}
.yda{bottom:580.671150px;}
.y143{bottom:580.776150px;}
.y1ff{bottom:582.385050px;}
.yf2{bottom:583.704750px;}
.y1c4{bottom:583.909500px;}
.y123{bottom:585.085050px;}
.y112{bottom:585.087450px;}
.y1e9{bottom:585.265050px;}
.y161{bottom:586.593900px;}
.y1f0{bottom:588.505050px;}
.y2cc{bottom:590.223810px;}
.ya9{bottom:590.845050px;}
.y23a{bottom:591.487050px;}
.y263{bottom:591.925050px;}
.y1af{bottom:593.369250px;}
.yb2{bottom:595.165050px;}
.y182{bottom:597.184050px;}
.y24{bottom:598.626300px;}
.y6f{bottom:599.182350px;}
.y5b{bottom:601.800000px;}
.y24b{bottom:601.825050px;}
.y27d{bottom:602.185050px;}
.y2b6{bottom:604.167450px;}
.y2a7{bottom:605.065050px;}
.y256{bottom:607.405050px;}
.y17{bottom:607.920000px;}
.yf1{bottom:608.004750px;}
.y4b{bottom:609.540000px;}
.y94{bottom:609.907950px;}
.y1cf{bottom:617.760000px;}
.y2cb{bottom:619.202370px;}
.y13a{bottom:622.138350px;}
.y2a6{bottom:640.042350px;}
.ya8{bottom:647.429910px;}
.y2ca{bottom:648.180930px;}
.y1da{bottom:654.802350px;}
.y35{bottom:654.880050px;}
.y16{bottom:654.963120px;}
.y5a{bottom:655.027650px;}
.y2c9{bottom:677.159490px;}
.yf8{bottom:682.195800px;}
.yef{bottom:682.393350px;}
.y73{bottom:683.242350px;}
.yd5{bottom:686.122350px;}
.y190{bottom:687.663600px;}
.y15{bottom:703.035000px;}
.y2c8{bottom:706.138050px;}
.y1d8{bottom:719.602350px;}
.ya7{bottom:724.822350px;}
.yee{bottom:726.282150px;}
.y2a5{bottom:726.442350px;}
.yed{bottom:768.801750px;}
.h1d{height:39.339844px;}
.h3{height:43.506914px;}
.h24{height:44.925469px;}
.h23{height:48.832031px;}
.h1{height:52.417969px;}
.h2{height:52.453125px;}
.h22{height:53.140781px;}
.h35{height:57.133477px;}
.h36{height:58.531992px;}
.h21{height:61.329023px;}
.h1e{height:61.370156px;}
.h1b{height:65.566406px;}
.h38{height:66.536367px;}
.h1f{height:68.733984px;}
.hb{height:69.715898px;}
.h7{height:69.762656px;}
.he{height:69.890625px;}
.hd{height:70.090312px;}
.h37{height:73.248047px;}
.hf{height:73.385156px;}
.h2f{height:74.039062px;}
.h39{height:75.041016px;}
.h34{height:77.154609px;}
.h14{height:77.519531px;}
.h30{height:78.626953px;}
.h13{height:78.679688px;}
.h28{height:79.596211px;}
.h15{height:81.226331px;}
.h26{height:81.544570px;}
.h9{height:81.826875px;}
.ha{height:81.858555px;}
.h3a{height:82.820391px;}
.h3b{height:82.875937px;}
.h25{height:85.441289px;}
.h27{height:85.498594px;}
.h19{height:87.538008px;}
.h5{height:87.596719px;}
.h16{height:95.989219px;}
.h33{height:97.664062px;}
.h31{height:103.804856px;}
.h20{height:104.835938px;}
.h17{height:104.906250px;}
.h12{height:113.746992px;}
.h10{height:113.823281px;}
.hc{height:115.843711px;}
.h8{height:116.367891px;}
.h1c{height:122.133867px;}
.h6{height:122.215781px;}
.h32{height:124.471687px;}
.h11{height:127.985625px;}
.h29{height:139.955977px;}
.h1a{height:140.049844px;}
.h2e{height:148.442344px;}
.h2c{height:157.253906px;}
.h2d{height:161.555625px;}
.h2b{height:174.668906px;}
.h18{height:187.656328px;}
.h4{height:209.671875px;}
.h2a{height:236.039062px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x85{left:10.800000px;}
.x5e{left:40.399650px;}
.x6e{left:50.034450px;}
.x37{left:56.455050px;}
.x60{left:67.234200px;}
.x74{left:69.956100px;}
.x4f{left:77.354700px;}
.x76{left:78.968550px;}
.x15{left:82.800300px;}
.x21{left:86.579160px;}
.x77{left:92.157600px;}
.x5b{left:94.858200px;}
.x4b{left:96.298200px;}
.x5d{left:97.738200px;}
.x65{left:98.838600px;}
.x4c{left:100.145700px;}
.x1f{left:103.142040px;}
.x61{left:104.226450px;}
.x46{left:109.800000px;}
.x66{left:111.330750px;}
.x2f{left:115.848900px;}
.x31{left:117.648900px;}
.x32{left:118.728900px;}
.x80{left:121.368000px;}
.x27{left:123.304440px;}
.x2c{left:124.550100px;}
.x7e{left:125.904000px;}
.x50{left:127.926150px;}
.x58{left:133.985550px;}
.x34{left:135.301050px;}
.x45{left:136.799850px;}
.x78{left:140.037600px;}
.x23{left:142.913400px;}
.x4a{left:145.800000px;}
.xc8{left:147.357000px;}
.x51{left:151.297800px;}
.xc6{left:154.800000px;}
.x1{left:156.439650px;}
.x47{left:163.800000px;}
.x22{left:170.262600px;}
.x82{left:171.618750px;}
.x35{left:173.281050px;}
.x7d{left:175.395000px;}
.x86{left:178.788000px;}
.x20{left:184.857360px;}
.x24{left:195.464760px;}
.x1e{left:199.273200px;}
.x7f{left:218.244000px;}
.x90{left:241.088100px;}
.xb{left:252.341610px;}
.x7c{left:254.682600px;}
.xae{left:274.606500px;}
.x91{left:278.159100px;}
.x92{left:281.750100px;}
.x9{left:282.759450px;}
.xa{left:286.897830px;}
.xbf{left:294.245850px;}
.x84{left:299.598750px;}
.x9c{left:301.273350px;}
.x9d{left:304.864350px;}
.x9b{left:312.262350px;}
.xb5{left:319.219350px;}
.xb6{left:322.810350px;}
.xb4{left:330.208350px;}
.x71{left:332.695800px;}
.x3{left:343.618350px;}
.xb7{left:346.381350px;}
.x30{left:358.128900px;}
.x36{left:360.121050px;}
.x8a{left:362.268750px;}
.x88{left:363.678750px;}
.x89{left:365.055000px;}
.x4{left:368.098350px;}
.x6{left:369.178350px;}
.x5{left:371.338350px;}
.x7{left:386.998350px;}
.x8f{left:389.235000px;}
.x33{left:394.128900px;}
.x8{left:397.978350px;}
.x54{left:403.837800px;}
.x83{left:407.247750px;}
.xc7{left:416.235000px;}
.x4e{left:424.420650px;}
.x2{left:433.258350px;}
.x81{left:458.895000px;}
.x99{left:476.193750px;}
.x93{left:480.713100px;}
.x6d{left:491.565900px;}
.x9f{left:496.836000px;}
.x6b{left:499.302150px;}
.xa0{left:500.427000px;}
.xb1{left:506.801250px;}
.x9e{left:507.825000px;}
.x94{left:517.784100px;}
.x95{left:521.375100px;}
.x3c{left:532.741650px;}
.xc5{left:542.235000px;}
.x87{left:544.368000px;}
.x72{left:576.100440px;}
.xf{left:585.310950px;}
.x3d{left:594.324300px;}
.x10{left:597.557430px;}
.x25{left:598.897620px;}
.x5a{left:600.596100px;}
.x11{left:608.713470px;}
.x12{left:617.353110px;}
.xc1{left:619.784850px;}
.x3e{left:623.304300px;}
.xc{left:630.059550px;}
.x13{left:633.541950px;}
.xc0{left:635.336850px;}
.x26{left:639.205740px;}
.x39{left:642.644100px;}
.xb2{left:648.902250px;}
.x16{left:652.568100px;}
.xe{left:655.870950px;}
.x8e{left:658.308000px;}
.xb9{left:662.156850px;}
.xba{left:665.747850px;}
.xc2{left:669.685200px;}
.xb8{left:673.145850px;}
.x5c{left:676.879500px;}
.xa3{left:680.205750px;}
.xa2{left:684.174750px;}
.xa8{left:685.989000px;}
.xbb{left:687.536850px;}
.xb3{left:690.131250px;}
.xa7{left:691.200000px;}
.xc3{left:693.256200px;}
.xa1{left:695.163750px;}
.x96{left:710.681850px;}
.x4d{left:725.364750px;}
.x79{left:742.298400px;}
.x97{left:743.783850px;}
.xd{left:747.419550px;}
.x7a{left:751.298400px;}
.x38{left:754.604100px;}
.x73{left:761.881320px;}
.x59{left:763.159050px;}
.x8c{left:773.527500px;}
.x98{left:777.405750px;}
.x5f{left:779.763750px;}
.x53{left:781.828650px;}
.x8b{left:790.627500px;}
.x7b{left:796.268490px;}
.x3f{left:805.824300px;}
.x64{left:816.608400px;}
.x70{left:849.770700px;}
.x17{left:866.687460px;}
.x69{left:878.252250px;}
.x6a{left:882.399450px;}
.xad{left:903.112500px;}
.xa9{left:906.300000px;}
.x8d{left:921.018750px;}
.x68{left:970.095450px;}
.xc4{left:978.474600px;}
.x9a{left:983.175750px;}
.x55{left:987.568500px;}
.x1a{left:995.084250px;}
.xbd{left:1001.714100px;}
.xbc{left:1005.683100px;}
.x41{left:1009.028400px;}
.x52{left:1010.968650px;}
.xb0{left:1016.026500px;}
.x6c{left:1017.044250px;}
.xaf{left:1023.721500px;}
.x75{left:1026.058680px;}
.xbe{left:1032.683100px;}
.xac{left:1034.255250px;}
.xa6{left:1037.415750px;}
.xa5{left:1041.384750px;}
.xab{left:1043.975250px;}
.x1c{left:1047.431130px;}
.xaa{left:1049.186250px;}
.xa4{left:1052.373750px;}
.x1b{left:1060.057770px;}
.x19{left:1062.946050px;}
.x3a{left:1067.288700px;}
.x42{left:1081.508550px;}
.x43{left:1085.108550px;}
.x1d{left:1088.633850px;}
.x2d{left:1096.291350px;}
.x18{left:1101.286050px;}
.x6f{left:1104.676050px;}
.x67{left:1108.709700px;}
.x62{left:1116.667350px;}
.x28{left:1121.623650px;}
.x2b{left:1134.373410px;}
.x63{left:1186.648650px;}
.x29{left:1209.278250px;}
.x56{left:1221.058200px;}
.x3b{left:1223.708700px;}
.x2a{left:1236.623130px;}
.x57{left:1239.598200px;}
.x44{left:1246.748550px;}
.x2e{left:1258.831350px;}
.x40{left:1261.688700px;}
.xca{left:1361.037750px;}
.xc9{left:1376.876100px;}
.x48{left:1390.197750px;}
.x49{left:1391.997750px;}
.x14{left:1403.517750px;}
@media print{
.v2{vertical-align:-68.314667pt;}
.v4{vertical-align:-37.188800pt;}
.v3{vertical-align:-20.941333pt;}
.v6{vertical-align:-14.333333pt;}
.v5{vertical-align:-9.597440pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.294933pt;}
.v7{vertical-align:30.259733pt;}
.v8{vertical-align:40.704000pt;}
.lsba{letter-spacing:-19.456000pt;}
.ls34{letter-spacing:-9.472000pt;}
.lsab{letter-spacing:-7.499520pt;}
.ls43{letter-spacing:-6.384000pt;}
.lscc{letter-spacing:-5.765760pt;}
.ls66{letter-spacing:-5.440000pt;}
.ls57{letter-spacing:-4.720000pt;}
.lscb{letter-spacing:-3.893760pt;}
.ls6b{letter-spacing:-3.404800pt;}
.lsb2{letter-spacing:-2.784000pt;}
.lscf{letter-spacing:-2.545920pt;}
.ls86{letter-spacing:-2.535040pt;}
.lsb9{letter-spacing:-2.432000pt;}
.ls33{letter-spacing:-2.222080pt;}
.ls76{letter-spacing:-2.112000pt;}
.ls4{letter-spacing:-1.859200pt;}
.lsce{letter-spacing:-1.572480pt;}
.ls1b{letter-spacing:-1.363200pt;}
.ls56{letter-spacing:-1.280000pt;}
.lsca{letter-spacing:-0.973440pt;}
.ls5c{letter-spacing:-0.800000pt;}
.lscd{letter-spacing:-0.673920pt;}
.ls77{letter-spacing:-0.672000pt;}
.ls89{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.599040pt;}
.lsb4{letter-spacing:-0.505600pt;}
.lsb6{letter-spacing:-0.447360pt;}
.ls30{letter-spacing:-0.384000pt;}
.ls19{letter-spacing:-0.363520pt;}
.ls37{letter-spacing:-0.351360pt;}
.ls4a{letter-spacing:-0.341760pt;}
.ls27{letter-spacing:-0.320640pt;}
.ls90{letter-spacing:-0.312960pt;}
.ls5a{letter-spacing:-0.299520pt;}
.ls7b{letter-spacing:-0.294400pt;}
.ls32{letter-spacing:-0.288000pt;}
.ls31{letter-spacing:-0.277760pt;}
.ls1a{letter-spacing:-0.272640pt;}
.ls41{letter-spacing:-0.256000pt;}
.lsf{letter-spacing:-0.255360pt;}
.ls55{letter-spacing:-0.240000pt;}
.lsa8{letter-spacing:-0.234240pt;}
.ls4d{letter-spacing:-0.229120pt;}
.ls23{letter-spacing:-0.213760pt;}
.lsaa{letter-spacing:-0.213120pt;}
.ls5{letter-spacing:-0.212480pt;}
.ls91{letter-spacing:-0.208640pt;}
.lsc{letter-spacing:-0.199680pt;}
.lsad{letter-spacing:-0.197120pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.181760pt;}
.lsaf{letter-spacing:-0.181120pt;}
.ls85{letter-spacing:-0.176640pt;}
.ls4b{letter-spacing:-0.170880pt;}
.lse{letter-spacing:-0.170240pt;}
.ls53{letter-spacing:-0.160000pt;}
.ls2f{letter-spacing:-0.156160pt;}
.lsb5{letter-spacing:-0.149760pt;}
.ls8{letter-spacing:-0.149120pt;}
.lsa{letter-spacing:-0.142080pt;}
.ls2d{letter-spacing:-0.138880pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls7c{letter-spacing:-0.117760pt;}
.ls25{letter-spacing:-0.106880pt;}
.lsc8{letter-spacing:-0.101120pt;}
.ls15{letter-spacing:-0.090880pt;}
.ls6a{letter-spacing:-0.085120pt;}
.ls26{letter-spacing:-0.074880pt;}
.ls84{letter-spacing:-0.058880pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7f{letter-spacing:0.058880pt;}
.ls67{letter-spacing:0.085120pt;}
.ls98{letter-spacing:0.089472pt;}
.ls17{letter-spacing:0.090880pt;}
.ls38{letter-spacing:0.093696pt;}
.lsb0{letter-spacing:0.096000pt;}
.lsb3{letter-spacing:0.101120pt;}
.ls8d{letter-spacing:0.104320pt;}
.ls94{letter-spacing:0.104384pt;}
.ls7{letter-spacing:0.106880pt;}
.ls35{letter-spacing:0.117120pt;}
.ls61{letter-spacing:0.119296pt;}
.ls44{letter-spacing:0.128000pt;}
.ls2b{letter-spacing:0.138880pt;}
.ls2c{letter-spacing:0.149120pt;}
.lsa2{letter-spacing:0.152256pt;}
.ls68{letter-spacing:0.153216pt;}
.ls48{letter-spacing:0.153792pt;}
.ls2e{letter-spacing:0.156160pt;}
.ls52{letter-spacing:0.160000pt;}
.lsbb{letter-spacing:0.164032pt;}
.ls10{letter-spacing:0.170240pt;}
.ls75{letter-spacing:0.170880pt;}
.ls22{letter-spacing:0.171008pt;}
.lsbd{letter-spacing:0.171904pt;}
.ls7a{letter-spacing:0.176640pt;}
.lsb1{letter-spacing:0.181120pt;}
.ls20{letter-spacing:0.181696pt;}
.ls18{letter-spacing:0.181760pt;}
.ls59{letter-spacing:0.192000pt;}
.lsb8{letter-spacing:0.197120pt;}
.lsa5{letter-spacing:0.199104pt;}
.ls9{letter-spacing:0.199680pt;}
.lsbe{letter-spacing:0.202240pt;}
.ls8a{letter-spacing:0.208640pt;}
.ls24{letter-spacing:0.213760pt;}
.ls3c{letter-spacing:0.229120pt;}
.lsa9{letter-spacing:0.234240pt;}
.ls54{letter-spacing:0.240000pt;}
.ls3a{letter-spacing:0.243200pt;}
.ls6c{letter-spacing:0.255360pt;}
.ls0{letter-spacing:0.256000pt;}
.lsa4{letter-spacing:0.269376pt;}
.ls11{letter-spacing:0.272640pt;}
.ls28{letter-spacing:0.277760pt;}
.ls14{letter-spacing:0.282880pt;}
.lsb{letter-spacing:0.284160pt;}
.ls70{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.298240pt;}
.lsc9{letter-spacing:0.299520pt;}
.lsc7{letter-spacing:0.303360pt;}
.lsa3{letter-spacing:0.316224pt;}
.ls51{letter-spacing:0.320000pt;}
.ls42{letter-spacing:0.320640pt;}
.ls4f{letter-spacing:0.320768pt;}
.ls58{letter-spacing:0.340480pt;}
.ls4c{letter-spacing:0.341760pt;}
.ls87{letter-spacing:0.429824pt;}
.ls1c{letter-spacing:0.513024pt;}
.ls88{letter-spacing:0.529920pt;}
.ls12{letter-spacing:0.545280pt;}
.ls49{letter-spacing:0.641536pt;}
.lsc2{letter-spacing:0.647168pt;}
.ls65{letter-spacing:0.656128pt;}
.ls9f{letter-spacing:0.702720pt;}
.lsbf{letter-spacing:0.707840pt;}
.ls93{letter-spacing:0.730688pt;}
.ls64{letter-spacing:0.745600pt;}
.ls97{letter-spacing:0.760512pt;}
.ls5d{letter-spacing:0.800000pt;}
.ls95{letter-spacing:0.805248pt;}
.lsc3{letter-spacing:0.819072pt;}
.lsa1{letter-spacing:0.843264pt;}
.ls81{letter-spacing:0.864000pt;}
.ls3e{letter-spacing:0.896000pt;}
.ls5f{letter-spacing:0.916480pt;}
.lsa6{letter-spacing:0.925248pt;}
.ls83{letter-spacing:0.931200pt;}
.ls72{letter-spacing:0.960000pt;}
.ls80{letter-spacing:0.979200pt;}
.ls82{letter-spacing:1.027200pt;}
.lsc0{letter-spacing:1.314560pt;}
.lsc1{letter-spacing:1.365120pt;}
.lsa0{letter-spacing:1.405440pt;}
.ls74{letter-spacing:1.440000pt;}
.ls40{letter-spacing:1.536000pt;}
.ls78{letter-spacing:1.632000pt;}
.ls71{letter-spacing:1.660800pt;}
.ls63{letter-spacing:1.878912pt;}
.lsc6{letter-spacing:1.931392pt;}
.ls62{letter-spacing:2.087680pt;}
.ls79{letter-spacing:2.112000pt;}
.ls3f{letter-spacing:2.176000pt;}
.lsa7{letter-spacing:2.225280pt;}
.ls6e{letter-spacing:2.535040pt;}
.lsc4{letter-spacing:2.548224pt;}
.lsc5{letter-spacing:2.588672pt;}
.ls73{letter-spacing:2.784000pt;}
.ls3d{letter-spacing:2.816000pt;}
.ls6f{letter-spacing:2.918400pt;}
.ls7d{letter-spacing:3.494400pt;}
.ls7e{letter-spacing:13.895680pt;}
.ls1e{letter-spacing:20.442880pt;}
.ls13{letter-spacing:20.629760pt;}
.ls21{letter-spacing:23.727360pt;}
.ls3b{letter-spacing:28.416000pt;}
.ls47{letter-spacing:37.764480pt;}
.ls29{letter-spacing:38.608640pt;}
.ls2a{letter-spacing:39.303040pt;}
.ls1f{letter-spacing:41.562880pt;}
.ls8f{letter-spacing:82.688000pt;}
.ls5b{letter-spacing:92.320000pt;}
.ls5e{letter-spacing:94.112000pt;}
.ls96{letter-spacing:99.200000pt;}
.ls69{letter-spacing:101.472000pt;}
.ls60{letter-spacing:104.320000pt;}
.ls1d{letter-spacing:106.592000pt;}
.ls50{letter-spacing:110.400000pt;}
.ls9d{letter-spacing:111.712000pt;}
.ls46{letter-spacing:115.200000pt;}
.ls92{letter-spacing:117.376000pt;}
.ls8e{letter-spacing:119.655040pt;}
.ls6d{letter-spacing:121.312000pt;}
.ls99{letter-spacing:122.080000pt;}
.ls9e{letter-spacing:122.592533pt;}
.lsac{letter-spacing:123.008000pt;}
.ls9c{letter-spacing:126.080000pt;}
.ls9a{letter-spacing:126.720000pt;}
.lsae{letter-spacing:128.608000pt;}
.ls45{letter-spacing:132.261120pt;}
.ls4e{letter-spacing:139.808000pt;}
.lsb7{letter-spacing:143.392000pt;}
.ls39{letter-spacing:147.200000pt;}
.ls9b{letter-spacing:148.480000pt;}
.ls36{letter-spacing:151.008000pt;}
.lsbc{letter-spacing:156.608000pt;}
.ls8b{letter-spacing:182.351360pt;}
.ls8c{letter-spacing:790.119680pt;}
.ws142{word-spacing:-89.621120pt;}
.ws145{word-spacing:-83.328000pt;}
.ws11c{word-spacing:-71.296000pt;}
.ws60{word-spacing:-71.168000pt;}
.ws10d{word-spacing:-70.912000pt;}
.ws8b{word-spacing:-63.924480pt;}
.ws79{word-spacing:-63.695360pt;}
.wscf{word-spacing:-63.466240pt;}
.ws136{word-spacing:-60.773120pt;}
.ws138{word-spacing:-60.672000pt;}
.ws14a{word-spacing:-57.600000pt;}
.ws14b{word-spacing:-56.928000pt;}
.ws147{word-spacing:-54.602240pt;}
.ws130{word-spacing:-53.376000pt;}
.ws131{word-spacing:-53.184000pt;}
.ws14d{word-spacing:-51.157120pt;}
.ws12e{word-spacing:-50.532480pt;}
.ws154{word-spacing:-50.351360pt;}
.ws12d{word-spacing:-50.170240pt;}
.ws89{word-spacing:-47.846400pt;}
.ws10f{word-spacing:-47.504640pt;}
.ws88{word-spacing:-47.333760pt;}
.ws86{word-spacing:-47.162880pt;}
.ws13e{word-spacing:-44.928000pt;}
.ws13d{word-spacing:-44.778240pt;}
.ws85{word-spacing:-43.568640pt;}
.ws61{word-spacing:-43.256320pt;}
.ws91{word-spacing:-41.753600pt;}
.ws55{word-spacing:-41.604480pt;}
.wsde{word-spacing:-41.455360pt;}
.wsae{word-spacing:-41.306240pt;}
.ws11{word-spacing:-39.782400pt;}
.ws12{word-spacing:-39.498240pt;}
.ws43{word-spacing:-39.356160pt;}
.ws54{word-spacing:-38.886400pt;}
.ws51{word-spacing:-38.608640pt;}
.ws53{word-spacing:-38.469760pt;}
.wsf6{word-spacing:-38.400000pt;}
.ws67{word-spacing:-38.330880pt;}
.ws68{word-spacing:-36.386560pt;}
.wsf9{word-spacing:-35.857920pt;}
.wsfd{word-spacing:-35.840000pt;}
.ws84{word-spacing:-35.712000pt;}
.ws78{word-spacing:-35.456000pt;}
.ws7d{word-spacing:-35.328000pt;}
.wsf8{word-spacing:-35.210240pt;}
.wsff{word-spacing:-34.944000pt;}
.ws152{word-spacing:-33.152000pt;}
.ws117{word-spacing:-32.793600pt;}
.ws116{word-spacing:-32.676480pt;}
.ws115{word-spacing:-32.325120pt;}
.ws70{word-spacing:-32.208000pt;}
.ws7e{word-spacing:-30.033280pt;}
.ws45{word-spacing:-29.926400pt;}
.ws44{word-spacing:-29.819520pt;}
.wsb0{word-spacing:-29.712640pt;}
.ws46{word-spacing:-29.605760pt;}
.wsb2{word-spacing:-29.498880pt;}
.ws102{word-spacing:-29.209600pt;}
.ws100{word-spacing:-28.688000pt;}
.ws158{word-spacing:-28.212480pt;}
.ws159{word-spacing:-28.111360pt;}
.ws15a{word-spacing:-28.010240pt;}
.ws13{word-spacing:-27.955200pt;}
.ws17{word-spacing:-27.755520pt;}
.wsf0{word-spacing:-26.976000pt;}
.wse2{word-spacing:-26.688000pt;}
.wsf1{word-spacing:-26.496000pt;}
.wse0{word-spacing:-26.400000pt;}
.wse3{word-spacing:-26.016000pt;}
.wse1{word-spacing:-24.576000pt;}
.ws135{word-spacing:-23.904000pt;}
.wsaf{word-spacing:-23.833600pt;}
.ws20{word-spacing:-23.663360pt;}
.ws1b{word-spacing:-23.493120pt;}
.ws25{word-spacing:-23.408000pt;}
.ws9b{word-spacing:-22.560000pt;}
.wsc0{word-spacing:-22.480000pt;}
.wsc8{word-spacing:-22.400000pt;}
.wsc4{word-spacing:-22.080000pt;}
.wsa4{word-spacing:-22.000000pt;}
.ws6a{word-spacing:-21.696000pt;}
.ws161{word-spacing:-21.116160pt;}
.wsa8{word-spacing:-20.960000pt;}
.ws162{word-spacing:-20.816640pt;}
.ws34{word-spacing:-20.811520pt;}
.wscd{word-spacing:-20.741760pt;}
.ws32{word-spacing:-20.629760pt;}
.wsc1{word-spacing:-20.517120pt;}
.ws31{word-spacing:-20.357120pt;}
.ws35{word-spacing:-20.266240pt;}
.ws33{word-spacing:-20.175360pt;}
.ws171{word-spacing:-20.142720pt;}
.ws163{word-spacing:-19.843200pt;}
.wsd8{word-spacing:-19.322240pt;}
.ws172{word-spacing:-19.244160pt;}
.wsd6{word-spacing:-18.981760pt;}
.ws0{word-spacing:-18.048000pt;}
.ws63{word-spacing:-17.792000pt;}
.ws62{word-spacing:-17.664000pt;}
.ws64{word-spacing:-17.408000pt;}
.ws7f{word-spacing:-17.279360pt;}
.ws164{word-spacing:-16.922880pt;}
.wsd0{word-spacing:-16.800000pt;}
.wsef{word-spacing:-14.778880pt;}
.wse9{word-spacing:-14.602240pt;}
.ws1{word-spacing:-14.554880pt;}
.wsea{word-spacing:-14.484480pt;}
.ws153{word-spacing:-10.240000pt;}
.ws95{word-spacing:-10.081280pt;}
.wscc{word-spacing:-8.960000pt;}
.wsa7{word-spacing:-6.560000pt;}
.ws110{word-spacing:-6.400000pt;}
.wsce{word-spacing:-5.990400pt;}
.ws16c{word-spacing:-5.765760pt;}
.ws169{word-spacing:-5.391360pt;}
.ws174{word-spacing:-5.091840pt;}
.ws16e{word-spacing:-4.717440pt;}
.ws173{word-spacing:-3.444480pt;}
.wsa6{word-spacing:-3.360000pt;}
.ws2b{word-spacing:-2.995200pt;}
.ws83{word-spacing:-2.956800pt;}
.ws4e{word-spacing:-2.885760pt;}
.wsbd{word-spacing:-2.880000pt;}
.ws47{word-spacing:-2.746816pt;}
.ws99{word-spacing:-2.720000pt;}
.ws52{word-spacing:-2.569280pt;}
.wsc5{word-spacing:-2.560000pt;}
.ws16a{word-spacing:-2.545920pt;}
.ws5c{word-spacing:-2.360960pt;}
.ws18{word-spacing:-2.296320pt;}
.ws3f{word-spacing:-2.272000pt;}
.ws15{word-spacing:-2.256384pt;}
.ws16f{word-spacing:-2.246400pt;}
.ws4f{word-spacing:-2.244480pt;}
.wsc2{word-spacing:-2.171520pt;}
.ws9d{word-spacing:-2.080000pt;}
.ws4{word-spacing:-2.048000pt;}
.wsd2{word-spacing:-2.000000pt;}
.wsca{word-spacing:-1.923840pt;}
.wsd1{word-spacing:-1.920000pt;}
.ws105{word-spacing:-1.877760pt;}
.ws98{word-spacing:-1.873920pt;}
.wsb7{word-spacing:-1.872640pt;}
.ws16b{word-spacing:-1.872000pt;}
.ws132{word-spacing:-1.832960pt;}
.wsc3{word-spacing:-1.760000pt;}
.ws2a{word-spacing:-1.697280pt;}
.ws109{word-spacing:-1.669120pt;}
.ws5d{word-spacing:-1.666560pt;}
.ws3b{word-spacing:-1.635840pt;}
.wsda{word-spacing:-1.617280pt;}
.ws4c{word-spacing:-1.603200pt;}
.wsa9{word-spacing:-1.600000pt;}
.ws38{word-spacing:-1.544960pt;}
.ws10e{word-spacing:-1.536000pt;}
.ws5b{word-spacing:-1.527680pt;}
.wsab{word-spacing:-1.520000pt;}
.ws11b{word-spacing:-1.497600pt;}
.ws9c{word-spacing:-1.440000pt;}
.ws8a{word-spacing:-1.435392pt;}
.ws6e{word-spacing:-1.408000pt;}
.ws72{word-spacing:-1.288320pt;}
.ws113{word-spacing:-1.282560pt;}
.wsa3{word-spacing:-1.280000pt;}
.ws165{word-spacing:-1.272960pt;}
.ws3a{word-spacing:-1.272320pt;}
.ws108{word-spacing:-1.251840pt;}
.ws76{word-spacing:-1.249280pt;}
.wsc7{word-spacing:-1.200000pt;}
.ws19{word-spacing:-1.198080pt;}
.ws7c{word-spacing:-1.145600pt;}
.ws36{word-spacing:-1.131520pt;}
.ws5a{word-spacing:-1.111040pt;}
.ws2f{word-spacing:-1.106560pt;}
.ws28{word-spacing:-1.098240pt;}
.ws14{word-spacing:-1.048320pt;}
.ws5{word-spacing:-1.024000pt;}
.ws40{word-spacing:-0.999680pt;}
.wse5{word-spacing:-0.973440pt;}
.ws59{word-spacing:-0.972160pt;}
.wsc{word-spacing:-0.961920pt;}
.ws168{word-spacing:-0.898560pt;}
.wsfe{word-spacing:-0.896000pt;}
.wsa2{word-spacing:-0.808000pt;}
.wsac{word-spacing:-0.800000pt;}
.ws8{word-spacing:-0.768000pt;}
.ws10{word-spacing:-0.745600pt;}
.ws15c{word-spacing:-0.707840pt;}
.ws75{word-spacing:-0.702720pt;}
.ws146{word-spacing:-0.694400pt;}
.wse6{word-spacing:-0.673920pt;}
.ws12c{word-spacing:-0.672000pt;}
.ws112{word-spacing:-0.641280pt;}
.ws9e{word-spacing:-0.640000pt;}
.ws10a{word-spacing:-0.625920pt;}
.ws119{word-spacing:-0.624640pt;}
.ws13f{word-spacing:-0.599040pt;}
.ws30{word-spacing:-0.595840pt;}
.wsfc{word-spacing:-0.529920pt;}
.wsb9{word-spacing:-0.524800pt;}
.wsb8{word-spacing:-0.512000pt;}
.ws9a{word-spacing:-0.480000pt;}
.ws97{word-spacing:-0.458240pt;}
.ws56{word-spacing:-0.426240pt;}
.ws57{word-spacing:-0.416640pt;}
.ws66{word-spacing:-0.384000pt;}
.ws42{word-spacing:-0.363520pt;}
.ws8d{word-spacing:-0.341760pt;}
.wsb6{word-spacing:-0.340480pt;}
.wsc9{word-spacing:-0.320640pt;}
.ws9f{word-spacing:-0.320000pt;}
.ws166{word-spacing:-0.299520pt;}
.ws94{word-spacing:-0.298240pt;}
.ws58{word-spacing:-0.277760pt;}
.ws7{word-spacing:-0.256000pt;}
.wsdb{word-spacing:-0.255360pt;}
.wsa5{word-spacing:-0.240000pt;}
.ws87{word-spacing:-0.239232pt;}
.wsed{word-spacing:-0.235520pt;}
.ws49{word-spacing:-0.235136pt;}
.ws7b{word-spacing:-0.229120pt;}
.ws167{word-spacing:-0.224640pt;}
.ws111{word-spacing:-0.213760pt;}
.ws104{word-spacing:-0.208640pt;}
.ws27{word-spacing:-0.199680pt;}
.ws126{word-spacing:-0.197120pt;}
.wseb{word-spacing:-0.192000pt;}
.ws3d{word-spacing:-0.181760pt;}
.ws12f{word-spacing:-0.181120pt;}
.ws96{word-spacing:-0.178944pt;}
.wse4{word-spacing:-0.170880pt;}
.wsa0{word-spacing:-0.160000pt;}
.ws65{word-spacing:-0.156160pt;}
.wse{word-spacing:-0.149120pt;}
.ws5e{word-spacing:-0.138880pt;}
.ws6f{word-spacing:-0.128000pt;}
.ws118{word-spacing:-0.117120pt;}
.ws4b{word-spacing:-0.106880pt;}
.ws106{word-spacing:-0.104320pt;}
.ws13c{word-spacing:-0.101120pt;}
.wse7{word-spacing:-0.096000pt;}
.wsdc{word-spacing:-0.085120pt;}
.wsec{word-spacing:-0.058880pt;}
.wsb{word-spacing:0.000000pt;}
.ws4d{word-spacing:0.074880pt;}
.ws37{word-spacing:0.090880pt;}
.ws137{word-spacing:0.101120pt;}
.ws114{word-spacing:0.106880pt;}
.wsfb{word-spacing:0.117760pt;}
.ws150{word-spacing:0.124800pt;}
.ws80{word-spacing:0.128000pt;}
.ws5f{word-spacing:0.138880pt;}
.ws26{word-spacing:0.142080pt;}
.ws140{word-spacing:0.149760pt;}
.wsa1{word-spacing:0.160000pt;}
.ws2d{word-spacing:0.170240pt;}
.ws8c{word-spacing:0.170880pt;}
.wsf2{word-spacing:0.176640pt;}
.ws41{word-spacing:0.181760pt;}
.ws3{word-spacing:0.192000pt;}
.ws121{word-spacing:0.193856pt;}
.ws148{word-spacing:0.197120pt;}
.ws29{word-spacing:0.199680pt;}
.ws107{word-spacing:0.208640pt;}
.ws4a{word-spacing:0.213760pt;}
.ws8e{word-spacing:0.229120pt;}
.wsd9{word-spacing:0.255360pt;}
.ws82{word-spacing:0.256000pt;}
.ws39{word-spacing:0.272640pt;}
.wsdf{word-spacing:0.288000pt;}
.wsf3{word-spacing:0.294400pt;}
.ws2{word-spacing:0.298240pt;}
.ws16d{word-spacing:0.299520pt;}
.wsbc{word-spacing:0.320000pt;}
.ws127{word-spacing:0.362240pt;}
.ws77{word-spacing:0.384000pt;}
.ws123{word-spacing:0.394240pt;}
.ws15b{word-spacing:0.404480pt;}
.wsee{word-spacing:0.412160pt;}
.ws92{word-spacing:0.417536pt;}
.wsd{word-spacing:0.447360pt;}
.ws6c{word-spacing:0.480000pt;}
.ws13b{word-spacing:0.505600pt;}
.ws6{word-spacing:0.512000pt;}
.ws3c{word-spacing:0.545280pt;}
.ws11d{word-spacing:0.576000pt;}
.ws71{word-spacing:0.585600pt;}
.ws143{word-spacing:0.596480pt;}
.ws15e{word-spacing:0.606720pt;}
.ws11a{word-spacing:0.639360pt;}
.wsfa{word-spacing:0.640000pt;}
.ws151{word-spacing:0.672000pt;}
.ws2c{word-spacing:0.680960pt;}
.ws141{word-spacing:0.687360pt;}
.ws155{word-spacing:0.724480pt;}
.ws93{word-spacing:0.745600pt;}
.ws144{word-spacing:0.768000pt;}
.ws149{word-spacing:0.788480pt;}
.ws11f{word-spacing:0.833280pt;}
.wsf{word-spacing:0.894720pt;}
.wsdd{word-spacing:0.896000pt;}
.ws14c{word-spacing:0.936320pt;}
.ws90{word-spacing:1.014016pt;}
.ws7a{word-spacing:1.024000pt;}
.ws129{word-spacing:1.086720pt;}
.wsd7{word-spacing:1.098048pt;}
.ws16{word-spacing:1.128192pt;}
.ws6b{word-spacing:1.152000pt;}
.ws122{word-spacing:1.182720pt;}
.wsf4{word-spacing:1.192960pt;}
.ws15d{word-spacing:1.213440pt;}
.ws2e{word-spacing:1.276800pt;}
.wsbf{word-spacing:1.280000pt;}
.ws74{word-spacing:1.288320pt;}
.ws3e{word-spacing:1.363200pt;}
.ws8f{word-spacing:1.374720pt;}
.ws14f{word-spacing:1.440000pt;}
.ws128{word-spacing:1.630080pt;}
.ws157{word-spacing:1.640320pt;}
.ws81{word-spacing:1.664000pt;}
.wsb4{word-spacing:1.710912pt;}
.ws125{word-spacing:1.774080pt;}
.ws10c{word-spacing:1.792000pt;}
.ws1c{word-spacing:1.838592pt;}
.wsa{word-spacing:1.859200pt;}
.ws73{word-spacing:1.873920pt;}
.ws15f{word-spacing:1.921280pt;}
.ws14e{word-spacing:2.042880pt;}
.wsc6{word-spacing:2.080000pt;}
.wsb1{word-spacing:2.085440pt;}
.wsb3{word-spacing:2.102464pt;}
.wsd3{word-spacing:2.289728pt;}
.ws10b{word-spacing:2.304000pt;}
.ws12a{word-spacing:2.354560pt;}
.ws124{word-spacing:2.365440pt;}
.wsd5{word-spacing:2.374848pt;}
.ws11e{word-spacing:2.385920pt;}
.ws133{word-spacing:2.400000pt;}
.ws160{word-spacing:2.528000pt;}
.wsf5{word-spacing:2.535040pt;}
.wsb5{word-spacing:2.843008pt;}
.ws134{word-spacing:3.072000pt;}
.ws9{word-spacing:4.408960pt;}
.ws170{word-spacing:5.765760pt;}
.ws120{word-spacing:7.499520pt;}
.wsd4{word-spacing:7.762944pt;}
.ws48{word-spacing:7.866880pt;}
.ws6d{word-spacing:9.472000pt;}
.ws156{word-spacing:19.456000pt;}
.ws50{word-spacing:61.052160pt;}
.ws139{word-spacing:62.269696pt;}
.ws24{word-spacing:89.580288pt;}
.wsba{word-spacing:110.924800pt;}
.ws1f{word-spacing:114.333184pt;}
.wsbb{word-spacing:140.905600pt;}
.ws103{word-spacing:150.815424pt;}
.ws101{word-spacing:334.449920pt;}
.ws21{word-spacing:336.751744pt;}
.ws1d{word-spacing:346.310720pt;}
.ws1a{word-spacing:414.815296pt;}
.ws22{word-spacing:421.003520pt;}
.ws23{word-spacing:429.728320pt;}
.ws13a{word-spacing:485.274880pt;}
.ws1e{word-spacing:564.277504pt;}
.ws12b{word-spacing:756.118933pt;}
.wse8{word-spacing:969.371200pt;}
.wscb{word-spacing:977.892267pt;}
.wsf7{word-spacing:1434.880000pt;}
.ws69{word-spacing:1574.424000pt;}
.wsad{word-spacing:1945.894272pt;}
.wsbe{word-spacing:2359.651733pt;}
.wsaa{word-spacing:4423.012267pt;}
._f{margin-left:-1790.808000pt;}
._2f{margin-left:-29.056000pt;}
._1e{margin-left:-23.680000pt;}
._26{margin-left:-21.263872pt;}
._12{margin-left:-19.456000pt;}
._10{margin-left:-18.112256pt;}
._15{margin-left:-17.163712pt;}
._d{margin-left:-13.824000pt;}
._23{margin-left:-12.934400pt;}
._17{margin-left:-11.955072pt;}
._6{margin-left:-10.386048pt;}
._13{margin-left:-9.393920pt;}
._b{margin-left:-8.381568pt;}
._31{margin-left:-7.424000pt;}
._9{margin-left:-6.317312pt;}
._e{margin-left:-5.376000pt;}
._4{margin-left:-4.288000pt;}
._1d{margin-left:-3.228928pt;}
._5{margin-left:-2.094848pt;}
._0{margin-left:-1.088000pt;}
._1{width:0.896000pt;}
._2{width:1.907008pt;}
._3{width:3.325312pt;}
._1c{width:4.913152pt;}
._11{width:6.469120pt;}
._16{width:8.396928pt;}
._19{width:10.218752pt;}
._36{width:11.207168pt;}
._38{width:15.814720pt;}
._1a{width:19.903936pt;}
._1b{width:20.974848pt;}
._a{width:22.331904pt;}
._8{width:24.061440pt;}
._7{width:24.956416pt;}
._37{width:29.324800pt;}
._c{width:36.722688pt;}
._25{width:38.923968pt;}
._14{width:40.560640pt;}
._32{width:42.049536pt;}
._24{width:43.123968pt;}
._35{width:45.922560pt;}
._34{width:49.088640pt;}
._33{width:52.935040pt;}
._30{width:56.285696pt;}
._18{width:72.448000pt;}
._22{width:136.644480pt;}
._20{width:246.802560pt;}
._2b{width:432.007808pt;}
._2c{width:439.799040pt;}
._2e{width:457.841280pt;}
._1f{width:602.290560pt;}
._2d{width:715.477760pt;}
._21{width:793.833472pt;}
._27{width:875.701333pt;}
._28{width:895.074667pt;}
._2a{width:1098.656000pt;}
._29{width:3764.525867pt;}
.fs13{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs14{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:74.880000pt;}
.fs12{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.fs9{font-size:90.880000pt;}
.fsd{font-size:96.000000pt;}
.fs7{font-size:99.840000pt;}
.fs1c{font-size:101.120000pt;}
.fs15{font-size:104.320000pt;}
.fs3{font-size:106.880000pt;}
.fs16{font-size:112.000000pt;}
.fse{font-size:117.120000pt;}
.fsf{font-size:128.000000pt;}
.fsb{font-size:138.880000pt;}
.fs8{font-size:141.440000pt;}
.fs6{font-size:142.080000pt;}
.fs4{font-size:149.120000pt;}
.fsc{font-size:156.160000pt;}
.fs11{font-size:170.880000pt;}
.fs1b{font-size:181.120000pt;}
.fs19{font-size:192.000000pt;}
.fs1a{font-size:197.120000pt;}
.fs18{font-size:213.120000pt;}
.fs10{font-size:229.120000pt;}
.fs2{font-size:256.000000pt;}
.fs17{font-size:288.000000pt;}
.y0{bottom:0.000000pt;}
.y206{bottom:8.841600pt;}
.y1d7{bottom:9.432667pt;}
.y26b{bottom:10.614933pt;}
.y1de{bottom:10.877067pt;}
.y14{bottom:16.406533pt;}
.ye8{bottom:16.408507pt;}
.y262{bottom:17.206400pt;}
.y34{bottom:21.477387pt;}
.y107{bottom:21.641867pt;}
.yff{bottom:21.809200pt;}
.y6e{bottom:23.282933pt;}
.y129{bottom:27.041600pt;}
.y133{bottom:30.004800pt;}
.yf0{bottom:32.205200pt;}
.yd7{bottom:33.485200pt;}
.y145{bottom:39.994800pt;}
.y6d{bottom:42.482933pt;}
.y72{bottom:43.006533pt;}
.yd9{bottom:43.568133pt;}
.y106{bottom:45.641867pt;}
.yfe{bottom:45.809200pt;}
.y117{bottom:47.007600pt;}
.y33{bottom:47.077227pt;}
.yfa{bottom:49.609200pt;}
.y13c{bottom:49.823733pt;}
.y176{bottom:50.069467pt;}
.y119{bottom:50.084827pt;}
.y23f{bottom:53.870267pt;}
.y139{bottom:56.769067pt;}
.yd6{bottom:57.485200pt;}
.y132{bottom:58.804800pt;}
.y19c{bottom:60.026267pt;}
.yd8{bottom:67.568133pt;}
.y175{bottom:67.674587pt;}
.y144{bottom:68.794800pt;}
.y105{bottom:69.641867pt;}
.yfd{bottom:69.809200pt;}
.y32{bottom:72.677067pt;}
.yf9{bottom:73.609200pt;}
.y19e{bottom:73.808933pt;}
.y118{bottom:75.684667pt;}
.y147{bottom:77.150080pt;}
.y1e8{bottom:81.698960pt;}
.y59{bottom:82.125013pt;}
.y23e{bottom:82.670267pt;}
.y66{bottom:83.105173pt;}
.ya2{bottom:83.565680pt;}
.y18f{bottom:84.821467pt;}
.y138{bottom:85.569067pt;}
.y10e{bottom:88.681733pt;}
.y104{bottom:93.641867pt;}
.yfc{bottom:93.809200pt;}
.y146{bottom:94.755200pt;}
.y225{bottom:98.162000pt;}
.y31{bottom:98.276907pt;}
.y13{bottom:98.677893pt;}
.y2c7{bottom:99.139493pt;}
.y2b5{bottom:100.076240pt;}
.y220{bottom:100.995333pt;}
.y7c{bottom:101.247600pt;}
.y174{bottom:102.870107pt;}
.y91{bottom:106.439067pt;}
.y15f{bottom:106.613467pt;}
.yb0{bottom:109.355600pt;}
.y296{bottom:109.693360pt;}
.y1fd{bottom:110.309467pt;}
.y58{bottom:110.929173pt;}
.y141{bottom:111.125600pt;}
.y23d{bottom:111.470267pt;}
.ya1{bottom:111.733040pt;}
.y2dc{bottom:112.503867pt;}
.y1fa{bottom:113.809467pt;}
.y1ae{bottom:114.159333pt;}
.y8e{bottom:115.470267pt;}
.y131{bottom:116.404800pt;}
.y1d3{bottom:117.120000pt;}
.y19b{bottom:117.626267pt;}
.yfb{bottom:117.809200pt;}
.y7f{bottom:118.520000pt;}
.y7b{bottom:120.447600pt;}
.y65{bottom:120.533333pt;}
.y93{bottom:123.142667pt;}
.y18e{bottom:123.221600pt;}
.y1e7{bottom:123.293520pt;}
.y30{bottom:123.876747pt;}
.y92{bottom:123.994933pt;}
.y287{bottom:124.395600pt;}
.y122{bottom:124.525067pt;}
.y2c6{bottom:124.898213pt;}
.y90{bottom:125.639067pt;}
.y15e{bottom:125.813467pt;}
.y224{bottom:126.962000pt;}
.y1ce{bottom:127.487253pt;}
.y21f{bottom:129.795333pt;}
.y19d{bottom:131.408933pt;}
.y8d{bottom:134.670267pt;}
.yb9{bottom:136.555600pt;}
.y198{bottom:136.622000pt;}
.y261{bottom:136.686800pt;}
.y173{bottom:138.065627pt;}
.y2db{bottom:138.262587pt;}
.yd4{bottom:138.562267pt;}
.y1c3{bottom:138.879413pt;}
.y7a{bottom:139.647600pt;}
.y57{bottom:139.733333pt;}
.ya0{bottom:139.900400pt;}
.y140{bottom:139.925600pt;}
.y23c{bottom:140.270267pt;}
.y27c{bottom:141.357520pt;}
.y226{bottom:141.728667pt;}
.y137{bottom:143.169067pt;}
.y205{bottom:143.287920pt;}
.y12{bottom:143.488453pt;}
.y2a4{bottom:143.723920pt;}
.ycd{bottom:143.755600pt;}
.y26a{bottom:144.075600pt;}
.y1b6{bottom:144.399333pt;}
.y275{bottom:144.565040pt;}
.y8f{bottom:144.839067pt;}
.y15d{bottom:145.013467pt;}
.y130{bottom:145.204800pt;}
.yc6{bottom:146.300720pt;}
.y24a{bottom:146.475600pt;}
.yb1{bottom:147.755600pt;}
.y2f{bottom:149.476587pt;}
.y2c5{bottom:150.656933pt;}
.y1ef{bottom:152.555600pt;}
.y2a0{bottom:152.771280pt;}
.y295{bottom:153.207440pt;}
.y2b4{bottom:154.795600pt;}
.y1be{bottom:154.879413pt;}
.ye7{bottom:155.005147pt;}
.y172{bottom:155.670747pt;}
.y223{bottom:155.762000pt;}
.y194{bottom:157.896000pt;}
.y21e{bottom:158.595333pt;}
.y255{bottom:159.424400pt;}
.y18d{bottom:161.621600pt;}
.y1c8{bottom:161.856107pt;}
.y121{bottom:162.925067pt;}
.y260{bottom:163.568720pt;}
.y2da{bottom:164.021307pt;}
.y1f7{bottom:164.721520pt;}
.y103{bottom:164.775067pt;}
.ya3{bottom:164.924480pt;}
.y64{bottom:165.985173pt;}
.ye2{bottom:166.334533pt;}
.y20d{bottom:166.820560pt;}
.y23{bottom:169.949013pt;}
.y14e{bottom:170.649520pt;}
.y136{bottom:171.969067pt;}
.y1e6{bottom:173.220880pt;}
.y171{bottom:173.275867pt;}
.y56{bottom:173.796693pt;}
.y12f{bottom:174.004800pt;}
.y28a{bottom:174.372160pt;}
.y1cd{bottom:174.374293pt;}
.y9f{bottom:175.085680pt;}
.y19a{bottom:175.226267pt;}
.y1ad{bottom:175.919333pt;}
.y2c4{bottom:176.415653pt;}
.y239{bottom:179.302267pt;}
.y249{bottom:179.595600pt;}
.y10d{bottom:180.313867pt;}
.ye6{bottom:180.604987pt;}
.y15c{bottom:183.413467pt;}
.yd3{bottom:183.991573pt;}
.y222{bottom:184.562000pt;}
.y1c2{bottom:186.868533pt;}
.y1b5{bottom:186.959333pt;}
.y21d{bottom:187.395333pt;}
.y11{bottom:188.299013pt;}
.y2a3{bottom:188.534480pt;}
.y29f{bottom:188.597360pt;}
.y27b{bottom:188.715600pt;}
.y2e{bottom:188.716907pt;}
.y2d9{bottom:189.780027pt;}
.y254{bottom:189.836240pt;}
.y170{bottom:190.880987pt;}
.y204{bottom:192.235600pt;}
.yc5{bottom:192.395600pt;}
.y286{bottom:193.515600pt;}
.y197{bottom:194.222000pt;}
.y102{bottom:196.144347pt;}
.y294{bottom:196.721520pt;}
.y1c7{bottom:197.050667pt;}
.ycc{bottom:197.515600pt;}
.y13f{bottom:197.525600pt;}
.y1a1{bottom:198.872933pt;}
.y22{bottom:199.701333pt;}
.y135{bottom:200.769067pt;}
.y120{bottom:201.325067pt;}
.y2c3{bottom:202.174373pt;}
.y55{bottom:202.600853pt;}
.y15b{bottom:202.613467pt;}
.y1bd{bottom:202.868533pt;}
.y10c{bottom:203.193867pt;}
.y9e{bottom:203.253040pt;}
.y63{bottom:203.413333pt;}
.y1d2{bottom:203.520000pt;}
.ye5{bottom:206.204827pt;}
.y274{bottom:206.331920pt;}
.y14d{bottom:206.489520pt;}
.y269{bottom:207.772880pt;}
.y238{bottom:208.102267pt;}
.y1f6{bottom:208.235600pt;}
.ydc{bottom:212.888000pt;}
.y1e5{bottom:214.815440pt;}
.y193{bottom:215.496000pt;}
.y2d8{bottom:215.538747pt;}
.y2b3{bottom:215.596240pt;}
.yd2{bottom:216.002133pt;}
.y25f{bottom:217.332560pt;}
.y128{bottom:219.275600pt;}
.y20c{bottom:220.092240pt;}
.y253{bottom:220.248080pt;}
.y6c{bottom:221.259200pt;}
.ybe{bottom:221.261333pt;}
.y15a{bottom:221.813467pt;}
.y219{bottom:221.973333pt;}
.y2d{bottom:223.914027pt;}
.y29e{bottom:224.423440pt;}
.y7{bottom:224.678933pt;}
.y10b{bottom:225.593733pt;}
.y6a{bottom:225.763307pt;}
.y16f{bottom:226.076507pt;}
.y13e{bottom:226.325600pt;}
.y229{bottom:226.424667pt;}
.y1ee{bottom:227.757520pt;}
.y2c2{bottom:227.933093pt;}
.y285{bottom:228.075600pt;}
.y101{bottom:228.154907pt;}
.y232{bottom:229.370267pt;}
.y1b4{bottom:229.519333pt;}
.y134{bottom:229.569067pt;}
.y18b{bottom:229.580187pt;}
.y1ac{bottom:229.679333pt;}
.y3d{bottom:230.418507pt;}
.y46{bottom:230.437760pt;}
.y54{bottom:231.405013pt;}
.y9d{bottom:231.420400pt;}
.ye4{bottom:231.804667pt;}
.y199{bottom:232.826267pt;}
.y10{bottom:233.109573pt;}
.y28d{bottom:233.334480pt;}
.y2a2{bottom:233.345040pt;}
.y21{bottom:235.543893pt;}
.ybc{bottom:239.115600pt;}
.y79{bottom:239.530267pt;}
.y2b2{bottom:239.915600pt;}
.y293{bottom:240.235600pt;}
.y22a{bottom:240.728667pt;}
.y159{bottom:241.013467pt;}
.yaf{bottom:241.035600pt;}
.y2d7{bottom:241.297467pt;}
.y88{bottom:241.852933pt;}
.y14c{bottom:242.315600pt;}
.y8b{bottom:242.454133pt;}
.y1c1{bottom:242.890293pt;}
.y16e{bottom:243.681627pt;}
.y6{bottom:243.878933pt;}
.yc4{bottom:246.155600pt;}
.y1d6{bottom:247.360000pt;}
.y27a{bottom:247.917520pt;}
.y10a{bottom:247.993867pt;}
.y1f8{bottom:248.726133pt;}
.y62{bottom:248.865173pt;}
.y2c{bottom:249.513867pt;}
.y268{bottom:249.675600pt;}
.y218{bottom:250.773333pt;}
.y1bc{bottom:250.890293pt;}
.y210{bottom:250.906667pt;}
.ycb{bottom:251.275600pt;}
.y196{bottom:251.822000pt;}
.y252{bottom:252.075600pt;}
.y2c1{bottom:253.691813pt;}
.y13d{bottom:255.125600pt;}
.y228{bottom:255.224667pt;}
.y7e{bottom:256.075067pt;}
.y1e4{bottom:256.410000pt;}
.y1a0{bottom:256.472933pt;}
.y1a6{bottom:256.879333pt;}
.y3c{bottom:257.614347pt;}
.y45{bottom:257.633600pt;}
.y231{bottom:258.170267pt;}
.ye3{bottom:258.684667pt;}
.y78{bottom:258.730267pt;}
.y8c{bottom:259.726533pt;}
.y100{bottom:260.165467pt;}
.y53{bottom:260.209173pt;}
.y29d{bottom:260.249520pt;}
.y18c{bottom:260.771867pt;}
.y87{bottom:261.052933pt;}
.y16d{bottom:261.286747pt;}
.y8a{bottom:261.654133pt;}
.y284{bottom:262.635600pt;}
.y5{bottom:263.078933pt;}
.y18a{bottom:263.171227pt;}
.y127{bottom:264.075600pt;}
.y20{bottom:265.470933pt;}
.y248{bottom:266.155600pt;}
.y9c{bottom:266.605680pt;}
.y2d6{bottom:267.056187pt;}
.y203{bottom:268.087920pt;}
.y2b1{bottom:270.315600pt;}
.y109{bottom:270.393733pt;}
.y25e{bottom:271.096400pt;}
.y1b3{bottom:272.079200pt;}
.y181{bottom:272.200000pt;}
.y20b{bottom:273.363920pt;}
.ybb{bottom:273.675600pt;}
.y17c{bottom:274.981067pt;}
.y1ed{bottom:275.115600pt;}
.yf{bottom:277.920133pt;}
.y77{bottom:277.930267pt;}
.y28c{bottom:278.145040pt;}
.y2a1{bottom:278.155600pt;}
.y1f5{bottom:278.647440pt;}
.yec{bottom:278.795600pt;}
.y158{bottom:279.413467pt;}
.yae{bottom:279.435600pt;}
.y2c0{bottom:279.450533pt;}
.y69{bottom:279.521067pt;}
.y217{bottom:279.573333pt;}
.y20f{bottom:279.706667pt;}
.y86{bottom:280.252933pt;}
.y89{bottom:280.854133pt;}
.y8{bottom:282.278933pt;}
.yd1{bottom:283.106587pt;}
.y1cc{bottom:283.120187pt;}
.y111{bottom:283.126773pt;}
.ybd{bottom:284.539867pt;}
.y6b{bottom:284.542000pt;}
.y61{bottom:286.293333pt;}
.y230{bottom:286.970267pt;}
.yc3{bottom:288.395600pt;}
.y3b{bottom:288.649867pt;}
.y44{bottom:288.669120pt;}
.y2b{bottom:288.754187pt;}
.y52{bottom:289.013333pt;}
.y1c0{bottom:290.879413pt;}
.y1ab{bottom:291.439200pt;}
.y251{bottom:292.388240pt;}
.y108{bottom:292.793733pt;}
.y2d5{bottom:292.814907pt;}
.y2b0{bottom:294.635600pt;}
.y292{bottom:294.659280pt;}
.y9b{bottom:294.773040pt;}
.y279{bottom:295.275600pt;}
.y1f{bottom:295.397973pt;}
.y116{bottom:296.067173pt;}
.y29c{bottom:296.075600pt;}
.y16c{bottom:296.482267pt;}
.y283{bottom:297.195600pt;}
.yb8{bottom:297.675600pt;}
.y1e3{bottom:298.004560pt;}
.y12d{bottom:298.566267pt;}
.y157{bottom:298.613467pt;}
.y247{bottom:298.635600pt;}
.y1bb{bottom:298.879413pt;}
.yca{bottom:305.035600pt;}
.y2bf{bottom:305.209253pt;}
.y1ca{bottom:307.282373pt;}
.y216{bottom:308.373333pt;}
.y20e{bottom:308.506667pt;}
.y195{bottom:309.422000pt;}
.y180{bottom:310.600000pt;}
.y26e{bottom:310.795600pt;}
.y267{bottom:313.372880pt;}
.y17b{bottom:313.381067pt;}
.y1d9{bottom:313.985040pt;}
.y14b{bottom:314.009520pt;}
.y19f{bottom:314.072933pt;}
.y16b{bottom:314.087387pt;}
.y22f{bottom:315.770267pt;}
.y11f{bottom:316.525067pt;}
.y126{bottom:316.861360pt;}
.y202{bottom:317.035600pt;}
.yeb{bottom:317.195600pt;}
.y156{bottom:317.813467pt;}
.yad{bottom:317.835600pt;}
.y189{bottom:317.965307pt;}
.y2d4{bottom:318.573627pt;}
.y1a5{bottom:319.599333pt;}
.y3a{bottom:320.003467pt;}
.y43{bottom:320.022720pt;}
.y187{bottom:320.364667pt;}
.y250{bottom:320.555600pt;}
.y1f4{bottom:322.161520pt;}
.y9a{bottom:322.940400pt;}
.y28b{bottom:322.955600pt;}
.y51{bottom:323.085013pt;}
.y25d{bottom:324.860240pt;}
.y2af{bottom:325.036240pt;}
.y1e{bottom:325.150293pt;}
.y20a{bottom:326.635600pt;}
.y2a{bottom:327.994507pt;}
.y1d5{bottom:328.320000pt;}
.y273{bottom:328.407440pt;}
.ye{bottom:329.280133pt;}
.yc2{bottom:330.635600pt;}
.y192{bottom:330.696000pt;}
.y2be{bottom:330.967973pt;}
.y16a{bottom:331.692507pt;}
.y60{bottom:331.757013pt;}
.y1dd{bottom:331.883920pt;}
.yb7{bottom:332.235600pt;}
.y1db{bottom:333.120000pt;}
.y68{bottom:333.129707pt;}
.yf7{bottom:335.648667pt;}
.y26f{bottom:335.745040pt;}
.y155{bottom:337.013467pt;}
.y215{bottom:337.173333pt;}
.y291{bottom:338.173360pt;}
.y1bf{bottom:338.868533pt;}
.y115{bottom:340.877733pt;}
.y29b{bottom:340.931280pt;}
.y1c9{bottom:342.476933pt;}
.y246{bottom:342.955600pt;}
.yb{bottom:344.179600pt;}
.y2d3{bottom:344.332347pt;}
.ydd{bottom:344.474667pt;}
.ye1{bottom:346.425253pt;}
.y1ba{bottom:346.868533pt;}
.y1e2{bottom:347.931920pt;}
.y17f{bottom:349.000000pt;}
.y188{bottom:349.156987pt;}
.y169{bottom:349.297627pt;}
.y2ae{bottom:349.355600pt;}
.y12c{bottom:349.766267pt;}
.y14a{bottom:349.835600pt;}
.y1ec{bottom:350.315600pt;}
.y186{bottom:351.556347pt;}
.y25c{bottom:351.742160pt;}
.y17a{bottom:351.781067pt;}
.y50{bottom:351.889173pt;}
.yd0{bottom:351.899867pt;}
.y1cb{bottom:351.913467pt;}
.y110{bottom:351.920053pt;}
.y1aa{bottom:353.199200pt;}
.y278{bottom:354.475600pt;}
.y11e{bottom:354.925067pt;}
.y266{bottom:355.275600pt;}
.y154{bottom:356.213467pt;}
.y21c{bottom:356.295333pt;}
.y2bd{bottom:356.726693pt;}
.y1b2{bottom:357.199200pt;}
.y99{bottom:358.125680pt;}
.y237{bottom:358.270267pt;}
.yc9{bottom:358.795600pt;}
.ya{bottom:360.182000pt;}
.y1d{bottom:360.992853pt;}
.y241{bottom:363.470267pt;}
.yac{bottom:363.915600pt;}
.y1f3{bottom:365.675600pt;}
.y272{bottom:365.835600pt;}
.y282{bottom:366.315600pt;}
.yb6{bottom:366.795600pt;}
.y168{bottom:366.902747pt;}
.y29{bottom:367.234827pt;}
.ycf{bottom:367.755600pt;}
.y236{bottom:368.703467pt;}
.y5f{bottom:369.185173pt;}
.y2d2{bottom:370.091067pt;}
.yea{bottom:371.595600pt;}
.ye0{bottom:372.025093pt;}
.yc1{bottom:372.875600pt;}
.y67{bottom:373.466667pt;}
.y153{bottom:375.413467pt;}
.y245{bottom:375.435600pt;}
.y9{bottom:376.184400pt;}
.y1d1{bottom:376.320000pt;}
.y1dc{bottom:376.694480pt;}
.y29a{bottom:376.757360pt;}
.y76{bottom:377.187200pt;}
.y82{bottom:378.775600pt;}
.yd{bottom:379.360133pt;}
.y2ad{bottom:379.756880pt;}
.y26d{bottom:380.555600pt;}
.y4f{bottom:380.693333pt;}
.y290{bottom:381.687440pt;}
.yf6{bottom:381.888533pt;}
.y1a4{bottom:382.319200pt;}
.y1fc{bottom:382.476133pt;}
.y2bc{bottom:382.485413pt;}
.y167{bottom:384.507867pt;}
.y221{bottom:384.728667pt;}
.y21b{bottom:385.095333pt;}
.y1f9{bottom:385.892800pt;}
.y98{bottom:386.293040pt;}
.y17e{bottom:387.400000pt;}
.y191{bottom:388.296000pt;}
.y84{bottom:389.067067pt;}
.y1e1{bottom:389.526480pt;}
.y179{bottom:390.181067pt;}
.y1c{bottom:390.919893pt;}
.y240{bottom:392.270267pt;}
.y201{bottom:392.875600pt;}
.y11d{bottom:393.325067pt;}
.y7d{bottom:394.126667pt;}
.y160{bottom:394.613467pt;}
.y1b9{bottom:394.879413pt;}
.y2d1{bottom:395.849787pt;}
.y85{bottom:395.895733pt;}
.y42{bottom:395.998400pt;}
.y75{bottom:396.387200pt;}
.y24f{bottom:397.160080pt;}
.y235{bottom:397.503467pt;}
.ydf{bottom:397.624933pt;}
.y81{bottom:397.975600pt;}
.y212{bottom:398.549333pt;}
.y214{bottom:399.053333pt;}
.y1b1{bottom:399.759333pt;}
.y281{bottom:400.875600pt;}
.y12b{bottom:400.966267pt;}
.yba{bottom:401.355600pt;}
.y166{bottom:402.112987pt;}
.ya6{bottom:402.315600pt;}
.y2ac{bottom:404.076240pt;}
.y25b{bottom:405.506000pt;}
.yf5{bottom:406.048667pt;}
.y185{bottom:406.350427pt;}
.y28{bottom:406.475147pt;}
.y5e{bottom:406.613333pt;}
.y1a9{bottom:406.959333pt;}
.y209{bottom:407.772240pt;}
.y2bb{bottom:408.244133pt;}
.y83{bottom:408.267067pt;}
.ye9{bottom:409.995600pt;}
.yc8{bottom:412.555600pt;}
.y299{bottom:412.583440pt;}
.y277{bottom:413.677520pt;}
.y152{bottom:413.813467pt;}
.y21a{bottom:413.895333pt;}
.y97{bottom:414.460400pt;}
.y1d4{bottom:414.720000pt;}
.y4e{bottom:414.929173pt;}
.y74{bottom:415.587200pt;}
.y211{bottom:417.173333pt;}
.y80{bottom:417.175600pt;}
.yc0{bottom:417.660720pt;}
.y265{bottom:418.955600pt;}
.y165{bottom:419.718107pt;}
.y244{bottom:419.755600pt;}
.y10f{bottom:420.713333pt;}
.y1b{bottom:420.846933pt;}
.yce{bottom:421.505040pt;}
.y149{bottom:421.515600pt;}
.y2d0{bottom:421.608507pt;}
.y125{bottom:422.475600pt;}
.y41{bottom:423.194240pt;}
.y4a{bottom:423.309307pt;}
.y39{bottom:423.311307pt;}
.yde{bottom:424.504933pt;}
.y28f{bottom:425.201520pt;}
.yb5{bottom:425.355600pt;}
.y1eb{bottom:425.519440pt;}
.y17d{bottom:425.800000pt;}
.y4{bottom:425.881067pt;}
.y234{bottom:426.303467pt;}
.y24e{bottom:427.571920pt;}
.y271{bottom:427.607440pt;}
.y213{bottom:427.853333pt;}
.y2ab{bottom:428.395600pt;}
.y178{bottom:428.581067pt;}
.y13b{bottom:429.550400pt;}
.y114{bottom:430.456613pt;}
.y1e0{bottom:431.121040pt;}
.y142{bottom:431.427867pt;}
.y11c{bottom:431.725067pt;}
.y25a{bottom:432.387920pt;}
.y151{bottom:433.013467pt;}
.y2ba{bottom:434.002853pt;}
.y280{bottom:435.435600pt;}
.y1f2{bottom:436.087440pt;}
.y164{bottom:437.323227pt;}
.y184{bottom:439.941467pt;}
.ya5{bottom:440.715600pt;}
.y1b0{bottom:442.319333pt;}
.y1b8{bottom:442.868533pt;}
.y4d{bottom:443.733333pt;}
.y1a3{bottom:445.054373pt;}
.y3{bottom:445.081067pt;}
.y27{bottom:445.715467pt;}
.y2cf{bottom:447.367227pt;}
.yab{bottom:448.395600pt;}
.y298{bottom:448.409520pt;}
.y1c6{bottom:448.641547pt;}
.y26c{bottom:450.315600pt;}
.y49{bottom:450.505147pt;}
.y38{bottom:450.507147pt;}
.y1a{bottom:450.773973pt;}
.yf4{bottom:451.648667pt;}
.y5d{bottom:452.065173pt;}
.y12a{bottom:452.166400pt;}
.y150{bottom:452.213467pt;}
.y243{bottom:452.235600pt;}
.y40{bottom:454.229760pt;}
.y163{bottom:454.928347pt;}
.y233{bottom:455.103467pt;}
.yc{bottom:456.160133pt;}
.y24d{bottom:457.983760pt;}
.y2aa{bottom:458.796880pt;}
.y259{bottom:459.269840pt;}
.y22c{bottom:459.428667pt;}
.y2b9{bottom:459.761573pt;}
.yb4{bottom:459.915600pt;}
.y1a8{bottom:460.719200pt;}
.y276{bottom:461.035600pt;}
.y208{bottom:461.043920pt;}
.y1d0{bottom:462.720000pt;}
.ybf{bottom:463.755600pt;}
.y2{bottom:464.281067pt;}
.y270{bottom:465.035600pt;}
.y289{bottom:465.517733pt;}
.yc7{bottom:466.315600pt;}
.y71{bottom:466.846533pt;}
.y177{bottom:466.981067pt;}
.y124{bottom:467.275600pt;}
.y22e{bottom:467.588667pt;}
.y28e{bottom:468.715600pt;}
.y200{bottom:468.727920pt;}
.y27f{bottom:469.995600pt;}
.y11b{bottom:470.125067pt;}
.ydb{bottom:471.199733pt;}
.y14f{bottom:471.413467pt;}
.y162{bottom:472.533467pt;}
.y1df{bottom:472.715600pt;}
.y1ea{bottom:472.877520pt;}
.y2ce{bottom:473.125947pt;}
.yf3{bottom:473.248667pt;}
.y227{bottom:473.720667pt;}
.y113{bottom:475.267173pt;}
.ya4{bottom:479.115600pt;}
.y1f1{bottom:479.601520pt;}
.y19{bottom:480.526293pt;}
.y26{bottom:480.912587pt;}
.y48{bottom:481.540667pt;}
.y37{bottom:481.542667pt;}
.y3f{bottom:481.584640pt;}
.y2a9{bottom:483.116240pt;}
.y1{bottom:483.481067pt;}
.y1c5{bottom:483.836107pt;}
.y297{bottom:484.235600pt;}
.y264{bottom:484.252880pt;}
.y1fe{bottom:484.482800pt;}
.y2b8{bottom:485.520293pt;}
.y96{bottom:485.805680pt;}
.y258{bottom:486.151760pt;}
.yaa{bottom:486.795600pt;}
.y1fb{bottom:487.649467pt;}
.y22b{bottom:488.228667pt;}
.y24c{bottom:488.395600pt;}
.y5c{bottom:489.493333pt;}
.y148{bottom:493.209520pt;}
.yb3{bottom:494.475600pt;}
.y70{bottom:495.646533pt;}
.y22d{bottom:496.388667pt;}
.y242{bottom:496.555600pt;}
.y23b{bottom:496.966267pt;}
.y2cd{bottom:498.884667pt;}
.y183{bottom:499.638587pt;}
.y27e{bottom:503.595600pt;}
.y1b7{bottom:506.224400pt;}
.y25{bottom:506.512427pt;}
.y2a8{bottom:507.435600pt;}
.y1a2{bottom:507.759333pt;}
.y11a{bottom:508.525067pt;}
.y18{bottom:510.446293pt;}
.y2b7{bottom:511.279013pt;}
.y12e{bottom:512.143067pt;}
.y3e{bottom:512.779200pt;}
.y47{bottom:512.894267pt;}
.y36{bottom:512.896267pt;}
.y4c{bottom:513.009173pt;}
.y257{bottom:513.033680pt;}
.y95{bottom:513.973040pt;}
.y207{bottom:514.315600pt;}
.y1a7{bottom:514.479200pt;}
.y288{bottom:514.637733pt;}
.yda{bottom:516.152133pt;}
.y143{bottom:516.245467pt;}
.y1ff{bottom:517.675600pt;}
.yf2{bottom:518.848667pt;}
.y1c4{bottom:519.030667pt;}
.y123{bottom:520.075600pt;}
.y112{bottom:520.077733pt;}
.y1e9{bottom:520.235600pt;}
.y161{bottom:521.416800pt;}
.y1f0{bottom:523.115600pt;}
.y2cc{bottom:524.643387pt;}
.ya9{bottom:525.195600pt;}
.y23a{bottom:525.766267pt;}
.y263{bottom:526.155600pt;}
.y1af{bottom:527.439333pt;}
.yb2{bottom:529.035600pt;}
.y182{bottom:530.830267pt;}
.y24{bottom:532.112267pt;}
.y6f{bottom:532.606533pt;}
.y5b{bottom:534.933333pt;}
.y24b{bottom:534.955600pt;}
.y27d{bottom:535.275600pt;}
.y2b6{bottom:537.037733pt;}
.y2a7{bottom:537.835600pt;}
.y256{bottom:539.915600pt;}
.y17{bottom:540.373333pt;}
.yf1{bottom:540.448667pt;}
.y4b{bottom:541.813333pt;}
.y94{bottom:542.140400pt;}
.y1cf{bottom:549.120000pt;}
.y2cb{bottom:550.402107pt;}
.y13a{bottom:553.011867pt;}
.y2a6{bottom:568.926533pt;}
.ya8{bottom:575.493253pt;}
.y2ca{bottom:576.160827pt;}
.y1da{bottom:582.046533pt;}
.y35{bottom:582.115600pt;}
.y16{bottom:582.189440pt;}
.y5a{bottom:582.246800pt;}
.y2c9{bottom:601.919547pt;}
.yf8{bottom:606.396267pt;}
.yef{bottom:606.571867pt;}
.y73{bottom:607.326533pt;}
.yd5{bottom:609.886533pt;}
.y190{bottom:611.256533pt;}
.y15{bottom:624.920000pt;}
.y2c8{bottom:627.678267pt;}
.y1d8{bottom:639.646533pt;}
.ya7{bottom:644.286533pt;}
.yee{bottom:645.584133pt;}
.y2a5{bottom:645.726533pt;}
.yed{bottom:683.379333pt;}
.h1d{height:34.968750pt;}
.h3{height:38.672812pt;}
.h24{height:39.933750pt;}
.h23{height:43.406250pt;}
.h1{height:46.593750pt;}
.h2{height:46.625000pt;}
.h22{height:47.236250pt;}
.h35{height:50.785312pt;}
.h36{height:52.028437pt;}
.h21{height:54.514687pt;}
.h1e{height:54.551250pt;}
.h1b{height:58.281250pt;}
.h38{height:59.143438pt;}
.h1f{height:61.096875pt;}
.hb{height:61.969687pt;}
.h7{height:62.011250pt;}
.he{height:62.125000pt;}
.hd{height:62.302500pt;}
.h37{height:65.109375pt;}
.hf{height:65.231250pt;}
.h2f{height:65.812500pt;}
.h39{height:66.703125pt;}
.h34{height:68.581875pt;}
.h14{height:68.906250pt;}
.h30{height:69.890625pt;}
.h13{height:69.937500pt;}
.h28{height:70.752187pt;}
.h15{height:72.201183pt;}
.h26{height:72.484062pt;}
.h9{height:72.735000pt;}
.ha{height:72.763160pt;}
.h3a{height:73.618125pt;}
.h3b{height:73.667500pt;}
.h25{height:75.947812pt;}
.h27{height:75.998750pt;}
.h19{height:77.811562pt;}
.h5{height:77.863750pt;}
.h16{height:85.323750pt;}
.h33{height:86.812500pt;}
.h31{height:92.270983pt;}
.h20{height:93.187500pt;}
.h17{height:93.250000pt;}
.h12{height:101.108438pt;}
.h10{height:101.176250pt;}
.hc{height:102.972188pt;}
.h8{height:103.438125pt;}
.h1c{height:108.563437pt;}
.h6{height:108.636250pt;}
.h32{height:110.641500pt;}
.h11{height:113.765000pt;}
.h29{height:124.405313pt;}
.h1a{height:124.488750pt;}
.h2e{height:131.948750pt;}
.h2c{height:139.781250pt;}
.h2d{height:143.605000pt;}
.h2b{height:155.261250pt;}
.h18{height:166.805625pt;}
.h4{height:186.375000pt;}
.h2a{height:209.812500pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x85{left:9.600000pt;}
.x5e{left:35.910800pt;}
.x6e{left:44.475067pt;}
.x37{left:50.182267pt;}
.x60{left:59.763733pt;}
.x74{left:62.183200pt;}
.x4f{left:68.759733pt;}
.x76{left:70.194267pt;}
.x15{left:73.600267pt;}
.x21{left:76.959253pt;}
.x77{left:81.917867pt;}
.x5b{left:84.318400pt;}
.x4b{left:85.598400pt;}
.x5d{left:86.878400pt;}
.x65{left:87.856533pt;}
.x4c{left:89.018400pt;}
.x1f{left:91.681813pt;}
.x61{left:92.645733pt;}
.x46{left:97.600000pt;}
.x66{left:98.960667pt;}
.x2f{left:102.976800pt;}
.x31{left:104.576800pt;}
.x32{left:105.536800pt;}
.x80{left:107.882667pt;}
.x27{left:109.603947pt;}
.x2c{left:110.711200pt;}
.x7e{left:111.914667pt;}
.x50{left:113.712133pt;}
.x58{left:119.098267pt;}
.x34{left:120.267600pt;}
.x45{left:121.599867pt;}
.x78{left:124.477867pt;}
.x23{left:127.034133pt;}
.x4a{left:129.600000pt;}
.xc8{left:130.984000pt;}
.x51{left:134.486933pt;}
.xc6{left:137.600000pt;}
.x1{left:139.057467pt;}
.x47{left:145.600000pt;}
.x22{left:151.344533pt;}
.x82{left:152.550000pt;}
.x35{left:154.027600pt;}
.x7d{left:155.906667pt;}
.x86{left:158.922667pt;}
.x20{left:164.317653pt;}
.x24{left:173.746453pt;}
.x1e{left:177.131733pt;}
.x7f{left:193.994667pt;}
.x90{left:214.300533pt;}
.xb{left:224.303653pt;}
.x7c{left:226.384533pt;}
.xae{left:244.094667pt;}
.x91{left:247.252533pt;}
.x92{left:250.444533pt;}
.x9{left:251.341733pt;}
.xa{left:255.020293pt;}
.xbf{left:261.551867pt;}
.x84{left:266.310000pt;}
.x9c{left:267.798533pt;}
.x9d{left:270.990533pt;}
.x9b{left:277.566533pt;}
.xb5{left:283.750533pt;}
.xb6{left:286.942533pt;}
.xb4{left:293.518533pt;}
.x71{left:295.729600pt;}
.x3{left:305.438533pt;}
.xb7{left:307.894533pt;}
.x30{left:318.336800pt;}
.x36{left:320.107600pt;}
.x8a{left:322.016667pt;}
.x88{left:323.270000pt;}
.x89{left:324.493333pt;}
.x4{left:327.198533pt;}
.x6{left:328.158533pt;}
.x5{left:330.078533pt;}
.x7{left:343.998533pt;}
.x8f{left:345.986667pt;}
.x33{left:350.336800pt;}
.x8{left:353.758533pt;}
.x54{left:358.966933pt;}
.x83{left:361.998000pt;}
.xc7{left:369.986667pt;}
.x4e{left:377.262800pt;}
.x2{left:385.118533pt;}
.x81{left:407.906667pt;}
.x99{left:423.283333pt;}
.x93{left:427.300533pt;}
.x6d{left:436.947467pt;}
.x9f{left:441.632000pt;}
.x6b{left:443.824133pt;}
.xa0{left:444.824000pt;}
.xb1{left:450.490000pt;}
.x9e{left:451.400000pt;}
.x94{left:460.252533pt;}
.x95{left:463.444533pt;}
.x3c{left:473.548133pt;}
.xc5{left:481.986667pt;}
.x87{left:483.882667pt;}
.x72{left:512.089280pt;}
.xf{left:520.276400pt;}
.x3d{left:528.288267pt;}
.x10{left:531.162160pt;}
.x25{left:532.353440pt;}
.x5a{left:533.863200pt;}
.x11{left:541.078640pt;}
.x12{left:548.758320pt;}
.xc1{left:550.919867pt;}
.x3e{left:554.048267pt;}
.xc{left:560.052933pt;}
.x13{left:563.148400pt;}
.xc0{left:564.743867pt;}
.x26{left:568.182880pt;}
.x39{left:571.239200pt;}
.xb2{left:576.802000pt;}
.x16{left:580.060533pt;}
.xe{left:582.996400pt;}
.x8e{left:585.162667pt;}
.xb9{left:588.583867pt;}
.xba{left:591.775867pt;}
.xc2{left:595.275733pt;}
.xb8{left:598.351867pt;}
.x5c{left:601.670667pt;}
.xa3{left:604.627333pt;}
.xa2{left:608.155333pt;}
.xa8{left:609.768000pt;}
.xbb{left:611.143867pt;}
.xb3{left:613.450000pt;}
.xa7{left:614.400000pt;}
.xc3{left:616.227733pt;}
.xa1{left:617.923333pt;}
.x96{left:631.717200pt;}
.x4d{left:644.768667pt;}
.x79{left:659.820800pt;}
.x97{left:661.141200pt;}
.xd{left:664.372933pt;}
.x7a{left:667.820800pt;}
.x38{left:670.759200pt;}
.x73{left:677.227840pt;}
.x59{left:678.363600pt;}
.x8c{left:687.580000pt;}
.x98{left:691.027333pt;}
.x5f{left:693.123333pt;}
.x53{left:694.958800pt;}
.x8b{left:702.780000pt;}
.x7b{left:707.794213pt;}
.x3f{left:716.288267pt;}
.x64{left:725.874133pt;}
.x70{left:755.351733pt;}
.x17{left:770.388853pt;}
.x69{left:780.668667pt;}
.x6a{left:784.355067pt;}
.xad{left:802.766667pt;}
.xa9{left:805.600000pt;}
.x8d{left:818.683333pt;}
.x68{left:862.307067pt;}
.xc4{left:869.755200pt;}
.x9a{left:873.934000pt;}
.x55{left:877.838667pt;}
.x1a{left:884.519333pt;}
.xbd{left:890.412533pt;}
.xbc{left:893.940533pt;}
.x41{left:896.914133pt;}
.x52{left:898.638800pt;}
.xb0{left:903.134667pt;}
.x6c{left:904.039333pt;}
.xaf{left:909.974667pt;}
.x75{left:912.052160pt;}
.xbe{left:917.940533pt;}
.xac{left:919.338000pt;}
.xa6{left:922.147333pt;}
.xa5{left:925.675333pt;}
.xab{left:927.978000pt;}
.x1c{left:931.049893pt;}
.xaa{left:932.610000pt;}
.xa4{left:935.443333pt;}
.x1b{left:942.273573pt;}
.x19{left:944.840933pt;}
.x3a{left:948.701067pt;}
.x42{left:961.340933pt;}
.x43{left:964.540933pt;}
.x1d{left:967.674533pt;}
.x2d{left:974.481200pt;}
.x18{left:978.920933pt;}
.x6f{left:981.934267pt;}
.x67{left:985.519733pt;}
.x62{left:992.593200pt;}
.x28{left:996.998800pt;}
.x2b{left:1008.331920pt;}
.x63{left:1054.798800pt;}
.x29{left:1074.914000pt;}
.x56{left:1085.385067pt;}
.x3b{left:1087.741067pt;}
.x2a{left:1099.220560pt;}
.x57{left:1101.865067pt;}
.x44{left:1108.220933pt;}
.x2e{left:1118.961200pt;}
.x40{left:1121.501067pt;}
.xca{left:1209.811333pt;}
.xc9{left:1223.889867pt;}
.x48{left:1235.731333pt;}
.x49{left:1237.331333pt;}
.x14{left:1247.571333pt;}
}




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