
    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_3feac11f2d7cd413e69bfe2d.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_8b727d36290c8df674710f61.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_74f3eff7e55b3ea36b961518.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_fdf6615e3357d3deda4c60d0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_7b96fbe1a1abc15228c6956b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_196ce9619d993be95d182473.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_7b9aca112b1121f97d5d8eeb.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.095703;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_ebe88d13050a6b727a43af5e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_04a5d695cee4f9c96d759eca.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-26.272800px;}
.v6{vertical-align:-23.161800px;}
.v3{vertical-align:-20.141400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.256360px;}
.v4{vertical-align:26.272992px;}
.v1{vertical-align:30.000000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.004800px;}
.ls30{letter-spacing:0.010200px;}
.ls37{letter-spacing:0.030600px;}
.ls3a{letter-spacing:0.048600px;}
.ls27{letter-spacing:0.053400px;}
.ls2a{letter-spacing:0.054000px;}
.ls25{letter-spacing:0.066000px;}
.ls20{letter-spacing:0.067800px;}
.ls6c{letter-spacing:0.075600px;}
.ls36{letter-spacing:0.084600px;}
.ls54{letter-spacing:0.092544px;}
.ls65{letter-spacing:0.094200px;}
.ls6b{letter-spacing:0.112800px;}
.ls66{letter-spacing:0.116400px;}
.ls33{letter-spacing:0.127200px;}
.ls5a{letter-spacing:0.127800px;}
.ls1c{letter-spacing:0.128952px;}
.ls18{letter-spacing:0.133200px;}
.ls2b{letter-spacing:0.133800px;}
.ls79{letter-spacing:0.136200px;}
.ls2{letter-spacing:0.137400px;}
.ls48{letter-spacing:0.144600px;}
.ls1a{letter-spacing:0.153600px;}
.ls29{letter-spacing:0.155400px;}
.ls4b{letter-spacing:0.156000px;}
.ls6a{letter-spacing:0.157800px;}
.ls16{letter-spacing:0.158376px;}
.ls64{letter-spacing:0.161400px;}
.ls5b{letter-spacing:0.162600px;}
.ls24{letter-spacing:0.166200px;}
.ls47{letter-spacing:0.167400px;}
.ls6e{letter-spacing:0.170052px;}
.ls49{letter-spacing:0.170400px;}
.ls26{letter-spacing:0.192000px;}
.lse{letter-spacing:0.192600px;}
.ls31{letter-spacing:0.195000px;}
.ls4d{letter-spacing:0.195600px;}
.ls4a{letter-spacing:0.196200px;}
.ls78{letter-spacing:0.196800px;}
.ls74{letter-spacing:0.197268px;}
.ls7c{letter-spacing:0.198000px;}
.ls4c{letter-spacing:0.198600px;}
.ls5{letter-spacing:0.205800px;}
.ls5d{letter-spacing:0.206400px;}
.ls63{letter-spacing:0.209400px;}
.ls2f{letter-spacing:0.210000px;}
.ls19{letter-spacing:0.214800px;}
.ls5c{letter-spacing:0.222000px;}
.ls4e{letter-spacing:0.222600px;}
.ls73{letter-spacing:0.230832px;}
.lsb{letter-spacing:0.238200px;}
.ls68{letter-spacing:0.238800px;}
.ls42{letter-spacing:0.242868px;}
.ls17{letter-spacing:0.243600px;}
.ls59{letter-spacing:0.244800px;}
.ls3c{letter-spacing:0.247200px;}
.ls76{letter-spacing:0.251004px;}
.ls57{letter-spacing:0.260928px;}
.ls7a{letter-spacing:0.262800px;}
.ls7b{letter-spacing:0.265800px;}
.ls23{letter-spacing:0.279000px;}
.ls34{letter-spacing:0.312600px;}
.ls38{letter-spacing:0.326400px;}
.ls1{letter-spacing:0.389640px;}
.ls28{letter-spacing:0.394800px;}
.ls5f{letter-spacing:0.404400px;}
.ls13{letter-spacing:0.451332px;}
.ls3e{letter-spacing:0.490560px;}
.ls3{letter-spacing:0.491400px;}
.ls7d{letter-spacing:0.491976px;}
.ls67{letter-spacing:0.523476px;}
.ls10{letter-spacing:0.530400px;}
.ls44{letter-spacing:0.560640px;}
.ls11{letter-spacing:0.581640px;}
.ls77{letter-spacing:0.639600px;}
.ls32{letter-spacing:0.666000px;}
.lsa{letter-spacing:0.698400px;}
.lsc{letter-spacing:0.721200px;}
.ls39{letter-spacing:0.736200px;}
.ls5e{letter-spacing:0.756600px;}
.ls61{letter-spacing:0.773820px;}
.ls62{letter-spacing:0.814080px;}
.ls1d{letter-spacing:0.814800px;}
.ls58{letter-spacing:0.822000px;}
.lsd{letter-spacing:0.856200px;}
.ls1b{letter-spacing:0.902376px;}
.ls70{letter-spacing:0.902544px;}
.ls22{letter-spacing:0.902940px;}
.ls4{letter-spacing:0.921000px;}
.ls1f{letter-spacing:0.946200px;}
.ls2e{letter-spacing:0.985800px;}
.ls15{letter-spacing:0.985824px;}
.ls56{letter-spacing:0.985872px;}
.ls41{letter-spacing:0.985932px;}
.ls72{letter-spacing:0.985968px;}
.ls6d{letter-spacing:0.986148px;}
.ls75{letter-spacing:0.986196px;}
.ls71{letter-spacing:1.160568px;}
.ls14{letter-spacing:1.191360px;}
.ls7f{letter-spacing:2.579040px;}
.ls46{letter-spacing:2.663040px;}
.ls2c{letter-spacing:2.733708px;}
.ls45{letter-spacing:3.363840px;}
.ls7e{letter-spacing:3.580800px;}
.ls4f{letter-spacing:4.835520px;}
.ls21{letter-spacing:5.466240px;}
.ls43{letter-spacing:6.937920px;}
.ls3f{letter-spacing:7.638720px;}
.ls60{letter-spacing:12.684480px;}
.ls3b{letter-spacing:16.328640px;}
.ls35{letter-spacing:25.596972px;}
.ls6{letter-spacing:33.077760px;}
.ls9{letter-spacing:71.056200px;}
.ls7{letter-spacing:183.360600px;}
.ls8{letter-spacing:186.117600px;}
.ls3d{letter-spacing:186.117660px;}
.ls12{letter-spacing:189.145920px;}
.ls53{letter-spacing:189.155640px;}
.ls55{letter-spacing:190.516560px;}
.ls6f{letter-spacing:190.516608px;}
.ls50{letter-spacing:190.516620px;}
.ls40{letter-spacing:190.516716px;}
.ls52{letter-spacing:190.516764px;}
.ls2d{letter-spacing:190.516776px;}
.ls51{letter-spacing:190.516800px;}
.ls69{letter-spacing:190.516836px;}
.ls1e{letter-spacing:190.516980px;}
.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;}
}
.ws1{word-spacing:-20.499000px;}
.ws3{word-spacing:-17.520000px;}
.ws5{word-spacing:-16.119000px;}
.ws2{word-spacing:-15.000000px;}
.ws4{word-spacing:-14.541000px;}
.ws7{word-spacing:-11.739000px;}
.ws6{word-spacing:-10.161000px;}
.ws8{word-spacing:-9.460500px;}
.ws0{word-spacing:0.000000px;}
._4c{margin-left:-15.409764px;}
._3{margin-left:-6.452280px;}
._4{margin-left:-4.800000px;}
._2{margin-left:-3.032280px;}
._1{margin-left:-1.347720px;}
._0{width:1.053600px;}
._a{width:2.188680px;}
._e{width:3.714240px;}
._f{width:5.183520px;}
._10{width:6.660000px;}
._11{width:7.778880px;}
._1b{width:8.779080px;}
._16{width:9.827400px;}
._17{width:10.878600px;}
._d{width:11.983680px;}
._c{width:13.611480px;}
._19{width:15.137280px;}
._1a{width:16.469520px;}
._28{width:18.069876px;}
._1c{width:19.482240px;}
._1e{width:20.827560px;}
._1d{width:22.005120px;}
._18{width:23.476800px;}
._15{width:24.754440px;}
._12{width:25.859520px;}
._14{width:26.959320px;}
._13{width:27.961920px;}
._2a{width:29.379720px;}
._22{width:31.157640px;}
._20{width:32.991720px;}
._1f{width:34.565400px;}
._2e{width:35.880960px;}
._2f{width:37.194120px;}
._30{width:39.120840px;}
._23{width:40.155840px;}
._24{width:41.697600px;}
._32{width:43.422288px;}
._2d{width:44.517000px;}
._2c{width:45.692160px;}
._3d{width:47.374080px;}
._38{width:48.565440px;}
._39{width:49.686720px;}
._3c{width:51.576720px;}
._36{width:53.190720px;}
._37{width:54.732480px;}
._42{width:55.853760px;}
._31{width:57.061260px;}
._34{width:58.554480px;}
._33{width:59.724360px;}
._35{width:61.142160px;}
._45{width:66.996360px;}
._27{width:71.090688px;}
._3e{width:72.112080px;}
._3f{width:73.724160px;}
._48{width:79.821120px;}
._25{width:82.133760px;}
._26{width:83.675520px;}
._43{width:86.354520px;}
._49{width:89.772480px;}
._4a{width:90.893760px;}
._6{width:96.591288px;}
._5{width:97.739316px;}
._7{width:99.623568px;}
._29{width:101.545920px;}
._47{width:103.157760px;}
._3a{width:113.809920px;}
._4d{width:148.008960px;}
._4e{width:149.340480px;}
._4f{width:162.150864px;}
._3b{width:171.625920px;}
._44{width:177.792960px;}
._b{width:189.145920px;}
._41{width:190.526580px;}
._2b{width:192.014148px;}
._9{width:245.906004px;}
._8{width:247.781484px;}
._54{width:249.586596px;}
._46{width:310.244160px;}
._55{width:481.442292px;}
._53{width:525.350448px;}
._51{width:629.737092px;}
._50{width:817.684632px;}
._40{width:1137.398400px;}
._21{width:1154.638080px;}
._4b{width:1173.349440px;}
._52{width:1568.636604px;}
.fc2{color:transparent;}
.fc3{color:rgb(35,31,32);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:37.842000px;}
.fsb{font-size:40.644000px;}
.fs7{font-size:46.956000px;}
.fs9{font-size:58.164000px;}
.fs6{font-size:60.000000px;}
.fsa{font-size:64.476000px;}
.fs3{font-size:70.080000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:81.996000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:93.204000px;}
.fs1{font-size:95.760000px;}
.fsc{font-size:105.120000px;}
.y58d{bottom:-13.148700px;}
.y1fc{bottom:-12.943350px;}
.y336{bottom:-3.952050px;}
.y0{bottom:0.000000px;}
.y42f{bottom:1.278600px;}
.y2{bottom:1.575000px;}
.y365{bottom:2.724300px;}
.y2fd{bottom:2.896050px;}
.yea{bottom:4.323900px;}
.y58b{bottom:25.215600px;}
.y5e2{bottom:26.470800px;}
.y5dc{bottom:26.481450px;}
.ye9{bottom:29.700000px;}
.ye8{bottom:34.023810px;}
.y5df{bottom:35.846850px;}
.y362{bottom:39.620700px;}
.y360{bottom:39.787920px;}
.y2fb{bottom:39.792450px;}
.y431{bottom:48.982650px;}
.y333{bottom:52.779000px;}
.y42c{bottom:56.534550px;}
.y2ff{bottom:65.886300px;}
.y338{bottom:65.888400px;}
.y35f{bottom:69.834720px;}
.y35e{bottom:100.074240px;}
.y10b{bottom:106.018431px;}
.y369{bottom:106.018500px;}
.y4f4{bottom:106.740018px;}
.y76{bottom:107.818080px;}
.y2fe{bottom:109.440000px;}
.y653{bottom:109.448010px;}
.y5da{bottom:111.234450px;}
.y14f{bottom:111.236550px;}
.y43f{bottom:111.416250px;}
.yb2{bottom:112.688640px;}
.y64e{bottom:114.299829px;}
.y1f5{bottom:116.298900px;}
.y641{bottom:116.823360px;}
.y563{bottom:117.541680px;}
.y110{bottom:117.892080px;}
.y302{bottom:118.084800px;}
.y55a{bottom:119.345076px;}
.y554{bottom:120.414960px;}
.y2f9{bottom:121.326000px;}
.y255{bottom:122.755050px;}
.y10a{bottom:122.755122px;}
.y598{bottom:122.937840px;}
.y35b{bottom:122.937870px;}
.y660{bottom:124.567632px;}
.y32e{bottom:124.567674px;}
.y94{bottom:126.179040px;}
.y663{bottom:126.904887px;}
.y168{bottom:127.792500px;}
.y5c3{bottom:127.983600px;}
.y35d{bottom:130.313760px;}
.ye6{bottom:131.400000px;}
.y14e{bottom:131.581509px;}
.y569{bottom:132.293460px;}
.y1d9{bottom:132.293520px;}
.y1c9{bottom:132.293550px;}
.y622{bottom:133.922850px;}
.y4f3{bottom:134.464698px;}
.y161{bottom:136.619100px;}
.y652{bottom:137.172690px;}
.y75{bottom:138.057600px;}
.y12d{bottom:138.060798px;}
.y60e{bottom:138.232800px;}
.y43e{bottom:138.416550px;}
.y301{bottom:138.429972px;}
.y197{bottom:139.491750px;}
.y109{bottom:139.491813px;}
.y254{bottom:140.037300px;}
.y5d9{bottom:141.473970px;}
.y2f8{bottom:141.474000px;}
.y55{bottom:141.494250px;}
.y64d{bottom:142.201818px;}
.y32d{bottom:142.927215px;}
.yb1{bottom:143.103360px;}
.y10f{bottom:144.717300px;}
.y58f{bottom:144.747900px;}
.y640{bottom:146.887680px;}
.y669{bottom:147.069756px;}
.y562{bottom:147.781200px;}
.y106{bottom:148.131600px;}
.y195{bottom:148.318200px;}
.y36d{bottom:148.867440px;}
.y4c5{bottom:148.867500px;}
.y57a{bottom:149.761650px;}
.y553{bottom:150.654480px;}
.y65c{bottom:152.098884px;}
.y420{bottom:153.002160px;}
.y35a{bottom:153.002190px;}
.y14d{bottom:153.354750px;}
.y55c{bottom:154.629567px;}
.y5ec{bottom:154.629600px;}
.y55e{bottom:155.700240px;}
.y16d{bottom:156.417537px;}
.y93{bottom:156.593760px;}
.y196{bottom:156.961680px;}
.y300{bottom:156.966750px;}
.y282{bottom:157.130046px;}
.y585{bottom:157.321440px;}
.y160{bottom:157.680000px;}
.y3c6{bottom:157.680030px;}
.y29f{bottom:158.223120px;}
.y60d{bottom:158.398320px;}
.y43d{bottom:159.291900px;}
.y54{bottom:159.494250px;}
.y1c8{bottom:159.658695px;}
.y35c{bottom:160.553250px;}
.y436{bottom:160.746000px;}
.y2f7{bottom:161.099703px;}
.y108{bottom:161.452950px;}
.y32c{bottom:161.464065px;}
.ye5{bottom:161.464320px;}
.y1c0{bottom:162.171900px;}
.y621{bottom:162.350250px;}
.y4b8{bottom:162.366687px;}
.y2ab{bottom:163.251360px;}
.y368{bottom:164.881251px;}
.y194{bottom:165.054891px;}
.y677{bottom:165.058560px;}
.y40f{bottom:165.598980px;}
.y10e{bottom:165.599040px;}
.y5ae{bottom:165.599100px;}
.y211{bottom:167.218506px;}
.y74{bottom:168.297120px;}
.y49{bottom:169.208100px;}
.y64c{bottom:169.926498px;}
.y2d1{bottom:170.270100px;}
.y4d3{bottom:170.452110px;}
.y12c{bottom:170.818200px;}
.y24a{bottom:170.820000px;}
.y5d8{bottom:171.713490px;}
.y188{bottom:173.154228px;}
.yb0{bottom:173.167680px;}
.y167{bottom:173.866737px;}
.y587{bottom:173.866800px;}
.y14c{bottom:174.411600px;}
.y47a{bottom:174.794436px;}
.y37a{bottom:175.865760px;}
.y3fc{bottom:176.759280px;}
.y63f{bottom:177.302400px;}
.y3ae{bottom:177.486309px;}
.y2f6{bottom:178.010886px;}
.y51c{bottom:178.020720px;}
.y105{bottom:178.195920px;}
.y16c{bottom:178.198050px;}
.y60c{bottom:178.388640px;}
.y5f6{bottom:178.917000px;}
.y65b{bottom:179.823564px;}
.y541{bottom:179.823600px;}
.y32b{bottom:179.823606px;}
.y22c{bottom:180.894000px;}
.y182{bottom:181.966074px;}
.y4bf{bottom:182.523300px;}
.y107{bottom:182.523360px;}
.y55b{bottom:182.531556px;}
.y535{bottom:182.531589px;}
.y1bf{bottom:183.241680px;}
.y41f{bottom:183.416880px;}
.y359{bottom:183.416910px;}
.y584{bottom:184.868811px;}
.y1a8{bottom:185.764560px;}
.y5e1{bottom:186.300000px;}
.y92{bottom:186.658080px;}
.y250{bottom:187.015200px;}
.y1c7{bottom:187.383375px;}
.y512{bottom:187.383420px;}
.y28b{bottom:188.462640px;}
.y204{bottom:190.065411px;}
.y5bb{bottom:190.091298px;}
.y4b7{bottom:190.091367px;}
.y166{bottom:190.792461px;}
.y1f3{bottom:190.985520px;}
.y2d0{bottom:191.335920px;}
.y3cf{bottom:191.335950px;}
.ye4{bottom:191.703840px;}
.y367{bottom:192.428622px;}
.y676{bottom:192.605931px;}
.y2aa{bottom:193.315680px;}
.y5e3{bottom:193.685850px;}
.y2f5{bottom:194.747577px;}
.y210{bottom:194.943186px;}
.y187{bottom:195.113400px;}
.y53{bottom:195.494250px;}
.y568{bottom:196.013700px;}
.y4e7{bottom:196.013760px;}
.y64b{bottom:197.651178px;}
.y32a{bottom:198.360456px;}
.y73{bottom:198.361440px;}
.y60b{bottom:198.536640px;}
.y16b{bottom:198.717306px;}
.y23a{bottom:199.254900px;}
.y5a6{bottom:199.254960px;}
.y5f5{bottom:199.973280px;}
.y2cf{bottom:199.988433px;}
.y15f{bottom:201.059520px;}
.y56b{bottom:201.059580px;}
.y5d7{bottom:201.953010px;}
.y479{bottom:202.680306px;}
.y12b{bottom:203.214480px;}
.yaf{bottom:203.582400px;}
.y24e{bottom:203.930550px;}
.y3ad{bottom:205.033680px;}
.y589{bottom:205.912500px;}
.y379{bottom:205.912560px;}
.y203{bottom:206.816643px;}
.y3fb{bottom:206.823600px;}
.y63e{bottom:207.366720px;}
.y165{bottom:207.529152px;}
.y65a{bottom:207.548244px;}
.y65f{bottom:207.548250px;}
.y599{bottom:208.084980px;}
.y3e6{bottom:208.085040px;}
.y24f{bottom:208.085100px;}
.y524{bottom:208.260240px;}
.y4ce{bottom:208.628100px;}
.y104{bottom:208.628160px;}
.y534{bottom:210.240117px;}
.y253{bottom:210.240150px;}
.y22b{bottom:211.133520px;}
.y3c5{bottom:211.133550px;}
.y2f4{bottom:211.484268px;}
.y3dd{bottom:211.849050px;}
.y583{bottom:212.593491px;}
.y41e{bottom:213.481200px;}
.y358{bottom:213.481230px;}
.y52{bottom:213.494250px;}
.y1c6{bottom:215.108055px;}
.y548{bottom:215.108070px;}
.y511{bottom:215.108100px;}
.y16a{bottom:215.628450px;}
.y193{bottom:215.628489px;}
.y4d2{bottom:215.811390px;}
.y575{bottom:216.179250px;}
.y186{bottom:216.179280px;}
.y329{bottom:216.913425px;}
.y91{bottom:217.072800px;}
.y5ba{bottom:217.622550px;}
.y4b6{bottom:217.622619px;}
.y28a{bottom:218.526960px;}
.y60a{bottom:218.702160px;}
.y29{bottom:219.006000px;}
.y133{bottom:220.153302px;}
.y675{bottom:220.330611px;}
.y181{bottom:220.675650px;}
.y1f2{bottom:221.032320px;}
.ye3{bottom:221.943360px;}
.y20f{bottom:222.667866px;}
.y202{bottom:223.553334px;}
.y2a4{bottom:223.747920px;}
.y491{bottom:223.747950px;}
.y164{bottom:224.265843px;}
.y24d{bottom:224.816640px;}
.y567{bottom:225.182430px;}
.y4e6{bottom:226.078080px;}
.y2ce{bottom:227.713113px;}
.y2f3{bottom:228.235500px;}
.y5a4{bottom:228.594000px;}
.y72{bottom:228.776160px;}
.y281{bottom:229.492800px;}
.y478{bottom:230.404986px;}
.y15e{bottom:231.123840px;}
.y56a{bottom:231.123900px;}
.y51{bottom:231.494250px;}
.y5d6{bottom:232.017330px;}
.y192{bottom:232.190688px;}
.y4a7{bottom:232.190700px;}
.y4f0{bottom:232.742220px;}
.y3ac{bottom:232.742241px;}
.y169{bottom:232.928400px;}
.y12a{bottom:233.278800px;}
.yae{bottom:233.646720px;}
.y444{bottom:233.646780px;}
.y588{bottom:235.272870px;}
.y5b8{bottom:235.272924px;}
.y328{bottom:235.272966px;}
.y378{bottom:236.344800px;}
.y3fa{bottom:237.238320px;}
.y63d{bottom:237.606240px;}
.y4cd{bottom:237.787470px;}
.y533{bottom:237.787488px;}
.y523{bottom:238.324560px;}
.y103{bottom:238.674960px;}
.y539{bottom:238.690200px;}
.y609{bottom:238.867680px;}
.y201{bottom:240.290025px;}
.y3c4{bottom:240.302052px;}
.y582{bottom:240.302100px;}
.y28{bottom:240.426000px;}
.y337{bottom:240.840000px;}
.y40c{bottom:241.017075px;}
.y38e{bottom:241.197780px;}
.y3d5{bottom:241.197810px;}
.y22a{bottom:241.197840px;}
.y180{bottom:241.740960px;}
.y56c{bottom:242.832720px;}
.y1c5{bottom:242.832735px;}
.y41d{bottom:243.895920px;}
.y357{bottom:243.895950px;}
.y38f{bottom:245.329650px;}
.y4b5{bottom:245.347299px;}
.y2f2{bottom:245.525280px;}
.y163{bottom:246.048750px;}
.y1a7{bottom:246.243600px;}
.y90{bottom:247.137120px;}
.y132{bottom:247.861863px;}
.y674{bottom:248.055291px;}
.y289{bottom:248.941680px;}
.y191{bottom:249.116412px;}
.y50{bottom:249.494250px;}
.y4a6{bottom:249.660000px;}
.y280{bottom:250.553520px;}
.y5b2{bottom:250.553550px;}
.y20e{bottom:250.569855px;}
.y1f1{bottom:251.271840px;}
.ye2{bottom:252.182880px;}
.y490{bottom:252.907110px;}
.y2a3{bottom:253.794720px;}
.y327{bottom:253.809816px;}
.y5a8{bottom:254.156400px;}
.y475{bottom:254.875350px;}
.y57e{bottom:255.421620px;}
.y2cd{bottom:255.421674px;}
.y502{bottom:256.492800px;}
.y4e5{bottom:256.492830px;}
.y27{bottom:256.626000px;}
.y498{bottom:257.026716px;}
.y40b{bottom:257.753766px;}
.y477{bottom:257.952357px;}
.y3ce{bottom:257.952420px;}
.y4e1{bottom:258.472560px;}
.y71{bottom:258.840480px;}
.y608{bottom:259.015680px;}
.y4ef{bottom:260.466900px;}
.y3ab{bottom:260.466921px;}
.y4d1{bottom:261.170670px;}
.y56f{bottom:261.363330px;}
.y15d{bottom:261.363360px;}
.y200{bottom:262.254450px;}
.y5d5{bottom:262.432050px;}
.y3dc{bottom:262.997604px;}
.y52e{bottom:263.886180px;}
.yad{bottom:263.886240px;}
.y443{bottom:263.886300px;}
.y66c{bottom:265.512150px;}
.y4cc{bottom:265.512168px;}
.y2f1{bottom:265.673280px;}
.y190{bottom:265.853103px;}
.y377{bottom:266.391600px;}
.y4ec{bottom:266.391660px;}
.y162{bottom:267.127440px;}
.y3f9{bottom:267.302640px;}
.y4f{bottom:267.494250px;}
.y8f{bottom:267.675900px;}
.y63c{bottom:267.845760px;}
.y3c3{bottom:268.026732px;}
.y65e{bottom:268.577850px;}
.y522{bottom:268.739280px;}
.y102{bottom:269.107200px;}
.y4fb{bottom:269.110866px;}
.y33a{bottom:269.832060px;}
.y1c4{bottom:270.557400px;}
.y547{bottom:270.557415px;}
.y38d{bottom:271.437300px;}
.y3d4{bottom:271.437330px;}
.y229{bottom:271.437360px;}
.y326{bottom:272.169357px;}
.y4c4{bottom:273.071970px;}
.y4b4{bottom:273.071979px;}
.y497{bottom:273.952440px;}
.y56d{bottom:273.960180px;}
.y41c{bottom:273.960240px;}
.y356{bottom:273.960270px;}
.y40a{bottom:274.664949px;}
.y5a7{bottom:275.221650px;}
.y131{bottom:275.586543px;}
.y673{bottom:275.763852px;}
.y474{bottom:275.940000px;}
.y1d8{bottom:276.658320px;}
.y25c{bottom:276.658350px;}
.y20d{bottom:278.117226px;}
.y17f{bottom:279.006000px;}
.y607{bottom:279.181200px;}
.y48f{bottom:280.631790px;}
.y3e5{bottom:281.511360px;}
.y1f0{bottom:281.511390px;}
.ye1{bottom:282.422400px;}
.y18f{bottom:282.764286px;}
.y57d{bottom:283.146300px;}
.y2cc{bottom:283.146354px;}
.y2ba{bottom:283.315950px;}
.y2a2{bottom:284.034240px;}
.y4e{bottom:285.494250px;}
.y516{bottom:285.676989px;}
.y3cd{bottom:285.677037px;}
.y505{bottom:285.677100px;}
.y2f0{bottom:285.838800px;}
.y501{bottom:286.557120px;}
.y4e4{bottom:286.557150px;}
.y447{bottom:287.807400px;}
.y3aa{bottom:288.191550px;}
.y519{bottom:288.191601px;}
.y339{bottom:288.368850px;}
.y620{bottom:288.711555px;}
.y4e0{bottom:288.904800px;}
.y70{bottom:289.255200px;}
.y3db{bottom:290.706165px;}
.y325{bottom:290.706207px;}
.y8e{bottom:290.884530px;}
.y409{bottom:291.401640px;}
.y56e{bottom:291.602850px;}
.y15c{bottom:291.602880px;}
.y5d4{bottom:292.496370px;}
.y662{bottom:293.236800px;}
.y4c3{bottom:293.236839px;}
.y4cb{bottom:293.236848px;}
.y442{bottom:293.757840px;}
.y66b{bottom:294.125700px;}
.yac{bottom:294.125760px;}
.y4c9{bottom:295.751379px;}
.y3c2{bottom:295.751412px;}
.y496{bottom:295.915050px;}
.y376{bottom:296.648640px;}
.y4eb{bottom:296.648700px;}
.y3f8{bottom:297.542160px;}
.y63b{bottom:298.085280px;}
.y208{bottom:298.265976px;}
.y239{bottom:298.803600px;}
.y101{bottom:299.154000px;}
.y185{bottom:299.154030px;}
.y606{bottom:299.346720px;}
.y18e{bottom:299.500977px;}
.y5a3{bottom:300.783360px;}
.y4be{bottom:300.796650px;}
.y38c{bottom:300.796659px;}
.y65d{bottom:301.676850px;}
.y228{bottom:301.676880px;}
.y3d3{bottom:301.683204px;}
.y366{bottom:303.133911px;}
.y130{bottom:303.133914px;}
.y672{bottom:303.311223px;}
.y4d{bottom:303.494250px;}
.y597{bottom:303.831840px;}
.y41b{bottom:304.199760px;}
.y355{bottom:304.199790px;}
.y264{bottom:304.552350px;}
.y20c{bottom:305.825787px;}
.y25b{bottom:305.825820px;}
.y2ef{bottom:306.004320px;}
.y4d0{bottom:306.372270px;}
.y1d7{bottom:306.722640px;}
.yc8{bottom:307.997412px;}
.y561{bottom:308.327364px;}
.y48e{bottom:308.356470px;}
.y446{bottom:308.877570px;}
.y324{bottom:309.259176px;}
.y17e{bottom:309.420720px;}
.y6f{bottom:309.595920px;}
.y2cb{bottom:310.871034px;}
.y3e4{bottom:311.768400px;}
.y1ef{bottom:311.768430px;}
.ye0{bottom:312.661920px;}
.y3cc{bottom:313.385598px;}
.y43b{bottom:314.273700px;}
.y5f4{bottom:314.273730px;}
.y29a{bottom:314.273760px;}
.y61f{bottom:314.816880px;}
.y4e3{bottom:315.916281px;}
.y18d{bottom:316.252209px;}
.y5a1{bottom:316.446240px;}
.y3a9{bottom:316.796640px;}
.y532{bottom:316.818990px;}
.y408{bottom:316.964718px;}
.y2b9{bottom:318.430845px;}
.y14b{bottom:319.319520px;}
.y26e{bottom:319.319550px;}
.y54b{bottom:319.319580px;}
.y51d{bottom:319.333449px;}
.y605{bottom:319.494720px;}
.y58a{bottom:320.940000px;}
.y4c2{bottom:320.945409px;}
.y8d{bottom:321.124050px;}
.y15b{bottom:321.842400px;}
.y473{bottom:321.848001px;}
.y5d3{bottom:322.735890px;}
.y3c1{bottom:323.298783px;}
.y2b4{bottom:324.349950px;}
.yab{bottom:324.365280px;}
.y263{bottom:325.626750px;}
.y48{bottom:325.801860px;}
.y207{bottom:325.990656px;}
.y66a{bottom:326.528550px;}
.y375{bottom:326.888160px;}
.y323{bottom:327.618717px;}
.y3f7{bottom:327.781680px;}
.y58c{bottom:327.796050px;}
.y63a{bottom:328.324800px;}
.y38b{bottom:328.505220px;}
.y238{bottom:328.505229px;}
.y4b3{bottom:328.505250px;}
.y4fd{bottom:329.218320px;}
.y51e{bottom:329.393460px;}
.y100{bottom:329.393520px;}
.y184{bottom:329.393550px;}
.y399{bottom:329.393580px;}
.y560{bottom:329.925450px;}
.y12f{bottom:331.035900px;}
.y1a6{bottom:331.035903px;}
.y227{bottom:331.916400px;}
.y18c{bottom:332.988900px;}
.y20b{bottom:333.550467px;}
.y52c{bottom:333.550470px;}
.y41a{bottom:334.439280px;}
.y354{bottom:334.439310px;}
.y61e{bottom:334.982400px;}
.y48d{bottom:335.887722px;}
.y2ee{bottom:336.068640px;}
.y1d6{bottom:336.962160px;}
.y1ff{bottom:338.033100px;}
.y2ca{bottom:338.595714px;}
.y17d{bottom:339.485040px;}
.y604{bottom:339.660240px;}
.y3cb{bottom:341.110278px;}
.y6e{bottom:341.656800px;}
.y3e3{bottom:342.007920px;}
.y1ee{bottom:342.007950px;}
.y435{bottom:342.007980px;}
.y55f{bottom:342.358320px;}
.y407{bottom:342.527796px;}
.ydf{bottom:342.726240px;}
.yc7{bottom:343.091700px;}
.y4e2{bottom:343.447533px;}
.y5f3{bottom:344.513250px;}
.y299{bottom:344.513280px;}
.y47{bottom:345.967380px;}
.y2b8{bottom:346.155525px;}
.y322{bottom:346.155567px;}
.y531{bottom:346.155570px;}
.y5a0{bottom:346.685760px;}
.y3a8{bottom:347.036160px;}
.y26d{bottom:348.670029px;}
.y4c1{bottom:348.670089px;}
.y1be{bottom:349.558980px;}
.y14a{bottom:349.559040px;}
.y54a{bottom:349.559100px;}
.y495{bottom:349.725600px;}
.y8c{bottom:351.188400px;}
.y3c0{bottom:351.200772px;}
.y4cf{bottom:351.731550px;}
.y15a{bottom:352.081920px;}
.y540{bottom:352.081980px;}
.y5d2{bottom:352.975410px;}
.y206{bottom:353.715336px;}
.y661{bottom:354.243150px;}
.yaa{bottom:354.604800px;}
.y18b{bottom:354.948450px;}
.y237{bottom:356.052591px;}
.y374{bottom:357.127680px;}
.y3f6{bottom:357.846000px;}
.y639{bottom:358.564320px;}
.y3d2{bottom:358.760583px;}
.y1a5{bottom:358.760589px;}
.y183{bottom:359.282640px;}
.y24c{bottom:359.632980px;}
.yff{bottom:359.633040px;}
.y1a9{bottom:359.633100px;}
.y603{bottom:359.825760px;}
.y25a{bottom:361.275147px;}
.y20a{bottom:361.275150px;}
.y226{bottom:362.155920px;}
.y551{bottom:362.155950px;}
.y1fe{bottom:363.585900px;}
.y48c{bottom:363.612402px;}
.y566{bottom:363.612411px;}
.y61d{bottom:363.785280px;}
.y321{bottom:364.515108px;}
.y419{bottom:364.678800px;}
.y353{bottom:364.678830px;}
.y46{bottom:366.115380px;}
.y2ed{bottom:366.308130px;}
.y2c9{bottom:366.320394px;}
.y4f2{bottom:366.320400px;}
.y1d5{bottom:367.201680px;}
.y406{bottom:368.090874px;}
.y3ca{bottom:368.834958px;}
.y288{bottom:369.724530px;}
.y17c{bottom:369.724560px;}
.y262{bottom:371.349522px;}
.y5b1{bottom:371.349570px;}
.y3e2{bottom:372.247440px;}
.y1ed{bottom:372.247470px;}
.y434{bottom:372.247500px;}
.yde{bottom:373.140960px;}
.y2b7{bottom:373.880205px;}
.y5b7{bottom:373.880250px;}
.y6d{bottom:374.752800px;}
.y506{bottom:374.752830px;}
.y18a{bottom:375.839010px;}
.y26c{bottom:376.217460px;}
.y3a7{bottom:377.275680px;}
.yc6{bottom:378.555021px;}
.y3bf{bottom:378.909333px;}
.y1bd{bottom:379.798500px;}
.y149{bottom:379.798560px;}
.y602{bottom:379.973760px;}
.y205{bottom:381.440016px;}
.y8b{bottom:381.603120px;}
.y159{bottom:382.146240px;}
.y53f{bottom:382.146300px;}
.y320{bottom:383.051958px;}
.y5d1{bottom:383.214930px;}
.y236{bottom:383.777271px;}
.y2b3{bottom:384.476400px;}
.y1fd{bottom:384.651570px;}
.ya9{bottom:384.844320px;}
.y50b{bottom:384.857199px;}
.y45{bottom:386.280900px;}
.y5ab{bottom:386.469144px;}
.y1a4{bottom:386.469150px;}
.y2ec{bottom:386.631330px;}
.y46e{bottom:387.367200px;}
.y373{bottom:387.367230px;}
.y3f5{bottom:388.260780px;}
.y638{bottom:388.628640px;}
.y259{bottom:388.822518px;}
.y209{bottom:389.522160px;}
.y4fa{bottom:389.872500px;}
.y549{bottom:389.872530px;}
.yfe{bottom:389.872560px;}
.y550{bottom:391.514370px;}
.y48b{bottom:391.514391px;}
.y565{bottom:391.514400px;}
.y5c8{bottom:392.395380px;}
.y225{bottom:392.395440px;}
.y530{bottom:392.417079px;}
.y61c{bottom:392.763360px;}
.y405{bottom:393.639411px;}
.y5ad{bottom:394.028955px;}
.y2c8{bottom:394.028979px;}
.y418{bottom:394.918320px;}
.y352{bottom:394.918350px;}
.y3c9{bottom:396.382329px;}
.y1d4{bottom:397.441200px;}
.y261{bottom:399.074202px;}
.y5b0{bottom:399.074250px;}
.y287{bottom:399.964050px;}
.y17b{bottom:399.964080px;}
.y601{bottom:400.139280px;}
.y2b6{bottom:401.588766px;}
.y31f{bottom:401.588808px;}
.y3e1{bottom:402.294240px;}
.y1ec{bottom:402.294270px;}
.ydd{bottom:403.205280px;}
.y26b{bottom:403.942140px;}
.y6c{bottom:404.992320px;}
.y2a1{bottom:404.992380px;}
.y3be{bottom:406.634013px;}
.y2eb{bottom:406.796850px;}
.y3a6{bottom:407.515200px;}
.y528{bottom:407.515230px;}
.y44{bottom:407.704611px;}
.y546{bottom:408.971250px;}
.y1bc{bottom:408.971268px;}
.y148{bottom:410.038080px;}
.y8a{bottom:411.667440px;}
.y235{bottom:411.679260px;}
.y2c6{bottom:412.560900px;}
.y4ed{bottom:412.560930px;}
.y158{bottom:412.560960px;}
.y5d0{bottom:413.454450px;}
.yc5{bottom:413.833800px;}
.y50a{bottom:414.193779px;}
.y5aa{bottom:414.193824px;}
.y671{bottom:414.371133px;}
.y559{bottom:414.715920px;}
.ya8{bottom:414.908640px;}
.y47c{bottom:414.908700px;}
.y398{bottom:416.531079px;}
.y258{bottom:416.531100px;}
.y26{bottom:417.186000px;}
.y46d{bottom:417.606720px;}
.y372{bottom:417.606750px;}
.y3f4{bottom:418.325100px;}
.y637{bottom:419.043360px;}
.y404{bottom:419.202489px;}
.y48a{bottom:419.239071px;}
.y1f4{bottom:419.400000px;}
.y42a{bottom:419.761680px;}
.y31e{bottom:419.948349px;}
.yfd{bottom:420.112080px;}
.y5ee{bottom:420.112110px;}
.y600{bottom:420.304800px;}
.y61b{bottom:421.566240px;}
.y2c7{bottom:421.576350px;}
.y5c7{bottom:422.459700px;}
.y224{bottom:422.459760px;}
.y4f9{bottom:422.648400px;}
.y3c8{bottom:424.090890px;}
.y476{bottom:424.090911px;}
.y51a{bottom:424.807440px;}
.y1fb{bottom:424.816245px;}
.y417{bottom:425.157840px;}
.y351{bottom:425.157870px;}
.y2ea{bottom:426.400356px;}
.y260{bottom:426.798882px;}
.y1d3{bottom:427.680720px;}
.y286{bottom:429.136137px;}
.y2fa{bottom:429.480000px;}
.y17a{bottom:430.203600px;}
.y4bc{bottom:430.203630px;}
.y43{bottom:431.114469px;}
.y26a{bottom:431.828010px;}
.y5e6{bottom:432.726450px;}
.y3e0{bottom:432.726480px;}
.y1eb{bottom:432.726510px;}
.ydc{bottom:433.620000px;}
.y3bd{bottom:434.358693px;}
.y6b{bottom:435.056640px;}
.y2a0{bottom:435.056700px;}
.y403{bottom:435.939180px;}
.y1bb{bottom:436.695948px;}
.y3a5{bottom:437.754720px;}
.y527{bottom:437.754750px;}
.y25{bottom:437.886000px;}
.y31d{bottom:438.501318px;}
.y234{bottom:439.403940px;}
.y38a{bottom:439.404000px;}
.y147{bottom:440.277600px;}
.y1b4{bottom:440.277630px;}
.y2c5{bottom:441.741189px;}
.y509{bottom:441.741195px;}
.y89{bottom:441.906960px;}
.y670{bottom:441.918477px;}
.y5ed{bottom:442.257360px;}
.y449{bottom:442.625250px;}
.y157{bottom:442.625280px;}
.y2e9{bottom:443.137047px;}
.y1fa{bottom:443.353095px;}
.y5cf{bottom:443.693970px;}
.y47b{bottom:444.255711px;}
.y397{bottom:444.255759px;}
.ya7{bottom:445.323360px;}
.y371{bottom:446.963751px;}
.y46c{bottom:447.653520px;}
.y3f3{bottom:447.850296px;}
.yc4{bottom:448.928121px;}
.y636{bottom:449.107680px;}
.y5c9{bottom:450.001200px;}
.yfc{bottom:450.351600px;}
.y521{bottom:450.351630px;}
.y2fc{bottom:450.735600px;}
.y45a{bottom:451.992879px;}
.y3c7{bottom:451.992900px;}
.y402{bottom:452.864904px;}
.y223{bottom:452.874480px;}
.y54f{bottom:454.330134px;}
.y25f{bottom:454.330170px;}
.y42{bottom:454.503828px;}
.y4f8{bottom:454.854240px;}
.y416{bottom:455.222160px;}
.y350{bottom:455.222190px;}
.y285{bottom:456.860817px;}
.y31c{bottom:456.860859px;}
.y1d2{bottom:457.920240px;}
.y24{bottom:458.586000px;}
.y269{bottom:459.552690px;}
.y29e{bottom:459.552729px;}
.y2e8{bottom:460.062771px;}
.y179{bottom:460.443120px;}
.y57c{bottom:460.443150px;}
.y5c2{bottom:460.443180px;}
.y1f9{bottom:461.712636px;}
.y3bc{bottom:461.889945px;}
.y52b{bottom:462.422880px;}
.y3df{bottom:462.773280px;}
.y1ea{bottom:462.773310px;}
.ydb{bottom:463.684320px;}
.y1ba{bottom:464.420628px;}
.y400{bottom:464.420670px;}
.y4c8{bottom:465.120900px;}
.y580{bottom:465.120960px;}
.y394{bottom:465.471330px;}
.y6a{bottom:465.471360px;}
.y389{bottom:465.820950px;}
.y233{bottom:467.112501px;}
.y3a4{bottom:467.819040px;}
.y500{bottom:467.819100px;}
.y579{bottom:469.449720px;}
.y2c4{bottom:469.449756px;}
.y1b3{bottom:470.166750px;}
.y4df{bottom:470.517120px;}
.y53e{bottom:470.517150px;}
.y146{bottom:470.517180px;}
.y88{bottom:472.146480px;}
.y396{bottom:472.157748px;}
.y448{bottom:472.157820px;}
.y156{bottom:473.040000px;}
.y518{bottom:473.040030px;}
.y5ce{bottom:473.933490px;}
.y401{bottom:474.463050px;}
.y489{bottom:474.494970px;}
.y370{bottom:474.495003px;}
.ya6{bottom:475.387680px;}
.y31b{bottom:475.397709px;}
.y2e7{bottom:476.799462px;}
.y3f2{bottom:477.025686px;}
.y4a5{bottom:478.085700px;}
.y46b{bottom:478.085760px;}
.y41{bottom:478.098177px;}
.y66f{bottom:478.460250px;}
.y23{bottom:479.286000px;}
.y635{bottom:479.522400px;}
.y459{bottom:479.717559px;}
.y3d9{bottom:480.240780px;}
.y1f8{bottom:480.265605px;}
.y5ef{bottom:480.415860px;}
.y429{bottom:480.415890px;}
.yfb{bottom:480.415920px;}
.y574{bottom:480.415980px;}
.y25e{bottom:482.054850px;}
.y222{bottom:482.938800px;}
.yc3{bottom:484.206900px;}
.y284{bottom:484.585497px;}
.y2b5{bottom:484.585539px;}
.y4f7{bottom:485.286480px;}
.y415{bottom:485.636880px;}
.y34f{bottom:485.636910px;}
.y268{bottom:487.100061px;}
.y4c0{bottom:487.100100px;}
.y1d1{bottom:487.984560px;}
.y4c{bottom:488.399250px;}
.y3bb{bottom:489.614625px;}
.y178{bottom:490.507440px;}
.y5c1{bottom:490.507500px;}
.y1b9{bottom:492.145308px;}
.y52a{bottom:492.837600px;}
.y388{bottom:493.205520px;}
.y1e9{bottom:493.205550px;}
.y2e6{bottom:493.536153px;}
.y31a{bottom:493.757250px;}
.yda{bottom:493.923840px;}
.y232{bottom:494.659872px;}
.y57f{bottom:495.185280px;}
.y393{bottom:495.535650px;}
.y69{bottom:495.535680px;}
.y4ff{bottom:497.174370px;}
.y2c3{bottom:497.174436px;}
.y54d{bottom:498.233730px;}
.y3a3{bottom:498.233760px;}
.y4c7{bottom:498.248700px;}
.y1f7{bottom:498.802455px;}
.y53d{bottom:499.882398px;}
.y1b2{bottom:499.882428px;}
.y4de{bottom:500.581440px;}
.y145{bottom:500.581500px;}
.y22{bottom:500.891040px;}
.y40{bottom:501.487500px;}
.y155{bottom:502.219620px;}
.y488{bottom:502.219650px;}
.y36f{bottom:502.219683px;}
.y87{bottom:502.386000px;}
.y249{bottom:503.104320px;}
.y517{bottom:503.104350px;}
.y5cd{bottom:504.173010px;}
.y3f1{bottom:504.734247px;}
.ya5{bottom:505.802400px;}
.y458{bottom:507.264930px;}
.y4a4{bottom:508.132500px;}
.y46a{bottom:508.132560px;}
.y634{bottom:509.586720px;}
.y2e5{bottom:510.272844px;}
.y252{bottom:510.305040px;}
.y43c{bottom:510.655380px;}
.y428{bottom:510.655410px;}
.yfa{bottom:510.655440px;}
.y3d8{bottom:510.655500px;}
.y5f2{bottom:512.294058px;}
.y283{bottom:512.294100px;}
.y221{bottom:513.003120px;}
.y27e{bottom:513.353520px;}
.y267{bottom:514.824741px;}
.y4ca{bottom:514.824789px;}
.y508{bottom:514.824795px;}
.y414{bottom:515.701200px;}
.y34e{bottom:515.701230px;}
.y1f6{bottom:517.162050px;}
.y472{bottom:517.339305px;}
.y3ba{bottom:517.339350px;}
.yc2{bottom:517.505760px;}
.y66e{bottom:517.866300px;}
.y1d0{bottom:518.399280px;}
.y5c0{bottom:519.853800px;}
.y1b8{bottom:519.853869px;}
.y177{bottom:520.746960px;}
.y4b{bottom:521.954250px;}
.y231{bottom:522.384552px;}
.y387{bottom:523.252320px;}
.y1e8{bottom:523.252350px;}
.yd9{bottom:524.163360px;}
.y3f{bottom:524.338500px;}
.y2c2{bottom:524.899116px;}
.y21{bottom:525.004740px;}
.y68{bottom:525.967920px;}
.y43a{bottom:525.967950px;}
.y2e4{bottom:527.024076px;}
.y1b1{bottom:527.413680px;}
.y54c{bottom:528.298050px;}
.y3a2{bottom:528.298080px;}
.y144{bottom:529.944363px;}
.y487{bottom:530.820960px;}
.y319{bottom:530.996130px;}
.y3f0{bottom:532.458927px;}
.y86{bottom:532.625520px;}
.y248{bottom:533.343840px;}
.y5cc{bottom:534.237330px;}
.y457{bottom:534.973491px;}
.ya4{bottom:535.866720px;}
.y4a3{bottom:537.504174px;}
.y469{bottom:538.564800px;}
.y633{bottom:539.826240px;}
.y5f1{bottom:540.018720px;}
.y659{bottom:540.018738px;}
.y44a{bottom:540.544560px;}
.y52f{bottom:540.894900px;}
.y27f{bottom:540.894930px;}
.yf9{bottom:540.894960px;}
.y29d{bottom:542.533302px;}
.y266{bottom:542.533350px;}
.y507{bottom:542.533356px;}
.y42b{bottom:543.060000px;}
.y220{bottom:543.067440px;}
.y27d{bottom:543.417780px;}
.y36c{bottom:543.417840px;}
.y2e3{bottom:543.935259px;}
.y3e{bottom:544.504020px;}
.y4bd{bottom:545.063985px;}
.y471{bottom:545.064048px;}
.y413{bottom:546.115920px;}
.y34d{bottom:546.115950px;}
.y430{bottom:546.840000px;}
.yc1{bottom:547.552560px;}
.y1b7{bottom:547.578549px;}
.y1cf{bottom:548.463600px;}
.y5af{bottom:548.463630px;}
.y3b9{bottom:548.471181px;}
.y20{bottom:549.307980px;}
.y230{bottom:550.093113px;}
.y66d{bottom:550.986420px;}
.y176{bottom:550.986480px;}
.y318{bottom:551.161650px;}
.y2c1{bottom:552.623796px;}
.y386{bottom:553.491840px;}
.y1e7{bottom:553.491870px;}
.yd8{bottom:554.402880px;}
.y1b0{bottom:555.138360px;}
.y439{bottom:555.138420px;}
.y67{bottom:556.014720px;}
.y53c{bottom:556.014750px;}
.y4ea{bottom:556.014780px;}
.y143{bottom:557.652924px;}
.y433{bottom:558.023661px;}
.y4a{bottom:558.374700px;}
.y3a1{bottom:558.712800px;}
.y5e8{bottom:558.712830px;}
.y3ef{bottom:560.183607px;}
.y2e2{bottom:560.671950px;}
.y486{bottom:561.060480px;}
.y456{bottom:562.698120px;}
.y515{bottom:562.698171px;}
.y85{bottom:562.865040px;}
.y42e{bottom:562.875480px;}
.y247{bottom:563.583360px;}
.y3d{bottom:564.652020px;}
.y5cb{bottom:564.652050px;}
.y4a2{bottom:565.228854px;}
.y1a3{bottom:566.106180px;}
.ya3{bottom:566.106240px;}
.y3d1{bottom:566.106300px;}
.y5f0{bottom:567.743400px;}
.y4b2{bottom:567.743418px;}
.y468{bottom:568.611600px;}
.y331{bottom:569.726055px;}
.y632{bottom:570.065760px;}
.y29c{bottom:570.257982px;}
.y40e{bottom:570.784080px;}
.y427{bottom:571.134450px;}
.yf8{bottom:571.134480px;}
.y317{bottom:571.327170px;}
.y461{bottom:571.327200px;}
.y57b{bottom:572.595237px;}
.y470{bottom:572.595300px;}
.y1f{bottom:573.442740px;}
.y27c{bottom:573.657300px;}
.y21f{bottom:573.657360px;}
.y1b6{bottom:575.303220px;}
.y3ff{bottom:575.303229px;}
.y412{bottom:576.180240px;}
.y34c{bottom:576.180270px;}
.y432{bottom:577.463250px;}
.y2e1{bottom:577.597674px;}
.y22f{bottom:577.817793px;}
.y5ac{bottom:577.817850px;}
.yc0{bottom:577.984800px;}
.y1ce{bottom:578.878320px;}
.y2c0{bottom:580.348476px;}
.y5a9{bottom:580.348539px;}
.y3b8{bottom:580.858080px;}
.y175{bottom:581.226000px;}
.y4bb{bottom:581.226030px;}
.y42d{bottom:581.235000px;}
.y1af{bottom:582.863040px;}
.y578{bottom:582.863070px;}
.y385{bottom:583.731360px;}
.y1e6{bottom:583.731390px;}
.yd7{bottom:584.642400px;}
.y3c{bottom:584.817540px;}
.y142{bottom:585.377604px;}
.y66{bottom:586.254240px;}
.y4e9{bottom:586.254300px;}
.y445{bottom:587.908239px;}
.y3ee{bottom:587.908287px;}
.y3a0{bottom:588.777120px;}
.y5e7{bottom:588.777150px;}
.y53b{bottom:588.777180px;}
.y59f{bottom:588.794799px;}
.y330{bottom:588.794850px;}
.y455{bottom:590.422800px;}
.y5c6{bottom:590.422851px;}
.y514{bottom:590.422920px;}
.y5ff{bottom:590.932080px;}
.y485{bottom:591.300000px;}
.y316{bottom:591.475170px;}
.y4a1{bottom:592.760106px;}
.y84{bottom:592.911840px;}
.y246{bottom:593.822880px;}
.y2e0{bottom:594.159873px;}
.y5ca{bottom:594.716370px;}
.y4b1{bottom:595.468098px;}
.y1a2{bottom:596.345700px;}
.y11d{bottom:596.345760px;}
.y34b{bottom:596.520990px;}
.y1e{bottom:597.556500px;}
.y29b{bottom:597.982662px;}
.ya2{bottom:598.509300px;}
.y467{bottom:598.868640px;}
.y3d0{bottom:598.878300px;}
.y631{bottom:600.305250px;}
.y460{bottom:600.497226px;}
.y28d{bottom:601.023600px;}
.y426{bottom:601.373970px;}
.yf7{bottom:601.374000px;}
.y24b{bottom:601.374030px;}
.y538{bottom:601.399899px;}
.y1b5{bottom:603.027900px;}
.y27b{bottom:603.027909px;}
.y3fe{bottom:603.896850px;}
.y21e{bottom:603.896880px;}
.y3b{bottom:604.983060px;}
.y526{bottom:605.365164px;}
.y22e{bottom:605.365170px;}
.y411{bottom:606.419760px;}
.y32f{bottom:607.506000px;}
.ybf{bottom:608.031600px;}
.y392{bottom:608.057037px;}
.y2bf{bottom:608.057100px;}
.y5de{bottom:608.220000px;}
.y1cd{bottom:608.942640px;}
.y1ae{bottom:610.587720px;}
.y577{bottom:610.587750px;}
.y2df{bottom:611.071056px;}
.y61a{bottom:611.097600px;}
.y174{bottom:611.465520px;}
.y315{bottom:611.640690px;}
.y154{bottom:612.924975px;}
.y141{bottom:612.925011px;}
.y384{bottom:613.988400px;}
.y1e5{bottom:613.988430px;}
.yd6{bottom:614.881920px;}
.y3ed{bottom:615.616848px;}
.y65{bottom:616.493700px;}
.y298{bottom:616.493760px;}
.y5db{bottom:617.940000px;}
.y59e{bottom:618.147498px;}
.y5c5{bottom:618.147531px;}
.y513{bottom:618.147600px;}
.y39f{bottom:619.016640px;}
.y53a{bottom:619.016700px;}
.y4a0{bottom:620.662095px;}
.y1d{bottom:621.126000px;}
.y484{bottom:621.539520px;}
.y4b0{bottom:623.176659px;}
.y83{bottom:623.344080px;}
.y245{bottom:624.062400px;}
.y3a{bottom:624.955860px;}
.y5e0{bottom:624.982050px;}
.y5dd{bottom:625.159350px;}
.y1a1{bottom:625.530033px;}
.y59b{bottom:625.530039px;}
.y34a{bottom:626.217390px;}
.y129{bottom:626.563950px;}
.y11c{bottom:626.585280px;}
.y441{bottom:626.585310px;}
.y2de{bottom:627.807747px;}
.y45f{bottom:628.221906px;}
.y466{bottom:629.108160px;}
.y630{bottom:630.544800px;}
.y27a{bottom:630.736470px;}
.y537{bottom:630.736479px;}
.y28c{bottom:631.263120px;}
.y314{bottom:631.613490px;}
.ya1{bottom:631.613520px;}
.y40d{bottom:631.613580px;}
.y5e9{bottom:631.639200px;}
.y3fd{bottom:633.067680px;}
.y22d{bottom:633.089850px;}
.y21d{bottom:634.136400px;}
.y361{bottom:635.040000px;}
.y391{bottom:635.781717px;}
.y4fe{bottom:635.781720px;}
.y2be{bottom:636.659280px;}
.y1ad{bottom:638.118972px;}
.ybe{bottom:638.288640px;}
.y1cc{bottom:639.182160px;}
.y153{bottom:640.826964px;}
.y140{bottom:640.827000px;}
.y3b7{bottom:641.705040px;}
.y173{bottom:641.705100px;}
.y1c{bottom:641.826000px;}
.y3ec{bottom:643.341528px;}
.y82{bottom:643.684800px;}
.y383{bottom:644.227920px;}
.y1e4{bottom:644.227950px;}
.y2dd{bottom:644.733471px;}
.yd5{bottom:644.946240px;}
.y39{bottom:645.121380px;}
.y5c4{bottom:645.678750px;}
.y59d{bottom:645.678783px;}
.y64{bottom:646.733220px;}
.y297{bottom:646.733280px;}
.y128{bottom:646.926000px;}
.y49f{bottom:648.386775px;}
.y39e{bottom:649.256160px;}
.y4af{bottom:650.901339px;}
.y5fe{bottom:651.235890px;}
.y572{bottom:651.603780px;}
.y4dd{bottom:651.603810px;}
.y483{bottom:651.603840px;}
.y313{bottom:651.779010px;}
.y1a0{bottom:653.238594px;}
.y244{bottom:654.301920px;}
.y363{bottom:655.591950px;}
.y45e{bottom:655.946586px;}
.y364{bottom:656.301150px;}
.y11b{bottom:656.824800px;}
.y349{bottom:656.824830px;}
.y279{bottom:658.283841px;}
.y465{bottom:659.347680px;}
.y62f{bottom:660.784320px;}
.y2dc{bottom:661.470162px;}
.y564{bottom:661.502640px;}
.y3da{bottom:661.852980px;}
.y425{bottom:661.853010px;}
.ya0{bottom:661.853040px;}
.y555{bottom:661.853100px;}
.y1b{bottom:662.526000px;}
.y651{bottom:663.506397px;}
.y390{bottom:663.506400px;}
.y552{bottom:664.025550px;}
.y81{bottom:664.044600px;}
.y21c{bottom:664.375920px;}
.y38{bottom:665.286900px;}
.y395{bottom:665.843652px;}
.y1ac{bottom:665.843670px;}
.y586{bottom:666.548400px;}
.y2bd{bottom:666.898800px;}
.y510{bottom:666.898830px;}
.y127{bottom:667.074000px;}
.ybd{bottom:668.528160px;}
.y152{bottom:668.551644px;}
.y13f{bottom:669.421680px;}
.y3eb{bottom:671.066208px;}
.y5b4{bottom:671.751810px;}
.y3b6{bottom:671.751840px;}
.y172{bottom:671.751900px;}
.y58e{bottom:671.760000px;}
.y312{bottom:671.944530px;}
.y59c{bottom:673.403463px;}
.y529{bottom:673.403511px;}
.y382{bottom:674.467440px;}
.y1e3{bottom:674.467470px;}
.yd4{bottom:675.360960px;}
.y49e{bottom:676.111455px;}
.y296{bottom:676.972800px;}
.y2db{bottom:678.206853px;}
.y4ae{bottom:678.448710px;}
.y63{bottom:678.988377px;}
.y39d{bottom:679.495680px;}
.y19f{bottom:681.140583px;}
.y571{bottom:682.018500px;}
.y4dc{bottom:682.018530px;}
.y482{bottom:682.018560px;}
.y1a{bottom:683.226000px;}
.y45d{bottom:683.671266px;}
.y243{bottom:684.366240px;}
.y37{bottom:685.434900px;}
.y278{bottom:686.008521px;}
.y11a{bottom:687.064320px;}
.y348{bottom:687.064350px;}
.y464{bottom:689.587200px;}
.y62e{bottom:690.848640px;}
.y650{bottom:691.037649px;}
.y46f{bottom:691.566960px;}
.y3d7{bottom:691.917330px;}
.y9f{bottom:691.917360px;}
.y311{bottom:692.092530px;}
.y1ab{bottom:693.568350px;}
.y21b{bottom:694.615440px;}
.y2da{bottom:694.958085px;}
.y64a{bottom:696.260139px;}
.y36e{bottom:696.260205px;}
.y151{bottom:696.260229px;}
.y51b{bottom:696.787920px;}
.y80{bottom:697.138320px;}
.y3ea{bottom:698.613579px;}
.ybc{bottom:698.767680px;}
.y126{bottom:699.138894px;}
.y13e{bottom:699.661200px;}
.y171{bottom:701.305452px;}
.y4ba{bottom:702.152400px;}
.y5b3{bottom:702.184050px;}
.y3b5{bottom:702.184080px;}
.y49d{bottom:703.820016px;}
.y19{bottom:703.926000px;}
.y5b6{bottom:704.514210px;}
.y381{bottom:704.514240px;}
.y1e2{bottom:704.514270px;}
.yf6{bottom:705.425280px;}
.yd3{bottom:705.425310px;}
.y4ad{bottom:706.173390px;}
.y36{bottom:706.334100px;}
.y295{bottom:707.212320px;}
.y19e{bottom:708.865263px;}
.y39c{bottom:709.735200px;}
.y454{bottom:709.735260px;}
.y45c{bottom:711.202518px;}
.y2d9{bottom:711.694776px;}
.y4db{bottom:712.082850px;}
.y481{bottom:712.082880px;}
.y310{bottom:712.258050px;}
.y277{bottom:713.733201px;}
.y62{bottom:714.267156px;}
.y242{bottom:714.780930px;}
.y5be{bottom:714.780960px;}
.y2b2{bottom:717.128610px;}
.y119{bottom:717.128640px;}
.y347{bottom:717.128670px;}
.y257{bottom:717.128700px;}
.y52d{bottom:717.150390px;}
.y463{bottom:718.762320px;}
.y64f{bottom:718.762329px;}
.y440{bottom:719.309850px;}
.y62d{bottom:721.263360px;}
.y5a2{bottom:721.981680px;}
.y424{bottom:722.332050px;}
.y9e{bottom:722.332080px;}
.y649{bottom:723.452892px;}
.y594{bottom:723.452958px;}
.y150{bottom:723.807600px;}
.y18{bottom:724.626000px;}
.y21a{bottom:724.679760px;}
.y4e8{bottom:726.322140px;}
.y3e9{bottom:726.322170px;}
.y4f1{bottom:727.377780px;}
.y596{bottom:727.377810px;}
.y7f{bottom:727.377840px;}
.y2d8{bottom:728.605959px;}
.ybb{bottom:729.007200px;}
.y170{bottom:729.030132px;}
.y35{bottom:729.182430px;}
.y13d{bottom:729.900720px;}
.y49c{bottom:731.367387px;}
.y3b4{bottom:732.248400px;}
.y30f{bottom:732.423570px;}
.y4ac{bottom:733.881951px;}
.y125{bottom:734.417673px;}
.y5b5{bottom:734.946450px;}
.y380{bottom:734.946480px;}
.y1e1{bottom:734.946510px;}
.yf5{bottom:735.840000px;}
.yd2{bottom:735.840030px;}
.y19d{bottom:736.589943px;}
.y2a9{bottom:737.276640px;}
.y294{bottom:737.276700px;}
.y45b{bottom:738.927198px;}
.y39b{bottom:738.927270px;}
.y545{bottom:739.799520px;}
.y453{bottom:739.799580px;}
.y276{bottom:741.441762px;}
.y62c{bottom:741.604080px;}
.y480{bottom:742.497600px;}
.y4c6{bottom:742.497630px;}
.y593{bottom:742.715163px;}
.y5fd{bottom:744.503115px;}
.y4da{bottom:744.503139px;}
.y241{bottom:744.845250px;}
.y5bd{bottom:744.875040px;}
.y17{bottom:745.326000px;}
.y2d7{bottom:745.342650px;}
.y256{bottom:746.486970px;}
.y462{bottom:746.487009px;}
.y2b1{bottom:747.543330px;}
.y118{bottom:747.543360px;}
.y346{bottom:747.543390px;}
.y595{bottom:747.718530px;}
.y34{bottom:749.347950px;}
.y61{bottom:749.545950px;}
.y189{bottom:752.046000px;}
.y423{bottom:752.396370px;}
.y9d{bottom:752.396400px;}
.y581{bottom:752.396430px;}
.y30e{bottom:752.571570px;}
.y619{bottom:752.571600px;}
.y3e8{bottom:754.046850px;}
.y648{bottom:754.588650px;}
.y219{bottom:755.094480px;}
.y16f{bottom:756.561384px;}
.y5e4{bottom:756.561420px;}
.y7e{bottom:757.442160px;}
.y49b{bottom:759.092067px;}
.yba{bottom:759.246720px;}
.y13c{bottom:759.965040px;}
.y592{bottom:761.252013px;}
.y4ab{bottom:761.606631px;}
.y3b3{bottom:762.663120px;}
.y2d6{bottom:762.838320px;}
.y19c{bottom:764.121195px;}
.y5e5{bottom:764.993250px;}
.y37f{bottom:764.993280px;}
.y1e0{bottom:764.993310px;}
.yf4{bottom:765.904260px;}
.yd1{bottom:765.904350px;}
.y16{bottom:766.026000px;}
.y39a{bottom:766.651878px;}
.y293{bottom:766.651920px;}
.y2a8{bottom:767.691360px;}
.y5eb{bottom:767.731899px;}
.y275{bottom:769.343751px;}
.y33{bottom:769.495950px;}
.y5a5{bottom:770.038980px;}
.y544{bottom:770.039040px;}
.y124{bottom:770.065434px;}
.y452{bottom:770.069106px;}
.y62b{bottom:771.125250px;}
.y47f{bottom:772.561950px;}
.y60{bottom:772.737060px;}
.y30d{bottom:772.737090px;}
.y618{bottom:772.737120px;}
.y5bc{bottom:774.211620px;}
.y240{bottom:774.211689px;}
.y51f{bottom:774.739206px;}
.y2b0{bottom:777.607650px;}
.y117{bottom:777.607680px;}
.y345{bottom:777.607710px;}
.y591{bottom:779.611554px;}
.y4d9{bottom:779.781918px;}
.y5fc{bottom:780.314868px;}
.y47d{bottom:782.460720px;}
.y422{bottom:782.635890px;}
.y9c{bottom:782.635920px;}
.y410{bottom:782.635980px;}
.y2d5{bottom:782.828640px;}
.y668{bottom:784.286064px;}
.y16e{bottom:784.286100px;}
.y218{bottom:785.158800px;}
.yd0{bottom:786.444150px;}
.y15{bottom:786.726000px;}
.y4ee{bottom:786.816747px;}
.y49a{bottom:786.816789px;}
.y7d{bottom:787.856880px;}
.yb9{bottom:789.293520px;}
.y4aa{bottom:789.331311px;}
.y55d{bottom:789.836640px;}
.y5bf{bottom:790.204500px;}
.y13b{bottom:790.204560px;}
.y32{bottom:790.215900px;}
.y19b{bottom:791.845875px;}
.y3b2{bottom:792.727440px;}
.y5f{bottom:792.902580px;}
.y30c{bottom:792.902610px;}
.y617{bottom:792.902640px;}
.y292{bottom:794.376558px;}
.y37e{bottom:795.425520px;}
.y1df{bottom:795.425550px;}
.yf3{bottom:796.143780px;}
.y274{bottom:796.891122px;}
.y5ea{bottom:796.891170px;}
.y2a7{bottom:797.755680px;}
.y438{bottom:797.755710px;}
.y590{bottom:798.148350px;}
.y451{bottom:799.405686px;}
.y543{bottom:800.278500px;}
.y47e{bottom:801.936339px;}
.y23f{bottom:801.936369px;}
.y2d4{bottom:802.976640px;}
.y62a{bottom:803.724750px;}
.y123{bottom:805.528704px;}
.y14{bottom:807.966900px;}
.y116{bottom:808.022400px;}
.y344{bottom:808.022430px;}
.y2af{bottom:809.833500px;}
.y504{bottom:810.387000px;}
.y667{bottom:812.010750px;}
.y54e{bottom:812.525040px;}
.y4fc{bottom:812.875380px;}
.y421{bottom:812.875410px;}
.y9b{bottom:812.875440px;}
.y251{bottom:812.875500px;}
.y5e{bottom:813.068100px;}
.y30b{bottom:813.068130px;}
.y616{bottom:813.068160px;}
.y31{bottom:814.486455px;}
.y499{bottom:814.525350px;}
.y4d8{bottom:815.060697px;}
.y36b{bottom:815.573520px;}
.y217{bottom:815.573580px;}
.y5fb{bottom:815.593647px;}
.y658{bottom:817.055991px;}
.y4a9{bottom:817.056039px;}
.y7c{bottom:817.921200px;}
.y19a{bottom:819.570555px;}
.ycf{bottom:819.725700px;}
.yb8{bottom:819.725760px;}
.y576{bottom:820.076160px;}
.y13a{bottom:820.444080px;}
.y291{bottom:822.085119px;}
.y3b1{bottom:822.966960px;}
.y2d3{bottom:823.142160px;}
.y273{bottom:824.615802px;}
.y1de{bottom:824.615874px;}
.y37d{bottom:825.472320px;}
.y3de{bottom:825.472380px;}
.yf2{bottom:826.383300px;}
.y629{bottom:827.101680px;}
.y450{bottom:827.130366px;}
.y2a6{bottom:828.187920px;}
.y437{bottom:828.187950px;}
.y343{bottom:828.363150px;}
.y542{bottom:829.644870px;}
.y23e{bottom:829.644930px;}
.y13{bottom:831.546000px;}
.y30a{bottom:833.216130px;}
.y615{bottom:833.216160px;}
.y5d{bottom:833.427777px;}
.y115{bottom:838.086720px;}
.y666{bottom:840.592050px;}
.y122{bottom:840.807483px;}
.y30{bottom:841.305906px;}
.y558{bottom:842.764530px;}
.y503{bottom:842.764560px;}
.y1aa{bottom:843.114930px;}
.y9a{bottom:843.114960px;}
.y494{bottom:843.115020px;}
.y2d2{bottom:843.307680px;}
.y657{bottom:844.764552px;}
.y4a8{bottom:844.764600px;}
.y216{bottom:845.637840px;}
.yf1{bottom:846.916200px;}
.y628{bottom:847.267200px;}
.y59a{bottom:847.295235px;}
.y199{bottom:847.295298px;}
.y342{bottom:848.197917px;}
.y7b{bottom:848.335920px;}
.y50f{bottom:848.335980px;}
.yce{bottom:849.772500px;}
.yb7{bottom:849.772560px;}
.y290{bottom:849.809799px;}
.y4d7{bottom:850.154985px;}
.y647{bottom:850.155000px;}
.y5b9{bottom:850.315680px;}
.y139{bottom:850.683600px;}
.y5fa{bottom:850.708434px;}
.y12{bottom:852.246000px;}
.y272{bottom:852.324363px;}
.y1dd{bottom:852.324435px;}
.y3b0{bottom:853.206480px;}
.y309{bottom:853.381650px;}
.y614{bottom:853.381680px;}
.y44f{bottom:854.855046px;}
.y37c{bottom:855.711900px;}
.y23d{bottom:857.369610px;}
.y5c{bottom:857.555100px;}
.y341{bottom:866.557458px;}
.y627{bottom:867.415230px;}
.y2f{bottom:868.125297px;}
.y114{bottom:868.326240px;}
.yf0{bottom:870.113220px;}
.y656{bottom:872.489232px;}
.y11{bottom:872.946000px;}
.y557{bottom:873.004050px;}
.y1c3{bottom:873.004080px;}
.y665{bottom:873.031962px;}
.y646{bottom:873.179250px;}
.y2ae{bottom:873.354450px;}
.y99{bottom:873.354480px;}
.y493{bottom:873.354540px;}
.y308{bottom:873.547170px;}
.y613{bottom:873.547200px;}
.y198{bottom:874.826550px;}
.y215{bottom:875.877360px;}
.y121{bottom:875.901771px;}
.y570{bottom:877.534470px;}
.y28f{bottom:877.534479px;}
.y7a{bottom:878.400240px;}
.y50e{bottom:878.400300px;}
.y271{bottom:880.049043px;}
.y1dc{bottom:880.049115px;}
.ycd{bottom:880.204740px;}
.yb6{bottom:880.204800px;}
.y5b{bottom:880.575543px;}
.y138{bottom:880.923120px;}
.y1cb{bottom:880.923180px;}
.y44e{bottom:882.386298px;}
.y3af{bottom:883.446000px;}
.y23c{bottom:885.094290px;}
.y340{bottom:885.094308px;}
.y37b{bottom:885.094320px;}
.y4d6{bottom:885.618255px;}
.y5f9{bottom:886.171704px;}
.y626{bottom:887.580750px;}
.yef{bottom:890.278740px;}
.y645{bottom:893.344770px;}
.y307{bottom:893.695170px;}
.y612{bottom:893.695200px;}
.y10{bottom:894.186600px;}
.y2e{bottom:894.944748px;}
.y113{bottom:898.565730px;}
.y655{bottom:900.213900px;}
.y556{bottom:903.243570px;}
.y1c2{bottom:903.243600px;}
.y492{bottom:903.243660px;}
.y33f{bottom:903.453849px;}
.y12e{bottom:903.566250px;}
.y2ad{bottom:903.593970px;}
.y98{bottom:903.594000px;}
.y25d{bottom:903.594030px;}
.y5a{bottom:904.518375px;}
.y28e{bottom:905.259150px;}
.y214{bottom:906.116880px;}
.y50d{bottom:907.241748px;}
.y625{bottom:907.553520px;}
.y270{bottom:907.596420px;}
.y1db{bottom:907.596486px;}
.y664{bottom:908.126250px;}
.y4f6{bottom:908.639700px;}
.y2bc{bottom:908.639730px;}
.y79{bottom:908.639760px;}
.ycc{bottom:910.251540px;}
.yb5{bottom:910.251600px;}
.y44d{bottom:910.288287px;}
.yee{bottom:910.444260px;}
.y137{bottom:911.162700px;}
.y120{bottom:911.180550px;}
.y4b9{bottom:912.818898px;}
.y23b{bottom:912.818970px;}
.y644{bottom:913.492770px;}
.y306{bottom:913.860690px;}
.y611{bottom:913.860720px;}
.yf{bottom:919.032660px;}
.y4d5{bottom:920.733042px;}
.y5f8{bottom:921.265992px;}
.y2d{bottom:921.764199px;}
.y33e{bottom:921.990699px;}
.y59{bottom:927.395250px;}
.y112{bottom:928.805250px;}
.yed{bottom:930.592260px;}
.y1c1{bottom:933.483120px;}
.y643{bottom:933.658290px;}
.y2ac{bottom:933.833490px;}
.y97{bottom:933.833520px;}
.y573{bottom:933.833550px;}
.y10d{bottom:933.833580px;}
.y50c{bottom:934.773000px;}
.y26f{bottom:935.321100px;}
.y1da{bottom:935.321166px;}
.y213{bottom:936.356400px;}
.y624{bottom:936.531600px;}
.y44c{bottom:938.012967px;}
.y4f5{bottom:938.879220px;}
.y2bb{bottom:938.879250px;}
.y78{bottom:938.879280px;}
.y1ca{bottom:940.350222px;}
.y33d{bottom:940.350240px;}
.y136{bottom:940.350270px;}
.ycb{bottom:940.508580px;}
.yb4{bottom:940.508640px;}
.ye{bottom:946.755180px;}
.y2c{bottom:948.583650px;}
.y11f{bottom:948.746769px;}
.y58{bottom:950.407500px;}
.yec{bottom:950.757780px;}
.y642{bottom:953.648610px;}
.y305{bottom:953.999010px;}
.y610{bottom:953.999040px;}
.y4d4{bottom:956.011821px;}
.y5f7{bottom:956.544771px;}
.y111{bottom:958.676850px;}
.y33c{bottom:958.903209px;}
.y77{bottom:959.220000px;}
.y654{bottom:961.054650px;}
.y332{bottom:963.540000px;}
.y520{bottom:963.722610px;}
.y525{bottom:963.722640px;}
.y265{bottom:964.073010px;}
.y96{bottom:964.073040px;}
.y623{bottom:965.527200px;}
.y44b{bottom:965.737650px;}
.y212{bottom:966.595950px;}
.y36a{bottom:966.640329px;}
.y135{bottom:968.074902px;}
.y2a5{bottom:968.074920px;}
.y57{bottom:970.555500px;}
.yca{bottom:970.748100px;}
.yb3{bottom:970.748160px;}
.yeb{bottom:970.923300px;}
.y2b{bottom:974.164500px;}
.y304{bottom:974.164530px;}
.y60f{bottom:974.164560px;}
.yd{bottom:974.286210px;}
.y33b{bottom:977.440059px;}
.y335{bottom:979.422678px;}
.y11e{bottom:989.080800px;}
.y56{bottom:991.290600px;}
.yc9{bottom:991.823550px;}
.y3e7{bottom:993.786930px;}
.y95{bottom:994.137300px;}
.y10c{bottom:994.137330px;}
.y3d6{bottom:994.160550px;}
.y536{bottom:994.171500px;}
.y2a{bottom:994.312500px;}
.y303{bottom:994.312530px;}
.y134{bottom:995.799600px;}
.y334{bottom:997.959600px;}
.yc{bottom:1001.841150px;}
.yb{bottom:1029.563670px;}
.ya{bottom:1057.094670px;}
.ye7{bottom:1066.862850px;}
.y9{bottom:1084.625670px;}
.y8{bottom:1112.348190px;}
.y7{bottom:1139.903130px;}
.y1{bottom:1140.426000px;}
.y6{bottom:1167.434130px;}
.y5{bottom:1195.156650px;}
.y4{bottom:1222.687650px;}
.y3{bottom:1248.667500px;}
.h1a{height:20.160000px;}
.h1d{height:33.204138px;}
.h91{height:35.741312px;}
.hec{height:39.600000px;}
.hfb{height:40.680000px;}
.h100{height:40.860000px;}
.hf{height:41.660156px;}
.h11{height:41.689453px;}
.h6{height:47.988281px;}
.h2{height:49.992188px;}
.hfd{height:50.040000px;}
.h1f{height:51.035502px;}
.h2e{height:51.035658px;}
.h35{height:51.035754px;}
.h4d{height:51.035790px;}
.h6d{height:51.177228px;}
.h1e{height:51.177504px;}
.h70{height:51.177792px;}
.h68{height:54.000000px;}
.h61{height:54.180000px;}
.h25{height:56.573912px;}
.h6a{height:56.573984px;}
.hb8{height:56.573996px;}
.h110{height:56.574020px;}
.h8b{height:56.574032px;}
.ha4{height:56.574044px;}
.hef{height:56.574092px;}
.h10d{height:56.574104px;}
.h78{height:56.574116px;}
.h44{height:56.574128px;}
.h10a{height:56.574176px;}
.hf8{height:56.574188px;}
.h64{height:56.574200px;}
.hed{height:56.731024px;}
.haf{height:56.731072px;}
.ha8{height:56.731132px;}
.h27{height:56.731180px;}
.h96{height:56.731204px;}
.h4f{height:56.731240px;}
.h4e{height:56.731252px;}
.h3a{height:56.731324px;}
.hfe{height:56.731456px;}
.h69{height:56.731504px;}
.hfc{height:56.731528px;}
.h6b{height:56.731540px;}
.h67{height:56.731564px;}
.h63{height:56.731576px;}
.h8d{height:56.731588px;}
.h66{height:56.731600px;}
.hb5{height:57.266525px;}
.hc0{height:57.266717px;}
.h5{height:58.490859px;}
.h6e{height:61.313578px;}
.h107{height:61.328938px;}
.hd3{height:61.354534px;}
.h10f{height:61.356790px;}
.hf9{height:61.372054px;}
.hff{height:61.386694px;}
.hd5{height:61.387498px;}
.h105{height:61.388494px;}
.hd1{height:61.401934px;}
.hcb{height:61.404334px;}
.hce{height:61.404778px;}
.hf3{height:61.420498px;}
.hd6{height:61.430134px;}
.hc5{height:61.435498px;}
.hbf{height:61.439698px;}
.ha0{height:61.468690px;}
.h8{height:61.491094px;}
.h20{height:61.491214px;}
.h15{height:61.491334px;}
.h49{height:61.661947px;}
.h93{height:61.662067px;}
.h17{height:61.662188px;}
.h23{height:61.662308px;}
.h1b{height:61.662428px;}
.h26{height:61.935721px;}
.h72{height:61.937449px;}
.h41{height:61.957441px;}
.h81{height:61.959169px;}
.h106{height:61.959721px;}
.h59{height:61.960297px;}
.had{height:61.960453px;}
.h5d{height:61.980889px;}
.h4c{height:61.982173px;}
.h77{height:61.982617px;}
.ha3{height:62.003209px;}
.h9d{height:62.003893px;}
.hf6{height:62.004181px;}
.h99{height:62.010505px;}
.hf7{height:62.025349px;}
.he7{height:62.026057px;}
.h2f{height:62.026921px;}
.hd7{height:62.027629px;}
.h102{height:62.028205px;}
.h54{height:62.028493px;}
.h36{height:62.046397px;}
.hb7{height:62.049949px;}
.hd4{height:62.067565px;}
.hdc{height:62.071249px;}
.h97{height:62.071537px;}
.h9c{height:62.071825px;}
.h3b{height:62.073817px;}
.hf2{height:62.088997px;}
.hf0{height:62.089153px;}
.ha9{height:62.090857px;}
.h8f{height:62.091169px;}
.ha7{height:62.091433px;}
.hea{height:62.091721px;}
.h42{height:62.091769px;}
.h28{height:62.091877px;}
.h85{height:62.092297px;}
.h9e{height:62.095129px;}
.hd8{height:62.112313px;}
.hc3{height:62.113021px;}
.h75{height:62.113465px;}
.h5a{height:62.113885px;}
.h5b{height:62.114017px;}
.hbe{height:62.114749px;}
.h71{height:62.115325px;}
.h76{height:62.115457px;}
.hdf{height:62.134033px;}
.hd9{height:62.134609px;}
.he9{height:62.135029px;}
.he8{height:62.135185px;}
.h58{height:62.136181px;}
.ha2{height:62.136337px;}
.h53{height:62.136889px;}
.he1{height:62.137045px;}
.hdb{height:62.137489px;}
.hb0{height:62.137597px;}
.hd0{height:62.137909px;}
.h9f{height:62.138041px;}
.h89{height:62.140369px;}
.he3{height:62.141449px;}
.h5e{height:62.156905px;}
.h9a{height:62.157769px;}
.hc9{height:62.157925px;}
.h3e{height:62.158057px;}
.hfa{height:62.158213px;}
.h4a{height:62.158765px;}
.hb3{height:62.160205px;}
.h73{height:62.160493px;}
.h7c{height:62.160781px;}
.heb{height:62.160913px;}
.h8e{height:62.180065px;}
.h52{height:62.180641px;}
.hde{height:62.180797px;}
.h50{height:62.181061px;}
.hda{height:62.181349px;}
.hb6{height:62.181505px;}
.hb1{height:62.182057px;}
.hdd{height:62.182789px;}
.ha1{height:62.183785px;}
.h101{height:62.200609px;}
.hc2{height:62.202937px;}
.hac{height:62.203093px;}
.h46{height:62.203225px;}
.h37{height:62.203357px;}
.he5{height:62.203645px;}
.ha5{height:62.204089px;}
.h90{height:62.204641px;}
.h5f{height:62.204797px;}
.hb4{height:62.222449px;}
.h7a{height:62.225521px;}
.he4{height:62.225809px;}
.hf5{height:62.225965px;}
.he0{height:62.227693px;}
.h7d{height:62.231713px;}
.hc8{height:62.234089px;}
.he{height:62.243906px;}
.h83{height:62.244026px;}
.hae{height:62.244146px;}
.h47{height:62.248105px;}
.hd2{height:62.248261px;}
.h6c{height:62.249125px;}
.h7e{height:62.266849px;}
.h8c{height:63.360000px;}
.h40{height:64.245699px;}
.h86{height:64.246059px;}
.h4b{height:64.247139px;}
.h9b{height:64.273539px;}
.hcc{height:64.282899px;}
.h82{height:64.287339px;}
.hca{height:64.288059px;}
.h88{height:64.312899px;}
.h5c{height:64.313259px;}
.h32{height:64.314219px;}
.h22{height:64.314339px;}
.hcf{height:64.317699px;}
.h98{height:64.319619px;}
.he6{height:64.322499px;}
.hf1{height:64.329819px;}
.h30{height:64.331739px;}
.h94{height:64.332099px;}
.haa{height:64.332459px;}
.hab{height:64.333059px;}
.h56{height:64.361379px;}
.h7b{height:64.362099px;}
.h108{height:64.362219px;}
.hc7{height:64.362579px;}
.h2b{height:64.362699px;}
.h55{height:64.362819px;}
.hbd{height:64.363059px;}
.h34{height:64.363419px;}
.h3f{height:64.364139px;}
.h6f{height:64.365339px;}
.h103{height:64.367139px;}
.hb9{height:64.370499px;}
.hc6{height:64.371339px;}
.hc1{height:64.373259px;}
.hf4{height:64.378659px;}
.h38{height:64.408299px;}
.ha6{height:64.408515px;}
.he2{height:64.409739px;}
.h2d{height:64.410339px;}
.h3d{height:64.410579px;}
.h45{height:64.411059px;}
.h33{height:64.411179px;}
.h29{height:64.411299px;}
.h104{height:64.411479px;}
.h7f{height:64.412619px;}
.h48{height:64.415379px;}
.hc4{height:64.420779px;}
.h3c{height:64.457619px;}
.h1c{height:64.457739px;}
.h39{height:64.458819px;}
.h57{height:64.459539px;}
.h51{height:64.460259px;}
.h21{height:64.460379px;}
.h74{height:64.525697px;}
.h84{height:65.024955px;}
.h2a{height:65.065659px;}
.hbb{height:65.066259px;}
.h60{height:65.161659px;}
.h2c{height:65.180897px;}
.h4{height:66.489609px;}
.h65{height:67.140000px;}
.h8a{height:70.920000px;}
.h10{height:71.660156px;}
.hc{height:71.946686px;}
.hd{height:71.946830px;}
.hb{height:71.946890px;}
.hba{height:71.980286px;}
.h80{height:71.995046px;}
.h87{height:72.035606px;}
.h13{height:72.827502px;}
.h10e{height:72.827586px;}
.h109{height:72.827610px;}
.h16{height:72.827634px;}
.h12{height:72.827670px;}
.h10b{height:72.827694px;}
.h92{height:72.827742px;}
.h19{height:72.827754px;}
.h14{height:72.827766px;}
.h10c{height:72.827778px;}
.h31{height:72.840942px;}
.hcd{height:72.869982px;}
.h79{height:72.915582px;}
.h62{height:80.280000px;}
.h24{height:81.690569px;}
.h18{height:81.704849px;}
.h9{height:81.781049px;}
.ha{height:81.781289px;}
.h95{height:82.773504px;}
.hbc{height:92.236401px;}
.hb2{height:92.236641px;}
.h43{height:130.680000px;}
.hee{height:159.120000px;}
.h7{height:1188.000000px;}
.h3{height:1261.260000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:8.640000px;}
.wd{width:26.280000px;}
.wb{width:182.880000px;}
.wc{width:222.300000px;}
.w7{width:235.440000px;}
.w9{width:248.580000px;}
.wa{width:274.860000px;}
.w8{width:301.140000px;}
.wf{width:314.280000px;}
.w10{width:327.240000px;}
.w6{width:379.980000px;}
.w11{width:393.120000px;}
.we{width:419.400000px;}
.w5{width:458.640000px;}
.w2{width:892.800000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.w3{width:918.000000px;}
.x0{left:0.000000px;}
.xa{left:3.960000px;}
.x41{left:8.821200px;}
.x20{left:10.447200px;}
.x1f{left:62.108550px;}
.x36{left:100.800000px;}
.x37{left:111.237150px;}
.x25{left:113.594250px;}
.x27{left:118.091400px;}
.x4e{left:124.019550px;}
.x1{left:127.620000px;}
.x13{left:140.740200px;}
.x16{left:165.599100px;}
.x14{left:166.660650px;}
.x21{left:178.566750px;}
.x6{left:190.803600px;}
.x1c{left:191.879100px;}
.x7{left:202.323450px;}
.x35{left:216.004080px;}
.x17{left:217.265520px;}
.x39{left:218.700000px;}
.xf{left:220.138800px;}
.x1d{left:221.587950px;}
.x2d{left:229.147650px;}
.x10{left:231.310650px;}
.x1e{left:238.140000px;}
.x4{left:240.836400px;}
.x3{left:248.209860px;}
.x46{left:250.928250px;}
.x34{left:267.653100px;}
.xd{left:268.916841px;}
.x50{left:270.900000px;}
.xc{left:276.116889px;}
.x51{left:281.357100px;}
.x24{left:284.400000px;}
.x3d{left:297.358449px;}
.x3e{left:315.377100px;}
.x3c{left:333.723750px;}
.x5{left:346.500150px;}
.x18{left:363.611250px;}
.x48{left:364.854000px;}
.xe{left:371.708400px;}
.x2c{left:375.839100px;}
.x1b{left:381.424950px;}
.x4c{left:383.407680px;}
.x1a{left:385.032750px;}
.x3f{left:387.021150px;}
.x49{left:391.677120px;}
.x4b{left:393.306480px;}
.x4a{left:397.266000px;}
.x26{left:398.348850px;}
.x4d{left:399.428850px;}
.x31{left:415.434210px;}
.x47{left:416.901810px;}
.x8{left:423.895680px;}
.x15{left:430.581450px;}
.x44{left:442.080000px;}
.x2{left:444.781200px;}
.x11{left:446.960196px;}
.x45{left:452.541000px;}
.x40{left:454.320000px;}
.x53{left:455.590350px;}
.x52{left:459.382650px;}
.x19{left:463.140000px;}
.xb{left:467.468700px;}
.x43{left:474.651840px;}
.x4f{left:478.814850px;}
.x2f{left:481.500000px;}
.x30{left:491.951850px;}
.x2b{left:494.111790px;}
.x3a{left:507.780000px;}
.x3b{left:518.241900px;}
.x9{left:523.080000px;}
.x2e{left:534.060000px;}
.x12{left:543.785700px;}
.x38{left:544.886700px;}
.x28{left:560.340000px;}
.x29{left:570.806100px;}
.x22{left:572.939040px;}
.x2a{left:574.918860px;}
.x42{left:588.058800px;}
.x23{left:671.008986px;}
.x33{left:717.654210px;}
.x32{left:756.005490px;}
@media print{
.v5{vertical-align:-23.353600pt;}
.v6{vertical-align:-20.588267pt;}
.v3{vertical-align:-17.903467pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:20.672320pt;}
.v4{vertical-align:23.353771pt;}
.v1{vertical-align:26.666667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.004267pt;}
.ls30{letter-spacing:0.009067pt;}
.ls37{letter-spacing:0.027200pt;}
.ls3a{letter-spacing:0.043200pt;}
.ls27{letter-spacing:0.047467pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls25{letter-spacing:0.058667pt;}
.ls20{letter-spacing:0.060267pt;}
.ls6c{letter-spacing:0.067200pt;}
.ls36{letter-spacing:0.075200pt;}
.ls54{letter-spacing:0.082261pt;}
.ls65{letter-spacing:0.083733pt;}
.ls6b{letter-spacing:0.100267pt;}
.ls66{letter-spacing:0.103467pt;}
.ls33{letter-spacing:0.113067pt;}
.ls5a{letter-spacing:0.113600pt;}
.ls1c{letter-spacing:0.114624pt;}
.ls18{letter-spacing:0.118400pt;}
.ls2b{letter-spacing:0.118933pt;}
.ls79{letter-spacing:0.121067pt;}
.ls2{letter-spacing:0.122133pt;}
.ls48{letter-spacing:0.128533pt;}
.ls1a{letter-spacing:0.136533pt;}
.ls29{letter-spacing:0.138133pt;}
.ls4b{letter-spacing:0.138667pt;}
.ls6a{letter-spacing:0.140267pt;}
.ls16{letter-spacing:0.140779pt;}
.ls64{letter-spacing:0.143467pt;}
.ls5b{letter-spacing:0.144533pt;}
.ls24{letter-spacing:0.147733pt;}
.ls47{letter-spacing:0.148800pt;}
.ls6e{letter-spacing:0.151157pt;}
.ls49{letter-spacing:0.151467pt;}
.ls26{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.171200pt;}
.ls31{letter-spacing:0.173333pt;}
.ls4d{letter-spacing:0.173867pt;}
.ls4a{letter-spacing:0.174400pt;}
.ls78{letter-spacing:0.174933pt;}
.ls74{letter-spacing:0.175349pt;}
.ls7c{letter-spacing:0.176000pt;}
.ls4c{letter-spacing:0.176533pt;}
.ls5{letter-spacing:0.182933pt;}
.ls5d{letter-spacing:0.183467pt;}
.ls63{letter-spacing:0.186133pt;}
.ls2f{letter-spacing:0.186667pt;}
.ls19{letter-spacing:0.190933pt;}
.ls5c{letter-spacing:0.197333pt;}
.ls4e{letter-spacing:0.197867pt;}
.ls73{letter-spacing:0.205184pt;}
.lsb{letter-spacing:0.211733pt;}
.ls68{letter-spacing:0.212267pt;}
.ls42{letter-spacing:0.215883pt;}
.ls17{letter-spacing:0.216533pt;}
.ls59{letter-spacing:0.217600pt;}
.ls3c{letter-spacing:0.219733pt;}
.ls76{letter-spacing:0.223115pt;}
.ls57{letter-spacing:0.231936pt;}
.ls7a{letter-spacing:0.233600pt;}
.ls7b{letter-spacing:0.236267pt;}
.ls23{letter-spacing:0.248000pt;}
.ls34{letter-spacing:0.277867pt;}
.ls38{letter-spacing:0.290133pt;}
.ls1{letter-spacing:0.346347pt;}
.ls28{letter-spacing:0.350933pt;}
.ls5f{letter-spacing:0.359467pt;}
.ls13{letter-spacing:0.401184pt;}
.ls3e{letter-spacing:0.436053pt;}
.ls3{letter-spacing:0.436800pt;}
.ls7d{letter-spacing:0.437312pt;}
.ls67{letter-spacing:0.465312pt;}
.ls10{letter-spacing:0.471467pt;}
.ls44{letter-spacing:0.498347pt;}
.ls11{letter-spacing:0.517013pt;}
.ls77{letter-spacing:0.568533pt;}
.ls32{letter-spacing:0.592000pt;}
.lsa{letter-spacing:0.620800pt;}
.lsc{letter-spacing:0.641067pt;}
.ls39{letter-spacing:0.654400pt;}
.ls5e{letter-spacing:0.672533pt;}
.ls61{letter-spacing:0.687840pt;}
.ls62{letter-spacing:0.723627pt;}
.ls1d{letter-spacing:0.724267pt;}
.ls58{letter-spacing:0.730667pt;}
.lsd{letter-spacing:0.761067pt;}
.ls1b{letter-spacing:0.802112pt;}
.ls70{letter-spacing:0.802261pt;}
.ls22{letter-spacing:0.802613pt;}
.ls4{letter-spacing:0.818667pt;}
.ls1f{letter-spacing:0.841067pt;}
.ls2e{letter-spacing:0.876267pt;}
.ls15{letter-spacing:0.876288pt;}
.ls56{letter-spacing:0.876331pt;}
.ls41{letter-spacing:0.876384pt;}
.ls72{letter-spacing:0.876416pt;}
.ls6d{letter-spacing:0.876576pt;}
.ls75{letter-spacing:0.876619pt;}
.ls71{letter-spacing:1.031616pt;}
.ls14{letter-spacing:1.058987pt;}
.ls7f{letter-spacing:2.292480pt;}
.ls46{letter-spacing:2.367147pt;}
.ls2c{letter-spacing:2.429963pt;}
.ls45{letter-spacing:2.990080pt;}
.ls7e{letter-spacing:3.182933pt;}
.ls4f{letter-spacing:4.298240pt;}
.ls21{letter-spacing:4.858880pt;}
.ls43{letter-spacing:6.167040pt;}
.ls3f{letter-spacing:6.789973pt;}
.ls60{letter-spacing:11.275093pt;}
.ls3b{letter-spacing:14.514347pt;}
.ls35{letter-spacing:22.752864pt;}
.ls6{letter-spacing:29.402453pt;}
.ls9{letter-spacing:63.161067pt;}
.ls7{letter-spacing:162.987200pt;}
.ls8{letter-spacing:165.437867pt;}
.ls3d{letter-spacing:165.437920pt;}
.ls12{letter-spacing:168.129707pt;}
.ls53{letter-spacing:168.138347pt;}
.ls55{letter-spacing:169.348053pt;}
.ls6f{letter-spacing:169.348096pt;}
.ls50{letter-spacing:169.348107pt;}
.ls40{letter-spacing:169.348192pt;}
.ls52{letter-spacing:169.348235pt;}
.ls2d{letter-spacing:169.348245pt;}
.ls51{letter-spacing:169.348267pt;}
.ls69{letter-spacing:169.348299pt;}
.ls1e{letter-spacing:169.348427pt;}
.ws1{word-spacing:-18.221333pt;}
.ws3{word-spacing:-15.573333pt;}
.ws5{word-spacing:-14.328000pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4{word-spacing:-12.925333pt;}
.ws7{word-spacing:-10.434667pt;}
.ws6{word-spacing:-9.032000pt;}
.ws8{word-spacing:-8.409333pt;}
.ws0{word-spacing:0.000000pt;}
._4c{margin-left:-13.697568pt;}
._3{margin-left:-5.735360pt;}
._4{margin-left:-4.266667pt;}
._2{margin-left:-2.695360pt;}
._1{margin-left:-1.197973pt;}
._0{width:0.936533pt;}
._a{width:1.945493pt;}
._e{width:3.301547pt;}
._f{width:4.607573pt;}
._10{width:5.920000pt;}
._11{width:6.914560pt;}
._1b{width:7.803627pt;}
._16{width:8.735467pt;}
._17{width:9.669867pt;}
._d{width:10.652160pt;}
._c{width:12.099093pt;}
._19{width:13.455360pt;}
._1a{width:14.639573pt;}
._28{width:16.062112pt;}
._1c{width:17.317547pt;}
._1e{width:18.513387pt;}
._1d{width:19.560107pt;}
._18{width:20.868267pt;}
._15{width:22.003947pt;}
._12{width:22.986240pt;}
._14{width:23.963840pt;}
._13{width:24.855040pt;}
._2a{width:26.115307pt;}
._22{width:27.695680pt;}
._20{width:29.325973pt;}
._1f{width:30.724800pt;}
._2e{width:31.894187pt;}
._2f{width:33.061440pt;}
._30{width:34.774080pt;}
._23{width:35.694080pt;}
._24{width:37.064533pt;}
._32{width:38.597589pt;}
._2d{width:39.570667pt;}
._2c{width:40.615253pt;}
._3d{width:42.110293pt;}
._38{width:43.169280pt;}
._39{width:44.165973pt;}
._3c{width:45.845973pt;}
._36{width:47.280640pt;}
._37{width:48.651093pt;}
._42{width:49.647787pt;}
._31{width:50.721120pt;}
._34{width:52.048427pt;}
._33{width:53.088320pt;}
._35{width:54.348587pt;}
._45{width:59.552320pt;}
._27{width:63.191723pt;}
._3e{width:64.099627pt;}
._3f{width:65.532587pt;}
._48{width:70.952107pt;}
._25{width:73.007787pt;}
._26{width:74.378240pt;}
._43{width:76.759573pt;}
._49{width:79.797760pt;}
._4a{width:80.794453pt;}
._6{width:85.858923pt;}
._5{width:86.879392pt;}
._7{width:88.554283pt;}
._29{width:90.263040pt;}
._47{width:91.695787pt;}
._3a{width:101.164373pt;}
._4d{width:131.563520pt;}
._4e{width:132.747093pt;}
._4f{width:144.134101pt;}
._3b{width:152.556373pt;}
._44{width:158.038187pt;}
._b{width:168.129707pt;}
._41{width:169.356960pt;}
._2b{width:170.679243pt;}
._9{width:218.583115pt;}
._8{width:220.250208pt;}
._54{width:221.854752pt;}
._46{width:275.772587pt;}
._55{width:427.948704pt;}
._53{width:466.978176pt;}
._51{width:559.766304pt;}
._50{width:726.830784pt;}
._40{width:1011.020800pt;}
._21{width:1026.344960pt;}
._4b{width:1042.977280pt;}
._52{width:1394.343648pt;}
.fs8{font-size:33.637333pt;}
.fsb{font-size:36.128000pt;}
.fs7{font-size:41.738667pt;}
.fs9{font-size:51.701333pt;}
.fs6{font-size:53.333333pt;}
.fsa{font-size:57.312000pt;}
.fs3{font-size:62.293333pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:72.885333pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:82.848000pt;}
.fs1{font-size:85.120000pt;}
.fsc{font-size:93.440000pt;}
.y58d{bottom:-11.687733pt;}
.y1fc{bottom:-11.505200pt;}
.y336{bottom:-3.512933pt;}
.y0{bottom:0.000000pt;}
.y42f{bottom:1.136533pt;}
.y2{bottom:1.400000pt;}
.y365{bottom:2.421600pt;}
.y2fd{bottom:2.574267pt;}
.yea{bottom:3.843467pt;}
.y58b{bottom:22.413867pt;}
.y5e2{bottom:23.529600pt;}
.y5dc{bottom:23.539067pt;}
.ye9{bottom:26.400000pt;}
.ye8{bottom:30.243387pt;}
.y5df{bottom:31.863867pt;}
.y362{bottom:35.218400pt;}
.y360{bottom:35.367040pt;}
.y2fb{bottom:35.371067pt;}
.y431{bottom:43.540133pt;}
.y333{bottom:46.914667pt;}
.y42c{bottom:50.252933pt;}
.y2ff{bottom:58.565600pt;}
.y338{bottom:58.567467pt;}
.y35f{bottom:62.075307pt;}
.y35e{bottom:88.954880pt;}
.y10b{bottom:94.238605pt;}
.y369{bottom:94.238667pt;}
.y4f4{bottom:94.880016pt;}
.y76{bottom:95.838293pt;}
.y2fe{bottom:97.280000pt;}
.y653{bottom:97.287120pt;}
.y5da{bottom:98.875067pt;}
.y14f{bottom:98.876933pt;}
.y43f{bottom:99.036667pt;}
.yb2{bottom:100.167680pt;}
.y64e{bottom:101.599848pt;}
.y1f5{bottom:103.376800pt;}
.y641{bottom:103.842987pt;}
.y563{bottom:104.481493pt;}
.y110{bottom:104.792960pt;}
.y302{bottom:104.964267pt;}
.y55a{bottom:106.084512pt;}
.y554{bottom:107.035520pt;}
.y2f9{bottom:107.845333pt;}
.y255{bottom:109.115600pt;}
.y10a{bottom:109.115664pt;}
.y598{bottom:109.278080pt;}
.y35b{bottom:109.278107pt;}
.y660{bottom:110.726784pt;}
.y32e{bottom:110.726821pt;}
.y94{bottom:112.159147pt;}
.y663{bottom:112.804344pt;}
.y168{bottom:113.593333pt;}
.y5c3{bottom:113.763200pt;}
.y35d{bottom:115.834453pt;}
.ye6{bottom:116.800000pt;}
.y14e{bottom:116.961341pt;}
.y569{bottom:117.594187pt;}
.y1d9{bottom:117.594240pt;}
.y1c9{bottom:117.594267pt;}
.y622{bottom:119.042533pt;}
.y4f3{bottom:119.524176pt;}
.y161{bottom:121.439200pt;}
.y652{bottom:121.931280pt;}
.y75{bottom:122.717867pt;}
.y12d{bottom:122.720709pt;}
.y60e{bottom:122.873600pt;}
.y43e{bottom:123.036933pt;}
.y301{bottom:123.048864pt;}
.y197{bottom:123.992667pt;}
.y109{bottom:123.992723pt;}
.y254{bottom:124.477600pt;}
.y5d9{bottom:125.754640pt;}
.y2f8{bottom:125.754667pt;}
.y55{bottom:125.772667pt;}
.y64d{bottom:126.401616pt;}
.y32d{bottom:127.046413pt;}
.yb1{bottom:127.202987pt;}
.y10f{bottom:128.637600pt;}
.y58f{bottom:128.664800pt;}
.y640{bottom:130.566827pt;}
.y669{bottom:130.728672pt;}
.y562{bottom:131.361067pt;}
.y106{bottom:131.672533pt;}
.y195{bottom:131.838400pt;}
.y36d{bottom:132.326613pt;}
.y4c5{bottom:132.326667pt;}
.y57a{bottom:133.121467pt;}
.y553{bottom:133.915093pt;}
.y65c{bottom:135.199008pt;}
.y420{bottom:136.001920pt;}
.y35a{bottom:136.001947pt;}
.y14d{bottom:136.315333pt;}
.y55c{bottom:137.448504pt;}
.y5ec{bottom:137.448533pt;}
.y55e{bottom:138.400213pt;}
.y16d{bottom:139.037811pt;}
.y93{bottom:139.194453pt;}
.y196{bottom:139.521493pt;}
.y300{bottom:139.526000pt;}
.y282{bottom:139.671152pt;}
.y585{bottom:139.841280pt;}
.y160{bottom:140.160000pt;}
.y3c6{bottom:140.160027pt;}
.y29f{bottom:140.642773pt;}
.y60d{bottom:140.798507pt;}
.y43d{bottom:141.592800pt;}
.y54{bottom:141.772667pt;}
.y1c8{bottom:141.918840pt;}
.y35c{bottom:142.714000pt;}
.y436{bottom:142.885333pt;}
.y2f7{bottom:143.199736pt;}
.y108{bottom:143.513733pt;}
.y32c{bottom:143.523613pt;}
.ye5{bottom:143.523840pt;}
.y1c0{bottom:144.152800pt;}
.y621{bottom:144.311333pt;}
.y4b8{bottom:144.325944pt;}
.y2ab{bottom:145.112320pt;}
.y368{bottom:146.561112pt;}
.y194{bottom:146.715459pt;}
.y677{bottom:146.718720pt;}
.y40f{bottom:147.199093pt;}
.y10e{bottom:147.199147pt;}
.y5ae{bottom:147.199200pt;}
.y211{bottom:148.638672pt;}
.y74{bottom:149.597440pt;}
.y49{bottom:150.407200pt;}
.y64c{bottom:151.045776pt;}
.y2d1{bottom:151.351200pt;}
.y4d3{bottom:151.512987pt;}
.y12c{bottom:151.838400pt;}
.y24a{bottom:151.840000pt;}
.y5d8{bottom:152.634213pt;}
.y188{bottom:153.914869pt;}
.yb0{bottom:153.926827pt;}
.y167{bottom:154.548211pt;}
.y587{bottom:154.548267pt;}
.y14c{bottom:155.032533pt;}
.y47a{bottom:155.372832pt;}
.y37a{bottom:156.325120pt;}
.y3fc{bottom:157.119360pt;}
.y63f{bottom:157.602133pt;}
.y3ae{bottom:157.765608pt;}
.y2f6{bottom:158.231899pt;}
.y51c{bottom:158.240640pt;}
.y105{bottom:158.396373pt;}
.y16c{bottom:158.398267pt;}
.y60c{bottom:158.567680pt;}
.y5f6{bottom:159.037333pt;}
.y65b{bottom:159.843168pt;}
.y541{bottom:159.843200pt;}
.y32b{bottom:159.843205pt;}
.y22c{bottom:160.794667pt;}
.y182{bottom:161.747621pt;}
.y4bf{bottom:162.242933pt;}
.y107{bottom:162.242987pt;}
.y55b{bottom:162.250272pt;}
.y535{bottom:162.250301pt;}
.y1bf{bottom:162.881493pt;}
.y41f{bottom:163.037227pt;}
.y359{bottom:163.037253pt;}
.y584{bottom:164.327832pt;}
.y1a8{bottom:165.124053pt;}
.y5e1{bottom:165.600000pt;}
.y92{bottom:165.918293pt;}
.y250{bottom:166.235733pt;}
.y1c7{bottom:166.563000pt;}
.y512{bottom:166.563040pt;}
.y28b{bottom:167.522347pt;}
.y204{bottom:168.947032pt;}
.y5bb{bottom:168.970043pt;}
.y4b7{bottom:168.970104pt;}
.y166{bottom:169.593299pt;}
.y1f3{bottom:169.764907pt;}
.y2d0{bottom:170.076373pt;}
.y3cf{bottom:170.076400pt;}
.ye4{bottom:170.403413pt;}
.y367{bottom:171.047664pt;}
.y676{bottom:171.205272pt;}
.y2aa{bottom:171.836160pt;}
.y5e3{bottom:172.165200pt;}
.y2f5{bottom:173.108957pt;}
.y210{bottom:173.282832pt;}
.y187{bottom:173.434133pt;}
.y53{bottom:173.772667pt;}
.y568{bottom:174.234400pt;}
.y4e7{bottom:174.234453pt;}
.y64b{bottom:175.689936pt;}
.y32a{bottom:176.320405pt;}
.y73{bottom:176.321280pt;}
.y60b{bottom:176.477013pt;}
.y16b{bottom:176.637605pt;}
.y23a{bottom:177.115467pt;}
.y5a6{bottom:177.115520pt;}
.y5f5{bottom:177.754027pt;}
.y2cf{bottom:177.767496pt;}
.y15f{bottom:178.719573pt;}
.y56b{bottom:178.719627pt;}
.y5d7{bottom:179.513787pt;}
.y479{bottom:180.160272pt;}
.y12b{bottom:180.635093pt;}
.yaf{bottom:180.962133pt;}
.y24e{bottom:181.271600pt;}
.y3ad{bottom:182.252160pt;}
.y589{bottom:183.033333pt;}
.y379{bottom:183.033387pt;}
.y203{bottom:183.837016pt;}
.y3fb{bottom:183.843200pt;}
.y63e{bottom:184.325973pt;}
.y165{bottom:184.470357pt;}
.y65a{bottom:184.487328pt;}
.y65f{bottom:184.487333pt;}
.y599{bottom:184.964427pt;}
.y3e6{bottom:184.964480pt;}
.y24f{bottom:184.964533pt;}
.y524{bottom:185.120213pt;}
.y4ce{bottom:185.447200pt;}
.y104{bottom:185.447253pt;}
.y534{bottom:186.880104pt;}
.y253{bottom:186.880133pt;}
.y22b{bottom:187.674240pt;}
.y3c5{bottom:187.674267pt;}
.y2f4{bottom:187.986016pt;}
.y3dd{bottom:188.310267pt;}
.y583{bottom:188.971992pt;}
.y41e{bottom:189.761067pt;}
.y358{bottom:189.761093pt;}
.y52{bottom:189.772667pt;}
.y1c6{bottom:191.207160pt;}
.y548{bottom:191.207173pt;}
.y511{bottom:191.207200pt;}
.y16a{bottom:191.669733pt;}
.y193{bottom:191.669768pt;}
.y4d2{bottom:191.832347pt;}
.y575{bottom:192.159333pt;}
.y186{bottom:192.159360pt;}
.y329{bottom:192.811933pt;}
.y91{bottom:192.953600pt;}
.y5ba{bottom:193.442267pt;}
.y4b6{bottom:193.442328pt;}
.y28a{bottom:194.246187pt;}
.y60a{bottom:194.401920pt;}
.y29{bottom:194.672000pt;}
.y133{bottom:195.691824pt;}
.y675{bottom:195.849432pt;}
.y181{bottom:196.156133pt;}
.y1f2{bottom:196.473173pt;}
.ye3{bottom:197.282987pt;}
.y20f{bottom:197.926992pt;}
.y202{bottom:198.714075pt;}
.y2a4{bottom:198.887040pt;}
.y491{bottom:198.887067pt;}
.y164{bottom:199.347416pt;}
.y24d{bottom:199.837013pt;}
.y567{bottom:200.162160pt;}
.y4e6{bottom:200.958293pt;}
.y2ce{bottom:202.411656pt;}
.y2f3{bottom:202.876000pt;}
.y5a4{bottom:203.194667pt;}
.y72{bottom:203.356587pt;}
.y281{bottom:203.993600pt;}
.y478{bottom:204.804432pt;}
.y15e{bottom:205.443413pt;}
.y56a{bottom:205.443467pt;}
.y51{bottom:205.772667pt;}
.y5d6{bottom:206.237627pt;}
.y192{bottom:206.391723pt;}
.y4a7{bottom:206.391733pt;}
.y4f0{bottom:206.881973pt;}
.y3ac{bottom:206.881992pt;}
.y169{bottom:207.047467pt;}
.y12a{bottom:207.358933pt;}
.yae{bottom:207.685973pt;}
.y444{bottom:207.686027pt;}
.y588{bottom:209.131440pt;}
.y5b8{bottom:209.131488pt;}
.y328{bottom:209.131525pt;}
.y378{bottom:210.084267pt;}
.y3fa{bottom:210.878507pt;}
.y63d{bottom:211.205547pt;}
.y4cd{bottom:211.366640pt;}
.y533{bottom:211.366656pt;}
.y523{bottom:211.844053pt;}
.y103{bottom:212.155520pt;}
.y539{bottom:212.169067pt;}
.y609{bottom:212.326827pt;}
.y201{bottom:213.591133pt;}
.y3c4{bottom:213.601824pt;}
.y582{bottom:213.601867pt;}
.y28{bottom:213.712000pt;}
.y337{bottom:214.080000pt;}
.y40c{bottom:214.237400pt;}
.y38e{bottom:214.398027pt;}
.y3d5{bottom:214.398053pt;}
.y22a{bottom:214.398080pt;}
.y180{bottom:214.880853pt;}
.y56c{bottom:215.851307pt;}
.y1c5{bottom:215.851320pt;}
.y41d{bottom:216.796373pt;}
.y357{bottom:216.796400pt;}
.y38f{bottom:218.070800pt;}
.y4b5{bottom:218.086488pt;}
.y2f2{bottom:218.244693pt;}
.y163{bottom:218.710000pt;}
.y1a7{bottom:218.883200pt;}
.y90{bottom:219.677440pt;}
.y132{bottom:220.321656pt;}
.y674{bottom:220.493592pt;}
.y289{bottom:221.281493pt;}
.y191{bottom:221.436811pt;}
.y50{bottom:221.772667pt;}
.y4a6{bottom:221.920000pt;}
.y280{bottom:222.714240pt;}
.y5b2{bottom:222.714267pt;}
.y20e{bottom:222.728760pt;}
.y1f1{bottom:223.352747pt;}
.ye2{bottom:224.162560pt;}
.y490{bottom:224.806320pt;}
.y2a3{bottom:225.595307pt;}
.y327{bottom:225.608725pt;}
.y5a8{bottom:225.916800pt;}
.y475{bottom:226.555867pt;}
.y57e{bottom:227.041440pt;}
.y2cd{bottom:227.041488pt;}
.y502{bottom:227.993600pt;}
.y4e5{bottom:227.993627pt;}
.y27{bottom:228.112000pt;}
.y498{bottom:228.468192pt;}
.y40b{bottom:229.114459pt;}
.y477{bottom:229.290984pt;}
.y3ce{bottom:229.291040pt;}
.y4e1{bottom:229.753387pt;}
.y71{bottom:230.080427pt;}
.y608{bottom:230.236160pt;}
.y4ef{bottom:231.526133pt;}
.y3ab{bottom:231.526152pt;}
.y4d1{bottom:232.151707pt;}
.y56f{bottom:232.322960pt;}
.y15d{bottom:232.322987pt;}
.y200{bottom:233.115067pt;}
.y5d5{bottom:233.272933pt;}
.y3dc{bottom:233.775648pt;}
.y52e{bottom:234.565493pt;}
.yad{bottom:234.565547pt;}
.y443{bottom:234.565600pt;}
.y66c{bottom:236.010800pt;}
.y4cc{bottom:236.010816pt;}
.y2f1{bottom:236.154027pt;}
.y190{bottom:236.313869pt;}
.y377{bottom:236.792533pt;}
.y4ec{bottom:236.792587pt;}
.y162{bottom:237.446613pt;}
.y3f9{bottom:237.602347pt;}
.y4f{bottom:237.772667pt;}
.y8f{bottom:237.934133pt;}
.y63c{bottom:238.085120pt;}
.y3c3{bottom:238.245984pt;}
.y65e{bottom:238.735867pt;}
.y522{bottom:238.879360pt;}
.y102{bottom:239.206400pt;}
.y4fb{bottom:239.209659pt;}
.y33a{bottom:239.850720pt;}
.y1c4{bottom:240.495467pt;}
.y547{bottom:240.495480pt;}
.y38d{bottom:241.277600pt;}
.y3d4{bottom:241.277627pt;}
.y229{bottom:241.277653pt;}
.y326{bottom:241.928317pt;}
.y4c4{bottom:242.730640pt;}
.y4b4{bottom:242.730648pt;}
.y497{bottom:243.513280pt;}
.y56d{bottom:243.520160pt;}
.y41c{bottom:243.520213pt;}
.y356{bottom:243.520240pt;}
.y40a{bottom:244.146621pt;}
.y5a7{bottom:244.641467pt;}
.y131{bottom:244.965816pt;}
.y673{bottom:245.123424pt;}
.y474{bottom:245.280000pt;}
.y1d8{bottom:245.918507pt;}
.y25c{bottom:245.918533pt;}
.y20d{bottom:247.215312pt;}
.y17f{bottom:248.005333pt;}
.y607{bottom:248.161067pt;}
.y48f{bottom:249.450480pt;}
.y3e5{bottom:250.232320pt;}
.y1f0{bottom:250.232347pt;}
.ye1{bottom:251.042133pt;}
.y18f{bottom:251.346032pt;}
.y57d{bottom:251.685600pt;}
.y2cc{bottom:251.685648pt;}
.y2ba{bottom:251.836400pt;}
.y2a2{bottom:252.474880pt;}
.y4e{bottom:253.772667pt;}
.y516{bottom:253.935101pt;}
.y3cd{bottom:253.935144pt;}
.y505{bottom:253.935200pt;}
.y2f0{bottom:254.078933pt;}
.y501{bottom:254.717440pt;}
.y4e4{bottom:254.717467pt;}
.y447{bottom:255.828800pt;}
.y3aa{bottom:256.170267pt;}
.y519{bottom:256.170312pt;}
.y339{bottom:256.327867pt;}
.y620{bottom:256.632493pt;}
.y4e0{bottom:256.804267pt;}
.y70{bottom:257.115733pt;}
.y3db{bottom:258.405480pt;}
.y325{bottom:258.405517pt;}
.y8e{bottom:258.564027pt;}
.y409{bottom:259.023680pt;}
.y56e{bottom:259.202533pt;}
.y15c{bottom:259.202560pt;}
.y5d4{bottom:259.996773pt;}
.y662{bottom:260.654933pt;}
.y4c3{bottom:260.654968pt;}
.y4cb{bottom:260.654976pt;}
.y442{bottom:261.118080pt;}
.y66b{bottom:261.445067pt;}
.yac{bottom:261.445120pt;}
.y4c9{bottom:262.890115pt;}
.y3c2{bottom:262.890144pt;}
.y496{bottom:263.035600pt;}
.y376{bottom:263.687680pt;}
.y4eb{bottom:263.687733pt;}
.y3f8{bottom:264.481920pt;}
.y63b{bottom:264.964693pt;}
.y208{bottom:265.125312pt;}
.y239{bottom:265.603200pt;}
.y101{bottom:265.914667pt;}
.y185{bottom:265.914693pt;}
.y606{bottom:266.085973pt;}
.y18e{bottom:266.223091pt;}
.y5a3{bottom:267.362987pt;}
.y4be{bottom:267.374800pt;}
.y38c{bottom:267.374808pt;}
.y65d{bottom:268.157200pt;}
.y228{bottom:268.157227pt;}
.y3d3{bottom:268.162848pt;}
.y366{bottom:269.452365pt;}
.y130{bottom:269.452368pt;}
.y672{bottom:269.609976pt;}
.y4d{bottom:269.772667pt;}
.y597{bottom:270.072747pt;}
.y41b{bottom:270.399787pt;}
.y355{bottom:270.399813pt;}
.y264{bottom:270.713200pt;}
.y20c{bottom:271.845144pt;}
.y25b{bottom:271.845173pt;}
.y2ef{bottom:272.003840pt;}
.y4d0{bottom:272.330907pt;}
.y1d7{bottom:272.642347pt;}
.yc8{bottom:273.775477pt;}
.y561{bottom:274.068768pt;}
.y48e{bottom:274.094640pt;}
.y446{bottom:274.557840pt;}
.y324{bottom:274.897045pt;}
.y17e{bottom:275.040640pt;}
.y6f{bottom:275.196373pt;}
.y2cb{bottom:276.329808pt;}
.y3e4{bottom:277.127467pt;}
.y1ef{bottom:277.127493pt;}
.ye0{bottom:277.921707pt;}
.y3cc{bottom:278.564976pt;}
.y43b{bottom:279.354400pt;}
.y5f4{bottom:279.354427pt;}
.y29a{bottom:279.354453pt;}
.y61f{bottom:279.837227pt;}
.y4e3{bottom:280.814472pt;}
.y18d{bottom:281.113075pt;}
.y5a1{bottom:281.285547pt;}
.y3a9{bottom:281.597013pt;}
.y532{bottom:281.616880pt;}
.y408{bottom:281.746416pt;}
.y2b9{bottom:283.049640pt;}
.y14b{bottom:283.839573pt;}
.y26e{bottom:283.839600pt;}
.y54b{bottom:283.839627pt;}
.y51d{bottom:283.851955pt;}
.y605{bottom:283.995307pt;}
.y58a{bottom:285.280000pt;}
.y4c2{bottom:285.284808pt;}
.y8d{bottom:285.443600pt;}
.y15b{bottom:286.082133pt;}
.y473{bottom:286.087112pt;}
.y5d3{bottom:286.876347pt;}
.y3c1{bottom:287.376696pt;}
.y2b4{bottom:288.311067pt;}
.yab{bottom:288.324693pt;}
.y263{bottom:289.446000pt;}
.y48{bottom:289.601653pt;}
.y207{bottom:289.769472pt;}
.y66a{bottom:290.247600pt;}
.y375{bottom:290.567253pt;}
.y323{bottom:291.216637pt;}
.y3f7{bottom:291.361493pt;}
.y58c{bottom:291.374267pt;}
.y63a{bottom:291.844267pt;}
.y38b{bottom:292.004640pt;}
.y238{bottom:292.004648pt;}
.y4b3{bottom:292.004667pt;}
.y4fd{bottom:292.638507pt;}
.y51e{bottom:292.794187pt;}
.y100{bottom:292.794240pt;}
.y184{bottom:292.794267pt;}
.y399{bottom:292.794293pt;}
.y560{bottom:293.267067pt;}
.y12f{bottom:294.254133pt;}
.y1a6{bottom:294.254136pt;}
.y227{bottom:295.036800pt;}
.y18c{bottom:295.990133pt;}
.y20b{bottom:296.489304pt;}
.y52c{bottom:296.489307pt;}
.y41a{bottom:297.279360pt;}
.y354{bottom:297.279387pt;}
.y61e{bottom:297.762133pt;}
.y48d{bottom:298.566864pt;}
.y2ee{bottom:298.727680pt;}
.y1d6{bottom:299.521920pt;}
.y1ff{bottom:300.473867pt;}
.y2ca{bottom:300.973968pt;}
.y17d{bottom:301.764480pt;}
.y604{bottom:301.920213pt;}
.y3cb{bottom:303.209136pt;}
.y6e{bottom:303.694933pt;}
.y3e3{bottom:304.007040pt;}
.y1ee{bottom:304.007067pt;}
.y435{bottom:304.007093pt;}
.y55f{bottom:304.318507pt;}
.y407{bottom:304.469152pt;}
.ydf{bottom:304.645547pt;}
.yc7{bottom:304.970400pt;}
.y4e2{bottom:305.286696pt;}
.y5f3{bottom:306.234000pt;}
.y299{bottom:306.234027pt;}
.y47{bottom:307.526560pt;}
.y2b8{bottom:307.693800pt;}
.y322{bottom:307.693837pt;}
.y531{bottom:307.693840pt;}
.y5a0{bottom:308.165120pt;}
.y3a8{bottom:308.476587pt;}
.y26d{bottom:309.928915pt;}
.y4c1{bottom:309.928968pt;}
.y1be{bottom:310.719093pt;}
.y14a{bottom:310.719147pt;}
.y54a{bottom:310.719200pt;}
.y495{bottom:310.867200pt;}
.y8c{bottom:312.167467pt;}
.y3c0{bottom:312.178464pt;}
.y4cf{bottom:312.650267pt;}
.y15a{bottom:312.961707pt;}
.y540{bottom:312.961760pt;}
.y5d2{bottom:313.755920pt;}
.y206{bottom:314.413632pt;}
.y661{bottom:314.882800pt;}
.yaa{bottom:315.204267pt;}
.y18b{bottom:315.509733pt;}
.y237{bottom:316.491192pt;}
.y374{bottom:317.446827pt;}
.y3f6{bottom:318.085333pt;}
.y639{bottom:318.723840pt;}
.y3d2{bottom:318.898296pt;}
.y1a5{bottom:318.898301pt;}
.y183{bottom:319.362347pt;}
.y24c{bottom:319.673760pt;}
.yff{bottom:319.673813pt;}
.y1a9{bottom:319.673867pt;}
.y603{bottom:319.845120pt;}
.y25a{bottom:321.133464pt;}
.y20a{bottom:321.133467pt;}
.y226{bottom:321.916373pt;}
.y551{bottom:321.916400pt;}
.y1fe{bottom:323.187467pt;}
.y48c{bottom:323.211024pt;}
.y566{bottom:323.211032pt;}
.y61d{bottom:323.364693pt;}
.y321{bottom:324.013429pt;}
.y419{bottom:324.158933pt;}
.y353{bottom:324.158960pt;}
.y46{bottom:325.435893pt;}
.y2ed{bottom:325.607227pt;}
.y2c9{bottom:325.618128pt;}
.y4f2{bottom:325.618133pt;}
.y1d5{bottom:326.401493pt;}
.y406{bottom:327.191888pt;}
.y3ca{bottom:327.853296pt;}
.y288{bottom:328.644027pt;}
.y17c{bottom:328.644053pt;}
.y262{bottom:330.088464pt;}
.y5b1{bottom:330.088507pt;}
.y3e2{bottom:330.886613pt;}
.y1ed{bottom:330.886640pt;}
.y434{bottom:330.886667pt;}
.yde{bottom:331.680853pt;}
.y2b7{bottom:332.337960pt;}
.y5b7{bottom:332.338000pt;}
.y6d{bottom:333.113600pt;}
.y506{bottom:333.113627pt;}
.y18a{bottom:334.079120pt;}
.y26c{bottom:334.415520pt;}
.y3a7{bottom:335.356160pt;}
.yc6{bottom:336.493352pt;}
.y3bf{bottom:336.808296pt;}
.y1bd{bottom:337.598667pt;}
.y149{bottom:337.598720pt;}
.y602{bottom:337.754453pt;}
.y205{bottom:339.057792pt;}
.y8b{bottom:339.202773pt;}
.y159{bottom:339.685547pt;}
.y53f{bottom:339.685600pt;}
.y320{bottom:340.490629pt;}
.y5d1{bottom:340.635493pt;}
.y236{bottom:341.135352pt;}
.y2b3{bottom:341.756800pt;}
.y1fd{bottom:341.912507pt;}
.ya9{bottom:342.083840pt;}
.y50b{bottom:342.095288pt;}
.y45{bottom:343.360800pt;}
.y5ab{bottom:343.528128pt;}
.y1a4{bottom:343.528133pt;}
.y2ec{bottom:343.672293pt;}
.y46e{bottom:344.326400pt;}
.y373{bottom:344.326427pt;}
.y3f5{bottom:345.120693pt;}
.y638{bottom:345.447680pt;}
.y259{bottom:345.620016pt;}
.y209{bottom:346.241920pt;}
.y4fa{bottom:346.553333pt;}
.y549{bottom:346.553360pt;}
.yfe{bottom:346.553387pt;}
.y550{bottom:348.012773pt;}
.y48b{bottom:348.012792pt;}
.y565{bottom:348.012800pt;}
.y5c8{bottom:348.795893pt;}
.y225{bottom:348.795947pt;}
.y530{bottom:348.815181pt;}
.y61c{bottom:349.122987pt;}
.y405{bottom:349.901699pt;}
.y5ad{bottom:350.247960pt;}
.y2c8{bottom:350.247981pt;}
.y418{bottom:351.038507pt;}
.y352{bottom:351.038533pt;}
.y3c9{bottom:352.339848pt;}
.y1d4{bottom:353.281067pt;}
.y261{bottom:354.732624pt;}
.y5b0{bottom:354.732667pt;}
.y287{bottom:355.523600pt;}
.y17b{bottom:355.523627pt;}
.y601{bottom:355.679360pt;}
.y2b6{bottom:356.967792pt;}
.y31f{bottom:356.967829pt;}
.y3e1{bottom:357.594880pt;}
.y1ec{bottom:357.594907pt;}
.ydd{bottom:358.404693pt;}
.y26b{bottom:359.059680pt;}
.y6c{bottom:359.993173pt;}
.y2a1{bottom:359.993227pt;}
.y3be{bottom:361.452456pt;}
.y2eb{bottom:361.597200pt;}
.y3a6{bottom:362.235733pt;}
.y528{bottom:362.235760pt;}
.y44{bottom:362.404099pt;}
.y546{bottom:363.530000pt;}
.y1bc{bottom:363.530016pt;}
.y148{bottom:364.478293pt;}
.y8a{bottom:365.926613pt;}
.y235{bottom:365.937120pt;}
.y2c6{bottom:366.720800pt;}
.y4ed{bottom:366.720827pt;}
.y158{bottom:366.720853pt;}
.y5d0{bottom:367.515067pt;}
.yc5{bottom:367.852267pt;}
.y50a{bottom:368.172248pt;}
.y5aa{bottom:368.172288pt;}
.y671{bottom:368.329896pt;}
.y559{bottom:368.636373pt;}
.ya8{bottom:368.807680pt;}
.y47c{bottom:368.807733pt;}
.y398{bottom:370.249848pt;}
.y258{bottom:370.249867pt;}
.y26{bottom:370.832000pt;}
.y46d{bottom:371.205973pt;}
.y372{bottom:371.206000pt;}
.y3f4{bottom:371.844533pt;}
.y637{bottom:372.482987pt;}
.y404{bottom:372.624435pt;}
.y48a{bottom:372.656952pt;}
.y1f4{bottom:372.800000pt;}
.y42a{bottom:373.121493pt;}
.y31e{bottom:373.287421pt;}
.yfd{bottom:373.432960pt;}
.y5ee{bottom:373.432987pt;}
.y600{bottom:373.604267pt;}
.y61b{bottom:374.725547pt;}
.y2c7{bottom:374.734533pt;}
.y5c7{bottom:375.519733pt;}
.y224{bottom:375.519787pt;}
.y4f9{bottom:375.687467pt;}
.y3c8{bottom:376.969680pt;}
.y476{bottom:376.969699pt;}
.y51a{bottom:377.606613pt;}
.y1fb{bottom:377.614440pt;}
.y417{bottom:377.918080pt;}
.y351{bottom:377.918107pt;}
.y2ea{bottom:379.022539pt;}
.y260{bottom:379.376784pt;}
.y1d3{bottom:380.160640pt;}
.y286{bottom:381.454344pt;}
.y2fa{bottom:381.760000pt;}
.y17a{bottom:382.403200pt;}
.y4bc{bottom:382.403227pt;}
.y43{bottom:383.212861pt;}
.y26a{bottom:383.847120pt;}
.y5e6{bottom:384.645733pt;}
.y3e0{bottom:384.645760pt;}
.y1eb{bottom:384.645787pt;}
.ydc{bottom:385.440000pt;}
.y3bd{bottom:386.096616pt;}
.y6b{bottom:386.717013pt;}
.y2a0{bottom:386.717067pt;}
.y403{bottom:387.501493pt;}
.y1bb{bottom:388.174176pt;}
.y3a5{bottom:389.115307pt;}
.y527{bottom:389.115333pt;}
.y25{bottom:389.232000pt;}
.y31d{bottom:389.778949pt;}
.y234{bottom:390.581280pt;}
.y38a{bottom:390.581333pt;}
.y147{bottom:391.357867pt;}
.y1b4{bottom:391.357893pt;}
.y2c5{bottom:392.658835pt;}
.y509{bottom:392.658840pt;}
.y89{bottom:392.806187pt;}
.y670{bottom:392.816424pt;}
.y5ed{bottom:393.117653pt;}
.y449{bottom:393.444667pt;}
.y157{bottom:393.444693pt;}
.y2e9{bottom:393.899597pt;}
.y1fa{bottom:394.091640pt;}
.y5cf{bottom:394.394640pt;}
.y47b{bottom:394.893965pt;}
.y397{bottom:394.894008pt;}
.ya7{bottom:395.842987pt;}
.y371{bottom:397.301112pt;}
.y46c{bottom:397.914240pt;}
.y3f3{bottom:398.089152pt;}
.yc4{bottom:399.047219pt;}
.y636{bottom:399.206827pt;}
.y5c9{bottom:400.001067pt;}
.yfc{bottom:400.312533pt;}
.y521{bottom:400.312560pt;}
.y2fc{bottom:400.653867pt;}
.y45a{bottom:401.771448pt;}
.y3c7{bottom:401.771467pt;}
.y402{bottom:402.546581pt;}
.y223{bottom:402.555093pt;}
.y54f{bottom:403.849008pt;}
.y25f{bottom:403.849040pt;}
.y42{bottom:404.003403pt;}
.y4f8{bottom:404.314880pt;}
.y416{bottom:404.641920pt;}
.y350{bottom:404.641947pt;}
.y285{bottom:406.098504pt;}
.y31c{bottom:406.098541pt;}
.y1d2{bottom:407.040213pt;}
.y24{bottom:407.632000pt;}
.y269{bottom:408.491280pt;}
.y29e{bottom:408.491315pt;}
.y2e8{bottom:408.944685pt;}
.y179{bottom:409.282773pt;}
.y57c{bottom:409.282800pt;}
.y5c2{bottom:409.282827pt;}
.y1f9{bottom:410.411232pt;}
.y3bc{bottom:410.568840pt;}
.y52b{bottom:411.042560pt;}
.y3df{bottom:411.354027pt;}
.y1ea{bottom:411.354053pt;}
.ydb{bottom:412.163840pt;}
.y1ba{bottom:412.818336pt;}
.y400{bottom:412.818373pt;}
.y4c8{bottom:413.440800pt;}
.y580{bottom:413.440853pt;}
.y394{bottom:413.752293pt;}
.y6a{bottom:413.752320pt;}
.y389{bottom:414.063067pt;}
.y233{bottom:415.211112pt;}
.y3a4{bottom:415.839147pt;}
.y500{bottom:415.839200pt;}
.y579{bottom:417.288640pt;}
.y2c4{bottom:417.288672pt;}
.y1b3{bottom:417.926000pt;}
.y4df{bottom:418.237440pt;}
.y53e{bottom:418.237467pt;}
.y146{bottom:418.237493pt;}
.y88{bottom:419.685760pt;}
.y396{bottom:419.695776pt;}
.y448{bottom:419.695840pt;}
.y156{bottom:420.480000pt;}
.y518{bottom:420.480027pt;}
.y5ce{bottom:421.274213pt;}
.y401{bottom:421.744933pt;}
.y489{bottom:421.773307pt;}
.y370{bottom:421.773336pt;}
.ya6{bottom:422.566827pt;}
.y31b{bottom:422.575741pt;}
.y2e7{bottom:423.821744pt;}
.y3f2{bottom:424.022832pt;}
.y4a5{bottom:424.965067pt;}
.y46b{bottom:424.965120pt;}
.y41{bottom:424.976157pt;}
.y66f{bottom:425.298000pt;}
.y23{bottom:426.032000pt;}
.y635{bottom:426.242133pt;}
.y459{bottom:426.415608pt;}
.y3d9{bottom:426.880693pt;}
.y1f8{bottom:426.902760pt;}
.y5ef{bottom:427.036320pt;}
.y429{bottom:427.036347pt;}
.yfb{bottom:427.036373pt;}
.y574{bottom:427.036427pt;}
.y25e{bottom:428.493200pt;}
.y222{bottom:429.278933pt;}
.yc3{bottom:430.406133pt;}
.y284{bottom:430.742664pt;}
.y2b5{bottom:430.742701pt;}
.y4f7{bottom:431.365760pt;}
.y415{bottom:431.677227pt;}
.y34f{bottom:431.677253pt;}
.y268{bottom:432.977832pt;}
.y4c0{bottom:432.977867pt;}
.y1d1{bottom:433.764053pt;}
.y4c{bottom:434.132667pt;}
.y3bb{bottom:435.213000pt;}
.y178{bottom:436.006613pt;}
.y5c1{bottom:436.006667pt;}
.y1b9{bottom:437.462496pt;}
.y52a{bottom:438.077867pt;}
.y388{bottom:438.404907pt;}
.y1e9{bottom:438.404933pt;}
.y2e6{bottom:438.698803pt;}
.y31a{bottom:438.895333pt;}
.yda{bottom:439.043413pt;}
.y232{bottom:439.697664pt;}
.y57f{bottom:440.164693pt;}
.y393{bottom:440.476133pt;}
.y69{bottom:440.476160pt;}
.y4ff{bottom:441.932773pt;}
.y2c3{bottom:441.932832pt;}
.y54d{bottom:442.874427pt;}
.y3a3{bottom:442.874453pt;}
.y4c7{bottom:442.887733pt;}
.y1f7{bottom:443.379960pt;}
.y53d{bottom:444.339909pt;}
.y1b2{bottom:444.339936pt;}
.y4de{bottom:444.961280pt;}
.y145{bottom:444.961333pt;}
.y22{bottom:445.236480pt;}
.y40{bottom:445.766667pt;}
.y155{bottom:446.417440pt;}
.y488{bottom:446.417467pt;}
.y36f{bottom:446.417496pt;}
.y87{bottom:446.565333pt;}
.y249{bottom:447.203840pt;}
.y517{bottom:447.203867pt;}
.y5cd{bottom:448.153787pt;}
.y3f1{bottom:448.652664pt;}
.ya5{bottom:449.602133pt;}
.y458{bottom:450.902160pt;}
.y4a4{bottom:451.673333pt;}
.y46a{bottom:451.673387pt;}
.y634{bottom:452.965973pt;}
.y2e5{bottom:453.575861pt;}
.y252{bottom:453.604480pt;}
.y43c{bottom:453.915893pt;}
.y428{bottom:453.915920pt;}
.yfa{bottom:453.915947pt;}
.y3d8{bottom:453.916000pt;}
.y5f2{bottom:455.372496pt;}
.y283{bottom:455.372533pt;}
.y221{bottom:456.002773pt;}
.y27e{bottom:456.314240pt;}
.y267{bottom:457.621992pt;}
.y4ca{bottom:457.622035pt;}
.y508{bottom:457.622040pt;}
.y414{bottom:458.401067pt;}
.y34e{bottom:458.401093pt;}
.y1f6{bottom:459.699600pt;}
.y472{bottom:459.857160pt;}
.y3ba{bottom:459.857200pt;}
.yc2{bottom:460.005120pt;}
.y66e{bottom:460.325600pt;}
.y1d0{bottom:460.799360pt;}
.y5c0{bottom:462.092267pt;}
.y1b8{bottom:462.092328pt;}
.y177{bottom:462.886187pt;}
.y4b{bottom:463.959333pt;}
.y231{bottom:464.341824pt;}
.y387{bottom:465.113173pt;}
.y1e8{bottom:465.113200pt;}
.yd9{bottom:465.922987pt;}
.y3f{bottom:466.078667pt;}
.y2c2{bottom:466.576992pt;}
.y21{bottom:466.670880pt;}
.y68{bottom:467.527040pt;}
.y43a{bottom:467.527067pt;}
.y2e4{bottom:468.465845pt;}
.y1b1{bottom:468.812160pt;}
.y54c{bottom:469.598267pt;}
.y3a2{bottom:469.598293pt;}
.y144{bottom:471.061656pt;}
.y487{bottom:471.840853pt;}
.y319{bottom:471.996560pt;}
.y3f0{bottom:473.296824pt;}
.y86{bottom:473.444907pt;}
.y248{bottom:474.083413pt;}
.y5cc{bottom:474.877627pt;}
.y457{bottom:475.531992pt;}
.ya4{bottom:476.325973pt;}
.y4a3{bottom:477.781488pt;}
.y469{bottom:478.724267pt;}
.y633{bottom:479.845547pt;}
.y5f1{bottom:480.016640pt;}
.y659{bottom:480.016656pt;}
.y44a{bottom:480.484053pt;}
.y52f{bottom:480.795467pt;}
.y27f{bottom:480.795493pt;}
.yf9{bottom:480.795520pt;}
.y29d{bottom:482.251824pt;}
.y266{bottom:482.251867pt;}
.y507{bottom:482.251872pt;}
.y42b{bottom:482.720000pt;}
.y220{bottom:482.726613pt;}
.y27d{bottom:483.038027pt;}
.y36c{bottom:483.038080pt;}
.y2e3{bottom:483.498008pt;}
.y3e{bottom:484.003573pt;}
.y4bd{bottom:484.501320pt;}
.y471{bottom:484.501376pt;}
.y413{bottom:485.436373pt;}
.y34d{bottom:485.436400pt;}
.y430{bottom:486.080000pt;}
.yc1{bottom:486.713387pt;}
.y1b7{bottom:486.736488pt;}
.y1cf{bottom:487.523200pt;}
.y5af{bottom:487.523227pt;}
.y3b9{bottom:487.529939pt;}
.y20{bottom:488.273760pt;}
.y230{bottom:488.971656pt;}
.y66d{bottom:489.765707pt;}
.y176{bottom:489.765760pt;}
.y318{bottom:489.921467pt;}
.y2c1{bottom:491.221152pt;}
.y386{bottom:491.992747pt;}
.y1e7{bottom:491.992773pt;}
.yd8{bottom:492.802560pt;}
.y1b0{bottom:493.456320pt;}
.y439{bottom:493.456373pt;}
.y67{bottom:494.235307pt;}
.y53c{bottom:494.235333pt;}
.y4ea{bottom:494.235360pt;}
.y143{bottom:495.691488pt;}
.y433{bottom:496.021032pt;}
.y4a{bottom:496.333067pt;}
.y3a1{bottom:496.633600pt;}
.y5e8{bottom:496.633627pt;}
.y3ef{bottom:497.940984pt;}
.y2e2{bottom:498.375067pt;}
.y486{bottom:498.720427pt;}
.y456{bottom:500.176107pt;}
.y515{bottom:500.176152pt;}
.y85{bottom:500.324480pt;}
.y42e{bottom:500.333760pt;}
.y247{bottom:500.962987pt;}
.y3d{bottom:501.912907pt;}
.y5cb{bottom:501.912933pt;}
.y4a2{bottom:502.425648pt;}
.y1a3{bottom:503.205493pt;}
.ya3{bottom:503.205547pt;}
.y3d1{bottom:503.205600pt;}
.y5f0{bottom:504.660800pt;}
.y4b2{bottom:504.660816pt;}
.y468{bottom:505.432533pt;}
.y331{bottom:506.423160pt;}
.y632{bottom:506.725120pt;}
.y29c{bottom:506.895984pt;}
.y40e{bottom:507.363627pt;}
.y427{bottom:507.675067pt;}
.yf8{bottom:507.675093pt;}
.y317{bottom:507.846373pt;}
.y461{bottom:507.846400pt;}
.y57b{bottom:508.973544pt;}
.y470{bottom:508.973600pt;}
.y1f{bottom:509.726880pt;}
.y27c{bottom:509.917600pt;}
.y21f{bottom:509.917653pt;}
.y1b6{bottom:511.380640pt;}
.y3ff{bottom:511.380648pt;}
.y412{bottom:512.160213pt;}
.y34c{bottom:512.160240pt;}
.y432{bottom:513.300667pt;}
.y2e1{bottom:513.420155pt;}
.y22f{bottom:513.615816pt;}
.y5ac{bottom:513.615867pt;}
.yc0{bottom:513.764267pt;}
.y1ce{bottom:514.558507pt;}
.y2c0{bottom:515.865312pt;}
.y5a9{bottom:515.865368pt;}
.y3b8{bottom:516.318293pt;}
.y175{bottom:516.645333pt;}
.y4bb{bottom:516.645360pt;}
.y42d{bottom:516.653333pt;}
.y1af{bottom:518.100480pt;}
.y578{bottom:518.100507pt;}
.y385{bottom:518.872320pt;}
.y1e6{bottom:518.872347pt;}
.yd7{bottom:519.682133pt;}
.y3c{bottom:519.837813pt;}
.y142{bottom:520.335648pt;}
.y66{bottom:521.114880pt;}
.y4e9{bottom:521.114933pt;}
.y445{bottom:522.585101pt;}
.y3ee{bottom:522.585144pt;}
.y3a0{bottom:523.357440pt;}
.y5e7{bottom:523.357467pt;}
.y53b{bottom:523.357493pt;}
.y59f{bottom:523.373155pt;}
.y330{bottom:523.373200pt;}
.y455{bottom:524.820267pt;}
.y5c6{bottom:524.820312pt;}
.y514{bottom:524.820373pt;}
.y5ff{bottom:525.272960pt;}
.y485{bottom:525.600000pt;}
.y316{bottom:525.755707pt;}
.y4a1{bottom:526.897872pt;}
.y84{bottom:527.032747pt;}
.y246{bottom:527.842560pt;}
.y2e0{bottom:528.142109pt;}
.y5ca{bottom:528.636773pt;}
.y4b1{bottom:529.304976pt;}
.y1a2{bottom:530.085067pt;}
.y11d{bottom:530.085120pt;}
.y34b{bottom:530.240880pt;}
.y1e{bottom:531.161333pt;}
.y29b{bottom:531.540144pt;}
.ya2{bottom:532.008267pt;}
.y467{bottom:532.327680pt;}
.y3d0{bottom:532.336267pt;}
.y631{bottom:533.604667pt;}
.y460{bottom:533.775312pt;}
.y28d{bottom:534.243200pt;}
.y426{bottom:534.554640pt;}
.yf7{bottom:534.554667pt;}
.y24b{bottom:534.554693pt;}
.y538{bottom:534.577688pt;}
.y1b5{bottom:536.024800pt;}
.y27b{bottom:536.024808pt;}
.y3fe{bottom:536.797200pt;}
.y21e{bottom:536.797227pt;}
.y3b{bottom:537.762720pt;}
.y526{bottom:538.102368pt;}
.y22e{bottom:538.102373pt;}
.y411{bottom:539.039787pt;}
.y32f{bottom:540.005333pt;}
.ybf{bottom:540.472533pt;}
.y392{bottom:540.495144pt;}
.y2bf{bottom:540.495200pt;}
.y5de{bottom:540.640000pt;}
.y1cd{bottom:541.282347pt;}
.y1ae{bottom:542.744640pt;}
.y577{bottom:542.744667pt;}
.y2df{bottom:543.174272pt;}
.y61a{bottom:543.197867pt;}
.y174{bottom:543.524907pt;}
.y315{bottom:543.680613pt;}
.y154{bottom:544.822200pt;}
.y141{bottom:544.822232pt;}
.y384{bottom:545.767467pt;}
.y1e5{bottom:545.767493pt;}
.yd6{bottom:546.561707pt;}
.y3ed{bottom:547.214976pt;}
.y65{bottom:547.994400pt;}
.y298{bottom:547.994453pt;}
.y5db{bottom:549.280000pt;}
.y59e{bottom:549.464443pt;}
.y5c5{bottom:549.464472pt;}
.y513{bottom:549.464533pt;}
.y39f{bottom:550.237013pt;}
.y53a{bottom:550.237067pt;}
.y4a0{bottom:551.699640pt;}
.y1d{bottom:552.112000pt;}
.y484{bottom:552.479573pt;}
.y4b0{bottom:553.934808pt;}
.y83{bottom:554.083627pt;}
.y245{bottom:554.722133pt;}
.y3a{bottom:555.516320pt;}
.y5e0{bottom:555.539600pt;}
.y5dd{bottom:555.697200pt;}
.y1a1{bottom:556.026696pt;}
.y59b{bottom:556.026701pt;}
.y34a{bottom:556.637680pt;}
.y129{bottom:556.945733pt;}
.y11c{bottom:556.964693pt;}
.y441{bottom:556.964720pt;}
.y2de{bottom:558.051331pt;}
.y45f{bottom:558.419472pt;}
.y466{bottom:559.207253pt;}
.y630{bottom:560.484267pt;}
.y27a{bottom:560.654640pt;}
.y537{bottom:560.654648pt;}
.y28c{bottom:561.122773pt;}
.y314{bottom:561.434213pt;}
.ya1{bottom:561.434240pt;}
.y40d{bottom:561.434293pt;}
.y5e9{bottom:561.457067pt;}
.y3fd{bottom:562.726827pt;}
.y22d{bottom:562.746533pt;}
.y21d{bottom:563.676800pt;}
.y361{bottom:564.480000pt;}
.y391{bottom:565.139304pt;}
.y4fe{bottom:565.139307pt;}
.y2be{bottom:565.919360pt;}
.y1ad{bottom:567.216864pt;}
.ybe{bottom:567.367680pt;}
.y1cc{bottom:568.161920pt;}
.y153{bottom:569.623968pt;}
.y140{bottom:569.624000pt;}
.y3b7{bottom:570.404480pt;}
.y173{bottom:570.404533pt;}
.y1c{bottom:570.512000pt;}
.y3ec{bottom:571.859136pt;}
.y82{bottom:572.164267pt;}
.y383{bottom:572.647040pt;}
.y1e4{bottom:572.647067pt;}
.y2dd{bottom:573.096419pt;}
.yd5{bottom:573.285547pt;}
.y39{bottom:573.441227pt;}
.y5c4{bottom:573.936667pt;}
.y59d{bottom:573.936696pt;}
.y64{bottom:574.873973pt;}
.y297{bottom:574.874027pt;}
.y128{bottom:575.045333pt;}
.y49f{bottom:576.343800pt;}
.y39e{bottom:577.116587pt;}
.y4af{bottom:578.578968pt;}
.y5fe{bottom:578.876347pt;}
.y572{bottom:579.203360pt;}
.y4dd{bottom:579.203387pt;}
.y483{bottom:579.203413pt;}
.y313{bottom:579.359120pt;}
.y1a0{bottom:580.656528pt;}
.y244{bottom:581.601707pt;}
.y363{bottom:582.748400pt;}
.y45e{bottom:583.063632pt;}
.y364{bottom:583.378800pt;}
.y11b{bottom:583.844267pt;}
.y349{bottom:583.844293pt;}
.y279{bottom:585.141192pt;}
.y465{bottom:586.086827pt;}
.y62f{bottom:587.363840pt;}
.y2dc{bottom:587.973477pt;}
.y564{bottom:588.002347pt;}
.y3da{bottom:588.313760pt;}
.y425{bottom:588.313787pt;}
.ya0{bottom:588.313813pt;}
.y555{bottom:588.313867pt;}
.y1b{bottom:588.912000pt;}
.y651{bottom:589.783464pt;}
.y390{bottom:589.783467pt;}
.y552{bottom:590.244933pt;}
.y81{bottom:590.261867pt;}
.y21c{bottom:590.556373pt;}
.y38{bottom:591.366133pt;}
.y395{bottom:591.861024pt;}
.y1ac{bottom:591.861040pt;}
.y586{bottom:592.487467pt;}
.y2bd{bottom:592.798933pt;}
.y510{bottom:592.798960pt;}
.y127{bottom:592.954667pt;}
.ybd{bottom:594.247253pt;}
.y152{bottom:594.268128pt;}
.y13f{bottom:595.041493pt;}
.y3eb{bottom:596.503296pt;}
.y5b4{bottom:597.112720pt;}
.y3b6{bottom:597.112747pt;}
.y172{bottom:597.112800pt;}
.y58e{bottom:597.120000pt;}
.y312{bottom:597.284027pt;}
.y59c{bottom:598.580856pt;}
.y529{bottom:598.580899pt;}
.y382{bottom:599.526613pt;}
.y1e3{bottom:599.526640pt;}
.yd4{bottom:600.320853pt;}
.y49e{bottom:600.987960pt;}
.y296{bottom:601.753600pt;}
.y2db{bottom:602.850536pt;}
.y4ae{bottom:603.065520pt;}
.y63{bottom:603.545224pt;}
.y39d{bottom:603.996160pt;}
.y19f{bottom:605.458296pt;}
.y571{bottom:606.238667pt;}
.y4dc{bottom:606.238693pt;}
.y482{bottom:606.238720pt;}
.y1a{bottom:607.312000pt;}
.y45d{bottom:607.707792pt;}
.y243{bottom:608.325547pt;}
.y37{bottom:609.275467pt;}
.y278{bottom:609.785352pt;}
.y11a{bottom:610.723840pt;}
.y348{bottom:610.723867pt;}
.y464{bottom:612.966400pt;}
.y62e{bottom:614.087680pt;}
.y650{bottom:614.255688pt;}
.y46f{bottom:614.726187pt;}
.y3d7{bottom:615.037627pt;}
.y9f{bottom:615.037653pt;}
.y311{bottom:615.193360pt;}
.y1ab{bottom:616.505200pt;}
.y21b{bottom:617.435947pt;}
.y2da{bottom:617.740520pt;}
.y64a{bottom:618.897901pt;}
.y36e{bottom:618.897960pt;}
.y151{bottom:618.897981pt;}
.y51b{bottom:619.367040pt;}
.y80{bottom:619.678507pt;}
.y3ea{bottom:620.989848pt;}
.ybc{bottom:621.126827pt;}
.y126{bottom:621.456795pt;}
.y13e{bottom:621.921067pt;}
.y171{bottom:623.382624pt;}
.y4ba{bottom:624.135467pt;}
.y5b3{bottom:624.163600pt;}
.y3b5{bottom:624.163627pt;}
.y49d{bottom:625.617792pt;}
.y19{bottom:625.712000pt;}
.y5b6{bottom:626.234853pt;}
.y381{bottom:626.234880pt;}
.y1e2{bottom:626.234907pt;}
.yf6{bottom:627.044693pt;}
.yd3{bottom:627.044720pt;}
.y4ad{bottom:627.709680pt;}
.y36{bottom:627.852533pt;}
.y295{bottom:628.633173pt;}
.y19e{bottom:630.102456pt;}
.y39c{bottom:630.875733pt;}
.y454{bottom:630.875787pt;}
.y45c{bottom:632.180016pt;}
.y2d9{bottom:632.617579pt;}
.y4db{bottom:632.962533pt;}
.y481{bottom:632.962560pt;}
.y310{bottom:633.118267pt;}
.y277{bottom:634.429512pt;}
.y62{bottom:634.904139pt;}
.y242{bottom:635.360827pt;}
.y5be{bottom:635.360853pt;}
.y2b2{bottom:637.447653pt;}
.y119{bottom:637.447680pt;}
.y347{bottom:637.447707pt;}
.y257{bottom:637.447733pt;}
.y52d{bottom:637.467013pt;}
.y463{bottom:638.899840pt;}
.y64f{bottom:638.899848pt;}
.y440{bottom:639.386533pt;}
.y62d{bottom:641.122987pt;}
.y5a2{bottom:641.761493pt;}
.y424{bottom:642.072933pt;}
.y9e{bottom:642.072960pt;}
.y649{bottom:643.069237pt;}
.y594{bottom:643.069296pt;}
.y150{bottom:643.384533pt;}
.y18{bottom:644.112000pt;}
.y21a{bottom:644.159787pt;}
.y4e8{bottom:645.619680pt;}
.y3e9{bottom:645.619707pt;}
.y4f1{bottom:646.558027pt;}
.y596{bottom:646.558053pt;}
.y7f{bottom:646.558080pt;}
.y2d8{bottom:647.649741pt;}
.ybb{bottom:648.006400pt;}
.y170{bottom:648.026784pt;}
.y35{bottom:648.162160pt;}
.y13d{bottom:648.800640pt;}
.y49c{bottom:650.104344pt;}
.y3b4{bottom:650.887467pt;}
.y30f{bottom:651.043173pt;}
.y4ac{bottom:652.339512pt;}
.y125{bottom:652.815709pt;}
.y5b5{bottom:653.285733pt;}
.y380{bottom:653.285760pt;}
.y1e1{bottom:653.285787pt;}
.yf5{bottom:654.080000pt;}
.yd2{bottom:654.080027pt;}
.y19d{bottom:654.746616pt;}
.y2a9{bottom:655.357013pt;}
.y294{bottom:655.357067pt;}
.y45b{bottom:656.824176pt;}
.y39b{bottom:656.824240pt;}
.y545{bottom:657.599573pt;}
.y453{bottom:657.599627pt;}
.y276{bottom:659.059344pt;}
.y62c{bottom:659.203627pt;}
.y480{bottom:659.997867pt;}
.y4c6{bottom:659.997893pt;}
.y593{bottom:660.191256pt;}
.y5fd{bottom:661.780547pt;}
.y4da{bottom:661.780568pt;}
.y241{bottom:662.084667pt;}
.y5bd{bottom:662.111147pt;}
.y17{bottom:662.512000pt;}
.y2d7{bottom:662.526800pt;}
.y256{bottom:663.543973pt;}
.y462{bottom:663.544008pt;}
.y2b1{bottom:664.482960pt;}
.y118{bottom:664.482987pt;}
.y346{bottom:664.483013pt;}
.y595{bottom:664.638693pt;}
.y34{bottom:666.087067pt;}
.y61{bottom:666.263067pt;}
.y189{bottom:668.485333pt;}
.y423{bottom:668.796773pt;}
.y9d{bottom:668.796800pt;}
.y581{bottom:668.796827pt;}
.y30e{bottom:668.952507pt;}
.y619{bottom:668.952533pt;}
.y3e8{bottom:670.263867pt;}
.y648{bottom:670.745467pt;}
.y219{bottom:671.195093pt;}
.y16f{bottom:672.499008pt;}
.y5e4{bottom:672.499040pt;}
.y7e{bottom:673.281920pt;}
.y49b{bottom:674.748504pt;}
.yba{bottom:674.885973pt;}
.y13c{bottom:675.524480pt;}
.y592{bottom:676.668456pt;}
.y4ab{bottom:676.983672pt;}
.y3b3{bottom:677.922773pt;}
.y2d6{bottom:678.078507pt;}
.y19c{bottom:679.218840pt;}
.y5e5{bottom:679.994000pt;}
.y37f{bottom:679.994027pt;}
.y1e0{bottom:679.994053pt;}
.yf4{bottom:680.803787pt;}
.yd1{bottom:680.803867pt;}
.y16{bottom:680.912000pt;}
.y39a{bottom:681.468336pt;}
.y293{bottom:681.468373pt;}
.y2a8{bottom:682.392320pt;}
.y5eb{bottom:682.428355pt;}
.y275{bottom:683.861112pt;}
.y33{bottom:683.996400pt;}
.y5a5{bottom:684.479093pt;}
.y544{bottom:684.479147pt;}
.y124{bottom:684.502608pt;}
.y452{bottom:684.505872pt;}
.y62b{bottom:685.444667pt;}
.y47f{bottom:686.721733pt;}
.y60{bottom:686.877387pt;}
.y30d{bottom:686.877413pt;}
.y618{bottom:686.877440pt;}
.y5bc{bottom:688.188107pt;}
.y240{bottom:688.188168pt;}
.y51f{bottom:688.657072pt;}
.y2b0{bottom:691.206800pt;}
.y117{bottom:691.206827pt;}
.y345{bottom:691.206853pt;}
.y591{bottom:692.988048pt;}
.y4d9{bottom:693.139483pt;}
.y5fc{bottom:693.613216pt;}
.y47d{bottom:695.520640pt;}
.y422{bottom:695.676347pt;}
.y9c{bottom:695.676373pt;}
.y410{bottom:695.676427pt;}
.y2d5{bottom:695.847680pt;}
.y668{bottom:697.143168pt;}
.y16e{bottom:697.143200pt;}
.y218{bottom:697.918933pt;}
.yd0{bottom:699.061467pt;}
.y15{bottom:699.312000pt;}
.y4ee{bottom:699.392664pt;}
.y49a{bottom:699.392701pt;}
.y7d{bottom:700.317227pt;}
.yb9{bottom:701.594240pt;}
.y4aa{bottom:701.627832pt;}
.y55d{bottom:702.077013pt;}
.y5bf{bottom:702.404000pt;}
.y13b{bottom:702.404053pt;}
.y32{bottom:702.414133pt;}
.y19b{bottom:703.863000pt;}
.y3b2{bottom:704.646613pt;}
.y5f{bottom:704.802293pt;}
.y30c{bottom:704.802320pt;}
.y617{bottom:704.802347pt;}
.y292{bottom:706.112496pt;}
.y37e{bottom:707.044907pt;}
.y1df{bottom:707.044933pt;}
.yf3{bottom:707.683360pt;}
.y274{bottom:708.347664pt;}
.y5ea{bottom:708.347707pt;}
.y2a7{bottom:709.116160pt;}
.y438{bottom:709.116187pt;}
.y590{bottom:709.465200pt;}
.y451{bottom:710.582832pt;}
.y543{bottom:711.358667pt;}
.y47e{bottom:712.832301pt;}
.y23f{bottom:712.832328pt;}
.y2d4{bottom:713.757013pt;}
.y62a{bottom:714.422000pt;}
.y123{bottom:716.025515pt;}
.y14{bottom:718.192800pt;}
.y116{bottom:718.242133pt;}
.y344{bottom:718.242160pt;}
.y2af{bottom:719.852000pt;}
.y504{bottom:720.344000pt;}
.y667{bottom:721.787333pt;}
.y54e{bottom:722.244480pt;}
.y4fc{bottom:722.555893pt;}
.y421{bottom:722.555920pt;}
.y9b{bottom:722.555947pt;}
.y251{bottom:722.556000pt;}
.y5e{bottom:722.727200pt;}
.y30b{bottom:722.727227pt;}
.y616{bottom:722.727253pt;}
.y31{bottom:723.987960pt;}
.y499{bottom:724.022533pt;}
.y4d8{bottom:724.498397pt;}
.y36b{bottom:724.954240pt;}
.y217{bottom:724.954293pt;}
.y5fb{bottom:724.972131pt;}
.y658{bottom:726.271992pt;}
.y4a9{bottom:726.272035pt;}
.y7c{bottom:727.041067pt;}
.y19a{bottom:728.507160pt;}
.ycf{bottom:728.645067pt;}
.yb8{bottom:728.645120pt;}
.y576{bottom:728.956587pt;}
.y13a{bottom:729.283627pt;}
.y291{bottom:730.742328pt;}
.y3b1{bottom:731.526187pt;}
.y2d3{bottom:731.681920pt;}
.y273{bottom:732.991824pt;}
.y1de{bottom:732.991888pt;}
.y37d{bottom:733.753173pt;}
.y3de{bottom:733.753227pt;}
.yf2{bottom:734.562933pt;}
.y629{bottom:735.201493pt;}
.y450{bottom:735.226992pt;}
.y2a6{bottom:736.167040pt;}
.y437{bottom:736.167067pt;}
.y343{bottom:736.322800pt;}
.y542{bottom:737.462107pt;}
.y23e{bottom:737.462160pt;}
.y13{bottom:739.152000pt;}
.y30a{bottom:740.636560pt;}
.y615{bottom:740.636587pt;}
.y5d{bottom:740.824691pt;}
.y115{bottom:744.965973pt;}
.y666{bottom:747.192933pt;}
.y122{bottom:747.384429pt;}
.y30{bottom:747.827472pt;}
.y558{bottom:749.124027pt;}
.y503{bottom:749.124053pt;}
.y1aa{bottom:749.435493pt;}
.y9a{bottom:749.435520pt;}
.y494{bottom:749.435573pt;}
.y2d2{bottom:749.606827pt;}
.y657{bottom:750.901824pt;}
.y4a8{bottom:750.901867pt;}
.y216{bottom:751.678080pt;}
.yf1{bottom:752.814400pt;}
.y628{bottom:753.126400pt;}
.y59a{bottom:753.151320pt;}
.y199{bottom:753.151376pt;}
.y342{bottom:753.953704pt;}
.y7b{bottom:754.076373pt;}
.y50f{bottom:754.076427pt;}
.yce{bottom:755.353333pt;}
.yb7{bottom:755.353387pt;}
.y290{bottom:755.386488pt;}
.y4d7{bottom:755.693320pt;}
.y647{bottom:755.693333pt;}
.y5b9{bottom:755.836160pt;}
.y139{bottom:756.163200pt;}
.y5fa{bottom:756.185275pt;}
.y12{bottom:757.552000pt;}
.y272{bottom:757.621656pt;}
.y1dd{bottom:757.621720pt;}
.y3b0{bottom:758.405760pt;}
.y309{bottom:758.561467pt;}
.y614{bottom:758.561493pt;}
.y44f{bottom:759.871152pt;}
.y37c{bottom:760.632800pt;}
.y23d{bottom:762.106320pt;}
.y5c{bottom:762.271200pt;}
.y341{bottom:770.273296pt;}
.y627{bottom:771.035760pt;}
.y2f{bottom:771.666931pt;}
.y114{bottom:771.845547pt;}
.yf0{bottom:773.433973pt;}
.y656{bottom:775.545984pt;}
.y11{bottom:775.952000pt;}
.y557{bottom:776.003600pt;}
.y1c3{bottom:776.003627pt;}
.y665{bottom:776.028411pt;}
.y646{bottom:776.159333pt;}
.y2ae{bottom:776.315067pt;}
.y99{bottom:776.315093pt;}
.y493{bottom:776.315147pt;}
.y308{bottom:776.486373pt;}
.y613{bottom:776.486400pt;}
.y198{bottom:777.623600pt;}
.y215{bottom:778.557653pt;}
.y121{bottom:778.579352pt;}
.y570{bottom:780.030640pt;}
.y28f{bottom:780.030648pt;}
.y7a{bottom:780.800213pt;}
.y50e{bottom:780.800267pt;}
.y271{bottom:782.265816pt;}
.y1dc{bottom:782.265880pt;}
.ycd{bottom:782.404213pt;}
.yb6{bottom:782.404267pt;}
.y5b{bottom:782.733816pt;}
.y138{bottom:783.042773pt;}
.y1cb{bottom:783.042827pt;}
.y44e{bottom:784.343376pt;}
.y3af{bottom:785.285333pt;}
.y23c{bottom:786.750480pt;}
.y340{bottom:786.750496pt;}
.y37b{bottom:786.750507pt;}
.y4d6{bottom:787.216227pt;}
.y5f9{bottom:787.708181pt;}
.y626{bottom:788.960667pt;}
.yef{bottom:791.358880pt;}
.y645{bottom:794.084240pt;}
.y307{bottom:794.395707pt;}
.y612{bottom:794.395733pt;}
.y10{bottom:794.832533pt;}
.y2e{bottom:795.506443pt;}
.y113{bottom:798.725093pt;}
.y655{bottom:800.190133pt;}
.y556{bottom:802.883173pt;}
.y1c2{bottom:802.883200pt;}
.y492{bottom:802.883253pt;}
.y33f{bottom:803.070088pt;}
.y12e{bottom:803.170000pt;}
.y2ad{bottom:803.194640pt;}
.y98{bottom:803.194667pt;}
.y25d{bottom:803.194693pt;}
.y5a{bottom:804.016333pt;}
.y28e{bottom:804.674800pt;}
.y214{bottom:805.437227pt;}
.y50d{bottom:806.437109pt;}
.y625{bottom:806.714240pt;}
.y270{bottom:806.752373pt;}
.y1db{bottom:806.752432pt;}
.y664{bottom:807.223333pt;}
.y4f6{bottom:807.679733pt;}
.y2bc{bottom:807.679760pt;}
.y79{bottom:807.679787pt;}
.ycc{bottom:809.112480pt;}
.yb5{bottom:809.112533pt;}
.y44d{bottom:809.145144pt;}
.yee{bottom:809.283787pt;}
.y137{bottom:809.922400pt;}
.y120{bottom:809.938267pt;}
.y4b9{bottom:811.394576pt;}
.y23b{bottom:811.394640pt;}
.y644{bottom:811.993573pt;}
.y306{bottom:812.320613pt;}
.y611{bottom:812.320640pt;}
.yf{bottom:816.917920pt;}
.y4d5{bottom:818.429371pt;}
.y5f8{bottom:818.903104pt;}
.y2d{bottom:819.345955pt;}
.y33e{bottom:819.547288pt;}
.y59{bottom:824.351333pt;}
.y112{bottom:825.604667pt;}
.yed{bottom:827.193120pt;}
.y1c1{bottom:829.762773pt;}
.y643{bottom:829.918480pt;}
.y2ac{bottom:830.074213pt;}
.y97{bottom:830.074240pt;}
.y573{bottom:830.074267pt;}
.y10d{bottom:830.074293pt;}
.y50c{bottom:830.909333pt;}
.y26f{bottom:831.396533pt;}
.y1da{bottom:831.396592pt;}
.y213{bottom:832.316800pt;}
.y624{bottom:832.472533pt;}
.y44c{bottom:833.789304pt;}
.y4f5{bottom:834.559307pt;}
.y2bb{bottom:834.559333pt;}
.y78{bottom:834.559360pt;}
.y1ca{bottom:835.866864pt;}
.y33d{bottom:835.866880pt;}
.y136{bottom:835.866907pt;}
.ycb{bottom:836.007627pt;}
.yb4{bottom:836.007680pt;}
.ye{bottom:841.560160pt;}
.y2c{bottom:843.185467pt;}
.y11f{bottom:843.330461pt;}
.y58{bottom:844.806667pt;}
.yec{bottom:845.118027pt;}
.y642{bottom:847.687653pt;}
.y305{bottom:847.999120pt;}
.y610{bottom:847.999147pt;}
.y4d4{bottom:849.788285pt;}
.y5f7{bottom:850.262019pt;}
.y111{bottom:852.157200pt;}
.y33c{bottom:852.358408pt;}
.y77{bottom:852.640000pt;}
.y654{bottom:854.270800pt;}
.y332{bottom:856.480000pt;}
.y520{bottom:856.642320pt;}
.y525{bottom:856.642347pt;}
.y265{bottom:856.953787pt;}
.y96{bottom:856.953813pt;}
.y623{bottom:858.246400pt;}
.y44b{bottom:858.433467pt;}
.y212{bottom:859.196400pt;}
.y36a{bottom:859.235848pt;}
.y135{bottom:860.511024pt;}
.y2a5{bottom:860.511040pt;}
.y57{bottom:862.716000pt;}
.yca{bottom:862.887200pt;}
.yb3{bottom:862.887253pt;}
.yeb{bottom:863.042933pt;}
.y2b{bottom:865.924000pt;}
.y304{bottom:865.924027pt;}
.y60f{bottom:865.924053pt;}
.yd{bottom:866.032187pt;}
.y33b{bottom:868.835608pt;}
.y335{bottom:870.597936pt;}
.y11e{bottom:879.182933pt;}
.y56{bottom:881.147200pt;}
.yc9{bottom:881.620933pt;}
.y3e7{bottom:883.366160pt;}
.y95{bottom:883.677600pt;}
.y10c{bottom:883.677627pt;}
.y3d6{bottom:883.698267pt;}
.y536{bottom:883.708000pt;}
.y2a{bottom:883.833333pt;}
.y303{bottom:883.833360pt;}
.y134{bottom:885.155200pt;}
.y334{bottom:887.075200pt;}
.yc{bottom:890.525467pt;}
.yb{bottom:915.167707pt;}
.ya{bottom:939.639707pt;}
.ye7{bottom:948.322533pt;}
.y9{bottom:964.111707pt;}
.y8{bottom:988.753947pt;}
.y7{bottom:1013.247227pt;}
.y1{bottom:1013.712000pt;}
.y6{bottom:1037.719227pt;}
.y5{bottom:1062.361467pt;}
.y4{bottom:1086.833467pt;}
.y3{bottom:1109.926667pt;}
.h1a{height:17.920000pt;}
.h1d{height:29.514789pt;}
.h91{height:31.770055pt;}
.hec{height:35.200000pt;}
.hfb{height:36.160000pt;}
.h100{height:36.320000pt;}
.hf{height:37.031250pt;}
.h11{height:37.057292pt;}
.h6{height:42.656250pt;}
.h2{height:44.437500pt;}
.hfd{height:44.480000pt;}
.h1f{height:45.364891pt;}
.h2e{height:45.365029pt;}
.h35{height:45.365115pt;}
.h4d{height:45.365147pt;}
.h6d{height:45.490869pt;}
.h1e{height:45.491115pt;}
.h70{height:45.491371pt;}
.h68{height:48.000000pt;}
.h61{height:48.160000pt;}
.h25{height:50.287922pt;}
.h6a{height:50.287986pt;}
.hb8{height:50.287997pt;}
.h110{height:50.288018pt;}
.h8b{height:50.288029pt;}
.ha4{height:50.288039pt;}
.hef{height:50.288082pt;}
.h10d{height:50.288093pt;}
.h78{height:50.288103pt;}
.h44{height:50.288114pt;}
.h10a{height:50.288157pt;}
.hf8{height:50.288167pt;}
.h64{height:50.288178pt;}
.hed{height:50.427577pt;}
.haf{height:50.427620pt;}
.ha8{height:50.427673pt;}
.h27{height:50.427716pt;}
.h96{height:50.427737pt;}
.h4f{height:50.427769pt;}
.h4e{height:50.427780pt;}
.h3a{height:50.427844pt;}
.hfe{height:50.427961pt;}
.h69{height:50.428004pt;}
.hfc{height:50.428025pt;}
.h6b{height:50.428036pt;}
.h67{height:50.428057pt;}
.h63{height:50.428068pt;}
.h8d{height:50.428078pt;}
.h66{height:50.428089pt;}
.hb5{height:50.903578pt;}
.hc0{height:50.903749pt;}
.h5{height:51.991875pt;}
.h6e{height:54.500958pt;}
.h107{height:54.514611pt;}
.hd3{height:54.537363pt;}
.h10f{height:54.539369pt;}
.hf9{height:54.552937pt;}
.hff{height:54.565950pt;}
.hd5{height:54.566665pt;}
.h105{height:54.567550pt;}
.hd1{height:54.579497pt;}
.hcb{height:54.581630pt;}
.hce{height:54.582025pt;}
.hf3{height:54.595998pt;}
.hd6{height:54.604563pt;}
.hc5{height:54.609331pt;}
.hbf{height:54.613065pt;}
.ha0{height:54.638835pt;}
.h8{height:54.658750pt;}
.h20{height:54.658857pt;}
.h15{height:54.658963pt;}
.h49{height:54.810620pt;}
.h93{height:54.810727pt;}
.h17{height:54.810833pt;}
.h23{height:54.810940pt;}
.h1b{height:54.811047pt;}
.h26{height:55.053974pt;}
.h72{height:55.055510pt;}
.h41{height:55.073280pt;}
.h81{height:55.074816pt;}
.h106{height:55.075307pt;}
.h59{height:55.075819pt;}
.had{height:55.075958pt;}
.h5d{height:55.094123pt;}
.h4c{height:55.095264pt;}
.h77{height:55.095659pt;}
.ha3{height:55.113963pt;}
.h9d{height:55.114571pt;}
.hf6{height:55.114827pt;}
.h99{height:55.120448pt;}
.hf7{height:55.133643pt;}
.he7{height:55.134272pt;}
.h2f{height:55.135040pt;}
.hd7{height:55.135670pt;}
.h102{height:55.136182pt;}
.h54{height:55.136438pt;}
.h36{height:55.152352pt;}
.hb7{height:55.155510pt;}
.hd4{height:55.171168pt;}
.hdc{height:55.174443pt;}
.h97{height:55.174699pt;}
.h9c{height:55.174955pt;}
.h3b{height:55.176726pt;}
.hf2{height:55.190219pt;}
.hf0{height:55.190358pt;}
.ha9{height:55.191872pt;}
.h8f{height:55.192150pt;}
.ha7{height:55.192384pt;}
.hea{height:55.192640pt;}
.h42{height:55.192683pt;}
.h28{height:55.192779pt;}
.h85{height:55.193152pt;}
.h9e{height:55.195670pt;}
.hd8{height:55.210944pt;}
.hc3{height:55.211574pt;}
.h75{height:55.211968pt;}
.h5a{height:55.212342pt;}
.h5b{height:55.212459pt;}
.hbe{height:55.213110pt;}
.h71{height:55.213622pt;}
.h76{height:55.213739pt;}
.hdf{height:55.230251pt;}
.hd9{height:55.230763pt;}
.he9{height:55.231136pt;}
.he8{height:55.231275pt;}
.h58{height:55.232160pt;}
.ha2{height:55.232299pt;}
.h53{height:55.232790pt;}
.he1{height:55.232928pt;}
.hdb{height:55.233323pt;}
.hb0{height:55.233419pt;}
.hd0{height:55.233696pt;}
.h9f{height:55.233814pt;}
.h89{height:55.235883pt;}
.he3{height:55.236843pt;}
.h5e{height:55.250582pt;}
.h9a{height:55.251350pt;}
.hc9{height:55.251488pt;}
.h3e{height:55.251606pt;}
.hfa{height:55.251744pt;}
.h4a{height:55.252235pt;}
.hb3{height:55.253515pt;}
.h73{height:55.253771pt;}
.h7c{height:55.254027pt;}
.heb{height:55.254144pt;}
.h8e{height:55.271168pt;}
.h52{height:55.271680pt;}
.hde{height:55.271819pt;}
.h50{height:55.272054pt;}
.hda{height:55.272310pt;}
.hb6{height:55.272448pt;}
.hb1{height:55.272939pt;}
.hdd{height:55.273590pt;}
.ha1{height:55.274475pt;}
.h101{height:55.289430pt;}
.hc2{height:55.291499pt;}
.hac{height:55.291638pt;}
.h46{height:55.291755pt;}
.h37{height:55.291872pt;}
.he5{height:55.292128pt;}
.ha5{height:55.292523pt;}
.h90{height:55.293014pt;}
.h5f{height:55.293152pt;}
.hb4{height:55.308843pt;}
.h7a{height:55.311574pt;}
.he4{height:55.311830pt;}
.hf5{height:55.311968pt;}
.he0{height:55.313504pt;}
.h7d{height:55.317078pt;}
.hc8{height:55.319190pt;}
.he{height:55.327917pt;}
.h83{height:55.328023pt;}
.hae{height:55.328130pt;}
.h47{height:55.331648pt;}
.hd2{height:55.331787pt;}
.h6c{height:55.332555pt;}
.h7e{height:55.348310pt;}
.h8c{height:56.320000pt;}
.h40{height:57.107288pt;}
.h86{height:57.107608pt;}
.h4b{height:57.108568pt;}
.h9b{height:57.132034pt;}
.hcc{height:57.140354pt;}
.h82{height:57.144301pt;}
.hca{height:57.144941pt;}
.h88{height:57.167021pt;}
.h5c{height:57.167341pt;}
.h32{height:57.168194pt;}
.h22{height:57.168301pt;}
.hcf{height:57.171288pt;}
.h98{height:57.172994pt;}
.he6{height:57.175554pt;}
.hf1{height:57.182061pt;}
.h30{height:57.183768pt;}
.h94{height:57.184088pt;}
.haa{height:57.184408pt;}
.hab{height:57.184941pt;}
.h56{height:57.210114pt;}
.h7b{height:57.210754pt;}
.h108{height:57.210861pt;}
.hc7{height:57.211181pt;}
.h2b{height:57.211288pt;}
.h55{height:57.211394pt;}
.hbd{height:57.211608pt;}
.h34{height:57.211928pt;}
.h3f{height:57.212568pt;}
.h6f{height:57.213634pt;}
.h103{height:57.215234pt;}
.hb9{height:57.218221pt;}
.hc6{height:57.218968pt;}
.hc1{height:57.220674pt;}
.hf4{height:57.225474pt;}
.h38{height:57.251821pt;}
.ha6{height:57.252013pt;}
.he2{height:57.253101pt;}
.h2d{height:57.253634pt;}
.h3d{height:57.253848pt;}
.h45{height:57.254274pt;}
.h33{height:57.254381pt;}
.h29{height:57.254488pt;}
.h104{height:57.254648pt;}
.h7f{height:57.255661pt;}
.h48{height:57.258114pt;}
.hc4{height:57.262914pt;}
.h3c{height:57.295661pt;}
.h1c{height:57.295768pt;}
.h39{height:57.296728pt;}
.h57{height:57.297368pt;}
.h51{height:57.298008pt;}
.h21{height:57.298114pt;}
.h74{height:57.356175pt;}
.h84{height:57.799960pt;}
.h2a{height:57.836141pt;}
.hbb{height:57.836674pt;}
.h60{height:57.921474pt;}
.h2c{height:57.938575pt;}
.h4{height:59.101875pt;}
.h65{height:59.680000pt;}
.h8a{height:63.040000pt;}
.h10{height:63.697917pt;}
.hc{height:63.952609pt;}
.hd{height:63.952737pt;}
.hb{height:63.952791pt;}
.hba{height:63.982476pt;}
.h80{height:63.995596pt;}
.h87{height:64.031649pt;}
.h13{height:64.735557pt;}
.h10e{height:64.735632pt;}
.h109{height:64.735653pt;}
.h16{height:64.735675pt;}
.h12{height:64.735707pt;}
.h10b{height:64.735728pt;}
.h92{height:64.735771pt;}
.h19{height:64.735781pt;}
.h14{height:64.735792pt;}
.h10c{height:64.735803pt;}
.h31{height:64.747504pt;}
.hcd{height:64.773317pt;}
.h79{height:64.813851pt;}
.h62{height:71.360000pt;}
.h24{height:72.613839pt;}
.h18{height:72.626532pt;}
.h9{height:72.694266pt;}
.ha{height:72.694479pt;}
.h95{height:73.576448pt;}
.hbc{height:81.987912pt;}
.hb2{height:81.988125pt;}
.h43{height:116.160000pt;}
.hee{height:141.440000pt;}
.h7{height:1056.000000pt;}
.h3{height:1121.120000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:7.680000pt;}
.wd{width:23.360000pt;}
.wb{width:162.560000pt;}
.wc{width:197.600000pt;}
.w7{width:209.280000pt;}
.w9{width:220.960000pt;}
.wa{width:244.320000pt;}
.w8{width:267.680000pt;}
.wf{width:279.360000pt;}
.w10{width:290.880000pt;}
.w6{width:337.760000pt;}
.w11{width:349.440000pt;}
.we{width:372.800000pt;}
.w5{width:407.680000pt;}
.w2{width:793.600000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.w3{width:816.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.520000pt;}
.x41{left:7.841067pt;}
.x20{left:9.286400pt;}
.x1f{left:55.207600pt;}
.x36{left:89.600000pt;}
.x37{left:98.877467pt;}
.x25{left:100.972667pt;}
.x27{left:104.970133pt;}
.x4e{left:110.239600pt;}
.x1{left:113.440000pt;}
.x13{left:125.102400pt;}
.x16{left:147.199200pt;}
.x14{left:148.142800pt;}
.x21{left:158.726000pt;}
.x6{left:169.603200pt;}
.x1c{left:170.559200pt;}
.x7{left:179.843067pt;}
.x35{left:192.003627pt;}
.x17{left:193.124907pt;}
.x39{left:194.400000pt;}
.xf{left:195.678933pt;}
.x1d{left:196.967067pt;}
.x2d{left:203.686800pt;}
.x10{left:205.609467pt;}
.x1e{left:211.680000pt;}
.x4{left:214.076800pt;}
.x3{left:220.630987pt;}
.x46{left:223.047333pt;}
.x34{left:237.913867pt;}
.xd{left:239.037192pt;}
.x50{left:240.800000pt;}
.xc{left:245.437235pt;}
.x51{left:250.095200pt;}
.x24{left:252.800000pt;}
.x3d{left:264.318621pt;}
.x3e{left:280.335200pt;}
.x3c{left:296.643333pt;}
.x5{left:308.000133pt;}
.x18{left:323.210000pt;}
.x48{left:324.314667pt;}
.xe{left:330.407467pt;}
.x2c{left:334.079200pt;}
.x1b{left:339.044400pt;}
.x4c{left:340.806827pt;}
.x1a{left:342.251333pt;}
.x3f{left:344.018800pt;}
.x49{left:348.157440pt;}
.x4b{left:349.605760pt;}
.x4a{left:353.125333pt;}
.x26{left:354.087867pt;}
.x4d{left:355.047867pt;}
.x31{left:369.274853pt;}
.x47{left:370.579387pt;}
.x8{left:376.796160pt;}
.x15{left:382.739067pt;}
.x44{left:392.960000pt;}
.x2{left:395.361067pt;}
.x11{left:397.297952pt;}
.x45{left:402.258667pt;}
.x40{left:403.840000pt;}
.x53{left:404.969200pt;}
.x52{left:408.340133pt;}
.x19{left:411.680000pt;}
.xb{left:415.527733pt;}
.x43{left:421.912747pt;}
.x4f{left:425.613200pt;}
.x2f{left:428.000000pt;}
.x30{left:437.290533pt;}
.x2b{left:439.210480pt;}
.x3a{left:451.360000pt;}
.x3b{left:460.659467pt;}
.x9{left:464.960000pt;}
.x2e{left:474.720000pt;}
.x12{left:483.365067pt;}
.x38{left:484.343733pt;}
.x28{left:498.080000pt;}
.x29{left:507.383200pt;}
.x22{left:509.279147pt;}
.x2a{left:511.038987pt;}
.x42{left:522.718933pt;}
.x23{left:596.452432pt;}
.x33{left:637.914853pt;}
.x32{left:672.004880pt;}
}




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