
    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_9bd1ae6eb5803845e3ea6744.woff')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_f32a06d3bb3414f36d5d837f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_111c0272c1096c7220d5f9cd.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_1e480cf546f5830e4d08670c.woff')format("woff");}.ff4{font-family:ff4;line-height:0.891602;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_3f4e5807aac46f3868ab9b8d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_dfe8519ef4282fc20c724946.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e22e3bbadf1cd3f71725d551.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8d136bdc063f680e34955dd2.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_a4828b6bf5ae2bcec555f05b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_46a3a8c05bd6ff20c530373f.woff')format("woff");}.ffa{font-family:ffa;line-height:0.859375;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.va{vertical-align:-33.137640px;}
.v9{vertical-align:-23.058000px;}
.v4{vertical-align:-20.880000px;}
.v6{vertical-align:-19.434600px;}
.v5{vertical-align:-12.978360px;}
.v8{vertical-align:-11.133720px;}
.v1{vertical-align:-9.354960px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:9.025560px;}
.v3{vertical-align:24.120000px;}
.vb{vertical-align:31.680000px;}
.v2{vertical-align:40.647960px;}
.ls33{letter-spacing:-2.883600px;}
.ls3b{letter-spacing:-2.787480px;}
.lsce{letter-spacing:-0.388800px;}
.ls9a{letter-spacing:-0.378000px;}
.ls4a{letter-spacing:-0.263520px;}
.ls9b{letter-spacing:-0.240480px;}
.ls62{letter-spacing:-0.167760px;}
.lsb0{letter-spacing:-0.162000px;}
.ls4{letter-spacing:-0.150120px;}
.ls2{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.143640px;}
.ls25{letter-spacing:-0.132120px;}
.ls22{letter-spacing:-0.131760px;}
.ls63{letter-spacing:-0.084240px;}
.ls34{letter-spacing:-0.083880px;}
.ls37{letter-spacing:-0.072000px;}
.ls23{letter-spacing:-0.065880px;}
.ls69{letter-spacing:-0.054000px;}
.ls1f{letter-spacing:-0.047880px;}
.ls38{letter-spacing:-0.042120px;}
.ls1{letter-spacing:0.000000px;}
.ls91{letter-spacing:0.000720px;}
.lsbf{letter-spacing:0.016200px;}
.lscf{letter-spacing:0.036000px;}
.lsbd{letter-spacing:0.047880px;}
.ls68{letter-spacing:0.054000px;}
.ls4b{letter-spacing:0.060840px;}
.ls0{letter-spacing:0.065880px;}
.ls36{letter-spacing:0.072000px;}
.lsb3{letter-spacing:0.072468px;}
.lsa0{letter-spacing:0.078840px;}
.ls64{letter-spacing:0.084240px;}
.ls78{letter-spacing:0.087840px;}
.ls6{letter-spacing:0.095760px;}
.lsa4{letter-spacing:0.108000px;}
.ls75{letter-spacing:0.118584px;}
.ls47{letter-spacing:0.119880px;}
.ls79{letter-spacing:0.120240px;}
.lsa{letter-spacing:0.131760px;}
.ls21{letter-spacing:0.132120px;}
.ls20{letter-spacing:0.143640px;}
.ls5{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.150120px;}
.ls6b{letter-spacing:0.164700px;}
.ls65{letter-spacing:0.167760px;}
.lsab{letter-spacing:0.168480px;}
.lscb{letter-spacing:0.184464px;}
.ls53{letter-spacing:0.187560px;}
.ls8{letter-spacing:0.191520px;}
.ls24{letter-spacing:0.197640px;}
.lsc7{letter-spacing:0.210600px;}
.lsad{letter-spacing:0.210816px;}
.ls35{letter-spacing:0.216000px;}
.ls87{letter-spacing:0.237168px;}
.lsb2{letter-spacing:0.243756px;}
.ls31{letter-spacing:0.263520px;}
.ls2e{letter-spacing:0.288000px;}
.ls6d{letter-spacing:0.289872px;}
.lsaf{letter-spacing:0.294840px;}
.lsb4{letter-spacing:0.309636px;}
.ls2f{letter-spacing:0.329400px;}
.lsb1{letter-spacing:0.342576px;}
.ls9f{letter-spacing:0.349164px;}
.ls93{letter-spacing:0.360720px;}
.ls39{letter-spacing:0.395280px;}
.lsbb{letter-spacing:0.415044px;}
.ls2a{letter-spacing:0.461160px;}
.ls7{letter-spacing:0.478800px;}
.ls61{letter-spacing:0.479520px;}
.ls86{letter-spacing:0.483120px;}
.ls7f{letter-spacing:0.507276px;}
.ls66{letter-spacing:0.566568px;}
.ls2b{letter-spacing:0.592920px;}
.ls5d{letter-spacing:0.639036px;}
.ls28{letter-spacing:0.648000px;}
.ls2c{letter-spacing:0.856440px;}
.ls3a{letter-spacing:0.922320px;}
.ls30{letter-spacing:1.008000px;}
.ls7e{letter-spacing:1.047492px;}
.ls6c{letter-spacing:1.317600px;}
.ls8b{letter-spacing:1.396656px;}
.lsd0{letter-spacing:1.412640px;}
.ls4f{letter-spacing:1.647000px;}
.ls9d{letter-spacing:1.660176px;}
.ls2d{letter-spacing:1.728000px;}
.ls96{letter-spacing:1.831464px;}
.ls4d{letter-spacing:2.042280px;}
.lsa7{letter-spacing:2.345328px;}
.ls89{letter-spacing:2.371680px;}
.ls70{letter-spacing:2.766960px;}
.ls94{letter-spacing:3.096360px;}
.lsac{letter-spacing:3.122712px;}
.ls8a{letter-spacing:3.287412px;}
.ls51{letter-spacing:3.491640px;}
.ls73{letter-spacing:3.821040px;}
.ls49{letter-spacing:4.216320px;}
.ls74{letter-spacing:4.545720px;}
.ls55{letter-spacing:4.941000px;}
.ls8c{letter-spacing:5.270400px;}
.lsa3{letter-spacing:5.290164px;}
.ls4e{letter-spacing:5.599800px;}
.lsae{letter-spacing:5.665680px;}
.lsa9{letter-spacing:5.988492px;}
.lsa8{letter-spacing:5.995080px;}
.lsc6{letter-spacing:6.324480px;}
.ls5f{letter-spacing:6.719760px;}
.ls60{letter-spacing:7.049160px;}
.ls7d{letter-spacing:7.082100px;}
.ls9e{letter-spacing:7.088688px;}
.lsb9{letter-spacing:7.128216px;}
.lsb8{letter-spacing:7.431120px;}
.ls72{letter-spacing:7.444440px;}
.lsa5{letter-spacing:7.721136px;}
.ls8d{letter-spacing:7.773840px;}
.lsaa{letter-spacing:8.169120px;}
.ls50{letter-spacing:8.498520px;}
.lsbc{letter-spacing:8.893800px;}
.ls99{letter-spacing:9.223200px;}
.lsc8{letter-spacing:9.618480px;}
.ls6f{letter-spacing:9.947880px;}
.ls7a{letter-spacing:9.980820px;}
.lsb5{letter-spacing:10.303632px;}
.ls7b{letter-spacing:10.343160px;}
.ls5b{letter-spacing:10.672560px;}
.ls90{letter-spacing:11.001960px;}
.ls92{letter-spacing:11.397240px;}
.ls5e{letter-spacing:11.726640px;}
.ls7c{letter-spacing:12.095568px;}
.ls71{letter-spacing:12.121920px;}
.ls56{letter-spacing:12.451320px;}
.ls8f{letter-spacing:12.846600px;}
.ls97{letter-spacing:13.571280px;}
.ls76{letter-spacing:13.900680px;}
.lsca{letter-spacing:14.295960px;}
.ls77{letter-spacing:14.315724px;}
.ls88{letter-spacing:15.020640px;}
.ls48{letter-spacing:15.679440px;}
.lsa2{letter-spacing:16.028604px;}
.lsa1{letter-spacing:16.074720px;}
.ls59{letter-spacing:17.853480px;}
.lscc{letter-spacing:17.879832px;}
.ls5a{letter-spacing:18.248760px;}
.ls57{letter-spacing:18.578160px;}
.ls58{letter-spacing:18.617688px;}
.ls9c{letter-spacing:18.973440px;}
.lscd{letter-spacing:20.027520px;}
.ls29{letter-spacing:20.088000px;}
.ls95{letter-spacing:20.422800px;}
.lsc0{letter-spacing:22.188384px;}
.lsc3{letter-spacing:22.201560px;}
.lsc9{letter-spacing:22.530960px;}
.lsc1{letter-spacing:23.374224px;}
.ls8e{letter-spacing:25.429680px;}
.lsc2{letter-spacing:26.523288px;}
.ls6e{letter-spacing:27.076680px;}
.lsa6{letter-spacing:28.328400px;}
.ls27{letter-spacing:28.728000px;}
.ls98{letter-spacing:29.382480px;}
.ls67{letter-spacing:36.431640px;}
.lsc4{letter-spacing:36.563400px;}
.lsbe{letter-spacing:36.761040px;}
.lsc5{letter-spacing:36.958680px;}
.lsba{letter-spacing:37.683360px;}
.ls5c{letter-spacing:41.965560px;}
.ls6a{letter-spacing:51.264000px;}
.ls52{letter-spacing:59.423760px;}
.ls54{letter-spacing:86.841360px;}
.ls26{letter-spacing:111.528000px;}
.ls4c{letter-spacing:121.833360px;}
.ls10{letter-spacing:122.997960px;}
.lsf{letter-spacing:126.226080px;}
.ls1a{letter-spacing:138.479760px;}
.lsb7{letter-spacing:165.444120px;}
.ls17{letter-spacing:183.475800px;}
.ls1c{letter-spacing:188.877960px;}
.ls14{letter-spacing:192.106080px;}
.ls13{letter-spacing:223.794360px;}
.ls1d{letter-spacing:247.906440px;}
.lsb{letter-spacing:285.326280px;}
.lse{letter-spacing:290.754792px;}
.lsb6{letter-spacing:291.475800px;}
.ls9{letter-spacing:315.235800px;}
.ls42{letter-spacing:321.719040px;}
.ls18{letter-spacing:327.818880px;}
.ls3d{letter-spacing:333.257040px;}
.ls45{letter-spacing:335.409840px;}
.ls3c{letter-spacing:337.202640px;}
.ls3f{letter-spacing:341.148240px;}
.ls12{letter-spacing:341.521920px;}
.ls43{letter-spacing:342.207000px;}
.lsd{letter-spacing:343.300680px;}
.ls44{letter-spacing:343.301040px;}
.ls3e{letter-spacing:347.646600px;}
.ls41{letter-spacing:348.740640px;}
.ls15{letter-spacing:351.206280px;}
.ls46{letter-spacing:352.286280px;}
.ls40{letter-spacing:366.377040px;}
.ls11{letter-spacing:367.083360px;}
.lsc{letter-spacing:418.930920px;}
.ls19{letter-spacing:574.078320px;}
.ls81{letter-spacing:574.803000px;}
.ls85{letter-spacing:636.005520px;}
.ls16{letter-spacing:640.683000px;}
.ls80{letter-spacing:648.588600px;}
.ls83{letter-spacing:650.762640px;}
.ls84{letter-spacing:651.487320px;}
.ls82{letter-spacing:659.722320px;}
.ls1b{letter-spacing:775.671120px;}
.ls32{letter-spacing:849.111120px;}
.sc_{text-shadow:none;}
.sc5{text-shadow:-0.015em 0 rgb(0,52,27),0 0.015em rgb(0,52,27),0.015em 0 rgb(0,52,27),0 -0.015em  rgb(0,52,27);}
.sc4{text-shadow:-0.015em 0 rgb(0,104,56),0 0.015em rgb(0,104,56),0.015em 0 rgb(0,104,56),0 -0.015em  rgb(0,104,56);}
.sc3{text-shadow:-0.015em 0 rgb(186,104,39),0 0.015em rgb(186,104,39),0.015em 0 rgb(186,104,39),0 -0.015em  rgb(186,104,39);}
.sc2{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.sc1{text-shadow:-0.015em 0 rgb(171,98,46),0 0.015em rgb(171,98,46),0.015em 0 rgb(171,98,46),0 -0.015em  rgb(171,98,46);}
.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;}
.sc5{-webkit-text-stroke:0.015em rgb(0,52,27);text-shadow:none;}
.sc4{-webkit-text-stroke:0.015em rgb(0,104,56);text-shadow:none;}
.sc3{-webkit-text-stroke:0.015em rgb(186,104,39);text-shadow:none;}
.sc2{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(171,98,46);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws45{word-spacing:-65.880000px;}
.ws1{word-spacing:-33.777000px;}
.ws44{word-spacing:-27.212760px;}
.ws59{word-spacing:-27.092880px;}
.ws1cb{word-spacing:-19.124640px;}
.ws1e{word-spacing:-18.956880px;}
.ws22{word-spacing:-18.873000px;}
.wsd2{word-spacing:-18.789120px;}
.ws187{word-spacing:-16.344000px;}
.ws20{word-spacing:-16.272000px;}
.ws1f{word-spacing:-16.200000px;}
.ws0{word-spacing:-16.128000px;}
.ws12c{word-spacing:-15.350040px;}
.ws5a{word-spacing:-15.284160px;}
.wsc3{word-spacing:-15.218280px;}
.ws5d{word-spacing:-15.152400px;}
.wsb{word-spacing:-15.086520px;}
.ws97{word-spacing:-15.053580px;}
.ws2a{word-spacing:-15.020640px;}
.wsc{word-spacing:-14.954760px;}
.wsd{word-spacing:-14.888880px;}
.wsa{word-spacing:-14.823000px;}
.wse{word-spacing:-14.757120px;}
.ws1db{word-spacing:-14.625360px;}
.ws1e0{word-spacing:-13.707360px;}
.ws113{word-spacing:-13.346640px;}
.ws131{word-spacing:-12.312000px;}
.ws1e6{word-spacing:-12.258000px;}
.ws127{word-spacing:-12.204000px;}
.ws84{word-spacing:-12.150000px;}
.ws188{word-spacing:-10.868760px;}
.ws8{word-spacing:-10.773000px;}
.ws9{word-spacing:-10.677240px;}
.ws13c{word-spacing:-9.813960px;}
.ws1cc{word-spacing:-9.729720px;}
.ws139{word-spacing:-9.687600px;}
.ws5c{word-spacing:-9.603360px;}
.wsb2{word-spacing:-9.519120px;}
.ws21{word-spacing:-9.477000px;}
.ws5b{word-spacing:-9.434880px;}
.ws11b{word-spacing:-3.886920px;}
.ws115{word-spacing:-3.755160px;}
.ws61{word-spacing:-3.689280px;}
.ws8e{word-spacing:-3.623400px;}
.wsaa{word-spacing:-3.557520px;}
.ws1d5{word-spacing:-3.491640px;}
.ws6c{word-spacing:-3.359880px;}
.ws67{word-spacing:-3.294000px;}
.ws68{word-spacing:-3.228120px;}
.wsda{word-spacing:-3.162240px;}
.wscb{word-spacing:-3.030480px;}
.ws69{word-spacing:-2.964600px;}
.wsff{word-spacing:-2.898720px;}
.ws4e{word-spacing:-2.766960px;}
.ws42{word-spacing:-2.635200px;}
.ws3d{word-spacing:-2.569320px;}
.ws1d9{word-spacing:-2.503440px;}
.ws8f{word-spacing:-2.437560px;}
.ws1e7{word-spacing:-2.388960px;}
.ws90{word-spacing:-2.305800px;}
.ws32{word-spacing:-2.239920px;}
.ws141{word-spacing:-2.174040px;}
.ws11c{word-spacing:-2.042280px;}
.ws15d{word-spacing:-1.976400px;}
.ws2f{word-spacing:-1.910520px;}
.ws2e{word-spacing:-1.844640px;}
.ws105{word-spacing:-1.778760px;}
.ws144{word-spacing:-1.712880px;}
.ws1da{word-spacing:-1.647000px;}
.ws101{word-spacing:-1.581120px;}
.ws4d{word-spacing:-1.515240px;}
.ws180{word-spacing:-1.449360px;}
.ws31{word-spacing:-1.383480px;}
.ws152{word-spacing:-1.317600px;}
.ws13e{word-spacing:-1.251720px;}
.ws6d{word-spacing:-1.185840px;}
.ws30{word-spacing:-1.119960px;}
.wsd4{word-spacing:-1.054080px;}
.ws149{word-spacing:-0.922320px;}
.ws53{word-spacing:-0.856440px;}
.wsb9{word-spacing:-0.790560px;}
.wsba{word-spacing:-0.724680px;}
.wsa9{word-spacing:-0.658800px;}
.ws5e{word-spacing:-0.599400px;}
.ws8a{word-spacing:-0.592920px;}
.ws1df{word-spacing:-0.587520px;}
.ws29{word-spacing:-0.576720px;}
.ws1c{word-spacing:-0.528480px;}
.ws3e{word-spacing:-0.527040px;}
.ws43{word-spacing:-0.461160px;}
.ws18{word-spacing:-0.395280px;}
.ws2d{word-spacing:-0.329400px;}
.ws6{word-spacing:-0.300240px;}
.ws1a{word-spacing:-0.263520px;}
.ws2b{word-spacing:-0.239760px;}
.ws7{word-spacing:-0.216000px;}
.ws1d{word-spacing:-0.197640px;}
.ws1d7{word-spacing:-0.167760px;}
.ws5{word-spacing:-0.150120px;}
.ws27{word-spacing:-0.144000px;}
.ws13{word-spacing:-0.143640px;}
.ws15{word-spacing:-0.132120px;}
.ws16{word-spacing:-0.131760px;}
.ws5f{word-spacing:-0.119880px;}
.ws23{word-spacing:-0.096120px;}
.ws7b{word-spacing:-0.083880px;}
.ws26{word-spacing:-0.072000px;}
.ws2{word-spacing:-0.065880px;}
.ws85{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.ws86{word-spacing:0.054000px;}
.ws28{word-spacing:0.065880px;}
.ws4{word-spacing:0.072000px;}
.ws24{word-spacing:0.083880px;}
.ws87{word-spacing:0.108000px;}
.ws38{word-spacing:0.131760px;}
.ws1b{word-spacing:0.132120px;}
.ws12{word-spacing:0.143640px;}
.ws189{word-spacing:0.162000px;}
.ws25{word-spacing:0.167760px;}
.ws19{word-spacing:0.197640px;}
.ws142{word-spacing:0.216000px;}
.ws60{word-spacing:0.251640px;}
.ws2c{word-spacing:0.263520px;}
.ws17{word-spacing:0.329400px;}
.ws11e{word-spacing:0.360720px;}
.ws95{word-spacing:0.395280px;}
.ws11a{word-spacing:0.432000px;}
.ws93{word-spacing:0.461160px;}
.ws14{word-spacing:0.478800px;}
.ws7e{word-spacing:0.527040px;}
.wsbb{word-spacing:0.587160px;}
.ws3a{word-spacing:0.592920px;}
.ws92{word-spacing:0.658800px;}
.ws94{word-spacing:0.724680px;}
.ws91{word-spacing:0.922320px;}
.ws96{word-spacing:0.988200px;}
.ws145{word-spacing:1.054080px;}
.ws111{word-spacing:1.119960px;}
.wsde{word-spacing:1.185840px;}
.wsb1{word-spacing:1.251720px;}
.ws77{word-spacing:1.317600px;}
.ws55{word-spacing:1.383480px;}
.wsdc{word-spacing:1.449360px;}
.ws10{word-spacing:1.484280px;}
.wsec{word-spacing:1.515240px;}
.wsf{word-spacing:1.580040px;}
.ws4c{word-spacing:1.581120px;}
.wse6{word-spacing:1.647000px;}
.ws4b{word-spacing:1.712880px;}
.wse7{word-spacing:1.778760px;}
.ws125{word-spacing:1.844640px;}
.ws47{word-spacing:1.910520px;}
.ws11{word-spacing:1.915200px;}
.ws1ab{word-spacing:1.976400px;}
.ws110{word-spacing:2.042280px;}
.ws48{word-spacing:2.108160px;}
.wsd1{word-spacing:2.174040px;}
.ws88{word-spacing:2.371680px;}
.ws46{word-spacing:2.437560px;}
.ws89{word-spacing:2.503440px;}
.ws140{word-spacing:2.635200px;}
.ws13f{word-spacing:2.701080px;}
.ws72{word-spacing:2.766960px;}
.ws7d{word-spacing:2.832840px;}
.ws12f{word-spacing:2.898720px;}
.ws99{word-spacing:2.964600px;}
.ws1e1{word-spacing:3.030480px;}
.ws9d{word-spacing:3.096360px;}
.ws98{word-spacing:3.162240px;}
.ws10b{word-spacing:3.228120px;}
.wsc0{word-spacing:3.294000px;}
.ws52{word-spacing:3.359880px;}
.wsdf{word-spacing:3.425760px;}
.ws51{word-spacing:3.491640px;}
.ws9a{word-spacing:3.557520px;}
.wsdd{word-spacing:3.623400px;}
.wse1{word-spacing:3.689280px;}
.ws8d{word-spacing:3.821040px;}
.ws13b{word-spacing:3.886920px;}
.wse0{word-spacing:3.952800px;}
.ws40{word-spacing:4.084560px;}
.ws41{word-spacing:4.216320px;}
.ws3f{word-spacing:4.282200px;}
.ws10d{word-spacing:4.348080px;}
.ws10c{word-spacing:4.413960px;}
.wsc1{word-spacing:4.479840px;}
.wsa0{word-spacing:4.545720px;}
.wsa3{word-spacing:4.611600px;}
.wsa2{word-spacing:4.677480px;}
.wsae{word-spacing:4.743360px;}
.ws121{word-spacing:4.809240px;}
.ws65{word-spacing:4.941000px;}
.ws9c{word-spacing:5.006880px;}
.ws134{word-spacing:5.072760px;}
.ws112{word-spacing:5.138640px;}
.ws130{word-spacing:5.204520px;}
.wsa1{word-spacing:5.270400px;}
.ws3b{word-spacing:5.336280px;}
.ws66{word-spacing:5.402160px;}
.ws1d2{word-spacing:5.468040px;}
.ws4a{word-spacing:5.599800px;}
.ws49{word-spacing:5.665680px;}
.wse4{word-spacing:5.731560px;}
.ws176{word-spacing:5.929200px;}
.ws13a{word-spacing:5.995080px;}
.wsaf{word-spacing:6.060960px;}
.ws1dd{word-spacing:6.126840px;}
.ws1c3{word-spacing:6.192720px;}
.ws9e{word-spacing:6.324480px;}
.ws1c1{word-spacing:6.390360px;}
.ws120{word-spacing:6.456240px;}
.wsf8{word-spacing:6.522120px;}
.ws82{word-spacing:6.588000px;}
.ws155{word-spacing:6.653880px;}
.wsd3{word-spacing:6.719760px;}
.ws81{word-spacing:6.785640px;}
.ws83{word-spacing:6.851520px;}
.wsc8{word-spacing:6.917400px;}
.wsc7{word-spacing:7.049160px;}
.wsca{word-spacing:7.115040px;}
.wsc9{word-spacing:7.180920px;}
.wsbf{word-spacing:7.312680px;}
.ws1c6{word-spacing:7.444440px;}
.wsbd{word-spacing:7.510320px;}
.wsbe{word-spacing:7.576200px;}
.wse9{word-spacing:7.642080px;}
.wsd0{word-spacing:7.773840px;}
.wscf{word-spacing:7.839720px;}
.wse8{word-spacing:7.905600px;}
.ws4f{word-spacing:8.169120px;}
.ws50{word-spacing:8.235000px;}
.ws147{word-spacing:8.300880px;}
.ws35{word-spacing:8.498520px;}
.ws36{word-spacing:8.564400px;}
.ws146{word-spacing:8.630280px;}
.wsf7{word-spacing:8.696160px;}
.ws106{word-spacing:8.762040px;}
.wsa5{word-spacing:8.893800px;}
.wsa4{word-spacing:8.959680px;}
.wsf6{word-spacing:9.025560px;}
.ws12e{word-spacing:9.091440px;}
.ws1ee{word-spacing:9.157320px;}
.ws54{word-spacing:9.223200px;}
.ws9f{word-spacing:9.289080px;}
.ws123{word-spacing:9.486720px;}
.ws9b{word-spacing:9.618480px;}
.ws7c{word-spacing:9.684360px;}
.wsb0{word-spacing:9.750240px;}
.wsc4{word-spacing:9.882000px;}
.ws128{word-spacing:9.947880px;}
.wsc5{word-spacing:10.013760px;}
.ws132{word-spacing:10.079640px;}
.ws114{word-spacing:10.277280px;}
.wsf0{word-spacing:10.343160px;}
.ws1d8{word-spacing:10.474920px;}
.ws75{word-spacing:10.540800px;}
.ws74{word-spacing:10.606680px;}
.ws76{word-spacing:10.672560px;}
.ws73{word-spacing:10.738440px;}
.wsf1{word-spacing:10.804320px;}
.ws1e5{word-spacing:10.870200px;}
.wsee{word-spacing:10.936080px;}
.ws119{word-spacing:11.001960px;}
.ws34{word-spacing:11.067840px;}
.ws102{word-spacing:11.133720px;}
.ws1e8{word-spacing:11.199600px;}
.wsef{word-spacing:11.265480px;}
.ws64{word-spacing:11.397240px;}
.ws62{word-spacing:11.463120px;}
.ws13d{word-spacing:11.529000px;}
.ws12d{word-spacing:11.594880px;}
.ws63{word-spacing:11.726640px;}
.ws7f{word-spacing:11.792520px;}
.wsc6{word-spacing:11.858400px;}
.ws129{word-spacing:11.990160px;}
.ws10a{word-spacing:12.121920px;}
.wsbc{word-spacing:12.187800px;}
.ws80{word-spacing:12.253680px;}
.ws104{word-spacing:12.319560px;}
.wse2{word-spacing:12.451320px;}
.ws6a{word-spacing:12.517200px;}
.ws103{word-spacing:12.583080px;}
.ws8c{word-spacing:12.648960px;}
.ws109{word-spacing:12.714840px;}
.ws8b{word-spacing:12.846600px;}
.ws6b{word-spacing:12.912480px;}
.wsed{word-spacing:12.978360px;}
.wsb3{word-spacing:13.044240px;}
.ws116{word-spacing:13.110120px;}
.ws117{word-spacing:13.176000px;}
.wsb4{word-spacing:13.241880px;}
.ws124{word-spacing:13.307760px;}
.wsa6{word-spacing:13.505400px;}
.wsa8{word-spacing:13.571280px;}
.wsa7{word-spacing:13.637160px;}
.wsc2{word-spacing:13.966560px;}
.ws1c8{word-spacing:14.164200px;}
.ws1c4{word-spacing:14.230080px;}
.ws14a{word-spacing:14.295960px;}
.ws1c5{word-spacing:14.361840px;}
.ws150{word-spacing:14.625360px;}
.ws10e{word-spacing:14.691240px;}
.ws175{word-spacing:14.757120px;}
.wsd9{word-spacing:15.020640px;}
.wsd8{word-spacing:15.086520px;}
.wse3{word-spacing:15.415920px;}
.ws143{word-spacing:15.547680px;}
.ws16b{word-spacing:15.679440px;}
.ws37{word-spacing:15.745320px;}
.ws158{word-spacing:16.008840px;}
.wsd6{word-spacing:16.074720px;}
.wsd5{word-spacing:16.140600px;}
.wsd7{word-spacing:16.206480px;}
.wsdb{word-spacing:16.404120px;}
.wse5{word-spacing:16.470000px;}
.ws1c9{word-spacing:16.535880px;}
.wsac{word-spacing:16.667640px;}
.wsad{word-spacing:16.799400px;}
.ws1c7{word-spacing:17.062920px;}
.wsab{word-spacing:17.194680px;}
.ws1a5{word-spacing:17.260560px;}
.ws1e2{word-spacing:17.589960px;}
.ws70{word-spacing:17.655840px;}
.ws177{word-spacing:17.853480px;}
.ws71{word-spacing:17.919360px;}
.ws12a{word-spacing:18.248760px;}
.ws11d{word-spacing:18.314640px;}
.ws12b{word-spacing:18.380520px;}
.ws6e{word-spacing:18.512280px;}
.ws6f{word-spacing:18.578160px;}
.ws57{word-spacing:18.644040px;}
.ws56{word-spacing:18.709920px;}
.ws168{word-spacing:18.973440px;}
.ws11f{word-spacing:19.039320px;}
.ws100{word-spacing:19.302840px;}
.ws1e3{word-spacing:19.368720px;}
.ws58{word-spacing:19.698120px;}
.ws1e4{word-spacing:19.895760px;}
.wsb8{word-spacing:20.027520px;}
.wsb7{word-spacing:20.093400px;}
.wsf9{word-spacing:20.159280px;}
.wsfc{word-spacing:20.291040px;}
.ws10f{word-spacing:20.356920px;}
.wsfd{word-spacing:20.422800px;}
.wsfe{word-spacing:20.554560px;}
.ws148{word-spacing:20.620440px;}
.ws136{word-spacing:20.752200px;}
.wsfb{word-spacing:20.818080px;}
.wsfa{word-spacing:21.147480px;}
.wsb6{word-spacing:21.411000px;}
.ws18b{word-spacing:21.476880px;}
.wsb5{word-spacing:21.542760px;}
.ws135{word-spacing:21.806280px;}
.ws33{word-spacing:21.872160px;}
.ws18d{word-spacing:21.938040px;}
.ws15a{word-spacing:22.135680px;}
.ws159{word-spacing:22.201560px;}
.ws122{word-spacing:22.267440px;}
.ws1d4{word-spacing:22.530960px;}
.ws107{word-spacing:22.596840px;}
.ws1dc{word-spacing:22.662720px;}
.ws18a{word-spacing:23.058000px;}
.wsf5{word-spacing:23.189760px;}
.ws186{word-spacing:23.255640px;}
.wsf3{word-spacing:23.321520px;}
.wsf4{word-spacing:23.387400px;}
.ws39{word-spacing:23.519160px;}
.wsf2{word-spacing:23.650920px;}
.ws16d{word-spacing:23.716800px;}
.ws1de{word-spacing:23.914440px;}
.ws167{word-spacing:23.980320px;}
.ws1cd{word-spacing:24.046200px;}
.ws14f{word-spacing:24.441480px;}
.ws1cf{word-spacing:24.639120px;}
.ws3c{word-spacing:24.770880px;}
.wseb{word-spacing:25.100280px;}
.wsea{word-spacing:25.166160px;}
.ws1ce{word-spacing:25.495560px;}
.ws14e{word-spacing:25.759080px;}
.ws18e{word-spacing:25.824960px;}
.ws174{word-spacing:26.154360px;}
.ws172{word-spacing:26.220240px;}
.ws1d1{word-spacing:26.352000px;}
.ws1ed{word-spacing:26.483760px;}
.ws1ec{word-spacing:26.549640px;}
.ws182{word-spacing:26.615520px;}
.ws1c0{word-spacing:26.681400px;}
.ws181{word-spacing:26.879040px;}
.ws15e{word-spacing:26.944920px;}
.ws17d{word-spacing:27.537840px;}
.ws1b7{word-spacing:27.603720px;}
.ws17c{word-spacing:27.669600px;}
.ws17a{word-spacing:27.933120px;}
.ws1ad{word-spacing:27.999000px;}
.ws160{word-spacing:28.328400px;}
.ws138{word-spacing:28.394280px;}
.ws137{word-spacing:28.460160px;}
.ws15b{word-spacing:28.723680px;}
.ws17b{word-spacing:29.184840px;}
.ws153{word-spacing:29.382480px;}
.ws118{word-spacing:29.448360px;}
.ws126{word-spacing:29.777760px;}
.ws1ba{word-spacing:29.843640px;}
.ws198{word-spacing:30.107160px;}
.ws14b{word-spacing:30.173040px;}
.ws191{word-spacing:31.424760px;}
.ws1a7{word-spacing:31.820040px;}
.ws196{word-spacing:32.347080px;}
.ws157{word-spacing:32.412960px;}
.wsce{word-spacing:33.269400px;}
.wscd{word-spacing:33.335280px;}
.wscc{word-spacing:33.401160px;}
.ws108{word-spacing:33.467040px;}
.ws193{word-spacing:33.730560px;}
.ws16c{word-spacing:34.521120px;}
.ws133{word-spacing:34.784640px;}
.ws1b6{word-spacing:34.850520px;}
.ws1eb{word-spacing:34.916400px;}
.ws1a2{word-spacing:35.311680px;}
.ws16e{word-spacing:35.904600px;}
.ws179{word-spacing:36.168120px;}
.ws178{word-spacing:36.234000px;}
.ws1d6{word-spacing:36.563400px;}
.ws190{word-spacing:36.629280px;}
.ws165{word-spacing:37.024560px;}
.ws154{word-spacing:37.353960px;}
.ws16a{word-spacing:37.683360px;}
.ws14d{word-spacing:38.012760px;}
.ws17e{word-spacing:38.078640px;}
.ws1a0{word-spacing:39.659760px;}
.ws19f{word-spacing:39.857400px;}
.ws7a{word-spacing:41.504400px;}
.ws78{word-spacing:41.636160px;}
.ws79{word-spacing:41.702040px;}
.ws1b8{word-spacing:41.767920px;}
.ws1b5{word-spacing:42.426720px;}
.ws164{word-spacing:43.151400px;}
.ws192{word-spacing:44.205480px;}
.ws156{word-spacing:44.534880px;}
.ws169{word-spacing:47.367720px;}
.ws1ca{word-spacing:47.828880px;}
.ws19a{word-spacing:51.320520px;}
.ws199{word-spacing:51.386400px;}
.ws1d0{word-spacing:52.506360px;}
.ws1b3{word-spacing:52.638120px;}
.ws1b0{word-spacing:52.769880px;}
.ws1b2{word-spacing:52.835760px;}
.ws1ac{word-spacing:54.680400px;}
.ws173{word-spacing:55.009800px;}
.ws184{word-spacing:55.800360px;}
.ws1be{word-spacing:56.920320px;}
.ws1bd{word-spacing:57.183840px;}
.ws195{word-spacing:57.908520px;}
.ws15f{word-spacing:58.237920px;}
.ws17f{word-spacing:58.567320px;}
.ws14c{word-spacing:59.292000px;}
.ws1a8{word-spacing:60.082560px;}
.ws166{word-spacing:64.035360px;}
.ws197{word-spacing:67.592880px;}
.ws16f{word-spacing:70.096320px;}
.ws170{word-spacing:70.162200px;}
.ws1a9{word-spacing:70.821000px;}
.ws18f{word-spacing:70.886880px;}
.ws19e{word-spacing:71.282160px;}
.ws1d3{word-spacing:71.545680px;}
.ws1af{word-spacing:71.875080px;}
.ws1b1{word-spacing:72.204480px;}
.ws1e9{word-spacing:78.397200px;}
.ws1a1{word-spacing:80.241840px;}
.ws1b4{word-spacing:82.745280px;}
.ws161{word-spacing:83.008800px;}
.ws19b{word-spacing:85.644000px;}
.ws1ea{word-spacing:87.027480px;}
.ws18c{word-spacing:89.530920px;}
.ws194{word-spacing:89.662680px;}
.ws1bf{word-spacing:92.759040px;}
.ws1ae{word-spacing:96.777720px;}
.ws1bc{word-spacing:100.730520px;}
.ws1a4{word-spacing:102.179880px;}
.ws1a6{word-spacing:115.487640px;}
.ws183{word-spacing:118.649880px;}
.ws1a3{word-spacing:127.741320px;}
.ws19d{word-spacing:145.792440px;}
.ws1b9{word-spacing:151.589880px;}
.ws185{word-spacing:159.034320px;}
.ws163{word-spacing:181.367640px;}
.ws1bb{word-spacing:223.201440px;}
.ws1aa{word-spacing:231.699960px;}
.ws171{word-spacing:238.222080px;}
.ws19c{word-spacing:239.539680px;}
.ws15c{word-spacing:243.294840px;}
.ws162{word-spacing:248.697000px;}
.ws151{word-spacing:253.045080px;}
.ws1c2{word-spacing:273.863160px;}
._a{margin-left:-16.891848px;}
._11{margin-left:-15.027768px;}
._f{margin-left:-12.960000px;}
._b{margin-left:-11.352240px;}
._d{margin-left:-9.648000px;}
._c{margin-left:-8.568000px;}
._8{margin-left:-7.545420px;}
._e{margin-left:-6.313680px;}
._10{margin-left:-4.752000px;}
._13{margin-left:-3.546720px;}
._9{margin-left:-2.196072px;}
._2{margin-left:-1.035828px;}
._1{width:1.224000px;}
._14{width:3.224808px;}
._24{width:4.375800px;}
._1c{width:5.821560px;}
._21{width:6.830640px;}
._20{width:8.300880px;}
._1d{width:9.552600px;}
._25{width:11.024460px;}
._1e{width:12.062880px;}
._22{width:13.844268px;}
._1b{width:16.636320px;}
._1f{width:18.900360px;}
._23{width:20.582280px;}
._1a{width:22.680000px;}
._30{width:24.046200px;}
._27{width:25.107120px;}
._29{width:27.756000px;}
._12{width:29.088000px;}
._26{width:33.428880px;}
._34{width:35.114040px;}
._33{width:38.823084px;}
._35{width:59.950800px;}
._2f{width:68.477040px;}
._32{width:123.639120px;}
._2c{width:308.048760px;}
._17{width:329.807880px;}
._19{width:342.738720px;}
._18{width:371.052000px;}
._16{width:379.206720px;}
._4{width:383.712840px;}
._2d{width:454.861800px;}
._2a{width:497.341800px;}
._5{width:539.876160px;}
._3{width:553.523760px;}
._7{width:692.135280px;}
._6{width:755.973000px;}
._2b{width:770.354280px;}
._2e{width:813.194280px;}
._0{width:849.127320px;}
._31{width:856.394280px;}
._28{width:929.415600px;}
._36{width:972.971640px;}
._15{width:1009.064520px;}
.fcb{color:rgb(0,52,27);}
.fca{color:rgb(0,148,68);}
.fc9{color:rgb(186,104,39);}
.fc6{color:rgb(171,98,46);}
.fc3{color:transparent;}
.fc2{color:rgb(12,92,53);}
.fc8{color:rgb(89,89,89);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(242,242,242);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(16,138,66);}
.fc0{color:rgb(0,104,56);}
.fsc{font-size:4.320000px;}
.fsa{font-size:38.880000px;}
.fs7{font-size:42.120000px;}
.fs3{font-size:47.880000px;}
.fs9{font-size:54.000000px;}
.fsb{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:83.880000px;}
.fs5{font-size:96.120000px;}
.fs8{font-size:119.880000px;}
.fs4{font-size:132.120000px;}
.fs2{font-size:150.120000px;}
.ye{bottom:-61.560000px;}
.yd{bottom:-32.400000px;}
.y11{bottom:-26.280000px;}
.y9{bottom:-11.340000px;}
.y474{bottom:-9.990000px;}
.y478{bottom:-7.110000px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.340000px;}
.y10{bottom:3.330000px;}
.y182{bottom:4.410000px;}
.y16c{bottom:4.500000px;}
.y172{bottom:4.680000px;}
.y16f{bottom:5.040000px;}
.y17a{bottom:5.490000px;}
.y472{bottom:9.270000px;}
.y46e{bottom:9.360000px;}
.y448{bottom:20.070000px;}
.y44a{bottom:20.160000px;}
.y44d{bottom:21.240000px;}
.y380{bottom:24.480000px;}
.y32b{bottom:24.570000px;}
.y1e8{bottom:28.980000px;}
.y1e0{bottom:29.070000px;}
.y445{bottom:33.480000px;}
.y46c{bottom:34.470000px;}
.y470{bottom:34.560000px;}
.y37c{bottom:36.810000px;}
.y3{bottom:38.513070px;}
.y32{bottom:38.520090px;}
.y35a{bottom:39.060000px;}
.y3cd{bottom:39.150000px;}
.y14{bottom:41.755320px;}
.y282{bottom:41.940000px;}
.y17{bottom:42.559560px;}
.y43e{bottom:44.730000px;}
.y1d7{bottom:49.140000px;}
.y1ef{bottom:49.230000px;}
.y13{bottom:56.430540px;}
.y37b{bottom:56.970000px;}
.y16{bottom:57.234780px;}
.y2{bottom:58.590000px;}
.y31{bottom:58.597020px;}
.y34f{bottom:59.220000px;}
.y373{bottom:59.310000px;}
.y299{bottom:64.620000px;}
.y37e{bottom:64.800000px;}
.y1df{bottom:69.300000px;}
.y1a5{bottom:69.390000px;}
.y12{bottom:71.010000px;}
.y452{bottom:71.640000px;}
.y15{bottom:71.910000px;}
.y442{bottom:73.800000px;}
.y358{bottom:79.380000px;}
.y301{bottom:79.470000px;}
.y432{bottom:85.950000px;}
.y24d{bottom:89.460000px;}
.y345{bottom:89.550000px;}
.y460{bottom:93.960000px;}
.y3d8{bottom:99.540000px;}
.y3cc{bottom:99.630000px;}
.y298{bottom:107.370000px;}
.y19d{bottom:109.080000px;}
.y475{bottom:109.350000px;}
.y1dc{bottom:109.620000px;}
.y37a{bottom:110.070000px;}
.y476{bottom:110.520000px;}
.y471{bottom:115.560000px;}
.y15b{bottom:115.650000px;}
.y29f{bottom:116.280000px;}
.y477{bottom:116.640000px;}
.yf6{bottom:116.730000px;}
.y399{bottom:117.720000px;}
.y32a{bottom:120.240000px;}
.y209{bottom:120.690000px;}
.y473{bottom:123.210000px;}
.y11b{bottom:123.601050px;}
.y2ff{bottom:124.020000px;}
.y1d5{bottom:126.000000px;}
.y37d{bottom:126.720000px;}
.y466{bottom:127.080000px;}
.y2cd{bottom:127.260000px;}
.y2ab{bottom:127.632240px;}
.y13f{bottom:127.911240px;}
.y184{bottom:128.430000px;}
.y15a{bottom:129.060000px;}
.y3ef{bottom:129.690000px;}
.y23b{bottom:129.780000px;}
.y25d{bottom:130.140000px;}
.y42f{bottom:132.210000px;}
.y43d{bottom:133.290000px;}
.y414{bottom:136.080000px;}
.y29e{bottom:136.440000px;}
.y329{bottom:136.890000px;}
.y3b6{bottom:137.700000px;}
.y3ca{bottom:139.860000px;}
.yf5{bottom:140.334030px;}
.y46f{bottom:144.180000px;}
.y19c{bottom:144.630000px;}
.y32c{bottom:144.810000px;}
.y208{bottom:145.260000px;}
.y11a{bottom:145.374390px;}
.y357{bottom:146.160000px;}
.y379{bottom:146.880000px;}
.y43f{bottom:148.500000px;}
.y13e{bottom:149.684580px;}
.y1b7{bottom:149.850000px;}
.y347{bottom:149.940000px;}
.y25c{bottom:150.300000px;}
.y1d4{bottom:150.570000px;}
.y2aa{bottom:150.756120px;}
.y29a{bottom:151.830000px;}
.y222{bottom:152.640000px;}
.y181{bottom:153.900000px;}
.y3b5{bottom:154.440000px;}
.y37f{bottom:154.710000px;}
.y35e{bottom:154.980000px;}
.y413{bottom:156.240000px;}
.y2cc{bottom:159.486120px;}
.y26c{bottom:159.930000px;}
.y2fe{bottom:160.020000px;}
.y1a1{bottom:161.100000px;}
.y43c{bottom:161.907480px;}
.y29d{bottom:161.910000px;}
.y3b7{bottom:162.270000px;}
.y159{bottom:164.267010px;}
.y35b{bottom:165.060000px;}
.y207{bottom:165.420000px;}
.y321{bottom:165.780000px;}
.y119{bottom:167.147730px;}
.y1c1{bottom:170.010000px;}
.y183{bottom:170.190000px;}
.y25b{bottom:170.460000px;}
.y1d3{bottom:170.640000px;}
.y2a9{bottom:173.880000px;}
.y221{bottom:174.600000px;}
.y328{bottom:174.690000px;}
.y35d{bottom:175.140000px;}
.y412{bottom:176.400000px;}
.y395{bottom:178.110000px;}
.y42c{bottom:178.560000px;}
.y46b{bottom:180.270000px;}
.y2cb{bottom:182.610000px;}
.y3ad{bottom:183.240000px;}
.y1a0{bottom:184.230000px;}
.y13d{bottom:184.238640px;}
.y206{bottom:185.580000px;}
.y158{bottom:186.040350px;}
.y46d{bottom:186.390000px;}
.y26b{bottom:186.500250px;}
.y29c{bottom:187.470000px;}
.y78{bottom:188.821710px;}
.y118{bottom:188.838720px;}
.y235{bottom:189.000000px;}
.y2fd{bottom:189.461430px;}
.y330{bottom:190.170000px;}
.y25a{bottom:190.620000px;}
.y1d2{bottom:190.800000px;}
.y3b4{bottom:192.150000px;}
.y43b{bottom:194.040450px;}
.y356{bottom:195.300000px;}
.y372{bottom:195.840000px;}
.y17f{bottom:198.900000px;}
.y3e8{bottom:200.430000px;}
.y38c{bottom:200.970000px;}
.y42a{bottom:201.690000px;}
.y378{bottom:204.750000px;}
.y359{bottom:205.380000px;}
.y205{bottom:205.740000px;}
.y13c{bottom:205.929630px;}
.y411{bottom:206.280000px;}
.y19f{bottom:207.360000px;}
.y29b{bottom:207.630000px;}
.y157{bottom:207.731340px;}
.y468{bottom:209.430000px;}
.y32e{bottom:210.330000px;}
.y117{bottom:210.612060px;}
.y259{bottom:210.780000px;}
.y2a8{bottom:211.140000px;}
.y3b3{bottom:212.310000px;}
.y2ca{bottom:213.390000px;}
.y233{bottom:214.470000px;}
.y374{bottom:214.830000px;}
.y327{bottom:214.920000px;}
.y35c{bottom:215.460000px;}
.y17e{bottom:217.620000px;}
.y3e7{bottom:220.590000px;}
.y1d1{bottom:220.680000px;}
.ye1{bottom:220.691340px;}
.y77{bottom:220.954680px;}
.y2fc{bottom:221.594400px;}
.y180{bottom:222.390000px;}
.y234{bottom:223.380000px;}
.y280{bottom:224.547300px;}
.y377{bottom:224.910000px;}
.y43a{bottom:226.173420px;}
.y410{bottom:226.440000px;}
.y296{bottom:228.600000px;}
.y156{bottom:229.504680px;}
.y19e{bottom:230.580000px;}
.y254{bottom:231.750000px;}
.y3b2{bottom:232.470000px;}
.y465{bottom:234.900000px;}
.y371{bottom:234.990000px;}
.y326{bottom:235.080000px;}
.y204{bottom:235.620000px;}
.y3e3{bottom:237.060000px;}
.y297{bottom:237.510000px;}
.y13b{bottom:239.676660px;}
.y2c9{bottom:239.939730px;}
.y258{bottom:240.660000px;}
.y1d0{bottom:240.840000px;}
.y116{bottom:241.295670px;}
.ye0{bottom:242.382330px;}
.y3ae{bottom:242.460000px;}
.y467{bottom:243.900000px;}
.y376{bottom:245.070000px;}
.y3e6{bottom:245.970000px;}
.y40f{bottom:246.600000px;}
.y27f{bottom:247.770000px;}
.y155{bottom:251.195670px;}
.y3b1{bottom:252.540000px;}
.y76{bottom:253.170000px;}
.y19b{bottom:253.710000px;}
.y2fb{bottom:253.727370px;}
.y322{bottom:255.240000px;}
.y203{bottom:255.780000px;}
.y34e{bottom:256.590000px;}
.y295{bottom:257.670000px;}
.y2a7{bottom:258.120000px;}
.y439{bottom:258.388740px;}
.y257{bottom:260.820000px;}
.y1cf{bottom:261.000000px;}
.y13a{bottom:261.450000px;}
.y115{bottom:263.069010px;}
.y232{bottom:263.700000px;}
.ydf{bottom:264.155670px;}
.y375{bottom:265.230000px;}
.y320{bottom:265.320000px;}
.y355{bottom:265.500000px;}
.y3e5{bottom:266.130000px;}
.y40d{bottom:267.570000px;}
.y27e{bottom:270.900000px;}
.y154{bottom:272.969010px;}
.y456{bottom:275.220000px;}
.y351{bottom:275.580000px;}
.y202{bottom:275.850000px;}
.y17d{bottom:276.390000px;}
.y19a{bottom:276.840000px;}
.y2fa{bottom:276.950070px;}
.y2a6{bottom:280.080000px;}
.y1ce{bottom:281.160000px;}
.y75{bottom:282.330000px;}
.y139{bottom:283.140000px;}
.y231{bottom:283.770000px;}
.y114{bottom:284.760000px;}
.y354{bottom:285.660000px;}
.yde{bottom:285.846660px;}
.y36f{bottom:286.200000px;}
.y3e2{bottom:286.290000px;}
.y438{bottom:290.521710px;}
.y3b0{bottom:292.860000px;}
.y153{bottom:294.669630px;}
.y370{bottom:295.020000px;}
.y325{bottom:295.470000px;}
.y34d{bottom:295.650000px;}
.y350{bottom:295.740000px;}
.y201{bottom:296.010000px;}
.y40e{bottom:296.550000px;}
.y17b{bottom:297.810000px;}
.y199{bottom:300.060000px;}
.y2f9{bottom:300.073950px;}
.y2e3{bottom:300.796380px;}
.y256{bottom:301.050000px;}
.y1cd{bottom:301.320000px;}
.y74{bottom:302.400000px;}
.y30{bottom:303.832710px;}
.y22b{bottom:304.740000px;}
.y138{bottom:304.947000px;}
.y353{bottom:305.820000px;}
.y3e4{bottom:306.450000px;}
.ydd{bottom:307.620000px;}
.y294{bottom:308.700000px;}
.y27d{bottom:312.840000px;}
.y3af{bottom:313.020000px;}
.y230{bottom:313.650000px;}
.y2f{bottom:313.830000px;}
.y17c{bottom:316.170000px;}
.y40c{bottom:316.710000px;}
.y113{bottom:320.670000px;}
.y255{bottom:321.210000px;}
.y1cc{bottom:321.390000px;}
.y73{bottom:322.560000px;}
.y437{bottom:322.654680px;}
.y2e2{bottom:324.019080px;}
.y36d{bottom:325.260000px;}
.y352{bottom:325.890000px;}
.y152{bottom:328.416660px;}
.y293{bottom:328.860000px;}
.ydc{bottom:329.324310px;}
.y2f8{bottom:332.289270px;}
.y22f{bottom:333.810000px;}
.y198{bottom:334.440000px;}
.y324{bottom:335.790000px;}
.y27c{bottom:335.970000px;}
.y2bc{bottom:338.230350px;}
.y137{bottom:338.611680px;}
.yf4{bottom:339.868080px;}
.y1cb{bottom:341.550000px;}
.y72{bottom:342.720000px;}
.y3ac{bottom:342.900000px;}
.y28d{bottom:343.800000px;}
.y200{bottom:346.050000px;}
.y40b{bottom:346.590000px;}
.y344{bottom:346.860000px;}
.y179{bottom:346.950000px;}
.y2e1{bottom:347.142960px;}
.y3d7{bottom:347.580000px;}
.y151{bottom:350.190000px;}
.y292{bottom:353.430000px;}
.y22e{bottom:353.970000px;}
.y436{bottom:354.870000px;}
.y36e{bottom:355.500000px;}
.y34c{bottom:355.770000px;}
.y112{bottom:355.858020px;}
.y4e{bottom:355.860000px;}
.y323{bottom:355.950000px;}
.y3e1{bottom:356.400000px;}
.y2e{bottom:356.850360px;}
.y2bb{bottom:359.921340px;}
.y253{bottom:361.530000px;}
.y178{bottom:361.620000px;}
.y1ca{bottom:361.710000px;}
.y71{bottom:362.880000px;}
.ydb{bottom:363.071340px;}
.y2f7{bottom:365.229270px;}
.y1ff{bottom:366.210000px;}
.y2d{bottom:366.930000px;}
.y2e0{bottom:370.365660px;}
.y197{bottom:370.440000px;}
.yf3{bottom:371.457540px;}
.y136{bottom:372.358710px;}
.y22d{bottom:374.130000px;}
.y40a{bottom:376.470000px;}
.y3e0{bottom:376.560000px;}
.y31e{bottom:376.920000px;}
.y27b{bottom:377.910000px;}
.y3ab{bottom:378.900000px;}
.y291{bottom:378.990000px;}
.y429{bottom:380.340000px;}
.y252{bottom:381.600000px;}
.y2ba{bottom:381.694680px;}
.y1c0{bottom:382.680000px;}
.y70{bottom:383.040000px;}
.yda{bottom:384.762330px;}
.y36c{bottom:385.380000px;}
.y31f{bottom:385.830000px;}
.y1fe{bottom:386.370000px;}
.y3db{bottom:386.640000px;}
.y111{bottom:387.365130px;}
.y150{bottom:387.450000px;}
.y2f6{bottom:388.534320px;}
.y12a{bottom:389.700000px;}
.y1c9{bottom:391.590000px;}
.y2df{bottom:393.489540px;}
.y135{bottom:394.132050px;}
.y22c{bottom:394.290000px;}
.y4d{bottom:395.100000px;}
.y34b{bottom:396.090000px;}
.ybe{bottom:396.583470px;}
.y3df{bottom:396.720000px;}
.y435{bottom:396.810000px;}
.y196{bottom:399.789540px;}
.y464{bottom:400.862160px;}
.y24c{bottom:402.660000px;}
.y6f{bottom:403.110000px;}
.yf2{bottom:403.129350px;}
.y2b9{bottom:403.385670px;}
.y290{bottom:404.460000px;}
.y3aa{bottom:405.270000px;}
.y31d{bottom:405.990000px;}
.y1fd{bottom:406.440000px;}
.yd9{bottom:406.535670px;}
.y3da{bottom:406.800000px;}
.y110{bottom:409.237290px;}
.y8a{bottom:409.320000px;}
.y2c{bottom:409.860000px;}
.y251{bottom:411.480000px;}
.y1c8{bottom:411.750000px;}
.y409{bottom:412.470000px;}
.y134{bottom:415.823040px;}
.y346{bottom:416.250000px;}
.y2de{bottom:416.613420px;}
.y3d6{bottom:416.880000px;}
.y434{bottom:419.940000px;}
.y129{bottom:420.390000px;}
.y463{bottom:421.021440px;}
.y36b{bottom:421.380000px;}
.y2f5{bottom:421.474320px;}
.y177{bottom:422.280000px;}
.y27a{bottom:423.000000px;}
.y195{bottom:423.012240px;}
.y6e{bottom:423.270000px;}
.y2b8{bottom:425.159010px;}
.y4c{bottom:425.520000px;}
.y31c{bottom:426.150000px;}
.y1fc{bottom:426.600000px;}
.y14f{bottom:426.783870px;}
.y3d9{bottom:426.960000px;}
.yd8{bottom:428.226660px;}
.ybd{bottom:428.716440px;}
.y28f{bottom:430.020000px;}
.y3a9{bottom:430.650000px;}
.y250{bottom:431.640000px;}
.y1c7{bottom:431.910000px;}
.y22a{bottom:434.520000px;}
.yf1{bottom:434.718810px;}
.y319{bottom:436.140000px;}
.y343{bottom:436.320000px;}
.y34a{bottom:436.410000px;}
.y3de{bottom:437.040000px;}
.y2dd{bottom:439.836120px;}
.y10f{bottom:440.826750px;}
.y462{bottom:441.180720px;}
.y2b{bottom:442.792710px;}
.y433{bottom:443.070000px;}
.y6d{bottom:443.430000px;}
.y408{bottom:443.435670px;}
.y175{bottom:443.610000px;}
.y2f4{bottom:444.598200px;}
.y194{bottom:446.136120px;}
.y31b{bottom:446.220000px;}
.y133{bottom:446.605470px;}
.y1fb{bottom:446.760000px;}
.y2b7{bottom:446.850000px;}
.y128{bottom:446.945940px;}
.yd7{bottom:450.000000px;}
.y14e{bottom:450.006570px;}
.y28e{bottom:450.180000px;}
.y3a8{bottom:450.810000px;}
.y89{bottom:451.260000px;}
.y24f{bottom:451.800000px;}
.ybc{bottom:451.840320px;}
.y1c6{bottom:451.980000px;}
.y2a{bottom:452.790000px;}
.y174{bottom:453.240000px;}
.y176{bottom:453.780000px;}
.y36a{bottom:454.500000px;}
.y225{bottom:455.490000px;}
.y349{bottom:456.480000px;}
.y3dd{bottom:457.200000px;}
.y4b{bottom:459.360000px;}
.y461{bottom:461.340000px;}
.y2dc{bottom:462.960000px;}
.y6c{bottom:463.590000px;}
.y407{bottom:465.209010px;}
.yf0{bottom:466.225920px;}
.y431{bottom:466.290000px;}
.y31a{bottom:466.380000px;}
.y1fa{bottom:466.920000px;}
.y2f3{bottom:467.820900px;}
.y132{bottom:468.378810px;}
.y279{bottom:468.450000px;}
.y193{bottom:469.260000px;}
.y229{bottom:470.520000px;}
.y3a5{bottom:470.880000px;}
.y24e{bottom:471.960000px;}
.y1c5{bottom:472.140000px;}
.y10e{bottom:472.416210px;}
.y14d{bottom:473.130450px;}
.ybb{bottom:475.063020px;}
.y348{bottom:476.640000px;}
.y3dc{bottom:477.270000px;}
.y2b6{bottom:477.630000px;}
.y28c{bottom:480.060000px;}
.y6b{bottom:483.750000px;}
.y4a{bottom:485.370000px;}
.y406{bottom:486.900000px;}
.y1f9{bottom:487.080000px;}
.yd6{bottom:487.260000px;}
.yef{bottom:487.999260px;}
.y227{bottom:489.060000px;}
.y430{bottom:489.420000px;}
.y8{bottom:489.690000px;}
.y2f2{bottom:490.944780px;}
.y3a3{bottom:491.040000px;}
.y369{bottom:491.052240px;}
.y170{bottom:492.120000px;}
.y1c4{bottom:492.300000px;}
.y228{bottom:492.480000px;}
.y88{bottom:493.110000px;}
.y2db{bottom:493.740000px;}
.y29{bottom:495.810000px;}
.y14c{bottom:496.353150px;}
.yba{bottom:498.186900px;}
.y3c9{bottom:498.240000px;}
.y131{bottom:499.968270px;}
.y192{bottom:500.040000px;}
.y173{bottom:501.300000px;}
.y45f{bottom:501.571440px;}
.y6a{bottom:503.820000px;}
.y10d{bottom:504.005670px;}
.y2b5{bottom:504.206730px;}
.y28b{bottom:505.530000px;}
.y3d5{bottom:507.150000px;}
.y1f7{bottom:508.050000px;}
.y171{bottom:509.220000px;}
.y7{bottom:509.310000px;}
.yee{bottom:509.690250px;}
.y49{bottom:510.030000px;}
.y3a4{bottom:511.200000px;}
.y278{bottom:511.830000px;}
.y220{bottom:512.010000px;}
.y1c3{bottom:512.460000px;}
.y42e{bottom:512.550000px;}
.y368{bottom:514.176120px;}
.y318{bottom:516.420000px;}
.y1f8{bottom:516.960000px;}
.y3ce{bottom:517.230000px;}
.y2da{bottom:520.304940px;}
.yb9{bottom:521.409600px;}
.y45e{bottom:521.730720px;}
.y130{bottom:521.741610px;}
.y2f1{bottom:523.077750px;}
.y405{bottom:524.160000px;}
.y191{bottom:524.990520px;}
.yd5{bottom:525.245670px;}
.y10c{bottom:525.696660px;}
.y3d4{bottom:527.310000px;}
.y287{bottom:528.390000px;}
.y14b{bottom:528.486120px;}
.y28{bottom:528.660000px;}
.y28a{bottom:531.090000px;}
.y3a7{bottom:531.360000px;}
.yed{bottom:531.463590px;}
.y21f{bottom:532.170000px;}
.ya2{bottom:532.235790px;}
.y24b{bottom:532.350000px;}
.y1c2{bottom:532.620000px;}
.y87{bottom:535.050000px;}
.y48{bottom:535.140000px;}
.y42d{bottom:535.770000px;}
.y367{bottom:537.300000px;}
.y33d{bottom:537.930000px;}
.y6{bottom:540.270000px;}
.y45d{bottom:541.890000px;}
.yb8{bottom:544.533480px;}
.y2f0{bottom:546.300450px;}
.y342{bottom:546.840000px;}
.yd4{bottom:546.936660px;}
.y10b{bottom:547.470000px;}
.y277{bottom:547.830000px;}
.y69{bottom:548.460000px;}
.y226{bottom:549.450000px;}
.y16d{bottom:549.900000px;}
.y3a6{bottom:551.520000px;}
.y14a{bottom:551.610000px;}
.y21e{bottom:552.330000px;}
.y317{bottom:552.420000px;}
.y24a{bottom:552.510000px;}
.y1bf{bottom:552.690000px;}
.yec{bottom:553.154580px;}
.y12f{bottom:556.295670px;}
.y289{bottom:556.560000px;}
.y16e{bottom:556.650000px;}
.y42b{bottom:558.900000px;}
.y27{bottom:559.980000px;}
.y47{bottom:561.150000px;}
.y45c{bottom:562.043070px;}
.y404{bottom:563.580000px;}
.ya1{bottom:564.451110px;}
.y341{bottom:567.000000px;}
.y3d1{bottom:567.630000px;}
.yb7{bottom:567.657360px;}
.yd3{bottom:568.710000px;}
.y2ef{bottom:569.424330px;}
.y21d{bottom:572.490000px;}
.y1b6{bottom:573.750000px;}
.y366{bottom:574.650000px;}
.y288{bottom:576.720000px;}
.y86{bottom:576.990000px;}
.y1f6{bottom:577.350000px;}
.y12e{bottom:577.986660px;}
.y316{bottom:578.790000px;}
.y276{bottom:578.802330px;}
.y3a2{bottom:581.400000px;}
.yb{bottom:581.940000px;}
.y45b{bottom:582.120000px;}
.y149{bottom:582.390000px;}
.y1be{bottom:582.570000px;}
.y10a{bottom:583.380000px;}
.yeb{bottom:583.937010px;}
.y2c8{bottom:584.195670px;}
.y46{bottom:585.720000px;}
.y33f{bottom:587.070000px;}
.ya0{bottom:587.574990px;}
.y3d0{bottom:587.790000px;}
.y3fe{bottom:589.050000px;}
.y39f{bottom:591.390000px;}
.y21c{bottom:592.650000px;}
.y16b{bottom:593.730000px;}
.y68{bottom:596.700000px;}
.y1f5{bottom:597.510000px;}
.y403{bottom:597.960000px;}
.y315{bottom:598.950000px;}
.y12d{bottom:599.760000px;}
.yb6{bottom:599.872680px;}
.y275{bottom:600.493320px;}
.y2ee{bottom:601.557300px;}
.y45a{bottom:602.280000px;}
.yd2{bottom:602.466660px;}
.y249{bottom:602.550000px;}
.y1bd{bottom:602.730000px;}
.y428{bottom:605.250000px;}
.y16a{bottom:605.340000px;}
.yea{bottom:605.628000px;}
.y2c7{bottom:605.886660px;}
.y286{bottom:606.600000px;}
.y340{bottom:607.230000px;}
.y3cf{bottom:607.860000px;}
.y148{bottom:608.950170px;}
.y26{bottom:609.480000px;}
.y9f{bottom:610.698870px;}
.y45{bottom:610.920000px;}
.y39e{bottom:611.550000px;}
.y365{bottom:612.540000px;}
.y21b{bottom:612.720000px;}
.y33c{bottom:617.310000px;}
.y1f4{bottom:617.670000px;}
.y3cb{bottom:617.940000px;}
.y402{bottom:618.120000px;}
.y109{bottom:618.495030px;}
.y85{bottom:618.840000px;}
.y314{bottom:619.020000px;}
.y39c{bottom:621.630000px;}
.y459{bottom:622.441440px;}
.y248{bottom:622.710000px;}
.y1bc{bottom:622.890000px;}
.yb5{bottom:623.095380px;}
.yd1{bottom:624.244950px;}
.y2ed{bottom:624.780000px;}
.y67{bottom:625.860720px;}
.y33e{bottom:627.390000px;}
.ye9{bottom:627.401340px;}
.y2c6{bottom:627.666570px;}
.y3d3{bottom:628.020000px;}
.ya{bottom:630.090000px;}
.y12c{bottom:630.450000px;}
.y9e{bottom:633.921570px;}
.y274{bottom:634.240350px;}
.y25{bottom:636.300000px;}
.y44{bottom:637.380000px;}
.y364{bottom:637.561170px;}
.y1f3{bottom:637.830000px;}
.y401{bottom:638.280000px;}
.y108{bottom:640.268370px;}
.y3a1{bottom:641.790000px;}
.y21a{bottom:642.600000px;}
.y458{bottom:642.600720px;}
.y247{bottom:642.870000px;}
.y1bb{bottom:643.050000px;}
.y66{bottom:646.020000px;}
.y427{bottom:647.190000px;}
.y3d2{bottom:648.180000px;}
.ye8{bottom:649.092330px;}
.y39d{bottom:651.870000px;}
.y313{bottom:655.020000px;}
.y273{bottom:655.931340px;}
.yb4{bottom:656.035380px;}
.y12b{bottom:657.000000px;}
.y9d{bottom:657.045450px;}
.y1f2{bottom:657.900000px;}
.y169{bottom:658.350000px;}
.yd0{bottom:658.799010px;}
.y2ec{bottom:659.160000px;}
.y2c5{bottom:659.799540px;}
.y84{bottom:660.780000px;}
.y3a0{bottom:661.950000px;}
.y457{bottom:662.760000px;}
.y246{bottom:662.940000px;}
.y1ba{bottom:663.210000px;}
.y43{bottom:664.650000px;}
.y65{bottom:666.090000px;}
.y2a4{bottom:666.180000px;}
.y3c5{bottom:669.150000px;}
.y24{bottom:669.240000px;}
.ye7{bottom:670.865670px;}
.y107{bottom:671.857830px;}
.y285{bottom:673.560000px;}
.y26a{bottom:676.993320px;}
.y272{bottom:677.704680px;}
.y3c8{bottom:678.060000px;}
.y400{bottom:678.510000px;}
.y219{bottom:678.600000px;}
.y1ed{bottom:678.870000px;}
.yb3{bottom:679.258080px;}
.y2eb{bottom:679.320000px;}
.y9c{bottom:680.169330px;}
.ycf{bottom:680.490000px;}
.y2a3{bottom:682.650000px;}
.y38b{bottom:682.920000px;}
.y2c4{bottom:682.923420px;}
.y245{bottom:683.100000px;}
.y1b9{bottom:683.280000px;}
.y311{bottom:684.810000px;}
.y64{bottom:686.250000px;}
.y1f1{bottom:687.780000px;}
.y451{bottom:688.230000px;}
.y426{bottom:689.074200px;}
.y281{bottom:689.310000px;}
.y393{bottom:691.830000px;}
.ye6{bottom:692.556660px;}
.y312{bottom:693.720000px;}
.y168{bottom:694.350000px;}
.y284{bottom:697.410000px;}
.y3c6{bottom:698.220000px;}
.y42{bottom:698.490000px;}
.y3ff{bottom:698.670000px;}
.y269{bottom:698.684310px;}
.y271{bottom:699.395670px;}
.y2ea{bottom:699.480000px;}
.y2a5{bottom:700.020000px;}
.y2a2{bottom:700.029270px;}
.y23{bottom:700.560000px;}
.yf{bottom:700.650000px;}
.y455{bottom:701.566200px;}
.yce{bottom:702.276660px;}
.y83{bottom:702.720000px;}
.y244{bottom:703.260000px;}
.y9b{bottom:703.392030px;}
.y1b8{bottom:703.440000px;}
.y106{bottom:703.447290px;}
.y2c3{bottom:706.146120px;}
.y63{bottom:706.410000px;}
.y1f0{bottom:707.940000px;}
.y218{bottom:708.055200px;}
.y338{bottom:708.840000px;}
.yb2{bottom:712.280430px;}
.y283{bottom:713.880000px;}
.ye5{bottom:714.330000px;}
.y33b{bottom:717.660000px;}
.y2e9{bottom:719.640000px;}
.y268{bottom:720.457650px;}
.y270{bottom:721.169010px;}
.y425{bottom:721.289520px;}
.y243{bottom:723.420000px;}
.y167{bottom:723.780000px;}
.y30f{bottom:723.870000px;}
.ycd{bottom:724.061610px;}
.y41{bottom:724.950000px;}
.y62{bottom:726.570000px;}
.y1ee{bottom:728.100000px;}
.y3c3{bottom:728.370000px;}
.y2c2{bottom:729.270000px;}
.y454{bottom:730.718100px;}
.y217{bottom:731.179080px;}
.y30e{bottom:733.950000px;}
.y105{bottom:735.119100px;}
.y9a{bottom:735.525000px;}
.y33a{bottom:737.820000px;}
.y3c7{bottom:738.540000px;}
.y2e8{bottom:739.710000px;}
.y3fc{bottom:739.800000px;}
.y26f{bottom:742.860000px;}
.y242{bottom:743.580000px;}
.yb1{bottom:744.413400px;}
.y82{bottom:744.570000px;}
.y61{bottom:746.730000px;}
.y166{bottom:746.910000px;}
.y1ec{bottom:748.260000px;}
.y3fd{bottom:748.710000px;}
.y22{bottom:750.060000px;}
.y40{bottom:751.410000px;}
.ye4{bottom:751.590000px;}
.y392{bottom:752.220000px;}
.y1b5{bottom:753.480000px;}
.y267{bottom:754.204680px;}
.y216{bottom:754.302960px;}
.y339{bottom:757.980000px;}
.y3c4{bottom:758.610000px;}
.ycc{bottom:758.615670px;}
.y99{bottom:758.648880px;}
.y453{bottom:759.870000px;}
.y39b{bottom:760.320000px;}
.y239{bottom:764.550000px;}
.y104{bottom:766.626210px;}
.y60{bottom:766.800000px;}
.yb0{bottom:767.537280px;}
.y1eb{bottom:768.420000px;}
.y2be{bottom:769.050000px;}
.y165{bottom:770.074470px;}
.y391{bottom:772.380000px;}
.y241{bottom:773.460000px;}
.y26e{bottom:773.635500px;}
.y1b4{bottom:773.640000px;}
.y310{bottom:774.270000px;}
.y266{bottom:775.895670px;}
.y424{bottom:776.546370px;}
.y2e7{bottom:777.156120px;}
.y215{bottom:777.525660px;}
.y337{bottom:778.140000px;}
.y3f{bottom:778.680000px;}
.ycb{bottom:780.306660px;}
.y39a{bottom:780.479850px;}
.y21{bottom:781.736400px;}
.y98{bottom:781.871580px;}
.y44f{bottom:785.340000px;}
.y81{bottom:786.510000px;}
.y5f{bottom:786.960000px;}
.y2bd{bottom:787.950000px;}
.y334{bottom:788.220000px;}
.y103{bottom:788.399550px;}
.y1ea{bottom:788.490000px;}
.y3fb{bottom:789.030000px;}
.y421{bottom:789.120000px;}
.ye3{bottom:789.570000px;}
.yaf{bottom:790.759980px;}
.y164{bottom:793.297170px;}
.y240{bottom:793.620000px;}
.y1b3{bottom:793.800000px;}
.y30b{bottom:795.240000px;}
.y265{bottom:797.669010px;}
.y390{bottom:797.940000px;}
.y26d{bottom:798.030000px;}
.y336{bottom:798.300000px;}
.y3bd{bottom:799.740000px;}
.y423{bottom:799.769070px;}
.y2e6{bottom:800.280000px;}
.y398{bottom:800.640000px;}
.y214{bottom:800.649540px;}
.yca{bottom:802.080000px;}
.y30c{bottom:804.150000px;}
.y450{bottom:805.500000px;}
.y41f{bottom:805.680000px;}
.y5e{bottom:807.120000px;}
.y333{bottom:808.380000px;}
.y3c2{bottom:808.650000px;}
.y3fa{bottom:809.100000px;}
.y1e7{bottom:809.550000px;}
.y388{bottom:810.630000px;}
.y3e{bottom:812.520000px;}
.y1f{bottom:812.700000px;}
.y23f{bottom:813.690000px;}
.yae{bottom:813.883860px;}
.y1b2{bottom:813.960000px;}
.ye2{bottom:814.500000px;}
.y420{bottom:814.590000px;}
.y97{bottom:815.618610px;}
.y163{bottom:816.421050px;}
.y38f{bottom:818.100000px;}
.y1e9{bottom:818.370000px;}
.y335{bottom:818.460000px;}
.y3f5{bottom:819.180000px;}
.y264{bottom:819.360000px;}
.y102{bottom:819.989010px;}
.y397{bottom:820.710000px;}
.y422{bottom:822.892950px;}
.y213{bottom:823.773420px;}
.yc9{bottom:823.779450px;}
.y30a{bottom:824.310000px;}
.y5d{bottom:827.280000px;}
.y80{bottom:828.450000px;}
.y3bf{bottom:828.810000px;}
.y3f9{bottom:829.260000px;}
.y44c{bottom:830.970000px;}
.y2e5{bottom:833.130000px;}
.y23e{bottom:833.850000px;}
.y1b1{bottom:834.030000px;}
.y96{bottom:837.309600px;}
.y38e{bottom:838.170000px;}
.y1e6{bottom:838.530000px;}
.y3d{bottom:838.980000px;}
.y162{bottom:839.643750px;}
.y396{bottom:840.870000px;}
.y101{bottom:841.680000px;}
.y2d9{bottom:842.688720px;}
.y20{bottom:843.564780px;}
.y30d{bottom:844.470000px;}
.yc8{bottom:845.651610px;}
.yad{bottom:846.016830px;}
.y2b4{bottom:846.206280px;}
.y212{bottom:846.996120px;}
.y5c{bottom:847.440000px;}
.y3c0{bottom:848.970000px;}
.y3f8{bottom:849.420000px;}
.y2e4{bottom:850.500000px;}
.y44e{bottom:852.210000px;}
.y23d{bottom:854.010000px;}
.y41e{bottom:854.820000px;}
.y263{bottom:856.620000px;}
.y1e5{bottom:858.690000px;}
.y190{bottom:858.705660px;}
.y95{bottom:859.082940px;}
.y127{bottom:860.952330px;}
.y394{bottom:861.030000px;}
.y161{bottom:862.767630px;}
.y38d{bottom:863.729850px;}
.y1b0{bottom:863.910000px;}
.y3c{bottom:864.990000px;}
.y307{bottom:865.440000px;}
.y2d8{bottom:865.812600px;}
.y5b{bottom:867.510000px;}
.y2b3{bottom:867.897270px;}
.y3be{bottom:869.130000px;}
.yac{bottom:869.239530px;}
.y3f7{bottom:869.580000px;}
.y211{bottom:870.120000px;}
.y7f{bottom:870.390000px;}
.y23c{bottom:874.170000px;}
.y308{bottom:874.350000px;}
.y41d{bottom:874.979850px;}
.y100{bottom:877.680000px;}
.y1e4{bottom:878.850000px;}
.yc7{bottom:880.205670px;}
.y94{bottom:880.773930px;}
.y18f{bottom:881.829540px;}
.y126{bottom:882.725670px;}
.y1af{bottom:884.070000px;}
.y1e{bottom:886.050000px;}
.y5a{bottom:887.670000px;}
.y2d7{bottom:889.035300px;}
.y3c1{bottom:889.200000px;}
.y3b{bottom:889.650000px;}
.y2b2{bottom:889.670610px;}
.y3f6{bottom:889.740000px;}
.yab{bottom:892.363410px;}
.y23a{bottom:894.330000px;}
.y306{bottom:894.510000px;}
.y147{bottom:894.704670px;}
.y160{bottom:894.982950px;}
.y44b{bottom:897.840000px;}
.y1e3{bottom:899.010000px;}
.y32d{bottom:899.820000px;}
.yc6{bottom:901.896660px;}
.y93{bottom:902.547270px;}
.y38a{bottom:903.960000px;}
.y1ae{bottom:904.230000px;}
.y125{bottom:904.416660px;}
.y41c{bottom:904.860000px;}
.y18e{bottom:905.052240px;}
.y262{bottom:905.760000px;}
.y210{bottom:907.380000px;}
.y59{bottom:907.830000px;}
.y332{bottom:908.730000px;}
.y3ec{bottom:910.710000px;}
.y2b1{bottom:911.361600px;}
.y7e{bottom:912.240000px;}
.yff{bottom:912.701520px;}
.y2c1{bottom:913.050000px;}
.y3a{bottom:914.220000px;}
.y309{bottom:914.670000px;}
.yaa{bottom:915.586110px;}
.y146{bottom:916.395660px;}
.y1e2{bottom:919.170000px;}
.y3f4{bottom:919.530000px;}
.y2d6{bottom:922.782330px;}
.y447{bottom:923.310000px;}
.yc5{bottom:923.669010px;}
.y92{bottom:924.238260px;}
.y1ad{bottom:924.390000px;}
.y41b{bottom:925.020000px;}
.y124{bottom:926.190000px;}
.y58{bottom:927.990000px;}
.y15f{bottom:928.005300px;}
.y18d{bottom:928.176120px;}
.y1d{bottom:928.620000px;}
.y331{bottom:928.890000px;}
.y389{bottom:929.520000px;}
.y2c0{bottom:931.950000px;}
.yfe{bottom:934.474860px;}
.y238{bottom:934.560000px;}
.y305{bottom:935.640000px;}
.y145{bottom:938.169000px;}
.ya9{bottom:938.709990px;}
.y39{bottom:938.880000px;}
.y3f3{bottom:939.690000px;}
.y1db{bottom:940.140000px;}
.y449{bottom:943.380000px;}
.y2b0{bottom:943.576920px;}
.y2d5{bottom:944.473320px;}
.y1ac{bottom:944.550000px;}
.y41a{bottom:945.180000px;}
.yc4{bottom:945.360000px;}
.y91{bottom:946.011600px;}
.y261{bottom:947.719080px;}
.y57{bottom:948.150000px;}
.y1e1{bottom:949.050000px;}
.y3ee{bottom:949.770000px;}
.y383{bottom:950.490000px;}
.y18c{bottom:951.300000px;}
.y7d{bottom:954.180000px;}
.y2bf{bottom:958.500000px;}
.y387{bottom:959.400000px;}
.y3f2{bottom:959.850000px;}
.y15e{bottom:961.027650px;}
.ya8{bottom:961.833870px;}
.y123{bottom:963.360000px;}
.y38{bottom:963.990000px;}
.y237{bottom:964.440000px;}
.y304{bottom:964.620000px;}
.y1ab{bottom:964.710000px;}
.yfd{bottom:965.257290px;}
.y2d4{bottom:966.246660px;}
.y2af{bottom:966.700800px;}
.yc3{bottom:967.151610px;}
.y90{bottom:967.702590px;}
.y56{bottom:968.220000px;}
.y144{bottom:968.852610px;}
.y441{bottom:968.940000px;}
.y20f{bottom:969.210000px;}
.y3ed{bottom:969.930000px;}
.y3b8{bottom:970.650000px;}
.y260{bottom:970.842960px;}
.y1c{bottom:971.100000px;}
.y18b{bottom:974.532690px;}
.y303{bottom:974.700000px;}
.y419{bottom:975.060000px;}
.y386{bottom:979.560000px;}
.y446{bottom:982.260000px;}
.y1aa{bottom:984.780000px;}
.ya7{bottom:985.056570px;}
.y2d3{bottom:987.937650px;}
.y55{bottom:988.380000px;}
.yc2{bottom:988.924950px;}
.y20e{bottom:989.280000px;}
.y8f{bottom:989.475930px;}
.y3bc{bottom:989.640000px;}
.y2ae{bottom:989.824680px;}
.y37{bottom:990.540000px;}
.y143{bottom:990.724770px;}
.y15d{bottom:994.050000px;}
.y25f{bottom:994.065660px;}
.y418{bottom:995.220000px;}
.y7c{bottom:996.120000px;}
.yfc{bottom:996.846750px;}
.y363{bottom:999.720000px;}
.y3f1{bottom:1000.170000px;}
.y236{bottom:1000.440000px;}
.y122{bottom:1001.364390px;}
.y1a9{bottom:1004.940000px;}
.y18a{bottom:1006.665660px;}
.ya6{bottom:1008.180450px;}
.y54{bottom:1008.540000px;}
.y1de{bottom:1009.440000px;}
.y382{bottom:1009.710000px;}
.y2d2{bottom:1009.710990px;}
.y3bb{bottom:1009.800000px;}
.y3eb{bottom:1010.250000px;}
.y8e{bottom:1011.166920px;}
.y1b{bottom:1013.580000px;}
.y417{bottom:1015.380000px;}
.y361{bottom:1016.190000px;}
.y36{bottom:1017.000000px;}
.y15c{bottom:1017.180000px;}
.y25e{bottom:1017.189540px;}
.y3b9{bottom:1019.880000px;}
.y3f0{bottom:1020.330000px;}
.y2ad{bottom:1022.040000px;}
.y142{bottom:1022.231880px;}
.y444{bottom:1022.580720px;}
.y121{bottom:1023.137730px;}
.yc1{bottom:1023.479010px;}
.y224{bottom:1025.100000px;}
.y1a4{bottom:1025.910000px;}
.yfb{bottom:1028.436210px;}
.y53{bottom:1028.700000px;}
.y1dd{bottom:1029.600000px;}
.y189{bottom:1029.789540px;}
.y1a8{bottom:1034.820000px;}
.y7b{bottom:1037.970000px;}
.y385{bottom:1039.950000px;}
.ya5{bottom:1040.313420px;}
.y443{bottom:1042.740000px;}
.y2d1{bottom:1043.375670px;}
.y8d{bottom:1043.382240px;}
.y141{bottom:1044.005220px;}
.y35{bottom:1044.270000px;}
.y120{bottom:1044.828720px;}
.yc0{bottom:1045.170000px;}
.y362{bottom:1045.260000px;}
.y52{bottom:1048.860000px;}
.y20d{bottom:1049.760000px;}
.y3ba{bottom:1050.030000px;}
.yfa{bottom:1050.209550px;}
.y188{bottom:1053.012240px;}
.y1a7{bottom:1054.980000px;}
.y2ac{bottom:1057.950000px;}
.y1a{bottom:1058.400000px;}
.y384{bottom:1060.110000px;}
.ya4{bottom:1063.536120px;}
.y302{bottom:1065.060000px;}
.y2d0{bottom:1065.149010px;}
.y35f{bottom:1065.330000px;}
.y140{bottom:1065.778560px;}
.y8c{bottom:1066.506120px;}
.y11f{bottom:1066.602060px;}
.y51{bottom:1068.930000px;}
.y1da{bottom:1069.830000px;}
.y3ea{bottom:1070.280000px;}
.y20a{bottom:1070.730000px;}
.y1a6{bottom:1075.140000px;}
.y187{bottom:1076.136120px;}
.y34{bottom:1078.830000px;}
.y20c{bottom:1079.640000px;}
.y7a{bottom:1079.910000px;}
.y381{bottom:1081.080000px;}
.yf9{bottom:1081.799010px;}
.ybf{bottom:1082.430000px;}
.y300{bottom:1085.220000px;}
.y360{bottom:1085.490000px;}
.y415{bottom:1086.390000px;}
.ya3{bottom:1086.660000px;}
.y2cf{bottom:1086.843690px;}
.y50{bottom:1089.090000px;}
.y8b{bottom:1089.630000px;}
.y32f{bottom:1089.990000px;}
.y1d6{bottom:1090.890000px;}
.y440{bottom:1091.250000px;}
.y19{bottom:1093.680000px;}
.y2a1{bottom:1094.502240px;}
.y416{bottom:1095.210000px;}
.y223{bottom:1095.300000px;}
.y11e{bottom:1097.285670px;}
.y186{bottom:1099.260000px;}
.y1d9{bottom:1099.710000px;}
.y20b{bottom:1099.800000px;}
.yf8{bottom:1103.490000px;}
.y3e9{bottom:1106.280000px;}
.y2ce{bottom:1108.617030px;}
.y5{bottom:1108.626120px;}
.y1a3{bottom:1115.370000px;}
.y2a0{bottom:1117.626120px;}
.y11d{bottom:1119.059010px;}
.y1d8{bottom:1119.870000px;}
.y18{bottom:1125.090000px;}
.y33{bottom:1127.610000px;}
.y79{bottom:1127.970000px;}
.y4{bottom:1131.750000px;}
.y4f{bottom:1133.640000px;}
.y1a2{bottom:1135.530000px;}
.y185{bottom:1136.610000px;}
.yf7{bottom:1139.490000px;}
.y11c{bottom:1140.750000px;}
.y469{bottom:1148.760000px;}
.y46a{bottom:1164.060000px;}
.y1{bottom:1193.940000px;}
.h4e{height:3.562734px;}
.h5d{height:14.760000px;}
.h5c{height:22.140000px;}
.h58{height:22.228500px;}
.h5b{height:22.230000px;}
.h9{height:29.430000px;}
.h1e{height:32.064609px;}
.h5e{height:34.470000px;}
.h57{height:34.471500px;}
.h5a{height:34.560000px;}
.ha{height:34.764434px;}
.h1b{height:37.546875px;}
.hb{height:39.528733px;}
.h20{height:42.750000px;}
.h4f{height:43.651582px;}
.h27{height:43.830000px;}
.h59{height:44.534180px;}
.h41{height:44.730000px;}
.h4d{height:44.731500px;}
.h47{height:44.820000px;}
.h46{height:44.874316px;}
.h52{height:44.910000px;}
.h2{height:45.807187px;}
.h53{height:45.990000px;}
.h51{height:46.997402px;}
.h35{height:47.286914px;}
.h23{height:47.430000px;}
.h3{height:47.833770px;}
.h25{height:48.060000px;}
.h1c{height:51.363281px;}
.h4{height:54.331699px;}
.h1f{height:54.630000px;}
.h39{height:54.675966px;}
.h22{height:56.611500px;}
.h45{height:58.276582px;}
.h19{height:58.810220px;}
.h1d{height:58.818140px;}
.h1a{height:58.836860px;}
.h3a{height:58.841900px;}
.h18{height:58.856660px;}
.h17{height:58.860620px;}
.h14{height:59.376026px;}
.h5{height:59.378906px;}
.h16{height:59.838223px;}
.h13{height:60.903105px;}
.h21{height:63.357259px;}
.h2d{height:64.888500px;}
.h24{height:65.250000px;}
.h26{height:67.500000px;}
.h12{height:68.569980px;}
.h3c{height:69.390000px;}
.h3d{height:69.478500px;}
.h6{height:76.680000px;}
.h2c{height:85.050000px;}
.h15{height:85.519863px;}
.h40{height:86.011699px;}
.h11{height:87.822930px;}
.h10{height:88.481730px;}
.h33{height:89.550000px;}
.h8{height:92.880000px;}
.hc{height:94.251621px;}
.he{height:94.320859px;}
.hf{height:94.650259px;}
.h3b{height:94.651699px;}
.hd{height:94.979659px;}
.h54{height:96.390000px;}
.h50{height:98.550000px;}
.h30{height:105.210000px;}
.h3e{height:109.708500px;}
.h44{height:109.710000px;}
.h38{height:120.510000px;}
.h7{height:123.805020px;}
.h2f{height:129.780000px;}
.h29{height:129.870000px;}
.h4b{height:149.938500px;}
.h2e{height:149.940000px;}
.h32{height:150.031500px;}
.h56{height:151.830000px;}
.h2a{height:170.100000px;}
.h4a{height:170.188500px;}
.h49{height:170.190000px;}
.h28{height:180.180000px;}
.h2b{height:190.260000px;}
.h34{height:190.261500px;}
.h43{height:190.350000px;}
.h3f{height:210.420000px;}
.h42{height:226.080000px;}
.h37{height:241.831500px;}
.h4c{height:249.661500px;}
.h48{height:266.848500px;}
.h55{height:299.970000px;}
.h36{height:467.190000px;}
.h31{height:589.860000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w23{width:25.470000px;}
.w27{width:98.370000px;}
.w26{width:99.990000px;}
.w20{width:106.110000px;}
.w1f{width:107.641500px;}
.w25{width:121.858500px;}
.w1e{width:121.860000px;}
.w1d{width:123.390000px;}
.w24{width:123.478500px;}
.w21{width:123.480000px;}
.wf{width:147.780000px;}
.w1b{width:148.860000px;}
.w1a{width:152.730000px;}
.w8{width:167.490000px;}
.w7{width:168.120000px;}
.w5{width:168.750000px;}
.w6{width:171.180000px;}
.w22{width:179.280000px;}
.w13{width:190.531500px;}
.w10{width:190.620000px;}
.w16{width:211.861500px;}
.w15{width:233.100000px;}
.w4{width:252.180000px;}
.w18{width:317.610000px;}
.w11{width:317.700000px;}
.w14{width:318.150000px;}
.wc{width:332.460000px;}
.w12{width:338.938500px;}
.wd{width:347.760000px;}
.w17{width:351.000000px;}
.w1c{width:367.740000px;}
.w2{width:385.378500px;}
.w3{width:484.290000px;}
.we{width:530.280000px;}
.w19{width:669.330000px;}
.wb{width:675.991500px;}
.wa{width:678.780000px;}
.w9{width:689.940000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4c{left:7.740000px;}
.x7{left:10.800000px;}
.x8a{left:14.670000px;}
.x94{left:29.070000px;}
.x95{left:35.550000px;}
.xb{left:36.810000px;}
.x91{left:54.180000px;}
.x92{left:70.740000px;}
.x97{left:75.870000px;}
.x63{left:79.470000px;}
.x9d{left:82.080000px;}
.x8b{left:91.080000px;}
.x69{left:94.410000px;}
.x4f{left:97.380000px;}
.x65{left:99.000000px;}
.x54{left:100.440000px;}
.x9c{left:103.770000px;}
.x4{left:106.380000px;}
.xa6{left:107.640000px;}
.x35{left:109.080000px;}
.x41{left:110.430000px;}
.x99{left:111.780000px;}
.x9e{left:113.130000px;}
.xf{left:114.480000px;}
.x6f{left:117.180000px;}
.x11{left:118.440000px;}
.x98{left:119.520000px;}
.x96{left:122.130000px;}
.x8d{left:123.480000px;}
.x39{left:125.370000px;}
.xa5{left:126.450000px;}
.x26{left:127.708650px;}
.x75{left:132.930000px;}
.x12{left:134.190000px;}
.x8f{left:136.980000px;}
.x38{left:139.410000px;}
.x36{left:144.630000px;}
.x87{left:146.520000px;}
.x3c{left:147.600000px;}
.x17{left:148.950000px;}
.x7b{left:150.660000px;}
.x8c{left:152.730000px;}
.x88{left:154.440000px;}
.x1a{left:157.590000px;}
.x23{left:160.286310px;}
.x93{left:163.350000px;}
.x89{left:167.220000px;}
.x2e{left:170.283600px;}
.x86{left:172.170000px;}
.x61{left:175.950000px;}
.x4e{left:180.180000px;}
.x18{left:182.970000px;}
.x1f{left:184.770000px;}
.x1b{left:186.660000px;}
.x20{left:187.830000px;}
.x1c{left:189.270000px;}
.x22{left:190.350000px;}
.x1e{left:193.860000px;}
.x21{left:195.030000px;}
.x1d{left:197.010000px;}
.x25{left:202.680000px;}
.x50{left:204.480000px;}
.x64{left:206.100000px;}
.x53{left:207.540000px;}
.x56{left:212.490000px;}
.x59{left:214.020000px;}
.x5a{left:216.360000px;}
.x5b{left:218.070000px;}
.x4d{left:219.240000px;}
.x4b{left:222.840000px;}
.x5e{left:227.700000px;}
.x90{left:234.270000px;}
.x60{left:237.510000px;}
.x51{left:240.030000px;}
.x40{left:241.470000px;}
.x3e{left:249.570000px;}
.x49{left:251.730000px;}
.x6d{left:254.970000px;}
.x33{left:262.530000px;}
.x52{left:269.370000px;}
.x3{left:271.530450px;}
.x7f{left:273.690000px;}
.x6e{left:276.750000px;}
.x44{left:279.360000px;}
.x81{left:285.480000px;}
.x10{left:286.838550px;}
.x73{left:290.340000px;}
.x28{left:313.560000px;}
.x31{left:322.380000px;}
.x2b{left:325.800000px;}
.x2d{left:327.870000px;}
.x30{left:332.280000px;}
.x72{left:335.970000px;}
.x47{left:338.400000px;}
.x62{left:343.440000px;}
.x32{left:345.960000px;}
.x5d{left:347.850000px;}
.x48{left:362.880000px;}
.x43{left:366.930000px;}
.x16{left:368.910000px;}
.x9f{left:371.340000px;}
.x3f{left:376.380000px;}
.x66{left:383.310000px;}
.x7a{left:384.390000px;}
.x19{left:386.010000px;}
.x15{left:391.123170px;}
.x74{left:394.374420px;}
.xa{left:402.840000px;}
.x9{left:404.460000px;}
.x13{left:406.900260px;}
.x6{left:409.950000px;}
.x14{left:411.841260px;}
.x8{left:415.260000px;}
.x3a{left:418.590000px;}
.x5{left:420.750000px;}
.x82{left:426.960000px;}
.x37{left:431.910000px;}
.x70{left:438.840000px;}
.x57{left:440.820000px;}
.x3b{left:447.930000px;}
.xa1{left:450.090000px;}
.xa7{left:451.890000px;}
.x77{left:454.230000px;}
.x58{left:459.450000px;}
.x71{left:462.060000px;}
.x9a{left:463.500000px;}
.x84{left:468.180000px;}
.x9b{left:471.240000px;}
.x83{left:473.310000px;}
.x85{left:475.920000px;}
.xa3{left:480.600000px;}
.x55{left:484.920000px;}
.x67{left:486.810000px;}
.x68{left:510.210000px;}
.x5c{left:530.280000px;}
.x42{left:532.440000px;}
.x7d{left:547.650000px;}
.xa2{left:550.080000px;}
.xa0{left:557.460000px;}
.x79{left:561.248460px;}
.x6b{left:563.220000px;}
.xd{left:579.954240px;}
.x45{left:585.990000px;}
.x78{left:592.380000px;}
.xe{left:605.151090px;}
.x6c{left:611.778420px;}
.xa4{left:614.790000px;}
.x34{left:617.130000px;}
.x2c{left:623.070000px;}
.xc{left:639.900000px;}
.x6a{left:643.680000px;}
.x4a{left:653.760000px;}
.x76{left:676.980000px;}
.x1{left:683.910000px;}
.x2f{left:684.982620px;}
.x2a{left:709.725510px;}
.x27{left:713.085390px;}
.x8e{left:724.317930px;}
.x3d{left:744.390000px;}
.x7c{left:749.340000px;}
.x5f{left:767.070000px;}
.x29{left:769.850460px;}
.x80{left:771.498540px;}
.x2{left:778.230000px;}
.x7e{left:784.019070px;}
.x46{left:788.122710px;}
.x24{left:790.380000px;}
@media print{
.va{vertical-align:-29.455680pt;}
.v9{vertical-align:-20.496000pt;}
.v4{vertical-align:-18.560000pt;}
.v6{vertical-align:-17.275200pt;}
.v5{vertical-align:-11.536320pt;}
.v8{vertical-align:-9.896640pt;}
.v1{vertical-align:-8.315520pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:8.022720pt;}
.v3{vertical-align:21.440000pt;}
.vb{vertical-align:28.160000pt;}
.v2{vertical-align:36.131520pt;}
.ls33{letter-spacing:-2.563200pt;}
.ls3b{letter-spacing:-2.477760pt;}
.lsce{letter-spacing:-0.345600pt;}
.ls9a{letter-spacing:-0.336000pt;}
.ls4a{letter-spacing:-0.234240pt;}
.ls9b{letter-spacing:-0.213760pt;}
.ls62{letter-spacing:-0.149120pt;}
.lsb0{letter-spacing:-0.144000pt;}
.ls4{letter-spacing:-0.133440pt;}
.ls2{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.127680pt;}
.ls25{letter-spacing:-0.117440pt;}
.ls22{letter-spacing:-0.117120pt;}
.ls63{letter-spacing:-0.074880pt;}
.ls34{letter-spacing:-0.074560pt;}
.ls37{letter-spacing:-0.064000pt;}
.ls23{letter-spacing:-0.058560pt;}
.ls69{letter-spacing:-0.048000pt;}
.ls1f{letter-spacing:-0.042560pt;}
.ls38{letter-spacing:-0.037440pt;}
.ls1{letter-spacing:0.000000pt;}
.ls91{letter-spacing:0.000640pt;}
.lsbf{letter-spacing:0.014400pt;}
.lscf{letter-spacing:0.032000pt;}
.lsbd{letter-spacing:0.042560pt;}
.ls68{letter-spacing:0.048000pt;}
.ls4b{letter-spacing:0.054080pt;}
.ls0{letter-spacing:0.058560pt;}
.ls36{letter-spacing:0.064000pt;}
.lsb3{letter-spacing:0.064416pt;}
.lsa0{letter-spacing:0.070080pt;}
.ls64{letter-spacing:0.074880pt;}
.ls78{letter-spacing:0.078080pt;}
.ls6{letter-spacing:0.085120pt;}
.lsa4{letter-spacing:0.096000pt;}
.ls75{letter-spacing:0.105408pt;}
.ls47{letter-spacing:0.106560pt;}
.ls79{letter-spacing:0.106880pt;}
.lsa{letter-spacing:0.117120pt;}
.ls21{letter-spacing:0.117440pt;}
.ls20{letter-spacing:0.127680pt;}
.ls5{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.133440pt;}
.ls6b{letter-spacing:0.146400pt;}
.ls65{letter-spacing:0.149120pt;}
.lsab{letter-spacing:0.149760pt;}
.lscb{letter-spacing:0.163968pt;}
.ls53{letter-spacing:0.166720pt;}
.ls8{letter-spacing:0.170240pt;}
.ls24{letter-spacing:0.175680pt;}
.lsc7{letter-spacing:0.187200pt;}
.lsad{letter-spacing:0.187392pt;}
.ls35{letter-spacing:0.192000pt;}
.ls87{letter-spacing:0.210816pt;}
.lsb2{letter-spacing:0.216672pt;}
.ls31{letter-spacing:0.234240pt;}
.ls2e{letter-spacing:0.256000pt;}
.ls6d{letter-spacing:0.257664pt;}
.lsaf{letter-spacing:0.262080pt;}
.lsb4{letter-spacing:0.275232pt;}
.ls2f{letter-spacing:0.292800pt;}
.lsb1{letter-spacing:0.304512pt;}
.ls9f{letter-spacing:0.310368pt;}
.ls93{letter-spacing:0.320640pt;}
.ls39{letter-spacing:0.351360pt;}
.lsbb{letter-spacing:0.368928pt;}
.ls2a{letter-spacing:0.409920pt;}
.ls7{letter-spacing:0.425600pt;}
.ls61{letter-spacing:0.426240pt;}
.ls86{letter-spacing:0.429440pt;}
.ls7f{letter-spacing:0.450912pt;}
.ls66{letter-spacing:0.503616pt;}
.ls2b{letter-spacing:0.527040pt;}
.ls5d{letter-spacing:0.568032pt;}
.ls28{letter-spacing:0.576000pt;}
.ls2c{letter-spacing:0.761280pt;}
.ls3a{letter-spacing:0.819840pt;}
.ls30{letter-spacing:0.896000pt;}
.ls7e{letter-spacing:0.931104pt;}
.ls6c{letter-spacing:1.171200pt;}
.ls8b{letter-spacing:1.241472pt;}
.lsd0{letter-spacing:1.255680pt;}
.ls4f{letter-spacing:1.464000pt;}
.ls9d{letter-spacing:1.475712pt;}
.ls2d{letter-spacing:1.536000pt;}
.ls96{letter-spacing:1.627968pt;}
.ls4d{letter-spacing:1.815360pt;}
.lsa7{letter-spacing:2.084736pt;}
.ls89{letter-spacing:2.108160pt;}
.ls70{letter-spacing:2.459520pt;}
.ls94{letter-spacing:2.752320pt;}
.lsac{letter-spacing:2.775744pt;}
.ls8a{letter-spacing:2.922144pt;}
.ls51{letter-spacing:3.103680pt;}
.ls73{letter-spacing:3.396480pt;}
.ls49{letter-spacing:3.747840pt;}
.ls74{letter-spacing:4.040640pt;}
.ls55{letter-spacing:4.392000pt;}
.ls8c{letter-spacing:4.684800pt;}
.lsa3{letter-spacing:4.702368pt;}
.ls4e{letter-spacing:4.977600pt;}
.lsae{letter-spacing:5.036160pt;}
.lsa9{letter-spacing:5.323104pt;}
.lsa8{letter-spacing:5.328960pt;}
.lsc6{letter-spacing:5.621760pt;}
.ls5f{letter-spacing:5.973120pt;}
.ls60{letter-spacing:6.265920pt;}
.ls7d{letter-spacing:6.295200pt;}
.ls9e{letter-spacing:6.301056pt;}
.lsb9{letter-spacing:6.336192pt;}
.lsb8{letter-spacing:6.605440pt;}
.ls72{letter-spacing:6.617280pt;}
.lsa5{letter-spacing:6.863232pt;}
.ls8d{letter-spacing:6.910080pt;}
.lsaa{letter-spacing:7.261440pt;}
.ls50{letter-spacing:7.554240pt;}
.lsbc{letter-spacing:7.905600pt;}
.ls99{letter-spacing:8.198400pt;}
.lsc8{letter-spacing:8.549760pt;}
.ls6f{letter-spacing:8.842560pt;}
.ls7a{letter-spacing:8.871840pt;}
.lsb5{letter-spacing:9.158784pt;}
.ls7b{letter-spacing:9.193920pt;}
.ls5b{letter-spacing:9.486720pt;}
.ls90{letter-spacing:9.779520pt;}
.ls92{letter-spacing:10.130880pt;}
.ls5e{letter-spacing:10.423680pt;}
.ls7c{letter-spacing:10.751616pt;}
.ls71{letter-spacing:10.775040pt;}
.ls56{letter-spacing:11.067840pt;}
.ls8f{letter-spacing:11.419200pt;}
.ls97{letter-spacing:12.063360pt;}
.ls76{letter-spacing:12.356160pt;}
.lsca{letter-spacing:12.707520pt;}
.ls77{letter-spacing:12.725088pt;}
.ls88{letter-spacing:13.351680pt;}
.ls48{letter-spacing:13.937280pt;}
.lsa2{letter-spacing:14.247648pt;}
.lsa1{letter-spacing:14.288640pt;}
.ls59{letter-spacing:15.869760pt;}
.lscc{letter-spacing:15.893184pt;}
.ls5a{letter-spacing:16.221120pt;}
.ls57{letter-spacing:16.513920pt;}
.ls58{letter-spacing:16.549056pt;}
.ls9c{letter-spacing:16.865280pt;}
.lscd{letter-spacing:17.802240pt;}
.ls29{letter-spacing:17.856000pt;}
.ls95{letter-spacing:18.153600pt;}
.lsc0{letter-spacing:19.723008pt;}
.lsc3{letter-spacing:19.734720pt;}
.lsc9{letter-spacing:20.027520pt;}
.lsc1{letter-spacing:20.777088pt;}
.ls8e{letter-spacing:22.604160pt;}
.lsc2{letter-spacing:23.576256pt;}
.ls6e{letter-spacing:24.068160pt;}
.lsa6{letter-spacing:25.180800pt;}
.ls27{letter-spacing:25.536000pt;}
.ls98{letter-spacing:26.117760pt;}
.ls67{letter-spacing:32.383680pt;}
.lsc4{letter-spacing:32.500800pt;}
.lsbe{letter-spacing:32.676480pt;}
.lsc5{letter-spacing:32.852160pt;}
.lsba{letter-spacing:33.496320pt;}
.ls5c{letter-spacing:37.302720pt;}
.ls6a{letter-spacing:45.568000pt;}
.ls52{letter-spacing:52.821120pt;}
.ls54{letter-spacing:77.192320pt;}
.ls26{letter-spacing:99.136000pt;}
.ls4c{letter-spacing:108.296320pt;}
.ls10{letter-spacing:109.331520pt;}
.lsf{letter-spacing:112.200960pt;}
.ls1a{letter-spacing:123.093120pt;}
.lsb7{letter-spacing:147.061440pt;}
.ls17{letter-spacing:163.089600pt;}
.ls1c{letter-spacing:167.891520pt;}
.ls14{letter-spacing:170.760960pt;}
.ls13{letter-spacing:198.928320pt;}
.ls1d{letter-spacing:220.361280pt;}
.lsb{letter-spacing:253.623360pt;}
.lse{letter-spacing:258.448704pt;}
.lsb6{letter-spacing:259.089600pt;}
.ls9{letter-spacing:280.209600pt;}
.ls42{letter-spacing:285.972480pt;}
.ls18{letter-spacing:291.394560pt;}
.ls3d{letter-spacing:296.228480pt;}
.ls45{letter-spacing:298.142080pt;}
.ls3c{letter-spacing:299.735680pt;}
.ls3f{letter-spacing:303.242880pt;}
.ls12{letter-spacing:303.575040pt;}
.ls43{letter-spacing:304.184000pt;}
.lsd{letter-spacing:305.156160pt;}
.ls44{letter-spacing:305.156480pt;}
.ls3e{letter-spacing:309.019200pt;}
.ls41{letter-spacing:309.991680pt;}
.ls15{letter-spacing:312.183360pt;}
.ls46{letter-spacing:313.143360pt;}
.ls40{letter-spacing:325.668480pt;}
.ls11{letter-spacing:326.296320pt;}
.lsc{letter-spacing:372.383040pt;}
.ls19{letter-spacing:510.291840pt;}
.ls81{letter-spacing:510.936000pt;}
.ls85{letter-spacing:565.338240pt;}
.ls16{letter-spacing:569.496000pt;}
.ls80{letter-spacing:576.523200pt;}
.ls83{letter-spacing:578.455680pt;}
.ls84{letter-spacing:579.099840pt;}
.ls82{letter-spacing:586.419840pt;}
.ls1b{letter-spacing:689.485440pt;}
.ls32{letter-spacing:754.765440pt;}
.ws45{word-spacing:-58.560000pt;}
.ws1{word-spacing:-30.024000pt;}
.ws44{word-spacing:-24.189120pt;}
.ws59{word-spacing:-24.082560pt;}
.ws1cb{word-spacing:-16.999680pt;}
.ws1e{word-spacing:-16.850560pt;}
.ws22{word-spacing:-16.776000pt;}
.wsd2{word-spacing:-16.701440pt;}
.ws187{word-spacing:-14.528000pt;}
.ws20{word-spacing:-14.464000pt;}
.ws1f{word-spacing:-14.400000pt;}
.ws0{word-spacing:-14.336000pt;}
.ws12c{word-spacing:-13.644480pt;}
.ws5a{word-spacing:-13.585920pt;}
.wsc3{word-spacing:-13.527360pt;}
.ws5d{word-spacing:-13.468800pt;}
.wsb{word-spacing:-13.410240pt;}
.ws97{word-spacing:-13.380960pt;}
.ws2a{word-spacing:-13.351680pt;}
.wsc{word-spacing:-13.293120pt;}
.wsd{word-spacing:-13.234560pt;}
.wsa{word-spacing:-13.176000pt;}
.wse{word-spacing:-13.117440pt;}
.ws1db{word-spacing:-13.000320pt;}
.ws1e0{word-spacing:-12.184320pt;}
.ws113{word-spacing:-11.863680pt;}
.ws131{word-spacing:-10.944000pt;}
.ws1e6{word-spacing:-10.896000pt;}
.ws127{word-spacing:-10.848000pt;}
.ws84{word-spacing:-10.800000pt;}
.ws188{word-spacing:-9.661120pt;}
.ws8{word-spacing:-9.576000pt;}
.ws9{word-spacing:-9.490880pt;}
.ws13c{word-spacing:-8.723520pt;}
.ws1cc{word-spacing:-8.648640pt;}
.ws139{word-spacing:-8.611200pt;}
.ws5c{word-spacing:-8.536320pt;}
.wsb2{word-spacing:-8.461440pt;}
.ws21{word-spacing:-8.424000pt;}
.ws5b{word-spacing:-8.386560pt;}
.ws11b{word-spacing:-3.455040pt;}
.ws115{word-spacing:-3.337920pt;}
.ws61{word-spacing:-3.279360pt;}
.ws8e{word-spacing:-3.220800pt;}
.wsaa{word-spacing:-3.162240pt;}
.ws1d5{word-spacing:-3.103680pt;}
.ws6c{word-spacing:-2.986560pt;}
.ws67{word-spacing:-2.928000pt;}
.ws68{word-spacing:-2.869440pt;}
.wsda{word-spacing:-2.810880pt;}
.wscb{word-spacing:-2.693760pt;}
.ws69{word-spacing:-2.635200pt;}
.wsff{word-spacing:-2.576640pt;}
.ws4e{word-spacing:-2.459520pt;}
.ws42{word-spacing:-2.342400pt;}
.ws3d{word-spacing:-2.283840pt;}
.ws1d9{word-spacing:-2.225280pt;}
.ws8f{word-spacing:-2.166720pt;}
.ws1e7{word-spacing:-2.123520pt;}
.ws90{word-spacing:-2.049600pt;}
.ws32{word-spacing:-1.991040pt;}
.ws141{word-spacing:-1.932480pt;}
.ws11c{word-spacing:-1.815360pt;}
.ws15d{word-spacing:-1.756800pt;}
.ws2f{word-spacing:-1.698240pt;}
.ws2e{word-spacing:-1.639680pt;}
.ws105{word-spacing:-1.581120pt;}
.ws144{word-spacing:-1.522560pt;}
.ws1da{word-spacing:-1.464000pt;}
.ws101{word-spacing:-1.405440pt;}
.ws4d{word-spacing:-1.346880pt;}
.ws180{word-spacing:-1.288320pt;}
.ws31{word-spacing:-1.229760pt;}
.ws152{word-spacing:-1.171200pt;}
.ws13e{word-spacing:-1.112640pt;}
.ws6d{word-spacing:-1.054080pt;}
.ws30{word-spacing:-0.995520pt;}
.wsd4{word-spacing:-0.936960pt;}
.ws149{word-spacing:-0.819840pt;}
.ws53{word-spacing:-0.761280pt;}
.wsb9{word-spacing:-0.702720pt;}
.wsba{word-spacing:-0.644160pt;}
.wsa9{word-spacing:-0.585600pt;}
.ws5e{word-spacing:-0.532800pt;}
.ws8a{word-spacing:-0.527040pt;}
.ws1df{word-spacing:-0.522240pt;}
.ws29{word-spacing:-0.512640pt;}
.ws1c{word-spacing:-0.469760pt;}
.ws3e{word-spacing:-0.468480pt;}
.ws43{word-spacing:-0.409920pt;}
.ws18{word-spacing:-0.351360pt;}
.ws2d{word-spacing:-0.292800pt;}
.ws6{word-spacing:-0.266880pt;}
.ws1a{word-spacing:-0.234240pt;}
.ws2b{word-spacing:-0.213120pt;}
.ws7{word-spacing:-0.192000pt;}
.ws1d{word-spacing:-0.175680pt;}
.ws1d7{word-spacing:-0.149120pt;}
.ws5{word-spacing:-0.133440pt;}
.ws27{word-spacing:-0.128000pt;}
.ws13{word-spacing:-0.127680pt;}
.ws15{word-spacing:-0.117440pt;}
.ws16{word-spacing:-0.117120pt;}
.ws5f{word-spacing:-0.106560pt;}
.ws23{word-spacing:-0.085440pt;}
.ws7b{word-spacing:-0.074560pt;}
.ws26{word-spacing:-0.064000pt;}
.ws2{word-spacing:-0.058560pt;}
.ws85{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.ws86{word-spacing:0.048000pt;}
.ws28{word-spacing:0.058560pt;}
.ws4{word-spacing:0.064000pt;}
.ws24{word-spacing:0.074560pt;}
.ws87{word-spacing:0.096000pt;}
.ws38{word-spacing:0.117120pt;}
.ws1b{word-spacing:0.117440pt;}
.ws12{word-spacing:0.127680pt;}
.ws189{word-spacing:0.144000pt;}
.ws25{word-spacing:0.149120pt;}
.ws19{word-spacing:0.175680pt;}
.ws142{word-spacing:0.192000pt;}
.ws60{word-spacing:0.223680pt;}
.ws2c{word-spacing:0.234240pt;}
.ws17{word-spacing:0.292800pt;}
.ws11e{word-spacing:0.320640pt;}
.ws95{word-spacing:0.351360pt;}
.ws11a{word-spacing:0.384000pt;}
.ws93{word-spacing:0.409920pt;}
.ws14{word-spacing:0.425600pt;}
.ws7e{word-spacing:0.468480pt;}
.wsbb{word-spacing:0.521920pt;}
.ws3a{word-spacing:0.527040pt;}
.ws92{word-spacing:0.585600pt;}
.ws94{word-spacing:0.644160pt;}
.ws91{word-spacing:0.819840pt;}
.ws96{word-spacing:0.878400pt;}
.ws145{word-spacing:0.936960pt;}
.ws111{word-spacing:0.995520pt;}
.wsde{word-spacing:1.054080pt;}
.wsb1{word-spacing:1.112640pt;}
.ws77{word-spacing:1.171200pt;}
.ws55{word-spacing:1.229760pt;}
.wsdc{word-spacing:1.288320pt;}
.ws10{word-spacing:1.319360pt;}
.wsec{word-spacing:1.346880pt;}
.wsf{word-spacing:1.404480pt;}
.ws4c{word-spacing:1.405440pt;}
.wse6{word-spacing:1.464000pt;}
.ws4b{word-spacing:1.522560pt;}
.wse7{word-spacing:1.581120pt;}
.ws125{word-spacing:1.639680pt;}
.ws47{word-spacing:1.698240pt;}
.ws11{word-spacing:1.702400pt;}
.ws1ab{word-spacing:1.756800pt;}
.ws110{word-spacing:1.815360pt;}
.ws48{word-spacing:1.873920pt;}
.wsd1{word-spacing:1.932480pt;}
.ws88{word-spacing:2.108160pt;}
.ws46{word-spacing:2.166720pt;}
.ws89{word-spacing:2.225280pt;}
.ws140{word-spacing:2.342400pt;}
.ws13f{word-spacing:2.400960pt;}
.ws72{word-spacing:2.459520pt;}
.ws7d{word-spacing:2.518080pt;}
.ws12f{word-spacing:2.576640pt;}
.ws99{word-spacing:2.635200pt;}
.ws1e1{word-spacing:2.693760pt;}
.ws9d{word-spacing:2.752320pt;}
.ws98{word-spacing:2.810880pt;}
.ws10b{word-spacing:2.869440pt;}
.wsc0{word-spacing:2.928000pt;}
.ws52{word-spacing:2.986560pt;}
.wsdf{word-spacing:3.045120pt;}
.ws51{word-spacing:3.103680pt;}
.ws9a{word-spacing:3.162240pt;}
.wsdd{word-spacing:3.220800pt;}
.wse1{word-spacing:3.279360pt;}
.ws8d{word-spacing:3.396480pt;}
.ws13b{word-spacing:3.455040pt;}
.wse0{word-spacing:3.513600pt;}
.ws40{word-spacing:3.630720pt;}
.ws41{word-spacing:3.747840pt;}
.ws3f{word-spacing:3.806400pt;}
.ws10d{word-spacing:3.864960pt;}
.ws10c{word-spacing:3.923520pt;}
.wsc1{word-spacing:3.982080pt;}
.wsa0{word-spacing:4.040640pt;}
.wsa3{word-spacing:4.099200pt;}
.wsa2{word-spacing:4.157760pt;}
.wsae{word-spacing:4.216320pt;}
.ws121{word-spacing:4.274880pt;}
.ws65{word-spacing:4.392000pt;}
.ws9c{word-spacing:4.450560pt;}
.ws134{word-spacing:4.509120pt;}
.ws112{word-spacing:4.567680pt;}
.ws130{word-spacing:4.626240pt;}
.wsa1{word-spacing:4.684800pt;}
.ws3b{word-spacing:4.743360pt;}
.ws66{word-spacing:4.801920pt;}
.ws1d2{word-spacing:4.860480pt;}
.ws4a{word-spacing:4.977600pt;}
.ws49{word-spacing:5.036160pt;}
.wse4{word-spacing:5.094720pt;}
.ws176{word-spacing:5.270400pt;}
.ws13a{word-spacing:5.328960pt;}
.wsaf{word-spacing:5.387520pt;}
.ws1dd{word-spacing:5.446080pt;}
.ws1c3{word-spacing:5.504640pt;}
.ws9e{word-spacing:5.621760pt;}
.ws1c1{word-spacing:5.680320pt;}
.ws120{word-spacing:5.738880pt;}
.wsf8{word-spacing:5.797440pt;}
.ws82{word-spacing:5.856000pt;}
.ws155{word-spacing:5.914560pt;}
.wsd3{word-spacing:5.973120pt;}
.ws81{word-spacing:6.031680pt;}
.ws83{word-spacing:6.090240pt;}
.wsc8{word-spacing:6.148800pt;}
.wsc7{word-spacing:6.265920pt;}
.wsca{word-spacing:6.324480pt;}
.wsc9{word-spacing:6.383040pt;}
.wsbf{word-spacing:6.500160pt;}
.ws1c6{word-spacing:6.617280pt;}
.wsbd{word-spacing:6.675840pt;}
.wsbe{word-spacing:6.734400pt;}
.wse9{word-spacing:6.792960pt;}
.wsd0{word-spacing:6.910080pt;}
.wscf{word-spacing:6.968640pt;}
.wse8{word-spacing:7.027200pt;}
.ws4f{word-spacing:7.261440pt;}
.ws50{word-spacing:7.320000pt;}
.ws147{word-spacing:7.378560pt;}
.ws35{word-spacing:7.554240pt;}
.ws36{word-spacing:7.612800pt;}
.ws146{word-spacing:7.671360pt;}
.wsf7{word-spacing:7.729920pt;}
.ws106{word-spacing:7.788480pt;}
.wsa5{word-spacing:7.905600pt;}
.wsa4{word-spacing:7.964160pt;}
.wsf6{word-spacing:8.022720pt;}
.ws12e{word-spacing:8.081280pt;}
.ws1ee{word-spacing:8.139840pt;}
.ws54{word-spacing:8.198400pt;}
.ws9f{word-spacing:8.256960pt;}
.ws123{word-spacing:8.432640pt;}
.ws9b{word-spacing:8.549760pt;}
.ws7c{word-spacing:8.608320pt;}
.wsb0{word-spacing:8.666880pt;}
.wsc4{word-spacing:8.784000pt;}
.ws128{word-spacing:8.842560pt;}
.wsc5{word-spacing:8.901120pt;}
.ws132{word-spacing:8.959680pt;}
.ws114{word-spacing:9.135360pt;}
.wsf0{word-spacing:9.193920pt;}
.ws1d8{word-spacing:9.311040pt;}
.ws75{word-spacing:9.369600pt;}
.ws74{word-spacing:9.428160pt;}
.ws76{word-spacing:9.486720pt;}
.ws73{word-spacing:9.545280pt;}
.wsf1{word-spacing:9.603840pt;}
.ws1e5{word-spacing:9.662400pt;}
.wsee{word-spacing:9.720960pt;}
.ws119{word-spacing:9.779520pt;}
.ws34{word-spacing:9.838080pt;}
.ws102{word-spacing:9.896640pt;}
.ws1e8{word-spacing:9.955200pt;}
.wsef{word-spacing:10.013760pt;}
.ws64{word-spacing:10.130880pt;}
.ws62{word-spacing:10.189440pt;}
.ws13d{word-spacing:10.248000pt;}
.ws12d{word-spacing:10.306560pt;}
.ws63{word-spacing:10.423680pt;}
.ws7f{word-spacing:10.482240pt;}
.wsc6{word-spacing:10.540800pt;}
.ws129{word-spacing:10.657920pt;}
.ws10a{word-spacing:10.775040pt;}
.wsbc{word-spacing:10.833600pt;}
.ws80{word-spacing:10.892160pt;}
.ws104{word-spacing:10.950720pt;}
.wse2{word-spacing:11.067840pt;}
.ws6a{word-spacing:11.126400pt;}
.ws103{word-spacing:11.184960pt;}
.ws8c{word-spacing:11.243520pt;}
.ws109{word-spacing:11.302080pt;}
.ws8b{word-spacing:11.419200pt;}
.ws6b{word-spacing:11.477760pt;}
.wsed{word-spacing:11.536320pt;}
.wsb3{word-spacing:11.594880pt;}
.ws116{word-spacing:11.653440pt;}
.ws117{word-spacing:11.712000pt;}
.wsb4{word-spacing:11.770560pt;}
.ws124{word-spacing:11.829120pt;}
.wsa6{word-spacing:12.004800pt;}
.wsa8{word-spacing:12.063360pt;}
.wsa7{word-spacing:12.121920pt;}
.wsc2{word-spacing:12.414720pt;}
.ws1c8{word-spacing:12.590400pt;}
.ws1c4{word-spacing:12.648960pt;}
.ws14a{word-spacing:12.707520pt;}
.ws1c5{word-spacing:12.766080pt;}
.ws150{word-spacing:13.000320pt;}
.ws10e{word-spacing:13.058880pt;}
.ws175{word-spacing:13.117440pt;}
.wsd9{word-spacing:13.351680pt;}
.wsd8{word-spacing:13.410240pt;}
.wse3{word-spacing:13.703040pt;}
.ws143{word-spacing:13.820160pt;}
.ws16b{word-spacing:13.937280pt;}
.ws37{word-spacing:13.995840pt;}
.ws158{word-spacing:14.230080pt;}
.wsd6{word-spacing:14.288640pt;}
.wsd5{word-spacing:14.347200pt;}
.wsd7{word-spacing:14.405760pt;}
.wsdb{word-spacing:14.581440pt;}
.wse5{word-spacing:14.640000pt;}
.ws1c9{word-spacing:14.698560pt;}
.wsac{word-spacing:14.815680pt;}
.wsad{word-spacing:14.932800pt;}
.ws1c7{word-spacing:15.167040pt;}
.wsab{word-spacing:15.284160pt;}
.ws1a5{word-spacing:15.342720pt;}
.ws1e2{word-spacing:15.635520pt;}
.ws70{word-spacing:15.694080pt;}
.ws177{word-spacing:15.869760pt;}
.ws71{word-spacing:15.928320pt;}
.ws12a{word-spacing:16.221120pt;}
.ws11d{word-spacing:16.279680pt;}
.ws12b{word-spacing:16.338240pt;}
.ws6e{word-spacing:16.455360pt;}
.ws6f{word-spacing:16.513920pt;}
.ws57{word-spacing:16.572480pt;}
.ws56{word-spacing:16.631040pt;}
.ws168{word-spacing:16.865280pt;}
.ws11f{word-spacing:16.923840pt;}
.ws100{word-spacing:17.158080pt;}
.ws1e3{word-spacing:17.216640pt;}
.ws58{word-spacing:17.509440pt;}
.ws1e4{word-spacing:17.685120pt;}
.wsb8{word-spacing:17.802240pt;}
.wsb7{word-spacing:17.860800pt;}
.wsf9{word-spacing:17.919360pt;}
.wsfc{word-spacing:18.036480pt;}
.ws10f{word-spacing:18.095040pt;}
.wsfd{word-spacing:18.153600pt;}
.wsfe{word-spacing:18.270720pt;}
.ws148{word-spacing:18.329280pt;}
.ws136{word-spacing:18.446400pt;}
.wsfb{word-spacing:18.504960pt;}
.wsfa{word-spacing:18.797760pt;}
.wsb6{word-spacing:19.032000pt;}
.ws18b{word-spacing:19.090560pt;}
.wsb5{word-spacing:19.149120pt;}
.ws135{word-spacing:19.383360pt;}
.ws33{word-spacing:19.441920pt;}
.ws18d{word-spacing:19.500480pt;}
.ws15a{word-spacing:19.676160pt;}
.ws159{word-spacing:19.734720pt;}
.ws122{word-spacing:19.793280pt;}
.ws1d4{word-spacing:20.027520pt;}
.ws107{word-spacing:20.086080pt;}
.ws1dc{word-spacing:20.144640pt;}
.ws18a{word-spacing:20.496000pt;}
.wsf5{word-spacing:20.613120pt;}
.ws186{word-spacing:20.671680pt;}
.wsf3{word-spacing:20.730240pt;}
.wsf4{word-spacing:20.788800pt;}
.ws39{word-spacing:20.905920pt;}
.wsf2{word-spacing:21.023040pt;}
.ws16d{word-spacing:21.081600pt;}
.ws1de{word-spacing:21.257280pt;}
.ws167{word-spacing:21.315840pt;}
.ws1cd{word-spacing:21.374400pt;}
.ws14f{word-spacing:21.725760pt;}
.ws1cf{word-spacing:21.901440pt;}
.ws3c{word-spacing:22.018560pt;}
.wseb{word-spacing:22.311360pt;}
.wsea{word-spacing:22.369920pt;}
.ws1ce{word-spacing:22.662720pt;}
.ws14e{word-spacing:22.896960pt;}
.ws18e{word-spacing:22.955520pt;}
.ws174{word-spacing:23.248320pt;}
.ws172{word-spacing:23.306880pt;}
.ws1d1{word-spacing:23.424000pt;}
.ws1ed{word-spacing:23.541120pt;}
.ws1ec{word-spacing:23.599680pt;}
.ws182{word-spacing:23.658240pt;}
.ws1c0{word-spacing:23.716800pt;}
.ws181{word-spacing:23.892480pt;}
.ws15e{word-spacing:23.951040pt;}
.ws17d{word-spacing:24.478080pt;}
.ws1b7{word-spacing:24.536640pt;}
.ws17c{word-spacing:24.595200pt;}
.ws17a{word-spacing:24.829440pt;}
.ws1ad{word-spacing:24.888000pt;}
.ws160{word-spacing:25.180800pt;}
.ws138{word-spacing:25.239360pt;}
.ws137{word-spacing:25.297920pt;}
.ws15b{word-spacing:25.532160pt;}
.ws17b{word-spacing:25.942080pt;}
.ws153{word-spacing:26.117760pt;}
.ws118{word-spacing:26.176320pt;}
.ws126{word-spacing:26.469120pt;}
.ws1ba{word-spacing:26.527680pt;}
.ws198{word-spacing:26.761920pt;}
.ws14b{word-spacing:26.820480pt;}
.ws191{word-spacing:27.933120pt;}
.ws1a7{word-spacing:28.284480pt;}
.ws196{word-spacing:28.752960pt;}
.ws157{word-spacing:28.811520pt;}
.wsce{word-spacing:29.572800pt;}
.wscd{word-spacing:29.631360pt;}
.wscc{word-spacing:29.689920pt;}
.ws108{word-spacing:29.748480pt;}
.ws193{word-spacing:29.982720pt;}
.ws16c{word-spacing:30.685440pt;}
.ws133{word-spacing:30.919680pt;}
.ws1b6{word-spacing:30.978240pt;}
.ws1eb{word-spacing:31.036800pt;}
.ws1a2{word-spacing:31.388160pt;}
.ws16e{word-spacing:31.915200pt;}
.ws179{word-spacing:32.149440pt;}
.ws178{word-spacing:32.208000pt;}
.ws1d6{word-spacing:32.500800pt;}
.ws190{word-spacing:32.559360pt;}
.ws165{word-spacing:32.910720pt;}
.ws154{word-spacing:33.203520pt;}
.ws16a{word-spacing:33.496320pt;}
.ws14d{word-spacing:33.789120pt;}
.ws17e{word-spacing:33.847680pt;}
.ws1a0{word-spacing:35.253120pt;}
.ws19f{word-spacing:35.428800pt;}
.ws7a{word-spacing:36.892800pt;}
.ws78{word-spacing:37.009920pt;}
.ws79{word-spacing:37.068480pt;}
.ws1b8{word-spacing:37.127040pt;}
.ws1b5{word-spacing:37.712640pt;}
.ws164{word-spacing:38.356800pt;}
.ws192{word-spacing:39.293760pt;}
.ws156{word-spacing:39.586560pt;}
.ws169{word-spacing:42.104640pt;}
.ws1ca{word-spacing:42.514560pt;}
.ws19a{word-spacing:45.618240pt;}
.ws199{word-spacing:45.676800pt;}
.ws1d0{word-spacing:46.672320pt;}
.ws1b3{word-spacing:46.789440pt;}
.ws1b0{word-spacing:46.906560pt;}
.ws1b2{word-spacing:46.965120pt;}
.ws1ac{word-spacing:48.604800pt;}
.ws173{word-spacing:48.897600pt;}
.ws184{word-spacing:49.600320pt;}
.ws1be{word-spacing:50.595840pt;}
.ws1bd{word-spacing:50.830080pt;}
.ws195{word-spacing:51.474240pt;}
.ws15f{word-spacing:51.767040pt;}
.ws17f{word-spacing:52.059840pt;}
.ws14c{word-spacing:52.704000pt;}
.ws1a8{word-spacing:53.406720pt;}
.ws166{word-spacing:56.920320pt;}
.ws197{word-spacing:60.082560pt;}
.ws16f{word-spacing:62.307840pt;}
.ws170{word-spacing:62.366400pt;}
.ws1a9{word-spacing:62.952000pt;}
.ws18f{word-spacing:63.010560pt;}
.ws19e{word-spacing:63.361920pt;}
.ws1d3{word-spacing:63.596160pt;}
.ws1af{word-spacing:63.888960pt;}
.ws1b1{word-spacing:64.181760pt;}
.ws1e9{word-spacing:69.686400pt;}
.ws1a1{word-spacing:71.326080pt;}
.ws1b4{word-spacing:73.551360pt;}
.ws161{word-spacing:73.785600pt;}
.ws19b{word-spacing:76.128000pt;}
.ws1ea{word-spacing:77.357760pt;}
.ws18c{word-spacing:79.583040pt;}
.ws194{word-spacing:79.700160pt;}
.ws1bf{word-spacing:82.452480pt;}
.ws1ae{word-spacing:86.024640pt;}
.ws1bc{word-spacing:89.538240pt;}
.ws1a4{word-spacing:90.826560pt;}
.ws1a6{word-spacing:102.655680pt;}
.ws183{word-spacing:105.466560pt;}
.ws1a3{word-spacing:113.547840pt;}
.ws19d{word-spacing:129.593280pt;}
.ws1b9{word-spacing:134.746560pt;}
.ws185{word-spacing:141.363840pt;}
.ws163{word-spacing:161.215680pt;}
.ws1bb{word-spacing:198.401280pt;}
.ws1aa{word-spacing:205.955520pt;}
.ws171{word-spacing:211.752960pt;}
.ws19c{word-spacing:212.924160pt;}
.ws15c{word-spacing:216.262080pt;}
.ws162{word-spacing:221.064000pt;}
.ws151{word-spacing:224.928960pt;}
.ws1c2{word-spacing:243.433920pt;}
._a{margin-left:-15.014976pt;}
._11{margin-left:-13.358016pt;}
._f{margin-left:-11.520000pt;}
._b{margin-left:-10.090880pt;}
._d{margin-left:-8.576000pt;}
._c{margin-left:-7.616000pt;}
._8{margin-left:-6.707040pt;}
._e{margin-left:-5.612160pt;}
._10{margin-left:-4.224000pt;}
._13{margin-left:-3.152640pt;}
._9{margin-left:-1.952064pt;}
._2{margin-left:-0.920736pt;}
._1{width:1.088000pt;}
._14{width:2.866496pt;}
._24{width:3.889600pt;}
._1c{width:5.174720pt;}
._21{width:6.071680pt;}
._20{width:7.378560pt;}
._1d{width:8.491200pt;}
._25{width:9.799520pt;}
._1e{width:10.722560pt;}
._22{width:12.306016pt;}
._1b{width:14.787840pt;}
._1f{width:16.800320pt;}
._23{width:18.295360pt;}
._1a{width:20.160000pt;}
._30{width:21.374400pt;}
._27{width:22.317440pt;}
._29{width:24.672000pt;}
._12{width:25.856000pt;}
._26{width:29.714560pt;}
._34{width:31.212480pt;}
._33{width:34.509408pt;}
._35{width:53.289600pt;}
._2f{width:60.868480pt;}
._32{width:109.901440pt;}
._2c{width:273.821120pt;}
._17{width:293.162560pt;}
._19{width:304.656640pt;}
._18{width:329.824000pt;}
._16{width:337.072640pt;}
._4{width:341.078080pt;}
._2d{width:404.321600pt;}
._2a{width:442.081600pt;}
._5{width:479.889920pt;}
._3{width:492.021120pt;}
._7{width:615.231360pt;}
._6{width:671.976000pt;}
._2b{width:684.759360pt;}
._2e{width:722.839360pt;}
._0{width:754.779840pt;}
._31{width:761.239360pt;}
._28{width:826.147200pt;}
._36{width:864.863680pt;}
._15{width:896.946240pt;}
.fsc{font-size:3.840000pt;}
.fsa{font-size:34.560000pt;}
.fs7{font-size:37.440000pt;}
.fs3{font-size:42.560000pt;}
.fs9{font-size:48.000000pt;}
.fsb{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:74.560000pt;}
.fs5{font-size:85.440000pt;}
.fs8{font-size:106.560000pt;}
.fs4{font-size:117.440000pt;}
.fs2{font-size:133.440000pt;}
.ye{bottom:-54.720000pt;}
.yd{bottom:-28.800000pt;}
.y11{bottom:-23.360000pt;}
.y9{bottom:-10.080000pt;}
.y474{bottom:-8.880000pt;}
.y478{bottom:-6.320000pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.080000pt;}
.y10{bottom:2.960000pt;}
.y182{bottom:3.920000pt;}
.y16c{bottom:4.000000pt;}
.y172{bottom:4.160000pt;}
.y16f{bottom:4.480000pt;}
.y17a{bottom:4.880000pt;}
.y472{bottom:8.240000pt;}
.y46e{bottom:8.320000pt;}
.y448{bottom:17.840000pt;}
.y44a{bottom:17.920000pt;}
.y44d{bottom:18.880000pt;}
.y380{bottom:21.760000pt;}
.y32b{bottom:21.840000pt;}
.y1e8{bottom:25.760000pt;}
.y1e0{bottom:25.840000pt;}
.y445{bottom:29.760000pt;}
.y46c{bottom:30.640000pt;}
.y470{bottom:30.720000pt;}
.y37c{bottom:32.720000pt;}
.y3{bottom:34.233840pt;}
.y32{bottom:34.240080pt;}
.y35a{bottom:34.720000pt;}
.y3cd{bottom:34.800000pt;}
.y14{bottom:37.115840pt;}
.y282{bottom:37.280000pt;}
.y17{bottom:37.830720pt;}
.y43e{bottom:39.760000pt;}
.y1d7{bottom:43.680000pt;}
.y1ef{bottom:43.760000pt;}
.y13{bottom:50.160480pt;}
.y37b{bottom:50.640000pt;}
.y16{bottom:50.875360pt;}
.y2{bottom:52.080000pt;}
.y31{bottom:52.086240pt;}
.y34f{bottom:52.640000pt;}
.y373{bottom:52.720000pt;}
.y299{bottom:57.440000pt;}
.y37e{bottom:57.600000pt;}
.y1df{bottom:61.600000pt;}
.y1a5{bottom:61.680000pt;}
.y12{bottom:63.120000pt;}
.y452{bottom:63.680000pt;}
.y15{bottom:63.920000pt;}
.y442{bottom:65.600000pt;}
.y358{bottom:70.560000pt;}
.y301{bottom:70.640000pt;}
.y432{bottom:76.400000pt;}
.y24d{bottom:79.520000pt;}
.y345{bottom:79.600000pt;}
.y460{bottom:83.520000pt;}
.y3d8{bottom:88.480000pt;}
.y3cc{bottom:88.560000pt;}
.y298{bottom:95.440000pt;}
.y19d{bottom:96.960000pt;}
.y475{bottom:97.200000pt;}
.y1dc{bottom:97.440000pt;}
.y37a{bottom:97.840000pt;}
.y476{bottom:98.240000pt;}
.y471{bottom:102.720000pt;}
.y15b{bottom:102.800000pt;}
.y29f{bottom:103.360000pt;}
.y477{bottom:103.680000pt;}
.yf6{bottom:103.760000pt;}
.y399{bottom:104.640000pt;}
.y32a{bottom:106.880000pt;}
.y209{bottom:107.280000pt;}
.y473{bottom:109.520000pt;}
.y11b{bottom:109.867600pt;}
.y2ff{bottom:110.240000pt;}
.y1d5{bottom:112.000000pt;}
.y37d{bottom:112.640000pt;}
.y466{bottom:112.960000pt;}
.y2cd{bottom:113.120000pt;}
.y2ab{bottom:113.450880pt;}
.y13f{bottom:113.698880pt;}
.y184{bottom:114.160000pt;}
.y15a{bottom:114.720000pt;}
.y3ef{bottom:115.280000pt;}
.y23b{bottom:115.360000pt;}
.y25d{bottom:115.680000pt;}
.y42f{bottom:117.520000pt;}
.y43d{bottom:118.480000pt;}
.y414{bottom:120.960000pt;}
.y29e{bottom:121.280000pt;}
.y329{bottom:121.680000pt;}
.y3b6{bottom:122.400000pt;}
.y3ca{bottom:124.320000pt;}
.yf5{bottom:124.741360pt;}
.y46f{bottom:128.160000pt;}
.y19c{bottom:128.560000pt;}
.y32c{bottom:128.720000pt;}
.y208{bottom:129.120000pt;}
.y11a{bottom:129.221680pt;}
.y357{bottom:129.920000pt;}
.y379{bottom:130.560000pt;}
.y43f{bottom:132.000000pt;}
.y13e{bottom:133.052960pt;}
.y1b7{bottom:133.200000pt;}
.y347{bottom:133.280000pt;}
.y25c{bottom:133.600000pt;}
.y1d4{bottom:133.840000pt;}
.y2aa{bottom:134.005440pt;}
.y29a{bottom:134.960000pt;}
.y222{bottom:135.680000pt;}
.y181{bottom:136.800000pt;}
.y3b5{bottom:137.280000pt;}
.y37f{bottom:137.520000pt;}
.y35e{bottom:137.760000pt;}
.y413{bottom:138.880000pt;}
.y2cc{bottom:141.765440pt;}
.y26c{bottom:142.160000pt;}
.y2fe{bottom:142.240000pt;}
.y1a1{bottom:143.200000pt;}
.y43c{bottom:143.917760pt;}
.y29d{bottom:143.920000pt;}
.y3b7{bottom:144.240000pt;}
.y159{bottom:146.015120pt;}
.y35b{bottom:146.720000pt;}
.y207{bottom:147.040000pt;}
.y321{bottom:147.360000pt;}
.y119{bottom:148.575760pt;}
.y1c1{bottom:151.120000pt;}
.y183{bottom:151.280000pt;}
.y25b{bottom:151.520000pt;}
.y1d3{bottom:151.680000pt;}
.y2a9{bottom:154.560000pt;}
.y221{bottom:155.200000pt;}
.y328{bottom:155.280000pt;}
.y35d{bottom:155.680000pt;}
.y412{bottom:156.800000pt;}
.y395{bottom:158.320000pt;}
.y42c{bottom:158.720000pt;}
.y46b{bottom:160.240000pt;}
.y2cb{bottom:162.320000pt;}
.y3ad{bottom:162.880000pt;}
.y1a0{bottom:163.760000pt;}
.y13d{bottom:163.767680pt;}
.y206{bottom:164.960000pt;}
.y158{bottom:165.369200pt;}
.y46d{bottom:165.680000pt;}
.y26b{bottom:165.778000pt;}
.y29c{bottom:166.640000pt;}
.y78{bottom:167.841520pt;}
.y118{bottom:167.856640pt;}
.y235{bottom:168.000000pt;}
.y2fd{bottom:168.410160pt;}
.y330{bottom:169.040000pt;}
.y25a{bottom:169.440000pt;}
.y1d2{bottom:169.600000pt;}
.y3b4{bottom:170.800000pt;}
.y43b{bottom:172.480400pt;}
.y356{bottom:173.600000pt;}
.y372{bottom:174.080000pt;}
.y17f{bottom:176.800000pt;}
.y3e8{bottom:178.160000pt;}
.y38c{bottom:178.640000pt;}
.y42a{bottom:179.280000pt;}
.y378{bottom:182.000000pt;}
.y359{bottom:182.560000pt;}
.y205{bottom:182.880000pt;}
.y13c{bottom:183.048560pt;}
.y411{bottom:183.360000pt;}
.y19f{bottom:184.320000pt;}
.y29b{bottom:184.560000pt;}
.y157{bottom:184.650080pt;}
.y468{bottom:186.160000pt;}
.y32e{bottom:186.960000pt;}
.y117{bottom:187.210720pt;}
.y259{bottom:187.360000pt;}
.y2a8{bottom:187.680000pt;}
.y3b3{bottom:188.720000pt;}
.y2ca{bottom:189.680000pt;}
.y233{bottom:190.640000pt;}
.y374{bottom:190.960000pt;}
.y327{bottom:191.040000pt;}
.y35c{bottom:191.520000pt;}
.y17e{bottom:193.440000pt;}
.y3e7{bottom:196.080000pt;}
.y1d1{bottom:196.160000pt;}
.ye1{bottom:196.170080pt;}
.y77{bottom:196.404160pt;}
.y2fc{bottom:196.972800pt;}
.y180{bottom:197.680000pt;}
.y234{bottom:198.560000pt;}
.y280{bottom:199.597600pt;}
.y377{bottom:199.920000pt;}
.y43a{bottom:201.043040pt;}
.y410{bottom:201.280000pt;}
.y296{bottom:203.200000pt;}
.y156{bottom:204.004160pt;}
.y19e{bottom:204.960000pt;}
.y254{bottom:206.000000pt;}
.y3b2{bottom:206.640000pt;}
.y465{bottom:208.800000pt;}
.y371{bottom:208.880000pt;}
.y326{bottom:208.960000pt;}
.y204{bottom:209.440000pt;}
.y3e3{bottom:210.720000pt;}
.y297{bottom:211.120000pt;}
.y13b{bottom:213.045920pt;}
.y2c9{bottom:213.279760pt;}
.y258{bottom:213.920000pt;}
.y1d0{bottom:214.080000pt;}
.y116{bottom:214.485040pt;}
.ye0{bottom:215.450960pt;}
.y3ae{bottom:215.520000pt;}
.y467{bottom:216.800000pt;}
.y376{bottom:217.840000pt;}
.y3e6{bottom:218.640000pt;}
.y40f{bottom:219.200000pt;}
.y27f{bottom:220.240000pt;}
.y155{bottom:223.285040pt;}
.y3b1{bottom:224.480000pt;}
.y76{bottom:225.040000pt;}
.y19b{bottom:225.520000pt;}
.y2fb{bottom:225.535440pt;}
.y322{bottom:226.880000pt;}
.y203{bottom:227.360000pt;}
.y34e{bottom:228.080000pt;}
.y295{bottom:229.040000pt;}
.y2a7{bottom:229.440000pt;}
.y439{bottom:229.678880pt;}
.y257{bottom:231.840000pt;}
.y1cf{bottom:232.000000pt;}
.y13a{bottom:232.400000pt;}
.y115{bottom:233.839120pt;}
.y232{bottom:234.400000pt;}
.ydf{bottom:234.805040pt;}
.y375{bottom:235.760000pt;}
.y320{bottom:235.840000pt;}
.y355{bottom:236.000000pt;}
.y3e5{bottom:236.560000pt;}
.y40d{bottom:237.840000pt;}
.y27e{bottom:240.800000pt;}
.y154{bottom:242.639120pt;}
.y456{bottom:244.640000pt;}
.y351{bottom:244.960000pt;}
.y202{bottom:245.200000pt;}
.y17d{bottom:245.680000pt;}
.y19a{bottom:246.080000pt;}
.y2fa{bottom:246.177840pt;}
.y2a6{bottom:248.960000pt;}
.y1ce{bottom:249.920000pt;}
.y75{bottom:250.960000pt;}
.y139{bottom:251.680000pt;}
.y231{bottom:252.240000pt;}
.y114{bottom:253.120000pt;}
.y354{bottom:253.920000pt;}
.yde{bottom:254.085920pt;}
.y36f{bottom:254.400000pt;}
.y3e2{bottom:254.480000pt;}
.y438{bottom:258.241520pt;}
.y3b0{bottom:260.320000pt;}
.y153{bottom:261.928560pt;}
.y370{bottom:262.240000pt;}
.y325{bottom:262.640000pt;}
.y34d{bottom:262.800000pt;}
.y350{bottom:262.880000pt;}
.y201{bottom:263.120000pt;}
.y40e{bottom:263.600000pt;}
.y17b{bottom:264.720000pt;}
.y199{bottom:266.720000pt;}
.y2f9{bottom:266.732400pt;}
.y2e3{bottom:267.374560pt;}
.y256{bottom:267.600000pt;}
.y1cd{bottom:267.840000pt;}
.y74{bottom:268.800000pt;}
.y30{bottom:270.073520pt;}
.y22b{bottom:270.880000pt;}
.y138{bottom:271.064000pt;}
.y353{bottom:271.840000pt;}
.y3e4{bottom:272.400000pt;}
.ydd{bottom:273.440000pt;}
.y294{bottom:274.400000pt;}
.y27d{bottom:278.080000pt;}
.y3af{bottom:278.240000pt;}
.y230{bottom:278.800000pt;}
.y2f{bottom:278.960000pt;}
.y17c{bottom:281.040000pt;}
.y40c{bottom:281.520000pt;}
.y113{bottom:285.040000pt;}
.y255{bottom:285.520000pt;}
.y1cc{bottom:285.680000pt;}
.y73{bottom:286.720000pt;}
.y437{bottom:286.804160pt;}
.y2e2{bottom:288.016960pt;}
.y36d{bottom:289.120000pt;}
.y352{bottom:289.680000pt;}
.y152{bottom:291.925920pt;}
.y293{bottom:292.320000pt;}
.ydc{bottom:292.732720pt;}
.y2f8{bottom:295.368240pt;}
.y22f{bottom:296.720000pt;}
.y198{bottom:297.280000pt;}
.y324{bottom:298.480000pt;}
.y27c{bottom:298.640000pt;}
.y2bc{bottom:300.649200pt;}
.y137{bottom:300.988160pt;}
.yf4{bottom:302.104960pt;}
.y1cb{bottom:303.600000pt;}
.y72{bottom:304.640000pt;}
.y3ac{bottom:304.800000pt;}
.y28d{bottom:305.600000pt;}
.y200{bottom:307.600000pt;}
.y40b{bottom:308.080000pt;}
.y344{bottom:308.320000pt;}
.y179{bottom:308.400000pt;}
.y2e1{bottom:308.571520pt;}
.y3d7{bottom:308.960000pt;}
.y151{bottom:311.280000pt;}
.y292{bottom:314.160000pt;}
.y22e{bottom:314.640000pt;}
.y436{bottom:315.440000pt;}
.y36e{bottom:316.000000pt;}
.y34c{bottom:316.240000pt;}
.y112{bottom:316.318240pt;}
.y4e{bottom:316.320000pt;}
.y323{bottom:316.400000pt;}
.y3e1{bottom:316.800000pt;}
.y2e{bottom:317.200320pt;}
.y2bb{bottom:319.930080pt;}
.y253{bottom:321.360000pt;}
.y178{bottom:321.440000pt;}
.y1ca{bottom:321.520000pt;}
.y71{bottom:322.560000pt;}
.ydb{bottom:322.730080pt;}
.y2f7{bottom:324.648240pt;}
.y1ff{bottom:325.520000pt;}
.y2d{bottom:326.160000pt;}
.y2e0{bottom:329.213920pt;}
.y197{bottom:329.280000pt;}
.yf3{bottom:330.184480pt;}
.y136{bottom:330.985520pt;}
.y22d{bottom:332.560000pt;}
.y40a{bottom:334.640000pt;}
.y3e0{bottom:334.720000pt;}
.y31e{bottom:335.040000pt;}
.y27b{bottom:335.920000pt;}
.y3ab{bottom:336.800000pt;}
.y291{bottom:336.880000pt;}
.y429{bottom:338.080000pt;}
.y252{bottom:339.200000pt;}
.y2ba{bottom:339.284160pt;}
.y1c0{bottom:340.160000pt;}
.y70{bottom:340.480000pt;}
.yda{bottom:342.010960pt;}
.y36c{bottom:342.560000pt;}
.y31f{bottom:342.960000pt;}
.y1fe{bottom:343.440000pt;}
.y3db{bottom:343.680000pt;}
.y111{bottom:344.324560pt;}
.y150{bottom:344.400000pt;}
.y2f6{bottom:345.363840pt;}
.y12a{bottom:346.400000pt;}
.y1c9{bottom:348.080000pt;}
.y2df{bottom:349.768480pt;}
.y135{bottom:350.339600pt;}
.y22c{bottom:350.480000pt;}
.y4d{bottom:351.200000pt;}
.y34b{bottom:352.080000pt;}
.ybe{bottom:352.518640pt;}
.y3df{bottom:352.640000pt;}
.y435{bottom:352.720000pt;}
.y196{bottom:355.368480pt;}
.y464{bottom:356.321920pt;}
.y24c{bottom:357.920000pt;}
.y6f{bottom:358.320000pt;}
.yf2{bottom:358.337200pt;}
.y2b9{bottom:358.565040pt;}
.y290{bottom:359.520000pt;}
.y3aa{bottom:360.240000pt;}
.y31d{bottom:360.880000pt;}
.y1fd{bottom:361.280000pt;}
.yd9{bottom:361.365040pt;}
.y3da{bottom:361.600000pt;}
.y110{bottom:363.766480pt;}
.y8a{bottom:363.840000pt;}
.y2c{bottom:364.320000pt;}
.y251{bottom:365.760000pt;}
.y1c8{bottom:366.000000pt;}
.y409{bottom:366.640000pt;}
.y134{bottom:369.620480pt;}
.y346{bottom:370.000000pt;}
.y2de{bottom:370.323040pt;}
.y3d6{bottom:370.560000pt;}
.y434{bottom:373.280000pt;}
.y129{bottom:373.680000pt;}
.y463{bottom:374.241280pt;}
.y36b{bottom:374.560000pt;}
.y2f5{bottom:374.643840pt;}
.y177{bottom:375.360000pt;}
.y27a{bottom:376.000000pt;}
.y195{bottom:376.010880pt;}
.y6e{bottom:376.240000pt;}
.y2b8{bottom:377.919120pt;}
.y4c{bottom:378.240000pt;}
.y31c{bottom:378.800000pt;}
.y1fc{bottom:379.200000pt;}
.y14f{bottom:379.363440pt;}
.y3d9{bottom:379.520000pt;}
.yd8{bottom:380.645920pt;}
.ybd{bottom:381.081280pt;}
.y28f{bottom:382.240000pt;}
.y3a9{bottom:382.800000pt;}
.y250{bottom:383.680000pt;}
.y1c7{bottom:383.920000pt;}
.y22a{bottom:386.240000pt;}
.yf1{bottom:386.416720pt;}
.y319{bottom:387.680000pt;}
.y343{bottom:387.840000pt;}
.y34a{bottom:387.920000pt;}
.y3de{bottom:388.480000pt;}
.y2dd{bottom:390.965440pt;}
.y10f{bottom:391.846000pt;}
.y462{bottom:392.160640pt;}
.y2b{bottom:393.593520pt;}
.y433{bottom:393.840000pt;}
.y6d{bottom:394.160000pt;}
.y408{bottom:394.165040pt;}
.y175{bottom:394.320000pt;}
.y2f4{bottom:395.198400pt;}
.y194{bottom:396.565440pt;}
.y31b{bottom:396.640000pt;}
.y133{bottom:396.982640pt;}
.y1fb{bottom:397.120000pt;}
.y2b7{bottom:397.200000pt;}
.y128{bottom:397.285280pt;}
.yd7{bottom:400.000000pt;}
.y14e{bottom:400.005840pt;}
.y28e{bottom:400.160000pt;}
.y3a8{bottom:400.720000pt;}
.y89{bottom:401.120000pt;}
.y24f{bottom:401.600000pt;}
.ybc{bottom:401.635840pt;}
.y1c6{bottom:401.760000pt;}
.y2a{bottom:402.480000pt;}
.y174{bottom:402.880000pt;}
.y176{bottom:403.360000pt;}
.y36a{bottom:404.000000pt;}
.y225{bottom:404.880000pt;}
.y349{bottom:405.760000pt;}
.y3dd{bottom:406.400000pt;}
.y4b{bottom:408.320000pt;}
.y461{bottom:410.080000pt;}
.y2dc{bottom:411.520000pt;}
.y6c{bottom:412.080000pt;}
.y407{bottom:413.519120pt;}
.yf0{bottom:414.423040pt;}
.y431{bottom:414.480000pt;}
.y31a{bottom:414.560000pt;}
.y1fa{bottom:415.040000pt;}
.y2f3{bottom:415.840800pt;}
.y132{bottom:416.336720pt;}
.y279{bottom:416.400000pt;}
.y193{bottom:417.120000pt;}
.y229{bottom:418.240000pt;}
.y3a5{bottom:418.560000pt;}
.y24e{bottom:419.520000pt;}
.y1c5{bottom:419.680000pt;}
.y10e{bottom:419.925520pt;}
.y14d{bottom:420.560400pt;}
.ybb{bottom:422.278240pt;}
.y348{bottom:423.680000pt;}
.y3dc{bottom:424.240000pt;}
.y2b6{bottom:424.560000pt;}
.y28c{bottom:426.720000pt;}
.y6b{bottom:430.000000pt;}
.y4a{bottom:431.440000pt;}
.y406{bottom:432.800000pt;}
.y1f9{bottom:432.960000pt;}
.yd6{bottom:433.120000pt;}
.yef{bottom:433.777120pt;}
.y227{bottom:434.720000pt;}
.y430{bottom:435.040000pt;}
.y8{bottom:435.280000pt;}
.y2f2{bottom:436.395360pt;}
.y3a3{bottom:436.480000pt;}
.y369{bottom:436.490880pt;}
.y170{bottom:437.440000pt;}
.y1c4{bottom:437.600000pt;}
.y228{bottom:437.760000pt;}
.y88{bottom:438.320000pt;}
.y2db{bottom:438.880000pt;}
.y29{bottom:440.720000pt;}
.y14c{bottom:441.202800pt;}
.yba{bottom:442.832800pt;}
.y3c9{bottom:442.880000pt;}
.y131{bottom:444.416240pt;}
.y192{bottom:444.480000pt;}
.y173{bottom:445.600000pt;}
.y45f{bottom:445.841280pt;}
.y6a{bottom:447.840000pt;}
.y10d{bottom:448.005040pt;}
.y2b5{bottom:448.183760pt;}
.y28b{bottom:449.360000pt;}
.y3d5{bottom:450.800000pt;}
.y1f7{bottom:451.600000pt;}
.y171{bottom:452.640000pt;}
.y7{bottom:452.720000pt;}
.yee{bottom:453.058000pt;}
.y49{bottom:453.360000pt;}
.y3a4{bottom:454.400000pt;}
.y278{bottom:454.960000pt;}
.y220{bottom:455.120000pt;}
.y1c3{bottom:455.520000pt;}
.y42e{bottom:455.600000pt;}
.y368{bottom:457.045440pt;}
.y318{bottom:459.040000pt;}
.y1f8{bottom:459.520000pt;}
.y3ce{bottom:459.760000pt;}
.y2da{bottom:462.493280pt;}
.yb9{bottom:463.475200pt;}
.y45e{bottom:463.760640pt;}
.y130{bottom:463.770320pt;}
.y2f1{bottom:464.958000pt;}
.y405{bottom:465.920000pt;}
.y191{bottom:466.658240pt;}
.yd5{bottom:466.885040pt;}
.y10c{bottom:467.285920pt;}
.y3d4{bottom:468.720000pt;}
.y287{bottom:469.680000pt;}
.y14b{bottom:469.765440pt;}
.y28{bottom:469.920000pt;}
.y28a{bottom:472.080000pt;}
.y3a7{bottom:472.320000pt;}
.yed{bottom:472.412080pt;}
.y21f{bottom:473.040000pt;}
.ya2{bottom:473.098480pt;}
.y24b{bottom:473.200000pt;}
.y1c2{bottom:473.440000pt;}
.y87{bottom:475.600000pt;}
.y48{bottom:475.680000pt;}
.y42d{bottom:476.240000pt;}
.y367{bottom:477.600000pt;}
.y33d{bottom:478.160000pt;}
.y6{bottom:480.240000pt;}
.y45d{bottom:481.680000pt;}
.yb8{bottom:484.029760pt;}
.y2f0{bottom:485.600400pt;}
.y342{bottom:486.080000pt;}
.yd4{bottom:486.165920pt;}
.y10b{bottom:486.640000pt;}
.y277{bottom:486.960000pt;}
.y69{bottom:487.520000pt;}
.y226{bottom:488.400000pt;}
.y16d{bottom:488.800000pt;}
.y3a6{bottom:490.240000pt;}
.y14a{bottom:490.320000pt;}
.y21e{bottom:490.960000pt;}
.y317{bottom:491.040000pt;}
.y24a{bottom:491.120000pt;}
.y1bf{bottom:491.280000pt;}
.yec{bottom:491.692960pt;}
.y12f{bottom:494.485040pt;}
.y289{bottom:494.720000pt;}
.y16e{bottom:494.800000pt;}
.y42b{bottom:496.800000pt;}
.y27{bottom:497.760000pt;}
.y47{bottom:498.800000pt;}
.y45c{bottom:499.593840pt;}
.y404{bottom:500.960000pt;}
.ya1{bottom:501.734320pt;}
.y341{bottom:504.000000pt;}
.y3d1{bottom:504.560000pt;}
.yb7{bottom:504.584320pt;}
.yd3{bottom:505.520000pt;}
.y2ef{bottom:506.154960pt;}
.y21d{bottom:508.880000pt;}
.y1b6{bottom:510.000000pt;}
.y366{bottom:510.800000pt;}
.y288{bottom:512.640000pt;}
.y86{bottom:512.880000pt;}
.y1f6{bottom:513.200000pt;}
.y12e{bottom:513.765920pt;}
.y316{bottom:514.480000pt;}
.y276{bottom:514.490960pt;}
.y3a2{bottom:516.800000pt;}
.yb{bottom:517.280000pt;}
.y45b{bottom:517.440000pt;}
.y149{bottom:517.680000pt;}
.y1be{bottom:517.840000pt;}
.y10a{bottom:518.560000pt;}
.yeb{bottom:519.055120pt;}
.y2c8{bottom:519.285040pt;}
.y46{bottom:520.640000pt;}
.y33f{bottom:521.840000pt;}
.ya0{bottom:522.288880pt;}
.y3d0{bottom:522.480000pt;}
.y3fe{bottom:523.600000pt;}
.y39f{bottom:525.680000pt;}
.y21c{bottom:526.800000pt;}
.y16b{bottom:527.760000pt;}
.y68{bottom:530.400000pt;}
.y1f5{bottom:531.120000pt;}
.y403{bottom:531.520000pt;}
.y315{bottom:532.400000pt;}
.y12d{bottom:533.120000pt;}
.yb6{bottom:533.220160pt;}
.y275{bottom:533.771840pt;}
.y2ee{bottom:534.717600pt;}
.y45a{bottom:535.360000pt;}
.yd2{bottom:535.525920pt;}
.y249{bottom:535.600000pt;}
.y1bd{bottom:535.760000pt;}
.y428{bottom:538.000000pt;}
.y16a{bottom:538.080000pt;}
.yea{bottom:538.336000pt;}
.y2c7{bottom:538.565920pt;}
.y286{bottom:539.200000pt;}
.y340{bottom:539.760000pt;}
.y3cf{bottom:540.320000pt;}
.y148{bottom:541.289040pt;}
.y26{bottom:541.760000pt;}
.y9f{bottom:542.843440pt;}
.y45{bottom:543.040000pt;}
.y39e{bottom:543.600000pt;}
.y365{bottom:544.480000pt;}
.y21b{bottom:544.640000pt;}
.y33c{bottom:548.720000pt;}
.y1f4{bottom:549.040000pt;}
.y3cb{bottom:549.280000pt;}
.y402{bottom:549.440000pt;}
.y109{bottom:549.773360pt;}
.y85{bottom:550.080000pt;}
.y314{bottom:550.240000pt;}
.y39c{bottom:552.560000pt;}
.y459{bottom:553.281280pt;}
.y248{bottom:553.520000pt;}
.y1bc{bottom:553.680000pt;}
.yb5{bottom:553.862560pt;}
.yd1{bottom:554.884400pt;}
.y2ed{bottom:555.360000pt;}
.y67{bottom:556.320640pt;}
.y33e{bottom:557.680000pt;}
.ye9{bottom:557.690080pt;}
.y2c6{bottom:557.925840pt;}
.y3d3{bottom:558.240000pt;}
.ya{bottom:560.080000pt;}
.y12c{bottom:560.400000pt;}
.y9e{bottom:563.485840pt;}
.y274{bottom:563.769200pt;}
.y25{bottom:565.600000pt;}
.y44{bottom:566.560000pt;}
.y364{bottom:566.721040pt;}
.y1f3{bottom:566.960000pt;}
.y401{bottom:567.360000pt;}
.y108{bottom:569.127440pt;}
.y3a1{bottom:570.480000pt;}
.y21a{bottom:571.200000pt;}
.y458{bottom:571.200640pt;}
.y247{bottom:571.440000pt;}
.y1bb{bottom:571.600000pt;}
.y66{bottom:574.240000pt;}
.y427{bottom:575.280000pt;}
.y3d2{bottom:576.160000pt;}
.ye8{bottom:576.970960pt;}
.y39d{bottom:579.440000pt;}
.y313{bottom:582.240000pt;}
.y273{bottom:583.050080pt;}
.yb4{bottom:583.142560pt;}
.y12b{bottom:584.000000pt;}
.y9d{bottom:584.040400pt;}
.y1f2{bottom:584.800000pt;}
.y169{bottom:585.200000pt;}
.yd0{bottom:585.599120pt;}
.y2ec{bottom:585.920000pt;}
.y2c5{bottom:586.488480pt;}
.y84{bottom:587.360000pt;}
.y3a0{bottom:588.400000pt;}
.y457{bottom:589.120000pt;}
.y246{bottom:589.280000pt;}
.y1ba{bottom:589.520000pt;}
.y43{bottom:590.800000pt;}
.y65{bottom:592.080000pt;}
.y2a4{bottom:592.160000pt;}
.y3c5{bottom:594.800000pt;}
.y24{bottom:594.880000pt;}
.ye7{bottom:596.325040pt;}
.y107{bottom:597.206960pt;}
.y285{bottom:598.720000pt;}
.y26a{bottom:601.771840pt;}
.y272{bottom:602.404160pt;}
.y3c8{bottom:602.720000pt;}
.y400{bottom:603.120000pt;}
.y219{bottom:603.200000pt;}
.y1ed{bottom:603.440000pt;}
.yb3{bottom:603.784960pt;}
.y2eb{bottom:603.840000pt;}
.y9c{bottom:604.594960pt;}
.ycf{bottom:604.880000pt;}
.y2a3{bottom:606.800000pt;}
.y38b{bottom:607.040000pt;}
.y2c4{bottom:607.043040pt;}
.y245{bottom:607.200000pt;}
.y1b9{bottom:607.360000pt;}
.y311{bottom:608.720000pt;}
.y64{bottom:610.000000pt;}
.y1f1{bottom:611.360000pt;}
.y451{bottom:611.760000pt;}
.y426{bottom:612.510400pt;}
.y281{bottom:612.720000pt;}
.y393{bottom:614.960000pt;}
.ye6{bottom:615.605920pt;}
.y312{bottom:616.640000pt;}
.y168{bottom:617.200000pt;}
.y284{bottom:619.920000pt;}
.y3c6{bottom:620.640000pt;}
.y42{bottom:620.880000pt;}
.y3ff{bottom:621.040000pt;}
.y269{bottom:621.052720pt;}
.y271{bottom:621.685040pt;}
.y2ea{bottom:621.760000pt;}
.y2a5{bottom:622.240000pt;}
.y2a2{bottom:622.248240pt;}
.y23{bottom:622.720000pt;}
.yf{bottom:622.800000pt;}
.y455{bottom:623.614400pt;}
.yce{bottom:624.245920pt;}
.y83{bottom:624.640000pt;}
.y244{bottom:625.120000pt;}
.y9b{bottom:625.237360pt;}
.y1b8{bottom:625.280000pt;}
.y106{bottom:625.286480pt;}
.y2c3{bottom:627.685440pt;}
.y63{bottom:627.920000pt;}
.y1f0{bottom:629.280000pt;}
.y218{bottom:629.382400pt;}
.y338{bottom:630.080000pt;}
.yb2{bottom:633.138160pt;}
.y283{bottom:634.560000pt;}
.ye5{bottom:634.960000pt;}
.y33b{bottom:637.920000pt;}
.y2e9{bottom:639.680000pt;}
.y268{bottom:640.406800pt;}
.y270{bottom:641.039120pt;}
.y425{bottom:641.146240pt;}
.y243{bottom:643.040000pt;}
.y167{bottom:643.360000pt;}
.y30f{bottom:643.440000pt;}
.ycd{bottom:643.610320pt;}
.y41{bottom:644.400000pt;}
.y62{bottom:645.840000pt;}
.y1ee{bottom:647.200000pt;}
.y3c3{bottom:647.440000pt;}
.y2c2{bottom:648.240000pt;}
.y454{bottom:649.527200pt;}
.y217{bottom:649.936960pt;}
.y30e{bottom:652.400000pt;}
.y105{bottom:653.439200pt;}
.y9a{bottom:653.800000pt;}
.y33a{bottom:655.840000pt;}
.y3c7{bottom:656.480000pt;}
.y2e8{bottom:657.520000pt;}
.y3fc{bottom:657.600000pt;}
.y26f{bottom:660.320000pt;}
.y242{bottom:660.960000pt;}
.yb1{bottom:661.700800pt;}
.y82{bottom:661.840000pt;}
.y61{bottom:663.760000pt;}
.y166{bottom:663.920000pt;}
.y1ec{bottom:665.120000pt;}
.y3fd{bottom:665.520000pt;}
.y22{bottom:666.720000pt;}
.y40{bottom:667.920000pt;}
.ye4{bottom:668.080000pt;}
.y392{bottom:668.640000pt;}
.y1b5{bottom:669.760000pt;}
.y267{bottom:670.404160pt;}
.y216{bottom:670.491520pt;}
.y339{bottom:673.760000pt;}
.y3c4{bottom:674.320000pt;}
.ycc{bottom:674.325040pt;}
.y99{bottom:674.354560pt;}
.y453{bottom:675.440000pt;}
.y39b{bottom:675.840000pt;}
.y239{bottom:679.600000pt;}
.y104{bottom:681.445520pt;}
.y60{bottom:681.600000pt;}
.yb0{bottom:682.255360pt;}
.y1eb{bottom:683.040000pt;}
.y2be{bottom:683.600000pt;}
.y165{bottom:684.510640pt;}
.y391{bottom:686.560000pt;}
.y241{bottom:687.520000pt;}
.y26e{bottom:687.676000pt;}
.y1b4{bottom:687.680000pt;}
.y310{bottom:688.240000pt;}
.y266{bottom:689.685040pt;}
.y424{bottom:690.263440pt;}
.y2e7{bottom:690.805440pt;}
.y215{bottom:691.133920pt;}
.y337{bottom:691.680000pt;}
.y3f{bottom:692.160000pt;}
.ycb{bottom:693.605920pt;}
.y39a{bottom:693.759867pt;}
.y21{bottom:694.876800pt;}
.y98{bottom:694.996960pt;}
.y44f{bottom:698.080000pt;}
.y81{bottom:699.120000pt;}
.y5f{bottom:699.520000pt;}
.y2bd{bottom:700.400000pt;}
.y334{bottom:700.640000pt;}
.y103{bottom:700.799600pt;}
.y1ea{bottom:700.880000pt;}
.y3fb{bottom:701.360000pt;}
.y421{bottom:701.440000pt;}
.ye3{bottom:701.840000pt;}
.yaf{bottom:702.897760pt;}
.y164{bottom:705.153040pt;}
.y240{bottom:705.440000pt;}
.y1b3{bottom:705.600000pt;}
.y30b{bottom:706.880000pt;}
.y265{bottom:709.039120pt;}
.y390{bottom:709.280000pt;}
.y26d{bottom:709.360000pt;}
.y336{bottom:709.600000pt;}
.y3bd{bottom:710.880000pt;}
.y423{bottom:710.905840pt;}
.y2e6{bottom:711.360000pt;}
.y398{bottom:711.680000pt;}
.y214{bottom:711.688480pt;}
.yca{bottom:712.960000pt;}
.y30c{bottom:714.800000pt;}
.y450{bottom:716.000000pt;}
.y41f{bottom:716.160000pt;}
.y5e{bottom:717.440000pt;}
.y333{bottom:718.560000pt;}
.y3c2{bottom:718.800000pt;}
.y3fa{bottom:719.200000pt;}
.y1e7{bottom:719.600000pt;}
.y388{bottom:720.560000pt;}
.y3e{bottom:722.240000pt;}
.y1f{bottom:722.400000pt;}
.y23f{bottom:723.280000pt;}
.yae{bottom:723.452320pt;}
.y1b2{bottom:723.520000pt;}
.ye2{bottom:724.000000pt;}
.y420{bottom:724.080000pt;}
.y97{bottom:724.994320pt;}
.y163{bottom:725.707600pt;}
.y38f{bottom:727.200000pt;}
.y1e9{bottom:727.440000pt;}
.y335{bottom:727.520000pt;}
.y3f5{bottom:728.160000pt;}
.y264{bottom:728.320000pt;}
.y102{bottom:728.879120pt;}
.y397{bottom:729.520000pt;}
.y422{bottom:731.460400pt;}
.y213{bottom:732.243040pt;}
.yc9{bottom:732.248400pt;}
.y30a{bottom:732.720000pt;}
.y5d{bottom:735.360000pt;}
.y80{bottom:736.400000pt;}
.y3bf{bottom:736.720000pt;}
.y3f9{bottom:737.120000pt;}
.y44c{bottom:738.640000pt;}
.y2e5{bottom:740.560000pt;}
.y23e{bottom:741.200000pt;}
.y1b1{bottom:741.360000pt;}
.y96{bottom:744.275200pt;}
.y38e{bottom:745.040000pt;}
.y1e6{bottom:745.360000pt;}
.y3d{bottom:745.760000pt;}
.y162{bottom:746.350000pt;}
.y396{bottom:747.440000pt;}
.y101{bottom:748.160000pt;}
.y2d9{bottom:749.056640pt;}
.y20{bottom:749.835360pt;}
.y30d{bottom:750.640000pt;}
.yc8{bottom:751.690320pt;}
.yad{bottom:752.014960pt;}
.y2b4{bottom:752.183360pt;}
.y212{bottom:752.885440pt;}
.y5c{bottom:753.280000pt;}
.y3c0{bottom:754.640000pt;}
.y3f8{bottom:755.040000pt;}
.y2e4{bottom:756.000000pt;}
.y44e{bottom:757.520000pt;}
.y23d{bottom:759.120000pt;}
.y41e{bottom:759.840000pt;}
.y263{bottom:761.440000pt;}
.y1e5{bottom:763.280000pt;}
.y190{bottom:763.293920pt;}
.y95{bottom:763.629280pt;}
.y127{bottom:765.290960pt;}
.y394{bottom:765.360000pt;}
.y161{bottom:766.904560pt;}
.y38d{bottom:767.759867pt;}
.y1b0{bottom:767.920000pt;}
.y3c{bottom:768.880000pt;}
.y307{bottom:769.280000pt;}
.y2d8{bottom:769.611200pt;}
.y5b{bottom:771.120000pt;}
.y2b3{bottom:771.464240pt;}
.y3be{bottom:772.560000pt;}
.yac{bottom:772.657360pt;}
.y3f7{bottom:772.960000pt;}
.y211{bottom:773.440000pt;}
.y7f{bottom:773.680000pt;}
.y23c{bottom:777.040000pt;}
.y308{bottom:777.200000pt;}
.y41d{bottom:777.759867pt;}
.y100{bottom:780.160000pt;}
.y1e4{bottom:781.200000pt;}
.yc7{bottom:782.405040pt;}
.y94{bottom:782.910160pt;}
.y18f{bottom:783.848480pt;}
.y126{bottom:784.645040pt;}
.y1af{bottom:785.840000pt;}
.y1e{bottom:787.600000pt;}
.y5a{bottom:789.040000pt;}
.y2d7{bottom:790.253600pt;}
.y3c1{bottom:790.400000pt;}
.y3b{bottom:790.800000pt;}
.y2b2{bottom:790.818320pt;}
.y3f6{bottom:790.880000pt;}
.yab{bottom:793.211920pt;}
.y23a{bottom:794.960000pt;}
.y306{bottom:795.120000pt;}
.y147{bottom:795.293040pt;}
.y160{bottom:795.540400pt;}
.y44b{bottom:798.080000pt;}
.y1e3{bottom:799.120000pt;}
.y32d{bottom:799.840000pt;}
.yc6{bottom:801.685920pt;}
.y93{bottom:802.264240pt;}
.y38a{bottom:803.520000pt;}
.y1ae{bottom:803.760000pt;}
.y125{bottom:803.925920pt;}
.y41c{bottom:804.320000pt;}
.y18e{bottom:804.490880pt;}
.y262{bottom:805.120000pt;}
.y210{bottom:806.560000pt;}
.y59{bottom:806.960000pt;}
.y332{bottom:807.760000pt;}
.y3ec{bottom:809.520000pt;}
.y2b1{bottom:810.099200pt;}
.y7e{bottom:810.880000pt;}
.yff{bottom:811.290240pt;}
.y2c1{bottom:811.600000pt;}
.y3a{bottom:812.640000pt;}
.y309{bottom:813.040000pt;}
.yaa{bottom:813.854320pt;}
.y146{bottom:814.573920pt;}
.y1e2{bottom:817.040000pt;}
.y3f4{bottom:817.360000pt;}
.y2d6{bottom:820.250960pt;}
.y447{bottom:820.720000pt;}
.yc5{bottom:821.039120pt;}
.y92{bottom:821.545120pt;}
.y1ad{bottom:821.680000pt;}
.y41b{bottom:822.240000pt;}
.y124{bottom:823.280000pt;}
.y58{bottom:824.880000pt;}
.y15f{bottom:824.893600pt;}
.y18d{bottom:825.045440pt;}
.y1d{bottom:825.440000pt;}
.y331{bottom:825.680000pt;}
.y389{bottom:826.240000pt;}
.y2c0{bottom:828.400000pt;}
.yfe{bottom:830.644320pt;}
.y238{bottom:830.720000pt;}
.y305{bottom:831.680000pt;}
.y145{bottom:833.928000pt;}
.ya9{bottom:834.408880pt;}
.y39{bottom:834.560000pt;}
.y3f3{bottom:835.280000pt;}
.y1db{bottom:835.680000pt;}
.y449{bottom:838.560000pt;}
.y2b0{bottom:838.735040pt;}
.y2d5{bottom:839.531840pt;}
.y1ac{bottom:839.600000pt;}
.y41a{bottom:840.160000pt;}
.yc4{bottom:840.320000pt;}
.y91{bottom:840.899200pt;}
.y261{bottom:842.416960pt;}
.y57{bottom:842.800000pt;}
.y1e1{bottom:843.600000pt;}
.y3ee{bottom:844.240000pt;}
.y383{bottom:844.880000pt;}
.y18c{bottom:845.600000pt;}
.y7d{bottom:848.160000pt;}
.y2bf{bottom:852.000000pt;}
.y387{bottom:852.800000pt;}
.y3f2{bottom:853.200000pt;}
.y15e{bottom:854.246800pt;}
.ya8{bottom:854.963440pt;}
.y123{bottom:856.320000pt;}
.y38{bottom:856.880000pt;}
.y237{bottom:857.280000pt;}
.y304{bottom:857.440000pt;}
.y1ab{bottom:857.520000pt;}
.yfd{bottom:858.006480pt;}
.y2d4{bottom:858.885920pt;}
.y2af{bottom:859.289600pt;}
.yc3{bottom:859.690320pt;}
.y90{bottom:860.180080pt;}
.y56{bottom:860.640000pt;}
.y144{bottom:861.202320pt;}
.y441{bottom:861.280000pt;}
.y20f{bottom:861.520000pt;}
.y3ed{bottom:862.160000pt;}
.y3b8{bottom:862.800000pt;}
.y260{bottom:862.971520pt;}
.y1c{bottom:863.200000pt;}
.y18b{bottom:866.251280pt;}
.y303{bottom:866.400000pt;}
.y419{bottom:866.720000pt;}
.y386{bottom:870.720000pt;}
.y446{bottom:873.120000pt;}
.y1aa{bottom:875.360000pt;}
.ya7{bottom:875.605840pt;}
.y2d3{bottom:878.166800pt;}
.y55{bottom:878.560000pt;}
.yc2{bottom:879.044400pt;}
.y20e{bottom:879.360000pt;}
.y8f{bottom:879.534160pt;}
.y3bc{bottom:879.680000pt;}
.y2ae{bottom:879.844160pt;}
.y37{bottom:880.480000pt;}
.y143{bottom:880.644240pt;}
.y15d{bottom:883.600000pt;}
.y25f{bottom:883.613920pt;}
.y418{bottom:884.640000pt;}
.y7c{bottom:885.440000pt;}
.yfc{bottom:886.086000pt;}
.y363{bottom:888.640000pt;}
.y3f1{bottom:889.040000pt;}
.y236{bottom:889.280000pt;}
.y122{bottom:890.101680pt;}
.y1a9{bottom:893.280000pt;}
.y18a{bottom:894.813920pt;}
.ya6{bottom:896.160400pt;}
.y54{bottom:896.480000pt;}
.y1de{bottom:897.280000pt;}
.y382{bottom:897.520000pt;}
.y2d2{bottom:897.520880pt;}
.y3bb{bottom:897.600000pt;}
.y3eb{bottom:898.000000pt;}
.y8e{bottom:898.815040pt;}
.y1b{bottom:900.960000pt;}
.y417{bottom:902.560000pt;}
.y361{bottom:903.280000pt;}
.y36{bottom:904.000000pt;}
.y15c{bottom:904.160000pt;}
.y25e{bottom:904.168480pt;}
.y3b9{bottom:906.560000pt;}
.y3f0{bottom:906.960000pt;}
.y2ad{bottom:908.480000pt;}
.y142{bottom:908.650560pt;}
.y444{bottom:908.960640pt;}
.y121{bottom:909.455760pt;}
.yc1{bottom:909.759120pt;}
.y224{bottom:911.200000pt;}
.y1a4{bottom:911.920000pt;}
.yfb{bottom:914.165520pt;}
.y53{bottom:914.400000pt;}
.y1dd{bottom:915.200000pt;}
.y189{bottom:915.368480pt;}
.y1a8{bottom:919.840000pt;}
.y7b{bottom:922.640000pt;}
.y385{bottom:924.400000pt;}
.ya5{bottom:924.723040pt;}
.y443{bottom:926.880000pt;}
.y2d1{bottom:927.445040pt;}
.y8d{bottom:927.450880pt;}
.y141{bottom:928.004640pt;}
.y35{bottom:928.240000pt;}
.y120{bottom:928.736640pt;}
.yc0{bottom:929.040000pt;}
.y362{bottom:929.120000pt;}
.y52{bottom:932.320000pt;}
.y20d{bottom:933.120000pt;}
.y3ba{bottom:933.360000pt;}
.yfa{bottom:933.519600pt;}
.y188{bottom:936.010880pt;}
.y1a7{bottom:937.760000pt;}
.y2ac{bottom:940.400000pt;}
.y1a{bottom:940.800000pt;}
.y384{bottom:942.320000pt;}
.ya4{bottom:945.365440pt;}
.y302{bottom:946.720000pt;}
.y2d0{bottom:946.799120pt;}
.y35f{bottom:946.960000pt;}
.y140{bottom:947.358720pt;}
.y8c{bottom:948.005440pt;}
.y11f{bottom:948.090720pt;}
.y51{bottom:950.160000pt;}
.y1da{bottom:950.960000pt;}
.y3ea{bottom:951.360000pt;}
.y20a{bottom:951.760000pt;}
.y1a6{bottom:955.680000pt;}
.y187{bottom:956.565440pt;}
.y34{bottom:958.960000pt;}
.y20c{bottom:959.680000pt;}
.y7a{bottom:959.920000pt;}
.y381{bottom:960.960000pt;}
.yf9{bottom:961.599120pt;}
.ybf{bottom:962.160000pt;}
.y300{bottom:964.640000pt;}
.y360{bottom:964.880000pt;}
.y415{bottom:965.680000pt;}
.ya3{bottom:965.920000pt;}
.y2cf{bottom:966.083280pt;}
.y50{bottom:968.080000pt;}
.y8b{bottom:968.560000pt;}
.y32f{bottom:968.880000pt;}
.y1d6{bottom:969.680000pt;}
.y440{bottom:970.000000pt;}
.y19{bottom:972.160000pt;}
.y2a1{bottom:972.890880pt;}
.y416{bottom:973.520000pt;}
.y223{bottom:973.600000pt;}
.y11e{bottom:975.365040pt;}
.y186{bottom:977.120000pt;}
.y1d9{bottom:977.520000pt;}
.y20b{bottom:977.600000pt;}
.yf8{bottom:980.880000pt;}
.y3e9{bottom:983.360000pt;}
.y2ce{bottom:985.437360pt;}
.y5{bottom:985.445440pt;}
.y1a3{bottom:991.440000pt;}
.y2a0{bottom:993.445440pt;}
.y11d{bottom:994.719120pt;}
.y1d8{bottom:995.440000pt;}
.y18{bottom:1000.080000pt;}
.y33{bottom:1002.320000pt;}
.y79{bottom:1002.640000pt;}
.y4{bottom:1006.000000pt;}
.y4f{bottom:1007.680000pt;}
.y1a2{bottom:1009.360000pt;}
.y185{bottom:1010.320000pt;}
.yf7{bottom:1012.880000pt;}
.y11c{bottom:1014.000000pt;}
.y469{bottom:1021.120000pt;}
.y46a{bottom:1034.720000pt;}
.y1{bottom:1061.280000pt;}
.h4e{height:3.166875pt;}
.h5d{height:13.120000pt;}
.h5c{height:19.680000pt;}
.h58{height:19.758667pt;}
.h5b{height:19.760000pt;}
.h9{height:26.160000pt;}
.h1e{height:28.501875pt;}
.h5e{height:30.640000pt;}
.h57{height:30.641333pt;}
.h5a{height:30.720000pt;}
.ha{height:30.901719pt;}
.h1b{height:33.375000pt;}
.hb{height:35.136651pt;}
.h20{height:38.000000pt;}
.h4f{height:38.801406pt;}
.h27{height:38.960000pt;}
.h59{height:39.585938pt;}
.h41{height:39.760000pt;}
.h4d{height:39.761333pt;}
.h47{height:39.840000pt;}
.h46{height:39.888281pt;}
.h52{height:39.920000pt;}
.h2{height:40.717500pt;}
.h53{height:40.880000pt;}
.h51{height:41.775469pt;}
.h35{height:42.032812pt;}
.h23{height:42.160000pt;}
.h3{height:42.518906pt;}
.h25{height:42.720000pt;}
.h1c{height:45.656250pt;}
.h4{height:48.294844pt;}
.h1f{height:48.560000pt;}
.h39{height:48.600859pt;}
.h22{height:50.321333pt;}
.h45{height:51.801406pt;}
.h19{height:52.275751pt;}
.h1d{height:52.282791pt;}
.h1a{height:52.299431pt;}
.h3a{height:52.303911pt;}
.h18{height:52.317031pt;}
.h17{height:52.320551pt;}
.h14{height:52.778690pt;}
.h5{height:52.781250pt;}
.h16{height:53.189531pt;}
.h13{height:54.136094pt;}
.h21{height:56.317564pt;}
.h2d{height:57.678667pt;}
.h24{height:58.000000pt;}
.h26{height:60.000000pt;}
.h12{height:60.951094pt;}
.h3c{height:61.680000pt;}
.h3d{height:61.758667pt;}
.h6{height:68.160000pt;}
.h2c{height:75.600000pt;}
.h15{height:76.017656pt;}
.h40{height:76.454844pt;}
.h11{height:78.064826pt;}
.h10{height:78.650426pt;}
.h33{height:79.600000pt;}
.h8{height:82.560000pt;}
.hc{height:83.779219pt;}
.he{height:83.840764pt;}
.hf{height:84.133564pt;}
.h3b{height:84.134844pt;}
.hd{height:84.426364pt;}
.h54{height:85.680000pt;}
.h50{height:87.600000pt;}
.h30{height:93.520000pt;}
.h3e{height:97.518667pt;}
.h44{height:97.520000pt;}
.h38{height:107.120000pt;}
.h7{height:110.048906pt;}
.h2f{height:115.360000pt;}
.h29{height:115.440000pt;}
.h4b{height:133.278667pt;}
.h2e{height:133.280000pt;}
.h32{height:133.361333pt;}
.h56{height:134.960000pt;}
.h2a{height:151.200000pt;}
.h4a{height:151.278667pt;}
.h49{height:151.280000pt;}
.h28{height:160.160000pt;}
.h2b{height:169.120000pt;}
.h34{height:169.121333pt;}
.h43{height:169.200000pt;}
.h3f{height:187.040000pt;}
.h42{height:200.960000pt;}
.h37{height:214.961333pt;}
.h4c{height:221.921333pt;}
.h48{height:237.198667pt;}
.h55{height:266.640000pt;}
.h36{height:415.280000pt;}
.h31{height:524.320000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w23{width:22.640000pt;}
.w27{width:87.440000pt;}
.w26{width:88.880000pt;}
.w20{width:94.320000pt;}
.w1f{width:95.681333pt;}
.w25{width:108.318667pt;}
.w1e{width:108.320000pt;}
.w1d{width:109.680000pt;}
.w24{width:109.758667pt;}
.w21{width:109.760000pt;}
.wf{width:131.360000pt;}
.w1b{width:132.320000pt;}
.w1a{width:135.760000pt;}
.w8{width:148.880000pt;}
.w7{width:149.440000pt;}
.w5{width:150.000000pt;}
.w6{width:152.160000pt;}
.w22{width:159.360000pt;}
.w13{width:169.361333pt;}
.w10{width:169.440000pt;}
.w16{width:188.321333pt;}
.w15{width:207.200000pt;}
.w4{width:224.160000pt;}
.w18{width:282.320000pt;}
.w11{width:282.400000pt;}
.w14{width:282.800000pt;}
.wc{width:295.520000pt;}
.w12{width:301.278667pt;}
.wd{width:309.120000pt;}
.w17{width:312.000000pt;}
.w1c{width:326.880000pt;}
.w2{width:342.558667pt;}
.w3{width:430.480000pt;}
.we{width:471.360000pt;}
.w19{width:594.960000pt;}
.wb{width:600.881333pt;}
.wa{width:603.360000pt;}
.w9{width:613.280000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4c{left:6.880000pt;}
.x7{left:9.600000pt;}
.x8a{left:13.040000pt;}
.x94{left:25.840000pt;}
.x95{left:31.600000pt;}
.xb{left:32.720000pt;}
.x91{left:48.160000pt;}
.x92{left:62.880000pt;}
.x97{left:67.440000pt;}
.x63{left:70.640000pt;}
.x9d{left:72.960000pt;}
.x8b{left:80.960000pt;}
.x69{left:83.920000pt;}
.x4f{left:86.560000pt;}
.x65{left:88.000000pt;}
.x54{left:89.280000pt;}
.x9c{left:92.240000pt;}
.x4{left:94.560000pt;}
.xa6{left:95.680000pt;}
.x35{left:96.960000pt;}
.x41{left:98.160000pt;}
.x99{left:99.360000pt;}
.x9e{left:100.560000pt;}
.xf{left:101.760000pt;}
.x6f{left:104.160000pt;}
.x11{left:105.280000pt;}
.x98{left:106.240000pt;}
.x96{left:108.560000pt;}
.x8d{left:109.760000pt;}
.x39{left:111.440000pt;}
.xa5{left:112.400000pt;}
.x26{left:113.518800pt;}
.x75{left:118.160000pt;}
.x12{left:119.280000pt;}
.x8f{left:121.760000pt;}
.x38{left:123.920000pt;}
.x36{left:128.560000pt;}
.x87{left:130.240000pt;}
.x3c{left:131.200000pt;}
.x17{left:132.400000pt;}
.x7b{left:133.920000pt;}
.x8c{left:135.760000pt;}
.x88{left:137.280000pt;}
.x1a{left:140.080000pt;}
.x23{left:142.476720pt;}
.x93{left:145.200000pt;}
.x89{left:148.640000pt;}
.x2e{left:151.363200pt;}
.x86{left:153.040000pt;}
.x61{left:156.400000pt;}
.x4e{left:160.160000pt;}
.x18{left:162.640000pt;}
.x1f{left:164.240000pt;}
.x1b{left:165.920000pt;}
.x20{left:166.960000pt;}
.x1c{left:168.240000pt;}
.x22{left:169.200000pt;}
.x1e{left:172.320000pt;}
.x21{left:173.360000pt;}
.x1d{left:175.120000pt;}
.x25{left:180.160000pt;}
.x50{left:181.760000pt;}
.x64{left:183.200000pt;}
.x53{left:184.480000pt;}
.x56{left:188.880000pt;}
.x59{left:190.240000pt;}
.x5a{left:192.320000pt;}
.x5b{left:193.840000pt;}
.x4d{left:194.880000pt;}
.x4b{left:198.080000pt;}
.x5e{left:202.400000pt;}
.x90{left:208.240000pt;}
.x60{left:211.120000pt;}
.x51{left:213.360000pt;}
.x40{left:214.640000pt;}
.x3e{left:221.840000pt;}
.x49{left:223.760000pt;}
.x6d{left:226.640000pt;}
.x33{left:233.360000pt;}
.x52{left:239.440000pt;}
.x3{left:241.360400pt;}
.x7f{left:243.280000pt;}
.x6e{left:246.000000pt;}
.x44{left:248.320000pt;}
.x81{left:253.760000pt;}
.x10{left:254.967600pt;}
.x73{left:258.080000pt;}
.x28{left:278.720000pt;}
.x31{left:286.560000pt;}
.x2b{left:289.600000pt;}
.x2d{left:291.440000pt;}
.x30{left:295.360000pt;}
.x72{left:298.640000pt;}
.x47{left:300.800000pt;}
.x62{left:305.280000pt;}
.x32{left:307.520000pt;}
.x5d{left:309.200000pt;}
.x48{left:322.560000pt;}
.x43{left:326.160000pt;}
.x16{left:327.920000pt;}
.x9f{left:330.080000pt;}
.x3f{left:334.560000pt;}
.x66{left:340.720000pt;}
.x7a{left:341.680000pt;}
.x19{left:343.120000pt;}
.x15{left:347.665040pt;}
.x74{left:350.555040pt;}
.xa{left:358.080000pt;}
.x9{left:359.520000pt;}
.x13{left:361.689120pt;}
.x6{left:364.400000pt;}
.x14{left:366.081120pt;}
.x8{left:369.120000pt;}
.x3a{left:372.080000pt;}
.x5{left:374.000000pt;}
.x82{left:379.520000pt;}
.x37{left:383.920000pt;}
.x70{left:390.080000pt;}
.x57{left:391.840000pt;}
.x3b{left:398.160000pt;}
.xa1{left:400.080000pt;}
.xa7{left:401.680000pt;}
.x77{left:403.760000pt;}
.x58{left:408.400000pt;}
.x71{left:410.720000pt;}
.x9a{left:412.000000pt;}
.x84{left:416.160000pt;}
.x9b{left:418.880000pt;}
.x83{left:420.720000pt;}
.x85{left:423.040000pt;}
.xa3{left:427.200000pt;}
.x55{left:431.040000pt;}
.x67{left:432.720000pt;}
.x68{left:453.520000pt;}
.x5c{left:471.360000pt;}
.x42{left:473.280000pt;}
.x7d{left:486.800000pt;}
.xa2{left:488.960000pt;}
.xa0{left:495.520000pt;}
.x79{left:498.887520pt;}
.x6b{left:500.640000pt;}
.xd{left:515.514880pt;}
.x45{left:520.880000pt;}
.x78{left:526.560000pt;}
.xe{left:537.912080pt;}
.x6c{left:543.803040pt;}
.xa4{left:546.480000pt;}
.x34{left:548.560000pt;}
.x2c{left:553.840000pt;}
.xc{left:568.800000pt;}
.x6a{left:572.160000pt;}
.x4a{left:581.120000pt;}
.x76{left:601.760000pt;}
.x1{left:607.920000pt;}
.x2f{left:608.873440pt;}
.x2a{left:630.867120pt;}
.x27{left:633.853680pt;}
.x8e{left:643.838160pt;}
.x3d{left:661.680000pt;}
.x7c{left:666.080000pt;}
.x5f{left:681.840000pt;}
.x29{left:684.311520pt;}
.x80{left:685.776480pt;}
.x2{left:691.760000pt;}
.x7e{left:696.905840pt;}
.x46{left:700.553520pt;}
.x24{left:702.560000pt;}
}




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