
    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_a839f0d63da221eb499e84e2.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7478cc788104a44f138b0b0c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_479c7bcdda0ebf0deaa59df6.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_361c23ed3897de32bd46854d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_325f7378dab31895d671a09e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.891113;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_583b66293524c06d8fc5d5dc.woff')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_fbe263fcdae23a4aa4cf2923.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_a3995538d1dbdd4422b99607.woff')format("woff");}.ff8{font-family:ff8;line-height:0.680176;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);}
.v1{vertical-align:-6.050880px;}
.v2{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.ls5f{letter-spacing:-1.457280px;}
.ls37{letter-spacing:-1.324800px;}
.ls5e{letter-spacing:-1.059840px;}
.lsd0{letter-spacing:-0.993600px;}
.ls1e{letter-spacing:-0.861120px;}
.ls40{letter-spacing:-0.810000px;}
.lsd6{letter-spacing:-0.756000px;}
.ls1a{letter-spacing:-0.728640px;}
.ls42{letter-spacing:-0.702000px;}
.lsc{letter-spacing:-0.596160px;}
.lsd5{letter-spacing:-0.594000px;}
.ls41{letter-spacing:-0.540000px;}
.ls44{letter-spacing:-0.486000px;}
.ls1d{letter-spacing:-0.463680px;}
.ls1b{letter-spacing:-0.397440px;}
.ls3d{letter-spacing:-0.378000px;}
.ls8{letter-spacing:-0.360720px;}
.lsc5{letter-spacing:-0.358560px;}
.ls1c{letter-spacing:-0.331200px;}
.ls2c{letter-spacing:-0.288000px;}
.ls31{letter-spacing:-0.264960px;}
.lsa{letter-spacing:-0.240480px;}
.ls73{letter-spacing:-0.239040px;}
.ls2a{letter-spacing:-0.216000px;}
.ls29{letter-spacing:-0.144000px;}
.ls23{letter-spacing:-0.132480px;}
.ls9{letter-spacing:-0.120240px;}
.ls98{letter-spacing:-0.119520px;}
.ls3b{letter-spacing:-0.108000px;}
.lsda{letter-spacing:-0.072000px;}
.ls74{letter-spacing:-0.059760px;}
.ls5{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.018000px;}
.lse0{letter-spacing:0.039744px;}
.lsa6{letter-spacing:0.059760px;}
.lsdf{letter-spacing:0.066240px;}
.lsd7{letter-spacing:0.070200px;}
.ls33{letter-spacing:0.077760px;}
.ls3f{letter-spacing:0.091800px;}
.ls39{letter-spacing:0.108000px;}
.ls6f{letter-spacing:0.119520px;}
.lsd3{letter-spacing:0.126000px;}
.lsb{letter-spacing:0.132480px;}
.ls48{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.162000px;}
.ls43{letter-spacing:0.178200px;}
.ls6e{letter-spacing:0.179280px;}
.ls3a{letter-spacing:0.180000px;}
.ls2b{letter-spacing:0.216000px;}
.ls87{letter-spacing:0.239040px;}
.ls6a{letter-spacing:0.256968px;}
.ls67{letter-spacing:0.258336px;}
.ls68{letter-spacing:0.259920px;}
.ls36{letter-spacing:0.264960px;}
.ls8d{letter-spacing:0.268920px;}
.ls61{letter-spacing:0.271584px;}
.ls34{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.312624px;}
.ls19{letter-spacing:0.331200px;}
.ls7{letter-spacing:0.336960px;}
.ls6{letter-spacing:0.358560px;}
.ls35{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.360720px;}
.ls64{letter-spacing:0.377568px;}
.ls38{letter-spacing:0.378000px;}
.ls21{letter-spacing:0.728640px;}
.ls60{letter-spacing:1.331424px;}
.lse5{letter-spacing:1.371168px;}
.ls2d{letter-spacing:1.424160px;}
.lsd{letter-spacing:1.457280px;}
.lsde{letter-spacing:2.099808px;}
.ls12{letter-spacing:2.113056px;}
.ls13{letter-spacing:2.185920px;}
.ls11{letter-spacing:2.848320px;}
.ls30{letter-spacing:2.914560px;}
.ls2f{letter-spacing:2.921184px;}
.ls65{letter-spacing:3.484224px;}
.ls17{letter-spacing:3.543840px;}
.lse{letter-spacing:3.576960px;}
.ls58{letter-spacing:3.669696px;}
.ls4f{letter-spacing:3.795552px;}
.ls56{letter-spacing:4.232736px;}
.lsd1{letter-spacing:4.272480px;}
.ls45{letter-spacing:4.305600px;}
.lsd2{letter-spacing:4.318848px;}
.lse2{letter-spacing:4.358592px;}
.ls62{letter-spacing:4.411584px;}
.ls32{letter-spacing:4.438080px;}
.ls4c{letter-spacing:4.915008px;}
.ls27{letter-spacing:5.014368px;}
.ls4b{letter-spacing:5.027616px;}
.ls47{letter-spacing:5.034240px;}
.ls63{letter-spacing:5.762880px;}
.ls10{letter-spacing:6.491520px;}
.lsdb{letter-spacing:7.047936px;}
.ls49{letter-spacing:7.094304px;}
.lsd4{letter-spacing:7.107552px;}
.ls20{letter-spacing:7.220160px;}
.ls50{letter-spacing:7.948800px;}
.lse3{letter-spacing:8.034912px;}
.lsf{letter-spacing:8.611200px;}
.ls18{letter-spacing:9.339840px;}
.ls55{letter-spacing:9.372960px;}
.ls2e{letter-spacing:10.068480px;}
.ls4d{letter-spacing:10.128096px;}
.ls66{letter-spacing:10.154592px;}
.lscc{letter-spacing:10.764000px;}
.ls51{letter-spacing:10.797120px;}
.lscb{letter-spacing:11.525760px;}
.ls4a{letter-spacing:12.168288px;}
.ls1f{letter-spacing:12.201408px;}
.lse4{letter-spacing:12.254400px;}
.ls57{letter-spacing:12.983040px;}
.lsdd{letter-spacing:13.387104px;}
.ls28{letter-spacing:13.724928px;}
.lsd9{letter-spacing:14.760000px;}
.ls52{letter-spacing:15.102720px;}
.ls54{letter-spacing:15.818112px;}
.ls53{letter-spacing:15.831360px;}
.ls5c{letter-spacing:16.983936px;}
.ls22{letter-spacing:17.288640px;}
.lse1{letter-spacing:17.944416px;}
.ls5d{letter-spacing:18.017280px;}
.lscd{letter-spacing:19.448064px;}
.ls25{letter-spacing:20.117088px;}
.ls16{letter-spacing:20.136960px;}
.ls14{letter-spacing:20.865600px;}
.ls15{letter-spacing:20.918592px;}
.ls5a{letter-spacing:22.322880px;}
.ls26{letter-spacing:22.680000px;}
.ls5b{letter-spacing:23.051520px;}
.lsdc{letter-spacing:23.400000px;}
.lsb0{letter-spacing:27.549360px;}
.ls24{letter-spacing:27.720000px;}
.lse6{letter-spacing:28.814400px;}
.ls4{letter-spacing:30.420720px;}
.lsce{letter-spacing:30.900960px;}
.lscf{letter-spacing:30.934080px;}
.ls59{letter-spacing:37.425600px;}
.ls83{letter-spacing:67.110480px;}
.ls4e{letter-spacing:67.233600px;}
.ls3{letter-spacing:90.180000px;}
.ls2{letter-spacing:90.901440px;}
.lsa9{letter-spacing:134.101440px;}
.lsa4{letter-spacing:137.687040px;}
.lsac{letter-spacing:159.320160px;}
.ls85{letter-spacing:205.395120px;}
.ls86{letter-spacing:225.534240px;}
.ls7a{letter-spacing:254.338560px;}
.lsb2{letter-spacing:273.760560px;}
.lsad{letter-spacing:288.879840px;}
.ls8c{letter-spacing:348.639840px;}
.ls7d{letter-spacing:350.791200px;}
.lsa2{letter-spacing:357.305040px;}
.ls84{letter-spacing:358.739280px;}
.ls9e{letter-spacing:363.759120px;}
.ls77{letter-spacing:376.009920px;}
.lsb1{letter-spacing:377.444160px;}
.lsab{letter-spacing:385.392240px;}
.lsaf{letter-spacing:397.643040px;}
.ls76{letter-spacing:422.802000px;}
.ls78{letter-spacing:434.335680px;}
.lsa8{letter-spacing:437.204160px;}
.ls81{letter-spacing:443.718000px;}
.lsa3{letter-spacing:450.889200px;}
.lsa0{letter-spacing:463.857120px;}
.ls6d{letter-spacing:466.008480px;}
.ls6c{letter-spacing:475.390800px;}
.ls88{letter-spacing:481.127760px;}
.ls7c{letter-spacing:482.562000px;}
.ls75{letter-spacing:486.924480px;}
.lsc9{letter-spacing:496.247040px;}
.ls69{letter-spacing:505.629360px;}
.ls9d{letter-spacing:510.649200px;}
.ls96{letter-spacing:513.517680px;}
.ls7b{letter-spacing:520.748640px;}
.ls79{letter-spacing:523.617120px;}
.ls70{letter-spacing:527.202720px;}
.ls97{letter-spacing:530.848080px;}
.lsb3{letter-spacing:537.302160px;}
.ls8b{letter-spacing:547.401600px;}
.ls91{letter-spacing:550.270080px;}
.lsa1{letter-spacing:553.855680px;}
.lsa5{letter-spacing:566.106480px;}
.lsc3{letter-spacing:572.560560px;}
.ls92{letter-spacing:573.994800px;}
.ls8a{letter-spacing:577.640160px;}
.ls94{letter-spacing:584.094240px;}
.ls82{letter-spacing:594.193680px;}
.ls7e{letter-spacing:597.062160px;}
.ls80{letter-spacing:597.779280px;}
.ls89{letter-spacing:600.647760px;}
.ls99{letter-spacing:602.082000px;}
.ls9f{letter-spacing:613.615680px;}
.lsaa{letter-spacing:614.332800px;}
.ls6b{letter-spacing:617.201280px;}
.lsca{letter-spacing:618.635520px;}
.ls8f{letter-spacing:627.300720px;}
.ls9a{letter-spacing:630.886320px;}
.ls7f{letter-spacing:633.754800px;}
.lsae{letter-spacing:635.248800px;}
.ls9c{letter-spacing:636.683040px;}
.lsb4{letter-spacing:640.268640px;}
.ls9b{letter-spacing:643.854240px;}
.ls95{letter-spacing:646.722720px;}
.ls8e{letter-spacing:650.368080px;}
.lsc8{letter-spacing:651.802320px;}
.ls93{letter-spacing:663.993360px;}
.ls90{letter-spacing:676.961280px;}
.lsbf{letter-spacing:678.395520px;}
.ls72{letter-spacing:680.606640px;}
.lsa7{letter-spacing:687.060720px;}
.lsb5{letter-spacing:740.366640px;}
.lsb7{letter-spacing:741.806856px;}
.ls71{letter-spacing:757.637280px;}
.lsb8{letter-spacing:764.091360px;}
.lsc6{letter-spacing:765.525600px;}
.lsc7{letter-spacing:779.210640px;}
.lsbc{letter-spacing:798.632640px;}
.lsba{letter-spacing:818.831520px;}
.ls46{letter-spacing:845.553600px;}
.lsd8{letter-spacing:847.408320px;}
.lsbd{letter-spacing:849.070080px;}
.lsb9{letter-spacing:851.938560px;}
.lsc0{letter-spacing:865.623600px;}
.lsc4{letter-spacing:869.209200px;}
.lsbe{letter-spacing:875.723040px;}
.lsb6{letter-spacing:882.177120px;}
.lsc2{letter-spacing:895.145040px;}
.lsc1{letter-spacing:915.284160px;}
.lsbb{letter-spacing:992.314800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsd7{word-spacing:-30.240000px;}
.ws1{word-spacing:-29.699280px;}
.ws5b{word-spacing:-19.517760px;}
.wsb5{word-spacing:-18.414720px;}
.ws62{word-spacing:-18.288000px;}
.wscd{word-spacing:-18.282240px;}
.ws42{word-spacing:-18.216000px;}
.ws85{word-spacing:-18.144000px;}
.ws43{word-spacing:-18.000000px;}
.wsfd{word-spacing:-17.928000px;}
.ws41{word-spacing:-17.856000px;}
.ws5c{word-spacing:-17.784000px;}
.ws5d{word-spacing:-17.712000px;}
.ws13{word-spacing:-16.891200px;}
.ws63{word-spacing:-16.824960px;}
.wsf{word-spacing:-16.692480px;}
.ws2{word-spacing:-16.560000px;}
.wsd2{word-spacing:-16.427520px;}
.ws4f{word-spacing:-16.295040px;}
.ws16{word-spacing:-16.228800px;}
.ws14{word-spacing:-16.162560px;}
.ws11{word-spacing:-16.096320px;}
.ws12{word-spacing:-15.963840px;}
.ws10{word-spacing:-15.831360px;}
.ws15{word-spacing:-15.698880px;}
.ws0{word-spacing:-15.298560px;}
.wsbb{word-spacing:-15.059520px;}
.wsbc{word-spacing:-14.940000px;}
.wsca{word-spacing:-14.880240px;}
.wsc9{word-spacing:-14.820480px;}
.ws69{word-spacing:-13.878000px;}
.ws7a{word-spacing:-13.716000px;}
.ws6c{word-spacing:-13.662000px;}
.ws68{word-spacing:-13.608000px;}
.ws6a{word-spacing:-13.500000px;}
.ws6b{word-spacing:-13.392000px;}
.ws67{word-spacing:-13.284000px;}
.ws6d{word-spacing:-13.122000px;}
.wsf3{word-spacing:-13.014000px;}
.wsf6{word-spacing:-12.906000px;}
.wsf8{word-spacing:-12.798000px;}
.wsf4{word-spacing:-12.744000px;}
.ws7d{word-spacing:-12.690000px;}
.wsa5{word-spacing:-10.440000px;}
.ws50{word-spacing:-4.438080px;}
.ws6f{word-spacing:-4.305600px;}
.ws6e{word-spacing:-4.040640px;}
.ws95{word-spacing:-3.908160px;}
.ws52{word-spacing:-3.709440px;}
.ws51{word-spacing:-3.576960px;}
.wsb3{word-spacing:-3.245760px;}
.ws8e{word-spacing:-3.179520px;}
.ws83{word-spacing:-2.980800px;}
.ws40{word-spacing:-2.848320px;}
.wsb9{word-spacing:-2.517120px;}
.ws5a{word-spacing:-2.318400px;}
.ws57{word-spacing:-2.185920px;}
.ws84{word-spacing:-2.119680px;}
.wsa3{word-spacing:-2.053440px;}
.ws1b{word-spacing:-1.788480px;}
.ws4e{word-spacing:-1.589760px;}
.ws1a{word-spacing:-1.457280px;}
.wsa4{word-spacing:-1.324800px;}
.wse6{word-spacing:-1.296000px;}
.wse4{word-spacing:-1.116000px;}
.wse1{word-spacing:-1.110000px;}
.ws70{word-spacing:-1.059840px;}
.wsf0{word-spacing:-0.972000px;}
.wsda{word-spacing:-0.954000px;}
.ws7b{word-spacing:-0.918000px;}
.wsbf{word-spacing:-0.896400px;}
.ws27{word-spacing:-0.861120px;}
.wse5{word-spacing:-0.810000px;}
.wsc5{word-spacing:-0.776880px;}
.ws25{word-spacing:-0.728640px;}
.wsc7{word-spacing:-0.657360px;}
.ws7c{word-spacing:-0.648000px;}
.ws99{word-spacing:-0.596160px;}
.wse3{word-spacing:-0.576000px;}
.ws5{word-spacing:-0.505440px;}
.wsf7{word-spacing:-0.463680px;}
.wscc{word-spacing:-0.432000px;}
.wse2{word-spacing:-0.414000px;}
.wsb1{word-spacing:-0.397440px;}
.ws74{word-spacing:-0.378000px;}
.wsc2{word-spacing:-0.358560px;}
.ws28{word-spacing:-0.331200px;}
.wsd6{word-spacing:-0.324000px;}
.wsec{word-spacing:-0.306000px;}
.ws5e{word-spacing:-0.288000px;}
.wsed{word-spacing:-0.270000px;}
.ws81{word-spacing:-0.264960px;}
.ws78{word-spacing:-0.216000px;}
.wsd9{word-spacing:-0.180000px;}
.ws4{word-spacing:-0.179280px;}
.wsd5{word-spacing:-0.162000px;}
.ws24{word-spacing:-0.132480px;}
.wsc4{word-spacing:-0.119520px;}
.ws76{word-spacing:-0.108000px;}
.wsde{word-spacing:-0.090000px;}
.wsc3{word-spacing:-0.059760px;}
.ws3{word-spacing:0.000000px;}
.ws77{word-spacing:0.054000px;}
.wsbe{word-spacing:0.059760px;}
.ws71{word-spacing:0.108000px;}
.ws8{word-spacing:0.120240px;}
.ws32{word-spacing:0.132480px;}
.ws75{word-spacing:0.162000px;}
.ws44{word-spacing:0.216000px;}
.wsef{word-spacing:0.234000px;}
.wsc0{word-spacing:0.239040px;}
.ws9f{word-spacing:0.264960px;}
.ws73{word-spacing:0.270000px;}
.ws48{word-spacing:0.288000px;}
.wsc6{word-spacing:0.298800px;}
.wsd8{word-spacing:0.306000px;}
.ws23{word-spacing:0.331200px;}
.wsdf{word-spacing:0.372000px;}
.ws49{word-spacing:0.375840px;}
.ws72{word-spacing:0.378000px;}
.ws2a{word-spacing:0.397440px;}
.wsc1{word-spacing:0.418320px;}
.wsdc{word-spacing:0.462000px;}
.ws33{word-spacing:0.463680px;}
.wsea{word-spacing:0.468000px;}
.wsa{word-spacing:0.480960px;}
.ws7f{word-spacing:0.486000px;}
.wse0{word-spacing:0.522000px;}
.wscb{word-spacing:0.537840px;}
.ws79{word-spacing:0.540000px;}
.wsf2{word-spacing:0.594000px;}
.ws53{word-spacing:0.596160px;}
.wse7{word-spacing:0.612000px;}
.wseb{word-spacing:0.696000px;}
.ws7e{word-spacing:0.702000px;}
.wsee{word-spacing:0.708000px;}
.ws1e{word-spacing:0.728640px;}
.wse8{word-spacing:0.774000px;}
.ws82{word-spacing:0.861120px;}
.wse9{word-spacing:0.948000px;}
.wsdd{word-spacing:0.954000px;}
.wsf5{word-spacing:0.972000px;}
.wsbd{word-spacing:0.993600px;}
.wsd3{word-spacing:1.008000px;}
.wsa9{word-spacing:1.059840px;}
.wsdb{word-spacing:1.116000px;}
.ws3a{word-spacing:1.126080px;}
.wsc8{word-spacing:1.135440px;}
.ws19{word-spacing:1.324800px;}
.ws34{word-spacing:1.457280px;}
.ws64{word-spacing:1.589760px;}
.ws8d{word-spacing:1.854720px;}
.ws31{word-spacing:1.920960px;}
.wsc{word-spacing:2.053440px;}
.ws18{word-spacing:2.185920px;}
.ws87{word-spacing:2.318400px;}
.ws17{word-spacing:2.782080px;}
.ws3b{word-spacing:2.914560px;}
.ws21{word-spacing:3.312000px;}
.ws22{word-spacing:3.444480px;}
.wsa7{word-spacing:3.510720px;}
.ws20{word-spacing:3.576960px;}
.wsa2{word-spacing:3.643200px;}
.ws65{word-spacing:3.775680px;}
.ws66{word-spacing:3.908160px;}
.ws8a{word-spacing:3.974400px;}
.ws8b{word-spacing:4.173120px;}
.ws80{word-spacing:4.305600px;}
.wsa0{word-spacing:4.438080px;}
.wsd4{word-spacing:4.570560px;}
.ws3c{word-spacing:4.703040px;}
.ws86{word-spacing:4.901760px;}
.ws4c{word-spacing:5.034240px;}
.ws5f{word-spacing:5.431680px;}
.wsb0{word-spacing:5.497920px;}
.ws3d{word-spacing:5.630400px;}
.ws35{word-spacing:5.762880px;}
.ws89{word-spacing:5.895360px;}
.ws88{word-spacing:6.160320px;}
.ws29{word-spacing:6.359040px;}
.ws2b{word-spacing:6.491520px;}
.ws8c{word-spacing:6.624000px;}
.ws39{word-spacing:6.888960px;}
.ws58{word-spacing:7.087680px;}
.wsd{word-spacing:7.220160px;}
.ws91{word-spacing:7.352640px;}
.wsf1{word-spacing:7.485120px;}
.wse{word-spacing:7.816320px;}
.ws37{word-spacing:7.948800px;}
.ws26{word-spacing:8.478720px;}
.ws38{word-spacing:8.544960px;}
.ws36{word-spacing:8.611200px;}
.wsa6{word-spacing:8.677440px;}
.ws98{word-spacing:8.743680px;}
.wsb2{word-spacing:9.008640px;}
.ws2f{word-spacing:9.207360px;}
.ws59{word-spacing:9.339840px;}
.wsfa{word-spacing:9.737280px;}
.wsba{word-spacing:9.803520px;}
.ws56{word-spacing:9.936000px;}
.ws54{word-spacing:10.068480px;}
.wsf9{word-spacing:10.080000px;}
.wsfc{word-spacing:10.399680px;}
.ws9a{word-spacing:10.664640px;}
.ws55{word-spacing:10.797120px;}
.ws2e{word-spacing:11.393280px;}
.wsfb{word-spacing:11.520000px;}
.ws2d{word-spacing:11.525760px;}
.wsce{word-spacing:11.856960px;}
.ws9e{word-spacing:11.923200px;}
.wsb{word-spacing:12.121920px;}
.ws2c{word-spacing:12.254400px;}
.ws109{word-spacing:12.519360px;}
.ws96{word-spacing:12.850560px;}
.ws61{word-spacing:12.983040px;}
.ws103{word-spacing:13.579200px;}
.ws4d{word-spacing:13.711680px;}
.wsb7{word-spacing:14.241600px;}
.ws97{word-spacing:14.374080px;}
.ws9d{word-spacing:14.970240px;}
.ws9b{word-spacing:15.102720px;}
.ws8f{word-spacing:15.500160px;}
.ws9c{word-spacing:15.698880px;}
.ws90{word-spacing:15.831360px;}
.ws101{word-spacing:16.228800px;}
.wsa1{word-spacing:16.427520px;}
.ws100{word-spacing:16.560000px;}
.wsb8{word-spacing:16.692480px;}
.ws3e{word-spacing:16.957440px;}
.ws4b{word-spacing:17.156160px;}
.ws3f{word-spacing:17.288640px;}
.wsaf{word-spacing:17.686080px;}
.wsae{word-spacing:17.884800px;}
.ws1f{word-spacing:18.017280px;}
.ws1c{word-spacing:18.414720px;}
.ws1d{word-spacing:18.745920px;}
.wscf{word-spacing:19.077120px;}
.ws46{word-spacing:19.342080px;}
.ws4a{word-spacing:19.474560px;}
.ws47{word-spacing:19.805760px;}
.wsff{word-spacing:20.004480px;}
.ws45{word-spacing:20.136960px;}
.ws105{word-spacing:20.534400px;}
.ws30{word-spacing:20.865600px;}
.ws108{word-spacing:21.461760px;}
.ws107{word-spacing:21.594240px;}
.ws106{word-spacing:22.919040px;}
.wsad{word-spacing:23.051520px;}
.wsb6{word-spacing:23.448960px;}
.wsa8{word-spacing:23.780160px;}
.ws93{word-spacing:24.508800px;}
.ws92{word-spacing:25.171200px;}
.ws94{word-spacing:25.237440px;}
.wsfe{word-spacing:26.496000px;}
.ws104{word-spacing:27.224640px;}
.ws10a{word-spacing:28.814400px;}
.wsb4{word-spacing:29.543040px;}
.ws60{word-spacing:30.271680px;}
.ws9{word-spacing:30.540960px;}
.wsd0{word-spacing:31.662720px;}
.wsd1{word-spacing:32.258880px;}
.wsac{word-spacing:36.365760px;}
.wsaa{word-spacing:37.293120px;}
.wsab{word-spacing:37.425600px;}
.ws102{word-spacing:39.611520px;}
.ws6{word-spacing:90.540720px;}
.ws7{word-spacing:91.021680px;}
._16{margin-left:-16.703712px;}
._e{margin-left:-5.063472px;}
._d{margin-left:-3.745152px;}
._a{margin-left:-2.741184px;}
._0{margin-left:-1.219104px;}
._1{width:1.178352px;}
._5{width:2.758176px;}
._6{width:3.799584px;}
._10{width:5.527584px;}
._4{width:6.903072px;}
._9{width:7.939008px;}
._8{width:9.372672px;}
._11{width:11.353824px;}
._f{width:14.837760px;}
._c{width:17.424000px;}
._3{width:18.868608px;}
._7{width:20.545488px;}
._13{width:22.883184px;}
._14{width:24.116832px;}
._17{width:26.008416px;}
._15{width:31.531536px;}
._12{width:38.089296px;}
._2{width:845.553600px;}
._b{width:847.408320px;}
.fc7{color:transparent;}
.fc5{color:rgb(61,133,198);}
.fc3{color:rgb(54,95,145);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(17,85,204);}
.fc6{color:rgb(31,31,31);}
.fc4{color:rgb(68,68,68);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fs6{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y9b{bottom:2.880000px;}
.y98{bottom:3.060000px;}
.y203{bottom:3.240000px;}
.y1fc{bottom:5.400000px;}
.y206{bottom:5.580000px;}
.y1f9{bottom:5.760000px;}
.y2a7{bottom:5.940000px;}
.y330{bottom:9.000000px;}
.ya2{bottom:10.980000px;}
.yc9{bottom:11.160000px;}
.y9a{bottom:18.360000px;}
.y9d{bottom:18.540000px;}
.y202{bottom:20.340000px;}
.y20b{bottom:20.520000px;}
.y320{bottom:22.500000px;}
.y332{bottom:23.400000px;}
.y587{bottom:23.760000px;}
.y353{bottom:24.300000px;}
.yb3{bottom:33.840000px;}
.ya3{bottom:34.020000px;}
.yc6{bottom:35.460000px;}
.y33e{bottom:41.400000px;}
.y356{bottom:42.300000px;}
.yc2{bottom:42.840000px;}
.y3e6{bottom:46.620000px;}
.y95{bottom:49.500000px;}
.y2{bottom:57.422880px;}
.y9f{bottom:58.320000px;}
.y36f{bottom:60.300000px;}
.y3ff{bottom:62.100000px;}
.yeb{bottom:64.980000px;}
.yfe{bottom:65.160000px;}
.ya6{bottom:65.880000px;}
.y1{bottom:76.500000px;}
.y512{bottom:77.760000px;}
.y101{bottom:80.460000px;}
.yb6{bottom:80.640000px;}
.y325{bottom:83.340000px;}
.y374{bottom:88.200000px;}
.ydb{bottom:90.180000px;}
.yd4{bottom:91.620000px;}
.y4d1{bottom:93.240000px;}
.y13b{bottom:96.120000px;}
.y35a{bottom:103.320000px;}
.y1ab{bottom:107.814960px;}
.y334{bottom:111.240000px;}
.y486{bottom:111.420000px;}
.y176{bottom:111.540960px;}
.y337{bottom:111.600000px;}
.y48e{bottom:112.860000px;}
.y132{bottom:113.040000px;}
.y5ce{bottom:113.166000px;}
.y1c2{bottom:113.441040px;}
.y1e3{bottom:113.482080px;}
.y137{bottom:114.480000px;}
.y5e2{bottom:114.547680px;}
.y5e4{bottom:114.621120px;}
.y251{bottom:114.660000px;}
.yaa{bottom:115.020000px;}
.y7b{bottom:116.123760px;}
.y3c0{bottom:116.280000px;}
.y1f7{bottom:116.591760px;}
.y431{bottom:117.180000px;}
.y1cb{bottom:118.562400px;}
.y287{bottom:118.620000px;}
.y359{bottom:120.060000px;}
.y516{bottom:120.420000px;}
.y111{bottom:122.040000px;}
.y2ce{bottom:122.220000px;}
.y3fd{bottom:122.760000px;}
.y3b8{bottom:127.080000px;}
.y2d9{bottom:127.090800px;}
.y3c1{bottom:127.260000px;}
.y13a{bottom:127.980000px;}
.y47a{bottom:128.520000px;}
.y222{bottom:129.420000px;}
.y415{bottom:129.955500px;}
.y3e5{bottom:129.960000px;}
.y59a{bottom:130.318560px;}
.y26b{bottom:130.860000px;}
.y4b0{bottom:131.292000px;}
.y546{bottom:131.368500px;}
.y536{bottom:131.391000px;}
.y184{bottom:132.871680px;}
.y138{bottom:133.020000px;}
.yba{bottom:133.551000px;}
.y33d{bottom:134.460000px;}
.y3c6{bottom:134.797500px;}
.y528{bottom:135.715500px;}
.y4f9{bottom:135.720000px;}
.ye2{bottom:136.800000px;}
.y42d{bottom:136.863000px;}
.y454{bottom:136.921500px;}
.y473{bottom:136.926000px;}
.y441{bottom:136.930500px;}
.y250{bottom:136.980000px;}
.yce{bottom:138.420000px;}
.y51a{bottom:138.771000px;}
.y2d{bottom:138.900240px;}
.y58{bottom:139.158720px;}
.y2dd{bottom:139.328640px;}
.y32c{bottom:140.760000px;}
.y565{bottom:141.268500px;}
.y4d0{bottom:141.291000px;}
.y3fe{bottom:141.295500px;}
.y4b6{bottom:142.560000px;}
.y3cc{bottom:142.740000px;}
.y35d{bottom:143.100000px;}
.y2df{bottom:143.286480px;}
.y2de{bottom:143.468640px;}
.y2cd{bottom:144.540000px;}
.y340{bottom:144.715500px;}
.y12c{bottom:144.900000px;}
.y414{bottom:145.615500px;}
.y286{bottom:146.340000px;}
.y4af{bottom:146.776500px;}
.y545{bottom:146.853000px;}
.y48c{bottom:146.862000px;}
.y4bc{bottom:146.875500px;}
.yb9{bottom:149.035500px;}
.y5ab{bottom:149.040000px;}
.y175{bottom:149.513040px;}
.y3c5{bottom:150.282000px;}
.y5cd{bottom:150.972480px;}
.y527{bottom:151.200000px;}
.y1c1{bottom:151.413120px;}
.y1e2{bottom:151.454160px;}
.y221{bottom:151.740000px;}
.y42c{bottom:152.347500px;}
.y453{bottom:152.406000px;}
.y472{bottom:152.410500px;}
.y440{bottom:152.415000px;}
.y5e1{bottom:152.519760px;}
.y5e3{bottom:152.593200px;}
.y2e0{bottom:152.825040px;}
.y26a{bottom:153.360000px;}
.y116{bottom:153.720000px;}
.y24f{bottom:153.900000px;}
.y7a{bottom:154.095840px;}
.y519{bottom:154.255500px;}
.y1f6{bottom:154.563840px;}
.yfc{bottom:155.331000px;}
.y1ca{bottom:156.368880px;}
.y564{bottom:156.753000px;}
.y4cf{bottom:156.775500px;}
.yde{bottom:156.780000px;}
.y573{bottom:156.951000px;}
.y34d{bottom:157.140000px;}
.y3d8{bottom:158.220000px;}
.y304{bottom:159.486480px;}
.y33f{bottom:160.200000px;}
.y413{bottom:161.100000px;}
.y35e{bottom:161.640000px;}
.y12b{bottom:161.820000px;}
.y36a{bottom:162.180000px;}
.y4ae{bottom:162.261000px;}
.y544{bottom:162.337500px;}
.y48b{bottom:162.346500px;}
.y4bb{bottom:162.360000px;}
.y3e2{bottom:163.800000px;}
.yb8{bottom:164.520000px;}
.y3c4{bottom:165.766500px;}
.y2cc{bottom:166.860000px;}
.y42b{bottom:168.007500px;}
.y452{bottom:168.066000px;}
.y471{bottom:168.070500px;}
.y43f{bottom:168.075000px;}
.y285{bottom:168.840000px;}
.y112{bottom:169.200000px;}
.y4e7{bottom:169.380000px;}
.y599{bottom:169.565760px;}
.y518{bottom:169.915500px;}
.y269{bottom:170.280000px;}
.yfb{bottom:170.815500px;}
.y183{bottom:170.843760px;}
.y563{bottom:172.237500px;}
.y118{bottom:172.255500px;}
.y430{bottom:172.260000px;}
.y572{bottom:172.435500px;}
.y588{bottom:172.620000px;}
.y2dc{bottom:172.812960px;}
.y482{bottom:173.520000px;}
.y402{bottom:173.700000px;}
.y220{bottom:174.060000px;}
.y24d{bottom:176.220000px;}
.y2c{bottom:176.706720px;}
.y57{bottom:176.965200px;}
.y4ad{bottom:177.921000px;}
.y543{bottom:177.997500px;}
.y48a{bottom:178.006500px;}
.y4ba{bottom:178.020000px;}
.y1ee{bottom:178.246080px;}
.y1a6{bottom:178.403760px;}
.y15a{bottom:179.287920px;}
.yb7{bottom:180.180000px;}
.y373{bottom:181.800000px;}
.y3e4{bottom:182.160000px;}
.y42a{bottom:183.492000px;}
.y451{bottom:183.550500px;}
.y470{bottom:183.555000px;}
.y43e{bottom:183.559500px;}
.y526{bottom:184.860000px;}
.y517{bottom:185.400000px;}
.ydd{bottom:185.760000px;}
.yfa{bottom:186.300000px;}
.y174{bottom:187.485120px;}
.y117{bottom:187.740000px;}
.y4f7{bottom:187.884000px;}
.y562{bottom:187.897500px;}
.y4f1{bottom:187.902000px;}
.y560{bottom:187.915500px;}
.y303{bottom:187.920000px;}
.y24e{bottom:188.100000px;}
.y5cc{bottom:188.944560px;}
.y4e8{bottom:189.180000px;}
.y2cb{bottom:189.360000px;}
.y1c0{bottom:189.385200px;}
.y5e0{bottom:190.491840px;}
.y5d0{bottom:190.565280px;}
.y3ef{bottom:190.620000px;}
.y284{bottom:191.160000px;}
.yb1{bottom:191.520000px;}
.y79{bottom:192.067920px;}
.y1f5{bottom:192.370320px;}
.y379{bottom:192.406500px;}
.y268{bottom:192.600000px;}
.y4ac{bottom:193.405500px;}
.y542{bottom:193.482000px;}
.y489{bottom:193.491000px;}
.y131{bottom:193.680000px;}
.y1c9{bottom:194.340960px;}
.y40e{bottom:194.760000px;}
.y21f{bottom:196.560000px;}
.y3c3{bottom:196.911000px;}
.y3e3{bottom:197.820000px;}
.y31e{bottom:198.180000px;}
.y2a3{bottom:198.540000px;}
.y429{bottom:198.976500px;}
.y450{bottom:199.035000px;}
.y46f{bottom:199.039500px;}
.y43d{bottom:199.044000px;}
.y108{bottom:200.340000px;}
.y4f8{bottom:201.780000px;}
.y4f6{bottom:203.368500px;}
.y561{bottom:203.382000px;}
.y4f0{bottom:203.386500px;}
.y55f{bottom:203.400000px;}
.y571{bottom:203.575500px;}
.y3e8{bottom:204.840000px;}
.y4fb{bottom:206.100000px;}
.y5aa{bottom:206.287920px;}
.y1e1{bottom:207.426960px;}
.y598{bottom:207.537840px;}
.y378{bottom:207.891000px;}
.y35b{bottom:207.900000px;}
.y282{bottom:208.080000px;}
.y182{bottom:208.815840px;}
.y4ab{bottom:208.890000px;}
.y3fb{bottom:208.930500px;}
.y541{bottom:208.966500px;}
.y4bd{bottom:208.971000px;}
.y488{bottom:208.975500px;}
.yb5{bottom:208.980000px;}
.y586{bottom:209.340000px;}
.y2db{bottom:210.785040px;}
.y24c{bottom:211.500000px;}
.y2ca{bottom:211.680000px;}
.y136{bottom:212.040000px;}
.y3c2{bottom:212.395500px;}
.y336{bottom:212.940000px;}
.y412{bottom:213.286500px;}
.y335{bottom:213.300000px;}
.y35c{bottom:214.380000px;}
.y428{bottom:214.461000px;}
.y44f{bottom:214.519500px;}
.y46e{bottom:214.524000px;}
.y43c{bottom:214.528500px;}
.y2b{bottom:214.678800px;}
.y267{bottom:214.920000px;}
.y56{bottom:214.937280px;}
.yf7{bottom:215.280000px;}
.y1ed{bottom:216.052560px;}
.y1a5{bottom:216.375840px;}
.y115{bottom:216.540000px;}
.ydc{bottom:217.440000px;}
.y4f5{bottom:218.853000px;}
.y52d{bottom:218.862000px;}
.y55e{bottom:218.866500px;}
.y4ef{bottom:218.871000px;}
.y513{bottom:219.060000px;}
.y283{bottom:219.960000px;}
.y3a2{bottom:220.140000px;}
.y3d4{bottom:220.320000px;}
.y2a2{bottom:220.860000px;}
.y42f{bottom:221.580000px;}
.y514{bottom:222.840000px;}
.y377{bottom:223.551000px;}
.y21e{bottom:224.280000px;}
.y4aa{bottom:224.374500px;}
.y510{bottom:224.406000px;}
.y3fa{bottom:224.415000px;}
.y540{bottom:224.451000px;}
.y4b9{bottom:224.455500px;}
.y487{bottom:224.460000px;}
.y5cb{bottom:226.916640px;}
.y3c7{bottom:227.880000px;}
.y5df{bottom:228.298320px;}
.y5cf{bottom:228.371760px;}
.y411{bottom:228.771000px;}
.y427{bottom:229.945500px;}
.y44e{bottom:230.004000px;}
.y46d{bottom:230.008500px;}
.y43b{bottom:230.013000px;}
.y78{bottom:230.040000px;}
.y1f4{bottom:230.342400px;}
.y33c{bottom:231.475500px;}
.y3df{bottom:231.480000px;}
.y1c8{bottom:232.313040px;}
.yf9{bottom:233.635500px;}
.y4f4{bottom:234.337500px;}
.y532{bottom:234.342000px;}
.y52c{bottom:234.346500px;}
.y55d{bottom:234.351000px;}
.y4ee{bottom:234.355500px;}
.y515{bottom:235.440000px;}
.y475{bottom:235.800000px;}
.y37a{bottom:236.340000px;}
.y266{bottom:237.240000px;}
.y355{bottom:237.420000px;}
.y583{bottom:238.680000px;}
.y376{bottom:239.035500px;}
.y24b{bottom:239.220000px;}
.y3a0{bottom:239.226000px;}
.y2c9{bottom:239.400000px;}
.y4a9{bottom:239.859000px;}
.y4cd{bottom:239.886000px;}
.y50f{bottom:239.890500px;}
.y3f9{bottom:239.899500px;}
.y53f{bottom:239.935500px;}
.y4b8{bottom:239.940000px;}
.yb2{bottom:240.840000px;}
.y134{bottom:241.020000px;}
.yda{bottom:241.920000px;}
.y281{bottom:243.360000px;}
.y173{bottom:243.457920px;}
.y410{bottom:244.255500px;}
.y5a9{bottom:244.260000px;}
.y130{bottom:244.611000px;}
.y1bf{bottom:245.358000px;}
.y1e0{bottom:245.399040px;}
.y426{bottom:245.605500px;}
.y44d{bottom:245.664000px;}
.y46c{bottom:245.668500px;}
.y43a{bottom:245.673000px;}
.y534{bottom:245.700000px;}
.y302{bottom:246.060000px;}
.y21d{bottom:246.600000px;}
.y181{bottom:246.787920px;}
.y33b{bottom:246.960000px;}
.yab{bottom:247.680000px;}
.y114{bottom:248.400000px;}
.y358{bottom:248.755500px;}
.yf8{bottom:249.120000px;}
.y4f3{bottom:249.822000px;}
.y531{bottom:249.826500px;}
.y52b{bottom:249.831000px;}
.y55c{bottom:249.835500px;}
.y3e1{bottom:249.840000px;}
.y3fc{bottom:251.280000px;}
.y2a{bottom:252.650880px;}
.y570{bottom:252.720000px;}
.y55{bottom:252.909360px;}
.y1ec{bottom:254.024640px;}
.y1a4{bottom:254.347920px;}
.y375{bottom:254.520000px;}
.y39f{bottom:254.748000px;}
.y31d{bottom:255.420000px;}
.y4a8{bottom:255.519000px;}
.y4cc{bottom:255.546000px;}
.y50e{bottom:255.550500px;}
.y3f8{bottom:255.559500px;}
.y485{bottom:255.591000px;}
.y53e{bottom:255.595500px;}
.y4b7{bottom:255.600000px;}
.y585{bottom:257.040000px;}
.yb4{bottom:259.200000px;}
.y135{bottom:259.380000px;}
.y265{bottom:259.560000px;}
.y40f{bottom:259.740000px;}
.y12f{bottom:260.271000px;}
.y425{bottom:261.090000px;}
.y44c{bottom:261.148500px;}
.y46b{bottom:261.153000px;}
.y439{bottom:261.157500px;}
.y24a{bottom:261.540000px;}
.y2c8{bottom:261.720000px;}
.y357{bottom:264.240000px;}
.y5ca{bottom:264.888720px;}
.y2da{bottom:264.969360px;}
.y4f2{bottom:265.482000px;}
.y530{bottom:265.486500px;}
.y52a{bottom:265.491000px;}
.y55b{bottom:265.495500px;}
.y3e0{bottom:265.500000px;}
.y27f{bottom:265.680000px;}
.yd3{bottom:266.220000px;}
.y5de{bottom:266.270400px;}
.y1a1{bottom:266.343840px;}
.y3f0{bottom:266.760000px;}
.y549{bottom:266.940000px;}
.y1f3{bottom:268.314480px;}
.y21c{bottom:268.920000px;}
.y39e{bottom:270.270000px;}
.y1c7{bottom:270.285120px;}
.y4a7{bottom:271.003500px;}
.y4cb{bottom:271.030500px;}
.y50d{bottom:271.035000px;}
.y3f7{bottom:271.044000px;}
.y484{bottom:271.075500px;}
.y53d{bottom:271.080000px;}
.y584{bottom:272.700000px;}
.y12e{bottom:275.755500px;}
.y8e{bottom:275.948640px;}
.y424{bottom:276.574500px;}
.y44b{bottom:276.633000px;}
.y46a{bottom:276.637500px;}
.y438{bottom:276.642000px;}
.y280{bottom:277.560000px;}
.y33a{bottom:278.091000px;}
.yf5{bottom:278.100000px;}
.y3bf{bottom:280.062000px;}
.y113{bottom:280.260000px;}
.y4ed{bottom:280.966500px;}
.y52f{bottom:280.971000px;}
.y529{bottom:280.975500px;}
.y55a{bottom:280.980000px;}
.y172{bottom:281.430000px;}
.y264{bottom:282.060000px;}
.y462{bottom:282.240000px;}
.y19a{bottom:282.787920px;}
.y1be{bottom:283.164480px;}
.y1df{bottom:283.205520px;}
.y249{bottom:283.860000px;}
.y2c7{bottom:284.040000px;}
.y369{bottom:284.220000px;}
.y180{bottom:284.760000px;}
.y39d{bottom:285.792000px;}
.y21b{bottom:285.840000px;}
.y4a6{bottom:286.488000px;}
.y4ca{bottom:286.515000px;}
.y50c{bottom:286.519500px;}
.y3f6{bottom:286.528500px;}
.y483{bottom:286.560000px;}
.y43{bottom:288.120240px;}
.y77{bottom:288.180000px;}
.y133{bottom:288.360000px;}
.y4b1{bottom:289.260000px;}
.y56f{bottom:289.440000px;}
.y29{bottom:290.622960px;}
.y54{bottom:290.881440px;}
.y12d{bottom:291.240000px;}
.y423{bottom:292.059000px;}
.y44a{bottom:292.117500px;}
.y469{bottom:292.122000px;}
.y437{bottom:292.126500px;}
.y1a3{bottom:292.320000px;}
.y2a1{bottom:293.400000px;}
.y339{bottom:293.575500px;}
.y40b{bottom:293.580000px;}
.y34c{bottom:293.940000px;}
.y511{bottom:294.840000px;}
.y3be{bottom:295.722000px;}
.y4ec{bottom:296.451000px;}
.y52e{bottom:296.455500px;}
.yf6{bottom:296.460000px;}
.y442{bottom:297.720000px;}
.y372{bottom:297.895500px;}
.y4be{bottom:297.900000px;}
.yd9{bottom:298.080000px;}
.ycf{bottom:298.620000px;}
.y3d3{bottom:299.160000px;}
.y39c{bottom:301.314000px;}
.y4a5{bottom:301.972500px;}
.y4c9{bottom:301.999500px;}
.y50b{bottom:302.004000px;}
.y3f5{bottom:302.013000px;}
.y5a8{bottom:302.400000px;}
.y354{bottom:302.580000px;}
.y5c9{bottom:302.860800px;}
.y5dd{bottom:304.242480px;}
.y1a0{bottom:304.315920px;}
.y107{bottom:304.560000px;}
.y301{bottom:305.460000px;}
.y1f2{bottom:306.286560px;}
.y248{bottom:306.360000px;}
.y422{bottom:307.719000px;}
.y449{bottom:307.777500px;}
.y468{bottom:307.782000px;}
.y436{bottom:307.786500px;}
.y21a{bottom:308.160000px;}
.y1c6{bottom:308.257200px;}
.y338{bottom:309.060000px;}
.y263{bottom:309.780000px;}
.y1eb{bottom:309.997440px;}
.y48d{bottom:310.320000px;}
.y4eb{bottom:311.935500px;}
.y40d{bottom:311.940000px;}
.y371{bottom:313.380000px;}
.y31c{bottom:313.560000px;}
.y548{bottom:314.640000px;}
.y147{bottom:315.195840px;}
.y2a0{bottom:315.720000px;}
.yae{bottom:316.075500px;}
.y39b{bottom:316.836000px;}
.y4a4{bottom:317.632500px;}
.y4c8{bottom:317.659500px;}
.y50a{bottom:317.664000px;}
.y3f4{bottom:317.673000px;}
.y481{bottom:317.677500px;}
.y3de{bottom:317.695500px;}
.y171{bottom:319.236480px;}
.yb0{bottom:319.860000px;}
.y121{bottom:320.040000px;}
.y1bd{bottom:321.136560px;}
.y1de{bottom:321.177600px;}
.yd8{bottom:322.380000px;}
.y68{bottom:322.733520px;}
.y597{bottom:322.755840px;}
.y421{bottom:323.203500px;}
.y448{bottom:323.262000px;}
.y467{bottom:323.266500px;}
.y435{bottom:323.271000px;}
.y247{bottom:323.280000px;}
.y582{bottom:324.895500px;}
.yf4{bottom:325.440000px;}
.y56e{bottom:326.160000px;}
.y3bd{bottom:326.691000px;}
.yd6{bottom:326.700000px;}
.y4ea{bottom:327.595500px;}
.y40c{bottom:327.600000px;}
.y8d{bottom:328.327920px;}
.y53{bottom:328.853520px;}
.y2c6{bottom:328.860000px;}
.y370{bottom:329.040000px;}
.y219{bottom:330.660000px;}
.yad{bottom:331.735500px;}
.y262{bottom:332.100000px;}
.y39a{bottom:332.358000px;}
.y4a3{bottom:333.117000px;}
.y4c7{bottom:333.144000px;}
.y509{bottom:333.148500px;}
.y3f3{bottom:333.157500px;}
.y480{bottom:333.162000px;}
.y559{bottom:333.171000px;}
.y3dd{bottom:333.180000px;}
.y199{bottom:335.167200px;}
.y110{bottom:336.420000px;}
.y159{bottom:337.722480px;}
.y29f{bottom:338.040000px;}
.y12a{bottom:338.580000px;}
.y420{bottom:338.688000px;}
.y447{bottom:338.746500px;}
.y466{bottom:338.751000px;}
.y434{bottom:338.755500px;}
.y32b{bottom:338.760000px;}
.y2e5{bottom:339.870240px;}
.y581{bottom:340.380000px;}
.y5c8{bottom:340.832880px;}
.y3bc{bottom:342.175500px;}
.y5dc{bottom:342.214560px;}
.y19f{bottom:342.288000px;}
.yd5{bottom:342.360000px;}
.y17f{bottom:342.900000px;}
.y4e9{bottom:343.080000px;}
.y42{bottom:344.093040px;}
.y1f1{bottom:344.258640px;}
.y76{bottom:345.240000px;}
.y246{bottom:345.600000px;}
.y2c5{bottom:345.780000px;}
.y84{bottom:345.782160px;}
.y1c5{bottom:346.229280px;}
.y1a2{bottom:346.320000px;}
.y28{bottom:346.595760px;}
.yd7{bottom:346.860000px;}
.yac{bottom:347.220000px;}
.y399{bottom:347.880000px;}
.y1ea{bottom:347.969520px;}
.y4a2{bottom:348.601500px;}
.y4c6{bottom:348.628500px;}
.y508{bottom:348.633000px;}
.y3f2{bottom:348.642000px;}
.y47f{bottom:348.646500px;}
.y558{bottom:348.655500px;}
.yaf{bottom:351.720000px;}
.y218{bottom:352.980000px;}
.y41f{bottom:354.172500px;}
.y446{bottom:354.231000px;}
.y465{bottom:354.235500px;}
.y433{bottom:354.240000px;}
.y261{bottom:354.420000px;}
.y350{bottom:355.320000px;}
.yf3{bottom:357.120000px;}
.y170{bottom:357.208560px;}
.y27e{bottom:357.480000px;}
.y3bb{bottom:357.835500px;}
.y3ba{bottom:357.840000px;}
.y1bc{bottom:359.108640px;}
.y1dd{bottom:359.149680px;}
.y539{bottom:360.000000px;}
.y29e{bottom:360.360000px;}
.y67{bottom:360.540000px;}
.y10e{bottom:360.720000px;}
.y596{bottom:360.727920px;}
.y401{bottom:361.260000px;}
.y5a7{bottom:361.800000px;}
.y56d{bottom:362.700000px;}
.y300{bottom:362.733120px;}
.y398{bottom:363.402000px;}
.y4a1{bottom:364.086000px;}
.y4c5{bottom:364.113000px;}
.y507{bottom:364.117500px;}
.y3dc{bottom:364.126500px;}
.y47e{bottom:364.131000px;}
.y53c{bottom:364.135500px;}
.y557{bottom:364.140000px;}
.y52{bottom:366.660000px;}
.y128{bottom:367.380000px;}
.y245{bottom:367.920000px;}
.y2c4{bottom:368.100000px;}
.y41e{bottom:369.832500px;}
.y445{bottom:369.891000px;}
.y464{bottom:369.895500px;}
.y432{bottom:369.900000px;}
.y31b{bottom:370.800000px;}
.yd2{bottom:371.160000px;}
.y146{bottom:371.168640px;}
.y260{bottom:371.340000px;}
.y5b4{bottom:372.600000px;}
.y3b9{bottom:373.320000px;}
.y352{bottom:373.855500px;}
.y580{bottom:374.040000px;}
.y217{bottom:375.300000px;}
.y538{bottom:375.480000px;}
.y158{bottom:375.694560px;}
.ya5{bottom:376.020000px;}
.y4d3{bottom:376.740000px;}
.y2e4{bottom:377.842320px;}
.y5c7{bottom:378.639360px;}
.y397{bottom:378.924000px;}
.y10f{bottom:379.260000px;}
.y4a0{bottom:379.746000px;}
.y40a{bottom:379.768500px;}
.y4c4{bottom:379.773000px;}
.y506{bottom:379.777500px;}
.y3db{bottom:379.786500px;}
.y47d{bottom:379.791000px;}
.y53b{bottom:379.795500px;}
.y556{bottom:379.800000px;}
.y5db{bottom:380.186640px;}
.y19e{bottom:380.260080px;}
.y36e{bottom:381.600000px;}
.y41{bottom:382.065120px;}
.y1f0{bottom:382.230720px;}
.y29d{bottom:382.860000px;}
.y1c4{bottom:384.035760px;}
.y27{bottom:384.567840px;}
.y41d{bottom:385.317000px;}
.y4b5{bottom:385.371000px;}
.y444{bottom:385.375500px;}
.y463{bottom:385.380000px;}
.y129{bottom:385.920000px;}
.y27d{bottom:386.280000px;}
.yf2{bottom:388.980000px;}
.y351{bottom:389.340000px;}
.y244{bottom:390.240000px;}
.y2c3{bottom:390.420000px;}
.y535{bottom:390.960000px;}
.y4b2{bottom:391.140000px;}
.y25f{bottom:393.660000px;}
.y396{bottom:394.446000px;}
.ya9{bottom:394.560000px;}
.y16f{bottom:395.180640px;}
.y49f{bottom:395.230500px;}
.y4e6{bottom:395.235000px;}
.y555{bottom:395.244000px;}
.y525{bottom:395.248500px;}
.y4c3{bottom:395.257500px;}
.y505{bottom:395.262000px;}
.y3f1{bottom:395.271000px;}
.y47c{bottom:395.275500px;}
.y53a{bottom:395.280000px;}
.y1dc{bottom:397.121760px;}
.y216{bottom:397.620000px;}
.y83{bottom:398.161440px;}
.y595{bottom:398.700000px;}
.y56c{bottom:399.420000px;}
.y2f1{bottom:399.464640px;}
.y29c{bottom:399.780000px;}
.y17e{bottom:400.231440px;}
.y2ff{bottom:400.705200px;}
.y41c{bottom:400.801500px;}
.y4b4{bottom:400.855500px;}
.y443{bottom:400.860000px;}
.yd1{bottom:403.020000px;}
.y75{bottom:403.380000px;}
.y1e9{bottom:403.942320px;}
.y3b5{bottom:406.980000px;}
.y10b{bottom:408.060000px;}
.y27c{bottom:408.600000px;}
.y145{bottom:409.140720px;}
.y331{bottom:409.860000px;}
.y395{bottom:409.968000px;}
.y5b3{bottom:410.580000px;}
.y49e{bottom:410.715000px;}
.y4e5{bottom:410.719500px;}
.y554{bottom:410.728500px;}
.y524{bottom:410.733000px;}
.y409{bottom:410.737500px;}
.y4c2{bottom:410.742000px;}
.y504{bottom:410.746500px;}
.y500{bottom:410.751000px;}
.y3da{bottom:410.755500px;}
.y47b{bottom:410.760000px;}
.y243{bottom:412.560000px;}
.y2c2{bottom:412.740000px;}
.yf0{bottom:413.280000px;}
.y157{bottom:413.501040px;}
.y126{bottom:414.720000px;}
.y1bb{bottom:415.081440px;}
.y36c{bottom:415.255500px;}
.y2e3{bottom:415.814400px;}
.y25e{bottom:416.160000px;}
.y41b{bottom:416.286000px;}
.y461{bottom:416.304000px;}
.y4b3{bottom:416.340000px;}
.y5c6{bottom:416.611440px;}
.y8c{bottom:417.619440px;}
.y333{bottom:417.780000px;}
.y5da{bottom:418.158720px;}
.y19d{bottom:418.232160px;}
.y66{bottom:418.762080px;}
.y5a6{bottom:418.860000px;}
.y34f{bottom:419.940000px;}
.y40{bottom:420.037200px;}
.yd0{bottom:421.380000px;}
.y29b{bottom:422.100000px;}
.y26{bottom:422.374320px;}
.ya8{bottom:423.360000px;}
.y51{bottom:424.800000px;}
.y215{bottom:425.340000px;}
.y49d{bottom:426.199500px;}
.y4e4{bottom:426.204000px;}
.y553{bottom:426.213000px;}
.y523{bottom:426.217500px;}
.y408{bottom:426.222000px;}
.y4c1{bottom:426.226500px;}
.y503{bottom:426.231000px;}
.y4ff{bottom:426.235500px;}
.ya7{bottom:426.240000px;}
.y10d{bottom:426.595500px;}
.y30d{bottom:426.967200px;}
.y31a{bottom:428.940000px;}
.y36b{bottom:430.740000px;}
.y27b{bottom:430.920000px;}
.yf1{bottom:431.820000px;}
.y41a{bottom:431.946000px;}
.y460{bottom:431.964000px;}
.y57f{bottom:432.540000px;}
.y16e{bottom:433.152720px;}
.y127{bottom:433.260000px;}
.y4ce{bottom:434.700000px;}
.y242{bottom:435.060000px;}
.y1db{bottom:435.093840px;}
.y34e{bottom:435.600000px;}
.y56b{bottom:436.140000px;}
.y36d{bottom:437.400000px;}
.y17d{bottom:438.037920px;}
.y25d{bottom:438.480000px;}
.y2fe{bottom:438.677280px;}
.y194{bottom:440.008560px;}
.y394{bottom:440.937000px;}
.y3b7{bottom:440.995500px;}
.y49c{bottom:441.859500px;}
.y4e3{bottom:441.864000px;}
.y552{bottom:441.873000px;}
.y522{bottom:441.877500px;}
.y4c0{bottom:441.886500px;}
.y502{bottom:441.891000px;}
.y4fe{bottom:441.895500px;}
.y3d9{bottom:441.900000px;}
.y10c{bottom:442.080000px;}
.y29a{bottom:444.420000px;}
.y474{bottom:444.600000px;}
.y419{bottom:447.430500px;}
.y45f{bottom:447.448500px;}
.y214{bottom:447.840000px;}
.y32e{bottom:448.375500px;}
.y5b2{bottom:448.560000px;}
.ycd{bottom:450.360000px;}
.y156{bottom:451.473120px;}
.y1ba{bottom:453.053520px;}
.y2e2{bottom:453.786480px;}
.y5c5{bottom:454.583520px;}
.y9e{bottom:455.220000px;}
.y2f0{bottom:455.437440px;}
.y8b{bottom:455.591520px;}
.y5d9{bottom:455.965200px;}
.y19c{bottom:456.038640px;}
.y393{bottom:456.480000px;}
.y594{bottom:456.840000px;}
.y49b{bottom:457.344000px;}
.y4e2{bottom:457.348500px;}
.y551{bottom:457.357500px;}
.y521{bottom:457.362000px;}
.y407{bottom:457.366500px;}
.y4bf{bottom:457.371000px;}
.y501{bottom:457.375500px;}
.y4fd{bottom:457.380000px;}
.y2c1{bottom:457.560000px;}
.y3f{bottom:458.009280px;}
.y1e8{bottom:459.915120px;}
.y42e{bottom:460.080000px;}
.y25{bottom:460.346400px;}
.y365{bottom:460.440000px;}
.ye7{bottom:460.620000px;}
.y74{bottom:460.636560px;}
.y25c{bottom:460.800000px;}
.y144{bottom:461.520000px;}
.y57e{bottom:461.880000px;}
.y125{bottom:462.060000px;}
.y241{bottom:462.780000px;}
.y418{bottom:462.915000px;}
.y45e{bottom:462.933000px;}
.y479{bottom:462.951000px;}
.y32d{bottom:463.860000px;}
.y124{bottom:464.935500px;}
.y348{bottom:465.120000px;}
.y299{bottom:466.740000px;}
.y533{bottom:468.720000px;}
.y213{bottom:470.160000px;}
.y32f{bottom:470.520000px;}
.y10a{bottom:470.880000px;}
.y16d{bottom:471.124800px;}
.y392{bottom:472.023000px;}
.y3b6{bottom:472.140000px;}
.y49a{bottom:472.828500px;}
.y4e1{bottom:472.833000px;}
.y550{bottom:472.842000px;}
.y4dc{bottom:472.846500px;}
.y406{bottom:472.851000px;}
.y3d7{bottom:472.855500px;}
.y4fc{bottom:472.860000px;}
.y1da{bottom:472.900320px;}
.ya4{bottom:473.580000px;}
.y3e7{bottom:475.560000px;}
.y65{bottom:476.010000px;}
.y2fd{bottom:476.483760px;}
.y5a5{bottom:477.000000px;}
.y193{bottom:477.980640px;}
.y417{bottom:478.399500px;}
.y45d{bottom:478.417500px;}
.y478{bottom:478.435500px;}
.y368{bottom:478.795500px;}
.yef{bottom:479.160000px;}
.y240{bottom:479.700000px;}
.y123{bottom:480.595500px;}
.y50{bottom:482.040000px;}
.y30c{bottom:482.940000px;}
.y25b{bottom:483.120000px;}
.y34b{bottom:483.651000px;}
.y455{bottom:484.020000px;}
.ye3{bottom:484.920000px;}
.y2c0{bottom:485.280000px;}
.y319{bottom:486.180000px;}
.y82{bottom:487.463760px;}
.y391{bottom:487.566000px;}
.y499{bottom:488.313000px;}
.y4e0{bottom:488.317500px;}
.y54f{bottom:488.326500px;}
.y4db{bottom:488.331000px;}
.y405{bottom:488.335500px;}
.y3d6{bottom:488.340000px;}
.y298{bottom:489.060000px;}
.y109{bottom:489.420000px;}
.y155{bottom:489.445200px;}
.y1b9{bottom:490.932720px;}
.y578{bottom:491.040000px;}
.y56a{bottom:491.220000px;}
.y23f{bottom:491.580000px;}
.y212{bottom:492.480000px;}
.y5c4{bottom:492.555600px;}
.y27a{bottom:492.660000px;}
.y324{bottom:493.560000px;}
.y8a{bottom:493.563600px;}
.ycb{bottom:493.915500px;}
.y5d8{bottom:493.937280px;}
.y19b{bottom:494.010720px;}
.y3ee{bottom:494.059500px;}
.y45c{bottom:494.077500px;}
.y477{bottom:494.095500px;}
.y367{bottom:494.455500px;}
.y1ef{bottom:495.981360px;}
.y122{bottom:496.080000px;}
.ya0{bottom:498.060000px;}
.y24{bottom:498.318480px;}
.y73{bottom:498.608640px;}
.y34a{bottom:499.135500px;}
.y32a{bottom:499.306500px;}
.y37b{bottom:499.680000px;}
.ya1{bottom:502.560000px;}
.y498{bottom:503.973000px;}
.y4df{bottom:503.977500px;}
.y54e{bottom:503.986500px;}
.y4da{bottom:503.991000px;}
.y404{bottom:503.995500px;}
.y3d5{bottom:504.000000px;}
.y3b0{bottom:505.800000px;}
.y2e1{bottom:506.165760px;}
.y4fa{bottom:506.700000px;}
.y2bf{bottom:507.600000px;}
.yea{bottom:507.960000px;}
.y16c{bottom:508.931280px;}
.yca{bottom:509.400000px;}
.y3ed{bottom:509.544000px;}
.y45b{bottom:509.562000px;}
.y476{bottom:509.580000px;}
.y366{bottom:509.940000px;}
.y25a{bottom:510.840000px;}
.y1d9{bottom:510.872400px;}
.y2ef{bottom:511.410240px;}
.y297{bottom:511.560000px;}
.ycc{bottom:513.900000px;}
.y3e{bottom:513.982080px;}
.y593{bottom:514.088640px;}
.y3a1{bottom:514.260000px;}
.y2fc{bottom:514.455840px;}
.y349{bottom:514.620000px;}
.y329{bottom:514.791000px;}
.y23e{bottom:514.980000px;}
.y141{bottom:515.160000px;}
.y1e7{bottom:515.722320px;}
.y192{bottom:515.952720px;}
.y106{bottom:518.220000px;}
.y390{bottom:518.535000px;}
.y497{bottom:519.457500px;}
.y4de{bottom:519.462000px;}
.y54d{bottom:519.471000px;}
.y4d9{bottom:519.475500px;}
.y403{bottom:519.480000px;}
.y4f{bottom:520.020000px;}
.y3b4{bottom:524.326500px;}
.y11c{bottom:524.880000px;}
.y3ec{bottom:525.028500px;}
.y45a{bottom:525.046500px;}
.y537{bottom:525.060000px;}
.y81{bottom:525.435840px;}
.yee{bottom:526.491000px;}
.y9c{bottom:526.860000px;}
.y154{bottom:527.417280px;}
.y1b8{bottom:528.904800px;}
.y2be{bottom:529.920000px;}
.y328{bottom:530.451000px;}
.y5c3{bottom:530.527680px;}
.y48f{bottom:530.820000px;}
.y211{bottom:531.720000px;}
.y5d7{bottom:531.909360px;}
.y64{bottom:531.982800px;}
.y3ac{bottom:532.606500px;}
.y259{bottom:533.160000px;}
.y38f{bottom:534.078000px;}
.y5a4{bottom:534.247920px;}
.y495{bottom:534.942000px;}
.y4dd{bottom:534.946500px;}
.y54c{bottom:534.955500px;}
.y4d8{bottom:534.960000px;}
.y23{bottom:536.290560px;}
.y23d{bottom:537.300000px;}
.y3cb{bottom:537.660000px;}
.yc5{bottom:538.200000px;}
.y296{bottom:539.280000px;}
.y3b3{bottom:539.811000px;}
.y3eb{bottom:540.513000px;}
.y459{bottom:540.531000px;}
.y57d{bottom:540.540000px;}
.y30b{bottom:541.080000px;}
.yed{bottom:541.975500px;}
.y120{bottom:543.406500px;}
.y318{bottom:544.320000px;}
.y327{bottom:545.935500px;}
.y89{bottom:545.942880px;}
.y2bd{bottom:546.840000px;}
.y16b{bottom:546.903360px;}
.y3ab{bottom:548.091000px;}
.y140{bottom:549.360000px;}
.y38e{bottom:549.621000px;}
.y100{bottom:550.080000px;}
.y494{bottom:550.426500px;}
.y4d7{bottom:550.431000px;}
.y54b{bottom:550.440000px;}
.y3d{bottom:551.788560px;}
.y17c{bottom:551.954160px;}
.y2fb{bottom:552.427920px;}
.y400{bottom:553.140000px;}
.y191{bottom:553.924800px;}
.y210{bottom:554.040000px;}
.y569{bottom:554.220000px;}
.y72{bottom:554.581440px;}
.y3b2{bottom:555.295500px;}
.y258{bottom:555.660000px;}
.y3d2{bottom:556.173000px;}
.y458{bottom:556.191000px;}
.y57c{bottom:556.200000px;}
.yec{bottom:557.460000px;}
.y4e{bottom:558.000000px;}
.yc7{bottom:558.180000px;}
.y99{bottom:558.720000px;}
.y11f{bottom:558.891000px;}
.y23c{bottom:559.620000px;}
.y326{bottom:561.420000px;}
.y295{bottom:561.600000px;}
.y416{bottom:561.780000px;}
.yc8{bottom:562.680000px;}
.y80{bottom:563.407920px;}
.y3aa{bottom:563.751000px;}
.y5b1{bottom:563.760000px;}
.y386{bottom:565.164000px;}
.y153{bottom:565.389360px;}
.y493{bottom:566.086500px;}
.y4d6{bottom:566.091000px;}
.y54a{bottom:566.100000px;}
.y1d8{bottom:566.845200px;}
.y1b7{bottom:566.876880px;}
.y2ee{bottom:567.383040px;}
.y5c2{bottom:568.334160px;}
.y105{bottom:568.431000px;}
.y51b{bottom:568.800000px;}
.y2bc{bottom:569.160000px;}
.y5d6{bottom:569.881440px;}
.y63{bottom:569.954880px;}
.y592{bottom:570.061440px;}
.y3b1{bottom:570.780000px;}
.y3d1{bottom:571.657500px;}
.y457{bottom:571.675500px;}
.y1e6{bottom:571.695120px;}
.y5a3{bottom:572.220000px;}
.y22{bottom:574.262640px;}
.y11e{bottom:574.375500px;}
.y20f{bottom:576.360000px;}
.y257{bottom:577.980000px;}
.y3a9{bottom:579.235500px;}
.y15d{bottom:579.990240px;}
.y385{bottom:580.648500px;}
.y364{bottom:581.035500px;}
.y139{bottom:581.040000px;}
.y492{bottom:581.571000px;}
.y4d5{bottom:581.575500px;}
.ye8{bottom:581.760000px;}
.y12{bottom:582.677280px;}
.y294{bottom:583.920000px;}
.y104{bottom:584.091000px;}
.y16a{bottom:584.875440px;}
.y2d8{bottom:585.902160px;}
.ye9{bottom:586.260000px;}
.yc1{bottom:586.980000px;}
.y3ea{bottom:587.142000px;}
.y520{bottom:587.151000px;}
.y57b{bottom:587.155500px;}
.y456{bottom:587.160000px;}
.y23b{bottom:587.340000px;}
.y3c{bottom:589.760640px;}
.y11d{bottom:589.860000px;}
.y17b{bottom:589.926240px;}
.y94{bottom:590.400000px;}
.ye5{bottom:590.755500px;}
.y568{bottom:590.940000px;}
.y321{bottom:591.120000px;}
.y2bb{bottom:591.660000px;}
.y190{bottom:591.731280px;}
.y71{bottom:592.553520px;}
.y347{bottom:593.811000px;}
.y3a8{bottom:594.720000px;}
.y4d{bottom:595.980000px;}
.y384{bottom:596.133000px;}
.y363{bottom:596.695500px;}
.y496{bottom:597.055500px;}
.y4d4{bottom:597.060000px;}
.y30a{bottom:598.320000px;}
.y20e{bottom:598.860000px;}
.y13f{bottom:599.566500px;}
.y103{bottom:599.575500px;}
.y547{bottom:599.760000px;}
.y256{bottom:600.300000px;}
.y293{bottom:600.840000px;}
.y7f{bottom:601.380000px;}
.y317{bottom:601.552800px;}
.y3d0{bottom:602.626500px;}
.y51f{bottom:602.635500px;}
.y57a{bottom:602.640000px;}
.y152{bottom:603.361440px;}
.y3ae{bottom:604.620000px;}
.y1d7{bottom:604.817280px;}
.y2ed{bottom:605.189520px;}
.ye4{bottom:606.240000px;}
.y5c1{bottom:606.306240px;}
.y5d5{bottom:607.853520px;}
.y591{bottom:607.867920px;}
.y62{bottom:607.926960px;}
.y97{bottom:608.935500px;}
.y346{bottom:609.295500px;}
.y323{bottom:609.475500px;}
.y23a{bottom:609.660000px;}
.ye6{bottom:610.740000px;}
.y38d{bottom:611.676000px;}
.y383{bottom:611.793000px;}
.y566{bottom:612.000720px;}
.y21{bottom:612.069120px;}
.y362{bottom:612.180000px;}
.y491{bottom:612.540000px;}
.y2ba{bottom:613.980000px;}
.yc3{bottom:614.340000px;}
.y13e{bottom:615.051000px;}
.y102{bottom:615.060000px;}
.y255{bottom:617.220000px;}
.y15c{bottom:617.962320px;}
.y3cf{bottom:618.286500px;}
.y51e{bottom:618.295500px;}
.y579{bottom:618.300000px;}
.yc4{bottom:618.840000px;}
.y567{bottom:620.100000px;}
.y11{bottom:620.483760px;}
.y20d{bottom:621.180000px;}
.y5b0{bottom:621.900000px;}
.y1b6{bottom:622.849680px;}
.y3af{bottom:622.980000px;}
.y292{bottom:623.160000px;}
.y96{bottom:624.420000px;}
.y322{bottom:624.960000px;}
.y3a7{bottom:625.837500px;}
.y38c{bottom:627.219000px;}
.y382{bottom:627.277500px;}
.y1e5{bottom:627.667920px;}
.y3b{bottom:627.732720px;}
.y490{bottom:628.200000px;}
.y5a2{bottom:628.207920px;}
.y18f{bottom:629.703360px;}
.y70{bottom:630.360000px;}
.y13d{bottom:630.535500px;}
.y4d2{bottom:630.900000px;}
.y239{bottom:632.160000px;}
.y3e9{bottom:633.771000px;}
.y51d{bottom:633.780000px;}
.ye1{bottom:635.040000px;}
.y2b9{bottom:636.300000px;}
.y11b{bottom:637.200000px;}
.y2d7{bottom:638.281440px;}
.y254{bottom:639.540000px;}
.y345{bottom:640.260000px;}
.y169{bottom:640.848240px;}
.y151{bottom:641.167920px;}
.y3a6{bottom:641.322000px;}
.y381{bottom:642.762000px;}
.y1d6{bottom:642.789360px;}
.ybf{bottom:643.140000px;}
.y20c{bottom:643.500000px;}
.yfd{bottom:643.860000px;}
.y5c0{bottom:644.278320px;}
.y5d4{bottom:645.660000px;}
.y61{bottom:645.733440px;}
.y590{bottom:645.840000px;}
.y13c{bottom:646.195500px;}
.y1c3{bottom:647.704080px;}
.y2fa{bottom:648.540000px;}
.y3ce{bottom:649.255500px;}
.y51c{bottom:649.260000px;}
.y20{bottom:650.041200px;}
.y574{bottom:651.960000px;}
.y4c{bottom:654.120000px;}
.y238{bottom:654.480000px;}
.y31f{bottom:654.660000px;}
.y15b{bottom:655.934400px;}
.y309{bottom:656.460000px;}
.y3a5{bottom:656.806500px;}
.y3ad{bottom:656.820000px;}
.y316{bottom:657.360000px;}
.y380{bottom:658.246500px;}
.y38b{bottom:658.305000px;}
.y10{bottom:658.455840px;}
.y2b8{bottom:658.620000px;}
.y7e{bottom:659.520000px;}
.y1b5{bottom:660.821760px;}
.y2ec{bottom:661.162320px;}
.yc0{bottom:661.680000px;}
.y253{bottom:661.860000px;}
.yff{bottom:662.391000px;}
.y291{bottom:663.840000px;}
.y3cd{bottom:664.740000px;}
.y360{bottom:664.920000px;}
.y1e4{bottom:665.640000px;}
.y3a{bottom:665.704800px;}
.y20a{bottom:665.820000px;}
.y11a{bottom:666.180000px;}
.y577{bottom:670.500000px;}
.y237{bottom:671.400000px;}
.y3a4{bottom:672.291000px;}
.y361{bottom:672.660000px;}
.y38a{bottom:673.848000px;}
.y37f{bottom:673.906500px;}
.y209{bottom:677.700000px;}
.ye0{bottom:677.875500px;}
.y168{bottom:678.820320px;}
.y150{bottom:679.140000px;}
.y1d5{bottom:680.761440px;}
.y5bf{bottom:682.250400px;}
.y236{bottom:683.280000px;}
.y60{bottom:683.705520px;}
.y252{bottom:684.360000px;}
.y18e{bottom:685.676160px;}
.y576{bottom:685.971000px;}
.y290{bottom:686.160000px;}
.y2b7{bottom:686.340000px;}
.y3a3{bottom:687.951000px;}
.y1f{bottom:688.013280px;}
.y6f{bottom:688.500000px;}
.y37e{bottom:689.391000px;}
.ybe{bottom:690.480000px;}
.y343{bottom:693.000000px;}
.ydf{bottom:693.360000px;}
.y279{bottom:693.720000px;}
.y93{bottom:693.740880px;}
.yf{bottom:696.427920px;}
.y119{bottom:697.860000px;}
.y3c9{bottom:698.580000px;}
.y1b4{bottom:698.793840px;}
.y208{bottom:701.100000px;}
.y575{bottom:701.455500px;}
.y344{bottom:703.435500px;}
.y39{bottom:703.676880px;}
.y58f{bottom:703.980000px;}
.y37d{bottom:704.875500px;}
.y389{bottom:704.934000px;}
.y2f9{bottom:705.780000px;}
.y235{bottom:706.680000px;}
.y28f{bottom:708.660000px;}
.y4b{bottom:713.520000px;}
.y308{bottom:713.707920px;}
.y315{bottom:715.500000px;}
.y278{bottom:716.040000px;}
.y167{bottom:716.792400px;}
.y3ca{bottom:716.940000px;}
.y2eb{bottom:717.135120px;}
.y1d4{bottom:718.567920px;}
.y7d{bottom:718.920000px;}
.y5be{bottom:720.222480px;}
.y37c{bottom:720.360000px;}
.y388{bottom:720.477000px;}
.y5f{bottom:721.677600px;}
.y5a1{bottom:721.980000px;}
.ybb{bottom:722.340000px;}
.y207{bottom:723.420000px;}
.y18d{bottom:723.648240px;}
.y35f{bottom:725.400000px;}
.y234{bottom:729.000000px;}
.y28e{bottom:730.980000px;}
.y2b6{bottom:731.160000px;}
.y92{bottom:731.712960px;}
.ye{bottom:734.400000px;}
.y387{bottom:736.020000px;}
.y14f{bottom:737.280000px;}
.y1aa{bottom:738.222480px;}
.y277{bottom:738.360000px;}
.ybd{bottom:740.700000px;}
.y38{bottom:741.483360px;}
.y17a{bottom:741.648960px;}
.y1e{bottom:743.986080px;}
.y6e{bottom:745.740000px;}
.y28d{bottom:747.900000px;}
.y341{bottom:748.620000px;}
.y3c8{bottom:750.780000px;}
.y307{bottom:751.680000px;}
.y2b5{bottom:753.480000px;}
.y166{bottom:754.598880px;}
.y1b3{bottom:754.601040px;}
.y2ea{bottom:755.107200px;}
.y342{bottom:755.460000px;}
.ybc{bottom:756.360000px;}
.y1d3{bottom:756.540000px;}
.y233{bottom:756.720000px;}
.y5bd{bottom:758.028960px;}
.y5e{bottom:759.649680px;}
.y5a0{bottom:759.960000px;}
.y276{bottom:760.860000px;}
.y58e{bottom:761.227920px;}
.yd{bottom:761.464800px;}
.y18c{bottom:761.620320px;}
.y2f8{bottom:763.920000px;}
.y205{bottom:768.060000px;}
.y91{bottom:769.685040px;}
.y28c{bottom:770.220000px;}
.y4a{bottom:770.760000px;}
.y314{bottom:774.900000px;}
.y2b4{bottom:775.800000px;}
.y1a9{bottom:776.028960px;}
.y2d6{bottom:776.530800px;}
.y7c{bottom:778.320000px;}
.y232{bottom:779.040000px;}
.y37{bottom:779.455440px;}
.y179{bottom:779.621040px;}
.y1d{bottom:781.958160px;}
.y275{bottom:783.180000px;}
.y201{bottom:790.560000px;}
.y28a{bottom:792.540000px;}
.y165{bottom:792.570960px;}
.y1b2{bottom:792.573120px;}
.y2b3{bottom:792.720000px;}
.y14e{bottom:794.520000px;}
.y5af{bottom:794.527920px;}
.y5bc{bottom:796.001040px;}
.y5d{bottom:797.621760px;}
.y2d5{bottom:798.307200px;}
.y58d{bottom:799.200000px;}
.y18b{bottom:799.426800px;}
.yc{bottom:801.234180px;}
.y231{bottom:801.360000px;}
.y204{bottom:802.440000px;}
.y6d{bottom:803.880000px;}
.y28b{bottom:804.420000px;}
.y274{bottom:805.500000px;}
.y306{bottom:809.820000px;}
.y2e9{bottom:811.080000px;}
.y1a8{bottom:814.001040px;}
.y1d2{bottom:814.680000px;}
.y2b2{bottom:815.040000px;}
.y59f{bottom:815.940000px;}
.y36{bottom:817.427520px;}
.y1c{bottom:819.764640px;}
.y2d4{bottom:820.083600px;}
.y2f7{bottom:820.980000px;}
.y230{bottom:823.860000px;}
.y200{bottom:825.660000px;}
.y49{bottom:826.567200px;}
.y288{bottom:827.820000px;}
.y164{bottom:830.543040px;}
.y1b1{bottom:830.545200px;}
.y14d{bottom:832.499280px;}
.y5ae{bottom:832.500000px;}
.y273{bottom:833.220000px;}
.y5bb{bottom:833.973120px;}
.y313{bottom:834.300000px;}
.y5c{bottom:835.428240px;}
.y58c{bottom:837.172080px;}
.y2b1{bottom:837.360000px;}
.y18a{bottom:837.398880px;}
.y289{bottom:839.700000px;}
.y22f{bottom:840.780000px;}
.yb{bottom:840.823200px;}
.y2d3{bottom:841.860000px;}
.y1ff{bottom:848.160000px;}
.y1a7{bottom:851.973120px;}
.y59e{bottom:853.935120px;}
.y35{bottom:855.399600px;}
.y272{bottom:855.540000px;}
.y1b{bottom:857.736720px;}
.y2b0{bottom:859.860000px;}
.y6c{bottom:861.120000px;}
.y22e{bottom:863.100000px;}
.y2d2{bottom:864.720000px;}
.y163{bottom:868.515120px;}
.y1b0{bottom:868.517280px;}
.y2e8{bottom:869.220000px;}
.y14c{bottom:870.471360px;}
.y1fe{bottom:870.480000px;}
.y1d1{bottom:871.920000px;}
.y5ba{bottom:871.945200px;}
.y5b{bottom:873.400320px;}
.y58b{bottom:874.978560px;}
.y189{bottom:875.370960px;}
.y271{bottom:877.860000px;}
.y2f6{bottom:879.120000px;}
.ya{bottom:880.592580px;}
.y2af{bottom:882.180000px;}
.y48{bottom:882.540000px;}
.y22d{bottom:885.420000px;}
.y143{bottom:889.945200px;}
.y5ad{bottom:890.640000px;}
.y59d{bottom:891.907200px;}
.y1fd{bottom:892.800000px;}
.y178{bottom:893.371680px;}
.y312{bottom:893.700000px;}
.y1a{bottom:895.708800px;}
.y270{bottom:900.360000px;}
.y2ae{bottom:904.500000px;}
.y162{bottom:906.487200px;}
.y1af{bottom:906.489360px;}
.y22c{bottom:907.740000px;}
.y14b{bottom:908.277840px;}
.y5b9{bottom:909.917280px;}
.y34{bottom:911.372400px;}
.y198{bottom:912.796560px;}
.y188{bottom:913.343040px;}
.y58a{bottom:915.112800px;}
.y1fb{bottom:915.120000px;}
.y26f{bottom:917.280000px;}
.y6b{bottom:919.260000px;}
.y9{bottom:920.181600px;}
.y2e7{bottom:926.280000px;}
.y142{bottom:927.917280px;}
.y1d0{bottom:930.060000px;}
.y177{bottom:931.343760px;}
.y2ad{bottom:932.220000px;}
.y19{bottom:933.680880px;}
.y2f5{bottom:936.360000px;}
.y26e{bottom:939.600000px;}
.y47{bottom:940.680000px;}
.y1fa{bottom:944.100000px;}
.y161{bottom:944.293680px;}
.y1ae{bottom:944.295840px;}
.y59c{bottom:947.880000px;}
.y5b8{bottom:947.889360px;}
.y33{bottom:949.344480px;}
.y5ac{bottom:950.040000px;}
.y197{bottom:950.768640px;}
.y187{bottom:951.315120px;}
.y22b{bottom:952.560000px;}
.y311{bottom:953.100000px;}
.y589{bottom:954.360000px;}
.y2ac{bottom:954.540000px;}
.y8{bottom:959.770620px;}
.y1f8{bottom:961.560000px;}
.y26d{bottom:961.920000px;}
.y90{bottom:965.889360px;}
.y14a{bottom:966.420000px;}
.y18{bottom:971.652960px;}
.y26c{bottom:973.800000px;}
.y6a{bottom:976.500000px;}
.y2ab{bottom:976.860000px;}
.y22a{bottom:980.280000px;}
.y160{bottom:982.265760px;}
.y1ad{bottom:982.267920px;}
.y2e6{bottom:984.420000px;}
.y88{bottom:985.695120px;}
.y5b7{bottom:985.695840px;}
.y32{bottom:987.150960px;}
.y5a{bottom:987.316560px;}
.y1cf{bottom:987.317280px;}
.y196{bottom:988.740720px;}
.y2f4{bottom:994.500000px;}
.y46{bottom:997.927920px;}
.y2aa{bottom:999.360000px;}
.y7{bottom:999.540000px;}
.y229{bottom:1002.600000px;}
.y8f{bottom:1003.695840px;}
.y59b{bottom:1006.020000px;}
.y186{bottom:1007.287920px;}
.y17{bottom:1009.625040px;}
.y310{bottom:1012.500000px;}
.y2a9{bottom:1016.280000px;}
.y15f{bottom:1020.237840px;}
.y1ac{bottom:1020.240000px;}
.y149{bottom:1023.660000px;}
.y5b6{bottom:1023.667920px;}
.y228{bottom:1024.920000px;}
.y31{bottom:1025.123040px;}
.y59{bottom:1025.288640px;}
.y1ce{bottom:1025.289360px;}
.y69{bottom:1034.640000px;}
.y6{bottom:1035.720000px;}
.y45{bottom:1035.900000px;}
.y2a8{bottom:1038.600000px;}
.y2d1{bottom:1039.320000px;}
.y195{bottom:1041.120000px;}
.y305{bottom:1041.660000px;}
.y87{bottom:1041.667920px;}
.y227{bottom:1041.840000px;}
.y185{bottom:1045.094400px;}
.y16{bottom:1047.431520px;}
.y2f3{bottom:1053.900000px;}
.y2a6{bottom:1061.640000px;}
.y5d3{bottom:1062.912960px;}
.y30{bottom:1063.095120px;}
.y1cd{bottom:1063.095840px;}
.y2d0{bottom:1063.260000px;}
.y226{bottom:1064.160000px;}
.y5{bottom:1066.870620px;}
.y2cf{bottom:1069.200000px;}
.y30f{bottom:1071.900000px;}
.y15e{bottom:1078.380000px;}
.y86{bottom:1079.640000px;}
.y148{bottom:1081.800000px;}
.y15{bottom:1085.403600px;}
.y2a5{bottom:1085.760000px;}
.y225{bottom:1086.660000px;}
.y2a4{bottom:1091.520000px;}
.y44{bottom:1093.860000px;}
.y5d2{bottom:1100.885040px;}
.y2f{bottom:1101.067200px;}
.y1cc{bottom:1101.067920px;}
.y4{bottom:1106.640000px;}
.y14{bottom:1107.180000px;}
.y224{bottom:1108.980000px;}
.y2f2{bottom:1115.280000px;}
.y5b5{bottom:1119.780000px;}
.y223{bottom:1131.300000px;}
.y30e{bottom:1133.280000px;}
.y13{bottom:1136.340000px;}
.y85{bottom:1137.780000px;}
.y5d1{bottom:1138.857120px;}
.y2e{bottom:1139.039280px;}
.y3{bottom:1140.480000px;}
.h37{height:21.600000px;}
.h35{height:22.498500px;}
.h3a{height:22.500000px;}
.h14{height:23.578500px;}
.h1a{height:23.580000px;}
.h20{height:23.760000px;}
.h10{height:30.960000px;}
.h33{height:30.961500px;}
.h12{height:31.138500px;}
.h17{height:31.140000px;}
.h38{height:34.380000px;}
.h39{height:34.560000px;}
.h3e{height:35.100000px;}
.h41{height:36.000000px;}
.h47{height:36.901500px;}
.hf{height:36.966797px;}
.h29{height:37.494141px;}
.h36{height:40.909922px;}
.h3b{height:41.493516px;}
.h3c{height:44.149219px;}
.h1c{height:46.440000px;}
.h15{height:46.620000px;}
.h18{height:46.621500px;}
.h11{height:47.381836px;}
.h45{height:47.399836px;}
.h1f{height:48.060000px;}
.h2{height:48.224531px;}
.ha{height:48.960742px;}
.h9{height:49.289062px;}
.h3{height:52.435898px;}
.h8{height:53.232188px;}
.h44{height:54.000000px;}
.h48{height:54.898500px;}
.h21{height:55.438500px;}
.h1e{height:55.440000px;}
.h5{height:57.668203px;}
.h69{height:57.992344px;}
.h7{height:58.121719px;}
.h34{height:58.124599px;}
.he{height:62.100000px;}
.hb{height:63.109541px;}
.h3d{height:63.175781px;}
.h68{height:63.181541px;}
.h67{height:63.204581px;}
.h13{height:70.920000px;}
.h4b{height:72.900000px;}
.h27{height:77.578500px;}
.h28{height:77.580000px;}
.h2a{height:77.760000px;}
.h16{height:78.481500px;}
.h4{height:82.312734px;}
.h2b{height:93.060000px;}
.h4f{height:93.238500px;}
.h1d{height:93.240000px;}
.h3f{height:95.940000px;}
.h4c{height:100.798500px;}
.h2e{height:102.780000px;}
.h24{height:102.781500px;}
.h23{height:104.220000px;}
.h6{height:105.503555px;}
.h32{height:108.720000px;}
.h65{height:108.721500px;}
.h49{height:115.920000px;}
.h43{height:124.200000px;}
.h30{height:125.638500px;}
.h50{height:139.678500px;}
.h51{height:139.860000px;}
.h31{height:140.580000px;}
.h40{height:153.360000px;}
.h5d{height:155.160000px;}
.h52{height:155.338500px;}
.h66{height:155.340000px;}
.h2f{height:157.498500px;}
.h46{height:169.741500px;}
.h4a{height:174.780000px;}
.h2d{height:181.800000px;}
.h56{height:186.300000px;}
.h5f{height:201.778500px;}
.h1b{height:204.120000px;}
.h2c{height:212.940000px;}
.h54{height:217.438500px;}
.h42{height:225.900000px;}
.h4e{height:232.740000px;}
.h53{height:232.920000px;}
.h58{height:232.921500px;}
.h61{height:235.440000px;}
.h59{height:248.400000px;}
.h19{height:260.280000px;}
.h55{height:279.360000px;}
.h64{height:279.538500px;}
.h60{height:294.840000px;}
.h5a{height:310.320000px;}
.h22{height:311.221500px;}
.h63{height:388.080000px;}
.h5c{height:403.738500px;}
.h5e{height:434.700000px;}
.h26{height:473.221500px;}
.h62{height:481.320000px;}
.h25{height:497.521500px;}
.h4d{height:512.278500px;}
.h5b{height:543.420000px;}
.h57{height:574.378500px;}
.hc{height:893.160000px;}
.hd{height:893.250000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w35{width:50.760000px;}
.w36{width:53.641500px;}
.w25{width:53.818500px;}
.w32{width:54.000000px;}
.w1e{width:54.720000px;}
.w27{width:55.440000px;}
.w21{width:56.160000px;}
.wf{width:57.240000px;}
.w4{width:57.421500px;}
.w6{width:57.598500px;}
.w8{width:57.780000px;}
.w2a{width:59.041500px;}
.w20{width:59.940000px;}
.w2b{width:60.660000px;}
.wa{width:60.840000px;}
.w22{width:61.380000px;}
.w28{width:65.160000px;}
.w1c{width:66.061500px;}
.wd{width:71.461500px;}
.w34{width:73.080000px;}
.w30{width:73.258500px;}
.w39{width:76.140000px;}
.w24{width:88.020000px;}
.w1a{width:88.741500px;}
.w2e{width:91.620000px;}
.wb{width:100.260000px;}
.we{width:111.240000px;}
.w5{width:111.600000px;}
.w2d{width:114.840000px;}
.w29{width:132.660000px;}
.w1d{width:133.380000px;}
.w10{width:136.800000px;}
.w7{width:137.160000px;}
.w9{width:139.320000px;}
.w23{width:150.480000px;}
.w19{width:151.200000px;}
.w18{width:153.900000px;}
.w33{width:171.540000px;}
.w31{width:173.160000px;}
.wc{width:176.580000px;}
.w2c{width:178.920000px;}
.w37{width:181.980000px;}
.w26{width:199.980000px;}
.w1f{width:200.698500px;}
.w38{width:206.100000px;}
.w14{width:301.140000px;}
.w12{width:301.501500px;}
.w17{width:301.860000px;}
.w16{width:372.420000px;}
.w13{width:373.140000px;}
.w11{width:373.500000px;}
.w2f{width:407.160000px;}
.w1b{width:435.780000px;}
.w3a{width:577.080000px;}
.w15{width:675.000000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.w3{width:1262.250000px;}
.w2{width:1262.520000px;}
.x0{left:0.000000px;}
.x43{left:2.880000px;}
.xd{left:4.860000px;}
.x54{left:16.920000px;}
.x5f{left:36.720000px;}
.x57{left:50.940000px;}
.x59{left:58.860000px;}
.x55{left:64.080000px;}
.x2e{left:84.240000px;}
.x5c{left:104.220000px;}
.x5b{left:106.740000px;}
.x2{left:107.999280px;}
.x2a{left:109.080000px;}
.xe{left:113.580000px;}
.x4{left:135.000000px;}
.x5e{left:151.560000px;}
.x27{left:161.969040px;}
.x5d{left:165.060000px;}
.xf{left:166.500000px;}
.x58{left:170.100000px;}
.x10{left:171.720000px;}
.x5{left:216.000000px;}
.x33{left:264.060000px;}
.x6{left:270.000000px;}
.x11{left:278.460000px;}
.x12{left:283.680000px;}
.x44{left:289.080000px;}
.x53{left:291.960000px;}
.x62{left:294.840000px;}
.x30{left:315.000000px;}
.x2d{left:316.980000px;}
.x2f{left:318.240000px;}
.x3{left:332.280000px;}
.x13{left:336.420000px;}
.x14{left:341.640000px;}
.x2c{left:368.100000px;}
.x29{left:387.720000px;}
.x45{left:405.000000px;}
.x5a{left:407.700000px;}
.x34{left:415.980000px;}
.x35{left:421.200000px;}
.x23{left:446.579280px;}
.x15{left:473.940000px;}
.x16{left:479.340000px;}
.x28{left:482.940000px;}
.x2b{left:487.440000px;}
.x46{left:497.700000px;}
.x60{left:499.140000px;}
.x49{left:500.580000px;}
.x63{left:502.020000px;}
.x36{left:505.440000px;}
.x3a{left:510.840000px;}
.x17{left:532.080000px;}
.x18{left:537.300000px;}
.x4a{left:552.600000px;}
.x4b{left:555.480000px;}
.x3b{left:560.880000px;}
.x3c{left:566.100000px;}
.x61{left:576.360000px;}
.x64{left:579.240000px;}
.x19{left:671.760000px;}
.x1a{left:676.980000px;}
.x4c{left:725.220000px;}
.x4d{left:728.100000px;}
.x1b{left:732.960000px;}
.x1c{left:738.360000px;}
.x65{left:757.620000px;}
.x3d{left:762.300000px;}
.x9{left:766.800000px;}
.x1{left:775.980000px;}
.x24{left:783.360000px;}
.xa{left:785.148480px;}
.x4e{left:799.380000px;}
.x4f{left:802.260000px;}
.x3e{left:822.960000px;}
.x3f{left:828.180000px;}
.x1d{left:833.580000px;}
.x1e{left:838.800000px;}
.x50{left:851.220000px;}
.x51{left:854.100000px;}
.x40{left:879.840000px;}
.x41{left:885.060000px;}
.x47{left:905.940000px;}
.x52{left:908.820000px;}
.x37{left:941.940000px;}
.x38{left:947.340000px;}
.x48{left:980.280000px;}
.x56{left:983.160000px;}
.x39{left:1008.720000px;}
.x1f{left:1010.520000px;}
.x42{left:1013.940000px;}
.x20{left:1015.740000px;}
.x26{left:1071.178560px;}
.x21{left:1082.340000px;}
.xc{left:1084.492800px;}
.x22{left:1087.560000px;}
.x32{left:1119.600000px;}
.x31{left:1131.655680px;}
.xb{left:1136.160000px;}
.x25{left:1143.180000px;}
.x7{left:1145.340000px;}
.x8{left:1154.514240px;}
@media print{
.v1{vertical-align:-5.378560pt;}
.v2{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls5f{letter-spacing:-1.295360pt;}
.ls37{letter-spacing:-1.177600pt;}
.ls5e{letter-spacing:-0.942080pt;}
.lsd0{letter-spacing:-0.883200pt;}
.ls1e{letter-spacing:-0.765440pt;}
.ls40{letter-spacing:-0.720000pt;}
.lsd6{letter-spacing:-0.672000pt;}
.ls1a{letter-spacing:-0.647680pt;}
.ls42{letter-spacing:-0.624000pt;}
.lsc{letter-spacing:-0.529920pt;}
.lsd5{letter-spacing:-0.528000pt;}
.ls41{letter-spacing:-0.480000pt;}
.ls44{letter-spacing:-0.432000pt;}
.ls1d{letter-spacing:-0.412160pt;}
.ls1b{letter-spacing:-0.353280pt;}
.ls3d{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:-0.320640pt;}
.lsc5{letter-spacing:-0.318720pt;}
.ls1c{letter-spacing:-0.294400pt;}
.ls2c{letter-spacing:-0.256000pt;}
.ls31{letter-spacing:-0.235520pt;}
.lsa{letter-spacing:-0.213760pt;}
.ls73{letter-spacing:-0.212480pt;}
.ls2a{letter-spacing:-0.192000pt;}
.ls29{letter-spacing:-0.128000pt;}
.ls23{letter-spacing:-0.117760pt;}
.ls9{letter-spacing:-0.106880pt;}
.ls98{letter-spacing:-0.106240pt;}
.ls3b{letter-spacing:-0.096000pt;}
.lsda{letter-spacing:-0.064000pt;}
.ls74{letter-spacing:-0.053120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.016000pt;}
.lse0{letter-spacing:0.035328pt;}
.lsa6{letter-spacing:0.053120pt;}
.lsdf{letter-spacing:0.058880pt;}
.lsd7{letter-spacing:0.062400pt;}
.ls33{letter-spacing:0.069120pt;}
.ls3f{letter-spacing:0.081600pt;}
.ls39{letter-spacing:0.096000pt;}
.ls6f{letter-spacing:0.106240pt;}
.lsd3{letter-spacing:0.112000pt;}
.lsb{letter-spacing:0.117760pt;}
.ls48{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.144000pt;}
.ls43{letter-spacing:0.158400pt;}
.ls6e{letter-spacing:0.159360pt;}
.ls3a{letter-spacing:0.160000pt;}
.ls2b{letter-spacing:0.192000pt;}
.ls87{letter-spacing:0.212480pt;}
.ls6a{letter-spacing:0.228416pt;}
.ls67{letter-spacing:0.229632pt;}
.ls68{letter-spacing:0.231040pt;}
.ls36{letter-spacing:0.235520pt;}
.ls8d{letter-spacing:0.239040pt;}
.ls61{letter-spacing:0.241408pt;}
.ls34{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.277888pt;}
.ls19{letter-spacing:0.294400pt;}
.ls7{letter-spacing:0.299520pt;}
.ls6{letter-spacing:0.318720pt;}
.ls35{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.320640pt;}
.ls64{letter-spacing:0.335616pt;}
.ls38{letter-spacing:0.336000pt;}
.ls21{letter-spacing:0.647680pt;}
.ls60{letter-spacing:1.183488pt;}
.lse5{letter-spacing:1.218816pt;}
.ls2d{letter-spacing:1.265920pt;}
.lsd{letter-spacing:1.295360pt;}
.lsde{letter-spacing:1.866496pt;}
.ls12{letter-spacing:1.878272pt;}
.ls13{letter-spacing:1.943040pt;}
.ls11{letter-spacing:2.531840pt;}
.ls30{letter-spacing:2.590720pt;}
.ls2f{letter-spacing:2.596608pt;}
.ls65{letter-spacing:3.097088pt;}
.ls17{letter-spacing:3.150080pt;}
.lse{letter-spacing:3.179520pt;}
.ls58{letter-spacing:3.261952pt;}
.ls4f{letter-spacing:3.373824pt;}
.ls56{letter-spacing:3.762432pt;}
.lsd1{letter-spacing:3.797760pt;}
.ls45{letter-spacing:3.827200pt;}
.lsd2{letter-spacing:3.838976pt;}
.lse2{letter-spacing:3.874304pt;}
.ls62{letter-spacing:3.921408pt;}
.ls32{letter-spacing:3.944960pt;}
.ls4c{letter-spacing:4.368896pt;}
.ls27{letter-spacing:4.457216pt;}
.ls4b{letter-spacing:4.468992pt;}
.ls47{letter-spacing:4.474880pt;}
.ls63{letter-spacing:5.122560pt;}
.ls10{letter-spacing:5.770240pt;}
.lsdb{letter-spacing:6.264832pt;}
.ls49{letter-spacing:6.306048pt;}
.lsd4{letter-spacing:6.317824pt;}
.ls20{letter-spacing:6.417920pt;}
.ls50{letter-spacing:7.065600pt;}
.lse3{letter-spacing:7.142144pt;}
.lsf{letter-spacing:7.654400pt;}
.ls18{letter-spacing:8.302080pt;}
.ls55{letter-spacing:8.331520pt;}
.ls2e{letter-spacing:8.949760pt;}
.ls4d{letter-spacing:9.002752pt;}
.ls66{letter-spacing:9.026304pt;}
.lscc{letter-spacing:9.568000pt;}
.ls51{letter-spacing:9.597440pt;}
.lscb{letter-spacing:10.245120pt;}
.ls4a{letter-spacing:10.816256pt;}
.ls1f{letter-spacing:10.845696pt;}
.lse4{letter-spacing:10.892800pt;}
.ls57{letter-spacing:11.540480pt;}
.lsdd{letter-spacing:11.899648pt;}
.ls28{letter-spacing:12.199936pt;}
.lsd9{letter-spacing:13.120000pt;}
.ls52{letter-spacing:13.424640pt;}
.ls54{letter-spacing:14.060544pt;}
.ls53{letter-spacing:14.072320pt;}
.ls5c{letter-spacing:15.096832pt;}
.ls22{letter-spacing:15.367680pt;}
.lse1{letter-spacing:15.950592pt;}
.ls5d{letter-spacing:16.015360pt;}
.lscd{letter-spacing:17.287168pt;}
.ls25{letter-spacing:17.881856pt;}
.ls16{letter-spacing:17.899520pt;}
.ls14{letter-spacing:18.547200pt;}
.ls15{letter-spacing:18.594304pt;}
.ls5a{letter-spacing:19.842560pt;}
.ls26{letter-spacing:20.160000pt;}
.ls5b{letter-spacing:20.490240pt;}
.lsdc{letter-spacing:20.800000pt;}
.lsb0{letter-spacing:24.488320pt;}
.ls24{letter-spacing:24.640000pt;}
.lse6{letter-spacing:25.612800pt;}
.ls4{letter-spacing:27.040640pt;}
.lsce{letter-spacing:27.467520pt;}
.lscf{letter-spacing:27.496960pt;}
.ls59{letter-spacing:33.267200pt;}
.ls83{letter-spacing:59.653760pt;}
.ls4e{letter-spacing:59.763200pt;}
.ls3{letter-spacing:80.160000pt;}
.ls2{letter-spacing:80.801280pt;}
.lsa9{letter-spacing:119.201280pt;}
.lsa4{letter-spacing:122.388480pt;}
.lsac{letter-spacing:141.617920pt;}
.ls85{letter-spacing:182.573440pt;}
.ls86{letter-spacing:200.474880pt;}
.ls7a{letter-spacing:226.078720pt;}
.lsb2{letter-spacing:243.342720pt;}
.lsad{letter-spacing:256.782080pt;}
.ls8c{letter-spacing:309.902080pt;}
.ls7d{letter-spacing:311.814400pt;}
.lsa2{letter-spacing:317.604480pt;}
.ls84{letter-spacing:318.879360pt;}
.ls9e{letter-spacing:323.341440pt;}
.ls77{letter-spacing:334.231040pt;}
.lsb1{letter-spacing:335.505920pt;}
.lsab{letter-spacing:342.570880pt;}
.lsaf{letter-spacing:353.460480pt;}
.ls76{letter-spacing:375.824000pt;}
.ls78{letter-spacing:386.076160pt;}
.lsa8{letter-spacing:388.625920pt;}
.ls81{letter-spacing:394.416000pt;}
.lsa3{letter-spacing:400.790400pt;}
.lsa0{letter-spacing:412.317440pt;}
.ls6d{letter-spacing:414.229760pt;}
.ls6c{letter-spacing:422.569600pt;}
.ls88{letter-spacing:427.669120pt;}
.ls7c{letter-spacing:428.944000pt;}
.ls75{letter-spacing:432.821760pt;}
.lsc9{letter-spacing:441.108480pt;}
.ls69{letter-spacing:449.448320pt;}
.ls9d{letter-spacing:453.910400pt;}
.ls96{letter-spacing:456.460160pt;}
.ls7b{letter-spacing:462.887680pt;}
.ls79{letter-spacing:465.437440pt;}
.ls70{letter-spacing:468.624640pt;}
.ls97{letter-spacing:471.864960pt;}
.lsb3{letter-spacing:477.601920pt;}
.ls8b{letter-spacing:486.579200pt;}
.ls91{letter-spacing:489.128960pt;}
.lsa1{letter-spacing:492.316160pt;}
.lsa5{letter-spacing:503.205760pt;}
.lsc3{letter-spacing:508.942720pt;}
.ls92{letter-spacing:510.217600pt;}
.ls8a{letter-spacing:513.457920pt;}
.ls94{letter-spacing:519.194880pt;}
.ls82{letter-spacing:528.172160pt;}
.ls7e{letter-spacing:530.721920pt;}
.ls80{letter-spacing:531.359360pt;}
.ls89{letter-spacing:533.909120pt;}
.ls99{letter-spacing:535.184000pt;}
.ls9f{letter-spacing:545.436160pt;}
.lsaa{letter-spacing:546.073600pt;}
.ls6b{letter-spacing:548.623360pt;}
.lsca{letter-spacing:549.898240pt;}
.ls8f{letter-spacing:557.600640pt;}
.ls9a{letter-spacing:560.787840pt;}
.ls7f{letter-spacing:563.337600pt;}
.lsae{letter-spacing:564.665600pt;}
.ls9c{letter-spacing:565.940480pt;}
.lsb4{letter-spacing:569.127680pt;}
.ls9b{letter-spacing:572.314880pt;}
.ls95{letter-spacing:574.864640pt;}
.ls8e{letter-spacing:578.104960pt;}
.lsc8{letter-spacing:579.379840pt;}
.ls93{letter-spacing:590.216320pt;}
.ls90{letter-spacing:601.743360pt;}
.lsbf{letter-spacing:603.018240pt;}
.ls72{letter-spacing:604.983680pt;}
.lsa7{letter-spacing:610.720640pt;}
.lsb5{letter-spacing:658.103680pt;}
.lsb7{letter-spacing:659.383872pt;}
.ls71{letter-spacing:673.455360pt;}
.lsb8{letter-spacing:679.192320pt;}
.lsc6{letter-spacing:680.467200pt;}
.lsc7{letter-spacing:692.631680pt;}
.lsbc{letter-spacing:709.895680pt;}
.lsba{letter-spacing:727.850240pt;}
.ls46{letter-spacing:751.603200pt;}
.lsd8{letter-spacing:753.251840pt;}
.lsbd{letter-spacing:754.728960pt;}
.lsb9{letter-spacing:757.278720pt;}
.lsc0{letter-spacing:769.443200pt;}
.lsc4{letter-spacing:772.630400pt;}
.lsbe{letter-spacing:778.420480pt;}
.lsb6{letter-spacing:784.157440pt;}
.lsc2{letter-spacing:795.684480pt;}
.lsc1{letter-spacing:813.585920pt;}
.lsbb{letter-spacing:882.057600pt;}
.wsd7{word-spacing:-26.880000pt;}
.ws1{word-spacing:-26.399360pt;}
.ws5b{word-spacing:-17.349120pt;}
.wsb5{word-spacing:-16.368640pt;}
.ws62{word-spacing:-16.256000pt;}
.wscd{word-spacing:-16.250880pt;}
.ws42{word-spacing:-16.192000pt;}
.ws85{word-spacing:-16.128000pt;}
.ws43{word-spacing:-16.000000pt;}
.wsfd{word-spacing:-15.936000pt;}
.ws41{word-spacing:-15.872000pt;}
.ws5c{word-spacing:-15.808000pt;}
.ws5d{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.014400pt;}
.ws63{word-spacing:-14.955520pt;}
.wsf{word-spacing:-14.837760pt;}
.ws2{word-spacing:-14.720000pt;}
.wsd2{word-spacing:-14.602240pt;}
.ws4f{word-spacing:-14.484480pt;}
.ws16{word-spacing:-14.425600pt;}
.ws14{word-spacing:-14.366720pt;}
.ws11{word-spacing:-14.307840pt;}
.ws12{word-spacing:-14.190080pt;}
.ws10{word-spacing:-14.072320pt;}
.ws15{word-spacing:-13.954560pt;}
.ws0{word-spacing:-13.598720pt;}
.wsbb{word-spacing:-13.386240pt;}
.wsbc{word-spacing:-13.280000pt;}
.wsca{word-spacing:-13.226880pt;}
.wsc9{word-spacing:-13.173760pt;}
.ws69{word-spacing:-12.336000pt;}
.ws7a{word-spacing:-12.192000pt;}
.ws6c{word-spacing:-12.144000pt;}
.ws68{word-spacing:-12.096000pt;}
.ws6a{word-spacing:-12.000000pt;}
.ws6b{word-spacing:-11.904000pt;}
.ws67{word-spacing:-11.808000pt;}
.ws6d{word-spacing:-11.664000pt;}
.wsf3{word-spacing:-11.568000pt;}
.wsf6{word-spacing:-11.472000pt;}
.wsf8{word-spacing:-11.376000pt;}
.wsf4{word-spacing:-11.328000pt;}
.ws7d{word-spacing:-11.280000pt;}
.wsa5{word-spacing:-9.280000pt;}
.ws50{word-spacing:-3.944960pt;}
.ws6f{word-spacing:-3.827200pt;}
.ws6e{word-spacing:-3.591680pt;}
.ws95{word-spacing:-3.473920pt;}
.ws52{word-spacing:-3.297280pt;}
.ws51{word-spacing:-3.179520pt;}
.wsb3{word-spacing:-2.885120pt;}
.ws8e{word-spacing:-2.826240pt;}
.ws83{word-spacing:-2.649600pt;}
.ws40{word-spacing:-2.531840pt;}
.wsb9{word-spacing:-2.237440pt;}
.ws5a{word-spacing:-2.060800pt;}
.ws57{word-spacing:-1.943040pt;}
.ws84{word-spacing:-1.884160pt;}
.wsa3{word-spacing:-1.825280pt;}
.ws1b{word-spacing:-1.589760pt;}
.ws4e{word-spacing:-1.413120pt;}
.ws1a{word-spacing:-1.295360pt;}
.wsa4{word-spacing:-1.177600pt;}
.wse6{word-spacing:-1.152000pt;}
.wse4{word-spacing:-0.992000pt;}
.wse1{word-spacing:-0.986667pt;}
.ws70{word-spacing:-0.942080pt;}
.wsf0{word-spacing:-0.864000pt;}
.wsda{word-spacing:-0.848000pt;}
.ws7b{word-spacing:-0.816000pt;}
.wsbf{word-spacing:-0.796800pt;}
.ws27{word-spacing:-0.765440pt;}
.wse5{word-spacing:-0.720000pt;}
.wsc5{word-spacing:-0.690560pt;}
.ws25{word-spacing:-0.647680pt;}
.wsc7{word-spacing:-0.584320pt;}
.ws7c{word-spacing:-0.576000pt;}
.ws99{word-spacing:-0.529920pt;}
.wse3{word-spacing:-0.512000pt;}
.ws5{word-spacing:-0.449280pt;}
.wsf7{word-spacing:-0.412160pt;}
.wscc{word-spacing:-0.384000pt;}
.wse2{word-spacing:-0.368000pt;}
.wsb1{word-spacing:-0.353280pt;}
.ws74{word-spacing:-0.336000pt;}
.wsc2{word-spacing:-0.318720pt;}
.ws28{word-spacing:-0.294400pt;}
.wsd6{word-spacing:-0.288000pt;}
.wsec{word-spacing:-0.272000pt;}
.ws5e{word-spacing:-0.256000pt;}
.wsed{word-spacing:-0.240000pt;}
.ws81{word-spacing:-0.235520pt;}
.ws78{word-spacing:-0.192000pt;}
.wsd9{word-spacing:-0.160000pt;}
.ws4{word-spacing:-0.159360pt;}
.wsd5{word-spacing:-0.144000pt;}
.ws24{word-spacing:-0.117760pt;}
.wsc4{word-spacing:-0.106240pt;}
.ws76{word-spacing:-0.096000pt;}
.wsde{word-spacing:-0.080000pt;}
.wsc3{word-spacing:-0.053120pt;}
.ws3{word-spacing:0.000000pt;}
.ws77{word-spacing:0.048000pt;}
.wsbe{word-spacing:0.053120pt;}
.ws71{word-spacing:0.096000pt;}
.ws8{word-spacing:0.106880pt;}
.ws32{word-spacing:0.117760pt;}
.ws75{word-spacing:0.144000pt;}
.ws44{word-spacing:0.192000pt;}
.wsef{word-spacing:0.208000pt;}
.wsc0{word-spacing:0.212480pt;}
.ws9f{word-spacing:0.235520pt;}
.ws73{word-spacing:0.240000pt;}
.ws48{word-spacing:0.256000pt;}
.wsc6{word-spacing:0.265600pt;}
.wsd8{word-spacing:0.272000pt;}
.ws23{word-spacing:0.294400pt;}
.wsdf{word-spacing:0.330667pt;}
.ws49{word-spacing:0.334080pt;}
.ws72{word-spacing:0.336000pt;}
.ws2a{word-spacing:0.353280pt;}
.wsc1{word-spacing:0.371840pt;}
.wsdc{word-spacing:0.410667pt;}
.ws33{word-spacing:0.412160pt;}
.wsea{word-spacing:0.416000pt;}
.wsa{word-spacing:0.427520pt;}
.ws7f{word-spacing:0.432000pt;}
.wse0{word-spacing:0.464000pt;}
.wscb{word-spacing:0.478080pt;}
.ws79{word-spacing:0.480000pt;}
.wsf2{word-spacing:0.528000pt;}
.ws53{word-spacing:0.529920pt;}
.wse7{word-spacing:0.544000pt;}
.wseb{word-spacing:0.618667pt;}
.ws7e{word-spacing:0.624000pt;}
.wsee{word-spacing:0.629333pt;}
.ws1e{word-spacing:0.647680pt;}
.wse8{word-spacing:0.688000pt;}
.ws82{word-spacing:0.765440pt;}
.wse9{word-spacing:0.842667pt;}
.wsdd{word-spacing:0.848000pt;}
.wsf5{word-spacing:0.864000pt;}
.wsbd{word-spacing:0.883200pt;}
.wsd3{word-spacing:0.896000pt;}
.wsa9{word-spacing:0.942080pt;}
.wsdb{word-spacing:0.992000pt;}
.ws3a{word-spacing:1.000960pt;}
.wsc8{word-spacing:1.009280pt;}
.ws19{word-spacing:1.177600pt;}
.ws34{word-spacing:1.295360pt;}
.ws64{word-spacing:1.413120pt;}
.ws8d{word-spacing:1.648640pt;}
.ws31{word-spacing:1.707520pt;}
.wsc{word-spacing:1.825280pt;}
.ws18{word-spacing:1.943040pt;}
.ws87{word-spacing:2.060800pt;}
.ws17{word-spacing:2.472960pt;}
.ws3b{word-spacing:2.590720pt;}
.ws21{word-spacing:2.944000pt;}
.ws22{word-spacing:3.061760pt;}
.wsa7{word-spacing:3.120640pt;}
.ws20{word-spacing:3.179520pt;}
.wsa2{word-spacing:3.238400pt;}
.ws65{word-spacing:3.356160pt;}
.ws66{word-spacing:3.473920pt;}
.ws8a{word-spacing:3.532800pt;}
.ws8b{word-spacing:3.709440pt;}
.ws80{word-spacing:3.827200pt;}
.wsa0{word-spacing:3.944960pt;}
.wsd4{word-spacing:4.062720pt;}
.ws3c{word-spacing:4.180480pt;}
.ws86{word-spacing:4.357120pt;}
.ws4c{word-spacing:4.474880pt;}
.ws5f{word-spacing:4.828160pt;}
.wsb0{word-spacing:4.887040pt;}
.ws3d{word-spacing:5.004800pt;}
.ws35{word-spacing:5.122560pt;}
.ws89{word-spacing:5.240320pt;}
.ws88{word-spacing:5.475840pt;}
.ws29{word-spacing:5.652480pt;}
.ws2b{word-spacing:5.770240pt;}
.ws8c{word-spacing:5.888000pt;}
.ws39{word-spacing:6.123520pt;}
.ws58{word-spacing:6.300160pt;}
.wsd{word-spacing:6.417920pt;}
.ws91{word-spacing:6.535680pt;}
.wsf1{word-spacing:6.653440pt;}
.wse{word-spacing:6.947840pt;}
.ws37{word-spacing:7.065600pt;}
.ws26{word-spacing:7.536640pt;}
.ws38{word-spacing:7.595520pt;}
.ws36{word-spacing:7.654400pt;}
.wsa6{word-spacing:7.713280pt;}
.ws98{word-spacing:7.772160pt;}
.wsb2{word-spacing:8.007680pt;}
.ws2f{word-spacing:8.184320pt;}
.ws59{word-spacing:8.302080pt;}
.wsfa{word-spacing:8.655360pt;}
.wsba{word-spacing:8.714240pt;}
.ws56{word-spacing:8.832000pt;}
.ws54{word-spacing:8.949760pt;}
.wsf9{word-spacing:8.960000pt;}
.wsfc{word-spacing:9.244160pt;}
.ws9a{word-spacing:9.479680pt;}
.ws55{word-spacing:9.597440pt;}
.ws2e{word-spacing:10.127360pt;}
.wsfb{word-spacing:10.240000pt;}
.ws2d{word-spacing:10.245120pt;}
.wsce{word-spacing:10.539520pt;}
.ws9e{word-spacing:10.598400pt;}
.wsb{word-spacing:10.775040pt;}
.ws2c{word-spacing:10.892800pt;}
.ws109{word-spacing:11.128320pt;}
.ws96{word-spacing:11.422720pt;}
.ws61{word-spacing:11.540480pt;}
.ws103{word-spacing:12.070400pt;}
.ws4d{word-spacing:12.188160pt;}
.wsb7{word-spacing:12.659200pt;}
.ws97{word-spacing:12.776960pt;}
.ws9d{word-spacing:13.306880pt;}
.ws9b{word-spacing:13.424640pt;}
.ws8f{word-spacing:13.777920pt;}
.ws9c{word-spacing:13.954560pt;}
.ws90{word-spacing:14.072320pt;}
.ws101{word-spacing:14.425600pt;}
.wsa1{word-spacing:14.602240pt;}
.ws100{word-spacing:14.720000pt;}
.wsb8{word-spacing:14.837760pt;}
.ws3e{word-spacing:15.073280pt;}
.ws4b{word-spacing:15.249920pt;}
.ws3f{word-spacing:15.367680pt;}
.wsaf{word-spacing:15.720960pt;}
.wsae{word-spacing:15.897600pt;}
.ws1f{word-spacing:16.015360pt;}
.ws1c{word-spacing:16.368640pt;}
.ws1d{word-spacing:16.663040pt;}
.wscf{word-spacing:16.957440pt;}
.ws46{word-spacing:17.192960pt;}
.ws4a{word-spacing:17.310720pt;}
.ws47{word-spacing:17.605120pt;}
.wsff{word-spacing:17.781760pt;}
.ws45{word-spacing:17.899520pt;}
.ws105{word-spacing:18.252800pt;}
.ws30{word-spacing:18.547200pt;}
.ws108{word-spacing:19.077120pt;}
.ws107{word-spacing:19.194880pt;}
.ws106{word-spacing:20.372480pt;}
.wsad{word-spacing:20.490240pt;}
.wsb6{word-spacing:20.843520pt;}
.wsa8{word-spacing:21.137920pt;}
.ws93{word-spacing:21.785600pt;}
.ws92{word-spacing:22.374400pt;}
.ws94{word-spacing:22.433280pt;}
.wsfe{word-spacing:23.552000pt;}
.ws104{word-spacing:24.199680pt;}
.ws10a{word-spacing:25.612800pt;}
.wsb4{word-spacing:26.260480pt;}
.ws60{word-spacing:26.908160pt;}
.ws9{word-spacing:27.147520pt;}
.wsd0{word-spacing:28.144640pt;}
.wsd1{word-spacing:28.674560pt;}
.wsac{word-spacing:32.325120pt;}
.wsaa{word-spacing:33.149440pt;}
.wsab{word-spacing:33.267200pt;}
.ws102{word-spacing:35.210240pt;}
.ws6{word-spacing:80.480640pt;}
.ws7{word-spacing:80.908160pt;}
._16{margin-left:-14.847744pt;}
._e{margin-left:-4.500864pt;}
._d{margin-left:-3.329024pt;}
._a{margin-left:-2.436608pt;}
._0{margin-left:-1.083648pt;}
._1{width:1.047424pt;}
._5{width:2.451712pt;}
._6{width:3.377408pt;}
._10{width:4.913408pt;}
._4{width:6.136064pt;}
._9{width:7.056896pt;}
._8{width:8.331264pt;}
._11{width:10.092288pt;}
._f{width:13.189120pt;}
._c{width:15.488000pt;}
._3{width:16.772096pt;}
._7{width:18.262656pt;}
._13{width:20.340608pt;}
._14{width:21.437184pt;}
._17{width:23.118592pt;}
._15{width:28.028032pt;}
._12{width:33.857152pt;}
._2{width:751.603200pt;}
._b{width:753.251840pt;}
.fs8{font-size:32.000000pt;}
.fs6{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y9b{bottom:2.560000pt;}
.y98{bottom:2.720000pt;}
.y203{bottom:2.880000pt;}
.y1fc{bottom:4.800000pt;}
.y206{bottom:4.960000pt;}
.y1f9{bottom:5.120000pt;}
.y2a7{bottom:5.280000pt;}
.y330{bottom:8.000000pt;}
.ya2{bottom:9.760000pt;}
.yc9{bottom:9.920000pt;}
.y9a{bottom:16.320000pt;}
.y9d{bottom:16.480000pt;}
.y202{bottom:18.080000pt;}
.y20b{bottom:18.240000pt;}
.y320{bottom:20.000000pt;}
.y332{bottom:20.800000pt;}
.y587{bottom:21.120000pt;}
.y353{bottom:21.600000pt;}
.yb3{bottom:30.080000pt;}
.ya3{bottom:30.240000pt;}
.yc6{bottom:31.520000pt;}
.y33e{bottom:36.800000pt;}
.y356{bottom:37.600000pt;}
.yc2{bottom:38.080000pt;}
.y3e6{bottom:41.440000pt;}
.y95{bottom:44.000000pt;}
.y2{bottom:51.042560pt;}
.y9f{bottom:51.840000pt;}
.y36f{bottom:53.600000pt;}
.y3ff{bottom:55.200000pt;}
.yeb{bottom:57.760000pt;}
.yfe{bottom:57.920000pt;}
.ya6{bottom:58.560000pt;}
.y1{bottom:68.000000pt;}
.y512{bottom:69.120000pt;}
.y101{bottom:71.520000pt;}
.yb6{bottom:71.680000pt;}
.y325{bottom:74.080000pt;}
.y374{bottom:78.400000pt;}
.ydb{bottom:80.160000pt;}
.yd4{bottom:81.440000pt;}
.y4d1{bottom:82.880000pt;}
.y13b{bottom:85.440000pt;}
.y35a{bottom:91.840000pt;}
.y1ab{bottom:95.835520pt;}
.y334{bottom:98.880000pt;}
.y486{bottom:99.040000pt;}
.y176{bottom:99.147520pt;}
.y337{bottom:99.200000pt;}
.y48e{bottom:100.320000pt;}
.y132{bottom:100.480000pt;}
.y5ce{bottom:100.592000pt;}
.y1c2{bottom:100.836480pt;}
.y1e3{bottom:100.872960pt;}
.y137{bottom:101.760000pt;}
.y5e2{bottom:101.820160pt;}
.y5e4{bottom:101.885440pt;}
.y251{bottom:101.920000pt;}
.yaa{bottom:102.240000pt;}
.y7b{bottom:103.221120pt;}
.y3c0{bottom:103.360000pt;}
.y1f7{bottom:103.637120pt;}
.y431{bottom:104.160000pt;}
.y1cb{bottom:105.388800pt;}
.y287{bottom:105.440000pt;}
.y359{bottom:106.720000pt;}
.y516{bottom:107.040000pt;}
.y111{bottom:108.480000pt;}
.y2ce{bottom:108.640000pt;}
.y3fd{bottom:109.120000pt;}
.y3b8{bottom:112.960000pt;}
.y2d9{bottom:112.969600pt;}
.y3c1{bottom:113.120000pt;}
.y13a{bottom:113.760000pt;}
.y47a{bottom:114.240000pt;}
.y222{bottom:115.040000pt;}
.y415{bottom:115.516000pt;}
.y3e5{bottom:115.520000pt;}
.y59a{bottom:115.838720pt;}
.y26b{bottom:116.320000pt;}
.y4b0{bottom:116.704000pt;}
.y546{bottom:116.772000pt;}
.y536{bottom:116.792000pt;}
.y184{bottom:118.108160pt;}
.y138{bottom:118.240000pt;}
.yba{bottom:118.712000pt;}
.y33d{bottom:119.520000pt;}
.y3c6{bottom:119.820000pt;}
.y528{bottom:120.636000pt;}
.y4f9{bottom:120.640000pt;}
.ye2{bottom:121.600000pt;}
.y42d{bottom:121.656000pt;}
.y454{bottom:121.708000pt;}
.y473{bottom:121.712000pt;}
.y441{bottom:121.716000pt;}
.y250{bottom:121.760000pt;}
.yce{bottom:123.040000pt;}
.y51a{bottom:123.352000pt;}
.y2d{bottom:123.466880pt;}
.y58{bottom:123.696640pt;}
.y2dd{bottom:123.847680pt;}
.y32c{bottom:125.120000pt;}
.y565{bottom:125.572000pt;}
.y4d0{bottom:125.592000pt;}
.y3fe{bottom:125.596000pt;}
.y4b6{bottom:126.720000pt;}
.y3cc{bottom:126.880000pt;}
.y35d{bottom:127.200000pt;}
.y2df{bottom:127.365760pt;}
.y2de{bottom:127.527680pt;}
.y2cd{bottom:128.480000pt;}
.y340{bottom:128.636000pt;}
.y12c{bottom:128.800000pt;}
.y414{bottom:129.436000pt;}
.y286{bottom:130.080000pt;}
.y4af{bottom:130.468000pt;}
.y545{bottom:130.536000pt;}
.y48c{bottom:130.544000pt;}
.y4bc{bottom:130.556000pt;}
.yb9{bottom:132.476000pt;}
.y5ab{bottom:132.480000pt;}
.y175{bottom:132.900480pt;}
.y3c5{bottom:133.584000pt;}
.y5cd{bottom:134.197760pt;}
.y527{bottom:134.400000pt;}
.y1c1{bottom:134.589440pt;}
.y1e2{bottom:134.625920pt;}
.y221{bottom:134.880000pt;}
.y42c{bottom:135.420000pt;}
.y453{bottom:135.472000pt;}
.y472{bottom:135.476000pt;}
.y440{bottom:135.480000pt;}
.y5e1{bottom:135.573120pt;}
.y5e3{bottom:135.638400pt;}
.y2e0{bottom:135.844480pt;}
.y26a{bottom:136.320000pt;}
.y116{bottom:136.640000pt;}
.y24f{bottom:136.800000pt;}
.y7a{bottom:136.974080pt;}
.y519{bottom:137.116000pt;}
.y1f6{bottom:137.390080pt;}
.yfc{bottom:138.072000pt;}
.y1ca{bottom:138.994560pt;}
.y564{bottom:139.336000pt;}
.y4cf{bottom:139.356000pt;}
.yde{bottom:139.360000pt;}
.y573{bottom:139.512000pt;}
.y34d{bottom:139.680000pt;}
.y3d8{bottom:140.640000pt;}
.y304{bottom:141.765760pt;}
.y33f{bottom:142.400000pt;}
.y413{bottom:143.200000pt;}
.y35e{bottom:143.680000pt;}
.y12b{bottom:143.840000pt;}
.y36a{bottom:144.160000pt;}
.y4ae{bottom:144.232000pt;}
.y544{bottom:144.300000pt;}
.y48b{bottom:144.308000pt;}
.y4bb{bottom:144.320000pt;}
.y3e2{bottom:145.600000pt;}
.yb8{bottom:146.240000pt;}
.y3c4{bottom:147.348000pt;}
.y2cc{bottom:148.320000pt;}
.y42b{bottom:149.340000pt;}
.y452{bottom:149.392000pt;}
.y471{bottom:149.396000pt;}
.y43f{bottom:149.400000pt;}
.y285{bottom:150.080000pt;}
.y112{bottom:150.400000pt;}
.y4e7{bottom:150.560000pt;}
.y599{bottom:150.725120pt;}
.y518{bottom:151.036000pt;}
.y269{bottom:151.360000pt;}
.yfb{bottom:151.836000pt;}
.y183{bottom:151.861120pt;}
.y563{bottom:153.100000pt;}
.y118{bottom:153.116000pt;}
.y430{bottom:153.120000pt;}
.y572{bottom:153.276000pt;}
.y588{bottom:153.440000pt;}
.y2dc{bottom:153.611520pt;}
.y482{bottom:154.240000pt;}
.y402{bottom:154.400000pt;}
.y220{bottom:154.720000pt;}
.y24d{bottom:156.640000pt;}
.y2c{bottom:157.072640pt;}
.y57{bottom:157.302400pt;}
.y4ad{bottom:158.152000pt;}
.y543{bottom:158.220000pt;}
.y48a{bottom:158.228000pt;}
.y4ba{bottom:158.240000pt;}
.y1ee{bottom:158.440960pt;}
.y1a6{bottom:158.581120pt;}
.y15a{bottom:159.367040pt;}
.yb7{bottom:160.160000pt;}
.y373{bottom:161.600000pt;}
.y3e4{bottom:161.920000pt;}
.y42a{bottom:163.104000pt;}
.y451{bottom:163.156000pt;}
.y470{bottom:163.160000pt;}
.y43e{bottom:163.164000pt;}
.y526{bottom:164.320000pt;}
.y517{bottom:164.800000pt;}
.ydd{bottom:165.120000pt;}
.yfa{bottom:165.600000pt;}
.y174{bottom:166.653440pt;}
.y117{bottom:166.880000pt;}
.y4f7{bottom:167.008000pt;}
.y562{bottom:167.020000pt;}
.y4f1{bottom:167.024000pt;}
.y560{bottom:167.036000pt;}
.y303{bottom:167.040000pt;}
.y24e{bottom:167.200000pt;}
.y5cc{bottom:167.950720pt;}
.y4e8{bottom:168.160000pt;}
.y2cb{bottom:168.320000pt;}
.y1c0{bottom:168.342400pt;}
.y5e0{bottom:169.326080pt;}
.y5d0{bottom:169.391360pt;}
.y3ef{bottom:169.440000pt;}
.y284{bottom:169.920000pt;}
.yb1{bottom:170.240000pt;}
.y79{bottom:170.727040pt;}
.y1f5{bottom:170.995840pt;}
.y379{bottom:171.028000pt;}
.y268{bottom:171.200000pt;}
.y4ac{bottom:171.916000pt;}
.y542{bottom:171.984000pt;}
.y489{bottom:171.992000pt;}
.y131{bottom:172.160000pt;}
.y1c9{bottom:172.747520pt;}
.y40e{bottom:173.120000pt;}
.y21f{bottom:174.720000pt;}
.y3c3{bottom:175.032000pt;}
.y3e3{bottom:175.840000pt;}
.y31e{bottom:176.160000pt;}
.y2a3{bottom:176.480000pt;}
.y429{bottom:176.868000pt;}
.y450{bottom:176.920000pt;}
.y46f{bottom:176.924000pt;}
.y43d{bottom:176.928000pt;}
.y108{bottom:178.080000pt;}
.y4f8{bottom:179.360000pt;}
.y4f6{bottom:180.772000pt;}
.y561{bottom:180.784000pt;}
.y4f0{bottom:180.788000pt;}
.y55f{bottom:180.800000pt;}
.y571{bottom:180.956000pt;}
.y3e8{bottom:182.080000pt;}
.y4fb{bottom:183.200000pt;}
.y5aa{bottom:183.367040pt;}
.y1e1{bottom:184.379520pt;}
.y598{bottom:184.478080pt;}
.y378{bottom:184.792000pt;}
.y35b{bottom:184.800000pt;}
.y282{bottom:184.960000pt;}
.y182{bottom:185.614080pt;}
.y4ab{bottom:185.680000pt;}
.y3fb{bottom:185.716000pt;}
.y541{bottom:185.748000pt;}
.y4bd{bottom:185.752000pt;}
.y488{bottom:185.756000pt;}
.yb5{bottom:185.760000pt;}
.y586{bottom:186.080000pt;}
.y2db{bottom:187.364480pt;}
.y24c{bottom:188.000000pt;}
.y2ca{bottom:188.160000pt;}
.y136{bottom:188.480000pt;}
.y3c2{bottom:188.796000pt;}
.y336{bottom:189.280000pt;}
.y412{bottom:189.588000pt;}
.y335{bottom:189.600000pt;}
.y35c{bottom:190.560000pt;}
.y428{bottom:190.632000pt;}
.y44f{bottom:190.684000pt;}
.y46e{bottom:190.688000pt;}
.y43c{bottom:190.692000pt;}
.y2b{bottom:190.825600pt;}
.y267{bottom:191.040000pt;}
.y56{bottom:191.055360pt;}
.yf7{bottom:191.360000pt;}
.y1ed{bottom:192.046720pt;}
.y1a5{bottom:192.334080pt;}
.y115{bottom:192.480000pt;}
.ydc{bottom:193.280000pt;}
.y4f5{bottom:194.536000pt;}
.y52d{bottom:194.544000pt;}
.y55e{bottom:194.548000pt;}
.y4ef{bottom:194.552000pt;}
.y513{bottom:194.720000pt;}
.y283{bottom:195.520000pt;}
.y3a2{bottom:195.680000pt;}
.y3d4{bottom:195.840000pt;}
.y2a2{bottom:196.320000pt;}
.y42f{bottom:196.960000pt;}
.y514{bottom:198.080000pt;}
.y377{bottom:198.712000pt;}
.y21e{bottom:199.360000pt;}
.y4aa{bottom:199.444000pt;}
.y510{bottom:199.472000pt;}
.y3fa{bottom:199.480000pt;}
.y540{bottom:199.512000pt;}
.y4b9{bottom:199.516000pt;}
.y487{bottom:199.520000pt;}
.y5cb{bottom:201.703680pt;}
.y3c7{bottom:202.560000pt;}
.y5df{bottom:202.931840pt;}
.y5cf{bottom:202.997120pt;}
.y411{bottom:203.352000pt;}
.y427{bottom:204.396000pt;}
.y44e{bottom:204.448000pt;}
.y46d{bottom:204.452000pt;}
.y43b{bottom:204.456000pt;}
.y78{bottom:204.480000pt;}
.y1f4{bottom:204.748800pt;}
.y33c{bottom:205.756000pt;}
.y3df{bottom:205.760000pt;}
.y1c8{bottom:206.500480pt;}
.yf9{bottom:207.676000pt;}
.y4f4{bottom:208.300000pt;}
.y532{bottom:208.304000pt;}
.y52c{bottom:208.308000pt;}
.y55d{bottom:208.312000pt;}
.y4ee{bottom:208.316000pt;}
.y515{bottom:209.280000pt;}
.y475{bottom:209.600000pt;}
.y37a{bottom:210.080000pt;}
.y266{bottom:210.880000pt;}
.y355{bottom:211.040000pt;}
.y583{bottom:212.160000pt;}
.y376{bottom:212.476000pt;}
.y24b{bottom:212.640000pt;}
.y3a0{bottom:212.645333pt;}
.y2c9{bottom:212.800000pt;}
.y4a9{bottom:213.208000pt;}
.y4cd{bottom:213.232000pt;}
.y50f{bottom:213.236000pt;}
.y3f9{bottom:213.244000pt;}
.y53f{bottom:213.276000pt;}
.y4b8{bottom:213.280000pt;}
.yb2{bottom:214.080000pt;}
.y134{bottom:214.240000pt;}
.yda{bottom:215.040000pt;}
.y281{bottom:216.320000pt;}
.y173{bottom:216.407040pt;}
.y410{bottom:217.116000pt;}
.y5a9{bottom:217.120000pt;}
.y130{bottom:217.432000pt;}
.y1bf{bottom:218.096000pt;}
.y1e0{bottom:218.132480pt;}
.y426{bottom:218.316000pt;}
.y44d{bottom:218.368000pt;}
.y46c{bottom:218.372000pt;}
.y43a{bottom:218.376000pt;}
.y534{bottom:218.400000pt;}
.y302{bottom:218.720000pt;}
.y21d{bottom:219.200000pt;}
.y181{bottom:219.367040pt;}
.y33b{bottom:219.520000pt;}
.yab{bottom:220.160000pt;}
.y114{bottom:220.800000pt;}
.y358{bottom:221.116000pt;}
.yf8{bottom:221.440000pt;}
.y4f3{bottom:222.064000pt;}
.y531{bottom:222.068000pt;}
.y52b{bottom:222.072000pt;}
.y55c{bottom:222.076000pt;}
.y3e1{bottom:222.080000pt;}
.y3fc{bottom:223.360000pt;}
.y2a{bottom:224.578560pt;}
.y570{bottom:224.640000pt;}
.y55{bottom:224.808320pt;}
.y1ec{bottom:225.799680pt;}
.y1a4{bottom:226.087040pt;}
.y375{bottom:226.240000pt;}
.y39f{bottom:226.442667pt;}
.y31d{bottom:227.040000pt;}
.y4a8{bottom:227.128000pt;}
.y4cc{bottom:227.152000pt;}
.y50e{bottom:227.156000pt;}
.y3f8{bottom:227.164000pt;}
.y485{bottom:227.192000pt;}
.y53e{bottom:227.196000pt;}
.y4b7{bottom:227.200000pt;}
.y585{bottom:228.480000pt;}
.yb4{bottom:230.400000pt;}
.y135{bottom:230.560000pt;}
.y265{bottom:230.720000pt;}
.y40f{bottom:230.880000pt;}
.y12f{bottom:231.352000pt;}
.y425{bottom:232.080000pt;}
.y44c{bottom:232.132000pt;}
.y46b{bottom:232.136000pt;}
.y439{bottom:232.140000pt;}
.y24a{bottom:232.480000pt;}
.y2c8{bottom:232.640000pt;}
.y357{bottom:234.880000pt;}
.y5ca{bottom:235.456640pt;}
.y2da{bottom:235.528320pt;}
.y4f2{bottom:235.984000pt;}
.y530{bottom:235.988000pt;}
.y52a{bottom:235.992000pt;}
.y55b{bottom:235.996000pt;}
.y3e0{bottom:236.000000pt;}
.y27f{bottom:236.160000pt;}
.yd3{bottom:236.640000pt;}
.y5de{bottom:236.684800pt;}
.y1a1{bottom:236.750080pt;}
.y3f0{bottom:237.120000pt;}
.y549{bottom:237.280000pt;}
.y1f3{bottom:238.501760pt;}
.y21c{bottom:239.040000pt;}
.y39e{bottom:240.240000pt;}
.y1c7{bottom:240.253440pt;}
.y4a7{bottom:240.892000pt;}
.y4cb{bottom:240.916000pt;}
.y50d{bottom:240.920000pt;}
.y3f7{bottom:240.928000pt;}
.y484{bottom:240.956000pt;}
.y53d{bottom:240.960000pt;}
.y584{bottom:242.400000pt;}
.y12e{bottom:245.116000pt;}
.y8e{bottom:245.287680pt;}
.y424{bottom:245.844000pt;}
.y44b{bottom:245.896000pt;}
.y46a{bottom:245.900000pt;}
.y438{bottom:245.904000pt;}
.y280{bottom:246.720000pt;}
.y33a{bottom:247.192000pt;}
.yf5{bottom:247.200000pt;}
.y3bf{bottom:248.944000pt;}
.y113{bottom:249.120000pt;}
.y4ed{bottom:249.748000pt;}
.y52f{bottom:249.752000pt;}
.y529{bottom:249.756000pt;}
.y55a{bottom:249.760000pt;}
.y172{bottom:250.160000pt;}
.y264{bottom:250.720000pt;}
.y462{bottom:250.880000pt;}
.y19a{bottom:251.367040pt;}
.y1be{bottom:251.701760pt;}
.y1df{bottom:251.738240pt;}
.y249{bottom:252.320000pt;}
.y2c7{bottom:252.480000pt;}
.y369{bottom:252.640000pt;}
.y180{bottom:253.120000pt;}
.y39d{bottom:254.037333pt;}
.y21b{bottom:254.080000pt;}
.y4a6{bottom:254.656000pt;}
.y4ca{bottom:254.680000pt;}
.y50c{bottom:254.684000pt;}
.y3f6{bottom:254.692000pt;}
.y483{bottom:254.720000pt;}
.y43{bottom:256.106880pt;}
.y77{bottom:256.160000pt;}
.y133{bottom:256.320000pt;}
.y4b1{bottom:257.120000pt;}
.y56f{bottom:257.280000pt;}
.y29{bottom:258.331520pt;}
.y54{bottom:258.561280pt;}
.y12d{bottom:258.880000pt;}
.y423{bottom:259.608000pt;}
.y44a{bottom:259.660000pt;}
.y469{bottom:259.664000pt;}
.y437{bottom:259.668000pt;}
.y1a3{bottom:259.840000pt;}
.y2a1{bottom:260.800000pt;}
.y339{bottom:260.956000pt;}
.y40b{bottom:260.960000pt;}
.y34c{bottom:261.280000pt;}
.y511{bottom:262.080000pt;}
.y3be{bottom:262.864000pt;}
.y4ec{bottom:263.512000pt;}
.y52e{bottom:263.516000pt;}
.yf6{bottom:263.520000pt;}
.y442{bottom:264.640000pt;}
.y372{bottom:264.796000pt;}
.y4be{bottom:264.800000pt;}
.yd9{bottom:264.960000pt;}
.ycf{bottom:265.440000pt;}
.y3d3{bottom:265.920000pt;}
.y39c{bottom:267.834667pt;}
.y4a5{bottom:268.420000pt;}
.y4c9{bottom:268.444000pt;}
.y50b{bottom:268.448000pt;}
.y3f5{bottom:268.456000pt;}
.y5a8{bottom:268.800000pt;}
.y354{bottom:268.960000pt;}
.y5c9{bottom:269.209600pt;}
.y5dd{bottom:270.437760pt;}
.y1a0{bottom:270.503040pt;}
.y107{bottom:270.720000pt;}
.y301{bottom:271.520000pt;}
.y1f2{bottom:272.254720pt;}
.y248{bottom:272.320000pt;}
.y422{bottom:273.528000pt;}
.y449{bottom:273.580000pt;}
.y468{bottom:273.584000pt;}
.y436{bottom:273.588000pt;}
.y21a{bottom:273.920000pt;}
.y1c6{bottom:274.006400pt;}
.y338{bottom:274.720000pt;}
.y263{bottom:275.360000pt;}
.y1eb{bottom:275.553280pt;}
.y48d{bottom:275.840000pt;}
.y4eb{bottom:277.276000pt;}
.y40d{bottom:277.280000pt;}
.y371{bottom:278.560000pt;}
.y31c{bottom:278.720000pt;}
.y548{bottom:279.680000pt;}
.y147{bottom:280.174080pt;}
.y2a0{bottom:280.640000pt;}
.yae{bottom:280.956000pt;}
.y39b{bottom:281.632000pt;}
.y4a4{bottom:282.340000pt;}
.y4c8{bottom:282.364000pt;}
.y50a{bottom:282.368000pt;}
.y3f4{bottom:282.376000pt;}
.y481{bottom:282.380000pt;}
.y3de{bottom:282.396000pt;}
.y171{bottom:283.765760pt;}
.yb0{bottom:284.320000pt;}
.y121{bottom:284.480000pt;}
.y1bd{bottom:285.454720pt;}
.y1de{bottom:285.491200pt;}
.yd8{bottom:286.560000pt;}
.y68{bottom:286.874240pt;}
.y597{bottom:286.894080pt;}
.y421{bottom:287.292000pt;}
.y448{bottom:287.344000pt;}
.y467{bottom:287.348000pt;}
.y435{bottom:287.352000pt;}
.y247{bottom:287.360000pt;}
.y582{bottom:288.796000pt;}
.yf4{bottom:289.280000pt;}
.y56e{bottom:289.920000pt;}
.y3bd{bottom:290.392000pt;}
.yd6{bottom:290.400000pt;}
.y4ea{bottom:291.196000pt;}
.y40c{bottom:291.200000pt;}
.y8d{bottom:291.847040pt;}
.y53{bottom:292.314240pt;}
.y2c6{bottom:292.320000pt;}
.y370{bottom:292.480000pt;}
.y219{bottom:293.920000pt;}
.yad{bottom:294.876000pt;}
.y262{bottom:295.200000pt;}
.y39a{bottom:295.429333pt;}
.y4a3{bottom:296.104000pt;}
.y4c7{bottom:296.128000pt;}
.y509{bottom:296.132000pt;}
.y3f3{bottom:296.140000pt;}
.y480{bottom:296.144000pt;}
.y559{bottom:296.152000pt;}
.y3dd{bottom:296.160000pt;}
.y199{bottom:297.926400pt;}
.y110{bottom:299.040000pt;}
.y159{bottom:300.197760pt;}
.y29f{bottom:300.480000pt;}
.y12a{bottom:300.960000pt;}
.y420{bottom:301.056000pt;}
.y447{bottom:301.108000pt;}
.y466{bottom:301.112000pt;}
.y434{bottom:301.116000pt;}
.y32b{bottom:301.120000pt;}
.y2e5{bottom:302.106880pt;}
.y581{bottom:302.560000pt;}
.y5c8{bottom:302.962560pt;}
.y3bc{bottom:304.156000pt;}
.y5dc{bottom:304.190720pt;}
.y19f{bottom:304.256000pt;}
.yd5{bottom:304.320000pt;}
.y17f{bottom:304.800000pt;}
.y4e9{bottom:304.960000pt;}
.y42{bottom:305.860480pt;}
.y1f1{bottom:306.007680pt;}
.y76{bottom:306.880000pt;}
.y246{bottom:307.200000pt;}
.y2c5{bottom:307.360000pt;}
.y84{bottom:307.361920pt;}
.y1c5{bottom:307.759360pt;}
.y1a2{bottom:307.840000pt;}
.y28{bottom:308.085120pt;}
.yd7{bottom:308.320000pt;}
.yac{bottom:308.640000pt;}
.y399{bottom:309.226667pt;}
.y1ea{bottom:309.306240pt;}
.y4a2{bottom:309.868000pt;}
.y4c6{bottom:309.892000pt;}
.y508{bottom:309.896000pt;}
.y3f2{bottom:309.904000pt;}
.y47f{bottom:309.908000pt;}
.y558{bottom:309.916000pt;}
.yaf{bottom:312.640000pt;}
.y218{bottom:313.760000pt;}
.y41f{bottom:314.820000pt;}
.y446{bottom:314.872000pt;}
.y465{bottom:314.876000pt;}
.y433{bottom:314.880000pt;}
.y261{bottom:315.040000pt;}
.y350{bottom:315.840000pt;}
.yf3{bottom:317.440000pt;}
.y170{bottom:317.518720pt;}
.y27e{bottom:317.760000pt;}
.y3bb{bottom:318.076000pt;}
.y3ba{bottom:318.080000pt;}
.y1bc{bottom:319.207680pt;}
.y1dd{bottom:319.244160pt;}
.y539{bottom:320.000000pt;}
.y29e{bottom:320.320000pt;}
.y67{bottom:320.480000pt;}
.y10e{bottom:320.640000pt;}
.y596{bottom:320.647040pt;}
.y401{bottom:321.120000pt;}
.y5a7{bottom:321.600000pt;}
.y56d{bottom:322.400000pt;}
.y300{bottom:322.429440pt;}
.y398{bottom:323.024000pt;}
.y4a1{bottom:323.632000pt;}
.y4c5{bottom:323.656000pt;}
.y507{bottom:323.660000pt;}
.y3dc{bottom:323.668000pt;}
.y47e{bottom:323.672000pt;}
.y53c{bottom:323.676000pt;}
.y557{bottom:323.680000pt;}
.y52{bottom:325.920000pt;}
.y128{bottom:326.560000pt;}
.y245{bottom:327.040000pt;}
.y2c4{bottom:327.200000pt;}
.y41e{bottom:328.740000pt;}
.y445{bottom:328.792000pt;}
.y464{bottom:328.796000pt;}
.y432{bottom:328.800000pt;}
.y31b{bottom:329.600000pt;}
.yd2{bottom:329.920000pt;}
.y146{bottom:329.927680pt;}
.y260{bottom:330.080000pt;}
.y5b4{bottom:331.200000pt;}
.y3b9{bottom:331.840000pt;}
.y352{bottom:332.316000pt;}
.y580{bottom:332.480000pt;}
.y217{bottom:333.600000pt;}
.y538{bottom:333.760000pt;}
.y158{bottom:333.950720pt;}
.ya5{bottom:334.240000pt;}
.y4d3{bottom:334.880000pt;}
.y2e4{bottom:335.859840pt;}
.y5c7{bottom:336.568320pt;}
.y397{bottom:336.821333pt;}
.y10f{bottom:337.120000pt;}
.y4a0{bottom:337.552000pt;}
.y40a{bottom:337.572000pt;}
.y4c4{bottom:337.576000pt;}
.y506{bottom:337.580000pt;}
.y3db{bottom:337.588000pt;}
.y47d{bottom:337.592000pt;}
.y53b{bottom:337.596000pt;}
.y556{bottom:337.600000pt;}
.y5db{bottom:337.943680pt;}
.y19e{bottom:338.008960pt;}
.y36e{bottom:339.200000pt;}
.y41{bottom:339.613440pt;}
.y1f0{bottom:339.760640pt;}
.y29d{bottom:340.320000pt;}
.y1c4{bottom:341.365120pt;}
.y27{bottom:341.838080pt;}
.y41d{bottom:342.504000pt;}
.y4b5{bottom:342.552000pt;}
.y444{bottom:342.556000pt;}
.y463{bottom:342.560000pt;}
.y129{bottom:343.040000pt;}
.y27d{bottom:343.360000pt;}
.yf2{bottom:345.760000pt;}
.y351{bottom:346.080000pt;}
.y244{bottom:346.880000pt;}
.y2c3{bottom:347.040000pt;}
.y535{bottom:347.520000pt;}
.y4b2{bottom:347.680000pt;}
.y25f{bottom:349.920000pt;}
.y396{bottom:350.618667pt;}
.ya9{bottom:350.720000pt;}
.y16f{bottom:351.271680pt;}
.y49f{bottom:351.316000pt;}
.y4e6{bottom:351.320000pt;}
.y555{bottom:351.328000pt;}
.y525{bottom:351.332000pt;}
.y4c3{bottom:351.340000pt;}
.y505{bottom:351.344000pt;}
.y3f1{bottom:351.352000pt;}
.y47c{bottom:351.356000pt;}
.y53a{bottom:351.360000pt;}
.y1dc{bottom:352.997120pt;}
.y216{bottom:353.440000pt;}
.y83{bottom:353.921280pt;}
.y595{bottom:354.400000pt;}
.y56c{bottom:355.040000pt;}
.y2f1{bottom:355.079680pt;}
.y29c{bottom:355.360000pt;}
.y17e{bottom:355.761280pt;}
.y2ff{bottom:356.182400pt;}
.y41c{bottom:356.268000pt;}
.y4b4{bottom:356.316000pt;}
.y443{bottom:356.320000pt;}
.yd1{bottom:358.240000pt;}
.y75{bottom:358.560000pt;}
.y1e9{bottom:359.059840pt;}
.y3b5{bottom:361.760000pt;}
.y10b{bottom:362.720000pt;}
.y27c{bottom:363.200000pt;}
.y145{bottom:363.680640pt;}
.y331{bottom:364.320000pt;}
.y395{bottom:364.416000pt;}
.y5b3{bottom:364.960000pt;}
.y49e{bottom:365.080000pt;}
.y4e5{bottom:365.084000pt;}
.y554{bottom:365.092000pt;}
.y524{bottom:365.096000pt;}
.y409{bottom:365.100000pt;}
.y4c2{bottom:365.104000pt;}
.y504{bottom:365.108000pt;}
.y500{bottom:365.112000pt;}
.y3da{bottom:365.116000pt;}
.y47b{bottom:365.120000pt;}
.y243{bottom:366.720000pt;}
.y2c2{bottom:366.880000pt;}
.yf0{bottom:367.360000pt;}
.y157{bottom:367.556480pt;}
.y126{bottom:368.640000pt;}
.y1bb{bottom:368.961280pt;}
.y36c{bottom:369.116000pt;}
.y2e3{bottom:369.612800pt;}
.y25e{bottom:369.920000pt;}
.y41b{bottom:370.032000pt;}
.y461{bottom:370.048000pt;}
.y4b3{bottom:370.080000pt;}
.y5c6{bottom:370.321280pt;}
.y8c{bottom:371.217280pt;}
.y333{bottom:371.360000pt;}
.y5da{bottom:371.696640pt;}
.y19d{bottom:371.761920pt;}
.y66{bottom:372.232960pt;}
.y5a6{bottom:372.320000pt;}
.y34f{bottom:373.280000pt;}
.y40{bottom:373.366400pt;}
.yd0{bottom:374.560000pt;}
.y29b{bottom:375.200000pt;}
.y26{bottom:375.443840pt;}
.ya8{bottom:376.320000pt;}
.y51{bottom:377.600000pt;}
.y215{bottom:378.080000pt;}
.y49d{bottom:378.844000pt;}
.y4e4{bottom:378.848000pt;}
.y553{bottom:378.856000pt;}
.y523{bottom:378.860000pt;}
.y408{bottom:378.864000pt;}
.y4c1{bottom:378.868000pt;}
.y503{bottom:378.872000pt;}
.y4ff{bottom:378.876000pt;}
.ya7{bottom:378.880000pt;}
.y10d{bottom:379.196000pt;}
.y30d{bottom:379.526400pt;}
.y31a{bottom:381.280000pt;}
.y36b{bottom:382.880000pt;}
.y27b{bottom:383.040000pt;}
.yf1{bottom:383.840000pt;}
.y41a{bottom:383.952000pt;}
.y460{bottom:383.968000pt;}
.y57f{bottom:384.480000pt;}
.y16e{bottom:385.024640pt;}
.y127{bottom:385.120000pt;}
.y4ce{bottom:386.400000pt;}
.y242{bottom:386.720000pt;}
.y1db{bottom:386.750080pt;}
.y34e{bottom:387.200000pt;}
.y56b{bottom:387.680000pt;}
.y36d{bottom:388.800000pt;}
.y17d{bottom:389.367040pt;}
.y25d{bottom:389.760000pt;}
.y2fe{bottom:389.935360pt;}
.y194{bottom:391.118720pt;}
.y394{bottom:391.944000pt;}
.y3b7{bottom:391.996000pt;}
.y49c{bottom:392.764000pt;}
.y4e3{bottom:392.768000pt;}
.y552{bottom:392.776000pt;}
.y522{bottom:392.780000pt;}
.y4c0{bottom:392.788000pt;}
.y502{bottom:392.792000pt;}
.y4fe{bottom:392.796000pt;}
.y3d9{bottom:392.800000pt;}
.y10c{bottom:392.960000pt;}
.y29a{bottom:395.040000pt;}
.y474{bottom:395.200000pt;}
.y419{bottom:397.716000pt;}
.y45f{bottom:397.732000pt;}
.y214{bottom:398.080000pt;}
.y32e{bottom:398.556000pt;}
.y5b2{bottom:398.720000pt;}
.ycd{bottom:400.320000pt;}
.y156{bottom:401.309440pt;}
.y1ba{bottom:402.714240pt;}
.y2e2{bottom:403.365760pt;}
.y5c5{bottom:404.074240pt;}
.y9e{bottom:404.640000pt;}
.y2f0{bottom:404.833280pt;}
.y8b{bottom:404.970240pt;}
.y5d9{bottom:405.302400pt;}
.y19c{bottom:405.367680pt;}
.y393{bottom:405.760000pt;}
.y594{bottom:406.080000pt;}
.y49b{bottom:406.528000pt;}
.y4e2{bottom:406.532000pt;}
.y551{bottom:406.540000pt;}
.y521{bottom:406.544000pt;}
.y407{bottom:406.548000pt;}
.y4bf{bottom:406.552000pt;}
.y501{bottom:406.556000pt;}
.y4fd{bottom:406.560000pt;}
.y2c1{bottom:406.720000pt;}
.y3f{bottom:407.119360pt;}
.y1e8{bottom:408.813440pt;}
.y42e{bottom:408.960000pt;}
.y25{bottom:409.196800pt;}
.y365{bottom:409.280000pt;}
.ye7{bottom:409.440000pt;}
.y74{bottom:409.454720pt;}
.y25c{bottom:409.600000pt;}
.y144{bottom:410.240000pt;}
.y57e{bottom:410.560000pt;}
.y125{bottom:410.720000pt;}
.y241{bottom:411.360000pt;}
.y418{bottom:411.480000pt;}
.y45e{bottom:411.496000pt;}
.y479{bottom:411.512000pt;}
.y32d{bottom:412.320000pt;}
.y124{bottom:413.276000pt;}
.y348{bottom:413.440000pt;}
.y299{bottom:414.880000pt;}
.y533{bottom:416.640000pt;}
.y213{bottom:417.920000pt;}
.y32f{bottom:418.240000pt;}
.y10a{bottom:418.560000pt;}
.y16d{bottom:418.777600pt;}
.y392{bottom:419.576000pt;}
.y3b6{bottom:419.680000pt;}
.y49a{bottom:420.292000pt;}
.y4e1{bottom:420.296000pt;}
.y550{bottom:420.304000pt;}
.y4dc{bottom:420.308000pt;}
.y406{bottom:420.312000pt;}
.y3d7{bottom:420.316000pt;}
.y4fc{bottom:420.320000pt;}
.y1da{bottom:420.355840pt;}
.ya4{bottom:420.960000pt;}
.y3e7{bottom:422.720000pt;}
.y65{bottom:423.120000pt;}
.y2fd{bottom:423.541120pt;}
.y5a5{bottom:424.000000pt;}
.y193{bottom:424.871680pt;}
.y417{bottom:425.244000pt;}
.y45d{bottom:425.260000pt;}
.y478{bottom:425.276000pt;}
.y368{bottom:425.596000pt;}
.yef{bottom:425.920000pt;}
.y240{bottom:426.400000pt;}
.y123{bottom:427.196000pt;}
.y50{bottom:428.480000pt;}
.y30c{bottom:429.280000pt;}
.y25b{bottom:429.440000pt;}
.y34b{bottom:429.912000pt;}
.y455{bottom:430.240000pt;}
.ye3{bottom:431.040000pt;}
.y2c0{bottom:431.360000pt;}
.y319{bottom:432.160000pt;}
.y82{bottom:433.301120pt;}
.y391{bottom:433.392000pt;}
.y499{bottom:434.056000pt;}
.y4e0{bottom:434.060000pt;}
.y54f{bottom:434.068000pt;}
.y4db{bottom:434.072000pt;}
.y405{bottom:434.076000pt;}
.y3d6{bottom:434.080000pt;}
.y298{bottom:434.720000pt;}
.y109{bottom:435.040000pt;}
.y155{bottom:435.062400pt;}
.y1b9{bottom:436.384640pt;}
.y578{bottom:436.480000pt;}
.y56a{bottom:436.640000pt;}
.y23f{bottom:436.960000pt;}
.y212{bottom:437.760000pt;}
.y5c4{bottom:437.827200pt;}
.y27a{bottom:437.920000pt;}
.y324{bottom:438.720000pt;}
.y8a{bottom:438.723200pt;}
.ycb{bottom:439.036000pt;}
.y5d8{bottom:439.055360pt;}
.y19b{bottom:439.120640pt;}
.y3ee{bottom:439.164000pt;}
.y45c{bottom:439.180000pt;}
.y477{bottom:439.196000pt;}
.y367{bottom:439.516000pt;}
.y1ef{bottom:440.872320pt;}
.y122{bottom:440.960000pt;}
.ya0{bottom:442.720000pt;}
.y24{bottom:442.949760pt;}
.y73{bottom:443.207680pt;}
.y34a{bottom:443.676000pt;}
.y32a{bottom:443.828000pt;}
.y37b{bottom:444.160000pt;}
.ya1{bottom:446.720000pt;}
.y498{bottom:447.976000pt;}
.y4df{bottom:447.980000pt;}
.y54e{bottom:447.988000pt;}
.y4da{bottom:447.992000pt;}
.y404{bottom:447.996000pt;}
.y3d5{bottom:448.000000pt;}
.y3b0{bottom:449.600000pt;}
.y2e1{bottom:449.925120pt;}
.y4fa{bottom:450.400000pt;}
.y2bf{bottom:451.200000pt;}
.yea{bottom:451.520000pt;}
.y16c{bottom:452.383360pt;}
.yca{bottom:452.800000pt;}
.y3ed{bottom:452.928000pt;}
.y45b{bottom:452.944000pt;}
.y476{bottom:452.960000pt;}
.y366{bottom:453.280000pt;}
.y25a{bottom:454.080000pt;}
.y1d9{bottom:454.108800pt;}
.y2ef{bottom:454.586880pt;}
.y297{bottom:454.720000pt;}
.ycc{bottom:456.800000pt;}
.y3e{bottom:456.872960pt;}
.y593{bottom:456.967680pt;}
.y3a1{bottom:457.120000pt;}
.y2fc{bottom:457.294080pt;}
.y349{bottom:457.440000pt;}
.y329{bottom:457.592000pt;}
.y23e{bottom:457.760000pt;}
.y141{bottom:457.920000pt;}
.y1e7{bottom:458.419840pt;}
.y192{bottom:458.624640pt;}
.y106{bottom:460.640000pt;}
.y390{bottom:460.920000pt;}
.y497{bottom:461.740000pt;}
.y4de{bottom:461.744000pt;}
.y54d{bottom:461.752000pt;}
.y4d9{bottom:461.756000pt;}
.y403{bottom:461.760000pt;}
.y4f{bottom:462.240000pt;}
.y3b4{bottom:466.068000pt;}
.y11c{bottom:466.560000pt;}
.y3ec{bottom:466.692000pt;}
.y45a{bottom:466.708000pt;}
.y537{bottom:466.720000pt;}
.y81{bottom:467.054080pt;}
.yee{bottom:467.992000pt;}
.y9c{bottom:468.320000pt;}
.y154{bottom:468.815360pt;}
.y1b8{bottom:470.137600pt;}
.y2be{bottom:471.040000pt;}
.y328{bottom:471.512000pt;}
.y5c3{bottom:471.580160pt;}
.y48f{bottom:471.840000pt;}
.y211{bottom:472.640000pt;}
.y5d7{bottom:472.808320pt;}
.y64{bottom:472.873600pt;}
.y3ac{bottom:473.428000pt;}
.y259{bottom:473.920000pt;}
.y38f{bottom:474.736000pt;}
.y5a4{bottom:474.887040pt;}
.y495{bottom:475.504000pt;}
.y4dd{bottom:475.508000pt;}
.y54c{bottom:475.516000pt;}
.y4d8{bottom:475.520000pt;}
.y23{bottom:476.702720pt;}
.y23d{bottom:477.600000pt;}
.y3cb{bottom:477.920000pt;}
.yc5{bottom:478.400000pt;}
.y296{bottom:479.360000pt;}
.y3b3{bottom:479.832000pt;}
.y3eb{bottom:480.456000pt;}
.y459{bottom:480.472000pt;}
.y57d{bottom:480.480000pt;}
.y30b{bottom:480.960000pt;}
.yed{bottom:481.756000pt;}
.y120{bottom:483.028000pt;}
.y318{bottom:483.840000pt;}
.y327{bottom:485.276000pt;}
.y89{bottom:485.282560pt;}
.y2bd{bottom:486.080000pt;}
.y16b{bottom:486.136320pt;}
.y3ab{bottom:487.192000pt;}
.y140{bottom:488.320000pt;}
.y38e{bottom:488.552000pt;}
.y100{bottom:488.960000pt;}
.y494{bottom:489.268000pt;}
.y4d7{bottom:489.272000pt;}
.y54b{bottom:489.280000pt;}
.y3d{bottom:490.478720pt;}
.y17c{bottom:490.625920pt;}
.y2fb{bottom:491.047040pt;}
.y400{bottom:491.680000pt;}
.y191{bottom:492.377600pt;}
.y210{bottom:492.480000pt;}
.y569{bottom:492.640000pt;}
.y72{bottom:492.961280pt;}
.y3b2{bottom:493.596000pt;}
.y258{bottom:493.920000pt;}
.y3d2{bottom:494.376000pt;}
.y458{bottom:494.392000pt;}
.y57c{bottom:494.400000pt;}
.yec{bottom:495.520000pt;}
.y4e{bottom:496.000000pt;}
.yc7{bottom:496.160000pt;}
.y99{bottom:496.640000pt;}
.y11f{bottom:496.792000pt;}
.y23c{bottom:497.440000pt;}
.y326{bottom:499.040000pt;}
.y295{bottom:499.200000pt;}
.y416{bottom:499.360000pt;}
.yc8{bottom:500.160000pt;}
.y80{bottom:500.807040pt;}
.y3aa{bottom:501.112000pt;}
.y5b1{bottom:501.120000pt;}
.y386{bottom:502.368000pt;}
.y153{bottom:502.568320pt;}
.y493{bottom:503.188000pt;}
.y4d6{bottom:503.192000pt;}
.y54a{bottom:503.200000pt;}
.y1d8{bottom:503.862400pt;}
.y1b7{bottom:503.890560pt;}
.y2ee{bottom:504.340480pt;}
.y5c2{bottom:505.185920pt;}
.y105{bottom:505.272000pt;}
.y51b{bottom:505.600000pt;}
.y2bc{bottom:505.920000pt;}
.y5d6{bottom:506.561280pt;}
.y63{bottom:506.626560pt;}
.y592{bottom:506.721280pt;}
.y3b1{bottom:507.360000pt;}
.y3d1{bottom:508.140000pt;}
.y457{bottom:508.156000pt;}
.y1e6{bottom:508.173440pt;}
.y5a3{bottom:508.640000pt;}
.y22{bottom:510.455680pt;}
.y11e{bottom:510.556000pt;}
.y20f{bottom:512.320000pt;}
.y257{bottom:513.760000pt;}
.y3a9{bottom:514.876000pt;}
.y15d{bottom:515.546880pt;}
.y385{bottom:516.132000pt;}
.y364{bottom:516.476000pt;}
.y139{bottom:516.480000pt;}
.y492{bottom:516.952000pt;}
.y4d5{bottom:516.956000pt;}
.ye8{bottom:517.120000pt;}
.y12{bottom:517.935360pt;}
.y294{bottom:519.040000pt;}
.y104{bottom:519.192000pt;}
.y16a{bottom:519.889280pt;}
.y2d8{bottom:520.801920pt;}
.ye9{bottom:521.120000pt;}
.yc1{bottom:521.760000pt;}
.y3ea{bottom:521.904000pt;}
.y520{bottom:521.912000pt;}
.y57b{bottom:521.916000pt;}
.y456{bottom:521.920000pt;}
.y23b{bottom:522.080000pt;}
.y3c{bottom:524.231680pt;}
.y11d{bottom:524.320000pt;}
.y17b{bottom:524.378880pt;}
.y94{bottom:524.800000pt;}
.ye5{bottom:525.116000pt;}
.y568{bottom:525.280000pt;}
.y321{bottom:525.440000pt;}
.y2bb{bottom:525.920000pt;}
.y190{bottom:525.983360pt;}
.y71{bottom:526.714240pt;}
.y347{bottom:527.832000pt;}
.y3a8{bottom:528.640000pt;}
.y4d{bottom:529.760000pt;}
.y384{bottom:529.896000pt;}
.y363{bottom:530.396000pt;}
.y496{bottom:530.716000pt;}
.y4d4{bottom:530.720000pt;}
.y30a{bottom:531.840000pt;}
.y20e{bottom:532.320000pt;}
.y13f{bottom:532.948000pt;}
.y103{bottom:532.956000pt;}
.y547{bottom:533.120000pt;}
.y256{bottom:533.600000pt;}
.y293{bottom:534.080000pt;}
.y7f{bottom:534.560000pt;}
.y317{bottom:534.713600pt;}
.y3d0{bottom:535.668000pt;}
.y51f{bottom:535.676000pt;}
.y57a{bottom:535.680000pt;}
.y152{bottom:536.321280pt;}
.y3ae{bottom:537.440000pt;}
.y1d7{bottom:537.615360pt;}
.y2ed{bottom:537.946240pt;}
.ye4{bottom:538.880000pt;}
.y5c1{bottom:538.938880pt;}
.y5d5{bottom:540.314240pt;}
.y591{bottom:540.327040pt;}
.y62{bottom:540.379520pt;}
.y97{bottom:541.276000pt;}
.y346{bottom:541.596000pt;}
.y323{bottom:541.756000pt;}
.y23a{bottom:541.920000pt;}
.ye6{bottom:542.880000pt;}
.y38d{bottom:543.712000pt;}
.y383{bottom:543.816000pt;}
.y566{bottom:544.000640pt;}
.y21{bottom:544.061440pt;}
.y362{bottom:544.160000pt;}
.y491{bottom:544.480000pt;}
.y2ba{bottom:545.760000pt;}
.yc3{bottom:546.080000pt;}
.y13e{bottom:546.712000pt;}
.y102{bottom:546.720000pt;}
.y255{bottom:548.640000pt;}
.y15c{bottom:549.299840pt;}
.y3cf{bottom:549.588000pt;}
.y51e{bottom:549.596000pt;}
.y579{bottom:549.600000pt;}
.yc4{bottom:550.080000pt;}
.y567{bottom:551.200000pt;}
.y11{bottom:551.541120pt;}
.y20d{bottom:552.160000pt;}
.y5b0{bottom:552.800000pt;}
.y1b6{bottom:553.644160pt;}
.y3af{bottom:553.760000pt;}
.y292{bottom:553.920000pt;}
.y96{bottom:555.040000pt;}
.y322{bottom:555.520000pt;}
.y3a7{bottom:556.300000pt;}
.y38c{bottom:557.528000pt;}
.y382{bottom:557.580000pt;}
.y1e5{bottom:557.927040pt;}
.y3b{bottom:557.984640pt;}
.y490{bottom:558.400000pt;}
.y5a2{bottom:558.407040pt;}
.y18f{bottom:559.736320pt;}
.y70{bottom:560.320000pt;}
.y13d{bottom:560.476000pt;}
.y4d2{bottom:560.800000pt;}
.y239{bottom:561.920000pt;}
.y3e9{bottom:563.352000pt;}
.y51d{bottom:563.360000pt;}
.ye1{bottom:564.480000pt;}
.y2b9{bottom:565.600000pt;}
.y11b{bottom:566.400000pt;}
.y2d7{bottom:567.361280pt;}
.y254{bottom:568.480000pt;}
.y345{bottom:569.120000pt;}
.y169{bottom:569.642880pt;}
.y151{bottom:569.927040pt;}
.y3a6{bottom:570.064000pt;}
.y381{bottom:571.344000pt;}
.y1d6{bottom:571.368320pt;}
.ybf{bottom:571.680000pt;}
.y20c{bottom:572.000000pt;}
.yfd{bottom:572.320000pt;}
.y5c0{bottom:572.691840pt;}
.y5d4{bottom:573.920000pt;}
.y61{bottom:573.985280pt;}
.y590{bottom:574.080000pt;}
.y13c{bottom:574.396000pt;}
.y1c3{bottom:575.736960pt;}
.y2fa{bottom:576.480000pt;}
.y3ce{bottom:577.116000pt;}
.y51c{bottom:577.120000pt;}
.y20{bottom:577.814400pt;}
.y574{bottom:579.520000pt;}
.y4c{bottom:581.440000pt;}
.y238{bottom:581.760000pt;}
.y31f{bottom:581.920000pt;}
.y15b{bottom:583.052800pt;}
.y309{bottom:583.520000pt;}
.y3a5{bottom:583.828000pt;}
.y3ad{bottom:583.840000pt;}
.y316{bottom:584.320000pt;}
.y380{bottom:585.108000pt;}
.y38b{bottom:585.160000pt;}
.y10{bottom:585.294080pt;}
.y2b8{bottom:585.440000pt;}
.y7e{bottom:586.240000pt;}
.y1b5{bottom:587.397120pt;}
.y2ec{bottom:587.699840pt;}
.yc0{bottom:588.160000pt;}
.y253{bottom:588.320000pt;}
.yff{bottom:588.792000pt;}
.y291{bottom:590.080000pt;}
.y3cd{bottom:590.880000pt;}
.y360{bottom:591.040000pt;}
.y1e4{bottom:591.680000pt;}
.y3a{bottom:591.737600pt;}
.y20a{bottom:591.840000pt;}
.y11a{bottom:592.160000pt;}
.y577{bottom:596.000000pt;}
.y237{bottom:596.800000pt;}
.y3a4{bottom:597.592000pt;}
.y361{bottom:597.920000pt;}
.y38a{bottom:598.976000pt;}
.y37f{bottom:599.028000pt;}
.y209{bottom:602.400000pt;}
.ye0{bottom:602.556000pt;}
.y168{bottom:603.395840pt;}
.y150{bottom:603.680000pt;}
.y1d5{bottom:605.121280pt;}
.y5bf{bottom:606.444800pt;}
.y236{bottom:607.360000pt;}
.y60{bottom:607.738240pt;}
.y252{bottom:608.320000pt;}
.y18e{bottom:609.489920pt;}
.y576{bottom:609.752000pt;}
.y290{bottom:609.920000pt;}
.y2b7{bottom:610.080000pt;}
.y3a3{bottom:611.512000pt;}
.y1f{bottom:611.567360pt;}
.y6f{bottom:612.000000pt;}
.y37e{bottom:612.792000pt;}
.ybe{bottom:613.760000pt;}
.y343{bottom:616.000000pt;}
.ydf{bottom:616.320000pt;}
.y279{bottom:616.640000pt;}
.y93{bottom:616.658560pt;}
.yf{bottom:619.047040pt;}
.y119{bottom:620.320000pt;}
.y3c9{bottom:620.960000pt;}
.y1b4{bottom:621.150080pt;}
.y208{bottom:623.200000pt;}
.y575{bottom:623.516000pt;}
.y344{bottom:625.276000pt;}
.y39{bottom:625.490560pt;}
.y58f{bottom:625.760000pt;}
.y37d{bottom:626.556000pt;}
.y389{bottom:626.608000pt;}
.y2f9{bottom:627.360000pt;}
.y235{bottom:628.160000pt;}
.y28f{bottom:629.920000pt;}
.y4b{bottom:634.240000pt;}
.y308{bottom:634.407040pt;}
.y315{bottom:636.000000pt;}
.y278{bottom:636.480000pt;}
.y167{bottom:637.148800pt;}
.y3ca{bottom:637.280000pt;}
.y2eb{bottom:637.453440pt;}
.y1d4{bottom:638.727040pt;}
.y7d{bottom:639.040000pt;}
.y5be{bottom:640.197760pt;}
.y37c{bottom:640.320000pt;}
.y388{bottom:640.424000pt;}
.y5f{bottom:641.491200pt;}
.y5a1{bottom:641.760000pt;}
.ybb{bottom:642.080000pt;}
.y207{bottom:643.040000pt;}
.y18d{bottom:643.242880pt;}
.y35f{bottom:644.800000pt;}
.y234{bottom:648.000000pt;}
.y28e{bottom:649.760000pt;}
.y2b6{bottom:649.920000pt;}
.y92{bottom:650.411520pt;}
.ye{bottom:652.800000pt;}
.y387{bottom:654.240000pt;}
.y14f{bottom:655.360000pt;}
.y1aa{bottom:656.197760pt;}
.y277{bottom:656.320000pt;}
.ybd{bottom:658.400000pt;}
.y38{bottom:659.096320pt;}
.y17a{bottom:659.243520pt;}
.y1e{bottom:661.320960pt;}
.y6e{bottom:662.880000pt;}
.y28d{bottom:664.800000pt;}
.y341{bottom:665.440000pt;}
.y3c8{bottom:667.360000pt;}
.y307{bottom:668.160000pt;}
.y2b5{bottom:669.760000pt;}
.y166{bottom:670.754560pt;}
.y1b3{bottom:670.756480pt;}
.y2ea{bottom:671.206400pt;}
.y342{bottom:671.520000pt;}
.ybc{bottom:672.320000pt;}
.y1d3{bottom:672.480000pt;}
.y233{bottom:672.640000pt;}
.y5bd{bottom:673.803520pt;}
.y5e{bottom:675.244160pt;}
.y5a0{bottom:675.520000pt;}
.y276{bottom:676.320000pt;}
.y58e{bottom:676.647040pt;}
.yd{bottom:676.857600pt;}
.y18c{bottom:676.995840pt;}
.y2f8{bottom:679.040000pt;}
.y205{bottom:682.720000pt;}
.y91{bottom:684.164480pt;}
.y28c{bottom:684.640000pt;}
.y4a{bottom:685.120000pt;}
.y314{bottom:688.800000pt;}
.y2b4{bottom:689.600000pt;}
.y1a9{bottom:689.803520pt;}
.y2d6{bottom:690.249600pt;}
.y7c{bottom:691.840000pt;}
.y232{bottom:692.480000pt;}
.y37{bottom:692.849280pt;}
.y179{bottom:692.996480pt;}
.y1d{bottom:695.073920pt;}
.y275{bottom:696.160000pt;}
.y201{bottom:702.720000pt;}
.y28a{bottom:704.480000pt;}
.y165{bottom:704.507520pt;}
.y1b2{bottom:704.509440pt;}
.y2b3{bottom:704.640000pt;}
.y14e{bottom:706.240000pt;}
.y5af{bottom:706.247040pt;}
.y5bc{bottom:707.556480pt;}
.y5d{bottom:708.997120pt;}
.y2d5{bottom:709.606400pt;}
.y58d{bottom:710.400000pt;}
.y18b{bottom:710.601600pt;}
.yc{bottom:712.208160pt;}
.y231{bottom:712.320000pt;}
.y204{bottom:713.280000pt;}
.y6d{bottom:714.560000pt;}
.y28b{bottom:715.040000pt;}
.y274{bottom:716.000000pt;}
.y306{bottom:719.840000pt;}
.y2e9{bottom:720.960000pt;}
.y1a8{bottom:723.556480pt;}
.y1d2{bottom:724.160000pt;}
.y2b2{bottom:724.480000pt;}
.y59f{bottom:725.280000pt;}
.y36{bottom:726.602240pt;}
.y1c{bottom:728.679680pt;}
.y2d4{bottom:728.963200pt;}
.y2f7{bottom:729.760000pt;}
.y230{bottom:732.320000pt;}
.y200{bottom:733.920000pt;}
.y49{bottom:734.726400pt;}
.y288{bottom:735.840000pt;}
.y164{bottom:738.260480pt;}
.y1b1{bottom:738.262400pt;}
.y14d{bottom:739.999360pt;}
.y5ae{bottom:740.000000pt;}
.y273{bottom:740.640000pt;}
.y5bb{bottom:741.309440pt;}
.y313{bottom:741.600000pt;}
.y5c{bottom:742.602880pt;}
.y58c{bottom:744.152960pt;}
.y2b1{bottom:744.320000pt;}
.y18a{bottom:744.354560pt;}
.y289{bottom:746.400000pt;}
.y22f{bottom:747.360000pt;}
.yb{bottom:747.398400pt;}
.y2d3{bottom:748.320000pt;}
.y1ff{bottom:753.920000pt;}
.y1a7{bottom:757.309440pt;}
.y59e{bottom:759.053440pt;}
.y35{bottom:760.355200pt;}
.y272{bottom:760.480000pt;}
.y1b{bottom:762.432640pt;}
.y2b0{bottom:764.320000pt;}
.y6c{bottom:765.440000pt;}
.y22e{bottom:767.200000pt;}
.y2d2{bottom:768.640000pt;}
.y163{bottom:772.013440pt;}
.y1b0{bottom:772.015360pt;}
.y2e8{bottom:772.640000pt;}
.y14c{bottom:773.752320pt;}
.y1fe{bottom:773.760000pt;}
.y1d1{bottom:775.040000pt;}
.y5ba{bottom:775.062400pt;}
.y5b{bottom:776.355840pt;}
.y58b{bottom:777.758720pt;}
.y189{bottom:778.107520pt;}
.y271{bottom:780.320000pt;}
.y2f6{bottom:781.440000pt;}
.ya{bottom:782.748960pt;}
.y2af{bottom:784.160000pt;}
.y48{bottom:784.480000pt;}
.y22d{bottom:787.040000pt;}
.y143{bottom:791.062400pt;}
.y5ad{bottom:791.680000pt;}
.y59d{bottom:792.806400pt;}
.y1fd{bottom:793.600000pt;}
.y178{bottom:794.108160pt;}
.y312{bottom:794.400000pt;}
.y1a{bottom:796.185600pt;}
.y270{bottom:800.320000pt;}
.y2ae{bottom:804.000000pt;}
.y162{bottom:805.766400pt;}
.y1af{bottom:805.768320pt;}
.y22c{bottom:806.880000pt;}
.y14b{bottom:807.358080pt;}
.y5b9{bottom:808.815360pt;}
.y34{bottom:810.108800pt;}
.y198{bottom:811.374720pt;}
.y188{bottom:811.860480pt;}
.y58a{bottom:813.433600pt;}
.y1fb{bottom:813.440000pt;}
.y26f{bottom:815.360000pt;}
.y6b{bottom:817.120000pt;}
.y9{bottom:817.939200pt;}
.y2e7{bottom:823.360000pt;}
.y142{bottom:824.815360pt;}
.y1d0{bottom:826.720000pt;}
.y177{bottom:827.861120pt;}
.y2ad{bottom:828.640000pt;}
.y19{bottom:829.938560pt;}
.y2f5{bottom:832.320000pt;}
.y26e{bottom:835.200000pt;}
.y47{bottom:836.160000pt;}
.y1fa{bottom:839.200000pt;}
.y161{bottom:839.372160pt;}
.y1ae{bottom:839.374080pt;}
.y59c{bottom:842.560000pt;}
.y5b8{bottom:842.568320pt;}
.y33{bottom:843.861760pt;}
.y5ac{bottom:844.480000pt;}
.y197{bottom:845.127680pt;}
.y187{bottom:845.613440pt;}
.y22b{bottom:846.720000pt;}
.y311{bottom:847.200000pt;}
.y589{bottom:848.320000pt;}
.y2ac{bottom:848.480000pt;}
.y8{bottom:853.129440pt;}
.y1f8{bottom:854.720000pt;}
.y26d{bottom:855.040000pt;}
.y90{bottom:858.568320pt;}
.y14a{bottom:859.040000pt;}
.y18{bottom:863.691520pt;}
.y26c{bottom:865.600000pt;}
.y6a{bottom:868.000000pt;}
.y2ab{bottom:868.320000pt;}
.y22a{bottom:871.360000pt;}
.y160{bottom:873.125120pt;}
.y1ad{bottom:873.127040pt;}
.y2e6{bottom:875.040000pt;}
.y88{bottom:876.173440pt;}
.y5b7{bottom:876.174080pt;}
.y32{bottom:877.467520pt;}
.y5a{bottom:877.614720pt;}
.y1cf{bottom:877.615360pt;}
.y196{bottom:878.880640pt;}
.y2f4{bottom:884.000000pt;}
.y46{bottom:887.047040pt;}
.y2aa{bottom:888.320000pt;}
.y7{bottom:888.480000pt;}
.y229{bottom:891.200000pt;}
.y8f{bottom:892.174080pt;}
.y59b{bottom:894.240000pt;}
.y186{bottom:895.367040pt;}
.y17{bottom:897.444480pt;}
.y310{bottom:900.000000pt;}
.y2a9{bottom:903.360000pt;}
.y15f{bottom:906.878080pt;}
.y1ac{bottom:906.880000pt;}
.y149{bottom:909.920000pt;}
.y5b6{bottom:909.927040pt;}
.y228{bottom:911.040000pt;}
.y31{bottom:911.220480pt;}
.y59{bottom:911.367680pt;}
.y1ce{bottom:911.368320pt;}
.y69{bottom:919.680000pt;}
.y6{bottom:920.640000pt;}
.y45{bottom:920.800000pt;}
.y2a8{bottom:923.200000pt;}
.y2d1{bottom:923.840000pt;}
.y195{bottom:925.440000pt;}
.y305{bottom:925.920000pt;}
.y87{bottom:925.927040pt;}
.y227{bottom:926.080000pt;}
.y185{bottom:928.972800pt;}
.y16{bottom:931.050240pt;}
.y2f3{bottom:936.800000pt;}
.y2a6{bottom:943.680000pt;}
.y5d3{bottom:944.811520pt;}
.y30{bottom:944.973440pt;}
.y1cd{bottom:944.974080pt;}
.y2d0{bottom:945.120000pt;}
.y226{bottom:945.920000pt;}
.y5{bottom:948.329440pt;}
.y2cf{bottom:950.400000pt;}
.y30f{bottom:952.800000pt;}
.y15e{bottom:958.560000pt;}
.y86{bottom:959.680000pt;}
.y148{bottom:961.600000pt;}
.y15{bottom:964.803200pt;}
.y2a5{bottom:965.120000pt;}
.y225{bottom:965.920000pt;}
.y2a4{bottom:970.240000pt;}
.y44{bottom:972.320000pt;}
.y5d2{bottom:978.564480pt;}
.y2f{bottom:978.726400pt;}
.y1cc{bottom:978.727040pt;}
.y4{bottom:983.680000pt;}
.y14{bottom:984.160000pt;}
.y224{bottom:985.760000pt;}
.y2f2{bottom:991.360000pt;}
.y5b5{bottom:995.360000pt;}
.y223{bottom:1005.600000pt;}
.y30e{bottom:1007.360000pt;}
.y13{bottom:1010.080000pt;}
.y85{bottom:1011.360000pt;}
.y5d1{bottom:1012.317440pt;}
.y2e{bottom:1012.479360pt;}
.y3{bottom:1013.760000pt;}
.h37{height:19.200000pt;}
.h35{height:19.998667pt;}
.h3a{height:20.000000pt;}
.h14{height:20.958667pt;}
.h1a{height:20.960000pt;}
.h20{height:21.120000pt;}
.h10{height:27.520000pt;}
.h33{height:27.521333pt;}
.h12{height:27.678667pt;}
.h17{height:27.680000pt;}
.h38{height:30.560000pt;}
.h39{height:30.720000pt;}
.h3e{height:31.200000pt;}
.h41{height:32.000000pt;}
.h47{height:32.801333pt;}
.hf{height:32.859375pt;}
.h29{height:33.328125pt;}
.h36{height:36.364375pt;}
.h3b{height:36.883125pt;}
.h3c{height:39.243750pt;}
.h1c{height:41.280000pt;}
.h15{height:41.440000pt;}
.h18{height:41.441333pt;}
.h11{height:42.117188pt;}
.h45{height:42.133188pt;}
.h1f{height:42.720000pt;}
.h2{height:42.866250pt;}
.ha{height:43.520660pt;}
.h9{height:43.812500pt;}
.h3{height:46.609688pt;}
.h8{height:47.317500pt;}
.h44{height:48.000000pt;}
.h48{height:48.798667pt;}
.h21{height:49.278667pt;}
.h1e{height:49.280000pt;}
.h5{height:51.260625pt;}
.h69{height:51.548750pt;}
.h7{height:51.663750pt;}
.h34{height:51.666310pt;}
.he{height:55.200000pt;}
.hb{height:56.097370pt;}
.h3d{height:56.156250pt;}
.h68{height:56.161370pt;}
.h67{height:56.181850pt;}
.h13{height:63.040000pt;}
.h4b{height:64.800000pt;}
.h27{height:68.958667pt;}
.h28{height:68.960000pt;}
.h2a{height:69.120000pt;}
.h16{height:69.761333pt;}
.h4{height:73.166875pt;}
.h2b{height:82.720000pt;}
.h4f{height:82.878667pt;}
.h1d{height:82.880000pt;}
.h3f{height:85.280000pt;}
.h4c{height:89.598667pt;}
.h2e{height:91.360000pt;}
.h24{height:91.361333pt;}
.h23{height:92.640000pt;}
.h6{height:93.780937pt;}
.h32{height:96.640000pt;}
.h65{height:96.641333pt;}
.h49{height:103.040000pt;}
.h43{height:110.400000pt;}
.h30{height:111.678667pt;}
.h50{height:124.158667pt;}
.h51{height:124.320000pt;}
.h31{height:124.960000pt;}
.h40{height:136.320000pt;}
.h5d{height:137.920000pt;}
.h52{height:138.078667pt;}
.h66{height:138.080000pt;}
.h2f{height:139.998667pt;}
.h46{height:150.881333pt;}
.h4a{height:155.360000pt;}
.h2d{height:161.600000pt;}
.h56{height:165.600000pt;}
.h5f{height:179.358667pt;}
.h1b{height:181.440000pt;}
.h2c{height:189.280000pt;}
.h54{height:193.278667pt;}
.h42{height:200.800000pt;}
.h4e{height:206.880000pt;}
.h53{height:207.040000pt;}
.h58{height:207.041333pt;}
.h61{height:209.280000pt;}
.h59{height:220.800000pt;}
.h19{height:231.360000pt;}
.h55{height:248.320000pt;}
.h64{height:248.478667pt;}
.h60{height:262.080000pt;}
.h5a{height:275.840000pt;}
.h22{height:276.641333pt;}
.h63{height:344.960000pt;}
.h5c{height:358.878667pt;}
.h5e{height:386.400000pt;}
.h26{height:420.641333pt;}
.h62{height:427.840000pt;}
.h25{height:442.241333pt;}
.h4d{height:455.358667pt;}
.h5b{height:483.040000pt;}
.h57{height:510.558667pt;}
.hc{height:793.920000pt;}
.hd{height:794.000000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w35{width:45.120000pt;}
.w36{width:47.681333pt;}
.w25{width:47.838667pt;}
.w32{width:48.000000pt;}
.w1e{width:48.640000pt;}
.w27{width:49.280000pt;}
.w21{width:49.920000pt;}
.wf{width:50.880000pt;}
.w4{width:51.041333pt;}
.w6{width:51.198667pt;}
.w8{width:51.360000pt;}
.w2a{width:52.481333pt;}
.w20{width:53.280000pt;}
.w2b{width:53.920000pt;}
.wa{width:54.080000pt;}
.w22{width:54.560000pt;}
.w28{width:57.920000pt;}
.w1c{width:58.721333pt;}
.wd{width:63.521333pt;}
.w34{width:64.960000pt;}
.w30{width:65.118667pt;}
.w39{width:67.680000pt;}
.w24{width:78.240000pt;}
.w1a{width:78.881333pt;}
.w2e{width:81.440000pt;}
.wb{width:89.120000pt;}
.we{width:98.880000pt;}
.w5{width:99.200000pt;}
.w2d{width:102.080000pt;}
.w29{width:117.920000pt;}
.w1d{width:118.560000pt;}
.w10{width:121.600000pt;}
.w7{width:121.920000pt;}
.w9{width:123.840000pt;}
.w23{width:133.760000pt;}
.w19{width:134.400000pt;}
.w18{width:136.800000pt;}
.w33{width:152.480000pt;}
.w31{width:153.920000pt;}
.wc{width:156.960000pt;}
.w2c{width:159.040000pt;}
.w37{width:161.760000pt;}
.w26{width:177.760000pt;}
.w1f{width:178.398667pt;}
.w38{width:183.200000pt;}
.w14{width:267.680000pt;}
.w12{width:268.001333pt;}
.w17{width:268.320000pt;}
.w16{width:331.040000pt;}
.w13{width:331.680000pt;}
.w11{width:332.000000pt;}
.w2f{width:361.920000pt;}
.w1b{width:387.360000pt;}
.w3a{width:512.960000pt;}
.w15{width:600.000000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.w3{width:1122.000000pt;}
.w2{width:1122.240000pt;}
.x0{left:0.000000pt;}
.x43{left:2.560000pt;}
.xd{left:4.320000pt;}
.x54{left:15.040000pt;}
.x5f{left:32.640000pt;}
.x57{left:45.280000pt;}
.x59{left:52.320000pt;}
.x55{left:56.960000pt;}
.x2e{left:74.880000pt;}
.x5c{left:92.640000pt;}
.x5b{left:94.880000pt;}
.x2{left:95.999360pt;}
.x2a{left:96.960000pt;}
.xe{left:100.960000pt;}
.x4{left:120.000000pt;}
.x5e{left:134.720000pt;}
.x27{left:143.972480pt;}
.x5d{left:146.720000pt;}
.xf{left:148.000000pt;}
.x58{left:151.200000pt;}
.x10{left:152.640000pt;}
.x5{left:192.000000pt;}
.x33{left:234.720000pt;}
.x6{left:240.000000pt;}
.x11{left:247.520000pt;}
.x12{left:252.160000pt;}
.x44{left:256.960000pt;}
.x53{left:259.520000pt;}
.x62{left:262.080000pt;}
.x30{left:280.000000pt;}
.x2d{left:281.760000pt;}
.x2f{left:282.880000pt;}
.x3{left:295.360000pt;}
.x13{left:299.040000pt;}
.x14{left:303.680000pt;}
.x2c{left:327.200000pt;}
.x29{left:344.640000pt;}
.x45{left:360.000000pt;}
.x5a{left:362.400000pt;}
.x34{left:369.760000pt;}
.x35{left:374.400000pt;}
.x23{left:396.959360pt;}
.x15{left:421.280000pt;}
.x16{left:426.080000pt;}
.x28{left:429.280000pt;}
.x2b{left:433.280000pt;}
.x46{left:442.400000pt;}
.x60{left:443.680000pt;}
.x49{left:444.960000pt;}
.x63{left:446.240000pt;}
.x36{left:449.280000pt;}
.x3a{left:454.080000pt;}
.x17{left:472.960000pt;}
.x18{left:477.600000pt;}
.x4a{left:491.200000pt;}
.x4b{left:493.760000pt;}
.x3b{left:498.560000pt;}
.x3c{left:503.200000pt;}
.x61{left:512.320000pt;}
.x64{left:514.880000pt;}
.x19{left:597.120000pt;}
.x1a{left:601.760000pt;}
.x4c{left:644.640000pt;}
.x4d{left:647.200000pt;}
.x1b{left:651.520000pt;}
.x1c{left:656.320000pt;}
.x65{left:673.440000pt;}
.x3d{left:677.600000pt;}
.x9{left:681.600000pt;}
.x1{left:689.760000pt;}
.x24{left:696.320000pt;}
.xa{left:697.909760pt;}
.x4e{left:710.560000pt;}
.x4f{left:713.120000pt;}
.x3e{left:731.520000pt;}
.x3f{left:736.160000pt;}
.x1d{left:740.960000pt;}
.x1e{left:745.600000pt;}
.x50{left:756.640000pt;}
.x51{left:759.200000pt;}
.x40{left:782.080000pt;}
.x41{left:786.720000pt;}
.x47{left:805.280000pt;}
.x52{left:807.840000pt;}
.x37{left:837.280000pt;}
.x38{left:842.080000pt;}
.x48{left:871.360000pt;}
.x56{left:873.920000pt;}
.x39{left:896.640000pt;}
.x1f{left:898.240000pt;}
.x42{left:901.280000pt;}
.x20{left:902.880000pt;}
.x26{left:952.158720pt;}
.x21{left:962.080000pt;}
.xc{left:963.993600pt;}
.x22{left:966.720000pt;}
.x32{left:995.200000pt;}
.x31{left:1005.916160pt;}
.xb{left:1009.920000pt;}
.x25{left:1016.160000pt;}
.x7{left:1018.080000pt;}
.x8{left:1026.234880pt;}
}




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