
    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_d9ea27e84cce53c155fa2ceb.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_edac9b80629478c37851bc59.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_21f89593881335393a75b5ca.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_e4022ec11ede9dba9eb27c5f.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_4de255a8ec264e9d475fd642.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_5922b9c5c61e157c947fc81f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.862793;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_a8643ed49ec83fce4c8ddd1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_63958dce67f5593471c0e449.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_2007389f540bedd5d928b1b2.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_a154fc9ced52560c406cf59a.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104492;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_b48a2265472f43c07c707dc0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.942383;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_416ff5c25ae174042df7e6e7.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_f2810148a2d4aeb6b6688d86.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_84d110c56c82340637b0bcb9.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_48701d4d85e638d8f8d6a3a5.woff2')format("woff");}.fff{font-family:fff;line-height:0.862793;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_247e244d16f90f34add63fab.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.102539;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_e44afd91b8df2ec134def54f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.709961;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_e6855c654c8197123b5fcf52.woff2')format("woff");}.ff12{font-family:ff12;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);}
.v1{vertical-align:-2.910240px;}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-12.360553px;}
.ls1d{letter-spacing:-1.126080px;}
.ls27{letter-spacing:-1.080000px;}
.ls3c{letter-spacing:-1.075680px;}
.ls1c{letter-spacing:-0.993600px;}
.ls56{letter-spacing:-0.836640px;}
.ls24{letter-spacing:-0.810000px;}
.ls98{letter-spacing:-0.702000px;}
.lsd{letter-spacing:-0.696960px;}
.ls11{letter-spacing:-0.506880px;}
.ls25{letter-spacing:-0.486000px;}
.ls10{letter-spacing:-0.380160px;}
.ls55{letter-spacing:-0.358560px;}
.ls16{letter-spacing:-0.336960px;}
.ls19{letter-spacing:-0.331200px;}
.lsc{letter-spacing:-0.316800px;}
.ls6f{letter-spacing:-0.300600px;}
.ls3b{letter-spacing:-0.298800px;}
.ls77{letter-spacing:-0.288000px;}
.ls1e{letter-spacing:-0.264960px;}
.ls76{letter-spacing:-0.252000px;}
.ls3a{letter-spacing:-0.239040px;}
.ls69{letter-spacing:-0.216000px;}
.ls6d{letter-spacing:-0.180360px;}
.ls84{letter-spacing:-0.168480px;}
.ls6c{letter-spacing:-0.162000px;}
.ls1a{letter-spacing:-0.132480px;}
.ls6b{letter-spacing:-0.120240px;}
.ls38{letter-spacing:-0.119520px;}
.ls22{letter-spacing:-0.108000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls6e{letter-spacing:-0.060120px;}
.ls39{letter-spacing:-0.059760px;}
.ls83{letter-spacing:-0.042120px;}
.ls3{letter-spacing:0.000000px;}
.ls33{letter-spacing:0.011952px;}
.ls5{letter-spacing:0.032072px;}
.ls89{letter-spacing:0.040320px;}
.ls5a{letter-spacing:0.054000px;}
.ls5e{letter-spacing:0.060120px;}
.lsa{letter-spacing:0.063360px;}
.ls5d{letter-spacing:0.065880px;}
.ls20{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.115920px;}
.ls78{letter-spacing:0.120240px;}
.ls12{letter-spacing:0.126720px;}
.ls6a{letter-spacing:0.144000px;}
.ls52{letter-spacing:0.149760px;}
.ls21{letter-spacing:0.162000px;}
.ls4{letter-spacing:0.164944px;}
.ls75{letter-spacing:0.168480px;}
.ls61{letter-spacing:0.180360px;}
.lse{letter-spacing:0.190080px;}
.ls7d{letter-spacing:0.204408px;}
.ls23{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.231840px;}
.ls29{letter-spacing:0.239040px;}
.ls13{letter-spacing:0.264960px;}
.ls26{letter-spacing:0.270000px;}
.ls49{letter-spacing:0.280872px;}
.ls4b{letter-spacing:0.286848px;}
.ls17{letter-spacing:0.288000px;}
.ls14{letter-spacing:0.291456px;}
.ls3e{letter-spacing:0.292824px;}
.ls2c{letter-spacing:0.298800px;}
.ls40{letter-spacing:0.304776px;}
.ls50{letter-spacing:0.310752px;}
.ls31{letter-spacing:0.316728px;}
.lsf{letter-spacing:0.316800px;}
.ls2a{letter-spacing:0.322704px;}
.ls58{letter-spacing:0.324000px;}
.ls18{letter-spacing:0.331200px;}
.ls46{letter-spacing:0.334656px;}
.ls42{letter-spacing:0.346608px;}
.ls51{letter-spacing:0.352584px;}
.ls3d{letter-spacing:0.358560px;}
.ls9a{letter-spacing:0.361800px;}
.ls2e{letter-spacing:0.364536px;}
.ls53{letter-spacing:0.376488px;}
.lsb{letter-spacing:0.380160px;}
.ls41{letter-spacing:0.394416px;}
.ls4f{letter-spacing:0.400392px;}
.ls34{letter-spacing:0.406368px;}
.ls4e{letter-spacing:0.418320px;}
.ls95{letter-spacing:0.420840px;}
.ls9b{letter-spacing:0.437400px;}
.ls59{letter-spacing:0.464400px;}
.ls99{letter-spacing:0.486000px;}
.ls62{letter-spacing:0.541080px;}
.ls48{letter-spacing:0.597600px;}
.ls3f{letter-spacing:0.651384px;}
.ls2b{letter-spacing:0.657360px;}
.ls5c{letter-spacing:0.664200px;}
.ls54{letter-spacing:0.711144px;}
.ls47{letter-spacing:0.723096px;}
.ls44{letter-spacing:0.735048px;}
.ls32{letter-spacing:0.741024px;}
.ls37{letter-spacing:0.747000px;}
.ls1f{letter-spacing:0.756000px;}
.ls4d{letter-spacing:0.776880px;}
.ls43{letter-spacing:0.818712px;}
.ls4a{letter-spacing:0.824688px;}
.ls2d{letter-spacing:0.830664px;}
.ls36{letter-spacing:0.836640px;}
.ls30{letter-spacing:0.869760px;}
.ls90{letter-spacing:0.883764px;}
.ls5f{letter-spacing:0.901800px;}
.ls57{letter-spacing:0.902376px;}
.ls91{letter-spacing:0.931860px;}
.ls45{letter-spacing:0.956160px;}
.ls7{letter-spacing:1.118986px;}
.ls4c{letter-spacing:1.123488px;}
.ls8d{letter-spacing:1.238472px;}
.ls8b{letter-spacing:1.262520px;}
.ls2{letter-spacing:1.550876px;}
.ls96{letter-spacing:1.566000px;}
.ls7e{letter-spacing:1.623240px;}
.ls1{letter-spacing:1.679990px;}
.ls0{letter-spacing:1.685081px;}
.ls8{letter-spacing:1.832258px;}
.ls7c{letter-spacing:1.953900px;}
.ls8c{letter-spacing:1.983960px;}
.ls8e{letter-spacing:2.194380px;}
.ls8f{letter-spacing:2.344680px;}
.ls63{letter-spacing:2.603196px;}
.ls64{letter-spacing:2.705400px;}
.ls87{letter-spacing:3.667320px;}
.ls68{letter-spacing:4.869720px;}
.ls67{letter-spacing:4.887756px;}
.ls70{letter-spacing:5.184000px;}
.ls60{letter-spacing:5.927832px;}
.ls85{letter-spacing:5.951880px;}
.ls81{letter-spacing:7.755480px;}
.ls35{letter-spacing:7.888320px;}
.ls82{letter-spacing:8.146260px;}
.ls94{letter-spacing:8.837640px;}
.ls88{letter-spacing:9.940680px;}
.ls71{letter-spacing:10.316592px;}
.ls74{letter-spacing:10.641240px;}
.ls8a{letter-spacing:11.362680px;}
.ls73{letter-spacing:12.017988px;}
.ls7b{letter-spacing:12.444840px;}
.ls92{letter-spacing:12.805560px;}
.ls79{letter-spacing:15.691320px;}
.ls86{letter-spacing:18.577080px;}
.ls72{letter-spacing:22.352616px;}
.ls93{letter-spacing:22.460832px;}
.ls66{letter-spacing:26.116128px;}
.ls65{letter-spacing:26.152200px;}
.ls9{letter-spacing:27.054720px;}
.ls97{letter-spacing:27.108000px;}
.ls7f{letter-spacing:27.864000px;}
.ls7a{letter-spacing:38.398644px;}
.ls28{letter-spacing:41.712480px;}
.ls80{letter-spacing:72.925560px;}
.ls5b{letter-spacing:494.712000px;}
.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;}
}
.wsa7{word-spacing:-60.120000px;}
.ws1a{word-spacing:-20.304000px;}
.ws1c{word-spacing:-19.944000px;}
.ws1e{word-spacing:-18.414720px;}
.ws54{word-spacing:-18.380520px;}
.ws1f{word-spacing:-18.149760px;}
.ws1b{word-spacing:-18.083520px;}
.wse{word-spacing:-17.930880px;}
.wsa{word-spacing:-17.804160px;}
.ws9{word-spacing:-17.677440px;}
.wsb{word-spacing:-17.614080px;}
.ws1d{word-spacing:-17.421120px;}
.ws8{word-spacing:-17.297280px;}
.wsc{word-spacing:-17.233920px;}
.ws45{word-spacing:-17.210880px;}
.wsf{word-spacing:-17.107200px;}
.wsd{word-spacing:-16.917120px;}
.ws7f{word-spacing:-16.893720px;}
.ws3b{word-spacing:-16.852320px;}
.ws96{word-spacing:-16.833600px;}
.ws52{word-spacing:-16.773480px;}
.ws51{word-spacing:-16.713360px;}
.ws57{word-spacing:-16.653240px;}
.ws49{word-spacing:-16.613280px;}
.ws50{word-spacing:-16.593120px;}
.ws55{word-spacing:-16.533000px;}
.ws3a{word-spacing:-16.493760px;}
.ws56{word-spacing:-16.412760px;}
.ws46{word-spacing:-16.374240px;}
.ws3c{word-spacing:-16.314480px;}
.ws4a{word-spacing:-16.254720px;}
.ws4b{word-spacing:-15.776640px;}
.ws3d{word-spacing:-15.537600px;}
.ws4c{word-spacing:-15.336000px;}
.ws33{word-spacing:-15.282000px;}
.ws4d{word-spacing:-15.228000px;}
.ws37{word-spacing:-15.174000px;}
.wse5{word-spacing:-15.120000px;}
.ws35{word-spacing:-15.012000px;}
.ws2c{word-spacing:-14.904000px;}
.ws53{word-spacing:-14.850000px;}
.wsc2{word-spacing:-14.796000px;}
.ws2e{word-spacing:-14.526000px;}
.ws2d{word-spacing:-14.202000px;}
.ws34{word-spacing:-13.932000px;}
.ws7c{word-spacing:-11.877840px;}
.wsb5{word-spacing:-10.808640px;}
.ws4f{word-spacing:-10.296000px;}
.ws4e{word-spacing:-10.008000px;}
.ws7d{word-spacing:-9.936000px;}
.ws7e{word-spacing:-9.756000px;}
.wsb1{word-spacing:-4.509000px;}
.ws8f{word-spacing:-4.148280px;}
.ws78{word-spacing:-3.787560px;}
.wsf1{word-spacing:-3.456000px;}
.ws82{word-spacing:-3.426840px;}
.wsf2{word-spacing:-3.294000px;}
.wsa3{word-spacing:-3.066120px;}
.wsc3{word-spacing:-2.754000px;}
.wsba{word-spacing:-2.705400px;}
.wsc4{word-spacing:-2.592000px;}
.ws7b{word-spacing:-2.344680px;}
.wsdc{word-spacing:-2.160000px;}
.wsdb{word-spacing:-2.052000px;}
.ws8a{word-spacing:-1.983960px;}
.wsdd{word-spacing:-1.944000px;}
.ws6{word-spacing:-1.832258px;}
.ws0{word-spacing:-1.685081px;}
.ws2{word-spacing:-1.679990px;}
.wsa6{word-spacing:-1.623240px;}
.ws7{word-spacing:-1.550876px;}
.wsc1{word-spacing:-1.503000px;}
.ws69{word-spacing:-1.262520px;}
.wscf{word-spacing:-1.188000px;}
.wsd0{word-spacing:-1.134000px;}
.ws5{word-spacing:-1.118986px;}
.ws6a{word-spacing:-1.082160px;}
.ws17{word-spacing:-1.077120px;}
.ws8e{word-spacing:-0.901800px;}
.wse6{word-spacing:-0.864000px;}
.ws36{word-spacing:-0.810000px;}
.wsbb{word-spacing:-0.781560px;}
.ws22{word-spacing:-0.728640px;}
.ws81{word-spacing:-0.720000px;}
.ws44{word-spacing:-0.657360px;}
.ws16{word-spacing:-0.633600px;}
.ws47{word-spacing:-0.597600px;}
.ws5e{word-spacing:-0.541080px;}
.wse4{word-spacing:-0.486000px;}
.ws91{word-spacing:-0.480960px;}
.wsc7{word-spacing:-0.432000px;}
.wsbe{word-spacing:-0.420840px;}
.ws15{word-spacing:-0.380160px;}
.ws3f{word-spacing:-0.298800px;}
.ws25{word-spacing:-0.264960px;}
.ws43{word-spacing:-0.239040px;}
.ws39{word-spacing:-0.216000px;}
.ws6b{word-spacing:-0.180360px;}
.ws80{word-spacing:-0.168480px;}
.ws21{word-spacing:-0.144000px;}
.ws19{word-spacing:-0.126720px;}
.ws98{word-spacing:-0.126360px;}
.wsae{word-spacing:-0.120240px;}
.ws31{word-spacing:-0.108000px;}
.ws5a{word-spacing:-0.072000px;}
.ws18{word-spacing:-0.063360px;}
.ws6e{word-spacing:-0.060120px;}
.ws2f{word-spacing:-0.054000px;}
.ws4{word-spacing:-0.032072px;}
.ws1{word-spacing:0.000000px;}
.ws3{word-spacing:0.059563px;}
.ws3e{word-spacing:0.059760px;}
.ws70{word-spacing:0.060120px;}
.ws5c{word-spacing:0.072000px;}
.ws30{word-spacing:0.108000px;}
.ws40{word-spacing:0.119520px;}
.ws5d{word-spacing:0.120240px;}
.ws24{word-spacing:0.132480px;}
.ws5b{word-spacing:0.144000px;}
.wsc5{word-spacing:0.162000px;}
.ws99{word-spacing:0.168480px;}
.ws6f{word-spacing:0.180360px;}
.ws97{word-spacing:0.210600px;}
.ws32{word-spacing:0.216000px;}
.ws42{word-spacing:0.239040px;}
.ws59{word-spacing:0.270000px;}
.wsa0{word-spacing:0.300600px;}
.ws12{word-spacing:0.316800px;}
.ws9a{word-spacing:0.336960px;}
.ws48{word-spacing:0.418320px;}
.ws23{word-spacing:0.463680px;}
.ws58{word-spacing:0.486000px;}
.ws71{word-spacing:0.541080px;}
.ws28{word-spacing:0.662400px;}
.ws20{word-spacing:0.673920px;}
.ws38{word-spacing:0.702000px;}
.wsad{word-spacing:0.721440px;}
.ws41{word-spacing:0.776880px;}
.ws5f{word-spacing:0.901800px;}
.ws14{word-spacing:1.077120px;}
.ws27{word-spacing:1.126080px;}
.ws2a{word-spacing:1.192320px;}
.ws61{word-spacing:1.262520px;}
.wsec{word-spacing:1.350000px;}
.ws60{word-spacing:1.442880px;}
.wsa1{word-spacing:1.623240px;}
.wsd1{word-spacing:1.674000px;}
.wse1{word-spacing:1.728000px;}
.wsb9{word-spacing:1.743480px;}
.ws11{word-spacing:1.774080px;}
.ws67{word-spacing:1.983960px;}
.wsd2{word-spacing:2.106000px;}
.wsbd{word-spacing:2.164320px;}
.ws66{word-spacing:2.344680px;}
.ws13{word-spacing:2.471040px;}
.ws29{word-spacing:2.583360px;}
.ws72{word-spacing:2.705400px;}
.wsb2{word-spacing:2.885760px;}
.wsee{word-spacing:3.024000px;}
.ws68{word-spacing:3.066120px;}
.wsed{word-spacing:3.132000px;}
.wsef{word-spacing:3.186000px;}
.wsb3{word-spacing:3.426840px;}
.wsc6{word-spacing:3.510000px;}
.ws65{word-spacing:3.787560px;}
.ws26{word-spacing:4.040640px;}
.ws8c{word-spacing:4.148280px;}
.wseb{word-spacing:4.266000px;}
.ws77{word-spacing:4.509000px;}
.ws74{word-spacing:4.809600px;}
.ws75{word-spacing:5.050080px;}
.ws76{word-spacing:5.170320px;}
.wse9{word-spacing:5.508000px;}
.ws89{word-spacing:5.531040px;}
.wse8{word-spacing:5.616000px;}
.wsea{word-spacing:5.670000px;}
.wse7{word-spacing:5.724000px;}
.wsca{word-spacing:5.886000px;}
.wsa8{word-spacing:5.891760px;}
.wsc9{word-spacing:6.156000px;}
.ws6c{word-spacing:6.252480px;}
.wsc8{word-spacing:6.264000px;}
.ws63{word-spacing:6.613200px;}
.ws64{word-spacing:6.973920px;}
.ws87{word-spacing:7.334640px;}
.wsd4{word-spacing:7.452000px;}
.wsd5{word-spacing:7.506000px;}
.wsd3{word-spacing:7.560000px;}
.wsac{word-spacing:7.695360px;}
.ws95{word-spacing:8.056080px;}
.wsa5{word-spacing:8.416800px;}
.ws88{word-spacing:8.777520px;}
.wsc0{word-spacing:8.897760px;}
.ws2b{word-spacing:9.074880px;}
.ws85{word-spacing:9.138240px;}
.wsb8{word-spacing:9.498960px;}
.wscc{word-spacing:9.828000px;}
.wsaf{word-spacing:9.859680px;}
.wscb{word-spacing:9.990000px;}
.wsb0{word-spacing:10.040040px;}
.ws8d{word-spacing:10.220400px;}
.ws93{word-spacing:10.581120px;}
.ws94{word-spacing:10.761480px;}
.wsbc{word-spacing:10.941840px;}
.wsa2{word-spacing:11.302560px;}
.wsaa{word-spacing:11.663280px;}
.ws92{word-spacing:12.024000px;}
.ws9f{word-spacing:12.384720px;}
.wsb4{word-spacing:12.745440px;}
.wse2{word-spacing:13.608000px;}
.wscd{word-spacing:13.770000px;}
.wsb7{word-spacing:13.827600px;}
.wsce{word-spacing:13.932000px;}
.ws9b{word-spacing:14.188320px;}
.wsab{word-spacing:14.549040px;}
.ws9c{word-spacing:14.729400px;}
.ws79{word-spacing:14.909760px;}
.ws7a{word-spacing:15.270480px;}
.ws6d{word-spacing:15.631200px;}
.wsbf{word-spacing:16.352640px;}
.wsb6{word-spacing:17.434800px;}
.wsd6{word-spacing:17.766000px;}
.ws8b{word-spacing:17.795520px;}
.wsda{word-spacing:17.982000px;}
.wsd7{word-spacing:18.036000px;}
.wsd9{word-spacing:18.144000px;}
.wsa9{word-spacing:18.156240px;}
.wsd8{word-spacing:18.252000px;}
.ws62{word-spacing:19.599120px;}
.ws9d{word-spacing:21.402720px;}
.ws90{word-spacing:22.484880px;}
.ws83{word-spacing:23.206320px;}
.ws84{word-spacing:23.567040px;}
.wsa4{word-spacing:23.927760px;}
.wsf0{word-spacing:25.110000px;}
.ws73{word-spacing:26.092080px;}
.ws10{word-spacing:26.991360px;}
.wsdf{word-spacing:27.108000px;}
.wsde{word-spacing:27.216000px;}
.wse0{word-spacing:27.270000px;}
.ws86{word-spacing:31.502880px;}
.ws9e{word-spacing:38.296440px;}
.wse3{word-spacing:40.986000px;}
._1f{margin-left:-27.632160px;}
._15{margin-left:-9.198360px;}
._e{margin-left:-4.575393px;}
._2{margin-left:-3.135982px;}
._0{margin-left:-1.893807px;}
._1{width:1.109812px;}
._3{width:2.173806px;}
._4{width:3.197073px;}
._5{width:4.591301px;}
._f{width:6.583167px;}
._1b{width:7.780042px;}
._18{width:8.992838px;}
._19{width:10.100215px;}
._1a{width:12.414807px;}
._17{width:14.699367px;}
._1c{width:17.496000px;}
._1d{width:18.630000px;}
._16{width:20.801520px;}
._6{width:26.198348px;}
._1e{width:27.432000px;}
._20{width:41.010188px;}
._11{width:54.291087px;}
._7{width:194.768640px;}
._10{width:197.370000px;}
._d{width:323.452440px;}
._14{width:834.311160px;}
._9{width:837.421200px;}
._8{width:843.984000px;}
._c{width:919.294920px;}
._12{width:1051.357320px;}
._b{width:1258.792560px;}
._a{width:1265.472000px;}
._13{width:1343.742120px;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(189,188,188);}
.fc9{color:rgb(17,17,17);}
.fc8{color:rgb(68,68,68);}
.fc7{color:rgb(64,64,64);}
.fc6{color:rgb(64,64,64);}
.fc5{color:rgb(128,128,128);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:36.000000px;}
.fs13{font-size:38.880000px;}
.fse{font-size:42.120000px;}
.fs1{font-size:45.817800px;}
.fsc{font-size:47.880000px;}
.fs12{font-size:48.000000px;}
.fs4{font-size:48.240000px;}
.fs0{font-size:50.908800px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:59.760000px;}
.fsf{font-size:60.120000px;}
.fs5{font-size:63.360000px;}
.fs3{font-size:65.437800px;}
.fs11{font-size:65.880000px;}
.fs7{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs10{font-size:108.000000px;}
.fs2{font-size:275.905200px;}
.y0{bottom:0.000000px;}
.y184{bottom:2.526000px;}
.y18a{bottom:17.725590px;}
.y1b8{bottom:17.730000px;}
.y159{bottom:22.144410px;}
.y183{bottom:37.398514px;}
.y158{bottom:42.480000px;}
.y157{bottom:63.360000px;}
.y189{bottom:67.860000px;}
.y156{bottom:79.560000px;}
.y14f{bottom:84.227040px;}
.y12b{bottom:84.283200px;}
.y188{bottom:84.960000px;}
.y155{bottom:94.410000px;}
.y85{bottom:95.512500px;}
.y58{bottom:95.578560px;}
.yfa{bottom:97.856100px;}
.y14e{bottom:104.022540px;}
.y12a{bottom:104.078700px;}
.yb3{bottom:105.399000px;}
.y84{bottom:112.077000px;}
.yf9{bottom:117.651600px;}
.y57{bottom:119.160000px;}
.yb2{bottom:121.963500px;}
.y14d{bottom:123.997320px;}
.y129{bottom:124.053480px;}
.y213{bottom:130.770000px;}
.y234{bottom:136.148580px;}
.y297{bottom:137.134890px;}
.yf8{bottom:137.447100px;}
.y83{bottom:137.632500px;}
.y253{bottom:143.543340px;}
.y14c{bottom:143.792820px;}
.y128{bottom:143.848980px;}
.y1b5{bottom:144.677880px;}
.y34{bottom:146.520000px;}
.yb1{bottom:147.343500px;}
.y212{bottom:151.470000px;}
.y2c0{bottom:153.432000px;}
.y82{bottom:154.197000px;}
.y56{bottom:154.440000px;}
.y1e7{bottom:154.993950px;}
.y26e{bottom:156.301200px;}
.y233{bottom:156.844890px;}
.yf7{bottom:157.421880px;}
.y296{bottom:157.831200px;}
.y182{bottom:161.059590px;}
.y14b{bottom:163.588320px;}
.y127{bottom:163.644480px;}
.yb0{bottom:163.908000px;}
.y252{bottom:164.239650px;}
.y33{bottom:166.142880px;}
.y2bf{bottom:171.427500px;}
.y211{bottom:172.170000px;}
.y1e6{bottom:173.540970px;}
.y1b4{bottom:174.377160px;}
.y26d{bottom:176.997510px;}
.yf6{bottom:177.217380px;}
.y232{bottom:177.541200px;}
.y81{bottom:179.577000px;}
.y55{bottom:181.080000px;}
.y14a{bottom:183.383820px;}
.y126{bottom:183.439980px;}
.y251{bottom:184.935960px;}
.y32{bottom:185.578560px;}
.y295{bottom:187.530480px;}
.yaf{bottom:189.288000px;}
.y2be{bottom:189.423000px;}
.y181{bottom:190.758870px;}
.y1e5{bottom:192.268350px;}
.y210{bottom:192.870000px;}
.y80{bottom:196.141500px;}
.yf5{bottom:197.012880px;}
.y26c{bottom:197.693820px;}
.y231{bottom:198.237510px;}
.y149{bottom:203.179320px;}
.y125{bottom:203.235480px;}
.y1b3{bottom:204.076440px;}
.y31{bottom:205.014240px;}
.y250{bottom:205.632270px;}
.yae{bottom:205.852500px;}
.y54{bottom:207.178560px;}
.y2bd{bottom:207.418500px;}
.y294{bottom:208.226790px;}
.y1e4{bottom:210.995730px;}
.y180{bottom:211.455180px;}
.yf4{bottom:216.808380px;}
.y26b{bottom:218.390130px;}
.y230{bottom:218.933820px;}
.y7f{bottom:221.521500px;}
.y20f{bottom:222.574410px;}
.y148{bottom:223.154100px;}
.y124{bottom:223.210260px;}
.y53{bottom:223.738560px;}
.y30{bottom:224.640000px;}
.y2bc{bottom:225.414000px;}
.y24f{bottom:226.328580px;}
.y293{bottom:228.923100px;}
.y1e3{bottom:229.632930px;}
.yad{bottom:231.408000px;}
.y1b2{bottom:233.775720px;}
.yf3{bottom:236.603880px;}
.y7e{bottom:238.086000px;}
.y26a{bottom:239.086440px;}
.y22f{bottom:239.630130px;}
.y17f{bottom:241.154460px;}
.y147{bottom:242.949600px;}
.y123{bottom:243.005760px;}
.y20e{bottom:243.270720px;}
.y2bb{bottom:243.409500px;}
.y2f{bottom:244.080000px;}
.y24e{bottom:247.024890px;}
.y52{bottom:247.320000px;}
.yac{bottom:247.972500px;}
.y1e2{bottom:248.270130px;}
.y292{bottom:249.619410px;}
.y1b1{bottom:254.472030px;}
.yf2{bottom:256.578660px;}
.y269{bottom:259.782750px;}
.y22e{bottom:260.326440px;}
.y2ba{bottom:261.405000px;}
.y17e{bottom:261.760590px;}
.y146{bottom:262.745100px;}
.y122{bottom:262.801260px;}
.y2e{bottom:263.553120px;}
.y7d{bottom:263.641500px;}
.y1e1{bottom:267.087690px;}
.y24d{bottom:267.721200px;}
.y291{bottom:270.315720px;}
.y20d{bottom:272.970000px;}
.yab{bottom:273.352500px;}
.y1b0{bottom:275.168340px;}
.yf1{bottom:276.374160px;}
.y7c{bottom:280.206000px;}
.y268{bottom:280.479060px;}
.y22d{bottom:281.022750px;}
.y51{bottom:282.420000px;}
.y17d{bottom:282.456900px;}
.y145{bottom:282.540600px;}
.y121{bottom:282.596760px;}
.y2d{bottom:283.178880px;}
.y1e0{bottom:285.724890px;}
.y2b9{bottom:288.405000px;}
.yaa{bottom:289.917000px;}
.y290{bottom:291.012030px;}
.y1af{bottom:295.864650px;}
.yf0{bottom:296.169660px;}
.y24c{bottom:297.420480px;}
.y267{bottom:301.175370px;}
.y22c{bottom:301.719060px;}
.y144{bottom:302.336100px;}
.y120{bottom:302.392260px;}
.y20c{bottom:302.580000px;}
.y2c{bottom:302.614560px;}
.y17c{bottom:303.153210px;}
.y1df{bottom:304.362090px;}
.y7b{bottom:305.586000px;}
.y2b8{bottom:306.400500px;}
.y50{bottom:309.251520px;}
.ya9{bottom:315.297000px;}
.yef{bottom:315.965160px;}
.y1ae{bottom:316.560960px;}
.y24b{bottom:318.116790px;}
.y28f{bottom:320.711310px;}
.y266{bottom:321.871680px;}
.y2b{bottom:322.050240px;}
.y7a{bottom:322.150500px;}
.y143{bottom:322.310880px;}
.y11f{bottom:322.367040px;}
.y22b{bottom:322.415370px;}
.y1de{bottom:323.179650px;}
.y20b{bottom:323.640000px;}
.y17b{bottom:323.849520px;}
.ya8{bottom:331.861500px;}
.y2b7{bottom:333.400500px;}
.y4f{bottom:335.167920px;}
.yee{bottom:335.760660px;}
.y1ad{bottom:337.257270px;}
.y28e{bottom:341.407620px;}
.y2a{bottom:341.676000px;}
.y1dd{bottom:341.816850px;}
.y142{bottom:342.106380px;}
.y11e{bottom:342.162540px;}
.y265{bottom:342.567990px;}
.y22a{bottom:343.111680px;}
.y20a{bottom:344.433690px;}
.y17a{bottom:344.545830px;}
.y79{bottom:347.530500px;}
.y24a{bottom:347.816070px;}
.y2b6{bottom:351.396000px;}
.yed{bottom:355.735440px;}
.ya7{bottom:357.417000px;}
.y1ac{bottom:357.953580px;}
.y4e{bottom:359.643600px;}
.y1dc{bottom:360.454050px;}
.y141{bottom:361.901880px;}
.y11d{bottom:361.958040px;}
.y28d{bottom:362.103930px;}
.y78{bottom:364.095000px;}
.y209{bottom:365.130000px;}
.y179{bottom:365.242140px;}
.y249{bottom:368.512380px;}
.y29{bottom:370.108800px;}
.y264{bottom:372.267270px;}
.y229{bottom:372.810960px;}
.ya6{bottom:373.981500px;}
.yec{bottom:375.530940px;}
.y2b5{bottom:378.396000px;}
.y1ab{bottom:378.649890px;}
.y1db{bottom:379.271610px;}
.y140{bottom:381.697380px;}
.y11c{bottom:381.753540px;}
.y28c{bottom:382.800240px;}
.y208{bottom:385.830000px;}
.y178{bottom:385.938450px;}
.y4d{bottom:386.288640px;}
.y248{bottom:389.208690px;}
.y77{bottom:389.650500px;}
.yeb{bottom:395.326440px;}
.y2b4{bottom:396.391500px;}
.y1da{bottom:397.908810px;}
.y28{bottom:398.541600px;}
.y1aa{bottom:399.346200px;}
.ya5{bottom:399.361500px;}
.y13f{bottom:401.492880px;}
.y11b{bottom:401.549040px;}
.y263{bottom:401.966550px;}
.y228{bottom:402.510240px;}
.y28b{bottom:403.496550px;}
.y76{bottom:406.215000px;}
.y177{bottom:406.634760px;}
.y247{bottom:409.905000px;}
.y4c{bottom:412.387200px;}
.y2b3{bottom:414.387000px;}
.yea{bottom:415.121940px;}
.y207{bottom:415.614960px;}
.ya4{bottom:415.926000px;}
.y27{bottom:418.167360px;}
.y13e{bottom:421.467660px;}
.y11a{bottom:421.523820px;}
.y262{bottom:422.662860px;}
.y227{bottom:423.206550px;}
.y28a{bottom:424.192860px;}
.y176{bottom:427.331070px;}
.y1d9{bottom:427.788450px;}
.y1a9{bottom:429.045480px;}
.y246{bottom:430.601310px;}
.y75{bottom:431.595000px;}
.ya3{bottom:432.490500px;}
.ye9{bottom:434.917440px;}
.y206{bottom:436.311270px;}
.y4b{bottom:436.680720px;}
.y26{bottom:437.603040px;}
.y13d{bottom:441.263160px;}
.y119{bottom:441.319320px;}
.y2b2{bottom:441.387000px;}
.y261{bottom:443.359170px;}
.y226{bottom:443.902860px;}
.y289{bottom:444.889170px;}
.y175{bottom:448.027380px;}
.y74{bottom:448.159500px;}
.y1d8{bottom:448.484760px;}
.y245{bottom:451.297620px;}
.ye8{bottom:454.892220px;}
.y4a{bottom:456.122160px;}
.y205{bottom:457.007580px;}
.y25{bottom:457.038720px;}
.ya2{bottom:457.870500px;}
.y1a8{bottom:458.744760px;}
.y2b1{bottom:459.382500px;}
.y13c{bottom:461.058660px;}
.y118{bottom:461.114820px;}
.y225{bottom:464.599170px;}
.y288{bottom:465.585480px;}
.y174{bottom:468.723690px;}
.y1d7{bottom:469.181070px;}
.y260{bottom:473.058450px;}
.y73{bottom:473.539500px;}
.ya1{bottom:474.435000px;}
.ye7{bottom:474.687720px;}
.y24{bottom:476.664480px;}
.y2b0{bottom:477.378000px;}
.y1a7{bottom:479.441070px;}
.y13b{bottom:480.854160px;}
.y117{bottom:480.910320px;}
.y244{bottom:480.996900px;}
.y49{bottom:482.220720px;}
.y224{bottom:485.295480px;}
.y287{bottom:486.281790px;}
.y204{bottom:486.706860px;}
.y173{bottom:489.420000px;}
.y1d6{bottom:489.877380px;}
.y72{bottom:490.104000px;}
.y25f{bottom:493.754760px;}
.ye6{bottom:494.483220px;}
.y23{bottom:496.100160px;}
.ya0{bottom:499.815000px;}
.y1a6{bottom:500.137380px;}
.y13a{bottom:500.649660px;}
.y116{bottom:500.705820px;}
.y243{bottom:501.693210px;}
.y2af{bottom:504.378000px;}
.y48{bottom:505.984320px;}
.y223{bottom:505.991790px;}
.y286{bottom:506.978100px;}
.y203{bottom:507.403170px;}
.y1d5{bottom:510.573690px;}
.y172{bottom:510.840000px;}
.ye5{bottom:514.278720px;}
.y25e{bottom:514.451070px;}
.y22{bottom:515.535840px;}
.y71{bottom:515.659500px;}
.y9f{bottom:516.379500px;}
.ycc{bottom:516.420000px;}
.y139{bottom:520.624440px;}
.y115{bottom:520.680600px;}
.y1a5{bottom:520.833690px;}
.y2ae{bottom:522.373500px;}
.y242{bottom:522.389520px;}
.y47{bottom:522.544320px;}
.y222{bottom:526.688100px;}
.y285{bottom:527.674410px;}
.y202{bottom:528.099480px;}
.y1d4{bottom:531.270000px;}
.y70{bottom:532.224000px;}
.ye4{bottom:534.074220px;}
.y25d{bottom:535.147380px;}
.y21{bottom:535.161600px;}
.y2ad{bottom:540.369000px;}
.y138{bottom:540.419940px;}
.y114{bottom:540.476100px;}
.y1a4{bottom:541.530000px;}
.y9e{bottom:541.935000px;}
.ycb{bottom:541.939500px;}
.y241{bottom:543.085830px;}
.y171{bottom:544.182030px;}
.y46{bottom:546.837840px;}
.y221{bottom:547.384410px;}
.ye3{bottom:554.049000px;}
.y20{bottom:554.597280px;}
.y25c{bottom:555.843690px;}
.y284{bottom:557.373690px;}
.y6f{bottom:557.604000px;}
.y201{bottom:557.798760px;}
.y2ac{bottom:558.364500px;}
.y9d{bottom:558.499500px;}
.yca{bottom:558.504000px;}
.y137{bottom:560.215440px;}
.y113{bottom:560.271600px;}
.y1d3{bottom:562.320000px;}
.y240{bottom:563.782140px;}
.y1a3{bottom:572.580000px;}
.y45{bottom:572.754240px;}
.ye2{bottom:573.844500px;}
.y170{bottom:573.881310px;}
.y1f{bottom:574.032960px;}
.y6e{bottom:574.168500px;}
.y25b{bottom:576.540000px;}
.y220{bottom:577.083690px;}
.y283{bottom:578.070000px;}
.y136{bottom:580.010940px;}
.y112{bottom:580.067100px;}
.y9c{bottom:583.879500px;}
.yc9{bottom:583.884000px;}
.y23f{bottom:584.478450px;}
.y2ab{bottom:585.364500px;}
.y200{bottom:587.498040px;}
.y1e{bottom:593.658720px;}
.ye1{bottom:593.723880px;}
.y16f{bottom:594.577620px;}
.y1d2{bottom:594.899460px;}
.y44{bottom:597.229920px;}
.y21f{bottom:597.780000px;}
.y6d{bottom:599.548500px;}
.y135{bottom:599.806440px;}
.y111{bottom:599.862600px;}
.y9b{bottom:600.444000px;}
.yc8{bottom:600.448500px;}
.y2aa{bottom:603.360000px;}
.y1a2{bottom:605.142270px;}
.y23e{bottom:605.174760px;}
.y282{bottom:609.120000px;}
.y25a{bottom:611.190000px;}
.y1d{bottom:613.094400px;}
.ye0{bottom:613.519380px;}
.y1d1{bottom:615.595770px;}
.y6c{bottom:616.113000px;}
.y1ff{bottom:617.197320px;}
.y134{bottom:619.781220px;}
.y110{bottom:619.837380px;}
.y43{bottom:623.874960px;}
.y16e{bottom:624.276900px;}
.y9a{bottom:625.824000px;}
.yc7{bottom:625.828500px;}
.y23d{bottom:625.871070px;}
.y21e{bottom:632.430000px;}
.y1c{bottom:632.530080px;}
.ydf{bottom:633.314880px;}
.y2a9{bottom:634.680000px;}
.y1a1{bottom:634.841550px;}
.y259{bottom:634.961790px;}
.y1d0{bottom:636.292080px;}
.y1fe{bottom:637.893630px;}
.y133{bottom:639.576720px;}
.y10f{bottom:639.632880px;}
.y6b{bottom:641.668500px;}
.y281{bottom:641.672820px;}
.y99{bottom:642.388500px;}
.yc6{bottom:642.393000px;}
.y16d{bottom:644.973210px;}
.y23c{bottom:646.567380px;}
.y42{bottom:650.520000px;}
.y1b{bottom:652.155840px;}
.yde{bottom:653.289660px;}
.y1a0{bottom:655.537860px;}
.y21d{bottom:656.190000px;}
.y1cf{bottom:656.988390px;}
.y6a{bottom:658.233000px;}
.y1fd{bottom:658.589940px;}
.yc5{bottom:658.957500px;}
.y132{bottom:659.372220px;}
.y10e{bottom:659.428380px;}
.y16c{bottom:665.669520px;}
.y6{bottom:665.771092px;}
.y2a8{bottom:667.222380px;}
.y23b{bottom:667.263690px;}
.y98{bottom:667.944000px;}
.y280{bottom:671.372100px;}
.y1a{bottom:671.591520px;}
.ydd{bottom:673.085160px;}
.y19f{bottom:676.234170px;}
.y1ce{bottom:677.684700px;}
.y131{bottom:679.167720px;}
.y10d{bottom:679.223880px;}
.y1fc{bottom:679.286250px;}
.y5{bottom:682.780950px;}
.y69{bottom:683.613000px;}
.yc4{bottom:684.337500px;}
.y97{bottom:684.508500px;}
.y16b{bottom:686.365830px;}
.y23a{bottom:687.960000px;}
.y41{bottom:688.140000px;}
.y19{bottom:691.027200px;}
.y27f{bottom:692.068410px;}
.ydc{bottom:692.880660px;}
.y2a7{bottom:696.921660px;}
.y19e{bottom:696.930480px;}
.y1cd{bottom:698.381010px;}
.y130{bottom:698.963220px;}
.y10c{bottom:699.019380px;}
.y1fb{bottom:699.982560px;}
.y68{bottom:700.177500px;}
.yc3{bottom:700.902000px;}
.y16a{bottom:707.062140px;}
.y96{bottom:709.888500px;}
.y18{bottom:710.652960px;}
.ydb{bottom:712.676160px;}
.y27e{bottom:712.764720px;}
.y40{bottom:714.772650px;}
.y4{bottom:716.798797px;}
.y2a6{bottom:717.617970px;}
.y19d{bottom:717.626790px;}
.y12f{bottom:718.938000px;}
.y10b{bottom:718.994160px;}
.y1cc{bottom:719.077320px;}
.y239{bottom:719.640000px;}
.y1fa{bottom:720.678870px;}
.y67{bottom:725.557500px;}
.y95{bottom:726.453000px;}
.yc2{bottom:726.457500px;}
.y169{bottom:727.758450px;}
.y17{bottom:730.088640px;}
.yda{bottom:732.471660px;}
.y27d{bottom:733.461030px;}
.y3{bottom:733.808700px;}
.y2a5{bottom:738.314280px;}
.y19c{bottom:738.323100px;}
.y12e{bottom:738.733500px;}
.y10a{bottom:738.789660px;}
.y1cb{bottom:739.773630px;}
.y3f{bottom:740.871210px;}
.y1f9{bottom:741.375180px;}
.y66{bottom:742.122000px;}
.yc1{bottom:743.022000px;}
.y238{bottom:743.313150px;}
.y168{bottom:748.454760px;}
.y16{bottom:749.524320px;}
.y94{bottom:751.833000px;}
.yd9{bottom:752.446440px;}
.y12d{bottom:758.529000px;}
.y109{bottom:758.585160px;}
.y2a4{bottom:759.010590px;}
.y1ca{bottom:760.469940px;}
.y1f8{bottom:762.071490px;}
.y27c{bottom:763.160310px;}
.y3e{bottom:764.452650px;}
.y65{bottom:767.677500px;}
.y2{bottom:767.828797px;}
.y19b{bottom:768.022380px;}
.y93{bottom:768.397500px;}
.yc0{bottom:768.402000px;}
.y167{bottom:769.151070px;}
.yd8{bottom:772.241940px;}
.y15{bottom:778.147200px;}
.y12c{bottom:778.324500px;}
.y108{bottom:778.380660px;}
.y2a3{bottom:779.706900px;}
.y1c9{bottom:781.166250px;}
.y1f7{bottom:782.767800px;}
.y27b{bottom:783.856620px;}
.y64{bottom:784.242000px;}
.y1{bottom:784.838700px;}
.ybf{bottom:784.966500px;}
.y3d{bottom:788.216250px;}
.y19a{bottom:788.718690px;}
.y166{bottom:789.847380px;}
.yd7{bottom:792.037440px;}
.y92{bottom:793.953000px;}
.y107{bottom:798.176160px;}
.y2a2{bottom:800.403210px;}
.y1c8{bottom:801.862560px;}
.y1f6{bottom:803.464110px;}
.y27a{bottom:804.552930px;}
.y14{bottom:806.580000px;}
.y199{bottom:809.415000px;}
.y63{bottom:809.622000px;}
.ybe{bottom:810.346500px;}
.y91{bottom:810.517500px;}
.y165{bottom:810.543690px;}
.yd6{bottom:811.832940px;}
.y3c{bottom:811.979850px;}
.y106{bottom:818.150940px;}
.y2a1{bottom:821.099520px;}
.y1c7{bottom:822.558870px;}
.y1f5{bottom:824.160420px;}
.y279{bottom:825.249240px;}
.y62{bottom:826.186500px;}
.ybd{bottom:826.911000px;}
.y198{bottom:830.111310px;}
.y164{bottom:831.240000px;}
.yd5{bottom:831.628440px;}
.y13{bottom:835.031520px;}
.y90{bottom:835.897500px;}
.y105{bottom:837.946440px;}
.y7{bottom:839.025000px;}
.ya{bottom:839.833483px;}
.y2a0{bottom:841.795830px;}
.y1c6{bottom:843.255180px;}
.y1f4{bottom:844.856730px;}
.y278{bottom:845.945550px;}
.y3b{bottom:847.080000px;}
.y197{bottom:850.807620px;}
.y2ce{bottom:850.950000px;}
.y61{bottom:851.566500px;}
.yd4{bottom:851.603220px;}
.y8f{bottom:852.462000px;}
.ybc{bottom:852.466500px;}
.y163{bottom:852.659850px;}
.y12{bottom:854.657280px;}
.y9{bottom:857.518049px;}
.y104{bottom:857.741940px;}
.y29f{bottom:862.492140px;}
.y1c5{bottom:863.951490px;}
.y1f3{bottom:865.462860px;}
.y277{bottom:866.641860px;}
.y60{bottom:868.131000px;}
.ybb{bottom:869.031000px;}
.yd3{bottom:871.398720px;}
.y196{bottom:871.503930px;}
.y11{bottom:874.092960px;}
.y8{bottom:875.204250px;}
.y103{bottom:877.537440px;}
.y8e{bottom:877.842000px;}
.y2cd{bottom:877.950000px;}
.y29e{bottom:883.188450px;}
.y3a{bottom:884.524320px;}
.y1c4{bottom:884.647800px;}
.y1f2{bottom:886.159170px;}
.yd2{bottom:891.194220px;}
.y195{bottom:892.200240px;}
.y10{bottom:893.528640px;}
.y5f{bottom:893.686500px;}
.y162{bottom:894.330000px;}
.y8d{bottom:894.406500px;}
.yba{bottom:894.411000px;}
.y2cc{bottom:895.959000px;}
.y276{bottom:896.341140px;}
.y102{bottom:897.332940px;}
.y29d{bottom:903.884760px;}
.y1c3{bottom:905.344110px;}
.y5e{bottom:910.251000px;}
.yb9{bottom:910.975500px;}
.yd1{bottom:910.989720px;}
.y194{bottom:912.896550px;}
.y161{bottom:912.960000px;}
.y2cb{bottom:913.954500px;}
.y1f1{bottom:915.858450px;}
.y275{bottom:917.037450px;}
.y101{bottom:917.307720px;}
.y8c{bottom:919.962000px;}
.y39{bottom:922.137480px;}
.yf{bottom:922.151520px;}
.y29c{bottom:924.581070px;}
.y21c{bottom:926.021070px;}
.y1c2{bottom:926.040420px;}
.yd0{bottom:930.785220px;}
.y2ca{bottom:931.950000px;}
.y160{bottom:932.220720px;}
.y193{bottom:933.592860px;}
.y5d{bottom:935.631000px;}
.yb8{bottom:936.355500px;}
.y8b{bottom:936.526500px;}
.y1f0{bottom:936.554760px;}
.y100{bottom:937.103220px;}
.y274{bottom:937.733760px;}
.y29b{bottom:945.277380px;}
.y258{bottom:945.286200px;}
.y21b{bottom:946.717380px;}
.y1c1{bottom:946.736730px;}
.ye{bottom:950.584320px;}
.ycf{bottom:950.760000px;}
.y5c{bottom:952.195500px;}
.yb7{bottom:952.920000px;}
.y192{bottom:954.289170px;}
.yff{bottom:956.898720px;}
.y1ef{bottom:957.251070px;}
.y273{bottom:958.430070px;}
.y2c9{bottom:958.977000px;}
.y38{bottom:959.582160px;}
.y8a{bottom:961.906500px;}
.y15f{bottom:961.920000px;}
.y29a{bottom:965.973690px;}
.y257{bottom:965.982510px;}
.y21a{bottom:967.413690px;}
.y1c0{bottom:967.433040px;}
.y191{bottom:974.985480px;}
.yfe{bottom:976.694220px;}
.y2c8{bottom:976.972500px;}
.y5b{bottom:977.575500px;}
.y1ee{bottom:977.947380px;}
.y89{bottom:978.471000px;}
.yb6{bottom:978.475500px;}
.yd{bottom:979.017120px;}
.y272{bottom:979.126380px;}
.y15e{bottom:981.810000px;}
.yce{bottom:986.580000px;}
.y299{bottom:986.670000px;}
.y256{bottom:986.678820px;}
.y219{bottom:988.110000px;}
.y1bf{bottom:988.129350px;}
.y5a{bottom:994.140000px;}
.y2c7{bottom:994.968000px;}
.yb5{bottom:995.040000px;}
.yfd{bottom:996.489720px;}
.y37{bottom:997.026840px;}
.y1ed{bottom:998.643690px;}
.y271{bottom:999.822690px;}
.y88{bottom:1003.851000px;}
.y190{bottom:1004.684760px;}
.y255{bottom:1007.375130px;}
.yc{bottom:1007.640000px;}
.y218{bottom:1008.810000px;}
.y1be{bottom:1008.825660px;}
.y15d{bottom:1012.860000px;}
.yfc{bottom:1016.464500px;}
.y298{bottom:1017.720000px;}
.y1ec{bottom:1019.340000px;}
.y87{bottom:1020.415500px;}
.yb4{bottom:1020.420000px;}
.y270{bottom:1020.519000px;}
.y2c6{bottom:1021.968000px;}
.y18f{bottom:1025.381070px;}
.ycd{bottom:1027.620000px;}
.y217{bottom:1029.510000px;}
.y1bd{bottom:1029.521970px;}
.y59{bottom:1030.500000px;}
.y36{bottom:1034.640000px;}
.yb{bottom:1035.900000px;}
.yfb{bottom:1036.260000px;}
.y86{bottom:1036.980000px;}
.y254{bottom:1037.074410px;}
.y2c5{bottom:1039.963500px;}
.y26f{bottom:1041.215310px;}
.y15c{bottom:1043.910000px;}
.y18e{bottom:1046.077380px;}
.y1bc{bottom:1050.218280px;}
.y1eb{bottom:1050.390000px;}
.y2c4{bottom:1057.959000px;}
.y216{bottom:1059.210000px;}
.y237{bottom:1059.213690px;}
.y18d{bottom:1066.773690px;}
.y1bb{bottom:1070.914590px;}
.y15b{bottom:1074.960000px;}
.y2c3{bottom:1075.954500px;}
.y215{bottom:1079.910000px;}
.y236{bottom:1079.917560px;}
.y1ea{bottom:1083.855780px;}
.y18c{bottom:1087.470000px;}
.y1ba{bottom:1091.610900px;}
.y214{bottom:1100.610000px;}
.y235{bottom:1100.613870px;}
.y1e9{bottom:1102.402800px;}
.y2c2{bottom:1102.954500px;}
.y15a{bottom:1106.010000px;}
.y18b{bottom:1118.430000px;}
.y2c1{bottom:1120.950000px;}
.y1e8{bottom:1121.040000px;}
.y1b9{bottom:1121.220000px;}
.y154{bottom:1133.820000px;}
.y153{bottom:1148.049000px;}
.y152{bottom:1166.409000px;}
.y187{bottom:1175.935500px;}
.y151{bottom:1184.944500px;}
.y1b7{bottom:1189.440000px;}
.y186{bottom:1191.154500px;}
.y35{bottom:1194.120000px;}
.y150{bottom:1203.480000px;}
.y1b6{bottom:1203.570000px;}
.y185{bottom:1204.920000px;}
.h24{height:13.200074px;}
.h1c{height:32.273438px;}
.h1d{height:37.759922px;}
.h26{height:42.806777px;}
.h1b{height:42.923672px;}
.h7{height:43.552617px;}
.h16{height:43.740352px;}
.hb{height:45.345937px;}
.h3{height:47.137746px;}
.h22{height:48.219785px;}
.h27{height:48.260320px;}
.h1a{height:48.278320px;}
.h13{height:48.410156px;}
.h10{height:48.483281px;}
.h12{height:48.752930px;}
.h25{height:49.898438px;}
.hd{height:52.699219px;}
.h2{height:53.394581px;}
.h17{height:53.573906px;}
.h18{height:53.617722px;}
.h28{height:53.632441px;}
.h23{height:53.749863px;}
.h1e{height:53.896641px;}
.h15{height:53.953242px;}
.h21{height:54.278262px;}
.h8{height:56.801250px;}
.h9{height:57.203437px;}
.hf{height:59.383125px;}
.he{height:59.803594px;}
.ha{height:65.003906px;}
.h5{height:68.633005px;}
.hc{height:76.054570px;}
.h11{height:76.060330px;}
.h20{height:79.048828px;}
.h14{height:86.455195px;}
.h1f{height:97.505859px;}
.h4{height:283.853641px;}
.h0{height:1262.835000px;}
.h6{height:1262.880000px;}
.h19{height:1262.970000px;}
.h1{height:1263.000000px;}
.w4{width:50.046000px;}
.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:136.809000px;}
.xd{left:147.960000px;}
.x6{left:154.620000px;}
.x14{left:170.190000px;}
.xe{left:176.310000px;}
.x7{left:181.616580px;}
.x19{left:216.720000px;}
.x11{left:221.136660px;}
.x5{left:235.062720px;}
.x13{left:243.805500px;}
.x2{left:250.254000px;}
.x1d{left:260.730000px;}
.x10{left:277.587000px;}
.x1b{left:319.770000px;}
.x3{left:366.659700px;}
.x1{left:367.987500px;}
.x9{left:385.204500px;}
.x17{left:408.420000px;}
.x15{left:421.511993px;}
.x16{left:425.430000px;}
.xc{left:446.580000px;}
.xa{left:469.903500px;}
.xb{left:587.542500px;}
.x18{left:627.660000px;}
.x1a{left:676.082070px;}
.x8{left:765.540000px;}
.x1c{left:766.620450px;}
@media print{
.v1{vertical-align:-2.586880pt;}
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-10.987158pt;}
.ls1d{letter-spacing:-1.000960pt;}
.ls27{letter-spacing:-0.960000pt;}
.ls3c{letter-spacing:-0.956160pt;}
.ls1c{letter-spacing:-0.883200pt;}
.ls56{letter-spacing:-0.743680pt;}
.ls24{letter-spacing:-0.720000pt;}
.ls98{letter-spacing:-0.624000pt;}
.lsd{letter-spacing:-0.619520pt;}
.ls11{letter-spacing:-0.450560pt;}
.ls25{letter-spacing:-0.432000pt;}
.ls10{letter-spacing:-0.337920pt;}
.ls55{letter-spacing:-0.318720pt;}
.ls16{letter-spacing:-0.299520pt;}
.ls19{letter-spacing:-0.294400pt;}
.lsc{letter-spacing:-0.281600pt;}
.ls6f{letter-spacing:-0.267200pt;}
.ls3b{letter-spacing:-0.265600pt;}
.ls77{letter-spacing:-0.256000pt;}
.ls1e{letter-spacing:-0.235520pt;}
.ls76{letter-spacing:-0.224000pt;}
.ls3a{letter-spacing:-0.212480pt;}
.ls69{letter-spacing:-0.192000pt;}
.ls6d{letter-spacing:-0.160320pt;}
.ls84{letter-spacing:-0.149760pt;}
.ls6c{letter-spacing:-0.144000pt;}
.ls1a{letter-spacing:-0.117760pt;}
.ls6b{letter-spacing:-0.106880pt;}
.ls38{letter-spacing:-0.106240pt;}
.ls22{letter-spacing:-0.096000pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls6e{letter-spacing:-0.053440pt;}
.ls39{letter-spacing:-0.053120pt;}
.ls83{letter-spacing:-0.037440pt;}
.ls3{letter-spacing:0.000000pt;}
.ls33{letter-spacing:0.010624pt;}
.ls5{letter-spacing:0.028509pt;}
.ls89{letter-spacing:0.035840pt;}
.ls5a{letter-spacing:0.048000pt;}
.ls5e{letter-spacing:0.053440pt;}
.lsa{letter-spacing:0.056320pt;}
.ls5d{letter-spacing:0.058560pt;}
.ls20{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.103040pt;}
.ls78{letter-spacing:0.106880pt;}
.ls12{letter-spacing:0.112640pt;}
.ls6a{letter-spacing:0.128000pt;}
.ls52{letter-spacing:0.133120pt;}
.ls21{letter-spacing:0.144000pt;}
.ls4{letter-spacing:0.146617pt;}
.ls75{letter-spacing:0.149760pt;}
.ls61{letter-spacing:0.160320pt;}
.lse{letter-spacing:0.168960pt;}
.ls7d{letter-spacing:0.181696pt;}
.ls23{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.206080pt;}
.ls29{letter-spacing:0.212480pt;}
.ls13{letter-spacing:0.235520pt;}
.ls26{letter-spacing:0.240000pt;}
.ls49{letter-spacing:0.249664pt;}
.ls4b{letter-spacing:0.254976pt;}
.ls17{letter-spacing:0.256000pt;}
.ls14{letter-spacing:0.259072pt;}
.ls3e{letter-spacing:0.260288pt;}
.ls2c{letter-spacing:0.265600pt;}
.ls40{letter-spacing:0.270912pt;}
.ls50{letter-spacing:0.276224pt;}
.ls31{letter-spacing:0.281536pt;}
.lsf{letter-spacing:0.281600pt;}
.ls2a{letter-spacing:0.286848pt;}
.ls58{letter-spacing:0.288000pt;}
.ls18{letter-spacing:0.294400pt;}
.ls46{letter-spacing:0.297472pt;}
.ls42{letter-spacing:0.308096pt;}
.ls51{letter-spacing:0.313408pt;}
.ls3d{letter-spacing:0.318720pt;}
.ls9a{letter-spacing:0.321600pt;}
.ls2e{letter-spacing:0.324032pt;}
.ls53{letter-spacing:0.334656pt;}
.lsb{letter-spacing:0.337920pt;}
.ls41{letter-spacing:0.350592pt;}
.ls4f{letter-spacing:0.355904pt;}
.ls34{letter-spacing:0.361216pt;}
.ls4e{letter-spacing:0.371840pt;}
.ls95{letter-spacing:0.374080pt;}
.ls9b{letter-spacing:0.388800pt;}
.ls59{letter-spacing:0.412800pt;}
.ls99{letter-spacing:0.432000pt;}
.ls62{letter-spacing:0.480960pt;}
.ls48{letter-spacing:0.531200pt;}
.ls3f{letter-spacing:0.579008pt;}
.ls2b{letter-spacing:0.584320pt;}
.ls5c{letter-spacing:0.590400pt;}
.ls54{letter-spacing:0.632128pt;}
.ls47{letter-spacing:0.642752pt;}
.ls44{letter-spacing:0.653376pt;}
.ls32{letter-spacing:0.658688pt;}
.ls37{letter-spacing:0.664000pt;}
.ls1f{letter-spacing:0.672000pt;}
.ls4d{letter-spacing:0.690560pt;}
.ls43{letter-spacing:0.727744pt;}
.ls4a{letter-spacing:0.733056pt;}
.ls2d{letter-spacing:0.738368pt;}
.ls36{letter-spacing:0.743680pt;}
.ls30{letter-spacing:0.773120pt;}
.ls90{letter-spacing:0.785568pt;}
.ls5f{letter-spacing:0.801600pt;}
.ls57{letter-spacing:0.802112pt;}
.ls91{letter-spacing:0.828320pt;}
.ls45{letter-spacing:0.849920pt;}
.ls7{letter-spacing:0.994655pt;}
.ls4c{letter-spacing:0.998656pt;}
.ls8d{letter-spacing:1.100864pt;}
.ls8b{letter-spacing:1.122240pt;}
.ls2{letter-spacing:1.378556pt;}
.ls96{letter-spacing:1.392000pt;}
.ls7e{letter-spacing:1.442880pt;}
.ls1{letter-spacing:1.493325pt;}
.ls0{letter-spacing:1.497850pt;}
.ls8{letter-spacing:1.628674pt;}
.ls7c{letter-spacing:1.736800pt;}
.ls8c{letter-spacing:1.763520pt;}
.ls8e{letter-spacing:1.950560pt;}
.ls8f{letter-spacing:2.084160pt;}
.ls63{letter-spacing:2.313952pt;}
.ls64{letter-spacing:2.404800pt;}
.ls87{letter-spacing:3.259840pt;}
.ls68{letter-spacing:4.328640pt;}
.ls67{letter-spacing:4.344672pt;}
.ls70{letter-spacing:4.608000pt;}
.ls60{letter-spacing:5.269184pt;}
.ls85{letter-spacing:5.290560pt;}
.ls81{letter-spacing:6.893760pt;}
.ls35{letter-spacing:7.011840pt;}
.ls82{letter-spacing:7.241120pt;}
.ls94{letter-spacing:7.855680pt;}
.ls88{letter-spacing:8.836160pt;}
.ls71{letter-spacing:9.170304pt;}
.ls74{letter-spacing:9.458880pt;}
.ls8a{letter-spacing:10.100160pt;}
.ls73{letter-spacing:10.682656pt;}
.ls7b{letter-spacing:11.062080pt;}
.ls92{letter-spacing:11.382720pt;}
.ls79{letter-spacing:13.947840pt;}
.ls86{letter-spacing:16.512960pt;}
.ls72{letter-spacing:19.868992pt;}
.ls93{letter-spacing:19.965184pt;}
.ls66{letter-spacing:23.214336pt;}
.ls65{letter-spacing:23.246400pt;}
.ls9{letter-spacing:24.048640pt;}
.ls97{letter-spacing:24.096000pt;}
.ls7f{letter-spacing:24.768000pt;}
.ls7a{letter-spacing:34.132128pt;}
.ls28{letter-spacing:37.077760pt;}
.ls80{letter-spacing:64.822720pt;}
.ls5b{letter-spacing:439.744000pt;}
.wsa7{word-spacing:-53.440000pt;}
.ws1a{word-spacing:-18.048000pt;}
.ws1c{word-spacing:-17.728000pt;}
.ws1e{word-spacing:-16.368640pt;}
.ws54{word-spacing:-16.338240pt;}
.ws1f{word-spacing:-16.133120pt;}
.ws1b{word-spacing:-16.074240pt;}
.wse{word-spacing:-15.938560pt;}
.wsa{word-spacing:-15.825920pt;}
.ws9{word-spacing:-15.713280pt;}
.wsb{word-spacing:-15.656960pt;}
.ws1d{word-spacing:-15.485440pt;}
.ws8{word-spacing:-15.375360pt;}
.wsc{word-spacing:-15.319040pt;}
.ws45{word-spacing:-15.298560pt;}
.wsf{word-spacing:-15.206400pt;}
.wsd{word-spacing:-15.037440pt;}
.ws7f{word-spacing:-15.016640pt;}
.ws3b{word-spacing:-14.979840pt;}
.ws96{word-spacing:-14.963200pt;}
.ws52{word-spacing:-14.909760pt;}
.ws51{word-spacing:-14.856320pt;}
.ws57{word-spacing:-14.802880pt;}
.ws49{word-spacing:-14.767360pt;}
.ws50{word-spacing:-14.749440pt;}
.ws55{word-spacing:-14.696000pt;}
.ws3a{word-spacing:-14.661120pt;}
.ws56{word-spacing:-14.589120pt;}
.ws46{word-spacing:-14.554880pt;}
.ws3c{word-spacing:-14.501760pt;}
.ws4a{word-spacing:-14.448640pt;}
.ws4b{word-spacing:-14.023680pt;}
.ws3d{word-spacing:-13.811200pt;}
.ws4c{word-spacing:-13.632000pt;}
.ws33{word-spacing:-13.584000pt;}
.ws4d{word-spacing:-13.536000pt;}
.ws37{word-spacing:-13.488000pt;}
.wse5{word-spacing:-13.440000pt;}
.ws35{word-spacing:-13.344000pt;}
.ws2c{word-spacing:-13.248000pt;}
.ws53{word-spacing:-13.200000pt;}
.wsc2{word-spacing:-13.152000pt;}
.ws2e{word-spacing:-12.912000pt;}
.ws2d{word-spacing:-12.624000pt;}
.ws34{word-spacing:-12.384000pt;}
.ws7c{word-spacing:-10.558080pt;}
.wsb5{word-spacing:-9.607680pt;}
.ws4f{word-spacing:-9.152000pt;}
.ws4e{word-spacing:-8.896000pt;}
.ws7d{word-spacing:-8.832000pt;}
.ws7e{word-spacing:-8.672000pt;}
.wsb1{word-spacing:-4.008000pt;}
.ws8f{word-spacing:-3.687360pt;}
.ws78{word-spacing:-3.366720pt;}
.wsf1{word-spacing:-3.072000pt;}
.ws82{word-spacing:-3.046080pt;}
.wsf2{word-spacing:-2.928000pt;}
.wsa3{word-spacing:-2.725440pt;}
.wsc3{word-spacing:-2.448000pt;}
.wsba{word-spacing:-2.404800pt;}
.wsc4{word-spacing:-2.304000pt;}
.ws7b{word-spacing:-2.084160pt;}
.wsdc{word-spacing:-1.920000pt;}
.wsdb{word-spacing:-1.824000pt;}
.ws8a{word-spacing:-1.763520pt;}
.wsdd{word-spacing:-1.728000pt;}
.ws6{word-spacing:-1.628674pt;}
.ws0{word-spacing:-1.497850pt;}
.ws2{word-spacing:-1.493325pt;}
.wsa6{word-spacing:-1.442880pt;}
.ws7{word-spacing:-1.378556pt;}
.wsc1{word-spacing:-1.336000pt;}
.ws69{word-spacing:-1.122240pt;}
.wscf{word-spacing:-1.056000pt;}
.wsd0{word-spacing:-1.008000pt;}
.ws5{word-spacing:-0.994655pt;}
.ws6a{word-spacing:-0.961920pt;}
.ws17{word-spacing:-0.957440pt;}
.ws8e{word-spacing:-0.801600pt;}
.wse6{word-spacing:-0.768000pt;}
.ws36{word-spacing:-0.720000pt;}
.wsbb{word-spacing:-0.694720pt;}
.ws22{word-spacing:-0.647680pt;}
.ws81{word-spacing:-0.640000pt;}
.ws44{word-spacing:-0.584320pt;}
.ws16{word-spacing:-0.563200pt;}
.ws47{word-spacing:-0.531200pt;}
.ws5e{word-spacing:-0.480960pt;}
.wse4{word-spacing:-0.432000pt;}
.ws91{word-spacing:-0.427520pt;}
.wsc7{word-spacing:-0.384000pt;}
.wsbe{word-spacing:-0.374080pt;}
.ws15{word-spacing:-0.337920pt;}
.ws3f{word-spacing:-0.265600pt;}
.ws25{word-spacing:-0.235520pt;}
.ws43{word-spacing:-0.212480pt;}
.ws39{word-spacing:-0.192000pt;}
.ws6b{word-spacing:-0.160320pt;}
.ws80{word-spacing:-0.149760pt;}
.ws21{word-spacing:-0.128000pt;}
.ws19{word-spacing:-0.112640pt;}
.ws98{word-spacing:-0.112320pt;}
.wsae{word-spacing:-0.106880pt;}
.ws31{word-spacing:-0.096000pt;}
.ws5a{word-spacing:-0.064000pt;}
.ws18{word-spacing:-0.056320pt;}
.ws6e{word-spacing:-0.053440pt;}
.ws2f{word-spacing:-0.048000pt;}
.ws4{word-spacing:-0.028509pt;}
.ws1{word-spacing:0.000000pt;}
.ws3{word-spacing:0.052945pt;}
.ws3e{word-spacing:0.053120pt;}
.ws70{word-spacing:0.053440pt;}
.ws5c{word-spacing:0.064000pt;}
.ws30{word-spacing:0.096000pt;}
.ws40{word-spacing:0.106240pt;}
.ws5d{word-spacing:0.106880pt;}
.ws24{word-spacing:0.117760pt;}
.ws5b{word-spacing:0.128000pt;}
.wsc5{word-spacing:0.144000pt;}
.ws99{word-spacing:0.149760pt;}
.ws6f{word-spacing:0.160320pt;}
.ws97{word-spacing:0.187200pt;}
.ws32{word-spacing:0.192000pt;}
.ws42{word-spacing:0.212480pt;}
.ws59{word-spacing:0.240000pt;}
.wsa0{word-spacing:0.267200pt;}
.ws12{word-spacing:0.281600pt;}
.ws9a{word-spacing:0.299520pt;}
.ws48{word-spacing:0.371840pt;}
.ws23{word-spacing:0.412160pt;}
.ws58{word-spacing:0.432000pt;}
.ws71{word-spacing:0.480960pt;}
.ws28{word-spacing:0.588800pt;}
.ws20{word-spacing:0.599040pt;}
.ws38{word-spacing:0.624000pt;}
.wsad{word-spacing:0.641280pt;}
.ws41{word-spacing:0.690560pt;}
.ws5f{word-spacing:0.801600pt;}
.ws14{word-spacing:0.957440pt;}
.ws27{word-spacing:1.000960pt;}
.ws2a{word-spacing:1.059840pt;}
.ws61{word-spacing:1.122240pt;}
.wsec{word-spacing:1.200000pt;}
.ws60{word-spacing:1.282560pt;}
.wsa1{word-spacing:1.442880pt;}
.wsd1{word-spacing:1.488000pt;}
.wse1{word-spacing:1.536000pt;}
.wsb9{word-spacing:1.549760pt;}
.ws11{word-spacing:1.576960pt;}
.ws67{word-spacing:1.763520pt;}
.wsd2{word-spacing:1.872000pt;}
.wsbd{word-spacing:1.923840pt;}
.ws66{word-spacing:2.084160pt;}
.ws13{word-spacing:2.196480pt;}
.ws29{word-spacing:2.296320pt;}
.ws72{word-spacing:2.404800pt;}
.wsb2{word-spacing:2.565120pt;}
.wsee{word-spacing:2.688000pt;}
.ws68{word-spacing:2.725440pt;}
.wsed{word-spacing:2.784000pt;}
.wsef{word-spacing:2.832000pt;}
.wsb3{word-spacing:3.046080pt;}
.wsc6{word-spacing:3.120000pt;}
.ws65{word-spacing:3.366720pt;}
.ws26{word-spacing:3.591680pt;}
.ws8c{word-spacing:3.687360pt;}
.wseb{word-spacing:3.792000pt;}
.ws77{word-spacing:4.008000pt;}
.ws74{word-spacing:4.275200pt;}
.ws75{word-spacing:4.488960pt;}
.ws76{word-spacing:4.595840pt;}
.wse9{word-spacing:4.896000pt;}
.ws89{word-spacing:4.916480pt;}
.wse8{word-spacing:4.992000pt;}
.wsea{word-spacing:5.040000pt;}
.wse7{word-spacing:5.088000pt;}
.wsca{word-spacing:5.232000pt;}
.wsa8{word-spacing:5.237120pt;}
.wsc9{word-spacing:5.472000pt;}
.ws6c{word-spacing:5.557760pt;}
.wsc8{word-spacing:5.568000pt;}
.ws63{word-spacing:5.878400pt;}
.ws64{word-spacing:6.199040pt;}
.ws87{word-spacing:6.519680pt;}
.wsd4{word-spacing:6.624000pt;}
.wsd5{word-spacing:6.672000pt;}
.wsd3{word-spacing:6.720000pt;}
.wsac{word-spacing:6.840320pt;}
.ws95{word-spacing:7.160960pt;}
.wsa5{word-spacing:7.481600pt;}
.ws88{word-spacing:7.802240pt;}
.wsc0{word-spacing:7.909120pt;}
.ws2b{word-spacing:8.066560pt;}
.ws85{word-spacing:8.122880pt;}
.wsb8{word-spacing:8.443520pt;}
.wscc{word-spacing:8.736000pt;}
.wsaf{word-spacing:8.764160pt;}
.wscb{word-spacing:8.880000pt;}
.wsb0{word-spacing:8.924480pt;}
.ws8d{word-spacing:9.084800pt;}
.ws93{word-spacing:9.405440pt;}
.ws94{word-spacing:9.565760pt;}
.wsbc{word-spacing:9.726080pt;}
.wsa2{word-spacing:10.046720pt;}
.wsaa{word-spacing:10.367360pt;}
.ws92{word-spacing:10.688000pt;}
.ws9f{word-spacing:11.008640pt;}
.wsb4{word-spacing:11.329280pt;}
.wse2{word-spacing:12.096000pt;}
.wscd{word-spacing:12.240000pt;}
.wsb7{word-spacing:12.291200pt;}
.wsce{word-spacing:12.384000pt;}
.ws9b{word-spacing:12.611840pt;}
.wsab{word-spacing:12.932480pt;}
.ws9c{word-spacing:13.092800pt;}
.ws79{word-spacing:13.253120pt;}
.ws7a{word-spacing:13.573760pt;}
.ws6d{word-spacing:13.894400pt;}
.wsbf{word-spacing:14.535680pt;}
.wsb6{word-spacing:15.497600pt;}
.wsd6{word-spacing:15.792000pt;}
.ws8b{word-spacing:15.818240pt;}
.wsda{word-spacing:15.984000pt;}
.wsd7{word-spacing:16.032000pt;}
.wsd9{word-spacing:16.128000pt;}
.wsa9{word-spacing:16.138880pt;}
.wsd8{word-spacing:16.224000pt;}
.ws62{word-spacing:17.421440pt;}
.ws9d{word-spacing:19.024640pt;}
.ws90{word-spacing:19.986560pt;}
.ws83{word-spacing:20.627840pt;}
.ws84{word-spacing:20.948480pt;}
.wsa4{word-spacing:21.269120pt;}
.wsf0{word-spacing:22.320000pt;}
.ws73{word-spacing:23.192960pt;}
.ws10{word-spacing:23.992320pt;}
.wsdf{word-spacing:24.096000pt;}
.wsde{word-spacing:24.192000pt;}
.wse0{word-spacing:24.240000pt;}
.ws86{word-spacing:28.002560pt;}
.ws9e{word-spacing:34.041280pt;}
.wse3{word-spacing:36.432000pt;}
._1f{margin-left:-24.561920pt;}
._15{margin-left:-8.176320pt;}
._e{margin-left:-4.067016pt;}
._2{margin-left:-2.787540pt;}
._0{margin-left:-1.683384pt;}
._1{width:0.986499pt;}
._3{width:1.932272pt;}
._4{width:2.841842pt;}
._5{width:4.081157pt;}
._f{width:5.851704pt;}
._1b{width:6.915593pt;}
._18{width:7.993634pt;}
._19{width:8.977969pt;}
._1a{width:11.035384pt;}
._17{width:13.066104pt;}
._1c{width:15.552000pt;}
._1d{width:16.560000pt;}
._16{width:18.490240pt;}
._6{width:23.287421pt;}
._1e{width:24.384000pt;}
._20{width:36.453501pt;}
._11{width:48.258744pt;}
._7{width:173.127680pt;}
._10{width:175.440000pt;}
._d{width:287.513280pt;}
._14{width:741.609920pt;}
._9{width:744.374400pt;}
._8{width:750.208000pt;}
._c{width:817.151040pt;}
._12{width:934.539840pt;}
._b{width:1118.926720pt;}
._a{width:1124.864000pt;}
._13{width:1194.437440pt;}
.fsd{font-size:32.000000pt;}
.fs13{font-size:34.560000pt;}
.fse{font-size:37.440000pt;}
.fs1{font-size:40.726933pt;}
.fsc{font-size:42.560000pt;}
.fs12{font-size:42.666667pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:45.252267pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:53.120000pt;}
.fsf{font-size:53.440000pt;}
.fs5{font-size:56.320000pt;}
.fs3{font-size:58.166933pt;}
.fs11{font-size:58.560000pt;}
.fs7{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs10{font-size:96.000000pt;}
.fs2{font-size:245.249067pt;}
.y0{bottom:0.000000pt;}
.y184{bottom:2.245333pt;}
.y18a{bottom:15.756080pt;}
.y1b8{bottom:15.760000pt;}
.y159{bottom:19.683920pt;}
.y183{bottom:33.243123pt;}
.y158{bottom:37.760000pt;}
.y157{bottom:56.320000pt;}
.y189{bottom:60.320000pt;}
.y156{bottom:70.720000pt;}
.y14f{bottom:74.868480pt;}
.y12b{bottom:74.918400pt;}
.y188{bottom:75.520000pt;}
.y155{bottom:83.920000pt;}
.y85{bottom:84.900000pt;}
.y58{bottom:84.958720pt;}
.yfa{bottom:86.983200pt;}
.y14e{bottom:92.464480pt;}
.y12a{bottom:92.514400pt;}
.yb3{bottom:93.688000pt;}
.y84{bottom:99.624000pt;}
.yf9{bottom:104.579200pt;}
.y57{bottom:105.920000pt;}
.yb2{bottom:108.412000pt;}
.y14d{bottom:110.219840pt;}
.y129{bottom:110.269760pt;}
.y213{bottom:116.240000pt;}
.y234{bottom:121.020960pt;}
.y297{bottom:121.897680pt;}
.yf8{bottom:122.175200pt;}
.y83{bottom:122.340000pt;}
.y253{bottom:127.594080pt;}
.y14c{bottom:127.815840pt;}
.y128{bottom:127.865760pt;}
.y1b5{bottom:128.602560pt;}
.y34{bottom:130.240000pt;}
.yb1{bottom:130.972000pt;}
.y212{bottom:134.640000pt;}
.y2c0{bottom:136.384000pt;}
.y82{bottom:137.064000pt;}
.y56{bottom:137.280000pt;}
.y1e7{bottom:137.772400pt;}
.y26e{bottom:138.934400pt;}
.y233{bottom:139.417680pt;}
.yf7{bottom:139.930560pt;}
.y296{bottom:140.294400pt;}
.y182{bottom:143.164080pt;}
.y14b{bottom:145.411840pt;}
.y127{bottom:145.461760pt;}
.yb0{bottom:145.696000pt;}
.y252{bottom:145.990800pt;}
.y33{bottom:147.682560pt;}
.y2bf{bottom:152.380000pt;}
.y211{bottom:153.040000pt;}
.y1e6{bottom:154.258640pt;}
.y1b4{bottom:155.001920pt;}
.y26d{bottom:157.331120pt;}
.yf6{bottom:157.526560pt;}
.y232{bottom:157.814400pt;}
.y81{bottom:159.624000pt;}
.y55{bottom:160.960000pt;}
.y14a{bottom:163.007840pt;}
.y126{bottom:163.057760pt;}
.y251{bottom:164.387520pt;}
.y32{bottom:164.958720pt;}
.y295{bottom:166.693760pt;}
.yaf{bottom:168.256000pt;}
.y2be{bottom:168.376000pt;}
.y181{bottom:169.563440pt;}
.y1e5{bottom:170.905200pt;}
.y210{bottom:171.440000pt;}
.y80{bottom:174.348000pt;}
.yf5{bottom:175.122560pt;}
.y26c{bottom:175.727840pt;}
.y231{bottom:176.211120pt;}
.y149{bottom:180.603840pt;}
.y125{bottom:180.653760pt;}
.y1b3{bottom:181.401280pt;}
.y31{bottom:182.234880pt;}
.y250{bottom:182.784240pt;}
.yae{bottom:182.980000pt;}
.y54{bottom:184.158720pt;}
.y2bd{bottom:184.372000pt;}
.y294{bottom:185.090480pt;}
.y1e4{bottom:187.551760pt;}
.y180{bottom:187.960160pt;}
.yf4{bottom:192.718560pt;}
.y26b{bottom:194.124560pt;}
.y230{bottom:194.607840pt;}
.y7f{bottom:196.908000pt;}
.y20f{bottom:197.843920pt;}
.y148{bottom:198.359200pt;}
.y124{bottom:198.409120pt;}
.y53{bottom:198.878720pt;}
.y30{bottom:199.680000pt;}
.y2bc{bottom:200.368000pt;}
.y24f{bottom:201.180960pt;}
.y293{bottom:203.487200pt;}
.y1e3{bottom:204.118160pt;}
.yad{bottom:205.696000pt;}
.y1b2{bottom:207.800640pt;}
.yf3{bottom:210.314560pt;}
.y7e{bottom:211.632000pt;}
.y26a{bottom:212.521280pt;}
.y22f{bottom:213.004560pt;}
.y17f{bottom:214.359520pt;}
.y147{bottom:215.955200pt;}
.y123{bottom:216.005120pt;}
.y20e{bottom:216.240640pt;}
.y2bb{bottom:216.364000pt;}
.y2f{bottom:216.960000pt;}
.y24e{bottom:219.577680pt;}
.y52{bottom:219.840000pt;}
.yac{bottom:220.420000pt;}
.y1e2{bottom:220.684560pt;}
.y292{bottom:221.883920pt;}
.y1b1{bottom:226.197360pt;}
.yf2{bottom:228.069920pt;}
.y269{bottom:230.918000pt;}
.y22e{bottom:231.401280pt;}
.y2ba{bottom:232.360000pt;}
.y17e{bottom:232.676080pt;}
.y146{bottom:233.551200pt;}
.y122{bottom:233.601120pt;}
.y2e{bottom:234.269440pt;}
.y7d{bottom:234.348000pt;}
.y1e1{bottom:237.411280pt;}
.y24d{bottom:237.974400pt;}
.y291{bottom:240.280640pt;}
.y20d{bottom:242.640000pt;}
.yab{bottom:242.980000pt;}
.y1b0{bottom:244.594080pt;}
.yf1{bottom:245.665920pt;}
.y7c{bottom:249.072000pt;}
.y268{bottom:249.314720pt;}
.y22d{bottom:249.798000pt;}
.y51{bottom:251.040000pt;}
.y17d{bottom:251.072800pt;}
.y145{bottom:251.147200pt;}
.y121{bottom:251.197120pt;}
.y2d{bottom:251.714560pt;}
.y1e0{bottom:253.977680pt;}
.y2b9{bottom:256.360000pt;}
.yaa{bottom:257.704000pt;}
.y290{bottom:258.677360pt;}
.y1af{bottom:262.990800pt;}
.yf0{bottom:263.261920pt;}
.y24c{bottom:264.373760pt;}
.y267{bottom:267.711440pt;}
.y22c{bottom:268.194720pt;}
.y144{bottom:268.743200pt;}
.y120{bottom:268.793120pt;}
.y20c{bottom:268.960000pt;}
.y2c{bottom:268.990720pt;}
.y17c{bottom:269.469520pt;}
.y1df{bottom:270.544080pt;}
.y7b{bottom:271.632000pt;}
.y2b8{bottom:272.356000pt;}
.y50{bottom:274.890240pt;}
.ya9{bottom:280.264000pt;}
.yef{bottom:280.857920pt;}
.y1ae{bottom:281.387520pt;}
.y24b{bottom:282.770480pt;}
.y28f{bottom:285.076720pt;}
.y266{bottom:286.108160pt;}
.y2b{bottom:286.266880pt;}
.y7a{bottom:286.356000pt;}
.y143{bottom:286.498560pt;}
.y11f{bottom:286.548480pt;}
.y22b{bottom:286.591440pt;}
.y1de{bottom:287.270800pt;}
.y20b{bottom:287.680000pt;}
.y17b{bottom:287.866240pt;}
.ya8{bottom:294.988000pt;}
.y2b7{bottom:296.356000pt;}
.y4f{bottom:297.927040pt;}
.yee{bottom:298.453920pt;}
.y1ad{bottom:299.784240pt;}
.y28e{bottom:303.473440pt;}
.y2a{bottom:303.712000pt;}
.y1dd{bottom:303.837200pt;}
.y142{bottom:304.094560pt;}
.y11e{bottom:304.144480pt;}
.y265{bottom:304.504880pt;}
.y22a{bottom:304.988160pt;}
.y20a{bottom:306.163280pt;}
.y17a{bottom:306.262960pt;}
.y79{bottom:308.916000pt;}
.y24a{bottom:309.169840pt;}
.y2b6{bottom:312.352000pt;}
.yed{bottom:316.209280pt;}
.ya7{bottom:317.704000pt;}
.y1ac{bottom:318.180960pt;}
.y4e{bottom:319.683200pt;}
.y1dc{bottom:320.403600pt;}
.y141{bottom:321.690560pt;}
.y11d{bottom:321.740480pt;}
.y28d{bottom:321.870160pt;}
.y78{bottom:323.640000pt;}
.y209{bottom:324.560000pt;}
.y179{bottom:324.659680pt;}
.y249{bottom:327.566560pt;}
.y29{bottom:328.985600pt;}
.y264{bottom:330.904240pt;}
.y229{bottom:331.387520pt;}
.ya6{bottom:332.428000pt;}
.yec{bottom:333.805280pt;}
.y2b5{bottom:336.352000pt;}
.y1ab{bottom:336.577680pt;}
.y1db{bottom:337.130320pt;}
.y140{bottom:339.286560pt;}
.y11c{bottom:339.336480pt;}
.y28c{bottom:340.266880pt;}
.y208{bottom:342.960000pt;}
.y178{bottom:343.056400pt;}
.y4d{bottom:343.367680pt;}
.y248{bottom:345.963280pt;}
.y77{bottom:346.356000pt;}
.yeb{bottom:351.401280pt;}
.y2b4{bottom:352.348000pt;}
.y1da{bottom:353.696720pt;}
.y28{bottom:354.259200pt;}
.y1aa{bottom:354.974400pt;}
.ya5{bottom:354.988000pt;}
.y13f{bottom:356.882560pt;}
.y11b{bottom:356.932480pt;}
.y263{bottom:357.303600pt;}
.y228{bottom:357.786880pt;}
.y28b{bottom:358.663600pt;}
.y76{bottom:361.080000pt;}
.y177{bottom:361.453120pt;}
.y247{bottom:364.360000pt;}
.y4c{bottom:366.566400pt;}
.y2b3{bottom:368.344000pt;}
.yea{bottom:368.997280pt;}
.y207{bottom:369.435520pt;}
.ya4{bottom:369.712000pt;}
.y27{bottom:371.704320pt;}
.y13e{bottom:374.637920pt;}
.y11a{bottom:374.687840pt;}
.y262{bottom:375.700320pt;}
.y227{bottom:376.183600pt;}
.y28a{bottom:377.060320pt;}
.y176{bottom:379.849840pt;}
.y1d9{bottom:380.256400pt;}
.y1a9{bottom:381.373760pt;}
.y246{bottom:382.756720pt;}
.y75{bottom:383.640000pt;}
.ya3{bottom:384.436000pt;}
.ye9{bottom:386.593280pt;}
.y206{bottom:387.832240pt;}
.y4b{bottom:388.160640pt;}
.y26{bottom:388.980480pt;}
.y13d{bottom:392.233920pt;}
.y119{bottom:392.283840pt;}
.y2b2{bottom:392.344000pt;}
.y261{bottom:394.097040pt;}
.y226{bottom:394.580320pt;}
.y289{bottom:395.457040pt;}
.y175{bottom:398.246560pt;}
.y74{bottom:398.364000pt;}
.y1d8{bottom:398.653120pt;}
.y245{bottom:401.153440pt;}
.ye8{bottom:404.348640pt;}
.y4a{bottom:405.441920pt;}
.y205{bottom:406.228960pt;}
.y25{bottom:406.256640pt;}
.ya2{bottom:406.996000pt;}
.y1a8{bottom:407.773120pt;}
.y2b1{bottom:408.340000pt;}
.y13c{bottom:409.829920pt;}
.y118{bottom:409.879840pt;}
.y225{bottom:412.977040pt;}
.y288{bottom:413.853760pt;}
.y174{bottom:416.643280pt;}
.y1d7{bottom:417.049840pt;}
.y260{bottom:420.496400pt;}
.y73{bottom:420.924000pt;}
.ya1{bottom:421.720000pt;}
.ye7{bottom:421.944640pt;}
.y24{bottom:423.701760pt;}
.y2b0{bottom:424.336000pt;}
.y1a7{bottom:426.169840pt;}
.y13b{bottom:427.425920pt;}
.y117{bottom:427.475840pt;}
.y244{bottom:427.552800pt;}
.y49{bottom:428.640640pt;}
.y224{bottom:431.373760pt;}
.y287{bottom:432.250480pt;}
.y204{bottom:432.628320pt;}
.y173{bottom:435.040000pt;}
.y1d6{bottom:435.446560pt;}
.y72{bottom:435.648000pt;}
.y25f{bottom:438.893120pt;}
.ye6{bottom:439.540640pt;}
.y23{bottom:440.977920pt;}
.ya0{bottom:444.280000pt;}
.y1a6{bottom:444.566560pt;}
.y13a{bottom:445.021920pt;}
.y116{bottom:445.071840pt;}
.y243{bottom:445.949520pt;}
.y2af{bottom:448.336000pt;}
.y48{bottom:449.763840pt;}
.y223{bottom:449.770480pt;}
.y286{bottom:450.647200pt;}
.y203{bottom:451.025040pt;}
.y1d5{bottom:453.843280pt;}
.y172{bottom:454.080000pt;}
.ye5{bottom:457.136640pt;}
.y25e{bottom:457.289840pt;}
.y22{bottom:458.254080pt;}
.y71{bottom:458.364000pt;}
.y9f{bottom:459.004000pt;}
.ycc{bottom:459.040000pt;}
.y139{bottom:462.777280pt;}
.y115{bottom:462.827200pt;}
.y1a5{bottom:462.963280pt;}
.y2ae{bottom:464.332000pt;}
.y242{bottom:464.346240pt;}
.y47{bottom:464.483840pt;}
.y222{bottom:468.167200pt;}
.y285{bottom:469.043920pt;}
.y202{bottom:469.421760pt;}
.y1d4{bottom:472.240000pt;}
.y70{bottom:473.088000pt;}
.ye4{bottom:474.732640pt;}
.y25d{bottom:475.686560pt;}
.y21{bottom:475.699200pt;}
.y2ad{bottom:480.328000pt;}
.y138{bottom:480.373280pt;}
.y114{bottom:480.423200pt;}
.y1a4{bottom:481.360000pt;}
.y9e{bottom:481.720000pt;}
.ycb{bottom:481.724000pt;}
.y241{bottom:482.742960pt;}
.y171{bottom:483.717360pt;}
.y46{bottom:486.078080pt;}
.y221{bottom:486.563920pt;}
.ye3{bottom:492.488000pt;}
.y20{bottom:492.975360pt;}
.y25c{bottom:494.083280pt;}
.y284{bottom:495.443280pt;}
.y6f{bottom:495.648000pt;}
.y201{bottom:495.821120pt;}
.y2ac{bottom:496.324000pt;}
.y9d{bottom:496.444000pt;}
.yca{bottom:496.448000pt;}
.y137{bottom:497.969280pt;}
.y113{bottom:498.019200pt;}
.y1d3{bottom:499.840000pt;}
.y240{bottom:501.139680pt;}
.y1a3{bottom:508.960000pt;}
.y45{bottom:509.114880pt;}
.ye2{bottom:510.084000pt;}
.y170{bottom:510.116720pt;}
.y1f{bottom:510.251520pt;}
.y6e{bottom:510.372000pt;}
.y25b{bottom:512.480000pt;}
.y220{bottom:512.963280pt;}
.y283{bottom:513.840000pt;}
.y136{bottom:515.565280pt;}
.y112{bottom:515.615200pt;}
.y9c{bottom:519.004000pt;}
.yc9{bottom:519.008000pt;}
.y23f{bottom:519.536400pt;}
.y2ab{bottom:520.324000pt;}
.y200{bottom:522.220480pt;}
.y1e{bottom:527.696640pt;}
.ye1{bottom:527.754560pt;}
.y16f{bottom:528.513440pt;}
.y1d2{bottom:528.799520pt;}
.y44{bottom:530.871040pt;}
.y21f{bottom:531.360000pt;}
.y6d{bottom:532.932000pt;}
.y135{bottom:533.161280pt;}
.y111{bottom:533.211200pt;}
.y9b{bottom:533.728000pt;}
.yc8{bottom:533.732000pt;}
.y2aa{bottom:536.320000pt;}
.y1a2{bottom:537.904240pt;}
.y23e{bottom:537.933120pt;}
.y282{bottom:541.440000pt;}
.y25a{bottom:543.280000pt;}
.y1d{bottom:544.972800pt;}
.ye0{bottom:545.350560pt;}
.y1d1{bottom:547.196240pt;}
.y6c{bottom:547.656000pt;}
.y1ff{bottom:548.619840pt;}
.y134{bottom:550.916640pt;}
.y110{bottom:550.966560pt;}
.y43{bottom:554.555520pt;}
.y16e{bottom:554.912800pt;}
.y9a{bottom:556.288000pt;}
.yc7{bottom:556.292000pt;}
.y23d{bottom:556.329840pt;}
.y21e{bottom:562.160000pt;}
.y1c{bottom:562.248960pt;}
.ydf{bottom:562.946560pt;}
.y2a9{bottom:564.160000pt;}
.y1a1{bottom:564.303600pt;}
.y259{bottom:564.410480pt;}
.y1d0{bottom:565.592960pt;}
.y1fe{bottom:567.016560pt;}
.y133{bottom:568.512640pt;}
.y10f{bottom:568.562560pt;}
.y6b{bottom:570.372000pt;}
.y281{bottom:570.375840pt;}
.y99{bottom:571.012000pt;}
.yc6{bottom:571.016000pt;}
.y16d{bottom:573.309520pt;}
.y23c{bottom:574.726560pt;}
.y42{bottom:578.240000pt;}
.y1b{bottom:579.694080pt;}
.yde{bottom:580.701920pt;}
.y1a0{bottom:582.700320pt;}
.y21d{bottom:583.280000pt;}
.y1cf{bottom:583.989680pt;}
.y6a{bottom:585.096000pt;}
.y1fd{bottom:585.413280pt;}
.yc5{bottom:585.740000pt;}
.y132{bottom:586.108640pt;}
.y10e{bottom:586.158560pt;}
.y16c{bottom:591.706240pt;}
.y6{bottom:591.796526pt;}
.y2a8{bottom:593.086560pt;}
.y23b{bottom:593.123280pt;}
.y98{bottom:593.728000pt;}
.y280{bottom:596.775200pt;}
.y1a{bottom:596.970240pt;}
.ydd{bottom:598.297920pt;}
.y19f{bottom:601.097040pt;}
.y1ce{bottom:602.386400pt;}
.y131{bottom:603.704640pt;}
.y10d{bottom:603.754560pt;}
.y1fc{bottom:603.810000pt;}
.y5{bottom:606.916400pt;}
.y69{bottom:607.656000pt;}
.yc4{bottom:608.300000pt;}
.y97{bottom:608.452000pt;}
.y16b{bottom:610.102960pt;}
.y23a{bottom:611.520000pt;}
.y41{bottom:611.680000pt;}
.y19{bottom:614.246400pt;}
.y27f{bottom:615.171920pt;}
.ydc{bottom:615.893920pt;}
.y2a7{bottom:619.485920pt;}
.y19e{bottom:619.493760pt;}
.y1cd{bottom:620.783120pt;}
.y130{bottom:621.300640pt;}
.y10c{bottom:621.350560pt;}
.y1fb{bottom:622.206720pt;}
.y68{bottom:622.380000pt;}
.yc3{bottom:623.024000pt;}
.y16a{bottom:628.499680pt;}
.y96{bottom:631.012000pt;}
.y18{bottom:631.691520pt;}
.ydb{bottom:633.489920pt;}
.y27e{bottom:633.568640pt;}
.y40{bottom:635.353467pt;}
.y4{bottom:637.154486pt;}
.y2a6{bottom:637.882640pt;}
.y19d{bottom:637.890480pt;}
.y12f{bottom:639.056000pt;}
.y10b{bottom:639.105920pt;}
.y1cc{bottom:639.179840pt;}
.y239{bottom:639.680000pt;}
.y1fa{bottom:640.603440pt;}
.y67{bottom:644.940000pt;}
.y95{bottom:645.736000pt;}
.yc2{bottom:645.740000pt;}
.y169{bottom:646.896400pt;}
.y17{bottom:648.967680pt;}
.yda{bottom:651.085920pt;}
.y27d{bottom:651.965360pt;}
.y3{bottom:652.274400pt;}
.y2a5{bottom:656.279360pt;}
.y19c{bottom:656.287200pt;}
.y12e{bottom:656.652000pt;}
.y10a{bottom:656.701920pt;}
.y1cb{bottom:657.576560pt;}
.y3f{bottom:658.552187pt;}
.y1f9{bottom:659.000160pt;}
.y66{bottom:659.664000pt;}
.yc1{bottom:660.464000pt;}
.y238{bottom:660.722800pt;}
.y168{bottom:665.293120pt;}
.y16{bottom:666.243840pt;}
.y94{bottom:668.296000pt;}
.yd9{bottom:668.841280pt;}
.y12d{bottom:674.248000pt;}
.y109{bottom:674.297920pt;}
.y2a4{bottom:674.676080pt;}
.y1ca{bottom:675.973280pt;}
.y1f8{bottom:677.396880pt;}
.y27c{bottom:678.364720pt;}
.y3e{bottom:679.513467pt;}
.y65{bottom:682.380000pt;}
.y2{bottom:682.514486pt;}
.y19b{bottom:682.686560pt;}
.y93{bottom:683.020000pt;}
.yc0{bottom:683.024000pt;}
.y167{bottom:683.689840pt;}
.yd8{bottom:686.437280pt;}
.y15{bottom:691.686400pt;}
.y12c{bottom:691.844000pt;}
.y108{bottom:691.893920pt;}
.y2a3{bottom:693.072800pt;}
.y1c9{bottom:694.370000pt;}
.y1f7{bottom:695.793600pt;}
.y27b{bottom:696.761440pt;}
.y64{bottom:697.104000pt;}
.y1{bottom:697.634400pt;}
.ybf{bottom:697.748000pt;}
.y3d{bottom:700.636667pt;}
.y19a{bottom:701.083280pt;}
.y166{bottom:702.086560pt;}
.yd7{bottom:704.033280pt;}
.y92{bottom:705.736000pt;}
.y107{bottom:709.489920pt;}
.y2a2{bottom:711.469520pt;}
.y1c8{bottom:712.766720pt;}
.y1f6{bottom:714.190320pt;}
.y27a{bottom:715.158160pt;}
.y14{bottom:716.960000pt;}
.y199{bottom:719.480000pt;}
.y63{bottom:719.664000pt;}
.ybe{bottom:720.308000pt;}
.y91{bottom:720.460000pt;}
.y165{bottom:720.483280pt;}
.yd6{bottom:721.629280pt;}
.y3c{bottom:721.759867pt;}
.y106{bottom:727.245280pt;}
.y2a1{bottom:729.866240pt;}
.y1c7{bottom:731.163440pt;}
.y1f5{bottom:732.587040pt;}
.y279{bottom:733.554880pt;}
.y62{bottom:734.388000pt;}
.ybd{bottom:735.032000pt;}
.y198{bottom:737.876720pt;}
.y164{bottom:738.880000pt;}
.yd5{bottom:739.225280pt;}
.y13{bottom:742.250240pt;}
.y90{bottom:743.020000pt;}
.y105{bottom:744.841280pt;}
.y7{bottom:745.800000pt;}
.ya{bottom:746.518652pt;}
.y2a0{bottom:748.262960pt;}
.y1c6{bottom:749.560160pt;}
.y1f4{bottom:750.983760pt;}
.y278{bottom:751.951600pt;}
.y3b{bottom:752.960000pt;}
.y197{bottom:756.273440pt;}
.y2ce{bottom:756.400000pt;}
.y61{bottom:756.948000pt;}
.yd4{bottom:756.980640pt;}
.y8f{bottom:757.744000pt;}
.ybc{bottom:757.748000pt;}
.y163{bottom:757.919867pt;}
.y12{bottom:759.695360pt;}
.y9{bottom:762.238265pt;}
.y104{bottom:762.437280pt;}
.y29f{bottom:766.659680pt;}
.y1c5{bottom:767.956880pt;}
.y1f3{bottom:769.300320pt;}
.y277{bottom:770.348320pt;}
.y60{bottom:771.672000pt;}
.ybb{bottom:772.472000pt;}
.yd3{bottom:774.576640pt;}
.y196{bottom:774.670160pt;}
.y11{bottom:776.971520pt;}
.y8{bottom:777.959333pt;}
.y103{bottom:780.033280pt;}
.y8e{bottom:780.304000pt;}
.y2cd{bottom:780.400000pt;}
.y29e{bottom:785.056400pt;}
.y3a{bottom:786.243840pt;}
.y1c4{bottom:786.353600pt;}
.y1f2{bottom:787.697040pt;}
.yd2{bottom:792.172640pt;}
.y195{bottom:793.066880pt;}
.y10{bottom:794.247680pt;}
.y5f{bottom:794.388000pt;}
.y162{bottom:794.960000pt;}
.y8d{bottom:795.028000pt;}
.yba{bottom:795.032000pt;}
.y2cc{bottom:796.408000pt;}
.y276{bottom:796.747680pt;}
.y102{bottom:797.629280pt;}
.y29d{bottom:803.453120pt;}
.y1c3{bottom:804.750320pt;}
.y5e{bottom:809.112000pt;}
.yb9{bottom:809.756000pt;}
.yd1{bottom:809.768640pt;}
.y194{bottom:811.463600pt;}
.y161{bottom:811.520000pt;}
.y2cb{bottom:812.404000pt;}
.y1f1{bottom:814.096400pt;}
.y275{bottom:815.144400pt;}
.y101{bottom:815.384640pt;}
.y8c{bottom:817.744000pt;}
.y39{bottom:819.677760pt;}
.yf{bottom:819.690240pt;}
.y29c{bottom:821.849840pt;}
.y21c{bottom:823.129840pt;}
.y1c2{bottom:823.147040pt;}
.yd0{bottom:827.364640pt;}
.y2ca{bottom:828.400000pt;}
.y160{bottom:828.640640pt;}
.y193{bottom:829.860320pt;}
.y5d{bottom:831.672000pt;}
.yb8{bottom:832.316000pt;}
.y8b{bottom:832.468000pt;}
.y1f0{bottom:832.493120pt;}
.y100{bottom:832.980640pt;}
.y274{bottom:833.541120pt;}
.y29b{bottom:840.246560pt;}
.y258{bottom:840.254400pt;}
.y21b{bottom:841.526560pt;}
.y1c1{bottom:841.543760pt;}
.ye{bottom:844.963840pt;}
.ycf{bottom:845.120000pt;}
.y5c{bottom:846.396000pt;}
.yb7{bottom:847.040000pt;}
.y192{bottom:848.257040pt;}
.yff{bottom:850.576640pt;}
.y1ef{bottom:850.889840pt;}
.y273{bottom:851.937840pt;}
.y2c9{bottom:852.424000pt;}
.y38{bottom:852.961920pt;}
.y8a{bottom:855.028000pt;}
.y15f{bottom:855.040000pt;}
.y29a{bottom:858.643280pt;}
.y257{bottom:858.651120pt;}
.y21a{bottom:859.923280pt;}
.y1c0{bottom:859.940480pt;}
.y191{bottom:866.653760pt;}
.yfe{bottom:868.172640pt;}
.y2c8{bottom:868.420000pt;}
.y5b{bottom:868.956000pt;}
.y1ee{bottom:869.286560pt;}
.y89{bottom:869.752000pt;}
.yb6{bottom:869.756000pt;}
.yd{bottom:870.237440pt;}
.y272{bottom:870.334560pt;}
.y15e{bottom:872.720000pt;}
.yce{bottom:876.960000pt;}
.y299{bottom:877.040000pt;}
.y256{bottom:877.047840pt;}
.y219{bottom:878.320000pt;}
.y1bf{bottom:878.337200pt;}
.y5a{bottom:883.680000pt;}
.y2c7{bottom:884.416000pt;}
.yb5{bottom:884.480000pt;}
.yfd{bottom:885.768640pt;}
.y37{bottom:886.246080pt;}
.y1ed{bottom:887.683280pt;}
.y271{bottom:888.731280pt;}
.y88{bottom:892.312000pt;}
.y190{bottom:893.053120pt;}
.y255{bottom:895.444560pt;}
.yc{bottom:895.680000pt;}
.y218{bottom:896.720000pt;}
.y1be{bottom:896.733920pt;}
.y15d{bottom:900.320000pt;}
.yfc{bottom:903.524000pt;}
.y298{bottom:904.640000pt;}
.y1ec{bottom:906.080000pt;}
.y87{bottom:907.036000pt;}
.yb4{bottom:907.040000pt;}
.y270{bottom:907.128000pt;}
.y2c6{bottom:908.416000pt;}
.y18f{bottom:911.449840pt;}
.ycd{bottom:913.440000pt;}
.y217{bottom:915.120000pt;}
.y1bd{bottom:915.130640pt;}
.y59{bottom:916.000000pt;}
.y36{bottom:919.680000pt;}
.yb{bottom:920.800000pt;}
.yfb{bottom:921.120000pt;}
.y86{bottom:921.760000pt;}
.y254{bottom:921.843920pt;}
.y2c5{bottom:924.412000pt;}
.y26f{bottom:925.524720pt;}
.y15c{bottom:927.920000pt;}
.y18e{bottom:929.846560pt;}
.y1bc{bottom:933.527360pt;}
.y1eb{bottom:933.680000pt;}
.y2c4{bottom:940.408000pt;}
.y216{bottom:941.520000pt;}
.y237{bottom:941.523280pt;}
.y18d{bottom:948.243280pt;}
.y1bb{bottom:951.924080pt;}
.y15b{bottom:955.520000pt;}
.y2c3{bottom:956.404000pt;}
.y215{bottom:959.920000pt;}
.y236{bottom:959.926720pt;}
.y1ea{bottom:963.427360pt;}
.y18c{bottom:966.640000pt;}
.y1ba{bottom:970.320800pt;}
.y214{bottom:978.320000pt;}
.y235{bottom:978.323440pt;}
.y1e9{bottom:979.913600pt;}
.y2c2{bottom:980.404000pt;}
.y15a{bottom:983.120000pt;}
.y18b{bottom:994.160000pt;}
.y2c1{bottom:996.400000pt;}
.y1e8{bottom:996.480000pt;}
.y1b9{bottom:996.640000pt;}
.y154{bottom:1007.840000pt;}
.y153{bottom:1020.488000pt;}
.y152{bottom:1036.808000pt;}
.y187{bottom:1045.276000pt;}
.y151{bottom:1053.284000pt;}
.y1b7{bottom:1057.280000pt;}
.y186{bottom:1058.804000pt;}
.y35{bottom:1061.440000pt;}
.y150{bottom:1069.760000pt;}
.y1b6{bottom:1069.840000pt;}
.y185{bottom:1071.040000pt;}
.h24{height:11.733399pt;}
.h1c{height:28.687500pt;}
.h1d{height:33.564375pt;}
.h26{height:38.050469pt;}
.h1b{height:38.154375pt;}
.h7{height:38.713437pt;}
.h16{height:38.880313pt;}
.hb{height:40.307500pt;}
.h3{height:41.900219pt;}
.h22{height:42.862031pt;}
.h27{height:42.898062pt;}
.h1a{height:42.914062pt;}
.h13{height:43.031250pt;}
.h10{height:43.096250pt;}
.h12{height:43.335938pt;}
.h25{height:44.354167pt;}
.hd{height:46.843750pt;}
.h2{height:47.461850pt;}
.h17{height:47.621250pt;}
.h18{height:47.660197pt;}
.h28{height:47.673281pt;}
.h23{height:47.777656pt;}
.h1e{height:47.908125pt;}
.h15{height:47.958438pt;}
.h21{height:48.247344pt;}
.h8{height:50.490000pt;}
.h9{height:50.847500pt;}
.hf{height:52.785000pt;}
.he{height:53.158750pt;}
.ha{height:57.781250pt;}
.h5{height:61.007116pt;}
.hc{height:67.604062pt;}
.h11{height:67.609182pt;}
.h20{height:70.265625pt;}
.h14{height:76.849063pt;}
.h1f{height:86.671875pt;}
.h4{height:252.314347pt;}
.h0{height:1122.520000pt;}
.h6{height:1122.560000pt;}
.h19{height:1122.640000pt;}
.h1{height:1122.666667pt;}
.w4{width:44.485333pt;}
.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:121.608000pt;}
.xd{left:131.520000pt;}
.x6{left:137.440000pt;}
.x14{left:151.280000pt;}
.xe{left:156.720000pt;}
.x7{left:161.436960pt;}
.x19{left:192.640000pt;}
.x11{left:196.565920pt;}
.x5{left:208.944640pt;}
.x13{left:216.716000pt;}
.x2{left:222.448000pt;}
.x1d{left:231.760000pt;}
.x10{left:246.744000pt;}
.x1b{left:284.240000pt;}
.x3{left:325.919733pt;}
.x1{left:327.100000pt;}
.x9{left:342.404000pt;}
.x17{left:363.040000pt;}
.x15{left:374.677327pt;}
.x16{left:378.160000pt;}
.xc{left:396.960000pt;}
.xa{left:417.692000pt;}
.xb{left:522.260000pt;}
.x18{left:557.920000pt;}
.x1a{left:600.961840pt;}
.x8{left:680.480000pt;}
.x1c{left:681.440400pt;}
}




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