
    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_ac9c47c3591fd1a4e598744f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.115723;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_386a385e3e2c0c692df3347f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.109863;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_94ffa32b8bfb3b48814f224e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.113281;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_963933413bafd7c14409bb08.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.106934;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_b40961f063863ffce1ff6240.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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_c3dac6c78bb003f1e471fdcc.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_b214879cc96fd55f5cbabc68.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.114258;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_5e7304fb39eac9b47c5dea42.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_50525ae4f0ed8d8df41b6a5a.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;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_c4951cfdb3330f37f9c09800.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_dcf31621b6114ceff8b423ab.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.114258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_4cb69a470071eb95a90c7f82.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.104980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_077fe44333e3be6b3df263a2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_74df5416a73777bb90fb0725.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.113281;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_84d110c56c82340637b0bcb9.woff2')format("woff");}.fff{font-family:fff;line-height:1.364258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_dbc69c82083121a3a9fb2d59.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_3331a6bec0b45fb8ee33e9a8.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_864747ad2b18132e792ca850.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2032d4e32ca40c05fc8b52be.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.990234;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_35fadde6921cc2ad392f7270.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;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.232499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232499,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v5{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.010080px;}
.v1{vertical-align:20.743560px;}
.v3{vertical-align:24.087960px;}
.ls6{letter-spacing:-2.952186px;}
.ls8c{letter-spacing:-0.702000px;}
.ls3c{letter-spacing:-0.660000px;}
.ls1d{letter-spacing:-0.486000px;}
.ls2f{letter-spacing:-0.480960px;}
.ls40{letter-spacing:-0.480000px;}
.ls33{letter-spacing:-0.420840px;}
.ls3e{letter-spacing:-0.420000px;}
.ls6d{letter-spacing:-0.379080px;}
.ls30{letter-spacing:-0.360720px;}
.ls2e{letter-spacing:-0.300600px;}
.ls3f{letter-spacing:-0.300000px;}
.ls57{letter-spacing:-0.287280px;}
.ls4e{letter-spacing:-0.240480px;}
.ls4b{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.180360px;}
.ls5b{letter-spacing:-0.168480px;}
.ls1a{letter-spacing:-0.162000px;}
.ls17{letter-spacing:-0.131760px;}
.lsd{letter-spacing:-0.126000px;}
.ls27{letter-spacing:-0.120240px;}
.ls3b{letter-spacing:-0.120000px;}
.ls1b{letter-spacing:-0.108000px;}
.ls59{letter-spacing:-0.095760px;}
.ls14{letter-spacing:-0.083880px;}
.ls15{letter-spacing:-0.072000px;}
.ls16{letter-spacing:-0.065880px;}
.ls28{letter-spacing:-0.060120px;}
.ls3d{letter-spacing:-0.060000px;}
.ls5a{letter-spacing:-0.042120px;}
.ls4{letter-spacing:0.000000px;}
.ls38{letter-spacing:0.001920px;}
.ls31{letter-spacing:0.018036px;}
.ls86{letter-spacing:0.021600px;}
.ls49{letter-spacing:0.048096px;}
.ls2a{letter-spacing:0.054108px;}
.ls36{letter-spacing:0.060000px;}
.ls24{letter-spacing:0.060120px;}
.ls8{letter-spacing:0.063000px;}
.ls10{letter-spacing:0.065880px;}
.ls32{letter-spacing:0.066132px;}
.ls2d{letter-spacing:0.072144px;}
.ls2b{letter-spacing:0.084168px;}
.ls13{letter-spacing:0.085644px;}
.ls23{letter-spacing:0.090180px;}
.ls26{letter-spacing:0.096120px;}
.ls19{letter-spacing:0.108000px;}
.ls2c{letter-spacing:0.108216px;}
.ls39{letter-spacing:0.120000px;}
.ls21{letter-spacing:0.120240px;}
.ls9{letter-spacing:0.126000px;}
.ls34{letter-spacing:0.126252px;}
.ls4f{letter-spacing:0.131760px;}
.ls22{letter-spacing:0.132264px;}
.ls83{letter-spacing:0.140400px;}
.lsf{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.162000px;}
.lse{letter-spacing:0.167760px;}
.ls51{letter-spacing:0.168480px;}
.ls88{letter-spacing:0.178200px;}
.ls35{letter-spacing:0.180360px;}
.ls47{letter-spacing:0.180600px;}
.ls5{letter-spacing:0.187853px;}
.ls1e{letter-spacing:0.216000px;}
.ls37{letter-spacing:0.240000px;}
.ls65{letter-spacing:0.240480px;}
.lsc{letter-spacing:0.252000px;}
.ls41{letter-spacing:0.270000px;}
.lsa{letter-spacing:0.283500px;}
.ls4c{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.315000px;}
.ls4a{letter-spacing:0.324000px;}
.ls11{letter-spacing:0.329400px;}
.ls85{letter-spacing:0.334800px;}
.ls18{letter-spacing:0.378000px;}
.ls58{letter-spacing:0.383040px;}
.ls12{letter-spacing:0.395280px;}
.ls6a{letter-spacing:0.420840px;}
.ls42{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.480000px;}
.ls4d{letter-spacing:0.486000px;}
.ls89{letter-spacing:0.540000px;}
.ls74{letter-spacing:0.541080px;}
.ls84{letter-spacing:0.561600px;}
.ls1f{letter-spacing:0.756000px;}
.ls7a{letter-spacing:0.859716px;}
.ls87{letter-spacing:0.874800px;}
.ls7e{letter-spacing:0.877752px;}
.ls6b{letter-spacing:0.884520px;}
.ls53{letter-spacing:0.901800px;}
.ls66{letter-spacing:1.262520px;}
.ls69{letter-spacing:1.263600px;}
.ls2{letter-spacing:1.433088px;}
.ls3{letter-spacing:1.550876px;}
.ls54{letter-spacing:1.581156px;}
.ls6c{letter-spacing:1.600560px;}
.ls1{letter-spacing:1.679990px;}
.ls0{letter-spacing:1.685081px;}
.ls7{letter-spacing:1.832258px;}
.ls52{letter-spacing:2.266524px;}
.ls80{letter-spacing:2.284560px;}
.ls56{letter-spacing:2.344680px;}
.ls67{letter-spacing:2.362716px;}
.ls71{letter-spacing:2.375568px;}
.ls70{letter-spacing:2.695680px;}
.ls68{letter-spacing:2.705400px;}
.ls5e{letter-spacing:3.066120px;}
.ls44{letter-spacing:3.426840px;}
.ls5d{letter-spacing:3.432852px;}
.ls43{letter-spacing:3.661308px;}
.ls5f{letter-spacing:3.787560px;}
.ls46{letter-spacing:4.148280px;}
.ls76{letter-spacing:4.166316px;}
.ls8b{letter-spacing:4.506840px;}
.ls77{letter-spacing:4.893768px;}
.ls6e{letter-spacing:6.607188px;}
.ls73{letter-spacing:6.631236px;}
.ls7f{letter-spacing:6.721416px;}
.ls8a{letter-spacing:6.948000px;}
.ls25{letter-spacing:7.755480px;}
.ls7b{letter-spacing:8.476920px;}
.ls82{letter-spacing:9.198360px;}
.ls55{letter-spacing:9.559080px;}
.ls81{letter-spacing:9.883728px;}
.ls72{letter-spacing:10.280520px;}
.ls64{letter-spacing:12.084120px;}
.ls45{letter-spacing:12.444840px;}
.ls61{letter-spacing:12.727404px;}
.ls62{letter-spacing:12.781512px;}
.ls63{letter-spacing:12.805560px;}
.ls78{letter-spacing:13.448844px;}
.ls79{letter-spacing:14.266476px;}
.ls6f{letter-spacing:14.969880px;}
.ls7d{letter-spacing:16.052040px;}
.ls75{letter-spacing:18.937800px;}
.ls5c{letter-spacing:19.977876px;}
.ls60{letter-spacing:23.987880px;}
.ls48{letter-spacing:25.743384px;}
.ls50{letter-spacing:28.502892px;}
.ls20{letter-spacing:41.242320px;}
.ls7c{letter-spacing:63.546840px;}
.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;}
}
.ws6c{word-spacing:-30.132000px;}
.ws6b{word-spacing:-29.916000px;}
.ws29{word-spacing:-26.817480px;}
.ws10{word-spacing:-19.944000px;}
.ws12{word-spacing:-18.644040px;}
.ws6d{word-spacing:-18.380520px;}
.ws13{word-spacing:-18.314640px;}
.ws11{word-spacing:-18.248760px;}
.ws14{word-spacing:-18.182880px;}
.wsa{word-spacing:-17.640000px;}
.ws9{word-spacing:-17.577000px;}
.ws8{word-spacing:-17.514000px;}
.ws7{word-spacing:-17.388000px;}
.ws3c{word-spacing:-16.893720px;}
.ws3d{word-spacing:-16.833600px;}
.ws2a{word-spacing:-16.773480px;}
.ws40{word-spacing:-16.773360px;}
.ws2b{word-spacing:-16.713360px;}
.ws34{word-spacing:-16.653240px;}
.ws41{word-spacing:-16.593360px;}
.ws2c{word-spacing:-16.593120px;}
.ws2d{word-spacing:-16.533000px;}
.ws6e{word-spacing:-16.472880px;}
.ws36{word-spacing:-16.412760px;}
.ws35{word-spacing:-16.352640px;}
.wsaf{word-spacing:-16.292520px;}
.wsee{word-spacing:-16.232400px;}
.ws67{word-spacing:-15.336000px;}
.ws68{word-spacing:-15.282000px;}
.wsf5{word-spacing:-15.228000px;}
.ws1e{word-spacing:-15.174000px;}
.ws1d{word-spacing:-15.120000px;}
.ws1b{word-spacing:-15.012000px;}
.ws1a{word-spacing:-14.904000px;}
.ws1c{word-spacing:-14.850000px;}
.ws1f{word-spacing:-14.526000px;}
.wsf3{word-spacing:-14.310000px;}
.wsf4{word-spacing:-13.500000px;}
.ws95{word-spacing:-13.214880px;}
.ws94{word-spacing:-13.023360px;}
.ws8d{word-spacing:-11.877840px;}
.wsbe{word-spacing:-11.709360px;}
.wsbd{word-spacing:-10.808640px;}
.ws6a{word-spacing:-10.296000px;}
.ws69{word-spacing:-10.008000px;}
.wsd9{word-spacing:-9.720000px;}
.wsc7{word-spacing:-9.519120px;}
.wsea{word-spacing:-4.509000px;}
.ws85{word-spacing:-4.148280px;}
.ws84{word-spacing:-3.787560px;}
.wsa1{word-spacing:-3.426840px;}
.ws78{word-spacing:-3.066120px;}
.wsb6{word-spacing:-2.705400px;}
.ws8f{word-spacing:-2.695680px;}
.wsd8{word-spacing:-2.525040px;}
.ws7b{word-spacing:-2.344680px;}
.wsc2{word-spacing:-2.104200px;}
.ws87{word-spacing:-1.983960px;}
.ws5{word-spacing:-1.832258px;}
.ws0{word-spacing:-1.685081px;}
.ws2{word-spacing:-1.679990px;}
.ws82{word-spacing:-1.623240px;}
.ws6{word-spacing:-1.550876px;}
.ws8a{word-spacing:-1.442880px;}
.ws4{word-spacing:-1.433088px;}
.ws7c{word-spacing:-1.262520px;}
.ws93{word-spacing:-1.202400px;}
.wsd5{word-spacing:-1.022040px;}
.wsca{word-spacing:-0.901800px;}
.ws48{word-spacing:-0.786000px;}
.wscb{word-spacing:-0.721440px;}
.wsd2{word-spacing:-0.716040px;}
.wsf0{word-spacing:-0.661320px;}
.ws4e{word-spacing:-0.648000px;}
.ws39{word-spacing:-0.601200px;}
.ws5e{word-spacing:-0.576000px;}
.ws51{word-spacing:-0.546000px;}
.ws33{word-spacing:-0.541080px;}
.ws4c{word-spacing:-0.540000px;}
.ws70{word-spacing:-0.486000px;}
.ws32{word-spacing:-0.480960px;}
.ws64{word-spacing:-0.480000px;}
.ws5a{word-spacing:-0.432000px;}
.ws46{word-spacing:-0.426000px;}
.wsc4{word-spacing:-0.420840px;}
.ws65{word-spacing:-0.420000px;}
.ws49{word-spacing:-0.414000px;}
.ws96{word-spacing:-0.383040px;}
.ws27{word-spacing:-0.378000px;}
.ws92{word-spacing:-0.300600px;}
.ws5d{word-spacing:-0.300000px;}
.ws59{word-spacing:-0.288000px;}
.ws55{word-spacing:-0.282000px;}
.ws4b{word-spacing:-0.258000px;}
.ws3b{word-spacing:-0.240480px;}
.ws50{word-spacing:-0.240000px;}
.ws4d{word-spacing:-0.216000px;}
.ws45{word-spacing:-0.210000px;}
.ws57{word-spacing:-0.186000px;}
.ws30{word-spacing:-0.180360px;}
.ws44{word-spacing:-0.180000px;}
.ws8e{word-spacing:-0.168480px;}
.ws5b{word-spacing:-0.150000px;}
.ws61{word-spacing:-0.138000px;}
.ws58{word-spacing:-0.132000px;}
.wsc5{word-spacing:-0.131760px;}
.ws98{word-spacing:-0.126360px;}
.wsc{word-spacing:-0.126000px;}
.ws2e{word-spacing:-0.120240px;}
.ws42{word-spacing:-0.120000px;}
.ws26{word-spacing:-0.108000px;}
.ws47{word-spacing:-0.096000px;}
.ws54{word-spacing:-0.090000px;}
.ws6f{word-spacing:-0.072000px;}
.ws4f{word-spacing:-0.066000px;}
.ws18{word-spacing:-0.065880px;}
.ws31{word-spacing:-0.060120px;}
.ws4a{word-spacing:-0.060000px;}
.ws23{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.036654px;}
.wsfd{word-spacing:0.042120px;}
.ws56{word-spacing:0.060000px;}
.ws3e{word-spacing:0.060120px;}
.wse{word-spacing:0.063000px;}
.ws19{word-spacing:0.065880px;}
.ws16{word-spacing:0.072000px;}
.ws21{word-spacing:0.108000px;}
.ws43{word-spacing:0.120000px;}
.ws2f{word-spacing:0.120240px;}
.wsd{word-spacing:0.126000px;}
.ws17{word-spacing:0.131760px;}
.ws60{word-spacing:0.144000px;}
.wsf7{word-spacing:0.162000px;}
.ws15{word-spacing:0.167760px;}
.ws99{word-spacing:0.168480px;}
.ws5f{word-spacing:0.180000px;}
.ws37{word-spacing:0.180360px;}
.ws97{word-spacing:0.210600px;}
.ws24{word-spacing:0.216000px;}
.ws63{word-spacing:0.222000px;}
.ws77{word-spacing:0.240480px;}
.wsb{word-spacing:0.252000px;}
.ws20{word-spacing:0.270000px;}
.ws62{word-spacing:0.300000px;}
.ws3a{word-spacing:0.300600px;}
.ws9a{word-spacing:0.336960px;}
.wscd{word-spacing:0.379080px;}
.wsde{word-spacing:0.383040px;}
.ws5c{word-spacing:0.420000px;}
.wsba{word-spacing:0.420840px;}
.ws38{word-spacing:0.480960px;}
.wsf8{word-spacing:0.486000px;}
.wsb8{word-spacing:0.541080px;}
.wsd6{word-spacing:0.576000px;}
.wsce{word-spacing:0.589680px;}
.wsf{word-spacing:0.630000px;}
.ws22{word-spacing:0.648000px;}
.wsf6{word-spacing:0.702000px;}
.wsf9{word-spacing:0.810000px;}
.ws53{word-spacing:0.900000px;}
.wsa0{word-spacing:0.901800px;}
.wscf{word-spacing:0.926640px;}
.ws9c{word-spacing:1.262520px;}
.wsd0{word-spacing:1.263600px;}
.wsc6{word-spacing:1.305720px;}
.ws52{word-spacing:1.584000px;}
.ws79{word-spacing:1.623240px;}
.wsd1{word-spacing:1.642680px;}
.wsa2{word-spacing:1.983960px;}
.ws91{word-spacing:2.344680px;}
.wsdd{word-spacing:2.400840px;}
.wsae{word-spacing:2.525040px;}
.wsa3{word-spacing:2.705400px;}
.wsdc{word-spacing:2.737800px;}
.wsec{word-spacing:2.885760px;}
.wsc9{word-spacing:2.945880px;}
.wsb2{word-spacing:3.066120px;}
.wsc8{word-spacing:3.246480px;}
.ws73{word-spacing:3.426840px;}
.ws72{word-spacing:3.787560px;}
.wse8{word-spacing:3.967920px;}
.ws7a{word-spacing:4.148280px;}
.wsb7{word-spacing:4.509000px;}
.wsfc{word-spacing:4.548960px;}
.wsa9{word-spacing:4.809600px;}
.wsab{word-spacing:5.170320px;}
.wsaa{word-spacing:5.350680px;}
.wsbf{word-spacing:5.531040px;}
.wsfb{word-spacing:5.601960px;}
.wsa8{word-spacing:5.891760px;}
.wsfa{word-spacing:5.938920px;}
.wscc{word-spacing:6.072120px;}
.wsbb{word-spacing:6.252480px;}
.ws71{word-spacing:6.613200px;}
.wsd3{word-spacing:6.853680px;}
.wsa7{word-spacing:6.973920px;}
.wsb3{word-spacing:7.334640px;}
.ws66{word-spacing:7.454880px;}
.ws3f{word-spacing:7.521840px;}
.wsb4{word-spacing:7.695360px;}
.wseb{word-spacing:8.056080px;}
.wsef{word-spacing:8.236440px;}
.wsc1{word-spacing:8.416800px;}
.ws89{word-spacing:8.777520px;}
.wsa5{word-spacing:9.138240px;}
.wsa6{word-spacing:9.318600px;}
.ws9d{word-spacing:9.498960px;}
.wsf2{word-spacing:9.859680px;}
.wsa4{word-spacing:10.220400px;}
.wsf1{word-spacing:10.400760px;}
.wsdf{word-spacing:10.460880px;}
.ws7e{word-spacing:10.581120px;}
.ws7d{word-spacing:10.761480px;}
.wsda{word-spacing:10.941840px;}
.wse4{word-spacing:11.302560px;}
.ws28{word-spacing:11.448000px;}
.ws9b{word-spacing:11.663280px;}
.wse2{word-spacing:12.024000px;}
.ws75{word-spacing:12.384720px;}
.ws76{word-spacing:12.745440px;}
.wsac{word-spacing:13.106160px;}
.wse6{word-spacing:13.466880px;}
.wse9{word-spacing:14.188320px;}
.wsbc{word-spacing:14.549040px;}
.wsd7{word-spacing:14.909760px;}
.ws8c{word-spacing:15.270480px;}
.wsb5{word-spacing:15.631200px;}
.wsc3{word-spacing:15.991920px;}
.ws9e{word-spacing:16.352640px;}
.wsd4{word-spacing:16.713360px;}
.wsb0{word-spacing:17.074080px;}
.ws74{word-spacing:17.434800px;}
.ws86{word-spacing:17.795520px;}
.ws8b{word-spacing:18.156240px;}
.wse5{word-spacing:18.516960px;}
.wse3{word-spacing:18.877680px;}
.ws25{word-spacing:19.386000px;}
.wsc0{word-spacing:19.599120px;}
.wsb1{word-spacing:19.959840px;}
.ws9f{word-spacing:20.320560px;}
.wsed{word-spacing:21.763440px;}
.wse0{word-spacing:22.364640px;}
.wse1{word-spacing:22.484880px;}
.ws88{word-spacing:22.845600px;}
.wsad{word-spacing:23.567040px;}
.wsb9{word-spacing:24.288480px;}
.wse7{word-spacing:24.649200px;}
.ws83{word-spacing:25.731360px;}
.wsdb{word-spacing:27.534960px;}
.ws90{word-spacing:28.617120px;}
.ws81{word-spacing:31.863600px;}
.ws80{word-spacing:42.625080px;}
.ws7f{word-spacing:42.985800px;}
._1c{margin-left:-8.960261px;}
._1a{margin-left:-6.653880px;}
._7{margin-left:-5.355000px;}
._2{margin-left:-3.135982px;}
._0{margin-left:-1.893807px;}
._1{width:1.109812px;}
._3{width:2.173806px;}
._4{width:3.197073px;}
._18{width:4.964744px;}
._19{width:6.488144px;}
._1d{width:8.116255px;}
._11{width:9.230883px;}
._1f{width:10.430847px;}
._b{width:11.633247px;}
._c{width:12.965465px;}
._12{width:15.030000px;}
._10{width:18.306567px;}
._20{width:19.451283px;}
._21{width:23.927760px;}
._f{width:25.100127px;}
._5{width:26.397000px;}
._17{width:29.458800px;}
._d{width:42.084000px;}
._e{width:43.310475px;}
._14{width:54.291087px;}
._22{width:63.546840px;}
._6{width:194.859000px;}
._13{width:197.370000px;}
._a{width:563.919229px;}
._16{width:834.311160px;}
._9{width:838.147320px;}
._8{width:843.984000px;}
._15{width:1343.742120px;}
._1b{width:1846.827360px;}
._1e{width:2267.853120px;}
.fc7{color:rgb(0,176,240);}
.fc5{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(189,188,188);}
.fc6{color:rgb(64,64,64);}
.fc4{color:rgb(128,128,128);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs11{font-size:29.880000px;}
.fsc{font-size:36.000000px;}
.fs10{font-size:38.880000px;}
.fsf{font-size:42.120000px;}
.fs1{font-size:45.817800px;}
.fs4{font-size:47.880000px;}
.fse{font-size:48.000000px;}
.fs0{font-size:50.908800px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs3{font-size:65.437800px;}
.fs7{font-size:65.880000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:83.880000px;}
.fsa{font-size:96.120000px;}
.fsd{font-size:108.000000px;}
.fs2{font-size:275.905200px;}
.y0{bottom:0.000000px;}
.y169{bottom:2.526000px;}
.y171{bottom:17.725590px;}
.y193{bottom:17.730000px;}
.y13e{bottom:22.144350px;}
.y168{bottom:27.193771px;}
.y170{bottom:42.480000px;}
.y192{bottom:63.360000px;}
.y16f{bottom:67.860000px;}
.y13d{bottom:79.560000px;}
.ya6{bottom:79.938000px;}
.y10e{bottom:84.320100px;}
.y16e{bottom:84.951000px;}
.y110{bottom:89.084610px;}
.y77{bottom:95.697000px;}
.ya5{bottom:96.408000px;}
.ydd{bottom:98.862210px;}
.y10d{bottom:104.204790px;}
.y76{bottom:112.167000px;}
.ydc{bottom:118.656720px;}
.ya4{bottom:121.963500px;}
.y10f{bottom:123.909120px;}
.y10c{bottom:123.999300px;}
.y212{bottom:130.680000px;}
.y1ee{bottom:131.723100px;}
.y2d9{bottom:132.207840px;}
.y24f{bottom:134.921790px;}
.y233{bottom:136.998450px;}
.y75{bottom:137.722500px;}
.ya3{bottom:138.433500px;}
.ydb{bottom:138.451230px;}
.y244{bottom:141.205320px;}
.y21d{bottom:141.207480px;}
.y133{bottom:143.821500px;}
.y10b{bottom:143.883990px;}
.y2d8{bottom:146.697120px;}
.y291{bottom:146.994120px;}
.y229{bottom:147.155490px;}
.y27b{bottom:148.266900px;}
.y167{bottom:149.363280px;}
.y1c0{bottom:149.823450px;}
.y18e{bottom:152.100000px;}
.y1ed{bottom:152.419410px;}
.y74{bottom:154.192500px;}
.y21c{bottom:155.696760px;}
.y232{bottom:157.694760px;}
.yda{bottom:158.335920px;}
.y211{bottom:158.485320px;}
.y2bb{bottom:162.644760px;}
.y243{bottom:162.810000px;}
.y132{bottom:163.660500px;}
.y10a{bottom:163.678500px;}
.y228{bottom:163.710000px;}
.ya2{bottom:163.908000px;}
.y24e{bottom:164.621070px;}
.y2d7{bottom:166.950000px;}
.y27a{bottom:168.963210px;}
.y166{bottom:170.059590px;}
.y21b{bottom:170.186040px;}
.y290{bottom:170.395830px;}
.y1bf{bottom:170.519760px;}
.y242{bottom:176.130000px;}
.yd9{bottom:178.130430px;}
.y231{bottom:178.391070px;}
.y2d6{bottom:179.550000px;}
.y73{bottom:179.667000px;}
.y210{bottom:180.090000px;}
.ya1{bottom:180.472500px;}
.y1ec{bottom:182.118690px;}
.y2ba{bottom:183.341070px;}
.y109{bottom:183.473010px;}
.y131{bottom:183.499500px;}
.y21a{bottom:184.675320px;}
.y24d{bottom:185.317380px;}
.y227{bottom:188.100000px;}
.y279{bottom:189.659520px;}
.y28f{bottom:191.092140px;}
.y1be{bottom:191.216070px;}
.y20f{bottom:193.410000px;}
.y17a{bottom:195.931440px;}
.y72{bottom:196.231500px;}
.yd8{bottom:198.015120px;}
.y230{bottom:199.087380px;}
.y165{bottom:199.758870px;}
.y1eb{bottom:202.815000px;}
.y108{bottom:203.357700px;}
.y2b9{bottom:204.037380px;}
.y31{bottom:205.110000px;}
.ya0{bottom:205.947000px;}
.y24c{bottom:206.013690px;}
.y219{bottom:206.280000px;}
.y278{bottom:210.355830px;}
.y28e{bottom:211.788450px;}
.y1bd{bottom:211.912380px;}
.yd7{bottom:217.809630px;}
.y218{bottom:219.600000px;}
.y22f{bottom:219.783690px;}
.y164{bottom:220.455180px;}
.y71{bottom:221.706000px;}
.y9f{bottom:222.417000px;}
.y107{bottom:223.152210px;}
.y130{bottom:223.179000px;}
.y1ea{bottom:223.511310px;}
.y30{bottom:224.644500px;}
.y2b8{bottom:224.733690px;}
.y179{bottom:225.630720px;}
.y24b{bottom:226.710000px;}
.y277{bottom:231.052140px;}
.y28d{bottom:232.484760px;}
.y20e{bottom:236.715480px;}
.yd6{bottom:237.604140px;}
.y70{bottom:238.176000px;}
.y22e{bottom:240.480000px;}
.y1bc{bottom:241.611660px;}
.y12f{bottom:243.003000px;}
.y106{bottom:243.036900px;}
.y2f{bottom:244.080000px;}
.y1e9{bottom:244.207620px;}
.y2b7{bottom:245.430000px;}
.y9e{bottom:247.972500px;}
.y163{bottom:250.154460px;}
.y276{bottom:251.748450px;}
.y28c{bottom:253.181070px;}
.y24a{bottom:255.150000px;}
.y178{bottom:255.330000px;}
.y20d{bottom:257.411790px;}
.yd5{bottom:257.488830px;}
.y1bb{bottom:262.307970px;}
.y12e{bottom:262.827000px;}
.y105{bottom:262.831410px;}
.y2e{bottom:263.610000px;}
.y6f{bottom:263.731500px;}
.y9d{bottom:264.442500px;}
.y1e8{bottom:264.903930px;}
.y22d{bottom:268.920810px;}
.y162{bottom:270.760590px;}
.y275{bottom:272.444760px;}
.y28b{bottom:273.877380px;}
.y17b{bottom:275.400000px;}
.y2b6{bottom:276.480000px;}
.yd4{bottom:277.283340px;}
.y217{bottom:278.100000px;}
.y20c{bottom:278.108100px;}
.y6e{bottom:280.201500px;}
.y104{bottom:282.625920px;}
.y12d{bottom:282.651000px;}
.y1ba{bottom:283.004280px;}
.y2d{bottom:283.140000px;}
.y249{bottom:283.860000px;}
.y1e7{bottom:285.600240px;}
.y9c{bottom:289.917000px;}
.y161{bottom:291.456900px;}
.y22c{bottom:291.867300px;}
.y274{bottom:293.141070px;}
.y28a{bottom:294.573690px;}
.yd3{bottom:297.168030px;}
.y20b{bottom:298.804410px;}
.y216{bottom:302.310000px;}
.y4a{bottom:302.312610px;}
.y103{bottom:302.510610px;}
.y2c{bottom:302.580000px;}
.y1b9{bottom:303.700590px;}
.y6d{bottom:305.676000px;}
.y1e6{bottom:306.296550px;}
.y9b{bottom:306.481500px;}
.y2b5{bottom:310.320000px;}
.y160{bottom:312.153210px;}
.y273{bottom:313.837380px;}
.y289{bottom:315.270000px;}
.y241{bottom:316.654830px;}
.yd2{bottom:316.962540px;}
.y20a{bottom:319.500720px;}
.y2b{bottom:322.157250px;}
.y6c{bottom:322.240500px;}
.y102{bottom:322.305120px;}
.y12c{bottom:322.314000px;}
.y1b8{bottom:324.396900px;}
.y49{bottom:325.980000px;}
.y1e5{bottom:326.992860px;}
.y9a{bottom:331.956000px;}
.y15f{bottom:332.849520px;}
.y272{bottom:334.533690px;}
.yd1{bottom:336.757050px;}
.y2a{bottom:341.687250px;}
.y12b{bottom:342.153000px;}
.y101{bottom:342.189810px;}
.y2b4{bottom:342.921510px;}
.y288{bottom:343.710000px;}
.y1b7{bottom:345.093210px;}
.y240{bottom:346.354110px;}
.y1e4{bottom:347.689170px;}
.y6b{bottom:347.715000px;}
.y99{bottom:348.426000px;}
.y209{bottom:349.200000px;}
.y15e{bottom:353.545830px;}
.y271{bottom:355.230000px;}
.yd0{bottom:356.641740px;}
.y48{bottom:361.080000px;}
.y29{bottom:361.122750px;}
.y100{bottom:361.984320px;}
.y12a{bottom:361.992000px;}
.y2b3{bottom:363.617820px;}
.y6a{bottom:364.185000px;}
.y1b6{bottom:365.789520px;}
.y23f{bottom:367.050420px;}
.y208{bottom:369.896310px;}
.y287{bottom:370.546650px;}
.y98{bottom:373.981500px;}
.y15d{bottom:374.242140px;}
.ycf{bottom:376.436250px;}
.y1e3{bottom:377.388450px;}
.y28{bottom:380.652750px;}
.yff{bottom:381.778830px;}
.y2b2{bottom:384.314130px;}
.y270{bottom:386.280000px;}
.y1b5{bottom:386.485830px;}
.y23e{bottom:387.746730px;}
.y47{bottom:387.817020px;}
.y69{bottom:389.740500px;}
.y97{bottom:390.451500px;}
.y207{bottom:390.592620px;}
.y15c{bottom:394.938450px;}
.yce{bottom:396.320940px;}
.y1e2{bottom:398.084760px;}
.y27{bottom:400.182750px;}
.yfe{bottom:401.663520px;}
.y129{bottom:401.671500px;}
.y2b1{bottom:405.010440px;}
.y68{bottom:406.210500px;}
.y1b4{bottom:407.182140px;}
.y23d{bottom:408.443040px;}
.y206{bottom:411.288930px;}
.y46{bottom:414.449010px;}
.y15b{bottom:415.634760px;}
.y96{bottom:415.926000px;}
.ycd{bottom:416.115450px;}
.y1e1{bottom:418.781070px;}
.y26f{bottom:418.873680px;}
.yfd{bottom:421.458030px;}
.y128{bottom:421.510500px;}
.y2b0{bottom:425.706750px;}
.y26{bottom:428.627250px;}
.y23c{bottom:429.139350px;}
.y67{bottom:431.685000px;}
.y205{bottom:431.985240px;}
.y95{bottom:432.490500px;}
.ycc{bottom:435.909960px;}
.y15a{bottom:436.331070px;}
.y1b3{bottom:436.881420px;}
.y2d5{bottom:438.751440px;}
.y1e0{bottom:439.477380px;}
.y45{bottom:441.179820px;}
.yfc{bottom:441.342720px;}
.y127{bottom:441.349500px;}
.y2af{bottom:446.403060px;}
.y66{bottom:448.249500px;}
.y26e{bottom:448.572960px;}
.y23b{bottom:449.835660px;}
.y204{bottom:452.681550px;}
.ycb{bottom:455.794650px;}
.y159{bottom:457.027380px;}
.y25{bottom:457.150500px;}
.y18d{bottom:457.200000px;}
.y1b2{bottom:457.577730px;}
.y94{bottom:457.965000px;}
.y1df{bottom:460.173690px;}
.yfb{bottom:461.137230px;}
.y2d4{bottom:468.450720px;}
.y248{bottom:469.170000px;}
.y26d{bottom:469.269270px;}
.y23a{bottom:470.531970px;}
.y203{bottom:473.377860px;}
.y65{bottom:473.724000px;}
.y93{bottom:474.435000px;}
.yca{bottom:475.589160px;}
.y2ae{bottom:476.102340px;}
.y24{bottom:476.680500px;}
.y158{bottom:477.723690px;}
.y18c{bottom:477.990000px;}
.y1b1{bottom:478.274040px;}
.y44{bottom:478.714950px;}
.y1de{bottom:480.870000px;}
.yfa{bottom:480.931740px;}
.y126{bottom:480.939000px;}
.y26c{bottom:489.965580px;}
.y64{bottom:490.194000px;}
.y202{bottom:494.074170px;}
.yc9{bottom:495.473850px;}
.y23{bottom:496.116000px;}
.y2ad{bottom:496.798650px;}
.y247{bottom:497.880000px;}
.y2d3{bottom:498.150000px;}
.y157{bottom:498.420000px;}
.y1b0{bottom:498.970350px;}
.y226{bottom:499.069170px;}
.y92{bottom:499.990500px;}
.y239{bottom:500.141070px;}
.y125{bottom:500.778000px;}
.yf9{bottom:500.816430px;}
.y43{bottom:505.346940px;}
.y18b{bottom:508.701420px;}
.y26b{bottom:510.661890px;}
.y1dd{bottom:511.920000px;}
.y201{bottom:514.770480px;}
.yc8{bottom:515.268360px;}
.y22{bottom:515.646000px;}
.y63{bottom:515.749500px;}
.y91{bottom:516.460500px;}
.y2ac{bottom:517.494960px;}
.y1af{bottom:519.666660px;}
.y225{bottom:519.765480px;}
.y156{bottom:519.840000px;}
.yf8{bottom:520.610940px;}
.y124{bottom:520.617000px;}
.y238{bottom:520.837380px;}
.y2d2{bottom:527.229000px;}
.y26a{bottom:531.358200px;}
.y62{bottom:532.219500px;}
.yc7{bottom:535.062870px;}
.y21{bottom:535.176000px;}
.y2ab{bottom:538.191270px;}
.y18a{bottom:538.400700px;}
.y1ae{bottom:540.362970px;}
.y224{bottom:540.461790px;}
.yf7{bottom:540.495630px;}
.y237{bottom:541.533690px;}
.y90{bottom:541.935000px;}
.y42{bottom:542.882070px;}
.y200{bottom:544.469760px;}
.y1dc{bottom:544.503870px;}
.y269{bottom:552.054510px;}
.y155{bottom:553.185720px;}
.y20{bottom:554.611500px;}
.y2d1{bottom:554.863500px;}
.yc6{bottom:554.947560px;}
.y61{bottom:557.694000px;}
.y8f{bottom:558.499500px;}
.y2aa{bottom:558.887580px;}
.yf6{bottom:560.290140px;}
.y123{bottom:560.296500px;}
.y1ad{bottom:561.059280px;}
.y223{bottom:561.158100px;}
.y236{bottom:562.230000px;}
.y1ff{bottom:565.166070px;}
.y22b{bottom:566.100000px;}
.y189{bottom:568.099980px;}
.y41{bottom:569.612880px;}
.y268{bottom:572.750820px;}
.y2d0{bottom:573.493500px;}
.y1f{bottom:574.141500px;}
.y1db{bottom:574.203150px;}
.y60{bottom:574.258500px;}
.yc5{bottom:574.742070px;}
.y2a9{bottom:579.583890px;}
.yf5{bottom:580.084650px;}
.y122{bottom:580.120500px;}
.y1ac{bottom:581.755590px;}
.y222{bottom:581.854410px;}
.y154{bottom:582.885000px;}
.y8e{bottom:583.974000px;}
.yb0{bottom:583.987500px;}
.y1fe{bottom:585.862380px;}
.y22a{bottom:590.400000px;}
.y235{bottom:590.670000px;}
.y267{bottom:593.447130px;}
.y1e{bottom:593.671500px;}
.yc4{bottom:594.626760px;}
.y1da{bottom:594.899460px;}
.y188{bottom:597.799260px;}
.y5f{bottom:599.733000px;}
.y121{bottom:599.944500px;}
.yf4{bottom:599.969340px;}
.y2a8{bottom:600.280200px;}
.y8d{bottom:600.444000px;}
.yaf{bottom:600.457500px;}
.y2cf{bottom:601.128000px;}
.y1ab{bottom:602.451900px;}
.y221{bottom:602.550720px;}
.y153{bottom:603.581310px;}
.y1fd{bottom:606.558690px;}
.y40{bottom:607.049190px;}
.y1d{bottom:613.107000px;}
.y266{bottom:614.143440px;}
.y234{bottom:614.340000px;}
.yc3{bottom:614.421270px;}
.y1d9{bottom:615.595770px;}
.y5e{bottom:616.203000px;}
.y187{bottom:618.495570px;}
.y2ce{bottom:619.758000px;}
.yf3{bottom:619.763850px;}
.y120{bottom:619.768500px;}
.y2a7{bottom:620.976510px;}
.y1aa{bottom:623.148210px;}
.y8c{bottom:625.999500px;}
.yae{bottom:626.013000px;}
.y1fc{bottom:627.255000px;}
.y220{bottom:632.250000px;}
.y1c{bottom:632.637000px;}
.y152{bottom:633.280590px;}
.y3f{bottom:633.780000px;}
.yc2{bottom:634.215780px;}
.y265{bottom:634.839750px;}
.y1d8{bottom:636.292080px;}
.y17c{bottom:638.010000px;}
.y2cd{bottom:638.388000px;}
.yf2{bottom:639.648540px;}
.y5d{bottom:641.758500px;}
.y8b{bottom:642.469500px;}
.yad{bottom:642.483000px;}
.y1a9{bottom:643.844520px;}
.y1fb{bottom:647.951310px;}
.y186{bottom:648.194850px;}
.y2a6{bottom:650.675790px;}
.y1b{bottom:652.167000px;}
.y151{bottom:653.976900px;}
.yc1{bottom:654.100470px;}
.y1d7{bottom:656.988390px;}
.y5c{bottom:658.228500px;}
.yac{bottom:658.953000px;}
.yf1{bottom:659.443050px;}
.y11f{bottom:659.448000px;}
.y21f{bottom:660.690000px;}
.y264{bottom:664.539030px;}
.y1a8{bottom:664.540830px;}
.y6{bottom:665.771092px;}
.y2cc{bottom:666.103500px;}
.y8a{bottom:667.944000px;}
.y1fa{bottom:668.647620px;}
.y3e{bottom:671.310000px;}
.y2a5{bottom:671.372100px;}
.y1a{bottom:671.602500px;}
.yc0{bottom:673.894980px;}
.y150{bottom:674.673210px;}
.y1d6{bottom:677.684700px;}
.y185{bottom:677.894130px;}
.yf0{bottom:679.237560px;}
.y11e{bottom:679.242000px;}
.y5{bottom:682.780950px;}
.y246{bottom:683.190000px;}
.y5b{bottom:683.703000px;}
.y21e{bottom:684.270000px;}
.y89{bottom:684.508500px;}
.y2cb{bottom:684.733500px;}
.y263{bottom:685.235340px;}
.y1a7{bottom:685.237140px;}
.y1f9{bottom:689.343930px;}
.y19{bottom:691.132500px;}
.y2a4{bottom:692.068410px;}
.ybf{bottom:693.779670px;}
.y14f{bottom:695.369550px;}
.y3d{bottom:697.941570px;}
.y1d5{bottom:698.381010px;}
.yef{bottom:699.122250px;}
.y5a{bottom:700.267500px;}
.yab{bottom:700.978500px;}
.y2ca{bottom:703.363500px;}
.y262{bottom:705.931650px;}
.y1a6{bottom:705.933450px;}
.y245{bottom:706.864500px;}
.y184{bottom:707.503230px;}
.y88{bottom:709.983000px;}
.y1f8{bottom:710.040240px;}
.y18{bottom:710.662500px;}
.y2a3{bottom:712.764720px;}
.ybe{bottom:713.574180px;}
.y14e{bottom:716.065830px;}
.y4{bottom:716.798797px;}
.y139{bottom:718.826580px;}
.yee{bottom:718.916760px;}
.y11d{bottom:718.921500px;}
.y1d4{bottom:719.077320px;}
.y3c{bottom:724.672380px;}
.y59{bottom:725.742000px;}
.y87{bottom:726.453000px;}
.y261{bottom:726.627960px;}
.y1a5{bottom:726.629760px;}
.y183{bottom:728.199540px;}
.y17{bottom:730.098000px;}
.y2c9{bottom:731.079000px;}
.ybd{bottom:733.368690px;}
.y3{bottom:733.808700px;}
.y14d{bottom:736.762140px;}
.y11c{bottom:738.745500px;}
.yed{bottom:738.801450px;}
.y1f7{bottom:739.739520px;}
.y1d3{bottom:739.773630px;}
.y58{bottom:742.212000px;}
.y2a2{bottom:742.464000px;}
.yaa{bottom:743.017500px;}
.y260{bottom:747.324270px;}
.y1a4{bottom:747.326070px;}
.y16{bottom:749.628000px;}
.y2c8{bottom:749.709000px;}
.y3b{bottom:750.777330px;}
.y86{bottom:752.008500px;}
.ybc{bottom:753.253380px;}
.y14c{bottom:757.458450px;}
.y182{bottom:757.898820px;}
.y11b{bottom:758.569500px;}
.yec{bottom:758.595960px;}
.y1f6{bottom:760.435830px;}
.y1d2{bottom:760.469940px;}
.y2a1{bottom:763.160310px;}
.y57{bottom:767.767500px;}
.y2{bottom:767.828797px;}
.y25f{bottom:768.020580px;}
.y2c7{bottom:768.244500px;}
.y85{bottom:768.478500px;}
.ya9{bottom:768.492000px;}
.y15{bottom:769.158000px;}
.ybb{bottom:773.047890px;}
.y1a3{bottom:777.025350px;}
.y14b{bottom:778.154760px;}
.yeb{bottom:778.390470px;}
.y138{bottom:778.390500px;}
.y11a{bottom:778.393500px;}
.y1f5{bottom:781.132140px;}
.y1d1{bottom:781.166250px;}
.y2a0{bottom:783.856620px;}
.y56{bottom:784.237500px;}
.y1{bottom:784.838700px;}
.ya8{bottom:784.962000px;}
.y3a{bottom:785.874900px;}
.y181{bottom:787.598100px;}
.y14{bottom:788.593500px;}
.y25e{bottom:788.716890px;}
.yba{bottom:792.932580px;}
.y84{bottom:793.953000px;}
.y2c6{bottom:795.960000px;}
.y1a2{bottom:797.721660px;}
.yea{bottom:798.275160px;}
.y14a{bottom:798.851070px;}
.y1f4{bottom:801.828450px;}
.y1d0{bottom:801.862560px;}
.y286{bottom:802.193220px;}
.y29f{bottom:804.552930px;}
.y13{bottom:808.123500px;}
.y180{bottom:808.294410px;}
.y25d{bottom:809.413200px;}
.y55{bottom:809.712000px;}
.y83{bottom:810.517500px;}
.y39{bottom:811.979850px;}
.yb9{bottom:812.727090px;}
.ye9{bottom:818.069670px;}
.y119{bottom:818.073000px;}
.y1a1{bottom:818.417970px;}
.y149{bottom:819.547380px;}
.y1f3{bottom:822.524760px;}
.y1cf{bottom:822.558870px;}
.y285{bottom:822.889530px;}
.y2c5{bottom:823.581000px;}
.y54{bottom:826.276500px;}
.ya7{bottom:826.987500px;}
.y17f{bottom:828.990720px;}
.y25c{bottom:830.109510px;}
.yb8{bottom:832.521600px;}
.y29e{bottom:834.252210px;}
.y82{bottom:835.992000px;}
.y12{bottom:836.568000px;}
.y118{bottom:837.912000px;}
.ye8{bottom:837.954360px;}
.y7{bottom:839.025000px;}
.y1a0{bottom:839.114280px;}
.ya{bottom:839.833483px;}
.y148{bottom:840.243690px;}
.y1f2{bottom:843.221070px;}
.y1ce{bottom:843.255180px;}
.y284{bottom:843.585840px;}
.y38{bottom:847.080000px;}
.y25b{bottom:850.805820px;}
.y2c4{bottom:851.215500px;}
.y53{bottom:851.751000px;}
.yb7{bottom:852.406290px;}
.y81{bottom:852.462000px;}
.y29d{bottom:854.948520px;}
.y9{bottom:857.518049px;}
.ye7{bottom:857.748870px;}
.y137{bottom:857.748900px;}
.y117{bottom:857.751000px;}
.y17e{bottom:858.690000px;}
.y19f{bottom:859.810590px;}
.y147{bottom:860.940000px;}
.y1f1{bottom:863.917380px;}
.y1cd{bottom:863.951490px;}
.y11{bottom:865.091250px;}
.y52{bottom:868.221000px;}
.y80{bottom:869.026500px;}
.yb6{bottom:872.200800px;}
.y283{bottom:874.277100px;}
.y8{bottom:875.204250px;}
.y29c{bottom:875.644830px;}
.ye6{bottom:877.543380px;}
.y2c3{bottom:878.850000px;}
.y17d{bottom:880.110000px;}
.y25a{bottom:880.505100px;}
.y19e{bottom:880.506900px;}
.y146{bottom:882.360000px;}
.y1f0{bottom:884.613690px;}
.y37{bottom:884.614500px;}
.y1cc{bottom:884.647800px;}
.yb5{bottom:892.085490px;}
.y10{bottom:893.614500px;}
.y51{bottom:893.776500px;}
.y7f{bottom:894.501000px;}
.y282{bottom:894.973410px;}
.y29b{bottom:896.341140px;}
.ye5{bottom:897.428070px;}
.y136{bottom:897.428100px;}
.y116{bottom:897.430500px;}
.y2c2{bottom:897.480000px;}
.y259{bottom:901.201410px;}
.y19d{bottom:901.203210px;}
.y1cb{bottom:905.344110px;}
.y50{bottom:910.246500px;}
.y7e{bottom:910.971000px;}
.yb4{bottom:911.880000px;}
.y145{bottom:915.030000px;}
.y2c1{bottom:916.110000px;}
.y29a{bottom:917.037450px;}
.y135{bottom:917.222550px;}
.ye4{bottom:917.222580px;}
.y115{bottom:917.269500px;}
.y258{bottom:921.897720px;}
.y19c{bottom:921.899520px;}
.y36{bottom:922.045950px;}
.yf{bottom:922.059000px;}
.y281{bottom:925.664670px;}
.y1ca{bottom:926.040420px;}
.y144{bottom:933.660000px;}
.y2c0{bottom:934.830000px;}
.y4f{bottom:935.721000px;}
.y7d{bottom:936.526500px;}
.ye3{bottom:937.107270px;}
.y134{bottom:937.107300px;}
.y114{bottom:937.108500px;}
.y299{bottom:937.733760px;}
.y257{bottom:942.594030px;}
.y19b{bottom:942.595830px;}
.y1c9{bottom:946.736730px;}
.yb3{bottom:947.790000px;}
.y177{bottom:949.320000px;}
.ye{bottom:950.582250px;}
.y4e{bottom:952.285500px;}
.y143{bottom:952.920000px;}
.y7c{bottom:952.996500px;}
.y280{bottom:956.355930px;}
.ye2{bottom:956.901780px;}
.y298{bottom:958.430070px;}
.y35{bottom:959.582250px;}
.y2bf{bottom:962.545500px;}
.y256{bottom:963.290340px;}
.y19a{bottom:963.292140px;}
.y1c8{bottom:967.433040px;}
.y142{bottom:972.819000px;}
.ye1{bottom:976.696290px;}
.y113{bottom:976.698000px;}
.y27f{bottom:977.052240px;}
.y4d{bottom:977.760000px;}
.y7b{bottom:978.471000px;}
.yd{bottom:979.105500px;}
.y297{bottom:979.126380px;}
.y2be{bottom:981.175500px;}
.y176{bottom:983.160000px;}
.y255{bottom:983.986650px;}
.y199{bottom:983.988450px;}
.yb2{bottom:986.580000px;}
.y1c7{bottom:988.129350px;}
.y4c{bottom:994.230000px;}
.y7a{bottom:995.035500px;}
.y112{bottom:996.522000px;}
.ye0{bottom:996.580980px;}
.y34{bottom:997.118550px;}
.y1ef{bottom:997.132320px;}
.y27e{bottom:997.748550px;}
.y296{bottom:999.822690px;}
.y141{bottom:1003.869000px;}
.y254{bottom:1004.682960px;}
.y198{bottom:1004.684760px;}
.yc{bottom:1007.550000px;}
.y2bd{bottom:1008.810000px;}
.y215{bottom:1014.303600px;}
.y111{bottom:1016.346000px;}
.ydf{bottom:1016.375490px;}
.y175{bottom:1017.000000px;}
.y1c6{bottom:1017.828630px;}
.y79{bottom:1020.510000px;}
.y295{bottom:1020.519000px;}
.y253{bottom:1025.379270px;}
.y197{bottom:1025.381070px;}
.yb1{bottom:1027.710000px;}
.y27d{bottom:1028.439810px;}
.y4b{bottom:1030.500000px;}
.y33{bottom:1034.550000px;}
.y140{bottom:1034.919000px;}
.y214{bottom:1034.999910px;}
.yb{bottom:1035.810000px;}
.yde{bottom:1036.170000px;}
.y78{bottom:1036.980000px;}
.y2bc{bottom:1038.420000px;}
.y1c5{bottom:1038.524940px;}
.y294{bottom:1041.215310px;}
.y252{bottom:1046.075580px;}
.y196{bottom:1046.077380px;}
.y27c{bottom:1049.226300px;}
.y174{bottom:1050.840000px;}
.y213{bottom:1057.598010px;}
.y1c4{bottom:1059.221250px;}
.y13f{bottom:1065.969000px;}
.y251{bottom:1066.771890px;}
.y195{bottom:1066.773690px;}
.y293{bottom:1070.914590px;}
.y1c3{bottom:1079.917560px;}
.y173{bottom:1084.680000px;}
.y250{bottom:1087.468200px;}
.y194{bottom:1087.470000px;}
.y292{bottom:1091.610900px;}
.y1c2{bottom:1100.613870px;}
.y172{bottom:1118.430000px;}
.y1c1{bottom:1121.220000px;}
.y13c{bottom:1148.049000px;}
.y16d{bottom:1160.455500px;}
.y13b{bottom:1166.409000px;}
.y191{bottom:1175.578740px;}
.y16c{bottom:1175.940000px;}
.y13a{bottom:1184.944500px;}
.y190{bottom:1189.440000px;}
.y16b{bottom:1191.154500px;}
.y32{bottom:1193.940000px;}
.y18f{bottom:1203.570000px;}
.y16a{bottom:1204.920000px;}
.h20{height:13.200074px;}
.h1c{height:32.273438px;}
.h29{height:34.855313px;}
.h24{height:37.759922px;}
.h2d{height:40.763672px;}
.h22{height:42.830156px;}
.h27{height:42.923672px;}
.h7{height:43.227598px;}
.h2c{height:44.797033px;}
.h26{height:46.116000px;}
.h3{height:47.137746px;}
.h23{height:48.304688px;}
.h12{height:48.410156px;}
.h2a{height:48.428876px;}
.h11{height:48.752930px;}
.h1b{height:48.805664px;}
.h21{height:49.898438px;}
.h2f{height:50.063344px;}
.h2{height:53.394581px;}
.h1f{height:53.779219px;}
.h16{height:53.896641px;}
.h17{height:54.278262px;}
.hb{height:54.331699px;}
.h19{height:54.336853px;}
.h15{height:54.336973px;}
.h18{height:54.337093px;}
.h28{height:55.598872px;}
.h2e{height:55.735312px;}
.h8{height:56.478516px;}
.h9{height:56.878418px;}
.h2b{height:58.824620px;}
.hf{height:59.060391px;}
.he{height:59.478574px;}
.h10{height:59.542910px;}
.ha{height:65.003906px;}
.hd{height:65.074219px;}
.h5{height:68.633005px;}
.hc{height:75.729551px;}
.h14{height:86.780215px;}
.h13{height:86.870215px;}
.h1d{height:97.505859px;}
.h1e{height:97.611328px;}
.h4{height:283.853641px;}
.h25{height:652.140000px;}
.h0{height:1262.835000px;}
.h6{height:1262.880000px;}
.h1a{height:1262.970000px;}
.h1{height:1263.000000px;}
.w4{width:56.719500px;}
.w5{width:631.980000px;}
.w0{width:892.914000px;}
.w2{width:892.980000px;}
.w3{width:893.070000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:127.620000px;}
.x12{left:132.930000px;}
.xf{left:141.480000px;}
.x6{left:154.620000px;}
.x24{left:159.300000px;}
.xc{left:165.159000px;}
.x10{left:170.190000px;}
.x13{left:175.500000px;}
.x7{left:181.628910px;}
.xe{left:189.000000px;}
.x1a{left:205.110000px;}
.x1d{left:214.037730px;}
.x22{left:219.150000px;}
.x1e{left:223.494030px;}
.x18{left:233.100000px;}
.x5{left:235.113750px;}
.x20{left:247.050000px;}
.x2{left:250.254000px;}
.xd{left:265.788000px;}
.x1b{left:309.235050px;}
.x3{left:366.659700px;}
.x1{left:367.987500px;}
.x8{left:385.204500px;}
.x16{left:408.420000px;}
.x11{left:418.175262px;}
.xb{left:446.496450px;}
.x15{left:455.400000px;}
.x9{left:481.068000px;}
.xa{left:587.556000px;}
.x25{left:628.164090px;}
.x1f{left:639.180000px;}
.x21{left:642.420000px;}
.x17{left:692.910000px;}
.x1c{left:713.160000px;}
.x23{left:728.190000px;}
.x14{left:765.540000px;}
.x19{left:766.620000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.008960pt;}
.v1{vertical-align:18.438720pt;}
.v3{vertical-align:21.411520pt;}
.ls6{letter-spacing:-2.624165pt;}
.ls8c{letter-spacing:-0.624000pt;}
.ls3c{letter-spacing:-0.586667pt;}
.ls1d{letter-spacing:-0.432000pt;}
.ls2f{letter-spacing:-0.427520pt;}
.ls40{letter-spacing:-0.426667pt;}
.ls33{letter-spacing:-0.374080pt;}
.ls3e{letter-spacing:-0.373333pt;}
.ls6d{letter-spacing:-0.336960pt;}
.ls30{letter-spacing:-0.320640pt;}
.ls2e{letter-spacing:-0.267200pt;}
.ls3f{letter-spacing:-0.266667pt;}
.ls57{letter-spacing:-0.255360pt;}
.ls4e{letter-spacing:-0.213760pt;}
.ls4b{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.160320pt;}
.ls5b{letter-spacing:-0.149760pt;}
.ls1a{letter-spacing:-0.144000pt;}
.ls17{letter-spacing:-0.117120pt;}
.lsd{letter-spacing:-0.112000pt;}
.ls27{letter-spacing:-0.106880pt;}
.ls3b{letter-spacing:-0.106667pt;}
.ls1b{letter-spacing:-0.096000pt;}
.ls59{letter-spacing:-0.085120pt;}
.ls14{letter-spacing:-0.074560pt;}
.ls15{letter-spacing:-0.064000pt;}
.ls16{letter-spacing:-0.058560pt;}
.ls28{letter-spacing:-0.053440pt;}
.ls3d{letter-spacing:-0.053333pt;}
.ls5a{letter-spacing:-0.037440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls38{letter-spacing:0.001707pt;}
.ls31{letter-spacing:0.016032pt;}
.ls86{letter-spacing:0.019200pt;}
.ls49{letter-spacing:0.042752pt;}
.ls2a{letter-spacing:0.048096pt;}
.ls36{letter-spacing:0.053333pt;}
.ls24{letter-spacing:0.053440pt;}
.ls8{letter-spacing:0.056000pt;}
.ls10{letter-spacing:0.058560pt;}
.ls32{letter-spacing:0.058784pt;}
.ls2d{letter-spacing:0.064128pt;}
.ls2b{letter-spacing:0.074816pt;}
.ls13{letter-spacing:0.076128pt;}
.ls23{letter-spacing:0.080160pt;}
.ls26{letter-spacing:0.085440pt;}
.ls19{letter-spacing:0.096000pt;}
.ls2c{letter-spacing:0.096192pt;}
.ls39{letter-spacing:0.106667pt;}
.ls21{letter-spacing:0.106880pt;}
.ls9{letter-spacing:0.112000pt;}
.ls34{letter-spacing:0.112224pt;}
.ls4f{letter-spacing:0.117120pt;}
.ls22{letter-spacing:0.117568pt;}
.ls83{letter-spacing:0.124800pt;}
.lsf{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.144000pt;}
.lse{letter-spacing:0.149120pt;}
.ls51{letter-spacing:0.149760pt;}
.ls88{letter-spacing:0.158400pt;}
.ls35{letter-spacing:0.160320pt;}
.ls47{letter-spacing:0.160533pt;}
.ls5{letter-spacing:0.166980pt;}
.ls1e{letter-spacing:0.192000pt;}
.ls37{letter-spacing:0.213333pt;}
.ls65{letter-spacing:0.213760pt;}
.lsc{letter-spacing:0.224000pt;}
.ls41{letter-spacing:0.240000pt;}
.lsa{letter-spacing:0.252000pt;}
.ls4c{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.280000pt;}
.ls4a{letter-spacing:0.288000pt;}
.ls11{letter-spacing:0.292800pt;}
.ls85{letter-spacing:0.297600pt;}
.ls18{letter-spacing:0.336000pt;}
.ls58{letter-spacing:0.340480pt;}
.ls12{letter-spacing:0.351360pt;}
.ls6a{letter-spacing:0.374080pt;}
.ls42{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.426667pt;}
.ls4d{letter-spacing:0.432000pt;}
.ls89{letter-spacing:0.480000pt;}
.ls74{letter-spacing:0.480960pt;}
.ls84{letter-spacing:0.499200pt;}
.ls1f{letter-spacing:0.672000pt;}
.ls7a{letter-spacing:0.764192pt;}
.ls87{letter-spacing:0.777600pt;}
.ls7e{letter-spacing:0.780224pt;}
.ls6b{letter-spacing:0.786240pt;}
.ls53{letter-spacing:0.801600pt;}
.ls66{letter-spacing:1.122240pt;}
.ls69{letter-spacing:1.123200pt;}
.ls2{letter-spacing:1.273856pt;}
.ls3{letter-spacing:1.378556pt;}
.ls54{letter-spacing:1.405472pt;}
.ls6c{letter-spacing:1.422720pt;}
.ls1{letter-spacing:1.493325pt;}
.ls0{letter-spacing:1.497850pt;}
.ls7{letter-spacing:1.628674pt;}
.ls52{letter-spacing:2.014688pt;}
.ls80{letter-spacing:2.030720pt;}
.ls56{letter-spacing:2.084160pt;}
.ls67{letter-spacing:2.100192pt;}
.ls71{letter-spacing:2.111616pt;}
.ls70{letter-spacing:2.396160pt;}
.ls68{letter-spacing:2.404800pt;}
.ls5e{letter-spacing:2.725440pt;}
.ls44{letter-spacing:3.046080pt;}
.ls5d{letter-spacing:3.051424pt;}
.ls43{letter-spacing:3.254496pt;}
.ls5f{letter-spacing:3.366720pt;}
.ls46{letter-spacing:3.687360pt;}
.ls76{letter-spacing:3.703392pt;}
.ls8b{letter-spacing:4.006080pt;}
.ls77{letter-spacing:4.350016pt;}
.ls6e{letter-spacing:5.873056pt;}
.ls73{letter-spacing:5.894432pt;}
.ls7f{letter-spacing:5.974592pt;}
.ls8a{letter-spacing:6.176000pt;}
.ls25{letter-spacing:6.893760pt;}
.ls7b{letter-spacing:7.535040pt;}
.ls82{letter-spacing:8.176320pt;}
.ls55{letter-spacing:8.496960pt;}
.ls81{letter-spacing:8.785536pt;}
.ls72{letter-spacing:9.138240pt;}
.ls64{letter-spacing:10.741440pt;}
.ls45{letter-spacing:11.062080pt;}
.ls61{letter-spacing:11.313248pt;}
.ls62{letter-spacing:11.361344pt;}
.ls63{letter-spacing:11.382720pt;}
.ls78{letter-spacing:11.954528pt;}
.ls79{letter-spacing:12.681312pt;}
.ls6f{letter-spacing:13.306560pt;}
.ls7d{letter-spacing:14.268480pt;}
.ls75{letter-spacing:16.833600pt;}
.ls5c{letter-spacing:17.758112pt;}
.ls60{letter-spacing:21.322560pt;}
.ls48{letter-spacing:22.883008pt;}
.ls50{letter-spacing:25.335904pt;}
.ls20{letter-spacing:36.659840pt;}
.ls7c{letter-spacing:56.486080pt;}
.ws6c{word-spacing:-26.784000pt;}
.ws6b{word-spacing:-26.592000pt;}
.ws29{word-spacing:-23.837760pt;}
.ws10{word-spacing:-17.728000pt;}
.ws12{word-spacing:-16.572480pt;}
.ws6d{word-spacing:-16.338240pt;}
.ws13{word-spacing:-16.279680pt;}
.ws11{word-spacing:-16.221120pt;}
.ws14{word-spacing:-16.162560pt;}
.wsa{word-spacing:-15.680000pt;}
.ws9{word-spacing:-15.624000pt;}
.ws8{word-spacing:-15.568000pt;}
.ws7{word-spacing:-15.456000pt;}
.ws3c{word-spacing:-15.016640pt;}
.ws3d{word-spacing:-14.963200pt;}
.ws2a{word-spacing:-14.909760pt;}
.ws40{word-spacing:-14.909653pt;}
.ws2b{word-spacing:-14.856320pt;}
.ws34{word-spacing:-14.802880pt;}
.ws41{word-spacing:-14.749653pt;}
.ws2c{word-spacing:-14.749440pt;}
.ws2d{word-spacing:-14.696000pt;}
.ws6e{word-spacing:-14.642560pt;}
.ws36{word-spacing:-14.589120pt;}
.ws35{word-spacing:-14.535680pt;}
.wsaf{word-spacing:-14.482240pt;}
.wsee{word-spacing:-14.428800pt;}
.ws67{word-spacing:-13.632000pt;}
.ws68{word-spacing:-13.584000pt;}
.wsf5{word-spacing:-13.536000pt;}
.ws1e{word-spacing:-13.488000pt;}
.ws1d{word-spacing:-13.440000pt;}
.ws1b{word-spacing:-13.344000pt;}
.ws1a{word-spacing:-13.248000pt;}
.ws1c{word-spacing:-13.200000pt;}
.ws1f{word-spacing:-12.912000pt;}
.wsf3{word-spacing:-12.720000pt;}
.wsf4{word-spacing:-12.000000pt;}
.ws95{word-spacing:-11.746560pt;}
.ws94{word-spacing:-11.576320pt;}
.ws8d{word-spacing:-10.558080pt;}
.wsbe{word-spacing:-10.408320pt;}
.wsbd{word-spacing:-9.607680pt;}
.ws6a{word-spacing:-9.152000pt;}
.ws69{word-spacing:-8.896000pt;}
.wsd9{word-spacing:-8.640000pt;}
.wsc7{word-spacing:-8.461440pt;}
.wsea{word-spacing:-4.008000pt;}
.ws85{word-spacing:-3.687360pt;}
.ws84{word-spacing:-3.366720pt;}
.wsa1{word-spacing:-3.046080pt;}
.ws78{word-spacing:-2.725440pt;}
.wsb6{word-spacing:-2.404800pt;}
.ws8f{word-spacing:-2.396160pt;}
.wsd8{word-spacing:-2.244480pt;}
.ws7b{word-spacing:-2.084160pt;}
.wsc2{word-spacing:-1.870400pt;}
.ws87{word-spacing:-1.763520pt;}
.ws5{word-spacing:-1.628674pt;}
.ws0{word-spacing:-1.497850pt;}
.ws2{word-spacing:-1.493325pt;}
.ws82{word-spacing:-1.442880pt;}
.ws6{word-spacing:-1.378556pt;}
.ws8a{word-spacing:-1.282560pt;}
.ws4{word-spacing:-1.273856pt;}
.ws7c{word-spacing:-1.122240pt;}
.ws93{word-spacing:-1.068800pt;}
.wsd5{word-spacing:-0.908480pt;}
.wsca{word-spacing:-0.801600pt;}
.ws48{word-spacing:-0.698667pt;}
.wscb{word-spacing:-0.641280pt;}
.wsd2{word-spacing:-0.636480pt;}
.wsf0{word-spacing:-0.587840pt;}
.ws4e{word-spacing:-0.576000pt;}
.ws39{word-spacing:-0.534400pt;}
.ws5e{word-spacing:-0.512000pt;}
.ws51{word-spacing:-0.485333pt;}
.ws33{word-spacing:-0.480960pt;}
.ws4c{word-spacing:-0.480000pt;}
.ws70{word-spacing:-0.432000pt;}
.ws32{word-spacing:-0.427520pt;}
.ws64{word-spacing:-0.426667pt;}
.ws5a{word-spacing:-0.384000pt;}
.ws46{word-spacing:-0.378667pt;}
.wsc4{word-spacing:-0.374080pt;}
.ws65{word-spacing:-0.373333pt;}
.ws49{word-spacing:-0.368000pt;}
.ws96{word-spacing:-0.340480pt;}
.ws27{word-spacing:-0.336000pt;}
.ws92{word-spacing:-0.267200pt;}
.ws5d{word-spacing:-0.266667pt;}
.ws59{word-spacing:-0.256000pt;}
.ws55{word-spacing:-0.250667pt;}
.ws4b{word-spacing:-0.229333pt;}
.ws3b{word-spacing:-0.213760pt;}
.ws50{word-spacing:-0.213333pt;}
.ws4d{word-spacing:-0.192000pt;}
.ws45{word-spacing:-0.186667pt;}
.ws57{word-spacing:-0.165333pt;}
.ws30{word-spacing:-0.160320pt;}
.ws44{word-spacing:-0.160000pt;}
.ws8e{word-spacing:-0.149760pt;}
.ws5b{word-spacing:-0.133333pt;}
.ws61{word-spacing:-0.122667pt;}
.ws58{word-spacing:-0.117333pt;}
.wsc5{word-spacing:-0.117120pt;}
.ws98{word-spacing:-0.112320pt;}
.wsc{word-spacing:-0.112000pt;}
.ws2e{word-spacing:-0.106880pt;}
.ws42{word-spacing:-0.106667pt;}
.ws26{word-spacing:-0.096000pt;}
.ws47{word-spacing:-0.085333pt;}
.ws54{word-spacing:-0.080000pt;}
.ws6f{word-spacing:-0.064000pt;}
.ws4f{word-spacing:-0.058667pt;}
.ws18{word-spacing:-0.058560pt;}
.ws31{word-spacing:-0.053440pt;}
.ws4a{word-spacing:-0.053333pt;}
.ws23{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.032582pt;}
.wsfd{word-spacing:0.037440pt;}
.ws56{word-spacing:0.053333pt;}
.ws3e{word-spacing:0.053440pt;}
.wse{word-spacing:0.056000pt;}
.ws19{word-spacing:0.058560pt;}
.ws16{word-spacing:0.064000pt;}
.ws21{word-spacing:0.096000pt;}
.ws43{word-spacing:0.106667pt;}
.ws2f{word-spacing:0.106880pt;}
.wsd{word-spacing:0.112000pt;}
.ws17{word-spacing:0.117120pt;}
.ws60{word-spacing:0.128000pt;}
.wsf7{word-spacing:0.144000pt;}
.ws15{word-spacing:0.149120pt;}
.ws99{word-spacing:0.149760pt;}
.ws5f{word-spacing:0.160000pt;}
.ws37{word-spacing:0.160320pt;}
.ws97{word-spacing:0.187200pt;}
.ws24{word-spacing:0.192000pt;}
.ws63{word-spacing:0.197333pt;}
.ws77{word-spacing:0.213760pt;}
.wsb{word-spacing:0.224000pt;}
.ws20{word-spacing:0.240000pt;}
.ws62{word-spacing:0.266667pt;}
.ws3a{word-spacing:0.267200pt;}
.ws9a{word-spacing:0.299520pt;}
.wscd{word-spacing:0.336960pt;}
.wsde{word-spacing:0.340480pt;}
.ws5c{word-spacing:0.373333pt;}
.wsba{word-spacing:0.374080pt;}
.ws38{word-spacing:0.427520pt;}
.wsf8{word-spacing:0.432000pt;}
.wsb8{word-spacing:0.480960pt;}
.wsd6{word-spacing:0.512000pt;}
.wsce{word-spacing:0.524160pt;}
.wsf{word-spacing:0.560000pt;}
.ws22{word-spacing:0.576000pt;}
.wsf6{word-spacing:0.624000pt;}
.wsf9{word-spacing:0.720000pt;}
.ws53{word-spacing:0.800000pt;}
.wsa0{word-spacing:0.801600pt;}
.wscf{word-spacing:0.823680pt;}
.ws9c{word-spacing:1.122240pt;}
.wsd0{word-spacing:1.123200pt;}
.wsc6{word-spacing:1.160640pt;}
.ws52{word-spacing:1.408000pt;}
.ws79{word-spacing:1.442880pt;}
.wsd1{word-spacing:1.460160pt;}
.wsa2{word-spacing:1.763520pt;}
.ws91{word-spacing:2.084160pt;}
.wsdd{word-spacing:2.134080pt;}
.wsae{word-spacing:2.244480pt;}
.wsa3{word-spacing:2.404800pt;}
.wsdc{word-spacing:2.433600pt;}
.wsec{word-spacing:2.565120pt;}
.wsc9{word-spacing:2.618560pt;}
.wsb2{word-spacing:2.725440pt;}
.wsc8{word-spacing:2.885760pt;}
.ws73{word-spacing:3.046080pt;}
.ws72{word-spacing:3.366720pt;}
.wse8{word-spacing:3.527040pt;}
.ws7a{word-spacing:3.687360pt;}
.wsb7{word-spacing:4.008000pt;}
.wsfc{word-spacing:4.043520pt;}
.wsa9{word-spacing:4.275200pt;}
.wsab{word-spacing:4.595840pt;}
.wsaa{word-spacing:4.756160pt;}
.wsbf{word-spacing:4.916480pt;}
.wsfb{word-spacing:4.979520pt;}
.wsa8{word-spacing:5.237120pt;}
.wsfa{word-spacing:5.279040pt;}
.wscc{word-spacing:5.397440pt;}
.wsbb{word-spacing:5.557760pt;}
.ws71{word-spacing:5.878400pt;}
.wsd3{word-spacing:6.092160pt;}
.wsa7{word-spacing:6.199040pt;}
.wsb3{word-spacing:6.519680pt;}
.ws66{word-spacing:6.626560pt;}
.ws3f{word-spacing:6.686080pt;}
.wsb4{word-spacing:6.840320pt;}
.wseb{word-spacing:7.160960pt;}
.wsef{word-spacing:7.321280pt;}
.wsc1{word-spacing:7.481600pt;}
.ws89{word-spacing:7.802240pt;}
.wsa5{word-spacing:8.122880pt;}
.wsa6{word-spacing:8.283200pt;}
.ws9d{word-spacing:8.443520pt;}
.wsf2{word-spacing:8.764160pt;}
.wsa4{word-spacing:9.084800pt;}
.wsf1{word-spacing:9.245120pt;}
.wsdf{word-spacing:9.298560pt;}
.ws7e{word-spacing:9.405440pt;}
.ws7d{word-spacing:9.565760pt;}
.wsda{word-spacing:9.726080pt;}
.wse4{word-spacing:10.046720pt;}
.ws28{word-spacing:10.176000pt;}
.ws9b{word-spacing:10.367360pt;}
.wse2{word-spacing:10.688000pt;}
.ws75{word-spacing:11.008640pt;}
.ws76{word-spacing:11.329280pt;}
.wsac{word-spacing:11.649920pt;}
.wse6{word-spacing:11.970560pt;}
.wse9{word-spacing:12.611840pt;}
.wsbc{word-spacing:12.932480pt;}
.wsd7{word-spacing:13.253120pt;}
.ws8c{word-spacing:13.573760pt;}
.wsb5{word-spacing:13.894400pt;}
.wsc3{word-spacing:14.215040pt;}
.ws9e{word-spacing:14.535680pt;}
.wsd4{word-spacing:14.856320pt;}
.wsb0{word-spacing:15.176960pt;}
.ws74{word-spacing:15.497600pt;}
.ws86{word-spacing:15.818240pt;}
.ws8b{word-spacing:16.138880pt;}
.wse5{word-spacing:16.459520pt;}
.wse3{word-spacing:16.780160pt;}
.ws25{word-spacing:17.232000pt;}
.wsc0{word-spacing:17.421440pt;}
.wsb1{word-spacing:17.742080pt;}
.ws9f{word-spacing:18.062720pt;}
.wsed{word-spacing:19.345280pt;}
.wse0{word-spacing:19.879680pt;}
.wse1{word-spacing:19.986560pt;}
.ws88{word-spacing:20.307200pt;}
.wsad{word-spacing:20.948480pt;}
.wsb9{word-spacing:21.589760pt;}
.wse7{word-spacing:21.910400pt;}
.ws83{word-spacing:22.872320pt;}
.wsdb{word-spacing:24.475520pt;}
.ws90{word-spacing:25.437440pt;}
.ws81{word-spacing:28.323200pt;}
.ws80{word-spacing:37.888960pt;}
.ws7f{word-spacing:38.209600pt;}
._1c{margin-left:-7.964676pt;}
._1a{margin-left:-5.914560pt;}
._7{margin-left:-4.760000pt;}
._2{margin-left:-2.787540pt;}
._0{margin-left:-1.683384pt;}
._1{width:0.986499pt;}
._3{width:1.932272pt;}
._4{width:2.841842pt;}
._18{width:4.413105pt;}
._19{width:5.767239pt;}
._1d{width:7.214449pt;}
._11{width:8.205229pt;}
._1f{width:9.271864pt;}
._b{width:10.340664pt;}
._c{width:11.524858pt;}
._12{width:13.360000pt;}
._10{width:16.272504pt;}
._20{width:17.290029pt;}
._21{width:21.269120pt;}
._f{width:22.311224pt;}
._5{width:23.464000pt;}
._17{width:26.185600pt;}
._d{width:37.408000pt;}
._e{width:38.498200pt;}
._14{width:48.258744pt;}
._22{width:56.486080pt;}
._6{width:173.208000pt;}
._13{width:175.440000pt;}
._a{width:501.261537pt;}
._16{width:741.609920pt;}
._9{width:745.019840pt;}
._8{width:750.208000pt;}
._15{width:1194.437440pt;}
._1b{width:1641.624320pt;}
._1e{width:2015.869440pt;}
.fs11{font-size:26.560000pt;}
.fsc{font-size:32.000000pt;}
.fs10{font-size:34.560000pt;}
.fsf{font-size:37.440000pt;}
.fs1{font-size:40.726933pt;}
.fs4{font-size:42.560000pt;}
.fse{font-size:42.666667pt;}
.fs0{font-size:45.252267pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs3{font-size:58.166933pt;}
.fs7{font-size:58.560000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:74.560000pt;}
.fsa{font-size:85.440000pt;}
.fsd{font-size:96.000000pt;}
.fs2{font-size:245.249067pt;}
.y0{bottom:0.000000pt;}
.y169{bottom:2.245333pt;}
.y171{bottom:15.756080pt;}
.y193{bottom:15.760000pt;}
.y13e{bottom:19.683867pt;}
.y168{bottom:24.172241pt;}
.y170{bottom:37.760000pt;}
.y192{bottom:56.320000pt;}
.y16f{bottom:60.320000pt;}
.y13d{bottom:70.720000pt;}
.ya6{bottom:71.056000pt;}
.y10e{bottom:74.951200pt;}
.y16e{bottom:75.512000pt;}
.y110{bottom:79.186320pt;}
.y77{bottom:85.064000pt;}
.ya5{bottom:85.696000pt;}
.ydd{bottom:87.877520pt;}
.y10d{bottom:92.626480pt;}
.y76{bottom:99.704000pt;}
.ydc{bottom:105.472640pt;}
.ya4{bottom:108.412000pt;}
.y10f{bottom:110.141440pt;}
.y10c{bottom:110.221600pt;}
.y212{bottom:116.160000pt;}
.y1ee{bottom:117.087200pt;}
.y2d9{bottom:117.518080pt;}
.y24f{bottom:119.930480pt;}
.y233{bottom:121.776400pt;}
.y75{bottom:122.420000pt;}
.ya3{bottom:123.052000pt;}
.ydb{bottom:123.067760pt;}
.y244{bottom:125.515840pt;}
.y21d{bottom:125.517760pt;}
.y133{bottom:127.841333pt;}
.y10b{bottom:127.896880pt;}
.y2d8{bottom:130.397440pt;}
.y291{bottom:130.661440pt;}
.y229{bottom:130.804880pt;}
.y27b{bottom:131.792800pt;}
.y167{bottom:132.767360pt;}
.y1c0{bottom:133.176400pt;}
.y18e{bottom:135.200000pt;}
.y1ed{bottom:135.483920pt;}
.y74{bottom:137.060000pt;}
.y21c{bottom:138.397120pt;}
.y232{bottom:140.173120pt;}
.yda{bottom:140.743040pt;}
.y211{bottom:140.875840pt;}
.y2bb{bottom:144.573120pt;}
.y243{bottom:144.720000pt;}
.y132{bottom:145.476000pt;}
.y10a{bottom:145.492000pt;}
.y228{bottom:145.520000pt;}
.ya2{bottom:145.696000pt;}
.y24e{bottom:146.329840pt;}
.y2d7{bottom:148.400000pt;}
.y27a{bottom:150.189520pt;}
.y166{bottom:151.164080pt;}
.y21b{bottom:151.276480pt;}
.y290{bottom:151.462960pt;}
.y1bf{bottom:151.573120pt;}
.y242{bottom:156.560000pt;}
.yd9{bottom:158.338160pt;}
.y231{bottom:158.569840pt;}
.y2d6{bottom:159.600000pt;}
.y73{bottom:159.704000pt;}
.y210{bottom:160.080000pt;}
.ya1{bottom:160.420000pt;}
.y1ec{bottom:161.883280pt;}
.y2ba{bottom:162.969840pt;}
.y109{bottom:163.087120pt;}
.y131{bottom:163.110667pt;}
.y21a{bottom:164.155840pt;}
.y24d{bottom:164.726560pt;}
.y227{bottom:167.200000pt;}
.y279{bottom:168.586240pt;}
.y28f{bottom:169.859680pt;}
.y1be{bottom:169.969840pt;}
.y20f{bottom:171.920000pt;}
.y17a{bottom:174.161280pt;}
.y72{bottom:174.428000pt;}
.yd8{bottom:176.013440pt;}
.y230{bottom:176.966560pt;}
.y165{bottom:177.563440pt;}
.y1eb{bottom:180.280000pt;}
.y108{bottom:180.762400pt;}
.y2b9{bottom:181.366560pt;}
.y31{bottom:182.320000pt;}
.ya0{bottom:183.064000pt;}
.y24c{bottom:183.123280pt;}
.y219{bottom:183.360000pt;}
.y278{bottom:186.982960pt;}
.y28e{bottom:188.256400pt;}
.y1bd{bottom:188.366560pt;}
.yd7{bottom:193.608560pt;}
.y218{bottom:195.200000pt;}
.y22f{bottom:195.363280pt;}
.y164{bottom:195.960160pt;}
.y71{bottom:197.072000pt;}
.y9f{bottom:197.704000pt;}
.y107{bottom:198.357520pt;}
.y130{bottom:198.381333pt;}
.y1ea{bottom:198.676720pt;}
.y30{bottom:199.684000pt;}
.y2b8{bottom:199.763280pt;}
.y179{bottom:200.560640pt;}
.y24b{bottom:201.520000pt;}
.y277{bottom:205.379680pt;}
.y28d{bottom:206.653120pt;}
.y20e{bottom:210.413760pt;}
.yd6{bottom:211.203680pt;}
.y70{bottom:211.712000pt;}
.y22e{bottom:213.760000pt;}
.y1bc{bottom:214.765920pt;}
.y12f{bottom:216.002667pt;}
.y106{bottom:216.032800pt;}
.y2f{bottom:216.960000pt;}
.y1e9{bottom:217.073440pt;}
.y2b7{bottom:218.160000pt;}
.y9e{bottom:220.420000pt;}
.y163{bottom:222.359520pt;}
.y276{bottom:223.776400pt;}
.y28c{bottom:225.049840pt;}
.y24a{bottom:226.800000pt;}
.y178{bottom:226.960000pt;}
.y20d{bottom:228.810480pt;}
.yd5{bottom:228.878960pt;}
.y1bb{bottom:233.162640pt;}
.y12e{bottom:233.624000pt;}
.y105{bottom:233.627920pt;}
.y2e{bottom:234.320000pt;}
.y6f{bottom:234.428000pt;}
.y9d{bottom:235.060000pt;}
.y1e8{bottom:235.470160pt;}
.y22d{bottom:239.040720pt;}
.y162{bottom:240.676080pt;}
.y275{bottom:242.173120pt;}
.y28b{bottom:243.446560pt;}
.y17b{bottom:244.800000pt;}
.y2b6{bottom:245.760000pt;}
.yd4{bottom:246.474080pt;}
.y217{bottom:247.200000pt;}
.y20c{bottom:247.207200pt;}
.y6e{bottom:249.068000pt;}
.y104{bottom:251.223040pt;}
.y12d{bottom:251.245333pt;}
.y1ba{bottom:251.559360pt;}
.y2d{bottom:251.680000pt;}
.y249{bottom:252.320000pt;}
.y1e7{bottom:253.866880pt;}
.y9c{bottom:257.704000pt;}
.y161{bottom:259.072800pt;}
.y22c{bottom:259.437600pt;}
.y274{bottom:260.569840pt;}
.y28a{bottom:261.843280pt;}
.yd3{bottom:264.149360pt;}
.y20b{bottom:265.603920pt;}
.y216{bottom:268.720000pt;}
.y4a{bottom:268.722320pt;}
.y103{bottom:268.898320pt;}
.y2c{bottom:268.960000pt;}
.y1b9{bottom:269.956080pt;}
.y6d{bottom:271.712000pt;}
.y1e6{bottom:272.263600pt;}
.y9b{bottom:272.428000pt;}
.y2b5{bottom:275.840000pt;}
.y160{bottom:277.469520pt;}
.y273{bottom:278.966560pt;}
.y289{bottom:280.240000pt;}
.y241{bottom:281.470960pt;}
.yd2{bottom:281.744480pt;}
.y20a{bottom:284.000640pt;}
.y2b{bottom:286.362000pt;}
.y6c{bottom:286.436000pt;}
.y102{bottom:286.493440pt;}
.y12c{bottom:286.501333pt;}
.y1b8{bottom:288.352800pt;}
.y49{bottom:289.760000pt;}
.y1e5{bottom:290.660320pt;}
.y9a{bottom:295.072000pt;}
.y15f{bottom:295.866240pt;}
.y272{bottom:297.363280pt;}
.yd1{bottom:299.339600pt;}
.y2a{bottom:303.722000pt;}
.y12b{bottom:304.136000pt;}
.y101{bottom:304.168720pt;}
.y2b4{bottom:304.819120pt;}
.y288{bottom:305.520000pt;}
.y1b7{bottom:306.749520pt;}
.y240{bottom:307.870320pt;}
.y1e4{bottom:309.057040pt;}
.y6b{bottom:309.080000pt;}
.y99{bottom:309.712000pt;}
.y209{bottom:310.400000pt;}
.y15e{bottom:314.262960pt;}
.y271{bottom:315.760000pt;}
.yd0{bottom:317.014880pt;}
.y48{bottom:320.960000pt;}
.y29{bottom:320.998000pt;}
.y100{bottom:321.763840pt;}
.y12a{bottom:321.770667pt;}
.y2b3{bottom:323.215840pt;}
.y6a{bottom:323.720000pt;}
.y1b6{bottom:325.146240pt;}
.y23f{bottom:326.267040pt;}
.y208{bottom:328.796720pt;}
.y287{bottom:329.374800pt;}
.y98{bottom:332.428000pt;}
.y15d{bottom:332.659680pt;}
.ycf{bottom:334.610000pt;}
.y1e3{bottom:335.456400pt;}
.y28{bottom:338.358000pt;}
.yff{bottom:339.358960pt;}
.y2b2{bottom:341.612560pt;}
.y270{bottom:343.360000pt;}
.y1b5{bottom:343.542960pt;}
.y23e{bottom:344.663760pt;}
.y47{bottom:344.726240pt;}
.y69{bottom:346.436000pt;}
.y97{bottom:347.068000pt;}
.y207{bottom:347.193440pt;}
.y15c{bottom:351.056400pt;}
.yce{bottom:352.285280pt;}
.y1e2{bottom:353.853120pt;}
.y27{bottom:355.718000pt;}
.yfe{bottom:357.034240pt;}
.y129{bottom:357.041333pt;}
.y2b1{bottom:360.009280pt;}
.y68{bottom:361.076000pt;}
.y1b4{bottom:361.939680pt;}
.y23d{bottom:363.060480pt;}
.y206{bottom:365.590160pt;}
.y46{bottom:368.399120pt;}
.y15b{bottom:369.453120pt;}
.y96{bottom:369.712000pt;}
.ycd{bottom:369.880400pt;}
.y1e1{bottom:372.249840pt;}
.y26f{bottom:372.332160pt;}
.yfd{bottom:374.629360pt;}
.y128{bottom:374.676000pt;}
.y2b0{bottom:378.406000pt;}
.y26{bottom:381.002000pt;}
.y23c{bottom:381.457200pt;}
.y67{bottom:383.720000pt;}
.y205{bottom:383.986880pt;}
.y95{bottom:384.436000pt;}
.ycc{bottom:387.475520pt;}
.y15a{bottom:387.849840pt;}
.y1b3{bottom:388.339040pt;}
.y2d5{bottom:390.001280pt;}
.y1e0{bottom:390.646560pt;}
.y45{bottom:392.159840pt;}
.yfc{bottom:392.304640pt;}
.y127{bottom:392.310667pt;}
.y2af{bottom:396.802720pt;}
.y66{bottom:398.444000pt;}
.y26e{bottom:398.731520pt;}
.y23b{bottom:399.853920pt;}
.y204{bottom:402.383600pt;}
.ycb{bottom:405.150800pt;}
.y159{bottom:406.246560pt;}
.y25{bottom:406.356000pt;}
.y18d{bottom:406.400000pt;}
.y1b2{bottom:406.735760pt;}
.y94{bottom:407.080000pt;}
.y1df{bottom:409.043280pt;}
.yfb{bottom:409.899760pt;}
.y2d4{bottom:416.400640pt;}
.y248{bottom:417.040000pt;}
.y26d{bottom:417.128240pt;}
.y23a{bottom:418.250640pt;}
.y203{bottom:420.780320pt;}
.y65{bottom:421.088000pt;}
.y93{bottom:421.720000pt;}
.yca{bottom:422.745920pt;}
.y2ae{bottom:423.202080pt;}
.y24{bottom:423.716000pt;}
.y158{bottom:424.643280pt;}
.y18c{bottom:424.880000pt;}
.y1b1{bottom:425.132480pt;}
.y44{bottom:425.524400pt;}
.y1de{bottom:427.440000pt;}
.yfa{bottom:427.494880pt;}
.y126{bottom:427.501333pt;}
.y26c{bottom:435.524960pt;}
.y64{bottom:435.728000pt;}
.y202{bottom:439.177040pt;}
.yc9{bottom:440.421200pt;}
.y23{bottom:440.992000pt;}
.y2ad{bottom:441.598800pt;}
.y247{bottom:442.560000pt;}
.y2d3{bottom:442.800000pt;}
.y157{bottom:443.040000pt;}
.y1b0{bottom:443.529200pt;}
.y226{bottom:443.617040pt;}
.y92{bottom:444.436000pt;}
.y239{bottom:444.569840pt;}
.y125{bottom:445.136000pt;}
.yf9{bottom:445.170160pt;}
.y43{bottom:449.197280pt;}
.y18b{bottom:452.179040pt;}
.y26b{bottom:453.921680pt;}
.y1dd{bottom:455.040000pt;}
.y201{bottom:457.573760pt;}
.yc8{bottom:458.016320pt;}
.y22{bottom:458.352000pt;}
.y63{bottom:458.444000pt;}
.y91{bottom:459.076000pt;}
.y2ac{bottom:459.995520pt;}
.y1af{bottom:461.925920pt;}
.y225{bottom:462.013760pt;}
.y156{bottom:462.080000pt;}
.yf8{bottom:462.765280pt;}
.y124{bottom:462.770667pt;}
.y238{bottom:462.966560pt;}
.y2d2{bottom:468.648000pt;}
.y26a{bottom:472.318400pt;}
.y62{bottom:473.084000pt;}
.yc7{bottom:475.611440pt;}
.y21{bottom:475.712000pt;}
.y2ab{bottom:478.392240pt;}
.y18a{bottom:478.578400pt;}
.y1ae{bottom:480.322640pt;}
.y224{bottom:480.410480pt;}
.yf7{bottom:480.440560pt;}
.y237{bottom:481.363280pt;}
.y90{bottom:481.720000pt;}
.y42{bottom:482.561840pt;}
.y200{bottom:483.973120pt;}
.y1dc{bottom:484.003440pt;}
.y269{bottom:490.715120pt;}
.y155{bottom:491.720640pt;}
.y20{bottom:492.988000pt;}
.y2d1{bottom:493.212000pt;}
.yc6{bottom:493.286720pt;}
.y61{bottom:495.728000pt;}
.y8f{bottom:496.444000pt;}
.y2aa{bottom:496.788960pt;}
.yf6{bottom:498.035680pt;}
.y123{bottom:498.041333pt;}
.y1ad{bottom:498.719360pt;}
.y223{bottom:498.807200pt;}
.y236{bottom:499.760000pt;}
.y1ff{bottom:502.369840pt;}
.y22b{bottom:503.200000pt;}
.y189{bottom:504.977760pt;}
.y41{bottom:506.322560pt;}
.y268{bottom:509.111840pt;}
.y2d0{bottom:509.772000pt;}
.y1f{bottom:510.348000pt;}
.y1db{bottom:510.402800pt;}
.y60{bottom:510.452000pt;}
.yc5{bottom:510.881840pt;}
.y2a9{bottom:515.185680pt;}
.yf5{bottom:515.630800pt;}
.y122{bottom:515.662667pt;}
.y1ac{bottom:517.116080pt;}
.y222{bottom:517.203920pt;}
.y154{bottom:518.120000pt;}
.y8e{bottom:519.088000pt;}
.yb0{bottom:519.100000pt;}
.y1fe{bottom:520.766560pt;}
.y22a{bottom:524.800000pt;}
.y235{bottom:525.040000pt;}
.y267{bottom:527.508560pt;}
.y1e{bottom:527.708000pt;}
.yc4{bottom:528.557120pt;}
.y1da{bottom:528.799520pt;}
.y188{bottom:531.377120pt;}
.y5f{bottom:533.096000pt;}
.y121{bottom:533.284000pt;}
.yf4{bottom:533.306080pt;}
.y2a8{bottom:533.582400pt;}
.y8d{bottom:533.728000pt;}
.yaf{bottom:533.740000pt;}
.y2cf{bottom:534.336000pt;}
.y1ab{bottom:535.512800pt;}
.y221{bottom:535.600640pt;}
.y153{bottom:536.516720pt;}
.y1fd{bottom:539.163280pt;}
.y40{bottom:539.599280pt;}
.y1d{bottom:544.984000pt;}
.y266{bottom:545.905280pt;}
.y234{bottom:546.080000pt;}
.yc3{bottom:546.152240pt;}
.y1d9{bottom:547.196240pt;}
.y5e{bottom:547.736000pt;}
.y187{bottom:549.773840pt;}
.y2ce{bottom:550.896000pt;}
.yf3{bottom:550.901200pt;}
.y120{bottom:550.905333pt;}
.y2a7{bottom:551.979120pt;}
.y1aa{bottom:553.909520pt;}
.y8c{bottom:556.444000pt;}
.yae{bottom:556.456000pt;}
.y1fc{bottom:557.560000pt;}
.y220{bottom:562.000000pt;}
.y1c{bottom:562.344000pt;}
.y152{bottom:562.916080pt;}
.y3f{bottom:563.360000pt;}
.yc2{bottom:563.747360pt;}
.y265{bottom:564.302000pt;}
.y1d8{bottom:565.592960pt;}
.y17c{bottom:567.120000pt;}
.y2cd{bottom:567.456000pt;}
.yf2{bottom:568.576480pt;}
.y5d{bottom:570.452000pt;}
.y8b{bottom:571.084000pt;}
.yad{bottom:571.096000pt;}
.y1a9{bottom:572.306240pt;}
.y1fb{bottom:575.956720pt;}
.y186{bottom:576.173200pt;}
.y2a6{bottom:578.378480pt;}
.y1b{bottom:579.704000pt;}
.y151{bottom:581.312800pt;}
.yc1{bottom:581.422640pt;}
.y1d7{bottom:583.989680pt;}
.y5c{bottom:585.092000pt;}
.yac{bottom:585.736000pt;}
.yf1{bottom:586.171600pt;}
.y11f{bottom:586.176000pt;}
.y21f{bottom:587.280000pt;}
.y264{bottom:590.701360pt;}
.y1a8{bottom:590.702960pt;}
.y6{bottom:591.796526pt;}
.y2cc{bottom:592.092000pt;}
.y8a{bottom:593.728000pt;}
.y1fa{bottom:594.353440pt;}
.y3e{bottom:596.720000pt;}
.y2a5{bottom:596.775200pt;}
.y1a{bottom:596.980000pt;}
.yc0{bottom:599.017760pt;}
.y150{bottom:599.709520pt;}
.y1d6{bottom:602.386400pt;}
.y185{bottom:602.572560pt;}
.yf0{bottom:603.766720pt;}
.y11e{bottom:603.770667pt;}
.y5{bottom:606.916400pt;}
.y246{bottom:607.280000pt;}
.y5b{bottom:607.736000pt;}
.y21e{bottom:608.240000pt;}
.y89{bottom:608.452000pt;}
.y2cb{bottom:608.652000pt;}
.y263{bottom:609.098080pt;}
.y1a7{bottom:609.099680pt;}
.y1f9{bottom:612.750160pt;}
.y19{bottom:614.340000pt;}
.y2a4{bottom:615.171920pt;}
.ybf{bottom:616.693040pt;}
.y14f{bottom:618.106267pt;}
.y3d{bottom:620.392507pt;}
.y1d5{bottom:620.783120pt;}
.yef{bottom:621.442000pt;}
.y5a{bottom:622.460000pt;}
.yab{bottom:623.092000pt;}
.y2ca{bottom:625.212000pt;}
.y262{bottom:627.494800pt;}
.y1a6{bottom:627.496400pt;}
.y245{bottom:628.324000pt;}
.y184{bottom:628.891760pt;}
.y88{bottom:631.096000pt;}
.y1f8{bottom:631.146880pt;}
.y18{bottom:631.700000pt;}
.y2a3{bottom:633.568640pt;}
.ybe{bottom:634.288160pt;}
.y14e{bottom:636.502960pt;}
.y4{bottom:637.154486pt;}
.y139{bottom:638.956960pt;}
.yee{bottom:639.037120pt;}
.y11d{bottom:639.041333pt;}
.y1d4{bottom:639.179840pt;}
.y3c{bottom:644.153227pt;}
.y59{bottom:645.104000pt;}
.y87{bottom:645.736000pt;}
.y261{bottom:645.891520pt;}
.y1a5{bottom:645.893120pt;}
.y183{bottom:647.288480pt;}
.y17{bottom:648.976000pt;}
.y2c9{bottom:649.848000pt;}
.ybd{bottom:651.883280pt;}
.y3{bottom:652.274400pt;}
.y14d{bottom:654.899680pt;}
.y11c{bottom:656.662667pt;}
.yed{bottom:656.712400pt;}
.y1f7{bottom:657.546240pt;}
.y1d3{bottom:657.576560pt;}
.y58{bottom:659.744000pt;}
.y2a2{bottom:659.968000pt;}
.yaa{bottom:660.460000pt;}
.y260{bottom:664.288240pt;}
.y1a4{bottom:664.289840pt;}
.y16{bottom:666.336000pt;}
.y2c8{bottom:666.408000pt;}
.y3b{bottom:667.357627pt;}
.y86{bottom:668.452000pt;}
.ybc{bottom:669.558560pt;}
.y14c{bottom:673.296400pt;}
.y182{bottom:673.687840pt;}
.y11b{bottom:674.284000pt;}
.yec{bottom:674.307520pt;}
.y1f6{bottom:675.942960pt;}
.y1d2{bottom:675.973280pt;}
.y2a1{bottom:678.364720pt;}
.y57{bottom:682.460000pt;}
.y2{bottom:682.514486pt;}
.y25f{bottom:682.684960pt;}
.y2c7{bottom:682.884000pt;}
.y85{bottom:683.092000pt;}
.ya9{bottom:683.104000pt;}
.y15{bottom:683.696000pt;}
.ybb{bottom:687.153680pt;}
.y1a3{bottom:690.689200pt;}
.y14b{bottom:691.693120pt;}
.yeb{bottom:691.902640pt;}
.y138{bottom:691.902667pt;}
.y11a{bottom:691.905333pt;}
.y1f5{bottom:694.339680pt;}
.y1d1{bottom:694.370000pt;}
.y2a0{bottom:696.761440pt;}
.y56{bottom:697.100000pt;}
.y1{bottom:697.634400pt;}
.ya8{bottom:697.744000pt;}
.y3a{bottom:698.555467pt;}
.y181{bottom:700.087200pt;}
.y14{bottom:700.972000pt;}
.y25e{bottom:701.081680pt;}
.yba{bottom:704.828960pt;}
.y84{bottom:705.736000pt;}
.y2c6{bottom:707.520000pt;}
.y1a2{bottom:709.085920pt;}
.yea{bottom:709.577920pt;}
.y14a{bottom:710.089840pt;}
.y1f4{bottom:712.736400pt;}
.y1d0{bottom:712.766720pt;}
.y286{bottom:713.060640pt;}
.y29f{bottom:715.158160pt;}
.y13{bottom:718.332000pt;}
.y180{bottom:718.483920pt;}
.y25d{bottom:719.478400pt;}
.y55{bottom:719.744000pt;}
.y83{bottom:720.460000pt;}
.y39{bottom:721.759867pt;}
.yb9{bottom:722.424080pt;}
.ye9{bottom:727.173040pt;}
.y119{bottom:727.176000pt;}
.y1a1{bottom:727.482640pt;}
.y149{bottom:728.486560pt;}
.y1f3{bottom:731.133120pt;}
.y1cf{bottom:731.163440pt;}
.y285{bottom:731.457360pt;}
.y2c5{bottom:732.072000pt;}
.y54{bottom:734.468000pt;}
.ya7{bottom:735.100000pt;}
.y17f{bottom:736.880640pt;}
.y25c{bottom:737.875120pt;}
.yb8{bottom:740.019200pt;}
.y29e{bottom:741.557520pt;}
.y82{bottom:743.104000pt;}
.y12{bottom:743.616000pt;}
.y118{bottom:744.810667pt;}
.ye8{bottom:744.848320pt;}
.y7{bottom:745.800000pt;}
.y1a0{bottom:745.879360pt;}
.ya{bottom:746.518652pt;}
.y148{bottom:746.883280pt;}
.y1f2{bottom:749.529840pt;}
.y1ce{bottom:749.560160pt;}
.y284{bottom:749.854080pt;}
.y38{bottom:752.960000pt;}
.y25b{bottom:756.271840pt;}
.y2c4{bottom:756.636000pt;}
.y53{bottom:757.112000pt;}
.yb7{bottom:757.694480pt;}
.y81{bottom:757.744000pt;}
.y29d{bottom:759.954240pt;}
.y9{bottom:762.238265pt;}
.ye7{bottom:762.443440pt;}
.y137{bottom:762.443467pt;}
.y117{bottom:762.445333pt;}
.y17e{bottom:763.280000pt;}
.y19f{bottom:764.276080pt;}
.y147{bottom:765.280000pt;}
.y1f1{bottom:767.926560pt;}
.y1cd{bottom:767.956880pt;}
.y11{bottom:768.970000pt;}
.y52{bottom:771.752000pt;}
.y80{bottom:772.468000pt;}
.yb6{bottom:775.289600pt;}
.y283{bottom:777.135200pt;}
.y8{bottom:777.959333pt;}
.y29c{bottom:778.350960pt;}
.ye6{bottom:780.038560pt;}
.y2c3{bottom:781.200000pt;}
.y17d{bottom:782.320000pt;}
.y25a{bottom:782.671200pt;}
.y19e{bottom:782.672800pt;}
.y146{bottom:784.320000pt;}
.y1f0{bottom:786.323280pt;}
.y37{bottom:786.324000pt;}
.y1cc{bottom:786.353600pt;}
.yb5{bottom:792.964880pt;}
.y10{bottom:794.324000pt;}
.y51{bottom:794.468000pt;}
.y7f{bottom:795.112000pt;}
.y282{bottom:795.531920pt;}
.y29b{bottom:796.747680pt;}
.ye5{bottom:797.713840pt;}
.y136{bottom:797.713867pt;}
.y116{bottom:797.716000pt;}
.y2c2{bottom:797.760000pt;}
.y259{bottom:801.067920pt;}
.y19d{bottom:801.069520pt;}
.y1cb{bottom:804.750320pt;}
.y50{bottom:809.108000pt;}
.y7e{bottom:809.752000pt;}
.yb4{bottom:810.560000pt;}
.y145{bottom:813.360000pt;}
.y2c1{bottom:814.320000pt;}
.y29a{bottom:815.144400pt;}
.y135{bottom:815.308933pt;}
.ye4{bottom:815.308960pt;}
.y115{bottom:815.350667pt;}
.y258{bottom:819.464640pt;}
.y19c{bottom:819.466240pt;}
.y36{bottom:819.596400pt;}
.yf{bottom:819.608000pt;}
.y281{bottom:822.813040pt;}
.y1ca{bottom:823.147040pt;}
.y144{bottom:829.920000pt;}
.y2c0{bottom:830.960000pt;}
.y4f{bottom:831.752000pt;}
.y7d{bottom:832.468000pt;}
.ye3{bottom:832.984240pt;}
.y134{bottom:832.984267pt;}
.y114{bottom:832.985333pt;}
.y299{bottom:833.541120pt;}
.y257{bottom:837.861360pt;}
.y19b{bottom:837.862960pt;}
.y1c9{bottom:841.543760pt;}
.yb3{bottom:842.480000pt;}
.y177{bottom:843.840000pt;}
.ye{bottom:844.962000pt;}
.y4e{bottom:846.476000pt;}
.y143{bottom:847.040000pt;}
.y7c{bottom:847.108000pt;}
.y280{bottom:850.094160pt;}
.ye2{bottom:850.579360pt;}
.y298{bottom:851.937840pt;}
.y35{bottom:852.962000pt;}
.y2bf{bottom:855.596000pt;}
.y256{bottom:856.258080pt;}
.y19a{bottom:856.259680pt;}
.y1c8{bottom:859.940480pt;}
.y142{bottom:864.728000pt;}
.ye1{bottom:868.174480pt;}
.y113{bottom:868.176000pt;}
.y27f{bottom:868.490880pt;}
.y4d{bottom:869.120000pt;}
.y7b{bottom:869.752000pt;}
.yd{bottom:870.316000pt;}
.y297{bottom:870.334560pt;}
.y2be{bottom:872.156000pt;}
.y176{bottom:873.920000pt;}
.y255{bottom:874.654800pt;}
.y199{bottom:874.656400pt;}
.yb2{bottom:876.960000pt;}
.y1c7{bottom:878.337200pt;}
.y4c{bottom:883.760000pt;}
.y7a{bottom:884.476000pt;}
.y112{bottom:885.797333pt;}
.ye0{bottom:885.849760pt;}
.y34{bottom:886.327600pt;}
.y1ef{bottom:886.339840pt;}
.y27e{bottom:886.887600pt;}
.y296{bottom:888.731280pt;}
.y141{bottom:892.328000pt;}
.y254{bottom:893.051520pt;}
.y198{bottom:893.053120pt;}
.yc{bottom:895.600000pt;}
.y2bd{bottom:896.720000pt;}
.y215{bottom:901.603200pt;}
.y111{bottom:903.418667pt;}
.ydf{bottom:903.444880pt;}
.y175{bottom:904.000000pt;}
.y1c6{bottom:904.736560pt;}
.y79{bottom:907.120000pt;}
.y295{bottom:907.128000pt;}
.y253{bottom:911.448240pt;}
.y197{bottom:911.449840pt;}
.yb1{bottom:913.520000pt;}
.y27d{bottom:914.168720pt;}
.y4b{bottom:916.000000pt;}
.y33{bottom:919.600000pt;}
.y140{bottom:919.928000pt;}
.y214{bottom:919.999920pt;}
.yb{bottom:920.720000pt;}
.yde{bottom:921.040000pt;}
.y78{bottom:921.760000pt;}
.y2bc{bottom:923.040000pt;}
.y1c5{bottom:923.133280pt;}
.y294{bottom:925.524720pt;}
.y252{bottom:929.844960pt;}
.y196{bottom:929.846560pt;}
.y27c{bottom:932.645600pt;}
.y174{bottom:934.080000pt;}
.y213{bottom:940.087120pt;}
.y1c4{bottom:941.530000pt;}
.y13f{bottom:947.528000pt;}
.y251{bottom:948.241680pt;}
.y195{bottom:948.243280pt;}
.y293{bottom:951.924080pt;}
.y1c3{bottom:959.926720pt;}
.y173{bottom:964.160000pt;}
.y250{bottom:966.638400pt;}
.y194{bottom:966.640000pt;}
.y292{bottom:970.320800pt;}
.y1c2{bottom:978.323440pt;}
.y172{bottom:994.160000pt;}
.y1c1{bottom:996.640000pt;}
.y13c{bottom:1020.488000pt;}
.y16d{bottom:1031.516000pt;}
.y13b{bottom:1036.808000pt;}
.y191{bottom:1044.958880pt;}
.y16c{bottom:1045.280000pt;}
.y13a{bottom:1053.284000pt;}
.y190{bottom:1057.280000pt;}
.y16b{bottom:1058.804000pt;}
.y32{bottom:1061.280000pt;}
.y18f{bottom:1069.840000pt;}
.y16a{bottom:1071.040000pt;}
.h20{height:11.733399pt;}
.h1c{height:28.687500pt;}
.h29{height:30.982500pt;}
.h24{height:33.564375pt;}
.h2d{height:36.234375pt;}
.h22{height:38.071250pt;}
.h27{height:38.154375pt;}
.h7{height:38.424531pt;}
.h2c{height:39.819585pt;}
.h26{height:40.992000pt;}
.h3{height:41.900219pt;}
.h23{height:42.937500pt;}
.h12{height:43.031250pt;}
.h2a{height:43.047890pt;}
.h11{height:43.335938pt;}
.h1b{height:43.382812pt;}
.h21{height:44.354167pt;}
.h2f{height:44.500750pt;}
.h2{height:47.461850pt;}
.h1f{height:47.803750pt;}
.h16{height:47.908125pt;}
.h17{height:48.247344pt;}
.hb{height:48.294844pt;}
.h19{height:48.299425pt;}
.h15{height:48.299531pt;}
.h18{height:48.299638pt;}
.h28{height:49.421220pt;}
.h2e{height:49.542500pt;}
.h8{height:50.203125pt;}
.h9{height:50.558594pt;}
.h2b{height:52.288551pt;}
.hf{height:52.498125pt;}
.he{height:52.869844pt;}
.h10{height:52.927031pt;}
.ha{height:57.781250pt;}
.hd{height:57.843750pt;}
.h5{height:61.007116pt;}
.hc{height:67.315156pt;}
.h14{height:77.137969pt;}
.h13{height:77.217969pt;}
.h1d{height:86.671875pt;}
.h1e{height:86.765625pt;}
.h4{height:252.314347pt;}
.h25{height:579.680000pt;}
.h0{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h1a{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w4{width:50.417333pt;}
.w5{width:561.760000pt;}
.w0{width:793.701333pt;}
.w2{width:793.760000pt;}
.w3{width:793.840000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:113.440000pt;}
.x12{left:118.160000pt;}
.xf{left:125.760000pt;}
.x6{left:137.440000pt;}
.x24{left:141.600000pt;}
.xc{left:146.808000pt;}
.x10{left:151.280000pt;}
.x13{left:156.000000pt;}
.x7{left:161.447920pt;}
.xe{left:168.000000pt;}
.x1a{left:182.320000pt;}
.x1d{left:190.255760pt;}
.x22{left:194.800000pt;}
.x1e{left:198.661360pt;}
.x18{left:207.200000pt;}
.x5{left:208.990000pt;}
.x20{left:219.600000pt;}
.x2{left:222.448000pt;}
.xd{left:236.256000pt;}
.x1b{left:274.875600pt;}
.x3{left:325.919733pt;}
.x1{left:327.100000pt;}
.x8{left:342.404000pt;}
.x16{left:363.040000pt;}
.x11{left:371.711344pt;}
.xb{left:396.885733pt;}
.x15{left:404.800000pt;}
.x9{left:427.616000pt;}
.xa{left:522.272000pt;}
.x25{left:558.368080pt;}
.x1f{left:568.160000pt;}
.x21{left:571.040000pt;}
.x17{left:615.920000pt;}
.x1c{left:633.920000pt;}
.x23{left:647.280000pt;}
.x14{left:680.480000pt;}
.x19{left:681.440000pt;}
}




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